From 1c562f277f20eb684263d4344cfb12e54de4ddf8 Mon Sep 17 00:00:00 2001 From: Joe Esquibel Date: Sat, 5 Sep 2026 11:52:35 -0400 Subject: [PATCH 1/3] feat(core-engine): jcl api, cleanup and globals rules, high_risk_execution narrowed to executors (#2748, #2749, #2750, #2751) Four rosetta gaps in one language, found by the 2026-09-05 pass over every non-green cell of the keyword-rosetta bias report and filed as #2748-#2751. - api: `//name PROC` -- a cataloged or in-stream procedure is the callable surface `EXEC name` / `EXEC PROC=name` invokes (api contract, fallback family). 13 declarations in 13 crucible files; 185 of 376 EXEC steps call one. - cleanup: DELETE as a dataset's normal-termination disposition (`DISP=(MOD,DELETE,DELETE)`, `(OLD,DELETE)`, `(,DELETE)`) -- JCL's teardown idiom. #2610 declined it for the io overlap; #2742 reversed that posture for sync_locks and the same narrow-subset measurement applies (36 of 533 DISP=). The abend-only positional of an allocation is excluded. - globals: JOBLIB (vs STEPLIB), a job-level SET symbol (vs a PROC parameter) and EXPORT SYMLIST -- the scoped-vs-global distinction the ledger said JCL lacked. SET is dual globals+state_mutation, dockerfile's ENV shape. - high_risk_execution: a bare `PGM=` counted every step (188 of 376 crucible EXECs, IEFBR14 and the compilers included). Narrowed to the programs that execute caller-supplied commands: IKJEFT01/1A/1B, BPXBATCH/BPXBATSL/BPXBATA2/ BPXBATA8/AOPBATCH, IRXJCL, SDSF. 61 hits in 48 files after. 20 new strict cases: per-rule partitions, overlap pins (io/sync_locks/state), an end-to-end deck through prism + splice, ReDoS detonations. Docs: jcl status sections 1/3/4/6/10 and the api contract's fallback family + audit table. Co-Authored-By: Claude Fable 5.1 --- docs/api_rule_contract.md | 5 +- docs/language_status/jcl.md | 43 ++- .../language_standards/languages/jcl.py | 100 +++++- tests/extraction/languages/test_jcl_strict.py | 312 +++++++++++++++++- 4 files changed, 435 insertions(+), 25 deletions(-) diff --git a/docs/api_rule_contract.md b/docs/api_rule_contract.md index 51a1aceba..5fb09cb94 100644 --- a/docs/api_rule_contract.md +++ b/docs/api_rule_contract.md @@ -45,6 +45,7 @@ not a defect: | `makefile` | `.PHONY`, `export`, the conventional public targets | | `sqlite` | `CREATE [TEMP] VIEW` / `CREATE VIRTUAL TABLE` | | `matlab` | a column-0 `function` declaration (a function file's callable surface) | +| `jcl` | `//name PROC` — a cataloged or in-stream procedure, what `EXEC name` in other members invokes ([#2748](https://github.com/squid-protocol/gitgalaxy/issues/2748)) | `matlab` is the one place where the fallback is knowingly approximate: a `.m` function file publishes only its *leading* function, and local functions after it are file-private, but nothing @@ -91,7 +92,7 @@ untouched. | `html` | 514 | 5 | | `java` | 220 | 12 | | `javascript` | 267 | 12 | -| `jcl` | rule is `None` | n/a | +| `jcl` | `None` → 13 | n/a → 1 (#2748) | | `kotlin` | 17 → 5 | 12 | | `livecode` | 607 | 13 | | `lua` | 288 → 272 | 13 | @@ -161,7 +162,7 @@ answer to "why did a real fix produce no diff" for those two — the strict test (`test_java_api_contract_2730`, `test_csharp_api_contract_2730`) hold the guard in place. **Already inside the contract (23, untouched):** `apex`, `cpp`, `css`, `dockerfile`, -`embedded_python`, `fortran`, `haskell`, `html`, `javascript`, `jcl` (`None`), `livecode`, `m4`, +`embedded_python`, `fortran`, `haskell`, `html`, `javascript`, `jcl` (`None` at the time; #2748 later gave it the PROC statement, fallback family), `livecode`, `m4`, `makefile`, `markdown` (`None`), `python`, `rust`, `scala`, `scheme`, `solidity`, `sqlite`, `tcl`, `yacc`, `zig`. diff --git a/docs/language_status/jcl.md b/docs/language_status/jcl.md index e0cb173be..613a6fa1c 100644 --- a/docs/language_status/jcl.md +++ b/docs/language_status/jcl.md @@ -7,9 +7,9 @@ | **Status** | production | | **Target Version** | IBM z/OS JCL | | **Lexical Family** | line_exclusive (with a dedicated `//*` whole-line stripper — see §10) | -| **Rules Wired** | 16 / 27 | +| **Rules Wired** | 21 / 30 | | **Extraction tests** | 42 | -| **Strict tests** | 65 | +| **Strict tests** | 100 | ## 2. Identification surface @@ -28,18 +28,21 @@ - `class_start`: Matches JCL JOB cards. **Safety & Risk** -- `high_risk_execution`: Matches execution of specific programs via `PGM=`. +- `high_risk_execution`: Matches `PGM=` naming a program whose purpose is to execute **caller-supplied commands** — TSO/E batch (`IKJEFT01`/`IKJEFT1A`/`IKJEFT1B`), the z/OS UNIX launchers (`BPXBATCH`/`BPXBATSL`/`BPXBATA2`/`BPXBATA8`/`AOPBATCH`), the REXX interpreter (`IRXJCL`) and batch `SDSF`. Narrowed by [#2751](https://github.com/squid-protocol/gitgalaxy/issues/2751) from a bare `PGM=`, which counted every step (188 of the corpus's 376 `EXEC` statements: `IEFBR14` 26, compilers and the linker 26, copy/catalog utilities 28) — running a program is what a step *is*, and no other language's rule counts "runs a command". Now 61 hits in 48 files, all `IKJEFT01` on this corpus. - `safety`: Matches `COND=` return-code tests (JCL's step error-handling); the bare bypass forms are excluded by lookahead. Added by [#2610](https://github.com/squid-protocol/gitgalaxy/issues/2610). - `safety_bypasses`: Matches `COND=EVEN` / `COND=ONLY` (run the step despite a prior abend — JCL's native ignore-the-error idiom). The combined form `COND=((4,LT),EVEN)` deliberately counts **both** safety and bypass: it carries a real RC test and a run-after-abend bypass at once. Added by #2610. **Resource Management** - `io`: Matches dataset definitions and I/O routing such as `DSN`, `DSNAME`, `SYSOUT`, `SYSPRINT`, `DISP=`. -- `sync_locks`: Matches `DISP=OLD` / `DISP=MOD` — the dispositions that request an **exclusive system ENQ** on a dataset, z/OS's native serialization idiom (`DISP=SHR` requests shared access and `DISP=NEW` allocates, so neither counts). Added by [#2733](https://github.com/squid-protocol/gitgalaxy/issues/2733). Every hit is also an `io` hit, since `io` counts the bare `DISP=` keyword; that overlap is accepted deliberately because the shape is narrow (48 hits in 15 of the corpus's 186 `.jcl`/`.prc`/`.bms` files, ~9% of its 525 `DISP=` occurrences; 429 of the remaining 477 are `DISP=SHR` and the other 48 allocate — `DISP=(NEW,…)`, or an omitted first positional that defaults to it) and the two meanings genuinely differ, the same way `COND=((4,LT),EVEN)` counts both `safety` and `safety_bypasses`. Contrast §4's `cleanup`, where the overlap would have covered essentially every disposition. +- `cleanup`: Matches `DELETE` as a dataset's **normal-termination** disposition — `DISP=(MOD,DELETE,DELETE)`, `DISP=(OLD,DELETE)`, `DISP=(,DELETE)` — JCL's teardown idiom (`IEFBR14` + `DISP=(MOD,DELETE,DELETE)` is how a batch job deletes a dataset). Added by [#2749](https://github.com/squid-protocol/gitgalaxy/issues/2749), reversing #2610's rejection on the terms #2733 set for `sync_locks`: a narrow subset (36 of the corpus's 533 `DISP=` occurrences, 13 of 186 files) with an accepted, test-pinned overlap — every hit is also an `io` hit, and the OLD/MOD forms are `sync_locks` hits too. The abnormal-termination positional of an allocation (`DISP=(NEW,CATLG,DELETE)`, 12 more) is excluded: a conditional disposition on a *create* is not teardown. +- `sync_locks`: Matches `DISP=OLD` / `DISP=MOD` — the dispositions that request an **exclusive system ENQ** on a dataset, z/OS's native serialization idiom (`DISP=SHR` requests shared access and `DISP=NEW` allocates, so neither counts). Added by [#2733](https://github.com/squid-protocol/gitgalaxy/issues/2733). Every hit is also an `io` hit, since `io` counts the bare `DISP=` keyword; that overlap is accepted deliberately because the shape is narrow (48 hits in 15 of the corpus's 186 `.jcl`/`.prc`/`.bms` files, ~9% of its 525 `DISP=` occurrences; 429 of the remaining 477 are `DISP=SHR` and the other 48 allocate — `DISP=(NEW,…)`, or an omitted first positional that defaults to it) and the two meanings genuinely differ, the same way `COND=((4,LT),EVEN)` counts both `safety` and `safety_bypasses`. #2749 later took the same route for `cleanup`'s DELETE subset. **State Mutation** - `state_mutation`: Matches JCL symbolic variable assignments via `SET`. +- `globals`: Matches the job-scoped declarations — `//JOBLIB DD` (the program search library for every step; its step-scoped twin `STEPLIB` does not count), a `// SET` symbol (readable by every later statement; its scoped twin is a `PROC` parameter) and `// EXPORT SYMLIST=`. Added by [#2750](https://github.com/squid-protocol/gitgalaxy/issues/2750). `SET` is also `state_mutation`, the same dual dockerfile's `ENV` carries; `JOBLIB` is also an `io` hit and a dependency edge, which is right — a JOBLIB is a dependency of every step. 73 hits in 45 corpus files (JOBLIB 32, SET 39, EXPORT 2). **Architecture & Domain Sensors** +- `api`: Matches `//name PROC` — a cataloged or in-stream procedure, the callable surface that `EXEC name` / `EXEC PROC=name` in other members invoke (the [api contract](../api_rule_contract.md)'s fallback family; the call site is a reference and does not count). Added by [#2748](https://github.com/squid-protocol/gitgalaxy/issues/2748). 13 declarations in 13 corpus files, invoked by 185 of its 376 `EXEC` statements. - `import`: Matches JCL includes (`INCLUDE`). - `_dependency_capture`: Captures the `MEMBER=` name for the dependency graph, as well as dataset names in `DD` statements and `JCLLIB` orders. - `ownership`: Matches ownership/maintainer comments like `//* Author:` (counted on the comment stream since #2610 — previously it only worked by accident on the code stream, see §10). @@ -50,17 +53,7 @@ ## 4. What GitGalaxy explicitly does not track -- `api`: None (JCL has no api rule; in practice `api` still appears on scanned JCL via the - orphan-conversion mechanism — see the keyword-rosetta ledger's `api-contextual-baseline-fix`). -- `cleanup`: None — **a deliberate decision, not an oversight** (#2610): the honest JCL cleanup - idiom is `DISP=(...,DELETE)`, but `DISP=` already feeds the `io` rule, so a cleanup rule would - double-count every disposition. Recorded in the keyword-rosetta deviation ledger - (`jcl-2610-rebaseline-residual-morphology`) as intended morphology. #2733 revisited the same - overlap for `sync_locks` and decided the other way — see §3 for why the two dispositions split. -- `globals`: None — JCL has no scoped-vs-global variable distinction (`SET` symbolics are already - `state_mutation`; a `JOBLIB`/`STEPLIB` rule was considered and rejected because those DD - statements would inflate `io` and `dependency_links`). -- `concurrency`: None. +- `concurrency`: None — steps within a job execute strictly sequentially; parallelism lives in JES scheduling, outside the language's own syntax. - `ui_framework`: None. - `closures`: None. - `decorators`: None. @@ -69,6 +62,7 @@ - `scientific`: None. - `reflection_metaprogramming`: None. - `debug_prints`: None. +- `doc`: None — no structured header-comment idiom is attested in the corpus (0 of its 1,610 `//*` lines carry a `Description:`/`Purpose:`-style key; the structured lines are copyright/SPDX banners). `test`: None — no native testing concept (`TYPRUN=SCAN`/`IEBCOMPR` do not appear in real decks either). Both re-checked 2026-09-05. ## 5. Known limitations (accepted, not fixed) @@ -80,10 +74,12 @@ None currently. ([#2415](https://github.com/squid-protocol/gitgalaxy/issues/2415 ## 6. Test depth - **Extraction-gauntlet tests**: 42 cases in `tests/extraction/languages/test_jcl.py` -- **Strict-signature tests**: 80 cases in `tests/extraction/languages/test_jcl_strict.py` +- **Strict-signature tests**: 100 cases in `tests/extraction/languages/test_jcl_strict.py` (51 → 65 with #2610's COND-partition semantics, JES3-guard and ReDoS detonation cases; 65 → 74 with #2732's `dead_code`/`spec_exposure` rules; 74 → 80 with #2733's `sync_locks` - disposition partition, io-overlap pin and ReDoS case) + disposition partition, io-overlap pin and ReDoS case; 80 → 100 with #2748–#2751's `api`, + `cleanup`, `globals` and narrowed `high_risk_execution` — per-rule partitions, overlap pins, + one end-to-end deck through prism + splice, and ReDoS detonations) ## 7. Relevant closed work @@ -256,6 +252,19 @@ decomposed into exactly five causes, each with a different fix path — recorded and the ×3 flux weighting ([#2546](https://github.com/squid-protocol/gitgalaxy/issues/2546)) inflating the cross-language median. No JCL action; re-baselines when those land. +**2026-09-05 revisit (#2748–#2751).** The second-look pass over every non-green rosetta cell +re-read bucket 4's zeros against the live rules and the crucible corpus and found that three of +them were rule gaps after all, plus one over-count: `api` (`//name PROC` — 185 of the corpus's +376 EXEC steps invoke a procedure), `cleanup` (`DISP=(…,DELETE)` — #2610's io-overlap rejection +no longer held once #2733 accepted the same overlap for `sync_locks`), `globals` (JOBLIB vs +STEPLIB, SET vs PROC parameters, EXPORT SYMLIST — the scoped-vs-global distinction bucket 4 said +did not exist) and `high_risk_execution` (a bare `PGM=` counted every step, so the corpus had +been dodging the rule with `EXEC ` steps rather than measuring it). §3/§4 carry the rules +and the reasoning; `doc` and `test` were re-checked and stay `None` with corpus evidence. The +corpus pairing (a PROC wrapper, a `DISP=(OLD,DELETE)` DD that also pays #2742's owed +`DISP=OLD` plant, no new plant for `globals` since `b.jcl`'s two `SET` lines already read 2, +and `PGM=IKJEFT01`/`BPXBATCH` in place of `IEFBR14`) is keyword-rosetta#59. + **Remaining out-of-band** (all accounted, none actionable at the JCL level): the bucket-4 morphology zeros (final disposition is the epic's scoring-side "absent morphology = incomparable" work), the bucket-5 metrics (blocked on #2545/#2546), and the §3 risk-score consequences diff --git a/gitgalaxy/standards/language_standards/languages/jcl.py b/gitgalaxy/standards/language_standards/languages/jcl.py index e7cc3be80..98e039225 100644 --- a/gitgalaxy/standards/language_standards/languages/jcl.py +++ b/gitgalaxy/standards/language_standards/languages/jcl.py @@ -78,8 +78,34 @@ "func_start": re.compile(r"^[ \t]*//([A-Za-z0-9_#$@]*)[ \t]+EXEC\b", re.M | re.I), # Classes/Entities (JOB cards). Same `\s+` -> `[ \t]+` cross-line fix as above. "class_start": re.compile(r"^[ \t]*//([A-Za-z0-9_#$@]+)[ \t]+JOB\b", re.M | re.I), - # Danger (Execution of arbitrary programs) - "high_risk_execution": re.compile(r"\bPGM=[A-Za-z0-9_#$@]+\b", re.I), + # Danger (execution of arbitrary programs). #2751: the rule used to be a + # bare `PGM=`, which counted every step -- running a program + # is what a JCL step IS, so the metric read "how many steps name a + # program" rather than "how many steps execute something arbitrary". + # On the language-crucible corpus that was 188 hits over 376 EXEC + # statements: IKJEFT01 60, IEFBR14 26 (a program that does NOTHING -- + # run only for its DD allocation/deletion side effects), IDCAMS 16, + # compilers and the linker 26, copy utilities 12, application programs + # 38. A compile-link-go job scored three high-risk executions for + # compiling. No other language's high_risk_execution counts "runs a + # command" (shell/dockerfile/python count eval/exec/os.system, not every + # command line), so the same planted intent read differently in JCL. + # Narrowed to the programs whose purpose is to execute CALLER-SUPPLIED + # commands: TSO/E batch (IKJEFT01 and its IKJEFT1A/IKJEFT1B variants, + # which run whatever SYSTSIN carries -- TSO commands, CLISTs, REXX, DB2 + # DSN RUN PROGRAM), the z/OS UNIX shell and program launchers + # (BPXBATCH/BPXBATSL/BPXBATA2/BPXBATA8, AOPBATCH), the REXX + # interpreter (IRXJCL) and batch SDSF (its ISFIN stream issues MVS + # operator commands). Compilers, copy/catalog utilities and IEFBR14 are + # steps, not arbitrary execution; IDCAMS/IEHPROGM/ADRDSSU are + # destructive-capable utilities but execute a fixed command language, + # so they are left out on the same reasoning that keeps `rm` (not + # `rm -rf /`) out of shell's rule. Unanchored like the other operand + # rules: PGM= can sit on a `//` continuation line (the #2482 shape). + "high_risk_execution": re.compile( + r"\bPGM=(?:IKJEFT01|IKJEFT1[AB]|BPXBATCH|BPXBATSL|BPXBATA[28]|AOPBATCH|IRXJCL|SDSF)\b", + re.I, + ), # I/O (Data Set Names and Sysouts) "io": re.compile(r"\b(DSN|DSNAME|SYSOUT|SYSPRINT|DISP=)\b", re.I), # #2610: JCL's error handling is the COND= operand -- a return-code @@ -93,7 +119,21 @@ # deliberately counts BOTH -- it carries a real RC test and a run-even- # after-abend bypass at once. "safety": re.compile(r"\bCOND=(?!(?:EVEN|ONLY)\b)", re.I), - "api": None, + # #2748: a cataloged or in-stream procedure is JCL's callable surface -- + # `//name PROC` declares what `EXEC name` / `EXEC PROC=name` in other + # members invoke, which is the api contract's definition (a declaration + # that makes a named unit visible outside the file it is declared in; + # docs/api_rule_contract.md, fallback family). On the language-crucible + # corpus 185 of the 376 EXEC statements invoke a procedure and 13 + # members declare one (10 of them in the member's first seven lines -- + # the member IS the procedure). Corollary 1 keeps the call site out: + # `EXEC name` is a reference. Name optional like the other statement + # rules (a cataloged PROC statement may be unnamed); `PEND` only closes + # an in-stream proc and is not a second declaration. A PROC that carries + # parameter defaults (`//BATCH PROC MEMBER=`) also matches args' `PROC` + # alternative -- a declaration with its parameter list, the same + # api+args pair every `def f(x)` produces. + "api": re.compile(r"^[ \t]*//([A-Za-z0-9_#$@]*)[ \t]+PROC\b", re.M | re.I), # #2610: COND=EVEN ("run even if a prior step abended") and COND=ONLY # ("run only after an abend") execute a step in spite of upstream # failure -- JCL's native ignore-the-error idiom. Two alternatives: @@ -146,9 +186,61 @@ # than the line carrying the ddname, the same real-corpus shape the # args rule's #2482 note documents. "sync_locks": re.compile(r"\bDISP=\(?(?:OLD|MOD)\b", re.I), + # #2749: DELETE as a dataset's normal-termination disposition is JCL's + # teardown idiom -- `//S EXEC PGM=IEFBR14` + `DD DSN=X,DISP=(MOD,DELETE, + # DELETE)` is THE way a batch job deletes a dataset (a no-op program run + # purely for the allocation side effect), and `DISP=(OLD,DELETE)` on a + # `&&TEMP` dataset frees it once the step is done. That is what cleanup + # measures through each language's own idiom elsewhere (shell's `rm -f` + # / `trap ... EXIT`, dockerfile's `apt-get clean`, yaml's `docker + # compose down`, #2647). + # #2610 declined this for the `io` overlap; #2733 (PR #2742) reversed + # that posture for the same operand's OLD/MOD subset, and the same + # measurement applies here: on the language-crucible corpus 36 of 533 + # `DISP=` occurrences (13 of 186 files) carry DELETE in the + # normal-termination position. Narrowed to that position deliberately: + # the abnormal-termination positional (`DISP=(NEW,CATLG,DELETE)`, 12 + # more) is a conditional disposition on an ALLOCATION -- the step's + # intent is to create the dataset and keep it, and only discard it if + # the step abends -- so it is excluded, the way `DISP=SHR`/`NEW` stay + # out of sync_locks. `[^,()\n]*` for the status positional accepts the + # omitted form `DISP=(,DELETE)` (a scratch dataset created and dropped + # in one step) and cannot cross a newline or a paren, so the scan is + # bounded to one operand (ReDoS-safe: the class excludes `,`, so the + # comma partitions at exactly one position). + # The overlap is accepted, not avoided, on #2742's terms: every hit is + # also an `io` hit (the DD's `DSN=`; `DISP=(` itself does not match + # io's `\bDISP=\b` -- no word boundary between `=` and `(`), and the + # `(OLD,DELETE)` / `(MOD,DELETE,DELETE)` forms are also sync_locks hits, + # because they hold an exclusive ENQ on the dataset they then drop. + # Pinned by test_jcl_cleanup_overlaps_io_and_sync_locks_by_design. + "cleanup": re.compile(r"\bDISP=\([^,()\n]*,[ \t]*DELETE\b", re.I), "ui_framework": None, "closures": None, - "globals": None, + # #2750: JCL does have a scoped-vs-global distinction, in three places: + # `//JOBLIB DD` is the program search library for EVERY step of the job + # (its step-scoped twin, `//STEPLIB DD`, applies to one step and is not + # counted -- crucible: JOBLIB in 32 files, STEPLIB 70 lines in 59); a + # `// SET SYM=value` symbol is readable by every later statement in the + # job (its scoped twin is a `PROC` parameter -- SET 39 lines in 12 + # files); `// EXPORT SYMLIST=` makes symbols visible inside in-stream + # data (2). That is the global-vs-local pair globals measures elsewhere + # (a python module-level name vs a def-local, dockerfile's image-wide + # `ENV` vs a RUN-local export, yaml's `${{ env.X }}`). + # SET is also `state_mutation`, and that is dockerfile's `ENV` shape + # exactly -- dual globals + state_mutation, ledgered in the rosetta + # corpus as batch4-dual-keyword-overlaps: a declaration that creates a + # job-wide symbol is both the creation of global state and a mutation + # of it. JOBLIB's DD line is also an `io` hit (its DSN) and a + # `_dependency_capture` edge, which is right -- a JOBLIB is a dependency + # of every step. Same anchoring as state_mutation (a real statement + # line, never inline SYSIN payload); the JOBLIB alternative is named + # exactly so a `//JOBLIBX` or `//SYSPROC` ddname cannot match. + "globals": re.compile( + r"^[ \t]*//JOBLIB[ \t]+DD\b" + r"|^[ \t]*//[A-Za-z0-9_#$@]*[ \t]+(?:SET[ \t]+[A-Za-z0-9_#$@]+=|EXPORT[ \t]+SYMLIST\b)", + re.M | re.I, + ), "decorators": None, "generics": None, "comprehensions": None, diff --git a/tests/extraction/languages/test_jcl_strict.py b/tests/extraction/languages/test_jcl_strict.py index cb8d94440..d3dc22674 100644 --- a/tests/extraction/languages/test_jcl_strict.py +++ b/tests/extraction/languages/test_jcl_strict.py @@ -33,7 +33,7 @@ ("structural_boundaries", "//STEPLIB DD DSN=SYS1.LINKLIB,DISP=SHR", "//STEP1 EXEC PGM=IEFBR14"), ("func_start", "//STEP1 EXEC PGM=IEFBR14", "//STEPLIB DD DSN=SYS1.LINKLIB,DISP=SHR"), ("class_start", "//MYJOB JOB (ACCT),'PROGRAMMER'", "//STEP1 EXEC PGM=IEFBR14"), - ("high_risk_execution", "//STEP1 EXEC PGM=IEFBR14", "//STEPLIB DD DSN=SYS1.LINKLIB,DISP=SHR"), + ("high_risk_execution", "//STEP1 EXEC PGM=IKJEFT01,DYNAMNBR=20", "//STEPLIB DD DSN=SYS1.LINKLIB,DISP=SHR"), ("io", "//SYSPRINT DD SYSOUT=*", "//STEP1 EXEC PGM=IEFBR14"), ("state_mutation", "// SET SYMVAR=VALUE", "//STEP1 EXEC PGM=IEFBR14"), ("import", "// INCLUDE MEMBER=STDPROC1", "//STEP1 EXEC PGM=IEFBR14"), @@ -109,11 +109,39 @@ # #2733: sync_locks = the exclusive-ENQ dispositions. DISP=SHR (shared # access, the default request) and DISP=NEW (allocation) are excluded. ("sync_locks", "//SYSLIN DD DISP=OLD,DSN=HLQ.SAMPLE.OBJ(SAM1)", "//STEPLIB DD DSN=SYS1.LINKLIB,DISP=SHR"), - ("sync_locks", "//DD1 DD DSN=HLQ.CUSTRPT,DISP=(MOD,DELETE,DELETE),", "//SYSUT2 DD DISP=(NEW,CATLG),DSN=HLQ.OUT"), + ( + "sync_locks", + "//DD1 DD DSN=HLQ.CUSTRPT,DISP=(MOD,DELETE,DELETE),", + "//SYSUT2 DD DISP=(NEW,CATLG),DSN=HLQ.OUT", + ), ("sync_locks", "//SYSLIN DD DSNAME=&&LOADSET,DISP=(OLD,DELETE)", "//S1 EXEC PGM=IEBGENER,PARM='OLDMODE'"), # #2732: spec_exposure = the generic traceability tag, `//*`-anchored ("spec_exposure", "//* [SPEC-4412] see the change request", "//* nothing traceable here"), ("spec_exposure", "//* raised under [audit] last quarter", "//* the behaviour is [specified] upstream"), + # #2748: api = the PROC statement (the callable surface `EXEC name` invokes) + ("api", "//IGYWCLG PROC LNGPRFX='IGY630',LIBPRFX='CEE',SRC=COBOL", "//CBL0001 EXEC IGYWCLG"), + ("api", "//DB2JCL PROC", "//STEP1 EXEC PROC=DB2JCL"), + ("api", "// PROC", "//SYSPROC DD DSN=SYS1.SYSPROC,DISP=SHR"), + # #2749: cleanup = DELETE as the normal-termination disposition + ( + "cleanup", + "//DD1 DD DSN=HLQ.CUSTRPT,DISP=(MOD,DELETE,DELETE),", + "//SYSUT2 DD DISP=(NEW,CATLG,DELETE),DSN=HLQ.OUT", + ), + ("cleanup", "//SYSLIN DD DISP=(OLD,DELETE),DSN=&&LOADSET", "//STEPLIB DD DSN=SYS1.LINKLIB,DISP=SHR"), + ( + "cleanup", + "//TEMP DD DISP=(,DELETE),UNIT=SYSDA,SPACE=(TRK,1)", + "//SYSIN DD *\n DELETE HLQ.OLD.CLUSTER CLUSTER", + ), + # #2750: globals = the job-scoped declarations (JOBLIB, SET, EXPORT SYMLIST) + ("globals", "//JOBLIB DD DSN=DSNC10.SDSNLOAD,DISP=SHR", "//STEPLIB DD DSN=DSNC10.SDSNLOAD,DISP=SHR"), + ("globals", "// SET HLQ='IBMUSER' *TSO USER ID", "//IGYWCLG PROC LNGPRFX='IGY630'"), + ("globals", "// EXPORT SYMLIST=*", "//JOBLIBX DD DSN=MY.LOAD,DISP=SHR"), + # #2751: high_risk_execution = the command executors only, not every PGM= + ("high_risk_execution", "//GRANT EXEC PGM=IKJEFT01,DYNAMNBR=20", "//STEP1 EXEC PGM=IEFBR14"), + ("high_risk_execution", "//SH EXEC PGM=BPXBATCH,PARM='SH ls /tmp'", "//COBOL EXEC PGM=IGYCRCTL,REGION=0M"), + ("high_risk_execution", "//REXX EXEC PGM=IRXJCL,PARM='MYEXEC'", "//DEL EXEC PGM=IDCAMS"), ] @@ -503,6 +531,286 @@ def test_jcl_new_comment_rules_redos_immunity(): assert JCL_RULES["spec_exposure"].search("//* [SPEC-4412] traceable") +def test_jcl_api_proc_declaration_not_the_call_site(): + """ + #2748: `//name PROC` is JCL's callable surface -- what `EXEC name` and + `EXEC PROC=name` in other members invoke -- so it is the api rule under + the #2730 contract's fallback family. Corollary 1 (a reference is not a + declaration) is the substance: the call sites must stay out, and so must + every other statement that merely contains the letters PROC. + """ + api = JCL_RULES["api"] + assert api is not None, "jcl's api rule is None again (#2748)" + + for declaration, name in ( + ("//IGYWCLG PROC LNGPRFX='IGY630',LIBPRFX='CEE',SRC=COBOL", "IGYWCLG"), + ("//BATCH PROC MEMBER=", "BATCH"), + ("//DB2JCL PROC ", "DB2JCL"), + ("//COMPROC PROC", "COMPROC"), + ("// PROC", ""), # a cataloged PROC statement may be unnamed + ("//$PROC#@ PROC A=1", "$PROC#@"), + ): + m = api.search(declaration) + assert m, f"missed a procedure declaration: {declaration!r}" + assert m.group(1) == name + + for reference_or_lookalike in ( + "//CBL0001 EXEC IGYWCLG", # the call site + "//STEP1 EXEC PROC=DB2JCL", # the explicit call-site form + "//SYSPROC DD DSN=SYS1.SYSPROC,DISP=SHR", # a ddname ending in PROC + "//PROCLIB DD DSN=SYS1.PROCLIB,DISP=SHR", # a ddname starting with PROC + "// PEND", # closes an in-stream proc; not a second declaration + "// PROCESS", # keyword prefix + "//* PROC statements are documented in the runbook", # a comment + "PROC", # bare token, no statement prefix + ): + assert not api.search(reference_or_lookalike), f"false positive: {reference_or_lookalike!r}" + + # One declaration, one hit, however many parameters it carries across + # continuation lines. + multi = ( + "//DSNUPROC PROC LIB='DSNC10.SDSNLOAD',SYSTEM=DBCG,\n// UID='',UTPROC=''\n//DSNUPROC EXEC PGM=DSNUTILB" + ) + assert len(api.findall(multi)) == 1 + + +def test_jcl_cleanup_only_the_normal_termination_delete(): + """ + #2749: DELETE as a dataset's normal-termination disposition is JCL's + teardown idiom (IEFBR14 + DISP=(MOD,DELETE,DELETE) is how a batch job + deletes a dataset). The rule is deliberately narrower than "DELETE appears + in a DISP=": the abnormal-termination positional of an allocation, + `DISP=(NEW,CATLG,DELETE)`, is a conditional disposition on a CREATE and + stays out, the way DISP=SHR/NEW stay out of sync_locks (#2733). As there, + the exclusions are the design, so assert them directly. + """ + cleanup = JCL_RULES["cleanup"] + assert cleanup is not None, "jcl's cleanup rule is None again (#2749)" + + for teardown in ( + "//DD1 DD DSN=&HLQ..SAMPLE.CUSTRPT,DISP=(MOD,DELETE,DELETE),", + "//SYSLIN DD DISP=(OLD,DELETE),DSN=&&LOADSET", + "//SYSIN DD DSN=&&TEMPM,DISP=(OLD,DELETE)", + "//TEMP DD DISP=(,DELETE),UNIT=SYSDA,SPACE=(TRK,1)", # omitted status = NEW, scratch dataset + "//X DD DISP=( OLD , DELETE )", # blank-padded positionals + ): + assert cleanup.search(teardown), f"missed a teardown disposition: {teardown!r}" + + for not_teardown in ( + "//SYSUT2 DD DISP=(NEW,CATLG,DELETE),DSN=HLQ.OUT", # abend-only DELETE on an allocation + "//SYSUT2 DD DISP=(NEW,KEEP,DELETE),DSN=HLQ.OUT", + "//SYSUT3 DD DISP=(,PASS),UNIT=SYSDA", + "//STEPLIB DD DSN=SYS1.LINKLIB,DISP=SHR", + "//SYSUT1 DD DISP=(OLD,KEEP),DSN=HLQ.KEEP", + "//SYSUT1 DD DISP=OLD,DSN=HLQ.DELETE.ME", # DELETE in a dataset name + "//S1 EXEC PGM=IDCAMS,PARM='DELETE'", # a PARM value + "//SYSIN DD *\n DELETE HLQ.OLD.CLUSTER CLUSTER\n/*", # IDCAMS command in SYSIN payload + "//X DD DISPOSITION=(OLD,DELETE)", + ): + assert not cleanup.search(not_teardown), f"counted a non-teardown: {not_teardown!r}" + + # Operand-anchored, not line-anchored: DISP= routinely sits on a `//` + # continuation line (the #2482 shape), as io/sync_locks already assume. + continuation = "//SYSUT1 DD DSN=HLQ.WORK,\n// DISP=(MOD,DELETE,DELETE),\n// UNIT=SYSDA" + assert cleanup.search(continuation) + + # The status positional cannot cross a paren or a newline: a DELETE in the + # NEXT statement's DISP= is not this statement's disposition. + two_statements = "//A DD DISP=(NEW,CATLG),DSN=HLQ.A\n//B DD DISP=(OLD,DELETE),DSN=HLQ.B" + assert len(cleanup.findall(two_statements)) == 1 + + +def test_jcl_cleanup_overlaps_io_and_sync_locks_by_design(): + """ + #2749: the overlap #2610 declined is accepted on #2742's terms -- a narrow, + semantically distinct subset of an operand io already counts. Every + cleanup hit is also an `io` hit (the DD's DSN=), and the OLD/MOD forms are + also `sync_locks` hits: the step holds an exclusive ENQ on the dataset it + then drops. Pin all three so a later change re-makes the decision rather + than drifting. + """ + cleanup, io, sync_locks = JCL_RULES["cleanup"], JCL_RULES["io"], JCL_RULES["sync_locks"] + + exclusive_then_dropped = "//SYSLIN DD DISP=(OLD,DELETE),DSN=&&LOADSET" + assert cleanup.search(exclusive_then_dropped) + assert io.search(exclusive_then_dropped) + assert sync_locks.search(exclusive_then_dropped) + + # ...and the converse does not hold in either direction. + shared = "//STEPLIB DD DSN=SYS1.LINKLIB,DISP=SHR" + assert io.search(shared) and not cleanup.search(shared) + held_and_kept = "//SYSUT1 DD DISP=(OLD,KEEP),DSN=HLQ.KEEP" + assert sync_locks.search(held_and_kept) and not cleanup.search(held_and_kept) + + +def test_jcl_globals_job_scoped_declarations(): + """ + #2750: JCL's scoped-vs-global distinction is JOBLIB (every step) vs STEPLIB + (one step), a SET symbol (every later statement) vs a PROC parameter (the + procedure), and EXPORT SYMLIST (symbols reaching in-stream data). The rule + counts the job-scoped side of each pair and nothing else -- STEPLIB is the + negative that matters, and `SET` must stay statement-anchored so an inline + SYSIN payload containing "SET X=1" does not count (the state_mutation + precedent). + """ + globals_ = JCL_RULES["globals"] + assert globals_ is not None, "jcl's globals rule is None again (#2750)" + + for job_scoped in ( + "//JOBLIB DD DSN=DSNC10.SDSNLOAD,DISP=SHR", + "//JOBLIB DD DISP=SHR,DSN=DSNC10.SDSNLOAD", + "// SET HLQ='IBMUSER' *TSO USER ID", + "// SET DB2HLQ=@DB2_HLQ@", + "//SET1 SET COUNTER=1", + "// EXPORT SYMLIST=*", + "// EXPORT SYMLIST=(HLQ,DB2HLQ)", + ): + assert globals_.search(job_scoped), f"missed a job-scoped declaration: {job_scoped!r}" + + for step_scoped_or_lookalike in ( + "//STEPLIB DD DSN=DSNC10.SDSNLOAD,DISP=SHR", # step-scoped twin + "// DD DSN=CEE.SCEERUN,DISP=SHR", # a JOBLIB concatenation line is not a second JOBLIB + "//JOBLIBX DD DSN=MY.LOAD,DISP=SHR", # ddname merely starting with JOBLIB + "//JOBLIB DISP=SHR", # not a DD statement + "//IGYWCLG PROC LNGPRFX='IGY630'", # a PROC parameter is the scoped twin of SET + "//SYSIN DD *\nSET X=1\n/*", # payload, not a statement + "//S1 EXEC PGM=X,PARM='SET A=1'", + "// SETX A=1", + "// EXPORT", # EXPORT without SYMLIST is not a JCL statement + "//* SET THE RETURN CODE TO CONTROL IF CICS SHOULD BE", + ): + assert not globals_.search(step_scoped_or_lookalike), f"false positive: {step_scoped_or_lookalike!r}" + + +def test_jcl_globals_set_is_also_state_mutation_by_design(): + """ + #2750: a `// SET` creates a job-wide symbol AND assigns it, so it is both + `globals` and `state_mutation` -- dockerfile's `ENV` shape exactly (dual + globals + state_mutation, ledgered in the rosetta corpus). JOBLIB is also + an `io` hit through its DSN=, which is correct: a JOBLIB is a dependency + of every step. Pin both so the overlap stays a decision. + """ + globals_, state, io = JCL_RULES["globals"], JCL_RULES["state_mutation"], JCL_RULES["io"] + assert globals_.search("// SET HLQ='IBMUSER'") and state.search("// SET HLQ='IBMUSER'") + assert globals_.search("//JOBLIB DD DSN=X.LOAD,DISP=SHR") and io.search("//JOBLIB DD DSN=X.LOAD,DISP=SHR") + # EXPORT SYMLIST is the one alternative with no overlap at all. + assert globals_.search("// EXPORT SYMLIST=*") and not state.search("// EXPORT SYMLIST=*") + + +def test_jcl_high_risk_execution_counts_executors_not_every_step(): + """ + #2751: the rule was a bare `PGM=`, which counted every step -- + running a program is what a JCL step IS -- so a compile-link-go job scored + three high-risk executions for compiling and IEFBR14 (a program that does + nothing) counted the same as a TSO batch step that executes whatever + SYSTSIN carries. Narrowed to the programs whose purpose is to execute + caller-supplied commands; the negatives are the crucible's most frequent + PGM= values, which are exactly what must NOT count. + """ + danger = JCL_RULES["high_risk_execution"] + + for executor in ( + "//GRANT EXEC PGM=IKJEFT01,DYNAMNBR=20", + "//TSO EXEC PGM=IKJEFT1B", + "//SH EXEC PGM=BPXBATCH,PARM='SH ls /tmp'", + "//SHL EXEC PGM=BPXBATSL", + "//UNIX EXEC PGM=AOPBATCH", + "//REXX EXEC PGM=IRXJCL,PARM='MYEXEC'", + "//OPER EXEC PGM=SDSF", + "//lower exec pgm=ikjeft01", + ): + assert danger.search(executor), f"missed an executor: {executor!r}" + + for a_step_not_an_execution in ( + "//STEP1 EXEC PGM=IEFBR14", # no-op, run for its DD side effects + "//COBOL EXEC PGM=IGYCRCTL,REGION=0M", # compiler + "//LKED EXEC PGM=IEWL", # linker + "//DEL EXEC PGM=IDCAMS", # catalog utility: a fixed command language + "//COPY EXEC PGM=IEBGENER", + "//SORT EXEC PGM=ICEGENER", + "//RUN EXEC PGM=CBL0001", # the job's own application program + "//X EXEC PGM=IKJEFT01X", # not the executor, a longer name + "//X EXEC PGM=MYIKJEFT01", + "//X EXEC PGM=X,PARM='IKJEFT01'", # the name as a PARM value + "//X EXEC IKJEFT01", # a procedure named like the program + ): + assert not danger.search(a_step_not_an_execution), f"counted a step as execution: {a_step_not_an_execution!r}" + + # PGM= on a continuation line (the #2482 shape) still counts. + assert danger.search("//STEP0001 EXEC TIME=1440,REGION=0M,\n// PGM=IKJEFT01") + + +def test_jcl_new_rules_count_through_the_real_pipeline(): + """ + #2748/#2749/#2750/#2751 end to end: the four rules score through + prism + StructuralExtractor.splice, not just as regexes on a string. The + deck is a cut-down real shape -- a cataloged proc header, a JOBLIB, two + SETs, an IEFBR14 delete step, a TSO batch step, and the call site that + invokes the proc -- and the SYSIN payload carries the lookalikes every + rule must ignore. + """ + from gitgalaxy.core.detector import StructuralExtractor + from gitgalaxy.core.prism import Prism + from gitgalaxy.standards.gitgalaxy_config import LEXICAL_FAMILY_HEURISTICS + + sample = ( + "//DB2JCL PROC\n" + "//* SET THE RETURN CODE TO CONTROL IF CICS SHOULD BE\n" + "//JOBLIB DD DSN=DSNC10.SDSNLOAD,DISP=SHR\n" + "// DD DSN=CEE.SCEERUN,DISP=SHR\n" + "// SET HLQ='IBMUSER'\n" + "// SET DB2SYS=DBCG\n" + "//DELETE EXEC PGM=IEFBR14\n" + "//DD1 DD DSN=&HLQ..CUSTRPT,DISP=(MOD,DELETE,DELETE),\n" + "// UNIT=SYSDA,SPACE=(CYL,(0))\n" + "//SYSUT2 DD DISP=(NEW,CATLG,DELETE),DSN=&HLQ..OUT\n" + "//GRANT EXEC PGM=IKJEFT01,DYNAMNBR=20\n" + "//SYSTSIN DD *\n" + " DSN SYSTEM(DBCG)\n" + " SET X=1\n" + " DELETE HLQ.OLD.CLUSTER CLUSTER\n" + "/*\n" + "//CALL EXEC DB2JCL\n" + "//STEPLIB DD DSN=DSNC10.SDSNLOAD,DISP=SHR\n" + "// PEND\n" + ) + + prism = Prism(LEXICAL_FAMILY_HEURISTICS, LANGUAGE_DEFINITIONS) + streams = prism.split_streams(sample, "jcl") + equations = StructuralExtractor("jcl", LANGUAGE_DEFINITIONS).splice( + streams["code_stream"], streams["comment_stream"], raw_content=sample + )["equations"] + + assert equations.get("api", 0) == 1, "the PROC statement, not the EXEC that calls it" + assert equations.get("cleanup", 0) == 1, "the (MOD,DELETE,DELETE), not the (NEW,CATLG,DELETE)" + assert equations.get("globals", 0) == 3, "JOBLIB + two SETs; not the concatenation, STEPLIB or the SYSIN SET" + assert equations.get("high_risk_execution", 0) == 1, "IKJEFT01 only; IEFBR14 is a step" + + +def test_jcl_new_rules_redos_immunity(): + """ + #2748-#2751: every new alternation is a literal keyword behind a bounded + name/whitespace gap or a single negated class that excludes its own + terminator (`[^,()\\n]*` then `,`), so each quantifier has one landing + site. Hold the line on it with the same detonations the other rules get. + """ + assert_redos_immune(JCL_RULES["api"], "//" + "A" * 50000, timeout_sec=3.0) + assert_redos_immune(JCL_RULES["api"], "//" + " " * 50000 + "PROC", timeout_sec=3.0) + assert_redos_immune(JCL_RULES["cleanup"], "DISP=(" + "A" * 50000, timeout_sec=3.0) + assert_redos_immune(JCL_RULES["cleanup"], "DISP=(" + ", " * 25000, timeout_sec=3.0) + assert_redos_immune(JCL_RULES["cleanup"], "//X DD " + "DISP=(" * 20000, timeout_sec=3.0) + assert_redos_immune(JCL_RULES["globals"], "//" + "A" * 50000, timeout_sec=3.0) + assert_redos_immune(JCL_RULES["globals"], "//JOBLIB" + " " * 50000, timeout_sec=3.0) + assert_redos_immune(JCL_RULES["globals"], "// SET " + "A" * 50000, timeout_sec=3.0) + assert_redos_immune(JCL_RULES["high_risk_execution"], "PGM=" + "IKJEFT0" * 10000, timeout_sec=3.0) + assert_redos_immune(JCL_RULES["high_risk_execution"], "PGM=IKJEFT01" * 10000, timeout_sec=3.0) + + assert JCL_RULES["api"].search("//DB2JCL PROC") + assert JCL_RULES["cleanup"].search("//SYSLIN DD DISP=(OLD,DELETE),DSN=&&LOADSET") + assert JCL_RULES["globals"].search("//JOBLIB DD DSN=X,DISP=SHR") + assert JCL_RULES["high_risk_execution"].search("//GRANT EXEC PGM=IKJEFT01") + + def test_jcl_lexical_family_no_block_terminator_state_to_confuse(): """ Lexical-family audit: jcl is `line_exclusive` -- no block comment From 488f092bdbce8e3da809cac390e0a22e74559cb9 Mon Sep 17 00:00:00 2001 From: Joe Esquibel Date: Sat, 5 Sep 2026 14:14:51 -0400 Subject: [PATCH 2/3] test(core-engine): re-bless the golden masters for the jcl rule changes (#2748-#2751) Both fixtures regenerated with crucible_check.py --update. Every substantive difference is in jcl files or jcl directory aggregates (zero off-target files); the rest is the corpus-wide topological re-solve. Field breakdown and direction of change are in the PR description. Co-Authored-By: Claude Fable 5.1 --- tests/golden_master_audit.json | 18502 +++++++++++----------- tests/golden_master_zero_dep_audit.json | 18502 +++++++++++----------- 2 files changed, 18502 insertions(+), 18502 deletions(-) diff --git a/tests/golden_master_audit.json b/tests/golden_master_audit.json index 261187849..4037fa065 100644 --- a/tests/golden_master_audit.json +++ b/tests/golden_master_audit.json @@ -11,14 +11,14 @@ "pyyaml": false }, "Target Root Name": "data", - "Absolute Project Path": "/srv/storage_16tb/projects/gitgalaxy/language-crucible/data", - "Analysis ISO Timestamp": "2026-09-05T13:04:59.576756+00:00", - "Total Scan Duration": "20.21 seconds" + "Absolute Project Path": "/home/joe/nyx_projects/language-crucible/data", + "Analysis ISO Timestamp": "2026-09-05T18:13:28.638354+00:00", + "Total Scan Duration": "49.35 seconds" }, "Source Control Footprint (Immutable Anchor)": { "Active Branch": "HEAD", "Commit Hash (SHA-1)": "77bc85ecb8bb2fa8331b83f2bd348ec735df66e3", - "Remote Origin URL": "https://github.com/squid-protocol/language-crucible.git", + "Remote Origin URL": "https://github.com/squid-protocol/language-crucible", "Last Code Integration Date": "2026-08-30T08:52:00-04:00" } }, @@ -237,9 +237,9 @@ }, "health": { "avg_cognitive_load": 22.578, - "avg_safety_score": 45.662, + "avg_safety_score": 43.75, "avg_tech_debt": 28.878, - "avg_documentation": 7.985 + "avg_documentation": 8.052 }, "composition": { "markdown": { @@ -410,7 +410,7 @@ "jcl": { "files": 185, "loc": 5837, - "impact": 894.9400000000007 + "impact": 907.9400000000007 }, "kotlin": { "files": 5, @@ -1152,20 +1152,20 @@ }, "jcl/cics-genapp": { "file_count": 30, - "total_mass": 261.84, + "total_mass": 263.84, "avg_exposures": { "cognitive_load": 0.0, - "safety_score": 50.57, + "safety_score": 8.22, "tech_debt": 41.75, - "verification": 2.28, - "api_exposure": 0.0, + "verification": 2.27, + "api_exposure": 0.21, "concurrency": 0.0, "state_flux": 0.34, "dead_code": 0.0, "spec_match": 96.67, "stability": 48.33, "churn": 0.0, - "documentation": 0.0, + "documentation": 0.79, "secrets_risk": 0.0 } }, @@ -5012,7 +5012,7 @@ "total_mass": 15.76, "avg_exposures": { "cognitive_load": 0.0, - "safety_score": 71.72, + "safety_score": 46.1, "tech_debt": 53.79, "verification": 2.34, "api_exposure": 0.0, @@ -5028,20 +5028,20 @@ }, "jcl/cics-banking-sample-application-cbsa": { "file_count": 99, - "total_mass": 312.88, + "total_mass": 316.88, "avg_exposures": { "cognitive_load": 0.0, - "safety_score": 45.62, + "safety_score": 30.07, "tech_debt": 43.22, "verification": 2.33, - "api_exposure": 0.98, + "api_exposure": 1.11, "concurrency": 0.0, "state_flux": 1.17, "dead_code": 3.07, "spec_match": 98.99, "stability": 50.0, "churn": 0.0, - "documentation": 3.87, + "documentation": 4.47, "secrets_risk": 0.0 } }, @@ -5050,9 +5050,9 @@ "total_mass": 3.12, "avg_exposures": { "cognitive_load": 0.0, - "safety_score": 76.85, + "safety_score": 0.0, "tech_debt": 0.0, - "verification": 2.34, + "verification": 2.33, "api_exposure": 0.0, "concurrency": 0.0, "state_flux": 0.0, @@ -5066,39 +5066,39 @@ }, "jcl/cobol-programming-course": { "file_count": 43, - "total_mass": 204.5, + "total_mass": 210.5, "avg_exposures": { "cognitive_load": 2.47, - "safety_score": 61.88, + "safety_score": 10.65, "tech_debt": 61.05, - "verification": 2.37, - "api_exposure": 0.0, + "verification": 2.36, + "api_exposure": 0.49, "concurrency": 0.0, "state_flux": 0.0, "dead_code": 0.0, "spec_match": 100.0, "stability": 50.0, "churn": 0.0, - "documentation": 0.0, + "documentation": 2.19, "secrets_risk": 0.0 } }, "jcl/zopeneditor-sample": { "file_count": 10, - "total_mass": 97.88, + "total_mass": 98.88, "avg_exposures": { "cognitive_load": 0.0, - "safety_score": 79.56, + "safety_score": 57.6, "tech_debt": 68.06, - "verification": 2.37, - "api_exposure": 0.0, + "verification": 2.35, + "api_exposure": 0.35, "concurrency": 0.0, "state_flux": 38.85, "dead_code": 0.0, "spec_match": 90.0, "stability": 50.0, "churn": 0.0, - "documentation": 0.0, + "documentation": 1.19, "secrets_risk": 0.0 } }, @@ -346598,9 +346598,9 @@ "Identity Proof": "Single Indicator (Ext: .js)" }, "2. Topological Coordinates": { - "X": 3101.32, + "X": 3101.8, "Y": -96.08, - "Z": -9884.12 + "Z": -9885.58 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -347512,9 +347512,9 @@ "Identity Proof": "Single Indicator (Ext: .js)" }, "2. Topological Coordinates": { - "X": 2747.21, + "X": 2747.68, "Y": -174.69, - "Z": -9333.17 + "Z": -9334.63 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -348960,9 +348960,9 @@ "Identity Proof": "Single Indicator (Ext: .js)" }, "2. Topological Coordinates": { - "X": 3072.92, + "X": 3073.4, "Y": -49.48, - "Z": -9615.31 + "Z": -9616.77 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -350692,9 +350692,9 @@ "Identity Proof": "Single Indicator (Ext: .js)" }, "2. Topological Coordinates": { - "X": 3356.44, + "X": 3356.92, "Y": 40.54, - "Z": -9275.17 + "Z": -9276.64 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -350860,9 +350860,9 @@ "Identity Proof": "Single Indicator (Ext: .ts)" }, "2. Topological Coordinates": { - "X": 2575.63, + "X": 2576.11, "Y": -244.18, - "Z": -9677.5 + "Z": -9678.97 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -443886,9 +443886,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": 7379.65, + "X": 7381.92, "Y": 165.91, - "Z": -8428.15 + "Z": -8430.57 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -444689,9 +444689,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": 6999.03, + "X": 7001.3, "Y": 265.38, - "Z": -7713.08 + "Z": -7715.5 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -445659,9 +445659,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": 6787.47, + "X": 6789.74, "Y": 225.18, - "Z": -7948.69 + "Z": -7951.11 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -445940,9 +445940,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": 7824.7, + "X": 7826.97, "Y": 134.51, - "Z": -8173.94 + "Z": -8176.36 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -446212,9 +446212,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": 7637.84, + "X": 7640.11, "Y": 311.63, - "Z": -7253.28 + "Z": -7255.7 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -446490,9 +446490,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": 7292.29, + "X": 7294.56, "Y": 257.91, - "Z": -7908.17 + "Z": -7910.59 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -447600,9 +447600,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": 7201.47, + "X": 7203.75, "Y": 404.61, - "Z": -7208.57 + "Z": -7210.99 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -447991,9 +447991,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": 3754.12, + "X": 3754.73, "Y": -127.57, - "Z": -9730.85 + "Z": -9732.2 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -448148,9 +448148,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": 3527.29, + "X": 3527.89, "Y": -76.36, - "Z": -9338.08 + "Z": -9339.43 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -449380,9 +449380,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": 4546.52, + "X": 4547.12, "Y": -154.94, - "Z": -9433.18 + "Z": -9434.54 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -450100,9 +450100,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": 4000.91, + "X": 4001.51, "Y": -115.21, - "Z": -9116.12 + "Z": -9117.47 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -451422,9 +451422,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": 4065.71, + "X": 4066.32, "Y": -150.26, - "Z": -9701.93 + "Z": -9703.29 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -452471,9 +452471,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": 3853.29, + "X": 3853.89, "Y": -147.74, - "Z": -8519.42 + "Z": -8520.78 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -452843,9 +452843,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": 3774.4, + "X": 3775.01, "Y": -155.51, - "Z": -8957.33 + "Z": -8958.69 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -454671,9 +454671,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": 4359.96, + "X": 4360.56, "Y": -127.18, - "Z": -8643.55 + "Z": -8644.9 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -586387,9 +586387,9 @@ "Identity Proof": "Single Indicator (Ext: .json)" }, "2. Topological Coordinates": { - "X": 5190.5, + "X": 5191.95, "Y": 237.38, - "Z": -9063.81 + "Z": -9066.58 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -586544,9 +586544,9 @@ "Identity Proof": "Single Indicator (Exact Match)" }, "2. Topological Coordinates": { - "X": 4395.86, + "X": 4397.3, "Y": 229.37, - "Z": -9470.98 + "Z": -9473.74 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -586702,9 +586702,9 @@ "Identity Proof": "Single Indicator (Ext: .ts)" }, "2. Topological Coordinates": { - "X": 4895.14, + "X": 4896.59, "Y": 292.43, - "Z": -9843.68 + "Z": -9846.44 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -588738,9 +588738,9 @@ "Identity Proof": "Single Indicator (Ext: .ts)" }, "2. Topological Coordinates": { - "X": 4901.07, + "X": 4902.51, "Y": 202.09, - "Z": -9501.06 + "Z": -9503.83 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -590472,9 +590472,9 @@ "Identity Proof": "Single Indicator (Ext: .ts)" }, "2. Topological Coordinates": { - "X": 4599.26, + "X": 4600.71, "Y": 227.35, - "Z": -9001.68 + "Z": -9004.44 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -644335,9 +644335,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 3515.9, + "X": 3516.45, "Y": 71.06, - "Z": -8331.43 + "Z": -8332.9 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -644543,9 +644543,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 2648.6, + "X": 2649.14, "Y": 152.18, - "Z": -7787.68 + "Z": -7789.15 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -644711,9 +644711,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 3252.91, + "X": 3253.45, "Y": 174.96, - "Z": -7676.21 + "Z": -7677.69 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -644868,9 +644868,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 3061.92, + "X": 3062.47, "Y": 89.43, - "Z": -8674.58 + "Z": -8676.05 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -645186,9 +645186,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 2925.56, + "X": 2926.11, "Y": 80.1, - "Z": -8860.62 + "Z": -8862.09 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -645354,9 +645354,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 3082.82, + "X": 3083.37, "Y": 118.21, - "Z": -8095.17 + "Z": -8096.64 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -645922,9 +645922,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 2490.11, + "X": 2490.66, "Y": 140.87, - "Z": -7952.01 + "Z": -7953.48 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -646120,9 +646120,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 3742.69, + "X": 3743.24, "Y": 118.51, - "Z": -8297.59 + "Z": -8299.07 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -646308,9 +646308,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 2908.16, + "X": 2908.71, "Y": 179.25, - "Z": -7607.1 + "Z": -7608.58 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -646526,9 +646526,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 3381.54, + "X": 3382.09, "Y": 110.37, - "Z": -8947.0 + "Z": -8948.48 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -646683,9 +646683,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 2794.72, + "X": 2795.26, "Y": 125.85, - "Z": -8076.3 + "Z": -8077.77 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -646921,9 +646921,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 2773.83, + "X": 2774.37, "Y": 129.36, - "Z": -8574.44 + "Z": -8575.91 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -647149,9 +647149,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 2412.33, + "X": 2412.88, "Y": 97.98, - "Z": -8659.68 + "Z": -8661.16 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -647317,9 +647317,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 3651.07, + "X": 3651.61, "Y": 99.96, - "Z": -8040.89 + "Z": -8042.36 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -647515,9 +647515,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 3334.01, + "X": 3334.56, "Y": 92.83, - "Z": -7742.97 + "Z": -7744.45 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -647683,9 +647683,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 2580.46, + "X": 2581.01, "Y": 110.01, - "Z": -8383.3 + "Z": -8384.77 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -647851,9 +647851,9 @@ "Identity Proof": "Metadata Anchor (COPYRIGHT)" }, "2. Topological Coordinates": { - "X": 3616.72, + "X": 3617.26, "Y": 137.93, - "Z": -7858.16 + "Z": -7859.63 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -651812,9 +651812,9 @@ "Identity Proof": "Single Indicator (Ext: .xml)" }, "2. Topological Coordinates": { - "X": 5543.46, + "X": 5545.09, "Y": 137.98, - "Z": -9183.57 + "Z": -9186.04 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -651969,9 +651969,9 @@ "Identity Proof": "Single Indicator (Ext: .abap)" }, "2. Topological Coordinates": { - "X": 5619.22, + "X": 5620.86, "Y": 260.73, - "Z": -8065.52 + "Z": -8067.98 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -652133,9 +652133,9 @@ "Identity Proof": "Single Indicator (Ext: .abap)" }, "2. Topological Coordinates": { - "X": 5478.25, + "X": 5479.88, "Y": 205.12, - "Z": -8549.89 + "Z": -8552.35 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -652761,9 +652761,9 @@ "Identity Proof": "Single Indicator (Ext: .abap)" }, "2. Topological Coordinates": { - "X": 5855.09, + "X": 5856.72, "Y": 149.3, - "Z": -9178.84 + "Z": -9181.3 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -653109,9 +653109,9 @@ "Identity Proof": "Single Indicator (Ext: .abap)" }, "2. Topological Coordinates": { - "X": 5304.66, + "X": 5306.29, "Y": 269.32, - "Z": -8739.61 + "Z": -8742.07 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -653367,9 +653367,9 @@ "Identity Proof": "Single Indicator (Ext: .abap)" }, "2. Topological Coordinates": { - "X": 5807.85, + "X": 5809.48, "Y": 186.55, - "Z": -8852.28 + "Z": -8854.75 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -653825,9 +653825,9 @@ "Identity Proof": "Single Indicator (Ext: .abap)" }, "2. Topological Coordinates": { - "X": 6070.91, + "X": 6072.55, "Y": 99.09, - "Z": -8310.04 + "Z": -8312.5 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -654113,9 +654113,9 @@ "Identity Proof": "Single Indicator (Ext: .abap)" }, "2. Topological Coordinates": { - "X": 6183.94, + "X": 6185.58, "Y": 55.62, - "Z": -8988.36 + "Z": -8990.82 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -732321,9 +732321,9 @@ "Identity Proof": "Prose Extension (.txt)" }, "2. Topological Coordinates": { - "X": 5618.7, + "X": 5620.92, "Y": -266.49, - "Z": -6269.74 + "Z": -6272.8 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -732478,9 +732478,9 @@ "Identity Proof": "Metadata Anchor (Jenkinsfile)" }, "2. Topological Coordinates": { - "X": 4796.02, + "X": 4798.24, "Y": -119.0, - "Z": -6798.41 + "Z": -6801.46 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -732746,9 +732746,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 5016.27, + "X": 5018.5, "Y": -210.24, - "Z": -5888.26 + "Z": -5891.32 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -732905,9 +732905,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4318.96, + "X": 4321.19, "Y": -45.97, - "Z": -6583.66 + "Z": -6586.71 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -733067,9 +733067,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 5469.74, + "X": 5471.96, "Y": -135.16, - "Z": -6935.75 + "Z": -6938.81 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -733227,9 +733227,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4459.0, + "X": 4461.22, "Y": 165.94, - "Z": -7444.17 + "Z": -7447.22 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -733384,9 +733384,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 5130.05, + "X": 5132.27, "Y": 15.44, - "Z": -7210.8 + "Z": -7213.86 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -733545,9 +733545,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 5251.87, + "X": 5254.09, "Y": -40.13, - "Z": -6979.22 + "Z": -6982.28 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -733708,9 +733708,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4557.46, + "X": 4559.68, "Y": 65.17, - "Z": -7024.03 + "Z": -7027.08 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -733869,9 +733869,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4193.16, + "X": 4195.38, "Y": 73.84, - "Z": -6997.01 + "Z": -7000.06 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -734028,9 +734028,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 5370.26, + "X": 5372.48, "Y": -264.76, - "Z": -6211.29 + "Z": -6214.35 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -734185,9 +734185,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4025.84, + "X": 4028.06, "Y": -11.64, - "Z": -6430.3 + "Z": -6433.35 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -734342,9 +734342,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4579.71, + "X": 4581.93, "Y": -115.23, - "Z": -6529.55 + "Z": -6532.61 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -734499,9 +734499,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4663.69, + "X": 4665.92, "Y": -198.24, - "Z": -6019.58 + "Z": -6022.64 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -734661,9 +734661,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4359.89, + "X": 4362.11, "Y": -229.14, - "Z": -6147.45 + "Z": -6150.51 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -734820,9 +734820,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4130.54, + "X": 4132.76, "Y": -188.39, - "Z": -6122.76 + "Z": -6125.82 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -734979,9 +734979,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 5101.42, + "X": 5103.64, "Y": -223.34, - "Z": -6433.75 + "Z": -6436.81 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -735138,9 +735138,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4268.55, + "X": 4270.77, "Y": -112.82, - "Z": -6301.9 + "Z": -6304.96 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -735295,9 +735295,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 5412.54, + "X": 5414.76, "Y": -133.35, - "Z": -6434.94 + "Z": -6438.0 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -735454,9 +735454,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4809.51, + "X": 4811.73, "Y": -20.86, - "Z": -7111.88 + "Z": -7114.94 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -735611,9 +735611,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4990.24, + "X": 4992.46, "Y": 96.15, - "Z": -7351.88 + "Z": -7354.93 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -735768,9 +735768,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 5642.46, + "X": 5644.68, "Y": -176.74, - "Z": -6543.93 + "Z": -6546.99 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -735925,9 +735925,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 5274.56, + "X": 5276.78, "Y": -255.85, - "Z": -5979.01 + "Z": -5982.07 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -736082,9 +736082,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4466.04, + "X": 4468.26, "Y": -266.15, - "Z": -5648.6 + "Z": -5651.65 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -736241,9 +736241,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4739.9, + "X": 4742.12, "Y": 52.17, - "Z": -7333.78 + "Z": -7336.83 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -736400,9 +736400,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 5424.34, + "X": 5426.56, "Y": 9.79, - "Z": -7115.05 + "Z": -7118.11 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -736559,9 +736559,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 3950.48, + "X": 3952.7, "Y": 80.71, - "Z": -6890.78 + "Z": -6893.84 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -736716,9 +736716,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4814.53, + "X": 4816.75, "Y": -231.16, - "Z": -5913.63 + "Z": -5916.69 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -736875,9 +736875,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4322.66, + "X": 4324.88, "Y": 78.77, - "Z": -7390.11 + "Z": -7393.16 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -737032,9 +737032,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 5702.02, + "X": 5704.24, "Y": -20.68, - "Z": -6977.27 + "Z": -6980.33 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -764444,9 +764444,9 @@ "Identity Proof": "Metadata Anchor (COPYRIGHT)" }, "2. Topological Coordinates": { - "X": 3963.5, + "X": 3964.02, "Y": 165.09, - "Z": -10504.12 + "Z": -10505.44 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -764601,9 +764601,9 @@ "Identity Proof": "Single Indicator (Shebang)" }, "2. Topological Coordinates": { - "X": 3947.57, + "X": 3948.09, "Y": 184.98, - "Z": -10127.93 + "Z": -10129.26 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -764966,9 +764966,9 @@ "Identity Proof": "Single Indicator (Shebang)" }, "2. Topological Coordinates": { - "X": 3726.96, + "X": 3727.49, "Y": 160.01, - "Z": -9794.36 + "Z": -9795.68 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -793742,57 +793742,56 @@ } } }, - "sqlite/mediawiki_sqlite_tables": { - "Directory Group Magnitude": 315.54, - "File Count": 11, + "jcl/cics-banking-sample-application-cbsa": { + "Directory Group Magnitude": 316.88, + "File Count": 99, "Ecosystem Fingerprint (Archetypes)": { - "Unclassified": "90.9%", - "Static: Literature & Documentation": "9.1%" + "Unclassified": "100.0%" }, "Average Risk Exposures": { - "Cognitive Load Exposure": "0.48%", - "Error & Exception Exposure": "26.32%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.14%", - "API Exposure": "0.32%", + "Cognitive Load Exposure": "0.0%", + "Error & Exception Exposure": "30.07%", + "Tech Debt Exposure": "43.22%", + "Testing Exposure": "2.33%", + "API Exposure": "1.11%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "81.82%", - "Instability Exposure": "45.45%", + "State Flux Exposure": "1.17%", + "Commented Logic Exposure": "3.07%", + "Specification Exposure": "98.99%", + "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "1.23%", + "Documentation Exposure": "4.47%", "Hardcoded Payload Artifacts": "0.0%" }, "Files": { - "sqlite/mediawiki_sqlite_tables/COPYING": { + "jcl/cics-banking-sample-application-cbsa/ABNDPROC.jcl": { "1. Artifact Identity": { - "Filename": "COPYING", - "Path": "sqlite/mediawiki_sqlite_tables/COPYING", - "Language": "Plaintext", + "Filename": "ABNDPROC.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/ABNDPROC.jcl", + "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "sqlite", - "Lock Tier": 1, - "Identity Proof": "Metadata Anchor (COPYING)" + "Folder Dominant Lang": "jcl", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -2341.96, - "Y": -8.88, - "Z": -7213.53 + "X": -1061.47, + "Y": 112.96, + "Z": -2906.46 }, "3. Architectural Profile": { - "Repository Archetype": "Static: Literature & Documentation", + "Repository Archetype": "Unclassified", "Repository Drift (Z-Score)": 0.0, "Repository Fingerprint": {}, - "File Archetype": "N/A", + "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 379, - "Coding LOC": 0, - "Documentation LOC": 307, - "Structural Magnitude": 7.58, + "Total LOC": 8, + "Coding LOC": 3, + "Documentation LOC": 4, + "Structural Magnitude": 1.16, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -793801,27 +793800,38 @@ "Raw Cognitive Density": 0.0 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "[UNSCANNED - NO DATA]", - "Error & Exception Exposure": "[UNSCANNED - NO DATA]", - "Tech Debt Exposure": "[UNSCANNED - NO DATA]", - "Testing Exposure": "[UNSCANNED - NO DATA]", - "API Exposure": "[UNSCANNED - NO DATA]", - "Concurrency Exposure": "[UNSCANNED - NO DATA]", - "State Flux Exposure": "[UNSCANNED - NO DATA]", - "Commented Logic Exposure": "[UNSCANNED - NO DATA]", - "Specification Exposure": "[UNSCANNED - NO DATA]", - "Instability Exposure": "[UNSCANNED - NO DATA]", - "Volatility Exposure": "[UNSCANNED - NO DATA]", - "Documentation Exposure": "[UNSCANNED - NO DATA]", - "Hardcoded Payload Artifacts": "[UNSCANNED - NO DATA]" + "Cognitive Load Exposure": "0.0%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "73.11%", + "Testing Exposure": "2.31%", + "API Exposure": "0.0%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "0.0%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "100.0%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "0.0%", + "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [], + "5. Function Analysis": [ + { + "Function Name": "Unknown_Block", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 7, + "End Line": 7 + } + ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 0, + "Sequential Logic Declarations": 1, "Function Parameters": 0, - "Function/Method Declarations": 0, + "Function/Method Declarations": 1, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, @@ -793841,7 +793851,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -793883,15 +793893,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 0, + "Core Var Decl": 2, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 0, + "Design Upper Case": 2, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -793915,29 +793925,32 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 0, + "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, + "Total Upstream (Absolute Fragility)": 1, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [] + "9. Extracted Dependencies": [ + "CBSA.CICSBSA.BUILDJCL", + "DEFAULT" + ] }, - "sqlite/mediawiki_sqlite_tables/patch-block_target.sql": { + "jcl/cics-banking-sample-application-cbsa/ACCLOAD.jcl": { "1. Artifact Identity": { - "Filename": "patch-block_target.sql", - "Path": "sqlite/mediawiki_sqlite_tables/patch-block_target.sql", - "Language": "Sqlite", + "Filename": "ACCLOAD.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/ACCLOAD.jcl", + "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "sqlite", + "Folder Dominant Lang": "jcl", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .sql)" + "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -1794.18, - "Y": 10.01, - "Z": -7748.2 + "X": 1664.29, + "Y": 19.7, + "Z": -2898.18 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -793946,10 +793959,10 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 42, - "Coding LOC": 30, - "Documentation LOC": 0, - "Structural Magnitude": 12.3, + "Total LOC": 8, + "Coding LOC": 3, + "Documentation LOC": 4, + "Structural Magnitude": 1.16, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -793960,8 +793973,8 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.41%", + "Tech Debt Exposure": "73.11%", + "Testing Exposure": "2.31%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -793974,114 +793987,24 @@ }, "5. Function Analysis": [ { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 14, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 2, - "End Line": 15 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 26, - "End Line": 33 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 17, - "End Line": 17 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 19, - "End Line": 19 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 21, - "End Line": 21 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 23, - "End Line": 23 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 35, - "End Line": 35 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 37, - "End Line": 37 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 39, - "End Line": 39 - }, - { - "Function Name": "CREATE_Statement", + "Function Name": "Unknown_Block", "Structural Impact": 1.1, "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 41, - "End Line": 41 + "Start Line": 7, + "End Line": 7 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 0, + "Sequential Logic Declarations": 1, "Function Parameters": 0, - "Function/Method Declarations": 8, - "Class/Entity Declarations": 2, - "Defensive Programming Constructs": 2, + "Function/Method Declarations": 1, + "Class/Entity Declarations": 0, + "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, @@ -794099,7 +794022,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -794124,7 +794047,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 18, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -794141,15 +794064,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 0, + "Core Var Decl": 2, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 0, + "Design Upper Case": 2, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -794173,29 +794096,32 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 0, + "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, + "Total Upstream (Absolute Fragility)": 1, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [] + "9. Extracted Dependencies": [ + "CBSA.CICSBSA.BUILDJCL", + "DEFAULT" + ] }, - "sqlite/mediawiki_sqlite_tables/patch-collation.sql": { + "jcl/cics-banking-sample-application-cbsa/ACCOFFL.jcl": { "1. Artifact Identity": { - "Filename": "patch-collation.sql", - "Path": "sqlite/mediawiki_sqlite_tables/patch-collation.sql", - "Language": "Sqlite", + "Filename": "ACCOFFL.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/ACCOFFL.jcl", + "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "sqlite", + "Folder Dominant Lang": "jcl", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .sql)" + "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -1599.29, - "Y": 32.75, - "Z": -7728.82 + "X": -352.52, + "Y": 110.7, + "Z": -1030.34 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -794205,9 +794131,9 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 8, - "Coding LOC": 5, - "Documentation LOC": 0, - "Structural Magnitude": 2.4, + "Coding LOC": 3, + "Documentation LOC": 4, + "Structural Magnitude": 1.16, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -794218,8 +794144,8 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.3%", + "Tech Debt Exposure": "73.11%", + "Testing Exposure": "2.31%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -794232,17 +794158,7 @@ }, "5. Function Analysis": [ { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 2, - "End Line": 5 - }, - { - "Function Name": "CREATE_Statement", + "Function Name": "Unknown_Block", "Structural Impact": 1.1, "Lines of Code (LOC)": 1, "Control Flow Branches": 0, @@ -794255,11 +794171,11 @@ "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 0, + "Sequential Logic Declarations": 1, "Function Parameters": 0, "Function/Method Declarations": 1, - "Class/Entity Declarations": 1, - "Defensive Programming Constructs": 2, + "Class/Entity Declarations": 0, + "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, @@ -794277,7 +794193,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -794302,7 +794218,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 2, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -794319,15 +794235,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 0, + "Core Var Decl": 2, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 0, + "Design Upper Case": 2, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -794351,29 +794267,32 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 0, + "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, + "Total Upstream (Absolute Fragility)": 1, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [] + "9. Extracted Dependencies": [ + "CBSA.CICSBSA.BUILDJCL", + "DEFAULT" + ] }, - "sqlite/mediawiki_sqlite_tables/patch-existencelinks.sql": { + "jcl/cics-banking-sample-application-cbsa/BANKDATA.jcl": { "1. Artifact Identity": { - "Filename": "patch-existencelinks.sql", - "Path": "sqlite/mediawiki_sqlite_tables/patch-existencelinks.sql", - "Language": "Sqlite", + "Filename": "BANKDATA.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/BANKDATA.jcl", + "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "sqlite", + "Folder Dominant Lang": "jcl", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .sql)" + "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -2381.44, - "Y": -73.32, - "Z": -6947.37 + "X": 70.11, + "Y": 59.34, + "Z": -2692.06 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -794382,10 +794301,10 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 8, - "Coding LOC": 6, - "Documentation LOC": 0, - "Structural Magnitude": 2.42, + "Total LOC": 115, + "Coding LOC": 64, + "Documentation LOC": 50, + "Structural Magnitude": 7.48, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -794395,9 +794314,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.31%", + "Error & Exception Exposure": "73.11%", + "Tech Debt Exposure": "96.64%", + "Testing Exposure": "2.37%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -794410,37 +794329,47 @@ }, "5. Function Analysis": [ { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, + "Function Name": "BANKDAT1", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 23, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 1, - "End Line": 5 + "Start Line": 56, + "End Line": 78 }, { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, + "Function Name": "BANKDAT0", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 20, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 7, - "End Line": 7 + "Start Line": 36, + "End Line": 55 + }, + { + "Function Name": "BANKDAT5", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 21, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 94, + "End Line": 114 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 0, + "Sequential Logic Declarations": 17, "Function Parameters": 0, - "Function/Method Declarations": 1, + "Function/Method Declarations": 3, "Class/Entity Declarations": 1, - "Defensive Programming Constructs": 1, + "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, + "High-Risk Execution Commands": 1, + "I/O and Network Boundaries": 25, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -794467,7 +794396,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 2, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -794480,7 +794409,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 3, + "Structural Space Indentations": 32, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -794497,15 +794426,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 0, + "Core Var Decl": 20, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 0, + "Design Upper Case": 20, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 3, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -794513,7 +794442,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, + "Dynamic Code Execution (Eval/Exec)": 2, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -794522,36 +794451,41 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 0, + "Sec Tainted Injection": 1, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 0, + "Direct Upstream (Fragility)": 4, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [] + "9. Extracted Dependencies": [ + "@BANK_DBRMLIB@", + "@BANK_LOADLIB@", + "@BANK_PREFIX@.CUSTOMER", + "@DB2_HLQ@.SDSNLOAD" + ] }, - "sqlite/mediawiki_sqlite_tables/patch-file.sql": { + "jcl/cics-banking-sample-application-cbsa/BATCH.jcl": { "1. Artifact Identity": { - "Filename": "patch-file.sql", - "Path": "sqlite/mediawiki_sqlite_tables/patch-file.sql", - "Language": "Sqlite", + "Filename": "BATCH.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/BATCH.jcl", + "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "sqlite", + "Folder Dominant Lang": "jcl", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .sql)" + "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -2106.91, - "Y": -108.36, - "Z": -6909.87 + "X": -194.39, + "Y": 52.41, + "Z": -2438.32 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -794560,10 +794494,10 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 47, - "Coding LOC": 33, - "Documentation LOC": 0, - "Structural Magnitude": 13.46, + "Total LOC": 57, + "Coding LOC": 52, + "Documentation LOC": 4, + "Structural Magnitude": 9.64, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -794575,137 +794509,742 @@ "Cognitive Load Exposure": "0.0%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.39%", - "API Exposure": "0.0%", + "Testing Exposure": "2.38%", + "API Exposure": "3.41%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", + "Documentation Exposure": "16.41%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 14, - "End Line": 25 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 2, - "End Line": 7 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 38, - "End Line": 42 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 9, - "End Line": 9 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, + "Function Name": "COBOL", + "Structural Impact": 4.4, + "Lines of Code (LOC)": 36, "Control Flow Branches": 0, - "Input Parameters": 0, + "Input Parameters": 6, "Control Flow Ratio": "0.0%", - "Start Line": 11, - "End Line": 11 + "Start Line": 5, + "End Line": 40 }, { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, + "Function Name": "LKED", + "Structural Impact": 3.2, + "Lines of Code (LOC)": 15, "Control Flow Branches": 0, - "Input Parameters": 0, + "Input Parameters": 5, "Control Flow Ratio": "0.0%", - "Start Line": 27, - "End Line": 27 - }, + "Start Line": 42, + "End Line": 56 + } + ], + "6. Contextual Mitigations & Amplifications": "None Detected", + "7. Structural Signatures (Net Mitigated Signals)": { + "Control Flow Branches": 0, + "Sequential Logic Declarations": 42, + "Function Parameters": 3, + "Function/Method Declarations": 2, + "Class/Entity Declarations": 0, + "Defensive Programming Constructs": 1, + "Type/Safety Bypasses": 0, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 43, + "Exposed API / Public Exports": 1, + "State Mutations / Variable Reassignments": 0, + "Commented-out Code (Dead Logic)": 0, + "Structured Documentation Blocks": 0, + "Unit Test Assertions": 0, + "Asynchronous/Concurrent Execution": 0, + "UI / View Layer Components": 0, + "Closures and Anonymous Functions": 0, + "Global State Dependencies": 0, + "Decorators and Annotations": 0, + "Generic Type Abstractions": 0, + "Collection Iterators / Comprehensions": 0, + "Scientific & Mathematical Operations": 0, + "Metaprogramming & Reflection": 0, + "Module Dependencies (Imports)": 0, + "Authorship Metadata": 0, + "Planned Work (TODOs)": 0, + "Acknowledged Tech Debt (FIXMEs)": 0, + "Specification Traceability Tags": 0, + "Server-Side Rendering Contexts": 0, + "Event Publishers / Emitters": 0, + "Dependency Injection Constructs": 0, + "Preprocessor Macros": 0, + "Pointer Arithmetic & Addressing": 0, + "Manual Memory Allocation": 0, + "Inline Assembly Blocks": 0, + "Structured Telemetry & Logging": 0, + "Ad-hoc Print / Debug Statements": 0, + "Explicit Type Casts": 0, + "Fatal Aborts & Exceptions": 0, + "Thread Sleeps & Blocking Waits": 0, + "Bitwise Operations": 0, + "Thread Synchronization Locks": 0, + "Immutable Data Declarations": 0, + "Resource Deallocation & Cleanup": 0, + "Private / Encapsulated Scopes": 0, + "Event Listeners & Subscribers": 0, + "Bypassed / Skipped Tests": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 0, + "Hardware Bridge": 0, + "Cryptography": 0, + "Auth Middleware": 0, + "Ipc Rpc Bridges": 0, + "Feature Flags": 0, + "Serialization Parsing": 0, + "Regex Execution": 0, + "Time Date Logic": 0, + "Cloud LLM API Integrations": 0, + "AI Orchestration Frameworks": 0, + "Vector Databases (RAG)": 0, + "Local Inference & Tensor Math": 0, + "Traditional Machine Learning (Stats/Trees)": 0, + "Deep Learning & Neural Networks": 0, + "Lazy Evaluation & Generators (O(1) Memory)": 0, + "Vectorized Math & Tensor Operations": 0, + "Core Var Decl": 50, + "Design Camel Case": 0, + "Design Snake Case": 0, + "Design Pascal Case": 0, + "Design Upper Case": 50, + "Design Short Vars": 0, + "Design Long Vars": 0, + "Duplicate Logic": 0, + "Orphaned Logic": 0, + "Instructional Code Examples": 0, + "Architectural Diagrams (Mermaid/PlantUML)": 0, + "Structured Literature Headers": 0, + "Hyperlinked Literature References": 0, + "High-Entropy / Obfuscated Logic": 0, + "Safety & Constraint Bypasses": 0, + "External Network & I/O Hooks": 0, + "Dynamic Code Execution (Eval/Exec)": 0, + "Global Environment Mutation": 0, + "Commented-Out Executable Logic": 0, + "Low-Level Bitwise / Cryptographic Math": 0, + "Non-Standard / Steganographic Imports": 0, + "Non-Standard Unicode / Homoglyphs": 0, + "Embedded Credentials & Keys": 0, + "Sec Extension Mismatch": 0, + "Sec Entropy": 0, + "Sec Tainted Injection": 0, + "Prompt Injection": 0, + "Agentic Rce": 0, + "Invisible Unicode Payload Smuggling": 0, + "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 + }, + "8. Dependency Network": { + "Direct Upstream (Fragility)": 13, + "Direct Downstream (Dependency Blast Radius)": 0, + "Total Upstream (Absolute Fragility)": 0, + "Total Downstream (Absolute Dependency Blast Radius)": 0 + }, + "9. Extracted Dependencies": [ + "&CBSAHLQ..ADATA(&MEMBER)", + "&CBSAHLQ..COBOL(&MEMBER)", + "&CBSAHLQ..DEBUG(&MEMBER)", + "&CBSAHLQ..DSECT", + "&CBSAHLQ..LKED(&MEMBER)", + "&CBSAHLQ..LOADLIB", + "&CICSHLQ..SDFHCOB", + "&CICSHLQ..SDFHLOAD", + "&CICSHLQ..SDFHSAMP", + "&COBOLHLQ..SIGYCOMP", + "&DB2HLQ..SDSNLOAD", + "&LEHLQ..SCEELKED", + "&LEHLQ..SCEESAMP" + ] + }, + "jcl/cics-banking-sample-application-cbsa/BNK1ACC.jcl": { + "1. Artifact Identity": { + "Filename": "BNK1ACC.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/BNK1ACC.jcl", + "Language": "Jcl", + "Architect": "Unknown Architect", + "Indentation Style": "Neutral / No Indentation", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "jcl", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .jcl)" + }, + "2. Topological Coordinates": { + "X": 1283.4, + "Y": 71.83, + "Z": -1249.06 + }, + "3. Architectural Profile": { + "Repository Archetype": "Unclassified", + "Repository Drift (Z-Score)": 0.0, + "Repository Fingerprint": {}, + "File Archetype": null, + "File Drift (Z-Score)": 0.0, + "File Fingerprint": {}, + "Total LOC": 9, + "Coding LOC": 4, + "Documentation LOC": 4, + "Structural Magnitude": 1.18, + "Control Flow Ratio": "0.0%", + "Popularity Rank": 1, + "Raw Churn Frequency": 0.0, + "Authorship Centralization": 0.0, + "Ownership Entropy": 0.0, + "Raw Cognitive Density": 0.0 + }, + "4. Vulnerability & Risk Exposures": { + "Cognitive Load Exposure": "0.0%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "2.31%", + "API Exposure": "0.0%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "0.0%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "100.0%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "0.0%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "5. Function Analysis": [ { - "Function Name": "CREATE_Statement", + "Function Name": "BNK1ACC", "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, + "Lines of Code (LOC)": 2, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 29, - "End Line": 29 - }, + "Start Line": 7, + "End Line": 8 + } + ], + "6. Contextual Mitigations & Amplifications": "None Detected", + "7. Structural Signatures (Net Mitigated Signals)": { + "Control Flow Branches": 0, + "Sequential Logic Declarations": 1, + "Function Parameters": 0, + "Function/Method Declarations": 1, + "Class/Entity Declarations": 0, + "Defensive Programming Constructs": 0, + "Type/Safety Bypasses": 0, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 0, + "State Mutations / Variable Reassignments": 0, + "Commented-out Code (Dead Logic)": 0, + "Structured Documentation Blocks": 0, + "Unit Test Assertions": 0, + "Asynchronous/Concurrent Execution": 0, + "UI / View Layer Components": 0, + "Closures and Anonymous Functions": 0, + "Global State Dependencies": 0, + "Decorators and Annotations": 0, + "Generic Type Abstractions": 0, + "Collection Iterators / Comprehensions": 0, + "Scientific & Mathematical Operations": 0, + "Metaprogramming & Reflection": 0, + "Module Dependencies (Imports)": 1, + "Authorship Metadata": 0, + "Planned Work (TODOs)": 0, + "Acknowledged Tech Debt (FIXMEs)": 0, + "Specification Traceability Tags": 0, + "Server-Side Rendering Contexts": 0, + "Event Publishers / Emitters": 0, + "Dependency Injection Constructs": 0, + "Preprocessor Macros": 0, + "Pointer Arithmetic & Addressing": 0, + "Manual Memory Allocation": 0, + "Inline Assembly Blocks": 0, + "Structured Telemetry & Logging": 0, + "Ad-hoc Print / Debug Statements": 0, + "Explicit Type Casts": 0, + "Fatal Aborts & Exceptions": 0, + "Thread Sleeps & Blocking Waits": 0, + "Bitwise Operations": 0, + "Thread Synchronization Locks": 0, + "Immutable Data Declarations": 0, + "Resource Deallocation & Cleanup": 0, + "Private / Encapsulated Scopes": 0, + "Event Listeners & Subscribers": 0, + "Bypassed / Skipped Tests": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 0, + "Hardware Bridge": 0, + "Cryptography": 0, + "Auth Middleware": 0, + "Ipc Rpc Bridges": 0, + "Feature Flags": 0, + "Serialization Parsing": 0, + "Regex Execution": 0, + "Time Date Logic": 0, + "Cloud LLM API Integrations": 0, + "AI Orchestration Frameworks": 0, + "Vector Databases (RAG)": 0, + "Local Inference & Tensor Math": 0, + "Traditional Machine Learning (Stats/Trees)": 0, + "Deep Learning & Neural Networks": 0, + "Lazy Evaluation & Generators (O(1) Memory)": 0, + "Vectorized Math & Tensor Operations": 0, + "Core Var Decl": 4, + "Design Camel Case": 0, + "Design Snake Case": 0, + "Design Pascal Case": 0, + "Design Upper Case": 4, + "Design Short Vars": 0, + "Design Long Vars": 0, + "Duplicate Logic": 0, + "Orphaned Logic": 0, + "Instructional Code Examples": 0, + "Architectural Diagrams (Mermaid/PlantUML)": 0, + "Structured Literature Headers": 0, + "Hyperlinked Literature References": 0, + "High-Entropy / Obfuscated Logic": 0, + "Safety & Constraint Bypasses": 0, + "External Network & I/O Hooks": 0, + "Dynamic Code Execution (Eval/Exec)": 0, + "Global Environment Mutation": 0, + "Commented-Out Executable Logic": 0, + "Low-Level Bitwise / Cryptographic Math": 0, + "Non-Standard / Steganographic Imports": 0, + "Non-Standard Unicode / Homoglyphs": 0, + "Embedded Credentials & Keys": 0, + "Sec Extension Mismatch": 0, + "Sec Entropy": 0, + "Sec Tainted Injection": 0, + "Prompt Injection": 0, + "Agentic Rce": 0, + "Invisible Unicode Payload Smuggling": 0, + "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 + }, + "8. Dependency Network": { + "Direct Upstream (Fragility)": 2, + "Direct Downstream (Dependency Blast Radius)": 1, + "Total Upstream (Absolute Fragility)": 1, + "Total Downstream (Absolute Dependency Blast Radius)": 1 + }, + "9. Extracted Dependencies": [ + "CBSA.CICSBSA.BUILDJCL", + "DEFAULT" + ] + }, + "jcl/cics-banking-sample-application-cbsa/BNK1CAC.jcl": { + "1. Artifact Identity": { + "Filename": "BNK1CAC.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/BNK1CAC.jcl", + "Language": "Jcl", + "Architect": "Unknown Architect", + "Indentation Style": "Neutral / No Indentation", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "jcl", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .jcl)" + }, + "2. Topological Coordinates": { + "X": -177.42, + "Y": 87.12, + "Z": -3615.66 + }, + "3. Architectural Profile": { + "Repository Archetype": "Unclassified", + "Repository Drift (Z-Score)": 0.0, + "Repository Fingerprint": {}, + "File Archetype": null, + "File Drift (Z-Score)": 0.0, + "File Fingerprint": {}, + "Total LOC": 8, + "Coding LOC": 3, + "Documentation LOC": 4, + "Structural Magnitude": 1.16, + "Control Flow Ratio": "0.0%", + "Popularity Rank": 0, + "Raw Churn Frequency": 0.0, + "Authorship Centralization": 0.0, + "Ownership Entropy": 0.0, + "Raw Cognitive Density": 0.0 + }, + "4. Vulnerability & Risk Exposures": { + "Cognitive Load Exposure": "0.0%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "73.11%", + "Testing Exposure": "2.31%", + "API Exposure": "0.0%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "0.0%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "100.0%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "0.0%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "5. Function Analysis": [ { - "Function Name": "CREATE_Statement", + "Function Name": "Unknown_Block", "Structural Impact": 1.1, "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 31, - "End Line": 31 - }, + "Start Line": 7, + "End Line": 7 + } + ], + "6. Contextual Mitigations & Amplifications": "None Detected", + "7. Structural Signatures (Net Mitigated Signals)": { + "Control Flow Branches": 0, + "Sequential Logic Declarations": 1, + "Function Parameters": 0, + "Function/Method Declarations": 1, + "Class/Entity Declarations": 0, + "Defensive Programming Constructs": 0, + "Type/Safety Bypasses": 0, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 0, + "State Mutations / Variable Reassignments": 0, + "Commented-out Code (Dead Logic)": 0, + "Structured Documentation Blocks": 0, + "Unit Test Assertions": 0, + "Asynchronous/Concurrent Execution": 0, + "UI / View Layer Components": 0, + "Closures and Anonymous Functions": 0, + "Global State Dependencies": 0, + "Decorators and Annotations": 0, + "Generic Type Abstractions": 0, + "Collection Iterators / Comprehensions": 0, + "Scientific & Mathematical Operations": 0, + "Metaprogramming & Reflection": 0, + "Module Dependencies (Imports)": 1, + "Authorship Metadata": 0, + "Planned Work (TODOs)": 0, + "Acknowledged Tech Debt (FIXMEs)": 0, + "Specification Traceability Tags": 0, + "Server-Side Rendering Contexts": 0, + "Event Publishers / Emitters": 0, + "Dependency Injection Constructs": 0, + "Preprocessor Macros": 0, + "Pointer Arithmetic & Addressing": 0, + "Manual Memory Allocation": 0, + "Inline Assembly Blocks": 0, + "Structured Telemetry & Logging": 0, + "Ad-hoc Print / Debug Statements": 0, + "Explicit Type Casts": 0, + "Fatal Aborts & Exceptions": 0, + "Thread Sleeps & Blocking Waits": 0, + "Bitwise Operations": 0, + "Thread Synchronization Locks": 0, + "Immutable Data Declarations": 0, + "Resource Deallocation & Cleanup": 0, + "Private / Encapsulated Scopes": 0, + "Event Listeners & Subscribers": 0, + "Bypassed / Skipped Tests": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 0, + "Hardware Bridge": 0, + "Cryptography": 0, + "Auth Middleware": 0, + "Ipc Rpc Bridges": 0, + "Feature Flags": 0, + "Serialization Parsing": 0, + "Regex Execution": 0, + "Time Date Logic": 0, + "Cloud LLM API Integrations": 0, + "AI Orchestration Frameworks": 0, + "Vector Databases (RAG)": 0, + "Local Inference & Tensor Math": 0, + "Traditional Machine Learning (Stats/Trees)": 0, + "Deep Learning & Neural Networks": 0, + "Lazy Evaluation & Generators (O(1) Memory)": 0, + "Vectorized Math & Tensor Operations": 0, + "Core Var Decl": 2, + "Design Camel Case": 0, + "Design Snake Case": 0, + "Design Pascal Case": 0, + "Design Upper Case": 2, + "Design Short Vars": 0, + "Design Long Vars": 0, + "Duplicate Logic": 0, + "Orphaned Logic": 1, + "Instructional Code Examples": 0, + "Architectural Diagrams (Mermaid/PlantUML)": 0, + "Structured Literature Headers": 0, + "Hyperlinked Literature References": 0, + "High-Entropy / Obfuscated Logic": 0, + "Safety & Constraint Bypasses": 0, + "External Network & I/O Hooks": 0, + "Dynamic Code Execution (Eval/Exec)": 0, + "Global Environment Mutation": 0, + "Commented-Out Executable Logic": 0, + "Low-Level Bitwise / Cryptographic Math": 0, + "Non-Standard / Steganographic Imports": 0, + "Non-Standard Unicode / Homoglyphs": 0, + "Embedded Credentials & Keys": 0, + "Sec Extension Mismatch": 0, + "Sec Entropy": 0, + "Sec Tainted Injection": 0, + "Prompt Injection": 0, + "Agentic Rce": 0, + "Invisible Unicode Payload Smuggling": 0, + "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 + }, + "8. Dependency Network": { + "Direct Upstream (Fragility)": 2, + "Direct Downstream (Dependency Blast Radius)": 0, + "Total Upstream (Absolute Fragility)": 1, + "Total Downstream (Absolute Dependency Blast Radius)": 0 + }, + "9. Extracted Dependencies": [ + "CBSA.CICSBSA.BUILDJCL", + "DEFAULT" + ] + }, + "jcl/cics-banking-sample-application-cbsa/BNK1CAM.jcl": { + "1. Artifact Identity": { + "Filename": "BNK1CAM.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/BNK1CAM.jcl", + "Language": "Jcl", + "Architect": "Unknown Architect", + "Indentation Style": "Neutral / No Indentation", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "jcl", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .jcl)" + }, + "2. Topological Coordinates": { + "X": -1156.32, + "Y": 103.72, + "Z": -2145.7 + }, + "3. Architectural Profile": { + "Repository Archetype": "Unclassified", + "Repository Drift (Z-Score)": 0.0, + "Repository Fingerprint": {}, + "File Archetype": null, + "File Drift (Z-Score)": 0.0, + "File Fingerprint": {}, + "Total LOC": 9, + "Coding LOC": 4, + "Documentation LOC": 4, + "Structural Magnitude": 1.18, + "Control Flow Ratio": "0.0%", + "Popularity Rank": 1, + "Raw Churn Frequency": 0.0, + "Authorship Centralization": 0.0, + "Ownership Entropy": 0.0, + "Raw Cognitive Density": 0.0 + }, + "4. Vulnerability & Risk Exposures": { + "Cognitive Load Exposure": "0.0%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "2.31%", + "API Exposure": "0.0%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "0.0%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "100.0%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "0.0%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "5. Function Analysis": [ { - "Function Name": "CREATE_Statement", + "Function Name": "BNK1CAM", "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, + "Lines of Code (LOC)": 2, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 33, - "End Line": 33 - }, + "Start Line": 7, + "End Line": 8 + } + ], + "6. Contextual Mitigations & Amplifications": "None Detected", + "7. Structural Signatures (Net Mitigated Signals)": { + "Control Flow Branches": 0, + "Sequential Logic Declarations": 1, + "Function Parameters": 0, + "Function/Method Declarations": 1, + "Class/Entity Declarations": 0, + "Defensive Programming Constructs": 0, + "Type/Safety Bypasses": 0, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 0, + "State Mutations / Variable Reassignments": 0, + "Commented-out Code (Dead Logic)": 0, + "Structured Documentation Blocks": 0, + "Unit Test Assertions": 0, + "Asynchronous/Concurrent Execution": 0, + "UI / View Layer Components": 0, + "Closures and Anonymous Functions": 0, + "Global State Dependencies": 0, + "Decorators and Annotations": 0, + "Generic Type Abstractions": 0, + "Collection Iterators / Comprehensions": 0, + "Scientific & Mathematical Operations": 0, + "Metaprogramming & Reflection": 0, + "Module Dependencies (Imports)": 1, + "Authorship Metadata": 0, + "Planned Work (TODOs)": 0, + "Acknowledged Tech Debt (FIXMEs)": 0, + "Specification Traceability Tags": 0, + "Server-Side Rendering Contexts": 0, + "Event Publishers / Emitters": 0, + "Dependency Injection Constructs": 0, + "Preprocessor Macros": 0, + "Pointer Arithmetic & Addressing": 0, + "Manual Memory Allocation": 0, + "Inline Assembly Blocks": 0, + "Structured Telemetry & Logging": 0, + "Ad-hoc Print / Debug Statements": 0, + "Explicit Type Casts": 0, + "Fatal Aborts & Exceptions": 0, + "Thread Sleeps & Blocking Waits": 0, + "Bitwise Operations": 0, + "Thread Synchronization Locks": 0, + "Immutable Data Declarations": 0, + "Resource Deallocation & Cleanup": 0, + "Private / Encapsulated Scopes": 0, + "Event Listeners & Subscribers": 0, + "Bypassed / Skipped Tests": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 0, + "Hardware Bridge": 0, + "Cryptography": 0, + "Auth Middleware": 0, + "Ipc Rpc Bridges": 0, + "Feature Flags": 0, + "Serialization Parsing": 0, + "Regex Execution": 0, + "Time Date Logic": 0, + "Cloud LLM API Integrations": 0, + "AI Orchestration Frameworks": 0, + "Vector Databases (RAG)": 0, + "Local Inference & Tensor Math": 0, + "Traditional Machine Learning (Stats/Trees)": 0, + "Deep Learning & Neural Networks": 0, + "Lazy Evaluation & Generators (O(1) Memory)": 0, + "Vectorized Math & Tensor Operations": 0, + "Core Var Decl": 4, + "Design Camel Case": 0, + "Design Snake Case": 0, + "Design Pascal Case": 0, + "Design Upper Case": 4, + "Design Short Vars": 0, + "Design Long Vars": 0, + "Duplicate Logic": 0, + "Orphaned Logic": 0, + "Instructional Code Examples": 0, + "Architectural Diagrams (Mermaid/PlantUML)": 0, + "Structured Literature Headers": 0, + "Hyperlinked Literature References": 0, + "High-Entropy / Obfuscated Logic": 0, + "Safety & Constraint Bypasses": 0, + "External Network & I/O Hooks": 0, + "Dynamic Code Execution (Eval/Exec)": 0, + "Global Environment Mutation": 0, + "Commented-Out Executable Logic": 0, + "Low-Level Bitwise / Cryptographic Math": 0, + "Non-Standard / Steganographic Imports": 0, + "Non-Standard Unicode / Homoglyphs": 0, + "Embedded Credentials & Keys": 0, + "Sec Extension Mismatch": 0, + "Sec Entropy": 0, + "Sec Tainted Injection": 0, + "Prompt Injection": 0, + "Agentic Rce": 0, + "Invisible Unicode Payload Smuggling": 0, + "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 + }, + "8. Dependency Network": { + "Direct Upstream (Fragility)": 2, + "Direct Downstream (Dependency Blast Radius)": 1, + "Total Upstream (Absolute Fragility)": 1, + "Total Downstream (Absolute Dependency Blast Radius)": 1 + }, + "9. Extracted Dependencies": [ + "CBSA.CICSBSA.BUILDJCL", + "DEFAULT" + ] + }, + "jcl/cics-banking-sample-application-cbsa/BNK1CCA.jcl": { + "1. Artifact Identity": { + "Filename": "BNK1CCA.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/BNK1CCA.jcl", + "Language": "Jcl", + "Architect": "Unknown Architect", + "Indentation Style": "Neutral / No Indentation", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "jcl", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .jcl)" + }, + "2. Topological Coordinates": { + "X": 1574.74, + "Y": 48.42, + "Z": -1297.6 + }, + "3. Architectural Profile": { + "Repository Archetype": "Unclassified", + "Repository Drift (Z-Score)": 0.0, + "Repository Fingerprint": {}, + "File Archetype": null, + "File Drift (Z-Score)": 0.0, + "File Fingerprint": {}, + "Total LOC": 8, + "Coding LOC": 3, + "Documentation LOC": 4, + "Structural Magnitude": 1.16, + "Control Flow Ratio": "0.0%", + "Popularity Rank": 0, + "Raw Churn Frequency": 0.0, + "Authorship Centralization": 0.0, + "Ownership Entropy": 0.0, + "Raw Cognitive Density": 0.0 + }, + "4. Vulnerability & Risk Exposures": { + "Cognitive Load Exposure": "0.0%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "73.11%", + "Testing Exposure": "2.31%", + "API Exposure": "0.0%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "0.0%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "100.0%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "0.0%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "5. Function Analysis": [ { - "Function Name": "CREATE_Statement", + "Function Name": "Unknown_Block", "Structural Impact": 1.1, "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 35, - "End Line": 35 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 44, - "End Line": 46 + "Start Line": 7, + "End Line": 7 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 0, + "Sequential Logic Declarations": 1, "Function Parameters": 0, - "Function/Method Declarations": 8, - "Class/Entity Declarations": 3, - "Defensive Programming Constructs": 5, + "Function/Method Declarations": 1, + "Class/Entity Declarations": 0, + "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, @@ -794723,7 +795262,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -794748,7 +795287,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 18, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -794765,15 +795304,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 0, + "Core Var Decl": 2, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 0, + "Design Upper Case": 2, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -794797,29 +795336,32 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 0, + "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, + "Total Upstream (Absolute Fragility)": 1, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [] + "9. Extracted Dependencies": [ + "CBSA.CICSBSA.BUILDJCL", + "DEFAULT" + ] }, - "sqlite/mediawiki_sqlite_tables/patch-user-user_is_temp.sql": { + "jcl/cics-banking-sample-application-cbsa/BNK1CCM.jcl": { "1. Artifact Identity": { - "Filename": "patch-user-user_is_temp.sql", - "Path": "sqlite/mediawiki_sqlite_tables/patch-user-user_is_temp.sql", - "Language": "Sqlite", + "Filename": "BNK1CCM.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/BNK1CCM.jcl", + "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "sqlite", + "Folder Dominant Lang": "jcl", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .sql)" + "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -1334.79, - "Y": -96.87, - "Z": -6905.9 + "X": 1381.15, + "Y": 71.87, + "Z": -3154.8 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -794828,12 +795370,12 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 7, - "Coding LOC": 2, + "Total LOC": 9, + "Coding LOC": 4, "Documentation LOC": 4, - "Structural Magnitude": 3.14, + "Structural Magnitude": 1.18, "Control Flow Ratio": "0.0%", - "Popularity Rank": 0, + "Popularity Rank": 1, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, @@ -794841,14 +795383,14 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "62.58%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.31%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "0.0%", + "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", "Documentation Exposure": "0.0%", @@ -794856,29 +795398,29 @@ }, "5. Function Analysis": [ { - "Function Name": "ALTER_Statement", + "Function Name": "BNK1CCM", "Structural Impact": 1.1, "Lines of Code (LOC)": 2, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 5, - "End Line": 6 + "Start Line": 7, + "End Line": 8 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 0, + "Sequential Logic Declarations": 1, "Function Parameters": 0, - "Function/Method Declarations": 0, + "Function/Method Declarations": 1, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 2, + "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, @@ -794891,7 +795433,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -794916,7 +795458,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 1, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -794933,11 +795475,11 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 0, + "Core Var Decl": 4, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 0, + "Design Upper Case": 4, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, @@ -794965,29 +795507,32 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 0, - "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 + "Direct Upstream (Fragility)": 2, + "Direct Downstream (Dependency Blast Radius)": 1, + "Total Upstream (Absolute Fragility)": 1, + "Total Downstream (Absolute Dependency Blast Radius)": 1 }, - "9. Extracted Dependencies": [] + "9. Extracted Dependencies": [ + "CBSA.CICSBSA.BUILDJCL", + "DEFAULT" + ] }, - "sqlite/mediawiki_sqlite_tables/patch-user_autocreate_serial-uas_year.sql": { + "jcl/cics-banking-sample-application-cbsa/BNK1CCS.jcl": { "1. Artifact Identity": { - "Filename": "patch-user_autocreate_serial-uas_year.sql", - "Path": "sqlite/mediawiki_sqlite_tables/patch-user_autocreate_serial-uas_year.sql", - "Language": "Sqlite", + "Filename": "BNK1CCS.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/BNK1CCS.jcl", + "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "sqlite", + "Folder Dominant Lang": "jcl", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .sql)" + "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -1380.27, - "Y": -43.7, - "Z": -7502.03 + "X": -1186.93, + "Y": 91.82, + "Z": -1930.31 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -794996,10 +795541,10 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 28, - "Coding LOC": 18, + "Total LOC": 8, + "Coding LOC": 3, "Documentation LOC": 4, - "Structural Magnitude": 6.26, + "Structural Magnitude": 1.16, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -795009,9 +795554,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "66.5%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.36%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "73.11%", + "Testing Exposure": "2.31%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -795024,67 +795569,27 @@ }, "5. Function Analysis": [ { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 14, - "End Line": 19 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 5, - "End Line": 9 - }, - { - "Function Name": "INSERT_Statement", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 21, - "End Line": 25 - }, - { - "Function Name": "DROP_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 11, - "End Line": 11 - }, - { - "Function Name": "DROP_Statement", + "Function Name": "Unknown_Block", "Structural Impact": 1.1, "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 27, - "End Line": 27 + "Start Line": 7, + "End Line": 7 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 6, + "Sequential Logic Declarations": 1, "Function Parameters": 0, - "Function/Method Declarations": 0, - "Class/Entity Declarations": 2, - "Defensive Programming Constructs": 1, - "Type/Safety Bypasses": 2, + "Function/Method Declarations": 1, + "Class/Entity Declarations": 0, + "Defensive Programming Constructs": 0, + "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 3, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -795099,7 +795604,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -795119,12 +795624,12 @@ "Bitwise Operations": 0, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 2, - "Private / Encapsulated Scopes": 1, + "Resource Deallocation & Cleanup": 0, + "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 8, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -795141,15 +795646,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 0, + "Core Var Decl": 2, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 0, + "Design Upper Case": 2, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -795173,29 +795678,32 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 0, + "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, + "Total Upstream (Absolute Fragility)": 1, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [] + "9. Extracted Dependencies": [ + "CBSA.CICSBSA.BUILDJCL", + "DEFAULT" + ] }, - "sqlite/mediawiki_sqlite_tables/patch-watchlist_label.sql": { + "jcl/cics-banking-sample-application-cbsa/BNK1CDM.jcl": { "1. Artifact Identity": { - "Filename": "patch-watchlist_label.sql", - "Path": "sqlite/mediawiki_sqlite_tables/patch-watchlist_label.sql", - "Language": "Sqlite", + "Filename": "BNK1CDM.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/BNK1CDM.jcl", + "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "sqlite", + "Folder Dominant Lang": "jcl", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .sql)" + "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -2064.86, - "Y": 59.16, - "Z": -7604.45 + "X": 123.04, + "Y": 67.75, + "Z": -739.12 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -795204,12 +795712,12 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 17, - "Coding LOC": 12, - "Documentation LOC": 0, - "Structural Magnitude": 4.84, + "Total LOC": 9, + "Coding LOC": 4, + "Documentation LOC": 4, + "Structural Magnitude": 1.18, "Control Flow Ratio": "0.0%", - "Popularity Rank": 0, + "Popularity Rank": 1, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, @@ -795219,7 +795727,7 @@ "Cognitive Load Exposure": "0.0%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.32%", + "Testing Exposure": "2.31%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -795232,54 +795740,195 @@ }, "5. Function Analysis": [ { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 1, - "End Line": 5 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 10, - "End Line": 14 - }, - { - "Function Name": "CREATE_Statement", + "Function Name": "BNK1CDM", "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, + "Lines of Code (LOC)": 2, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", "Start Line": 7, - "End Line": 7 - }, + "End Line": 8 + } + ], + "6. Contextual Mitigations & Amplifications": "None Detected", + "7. Structural Signatures (Net Mitigated Signals)": { + "Control Flow Branches": 0, + "Sequential Logic Declarations": 1, + "Function Parameters": 0, + "Function/Method Declarations": 1, + "Class/Entity Declarations": 0, + "Defensive Programming Constructs": 0, + "Type/Safety Bypasses": 0, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 0, + "State Mutations / Variable Reassignments": 0, + "Commented-out Code (Dead Logic)": 0, + "Structured Documentation Blocks": 0, + "Unit Test Assertions": 0, + "Asynchronous/Concurrent Execution": 0, + "UI / View Layer Components": 0, + "Closures and Anonymous Functions": 0, + "Global State Dependencies": 0, + "Decorators and Annotations": 0, + "Generic Type Abstractions": 0, + "Collection Iterators / Comprehensions": 0, + "Scientific & Mathematical Operations": 0, + "Metaprogramming & Reflection": 0, + "Module Dependencies (Imports)": 1, + "Authorship Metadata": 0, + "Planned Work (TODOs)": 0, + "Acknowledged Tech Debt (FIXMEs)": 0, + "Specification Traceability Tags": 0, + "Server-Side Rendering Contexts": 0, + "Event Publishers / Emitters": 0, + "Dependency Injection Constructs": 0, + "Preprocessor Macros": 0, + "Pointer Arithmetic & Addressing": 0, + "Manual Memory Allocation": 0, + "Inline Assembly Blocks": 0, + "Structured Telemetry & Logging": 0, + "Ad-hoc Print / Debug Statements": 0, + "Explicit Type Casts": 0, + "Fatal Aborts & Exceptions": 0, + "Thread Sleeps & Blocking Waits": 0, + "Bitwise Operations": 0, + "Thread Synchronization Locks": 0, + "Immutable Data Declarations": 0, + "Resource Deallocation & Cleanup": 0, + "Private / Encapsulated Scopes": 0, + "Event Listeners & Subscribers": 0, + "Bypassed / Skipped Tests": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 0, + "Hardware Bridge": 0, + "Cryptography": 0, + "Auth Middleware": 0, + "Ipc Rpc Bridges": 0, + "Feature Flags": 0, + "Serialization Parsing": 0, + "Regex Execution": 0, + "Time Date Logic": 0, + "Cloud LLM API Integrations": 0, + "AI Orchestration Frameworks": 0, + "Vector Databases (RAG)": 0, + "Local Inference & Tensor Math": 0, + "Traditional Machine Learning (Stats/Trees)": 0, + "Deep Learning & Neural Networks": 0, + "Lazy Evaluation & Generators (O(1) Memory)": 0, + "Vectorized Math & Tensor Operations": 0, + "Core Var Decl": 4, + "Design Camel Case": 0, + "Design Snake Case": 0, + "Design Pascal Case": 0, + "Design Upper Case": 4, + "Design Short Vars": 0, + "Design Long Vars": 0, + "Duplicate Logic": 0, + "Orphaned Logic": 0, + "Instructional Code Examples": 0, + "Architectural Diagrams (Mermaid/PlantUML)": 0, + "Structured Literature Headers": 0, + "Hyperlinked Literature References": 0, + "High-Entropy / Obfuscated Logic": 0, + "Safety & Constraint Bypasses": 0, + "External Network & I/O Hooks": 0, + "Dynamic Code Execution (Eval/Exec)": 0, + "Global Environment Mutation": 0, + "Commented-Out Executable Logic": 0, + "Low-Level Bitwise / Cryptographic Math": 0, + "Non-Standard / Steganographic Imports": 0, + "Non-Standard Unicode / Homoglyphs": 0, + "Embedded Credentials & Keys": 0, + "Sec Extension Mismatch": 0, + "Sec Entropy": 0, + "Sec Tainted Injection": 0, + "Prompt Injection": 0, + "Agentic Rce": 0, + "Invisible Unicode Payload Smuggling": 0, + "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 + }, + "8. Dependency Network": { + "Direct Upstream (Fragility)": 2, + "Direct Downstream (Dependency Blast Radius)": 1, + "Total Upstream (Absolute Fragility)": 1, + "Total Downstream (Absolute Dependency Blast Radius)": 1 + }, + "9. Extracted Dependencies": [ + "CBSA.CICSBSA.BUILDJCL", + "DEFAULT" + ] + }, + "jcl/cics-banking-sample-application-cbsa/BNK1CRA.jcl": { + "1. Artifact Identity": { + "Filename": "BNK1CRA.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/BNK1CRA.jcl", + "Language": "Jcl", + "Architect": "Unknown Architect", + "Indentation Style": "Neutral / No Indentation", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "jcl", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .jcl)" + }, + "2. Topological Coordinates": { + "X": 1195.48, + "Y": 62.83, + "Z": -3591.7 + }, + "3. Architectural Profile": { + "Repository Archetype": "Unclassified", + "Repository Drift (Z-Score)": 0.0, + "Repository Fingerprint": {}, + "File Archetype": null, + "File Drift (Z-Score)": 0.0, + "File Fingerprint": {}, + "Total LOC": 8, + "Coding LOC": 3, + "Documentation LOC": 4, + "Structural Magnitude": 1.16, + "Control Flow Ratio": "0.0%", + "Popularity Rank": 0, + "Raw Churn Frequency": 0.0, + "Authorship Centralization": 0.0, + "Ownership Entropy": 0.0, + "Raw Cognitive Density": 0.0 + }, + "4. Vulnerability & Risk Exposures": { + "Cognitive Load Exposure": "0.0%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "73.11%", + "Testing Exposure": "2.31%", + "API Exposure": "0.0%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "0.0%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "100.0%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "0.0%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "5. Function Analysis": [ { - "Function Name": "CREATE_Statement", + "Function Name": "Unknown_Block", "Structural Impact": 1.1, "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 16, - "End Line": 16 + "Start Line": 7, + "End Line": 7 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 0, + "Sequential Logic Declarations": 1, "Function Parameters": 0, - "Function/Method Declarations": 2, - "Class/Entity Declarations": 2, - "Defensive Programming Constructs": 3, + "Function/Method Declarations": 1, + "Class/Entity Declarations": 0, + "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, @@ -795297,7 +795946,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -795322,7 +795971,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 6, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -795339,15 +795988,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 0, + "Core Var Decl": 2, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 0, + "Design Upper Case": 2, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -795371,29 +796020,32 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 0, + "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, + "Total Upstream (Absolute Fragility)": 1, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [] + "9. Extracted Dependencies": [ + "CBSA.CICSBSA.BUILDJCL", + "DEFAULT" + ] }, - "sqlite/mediawiki_sqlite_tables/searchindex-fts3.sql": { + "jcl/cics-banking-sample-application-cbsa/BNK1DAC.jcl": { "1. Artifact Identity": { - "Filename": "searchindex-fts3.sql", - "Path": "sqlite/mediawiki_sqlite_tables/searchindex-fts3.sql", - "Language": "Sqlite", + "Filename": "BNK1DAC.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/BNK1DAC.jcl", + "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "sqlite", + "Folder Dominant Lang": "jcl", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .sql)" + "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -2034.62, - "Y": -148.41, - "Z": -6689.44 + "X": 499.16, + "Y": 90.74, + "Z": -647.8 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -795402,10 +796054,10 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 19, - "Coding LOC": 6, - "Documentation LOC": 9, - "Structural Magnitude": 5.52, + "Total LOC": 8, + "Coding LOC": 3, + "Documentation LOC": 4, + "Structural Magnitude": 1.16, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -795415,63 +796067,43 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "70.21%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.35%", - "API Exposure": "3.53%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "73.11%", + "Testing Exposure": "2.31%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "13.55%", + "Documentation Exposure": "0.0%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "INSERT_Statement", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 18, - "End Line": 18 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 11, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 6, - "End Line": 16 - }, - { - "Function Name": "DROP_Statement", + "Function Name": "Unknown_Block", "Structural Impact": 1.1, "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 5, - "End Line": 5 + "Start Line": 7, + "End Line": 7 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, "Sequential Logic Declarations": 1, - "Function Parameters": 1, - "Function/Method Declarations": 0, - "Class/Entity Declarations": 1, + "Function Parameters": 0, + "Function/Method Declarations": 1, + "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 2, + "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 1, - "Exposed API / Public Exports": 1, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -795485,7 +796117,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -795505,12 +796137,12 @@ "Bitwise Operations": 0, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 1, + "Resource Deallocation & Cleanup": 0, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 2, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -795527,15 +796159,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 0, + "Core Var Decl": 2, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 0, + "Design Upper Case": 2, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -795559,29 +796191,32 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 0, + "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, + "Total Upstream (Absolute Fragility)": 1, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [] + "9. Extracted Dependencies": [ + "CBSA.CICSBSA.BUILDJCL", + "DEFAULT" + ] }, - "sqlite/mediawiki_sqlite_tables/searchindex-no-fts.sql": { + "jcl/cics-banking-sample-application-cbsa/BNK1DAM.jcl": { "1. Artifact Identity": { - "Filename": "searchindex-no-fts.sql", - "Path": "sqlite/mediawiki_sqlite_tables/searchindex-no-fts.sql", - "Language": "Sqlite", + "Filename": "BNK1DAM.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/BNK1DAM.jcl", + "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "sqlite", + "Folder Dominant Lang": "jcl", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .sql)" + "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -1605.34, - "Y": -145.6, - "Z": -6950.06 + "X": -603.73, + "Y": 128.09, + "Z": -3321.24 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -795590,22 +796225,22 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 24, - "Coding LOC": 13, - "Documentation LOC": 5, - "Structural Magnitude": 10.16, - "Control Flow Ratio": "50.0%", - "Popularity Rank": 0, + "Total LOC": 9, + "Coding LOC": 4, + "Documentation LOC": 4, + "Structural Magnitude": 1.18, + "Control Flow Ratio": "0.0%", + "Popularity Rank": 1, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.029 + "Raw Cognitive Density": 0.0 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.29%", - "Error & Exception Exposure": "90.28%", + "Cognitive Load Exposure": "0.0%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.4%", + "Testing Exposure": "2.31%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -795618,97 +796253,369 @@ }, "5. Function Analysis": [ { - "Function Name": "DELETE_Statement", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "50.0%", - "Start Line": 23, - "End Line": 23 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 13, - "End Line": 18 - }, - { - "Function Name": "DROP_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 6, - "End Line": 6 - }, - { - "Function Name": "DROP_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 9, - "End Line": 9 - }, - { - "Function Name": "DROP_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 10, - "End Line": 10 - }, - { - "Function Name": "DROP_Statement", + "Function Name": "BNK1DAM", "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, + "Lines of Code (LOC)": 2, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 11, - "End Line": 11 - }, + "Start Line": 7, + "End Line": 8 + } + ], + "6. Contextual Mitigations & Amplifications": "None Detected", + "7. Structural Signatures (Net Mitigated Signals)": { + "Control Flow Branches": 0, + "Sequential Logic Declarations": 1, + "Function Parameters": 0, + "Function/Method Declarations": 1, + "Class/Entity Declarations": 0, + "Defensive Programming Constructs": 0, + "Type/Safety Bypasses": 0, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 0, + "State Mutations / Variable Reassignments": 0, + "Commented-out Code (Dead Logic)": 0, + "Structured Documentation Blocks": 0, + "Unit Test Assertions": 0, + "Asynchronous/Concurrent Execution": 0, + "UI / View Layer Components": 0, + "Closures and Anonymous Functions": 0, + "Global State Dependencies": 0, + "Decorators and Annotations": 0, + "Generic Type Abstractions": 0, + "Collection Iterators / Comprehensions": 0, + "Scientific & Mathematical Operations": 0, + "Metaprogramming & Reflection": 0, + "Module Dependencies (Imports)": 1, + "Authorship Metadata": 0, + "Planned Work (TODOs)": 0, + "Acknowledged Tech Debt (FIXMEs)": 0, + "Specification Traceability Tags": 0, + "Server-Side Rendering Contexts": 0, + "Event Publishers / Emitters": 0, + "Dependency Injection Constructs": 0, + "Preprocessor Macros": 0, + "Pointer Arithmetic & Addressing": 0, + "Manual Memory Allocation": 0, + "Inline Assembly Blocks": 0, + "Structured Telemetry & Logging": 0, + "Ad-hoc Print / Debug Statements": 0, + "Explicit Type Casts": 0, + "Fatal Aborts & Exceptions": 0, + "Thread Sleeps & Blocking Waits": 0, + "Bitwise Operations": 0, + "Thread Synchronization Locks": 0, + "Immutable Data Declarations": 0, + "Resource Deallocation & Cleanup": 0, + "Private / Encapsulated Scopes": 0, + "Event Listeners & Subscribers": 0, + "Bypassed / Skipped Tests": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 0, + "Hardware Bridge": 0, + "Cryptography": 0, + "Auth Middleware": 0, + "Ipc Rpc Bridges": 0, + "Feature Flags": 0, + "Serialization Parsing": 0, + "Regex Execution": 0, + "Time Date Logic": 0, + "Cloud LLM API Integrations": 0, + "AI Orchestration Frameworks": 0, + "Vector Databases (RAG)": 0, + "Local Inference & Tensor Math": 0, + "Traditional Machine Learning (Stats/Trees)": 0, + "Deep Learning & Neural Networks": 0, + "Lazy Evaluation & Generators (O(1) Memory)": 0, + "Vectorized Math & Tensor Operations": 0, + "Core Var Decl": 4, + "Design Camel Case": 0, + "Design Snake Case": 0, + "Design Pascal Case": 0, + "Design Upper Case": 4, + "Design Short Vars": 0, + "Design Long Vars": 0, + "Duplicate Logic": 0, + "Orphaned Logic": 0, + "Instructional Code Examples": 0, + "Architectural Diagrams (Mermaid/PlantUML)": 0, + "Structured Literature Headers": 0, + "Hyperlinked Literature References": 0, + "High-Entropy / Obfuscated Logic": 0, + "Safety & Constraint Bypasses": 0, + "External Network & I/O Hooks": 0, + "Dynamic Code Execution (Eval/Exec)": 0, + "Global Environment Mutation": 0, + "Commented-Out Executable Logic": 0, + "Low-Level Bitwise / Cryptographic Math": 0, + "Non-Standard / Steganographic Imports": 0, + "Non-Standard Unicode / Homoglyphs": 0, + "Embedded Credentials & Keys": 0, + "Sec Extension Mismatch": 0, + "Sec Entropy": 0, + "Sec Tainted Injection": 0, + "Prompt Injection": 0, + "Agentic Rce": 0, + "Invisible Unicode Payload Smuggling": 0, + "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 + }, + "8. Dependency Network": { + "Direct Upstream (Fragility)": 2, + "Direct Downstream (Dependency Blast Radius)": 1, + "Total Upstream (Absolute Fragility)": 1, + "Total Downstream (Absolute Dependency Blast Radius)": 1 + }, + "9. Extracted Dependencies": [ + "CBSA.CICSBSA.BUILDJCL", + "DEFAULT" + ] + }, + "jcl/cics-banking-sample-application-cbsa/BNK1DCM.jcl": { + "1. Artifact Identity": { + "Filename": "BNK1DCM.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/BNK1DCM.jcl", + "Language": "Jcl", + "Architect": "Unknown Architect", + "Indentation Style": "Neutral / No Indentation", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "jcl", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .jcl)" + }, + "2. Topological Coordinates": { + "X": 1751.61, + "Y": 82.5, + "Z": -1808.93 + }, + "3. Architectural Profile": { + "Repository Archetype": "Unclassified", + "Repository Drift (Z-Score)": 0.0, + "Repository Fingerprint": {}, + "File Archetype": null, + "File Drift (Z-Score)": 0.0, + "File Fingerprint": {}, + "Total LOC": 9, + "Coding LOC": 4, + "Documentation LOC": 4, + "Structural Magnitude": 1.18, + "Control Flow Ratio": "0.0%", + "Popularity Rank": 1, + "Raw Churn Frequency": 0.0, + "Authorship Centralization": 0.0, + "Ownership Entropy": 0.0, + "Raw Cognitive Density": 0.0 + }, + "4. Vulnerability & Risk Exposures": { + "Cognitive Load Exposure": "0.0%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "2.31%", + "API Exposure": "0.0%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "0.0%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "100.0%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "0.0%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "5. Function Analysis": [ { - "Function Name": "CREATE_Statement", + "Function Name": "BNK1DCM", "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, + "Lines of Code (LOC)": 2, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 20, - "End Line": 20 - }, + "Start Line": 7, + "End Line": 8 + } + ], + "6. Contextual Mitigations & Amplifications": "None Detected", + "7. Structural Signatures (Net Mitigated Signals)": { + "Control Flow Branches": 0, + "Sequential Logic Declarations": 1, + "Function Parameters": 0, + "Function/Method Declarations": 1, + "Class/Entity Declarations": 0, + "Defensive Programming Constructs": 0, + "Type/Safety Bypasses": 0, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 0, + "State Mutations / Variable Reassignments": 0, + "Commented-out Code (Dead Logic)": 0, + "Structured Documentation Blocks": 0, + "Unit Test Assertions": 0, + "Asynchronous/Concurrent Execution": 0, + "UI / View Layer Components": 0, + "Closures and Anonymous Functions": 0, + "Global State Dependencies": 0, + "Decorators and Annotations": 0, + "Generic Type Abstractions": 0, + "Collection Iterators / Comprehensions": 0, + "Scientific & Mathematical Operations": 0, + "Metaprogramming & Reflection": 0, + "Module Dependencies (Imports)": 1, + "Authorship Metadata": 0, + "Planned Work (TODOs)": 0, + "Acknowledged Tech Debt (FIXMEs)": 0, + "Specification Traceability Tags": 0, + "Server-Side Rendering Contexts": 0, + "Event Publishers / Emitters": 0, + "Dependency Injection Constructs": 0, + "Preprocessor Macros": 0, + "Pointer Arithmetic & Addressing": 0, + "Manual Memory Allocation": 0, + "Inline Assembly Blocks": 0, + "Structured Telemetry & Logging": 0, + "Ad-hoc Print / Debug Statements": 0, + "Explicit Type Casts": 0, + "Fatal Aborts & Exceptions": 0, + "Thread Sleeps & Blocking Waits": 0, + "Bitwise Operations": 0, + "Thread Synchronization Locks": 0, + "Immutable Data Declarations": 0, + "Resource Deallocation & Cleanup": 0, + "Private / Encapsulated Scopes": 0, + "Event Listeners & Subscribers": 0, + "Bypassed / Skipped Tests": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 0, + "Hardware Bridge": 0, + "Cryptography": 0, + "Auth Middleware": 0, + "Ipc Rpc Bridges": 0, + "Feature Flags": 0, + "Serialization Parsing": 0, + "Regex Execution": 0, + "Time Date Logic": 0, + "Cloud LLM API Integrations": 0, + "AI Orchestration Frameworks": 0, + "Vector Databases (RAG)": 0, + "Local Inference & Tensor Math": 0, + "Traditional Machine Learning (Stats/Trees)": 0, + "Deep Learning & Neural Networks": 0, + "Lazy Evaluation & Generators (O(1) Memory)": 0, + "Vectorized Math & Tensor Operations": 0, + "Core Var Decl": 4, + "Design Camel Case": 0, + "Design Snake Case": 0, + "Design Pascal Case": 0, + "Design Upper Case": 4, + "Design Short Vars": 0, + "Design Long Vars": 0, + "Duplicate Logic": 0, + "Orphaned Logic": 0, + "Instructional Code Examples": 0, + "Architectural Diagrams (Mermaid/PlantUML)": 0, + "Structured Literature Headers": 0, + "Hyperlinked Literature References": 0, + "High-Entropy / Obfuscated Logic": 0, + "Safety & Constraint Bypasses": 0, + "External Network & I/O Hooks": 0, + "Dynamic Code Execution (Eval/Exec)": 0, + "Global Environment Mutation": 0, + "Commented-Out Executable Logic": 0, + "Low-Level Bitwise / Cryptographic Math": 0, + "Non-Standard / Steganographic Imports": 0, + "Non-Standard Unicode / Homoglyphs": 0, + "Embedded Credentials & Keys": 0, + "Sec Extension Mismatch": 0, + "Sec Entropy": 0, + "Sec Tainted Injection": 0, + "Prompt Injection": 0, + "Agentic Rce": 0, + "Invisible Unicode Payload Smuggling": 0, + "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 + }, + "8. Dependency Network": { + "Direct Upstream (Fragility)": 2, + "Direct Downstream (Dependency Blast Radius)": 1, + "Total Upstream (Absolute Fragility)": 1, + "Total Downstream (Absolute Dependency Blast Radius)": 1 + }, + "9. Extracted Dependencies": [ + "CBSA.CICSBSA.BUILDJCL", + "DEFAULT" + ] + }, + "jcl/cics-banking-sample-application-cbsa/BNK1DCS.jcl": { + "1. Artifact Identity": { + "Filename": "BNK1DCS.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/BNK1DCS.jcl", + "Language": "Jcl", + "Architect": "Unknown Architect", + "Indentation Style": "Neutral / No Indentation", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "jcl", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .jcl)" + }, + "2. Topological Coordinates": { + "X": -919.55, + "Y": 68.16, + "Z": -3091.96 + }, + "3. Architectural Profile": { + "Repository Archetype": "Unclassified", + "Repository Drift (Z-Score)": 0.0, + "Repository Fingerprint": {}, + "File Archetype": null, + "File Drift (Z-Score)": 0.0, + "File Fingerprint": {}, + "Total LOC": 8, + "Coding LOC": 3, + "Documentation LOC": 4, + "Structural Magnitude": 1.16, + "Control Flow Ratio": "0.0%", + "Popularity Rank": 0, + "Raw Churn Frequency": 0.0, + "Authorship Centralization": 0.0, + "Ownership Entropy": 0.0, + "Raw Cognitive Density": 0.0 + }, + "4. Vulnerability & Risk Exposures": { + "Cognitive Load Exposure": "0.0%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "73.11%", + "Testing Exposure": "2.31%", + "API Exposure": "0.0%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "0.0%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "100.0%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "0.0%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "5. Function Analysis": [ { - "Function Name": "CREATE_Statement", + "Function Name": "Unknown_Block", "Structural Impact": 1.1, "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 21, - "End Line": 21 + "Start Line": 7, + "End Line": 7 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 1, + "Control Flow Branches": 0, "Sequential Logic Declarations": 1, "Function Parameters": 0, - "Function/Method Declarations": 2, - "Class/Entity Declarations": 1, - "Defensive Programming Constructs": 1, - "Type/Safety Bypasses": 8, + "Function/Method Declarations": 1, + "Class/Entity Declarations": 0, + "Defensive Programming Constructs": 0, + "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 1, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -795723,7 +796630,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -795743,12 +796650,12 @@ "Bitwise Operations": 0, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 5, + "Resource Deallocation & Cleanup": 0, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 4, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -795765,15 +796672,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 1, + "Core Var Decl": 2, "Design Camel Case": 0, - "Design Snake Case": 1, + "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 0, + "Design Upper Case": 2, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -795797,29 +796704,32 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 0, + "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, + "Total Upstream (Absolute Fragility)": 1, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [] + "9. Extracted Dependencies": [ + "CBSA.CICSBSA.BUILDJCL", + "DEFAULT" + ] }, - "sqlite/mediawiki_sqlite_tables/tables-generated.sql": { + "jcl/cics-banking-sample-application-cbsa/BNK1MAI.jcl": { "1. Artifact Identity": { - "Filename": "tables-generated.sql", - "Path": "sqlite/mediawiki_sqlite_tables/tables-generated.sql", - "Language": "Sqlite", + "Filename": "BNK1MAI.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/BNK1MAI.jcl", + "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "sqlite", + "Folder Dominant Lang": "jcl", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .sql)" + "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -1805.21, - "Y": -74.03, - "Z": -7206.15 + "X": -991.35, + "Y": 71.62, + "Z": -1489.99 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -795828,12 +796738,12 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 948, - "Coding LOC": 683, + "Total LOC": 9, + "Coding LOC": 4, "Documentation LOC": 4, - "Structural Magnitude": 247.46, + "Structural Magnitude": 1.18, "Control Flow Ratio": "0.0%", - "Popularity Rank": 0, + "Popularity Rank": 1, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, @@ -795843,7 +796753,7 @@ "Cognitive Load Exposure": "0.0%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.43%", + "Testing Exposure": "2.31%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -795856,1994 +796766,537 @@ }, "5. Function Analysis": [ { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 16, - "End Line": 27 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 14, + "Function Name": "BNK1MAI", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 2, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 38, - "End Line": 51 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 103, - "End Line": 112 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 17, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 220, - "End Line": 236 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 251, - "End Line": 262 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 16, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 286, - "End Line": 301 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 381, - "End Line": 390 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 11, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 442, - "End Line": 452 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 14, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 485, - "End Line": 498 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 511, - "End Line": 522 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 580, - "End Line": 589 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 17, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 629, - "End Line": 645 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 685, - "End Line": 694 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 731, - "End Line": 740 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 13, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 743, - "End Line": 755 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 19, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 809, - "End Line": 827 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 16, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 836, - "End Line": 851 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 62, - "End Line": 69 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 80, - "End Line": 88 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 122, - "End Line": 128 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 316, - "End Line": 322 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 338, - "End Line": 346 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 536, - "End Line": 542 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 610, - "End Line": 616 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 673, - "End Line": 680 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 768, - "End Line": 774 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 91, - "End Line": 96 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 171, - "End Line": 176 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 196, - "End Line": 201 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 208, - "End Line": 213 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 349, - "End Line": 354 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 361, - "End Line": 366 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 371, - "End Line": 376 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 406, - "End Line": 411 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 414, - "End Line": 419 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 432, - "End Line": 437 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 475, - "End Line": 480 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 549, - "End Line": 554 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 565, - "End Line": 570 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 707, - "End Line": 712 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 719, - "End Line": 724 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 781, - "End Line": 786 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 860, - "End Line": 865 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 875, - "End Line": 880 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 897, - "End Line": 902 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 907, - "End Line": 912 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 5, - "End Line": 9 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 114, - "End Line": 117 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 141, - "End Line": 145 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 154, - "End Line": 157 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 162, - "End Line": 166 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 179, - "End Line": 182 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 187, - "End Line": 191 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 275, - "End Line": 279 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 332, - "End Line": 335 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 398, - "End Line": 401 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 424, - "End Line": 427 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 530, - "End Line": 533 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 574, - "End Line": 577 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 594, - "End Line": 598 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 603, - "End Line": 607 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 665, - "End Line": 668 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 760, - "End Line": 763 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 790, - "End Line": 793 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 796, - "End Line": 799 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 802, - "End Line": 806 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 868, - "End Line": 872 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 887, - "End Line": 890 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 923, - "End Line": 927 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 932, - "End Line": 936 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 941, - "End Line": 945 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 11, - "End Line": 11 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 13, - "End Line": 13 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 29, - "End Line": 31 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 33, - "End Line": 33 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 35, - "End Line": 35 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 53, - "End Line": 53 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 55, - "End Line": 55 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 57, - "End Line": 57 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 59, - "End Line": 59 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 71, - "End Line": 71 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 73, - "End Line": 73 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 75, - "End Line": 75 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 77, - "End Line": 77 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 98, - "End Line": 98 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 100, - "End Line": 100 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 119, - "End Line": 119 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 130, - "End Line": 130 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 132, - "End Line": 132 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 134, - "End Line": 134 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 136, - "End Line": 138 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 147, - "End Line": 147 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 149, - "End Line": 149 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 151, - "End Line": 151 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 159, - "End Line": 159 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 168, - "End Line": 168 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 184, - "End Line": 184 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 193, - "End Line": 193 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 203, - "End Line": 203 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 205, - "End Line": 205 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 215, - "End Line": 215 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 217, - "End Line": 217 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 238, - "End Line": 238 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 240, - "End Line": 242 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 244, - "End Line": 244 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 246, - "End Line": 246 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 248, - "End Line": 248 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 264, - "End Line": 264 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 266, - "End Line": 266 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 268, - "End Line": 268 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 270, - "End Line": 270 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 272, - "End Line": 272 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 281, - "End Line": 283 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 303, - "End Line": 303 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 305, - "End Line": 305 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 307, - "End Line": 307 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 309, - "End Line": 309 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 311, - "End Line": 313 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 324, - "End Line": 324 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 326, - "End Line": 328 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 330, - "End Line": 330 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 356, - "End Line": 356 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 358, - "End Line": 358 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 368, - "End Line": 368 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 378, - "End Line": 378 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 392, - "End Line": 392 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 394, - "End Line": 394 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 396, - "End Line": 396 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 403, - "End Line": 403 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 421, - "End Line": 421 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 429, - "End Line": 429 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 439, - "End Line": 439 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 454, - "End Line": 454 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 456, - "End Line": 456 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 458, - "End Line": 460 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 462, - "End Line": 462 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 464, - "End Line": 466 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 468, - "End Line": 468 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 470, - "End Line": 472 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 482, - "End Line": 482 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 500, - "End Line": 500 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 502, - "End Line": 502 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 504, - "End Line": 504 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 506, - "End Line": 506 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 508, - "End Line": 508 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 524, - "End Line": 524 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 526, - "End Line": 526 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 528, - "End Line": 528 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 544, - "End Line": 544 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 546, - "End Line": 546 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 556, - "End Line": 556 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 558, - "End Line": 558 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 560, - "End Line": 560 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 562, - "End Line": 562 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 572, - "End Line": 572 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 591, - "End Line": 591 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 600, - "End Line": 600 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 618, - "End Line": 618 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 620, - "End Line": 622 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 624, - "End Line": 626 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 647, - "End Line": 647 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 649, - "End Line": 651 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 653, - "End Line": 653 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 655, - "End Line": 657 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 659, - "End Line": 659 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 661, - "End Line": 661 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 663, - "End Line": 663 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 670, - "End Line": 670 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 682, - "End Line": 682 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 696, - "End Line": 696 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 698, - "End Line": 698 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 700, - "End Line": 700 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 702, - "End Line": 704 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 714, - "End Line": 714 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 716, - "End Line": 716 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 726, - "End Line": 726 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 728, - "End Line": 728 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 757, - "End Line": 757 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 765, - "End Line": 765 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 776, - "End Line": 778 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 788, - "End Line": 788 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 829, - "End Line": 829 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 831, - "End Line": 831 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 833, - "End Line": 833 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 853, - "End Line": 853 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 855, - "End Line": 855 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 857, - "End Line": 857 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 882, - "End Line": 882 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 884, - "End Line": 884 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 892, - "End Line": 892 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 894, - "End Line": 894 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 904, - "End Line": 904 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 914, - "End Line": 914 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 916, - "End Line": 916 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 918, - "End Line": 920 - }, + "Start Line": 7, + "End Line": 8 + } + ], + "6. Contextual Mitigations & Amplifications": "None Detected", + "7. Structural Signatures (Net Mitigated Signals)": { + "Control Flow Branches": 0, + "Sequential Logic Declarations": 1, + "Function Parameters": 0, + "Function/Method Declarations": 1, + "Class/Entity Declarations": 0, + "Defensive Programming Constructs": 0, + "Type/Safety Bypasses": 0, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 0, + "State Mutations / Variable Reassignments": 0, + "Commented-out Code (Dead Logic)": 0, + "Structured Documentation Blocks": 0, + "Unit Test Assertions": 0, + "Asynchronous/Concurrent Execution": 0, + "UI / View Layer Components": 0, + "Closures and Anonymous Functions": 0, + "Global State Dependencies": 0, + "Decorators and Annotations": 0, + "Generic Type Abstractions": 0, + "Collection Iterators / Comprehensions": 0, + "Scientific & Mathematical Operations": 0, + "Metaprogramming & Reflection": 0, + "Module Dependencies (Imports)": 1, + "Authorship Metadata": 0, + "Planned Work (TODOs)": 0, + "Acknowledged Tech Debt (FIXMEs)": 0, + "Specification Traceability Tags": 0, + "Server-Side Rendering Contexts": 0, + "Event Publishers / Emitters": 0, + "Dependency Injection Constructs": 0, + "Preprocessor Macros": 0, + "Pointer Arithmetic & Addressing": 0, + "Manual Memory Allocation": 0, + "Inline Assembly Blocks": 0, + "Structured Telemetry & Logging": 0, + "Ad-hoc Print / Debug Statements": 0, + "Explicit Type Casts": 0, + "Fatal Aborts & Exceptions": 0, + "Thread Sleeps & Blocking Waits": 0, + "Bitwise Operations": 0, + "Thread Synchronization Locks": 0, + "Immutable Data Declarations": 0, + "Resource Deallocation & Cleanup": 0, + "Private / Encapsulated Scopes": 0, + "Event Listeners & Subscribers": 0, + "Bypassed / Skipped Tests": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 0, + "Hardware Bridge": 0, + "Cryptography": 0, + "Auth Middleware": 0, + "Ipc Rpc Bridges": 0, + "Feature Flags": 0, + "Serialization Parsing": 0, + "Regex Execution": 0, + "Time Date Logic": 0, + "Cloud LLM API Integrations": 0, + "AI Orchestration Frameworks": 0, + "Vector Databases (RAG)": 0, + "Local Inference & Tensor Math": 0, + "Traditional Machine Learning (Stats/Trees)": 0, + "Deep Learning & Neural Networks": 0, + "Lazy Evaluation & Generators (O(1) Memory)": 0, + "Vectorized Math & Tensor Operations": 0, + "Core Var Decl": 4, + "Design Camel Case": 0, + "Design Snake Case": 0, + "Design Pascal Case": 0, + "Design Upper Case": 4, + "Design Short Vars": 0, + "Design Long Vars": 0, + "Duplicate Logic": 0, + "Orphaned Logic": 0, + "Instructional Code Examples": 0, + "Architectural Diagrams (Mermaid/PlantUML)": 0, + "Structured Literature Headers": 0, + "Hyperlinked Literature References": 0, + "High-Entropy / Obfuscated Logic": 0, + "Safety & Constraint Bypasses": 0, + "External Network & I/O Hooks": 0, + "Dynamic Code Execution (Eval/Exec)": 0, + "Global Environment Mutation": 0, + "Commented-Out Executable Logic": 0, + "Low-Level Bitwise / Cryptographic Math": 0, + "Non-Standard / Steganographic Imports": 0, + "Non-Standard Unicode / Homoglyphs": 0, + "Embedded Credentials & Keys": 0, + "Sec Extension Mismatch": 0, + "Sec Entropy": 0, + "Sec Tainted Injection": 0, + "Prompt Injection": 0, + "Agentic Rce": 0, + "Invisible Unicode Payload Smuggling": 0, + "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 + }, + "8. Dependency Network": { + "Direct Upstream (Fragility)": 2, + "Direct Downstream (Dependency Blast Radius)": 1, + "Total Upstream (Absolute Fragility)": 1, + "Total Downstream (Absolute Dependency Blast Radius)": 1 + }, + "9. Extracted Dependencies": [ + "CBSA.CICSBSA.BUILDJCL", + "DEFAULT" + ] + }, + "jcl/cics-banking-sample-application-cbsa/BNK1TFM.jcl": { + "1. Artifact Identity": { + "Filename": "BNK1TFM.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/BNK1TFM.jcl", + "Language": "Jcl", + "Architect": "Unknown Architect", + "Indentation Style": "Neutral / No Indentation", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "jcl", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .jcl)" + }, + "2. Topological Coordinates": { + "X": 720.33, + "Y": 113.75, + "Z": -3565.09 + }, + "3. Architectural Profile": { + "Repository Archetype": "Unclassified", + "Repository Drift (Z-Score)": 0.0, + "Repository Fingerprint": {}, + "File Archetype": null, + "File Drift (Z-Score)": 0.0, + "File Fingerprint": {}, + "Total LOC": 9, + "Coding LOC": 4, + "Documentation LOC": 4, + "Structural Magnitude": 1.18, + "Control Flow Ratio": "0.0%", + "Popularity Rank": 1, + "Raw Churn Frequency": 0.0, + "Authorship Centralization": 0.0, + "Ownership Entropy": 0.0, + "Raw Cognitive Density": 0.0 + }, + "4. Vulnerability & Risk Exposures": { + "Cognitive Load Exposure": "0.0%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "2.31%", + "API Exposure": "0.0%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "0.0%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "100.0%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "0.0%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "5. Function Analysis": [ { - "Function Name": "CREATE_Statement", + "Function Name": "BNK1TFM", "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, + "Lines of Code (LOC)": 2, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 929, - "End Line": 929 - }, + "Start Line": 7, + "End Line": 8 + } + ], + "6. Contextual Mitigations & Amplifications": "None Detected", + "7. Structural Signatures (Net Mitigated Signals)": { + "Control Flow Branches": 0, + "Sequential Logic Declarations": 1, + "Function Parameters": 0, + "Function/Method Declarations": 1, + "Class/Entity Declarations": 0, + "Defensive Programming Constructs": 0, + "Type/Safety Bypasses": 0, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 0, + "State Mutations / Variable Reassignments": 0, + "Commented-out Code (Dead Logic)": 0, + "Structured Documentation Blocks": 0, + "Unit Test Assertions": 0, + "Asynchronous/Concurrent Execution": 0, + "UI / View Layer Components": 0, + "Closures and Anonymous Functions": 0, + "Global State Dependencies": 0, + "Decorators and Annotations": 0, + "Generic Type Abstractions": 0, + "Collection Iterators / Comprehensions": 0, + "Scientific & Mathematical Operations": 0, + "Metaprogramming & Reflection": 0, + "Module Dependencies (Imports)": 1, + "Authorship Metadata": 0, + "Planned Work (TODOs)": 0, + "Acknowledged Tech Debt (FIXMEs)": 0, + "Specification Traceability Tags": 0, + "Server-Side Rendering Contexts": 0, + "Event Publishers / Emitters": 0, + "Dependency Injection Constructs": 0, + "Preprocessor Macros": 0, + "Pointer Arithmetic & Addressing": 0, + "Manual Memory Allocation": 0, + "Inline Assembly Blocks": 0, + "Structured Telemetry & Logging": 0, + "Ad-hoc Print / Debug Statements": 0, + "Explicit Type Casts": 0, + "Fatal Aborts & Exceptions": 0, + "Thread Sleeps & Blocking Waits": 0, + "Bitwise Operations": 0, + "Thread Synchronization Locks": 0, + "Immutable Data Declarations": 0, + "Resource Deallocation & Cleanup": 0, + "Private / Encapsulated Scopes": 0, + "Event Listeners & Subscribers": 0, + "Bypassed / Skipped Tests": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 0, + "Hardware Bridge": 0, + "Cryptography": 0, + "Auth Middleware": 0, + "Ipc Rpc Bridges": 0, + "Feature Flags": 0, + "Serialization Parsing": 0, + "Regex Execution": 0, + "Time Date Logic": 0, + "Cloud LLM API Integrations": 0, + "AI Orchestration Frameworks": 0, + "Vector Databases (RAG)": 0, + "Local Inference & Tensor Math": 0, + "Traditional Machine Learning (Stats/Trees)": 0, + "Deep Learning & Neural Networks": 0, + "Lazy Evaluation & Generators (O(1) Memory)": 0, + "Vectorized Math & Tensor Operations": 0, + "Core Var Decl": 4, + "Design Camel Case": 0, + "Design Snake Case": 0, + "Design Pascal Case": 0, + "Design Upper Case": 4, + "Design Short Vars": 0, + "Design Long Vars": 0, + "Duplicate Logic": 0, + "Orphaned Logic": 0, + "Instructional Code Examples": 0, + "Architectural Diagrams (Mermaid/PlantUML)": 0, + "Structured Literature Headers": 0, + "Hyperlinked Literature References": 0, + "High-Entropy / Obfuscated Logic": 0, + "Safety & Constraint Bypasses": 0, + "External Network & I/O Hooks": 0, + "Dynamic Code Execution (Eval/Exec)": 0, + "Global Environment Mutation": 0, + "Commented-Out Executable Logic": 0, + "Low-Level Bitwise / Cryptographic Math": 0, + "Non-Standard / Steganographic Imports": 0, + "Non-Standard Unicode / Homoglyphs": 0, + "Embedded Credentials & Keys": 0, + "Sec Extension Mismatch": 0, + "Sec Entropy": 0, + "Sec Tainted Injection": 0, + "Prompt Injection": 0, + "Agentic Rce": 0, + "Invisible Unicode Payload Smuggling": 0, + "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 + }, + "8. Dependency Network": { + "Direct Upstream (Fragility)": 2, + "Direct Downstream (Dependency Blast Radius)": 1, + "Total Upstream (Absolute Fragility)": 1, + "Total Downstream (Absolute Dependency Blast Radius)": 1 + }, + "9. Extracted Dependencies": [ + "CBSA.CICSBSA.BUILDJCL", + "DEFAULT" + ] + }, + "jcl/cics-banking-sample-application-cbsa/BNK1TFN.jcl": { + "1. Artifact Identity": { + "Filename": "BNK1TFN.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/BNK1TFN.jcl", + "Language": "Jcl", + "Architect": "Unknown Architect", + "Indentation Style": "Neutral / No Indentation", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "jcl", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .jcl)" + }, + "2. Topological Coordinates": { + "X": 1846.14, + "Y": 28.31, + "Z": -2411.0 + }, + "3. Architectural Profile": { + "Repository Archetype": "Unclassified", + "Repository Drift (Z-Score)": 0.0, + "Repository Fingerprint": {}, + "File Archetype": null, + "File Drift (Z-Score)": 0.0, + "File Fingerprint": {}, + "Total LOC": 8, + "Coding LOC": 3, + "Documentation LOC": 4, + "Structural Magnitude": 1.16, + "Control Flow Ratio": "0.0%", + "Popularity Rank": 0, + "Raw Churn Frequency": 0.0, + "Authorship Centralization": 0.0, + "Ownership Entropy": 0.0, + "Raw Cognitive Density": 0.0 + }, + "4. Vulnerability & Risk Exposures": { + "Cognitive Load Exposure": "0.0%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "73.11%", + "Testing Exposure": "2.31%", + "API Exposure": "0.0%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "0.0%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "100.0%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "0.0%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "5. Function Analysis": [ { - "Function Name": "CREATE_Statement", + "Function Name": "Unknown_Block", "Structural Impact": 1.1, "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 938, - "End Line": 938 - }, + "Start Line": 7, + "End Line": 7 + } + ], + "6. Contextual Mitigations & Amplifications": "None Detected", + "7. Structural Signatures (Net Mitigated Signals)": { + "Control Flow Branches": 0, + "Sequential Logic Declarations": 1, + "Function Parameters": 0, + "Function/Method Declarations": 1, + "Class/Entity Declarations": 0, + "Defensive Programming Constructs": 0, + "Type/Safety Bypasses": 0, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 0, + "State Mutations / Variable Reassignments": 0, + "Commented-out Code (Dead Logic)": 0, + "Structured Documentation Blocks": 0, + "Unit Test Assertions": 0, + "Asynchronous/Concurrent Execution": 0, + "UI / View Layer Components": 0, + "Closures and Anonymous Functions": 0, + "Global State Dependencies": 0, + "Decorators and Annotations": 0, + "Generic Type Abstractions": 0, + "Collection Iterators / Comprehensions": 0, + "Scientific & Mathematical Operations": 0, + "Metaprogramming & Reflection": 0, + "Module Dependencies (Imports)": 1, + "Authorship Metadata": 0, + "Planned Work (TODOs)": 0, + "Acknowledged Tech Debt (FIXMEs)": 0, + "Specification Traceability Tags": 0, + "Server-Side Rendering Contexts": 0, + "Event Publishers / Emitters": 0, + "Dependency Injection Constructs": 0, + "Preprocessor Macros": 0, + "Pointer Arithmetic & Addressing": 0, + "Manual Memory Allocation": 0, + "Inline Assembly Blocks": 0, + "Structured Telemetry & Logging": 0, + "Ad-hoc Print / Debug Statements": 0, + "Explicit Type Casts": 0, + "Fatal Aborts & Exceptions": 0, + "Thread Sleeps & Blocking Waits": 0, + "Bitwise Operations": 0, + "Thread Synchronization Locks": 0, + "Immutable Data Declarations": 0, + "Resource Deallocation & Cleanup": 0, + "Private / Encapsulated Scopes": 0, + "Event Listeners & Subscribers": 0, + "Bypassed / Skipped Tests": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 0, + "Hardware Bridge": 0, + "Cryptography": 0, + "Auth Middleware": 0, + "Ipc Rpc Bridges": 0, + "Feature Flags": 0, + "Serialization Parsing": 0, + "Regex Execution": 0, + "Time Date Logic": 0, + "Cloud LLM API Integrations": 0, + "AI Orchestration Frameworks": 0, + "Vector Databases (RAG)": 0, + "Local Inference & Tensor Math": 0, + "Traditional Machine Learning (Stats/Trees)": 0, + "Deep Learning & Neural Networks": 0, + "Lazy Evaluation & Generators (O(1) Memory)": 0, + "Vectorized Math & Tensor Operations": 0, + "Core Var Decl": 2, + "Design Camel Case": 0, + "Design Snake Case": 0, + "Design Pascal Case": 0, + "Design Upper Case": 2, + "Design Short Vars": 0, + "Design Long Vars": 0, + "Duplicate Logic": 0, + "Orphaned Logic": 1, + "Instructional Code Examples": 0, + "Architectural Diagrams (Mermaid/PlantUML)": 0, + "Structured Literature Headers": 0, + "Hyperlinked Literature References": 0, + "High-Entropy / Obfuscated Logic": 0, + "Safety & Constraint Bypasses": 0, + "External Network & I/O Hooks": 0, + "Dynamic Code Execution (Eval/Exec)": 0, + "Global Environment Mutation": 0, + "Commented-Out Executable Logic": 0, + "Low-Level Bitwise / Cryptographic Math": 0, + "Non-Standard / Steganographic Imports": 0, + "Non-Standard Unicode / Homoglyphs": 0, + "Embedded Credentials & Keys": 0, + "Sec Extension Mismatch": 0, + "Sec Entropy": 0, + "Sec Tainted Injection": 0, + "Prompt Injection": 0, + "Agentic Rce": 0, + "Invisible Unicode Payload Smuggling": 0, + "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 + }, + "8. Dependency Network": { + "Direct Upstream (Fragility)": 2, + "Direct Downstream (Dependency Blast Radius)": 0, + "Total Upstream (Absolute Fragility)": 1, + "Total Downstream (Absolute Dependency Blast Radius)": 0 + }, + "9. Extracted Dependencies": [ + "CBSA.CICSBSA.BUILDJCL", + "DEFAULT" + ] + }, + "jcl/cics-banking-sample-application-cbsa/BNK1UAC.jcl": { + "1. Artifact Identity": { + "Filename": "BNK1UAC.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/BNK1UAC.jcl", + "Language": "Jcl", + "Architect": "Unknown Architect", + "Indentation Style": "Neutral / No Indentation", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "jcl", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .jcl)" + }, + "2. Topological Coordinates": { + "X": -794.73, + "Y": 57.4, + "Z": -1229.29 + }, + "3. Architectural Profile": { + "Repository Archetype": "Unclassified", + "Repository Drift (Z-Score)": 0.0, + "Repository Fingerprint": {}, + "File Archetype": null, + "File Drift (Z-Score)": 0.0, + "File Fingerprint": {}, + "Total LOC": 8, + "Coding LOC": 3, + "Documentation LOC": 4, + "Structural Magnitude": 1.16, + "Control Flow Ratio": "0.0%", + "Popularity Rank": 0, + "Raw Churn Frequency": 0.0, + "Authorship Centralization": 0.0, + "Ownership Entropy": 0.0, + "Raw Cognitive Density": 0.0 + }, + "4. Vulnerability & Risk Exposures": { + "Cognitive Load Exposure": "0.0%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "73.11%", + "Testing Exposure": "2.31%", + "API Exposure": "0.0%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "0.0%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "100.0%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "0.0%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "5. Function Analysis": [ { - "Function Name": "CREATE_Statement", + "Function Name": "Unknown_Block", "Structural Impact": 1.1, "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 947, - "End Line": 947 + "Start Line": 7, + "End Line": 7 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 0, + "Sequential Logic Declarations": 1, "Function Parameters": 0, - "Function/Method Declarations": 134, - "Class/Entity Declarations": 64, - "Defensive Programming Constructs": 83, + "Function/Method Declarations": 1, + "Class/Entity Declarations": 0, + "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, @@ -797861,7 +797314,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -797886,7 +797339,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 398, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -797894,7 +797347,7 @@ "Feature Flags": 0, "Serialization Parsing": 0, "Regex Execution": 0, - "Time Date Logic": 1, + "Time Date Logic": 0, "Cloud LLM API Integrations": 0, "AI Orchestration Frameworks": 0, "Vector Databases (RAG)": 0, @@ -797903,15 +797356,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 0, + "Core Var Decl": 2, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 0, + "Design Upper Case": 2, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -797935,95 +797388,84 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 0, + "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, + "Total Upstream (Absolute Fragility)": 1, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [] - } - } - }, - "python/wtfpython": { - "Directory Group Magnitude": 313.92, - "File Count": 6, - "Ecosystem Fingerprint (Archetypes)": { - "Unclassified": "83.3%", - "Static: Literature & Documentation": "16.7%" - }, - "Average Risk Exposures": { - "Cognitive Load Exposure": "11.38%", - "Error & Exception Exposure": "29.13%", - "Tech Debt Exposure": "31.29%", - "Testing Exposure": "14.88%", - "API Exposure": "2.85%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "31.95%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "66.67%", - "Instability Exposure": "41.67%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "7.95%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "Files": { - "python/wtfpython/README.md": { + "9. Extracted Dependencies": [ + "CBSA.CICSBSA.BUILDJCL", + "DEFAULT" + ] + }, + "jcl/cics-banking-sample-application-cbsa/BNK1UAM.jcl": { "1. Artifact Identity": { - "Filename": "README.md", - "Path": "python/wtfpython/README.md", - "Language": "Markdown", + "Filename": "BNK1UAM.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/BNK1UAM.jcl", + "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Neutral / No Indentation", - "Doc Umbrella": 1.0, - "Folder Dominant Lang": "python", - "Lock Tier": 1, - "Identity Proof": "Prose Extension (.md)" + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "jcl", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -4576.29, - "Y": 99.18, - "Z": 10610.25 + "X": 992.49, + "Y": 22.86, + "Z": -768.49 }, "3. Architectural Profile": { - "Repository Archetype": "Static: Literature & Documentation", + "Repository Archetype": "Unclassified", "Repository Drift (Z-Score)": 0.0, "Repository Fingerprint": {}, - "File Archetype": "N/A", + "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 4180, - "Coding LOC": 0, - "Documentation LOC": 3118, - "Structural Magnitude": 83.6, + "Total LOC": 9, + "Coding LOC": 4, + "Documentation LOC": 4, + "Structural Magnitude": 1.18, "Control Flow Ratio": "0.0%", - "Popularity Rank": 0, + "Popularity Rank": 1, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, "Raw Cognitive Density": 0.0 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "[UNSCANNED - NO DATA]", - "Error & Exception Exposure": "[UNSCANNED - NO DATA]", - "Tech Debt Exposure": "[UNSCANNED - NO DATA]", - "Testing Exposure": "[UNSCANNED - NO DATA]", - "API Exposure": "[UNSCANNED - NO DATA]", - "Concurrency Exposure": "[UNSCANNED - NO DATA]", - "State Flux Exposure": "[UNSCANNED - NO DATA]", - "Commented Logic Exposure": "[UNSCANNED - NO DATA]", - "Specification Exposure": "[UNSCANNED - NO DATA]", - "Instability Exposure": "[UNSCANNED - NO DATA]", - "Volatility Exposure": "[UNSCANNED - NO DATA]", - "Documentation Exposure": "[UNSCANNED - NO DATA]", - "Hardcoded Payload Artifacts": "[UNSCANNED - NO DATA]" + "Cognitive Load Exposure": "0.0%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "2.31%", + "API Exposure": "0.0%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "0.0%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "100.0%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "0.0%", + "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [], + "5. Function Analysis": [ + { + "Function Name": "BNK1UAM", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 7, + "End Line": 8 + } + ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 0, + "Sequential Logic Declarations": 1, "Function Parameters": 0, - "Function/Method Declarations": 0, + "Function/Method Declarations": 1, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, @@ -798043,7 +797485,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -798085,19 +797527,19 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 0, + "Core Var Decl": 4, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 0, + "Design Upper Case": 4, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, "Orphaned Logic": 0, - "Instructional Code Examples": 504, + "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, - "Structured Literature Headers": 174, - "Hyperlinked Literature References": 171, + "Structured Literature Headers": 0, + "Hyperlinked Literature References": 0, "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, @@ -798118,43 +797560,43 @@ }, "8. Dependency Network": { "Direct Upstream (Fragility)": 2, - "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 + "Direct Downstream (Dependency Blast Radius)": 1, + "Total Upstream (Absolute Fragility)": 1, + "Total Downstream (Absolute Dependency Blast Radius)": 1 }, "9. Extracted Dependencies": [ - "/CONTRIBUTING.md", - "/mixed_tabs_and_spaces.py" + "CBSA.CICSBSA.BUILDJCL", + "DEFAULT" ] }, - "python/wtfpython/2_tricky_strings.py": { + "jcl/cics-banking-sample-application-cbsa/BNKMENU.jcl": { "1. Artifact Identity": { - "Filename": "2_tricky_strings.py", - "Path": "python/wtfpython/2_tricky_strings.py", - "Language": "Python", + "Filename": "BNKMENU.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/BNKMENU.jcl", + "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Neutral / No Indentation", - "Doc Umbrella": 1.0, - "Folder Dominant Lang": "python", - "Lock Tier": 1.5, - "Identity Proof": "Ecosystem Consensus Lock (75% Local Dominance)" + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "jcl", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -4313.75, - "Y": 191.44, - "Z": 10129.64 + "X": 360.94, + "Y": 79.59, + "Z": -3797.0 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", "Repository Drift (Z-Score)": 0.0, "Repository Fingerprint": {}, - "File Archetype": "Unclassified", + "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 20, - "Coding LOC": 12, - "Documentation LOC": 3, - "Structural Magnitude": 15.24, + "Total LOC": 8, + "Coding LOC": 3, + "Documentation LOC": 4, + "Structural Magnitude": 1.16, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -798165,27 +797607,38 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", - "Testing Exposure": "2.3%", + "Tech Debt Exposure": "73.11%", + "Testing Exposure": "2.31%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "0.0%", + "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", "Documentation Exposure": "0.0%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [], + "5. Function Analysis": [ + { + "Function Name": "Unknown_Block", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 7, + "End Line": 7 + } + ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 6, + "Sequential Logic Declarations": 1, "Function Parameters": 0, - "Function/Method Declarations": 0, + "Function/Method Declarations": 1, "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 6, + "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, @@ -798203,10 +797656,10 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, - "Acknowledged Tech Debt (FIXMEs)": 8, + "Acknowledged Tech Debt (FIXMEs)": 0, "Specification Traceability Tags": 0, "Server-Side Rendering Contexts": 0, "Event Publishers / Emitters": 0, @@ -798245,15 +797698,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 6, + "Core Var Decl": 2, "Design Camel Case": 0, - "Design Snake Case": 6, + "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 0, - "Design Short Vars": 6, + "Design Upper Case": 2, + "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -798277,88 +797730,262 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 0, + "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, + "Total Upstream (Absolute Fragility)": 1, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [] + "9. Extracted Dependencies": [ + "CBSA.CICSBSA.BUILDJCL", + "DEFAULT" + ] }, - "python/wtfpython/insert_ids.py": { + "jcl/cics-banking-sample-application-cbsa/BTCHSQL.jcl": { "1. Artifact Identity": { - "Filename": "insert_ids.py", - "Path": "python/wtfpython/insert_ids.py", - "Language": "Python", + "Filename": "BTCHSQL.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/BTCHSQL.jcl", + "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Spaces", - "Doc Umbrella": 1.0, - "Folder Dominant Lang": "python", - "Lock Tier": 1.5, - "Identity Proof": "Ecosystem Consensus Lock (75% Local Dominance)" + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "jcl", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -4069.61, - "Y": 187.76, - "Z": 10761.73 + "X": 661.38, + "Y": 85.57, + "Z": -3199.48 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", "Repository Drift (Z-Score)": 0.0, "Repository Fingerprint": {}, - "File Archetype": "Unclassified", + "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 25, - "Coding LOC": 15, - "Documentation LOC": 0, - "Structural Magnitude": 8.4, - "Control Flow Ratio": "44.4%", + "Total LOC": 22, + "Coding LOC": 17, + "Documentation LOC": 4, + "Structural Magnitude": 1.94, + "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.32 + "Raw Cognitive Density": 0.0 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "15.19%", - "Error & Exception Exposure": "79.76%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.31%", - "API Exposure": "3.53%", + "Cognitive Load Exposure": "0.0%", + "Error & Exception Exposure": "76.85%", + "Tech Debt Exposure": "73.11%", + "Testing Exposure": "2.33%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "91.68%", + "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "11.92%", + "Documentation Exposure": "0.0%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "generate_random_id_comment", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, + "Function Name": "GRANT", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 13, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", "Start Line": 9, - "End Line": 11 + "End Line": 21 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 4, - "Sequential Logic Declarations": 5, - "Function Parameters": 1, + "Control Flow Branches": 0, + "Sequential Logic Declarations": 6, + "Function Parameters": 0, "Function/Method Declarations": 1, - "Class/Entity Declarations": 0, + "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 2, + "Type/Safety Bypasses": 0, + "High-Risk Execution Commands": 1, + "I/O and Network Boundaries": 7, + "Exposed API / Public Exports": 0, + "State Mutations / Variable Reassignments": 0, + "Commented-out Code (Dead Logic)": 0, + "Structured Documentation Blocks": 0, + "Unit Test Assertions": 0, + "Asynchronous/Concurrent Execution": 0, + "UI / View Layer Components": 0, + "Closures and Anonymous Functions": 0, + "Global State Dependencies": 1, + "Decorators and Annotations": 0, + "Generic Type Abstractions": 0, + "Collection Iterators / Comprehensions": 0, + "Scientific & Mathematical Operations": 0, + "Metaprogramming & Reflection": 0, + "Module Dependencies (Imports)": 0, + "Authorship Metadata": 0, + "Planned Work (TODOs)": 0, + "Acknowledged Tech Debt (FIXMEs)": 0, + "Specification Traceability Tags": 0, + "Server-Side Rendering Contexts": 0, + "Event Publishers / Emitters": 0, + "Dependency Injection Constructs": 0, + "Preprocessor Macros": 0, + "Pointer Arithmetic & Addressing": 0, + "Manual Memory Allocation": 0, + "Inline Assembly Blocks": 0, + "Structured Telemetry & Logging": 2, + "Ad-hoc Print / Debug Statements": 0, + "Explicit Type Casts": 0, + "Fatal Aborts & Exceptions": 0, + "Thread Sleeps & Blocking Waits": 0, + "Bitwise Operations": 0, + "Thread Synchronization Locks": 0, + "Immutable Data Declarations": 0, + "Resource Deallocation & Cleanup": 0, + "Private / Encapsulated Scopes": 0, + "Event Listeners & Subscribers": 0, + "Bypassed / Skipped Tests": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 4, + "Hardware Bridge": 0, + "Cryptography": 0, + "Auth Middleware": 0, + "Ipc Rpc Bridges": 0, + "Feature Flags": 0, + "Serialization Parsing": 0, + "Regex Execution": 0, + "Time Date Logic": 0, + "Cloud LLM API Integrations": 0, + "AI Orchestration Frameworks": 0, + "Vector Databases (RAG)": 0, + "Local Inference & Tensor Math": 0, + "Traditional Machine Learning (Stats/Trees)": 0, + "Deep Learning & Neural Networks": 0, + "Lazy Evaluation & Generators (O(1) Memory)": 0, + "Vectorized Math & Tensor Operations": 0, + "Core Var Decl": 8, + "Design Camel Case": 0, + "Design Snake Case": 0, + "Design Pascal Case": 0, + "Design Upper Case": 8, + "Design Short Vars": 0, + "Design Long Vars": 0, + "Duplicate Logic": 0, + "Orphaned Logic": 1, + "Instructional Code Examples": 0, + "Architectural Diagrams (Mermaid/PlantUML)": 0, + "Structured Literature Headers": 0, + "Hyperlinked Literature References": 0, + "High-Entropy / Obfuscated Logic": 0, + "Safety & Constraint Bypasses": 0, + "External Network & I/O Hooks": 0, + "Dynamic Code Execution (Eval/Exec)": 2, + "Global Environment Mutation": 0, + "Commented-Out Executable Logic": 0, + "Low-Level Bitwise / Cryptographic Math": 0, + "Non-Standard / Steganographic Imports": 0, + "Non-Standard Unicode / Homoglyphs": 0, + "Embedded Credentials & Keys": 0, + "Sec Extension Mismatch": 0, + "Sec Entropy": 0, + "Sec Tainted Injection": 1, + "Prompt Injection": 0, + "Agentic Rce": 0, + "Invisible Unicode Payload Smuggling": 0, + "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 + }, + "8. Dependency Network": { + "Direct Upstream (Fragility)": 2, + "Direct Downstream (Dependency Blast Radius)": 0, + "Total Upstream (Absolute Fragility)": 0, + "Total Downstream (Absolute Dependency Blast Radius)": 0 + }, + "9. Extracted Dependencies": [ + "DSNC10.PROCLIB", + "DSNC10.SDSNLOAD" + ] + }, + "jcl/cics-banking-sample-application-cbsa/CBSACSD.jcl": { + "1. Artifact Identity": { + "Filename": "CBSACSD.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/CBSACSD.jcl", + "Language": "Jcl", + "Architect": "Unknown Architect", + "Indentation Style": "Neutral / No Indentation", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "jcl", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .jcl)" + }, + "2. Topological Coordinates": { + "X": 590.81, + "Y": 84.6, + "Z": -799.42 + }, + "3. Architectural Profile": { + "Repository Archetype": "Unclassified", + "Repository Drift (Z-Score)": 0.0, + "Repository Fingerprint": {}, + "File Archetype": null, + "File Drift (Z-Score)": 0.0, + "File Fingerprint": {}, + "Total LOC": 24, + "Coding LOC": 10, + "Documentation LOC": 13, + "Structural Magnitude": 1.6, + "Control Flow Ratio": "0.0%", + "Popularity Rank": 0, + "Raw Churn Frequency": 0.0, + "Authorship Centralization": 0.0, + "Ownership Entropy": 0.0, + "Raw Cognitive Density": 0.0 + }, + "4. Vulnerability & Risk Exposures": { + "Cognitive Load Exposure": "0.0%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "2.32%", + "API Exposure": "0.0%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "0.0%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "100.0%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "0.0%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "5. Function Analysis": [ + { + "Function Name": "DFHCSDUP", + "Structural Impact": 1.4, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 17, + "End Line": 23 + } + ], + "6. Contextual Mitigations & Amplifications": "None Detected", + "7. Structural Signatures (Net Mitigated Signals)": { + "Control Flow Branches": 0, + "Sequential Logic Declarations": 6, + "Function Parameters": 0, + "Function/Method Declarations": 1, + "Class/Entity Declarations": 1, + "Defensive Programming Constructs": 0, + "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 2, - "Exposed API / Public Exports": 1, - "State Mutations / Variable Reassignments": 6, + "I/O and Network Boundaries": 10, + "Exposed API / Public Exports": 0, + "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, @@ -798371,7 +797998,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -798383,7 +798010,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 2, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -798396,7 +798023,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 7, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -798413,11 +798040,11 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 5, + "Core Var Decl": 9, "Design Camel Case": 0, - "Design Snake Case": 5, + "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 0, + "Design Upper Case": 9, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, @@ -798445,88 +798072,100 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 1, + "Direct Upstream (Fragility)": 3, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "uuid" + "@CBSA_INSTALL@(BANK)", + "@CICS_PREFIX@.SDFHLOAD", + "@CSD_PREFIX@.DFHCSD" ] }, - "python/wtfpython/mixed_tabs_and_spaces.py": { + "jcl/cics-banking-sample-application-cbsa/CICS.jcl": { "1. Artifact Identity": { - "Filename": "mixed_tabs_and_spaces.py", - "Path": "python/wtfpython/mixed_tabs_and_spaces.py", - "Language": "Python", + "Filename": "CICS.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/CICS.jcl", + "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Mixed (75.0% Spaces / 25.0% Tabs)", - "Doc Umbrella": 1.0, - "Folder Dominant Lang": "python", - "Lock Tier": 1.5, - "Identity Proof": "Ecosystem Consensus Lock (75% Local Dominance)" + "Indentation Style": "Neutral / No Indentation", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "jcl", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -4807.29, - "Y": 107.58, - "Z": 10236.98 + "X": 578.22, + "Y": 58.03, + "Z": -1823.91 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", "Repository Drift (Z-Score)": 0.0, "Repository Fingerprint": {}, - "File Archetype": "Unclassified", + "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 8, - "Coding LOC": 6, - "Documentation LOC": 0, - "Structural Magnitude": 4.22, - "Control Flow Ratio": "33.3%", - "Popularity Rank": 1, + "Total LOC": 59, + "Coding LOC": 53, + "Documentation LOC": 5, + "Structural Magnitude": 9.66, + "Control Flow Ratio": "0.0%", + "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.02 + "Raw Cognitive Density": 0.0 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.12%", + "Cognitive Load Exposure": "0.0%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.33%", - "API Exposure": "3.53%", + "Testing Exposure": "2.38%", + "API Exposure": "3.39%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "11.92%", + "Documentation Exposure": "15.73%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "square", - "Structural Impact": 3.1, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "33.3%", - "Start Line": 1, - "End Line": 5 + "Function Name": "COBOL", + "Structural Impact": 4.4, + "Lines of Code (LOC)": 36, + "Control Flow Branches": 0, + "Input Parameters": 6, + "Control Flow Ratio": "0.0%", + "Start Line": 5, + "End Line": 40 + }, + { + "Function Name": "LKED", + "Structural Impact": 3.2, + "Lines of Code (LOC)": 16, + "Control Flow Branches": 0, + "Input Parameters": 5, + "Control Flow Ratio": "0.0%", + "Start Line": 43, + "End Line": 58 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 1, - "Sequential Logic Declarations": 2, - "Function Parameters": 1, - "Function/Method Declarations": 1, + "Control Flow Branches": 0, + "Sequential Logic Declarations": 43, + "Function Parameters": 3, + "Function/Method Declarations": 2, "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 0, + "Defensive Programming Constructs": 1, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, + "I/O and Network Boundaries": 43, "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -798554,7 +798193,7 @@ "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, - "Ad-hoc Print / Debug Statements": 1, + "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, @@ -798565,8 +798204,8 @@ "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 1, - "Structural Space Indentations": 3, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -798583,11 +798222,11 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 1, + "Core Var Decl": 50, "Design Camel Case": 0, - "Design Snake Case": 1, + "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 0, + "Design Upper Case": 50, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, @@ -798615,57 +798254,72 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 0, - "Direct Downstream (Dependency Blast Radius)": 1, + "Direct Upstream (Fragility)": 13, + "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [] + "9. Extracted Dependencies": [ + "&CBSAHLQ..ADATA(&MEMBER)", + "&CBSAHLQ..COBOL(&MEMBER)", + "&CBSAHLQ..DEBUG(&MEMBER)", + "&CBSAHLQ..DSECT", + "&CBSAHLQ..LKED(&MEMBER)", + "&CBSAHLQ..LOADLIB", + "&CICSHLQ..SDFHCOB", + "&CICSHLQ..SDFHLOAD", + "&CICSHLQ..SDFHSAMP", + "&COBOLHLQ..SIGYCOMP", + "&DB2HLQ..SDSNLOAD", + "&LEHLQ..SCEELKED", + "&LEHLQ..SCEESAMP" + ] }, - "python/wtfpython/notebook_generator.py": { + "jcl/cics-banking-sample-application-cbsa/CICSTS56.jcl": { "1. Artifact Identity": { - "Filename": "notebook_generator.py", - "Path": "python/wtfpython/notebook_generator.py", - "Language": "Python", + "Filename": "CICSTS56.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/CICSTS56.jcl", + "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", - "Doc Umbrella": 1.0, - "Folder Dominant Lang": "python", - "Lock Tier": 1.5, - "Identity Proof": "Ecosystem Consensus Lock (75% Local Dominance)" + "Indentation Style": "Neutral / No Indentation", + "Doc Umbrella": 0.0, + "Alert": "TYPOSQUATTING THREAT: 'DSNC10/SDSNLOD2' mimics 'DSNC10/SDSNLOAD'", + "Folder Dominant Lang": "jcl", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -4390.18, - "Y": 179.55, - "Z": 10396.82 + "X": 351.21, + "Y": 47.47, + "Z": -2729.28 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", "Repository Drift (Z-Score)": 0.0, "Repository Fingerprint": {}, - "File Archetype": "Unclassified", + "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 398, - "Coding LOC": 245, - "Documentation LOC": 89, - "Structural Magnitude": 199.8, - "Control Flow Ratio": "65.9%", + "Total LOC": 183, + "Coding LOC": 108, + "Documentation LOC": 74, + "Structural Magnitude": 18.26, + "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.89 + "Raw Cognitive Density": 0.0 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "42.85%", - "Error & Exception Exposure": "95.04%", - "Tech Debt Exposure": "25.51%", - "Testing Exposure": "80.0%", - "API Exposure": "6.52%", + "Cognitive Load Exposure": "0.0%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "86.97%", + "Testing Exposure": "2.36%", + "API Exposure": "2.66%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "100.0%", - "Commented Logic Exposure": "0.0%", + "State Flux Exposure": "0.0%", + "Commented Logic Exposure": "26.25%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", @@ -798674,115 +798328,105 @@ }, "5. Function Analysis": [ { - "Function Name": "parse_example_parts", - "Structural Impact": 57.1, - "Lines of Code (LOC)": 103, - "Control Flow Branches": 25, - "Input Parameters": 3, - "Control Flow Ratio": "92.6%", - "Start Line": 96, - "End Line": 198 - }, - { - "Function Name": "convert_to_cells", - "Structural Impact": 16.2, - "Lines of Code (LOC)": 81, - "Control Flow Branches": 6, - "Input Parameters": 2, - "Control Flow Ratio": "54.5%", - "Start Line": 228, - "End Line": 308 + "Function Name": "CICS", + "Structural Impact": 6.3, + "Lines of Code (LOC)": 98, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 43, + "End Line": 140 }, { - "Function Name": "convert_to_notebook", - "Structural Impact": 11.6, - "Lines of Code (LOC)": 32, - "Control Flow Branches": 4, - "Input Parameters": 3, - "Control Flow Ratio": "66.7%", - "Start Line": 311, - "End Line": 342 + "Function Name": "PRTDMPA", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 143, + "End Line": 151 }, { - "Function Name": "inspect_and_sanitize_code_lines", - "Structural Impact": 6.6, - "Lines of Code (LOC)": 18, - "Control Flow Branches": 3, + "Function Name": "PRTDMPB", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 0, "Input Parameters": 1, - "Control Flow Ratio": "60.0%", - "Start Line": 208, - "End Line": 225 + "Control Flow Ratio": "0.0%", + "Start Line": 154, + "End Line": 162 }, { - "Function Name": "remove_from_beginning", - "Structural Impact": 5.4, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 2, - "Input Parameters": 2, - "Control Flow Ratio": "50.0%", - "Start Line": 201, - "End Line": 205 + "Function Name": "PRTAUXT", + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 167, + "End Line": 172 }, { - "Function Name": "is_interactive_statement", - "Structural Impact": 4.5, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "40.0%", - "Start Line": 89, - "End Line": 93 + "Function Name": "PRTBUXT", + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 177, + "End Line": 182 }, { - "Function Name": "generate_code_block", - "Structural Impact": 2.5, - "Lines of Code (LOC)": 16, + "Function Name": "CICSCNTL", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, "Control Flow Branches": 0, - "Input Parameters": 2, + "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 57, - "End Line": 72 + "Start Line": 28, + "End Line": 31 }, { - "Function Name": "generate_markdown_block", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 12, + "Function Name": "DTCNTL", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, "Control Flow Branches": 0, - "Input Parameters": 1, + "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 75, - "End Line": 86 + "Start Line": 35, + "End Line": 38 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 56, - "Sequential Logic Declarations": 29, - "Function Parameters": 9, - "Function/Method Declarations": 8, + "Control Flow Branches": 0, + "Sequential Logic Declarations": 70, + "Function Parameters": 4, + "Function/Method Declarations": 7, "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 2, - "Type/Safety Bypasses": 17, + "Defensive Programming Constructs": 5, + "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 4, - "Exposed API / Public Exports": 8, - "State Mutations / Variable Reassignments": 81, - "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 8, + "I/O and Network Boundaries": 115, + "Exposed API / Public Exports": 1, + "State Mutations / Variable Reassignments": 0, + "Commented-out Code (Dead Logic)": 4, + "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 1, + "Closures and Anonymous Functions": 0, "Global State Dependencies": 0, "Decorators and Annotations": 0, - "Generic Type Abstractions": 1, + "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 3, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, - "Planned Work (TODOs)": 3, - "Acknowledged Tech Debt (FIXMEs)": 1, + "Planned Work (TODOs)": 0, + "Acknowledged Tech Debt (FIXMEs)": 0, "Specification Traceability Tags": 0, "Server-Side Rendering Contexts": 0, "Event Publishers / Emitters": 0, @@ -798792,19 +798436,19 @@ "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, - "Ad-hoc Print / Debug Statements": 1, + "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 1, + "Bitwise Operations": 0, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 1, + "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 226, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -798821,15 +798465,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 69, + "Core Var Decl": 104, "Design Camel Case": 0, - "Design Snake Case": 67, + "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 2, + "Design Upper Case": 104, "Design Short Vars": 0, - "Design Long Vars": 1, + "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 4, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -798842,7 +798486,7 @@ "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, "Non-Standard / Steganographic Imports": 0, - "Non-Standard Unicode / Homoglyphs": 0, + "Non-Standard Unicode / Homoglyphs": 1, "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, @@ -798853,92 +798497,479 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 4, + "Direct Upstream (Fragility)": 21, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 1, + "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "json", - "os", - "pprint", - "sys" + "&INDEX2..SDFHAUTH", + "&INDEX2..SDFHLOAD", + "&INDEX3..SEYUAUTH", + "&INDEX3..SEYULOAD", + "ADCD.Z25A.TCPPARMS(GBLTDATA)", + "CBSA.CICSBSA.LOADLIB", + "CEE.SCEECICS", + "CEE.SCEERUN", + "CEE.SCEERUN2", + "DFH560.CICS.EQADPFMB", + "DFH560.CICS.SDFHLINK", + "DFH560.DFHCMACD", + "DFH560.EQAIVP.LOAD", + "DFH560.SDFHLIC", + "DFH560.SYSIN(DFHPLT)", + "DSNC10.SDSNLOAD", + "DSNC10.SDSNLOD2", + "ISM330.SEQAMOD", + "SYS1.MIGLIB", + "SYS1.SIEAMIGE", + "TCPIP.SEZATCP" ] }, - "python/wtfpython/noxfile.py": { + "jcl/cics-banking-sample-application-cbsa/COMPALL.jcl": { "1. Artifact Identity": { - "Filename": "noxfile.py", - "Path": "python/wtfpython/noxfile.py", - "Language": "Python", + "Filename": "COMPALL.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/COMPALL.jcl", + "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", - "Doc Umbrella": 1.0, - "Folder Dominant Lang": "python", - "Lock Tier": 1.5, - "Identity Proof": "Ecosystem Consensus Lock (75% Local Dominance)" + "Indentation Style": "Neutral / No Indentation", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "jcl", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -3977.38, - "Y": 253.19, - "Z": 10025.61 + "X": 255.16, + "Y": 92.42, + "Z": -2312.82 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", "Repository Drift (Z-Score)": 0.0, "Repository Fingerprint": {}, - "File Archetype": "Unclassified", + "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 14, - "Coding LOC": 8, - "Documentation LOC": 0, - "Structural Magnitude": 2.66, - "Control Flow Ratio": "14.3%", + "Total LOC": 175, + "Coding LOC": 87, + "Documentation LOC": 87, + "Structural Magnitude": 47.44, + "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.02 + "Raw Cognitive Density": 0.0 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.12%", + "Cognitive Load Exposure": "0.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "62.25%", - "Testing Exposure": "2.32%", - "API Exposure": "3.53%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "2.65%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "11.92%", + "Documentation Exposure": "0.0%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "tests", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, + "Function Name": "XFRFUN", + "Structural Impact": 1.4, + "Lines of Code (LOC)": 7, "Control Flow Branches": 0, - "Input Parameters": 1, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 97, + "End Line": 103 + }, + { + "Function Name": "ABNDPROC", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, "Control Flow Ratio": "0.0%", "Start Line": 12, - "End Line": 13 + "End Line": 15 + }, + { + "Function Name": "BANKDATA", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 16, + "End Line": 19 + }, + { + "Function Name": "BNK1MAI", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 20, + "End Line": 24 + }, + { + "Function Name": "BNKMENU", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 25, + "End Line": 28 + }, + { + "Function Name": "CRDTAGY1", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 29, + "End Line": 32 + }, + { + "Function Name": "CRDTAGY2", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 33, + "End Line": 36 + }, + { + "Function Name": "CRDTAGY3", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 37, + "End Line": 40 + }, + { + "Function Name": "CRDTAGY4", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 41, + "End Line": 44 + }, + { + "Function Name": "CRDTAGY5", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 45, + "End Line": 48 + }, + { + "Function Name": "CREACC", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 49, + "End Line": 52 + }, + { + "Function Name": "CRECUST", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 53, + "End Line": 56 + }, + { + "Function Name": "DBCRFUN", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 57, + "End Line": 60 + }, + { + "Function Name": "DELACC", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 61, + "End Line": 64 + }, + { + "Function Name": "DELCUS", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 65, + "End Line": 68 + }, + { + "Function Name": "GETCOMPY", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 69, + "End Line": 72 + }, + { + "Function Name": "GETSCODE", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 73, + "End Line": 76 + }, + { + "Function Name": "INQACC", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 77, + "End Line": 80 + }, + { + "Function Name": "INQACCCU", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 81, + "End Line": 84 + }, + { + "Function Name": "INQCUST", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 85, + "End Line": 88 + }, + { + "Function Name": "UPDACC", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 89, + "End Line": 92 + }, + { + "Function Name": "UPDCUST", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 93, + "End Line": 96 + }, + { + "Function Name": "BNK1ACC", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 104, + "End Line": 108 + }, + { + "Function Name": "BNK1CAM", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 109, + "End Line": 113 + }, + { + "Function Name": "BNK1CAC", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 114, + "End Line": 117 + }, + { + "Function Name": "BNK1CCA", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 118, + "End Line": 121 + }, + { + "Function Name": "BNK1CCM", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 122, + "End Line": 126 + }, + { + "Function Name": "BNK1CCS", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 127, + "End Line": 130 + }, + { + "Function Name": "BNK1CDM", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 131, + "End Line": 135 + }, + { + "Function Name": "BNK1CRA", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 136, + "End Line": 139 + }, + { + "Function Name": "BNK1DAM", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 140, + "End Line": 144 + }, + { + "Function Name": "BNK1DAC", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 145, + "End Line": 148 + }, + { + "Function Name": "BNK1DCM", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 149, + "End Line": 153 + }, + { + "Function Name": "BNK1DCS", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 154, + "End Line": 158 + }, + { + "Function Name": "BNK1TFM", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 159, + "End Line": 163 + }, + { + "Function Name": "BNK1TFN", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 164, + "End Line": 167 + }, + { + "Function Name": "BNK1UAM", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 168, + "End Line": 172 + }, + { + "Function Name": "BNK1UAC", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 173, + "End Line": 173 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 1, - "Sequential Logic Declarations": 6, - "Function Parameters": 1, - "Function/Method Declarations": 1, - "Class/Entity Declarations": 0, + "Control Flow Branches": 0, + "Sequential Logic Declarations": 38, + "Function Parameters": 0, + "Function/Method Declarations": 38, + "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 1, + "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -798947,12 +798978,12 @@ "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, "Global State Dependencies": 0, - "Decorators and Annotations": 1, - "Generic Type Abstractions": 1, + "Decorators and Annotations": 0, + "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 3, + "Module Dependencies (Imports)": 38, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -798964,7 +798995,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 1, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -798977,7 +799008,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 2, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -798993,16 +799024,16 @@ "Traditional Machine Learning (Stats/Trees)": 0, "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, - "Vectorized Math & Tensor Operations": 1, - "Core Var Decl": 2, + "Vectorized Math & Tensor Operations": 0, + "Core Var Decl": 57, "Design Camel Case": 0, - "Design Snake Case": 1, + "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 0, - "Design Short Vars": 1, + "Design Upper Case": 57, + "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -799026,45 +799057,20 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 3, + "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, + "Total Upstream (Absolute Fragility)": 1, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "nox", - "nox.sessions", - "typing" + "CBSA.CICSBSA.BUILDJCL", + "DEFAULT" ] - } - } - }, - "jcl/cics-banking-sample-application-cbsa": { - "Directory Group Magnitude": 312.88, - "File Count": 99, - "Ecosystem Fingerprint (Archetypes)": { - "Unclassified": "100.0%" - }, - "Average Risk Exposures": { - "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "45.62%", - "Tech Debt Exposure": "43.22%", - "Testing Exposure": "2.33%", - "API Exposure": "0.98%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "1.17%", - "Commented Logic Exposure": "3.07%", - "Specification Exposure": "98.99%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "3.87%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "Files": { - "jcl/cics-banking-sample-application-cbsa/ABNDPROC.jcl": { + }, + "jcl/cics-banking-sample-application-cbsa/CRDTAGY1.jcl": { "1. Artifact Identity": { - "Filename": "ABNDPROC.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/ABNDPROC.jcl", + "Filename": "CRDTAGY1.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/CRDTAGY1.jcl", "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Neutral / No Indentation", @@ -799074,9 +799080,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -1061.47, - "Y": 112.96, - "Z": -2906.46 + "X": 1242.03, + "Y": 7.88, + "Z": -1185.63 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -799232,10 +799238,10 @@ "DEFAULT" ] }, - "jcl/cics-banking-sample-application-cbsa/ACCLOAD.jcl": { + "jcl/cics-banking-sample-application-cbsa/CRDTAGY2.jcl": { "1. Artifact Identity": { - "Filename": "ACCLOAD.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/ACCLOAD.jcl", + "Filename": "CRDTAGY2.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/CRDTAGY2.jcl", "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Neutral / No Indentation", @@ -799245,9 +799251,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 1664.29, - "Y": 19.7, - "Z": -2898.18 + "X": -1294.76, + "Y": 114.21, + "Z": -2311.29 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -799403,10 +799409,10 @@ "DEFAULT" ] }, - "jcl/cics-banking-sample-application-cbsa/ACCOFFL.jcl": { + "jcl/cics-banking-sample-application-cbsa/CRDTAGY3.jcl": { "1. Artifact Identity": { - "Filename": "ACCOFFL.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/ACCOFFL.jcl", + "Filename": "CRDTAGY3.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/CRDTAGY3.jcl", "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Neutral / No Indentation", @@ -799416,9 +799422,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -352.52, - "Y": 110.7, - "Z": -1030.34 + "X": 1596.28, + "Y": 35.44, + "Z": -3066.76 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -799574,203 +799580,10 @@ "DEFAULT" ] }, - "jcl/cics-banking-sample-application-cbsa/BANKDATA.jcl": { - "1. Artifact Identity": { - "Filename": "BANKDATA.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/BANKDATA.jcl", - "Language": "Jcl", - "Architect": "Unknown Architect", - "Indentation Style": "Spaces", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" - }, - "2. Topological Coordinates": { - "X": 188.46, - "Y": 52.61, - "Z": -1700.58 - }, - "3. Architectural Profile": { - "Repository Archetype": "Unclassified", - "Repository Drift (Z-Score)": 0.0, - "Repository Fingerprint": {}, - "File Archetype": null, - "File Drift (Z-Score)": 0.0, - "File Fingerprint": {}, - "Total LOC": 115, - "Coding LOC": 64, - "Documentation LOC": 50, - "Structural Magnitude": 7.48, - "Control Flow Ratio": "0.0%", - "Popularity Rank": 0, - "Raw Churn Frequency": 0.0, - "Authorship Centralization": 0.0, - "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.0 - }, - "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "89.5%", - "Tech Debt Exposure": "96.64%", - "Testing Exposure": "2.39%", - "API Exposure": "0.0%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "5. Function Analysis": [ - { - "Function Name": "BANKDAT1", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 23, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 56, - "End Line": 78 - }, - { - "Function Name": "BANKDAT0", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 20, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 36, - "End Line": 55 - }, - { - "Function Name": "BANKDAT5", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 21, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 94, - "End Line": 114 - } - ], - "6. Contextual Mitigations & Amplifications": "None Detected", - "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 17, - "Function Parameters": 0, - "Function/Method Declarations": 3, - "Class/Entity Declarations": 1, - "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 3, - "I/O and Network Boundaries": 25, - "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 0, - "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 0, - "Unit Test Assertions": 0, - "Asynchronous/Concurrent Execution": 0, - "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, - "Decorators and Annotations": 0, - "Generic Type Abstractions": 0, - "Collection Iterators / Comprehensions": 0, - "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, - "Authorship Metadata": 0, - "Planned Work (TODOs)": 0, - "Acknowledged Tech Debt (FIXMEs)": 0, - "Specification Traceability Tags": 0, - "Server-Side Rendering Contexts": 0, - "Event Publishers / Emitters": 0, - "Dependency Injection Constructs": 0, - "Preprocessor Macros": 0, - "Pointer Arithmetic & Addressing": 0, - "Manual Memory Allocation": 0, - "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 2, - "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 0, - "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 0, - "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 0, - "Event Listeners & Subscribers": 0, - "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, - "Structural Space Indentations": 32, - "Hardware Bridge": 0, - "Cryptography": 0, - "Auth Middleware": 0, - "Ipc Rpc Bridges": 0, - "Feature Flags": 0, - "Serialization Parsing": 0, - "Regex Execution": 0, - "Time Date Logic": 0, - "Cloud LLM API Integrations": 0, - "AI Orchestration Frameworks": 0, - "Vector Databases (RAG)": 0, - "Local Inference & Tensor Math": 0, - "Traditional Machine Learning (Stats/Trees)": 0, - "Deep Learning & Neural Networks": 0, - "Lazy Evaluation & Generators (O(1) Memory)": 0, - "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 20, - "Design Camel Case": 0, - "Design Snake Case": 0, - "Design Pascal Case": 0, - "Design Upper Case": 20, - "Design Short Vars": 0, - "Design Long Vars": 0, - "Duplicate Logic": 0, - "Orphaned Logic": 3, - "Instructional Code Examples": 0, - "Architectural Diagrams (Mermaid/PlantUML)": 0, - "Structured Literature Headers": 0, - "Hyperlinked Literature References": 0, - "High-Entropy / Obfuscated Logic": 0, - "Safety & Constraint Bypasses": 0, - "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 2, - "Global Environment Mutation": 0, - "Commented-Out Executable Logic": 0, - "Low-Level Bitwise / Cryptographic Math": 0, - "Non-Standard / Steganographic Imports": 0, - "Non-Standard Unicode / Homoglyphs": 0, - "Embedded Credentials & Keys": 0, - "Sec Extension Mismatch": 0, - "Sec Entropy": 0, - "Sec Tainted Injection": 3, - "Prompt Injection": 0, - "Agentic Rce": 0, - "Invisible Unicode Payload Smuggling": 0, - "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 - }, - "8. Dependency Network": { - "Direct Upstream (Fragility)": 4, - "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 - }, - "9. Extracted Dependencies": [ - "@BANK_DBRMLIB@", - "@BANK_LOADLIB@", - "@BANK_PREFIX@.CUSTOMER", - "@DB2_HLQ@.SDSNLOAD" - ] - }, - "jcl/cics-banking-sample-application-cbsa/BATCH.jcl": { + "jcl/cics-banking-sample-application-cbsa/CRDTAGY4.jcl": { "1. Artifact Identity": { - "Filename": "BATCH.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/BATCH.jcl", + "Filename": "CRDTAGY4.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/CRDTAGY4.jcl", "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Neutral / No Indentation", @@ -799780,9 +799593,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -193.46, - "Y": 52.39, - "Z": -2438.15 + "X": -57.94, + "Y": 44.26, + "Z": -604.47 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -799791,10 +799604,10 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 57, - "Coding LOC": 52, + "Total LOC": 8, + "Coding LOC": 3, "Documentation LOC": 4, - "Structural Magnitude": 8.64, + "Structural Magnitude": 1.16, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -799804,9 +799617,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "73.11%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.39%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "73.11%", + "Testing Exposure": "2.31%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -799819,37 +799632,27 @@ }, "5. Function Analysis": [ { - "Function Name": "COBOL", - "Structural Impact": 4.4, - "Lines of Code (LOC)": 36, - "Control Flow Branches": 0, - "Input Parameters": 6, - "Control Flow Ratio": "0.0%", - "Start Line": 5, - "End Line": 40 - }, - { - "Function Name": "LKED", - "Structural Impact": 3.2, - "Lines of Code (LOC)": 15, + "Function Name": "Unknown_Block", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, - "Input Parameters": 5, + "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 42, - "End Line": 56 + "Start Line": 7, + "End Line": 7 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 42, - "Function Parameters": 3, - "Function/Method Declarations": 2, + "Sequential Logic Declarations": 1, + "Function Parameters": 0, + "Function/Method Declarations": 1, "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 1, + "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 43, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -799864,7 +799667,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -799906,15 +799709,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 50, + "Core Var Decl": 2, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 50, + "Design Upper Case": 2, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -799931,38 +799734,27 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 2, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 13, + "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, + "Total Upstream (Absolute Fragility)": 1, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "&CBSAHLQ..ADATA(&MEMBER)", - "&CBSAHLQ..COBOL(&MEMBER)", - "&CBSAHLQ..DEBUG(&MEMBER)", - "&CBSAHLQ..DSECT", - "&CBSAHLQ..LKED(&MEMBER)", - "&CBSAHLQ..LOADLIB", - "&CICSHLQ..SDFHCOB", - "&CICSHLQ..SDFHLOAD", - "&CICSHLQ..SDFHSAMP", - "&COBOLHLQ..SIGYCOMP", - "&DB2HLQ..SDSNLOAD", - "&LEHLQ..SCEELKED", - "&LEHLQ..SCEESAMP" + "CBSA.CICSBSA.BUILDJCL", + "DEFAULT" ] }, - "jcl/cics-banking-sample-application-cbsa/BNK1ACC.jcl": { + "jcl/cics-banking-sample-application-cbsa/CRDTAGY5.jcl": { "1. Artifact Identity": { - "Filename": "BNK1ACC.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/BNK1ACC.jcl", + "Filename": "CRDTAGY5.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/CRDTAGY5.jcl", "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Neutral / No Indentation", @@ -799972,9 +799764,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 1283.4, - "Y": 71.83, - "Z": -1249.06 + "X": -547.15, + "Y": 80.95, + "Z": -3772.75 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -799983,12 +799775,12 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 9, - "Coding LOC": 4, + "Total LOC": 8, + "Coding LOC": 3, "Documentation LOC": 4, - "Structural Magnitude": 1.18, + "Structural Magnitude": 1.16, "Control Flow Ratio": "0.0%", - "Popularity Rank": 1, + "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, @@ -799997,7 +799789,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", + "Tech Debt Exposure": "73.11%", "Testing Exposure": "2.31%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -800011,14 +799803,14 @@ }, "5. Function Analysis": [ { - "Function Name": "BNK1ACC", + "Function Name": "Unknown_Block", "Structural Impact": 1.1, - "Lines of Code (LOC)": 2, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", "Start Line": 7, - "End Line": 8 + "End Line": 7 } ], "6. Contextual Mitigations & Amplifications": "None Detected", @@ -800088,15 +799880,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 4, + "Core Var Decl": 2, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 4, + "Design Upper Case": 2, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -800121,19 +799913,19 @@ }, "8. Dependency Network": { "Direct Upstream (Fragility)": 2, - "Direct Downstream (Dependency Blast Radius)": 1, + "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 1, - "Total Downstream (Absolute Dependency Blast Radius)": 1 + "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ "CBSA.CICSBSA.BUILDJCL", "DEFAULT" ] }, - "jcl/cics-banking-sample-application-cbsa/BNK1CAC.jcl": { + "jcl/cics-banking-sample-application-cbsa/CREACC.jcl": { "1. Artifact Identity": { - "Filename": "BNK1CAC.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/BNK1CAC.jcl", + "Filename": "CREACC.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/CREACC.jcl", "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Neutral / No Indentation", @@ -800143,9 +799935,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -177.42, - "Y": 87.12, - "Z": -3615.66 + "X": -671.2, + "Y": 93.84, + "Z": -1857.31 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -800157,7 +799949,7 @@ "Total LOC": 8, "Coding LOC": 3, "Documentation LOC": 4, - "Structural Magnitude": 1.16, + "Structural Magnitude": 2.16, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -800168,16 +799960,16 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "73.11%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.31%", - "API Exposure": "0.0%", + "API Exposure": "3.53%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", + "Documentation Exposure": "16.56%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -800203,7 +799995,7 @@ "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 0, + "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -800267,7 +800059,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -800294,17 +800086,17 @@ "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 1, - "Total Downstream (Absolute Dependency Blast Radius)": 0 + "Total Downstream (Absolute Dependency Blast Radius)": 1 }, "9. Extracted Dependencies": [ "CBSA.CICSBSA.BUILDJCL", "DEFAULT" ] }, - "jcl/cics-banking-sample-application-cbsa/BNK1CAM.jcl": { + "jcl/cics-banking-sample-application-cbsa/CRECUST.jcl": { "1. Artifact Identity": { - "Filename": "BNK1CAM.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/BNK1CAM.jcl", + "Filename": "CRECUST.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/CRECUST.jcl", "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Neutral / No Indentation", @@ -800314,9 +800106,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -1156.32, - "Y": 103.72, - "Z": -2145.7 + "X": 784.49, + "Y": 102.61, + "Z": -2919.13 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -800325,12 +800117,12 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 9, - "Coding LOC": 4, + "Total LOC": 8, + "Coding LOC": 3, "Documentation LOC": 4, - "Structural Magnitude": 1.18, + "Structural Magnitude": 2.16, "Control Flow Ratio": "0.0%", - "Popularity Rank": 1, + "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, @@ -800341,26 +800133,26 @@ "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.31%", - "API Exposure": "0.0%", + "API Exposure": "3.53%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", + "Documentation Exposure": "16.56%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "BNK1CAM", + "Function Name": "Unknown_Block", "Structural Impact": 1.1, - "Lines of Code (LOC)": 2, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", "Start Line": 7, - "End Line": 8 + "End Line": 7 } ], "6. Contextual Mitigations & Amplifications": "None Detected", @@ -800374,7 +800166,7 @@ "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 0, + "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -800430,11 +800222,11 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 4, + "Core Var Decl": 2, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 4, + "Design Upper Case": 2, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, @@ -800463,7 +800255,7 @@ }, "8. Dependency Network": { "Direct Upstream (Fragility)": 2, - "Direct Downstream (Dependency Blast Radius)": 1, + "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 1, "Total Downstream (Absolute Dependency Blast Radius)": 1 }, @@ -800472,22 +800264,22 @@ "DEFAULT" ] }, - "jcl/cics-banking-sample-application-cbsa/BNK1CCA.jcl": { + "jcl/cics-banking-sample-application-cbsa/CREDB00.jcl": { "1. Artifact Identity": { - "Filename": "BNK1CCA.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/BNK1CCA.jcl", + "Filename": "CREDB00.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/CREDB00.jcl", "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, "Folder Dominant Lang": "jcl", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 1574.74, - "Y": 48.42, - "Z": -1297.6 + "X": 1150.86, + "Y": 87.81, + "Z": -2635.12 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -800496,10 +800288,10 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 8, - "Coding LOC": 3, + "Total LOC": 24, + "Coding LOC": 19, "Documentation LOC": 4, - "Structural Magnitude": 1.16, + "Structural Magnitude": 2.18, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -800509,9 +800301,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "0.0%", + "Error & Exception Exposure": "76.85%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.31%", + "Testing Exposure": "2.33%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -800524,27 +800316,27 @@ }, "5. Function Analysis": [ { - "Function Name": "Unknown_Block", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, + "Function Name": "GRANT", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 15, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 7, - "End Line": 7 + "Start Line": 9, + "End Line": 23 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 1, + "Sequential Logic Declarations": 6, "Function Parameters": 0, "Function/Method Declarations": 1, - "Class/Entity Declarations": 0, + "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, + "High-Risk Execution Commands": 1, + "I/O and Network Boundaries": 7, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -800553,13 +800345,13 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -800571,7 +800363,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 2, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -800584,7 +800376,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 6, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -800601,11 +800393,11 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 2, + "Core Var Decl": 8, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 2, + "Design Upper Case": 8, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, @@ -800617,7 +800409,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, + "Dynamic Code Execution (Eval/Exec)": 2, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -800626,7 +800418,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 0, + "Sec Tainted Injection": 1, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -800635,18 +800427,18 @@ "8. Dependency Network": { "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 1, + "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "CBSA.CICSBSA.BUILDJCL", - "DEFAULT" + "DSNC10.PROCLIB", + "DSNC10.SDSNLOAD" ] }, - "jcl/cics-banking-sample-application-cbsa/BNK1CCM.jcl": { + "jcl/cics-banking-sample-application-cbsa/CREDB2L.jcl": { "1. Artifact Identity": { - "Filename": "BNK1CCM.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/BNK1CCM.jcl", + "Filename": "CREDB2L.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/CREDB2L.jcl", "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Neutral / No Indentation", @@ -800656,9 +800448,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 1381.15, - "Y": 71.87, - "Z": -3154.8 + "X": -246.85, + "Y": 110.85, + "Z": -2016.74 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -800667,10 +800459,10 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 9, - "Coding LOC": 4, - "Documentation LOC": 4, - "Structural Magnitude": 1.18, + "Total LOC": 27, + "Coding LOC": 11, + "Documentation LOC": 15, + "Structural Magnitude": 4.72, "Control Flow Ratio": "0.0%", "Popularity Rank": 1, "Raw Churn Frequency": 0.0, @@ -800682,43 +800474,53 @@ "Cognitive Load Exposure": "0.0%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.31%", - "API Exposure": "0.0%", + "Testing Exposure": "2.33%", + "API Exposure": "5.59%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "0.0%", + "Commented Logic Exposure": "23.15%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", + "Documentation Exposure": "17.3%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "BNK1CCM", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 2, + "Function Name": "STEP10", + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 7, - "End Line": 8 + "Start Line": 12, + "End Line": 17 + }, + { + "Function Name": "STEP20", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 21, + "End Line": 25 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 1, + "Sequential Logic Declarations": 5, "Function Parameters": 0, - "Function/Method Declarations": 1, + "Function/Method Declarations": 2, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 0, + "I/O and Network Boundaries": 5, + "Exposed API / Public Exports": 2, "State Mutations / Variable Reassignments": 0, - "Commented-out Code (Dead Logic)": 0, + "Commented-out Code (Dead Logic)": 1, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, @@ -800730,7 +800532,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -800772,11 +800574,11 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 4, + "Core Var Decl": 9, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 4, + "Design Upper Case": 9, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, @@ -800806,30 +800608,30 @@ "8. Dependency Network": { "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 1, - "Total Upstream (Absolute Fragility)": 1, + "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 1 }, "9. Extracted Dependencies": [ - "CBSA.CICSBSA.BUILDJCL", - "DEFAULT" + "&HLQ..DB2.JCL.INSTALL", + "&HLQ..DB2.JCL.INSTALL(EMPTY)" ] }, - "jcl/cics-banking-sample-application-cbsa/BNK1CCS.jcl": { + "jcl/cics-banking-sample-application-cbsa/CREI101.jcl": { "1. Artifact Identity": { - "Filename": "BNK1CCS.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/BNK1CCS.jcl", + "Filename": "CREI101.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/CREI101.jcl", "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, "Folder Dominant Lang": "jcl", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -1186.93, - "Y": 91.82, - "Z": -1930.31 + "X": -60.63, + "Y": 80.96, + "Z": -1557.9 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -800838,10 +800640,10 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 8, - "Coding LOC": 3, + "Total LOC": 24, + "Coding LOC": 19, "Documentation LOC": 4, - "Structural Magnitude": 1.16, + "Structural Magnitude": 2.18, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -800851,9 +800653,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "0.0%", + "Error & Exception Exposure": "76.85%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.31%", + "Testing Exposure": "2.33%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -800866,27 +800668,27 @@ }, "5. Function Analysis": [ { - "Function Name": "Unknown_Block", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, + "Function Name": "GRANT", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 15, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 7, - "End Line": 7 + "Start Line": 9, + "End Line": 23 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 1, + "Sequential Logic Declarations": 6, "Function Parameters": 0, "Function/Method Declarations": 1, - "Class/Entity Declarations": 0, + "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, + "High-Risk Execution Commands": 1, + "I/O and Network Boundaries": 7, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -800895,13 +800697,13 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -800913,7 +800715,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 2, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -800926,7 +800728,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 6, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -800943,11 +800745,11 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 2, + "Core Var Decl": 8, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 2, + "Design Upper Case": 8, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, @@ -800959,7 +800761,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, + "Dynamic Code Execution (Eval/Exec)": 2, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -800968,7 +800770,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 0, + "Sec Tainted Injection": 1, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -800977,30 +800779,30 @@ "8. Dependency Network": { "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 1, + "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "CBSA.CICSBSA.BUILDJCL", - "DEFAULT" + "DSNC10.PROCLIB", + "DSNC10.SDSNLOAD" ] }, - "jcl/cics-banking-sample-application-cbsa/BNK1CDM.jcl": { + "jcl/cics-banking-sample-application-cbsa/CREI201.jcl": { "1. Artifact Identity": { - "Filename": "BNK1CDM.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/BNK1CDM.jcl", + "Filename": "CREI201.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/CREI201.jcl", "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, "Folder Dominant Lang": "jcl", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 123.04, - "Y": 67.75, - "Z": -739.12 + "X": -42.32, + "Y": 55.22, + "Z": -3282.06 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -801009,12 +800811,12 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 9, - "Coding LOC": 4, + "Total LOC": 24, + "Coding LOC": 19, "Documentation LOC": 4, - "Structural Magnitude": 1.18, + "Structural Magnitude": 2.18, "Control Flow Ratio": "0.0%", - "Popularity Rank": 1, + "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, @@ -801022,9 +800824,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.31%", + "Error & Exception Exposure": "76.85%", + "Tech Debt Exposure": "73.11%", + "Testing Exposure": "2.33%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -801037,27 +800839,27 @@ }, "5. Function Analysis": [ { - "Function Name": "BNK1CDM", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 2, + "Function Name": "GRANT", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 15, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 7, - "End Line": 8 + "Start Line": 9, + "End Line": 23 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 1, + "Sequential Logic Declarations": 6, "Function Parameters": 0, "Function/Method Declarations": 1, - "Class/Entity Declarations": 0, + "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, + "High-Risk Execution Commands": 1, + "I/O and Network Boundaries": 7, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -801066,13 +800868,13 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -801084,7 +800886,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 2, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -801097,7 +800899,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 6, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -801114,15 +800916,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 4, + "Core Var Decl": 8, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 4, + "Design Upper Case": 8, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -801130,7 +800932,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, + "Dynamic Code Execution (Eval/Exec)": 2, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -801139,7 +800941,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 0, + "Sec Tainted Injection": 1, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -801147,31 +800949,31 @@ }, "8. Dependency Network": { "Direct Upstream (Fragility)": 2, - "Direct Downstream (Dependency Blast Radius)": 1, - "Total Upstream (Absolute Fragility)": 1, - "Total Downstream (Absolute Dependency Blast Radius)": 1 + "Direct Downstream (Dependency Blast Radius)": 0, + "Total Upstream (Absolute Fragility)": 0, + "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "CBSA.CICSBSA.BUILDJCL", - "DEFAULT" + "DSNC10.PROCLIB", + "DSNC10.SDSNLOAD" ] }, - "jcl/cics-banking-sample-application-cbsa/BNK1CRA.jcl": { + "jcl/cics-banking-sample-application-cbsa/CREI301.jcl": { "1. Artifact Identity": { - "Filename": "BNK1CRA.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/BNK1CRA.jcl", + "Filename": "CREI301.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/CREI301.jcl", "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, "Folder Dominant Lang": "jcl", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 1195.48, - "Y": 62.83, - "Z": -3591.7 + "X": 1169.24, + "Y": 46.66, + "Z": -1983.58 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -801180,10 +800982,10 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 8, - "Coding LOC": 3, + "Total LOC": 24, + "Coding LOC": 19, "Documentation LOC": 4, - "Structural Magnitude": 1.16, + "Structural Magnitude": 2.18, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -801193,9 +800995,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "0.0%", + "Error & Exception Exposure": "76.85%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.31%", + "Testing Exposure": "2.33%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -801208,27 +801010,27 @@ }, "5. Function Analysis": [ { - "Function Name": "Unknown_Block", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, + "Function Name": "GRANT", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 15, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 7, - "End Line": 7 + "Start Line": 9, + "End Line": 23 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 1, + "Sequential Logic Declarations": 6, "Function Parameters": 0, "Function/Method Declarations": 1, - "Class/Entity Declarations": 0, + "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, + "High-Risk Execution Commands": 1, + "I/O and Network Boundaries": 7, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -801237,13 +801039,13 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -801255,7 +801057,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 2, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -801268,7 +801070,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 4, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -801285,11 +801087,11 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 2, + "Core Var Decl": 8, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 2, + "Design Upper Case": 8, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, @@ -801301,7 +801103,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, + "Dynamic Code Execution (Eval/Exec)": 2, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -801310,7 +801112,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 0, + "Sec Tainted Injection": 1, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -801319,18 +801121,18 @@ "8. Dependency Network": { "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 1, + "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "CBSA.CICSBSA.BUILDJCL", - "DEFAULT" + "DSNC10.PROCLIB", + "DSNC10.SDSNLOAD" ] }, - "jcl/cics-banking-sample-application-cbsa/BNK1DAC.jcl": { + "jcl/cics-banking-sample-application-cbsa/CREL001.jcl": { "1. Artifact Identity": { - "Filename": "BNK1DAC.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/BNK1DAC.jcl", + "Filename": "CREL001.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/CREL001.jcl", "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Neutral / No Indentation", @@ -801340,9 +801142,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 499.16, - "Y": 90.74, - "Z": -647.8 + "X": 588.86, + "Y": 100.45, + "Z": -2673.81 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -801351,12 +801153,12 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 8, - "Coding LOC": 3, - "Documentation LOC": 4, - "Structural Magnitude": 1.16, + "Total LOC": 26, + "Coding LOC": 11, + "Documentation LOC": 14, + "Structural Magnitude": 4.72, "Control Flow Ratio": "0.0%", - "Popularity Rank": 0, + "Popularity Rank": 1, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, @@ -801365,44 +801167,54 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.31%", - "API Exposure": "0.0%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "2.33%", + "API Exposure": "5.59%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "0.0%", + "Commented Logic Exposure": "23.15%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", + "Documentation Exposure": "17.99%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "Unknown_Block", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, + "Function Name": "STEP10", + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 7, - "End Line": 7 + "Start Line": 11, + "End Line": 16 + }, + { + "Function Name": "STEP20", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 20, + "End Line": 24 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 1, + "Sequential Logic Declarations": 5, "Function Parameters": 0, - "Function/Method Declarations": 1, + "Function/Method Declarations": 2, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 0, + "I/O and Network Boundaries": 5, + "Exposed API / Public Exports": 2, "State Mutations / Variable Reassignments": 0, - "Commented-out Code (Dead Logic)": 0, + "Commented-out Code (Dead Logic)": 1, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, @@ -801414,7 +801226,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -801456,15 +801268,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 2, + "Core Var Decl": 9, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 2, + "Design Upper Case": 9, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -801489,19 +801301,19 @@ }, "8. Dependency Network": { "Direct Upstream (Fragility)": 2, - "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 1, - "Total Downstream (Absolute Dependency Blast Radius)": 0 + "Direct Downstream (Dependency Blast Radius)": 1, + "Total Upstream (Absolute Fragility)": 0, + "Total Downstream (Absolute Dependency Blast Radius)": 1 }, "9. Extracted Dependencies": [ - "CBSA.CICSBSA.BUILDJCL", - "DEFAULT" + "&HLQ..CICSBSA.BUILDJCL", + "&HLQ..CICSBSA.BUILDJCL(EMPTY)" ] }, - "jcl/cics-banking-sample-application-cbsa/BNK1DAM.jcl": { + "jcl/cics-banking-sample-application-cbsa/CREL002.jcl": { "1. Artifact Identity": { - "Filename": "BNK1DAM.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/BNK1DAM.jcl", + "Filename": "CREL002.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/CREL002.jcl", "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Neutral / No Indentation", @@ -801511,9 +801323,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -603.73, - "Y": 128.09, - "Z": -3321.24 + "X": -216.03, + "Y": 80.65, + "Z": -2972.83 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -801522,10 +801334,10 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 9, - "Coding LOC": 4, - "Documentation LOC": 4, - "Structural Magnitude": 1.18, + "Total LOC": 17, + "Coding LOC": 6, + "Documentation LOC": 10, + "Structural Magnitude": 2.42, "Control Flow Ratio": "0.0%", "Popularity Rank": 1, "Raw Churn Frequency": 0.0, @@ -801538,26 +801350,26 @@ "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.31%", - "API Exposure": "0.0%", + "API Exposure": "3.53%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "0.0%", + "Commented Logic Exposure": "23.15%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", + "Documentation Exposure": "13.01%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "BNK1DAM", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 2, + "Function Name": "STEP10", + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 7, - "End Line": 8 + "Start Line": 11, + "End Line": 16 } ], "6. Contextual Mitigations & Amplifications": "None Detected", @@ -801570,10 +801382,10 @@ "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 0, + "I/O and Network Boundaries": 1, + "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 0, - "Commented-out Code (Dead Logic)": 0, + "Commented-out Code (Dead Logic)": 1, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, @@ -801585,7 +801397,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -801627,11 +801439,11 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 4, + "Core Var Decl": 6, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 4, + "Design Upper Case": 6, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, @@ -801659,20 +801471,19 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, + "Direct Upstream (Fragility)": 1, "Direct Downstream (Dependency Blast Radius)": 1, - "Total Upstream (Absolute Fragility)": 1, + "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 1 }, "9. Extracted Dependencies": [ - "CBSA.CICSBSA.BUILDJCL", - "DEFAULT" + "&HLQ..CICSBSA.ADATA" ] }, - "jcl/cics-banking-sample-application-cbsa/BNK1DCM.jcl": { + "jcl/cics-banking-sample-application-cbsa/CREL003.jcl": { "1. Artifact Identity": { - "Filename": "BNK1DCM.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/BNK1DCM.jcl", + "Filename": "CREL003.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/CREL003.jcl", "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Neutral / No Indentation", @@ -801682,9 +801493,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 1751.61, - "Y": 82.5, - "Z": -1808.93 + "X": 1092.93, + "Y": 56.25, + "Z": -2114.71 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -801693,10 +801504,10 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 9, - "Coding LOC": 4, - "Documentation LOC": 4, - "Structural Magnitude": 1.18, + "Total LOC": 17, + "Coding LOC": 6, + "Documentation LOC": 10, + "Structural Magnitude": 2.42, "Control Flow Ratio": "0.0%", "Popularity Rank": 1, "Raw Churn Frequency": 0.0, @@ -801709,26 +801520,26 @@ "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.31%", - "API Exposure": "0.0%", + "API Exposure": "3.53%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "0.0%", + "Commented Logic Exposure": "23.15%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", + "Documentation Exposure": "13.01%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "BNK1DCM", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 2, + "Function Name": "STEP10", + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 7, - "End Line": 8 + "Start Line": 11, + "End Line": 16 } ], "6. Contextual Mitigations & Amplifications": "None Detected", @@ -801741,10 +801552,10 @@ "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 0, + "I/O and Network Boundaries": 1, + "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 0, - "Commented-out Code (Dead Logic)": 0, + "Commented-out Code (Dead Logic)": 1, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, @@ -801756,7 +801567,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -801798,11 +801609,11 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 4, + "Core Var Decl": 6, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 4, + "Design Upper Case": 6, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, @@ -801830,20 +801641,19 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, + "Direct Upstream (Fragility)": 1, "Direct Downstream (Dependency Blast Radius)": 1, - "Total Upstream (Absolute Fragility)": 1, + "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 1 }, "9. Extracted Dependencies": [ - "CBSA.CICSBSA.BUILDJCL", - "DEFAULT" + "&HLQ..CICSBSA.LOADLIB" ] }, - "jcl/cics-banking-sample-application-cbsa/BNK1DCS.jcl": { + "jcl/cics-banking-sample-application-cbsa/CREL004.jcl": { "1. Artifact Identity": { - "Filename": "BNK1DCS.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/BNK1DCS.jcl", + "Filename": "CREL004.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/CREL004.jcl", "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Neutral / No Indentation", @@ -801853,9 +801663,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -919.55, - "Y": 68.16, - "Z": -3091.96 + "X": -451.35, + "Y": 112.62, + "Z": -1617.25 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -801864,12 +801674,12 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 8, - "Coding LOC": 3, - "Documentation LOC": 4, - "Structural Magnitude": 1.16, + "Total LOC": 17, + "Coding LOC": 6, + "Documentation LOC": 10, + "Structural Magnitude": 2.42, "Control Flow Ratio": "0.0%", - "Popularity Rank": 0, + "Popularity Rank": 1, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, @@ -801878,28 +801688,28 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "73.11%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.31%", - "API Exposure": "0.0%", + "API Exposure": "3.53%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "0.0%", + "Commented Logic Exposure": "23.15%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", + "Documentation Exposure": "13.01%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "Unknown_Block", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, + "Function Name": "STEP10", + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 7, - "End Line": 7 + "Start Line": 11, + "End Line": 16 } ], "6. Contextual Mitigations & Amplifications": "None Detected", @@ -801912,10 +801722,10 @@ "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 0, + "I/O and Network Boundaries": 1, + "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 0, - "Commented-out Code (Dead Logic)": 0, + "Commented-out Code (Dead Logic)": 1, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, @@ -801927,7 +801737,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -801969,15 +801779,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 2, + "Core Var Decl": 6, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 2, + "Design Upper Case": 6, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -802001,20 +801811,19 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, - "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 1, - "Total Downstream (Absolute Dependency Blast Radius)": 0 + "Direct Upstream (Fragility)": 1, + "Direct Downstream (Dependency Blast Radius)": 1, + "Total Upstream (Absolute Fragility)": 0, + "Total Downstream (Absolute Dependency Blast Radius)": 1 }, "9. Extracted Dependencies": [ - "CBSA.CICSBSA.BUILDJCL", - "DEFAULT" + "&HLQ..CICSBSA.DBRM" ] }, - "jcl/cics-banking-sample-application-cbsa/BNK1MAI.jcl": { + "jcl/cics-banking-sample-application-cbsa/CREL005.jcl": { "1. Artifact Identity": { - "Filename": "BNK1MAI.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/BNK1MAI.jcl", + "Filename": "CREL005.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/CREL005.jcl", "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Neutral / No Indentation", @@ -802024,9 +801833,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -991.35, - "Y": 71.62, - "Z": -1489.99 + "X": 435.07, + "Y": 116.14, + "Z": -3235.9 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -802035,10 +801844,10 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 9, - "Coding LOC": 4, - "Documentation LOC": 4, - "Structural Magnitude": 1.18, + "Total LOC": 17, + "Coding LOC": 6, + "Documentation LOC": 10, + "Structural Magnitude": 2.42, "Control Flow Ratio": "0.0%", "Popularity Rank": 1, "Raw Churn Frequency": 0.0, @@ -802051,26 +801860,26 @@ "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.31%", - "API Exposure": "0.0%", + "API Exposure": "3.53%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "0.0%", + "Commented Logic Exposure": "23.15%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", + "Documentation Exposure": "13.01%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "BNK1MAI", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 2, + "Function Name": "STEP10", + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 7, - "End Line": 8 + "Start Line": 11, + "End Line": 16 } ], "6. Contextual Mitigations & Amplifications": "None Detected", @@ -802083,10 +801892,10 @@ "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 0, + "I/O and Network Boundaries": 1, + "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 0, - "Commented-out Code (Dead Logic)": 0, + "Commented-out Code (Dead Logic)": 1, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, @@ -802098,7 +801907,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -802140,11 +801949,11 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 4, + "Core Var Decl": 6, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 4, + "Design Upper Case": 6, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, @@ -802172,20 +801981,19 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, + "Direct Upstream (Fragility)": 1, "Direct Downstream (Dependency Blast Radius)": 1, - "Total Upstream (Absolute Fragility)": 1, + "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 1 }, "9. Extracted Dependencies": [ - "CBSA.CICSBSA.BUILDJCL", - "DEFAULT" + "&HLQ..CICSBSA.LKED" ] }, - "jcl/cics-banking-sample-application-cbsa/BNK1TFM.jcl": { + "jcl/cics-banking-sample-application-cbsa/CREL006.jcl": { "1. Artifact Identity": { - "Filename": "BNK1TFM.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/BNK1TFM.jcl", + "Filename": "CREL006.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/CREL006.jcl", "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Neutral / No Indentation", @@ -802195,9 +802003,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 720.33, - "Y": 113.75, - "Z": -3565.09 + "X": 466.79, + "Y": 36.17, + "Z": -1638.64 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -802206,10 +802014,10 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 9, - "Coding LOC": 4, - "Documentation LOC": 4, - "Structural Magnitude": 1.18, + "Total LOC": 26, + "Coding LOC": 11, + "Documentation LOC": 14, + "Structural Magnitude": 4.72, "Control Flow Ratio": "0.0%", "Popularity Rank": 1, "Raw Churn Frequency": 0.0, @@ -802221,43 +802029,53 @@ "Cognitive Load Exposure": "0.0%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.31%", - "API Exposure": "0.0%", + "Testing Exposure": "2.33%", + "API Exposure": "5.59%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "0.0%", + "Commented Logic Exposure": "23.15%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", + "Documentation Exposure": "17.99%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "BNK1TFM", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 2, + "Function Name": "STEP10", + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 7, - "End Line": 8 + "Start Line": 11, + "End Line": 16 + }, + { + "Function Name": "STEP20", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 20, + "End Line": 24 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 1, + "Sequential Logic Declarations": 5, "Function Parameters": 0, - "Function/Method Declarations": 1, + "Function/Method Declarations": 2, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 0, + "I/O and Network Boundaries": 5, + "Exposed API / Public Exports": 2, "State Mutations / Variable Reassignments": 0, - "Commented-out Code (Dead Logic)": 0, + "Commented-out Code (Dead Logic)": 1, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, @@ -802269,7 +802087,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -802311,11 +802129,11 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 4, + "Core Var Decl": 9, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 4, + "Design Upper Case": 9, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, @@ -802345,18 +802163,18 @@ "8. Dependency Network": { "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 1, - "Total Upstream (Absolute Fragility)": 1, + "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 1 }, "9. Extracted Dependencies": [ - "CBSA.CICSBSA.BUILDJCL", - "DEFAULT" + "&HLQ..CICSBSA.BMS", + "&HLQ..CICSBSA.BMS(EMPTY)" ] }, - "jcl/cics-banking-sample-application-cbsa/BNK1TFN.jcl": { + "jcl/cics-banking-sample-application-cbsa/CREL007.jcl": { "1. Artifact Identity": { - "Filename": "BNK1TFN.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/BNK1TFN.jcl", + "Filename": "CREL007.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/CREL007.jcl", "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Neutral / No Indentation", @@ -802366,9 +802184,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 1846.14, - "Y": 28.31, - "Z": -2411.0 + "X": 715.31, + "Y": 46.2, + "Z": -1657.73 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -802377,12 +802195,12 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 8, - "Coding LOC": 3, - "Documentation LOC": 4, - "Structural Magnitude": 1.16, + "Total LOC": 17, + "Coding LOC": 6, + "Documentation LOC": 10, + "Structural Magnitude": 2.42, "Control Flow Ratio": "0.0%", - "Popularity Rank": 0, + "Popularity Rank": 1, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, @@ -802391,28 +802209,28 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "73.11%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.31%", - "API Exposure": "0.0%", + "API Exposure": "3.53%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "0.0%", + "Commented Logic Exposure": "23.15%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", + "Documentation Exposure": "13.01%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "Unknown_Block", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, + "Function Name": "STEP10", + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 7, - "End Line": 7 + "Start Line": 11, + "End Line": 16 } ], "6. Contextual Mitigations & Amplifications": "None Detected", @@ -802425,10 +802243,10 @@ "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 0, + "I/O and Network Boundaries": 1, + "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 0, - "Commented-out Code (Dead Logic)": 0, + "Commented-out Code (Dead Logic)": 1, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, @@ -802440,7 +802258,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -802482,15 +802300,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 2, + "Core Var Decl": 6, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 2, + "Design Upper Case": 6, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -802514,20 +802332,19 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, - "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 1, - "Total Downstream (Absolute Dependency Blast Radius)": 0 + "Direct Upstream (Fragility)": 1, + "Direct Downstream (Dependency Blast Radius)": 1, + "Total Upstream (Absolute Fragility)": 0, + "Total Downstream (Absolute Dependency Blast Radius)": 1 }, "9. Extracted Dependencies": [ - "CBSA.CICSBSA.BUILDJCL", - "DEFAULT" + "&HLQ..CICSBSA.DEBUG" ] }, - "jcl/cics-banking-sample-application-cbsa/BNK1UAC.jcl": { + "jcl/cics-banking-sample-application-cbsa/CREL008.jcl": { "1. Artifact Identity": { - "Filename": "BNK1UAC.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/BNK1UAC.jcl", + "Filename": "CREL008.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/CREL008.jcl", "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Neutral / No Indentation", @@ -802537,9 +802354,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -794.73, - "Y": 57.4, - "Z": -1229.29 + "X": -543.32, + "Y": 98.52, + "Z": -2681.46 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -802548,12 +802365,12 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 8, - "Coding LOC": 3, - "Documentation LOC": 4, - "Structural Magnitude": 1.16, + "Total LOC": 17, + "Coding LOC": 6, + "Documentation LOC": 10, + "Structural Magnitude": 2.42, "Control Flow Ratio": "0.0%", - "Popularity Rank": 0, + "Popularity Rank": 1, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, @@ -802562,28 +802379,28 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "73.11%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.31%", - "API Exposure": "0.0%", + "API Exposure": "3.53%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "0.0%", + "Commented Logic Exposure": "23.15%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", + "Documentation Exposure": "13.01%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "Unknown_Block", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, + "Function Name": "STEP10", + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 7, - "End Line": 7 + "Start Line": 11, + "End Line": 16 } ], "6. Contextual Mitigations & Amplifications": "None Detected", @@ -802596,10 +802413,10 @@ "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 0, + "I/O and Network Boundaries": 1, + "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 0, - "Commented-out Code (Dead Logic)": 0, + "Commented-out Code (Dead Logic)": 1, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, @@ -802611,7 +802428,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -802653,15 +802470,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 2, + "Core Var Decl": 6, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 2, + "Design Upper Case": 6, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -802685,20 +802502,19 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, - "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 1, - "Total Downstream (Absolute Dependency Blast Radius)": 0 + "Direct Upstream (Fragility)": 1, + "Direct Downstream (Dependency Blast Radius)": 1, + "Total Upstream (Absolute Fragility)": 0, + "Total Downstream (Absolute Dependency Blast Radius)": 1 }, "9. Extracted Dependencies": [ - "CBSA.CICSBSA.BUILDJCL", - "DEFAULT" + "&HLQ..CICSBSA.CBSAMOD" ] }, - "jcl/cics-banking-sample-application-cbsa/BNK1UAM.jcl": { + "jcl/cics-banking-sample-application-cbsa/CREL009.jcl": { "1. Artifact Identity": { - "Filename": "BNK1UAM.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/BNK1UAM.jcl", + "Filename": "CREL009.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/CREL009.jcl", "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Neutral / No Indentation", @@ -802708,9 +802524,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 992.49, - "Y": 22.86, - "Z": -768.49 + "X": -304.12, + "Y": 127.88, + "Z": -2457.52 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -802719,10 +802535,10 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 9, - "Coding LOC": 4, - "Documentation LOC": 4, - "Structural Magnitude": 1.18, + "Total LOC": 26, + "Coding LOC": 11, + "Documentation LOC": 14, + "Structural Magnitude": 4.72, "Control Flow Ratio": "0.0%", "Popularity Rank": 1, "Raw Churn Frequency": 0.0, @@ -802734,43 +802550,53 @@ "Cognitive Load Exposure": "0.0%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.31%", - "API Exposure": "0.0%", + "Testing Exposure": "2.33%", + "API Exposure": "5.59%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "0.0%", + "Commented Logic Exposure": "23.15%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", + "Documentation Exposure": "17.99%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "BNK1UAM", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 2, + "Function Name": "STEP10", + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 7, - "End Line": 8 + "Start Line": 11, + "End Line": 16 + }, + { + "Function Name": "STEP20", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 20, + "End Line": 24 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 1, + "Sequential Logic Declarations": 5, "Function Parameters": 0, - "Function/Method Declarations": 1, + "Function/Method Declarations": 2, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 0, + "I/O and Network Boundaries": 5, + "Exposed API / Public Exports": 2, "State Mutations / Variable Reassignments": 0, - "Commented-out Code (Dead Logic)": 0, + "Commented-out Code (Dead Logic)": 1, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, @@ -802782,7 +802608,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -802824,11 +802650,11 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 4, + "Core Var Decl": 9, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 4, + "Design Upper Case": 9, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, @@ -802858,18 +802684,18 @@ "8. Dependency Network": { "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 1, - "Total Upstream (Absolute Fragility)": 1, + "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 1 }, "9. Extracted Dependencies": [ - "CBSA.CICSBSA.BUILDJCL", - "DEFAULT" + "&HLQ..CICSBSA.COBOL", + "&HLQ..CICSBSA.COBOL(EMPTY)" ] }, - "jcl/cics-banking-sample-application-cbsa/BNKMENU.jcl": { + "jcl/cics-banking-sample-application-cbsa/CREL010.jcl": { "1. Artifact Identity": { - "Filename": "BNKMENU.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/BNKMENU.jcl", + "Filename": "CREL010.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/CREL010.jcl", "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Neutral / No Indentation", @@ -802879,9 +802705,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 360.94, - "Y": 79.59, - "Z": -3797.0 + "X": 985.36, + "Y": 70.7, + "Z": -2411.44 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -802890,12 +802716,12 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 8, - "Coding LOC": 3, - "Documentation LOC": 4, - "Structural Magnitude": 1.16, + "Total LOC": 26, + "Coding LOC": 11, + "Documentation LOC": 14, + "Structural Magnitude": 4.72, "Control Flow Ratio": "0.0%", - "Popularity Rank": 0, + "Popularity Rank": 1, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, @@ -802904,44 +802730,54 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.31%", - "API Exposure": "0.0%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "2.33%", + "API Exposure": "5.59%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "0.0%", + "Commented Logic Exposure": "23.15%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", + "Documentation Exposure": "17.99%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "Unknown_Block", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, + "Function Name": "STEP10", + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 7, - "End Line": 7 + "Start Line": 11, + "End Line": 16 + }, + { + "Function Name": "STEP20", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 20, + "End Line": 24 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 1, + "Sequential Logic Declarations": 5, "Function Parameters": 0, - "Function/Method Declarations": 1, + "Function/Method Declarations": 2, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 0, + "I/O and Network Boundaries": 5, + "Exposed API / Public Exports": 2, "State Mutations / Variable Reassignments": 0, - "Commented-out Code (Dead Logic)": 0, + "Commented-out Code (Dead Logic)": 1, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, @@ -802953,7 +802789,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -802995,15 +802831,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 2, + "Core Var Decl": 9, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 2, + "Design Upper Case": 9, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -803028,31 +802864,31 @@ }, "8. Dependency Network": { "Direct Upstream (Fragility)": 2, - "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 1, - "Total Downstream (Absolute Dependency Blast Radius)": 0 + "Direct Downstream (Dependency Blast Radius)": 1, + "Total Upstream (Absolute Fragility)": 0, + "Total Downstream (Absolute Dependency Blast Radius)": 1 }, "9. Extracted Dependencies": [ - "CBSA.CICSBSA.BUILDJCL", - "DEFAULT" + "&HLQ..CICSBSA.DSECT", + "&HLQ..CICSBSA.DSECT(EMPTY)" ] }, - "jcl/cics-banking-sample-application-cbsa/BTCHSQL.jcl": { + "jcl/cics-banking-sample-application-cbsa/CREL011.jcl": { "1. Artifact Identity": { - "Filename": "BTCHSQL.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/BTCHSQL.jcl", + "Filename": "CREL011.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/CREL011.jcl", "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, "Folder Dominant Lang": "jcl", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 661.38, - "Y": 85.57, - "Z": -3199.48 + "X": -88.51, + "Y": 44.48, + "Z": -1834.54 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -803061,12 +802897,12 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 22, - "Coding LOC": 17, - "Documentation LOC": 4, - "Structural Magnitude": 1.94, + "Total LOC": 26, + "Coding LOC": 11, + "Documentation LOC": 14, + "Structural Magnitude": 4.72, "Control Flow Ratio": "0.0%", - "Popularity Rank": 0, + "Popularity Rank": 1, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, @@ -803074,45 +802910,55 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", - "Tech Debt Exposure": "73.11%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.33%", - "API Exposure": "0.0%", + "API Exposure": "5.59%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "0.0%", + "Commented Logic Exposure": "23.15%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", + "Documentation Exposure": "17.99%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "GRANT", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 13, + "Function Name": "STEP10", + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 9, - "End Line": 21 + "Start Line": 11, + "End Line": 16 + }, + { + "Function Name": "STEP20", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 20, + "End Line": 24 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 6, + "Sequential Logic Declarations": 5, "Function Parameters": 0, - "Function/Method Declarations": 1, - "Class/Entity Declarations": 1, + "Function/Method Declarations": 2, + "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 7, - "Exposed API / Public Exports": 0, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 5, + "Exposed API / Public Exports": 2, "State Mutations / Variable Reassignments": 0, - "Commented-out Code (Dead Logic)": 0, + "Commented-out Code (Dead Logic)": 1, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, @@ -803136,7 +802982,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 2, + "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -803149,7 +802995,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 4, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -803166,15 +803012,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 8, + "Core Var Decl": 9, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 8, + "Design Upper Case": 9, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -803182,7 +803028,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 2, + "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -803191,7 +803037,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -803199,19 +803045,19 @@ }, "8. Dependency Network": { "Direct Upstream (Fragility)": 2, - "Direct Downstream (Dependency Blast Radius)": 0, + "Direct Downstream (Dependency Blast Radius)": 1, "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 + "Total Downstream (Absolute Dependency Blast Radius)": 1 }, "9. Extracted Dependencies": [ - "DSNC10.PROCLIB", - "DSNC10.SDSNLOAD" + "&HLQ..CICSBSA.REORG", + "&HLQ..CICSBSA.REORG(EMPTY)" ] }, - "jcl/cics-banking-sample-application-cbsa/CBSACSD.jcl": { + "jcl/cics-banking-sample-application-cbsa/CRELIBS.jcl": { "1. Artifact Identity": { - "Filename": "CBSACSD.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/CBSACSD.jcl", + "Filename": "CRELIBS.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/CRELIBS.jcl", "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Neutral / No Indentation", @@ -803221,9 +803067,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 590.81, - "Y": 84.6, - "Z": -799.42 + "X": -440.0, + "Y": 85.04, + "Z": -2105.85 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -803232,10 +803078,10 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 24, - "Coding LOC": 10, - "Documentation LOC": 13, - "Structural Magnitude": 1.6, + "Total LOC": 21, + "Coding LOC": 16, + "Documentation LOC": 4, + "Structural Magnitude": 2.92, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -803245,12 +803091,12 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "64.57%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.33%", + "Testing Exposure": "2.32%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", + "State Flux Exposure": "16.8%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", @@ -803260,42 +803106,42 @@ }, "5. Function Analysis": [ { - "Function Name": "DFHCSDUP", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 7, + "Function Name": "IEFBR14", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 13, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 17, - "End Line": 23 + "Start Line": 8, + "End Line": 20 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 6, + "Sequential Logic Declarations": 13, "Function Parameters": 0, "Function/Method Declarations": 1, "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 10, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 0, + "State Mutations / Variable Reassignments": 1, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 12, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -803307,7 +803153,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 2, + "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -803337,11 +803183,11 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 9, + "Core Var Decl": 15, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 9, + "Design Upper Case": 15, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, @@ -803362,40 +803208,50 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 3, + "Direct Upstream (Fragility)": 13, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, + "Total Upstream (Absolute Fragility)": 12, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "@CBSA_INSTALL@(BANK)", - "@CICS_PREFIX@.SDFHLOAD", - "@CSD_PREFIX@.DFHCSD" + "CBSA.JCL.INSTALL", + "CREDB2L", + "CREL001", + "CREL002", + "CREL003", + "CREL004", + "CREL005", + "CREL006", + "CREL007", + "CREL008", + "CREL009", + "CREL010", + "CREL011" ] }, - "jcl/cics-banking-sample-application-cbsa/CICS.jcl": { + "jcl/cics-banking-sample-application-cbsa/CRESG01.jcl": { "1. Artifact Identity": { - "Filename": "CICS.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/CICS.jcl", + "Filename": "CRESG01.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/CRESG01.jcl", "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, "Folder Dominant Lang": "jcl", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 577.65, - "Y": 58.05, - "Z": -1824.65 + "X": 725.53, + "Y": 47.35, + "Z": -1122.6 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -803404,10 +803260,10 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 59, - "Coding LOC": 53, - "Documentation LOC": 5, - "Structural Magnitude": 8.66, + "Total LOC": 22, + "Coding LOC": 17, + "Documentation LOC": 4, + "Structural Magnitude": 1.94, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -803417,9 +803273,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "72.84%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.39%", + "Error & Exception Exposure": "76.85%", + "Tech Debt Exposure": "73.11%", + "Testing Exposure": "2.33%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -803432,37 +803288,27 @@ }, "5. Function Analysis": [ { - "Function Name": "COBOL", - "Structural Impact": 4.4, - "Lines of Code (LOC)": 36, - "Control Flow Branches": 0, - "Input Parameters": 6, - "Control Flow Ratio": "0.0%", - "Start Line": 5, - "End Line": 40 - }, - { - "Function Name": "LKED", - "Structural Impact": 3.2, - "Lines of Code (LOC)": 16, + "Function Name": "GRANT", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 13, "Control Flow Branches": 0, - "Input Parameters": 5, + "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 43, - "End Line": 58 + "Start Line": 9, + "End Line": 21 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 43, - "Function Parameters": 3, - "Function/Method Declarations": 2, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 1, + "Sequential Logic Declarations": 6, + "Function Parameters": 0, + "Function/Method Declarations": 1, + "Class/Entity Declarations": 1, + "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 43, + "I/O and Network Boundaries": 7, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -803471,7 +803317,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -803489,7 +803335,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 2, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -803502,7 +803348,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 4, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -803519,15 +803365,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 50, + "Core Var Decl": 8, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 50, + "Design Upper Case": 8, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -803535,7 +803381,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, + "Dynamic Code Execution (Eval/Exec)": 2, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -803544,51 +803390,39 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 2, + "Sec Tainted Injection": 1, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 13, + "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "&CBSAHLQ..ADATA(&MEMBER)", - "&CBSAHLQ..COBOL(&MEMBER)", - "&CBSAHLQ..DEBUG(&MEMBER)", - "&CBSAHLQ..DSECT", - "&CBSAHLQ..LKED(&MEMBER)", - "&CBSAHLQ..LOADLIB", - "&CICSHLQ..SDFHCOB", - "&CICSHLQ..SDFHLOAD", - "&CICSHLQ..SDFHSAMP", - "&COBOLHLQ..SIGYCOMP", - "&DB2HLQ..SDSNLOAD", - "&LEHLQ..SCEELKED", - "&LEHLQ..SCEESAMP" + "DSNC10.PROCLIB", + "DSNC10.SDSNLOAD" ] }, - "jcl/cics-banking-sample-application-cbsa/CICSTS56.jcl": { + "jcl/cics-banking-sample-application-cbsa/CRESG02.jcl": { "1. Artifact Identity": { - "Filename": "CICSTS56.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/CICSTS56.jcl", + "Filename": "CRESG02.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/CRESG02.jcl", "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Alert": "TYPOSQUATTING THREAT: 'DSNC10/SDSNLOD2' mimics 'DSNC10/SDSNLOAD'", "Folder Dominant Lang": "jcl", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 351.16, - "Y": 47.47, - "Z": -2728.78 + "X": -786.89, + "Y": 59.34, + "Z": -2709.34 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -803597,10 +803431,10 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 183, - "Coding LOC": 108, - "Documentation LOC": 74, - "Structural Magnitude": 17.26, + "Total LOC": 22, + "Coding LOC": 17, + "Documentation LOC": 4, + "Structural Magnitude": 1.94, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -803610,13 +803444,13 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "63.7%", - "Tech Debt Exposure": "86.97%", - "Testing Exposure": "2.37%", + "Error & Exception Exposure": "76.85%", + "Tech Debt Exposure": "73.11%", + "Testing Exposure": "2.33%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "26.25%", + "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", @@ -803625,96 +803459,36 @@ }, "5. Function Analysis": [ { - "Function Name": "CICS", - "Structural Impact": 6.3, - "Lines of Code (LOC)": 98, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 43, - "End Line": 140 - }, - { - "Function Name": "PRTDMPA", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 143, - "End Line": 151 - }, - { - "Function Name": "PRTDMPB", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 154, - "End Line": 162 - }, - { - "Function Name": "PRTAUXT", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 167, - "End Line": 172 - }, - { - "Function Name": "PRTBUXT", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 177, - "End Line": 182 - }, - { - "Function Name": "CICSCNTL", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 28, - "End Line": 31 - }, - { - "Function Name": "DTCNTL", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, + "Function Name": "GRANT", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 13, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 35, - "End Line": 38 + "Start Line": 9, + "End Line": 21 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 70, - "Function Parameters": 4, - "Function/Method Declarations": 7, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 5, + "Sequential Logic Declarations": 6, + "Function Parameters": 0, + "Function/Method Declarations": 1, + "Class/Entity Declarations": 1, + "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 2, - "I/O and Network Boundaries": 115, + "High-Risk Execution Commands": 1, + "I/O and Network Boundaries": 7, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, - "Commented-out Code (Dead Logic)": 4, + "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -803732,7 +803506,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 2, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -803745,7 +803519,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 4, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -803762,15 +803536,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 104, + "Core Var Decl": 8, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 104, + "Design Upper Case": 8, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 4, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -803778,67 +803552,48 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, + "Dynamic Code Execution (Eval/Exec)": 2, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, "Non-Standard / Steganographic Imports": 0, - "Non-Standard Unicode / Homoglyphs": 1, + "Non-Standard Unicode / Homoglyphs": 0, "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 7, + "Sec Tainted Injection": 1, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 21, + "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "&INDEX2..SDFHAUTH", - "&INDEX2..SDFHLOAD", - "&INDEX3..SEYUAUTH", - "&INDEX3..SEYULOAD", - "ADCD.Z25A.TCPPARMS(GBLTDATA)", - "CBSA.CICSBSA.LOADLIB", - "CEE.SCEECICS", - "CEE.SCEERUN", - "CEE.SCEERUN2", - "DFH560.CICS.EQADPFMB", - "DFH560.CICS.SDFHLINK", - "DFH560.DFHCMACD", - "DFH560.EQAIVP.LOAD", - "DFH560.SDFHLIC", - "DFH560.SYSIN(DFHPLT)", - "DSNC10.SDSNLOAD", - "DSNC10.SDSNLOD2", - "ISM330.SEQAMOD", - "SYS1.MIGLIB", - "SYS1.SIEAMIGE", - "TCPIP.SEZATCP" + "DSNC10.PROCLIB", + "DSNC10.SDSNLOAD" ] }, - "jcl/cics-banking-sample-application-cbsa/COMPALL.jcl": { + "jcl/cics-banking-sample-application-cbsa/CRESG03.jcl": { "1. Artifact Identity": { - "Filename": "COMPALL.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/COMPALL.jcl", + "Filename": "CRESG03.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/CRESG03.jcl", "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, "Folder Dominant Lang": "jcl", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 255.16, - "Y": 92.42, - "Z": -2312.82 + "X": 1411.36, + "Y": 32.74, + "Z": -2489.64 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -803847,10 +803602,10 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 175, - "Coding LOC": 87, - "Documentation LOC": 87, - "Structural Magnitude": 47.44, + "Total LOC": 22, + "Coding LOC": 17, + "Documentation LOC": 4, + "Structural Magnitude": 1.94, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -803860,9 +803615,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.65%", + "Error & Exception Exposure": "76.85%", + "Tech Debt Exposure": "73.11%", + "Testing Exposure": "2.33%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -803875,397 +803630,27 @@ }, "5. Function Analysis": [ { - "Function Name": "XFRFUN", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 97, - "End Line": 103 - }, - { - "Function Name": "ABNDPROC", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 12, - "End Line": 15 - }, - { - "Function Name": "BANKDATA", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 16, - "End Line": 19 - }, - { - "Function Name": "BNK1MAI", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 20, - "End Line": 24 - }, - { - "Function Name": "BNKMENU", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 25, - "End Line": 28 - }, - { - "Function Name": "CRDTAGY1", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 29, - "End Line": 32 - }, - { - "Function Name": "CRDTAGY2", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 33, - "End Line": 36 - }, - { - "Function Name": "CRDTAGY3", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 37, - "End Line": 40 - }, - { - "Function Name": "CRDTAGY4", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 41, - "End Line": 44 - }, - { - "Function Name": "CRDTAGY5", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 45, - "End Line": 48 - }, - { - "Function Name": "CREACC", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 49, - "End Line": 52 - }, - { - "Function Name": "CRECUST", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 53, - "End Line": 56 - }, - { - "Function Name": "DBCRFUN", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 57, - "End Line": 60 - }, - { - "Function Name": "DELACC", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 61, - "End Line": 64 - }, - { - "Function Name": "DELCUS", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 65, - "End Line": 68 - }, - { - "Function Name": "GETCOMPY", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 69, - "End Line": 72 - }, - { - "Function Name": "GETSCODE", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 73, - "End Line": 76 - }, - { - "Function Name": "INQACC", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 77, - "End Line": 80 - }, - { - "Function Name": "INQACCCU", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 81, - "End Line": 84 - }, - { - "Function Name": "INQCUST", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 85, - "End Line": 88 - }, - { - "Function Name": "UPDACC", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 89, - "End Line": 92 - }, - { - "Function Name": "UPDCUST", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 93, - "End Line": 96 - }, - { - "Function Name": "BNK1ACC", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 104, - "End Line": 108 - }, - { - "Function Name": "BNK1CAM", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 109, - "End Line": 113 - }, - { - "Function Name": "BNK1CAC", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 114, - "End Line": 117 - }, - { - "Function Name": "BNK1CCA", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 118, - "End Line": 121 - }, - { - "Function Name": "BNK1CCM", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 122, - "End Line": 126 - }, - { - "Function Name": "BNK1CCS", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 127, - "End Line": 130 - }, - { - "Function Name": "BNK1CDM", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 131, - "End Line": 135 - }, - { - "Function Name": "BNK1CRA", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 136, - "End Line": 139 - }, - { - "Function Name": "BNK1DAM", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 140, - "End Line": 144 - }, - { - "Function Name": "BNK1DAC", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 145, - "End Line": 148 - }, - { - "Function Name": "BNK1DCM", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 149, - "End Line": 153 - }, - { - "Function Name": "BNK1DCS", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 154, - "End Line": 158 - }, - { - "Function Name": "BNK1TFM", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 159, - "End Line": 163 - }, - { - "Function Name": "BNK1TFN", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 164, - "End Line": 167 - }, - { - "Function Name": "BNK1UAM", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 168, - "End Line": 172 - }, - { - "Function Name": "BNK1UAC", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, + "Function Name": "GRANT", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 13, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 173, - "End Line": 173 + "Start Line": 9, + "End Line": 21 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 38, + "Sequential Logic Declarations": 6, "Function Parameters": 0, - "Function/Method Declarations": 38, + "Function/Method Declarations": 1, "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, + "High-Risk Execution Commands": 1, + "I/O and Network Boundaries": 7, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -804274,13 +803659,13 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 38, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -804292,7 +803677,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 1, + "Structured Telemetry & Logging": 2, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -804305,7 +803690,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 4, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -804322,15 +803707,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 57, + "Core Var Decl": 8, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 57, + "Design Upper Case": 8, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -804338,7 +803723,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, + "Dynamic Code Execution (Eval/Exec)": 2, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -804347,7 +803732,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 0, + "Sec Tainted Injection": 1, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -804356,30 +803741,30 @@ "8. Dependency Network": { "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 1, + "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "CBSA.CICSBSA.BUILDJCL", - "DEFAULT" + "DSNC10.PROCLIB", + "DSNC10.SDSNLOAD" ] }, - "jcl/cics-banking-sample-application-cbsa/CRDTAGY1.jcl": { + "jcl/cics-banking-sample-application-cbsa/CRETB01.jcl": { "1. Artifact Identity": { - "Filename": "CRDTAGY1.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/CRDTAGY1.jcl", + "Filename": "CRETB01.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/CRETB01.jcl", "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, "Folder Dominant Lang": "jcl", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 1242.03, - "Y": 7.88, - "Z": -1185.63 + "X": 895.19, + "Y": 83.44, + "Z": -1831.77 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -804388,10 +803773,10 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 8, - "Coding LOC": 3, + "Total LOC": 37, + "Coding LOC": 32, "Documentation LOC": 4, - "Structural Magnitude": 1.16, + "Structural Magnitude": 3.04, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -804401,9 +803786,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "0.0%", + "Error & Exception Exposure": "76.85%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.31%", + "Testing Exposure": "2.34%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -804416,27 +803801,27 @@ }, "5. Function Analysis": [ { - "Function Name": "Unknown_Block", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, + "Function Name": "GRANT", + "Structural Impact": 2.4, + "Lines of Code (LOC)": 28, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 7, - "End Line": 7 + "Start Line": 9, + "End Line": 36 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 1, + "Sequential Logic Declarations": 6, "Function Parameters": 0, "Function/Method Declarations": 1, - "Class/Entity Declarations": 0, + "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, + "High-Risk Execution Commands": 1, + "I/O and Network Boundaries": 7, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -804445,13 +803830,13 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -804463,7 +803848,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 2, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -804476,7 +803861,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 17, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -804493,11 +803878,11 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 2, + "Core Var Decl": 8, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 2, + "Design Upper Case": 8, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, @@ -804509,7 +803894,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, + "Dynamic Code Execution (Eval/Exec)": 2, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -804518,7 +803903,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 0, + "Sec Tainted Injection": 1, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -804527,30 +803912,30 @@ "8. Dependency Network": { "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 1, + "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "CBSA.CICSBSA.BUILDJCL", - "DEFAULT" + "DSNC10.PROCLIB", + "DSNC10.SDSNLOAD" ] }, - "jcl/cics-banking-sample-application-cbsa/CRDTAGY2.jcl": { + "jcl/cics-banking-sample-application-cbsa/CRETB02.jcl": { "1. Artifact Identity": { - "Filename": "CRDTAGY2.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/CRDTAGY2.jcl", + "Filename": "CRETB02.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/CRETB02.jcl", "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, "Folder Dominant Lang": "jcl", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -1294.76, - "Y": 114.21, - "Z": -2311.29 + "X": 838.39, + "Y": 105.1, + "Z": -2725.7 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -804559,10 +803944,10 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 8, - "Coding LOC": 3, + "Total LOC": 35, + "Coding LOC": 30, "Documentation LOC": 4, - "Structural Magnitude": 1.16, + "Structural Magnitude": 2.9, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -804572,9 +803957,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "0.0%", + "Error & Exception Exposure": "76.85%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.31%", + "Testing Exposure": "2.34%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -804587,27 +803972,27 @@ }, "5. Function Analysis": [ { - "Function Name": "Unknown_Block", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, + "Function Name": "GRANT", + "Structural Impact": 2.3, + "Lines of Code (LOC)": 26, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 7, - "End Line": 7 + "Start Line": 9, + "End Line": 34 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 1, + "Sequential Logic Declarations": 6, "Function Parameters": 0, "Function/Method Declarations": 1, - "Class/Entity Declarations": 0, + "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, + "High-Risk Execution Commands": 1, + "I/O and Network Boundaries": 7, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -804616,13 +804001,13 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -804634,7 +804019,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 2, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -804647,7 +804032,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 15, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -804664,11 +804049,11 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 2, + "Core Var Decl": 8, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 2, + "Design Upper Case": 8, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, @@ -804680,7 +804065,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, + "Dynamic Code Execution (Eval/Exec)": 2, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -804689,7 +804074,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 0, + "Sec Tainted Injection": 1, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -804698,30 +804083,30 @@ "8. Dependency Network": { "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 1, + "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "CBSA.CICSBSA.BUILDJCL", - "DEFAULT" + "DSNC10.PROCLIB", + "DSNC10.SDSNLOAD" ] }, - "jcl/cics-banking-sample-application-cbsa/CRDTAGY3.jcl": { + "jcl/cics-banking-sample-application-cbsa/CRETB03.jcl": { "1. Artifact Identity": { - "Filename": "CRDTAGY3.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/CRDTAGY3.jcl", + "Filename": "CRETB03.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/CRETB03.jcl", "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, "Folder Dominant Lang": "jcl", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 1596.28, - "Y": 35.44, - "Z": -3066.76 + "X": 221.12, + "Y": 68.15, + "Z": -1366.65 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -804730,10 +804115,10 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 8, - "Coding LOC": 3, + "Total LOC": 29, + "Coding LOC": 23, "Documentation LOC": 4, - "Structural Magnitude": 1.16, + "Structural Magnitude": 2.46, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -804743,9 +804128,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "0.0%", + "Error & Exception Exposure": "76.85%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.31%", + "Testing Exposure": "2.34%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -804758,27 +804143,27 @@ }, "5. Function Analysis": [ { - "Function Name": "Unknown_Block", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, + "Function Name": "GRANT", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 20, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 7, - "End Line": 7 + "Start Line": 9, + "End Line": 28 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 1, + "Sequential Logic Declarations": 6, "Function Parameters": 0, "Function/Method Declarations": 1, - "Class/Entity Declarations": 0, + "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, + "High-Risk Execution Commands": 1, + "I/O and Network Boundaries": 7, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -804787,13 +804172,13 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -804805,7 +804190,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 2, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -804818,7 +804203,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 8, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -804835,11 +804220,11 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 2, + "Core Var Decl": 8, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 2, + "Design Upper Case": 8, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, @@ -804851,7 +804236,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, + "Dynamic Code Execution (Eval/Exec)": 2, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -804860,7 +804245,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 0, + "Sec Tainted Injection": 1, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -804869,30 +804254,30 @@ "8. Dependency Network": { "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 1, + "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "CBSA.CICSBSA.BUILDJCL", - "DEFAULT" + "DSNC10.PROCLIB", + "DSNC10.SDSNLOAD" ] }, - "jcl/cics-banking-sample-application-cbsa/CRDTAGY4.jcl": { + "jcl/cics-banking-sample-application-cbsa/CRETS01.jcl": { "1. Artifact Identity": { - "Filename": "CRDTAGY4.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/CRDTAGY4.jcl", + "Filename": "CRETS01.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/CRETS01.jcl", "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, "Folder Dominant Lang": "jcl", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -57.94, - "Y": 44.26, - "Z": -604.47 + "X": -330.93, + "Y": 47.69, + "Z": -1135.36 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -804901,10 +804286,10 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 8, - "Coding LOC": 3, + "Total LOC": 22, + "Coding LOC": 17, "Documentation LOC": 4, - "Structural Magnitude": 1.16, + "Structural Magnitude": 1.94, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -804914,9 +804299,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "0.0%", + "Error & Exception Exposure": "76.85%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.31%", + "Testing Exposure": "2.33%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -804929,27 +804314,27 @@ }, "5. Function Analysis": [ { - "Function Name": "Unknown_Block", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, + "Function Name": "GRANT", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 13, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 7, - "End Line": 7 + "Start Line": 9, + "End Line": 21 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 1, + "Sequential Logic Declarations": 6, "Function Parameters": 0, "Function/Method Declarations": 1, - "Class/Entity Declarations": 0, + "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, + "High-Risk Execution Commands": 1, + "I/O and Network Boundaries": 7, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -804958,13 +804343,13 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -804976,7 +804361,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 2, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -804989,7 +804374,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 4, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -805006,11 +804391,11 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 2, + "Core Var Decl": 8, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 2, + "Design Upper Case": 8, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, @@ -805022,7 +804407,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, + "Dynamic Code Execution (Eval/Exec)": 2, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -805031,7 +804416,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 0, + "Sec Tainted Injection": 1, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -805040,30 +804425,30 @@ "8. Dependency Network": { "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 1, + "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "CBSA.CICSBSA.BUILDJCL", - "DEFAULT" + "DSNC10.PROCLIB", + "DSNC10.SDSNLOAD" ] }, - "jcl/cics-banking-sample-application-cbsa/CRDTAGY5.jcl": { + "jcl/cics-banking-sample-application-cbsa/CRETS02.jcl": { "1. Artifact Identity": { - "Filename": "CRDTAGY5.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/CRDTAGY5.jcl", + "Filename": "CRETS02.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/CRETS02.jcl", "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, "Folder Dominant Lang": "jcl", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -547.15, - "Y": 80.95, - "Z": -3772.75 + "X": 48.29, + "Y": 114.88, + "Z": -3296.64 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -805072,10 +804457,10 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 8, - "Coding LOC": 3, + "Total LOC": 22, + "Coding LOC": 17, "Documentation LOC": 4, - "Structural Magnitude": 1.16, + "Structural Magnitude": 1.94, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -805085,9 +804470,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "0.0%", + "Error & Exception Exposure": "76.85%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.31%", + "Testing Exposure": "2.33%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -805100,27 +804485,27 @@ }, "5. Function Analysis": [ { - "Function Name": "Unknown_Block", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, + "Function Name": "GRANT", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 13, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 7, - "End Line": 7 + "Start Line": 9, + "End Line": 21 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 1, + "Sequential Logic Declarations": 6, "Function Parameters": 0, "Function/Method Declarations": 1, - "Class/Entity Declarations": 0, + "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, + "High-Risk Execution Commands": 1, + "I/O and Network Boundaries": 7, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -805129,13 +804514,13 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -805147,7 +804532,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 2, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -805160,7 +804545,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 4, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -805177,11 +804562,11 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 2, + "Core Var Decl": 8, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 2, + "Design Upper Case": 8, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, @@ -805193,7 +804578,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, + "Dynamic Code Execution (Eval/Exec)": 2, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -805202,7 +804587,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 0, + "Sec Tainted Injection": 1, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -805211,30 +804596,30 @@ "8. Dependency Network": { "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 1, + "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "CBSA.CICSBSA.BUILDJCL", - "DEFAULT" + "DSNC10.PROCLIB", + "DSNC10.SDSNLOAD" ] }, - "jcl/cics-banking-sample-application-cbsa/CREACC.jcl": { + "jcl/cics-banking-sample-application-cbsa/CRETS03.jcl": { "1. Artifact Identity": { - "Filename": "CREACC.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/CREACC.jcl", + "Filename": "CRETS03.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/CRETS03.jcl", "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, "Folder Dominant Lang": "jcl", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -671.2, - "Y": 93.84, - "Z": -1857.31 + "X": 1223.92, + "Y": 74.42, + "Z": -1535.6 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -805243,10 +804628,10 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 8, - "Coding LOC": 3, + "Total LOC": 22, + "Coding LOC": 17, "Documentation LOC": 4, - "Structural Magnitude": 2.16, + "Structural Magnitude": 1.94, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -805256,43 +804641,43 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.31%", - "API Exposure": "3.53%", + "Error & Exception Exposure": "76.85%", + "Tech Debt Exposure": "73.11%", + "Testing Exposure": "2.33%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "16.56%", + "Documentation Exposure": "0.0%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "Unknown_Block", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, + "Function Name": "GRANT", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 13, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 7, - "End Line": 7 + "Start Line": 9, + "End Line": 21 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 1, + "Sequential Logic Declarations": 6, "Function Parameters": 0, "Function/Method Declarations": 1, - "Class/Entity Declarations": 0, + "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 1, + "High-Risk Execution Commands": 1, + "I/O and Network Boundaries": 7, + "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -805300,13 +804685,13 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -805318,7 +804703,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 2, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -805331,7 +804716,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 4, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -805348,15 +804733,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 2, + "Core Var Decl": 8, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 2, + "Design Upper Case": 8, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -805364,7 +804749,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, + "Dynamic Code Execution (Eval/Exec)": 2, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -805373,7 +804758,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 0, + "Sec Tainted Injection": 1, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -805382,30 +804767,30 @@ "8. Dependency Network": { "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 1, - "Total Downstream (Absolute Dependency Blast Radius)": 1 + "Total Upstream (Absolute Fragility)": 0, + "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "CBSA.CICSBSA.BUILDJCL", - "DEFAULT" + "DSNC10.PROCLIB", + "DSNC10.SDSNLOAD" ] }, - "jcl/cics-banking-sample-application-cbsa/CRECUST.jcl": { + "jcl/cics-banking-sample-application-cbsa/DB2BIND.jcl": { "1. Artifact Identity": { - "Filename": "CRECUST.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/CRECUST.jcl", + "Filename": "DB2BIND.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/DB2BIND.jcl", "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, "Folder Dominant Lang": "jcl", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 784.49, - "Y": 102.61, - "Z": -2919.13 + "X": 712.49, + "Y": 36.89, + "Z": -2479.63 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -805414,10 +804799,10 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 8, - "Coding LOC": 3, - "Documentation LOC": 4, - "Structural Magnitude": 2.16, + "Total LOC": 110, + "Coding LOC": 89, + "Documentation LOC": 9, + "Structural Magnitude": 8.58, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -805427,43 +804812,53 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "0.0%", + "Error & Exception Exposure": "77.05%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.31%", - "API Exposure": "3.53%", + "Testing Exposure": "2.36%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "16.56%", + "Documentation Exposure": "0.0%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "Unknown_Block", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, + "Function Name": "BIND", + "Structural Impact": 4.8, + "Lines of Code (LOC)": 75, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 7, - "End Line": 7 + "Start Line": 12, + "End Line": 86 + }, + { + "Function Name": "GRANT", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 20, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 90, + "End Line": 109 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 1, + "Sequential Logic Declarations": 24, "Function Parameters": 0, - "Function/Method Declarations": 1, - "Class/Entity Declarations": 0, + "Function/Method Declarations": 2, + "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 1, + "High-Risk Execution Commands": 2, + "I/O and Network Boundaries": 38, + "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -805471,7 +804866,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -805489,7 +804884,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 2, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -805502,7 +804897,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 8, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -805519,11 +804914,11 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 2, + "Core Var Decl": 27, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 2, + "Design Upper Case": 27, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, @@ -805535,7 +804930,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, + "Dynamic Code Execution (Eval/Exec)": 3, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -805544,39 +804939,51 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 0, + "Sec Tainted Injection": 2, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, + "Direct Upstream (Fragility)": 14, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 1, - "Total Downstream (Absolute Dependency Blast Radius)": 1 + "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "CBSA.CICSBSA.BUILDJCL", + "&BANKDBRM(BANKDATA)", + "&BANKDBRM(CREACC)", + "&BANKDBRM(CRECUST)", + "&BANKDBRM(DBCRFUN)", + "&BANKDBRM(DELACC)", + "&BANKDBRM(DELCUS)", + "&BANKDBRM(INQACC)", + "&BANKDBRM(INQACCCU)", + "&BANKDBRM(UPDACC)", + "&BANKDBRM(XFRFUN)", + "&DB2HLQ..SDSNEXIT", + "&DB2HLQ..SDSNLOAD", + "CBSA.DB2.JCL.INSTALL", "DEFAULT" ] }, - "jcl/cics-banking-sample-application-cbsa/CREDB00.jcl": { + "jcl/cics-banking-sample-application-cbsa/DBCRFUN.jcl": { "1. Artifact Identity": { - "Filename": "CREDB00.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/CREDB00.jcl", + "Filename": "DBCRFUN.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/DBCRFUN.jcl", "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, "Folder Dominant Lang": "jcl", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 1150.86, - "Y": 87.81, - "Z": -2635.12 + "X": 1854.69, + "Y": -1.04, + "Z": -1755.71 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -805585,10 +804992,10 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 24, - "Coding LOC": 19, + "Total LOC": 8, + "Coding LOC": 3, "Documentation LOC": 4, - "Structural Magnitude": 2.18, + "Structural Magnitude": 1.16, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -805598,9 +805005,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.33%", + "Testing Exposure": "2.31%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -805613,27 +805020,27 @@ }, "5. Function Analysis": [ { - "Function Name": "GRANT", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 15, + "Function Name": "Unknown_Block", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 9, - "End Line": 23 + "Start Line": 7, + "End Line": 7 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 6, + "Sequential Logic Declarations": 1, "Function Parameters": 0, "Function/Method Declarations": 1, - "Class/Entity Declarations": 1, + "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 7, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -805648,7 +805055,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -805660,7 +805067,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 2, + "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -805673,7 +805080,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 6, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -805690,11 +805097,11 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 8, + "Core Var Decl": 2, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 8, + "Design Upper Case": 2, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, @@ -805706,7 +805113,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 2, + "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -805715,7 +805122,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -805724,18 +805131,18 @@ "8. Dependency Network": { "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, + "Total Upstream (Absolute Fragility)": 1, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "DSNC10.PROCLIB", - "DSNC10.SDSNLOAD" + "CBSA.CICSBSA.BUILDJCL", + "DEFAULT" ] }, - "jcl/cics-banking-sample-application-cbsa/CREDB2L.jcl": { + "jcl/cics-banking-sample-application-cbsa/DEFAULT.jcl": { "1. Artifact Identity": { - "Filename": "CREDB2L.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/CREDB2L.jcl", + "Filename": "DEFAULT.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/DEFAULT.jcl", "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Neutral / No Indentation", @@ -805745,9 +805152,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -246.85, - "Y": 110.85, - "Z": -2016.74 + "X": 90.67, + "Y": 88.14, + "Z": -2113.31 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -805756,12 +805163,12 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 27, - "Coding LOC": 11, - "Documentation LOC": 15, - "Structural Magnitude": 4.72, + "Total LOC": 48, + "Coding LOC": 9, + "Documentation LOC": 38, + "Structural Magnitude": 23.68, "Control Flow Ratio": "0.0%", - "Popularity Rank": 1, + "Popularity Rank": 44, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, @@ -805769,61 +805176,40 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "86.83%", + "Error & Exception Exposure": "78.34%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.36%", - "API Exposure": "5.59%", + "Testing Exposure": "2.3%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "23.15%", - "Specification Exposure": "100.0%", + "State Flux Exposure": "99.18%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "0.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "17.3%", + "Documentation Exposure": "0.0%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [ - { - "Function Name": "STEP10", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 12, - "End Line": 17 - }, - { - "Function Name": "STEP20", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 21, - "End Line": 25 - } - ], + "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 5, + "Sequential Logic Declarations": 9, "Function Parameters": 0, - "Function/Method Declarations": 2, + "Function/Method Declarations": 0, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 2, - "I/O and Network Boundaries": 5, - "Exposed API / Public Exports": 2, - "State Mutations / Variable Reassignments": 0, - "Commented-out Code (Dead Logic)": 1, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 0, + "State Mutations / Variable Reassignments": 9, + "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 9, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -805896,39 +805282,36 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 2, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, - "Direct Downstream (Dependency Blast Radius)": 1, + "Direct Upstream (Fragility)": 0, + "Direct Downstream (Dependency Blast Radius)": 44, "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 1 + "Total Downstream (Absolute Dependency Blast Radius)": 65 }, - "9. Extracted Dependencies": [ - "&HLQ..DB2.JCL.INSTALL", - "&HLQ..DB2.JCL.INSTALL(EMPTY)" - ] + "9. Extracted Dependencies": [] }, - "jcl/cics-banking-sample-application-cbsa/CREI101.jcl": { + "jcl/cics-banking-sample-application-cbsa/DELACC.jcl": { "1. Artifact Identity": { - "Filename": "CREI101.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/CREI101.jcl", + "Filename": "DELACC.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/DELACC.jcl", "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, "Folder Dominant Lang": "jcl", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -60.63, - "Y": 80.96, - "Z": -1557.9 + "X": 486.05, + "Y": 98.77, + "Z": -1438.36 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -805937,10 +805320,10 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 24, - "Coding LOC": 19, + "Total LOC": 8, + "Coding LOC": 3, "Documentation LOC": 4, - "Structural Magnitude": 2.18, + "Structural Magnitude": 2.16, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -805950,43 +805333,43 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", - "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.33%", - "API Exposure": "0.0%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "2.31%", + "API Exposure": "3.53%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", + "Documentation Exposure": "16.56%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "GRANT", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 15, + "Function Name": "Unknown_Block", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 9, - "End Line": 23 + "Start Line": 7, + "End Line": 7 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 6, + "Sequential Logic Declarations": 1, "Function Parameters": 0, "Function/Method Declarations": 1, - "Class/Entity Declarations": 1, + "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 7, - "Exposed API / Public Exports": 0, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -806000,7 +805383,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -806012,7 +805395,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 2, + "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -806025,7 +805408,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 6, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -806042,15 +805425,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 8, + "Core Var Decl": 2, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 8, + "Design Upper Case": 2, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -806058,7 +805441,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 2, + "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -806067,7 +805450,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -806076,30 +805459,30 @@ "8. Dependency Network": { "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 + "Total Upstream (Absolute Fragility)": 1, + "Total Downstream (Absolute Dependency Blast Radius)": 1 }, "9. Extracted Dependencies": [ - "DSNC10.PROCLIB", - "DSNC10.SDSNLOAD" + "CBSA.CICSBSA.BUILDJCL", + "DEFAULT" ] }, - "jcl/cics-banking-sample-application-cbsa/CREI201.jcl": { + "jcl/cics-banking-sample-application-cbsa/DELCUS.jcl": { "1. Artifact Identity": { - "Filename": "CREI201.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/CREI201.jcl", + "Filename": "DELCUS.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/DELCUS.jcl", "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, "Folder Dominant Lang": "jcl", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -42.32, - "Y": 55.22, - "Z": -3282.06 + "X": -506.89, + "Y": 71.31, + "Z": -2703.68 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -806108,10 +805491,10 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 24, - "Coding LOC": 19, + "Total LOC": 8, + "Coding LOC": 3, "Documentation LOC": 4, - "Structural Magnitude": 2.18, + "Structural Magnitude": 2.16, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -806121,43 +805504,43 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", - "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.33%", - "API Exposure": "0.0%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "2.31%", + "API Exposure": "3.53%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", + "Documentation Exposure": "16.56%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "GRANT", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 15, + "Function Name": "Unknown_Block", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 9, - "End Line": 23 + "Start Line": 7, + "End Line": 7 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 6, + "Sequential Logic Declarations": 1, "Function Parameters": 0, "Function/Method Declarations": 1, - "Class/Entity Declarations": 1, + "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 7, - "Exposed API / Public Exports": 0, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -806171,7 +805554,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -806183,7 +805566,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 2, + "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -806196,7 +805579,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 6, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -806213,15 +805596,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 8, + "Core Var Decl": 2, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 8, + "Design Upper Case": 2, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -806229,7 +805612,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 2, + "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -806238,7 +805621,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -806247,18 +805630,18 @@ "8. Dependency Network": { "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 + "Total Upstream (Absolute Fragility)": 1, + "Total Downstream (Absolute Dependency Blast Radius)": 2 }, "9. Extracted Dependencies": [ - "DSNC10.PROCLIB", - "DSNC10.SDSNLOAD" + "CBSA.CICSBSA.BUILDJCL", + "DEFAULT" ] }, - "jcl/cics-banking-sample-application-cbsa/CREI301.jcl": { + "jcl/cics-banking-sample-application-cbsa/DROPDB2.jcl": { "1. Artifact Identity": { - "Filename": "CREI301.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/CREI301.jcl", + "Filename": "DROPDB2.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/DROPDB2.jcl", "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Spaces", @@ -806268,9 +805651,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 1169.24, - "Y": 46.66, - "Z": -1983.58 + "X": 188.48, + "Y": 54.46, + "Z": -2855.26 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -806279,10 +805662,10 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 24, - "Coding LOC": 19, + "Total LOC": 39, + "Coding LOC": 29, "Documentation LOC": 4, - "Structural Magnitude": 2.18, + "Structural Magnitude": 3.08, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -806294,7 +805677,7 @@ "Cognitive Load Exposure": "0.0%", "Error & Exception Exposure": "76.85%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.33%", + "Testing Exposure": "2.34%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -806308,13 +805691,13 @@ "5. Function Analysis": [ { "Function Name": "GRANT", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 15, + "Structural Impact": 2.5, + "Lines of Code (LOC)": 30, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", "Start Line": 9, - "End Line": 23 + "End Line": 38 } ], "6. Contextual Mitigations & Amplifications": "None Detected", @@ -806336,7 +805719,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -806426,22 +805809,22 @@ "DSNC10.SDSNLOAD" ] }, - "jcl/cics-banking-sample-application-cbsa/CREL001.jcl": { + "jcl/cics-banking-sample-application-cbsa/DRPDB00.jcl": { "1. Artifact Identity": { - "Filename": "CREL001.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/CREL001.jcl", + "Filename": "DRPDB00.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/DRPDB00.jcl", "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, "Folder Dominant Lang": "jcl", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 588.86, - "Y": 100.45, - "Z": -2673.81 + "X": -909.98, + "Y": 119.16, + "Z": -2213.4 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -806450,12 +805833,12 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 26, - "Coding LOC": 11, - "Documentation LOC": 14, - "Structural Magnitude": 4.72, + "Total LOC": 22, + "Coding LOC": 17, + "Documentation LOC": 4, + "Structural Magnitude": 1.94, "Control Flow Ratio": "0.0%", - "Popularity Rank": 1, + "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, @@ -806463,61 +805846,51 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "86.83%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.36%", - "API Exposure": "5.59%", + "Error & Exception Exposure": "76.85%", + "Tech Debt Exposure": "73.11%", + "Testing Exposure": "2.33%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "23.15%", + "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "17.99%", + "Documentation Exposure": "0.0%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "STEP10", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 11, - "End Line": 16 - }, - { - "Function Name": "STEP20", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, + "Function Name": "GRANT", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 13, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 20, - "End Line": 24 + "Start Line": 9, + "End Line": 21 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 5, + "Sequential Logic Declarations": 6, "Function Parameters": 0, - "Function/Method Declarations": 2, - "Class/Entity Declarations": 0, + "Function/Method Declarations": 1, + "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 2, - "I/O and Network Boundaries": 5, - "Exposed API / Public Exports": 2, + "High-Risk Execution Commands": 1, + "I/O and Network Boundaries": 7, + "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, - "Commented-out Code (Dead Logic)": 1, + "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -806535,7 +805908,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 2, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -806548,7 +805921,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 4, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -806565,15 +805938,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 9, + "Core Var Decl": 8, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 9, + "Design Upper Case": 8, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -806581,7 +805954,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, + "Dynamic Code Execution (Eval/Exec)": 2, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -806590,7 +805963,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 2, + "Sec Tainted Injection": 1, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -806598,31 +805971,31 @@ }, "8. Dependency Network": { "Direct Upstream (Fragility)": 2, - "Direct Downstream (Dependency Blast Radius)": 1, + "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 1 + "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "&HLQ..CICSBSA.BUILDJCL", - "&HLQ..CICSBSA.BUILDJCL(EMPTY)" + "DSNC10.PROCLIB", + "DSNC10.SDSNLOAD" ] }, - "jcl/cics-banking-sample-application-cbsa/CREL002.jcl": { + "jcl/cics-banking-sample-application-cbsa/DRPI101.jcl": { "1. Artifact Identity": { - "Filename": "CREL002.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/CREL002.jcl", + "Filename": "DRPI101.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/DRPI101.jcl", "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, "Folder Dominant Lang": "jcl", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -216.03, - "Y": 80.65, - "Z": -2972.83 + "X": 1109.99, + "Y": 22.41, + "Z": -3192.15 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -806631,12 +806004,12 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 17, - "Coding LOC": 6, - "Documentation LOC": 10, - "Structural Magnitude": 2.42, + "Total LOC": 22, + "Coding LOC": 17, + "Documentation LOC": 4, + "Structural Magnitude": 1.94, "Control Flow Ratio": "0.0%", - "Popularity Rank": 1, + "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, @@ -806645,50 +806018,50 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", "Error & Exception Exposure": "76.85%", - "Tech Debt Exposure": "0.0%", + "Tech Debt Exposure": "73.11%", "Testing Exposure": "2.33%", - "API Exposure": "3.53%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "23.15%", + "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "13.01%", + "Documentation Exposure": "0.0%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "STEP10", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, + "Function Name": "GRANT", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 13, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 11, - "End Line": 16 + "Start Line": 9, + "End Line": 21 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 1, + "Sequential Logic Declarations": 6, "Function Parameters": 0, "Function/Method Declarations": 1, - "Class/Entity Declarations": 0, + "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 1, - "Exposed API / Public Exports": 1, + "I/O and Network Boundaries": 7, + "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, - "Commented-out Code (Dead Logic)": 1, + "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -806706,7 +806079,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 2, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -806719,7 +806092,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 4, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -806736,15 +806109,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 6, + "Core Var Decl": 8, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 6, + "Design Upper Case": 8, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -806752,7 +806125,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, + "Dynamic Code Execution (Eval/Exec)": 2, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -806768,31 +806141,32 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 1, - "Direct Downstream (Dependency Blast Radius)": 1, + "Direct Upstream (Fragility)": 2, + "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 1 + "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "&HLQ..CICSBSA.ADATA" + "DSNC10.PROCLIB", + "DSNC10.SDSNLOAD" ] }, - "jcl/cics-banking-sample-application-cbsa/CREL003.jcl": { + "jcl/cics-banking-sample-application-cbsa/DRPI201.jcl": { "1. Artifact Identity": { - "Filename": "CREL003.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/CREL003.jcl", + "Filename": "DRPI201.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/DRPI201.jcl", "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, "Folder Dominant Lang": "jcl", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 1092.93, - "Y": 56.25, - "Z": -2114.71 + "X": 345.74, + "Y": 83.0, + "Z": -971.07 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -806801,12 +806175,12 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 17, - "Coding LOC": 6, - "Documentation LOC": 10, - "Structural Magnitude": 2.42, + "Total LOC": 22, + "Coding LOC": 17, + "Documentation LOC": 4, + "Structural Magnitude": 1.94, "Control Flow Ratio": "0.0%", - "Popularity Rank": 1, + "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, @@ -806815,50 +806189,50 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", "Error & Exception Exposure": "76.85%", - "Tech Debt Exposure": "0.0%", + "Tech Debt Exposure": "73.11%", "Testing Exposure": "2.33%", - "API Exposure": "3.53%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "23.15%", + "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "13.01%", + "Documentation Exposure": "0.0%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "STEP10", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, + "Function Name": "GRANT", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 13, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 11, - "End Line": 16 + "Start Line": 9, + "End Line": 21 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 1, + "Sequential Logic Declarations": 6, "Function Parameters": 0, "Function/Method Declarations": 1, - "Class/Entity Declarations": 0, + "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 1, - "Exposed API / Public Exports": 1, + "I/O and Network Boundaries": 7, + "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, - "Commented-out Code (Dead Logic)": 1, + "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -806876,7 +806250,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 2, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -806889,7 +806263,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 4, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -806906,15 +806280,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 6, + "Core Var Decl": 8, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 6, + "Design Upper Case": 8, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -806922,7 +806296,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, + "Dynamic Code Execution (Eval/Exec)": 2, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -806938,31 +806312,32 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 1, - "Direct Downstream (Dependency Blast Radius)": 1, + "Direct Upstream (Fragility)": 2, + "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 1 + "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "&HLQ..CICSBSA.LOADLIB" + "DSNC10.PROCLIB", + "DSNC10.SDSNLOAD" ] }, - "jcl/cics-banking-sample-application-cbsa/CREL004.jcl": { + "jcl/cics-banking-sample-application-cbsa/DRPI301.jcl": { "1. Artifact Identity": { - "Filename": "CREL004.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/CREL004.jcl", + "Filename": "DRPI301.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/DRPI301.jcl", "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, "Folder Dominant Lang": "jcl", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -451.35, - "Y": 112.62, - "Z": -1617.25 + "X": -574.1, + "Y": 112.18, + "Z": -3081.56 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -806971,12 +806346,12 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 17, - "Coding LOC": 6, - "Documentation LOC": 10, - "Structural Magnitude": 2.42, + "Total LOC": 22, + "Coding LOC": 17, + "Documentation LOC": 4, + "Structural Magnitude": 1.94, "Control Flow Ratio": "0.0%", - "Popularity Rank": 1, + "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, @@ -806985,50 +806360,50 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", "Error & Exception Exposure": "76.85%", - "Tech Debt Exposure": "0.0%", + "Tech Debt Exposure": "73.11%", "Testing Exposure": "2.33%", - "API Exposure": "3.53%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "23.15%", + "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "13.01%", + "Documentation Exposure": "0.0%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "STEP10", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, + "Function Name": "GRANT", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 13, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 11, - "End Line": 16 + "Start Line": 9, + "End Line": 21 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 1, + "Sequential Logic Declarations": 6, "Function Parameters": 0, "Function/Method Declarations": 1, - "Class/Entity Declarations": 0, + "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 1, - "Exposed API / Public Exports": 1, + "I/O and Network Boundaries": 7, + "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, - "Commented-out Code (Dead Logic)": 1, + "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -807046,7 +806421,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 2, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -807059,7 +806434,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 4, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -807076,15 +806451,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 6, + "Core Var Decl": 8, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 6, + "Design Upper Case": 8, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -807092,7 +806467,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, + "Dynamic Code Execution (Eval/Exec)": 2, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -807108,31 +806483,32 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 1, - "Direct Downstream (Dependency Blast Radius)": 1, + "Direct Upstream (Fragility)": 2, + "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 1 + "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "&HLQ..CICSBSA.DBRM" + "DSNC10.PROCLIB", + "DSNC10.SDSNLOAD" ] }, - "jcl/cics-banking-sample-application-cbsa/CREL005.jcl": { + "jcl/cics-banking-sample-application-cbsa/DRPSG01.jcl": { "1. Artifact Identity": { - "Filename": "CREL005.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/CREL005.jcl", + "Filename": "DRPSG01.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/DRPSG01.jcl", "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, "Folder Dominant Lang": "jcl", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 435.07, - "Y": 116.14, - "Z": -3235.9 + "X": 1516.43, + "Y": 72.69, + "Z": -2314.29 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -807141,12 +806517,12 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 17, - "Coding LOC": 6, - "Documentation LOC": 10, - "Structural Magnitude": 2.42, + "Total LOC": 22, + "Coding LOC": 17, + "Documentation LOC": 4, + "Structural Magnitude": 1.94, "Control Flow Ratio": "0.0%", - "Popularity Rank": 1, + "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, @@ -807155,50 +806531,50 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", "Error & Exception Exposure": "76.85%", - "Tech Debt Exposure": "0.0%", + "Tech Debt Exposure": "73.11%", "Testing Exposure": "2.33%", - "API Exposure": "3.53%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "23.15%", + "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "13.01%", + "Documentation Exposure": "0.0%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "STEP10", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, + "Function Name": "GRANT", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 13, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 11, - "End Line": 16 + "Start Line": 9, + "End Line": 21 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 1, + "Sequential Logic Declarations": 6, "Function Parameters": 0, "Function/Method Declarations": 1, - "Class/Entity Declarations": 0, + "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 1, - "Exposed API / Public Exports": 1, + "I/O and Network Boundaries": 7, + "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, - "Commented-out Code (Dead Logic)": 1, + "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -807216,7 +806592,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 2, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -807229,7 +806605,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 4, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -807246,15 +806622,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 6, + "Core Var Decl": 8, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 6, + "Design Upper Case": 8, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -807262,7 +806638,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, + "Dynamic Code Execution (Eval/Exec)": 2, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -807277,213 +806653,33 @@ "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, - "8. Dependency Network": { - "Direct Upstream (Fragility)": 1, - "Direct Downstream (Dependency Blast Radius)": 1, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 1 - }, - "9. Extracted Dependencies": [ - "&HLQ..CICSBSA.LKED" - ] - }, - "jcl/cics-banking-sample-application-cbsa/CREL006.jcl": { - "1. Artifact Identity": { - "Filename": "CREL006.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/CREL006.jcl", - "Language": "Jcl", - "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" - }, - "2. Topological Coordinates": { - "X": 466.79, - "Y": 36.17, - "Z": -1638.64 - }, - "3. Architectural Profile": { - "Repository Archetype": "Unclassified", - "Repository Drift (Z-Score)": 0.0, - "Repository Fingerprint": {}, - "File Archetype": null, - "File Drift (Z-Score)": 0.0, - "File Fingerprint": {}, - "Total LOC": 26, - "Coding LOC": 11, - "Documentation LOC": 14, - "Structural Magnitude": 4.72, - "Control Flow Ratio": "0.0%", - "Popularity Rank": 1, - "Raw Churn Frequency": 0.0, - "Authorship Centralization": 0.0, - "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.0 - }, - "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "86.83%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.36%", - "API Exposure": "5.59%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "23.15%", - "Specification Exposure": "100.0%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "17.99%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "5. Function Analysis": [ - { - "Function Name": "STEP10", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 11, - "End Line": 16 - }, - { - "Function Name": "STEP20", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 20, - "End Line": 24 - } - ], - "6. Contextual Mitigations & Amplifications": "None Detected", - "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 5, - "Function Parameters": 0, - "Function/Method Declarations": 2, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 2, - "I/O and Network Boundaries": 5, - "Exposed API / Public Exports": 2, - "State Mutations / Variable Reassignments": 0, - "Commented-out Code (Dead Logic)": 1, - "Structured Documentation Blocks": 0, - "Unit Test Assertions": 0, - "Asynchronous/Concurrent Execution": 0, - "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, - "Decorators and Annotations": 0, - "Generic Type Abstractions": 0, - "Collection Iterators / Comprehensions": 0, - "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, - "Authorship Metadata": 0, - "Planned Work (TODOs)": 0, - "Acknowledged Tech Debt (FIXMEs)": 0, - "Specification Traceability Tags": 0, - "Server-Side Rendering Contexts": 0, - "Event Publishers / Emitters": 0, - "Dependency Injection Constructs": 0, - "Preprocessor Macros": 0, - "Pointer Arithmetic & Addressing": 0, - "Manual Memory Allocation": 0, - "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, - "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 0, - "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 0, - "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 0, - "Event Listeners & Subscribers": 0, - "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, - "Hardware Bridge": 0, - "Cryptography": 0, - "Auth Middleware": 0, - "Ipc Rpc Bridges": 0, - "Feature Flags": 0, - "Serialization Parsing": 0, - "Regex Execution": 0, - "Time Date Logic": 0, - "Cloud LLM API Integrations": 0, - "AI Orchestration Frameworks": 0, - "Vector Databases (RAG)": 0, - "Local Inference & Tensor Math": 0, - "Traditional Machine Learning (Stats/Trees)": 0, - "Deep Learning & Neural Networks": 0, - "Lazy Evaluation & Generators (O(1) Memory)": 0, - "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 9, - "Design Camel Case": 0, - "Design Snake Case": 0, - "Design Pascal Case": 0, - "Design Upper Case": 9, - "Design Short Vars": 0, - "Design Long Vars": 0, - "Duplicate Logic": 0, - "Orphaned Logic": 0, - "Instructional Code Examples": 0, - "Architectural Diagrams (Mermaid/PlantUML)": 0, - "Structured Literature Headers": 0, - "Hyperlinked Literature References": 0, - "High-Entropy / Obfuscated Logic": 0, - "Safety & Constraint Bypasses": 0, - "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, - "Global Environment Mutation": 0, - "Commented-Out Executable Logic": 0, - "Low-Level Bitwise / Cryptographic Math": 0, - "Non-Standard / Steganographic Imports": 0, - "Non-Standard Unicode / Homoglyphs": 0, - "Embedded Credentials & Keys": 0, - "Sec Extension Mismatch": 0, - "Sec Entropy": 0, - "Sec Tainted Injection": 2, - "Prompt Injection": 0, - "Agentic Rce": 0, - "Invisible Unicode Payload Smuggling": 0, - "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 - }, "8. Dependency Network": { "Direct Upstream (Fragility)": 2, - "Direct Downstream (Dependency Blast Radius)": 1, + "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 1 + "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "&HLQ..CICSBSA.BMS", - "&HLQ..CICSBSA.BMS(EMPTY)" + "DSNC10.PROCLIB", + "DSNC10.SDSNLOAD" ] }, - "jcl/cics-banking-sample-application-cbsa/CREL007.jcl": { + "jcl/cics-banking-sample-application-cbsa/DRPSG02.jcl": { "1. Artifact Identity": { - "Filename": "CREL007.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/CREL007.jcl", + "Filename": "DRPSG02.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/DRPSG02.jcl", "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, "Folder Dominant Lang": "jcl", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 715.31, - "Y": 46.2, - "Z": -1657.73 + "X": -682.4, + "Y": 109.0, + "Z": -1343.32 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -807492,12 +806688,12 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 17, - "Coding LOC": 6, - "Documentation LOC": 10, - "Structural Magnitude": 2.42, + "Total LOC": 22, + "Coding LOC": 17, + "Documentation LOC": 4, + "Structural Magnitude": 1.94, "Control Flow Ratio": "0.0%", - "Popularity Rank": 1, + "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, @@ -807506,50 +806702,50 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", "Error & Exception Exposure": "76.85%", - "Tech Debt Exposure": "0.0%", + "Tech Debt Exposure": "73.11%", "Testing Exposure": "2.33%", - "API Exposure": "3.53%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "23.15%", + "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "13.01%", + "Documentation Exposure": "0.0%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "STEP10", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, + "Function Name": "GRANT", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 13, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 11, - "End Line": 16 + "Start Line": 9, + "End Line": 21 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 1, + "Sequential Logic Declarations": 6, "Function Parameters": 0, "Function/Method Declarations": 1, - "Class/Entity Declarations": 0, + "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 1, - "Exposed API / Public Exports": 1, + "I/O and Network Boundaries": 7, + "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, - "Commented-out Code (Dead Logic)": 1, + "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -807567,7 +806763,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 2, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -807580,7 +806776,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 4, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -807597,15 +806793,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 6, + "Core Var Decl": 8, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 6, + "Design Upper Case": 8, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -807613,7 +806809,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, + "Dynamic Code Execution (Eval/Exec)": 2, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -807629,31 +806825,32 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 1, - "Direct Downstream (Dependency Blast Radius)": 1, + "Direct Upstream (Fragility)": 2, + "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 1 + "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "&HLQ..CICSBSA.DEBUG" + "DSNC10.PROCLIB", + "DSNC10.SDSNLOAD" ] }, - "jcl/cics-banking-sample-application-cbsa/CREL008.jcl": { + "jcl/cics-banking-sample-application-cbsa/DRPSG03.jcl": { "1. Artifact Identity": { - "Filename": "CREL008.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/CREL008.jcl", + "Filename": "DRPSG03.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/DRPSG03.jcl", "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, "Folder Dominant Lang": "jcl", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -543.32, - "Y": 98.52, - "Z": -2681.46 + "X": 485.98, + "Y": 63.84, + "Z": -3412.64 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -807662,12 +806859,12 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 17, - "Coding LOC": 6, - "Documentation LOC": 10, - "Structural Magnitude": 2.42, + "Total LOC": 22, + "Coding LOC": 17, + "Documentation LOC": 4, + "Structural Magnitude": 1.94, "Control Flow Ratio": "0.0%", - "Popularity Rank": 1, + "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, @@ -807676,50 +806873,50 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", "Error & Exception Exposure": "76.85%", - "Tech Debt Exposure": "0.0%", + "Tech Debt Exposure": "73.11%", "Testing Exposure": "2.33%", - "API Exposure": "3.53%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "23.15%", + "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "13.01%", + "Documentation Exposure": "0.0%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "STEP10", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, + "Function Name": "GRANT", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 13, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 11, - "End Line": 16 + "Start Line": 9, + "End Line": 21 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 1, + "Sequential Logic Declarations": 6, "Function Parameters": 0, "Function/Method Declarations": 1, - "Class/Entity Declarations": 0, + "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 1, - "Exposed API / Public Exports": 1, + "I/O and Network Boundaries": 7, + "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, - "Commented-out Code (Dead Logic)": 1, + "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -807737,7 +806934,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 2, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -807750,7 +806947,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 4, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -807767,15 +806964,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 6, + "Core Var Decl": 8, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 6, + "Design Upper Case": 8, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -807783,7 +806980,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, + "Dynamic Code Execution (Eval/Exec)": 2, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -807799,31 +806996,32 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 1, - "Direct Downstream (Dependency Blast Radius)": 1, + "Direct Upstream (Fragility)": 2, + "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 1 + "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "&HLQ..CICSBSA.CBSAMOD" + "DSNC10.PROCLIB", + "DSNC10.SDSNLOAD" ] }, - "jcl/cics-banking-sample-application-cbsa/CREL009.jcl": { + "jcl/cics-banking-sample-application-cbsa/DRPTB01.jcl": { "1. Artifact Identity": { - "Filename": "CREL009.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/CREL009.jcl", + "Filename": "DRPTB01.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/DRPTB01.jcl", "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, "Folder Dominant Lang": "jcl", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -304.12, - "Y": 127.88, - "Z": -2457.52 + "X": 1052.61, + "Y": 34.94, + "Z": -1063.94 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -807832,12 +807030,12 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 26, - "Coding LOC": 11, - "Documentation LOC": 14, - "Structural Magnitude": 4.72, + "Total LOC": 22, + "Coding LOC": 17, + "Documentation LOC": 4, + "Structural Magnitude": 1.94, "Control Flow Ratio": "0.0%", - "Popularity Rank": 1, + "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, @@ -807845,61 +807043,51 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "86.83%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.36%", - "API Exposure": "5.59%", + "Error & Exception Exposure": "76.85%", + "Tech Debt Exposure": "73.11%", + "Testing Exposure": "2.33%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "23.15%", + "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "17.99%", + "Documentation Exposure": "0.0%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "STEP10", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 11, - "End Line": 16 - }, - { - "Function Name": "STEP20", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, + "Function Name": "GRANT", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 13, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 20, - "End Line": 24 + "Start Line": 9, + "End Line": 21 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 5, + "Sequential Logic Declarations": 6, "Function Parameters": 0, - "Function/Method Declarations": 2, - "Class/Entity Declarations": 0, + "Function/Method Declarations": 1, + "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 2, - "I/O and Network Boundaries": 5, - "Exposed API / Public Exports": 2, + "High-Risk Execution Commands": 1, + "I/O and Network Boundaries": 7, + "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, - "Commented-out Code (Dead Logic)": 1, + "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -807917,7 +807105,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 2, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -807930,7 +807118,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 4, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -807947,15 +807135,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 9, + "Core Var Decl": 8, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 9, + "Design Upper Case": 8, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -807963,7 +807151,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, + "Dynamic Code Execution (Eval/Exec)": 2, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -807972,7 +807160,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 2, + "Sec Tainted Injection": 1, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -807980,31 +807168,31 @@ }, "8. Dependency Network": { "Direct Upstream (Fragility)": 2, - "Direct Downstream (Dependency Blast Radius)": 1, + "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 1 + "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "&HLQ..CICSBSA.COBOL", - "&HLQ..CICSBSA.COBOL(EMPTY)" + "DSNC10.PROCLIB", + "DSNC10.SDSNLOAD" ] }, - "jcl/cics-banking-sample-application-cbsa/CREL010.jcl": { + "jcl/cics-banking-sample-application-cbsa/DRPTB02.jcl": { "1. Artifact Identity": { - "Filename": "CREL010.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/CREL010.jcl", + "Filename": "DRPTB02.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/DRPTB02.jcl", "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, "Folder Dominant Lang": "jcl", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 985.36, - "Y": 70.7, - "Z": -2411.44 + "X": -976.36, + "Y": 107.54, + "Z": -2590.86 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -808013,12 +807201,12 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 26, - "Coding LOC": 11, - "Documentation LOC": 14, - "Structural Magnitude": 4.72, + "Total LOC": 22, + "Coding LOC": 17, + "Documentation LOC": 4, + "Structural Magnitude": 1.94, "Control Flow Ratio": "0.0%", - "Popularity Rank": 1, + "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, @@ -808026,61 +807214,51 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "86.83%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.36%", - "API Exposure": "5.59%", + "Error & Exception Exposure": "76.85%", + "Tech Debt Exposure": "73.11%", + "Testing Exposure": "2.33%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "23.15%", + "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "17.99%", + "Documentation Exposure": "0.0%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "STEP10", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 11, - "End Line": 16 - }, - { - "Function Name": "STEP20", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, + "Function Name": "GRANT", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 13, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 20, - "End Line": 24 + "Start Line": 9, + "End Line": 21 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 5, + "Sequential Logic Declarations": 6, "Function Parameters": 0, - "Function/Method Declarations": 2, - "Class/Entity Declarations": 0, + "Function/Method Declarations": 1, + "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 2, - "I/O and Network Boundaries": 5, - "Exposed API / Public Exports": 2, + "High-Risk Execution Commands": 1, + "I/O and Network Boundaries": 7, + "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, - "Commented-out Code (Dead Logic)": 1, + "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -808098,7 +807276,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 2, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -808111,7 +807289,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 4, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -808128,15 +807306,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 9, + "Core Var Decl": 8, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 9, + "Design Upper Case": 8, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -808144,7 +807322,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, + "Dynamic Code Execution (Eval/Exec)": 2, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -808153,7 +807331,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 2, + "Sec Tainted Injection": 1, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -808161,31 +807339,31 @@ }, "8. Dependency Network": { "Direct Upstream (Fragility)": 2, - "Direct Downstream (Dependency Blast Radius)": 1, + "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 1 + "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "&HLQ..CICSBSA.DSECT", - "&HLQ..CICSBSA.DSECT(EMPTY)" + "DSNC10.PROCLIB", + "DSNC10.SDSNLOAD" ] }, - "jcl/cics-banking-sample-application-cbsa/CREL011.jcl": { + "jcl/cics-banking-sample-application-cbsa/DRPTB03.jcl": { "1. Artifact Identity": { - "Filename": "CREL011.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/CREL011.jcl", + "Filename": "DRPTB03.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/DRPTB03.jcl", "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, "Folder Dominant Lang": "jcl", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -88.51, - "Y": 44.48, - "Z": -1834.54 + "X": 1379.06, + "Y": 74.55, + "Z": -2931.56 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -808194,12 +807372,12 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 26, - "Coding LOC": 11, - "Documentation LOC": 14, - "Structural Magnitude": 4.72, + "Total LOC": 22, + "Coding LOC": 17, + "Documentation LOC": 4, + "Structural Magnitude": 1.94, "Control Flow Ratio": "0.0%", - "Popularity Rank": 1, + "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, @@ -808207,61 +807385,51 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "86.83%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.36%", - "API Exposure": "5.59%", + "Error & Exception Exposure": "76.85%", + "Tech Debt Exposure": "73.11%", + "Testing Exposure": "2.33%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "23.15%", + "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "17.99%", + "Documentation Exposure": "0.0%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "STEP10", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 11, - "End Line": 16 - }, - { - "Function Name": "STEP20", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, + "Function Name": "GRANT", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 13, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 20, - "End Line": 24 + "Start Line": 9, + "End Line": 21 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 5, + "Sequential Logic Declarations": 6, "Function Parameters": 0, - "Function/Method Declarations": 2, - "Class/Entity Declarations": 0, + "Function/Method Declarations": 1, + "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 2, - "I/O and Network Boundaries": 5, - "Exposed API / Public Exports": 2, + "High-Risk Execution Commands": 1, + "I/O and Network Boundaries": 7, + "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, - "Commented-out Code (Dead Logic)": 1, + "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -808279,7 +807447,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 2, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -808292,7 +807460,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 4, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -808309,15 +807477,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 9, + "Core Var Decl": 8, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 9, + "Design Upper Case": 8, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -808325,7 +807493,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, + "Dynamic Code Execution (Eval/Exec)": 2, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -808334,7 +807502,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 2, + "Sec Tainted Injection": 1, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -808342,31 +807510,31 @@ }, "8. Dependency Network": { "Direct Upstream (Fragility)": 2, - "Direct Downstream (Dependency Blast Radius)": 1, + "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 1 + "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "&HLQ..CICSBSA.REORG", - "&HLQ..CICSBSA.REORG(EMPTY)" + "DSNC10.PROCLIB", + "DSNC10.SDSNLOAD" ] }, - "jcl/cics-banking-sample-application-cbsa/CRELIBS.jcl": { + "jcl/cics-banking-sample-application-cbsa/DRPTS01.jcl": { "1. Artifact Identity": { - "Filename": "CRELIBS.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/CRELIBS.jcl", + "Filename": "DRPTS01.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/DRPTS01.jcl", "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, "Folder Dominant Lang": "jcl", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -440.0, - "Y": 85.04, - "Z": -2105.85 + "X": -105.47, + "Y": 83.15, + "Z": -881.33 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -808375,10 +807543,10 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 21, - "Coding LOC": 16, + "Total LOC": 22, + "Coding LOC": 17, "Documentation LOC": 4, - "Structural Magnitude": 2.92, + "Structural Magnitude": 1.94, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -808388,12 +807556,12 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "78.34%", - "Tech Debt Exposure": "0.0%", + "Error & Exception Exposure": "76.85%", + "Tech Debt Exposure": "73.11%", "Testing Exposure": "2.33%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "16.8%", + "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", @@ -808403,42 +807571,42 @@ }, "5. Function Analysis": [ { - "Function Name": "IEFBR14", + "Function Name": "GRANT", "Structural Impact": 1.6, "Lines of Code (LOC)": 13, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 8, - "End Line": 20 + "Start Line": 9, + "End Line": 21 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 13, + "Sequential Logic Declarations": 6, "Function Parameters": 0, "Function/Method Declarations": 1, "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 0, + "I/O and Network Boundaries": 7, "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 1, + "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 12, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -808450,7 +807618,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 2, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -808463,7 +807631,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 4, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -808480,15 +807648,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 15, + "Core Var Decl": 8, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 15, + "Design Upper Case": 8, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -808496,7 +807664,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, + "Dynamic Code Execution (Eval/Exec)": 2, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -808505,38 +807673,27 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 0, + "Sec Tainted Injection": 1, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 13, + "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 12, + "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "CBSA.JCL.INSTALL", - "CREDB2L", - "CREL001", - "CREL002", - "CREL003", - "CREL004", - "CREL005", - "CREL006", - "CREL007", - "CREL008", - "CREL009", - "CREL010", - "CREL011" + "DSNC10.PROCLIB", + "DSNC10.SDSNLOAD" ] }, - "jcl/cics-banking-sample-application-cbsa/CRESG01.jcl": { + "jcl/cics-banking-sample-application-cbsa/DRPTS02.jcl": { "1. Artifact Identity": { - "Filename": "CRESG01.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/CRESG01.jcl", + "Filename": "DRPTS02.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/DRPTS02.jcl", "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Spaces", @@ -808546,9 +807703,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 725.53, - "Y": 47.35, - "Z": -1122.6 + "X": -237.94, + "Y": 77.49, + "Z": -3583.87 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -808614,7 +807771,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -808704,10 +807861,10 @@ "DSNC10.SDSNLOAD" ] }, - "jcl/cics-banking-sample-application-cbsa/CRESG02.jcl": { + "jcl/cics-banking-sample-application-cbsa/DRPTS03.jcl": { "1. Artifact Identity": { - "Filename": "CRESG02.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/CRESG02.jcl", + "Filename": "DRPTS03.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/DRPTS03.jcl", "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Spaces", @@ -808717,9 +807874,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -786.89, - "Y": 59.34, - "Z": -2709.34 + "X": 1531.21, + "Y": 49.67, + "Z": -1896.39 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -808785,7 +807942,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -808875,22 +808032,22 @@ "DSNC10.SDSNLOAD" ] }, - "jcl/cics-banking-sample-application-cbsa/CRESG03.jcl": { + "jcl/cics-banking-sample-application-cbsa/EXTDCUST.jcl": { "1. Artifact Identity": { - "Filename": "CRESG03.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/CRESG03.jcl", + "Filename": "EXTDCUST.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/EXTDCUST.jcl", "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, "Folder Dominant Lang": "jcl", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 1411.36, - "Y": 32.74, - "Z": -2489.64 + "X": -1229.41, + "Y": 139.06, + "Z": -1697.25 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -808899,10 +808056,10 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 22, - "Coding LOC": 17, + "Total LOC": 8, + "Coding LOC": 3, "Documentation LOC": 4, - "Structural Magnitude": 1.94, + "Structural Magnitude": 1.16, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -808912,9 +808069,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.33%", + "Testing Exposure": "2.31%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -808927,27 +808084,27 @@ }, "5. Function Analysis": [ { - "Function Name": "GRANT", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 13, + "Function Name": "Unknown_Block", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 9, - "End Line": 21 + "Start Line": 7, + "End Line": 7 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 6, + "Sequential Logic Declarations": 1, "Function Parameters": 0, "Function/Method Declarations": 1, - "Class/Entity Declarations": 1, + "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 7, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -808962,7 +808119,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -808974,7 +808131,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 2, + "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -808987,7 +808144,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 4, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -809004,11 +808161,11 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 8, + "Core Var Decl": 2, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 8, + "Design Upper Case": 2, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, @@ -809020,7 +808177,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 2, + "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -809029,7 +808186,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -809038,30 +808195,30 @@ "8. Dependency Network": { "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, + "Total Upstream (Absolute Fragility)": 1, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "DSNC10.PROCLIB", - "DSNC10.SDSNLOAD" + "CTSSVT.CICSBSA.BUILDJCL", + "DEFAULT" ] }, - "jcl/cics-banking-sample-application-cbsa/CRETB01.jcl": { + "jcl/cics-banking-sample-application-cbsa/GETCOMPY.jcl": { "1. Artifact Identity": { - "Filename": "CRETB01.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/CRETB01.jcl", + "Filename": "GETCOMPY.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/GETCOMPY.jcl", "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, "Folder Dominant Lang": "jcl", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 895.19, - "Y": 83.44, - "Z": -1831.77 + "X": 1281.4, + "Y": 29.86, + "Z": -2219.06 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -809070,10 +808227,10 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 37, - "Coding LOC": 32, + "Total LOC": 8, + "Coding LOC": 3, "Documentation LOC": 4, - "Structural Magnitude": 3.04, + "Structural Magnitude": 2.16, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -809083,43 +808240,43 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", - "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.34%", - "API Exposure": "0.0%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "2.31%", + "API Exposure": "3.53%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", + "Documentation Exposure": "16.56%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "GRANT", - "Structural Impact": 2.4, - "Lines of Code (LOC)": 28, + "Function Name": "Unknown_Block", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 9, - "End Line": 36 + "Start Line": 7, + "End Line": 7 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 6, + "Sequential Logic Declarations": 1, "Function Parameters": 0, "Function/Method Declarations": 1, - "Class/Entity Declarations": 1, + "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 7, - "Exposed API / Public Exports": 0, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -809133,7 +808290,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -809145,7 +808302,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 2, + "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -809158,7 +808315,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 17, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -809175,15 +808332,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 8, + "Core Var Decl": 2, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 8, + "Design Upper Case": 2, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -809191,7 +808348,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 2, + "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -809200,7 +808357,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -809209,30 +808366,30 @@ "8. Dependency Network": { "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 + "Total Upstream (Absolute Fragility)": 1, + "Total Downstream (Absolute Dependency Blast Radius)": 1 }, "9. Extracted Dependencies": [ - "DSNC10.PROCLIB", - "DSNC10.SDSNLOAD" + "CBSA.CICSBSA.BUILDJCL", + "DEFAULT" ] }, - "jcl/cics-banking-sample-application-cbsa/CRETB02.jcl": { + "jcl/cics-banking-sample-application-cbsa/GETSCODE.jcl": { "1. Artifact Identity": { - "Filename": "CRETB02.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/CRETB02.jcl", + "Filename": "GETSCODE.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/GETSCODE.jcl", "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, "Folder Dominant Lang": "jcl", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 838.39, - "Y": 105.1, - "Z": -2725.7 + "X": -408.31, + "Y": 75.09, + "Z": -1320.71 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -809241,10 +808398,10 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 35, - "Coding LOC": 30, + "Total LOC": 8, + "Coding LOC": 3, "Documentation LOC": 4, - "Structural Magnitude": 2.9, + "Structural Magnitude": 2.16, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -809254,43 +808411,43 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", - "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.34%", - "API Exposure": "0.0%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "2.31%", + "API Exposure": "3.53%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", + "Documentation Exposure": "16.56%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "GRANT", - "Structural Impact": 2.3, - "Lines of Code (LOC)": 26, + "Function Name": "Unknown_Block", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 9, - "End Line": 34 + "Start Line": 7, + "End Line": 7 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 6, + "Sequential Logic Declarations": 1, "Function Parameters": 0, "Function/Method Declarations": 1, - "Class/Entity Declarations": 1, + "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 7, - "Exposed API / Public Exports": 0, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -809304,7 +808461,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -809316,7 +808473,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 2, + "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -809329,7 +808486,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 15, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -809346,15 +808503,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 8, + "Core Var Decl": 2, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 8, + "Design Upper Case": 2, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -809362,7 +808519,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 2, + "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -809371,7 +808528,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -809380,30 +808537,30 @@ "8. Dependency Network": { "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 + "Total Upstream (Absolute Fragility)": 1, + "Total Downstream (Absolute Dependency Blast Radius)": 1 }, "9. Extracted Dependencies": [ - "DSNC10.PROCLIB", - "DSNC10.SDSNLOAD" + "CBSA.CICSBSA.BUILDJCL", + "DEFAULT" ] }, - "jcl/cics-banking-sample-application-cbsa/CRETB03.jcl": { + "jcl/cics-banking-sample-application-cbsa/INQACC.jcl": { "1. Artifact Identity": { - "Filename": "CRETB03.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/CRETB03.jcl", + "Filename": "INQACC.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/INQACC.jcl", "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, "Folder Dominant Lang": "jcl", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 221.12, - "Y": 68.15, - "Z": -1366.65 + "X": 327.12, + "Y": 40.92, + "Z": -3280.65 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -809412,10 +808569,10 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 29, - "Coding LOC": 23, + "Total LOC": 8, + "Coding LOC": 3, "Documentation LOC": 4, - "Structural Magnitude": 2.46, + "Structural Magnitude": 2.16, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -809425,43 +808582,43 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", - "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.34%", - "API Exposure": "0.0%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "2.31%", + "API Exposure": "3.53%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", + "Documentation Exposure": "16.56%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "GRANT", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 20, + "Function Name": "Unknown_Block", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 9, - "End Line": 28 + "Start Line": 7, + "End Line": 7 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 6, + "Sequential Logic Declarations": 1, "Function Parameters": 0, "Function/Method Declarations": 1, - "Class/Entity Declarations": 1, + "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 7, - "Exposed API / Public Exports": 0, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -809475,7 +808632,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -809487,7 +808644,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 2, + "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -809500,7 +808657,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 8, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -809517,15 +808674,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 8, + "Core Var Decl": 2, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 8, + "Design Upper Case": 2, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -809533,7 +808690,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 2, + "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -809542,7 +808699,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -809551,30 +808708,30 @@ "8. Dependency Network": { "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 + "Total Upstream (Absolute Fragility)": 1, + "Total Downstream (Absolute Dependency Blast Radius)": 2 }, "9. Extracted Dependencies": [ - "DSNC10.PROCLIB", - "DSNC10.SDSNLOAD" + "CBSA.CICSBSA.BUILDJCL", + "DEFAULT" ] }, - "jcl/cics-banking-sample-application-cbsa/CRETS01.jcl": { + "jcl/cics-banking-sample-application-cbsa/INQACCCU.jcl": { "1. Artifact Identity": { - "Filename": "CRETS01.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/CRETS01.jcl", + "Filename": "INQACCCU.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/INQACCCU.jcl", "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, "Folder Dominant Lang": "jcl", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -330.93, - "Y": 47.69, - "Z": -1135.36 + "X": 980.0, + "Y": 17.53, + "Z": -1560.12 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -809583,10 +808740,10 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 22, - "Coding LOC": 17, + "Total LOC": 8, + "Coding LOC": 3, "Documentation LOC": 4, - "Structural Magnitude": 1.94, + "Structural Magnitude": 2.16, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -809596,43 +808753,43 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", - "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.33%", - "API Exposure": "0.0%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "2.31%", + "API Exposure": "3.53%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", + "Documentation Exposure": "16.56%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "GRANT", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 13, + "Function Name": "Unknown_Block", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 9, - "End Line": 21 + "Start Line": 7, + "End Line": 7 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 6, + "Sequential Logic Declarations": 1, "Function Parameters": 0, "Function/Method Declarations": 1, - "Class/Entity Declarations": 1, + "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 7, - "Exposed API / Public Exports": 0, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -809646,7 +808803,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -809658,7 +808815,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 2, + "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -809671,7 +808828,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 4, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -809688,15 +808845,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 8, + "Core Var Decl": 2, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 8, + "Design Upper Case": 2, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -809704,7 +808861,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 2, + "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -809713,7 +808870,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -809722,30 +808879,30 @@ "8. Dependency Network": { "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 + "Total Upstream (Absolute Fragility)": 1, + "Total Downstream (Absolute Dependency Blast Radius)": 4 }, "9. Extracted Dependencies": [ - "DSNC10.PROCLIB", - "DSNC10.SDSNLOAD" + "CBSA.CICSBSA.BUILDJCL", + "DEFAULT" ] }, - "jcl/cics-banking-sample-application-cbsa/CRETS02.jcl": { + "jcl/cics-banking-sample-application-cbsa/INQCUST.jcl": { "1. Artifact Identity": { - "Filename": "CRETS02.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/CRETS02.jcl", + "Filename": "INQCUST.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/INQCUST.jcl", "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, "Folder Dominant Lang": "jcl", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 48.29, - "Y": 114.88, - "Z": -3296.64 + "X": -800.75, + "Y": 78.66, + "Z": -2496.87 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -809754,10 +808911,10 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 22, - "Coding LOC": 17, + "Total LOC": 8, + "Coding LOC": 3, "Documentation LOC": 4, - "Structural Magnitude": 1.94, + "Structural Magnitude": 2.16, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -809767,43 +808924,43 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", - "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.33%", - "API Exposure": "0.0%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "2.31%", + "API Exposure": "3.53%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", + "Documentation Exposure": "16.56%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "GRANT", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 13, + "Function Name": "Unknown_Block", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 9, - "End Line": 21 + "Start Line": 7, + "End Line": 7 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 6, + "Sequential Logic Declarations": 1, "Function Parameters": 0, "Function/Method Declarations": 1, - "Class/Entity Declarations": 1, + "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 7, - "Exposed API / Public Exports": 0, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -809817,7 +808974,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -809829,7 +808986,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 2, + "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -809842,7 +808999,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 4, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -809859,15 +809016,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 8, + "Core Var Decl": 2, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 8, + "Design Upper Case": 2, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -809875,7 +809032,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 2, + "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -809884,7 +809041,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -809893,18 +809050,18 @@ "8. Dependency Network": { "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 + "Total Upstream (Absolute Fragility)": 1, + "Total Downstream (Absolute Dependency Blast Radius)": 5 }, "9. Extracted Dependencies": [ - "DSNC10.PROCLIB", - "DSNC10.SDSNLOAD" + "CBSA.CICSBSA.BUILDJCL", + "DEFAULT" ] }, - "jcl/cics-banking-sample-application-cbsa/CRETS03.jcl": { + "jcl/cics-banking-sample-application-cbsa/INSTDB2.jcl": { "1. Artifact Identity": { - "Filename": "CRETS03.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/CRETS03.jcl", + "Filename": "INSTDB2.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/INSTDB2.jcl", "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Spaces", @@ -809914,9 +809071,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 1223.92, - "Y": 74.42, - "Z": -1535.6 + "X": 868.04, + "Y": 20.31, + "Z": -1946.84 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -809925,10 +809082,10 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 22, - "Coding LOC": 17, - "Documentation LOC": 4, - "Structural Magnitude": 1.94, + "Total LOC": 106, + "Coding LOC": 73, + "Documentation LOC": 17, + "Structural Magnitude": 5.46, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -809938,9 +809095,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", - "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.33%", + "Error & Exception Exposure": "71.16%", + "Tech Debt Exposure": "47.43%", + "Testing Exposure": "2.34%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -809954,19 +809111,19 @@ "5. Function Analysis": [ { "Function Name": "GRANT", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 13, + "Structural Impact": 4.0, + "Lines of Code (LOC)": 90, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 9, - "End Line": 21 + "Start Line": 16, + "End Line": 105 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 6, + "Sequential Logic Declarations": 7, "Function Parameters": 0, "Function/Method Declarations": 1, "Class/Entity Declarations": 1, @@ -809982,13 +809139,13 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 2, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -810013,7 +809170,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 4, + "Structural Space Indentations": 38, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -810030,11 +809187,11 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 8, + "Core Var Decl": 10, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 8, + "Design Upper Case": 10, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, @@ -810062,32 +809219,33 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, + "Direct Upstream (Fragility)": 3, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, + "Total Upstream (Absolute Fragility)": 1, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "DSNC10.PROCLIB", - "DSNC10.SDSNLOAD" + "&DB2HLQ..SDSNLOAD", + "CBSA.DB2.JCL.INSTALL", + "DEFAULT" ] }, - "jcl/cics-banking-sample-application-cbsa/DB2BIND.jcl": { + "jcl/cics-banking-sample-application-cbsa/MAPGEN.jcl": { "1. Artifact Identity": { - "Filename": "DB2BIND.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/DB2BIND.jcl", + "Filename": "MAPGEN.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/MAPGEN.jcl", "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, "Folder Dominant Lang": "jcl", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 712.49, - "Y": 36.89, - "Z": -2479.63 + "X": 173.12, + "Y": 54.15, + "Z": -1841.05 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -810096,10 +809254,10 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 110, - "Coding LOC": 89, - "Documentation LOC": 9, - "Structural Magnitude": 8.58, + "Total LOC": 50, + "Coding LOC": 43, + "Documentation LOC": 6, + "Structural Magnitude": 8.46, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -810109,53 +809267,73 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "77.05%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.36%", - "API Exposure": "0.0%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "99.91%", + "Testing Exposure": "2.38%", + "API Exposure": "3.53%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", + "Documentation Exposure": "15.3%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "BIND", - "Structural Impact": 4.8, - "Lines of Code (LOC)": 75, + "Function Name": "ASMDSECT", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 40, + "End Line": 49 + }, + { + "Function Name": "LINKMAP", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 33, + "End Line": 38 + }, + { + "Function Name": "ASMMAP", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 13, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 12, - "End Line": 86 + "Start Line": 20, + "End Line": 32 }, { - "Function Name": "GRANT", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 20, + "Function Name": "COPY", + "Structural Impact": 1.4, + "Lines of Code (LOC)": 7, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 90, - "End Line": 109 + "Start Line": 13, + "End Line": 19 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 24, - "Function Parameters": 0, - "Function/Method Declarations": 2, - "Class/Entity Declarations": 1, + "Sequential Logic Declarations": 25, + "Function Parameters": 3, + "Function/Method Declarations": 4, + "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 2, - "I/O and Network Boundaries": 38, - "Exposed API / Public Exports": 0, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 28, + "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -810169,7 +809347,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -810181,20 +809359,20 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 2, + "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, "Bitwise Operations": 0, - "Thread Synchronization Locks": 0, + "Thread Synchronization Locks": 4, "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, + "Resource Deallocation & Cleanup": 2, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 8, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -810211,15 +809389,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 27, + "Core Var Decl": 41, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 27, - "Design Short Vars": 0, + "Design Upper Case": 41, + "Design Short Vars": 1, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 4, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -810227,7 +809405,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 3, + "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -810236,51 +809414,42 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 2, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 14, + "Direct Upstream (Fragility)": 5, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 1, + "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "&BANKDBRM(BANKDATA)", - "&BANKDBRM(CREACC)", - "&BANKDBRM(CRECUST)", - "&BANKDBRM(DBCRFUN)", - "&BANKDBRM(DELACC)", - "&BANKDBRM(DELCUS)", - "&BANKDBRM(INQACC)", - "&BANKDBRM(INQACCCU)", - "&BANKDBRM(UPDACC)", - "&BANKDBRM(XFRFUN)", - "&DB2HLQ..SDSNEXIT", - "&DB2HLQ..SDSNLOAD", - "CBSA.DB2.JCL.INSTALL", - "DEFAULT" + "&CBSAHLQ..BMS(&MEMBER)", + "&CBSAHLQ..DSECT(&MEMBER)", + "&CBSAHLQ..LOADLIB(&MEMBER)", + "&CICSHLQ..SDFHMAC", + "SYS1.MACLIB" ] }, - "jcl/cics-banking-sample-application-cbsa/DBCRFUN.jcl": { + "jcl/cics-banking-sample-application-cbsa/RACF001.jcl": { "1. Artifact Identity": { - "Filename": "DBCRFUN.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/DBCRFUN.jcl", + "Filename": "RACF001.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/RACF001.jcl", "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, "Folder Dominant Lang": "jcl", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 1854.69, - "Y": -1.04, - "Z": -1755.71 + "X": -955.94, + "Y": 107.25, + "Z": -1683.66 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -810289,10 +809458,10 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 8, - "Coding LOC": 3, + "Total LOC": 20, + "Coding LOC": 15, "Documentation LOC": 4, - "Structural Magnitude": 1.16, + "Structural Magnitude": 1.9, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -810302,9 +809471,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.31%", + "Error & Exception Exposure": "76.85%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "2.33%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -810317,27 +809486,27 @@ }, "5. Function Analysis": [ { - "Function Name": "Unknown_Block", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, + "Function Name": "TSO", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 12, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 7, - "End Line": 7 + "Start Line": 8, + "End Line": 19 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 1, + "Sequential Logic Declarations": 4, "Function Parameters": 0, "Function/Method Declarations": 1, - "Class/Entity Declarations": 0, + "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, + "High-Risk Execution Commands": 1, + "I/O and Network Boundaries": 4, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -810352,7 +809521,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -810364,7 +809533,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 2, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -810377,7 +809546,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 2, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -810394,15 +809563,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 2, + "Core Var Decl": 6, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 2, + "Design Upper Case": 6, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -810410,7 +809579,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, + "Dynamic Code Execution (Eval/Exec)": 1, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -810419,39 +809588,36 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 0, + "Sec Tainted Injection": 1, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, + "Direct Upstream (Fragility)": 0, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 1, + "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [ - "CBSA.CICSBSA.BUILDJCL", - "DEFAULT" - ] + "9. Extracted Dependencies": [] }, - "jcl/cics-banking-sample-application-cbsa/DEFAULT.jcl": { + "jcl/cics-banking-sample-application-cbsa/REPLCICS.jcl": { "1. Artifact Identity": { - "Filename": "DEFAULT.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/DEFAULT.jcl", + "Filename": "REPLCICS.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/REPLCICS.jcl", "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, "Folder Dominant Lang": "jcl", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 90.67, - "Y": 88.14, - "Z": -2113.31 + "X": 1358.19, + "Y": 39.09, + "Z": -2077.51 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -810460,12 +809626,12 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 48, - "Coding LOC": 9, - "Documentation LOC": 38, - "Structural Magnitude": 23.68, + "Total LOC": 22, + "Coding LOC": 17, + "Documentation LOC": 4, + "Structural Magnitude": 2.04, "Control Flow Ratio": "0.0%", - "Popularity Rank": 44, + "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, @@ -810473,33 +809639,44 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "78.34%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.3%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "73.11%", + "Testing Exposure": "2.32%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "99.18%", + "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "0.0%", + "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", "Documentation Exposure": "0.0%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [], + "5. Function Analysis": [ + { + "Function Name": "JOBSTEP", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 14, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 8, + "End Line": 21 + } + ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 9, + "Sequential Logic Declarations": 7, "Function Parameters": 0, - "Function/Method Declarations": 0, - "Class/Entity Declarations": 0, + "Function/Method Declarations": 1, + "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, + "I/O and Network Boundaries": 7, "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 9, + "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, @@ -810524,7 +809701,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 2, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -810537,7 +809714,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 2, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -810554,15 +809731,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 9, + "Core Var Decl": 14, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 9, + "Design Upper Case": 14, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -810586,29 +809763,32 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 0, - "Direct Downstream (Dependency Blast Radius)": 44, + "Direct Upstream (Fragility)": 2, + "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 65 + "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [] + "9. Extracted Dependencies": [ + "CBSA.JCL.INSTALL", + "FEU.Z25A.PROCLIB" + ] }, - "jcl/cics-banking-sample-application-cbsa/DELACC.jcl": { + "jcl/cics-banking-sample-application-cbsa/REPLSIP.jcl": { "1. Artifact Identity": { - "Filename": "DELACC.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/DELACC.jcl", + "Filename": "REPLSIP.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/REPLSIP.jcl", "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, "Folder Dominant Lang": "jcl", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 486.05, - "Y": 98.77, - "Z": -1438.36 + "X": -755.48, + "Y": 126.68, + "Z": -1637.07 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -810617,10 +809797,10 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 8, - "Coding LOC": 3, + "Total LOC": 22, + "Coding LOC": 17, "Documentation LOC": 4, - "Structural Magnitude": 2.16, + "Structural Magnitude": 2.04, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -810631,42 +809811,42 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.31%", - "API Exposure": "3.53%", + "Tech Debt Exposure": "73.11%", + "Testing Exposure": "2.32%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "16.56%", + "Documentation Exposure": "0.0%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "Unknown_Block", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, + "Function Name": "JOBSTEP", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 14, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 7, - "End Line": 7 + "Start Line": 8, + "End Line": 21 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 1, + "Sequential Logic Declarations": 7, "Function Parameters": 0, "Function/Method Declarations": 1, - "Class/Entity Declarations": 0, + "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 1, + "I/O and Network Boundaries": 7, + "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -810680,7 +809860,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -810692,7 +809872,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 2, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -810705,7 +809885,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 2, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -810722,15 +809902,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 2, + "Core Var Decl": 14, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 2, + "Design Upper Case": 14, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -810756,18 +809936,18 @@ "8. Dependency Network": { "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 1, - "Total Downstream (Absolute Dependency Blast Radius)": 1 + "Total Upstream (Absolute Fragility)": 0, + "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "CBSA.CICSBSA.BUILDJCL", - "DEFAULT" + "CBSA.JCL.INSTALL", + "DFH560.SYSIN" ] }, - "jcl/cics-banking-sample-application-cbsa/DELCUS.jcl": { + "jcl/cics-banking-sample-application-cbsa/RESTCICS.jcl": { "1. Artifact Identity": { - "Filename": "DELCUS.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/DELCUS.jcl", + "Filename": "RESTCICS.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/RESTCICS.jcl", "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Neutral / No Indentation", @@ -810777,9 +809957,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -506.89, - "Y": 71.31, - "Z": -2703.68 + "X": -823.36, + "Y": 95.33, + "Z": -2963.92 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -810788,10 +809968,10 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 8, - "Coding LOC": 3, - "Documentation LOC": 4, - "Structural Magnitude": 2.16, + "Total LOC": 14, + "Coding LOC": 8, + "Documentation LOC": 5, + "Structural Magnitude": 1.36, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -810801,43 +809981,43 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.31%", - "API Exposure": "3.53%", + "Error & Exception Exposure": "76.85%", + "Tech Debt Exposure": "73.11%", + "Testing Exposure": "2.33%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "16.56%", + "Documentation Exposure": "0.0%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "Unknown_Block", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, + "Function Name": "STEP0001", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 7, - "End Line": 7 + "Start Line": 8, + "End Line": 12 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 1, + "Sequential Logic Declarations": 2, "Function Parameters": 0, "Function/Method Declarations": 1, - "Class/Entity Declarations": 0, + "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, + "High-Risk Execution Commands": 1, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 1, + "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -810851,7 +810031,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -810863,7 +810043,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 2, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -810893,15 +810073,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 2, + "Core Var Decl": 3, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 2, + "Design Upper Case": 3, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -810909,7 +810089,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, + "Dynamic Code Execution (Eval/Exec)": 1, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -810925,32 +810105,29 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, + "Direct Upstream (Fragility)": 0, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 1, - "Total Downstream (Absolute Dependency Blast Radius)": 2 + "Total Upstream (Absolute Fragility)": 0, + "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [ - "CBSA.CICSBSA.BUILDJCL", - "DEFAULT" - ] + "9. Extracted Dependencies": [] }, - "jcl/cics-banking-sample-application-cbsa/DROPDB2.jcl": { + "jcl/cics-banking-sample-application-cbsa/RESTZOSC.jcl": { "1. Artifact Identity": { - "Filename": "DROPDB2.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/DROPDB2.jcl", + "Filename": "RESTZOSC.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/RESTZOSC.jcl", "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, "Folder Dominant Lang": "jcl", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 188.48, - "Y": 54.46, - "Z": -2855.26 + "X": 1641.21, + "Y": -0.78, + "Z": -2558.8 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -810959,10 +810136,10 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 39, - "Coding LOC": 29, - "Documentation LOC": 4, - "Structural Magnitude": 3.08, + "Total LOC": 14, + "Coding LOC": 8, + "Documentation LOC": 5, + "Structural Magnitude": 1.36, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -810974,7 +810151,7 @@ "Cognitive Load Exposure": "0.0%", "Error & Exception Exposure": "76.85%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.34%", + "Testing Exposure": "2.33%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -810987,27 +810164,27 @@ }, "5. Function Analysis": [ { - "Function Name": "GRANT", - "Structural Impact": 2.5, - "Lines of Code (LOC)": 30, + "Function Name": "STEP0001", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 9, - "End Line": 38 + "Start Line": 8, + "End Line": 12 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 6, + "Sequential Logic Declarations": 2, "Function Parameters": 0, "Function/Method Declarations": 1, "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 7, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -811047,7 +810224,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 4, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -811064,11 +810241,11 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 8, + "Core Var Decl": 3, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 8, + "Design Upper Case": 3, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, @@ -811080,7 +810257,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 2, + "Dynamic Code Execution (Eval/Exec)": 1, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -811089,39 +810266,36 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, + "Direct Upstream (Fragility)": 0, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [ - "DSNC10.PROCLIB", - "DSNC10.SDSNLOAD" - ] + "9. Extracted Dependencies": [] }, - "jcl/cics-banking-sample-application-cbsa/DRPDB00.jcl": { + "jcl/cics-banking-sample-application-cbsa/SHUTCICS.jcl": { "1. Artifact Identity": { - "Filename": "DRPDB00.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/DRPDB00.jcl", + "Filename": "SHUTCICS.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/SHUTCICS.jcl", "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, "Folder Dominant Lang": "jcl", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -909.98, - "Y": 119.16, - "Z": -2213.4 + "X": -607.35, + "Y": 72.27, + "Z": -1232.23 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -811130,10 +810304,10 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 22, - "Coding LOC": 17, - "Documentation LOC": 4, - "Structural Magnitude": 1.94, + "Total LOC": 14, + "Coding LOC": 8, + "Documentation LOC": 5, + "Structural Magnitude": 1.36, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -811158,27 +810332,27 @@ }, "5. Function Analysis": [ { - "Function Name": "GRANT", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 13, + "Function Name": "STEP0001", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 9, - "End Line": 21 + "Start Line": 8, + "End Line": 12 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 6, + "Sequential Logic Declarations": 2, "Function Parameters": 0, "Function/Method Declarations": 1, "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 7, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -811218,7 +810392,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 4, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -811235,11 +810409,11 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 8, + "Core Var Decl": 3, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 8, + "Design Upper Case": 3, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, @@ -811251,7 +810425,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 2, + "Dynamic Code Execution (Eval/Exec)": 1, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -811260,39 +810434,36 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, + "Direct Upstream (Fragility)": 0, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [ - "DSNC10.PROCLIB", - "DSNC10.SDSNLOAD" - ] + "9. Extracted Dependencies": [] }, - "jcl/cics-banking-sample-application-cbsa/DRPI101.jcl": { + "jcl/cics-banking-sample-application-cbsa/SHUTZOSC.jcl": { "1. Artifact Identity": { - "Filename": "DRPI101.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/DRPI101.jcl", + "Filename": "SHUTZOSC.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/SHUTZOSC.jcl", "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, "Folder Dominant Lang": "jcl", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 1109.99, - "Y": 22.41, - "Z": -3192.15 + "X": 172.91, + "Y": 79.17, + "Z": -3677.07 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -811301,10 +810472,10 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 22, - "Coding LOC": 17, - "Documentation LOC": 4, - "Structural Magnitude": 1.94, + "Total LOC": 14, + "Coding LOC": 8, + "Documentation LOC": 5, + "Structural Magnitude": 1.36, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -811329,27 +810500,27 @@ }, "5. Function Analysis": [ { - "Function Name": "GRANT", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 13, + "Function Name": "STEP0001", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 9, - "End Line": 21 + "Start Line": 8, + "End Line": 12 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 6, + "Sequential Logic Declarations": 2, "Function Parameters": 0, "Function/Method Declarations": 1, "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 7, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -811389,7 +810560,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 4, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -811406,11 +810577,11 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 8, + "Core Var Decl": 3, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 8, + "Design Upper Case": 3, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, @@ -811422,7 +810593,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 2, + "Dynamic Code Execution (Eval/Exec)": 1, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -811431,39 +810602,36 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, + "Direct Upstream (Fragility)": 0, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [ - "DSNC10.PROCLIB", - "DSNC10.SDSNLOAD" - ] + "9. Extracted Dependencies": [] }, - "jcl/cics-banking-sample-application-cbsa/DRPI201.jcl": { + "jcl/cics-banking-sample-application-cbsa/UPDACC.jcl": { "1. Artifact Identity": { - "Filename": "DRPI201.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/DRPI201.jcl", + "Filename": "UPDACC.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/UPDACC.jcl", "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, "Folder Dominant Lang": "jcl", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 345.74, - "Y": 83.0, - "Z": -971.07 + "X": 1173.27, + "Y": 59.04, + "Z": -2852.23 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -811472,10 +810640,10 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 22, - "Coding LOC": 17, + "Total LOC": 8, + "Coding LOC": 3, "Documentation LOC": 4, - "Structural Magnitude": 1.94, + "Structural Magnitude": 2.16, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -811485,43 +810653,43 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", - "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.33%", - "API Exposure": "0.0%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "2.31%", + "API Exposure": "3.53%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", + "Documentation Exposure": "16.56%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "GRANT", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 13, + "Function Name": "Unknown_Block", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 9, - "End Line": 21 + "Start Line": 7, + "End Line": 7 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 6, + "Sequential Logic Declarations": 1, "Function Parameters": 0, "Function/Method Declarations": 1, - "Class/Entity Declarations": 1, + "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 7, - "Exposed API / Public Exports": 0, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -811535,7 +810703,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -811547,7 +810715,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 2, + "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -811560,7 +810728,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 4, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -811577,15 +810745,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 8, + "Core Var Decl": 2, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 8, + "Design Upper Case": 2, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -811593,7 +810761,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 2, + "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -811602,7 +810770,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -811611,30 +810779,30 @@ "8. Dependency Network": { "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 + "Total Upstream (Absolute Fragility)": 1, + "Total Downstream (Absolute Dependency Blast Radius)": 1 }, "9. Extracted Dependencies": [ - "DSNC10.PROCLIB", - "DSNC10.SDSNLOAD" + "CBSA.CICSBSA.BUILDJCL", + "DEFAULT" ] }, - "jcl/cics-banking-sample-application-cbsa/DRPI301.jcl": { + "jcl/cics-banking-sample-application-cbsa/UPDCUST.jcl": { "1. Artifact Identity": { - "Filename": "DRPI301.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/DRPI301.jcl", + "Filename": "UPDCUST.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/UPDCUST.jcl", "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, "Folder Dominant Lang": "jcl", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -574.1, - "Y": 112.18, - "Z": -3081.56 + "X": 68.17, + "Y": 38.89, + "Z": -1191.01 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -811643,10 +810811,10 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 22, - "Coding LOC": 17, - "Documentation LOC": 4, - "Structural Magnitude": 1.94, + "Total LOC": 9, + "Coding LOC": 3, + "Documentation LOC": 5, + "Structural Magnitude": 2.16, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -811656,43 +810824,43 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", - "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.33%", - "API Exposure": "0.0%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "2.31%", + "API Exposure": "3.53%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", + "Documentation Exposure": "15.92%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "GRANT", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 13, + "Function Name": "Unknown_Block", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 9, - "End Line": 21 + "Start Line": 8, + "End Line": 8 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 6, + "Sequential Logic Declarations": 1, "Function Parameters": 0, "Function/Method Declarations": 1, - "Class/Entity Declarations": 1, + "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 7, - "Exposed API / Public Exports": 0, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -811706,7 +810874,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -811718,7 +810886,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 2, + "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -811731,7 +810899,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 4, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -811748,15 +810916,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 8, + "Core Var Decl": 2, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 8, + "Design Upper Case": 2, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -811764,7 +810932,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 2, + "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -811773,7 +810941,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -811782,30 +810950,30 @@ "8. Dependency Network": { "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 + "Total Upstream (Absolute Fragility)": 1, + "Total Downstream (Absolute Dependency Blast Radius)": 2 }, "9. Extracted Dependencies": [ - "DSNC10.PROCLIB", - "DSNC10.SDSNLOAD" + "CBSA.CICSBSA.BUILDJCL", + "DEFAULT" ] }, - "jcl/cics-banking-sample-application-cbsa/DRPSG01.jcl": { + "jcl/cics-banking-sample-application-cbsa/XFRFUN.jcl": { "1. Artifact Identity": { - "Filename": "DRPSG01.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/DRPSG01.jcl", + "Filename": "XFRFUN.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/XFRFUN.jcl", "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, "Folder Dominant Lang": "jcl", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 1516.43, - "Y": 72.69, - "Z": -2314.29 + "X": -264.18, + "Y": 59.67, + "Z": -3111.83 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -811814,10 +810982,10 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 22, - "Coding LOC": 17, + "Total LOC": 8, + "Coding LOC": 3, "Documentation LOC": 4, - "Structural Magnitude": 1.94, + "Structural Magnitude": 2.16, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -811827,43 +810995,43 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", - "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.33%", - "API Exposure": "0.0%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "2.31%", + "API Exposure": "3.53%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", + "Documentation Exposure": "16.56%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "GRANT", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 13, + "Function Name": "Unknown_Block", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 9, - "End Line": 21 + "Start Line": 7, + "End Line": 7 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 6, + "Sequential Logic Declarations": 1, "Function Parameters": 0, "Function/Method Declarations": 1, - "Class/Entity Declarations": 1, + "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 7, - "Exposed API / Public Exports": 0, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -811877,7 +811045,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -811889,7 +811057,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 2, + "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -811902,7 +811070,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 4, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -811919,15 +811087,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 8, + "Core Var Decl": 2, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 8, + "Design Upper Case": 2, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -811935,7 +811103,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 2, + "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -811944,7 +811112,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -811953,30 +811121,30 @@ "8. Dependency Network": { "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 + "Total Upstream (Absolute Fragility)": 1, + "Total Downstream (Absolute Dependency Blast Radius)": 1 }, "9. Extracted Dependencies": [ - "DSNC10.PROCLIB", - "DSNC10.SDSNLOAD" + "CBSA.CICSBSA.BUILDJCL", + "DEFAULT" ] }, - "jcl/cics-banking-sample-application-cbsa/DRPSG02.jcl": { + "jcl/cics-banking-sample-application-cbsa/ZOSCSEC.jcl": { "1. Artifact Identity": { - "Filename": "DRPSG02.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/DRPSG02.jcl", + "Filename": "ZOSCSEC.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/ZOSCSEC.jcl", "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, "Folder Dominant Lang": "jcl", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -682.4, - "Y": 109.0, - "Z": -1343.32 + "X": 891.33, + "Y": 97.13, + "Z": -3572.74 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -811985,10 +811153,10 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 22, - "Coding LOC": 17, - "Documentation LOC": 4, - "Structural Magnitude": 1.94, + "Total LOC": 14, + "Coding LOC": 8, + "Documentation LOC": 5, + "Structural Magnitude": 1.86, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -812013,27 +811181,27 @@ }, "5. Function Analysis": [ { - "Function Name": "GRANT", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 13, + "Function Name": "BPXIT", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, "Control Flow Branches": 0, - "Input Parameters": 0, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 9, - "End Line": 21 + "Start Line": 8, + "End Line": 13 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 6, - "Function Parameters": 0, + "Sequential Logic Declarations": 2, + "Function Parameters": 1, "Function/Method Declarations": 1, "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 7, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -812073,7 +811241,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 4, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -812090,11 +811258,11 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 8, + "Core Var Decl": 3, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 8, + "Design Upper Case": 3, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, @@ -812106,60 +811274,82 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 2, + "Dynamic Code Execution (Eval/Exec)": 1, "Global Environment Mutation": 0, - "Commented-Out Executable Logic": 0, + "Commented-Out Executable Logic": 1, "Low-Level Bitwise / Cryptographic Math": 0, "Non-Standard / Steganographic Imports": 0, "Non-Standard Unicode / Homoglyphs": 0, "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, + "Direct Upstream (Fragility)": 0, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [ - "DSNC10.PROCLIB", - "DSNC10.SDSNLOAD" - ] - }, - "jcl/cics-banking-sample-application-cbsa/DRPSG03.jcl": { + "9. Extracted Dependencies": [] + } + } + }, + "sqlite/mediawiki_sqlite_tables": { + "Directory Group Magnitude": 315.54, + "File Count": 11, + "Ecosystem Fingerprint (Archetypes)": { + "Unclassified": "90.9%", + "Static: Literature & Documentation": "9.1%" + }, + "Average Risk Exposures": { + "Cognitive Load Exposure": "0.48%", + "Error & Exception Exposure": "26.32%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "2.14%", + "API Exposure": "0.32%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "0.0%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "81.82%", + "Instability Exposure": "45.45%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "1.23%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "Files": { + "sqlite/mediawiki_sqlite_tables/COPYING": { "1. Artifact Identity": { - "Filename": "DRPSG03.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/DRPSG03.jcl", - "Language": "Jcl", + "Filename": "COPYING", + "Path": "sqlite/mediawiki_sqlite_tables/COPYING", + "Language": "Plaintext", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" + "Folder Dominant Lang": "sqlite", + "Lock Tier": 1, + "Identity Proof": "Metadata Anchor (COPYING)" }, "2. Topological Coordinates": { - "X": 485.98, - "Y": 63.84, - "Z": -3412.64 + "X": -2341.96, + "Y": -8.88, + "Z": -7213.53 }, "3. Architectural Profile": { - "Repository Archetype": "Unclassified", + "Repository Archetype": "Static: Literature & Documentation", "Repository Drift (Z-Score)": 0.0, "Repository Fingerprint": {}, - "File Archetype": null, + "File Archetype": "N/A", "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 22, - "Coding LOC": 17, - "Documentation LOC": 4, - "Structural Magnitude": 1.94, + "Total LOC": 379, + "Coding LOC": 0, + "Documentation LOC": 307, + "Structural Magnitude": 7.58, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -812168,43 +811358,32 @@ "Raw Cognitive Density": 0.0 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", - "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.33%", - "API Exposure": "0.0%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", - "Hardcoded Payload Artifacts": "0.0%" + "Cognitive Load Exposure": "[UNSCANNED - NO DATA]", + "Error & Exception Exposure": "[UNSCANNED - NO DATA]", + "Tech Debt Exposure": "[UNSCANNED - NO DATA]", + "Testing Exposure": "[UNSCANNED - NO DATA]", + "API Exposure": "[UNSCANNED - NO DATA]", + "Concurrency Exposure": "[UNSCANNED - NO DATA]", + "State Flux Exposure": "[UNSCANNED - NO DATA]", + "Commented Logic Exposure": "[UNSCANNED - NO DATA]", + "Specification Exposure": "[UNSCANNED - NO DATA]", + "Instability Exposure": "[UNSCANNED - NO DATA]", + "Volatility Exposure": "[UNSCANNED - NO DATA]", + "Documentation Exposure": "[UNSCANNED - NO DATA]", + "Hardcoded Payload Artifacts": "[UNSCANNED - NO DATA]" }, - "5. Function Analysis": [ - { - "Function Name": "GRANT", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 13, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 9, - "End Line": 21 - } - ], + "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 6, + "Sequential Logic Declarations": 0, "Function Parameters": 0, - "Function/Method Declarations": 1, - "Class/Entity Declarations": 1, + "Function/Method Declarations": 0, + "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 7, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -812231,7 +811410,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 2, + "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -812244,7 +811423,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 4, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -812261,15 +811440,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 8, + "Core Var Decl": 0, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 8, + "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -812277,7 +811456,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 2, + "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -812286,39 +811465,36 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, + "Direct Upstream (Fragility)": 0, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [ - "DSNC10.PROCLIB", - "DSNC10.SDSNLOAD" - ] + "9. Extracted Dependencies": [] }, - "jcl/cics-banking-sample-application-cbsa/DRPTB01.jcl": { + "sqlite/mediawiki_sqlite_tables/patch-block_target.sql": { "1. Artifact Identity": { - "Filename": "DRPTB01.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/DRPTB01.jcl", - "Language": "Jcl", + "Filename": "patch-block_target.sql", + "Path": "sqlite/mediawiki_sqlite_tables/patch-block_target.sql", + "Language": "Sqlite", "Architect": "Unknown Architect", "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", + "Folder Dominant Lang": "sqlite", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" + "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": 1052.61, - "Y": 34.94, - "Z": -1063.94 + "X": -1794.18, + "Y": 10.01, + "Z": -7748.2 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -812327,10 +811503,10 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 22, - "Coding LOC": 17, - "Documentation LOC": 4, - "Structural Magnitude": 1.94, + "Total LOC": 42, + "Coding LOC": 30, + "Documentation LOC": 0, + "Structural Magnitude": 12.3, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -812340,9 +811516,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", - "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.33%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "2.41%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -812355,27 +811531,117 @@ }, "5. Function Analysis": [ { - "Function Name": "GRANT", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 13, + "Function Name": "CREATE_Statement", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 14, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 9, + "Start Line": 2, + "End Line": 15 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.4, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 26, + "End Line": 33 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 17, + "End Line": 17 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 19, + "End Line": 19 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 21, "End Line": 21 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 23, + "End Line": 23 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 35, + "End Line": 35 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 37, + "End Line": 37 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 39, + "End Line": 39 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 41, + "End Line": 41 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 6, + "Sequential Logic Declarations": 0, "Function Parameters": 0, - "Function/Method Declarations": 1, - "Class/Entity Declarations": 1, - "Defensive Programming Constructs": 0, + "Function/Method Declarations": 8, + "Class/Entity Declarations": 2, + "Defensive Programming Constructs": 2, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 7, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -812402,7 +811668,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 2, + "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -812415,7 +811681,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 4, + "Structural Space Indentations": 18, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -812432,15 +811698,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 8, + "Core Var Decl": 0, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 8, + "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -812448,7 +811714,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 2, + "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -812457,39 +811723,36 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, + "Direct Upstream (Fragility)": 0, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [ - "DSNC10.PROCLIB", - "DSNC10.SDSNLOAD" - ] + "9. Extracted Dependencies": [] }, - "jcl/cics-banking-sample-application-cbsa/DRPTB02.jcl": { + "sqlite/mediawiki_sqlite_tables/patch-collation.sql": { "1. Artifact Identity": { - "Filename": "DRPTB02.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/DRPTB02.jcl", - "Language": "Jcl", + "Filename": "patch-collation.sql", + "Path": "sqlite/mediawiki_sqlite_tables/patch-collation.sql", + "Language": "Sqlite", "Architect": "Unknown Architect", "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", + "Folder Dominant Lang": "sqlite", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" + "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": -976.36, - "Y": 107.54, - "Z": -2590.86 + "X": -1599.29, + "Y": 32.75, + "Z": -7728.82 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -812498,10 +811761,10 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 22, - "Coding LOC": 17, - "Documentation LOC": 4, - "Structural Magnitude": 1.94, + "Total LOC": 8, + "Coding LOC": 5, + "Documentation LOC": 0, + "Structural Magnitude": 2.4, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -812511,9 +811774,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", - "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.33%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "2.3%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -812526,27 +811789,37 @@ }, "5. Function Analysis": [ { - "Function Name": "GRANT", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 13, + "Function Name": "CREATE_Statement", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 9, - "End Line": 21 + "Start Line": 2, + "End Line": 5 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 7, + "End Line": 7 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 6, + "Sequential Logic Declarations": 0, "Function Parameters": 0, "Function/Method Declarations": 1, "Class/Entity Declarations": 1, - "Defensive Programming Constructs": 0, + "Defensive Programming Constructs": 2, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 7, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -812573,7 +811846,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 2, + "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -812586,7 +811859,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 4, + "Structural Space Indentations": 2, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -812603,15 +811876,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 8, + "Core Var Decl": 0, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 8, + "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -812619,7 +811892,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 2, + "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -812628,39 +811901,36 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, + "Direct Upstream (Fragility)": 0, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [ - "DSNC10.PROCLIB", - "DSNC10.SDSNLOAD" - ] + "9. Extracted Dependencies": [] }, - "jcl/cics-banking-sample-application-cbsa/DRPTB03.jcl": { + "sqlite/mediawiki_sqlite_tables/patch-existencelinks.sql": { "1. Artifact Identity": { - "Filename": "DRPTB03.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/DRPTB03.jcl", - "Language": "Jcl", + "Filename": "patch-existencelinks.sql", + "Path": "sqlite/mediawiki_sqlite_tables/patch-existencelinks.sql", + "Language": "Sqlite", "Architect": "Unknown Architect", "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", + "Folder Dominant Lang": "sqlite", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" + "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": 1379.06, - "Y": 74.55, - "Z": -2931.56 + "X": -2381.44, + "Y": -73.32, + "Z": -6947.37 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -812669,10 +811939,10 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 22, - "Coding LOC": 17, - "Documentation LOC": 4, - "Structural Magnitude": 1.94, + "Total LOC": 8, + "Coding LOC": 6, + "Documentation LOC": 0, + "Structural Magnitude": 2.42, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -812682,9 +811952,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", - "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.33%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "2.31%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -812697,27 +811967,37 @@ }, "5. Function Analysis": [ { - "Function Name": "GRANT", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 13, + "Function Name": "CREATE_Statement", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 9, - "End Line": 21 + "Start Line": 1, + "End Line": 5 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 7, + "End Line": 7 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 6, + "Sequential Logic Declarations": 0, "Function Parameters": 0, "Function/Method Declarations": 1, "Class/Entity Declarations": 1, - "Defensive Programming Constructs": 0, + "Defensive Programming Constructs": 1, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 7, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -812744,7 +812024,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 2, + "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -812757,7 +812037,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 4, + "Structural Space Indentations": 3, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -812774,15 +812054,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 8, + "Core Var Decl": 0, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 8, + "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -812790,7 +812070,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 2, + "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -812799,39 +812079,36 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, + "Direct Upstream (Fragility)": 0, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [ - "DSNC10.PROCLIB", - "DSNC10.SDSNLOAD" - ] + "9. Extracted Dependencies": [] }, - "jcl/cics-banking-sample-application-cbsa/DRPTS01.jcl": { + "sqlite/mediawiki_sqlite_tables/patch-file.sql": { "1. Artifact Identity": { - "Filename": "DRPTS01.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/DRPTS01.jcl", - "Language": "Jcl", + "Filename": "patch-file.sql", + "Path": "sqlite/mediawiki_sqlite_tables/patch-file.sql", + "Language": "Sqlite", "Architect": "Unknown Architect", "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", + "Folder Dominant Lang": "sqlite", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" + "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": -105.47, - "Y": 83.15, - "Z": -881.33 + "X": -2106.91, + "Y": -108.36, + "Z": -6909.87 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -812840,10 +812117,10 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 22, - "Coding LOC": 17, - "Documentation LOC": 4, - "Structural Magnitude": 1.94, + "Total LOC": 47, + "Coding LOC": 33, + "Documentation LOC": 0, + "Structural Magnitude": 13.46, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -812853,9 +812130,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", - "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.33%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "2.39%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -812868,27 +812145,127 @@ }, "5. Function Analysis": [ { - "Function Name": "GRANT", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 13, + "Function Name": "CREATE_Statement", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 14, + "End Line": 25 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 2, + "End Line": 7 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 38, + "End Line": 42 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", "Start Line": 9, - "End Line": 21 + "End Line": 9 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 11, + "End Line": 11 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 27, + "End Line": 27 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 29, + "End Line": 29 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 31, + "End Line": 31 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 33, + "End Line": 33 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 35, + "End Line": 35 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 44, + "End Line": 46 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 6, + "Sequential Logic Declarations": 0, "Function Parameters": 0, - "Function/Method Declarations": 1, - "Class/Entity Declarations": 1, - "Defensive Programming Constructs": 0, + "Function/Method Declarations": 8, + "Class/Entity Declarations": 3, + "Defensive Programming Constructs": 5, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 7, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -812915,7 +812292,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 2, + "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -812928,7 +812305,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 4, + "Structural Space Indentations": 18, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -812945,15 +812322,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 8, + "Core Var Decl": 0, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 8, + "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -812961,7 +812338,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 2, + "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -812970,39 +812347,36 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, + "Direct Upstream (Fragility)": 0, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [ - "DSNC10.PROCLIB", - "DSNC10.SDSNLOAD" - ] + "9. Extracted Dependencies": [] }, - "jcl/cics-banking-sample-application-cbsa/DRPTS02.jcl": { + "sqlite/mediawiki_sqlite_tables/patch-user-user_is_temp.sql": { "1. Artifact Identity": { - "Filename": "DRPTS02.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/DRPTS02.jcl", - "Language": "Jcl", + "Filename": "patch-user-user_is_temp.sql", + "Path": "sqlite/mediawiki_sqlite_tables/patch-user-user_is_temp.sql", + "Language": "Sqlite", "Architect": "Unknown Architect", "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", + "Folder Dominant Lang": "sqlite", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" + "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": -237.94, - "Y": 77.49, - "Z": -3583.87 + "X": -1334.79, + "Y": -96.87, + "Z": -6905.9 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -813011,10 +812385,10 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 22, - "Coding LOC": 17, + "Total LOC": 7, + "Coding LOC": 2, "Documentation LOC": 4, - "Structural Magnitude": 1.94, + "Structural Magnitude": 3.14, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -813024,14 +812398,14 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", - "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.33%", + "Error & Exception Exposure": "62.58%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "2.31%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "0.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", "Documentation Exposure": "0.0%", @@ -813039,29 +812413,29 @@ }, "5. Function Analysis": [ { - "Function Name": "GRANT", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 13, + "Function Name": "ALTER_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 2, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 9, - "End Line": 21 + "Start Line": 5, + "End Line": 6 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 6, + "Sequential Logic Declarations": 0, "Function Parameters": 0, - "Function/Method Declarations": 1, - "Class/Entity Declarations": 1, + "Function/Method Declarations": 0, + "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 7, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 0, + "State Mutations / Variable Reassignments": 2, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, @@ -813086,7 +812460,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 2, + "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -813099,7 +812473,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 4, + "Structural Space Indentations": 1, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -813116,15 +812490,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 8, + "Core Var Decl": 0, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 8, + "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -813132,7 +812506,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 2, + "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -813141,39 +812515,36 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, + "Direct Upstream (Fragility)": 0, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [ - "DSNC10.PROCLIB", - "DSNC10.SDSNLOAD" - ] + "9. Extracted Dependencies": [] }, - "jcl/cics-banking-sample-application-cbsa/DRPTS03.jcl": { + "sqlite/mediawiki_sqlite_tables/patch-user_autocreate_serial-uas_year.sql": { "1. Artifact Identity": { - "Filename": "DRPTS03.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/DRPTS03.jcl", - "Language": "Jcl", + "Filename": "patch-user_autocreate_serial-uas_year.sql", + "Path": "sqlite/mediawiki_sqlite_tables/patch-user_autocreate_serial-uas_year.sql", + "Language": "Sqlite", "Architect": "Unknown Architect", "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", + "Folder Dominant Lang": "sqlite", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" + "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": 1531.21, - "Y": 49.67, - "Z": -1896.39 + "X": -1380.27, + "Y": -43.7, + "Z": -7502.03 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -813182,10 +812553,10 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 22, - "Coding LOC": 17, + "Total LOC": 28, + "Coding LOC": 18, "Documentation LOC": 4, - "Structural Magnitude": 1.94, + "Structural Magnitude": 6.26, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -813195,9 +812566,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", - "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.33%", + "Error & Exception Exposure": "66.5%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "2.36%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -813210,14 +812581,54 @@ }, "5. Function Analysis": [ { - "Function Name": "GRANT", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 13, + "Function Name": "CREATE_Statement", + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 9, - "End Line": 21 + "Start Line": 14, + "End Line": 19 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 5, + "End Line": 9 + }, + { + "Function Name": "INSERT_Statement", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 21, + "End Line": 25 + }, + { + "Function Name": "DROP_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 11, + "End Line": 11 + }, + { + "Function Name": "DROP_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 27, + "End Line": 27 } ], "6. Contextual Mitigations & Amplifications": "None Detected", @@ -813225,12 +812636,12 @@ "Control Flow Branches": 0, "Sequential Logic Declarations": 6, "Function Parameters": 0, - "Function/Method Declarations": 1, - "Class/Entity Declarations": 1, - "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 7, + "Function/Method Declarations": 0, + "Class/Entity Declarations": 2, + "Defensive Programming Constructs": 1, + "Type/Safety Bypasses": 2, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 3, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -813257,7 +812668,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 2, + "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -813265,12 +812676,12 @@ "Bitwise Operations": 0, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 0, + "Resource Deallocation & Cleanup": 2, + "Private / Encapsulated Scopes": 1, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 4, + "Structural Space Indentations": 8, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -813287,15 +812698,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 8, + "Core Var Decl": 0, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 8, + "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -813303,7 +812714,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 2, + "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -813312,39 +812723,36 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, + "Direct Upstream (Fragility)": 0, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [ - "DSNC10.PROCLIB", - "DSNC10.SDSNLOAD" - ] + "9. Extracted Dependencies": [] }, - "jcl/cics-banking-sample-application-cbsa/EXTDCUST.jcl": { + "sqlite/mediawiki_sqlite_tables/patch-watchlist_label.sql": { "1. Artifact Identity": { - "Filename": "EXTDCUST.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/EXTDCUST.jcl", - "Language": "Jcl", + "Filename": "patch-watchlist_label.sql", + "Path": "sqlite/mediawiki_sqlite_tables/patch-watchlist_label.sql", + "Language": "Sqlite", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", + "Folder Dominant Lang": "sqlite", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" + "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": -1229.41, - "Y": 139.06, - "Z": -1697.25 + "X": -2064.86, + "Y": 59.16, + "Z": -7604.45 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -813353,10 +812761,10 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 8, - "Coding LOC": 3, - "Documentation LOC": 4, - "Structural Magnitude": 1.16, + "Total LOC": 17, + "Coding LOC": 12, + "Documentation LOC": 0, + "Structural Magnitude": 4.84, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -813367,8 +812775,8 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.31%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "2.32%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -813381,7 +812789,27 @@ }, "5. Function Analysis": [ { - "Function Name": "Unknown_Block", + "Function Name": "CREATE_Statement", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 1, + "End Line": 5 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 10, + "End Line": 14 + }, + { + "Function Name": "CREATE_Statement", "Structural Impact": 1.1, "Lines of Code (LOC)": 1, "Control Flow Branches": 0, @@ -813389,16 +812817,26 @@ "Control Flow Ratio": "0.0%", "Start Line": 7, "End Line": 7 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 16, + "End Line": 16 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 1, + "Sequential Logic Declarations": 0, "Function Parameters": 0, - "Function/Method Declarations": 1, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 0, + "Function/Method Declarations": 2, + "Class/Entity Declarations": 2, + "Defensive Programming Constructs": 3, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, @@ -813416,7 +812854,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -813441,7 +812879,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 6, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -813458,15 +812896,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 2, + "Core Var Decl": 0, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 2, + "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -813490,32 +812928,29 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, + "Direct Upstream (Fragility)": 0, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 1, + "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [ - "CTSSVT.CICSBSA.BUILDJCL", - "DEFAULT" - ] + "9. Extracted Dependencies": [] }, - "jcl/cics-banking-sample-application-cbsa/GETCOMPY.jcl": { + "sqlite/mediawiki_sqlite_tables/searchindex-fts3.sql": { "1. Artifact Identity": { - "Filename": "GETCOMPY.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/GETCOMPY.jcl", - "Language": "Jcl", + "Filename": "searchindex-fts3.sql", + "Path": "sqlite/mediawiki_sqlite_tables/searchindex-fts3.sql", + "Language": "Sqlite", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", + "Folder Dominant Lang": "sqlite", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" + "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": 1281.4, - "Y": 29.86, - "Z": -2219.06 + "X": -2034.62, + "Y": -148.41, + "Z": -6689.44 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -813524,10 +812959,10 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 8, - "Coding LOC": 3, - "Documentation LOC": 4, - "Structural Magnitude": 2.16, + "Total LOC": 19, + "Coding LOC": 6, + "Documentation LOC": 9, + "Structural Magnitude": 5.52, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -813537,9 +812972,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "0.0%", + "Error & Exception Exposure": "70.21%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.31%", + "Testing Exposure": "2.35%", "API Exposure": "3.53%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -813547,32 +812982,52 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "16.56%", + "Documentation Exposure": "13.55%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "Unknown_Block", + "Function Name": "INSERT_Statement", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 18, + "End Line": 18 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 11, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 6, + "End Line": 16 + }, + { + "Function Name": "DROP_Statement", "Structural Impact": 1.1, "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 7, - "End Line": 7 + "Start Line": 5, + "End Line": 5 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 1, - "Function Parameters": 0, - "Function/Method Declarations": 1, - "Class/Entity Declarations": 0, + "Sequential Logic Declarations": 1, + "Function Parameters": 1, + "Function/Method Declarations": 0, + "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 0, + "Type/Safety Bypasses": 2, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, + "I/O and Network Boundaries": 1, "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -813587,7 +813042,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -813607,12 +813062,12 @@ "Bitwise Operations": 0, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, + "Resource Deallocation & Cleanup": 1, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 2, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -813629,11 +813084,11 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 2, + "Core Var Decl": 0, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 2, + "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, @@ -813661,32 +813116,29 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, + "Direct Upstream (Fragility)": 0, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 1, - "Total Downstream (Absolute Dependency Blast Radius)": 1 + "Total Upstream (Absolute Fragility)": 0, + "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [ - "CBSA.CICSBSA.BUILDJCL", - "DEFAULT" - ] + "9. Extracted Dependencies": [] }, - "jcl/cics-banking-sample-application-cbsa/GETSCODE.jcl": { + "sqlite/mediawiki_sqlite_tables/searchindex-no-fts.sql": { "1. Artifact Identity": { - "Filename": "GETSCODE.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/GETSCODE.jcl", - "Language": "Jcl", + "Filename": "searchindex-no-fts.sql", + "Path": "sqlite/mediawiki_sqlite_tables/searchindex-no-fts.sql", + "Language": "Sqlite", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", + "Folder Dominant Lang": "sqlite", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" + "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": -408.31, - "Y": 75.09, - "Z": -1320.71 + "X": -1605.34, + "Y": -145.6, + "Z": -6950.06 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -813695,56 +813147,126 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 8, - "Coding LOC": 3, - "Documentation LOC": 4, - "Structural Magnitude": 2.16, - "Control Flow Ratio": "0.0%", + "Total LOC": 24, + "Coding LOC": 13, + "Documentation LOC": 5, + "Structural Magnitude": 10.16, + "Control Flow Ratio": "50.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.0 + "Raw Cognitive Density": 0.029 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "0.0%", + "Cognitive Load Exposure": "5.29%", + "Error & Exception Exposure": "90.28%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.31%", - "API Exposure": "3.53%", + "Testing Exposure": "2.4%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "16.56%", + "Documentation Exposure": "0.0%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "Unknown_Block", + "Function Name": "DELETE_Statement", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "50.0%", + "Start Line": 23, + "End Line": 23 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 13, + "End Line": 18 + }, + { + "Function Name": "DROP_Statement", "Structural Impact": 1.1, "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 7, - "End Line": 7 + "Start Line": 6, + "End Line": 6 + }, + { + "Function Name": "DROP_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 9, + "End Line": 9 + }, + { + "Function Name": "DROP_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 10, + "End Line": 10 + }, + { + "Function Name": "DROP_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 11, + "End Line": 11 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 20, + "End Line": 20 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 21, + "End Line": 21 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, + "Control Flow Branches": 1, "Sequential Logic Declarations": 1, "Function Parameters": 0, - "Function/Method Declarations": 1, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 0, + "Function/Method Declarations": 2, + "Class/Entity Declarations": 1, + "Defensive Programming Constructs": 1, + "Type/Safety Bypasses": 8, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 1, + "I/O and Network Boundaries": 1, + "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -813758,7 +813280,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -813778,12 +813300,12 @@ "Bitwise Operations": 0, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, + "Resource Deallocation & Cleanup": 5, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 4, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -813800,11 +813322,11 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 2, + "Core Var Decl": 1, "Design Camel Case": 0, - "Design Snake Case": 0, + "Design Snake Case": 1, "Design Pascal Case": 0, - "Design Upper Case": 2, + "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, @@ -813832,32 +813354,29 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, + "Direct Upstream (Fragility)": 0, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 1, - "Total Downstream (Absolute Dependency Blast Radius)": 1 + "Total Upstream (Absolute Fragility)": 0, + "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [ - "CBSA.CICSBSA.BUILDJCL", - "DEFAULT" - ] + "9. Extracted Dependencies": [] }, - "jcl/cics-banking-sample-application-cbsa/INQACC.jcl": { + "sqlite/mediawiki_sqlite_tables/tables-generated.sql": { "1. Artifact Identity": { - "Filename": "INQACC.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/INQACC.jcl", - "Language": "Jcl", + "Filename": "tables-generated.sql", + "Path": "sqlite/mediawiki_sqlite_tables/tables-generated.sql", + "Language": "Sqlite", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", + "Folder Dominant Lang": "sqlite", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" + "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": 327.12, - "Y": 40.92, - "Z": -3280.65 + "X": -1805.21, + "Y": -74.03, + "Z": -7206.15 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -813866,10 +813385,10 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 8, - "Coding LOC": 3, + "Total LOC": 948, + "Coding LOC": 683, "Documentation LOC": 4, - "Structural Magnitude": 2.16, + "Structural Magnitude": 247.46, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -813881,1438 +813400,2009 @@ "Cognitive Load Exposure": "0.0%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.31%", - "API Exposure": "3.53%", + "Testing Exposure": "2.43%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "16.56%", + "Documentation Exposure": "0.0%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "Unknown_Block", + "Function Name": "CREATE_Statement", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 16, + "End Line": 27 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 14, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 38, + "End Line": 51 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 103, + "End Line": 112 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 17, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 220, + "End Line": 236 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 251, + "End Line": 262 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 16, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 286, + "End Line": 301 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 381, + "End Line": 390 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 11, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 442, + "End Line": 452 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 14, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 485, + "End Line": 498 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 511, + "End Line": 522 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 580, + "End Line": 589 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 17, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 629, + "End Line": 645 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 685, + "End Line": 694 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 731, + "End Line": 740 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 13, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 743, + "End Line": 755 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 19, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 809, + "End Line": 827 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 16, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 836, + "End Line": 851 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.4, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 62, + "End Line": 69 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.4, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 80, + "End Line": 88 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.4, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 122, + "End Line": 128 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.4, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 316, + "End Line": 322 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.4, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 338, + "End Line": 346 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.4, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 536, + "End Line": 542 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.4, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 610, + "End Line": 616 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.4, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 673, + "End Line": 680 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.4, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 768, + "End Line": 774 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 91, + "End Line": 96 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 171, + "End Line": 176 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 196, + "End Line": 201 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 208, + "End Line": 213 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 349, + "End Line": 354 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 361, + "End Line": 366 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 371, + "End Line": 376 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 406, + "End Line": 411 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 414, + "End Line": 419 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 432, + "End Line": 437 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 475, + "End Line": 480 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 549, + "End Line": 554 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 565, + "End Line": 570 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 707, + "End Line": 712 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 719, + "End Line": 724 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 781, + "End Line": 786 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 860, + "End Line": 865 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 875, + "End Line": 880 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 897, + "End Line": 902 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 907, + "End Line": 912 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 5, + "End Line": 9 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 114, + "End Line": 117 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 141, + "End Line": 145 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 154, + "End Line": 157 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 162, + "End Line": 166 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 179, + "End Line": 182 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 187, + "End Line": 191 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 275, + "End Line": 279 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 332, + "End Line": 335 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 398, + "End Line": 401 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 424, + "End Line": 427 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 530, + "End Line": 533 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 574, + "End Line": 577 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 594, + "End Line": 598 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 603, + "End Line": 607 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 665, + "End Line": 668 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 760, + "End Line": 763 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 790, + "End Line": 793 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 796, + "End Line": 799 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 802, + "End Line": 806 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 868, + "End Line": 872 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 887, + "End Line": 890 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 923, + "End Line": 927 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 932, + "End Line": 936 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 941, + "End Line": 945 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 11, + "End Line": 11 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 13, + "End Line": 13 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 29, + "End Line": 31 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 33, + "End Line": 33 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 35, + "End Line": 35 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 53, + "End Line": 53 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 55, + "End Line": 55 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 57, + "End Line": 57 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 59, + "End Line": 59 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 71, + "End Line": 71 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 73, + "End Line": 73 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 75, + "End Line": 75 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 77, + "End Line": 77 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 98, + "End Line": 98 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 100, + "End Line": 100 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 119, + "End Line": 119 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 130, + "End Line": 130 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 132, + "End Line": 132 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 134, + "End Line": 134 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 136, + "End Line": 138 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 147, + "End Line": 147 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 149, + "End Line": 149 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 151, + "End Line": 151 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 159, + "End Line": 159 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 168, + "End Line": 168 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 184, + "End Line": 184 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 193, + "End Line": 193 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 203, + "End Line": 203 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 205, + "End Line": 205 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 215, + "End Line": 215 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 217, + "End Line": 217 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 238, + "End Line": 238 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 240, + "End Line": 242 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 244, + "End Line": 244 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 246, + "End Line": 246 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 248, + "End Line": 248 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 264, + "End Line": 264 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 266, + "End Line": 266 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 268, + "End Line": 268 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 270, + "End Line": 270 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 272, + "End Line": 272 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 281, + "End Line": 283 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 303, + "End Line": 303 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 305, + "End Line": 305 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 307, + "End Line": 307 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 309, + "End Line": 309 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 311, + "End Line": 313 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 324, + "End Line": 324 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 326, + "End Line": 328 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 330, + "End Line": 330 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 356, + "End Line": 356 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 358, + "End Line": 358 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 368, + "End Line": 368 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 378, + "End Line": 378 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 392, + "End Line": 392 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 394, + "End Line": 394 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 396, + "End Line": 396 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 403, + "End Line": 403 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 421, + "End Line": 421 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 429, + "End Line": 429 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 439, + "End Line": 439 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 454, + "End Line": 454 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 456, + "End Line": 456 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 458, + "End Line": 460 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 462, + "End Line": 462 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 464, + "End Line": 466 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 468, + "End Line": 468 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 470, + "End Line": 472 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 482, + "End Line": 482 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 500, + "End Line": 500 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 502, + "End Line": 502 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 504, + "End Line": 504 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 506, + "End Line": 506 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 508, + "End Line": 508 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 524, + "End Line": 524 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 526, + "End Line": 526 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 528, + "End Line": 528 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 544, + "End Line": 544 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 546, + "End Line": 546 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 556, + "End Line": 556 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 558, + "End Line": 558 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 560, + "End Line": 560 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 562, + "End Line": 562 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 572, + "End Line": 572 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 591, + "End Line": 591 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 600, + "End Line": 600 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 618, + "End Line": 618 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 620, + "End Line": 622 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 624, + "End Line": 626 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 647, + "End Line": 647 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 649, + "End Line": 651 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 653, + "End Line": 653 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 655, + "End Line": 657 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 659, + "End Line": 659 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 661, + "End Line": 661 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 663, + "End Line": 663 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 670, + "End Line": 670 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 682, + "End Line": 682 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 696, + "End Line": 696 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 698, + "End Line": 698 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 700, + "End Line": 700 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 702, + "End Line": 704 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 714, + "End Line": 714 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 716, + "End Line": 716 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 726, + "End Line": 726 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 728, + "End Line": 728 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 757, + "End Line": 757 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 765, + "End Line": 765 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 776, + "End Line": 778 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 788, + "End Line": 788 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 829, + "End Line": 829 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 831, + "End Line": 831 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 833, + "End Line": 833 + }, + { + "Function Name": "CREATE_Statement", "Structural Impact": 1.1, "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 7, - "End Line": 7 - } - ], - "6. Contextual Mitigations & Amplifications": "None Detected", - "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 1, - "Function Parameters": 0, - "Function/Method Declarations": 1, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 1, - "State Mutations / Variable Reassignments": 0, - "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 0, - "Unit Test Assertions": 0, - "Asynchronous/Concurrent Execution": 0, - "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, - "Decorators and Annotations": 0, - "Generic Type Abstractions": 0, - "Collection Iterators / Comprehensions": 0, - "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, - "Authorship Metadata": 0, - "Planned Work (TODOs)": 0, - "Acknowledged Tech Debt (FIXMEs)": 0, - "Specification Traceability Tags": 0, - "Server-Side Rendering Contexts": 0, - "Event Publishers / Emitters": 0, - "Dependency Injection Constructs": 0, - "Preprocessor Macros": 0, - "Pointer Arithmetic & Addressing": 0, - "Manual Memory Allocation": 0, - "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, - "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 0, - "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 0, - "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 0, - "Event Listeners & Subscribers": 0, - "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, - "Hardware Bridge": 0, - "Cryptography": 0, - "Auth Middleware": 0, - "Ipc Rpc Bridges": 0, - "Feature Flags": 0, - "Serialization Parsing": 0, - "Regex Execution": 0, - "Time Date Logic": 0, - "Cloud LLM API Integrations": 0, - "AI Orchestration Frameworks": 0, - "Vector Databases (RAG)": 0, - "Local Inference & Tensor Math": 0, - "Traditional Machine Learning (Stats/Trees)": 0, - "Deep Learning & Neural Networks": 0, - "Lazy Evaluation & Generators (O(1) Memory)": 0, - "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 2, - "Design Camel Case": 0, - "Design Snake Case": 0, - "Design Pascal Case": 0, - "Design Upper Case": 2, - "Design Short Vars": 0, - "Design Long Vars": 0, - "Duplicate Logic": 0, - "Orphaned Logic": 0, - "Instructional Code Examples": 0, - "Architectural Diagrams (Mermaid/PlantUML)": 0, - "Structured Literature Headers": 0, - "Hyperlinked Literature References": 0, - "High-Entropy / Obfuscated Logic": 0, - "Safety & Constraint Bypasses": 0, - "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, - "Global Environment Mutation": 0, - "Commented-Out Executable Logic": 0, - "Low-Level Bitwise / Cryptographic Math": 0, - "Non-Standard / Steganographic Imports": 0, - "Non-Standard Unicode / Homoglyphs": 0, - "Embedded Credentials & Keys": 0, - "Sec Extension Mismatch": 0, - "Sec Entropy": 0, - "Sec Tainted Injection": 0, - "Prompt Injection": 0, - "Agentic Rce": 0, - "Invisible Unicode Payload Smuggling": 0, - "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 - }, - "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, - "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 1, - "Total Downstream (Absolute Dependency Blast Radius)": 2 - }, - "9. Extracted Dependencies": [ - "CBSA.CICSBSA.BUILDJCL", - "DEFAULT" - ] - }, - "jcl/cics-banking-sample-application-cbsa/INQACCCU.jcl": { - "1. Artifact Identity": { - "Filename": "INQACCCU.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/INQACCCU.jcl", - "Language": "Jcl", - "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" - }, - "2. Topological Coordinates": { - "X": 980.0, - "Y": 17.53, - "Z": -1560.12 - }, - "3. Architectural Profile": { - "Repository Archetype": "Unclassified", - "Repository Drift (Z-Score)": 0.0, - "Repository Fingerprint": {}, - "File Archetype": null, - "File Drift (Z-Score)": 0.0, - "File Fingerprint": {}, - "Total LOC": 8, - "Coding LOC": 3, - "Documentation LOC": 4, - "Structural Magnitude": 2.16, - "Control Flow Ratio": "0.0%", - "Popularity Rank": 0, - "Raw Churn Frequency": 0.0, - "Authorship Centralization": 0.0, - "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.0 - }, - "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.31%", - "API Exposure": "3.53%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "16.56%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "5. Function Analysis": [ + "Start Line": 853, + "End Line": 853 + }, { - "Function Name": "Unknown_Block", + "Function Name": "CREATE_Statement", "Structural Impact": 1.1, "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 7, - "End Line": 7 - } - ], - "6. Contextual Mitigations & Amplifications": "None Detected", - "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 1, - "Function Parameters": 0, - "Function/Method Declarations": 1, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 1, - "State Mutations / Variable Reassignments": 0, - "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 0, - "Unit Test Assertions": 0, - "Asynchronous/Concurrent Execution": 0, - "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, - "Decorators and Annotations": 0, - "Generic Type Abstractions": 0, - "Collection Iterators / Comprehensions": 0, - "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, - "Authorship Metadata": 0, - "Planned Work (TODOs)": 0, - "Acknowledged Tech Debt (FIXMEs)": 0, - "Specification Traceability Tags": 0, - "Server-Side Rendering Contexts": 0, - "Event Publishers / Emitters": 0, - "Dependency Injection Constructs": 0, - "Preprocessor Macros": 0, - "Pointer Arithmetic & Addressing": 0, - "Manual Memory Allocation": 0, - "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, - "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 0, - "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 0, - "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 0, - "Event Listeners & Subscribers": 0, - "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, - "Hardware Bridge": 0, - "Cryptography": 0, - "Auth Middleware": 0, - "Ipc Rpc Bridges": 0, - "Feature Flags": 0, - "Serialization Parsing": 0, - "Regex Execution": 0, - "Time Date Logic": 0, - "Cloud LLM API Integrations": 0, - "AI Orchestration Frameworks": 0, - "Vector Databases (RAG)": 0, - "Local Inference & Tensor Math": 0, - "Traditional Machine Learning (Stats/Trees)": 0, - "Deep Learning & Neural Networks": 0, - "Lazy Evaluation & Generators (O(1) Memory)": 0, - "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 2, - "Design Camel Case": 0, - "Design Snake Case": 0, - "Design Pascal Case": 0, - "Design Upper Case": 2, - "Design Short Vars": 0, - "Design Long Vars": 0, - "Duplicate Logic": 0, - "Orphaned Logic": 0, - "Instructional Code Examples": 0, - "Architectural Diagrams (Mermaid/PlantUML)": 0, - "Structured Literature Headers": 0, - "Hyperlinked Literature References": 0, - "High-Entropy / Obfuscated Logic": 0, - "Safety & Constraint Bypasses": 0, - "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, - "Global Environment Mutation": 0, - "Commented-Out Executable Logic": 0, - "Low-Level Bitwise / Cryptographic Math": 0, - "Non-Standard / Steganographic Imports": 0, - "Non-Standard Unicode / Homoglyphs": 0, - "Embedded Credentials & Keys": 0, - "Sec Extension Mismatch": 0, - "Sec Entropy": 0, - "Sec Tainted Injection": 0, - "Prompt Injection": 0, - "Agentic Rce": 0, - "Invisible Unicode Payload Smuggling": 0, - "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 - }, - "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, - "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 1, - "Total Downstream (Absolute Dependency Blast Radius)": 4 - }, - "9. Extracted Dependencies": [ - "CBSA.CICSBSA.BUILDJCL", - "DEFAULT" - ] - }, - "jcl/cics-banking-sample-application-cbsa/INQCUST.jcl": { - "1. Artifact Identity": { - "Filename": "INQCUST.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/INQCUST.jcl", - "Language": "Jcl", - "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" - }, - "2. Topological Coordinates": { - "X": -800.75, - "Y": 78.66, - "Z": -2496.87 - }, - "3. Architectural Profile": { - "Repository Archetype": "Unclassified", - "Repository Drift (Z-Score)": 0.0, - "Repository Fingerprint": {}, - "File Archetype": null, - "File Drift (Z-Score)": 0.0, - "File Fingerprint": {}, - "Total LOC": 8, - "Coding LOC": 3, - "Documentation LOC": 4, - "Structural Magnitude": 2.16, - "Control Flow Ratio": "0.0%", - "Popularity Rank": 0, - "Raw Churn Frequency": 0.0, - "Authorship Centralization": 0.0, - "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.0 - }, - "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.31%", - "API Exposure": "3.53%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "16.56%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "5. Function Analysis": [ + "Start Line": 855, + "End Line": 855 + }, { - "Function Name": "Unknown_Block", + "Function Name": "CREATE_Statement", "Structural Impact": 1.1, "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 7, - "End Line": 7 - } - ], - "6. Contextual Mitigations & Amplifications": "None Detected", - "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 1, - "Function Parameters": 0, - "Function/Method Declarations": 1, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 1, - "State Mutations / Variable Reassignments": 0, - "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 0, - "Unit Test Assertions": 0, - "Asynchronous/Concurrent Execution": 0, - "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, - "Decorators and Annotations": 0, - "Generic Type Abstractions": 0, - "Collection Iterators / Comprehensions": 0, - "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, - "Authorship Metadata": 0, - "Planned Work (TODOs)": 0, - "Acknowledged Tech Debt (FIXMEs)": 0, - "Specification Traceability Tags": 0, - "Server-Side Rendering Contexts": 0, - "Event Publishers / Emitters": 0, - "Dependency Injection Constructs": 0, - "Preprocessor Macros": 0, - "Pointer Arithmetic & Addressing": 0, - "Manual Memory Allocation": 0, - "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, - "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 0, - "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 0, - "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 0, - "Event Listeners & Subscribers": 0, - "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, - "Hardware Bridge": 0, - "Cryptography": 0, - "Auth Middleware": 0, - "Ipc Rpc Bridges": 0, - "Feature Flags": 0, - "Serialization Parsing": 0, - "Regex Execution": 0, - "Time Date Logic": 0, - "Cloud LLM API Integrations": 0, - "AI Orchestration Frameworks": 0, - "Vector Databases (RAG)": 0, - "Local Inference & Tensor Math": 0, - "Traditional Machine Learning (Stats/Trees)": 0, - "Deep Learning & Neural Networks": 0, - "Lazy Evaluation & Generators (O(1) Memory)": 0, - "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 2, - "Design Camel Case": 0, - "Design Snake Case": 0, - "Design Pascal Case": 0, - "Design Upper Case": 2, - "Design Short Vars": 0, - "Design Long Vars": 0, - "Duplicate Logic": 0, - "Orphaned Logic": 0, - "Instructional Code Examples": 0, - "Architectural Diagrams (Mermaid/PlantUML)": 0, - "Structured Literature Headers": 0, - "Hyperlinked Literature References": 0, - "High-Entropy / Obfuscated Logic": 0, - "Safety & Constraint Bypasses": 0, - "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, - "Global Environment Mutation": 0, - "Commented-Out Executable Logic": 0, - "Low-Level Bitwise / Cryptographic Math": 0, - "Non-Standard / Steganographic Imports": 0, - "Non-Standard Unicode / Homoglyphs": 0, - "Embedded Credentials & Keys": 0, - "Sec Extension Mismatch": 0, - "Sec Entropy": 0, - "Sec Tainted Injection": 0, - "Prompt Injection": 0, - "Agentic Rce": 0, - "Invisible Unicode Payload Smuggling": 0, - "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 - }, - "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, - "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 1, - "Total Downstream (Absolute Dependency Blast Radius)": 5 - }, - "9. Extracted Dependencies": [ - "CBSA.CICSBSA.BUILDJCL", - "DEFAULT" - ] - }, - "jcl/cics-banking-sample-application-cbsa/INSTDB2.jcl": { - "1. Artifact Identity": { - "Filename": "INSTDB2.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/INSTDB2.jcl", - "Language": "Jcl", - "Architect": "Unknown Architect", - "Indentation Style": "Spaces", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" - }, - "2. Topological Coordinates": { - "X": 868.04, - "Y": 20.31, - "Z": -1946.84 - }, - "3. Architectural Profile": { - "Repository Archetype": "Unclassified", - "Repository Drift (Z-Score)": 0.0, - "Repository Fingerprint": {}, - "File Archetype": null, - "File Drift (Z-Score)": 0.0, - "File Fingerprint": {}, - "Total LOC": 106, - "Coding LOC": 73, - "Documentation LOC": 17, - "Structural Magnitude": 5.46, - "Control Flow Ratio": "0.0%", - "Popularity Rank": 0, - "Raw Churn Frequency": 0.0, - "Authorship Centralization": 0.0, - "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.0 - }, - "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "71.16%", - "Tech Debt Exposure": "47.43%", - "Testing Exposure": "2.34%", - "API Exposure": "0.0%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "5. Function Analysis": [ + "Start Line": 857, + "End Line": 857 + }, { - "Function Name": "GRANT", - "Structural Impact": 4.0, - "Lines of Code (LOC)": 90, + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 16, - "End Line": 105 - } - ], - "6. Contextual Mitigations & Amplifications": "None Detected", - "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 7, - "Function Parameters": 0, - "Function/Method Declarations": 1, - "Class/Entity Declarations": 1, - "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 7, - "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 0, - "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 0, - "Unit Test Assertions": 0, - "Asynchronous/Concurrent Execution": 0, - "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, - "Decorators and Annotations": 0, - "Generic Type Abstractions": 0, - "Collection Iterators / Comprehensions": 0, - "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, - "Authorship Metadata": 0, - "Planned Work (TODOs)": 0, - "Acknowledged Tech Debt (FIXMEs)": 0, - "Specification Traceability Tags": 0, - "Server-Side Rendering Contexts": 0, - "Event Publishers / Emitters": 0, - "Dependency Injection Constructs": 0, - "Preprocessor Macros": 0, - "Pointer Arithmetic & Addressing": 0, - "Manual Memory Allocation": 0, - "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 2, - "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 0, - "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 0, - "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 0, - "Event Listeners & Subscribers": 0, - "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, - "Structural Space Indentations": 38, - "Hardware Bridge": 0, - "Cryptography": 0, - "Auth Middleware": 0, - "Ipc Rpc Bridges": 0, - "Feature Flags": 0, - "Serialization Parsing": 0, - "Regex Execution": 0, - "Time Date Logic": 0, - "Cloud LLM API Integrations": 0, - "AI Orchestration Frameworks": 0, - "Vector Databases (RAG)": 0, - "Local Inference & Tensor Math": 0, - "Traditional Machine Learning (Stats/Trees)": 0, - "Deep Learning & Neural Networks": 0, - "Lazy Evaluation & Generators (O(1) Memory)": 0, - "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 10, - "Design Camel Case": 0, - "Design Snake Case": 0, - "Design Pascal Case": 0, - "Design Upper Case": 10, - "Design Short Vars": 0, - "Design Long Vars": 0, - "Duplicate Logic": 0, - "Orphaned Logic": 1, - "Instructional Code Examples": 0, - "Architectural Diagrams (Mermaid/PlantUML)": 0, - "Structured Literature Headers": 0, - "Hyperlinked Literature References": 0, - "High-Entropy / Obfuscated Logic": 0, - "Safety & Constraint Bypasses": 0, - "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 2, - "Global Environment Mutation": 0, - "Commented-Out Executable Logic": 0, - "Low-Level Bitwise / Cryptographic Math": 0, - "Non-Standard / Steganographic Imports": 0, - "Non-Standard Unicode / Homoglyphs": 0, - "Embedded Credentials & Keys": 0, - "Sec Extension Mismatch": 0, - "Sec Entropy": 0, - "Sec Tainted Injection": 1, - "Prompt Injection": 0, - "Agentic Rce": 0, - "Invisible Unicode Payload Smuggling": 0, - "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 - }, - "8. Dependency Network": { - "Direct Upstream (Fragility)": 3, - "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 1, - "Total Downstream (Absolute Dependency Blast Radius)": 0 - }, - "9. Extracted Dependencies": [ - "&DB2HLQ..SDSNLOAD", - "CBSA.DB2.JCL.INSTALL", - "DEFAULT" - ] - }, - "jcl/cics-banking-sample-application-cbsa/MAPGEN.jcl": { - "1. Artifact Identity": { - "Filename": "MAPGEN.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/MAPGEN.jcl", - "Language": "Jcl", - "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" - }, - "2. Topological Coordinates": { - "X": 55.05, - "Y": 60.88, - "Z": -2833.53 - }, - "3. Architectural Profile": { - "Repository Archetype": "Unclassified", - "Repository Drift (Z-Score)": 0.0, - "Repository Fingerprint": {}, - "File Archetype": null, - "File Drift (Z-Score)": 0.0, - "File Fingerprint": {}, - "Total LOC": 50, - "Coding LOC": 43, - "Documentation LOC": 6, - "Structural Magnitude": 7.46, - "Control Flow Ratio": "0.0%", - "Popularity Rank": 0, - "Raw Churn Frequency": 0.0, - "Authorship Centralization": 0.0, - "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.0 - }, - "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "86.83%", - "Tech Debt Exposure": "99.91%", - "Testing Exposure": "2.41%", - "API Exposure": "0.0%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "5. Function Analysis": [ + "Start Line": 882, + "End Line": 882 + }, { - "Function Name": "ASMDSECT", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 10, + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, - "Input Parameters": 1, + "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 40, - "End Line": 49 + "Start Line": 884, + "End Line": 884 }, { - "Function Name": "LINKMAP", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 6, + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, - "Input Parameters": 1, + "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 33, - "End Line": 38 + "Start Line": 892, + "End Line": 892 }, { - "Function Name": "ASMMAP", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 13, + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 20, - "End Line": 32 + "Start Line": 894, + "End Line": 894 }, { - "Function Name": "COPY", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 7, + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 13, - "End Line": 19 - } - ], - "6. Contextual Mitigations & Amplifications": "None Detected", - "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 25, - "Function Parameters": 3, - "Function/Method Declarations": 4, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 2, - "I/O and Network Boundaries": 28, - "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 0, - "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 0, - "Unit Test Assertions": 0, - "Asynchronous/Concurrent Execution": 0, - "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, - "Decorators and Annotations": 0, - "Generic Type Abstractions": 0, - "Collection Iterators / Comprehensions": 0, - "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, - "Authorship Metadata": 0, - "Planned Work (TODOs)": 0, - "Acknowledged Tech Debt (FIXMEs)": 0, - "Specification Traceability Tags": 0, - "Server-Side Rendering Contexts": 0, - "Event Publishers / Emitters": 0, - "Dependency Injection Constructs": 0, - "Preprocessor Macros": 0, - "Pointer Arithmetic & Addressing": 0, - "Manual Memory Allocation": 0, - "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, - "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 0, - "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 0, - "Thread Synchronization Locks": 4, - "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 0, - "Event Listeners & Subscribers": 0, - "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, - "Hardware Bridge": 0, - "Cryptography": 0, - "Auth Middleware": 0, - "Ipc Rpc Bridges": 0, - "Feature Flags": 0, - "Serialization Parsing": 0, - "Regex Execution": 0, - "Time Date Logic": 0, - "Cloud LLM API Integrations": 0, - "AI Orchestration Frameworks": 0, - "Vector Databases (RAG)": 0, - "Local Inference & Tensor Math": 0, - "Traditional Machine Learning (Stats/Trees)": 0, - "Deep Learning & Neural Networks": 0, - "Lazy Evaluation & Generators (O(1) Memory)": 0, - "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 41, - "Design Camel Case": 0, - "Design Snake Case": 0, - "Design Pascal Case": 0, - "Design Upper Case": 41, - "Design Short Vars": 1, - "Design Long Vars": 0, - "Duplicate Logic": 0, - "Orphaned Logic": 4, - "Instructional Code Examples": 0, - "Architectural Diagrams (Mermaid/PlantUML)": 0, - "Structured Literature Headers": 0, - "Hyperlinked Literature References": 0, - "High-Entropy / Obfuscated Logic": 0, - "Safety & Constraint Bypasses": 0, - "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, - "Global Environment Mutation": 0, - "Commented-Out Executable Logic": 0, - "Low-Level Bitwise / Cryptographic Math": 0, - "Non-Standard / Steganographic Imports": 0, - "Non-Standard Unicode / Homoglyphs": 0, - "Embedded Credentials & Keys": 0, - "Sec Extension Mismatch": 0, - "Sec Entropy": 0, - "Sec Tainted Injection": 2, - "Prompt Injection": 0, - "Agentic Rce": 0, - "Invisible Unicode Payload Smuggling": 0, - "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 - }, - "8. Dependency Network": { - "Direct Upstream (Fragility)": 5, - "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 - }, - "9. Extracted Dependencies": [ - "&CBSAHLQ..BMS(&MEMBER)", - "&CBSAHLQ..DSECT(&MEMBER)", - "&CBSAHLQ..LOADLIB(&MEMBER)", - "&CICSHLQ..SDFHMAC", - "SYS1.MACLIB" - ] - }, - "jcl/cics-banking-sample-application-cbsa/RACF001.jcl": { - "1. Artifact Identity": { - "Filename": "RACF001.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/RACF001.jcl", - "Language": "Jcl", - "Architect": "Unknown Architect", - "Indentation Style": "Spaces", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" - }, - "2. Topological Coordinates": { - "X": -955.94, - "Y": 107.25, - "Z": -1683.66 - }, - "3. Architectural Profile": { - "Repository Archetype": "Unclassified", - "Repository Drift (Z-Score)": 0.0, - "Repository Fingerprint": {}, - "File Archetype": null, - "File Drift (Z-Score)": 0.0, - "File Fingerprint": {}, - "Total LOC": 20, - "Coding LOC": 15, - "Documentation LOC": 4, - "Structural Magnitude": 1.9, - "Control Flow Ratio": "0.0%", - "Popularity Rank": 0, - "Raw Churn Frequency": 0.0, - "Authorship Centralization": 0.0, - "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.0 - }, - "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.33%", - "API Exposure": "0.0%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "5. Function Analysis": [ + "Start Line": 904, + "End Line": 904 + }, { - "Function Name": "TSO", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 12, + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 8, - "End Line": 19 - } - ], - "6. Contextual Mitigations & Amplifications": "None Detected", - "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 4, - "Function Parameters": 0, - "Function/Method Declarations": 1, - "Class/Entity Declarations": 1, - "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 4, - "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 0, - "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 0, - "Unit Test Assertions": 0, - "Asynchronous/Concurrent Execution": 0, - "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, - "Decorators and Annotations": 0, - "Generic Type Abstractions": 0, - "Collection Iterators / Comprehensions": 0, - "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, - "Authorship Metadata": 0, - "Planned Work (TODOs)": 0, - "Acknowledged Tech Debt (FIXMEs)": 0, - "Specification Traceability Tags": 0, - "Server-Side Rendering Contexts": 0, - "Event Publishers / Emitters": 0, - "Dependency Injection Constructs": 0, - "Preprocessor Macros": 0, - "Pointer Arithmetic & Addressing": 0, - "Manual Memory Allocation": 0, - "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 2, - "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 0, - "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 0, - "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 0, - "Event Listeners & Subscribers": 0, - "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, - "Structural Space Indentations": 2, - "Hardware Bridge": 0, - "Cryptography": 0, - "Auth Middleware": 0, - "Ipc Rpc Bridges": 0, - "Feature Flags": 0, - "Serialization Parsing": 0, - "Regex Execution": 0, - "Time Date Logic": 0, - "Cloud LLM API Integrations": 0, - "AI Orchestration Frameworks": 0, - "Vector Databases (RAG)": 0, - "Local Inference & Tensor Math": 0, - "Traditional Machine Learning (Stats/Trees)": 0, - "Deep Learning & Neural Networks": 0, - "Lazy Evaluation & Generators (O(1) Memory)": 0, - "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 6, - "Design Camel Case": 0, - "Design Snake Case": 0, - "Design Pascal Case": 0, - "Design Upper Case": 6, - "Design Short Vars": 0, - "Design Long Vars": 0, - "Duplicate Logic": 0, - "Orphaned Logic": 0, - "Instructional Code Examples": 0, - "Architectural Diagrams (Mermaid/PlantUML)": 0, - "Structured Literature Headers": 0, - "Hyperlinked Literature References": 0, - "High-Entropy / Obfuscated Logic": 0, - "Safety & Constraint Bypasses": 0, - "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 1, - "Global Environment Mutation": 0, - "Commented-Out Executable Logic": 0, - "Low-Level Bitwise / Cryptographic Math": 0, - "Non-Standard / Steganographic Imports": 0, - "Non-Standard Unicode / Homoglyphs": 0, - "Embedded Credentials & Keys": 0, - "Sec Extension Mismatch": 0, - "Sec Entropy": 0, - "Sec Tainted Injection": 1, - "Prompt Injection": 0, - "Agentic Rce": 0, - "Invisible Unicode Payload Smuggling": 0, - "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 - }, - "8. Dependency Network": { - "Direct Upstream (Fragility)": 0, - "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 - }, - "9. Extracted Dependencies": [] - }, - "jcl/cics-banking-sample-application-cbsa/REPLCICS.jcl": { - "1. Artifact Identity": { - "Filename": "REPLCICS.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/REPLCICS.jcl", - "Language": "Jcl", - "Architect": "Unknown Architect", - "Indentation Style": "Spaces", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" - }, - "2. Topological Coordinates": { - "X": 1358.19, - "Y": 39.09, - "Z": -2077.51 - }, - "3. Architectural Profile": { - "Repository Archetype": "Unclassified", - "Repository Drift (Z-Score)": 0.0, - "Repository Fingerprint": {}, - "File Archetype": null, - "File Drift (Z-Score)": 0.0, - "File Fingerprint": {}, - "Total LOC": 22, - "Coding LOC": 17, - "Documentation LOC": 4, - "Structural Magnitude": 2.04, - "Control Flow Ratio": "0.0%", - "Popularity Rank": 0, - "Raw Churn Frequency": 0.0, - "Authorship Centralization": 0.0, - "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.0 - }, - "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", - "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.33%", - "API Exposure": "0.0%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "5. Function Analysis": [ + "Start Line": 914, + "End Line": 914 + }, { - "Function Name": "JOBSTEP", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 14, + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 8, - "End Line": 21 - } - ], - "6. Contextual Mitigations & Amplifications": "None Detected", - "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 7, - "Function Parameters": 0, - "Function/Method Declarations": 1, - "Class/Entity Declarations": 1, - "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 7, - "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 0, - "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 0, - "Unit Test Assertions": 0, - "Asynchronous/Concurrent Execution": 0, - "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, - "Decorators and Annotations": 0, - "Generic Type Abstractions": 0, - "Collection Iterators / Comprehensions": 0, - "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, - "Authorship Metadata": 0, - "Planned Work (TODOs)": 0, - "Acknowledged Tech Debt (FIXMEs)": 0, - "Specification Traceability Tags": 0, - "Server-Side Rendering Contexts": 0, - "Event Publishers / Emitters": 0, - "Dependency Injection Constructs": 0, - "Preprocessor Macros": 0, - "Pointer Arithmetic & Addressing": 0, - "Manual Memory Allocation": 0, - "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 2, - "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 0, - "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 0, - "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 0, - "Event Listeners & Subscribers": 0, - "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, - "Structural Space Indentations": 2, - "Hardware Bridge": 0, - "Cryptography": 0, - "Auth Middleware": 0, - "Ipc Rpc Bridges": 0, - "Feature Flags": 0, - "Serialization Parsing": 0, - "Regex Execution": 0, - "Time Date Logic": 0, - "Cloud LLM API Integrations": 0, - "AI Orchestration Frameworks": 0, - "Vector Databases (RAG)": 0, - "Local Inference & Tensor Math": 0, - "Traditional Machine Learning (Stats/Trees)": 0, - "Deep Learning & Neural Networks": 0, - "Lazy Evaluation & Generators (O(1) Memory)": 0, - "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 14, - "Design Camel Case": 0, - "Design Snake Case": 0, - "Design Pascal Case": 0, - "Design Upper Case": 14, - "Design Short Vars": 0, - "Design Long Vars": 0, - "Duplicate Logic": 0, - "Orphaned Logic": 1, - "Instructional Code Examples": 0, - "Architectural Diagrams (Mermaid/PlantUML)": 0, - "Structured Literature Headers": 0, - "Hyperlinked Literature References": 0, - "High-Entropy / Obfuscated Logic": 0, - "Safety & Constraint Bypasses": 0, - "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, - "Global Environment Mutation": 0, - "Commented-Out Executable Logic": 0, - "Low-Level Bitwise / Cryptographic Math": 0, - "Non-Standard / Steganographic Imports": 0, - "Non-Standard Unicode / Homoglyphs": 0, - "Embedded Credentials & Keys": 0, - "Sec Extension Mismatch": 0, - "Sec Entropy": 0, - "Sec Tainted Injection": 1, - "Prompt Injection": 0, - "Agentic Rce": 0, - "Invisible Unicode Payload Smuggling": 0, - "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 - }, - "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, - "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 - }, - "9. Extracted Dependencies": [ - "CBSA.JCL.INSTALL", - "FEU.Z25A.PROCLIB" - ] - }, - "jcl/cics-banking-sample-application-cbsa/REPLSIP.jcl": { - "1. Artifact Identity": { - "Filename": "REPLSIP.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/REPLSIP.jcl", - "Language": "Jcl", - "Architect": "Unknown Architect", - "Indentation Style": "Spaces", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" - }, - "2. Topological Coordinates": { - "X": -755.48, - "Y": 126.68, - "Z": -1637.07 - }, - "3. Architectural Profile": { - "Repository Archetype": "Unclassified", - "Repository Drift (Z-Score)": 0.0, - "Repository Fingerprint": {}, - "File Archetype": null, - "File Drift (Z-Score)": 0.0, - "File Fingerprint": {}, - "Total LOC": 22, - "Coding LOC": 17, - "Documentation LOC": 4, - "Structural Magnitude": 2.04, - "Control Flow Ratio": "0.0%", - "Popularity Rank": 0, - "Raw Churn Frequency": 0.0, - "Authorship Centralization": 0.0, - "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.0 - }, - "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", - "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.33%", - "API Exposure": "0.0%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "5. Function Analysis": [ + "Start Line": 916, + "End Line": 916 + }, { - "Function Name": "JOBSTEP", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 14, + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 8, - "End Line": 21 - } - ], - "6. Contextual Mitigations & Amplifications": "None Detected", - "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 7, - "Function Parameters": 0, - "Function/Method Declarations": 1, - "Class/Entity Declarations": 1, - "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 7, - "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 0, - "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 0, - "Unit Test Assertions": 0, - "Asynchronous/Concurrent Execution": 0, - "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, - "Decorators and Annotations": 0, - "Generic Type Abstractions": 0, - "Collection Iterators / Comprehensions": 0, - "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, - "Authorship Metadata": 0, - "Planned Work (TODOs)": 0, - "Acknowledged Tech Debt (FIXMEs)": 0, - "Specification Traceability Tags": 0, - "Server-Side Rendering Contexts": 0, - "Event Publishers / Emitters": 0, - "Dependency Injection Constructs": 0, - "Preprocessor Macros": 0, - "Pointer Arithmetic & Addressing": 0, - "Manual Memory Allocation": 0, - "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 2, - "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 0, - "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 0, - "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 0, - "Event Listeners & Subscribers": 0, - "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, - "Structural Space Indentations": 2, - "Hardware Bridge": 0, - "Cryptography": 0, - "Auth Middleware": 0, - "Ipc Rpc Bridges": 0, - "Feature Flags": 0, - "Serialization Parsing": 0, - "Regex Execution": 0, - "Time Date Logic": 0, - "Cloud LLM API Integrations": 0, - "AI Orchestration Frameworks": 0, - "Vector Databases (RAG)": 0, - "Local Inference & Tensor Math": 0, - "Traditional Machine Learning (Stats/Trees)": 0, - "Deep Learning & Neural Networks": 0, - "Lazy Evaluation & Generators (O(1) Memory)": 0, - "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 14, - "Design Camel Case": 0, - "Design Snake Case": 0, - "Design Pascal Case": 0, - "Design Upper Case": 14, - "Design Short Vars": 0, - "Design Long Vars": 0, - "Duplicate Logic": 0, - "Orphaned Logic": 1, - "Instructional Code Examples": 0, - "Architectural Diagrams (Mermaid/PlantUML)": 0, - "Structured Literature Headers": 0, - "Hyperlinked Literature References": 0, - "High-Entropy / Obfuscated Logic": 0, - "Safety & Constraint Bypasses": 0, - "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, - "Global Environment Mutation": 0, - "Commented-Out Executable Logic": 0, - "Low-Level Bitwise / Cryptographic Math": 0, - "Non-Standard / Steganographic Imports": 0, - "Non-Standard Unicode / Homoglyphs": 0, - "Embedded Credentials & Keys": 0, - "Sec Extension Mismatch": 0, - "Sec Entropy": 0, - "Sec Tainted Injection": 1, - "Prompt Injection": 0, - "Agentic Rce": 0, - "Invisible Unicode Payload Smuggling": 0, - "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 - }, - "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, - "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 - }, - "9. Extracted Dependencies": [ - "CBSA.JCL.INSTALL", - "DFH560.SYSIN" - ] - }, - "jcl/cics-banking-sample-application-cbsa/RESTCICS.jcl": { - "1. Artifact Identity": { - "Filename": "RESTCICS.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/RESTCICS.jcl", - "Language": "Jcl", - "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" - }, - "2. Topological Coordinates": { - "X": -823.36, - "Y": 95.33, - "Z": -2963.92 - }, - "3. Architectural Profile": { - "Repository Archetype": "Unclassified", - "Repository Drift (Z-Score)": 0.0, - "Repository Fingerprint": {}, - "File Archetype": null, - "File Drift (Z-Score)": 0.0, - "File Fingerprint": {}, - "Total LOC": 14, - "Coding LOC": 8, - "Documentation LOC": 5, - "Structural Magnitude": 1.36, - "Control Flow Ratio": "0.0%", - "Popularity Rank": 0, - "Raw Churn Frequency": 0.0, - "Authorship Centralization": 0.0, - "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.0 - }, - "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", - "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.33%", - "API Exposure": "0.0%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "5. Function Analysis": [ + "Start Line": 918, + "End Line": 920 + }, { - "Function Name": "STEP0001", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 8, - "End Line": 12 + "Start Line": 929, + "End Line": 929 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 938, + "End Line": 938 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 947, + "End Line": 947 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 2, + "Sequential Logic Declarations": 0, "Function Parameters": 0, - "Function/Method Declarations": 1, - "Class/Entity Declarations": 1, - "Defensive Programming Constructs": 0, + "Function/Method Declarations": 134, + "Class/Entity Declarations": 64, + "Defensive Programming Constructs": 83, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -815340,7 +815430,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 2, + "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -815353,7 +815443,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 398, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -815361,7 +815451,7 @@ "Feature Flags": 0, "Serialization Parsing": 0, "Regex Execution": 0, - "Time Date Logic": 0, + "Time Date Logic": 1, "Cloud LLM API Integrations": 0, "AI Orchestration Frameworks": 0, "Vector Databases (RAG)": 0, @@ -815370,15 +815460,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 3, + "Core Var Decl": 0, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 3, + "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -815386,7 +815476,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 1, + "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -815408,35 +815498,60 @@ "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [] - }, - "jcl/cics-banking-sample-application-cbsa/RESTZOSC.jcl": { + } + } + }, + "python/wtfpython": { + "Directory Group Magnitude": 313.92, + "File Count": 6, + "Ecosystem Fingerprint (Archetypes)": { + "Unclassified": "83.3%", + "Static: Literature & Documentation": "16.7%" + }, + "Average Risk Exposures": { + "Cognitive Load Exposure": "11.38%", + "Error & Exception Exposure": "29.13%", + "Tech Debt Exposure": "31.29%", + "Testing Exposure": "14.88%", + "API Exposure": "2.85%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "31.95%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "66.67%", + "Instability Exposure": "41.67%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "7.95%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "Files": { + "python/wtfpython/README.md": { "1. Artifact Identity": { - "Filename": "RESTZOSC.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/RESTZOSC.jcl", - "Language": "Jcl", + "Filename": "README.md", + "Path": "python/wtfpython/README.md", + "Language": "Markdown", "Architect": "Unknown Architect", "Indentation Style": "Neutral / No Indentation", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" + "Doc Umbrella": 1.0, + "Folder Dominant Lang": "python", + "Lock Tier": 1, + "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": 1641.21, - "Y": -0.78, - "Z": -2558.8 + "X": -4576.29, + "Y": 99.18, + "Z": 10610.25 }, "3. Architectural Profile": { - "Repository Archetype": "Unclassified", + "Repository Archetype": "Static: Literature & Documentation", "Repository Drift (Z-Score)": 0.0, "Repository Fingerprint": {}, - "File Archetype": null, + "File Archetype": "N/A", "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 14, - "Coding LOC": 8, - "Documentation LOC": 5, - "Structural Magnitude": 1.36, + "Total LOC": 4180, + "Coding LOC": 0, + "Documentation LOC": 3118, + "Structural Magnitude": 83.6, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -815445,42 +815560,31 @@ "Raw Cognitive Density": 0.0 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", - "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.33%", - "API Exposure": "0.0%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", - "Hardcoded Payload Artifacts": "0.0%" + "Cognitive Load Exposure": "[UNSCANNED - NO DATA]", + "Error & Exception Exposure": "[UNSCANNED - NO DATA]", + "Tech Debt Exposure": "[UNSCANNED - NO DATA]", + "Testing Exposure": "[UNSCANNED - NO DATA]", + "API Exposure": "[UNSCANNED - NO DATA]", + "Concurrency Exposure": "[UNSCANNED - NO DATA]", + "State Flux Exposure": "[UNSCANNED - NO DATA]", + "Commented Logic Exposure": "[UNSCANNED - NO DATA]", + "Specification Exposure": "[UNSCANNED - NO DATA]", + "Instability Exposure": "[UNSCANNED - NO DATA]", + "Volatility Exposure": "[UNSCANNED - NO DATA]", + "Documentation Exposure": "[UNSCANNED - NO DATA]", + "Hardcoded Payload Artifacts": "[UNSCANNED - NO DATA]" }, - "5. Function Analysis": [ - { - "Function Name": "STEP0001", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 8, - "End Line": 12 - } - ], + "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 2, + "Sequential Logic Declarations": 0, "Function Parameters": 0, - "Function/Method Declarations": 1, - "Class/Entity Declarations": 1, + "Function/Method Declarations": 0, + "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -815508,7 +815612,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 2, + "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -815538,23 +815642,23 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 3, + "Core Var Decl": 0, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 3, + "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, - "Instructional Code Examples": 0, + "Orphaned Logic": 0, + "Instructional Code Examples": 504, "Architectural Diagrams (Mermaid/PlantUML)": 0, - "Structured Literature Headers": 0, - "Hyperlinked Literature References": 0, + "Structured Literature Headers": 174, + "Hyperlinked Literature References": 171, "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 1, + "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -815570,41 +815674,44 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 0, + "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [] + "9. Extracted Dependencies": [ + "/CONTRIBUTING.md", + "/mixed_tabs_and_spaces.py" + ] }, - "jcl/cics-banking-sample-application-cbsa/SHUTCICS.jcl": { + "python/wtfpython/2_tricky_strings.py": { "1. Artifact Identity": { - "Filename": "SHUTCICS.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/SHUTCICS.jcl", - "Language": "Jcl", + "Filename": "2_tricky_strings.py", + "Path": "python/wtfpython/2_tricky_strings.py", + "Language": "Python", "Architect": "Unknown Architect", "Indentation Style": "Neutral / No Indentation", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" + "Doc Umbrella": 1.0, + "Folder Dominant Lang": "python", + "Lock Tier": 1.5, + "Identity Proof": "Ecosystem Consensus Lock (75% Local Dominance)" }, "2. Topological Coordinates": { - "X": -607.35, - "Y": 72.27, - "Z": -1232.23 + "X": -4313.75, + "Y": 191.44, + "Z": 10129.64 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", "Repository Drift (Z-Score)": 0.0, "Repository Fingerprint": {}, - "File Archetype": null, + "File Archetype": "Unclassified", "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 14, - "Coding LOC": 8, - "Documentation LOC": 5, - "Structural Magnitude": 1.36, + "Total LOC": 20, + "Coding LOC": 12, + "Documentation LOC": 3, + "Structural Magnitude": 15.24, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -815614,41 +815721,30 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", - "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.33%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "2.3%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "0.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", "Documentation Exposure": "0.0%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [ - { - "Function Name": "STEP0001", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 8, - "End Line": 12 - } - ], + "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 2, + "Sequential Logic Declarations": 6, "Function Parameters": 0, - "Function/Method Declarations": 1, - "Class/Entity Declarations": 1, - "Defensive Programming Constructs": 0, + "Function/Method Declarations": 0, + "Class/Entity Declarations": 0, + "Defensive Programming Constructs": 6, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -815667,7 +815763,7 @@ "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, - "Acknowledged Tech Debt (FIXMEs)": 0, + "Acknowledged Tech Debt (FIXMEs)": 8, "Specification Traceability Tags": 0, "Server-Side Rendering Contexts": 0, "Event Publishers / Emitters": 0, @@ -815676,7 +815772,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 2, + "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -815706,15 +815802,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 3, + "Core Var Decl": 6, "Design Camel Case": 0, - "Design Snake Case": 0, + "Design Snake Case": 6, "Design Pascal Case": 0, - "Design Upper Case": 3, - "Design Short Vars": 0, + "Design Upper Case": 0, + "Design Short Vars": 6, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -815722,7 +815818,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 1, + "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -815745,81 +815841,81 @@ }, "9. Extracted Dependencies": [] }, - "jcl/cics-banking-sample-application-cbsa/SHUTZOSC.jcl": { + "python/wtfpython/insert_ids.py": { "1. Artifact Identity": { - "Filename": "SHUTZOSC.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/SHUTZOSC.jcl", - "Language": "Jcl", + "Filename": "insert_ids.py", + "Path": "python/wtfpython/insert_ids.py", + "Language": "Python", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" + "Indentation Style": "Spaces", + "Doc Umbrella": 1.0, + "Folder Dominant Lang": "python", + "Lock Tier": 1.5, + "Identity Proof": "Ecosystem Consensus Lock (75% Local Dominance)" }, "2. Topological Coordinates": { - "X": 172.91, - "Y": 79.17, - "Z": -3677.07 + "X": -4069.61, + "Y": 187.76, + "Z": 10761.73 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", "Repository Drift (Z-Score)": 0.0, "Repository Fingerprint": {}, - "File Archetype": null, + "File Archetype": "Unclassified", "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 14, - "Coding LOC": 8, - "Documentation LOC": 5, - "Structural Magnitude": 1.36, - "Control Flow Ratio": "0.0%", + "Total LOC": 25, + "Coding LOC": 15, + "Documentation LOC": 0, + "Structural Magnitude": 8.4, + "Control Flow Ratio": "44.4%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.0 + "Raw Cognitive Density": 0.32 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", - "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.33%", - "API Exposure": "0.0%", + "Cognitive Load Exposure": "15.19%", + "Error & Exception Exposure": "79.76%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "2.31%", + "API Exposure": "3.53%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", + "State Flux Exposure": "91.68%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", + "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "STEP0001", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, + "Function Name": "generate_random_id_comment", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 8, - "End Line": 12 + "Start Line": 9, + "End Line": 11 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 2, - "Function Parameters": 0, + "Control Flow Branches": 4, + "Sequential Logic Declarations": 5, + "Function Parameters": 1, "Function/Method Declarations": 1, - "Class/Entity Declarations": 1, + "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 0, + "Type/Safety Bypasses": 2, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 2, + "Exposed API / Public Exports": 1, + "State Mutations / Variable Reassignments": 6, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, @@ -815832,7 +815928,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -815844,7 +815940,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 2, + "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -815857,7 +815953,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 7, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -815874,15 +815970,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 3, + "Core Var Decl": 5, "Design Camel Case": 0, - "Design Snake Case": 0, + "Design Snake Case": 5, "Design Pascal Case": 0, - "Design Upper Case": 3, + "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -815890,7 +815986,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 1, + "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -815906,53 +816002,55 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 0, + "Direct Upstream (Fragility)": 1, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [] + "9. Extracted Dependencies": [ + "uuid" + ] }, - "jcl/cics-banking-sample-application-cbsa/UPDACC.jcl": { + "python/wtfpython/mixed_tabs_and_spaces.py": { "1. Artifact Identity": { - "Filename": "UPDACC.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/UPDACC.jcl", - "Language": "Jcl", + "Filename": "mixed_tabs_and_spaces.py", + "Path": "python/wtfpython/mixed_tabs_and_spaces.py", + "Language": "Python", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" + "Indentation Style": "Mixed (75.0% Spaces / 25.0% Tabs)", + "Doc Umbrella": 1.0, + "Folder Dominant Lang": "python", + "Lock Tier": 1.5, + "Identity Proof": "Ecosystem Consensus Lock (75% Local Dominance)" }, "2. Topological Coordinates": { - "X": 1173.27, - "Y": 59.04, - "Z": -2852.23 + "X": -4807.29, + "Y": 107.58, + "Z": 10236.98 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", "Repository Drift (Z-Score)": 0.0, "Repository Fingerprint": {}, - "File Archetype": null, + "File Archetype": "Unclassified", "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 8, - "Coding LOC": 3, - "Documentation LOC": 4, - "Structural Magnitude": 2.16, - "Control Flow Ratio": "0.0%", - "Popularity Rank": 0, + "Coding LOC": 6, + "Documentation LOC": 0, + "Structural Magnitude": 4.22, + "Control Flow Ratio": "33.3%", + "Popularity Rank": 1, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.0 + "Raw Cognitive Density": 0.02 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "0.0%", + "Cognitive Load Exposure": "5.12%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.31%", + "Testing Exposure": "2.33%", "API Exposure": "3.53%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -815960,26 +816058,26 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "16.56%", + "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "Unknown_Block", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 7, - "End Line": 7 + "Function Name": "square", + "Structural Impact": 3.1, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "33.3%", + "Start Line": 1, + "End Line": 5 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 1, - "Function Parameters": 0, + "Control Flow Branches": 1, + "Sequential Logic Declarations": 2, + "Function Parameters": 1, "Function/Method Declarations": 1, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, @@ -816000,7 +816098,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -816013,7 +816111,7 @@ "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, - "Ad-hoc Print / Debug Statements": 0, + "Ad-hoc Print / Debug Statements": 1, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, @@ -816024,8 +816122,8 @@ "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Tab Indentations": 1, + "Structural Space Indentations": 3, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -816042,11 +816140,11 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 2, + "Core Var Decl": 1, "Design Camel Case": 0, - "Design Snake Case": 0, + "Design Snake Case": 1, "Design Pascal Case": 0, - "Design Upper Case": 2, + "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, @@ -816074,107 +816172,174 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, - "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 1, - "Total Downstream (Absolute Dependency Blast Radius)": 1 + "Direct Upstream (Fragility)": 0, + "Direct Downstream (Dependency Blast Radius)": 1, + "Total Upstream (Absolute Fragility)": 0, + "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [ - "CBSA.CICSBSA.BUILDJCL", - "DEFAULT" - ] + "9. Extracted Dependencies": [] }, - "jcl/cics-banking-sample-application-cbsa/UPDCUST.jcl": { + "python/wtfpython/notebook_generator.py": { "1. Artifact Identity": { - "Filename": "UPDCUST.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/UPDCUST.jcl", - "Language": "Jcl", + "Filename": "notebook_generator.py", + "Path": "python/wtfpython/notebook_generator.py", + "Language": "Python", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" + "Indentation Style": "Spaces", + "Doc Umbrella": 1.0, + "Folder Dominant Lang": "python", + "Lock Tier": 1.5, + "Identity Proof": "Ecosystem Consensus Lock (75% Local Dominance)" }, "2. Topological Coordinates": { - "X": 68.17, - "Y": 38.89, - "Z": -1191.01 + "X": -4390.18, + "Y": 179.55, + "Z": 10396.82 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", "Repository Drift (Z-Score)": 0.0, "Repository Fingerprint": {}, - "File Archetype": null, + "File Archetype": "Unclassified", "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 9, - "Coding LOC": 3, - "Documentation LOC": 5, - "Structural Magnitude": 2.16, - "Control Flow Ratio": "0.0%", + "Total LOC": 398, + "Coding LOC": 245, + "Documentation LOC": 89, + "Structural Magnitude": 199.8, + "Control Flow Ratio": "65.9%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.0 + "Raw Cognitive Density": 0.89 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.31%", - "API Exposure": "3.53%", + "Cognitive Load Exposure": "42.85%", + "Error & Exception Exposure": "95.04%", + "Tech Debt Exposure": "25.51%", + "Testing Exposure": "80.0%", + "API Exposure": "6.52%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", + "State Flux Exposure": "100.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "15.92%", + "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "Unknown_Block", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, + "Function Name": "parse_example_parts", + "Structural Impact": 57.1, + "Lines of Code (LOC)": 103, + "Control Flow Branches": 25, + "Input Parameters": 3, + "Control Flow Ratio": "92.6%", + "Start Line": 96, + "End Line": 198 + }, + { + "Function Name": "convert_to_cells", + "Structural Impact": 16.2, + "Lines of Code (LOC)": 81, + "Control Flow Branches": 6, + "Input Parameters": 2, + "Control Flow Ratio": "54.5%", + "Start Line": 228, + "End Line": 308 + }, + { + "Function Name": "convert_to_notebook", + "Structural Impact": 11.6, + "Lines of Code (LOC)": 32, + "Control Flow Branches": 4, + "Input Parameters": 3, + "Control Flow Ratio": "66.7%", + "Start Line": 311, + "End Line": 342 + }, + { + "Function Name": "inspect_and_sanitize_code_lines", + "Structural Impact": 6.6, + "Lines of Code (LOC)": 18, + "Control Flow Branches": 3, + "Input Parameters": 1, + "Control Flow Ratio": "60.0%", + "Start Line": 208, + "End Line": 225 + }, + { + "Function Name": "remove_from_beginning", + "Structural Impact": 5.4, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 2, + "Input Parameters": 2, + "Control Flow Ratio": "50.0%", + "Start Line": 201, + "End Line": 205 + }, + { + "Function Name": "is_interactive_statement", + "Structural Impact": 4.5, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 2, + "Input Parameters": 1, + "Control Flow Ratio": "40.0%", + "Start Line": 89, + "End Line": 93 + }, + { + "Function Name": "generate_code_block", + "Structural Impact": 2.5, + "Lines of Code (LOC)": 16, "Control Flow Branches": 0, - "Input Parameters": 0, + "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 8, - "End Line": 8 + "Start Line": 57, + "End Line": 72 + }, + { + "Function Name": "generate_markdown_block", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 75, + "End Line": 86 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 1, - "Function Parameters": 0, - "Function/Method Declarations": 1, + "Control Flow Branches": 56, + "Sequential Logic Declarations": 29, + "Function Parameters": 9, + "Function/Method Declarations": 8, "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 0, + "Defensive Programming Constructs": 2, + "Type/Safety Bypasses": 17, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 1, - "State Mutations / Variable Reassignments": 0, + "I/O and Network Boundaries": 4, + "Exposed API / Public Exports": 8, + "State Mutations / Variable Reassignments": 81, "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 0, + "Structured Documentation Blocks": 8, "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 0, + "Closures and Anonymous Functions": 1, "Global State Dependencies": 0, "Decorators and Annotations": 0, - "Generic Type Abstractions": 0, + "Generic Type Abstractions": 1, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, + "Module Dependencies (Imports)": 3, "Authorship Metadata": 0, - "Planned Work (TODOs)": 0, - "Acknowledged Tech Debt (FIXMEs)": 0, + "Planned Work (TODOs)": 3, + "Acknowledged Tech Debt (FIXMEs)": 1, "Specification Traceability Tags": 0, "Server-Side Rendering Contexts": 0, "Event Publishers / Emitters": 0, @@ -816184,19 +816349,19 @@ "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, - "Ad-hoc Print / Debug Statements": 0, + "Ad-hoc Print / Debug Statements": 1, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 0, + "Bitwise Operations": 1, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 0, + "Private / Encapsulated Scopes": 1, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 226, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -816213,13 +816378,13 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 2, + "Core Var Decl": 69, "Design Camel Case": 0, - "Design Snake Case": 0, + "Design Snake Case": 67, "Design Pascal Case": 0, "Design Upper Case": 2, "Design Short Vars": 0, - "Design Long Vars": 0, + "Design Long Vars": 1, "Duplicate Logic": 0, "Orphaned Logic": 0, "Instructional Code Examples": 0, @@ -816245,56 +816410,58 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, + "Direct Upstream (Fragility)": 4, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 1, - "Total Downstream (Absolute Dependency Blast Radius)": 2 + "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "CBSA.CICSBSA.BUILDJCL", - "DEFAULT" + "json", + "os", + "pprint", + "sys" ] }, - "jcl/cics-banking-sample-application-cbsa/XFRFUN.jcl": { + "python/wtfpython/noxfile.py": { "1. Artifact Identity": { - "Filename": "XFRFUN.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/XFRFUN.jcl", - "Language": "Jcl", + "Filename": "noxfile.py", + "Path": "python/wtfpython/noxfile.py", + "Language": "Python", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" + "Indentation Style": "Spaces", + "Doc Umbrella": 1.0, + "Folder Dominant Lang": "python", + "Lock Tier": 1.5, + "Identity Proof": "Ecosystem Consensus Lock (75% Local Dominance)" }, "2. Topological Coordinates": { - "X": -264.18, - "Y": 59.67, - "Z": -3111.83 + "X": -3977.38, + "Y": 253.19, + "Z": 10025.61 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", "Repository Drift (Z-Score)": 0.0, "Repository Fingerprint": {}, - "File Archetype": null, + "File Archetype": "Unclassified", "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 8, - "Coding LOC": 3, - "Documentation LOC": 4, - "Structural Magnitude": 2.16, - "Control Flow Ratio": "0.0%", + "Total LOC": 14, + "Coding LOC": 8, + "Documentation LOC": 0, + "Structural Magnitude": 2.66, + "Control Flow Ratio": "14.3%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.0 + "Raw Cognitive Density": 0.02 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "0.0%", + "Cognitive Load Exposure": "5.12%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.31%", + "Tech Debt Exposure": "62.25%", + "Testing Exposure": "2.32%", "API Exposure": "3.53%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -816302,26 +816469,26 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "16.56%", + "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "Unknown_Block", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, + "Function Name": "tests", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, "Control Flow Branches": 0, - "Input Parameters": 0, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 7, - "End Line": 7 + "Start Line": 12, + "End Line": 13 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 1, - "Function Parameters": 0, + "Control Flow Branches": 1, + "Sequential Logic Declarations": 6, + "Function Parameters": 1, "Function/Method Declarations": 1, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, @@ -816337,12 +816504,12 @@ "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, "Global State Dependencies": 0, - "Decorators and Annotations": 0, - "Generic Type Abstractions": 0, + "Decorators and Annotations": 1, + "Generic Type Abstractions": 1, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, + "Module Dependencies (Imports)": 3, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -816367,7 +816534,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 2, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -816383,16 +816550,16 @@ "Traditional Machine Learning (Stats/Trees)": 0, "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, - "Vectorized Math & Tensor Operations": 0, + "Vectorized Math & Tensor Operations": 1, "Core Var Decl": 2, "Design Camel Case": 0, - "Design Snake Case": 0, + "Design Snake Case": 1, "Design Pascal Case": 0, - "Design Upper Case": 2, - "Design Short Vars": 0, + "Design Upper Case": 0, + "Design Short Vars": 1, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -816416,183 +816583,16 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, - "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 1, - "Total Downstream (Absolute Dependency Blast Radius)": 1 - }, - "9. Extracted Dependencies": [ - "CBSA.CICSBSA.BUILDJCL", - "DEFAULT" - ] - }, - "jcl/cics-banking-sample-application-cbsa/ZOSCSEC.jcl": { - "1. Artifact Identity": { - "Filename": "ZOSCSEC.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/ZOSCSEC.jcl", - "Language": "Jcl", - "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" - }, - "2. Topological Coordinates": { - "X": 891.33, - "Y": 97.13, - "Z": -3572.74 - }, - "3. Architectural Profile": { - "Repository Archetype": "Unclassified", - "Repository Drift (Z-Score)": 0.0, - "Repository Fingerprint": {}, - "File Archetype": null, - "File Drift (Z-Score)": 0.0, - "File Fingerprint": {}, - "Total LOC": 14, - "Coding LOC": 8, - "Documentation LOC": 5, - "Structural Magnitude": 1.86, - "Control Flow Ratio": "0.0%", - "Popularity Rank": 0, - "Raw Churn Frequency": 0.0, - "Authorship Centralization": 0.0, - "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.0 - }, - "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", - "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.33%", - "API Exposure": "0.0%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "5. Function Analysis": [ - { - "Function Name": "BPXIT", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 8, - "End Line": 13 - } - ], - "6. Contextual Mitigations & Amplifications": "None Detected", - "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 2, - "Function Parameters": 1, - "Function/Method Declarations": 1, - "Class/Entity Declarations": 1, - "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 0, - "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 0, - "Unit Test Assertions": 0, - "Asynchronous/Concurrent Execution": 0, - "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, - "Decorators and Annotations": 0, - "Generic Type Abstractions": 0, - "Collection Iterators / Comprehensions": 0, - "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, - "Authorship Metadata": 0, - "Planned Work (TODOs)": 0, - "Acknowledged Tech Debt (FIXMEs)": 0, - "Specification Traceability Tags": 0, - "Server-Side Rendering Contexts": 0, - "Event Publishers / Emitters": 0, - "Dependency Injection Constructs": 0, - "Preprocessor Macros": 0, - "Pointer Arithmetic & Addressing": 0, - "Manual Memory Allocation": 0, - "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 2, - "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 0, - "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 0, - "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 0, - "Event Listeners & Subscribers": 0, - "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, - "Hardware Bridge": 0, - "Cryptography": 0, - "Auth Middleware": 0, - "Ipc Rpc Bridges": 0, - "Feature Flags": 0, - "Serialization Parsing": 0, - "Regex Execution": 0, - "Time Date Logic": 0, - "Cloud LLM API Integrations": 0, - "AI Orchestration Frameworks": 0, - "Vector Databases (RAG)": 0, - "Local Inference & Tensor Math": 0, - "Traditional Machine Learning (Stats/Trees)": 0, - "Deep Learning & Neural Networks": 0, - "Lazy Evaluation & Generators (O(1) Memory)": 0, - "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 3, - "Design Camel Case": 0, - "Design Snake Case": 0, - "Design Pascal Case": 0, - "Design Upper Case": 3, - "Design Short Vars": 0, - "Design Long Vars": 0, - "Duplicate Logic": 0, - "Orphaned Logic": 1, - "Instructional Code Examples": 0, - "Architectural Diagrams (Mermaid/PlantUML)": 0, - "Structured Literature Headers": 0, - "Hyperlinked Literature References": 0, - "High-Entropy / Obfuscated Logic": 0, - "Safety & Constraint Bypasses": 0, - "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 1, - "Global Environment Mutation": 0, - "Commented-Out Executable Logic": 1, - "Low-Level Bitwise / Cryptographic Math": 0, - "Non-Standard / Steganographic Imports": 0, - "Non-Standard Unicode / Homoglyphs": 0, - "Embedded Credentials & Keys": 0, - "Sec Extension Mismatch": 0, - "Sec Entropy": 0, - "Sec Tainted Injection": 0, - "Prompt Injection": 0, - "Agentic Rce": 0, - "Invisible Unicode Payload Smuggling": 0, - "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 - }, - "8. Dependency Network": { - "Direct Upstream (Fragility)": 0, + "Direct Upstream (Fragility)": 3, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [] + "9. Extracted Dependencies": [ + "nox", + "nox.sessions", + "typing" + ] } } }, @@ -827718,7 +827718,7 @@ } }, "jcl/cics-genapp": { - "Directory Group Magnitude": 261.84, + "Directory Group Magnitude": 263.84, "File Count": 30, "Ecosystem Fingerprint (Archetypes)": { "Unclassified": "96.7%", @@ -827726,17 +827726,17 @@ }, "Average Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "50.57%", + "Error & Exception Exposure": "8.22%", "Tech Debt Exposure": "41.75%", - "Testing Exposure": "2.28%", - "API Exposure": "0.0%", + "Testing Exposure": "2.27%", + "API Exposure": "0.21%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.34%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "96.67%", "Instability Exposure": "48.33%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", + "Documentation Exposure": "0.79%", "Hardcoded Payload Artifacts": "0.0%" }, "Files": { @@ -827938,9 +827938,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "91.04%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "98.89%", - "Testing Exposure": "2.41%", + "Testing Exposure": "2.37%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -828022,7 +828022,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 2, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 4, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 20, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -828105,7 +828105,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 6, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -828156,9 +828156,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "91.68%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "99.33%", - "Testing Exposure": "2.42%", + "Testing Exposure": "2.38%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -828220,7 +828220,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 1, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 3, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 34, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -828256,7 +828256,7 @@ "Bitwise Operations": 0, "Thread Synchronization Locks": 3, "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, + "Resource Deallocation & Cleanup": 2, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, @@ -828303,7 +828303,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 4, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -828357,7 +828357,7 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "62.39%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "21.39%", "Testing Exposure": "2.32%", "API Exposure": "0.0%", @@ -828391,7 +828391,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 8, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -828474,7 +828474,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -828525,7 +828525,7 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "58.39%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "15.03%", "Testing Exposure": "2.31%", "API Exposure": "0.0%", @@ -828559,7 +828559,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 8, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -828642,7 +828642,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -828693,7 +828693,7 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "57.24%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "13.62%", "Testing Exposure": "2.31%", "API Exposure": "0.0%", @@ -828727,7 +828727,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 8, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -828810,7 +828810,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -828861,9 +828861,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.34%", + "Testing Exposure": "2.33%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -828895,7 +828895,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 6, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -828978,7 +828978,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -829029,9 +829029,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.34%", + "Testing Exposure": "2.33%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -829063,7 +829063,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 6, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -829146,7 +829146,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -829173,9 +829173,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -4637.53, - "Y": 158.42, - "Z": 5415.23 + "X": -4637.69, + "Y": 158.43, + "Z": 5415.37 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -829187,7 +829187,7 @@ "Total LOC": 114, "Coding LOC": 96, "Documentation LOC": 18, - "Structural Magnitude": 42.92, + "Structural Magnitude": 43.92, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -829197,17 +829197,17 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "62.65%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "33.69%", - "Testing Exposure": "2.58%", - "API Exposure": "0.0%", + "Testing Exposure": "2.57%", + "API Exposure": "2.92%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", + "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -829561,9 +829561,9 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 2, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 49, - "Exposed API / Public Exports": 0, + "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -829597,7 +829597,7 @@ "Bitwise Operations": 0, "Thread Synchronization Locks": 2, "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, + "Resource Deallocation & Cleanup": 2, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, @@ -829644,7 +829644,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 3, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -829739,7 +829739,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -830165,7 +830165,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -830333,7 +830333,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -830457,9 +830457,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "84.74%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "99.33%", - "Testing Exposure": "2.39%", + "Testing Exposure": "2.37%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -830511,7 +830511,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 1, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 2, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 10, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -830594,7 +830594,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 2, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -830645,9 +830645,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "86.83%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "95.26%", - "Testing Exposure": "2.37%", + "Testing Exposure": "2.34%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -830689,7 +830689,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 2, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 4, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -830772,7 +830772,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 2, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -830823,9 +830823,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.33%", + "Testing Exposure": "2.32%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -830857,7 +830857,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 13, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -830940,7 +830940,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -830991,9 +830991,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.33%", + "Testing Exposure": "2.32%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -831025,7 +831025,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 6, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -831108,7 +831108,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -831135,9 +831135,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -4336.2, + "X": -4336.17, "Y": 160.29, - "Z": 4559.97 + "Z": 4559.63 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -831149,7 +831149,7 @@ "Total LOC": 39, "Coding LOC": 35, "Documentation LOC": 4, - "Structural Magnitude": 26.3, + "Structural Magnitude": 27.3, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -831159,17 +831159,17 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.66%", - "API Exposure": "0.0%", + "Testing Exposure": "2.64%", + "API Exposure": "3.53%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", + "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -831413,9 +831413,9 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 11, - "Exposed API / Public Exports": 0, + "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -831496,7 +831496,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -831547,9 +831547,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "71.36%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.36%", + "Testing Exposure": "2.35%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -831581,7 +831581,7 @@ "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 43, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -831664,7 +831664,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -831715,9 +831715,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.33%", + "Testing Exposure": "2.32%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -831749,7 +831749,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 6, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -831832,7 +831832,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -831883,9 +831883,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.34%", + "Testing Exposure": "2.33%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -831917,7 +831917,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 6, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -832000,7 +832000,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -832051,9 +832051,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "66.2%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "30.29%", - "Testing Exposure": "2.35%", + "Testing Exposure": "2.34%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -832085,7 +832085,7 @@ "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 51, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -832168,7 +832168,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -844106,9 +844106,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 5988.55, + "X": 5990.87, "Y": -237.07, - "Z": -7860.94 + "Z": -7863.74 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -844263,9 +844263,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 6717.43, + "X": 6719.75, "Y": -220.86, - "Z": -7446.85 + "Z": -7449.65 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -844420,9 +844420,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 5655.86, + "X": 5658.18, "Y": -230.93, - "Z": -7304.03 + "Z": -7306.83 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -844577,9 +844577,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 5597.39, + "X": 5599.71, "Y": -231.03, - "Z": -7701.48 + "Z": -7704.28 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -844745,9 +844745,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 6068.24, + "X": 6070.56, "Y": -193.38, - "Z": -7168.45 + "Z": -7171.25 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -844902,9 +844902,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 6915.45, + "X": 6917.77, "Y": -200.35, - "Z": -7587.29 + "Z": -7590.09 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -845070,9 +845070,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 6233.35, + "X": 6235.67, "Y": -189.0, - "Z": -7906.75 + "Z": -7909.55 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -845227,9 +845227,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 5983.26, + "X": 5985.58, "Y": -240.46, - "Z": -7404.85 + "Z": -7407.65 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -845384,9 +845384,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 6231.66, + "X": 6233.98, "Y": -208.54, - "Z": -7522.33 + "Z": -7525.13 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -845541,9 +845541,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 5776.22, + "X": 5778.53, "Y": -209.72, - "Z": -7602.48 + "Z": -7605.28 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -845698,9 +845698,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 6470.88, + "X": 6473.2, "Y": -203.73, - "Z": -7067.52 + "Z": -7070.32 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -845855,9 +845855,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 6623.41, + "X": 6625.73, "Y": -223.68, - "Z": -7947.86 + "Z": -7950.66 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -846012,9 +846012,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 6456.61, + "X": 6458.93, "Y": -203.78, - "Z": -8172.85 + "Z": -8175.65 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -846190,9 +846190,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 5832.5, + "X": 5834.82, "Y": -185.31, - "Z": -6885.37 + "Z": -6888.17 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -846358,9 +846358,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 6393.56, + "X": 6395.88, "Y": -205.22, - "Z": -6770.06 + "Z": -6772.86 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -853267,24 +853267,24 @@ } }, "jcl/cobol-programming-course": { - "Directory Group Magnitude": 204.5, + "Directory Group Magnitude": 210.5, "File Count": 43, "Ecosystem Fingerprint (Archetypes)": { "Unclassified": "100.0%" }, "Average Risk Exposures": { "Cognitive Load Exposure": "2.47%", - "Error & Exception Exposure": "61.88%", + "Error & Exception Exposure": "10.65%", "Tech Debt Exposure": "61.05%", - "Testing Exposure": "2.37%", - "API Exposure": "0.0%", + "Testing Exposure": "2.36%", + "API Exposure": "0.49%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", + "Documentation Exposure": "2.19%", "Hardcoded Payload Artifacts": "0.0%" }, "Files": { @@ -853301,9 +853301,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3457.91, - "Y": -255.4, - "Z": -6219.95 + "X": 2779.65, + "Y": -230.33, + "Z": -6611.87 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -853325,9 +853325,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "4.17%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "95.26%", - "Testing Exposure": "2.39%", + "Testing Exposure": "2.37%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -853369,7 +853369,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 8, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -853452,7 +853452,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -853481,9 +853481,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3086.08, - "Y": -336.99, - "Z": -5892.34 + "X": 3086.21, + "Y": -337.15, + "Z": -5892.31 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -853505,9 +853505,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "4.17%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.38%", + "Testing Exposure": "2.37%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -853549,7 +853549,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 11, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -853632,7 +853632,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -853662,9 +853662,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 2960.33, - "Y": -126.12, - "Z": -6759.13 + "X": 2960.31, + "Y": -126.02, + "Z": -6760.3 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -853686,9 +853686,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "4.17%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.38%", + "Testing Exposure": "2.37%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -853730,7 +853730,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 11, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -853813,7 +853813,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -853843,9 +853843,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3714.79, - "Y": -161.91, - "Z": -6217.84 + "X": 3715.71, + "Y": -161.9, + "Z": -6218.21 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -853867,9 +853867,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "4.17%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.38%", + "Testing Exposure": "2.37%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -853911,7 +853911,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 11, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -853994,7 +853994,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -854024,9 +854024,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 2586.33, - "Y": -308.2, - "Z": -6119.61 + "X": 2586.02, + "Y": -308.31, + "Z": -6119.97 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -854048,9 +854048,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "4.17%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.38%", + "Testing Exposure": "2.37%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -854092,7 +854092,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 11, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -854175,7 +854175,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -854205,9 +854205,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3462.11, - "Y": -77.74, - "Z": -7006.69 + "X": 3462.68, + "Y": -77.58, + "Z": -7007.87 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -854229,9 +854229,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "4.17%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.38%", + "Testing Exposure": "2.37%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -854273,7 +854273,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 11, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -854356,7 +854356,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -854386,9 +854386,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3406.97, - "Y": -308.71, - "Z": -5923.56 + "X": 3407.47, + "Y": -308.83, + "Z": -5923.53 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -854410,9 +854410,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "4.17%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.38%", + "Testing Exposure": "2.37%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -854454,7 +854454,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 11, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -854537,7 +854537,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -854567,9 +854567,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 2632.18, - "Y": -208.16, - "Z": -6860.94 + "X": 2631.9, + "Y": -208.14, + "Z": -6861.87 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -854591,9 +854591,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "4.17%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.38%", + "Testing Exposure": "2.37%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -854635,7 +854635,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 11, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -854718,7 +854718,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -854748,9 +854748,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3823.15, - "Y": -81.1, - "Z": -6557.49 + "X": 3824.09, + "Y": -81.01, + "Z": -6558.22 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -854772,9 +854772,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "4.17%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.38%", + "Testing Exposure": "2.37%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -854816,7 +854816,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 11, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -854899,7 +854899,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -854929,9 +854929,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 2754.45, - "Y": -383.72, - "Z": -5742.93 + "X": 2754.37, + "Y": -383.88, + "Z": -5743.0 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -854953,9 +854953,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "4.17%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.38%", + "Testing Exposure": "2.37%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -854997,7 +854997,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 11, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -855080,7 +855080,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -855110,9 +855110,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3032.66, - "Y": -3.37, - "Z": -7017.91 + "X": 3032.86, + "Y": -3.24, + "Z": -7019.15 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -855134,9 +855134,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "4.17%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.38%", + "Testing Exposure": "2.37%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -855178,7 +855178,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 11, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -855261,7 +855261,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -855291,9 +855291,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3771.39, - "Y": -219.77, - "Z": -6028.76 + "X": 3772.2, + "Y": -219.81, + "Z": -6028.93 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -855315,9 +855315,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "4.17%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.38%", + "Testing Exposure": "2.37%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -855359,7 +855359,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 11, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -855442,7 +855442,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -855472,9 +855472,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 2433.69, - "Y": -308.45, - "Z": -6341.31 + "X": 2433.32, + "Y": -308.52, + "Z": -6341.89 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -855496,9 +855496,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "4.17%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.38%", + "Testing Exposure": "2.37%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -855540,7 +855540,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 11, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -855623,7 +855623,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -855653,9 +855653,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3389.66, - "Y": 13.35, - "Z": -7120.22 + "X": 3390.09, + "Y": 13.51, + "Z": -7121.45 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -855677,9 +855677,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "4.17%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.38%", + "Testing Exposure": "2.37%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -855721,7 +855721,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 10, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -855804,7 +855804,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -855833,9 +855833,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3645.0, - "Y": -310.9, - "Z": -5798.17 + "X": 3645.63, + "Y": -310.99, + "Z": -5798.2 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -855857,9 +855857,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "4.17%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.38%", + "Testing Exposure": "2.37%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -855901,7 +855901,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 10, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -855984,7 +855984,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -856013,9 +856013,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 2987.24, - "Y": -300.21, - "Z": -6351.61 + "X": 3228.94, + "Y": -153.47, + "Z": -6890.29 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -856037,9 +856037,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.21%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.44%", + "Testing Exposure": "2.43%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -856091,7 +856091,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 17, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -856174,7 +856174,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -856204,9 +856204,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3733.87, - "Y": -43.57, - "Z": -6872.75 + "X": 3734.63, + "Y": -43.42, + "Z": -6873.79 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -856228,9 +856228,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "4.17%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.38%", + "Testing Exposure": "2.37%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -856272,7 +856272,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 11, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -856355,7 +856355,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -856385,9 +856385,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3178.04, - "Y": -395.74, - "Z": -5752.82 + "X": 3178.32, + "Y": -395.89, + "Z": -5752.77 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -856409,9 +856409,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "4.17%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.38%", + "Testing Exposure": "2.37%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -856453,7 +856453,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 11, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -856536,7 +856536,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -856566,9 +856566,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 2448.14, - "Y": -392.97, - "Z": -5738.23 + "X": 2447.99, + "Y": -393.12, + "Z": -5738.35 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -856734,9 +856734,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 2384.44, - "Y": -132.97, - "Z": -7071.75 + "X": 4169.27, + "Y": -84.18, + "Z": -6542.34 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -856904,9 +856904,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3173.69, - "Y": 18.85, - "Z": -7521.37 + "X": 3173.99, + "Y": 19.0, + "Z": -7522.61 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -857072,9 +857072,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3709.34, - "Y": 57.21, - "Z": -7338.69 + "X": 3373.32, + "Y": -372.61, + "Z": -5609.04 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -857242,9 +857242,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3888.3, - "Y": -347.38, - "Z": -5559.8 + "X": 3889.04, + "Y": -347.45, + "Z": -5559.91 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -857410,9 +857410,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3370.11, - "Y": -393.28, - "Z": -5449.68 + "X": 2406.66, + "Y": -130.54, + "Z": -6994.31 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -857580,9 +857580,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3582.05, - "Y": -88.87, - "Z": -6698.42 + "X": 3582.89, + "Y": -88.73, + "Z": -6699.36 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -857604,9 +857604,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "4.17%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.38%", + "Testing Exposure": "2.37%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -857648,7 +857648,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 10, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -857731,7 +857731,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -857761,9 +857761,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 2245.73, - "Y": -320.15, - "Z": -6072.44 + "X": 3672.92, + "Y": 49.4, + "Z": -7087.44 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -857929,9 +857929,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3183.03, + "X": 3183.32, "Y": -207.64, - "Z": -6293.06 + "Z": -6293.65 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -857943,7 +857943,7 @@ "Total LOC": 61, "Coding LOC": 48, "Documentation LOC": 12, - "Structural Magnitude": 12.76, + "Structural Magnitude": 13.76, "Control Flow Ratio": "13.6%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -857953,17 +857953,17 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.21%", - "Error & Exception Exposure": "84.74%", + "Error & Exception Exposure": "73.66%", "Tech Debt Exposure": "95.26%", - "Testing Exposure": "2.47%", - "API Exposure": "0.0%", + "Testing Exposure": "2.45%", + "API Exposure": "3.36%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", + "Documentation Exposure": "11.98%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -858007,9 +858007,9 @@ "Class/Entity Declarations": 0, "Defensive Programming Constructs": 1, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 2, + "High-Risk Execution Commands": 1, "I/O and Network Boundaries": 33, - "Exposed API / Public Exports": 0, + "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -858043,7 +858043,7 @@ "Bitwise Operations": 0, "Thread Synchronization Locks": 2, "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, + "Resource Deallocation & Cleanup": 1, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, @@ -858090,7 +858090,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 3, + "Sec Tainted Injection": 1, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -858128,9 +858128,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 4120.28, - "Y": -44.86, - "Z": -6536.23 + "X": 2206.56, + "Y": -296.36, + "Z": -6238.7 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -858142,7 +858142,7 @@ "Total LOC": 18, "Coding LOC": 13, "Documentation LOC": 4, - "Structural Magnitude": 1.86, + "Structural Magnitude": 2.86, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -858155,14 +858155,14 @@ "Error & Exception Exposure": "76.85%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.33%", - "API Exposure": "0.0%", + "API Exposure": "3.53%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", + "Documentation Exposure": "16.56%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -858188,7 +858188,7 @@ "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 1, "I/O and Network Boundaries": 6, - "Exposed API / Public Exports": 0, + "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -858298,9 +858298,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 2320.73, - "Y": -192.82, - "Z": -6627.11 + "X": 2320.4, + "Y": -192.83, + "Z": -6627.91 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -858322,9 +858322,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "86.83%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.37%", + "Testing Exposure": "2.34%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -858366,7 +858366,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 2, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 11, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -858449,7 +858449,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 2, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -858482,9 +858482,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 4020.52, - "Y": -1.72, - "Z": -7116.97 + "X": 4021.33, + "Y": -1.58, + "Z": -7117.95 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -858506,9 +858506,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.33%", + "Testing Exposure": "2.31%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -858540,7 +858540,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 1, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -858623,7 +858623,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -858652,8 +858652,8 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 2821.44, - "Y": -425.42, + "X": 2821.48, + "Y": -425.58, "Z": -5628.4 }, "3. Architectural Profile": { @@ -858676,9 +858676,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "86.83%", + "Error & Exception Exposure": "76.85%", "Tech Debt Exposure": "95.26%", - "Testing Exposure": "2.37%", + "Testing Exposure": "2.36%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -858730,7 +858730,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 2, + "High-Risk Execution Commands": 1, "I/O and Network Boundaries": 9, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -858813,7 +858813,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 2, + "Sec Tainted Injection": 1, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -858843,9 +858843,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3983.23, - "Y": -259.36, - "Z": -5801.62 + "X": 3986.64, + "Y": -259.43, + "Z": -5800.6 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -858857,7 +858857,7 @@ "Total LOC": 17, "Coding LOC": 15, "Documentation LOC": 1, - "Structural Magnitude": 2.4, + "Structural Magnitude": 3.4, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -858867,17 +858867,17 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.34%", - "API Exposure": "0.0%", + "Testing Exposure": "2.32%", + "API Exposure": "3.53%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", + "Documentation Exposure": "18.61%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -858901,9 +858901,9 @@ "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 8, - "Exposed API / Public Exports": 0, + "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -858984,7 +858984,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -859014,9 +859014,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 2668.93, - "Y": -130.61, - "Z": -6847.61 + "X": 2668.79, + "Y": -130.54, + "Z": -6848.7 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -859038,9 +859038,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "4.17%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.38%", + "Testing Exposure": "2.37%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -859082,7 +859082,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 11, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -859165,7 +859165,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -859195,9 +859195,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3022.77, - "Y": -483.84, - "Z": -5339.65 + "X": 3022.95, + "Y": -484.0, + "Z": -5339.61 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -859363,9 +859363,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 2828.11, - "Y": -59.42, - "Z": -7305.03 + "X": 2827.28, + "Y": -58.84, + "Z": -7308.61 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -859377,7 +859377,7 @@ "Total LOC": 30, "Coding LOC": 25, "Documentation LOC": 4, - "Structural Magnitude": 2.7, + "Structural Magnitude": 3.7, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -859387,17 +859387,17 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.34%", - "API Exposure": "0.0%", + "Testing Exposure": "2.33%", + "API Exposure": "3.53%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", + "Documentation Exposure": "16.56%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -859421,9 +859421,9 @@ "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 10, - "Exposed API / Public Exports": 0, + "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -859504,7 +859504,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -859536,9 +859536,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 2761.85, - "Y": -178.28, - "Z": -6372.0 + "X": 3441.01, + "Y": -203.6, + "Z": -5980.03 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -859550,7 +859550,7 @@ "Total LOC": 39, "Coding LOC": 34, "Documentation LOC": 4, - "Structural Magnitude": 6.28, + "Structural Magnitude": 7.28, "Control Flow Ratio": "6.5%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -859560,17 +859560,17 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "3.86%", - "Error & Exception Exposure": "86.83%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.4%", - "API Exposure": "0.0%", + "Testing Exposure": "2.37%", + "API Exposure": "3.53%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", + "Documentation Exposure": "16.56%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -859604,9 +859604,9 @@ "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 2, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 20, - "Exposed API / Public Exports": 0, + "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -859640,7 +859640,7 @@ "Bitwise Operations": 0, "Thread Synchronization Locks": 2, "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, + "Resource Deallocation & Cleanup": 1, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, @@ -859687,7 +859687,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 2, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -859722,9 +859722,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3176.68, - "Y": -106.18, - "Z": -6612.13 + "X": 2934.87, + "Y": -252.92, + "Z": -6074.97 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -859736,7 +859736,7 @@ "Total LOC": 51, "Coding LOC": 42, "Documentation LOC": 8, - "Structural Magnitude": 10.04, + "Structural Magnitude": 11.04, "Control Flow Ratio": "10.5%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -859746,17 +859746,17 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "4.49%", - "Error & Exception Exposure": "86.83%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.44%", - "API Exposure": "0.0%", + "Testing Exposure": "2.42%", + "API Exposure": "3.51%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", + "Documentation Exposure": "14.12%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -859800,9 +859800,9 @@ "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 2, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 26, - "Exposed API / Public Exports": 0, + "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -859836,7 +859836,7 @@ "Bitwise Operations": 0, "Thread Synchronization Locks": 2, "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, + "Resource Deallocation & Cleanup": 1, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, @@ -859883,7 +859883,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 2, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -859918,9 +859918,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 4014.75, - "Y": -74.61, - "Z": -6748.23 + "X": 4015.65, + "Y": -74.49, + "Z": -6749.09 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -860098,9 +860098,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 2564.41, - "Y": -10.51, - "Z": -7455.15 + "X": 2564.35, + "Y": -10.42, + "Z": -7456.3 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -860266,9 +860266,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 4258.91, - "Y": -142.13, - "Z": -6008.03 + "X": 4259.85, + "Y": -142.11, + "Z": -6008.45 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -860434,9 +860434,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 2097.76, - "Y": -274.62, - "Z": -6503.5 + "X": 2097.4, + "Y": -274.67, + "Z": -6504.16 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -860602,9 +860602,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 4024.6, - "Y": -161.07, - "Z": -6229.93 + "X": 4025.55, + "Y": -161.03, + "Z": -6230.43 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -860626,9 +860626,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "4.17%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.38%", + "Testing Exposure": "2.37%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -860670,7 +860670,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 11, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -860753,7 +860753,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -860783,9 +860783,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 2459.76, - "Y": -379.41, - "Z": -5954.1 + "X": 2459.52, + "Y": -379.55, + "Z": -5954.33 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -860807,9 +860807,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "4.17%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.38%", + "Testing Exposure": "2.37%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -860851,7 +860851,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 11, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -860934,7 +860934,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -871671,24 +871671,24 @@ } }, "jcl/zopeneditor-sample": { - "Directory Group Magnitude": 97.88, + "Directory Group Magnitude": 98.88, "File Count": 10, "Ecosystem Fingerprint (Archetypes)": { "Unclassified": "100.0%" }, "Average Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "79.56%", + "Error & Exception Exposure": "57.6%", "Tech Debt Exposure": "68.06%", - "Testing Exposure": "2.37%", - "API Exposure": "0.0%", + "Testing Exposure": "2.35%", + "API Exposure": "0.35%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "38.85%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "90.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", + "Documentation Exposure": "1.19%", "Hardcoded Payload Artifacts": "0.0%" }, "Files": { @@ -871729,9 +871729,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "72.2%", + "Error & Exception Exposure": "60.09%", "Tech Debt Exposure": "51.84%", - "Testing Exposure": "2.35%", + "Testing Exposure": "2.34%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "22.73%", @@ -871773,7 +871773,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 1, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 24, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 2, @@ -871783,7 +871783,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 2, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -871809,7 +871809,7 @@ "Bitwise Operations": 0, "Thread Synchronization Locks": 7, "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, + "Resource Deallocation & Cleanup": 7, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, @@ -871856,7 +871856,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 2, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -871915,9 +871915,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "75.96%", + "Error & Exception Exposure": "62.08%", "Tech Debt Exposure": "69.04%", - "Testing Exposure": "2.35%", + "Testing Exposure": "2.34%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "29.1%", @@ -871959,7 +871959,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 1, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 20, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 2, @@ -871969,7 +871969,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 2, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -871995,7 +871995,7 @@ "Bitwise Operations": 0, "Thread Synchronization Locks": 5, "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, + "Resource Deallocation & Cleanup": 5, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, @@ -872042,7 +872042,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 2, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -872075,9 +872075,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -2095.78, - "Y": 31.78, - "Z": 9500.84 + "X": -1023.63, + "Y": 0.3, + "Z": 9468.29 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -872089,7 +872089,7 @@ "Total LOC": 52, "Coding LOC": 24, "Documentation LOC": 28, - "Structural Magnitude": 3.08, + "Structural Magnitude": 4.08, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -872099,17 +872099,17 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.34%", - "API Exposure": "0.0%", + "Testing Exposure": "2.33%", + "API Exposure": "3.49%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", + "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -872133,9 +872133,9 @@ "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 10, - "Exposed API / Public Exports": 0, + "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -872216,7 +872216,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -872305,7 +872305,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 3, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -872405,9 +872405,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -1022.04, - "Y": -37.72, - "Z": 9538.94 + "X": -2092.98, + "Y": -6.37, + "Z": 9572.29 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -872473,7 +872473,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 2, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -872599,9 +872599,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "71.57%", + "Error & Exception Exposure": "59.76%", "Tech Debt Exposure": "49.12%", - "Testing Exposure": "2.35%", + "Testing Exposure": "2.34%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "21.87%", @@ -872643,7 +872643,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 1, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 24, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 2, @@ -872653,7 +872653,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 2, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -872679,7 +872679,7 @@ "Bitwise Operations": 0, "Thread Synchronization Locks": 7, "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, + "Resource Deallocation & Cleanup": 7, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, @@ -872726,7 +872726,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 2, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -872785,9 +872785,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "62.58%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.35%", + "Testing Exposure": "2.34%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "31.0%", @@ -872829,7 +872829,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 1, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 18, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 2, @@ -872839,7 +872839,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 2, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -872865,7 +872865,7 @@ "Bitwise Operations": 0, "Thread Synchronization Locks": 4, "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, + "Resource Deallocation & Cleanup": 4, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, @@ -872912,7 +872912,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 2, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -872968,9 +872968,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "95.49%", + "Error & Exception Exposure": "63.85%", "Tech Debt Exposure": "92.04%", - "Testing Exposure": "2.42%", + "Testing Exposure": "2.38%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "42.15%", @@ -873052,7 +873052,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 6, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 60, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 5, @@ -873062,7 +873062,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 5, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -873088,7 +873088,7 @@ "Bitwise Operations": 0, "Thread Synchronization Locks": 4, "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, + "Resource Deallocation & Cleanup": 2, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, @@ -873135,7 +873135,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 6, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -873201,9 +873201,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "97.34%", + "Error & Exception Exposure": "70.21%", "Tech Debt Exposure": "99.33%", - "Testing Exposure": "2.43%", + "Testing Exposure": "2.38%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "91.68%", @@ -873265,7 +873265,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 1, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 4, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 38, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 6, @@ -873275,7 +873275,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 6, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -873301,7 +873301,7 @@ "Bitwise Operations": 0, "Thread Synchronization Locks": 1, "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, + "Resource Deallocation & Cleanup": 1, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, @@ -873348,7 +873348,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 4, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -873411,9 +873411,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "98.39%", + "Error & Exception Exposure": "66.5%", "Tech Debt Exposure": "99.91%", - "Testing Exposure": "2.47%", + "Testing Exposure": "2.4%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "69.0%", @@ -873485,7 +873485,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 1, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 5, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 51, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 4, @@ -873495,7 +873495,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 4, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -873521,7 +873521,7 @@ "Bitwise Operations": 0, "Thread Synchronization Locks": 3, "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, + "Resource Deallocation & Cleanup": 1, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, @@ -873568,7 +873568,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 5, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -873633,9 +873633,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4689.51, + "X": 4691.11, "Y": -56.97, - "Z": -8157.99 + "Z": -8160.76 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -873790,9 +873790,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4273.53, + "X": 4275.13, "Y": -134.4, - "Z": -7600.26 + "Z": -7603.03 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -873962,9 +873962,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4654.86, + "X": 4656.46, "Y": -19.84, - "Z": -8957.79 + "Z": -8960.56 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -874134,9 +874134,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4505.91, + "X": 4507.51, "Y": -63.53, - "Z": -8045.17 + "Z": -8047.94 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -874291,9 +874291,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4749.39, + "X": 4750.99, "Y": -42.39, - "Z": -8602.81 + "Z": -8605.58 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -874448,9 +874448,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4978.91, + "X": 4980.51, "Y": -165.67, - "Z": -8012.43 + "Z": -8015.2 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -874605,9 +874605,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4111.12, + "X": 4112.72, "Y": -9.17, - "Z": -8429.22 + "Z": -8432.0 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -874773,9 +874773,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4298.81, + "X": 4300.41, "Y": -85.32, - "Z": -8262.73 + "Z": -8265.5 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -874930,9 +874930,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 5336.09, + "X": 5337.7, "Y": -155.33, - "Z": -8170.56 + "Z": -8173.34 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -875098,9 +875098,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4502.84, + "X": 4504.44, "Y": -43.71, - "Z": -8776.99 + "Z": -8779.76 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -875266,9 +875266,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 5219.11, + "X": 5220.71, "Y": -126.41, - "Z": -8122.68 + "Z": -8125.45 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -875434,9 +875434,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4567.53, + "X": 4569.13, "Y": -72.45, - "Z": -7702.47 + "Z": -7705.25 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -875628,9 +875628,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4172.16, + "X": 4173.76, "Y": -93.82, - "Z": -8113.56 + "Z": -8116.33 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -875799,9 +875799,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4962.28, + "X": 4963.88, "Y": -84.11, - "Z": -8661.41 + "Z": -8664.18 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -875970,9 +875970,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 5077.7, + "X": 5079.3, "Y": -65.26, - "Z": -8502.43 + "Z": -8505.2 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -876141,9 +876141,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4934.2, + "X": 4935.8, "Y": -166.2, - "Z": -7627.08 + "Z": -7629.86 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -876341,9 +876341,9 @@ "Identity Proof": "Single Indicator (Ext: .xml)" }, "2. Topological Coordinates": { - "X": 6610.06, + "X": 6612.2, "Y": 112.82, - "Z": -9067.19 + "Z": -9070.01 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -876498,9 +876498,9 @@ "Identity Proof": "Single Indicator (Ext: .xml)" }, "2. Topological Coordinates": { - "X": 6828.06, + "X": 6830.2, "Y": 160.61, - "Z": -8410.69 + "Z": -8413.5 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -876655,9 +876655,9 @@ "Identity Proof": "Single Indicator (Ext: .xml)" }, "2. Topological Coordinates": { - "X": 6129.16, + "X": 6131.3, "Y": 252.1, - "Z": -8730.79 + "Z": -8733.61 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -876812,9 +876812,9 @@ "Identity Proof": "Single Indicator (Ext: .cls)" }, "2. Topological Coordinates": { - "X": 6530.57, + "X": 6532.71, "Y": 135.41, - "Z": -8733.67 + "Z": -8736.49 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -877120,9 +877120,9 @@ "Identity Proof": "Single Indicator (Ext: .cls)" }, "2. Topological Coordinates": { - "X": 6912.47, + "X": 6914.61, "Y": 94.78, - "Z": -8960.05 + "Z": -8962.87 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -877308,9 +877308,9 @@ "Identity Proof": "Single Indicator (Ext: .cls)" }, "2. Topological Coordinates": { - "X": 6288.46, + "X": 6290.6, "Y": 231.79, - "Z": -8574.55 + "Z": -8577.37 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -884504,9 +884504,9 @@ "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": 5853.3, + "X": 5854.76, "Y": -300.32, - "Z": -9989.04 + "Z": -9991.46 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -884672,9 +884672,9 @@ "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": 5588.33, + "X": 5589.8, "Y": -225.58, - "Z": -9295.22 + "Z": -9297.64 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -884840,9 +884840,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 5775.51, + "X": 5776.98, "Y": -210.37, - "Z": -9492.38 + "Z": -9494.8 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -890104,9 +890104,9 @@ "Identity Proof": "Single Indicator (Ext: .hlo)" }, "2. Topological Coordinates": { - "X": 7466.25, + "X": 7468.31, "Y": -115.43, - "Z": -8877.44 + "Z": -8879.84 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -890261,9 +890261,9 @@ "Identity Proof": "Single Indicator (Ext: .hlo)" }, "2. Topological Coordinates": { - "X": 7478.9, + "X": 7480.97, "Y": -71.41, - "Z": -8731.2 + "Z": -8733.6 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -890418,9 +890418,9 @@ "Identity Proof": "Single Indicator (Ext: .hlo)" }, "2. Topological Coordinates": { - "X": 7242.32, + "X": 7244.38, "Y": -21.96, - "Z": -8555.29 + "Z": -8557.68 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -897310,9 +897310,9 @@ "Identity Proof": "Single Indicator (Ext: .go)" }, "2. Topological Coordinates": { - "X": 6432.56, + "X": 6434.42, "Y": 147.19, - "Z": -9406.71 + "Z": -9409.39 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -899206,7 +899206,7 @@ }, "Average Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "71.72%", + "Error & Exception Exposure": "46.1%", "Tech Debt Exposure": "53.79%", "Testing Exposure": "2.34%", "API Exposure": "0.0%", @@ -899502,7 +899502,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -899628,9 +899628,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.33%", + "Testing Exposure": "2.32%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -899662,7 +899662,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 2, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -899745,7 +899745,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -899977,9 +899977,9 @@ "Identity Proof": "Single Indicator (Ext: .proto)" }, "2. Topological Coordinates": { - "X": 8013.2, + "X": 8015.5, "Y": -23.25, - "Z": -8118.05 + "Z": -8120.4 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -906036,9 +906036,9 @@ "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": 2666.91, + "X": 2667.3, "Y": 287.86, - "Z": -9993.43 + "Z": -9994.83 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -906204,9 +906204,9 @@ "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": 2889.07, + "X": 2889.46, "Y": 208.99, - "Z": -10251.99 + "Z": -10253.4 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -907308,9 +907308,9 @@ }, "Average Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.34%", + "Testing Exposure": "2.33%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -907359,9 +907359,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.34%", + "Testing Exposure": "2.33%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -907393,7 +907393,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 2, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -907476,7 +907476,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -914523,9 +914523,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": 3524.65, + "X": 3525.15, "Y": -80.09, - "Z": -10038.34 + "Z": -10039.78 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -915247,9 +915247,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": 5413.75, + "X": 5415.23, "Y": 139.72, - "Z": -9767.89 + "Z": -9770.59 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -915971,9 +915971,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": 7148.36, + "X": 7150.53, "Y": -122.51, - "Z": -8941.09 + "Z": -8943.84 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -921584,9 +921584,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": 4387.63, + "X": 4388.17, "Y": 27.26, - "Z": -10356.27 + "Z": -10357.56 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -922308,9 +922308,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": 6286.25, + "X": 6287.75, "Y": -166.67, - "Z": -9826.65 + "Z": -9829.0 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -923032,9 +923032,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": 7995.22, + "X": 7997.3, "Y": -156.25, - "Z": -8802.19 + "Z": -8804.5 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -928459,9 +928459,9 @@ "Identity Proof": "Single Indicator (Ext: .html)" }, "2. Topological Coordinates": { - "X": 4743.76, + "X": 4745.0, "Y": 252.02, - "Z": -9990.53 + "Z": -9993.17 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -928616,9 +928616,9 @@ "Identity Proof": "Single Indicator (Ext: .html)" }, "2. Topological Coordinates": { - "X": 4486.51, + "X": 4487.75, "Y": 281.75, - "Z": -9893.19 + "Z": -9895.83 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", diff --git a/tests/golden_master_zero_dep_audit.json b/tests/golden_master_zero_dep_audit.json index 76072f5c8..cde3bc320 100644 --- a/tests/golden_master_zero_dep_audit.json +++ b/tests/golden_master_zero_dep_audit.json @@ -11,14 +11,14 @@ "pyyaml": false }, "Target Root Name": "data", - "Absolute Project Path": "/srv/storage_16tb/projects/gitgalaxy/language-crucible/data", - "Analysis ISO Timestamp": "2026-09-05T13:05:24.523068+00:00", - "Total Scan Duration": "18.85 seconds" + "Absolute Project Path": "/home/joe/nyx_projects/language-crucible/data", + "Analysis ISO Timestamp": "2026-09-05T18:14:23.680689+00:00", + "Total Scan Duration": "44.9 seconds" }, "Source Control Footprint (Immutable Anchor)": { "Active Branch": "HEAD", "Commit Hash (SHA-1)": "77bc85ecb8bb2fa8331b83f2bd348ec735df66e3", - "Remote Origin URL": "https://github.com/squid-protocol/language-crucible.git", + "Remote Origin URL": "https://github.com/squid-protocol/language-crucible", "Last Code Integration Date": "2026-08-30T08:52:00-04:00" } }, @@ -237,9 +237,9 @@ }, "health": { "avg_cognitive_load": 22.578, - "avg_safety_score": 45.662, + "avg_safety_score": 43.75, "avg_tech_debt": 28.878, - "avg_documentation": 7.985 + "avg_documentation": 8.052 }, "composition": { "markdown": { @@ -410,7 +410,7 @@ "jcl": { "files": 185, "loc": 5837, - "impact": 894.9400000000007 + "impact": 907.9400000000007 }, "kotlin": { "files": 5, @@ -1152,20 +1152,20 @@ }, "jcl/cics-genapp": { "file_count": 30, - "total_mass": 261.84, + "total_mass": 263.84, "avg_exposures": { "cognitive_load": 0.0, - "safety_score": 50.57, + "safety_score": 8.22, "tech_debt": 41.75, - "verification": 2.28, - "api_exposure": 0.0, + "verification": 2.27, + "api_exposure": 0.21, "concurrency": 0.0, "state_flux": 0.34, "dead_code": 0.0, "spec_match": 96.67, "stability": 48.33, "churn": 0.0, - "documentation": 0.0, + "documentation": 0.79, "secrets_risk": 0.0 } }, @@ -5012,7 +5012,7 @@ "total_mass": 15.76, "avg_exposures": { "cognitive_load": 0.0, - "safety_score": 71.72, + "safety_score": 46.1, "tech_debt": 53.79, "verification": 2.34, "api_exposure": 0.0, @@ -5028,20 +5028,20 @@ }, "jcl/cics-banking-sample-application-cbsa": { "file_count": 99, - "total_mass": 312.88, + "total_mass": 316.88, "avg_exposures": { "cognitive_load": 0.0, - "safety_score": 45.62, + "safety_score": 30.07, "tech_debt": 43.22, "verification": 2.33, - "api_exposure": 0.98, + "api_exposure": 1.11, "concurrency": 0.0, "state_flux": 1.17, "dead_code": 3.07, "spec_match": 98.99, "stability": 50.0, "churn": 0.0, - "documentation": 3.87, + "documentation": 4.47, "secrets_risk": 0.0 } }, @@ -5050,9 +5050,9 @@ "total_mass": 3.12, "avg_exposures": { "cognitive_load": 0.0, - "safety_score": 76.85, + "safety_score": 0.0, "tech_debt": 0.0, - "verification": 2.34, + "verification": 2.33, "api_exposure": 0.0, "concurrency": 0.0, "state_flux": 0.0, @@ -5066,39 +5066,39 @@ }, "jcl/cobol-programming-course": { "file_count": 43, - "total_mass": 204.5, + "total_mass": 210.5, "avg_exposures": { "cognitive_load": 2.47, - "safety_score": 61.88, + "safety_score": 10.65, "tech_debt": 61.05, - "verification": 2.37, - "api_exposure": 0.0, + "verification": 2.36, + "api_exposure": 0.49, "concurrency": 0.0, "state_flux": 0.0, "dead_code": 0.0, "spec_match": 100.0, "stability": 50.0, "churn": 0.0, - "documentation": 0.0, + "documentation": 2.19, "secrets_risk": 0.0 } }, "jcl/zopeneditor-sample": { "file_count": 10, - "total_mass": 97.88, + "total_mass": 98.88, "avg_exposures": { "cognitive_load": 0.0, - "safety_score": 79.56, + "safety_score": 57.6, "tech_debt": 68.06, - "verification": 2.37, - "api_exposure": 0.0, + "verification": 2.35, + "api_exposure": 0.35, "concurrency": 0.0, "state_flux": 38.85, "dead_code": 0.0, "spec_match": 90.0, "stability": 50.0, "churn": 0.0, - "documentation": 0.0, + "documentation": 1.19, "secrets_risk": 0.0 } }, @@ -346598,9 +346598,9 @@ "Identity Proof": "Single Indicator (Ext: .js)" }, "2. Topological Coordinates": { - "X": 3101.32, + "X": 3101.8, "Y": -96.08, - "Z": -9884.12 + "Z": -9885.58 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -347512,9 +347512,9 @@ "Identity Proof": "Single Indicator (Ext: .js)" }, "2. Topological Coordinates": { - "X": 2747.21, + "X": 2747.68, "Y": -174.69, - "Z": -9333.17 + "Z": -9334.63 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -348960,9 +348960,9 @@ "Identity Proof": "Single Indicator (Ext: .js)" }, "2. Topological Coordinates": { - "X": 3072.92, + "X": 3073.4, "Y": -49.48, - "Z": -9615.31 + "Z": -9616.77 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -350692,9 +350692,9 @@ "Identity Proof": "Single Indicator (Ext: .js)" }, "2. Topological Coordinates": { - "X": 3356.44, + "X": 3356.92, "Y": 40.54, - "Z": -9275.17 + "Z": -9276.64 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -350860,9 +350860,9 @@ "Identity Proof": "Single Indicator (Ext: .ts)" }, "2. Topological Coordinates": { - "X": 2575.63, + "X": 2576.11, "Y": -244.18, - "Z": -9677.5 + "Z": -9678.97 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -443886,9 +443886,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": 7379.65, + "X": 7381.92, "Y": 165.91, - "Z": -8428.15 + "Z": -8430.57 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -444689,9 +444689,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": 6999.03, + "X": 7001.3, "Y": 265.38, - "Z": -7713.08 + "Z": -7715.5 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -445659,9 +445659,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": 6787.47, + "X": 6789.74, "Y": 225.18, - "Z": -7948.69 + "Z": -7951.11 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -445940,9 +445940,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": 7824.7, + "X": 7826.97, "Y": 134.51, - "Z": -8173.94 + "Z": -8176.36 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -446212,9 +446212,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": 7637.84, + "X": 7640.11, "Y": 311.63, - "Z": -7253.28 + "Z": -7255.7 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -446490,9 +446490,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": 7292.29, + "X": 7294.56, "Y": 257.91, - "Z": -7908.17 + "Z": -7910.59 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -447600,9 +447600,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": 7201.47, + "X": 7203.75, "Y": 404.61, - "Z": -7208.57 + "Z": -7210.99 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -447991,9 +447991,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": 3754.12, + "X": 3754.73, "Y": -127.57, - "Z": -9730.85 + "Z": -9732.2 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -448148,9 +448148,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": 3527.29, + "X": 3527.89, "Y": -76.36, - "Z": -9338.08 + "Z": -9339.43 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -449380,9 +449380,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": 4546.52, + "X": 4547.12, "Y": -154.94, - "Z": -9433.18 + "Z": -9434.54 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -450100,9 +450100,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": 4000.91, + "X": 4001.51, "Y": -115.21, - "Z": -9116.12 + "Z": -9117.47 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -451422,9 +451422,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": 4065.71, + "X": 4066.32, "Y": -150.26, - "Z": -9701.93 + "Z": -9703.29 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -452471,9 +452471,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": 3853.29, + "X": 3853.89, "Y": -147.74, - "Z": -8519.42 + "Z": -8520.78 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -452843,9 +452843,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": 3774.4, + "X": 3775.01, "Y": -155.51, - "Z": -8957.33 + "Z": -8958.69 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -454671,9 +454671,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": 4359.96, + "X": 4360.56, "Y": -127.18, - "Z": -8643.55 + "Z": -8644.9 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -586387,9 +586387,9 @@ "Identity Proof": "Single Indicator (Ext: .json)" }, "2. Topological Coordinates": { - "X": 5190.5, + "X": 5191.95, "Y": 237.38, - "Z": -9063.81 + "Z": -9066.58 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -586544,9 +586544,9 @@ "Identity Proof": "Single Indicator (Exact Match)" }, "2. Topological Coordinates": { - "X": 4395.86, + "X": 4397.3, "Y": 229.37, - "Z": -9470.98 + "Z": -9473.74 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -586702,9 +586702,9 @@ "Identity Proof": "Single Indicator (Ext: .ts)" }, "2. Topological Coordinates": { - "X": 4895.14, + "X": 4896.59, "Y": 292.43, - "Z": -9843.68 + "Z": -9846.44 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -588738,9 +588738,9 @@ "Identity Proof": "Single Indicator (Ext: .ts)" }, "2. Topological Coordinates": { - "X": 4901.07, + "X": 4902.51, "Y": 202.09, - "Z": -9501.06 + "Z": -9503.83 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -590472,9 +590472,9 @@ "Identity Proof": "Single Indicator (Ext: .ts)" }, "2. Topological Coordinates": { - "X": 4599.26, + "X": 4600.71, "Y": 227.35, - "Z": -9001.68 + "Z": -9004.44 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -644335,9 +644335,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 3515.9, + "X": 3516.45, "Y": 71.06, - "Z": -8331.43 + "Z": -8332.9 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -644543,9 +644543,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 2648.6, + "X": 2649.14, "Y": 152.18, - "Z": -7787.68 + "Z": -7789.15 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -644711,9 +644711,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 3252.91, + "X": 3253.45, "Y": 174.96, - "Z": -7676.21 + "Z": -7677.69 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -644868,9 +644868,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 3061.92, + "X": 3062.47, "Y": 89.43, - "Z": -8674.58 + "Z": -8676.05 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -645186,9 +645186,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 2925.56, + "X": 2926.11, "Y": 80.1, - "Z": -8860.62 + "Z": -8862.09 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -645354,9 +645354,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 3082.82, + "X": 3083.37, "Y": 118.21, - "Z": -8095.17 + "Z": -8096.64 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -645922,9 +645922,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 2490.11, + "X": 2490.66, "Y": 140.87, - "Z": -7952.01 + "Z": -7953.48 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -646120,9 +646120,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 3742.69, + "X": 3743.24, "Y": 118.51, - "Z": -8297.59 + "Z": -8299.07 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -646308,9 +646308,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 2908.16, + "X": 2908.71, "Y": 179.25, - "Z": -7607.1 + "Z": -7608.58 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -646526,9 +646526,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 3381.54, + "X": 3382.09, "Y": 110.37, - "Z": -8947.0 + "Z": -8948.48 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -646683,9 +646683,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 2794.72, + "X": 2795.26, "Y": 125.85, - "Z": -8076.3 + "Z": -8077.77 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -646921,9 +646921,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 2773.83, + "X": 2774.37, "Y": 129.36, - "Z": -8574.44 + "Z": -8575.91 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -647149,9 +647149,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 2412.33, + "X": 2412.88, "Y": 97.98, - "Z": -8659.68 + "Z": -8661.16 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -647317,9 +647317,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 3651.07, + "X": 3651.61, "Y": 99.96, - "Z": -8040.89 + "Z": -8042.36 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -647515,9 +647515,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 3334.01, + "X": 3334.56, "Y": 92.83, - "Z": -7742.97 + "Z": -7744.45 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -647683,9 +647683,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 2580.46, + "X": 2581.01, "Y": 110.01, - "Z": -8383.3 + "Z": -8384.77 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -647851,9 +647851,9 @@ "Identity Proof": "Metadata Anchor (COPYRIGHT)" }, "2. Topological Coordinates": { - "X": 3616.72, + "X": 3617.26, "Y": 137.93, - "Z": -7858.16 + "Z": -7859.63 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -651812,9 +651812,9 @@ "Identity Proof": "Single Indicator (Ext: .xml)" }, "2. Topological Coordinates": { - "X": 5543.46, + "X": 5545.09, "Y": 137.98, - "Z": -9183.57 + "Z": -9186.04 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -651969,9 +651969,9 @@ "Identity Proof": "Single Indicator (Ext: .abap)" }, "2. Topological Coordinates": { - "X": 5619.22, + "X": 5620.86, "Y": 260.73, - "Z": -8065.52 + "Z": -8067.98 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -652133,9 +652133,9 @@ "Identity Proof": "Single Indicator (Ext: .abap)" }, "2. Topological Coordinates": { - "X": 5478.25, + "X": 5479.88, "Y": 205.12, - "Z": -8549.89 + "Z": -8552.35 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -652761,9 +652761,9 @@ "Identity Proof": "Single Indicator (Ext: .abap)" }, "2. Topological Coordinates": { - "X": 5855.09, + "X": 5856.72, "Y": 149.3, - "Z": -9178.84 + "Z": -9181.3 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -653109,9 +653109,9 @@ "Identity Proof": "Single Indicator (Ext: .abap)" }, "2. Topological Coordinates": { - "X": 5304.66, + "X": 5306.29, "Y": 269.32, - "Z": -8739.61 + "Z": -8742.07 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -653367,9 +653367,9 @@ "Identity Proof": "Single Indicator (Ext: .abap)" }, "2. Topological Coordinates": { - "X": 5807.85, + "X": 5809.48, "Y": 186.55, - "Z": -8852.28 + "Z": -8854.75 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -653825,9 +653825,9 @@ "Identity Proof": "Single Indicator (Ext: .abap)" }, "2. Topological Coordinates": { - "X": 6070.91, + "X": 6072.55, "Y": 99.09, - "Z": -8310.04 + "Z": -8312.5 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -654113,9 +654113,9 @@ "Identity Proof": "Single Indicator (Ext: .abap)" }, "2. Topological Coordinates": { - "X": 6183.94, + "X": 6185.58, "Y": 55.62, - "Z": -8988.36 + "Z": -8990.82 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -732321,9 +732321,9 @@ "Identity Proof": "Prose Extension (.txt)" }, "2. Topological Coordinates": { - "X": 5618.7, + "X": 5620.92, "Y": -266.49, - "Z": -6269.74 + "Z": -6272.8 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -732478,9 +732478,9 @@ "Identity Proof": "Metadata Anchor (Jenkinsfile)" }, "2. Topological Coordinates": { - "X": 4796.02, + "X": 4798.24, "Y": -119.0, - "Z": -6798.41 + "Z": -6801.46 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -732746,9 +732746,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 5016.27, + "X": 5018.5, "Y": -210.24, - "Z": -5888.26 + "Z": -5891.32 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -732905,9 +732905,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4318.96, + "X": 4321.19, "Y": -45.97, - "Z": -6583.66 + "Z": -6586.71 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -733067,9 +733067,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 5469.74, + "X": 5471.96, "Y": -135.16, - "Z": -6935.75 + "Z": -6938.81 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -733227,9 +733227,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4459.0, + "X": 4461.22, "Y": 165.94, - "Z": -7444.17 + "Z": -7447.22 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -733384,9 +733384,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 5130.05, + "X": 5132.27, "Y": 15.44, - "Z": -7210.8 + "Z": -7213.86 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -733545,9 +733545,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 5251.87, + "X": 5254.09, "Y": -40.13, - "Z": -6979.22 + "Z": -6982.28 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -733708,9 +733708,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4557.46, + "X": 4559.68, "Y": 65.17, - "Z": -7024.03 + "Z": -7027.08 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -733869,9 +733869,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4193.16, + "X": 4195.38, "Y": 73.84, - "Z": -6997.01 + "Z": -7000.06 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -734028,9 +734028,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 5370.26, + "X": 5372.48, "Y": -264.76, - "Z": -6211.29 + "Z": -6214.35 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -734185,9 +734185,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4025.84, + "X": 4028.06, "Y": -11.64, - "Z": -6430.3 + "Z": -6433.35 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -734342,9 +734342,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4579.71, + "X": 4581.93, "Y": -115.23, - "Z": -6529.55 + "Z": -6532.61 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -734499,9 +734499,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4663.69, + "X": 4665.92, "Y": -198.24, - "Z": -6019.58 + "Z": -6022.64 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -734661,9 +734661,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4359.89, + "X": 4362.11, "Y": -229.14, - "Z": -6147.45 + "Z": -6150.51 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -734820,9 +734820,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4130.54, + "X": 4132.76, "Y": -188.39, - "Z": -6122.76 + "Z": -6125.82 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -734979,9 +734979,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 5101.42, + "X": 5103.64, "Y": -223.34, - "Z": -6433.75 + "Z": -6436.81 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -735138,9 +735138,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4268.55, + "X": 4270.77, "Y": -112.82, - "Z": -6301.9 + "Z": -6304.96 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -735295,9 +735295,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 5412.54, + "X": 5414.76, "Y": -133.35, - "Z": -6434.94 + "Z": -6438.0 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -735454,9 +735454,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4809.51, + "X": 4811.73, "Y": -20.86, - "Z": -7111.88 + "Z": -7114.94 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -735611,9 +735611,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4990.24, + "X": 4992.46, "Y": 96.15, - "Z": -7351.88 + "Z": -7354.93 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -735768,9 +735768,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 5642.46, + "X": 5644.68, "Y": -176.74, - "Z": -6543.93 + "Z": -6546.99 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -735925,9 +735925,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 5274.56, + "X": 5276.78, "Y": -255.85, - "Z": -5979.01 + "Z": -5982.07 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -736082,9 +736082,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4466.04, + "X": 4468.26, "Y": -266.15, - "Z": -5648.6 + "Z": -5651.65 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -736241,9 +736241,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4739.9, + "X": 4742.12, "Y": 52.17, - "Z": -7333.78 + "Z": -7336.83 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -736400,9 +736400,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 5424.34, + "X": 5426.56, "Y": 9.79, - "Z": -7115.05 + "Z": -7118.11 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -736559,9 +736559,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 3950.48, + "X": 3952.7, "Y": 80.71, - "Z": -6890.78 + "Z": -6893.84 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -736716,9 +736716,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4814.53, + "X": 4816.75, "Y": -231.16, - "Z": -5913.63 + "Z": -5916.69 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -736875,9 +736875,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4322.66, + "X": 4324.88, "Y": 78.77, - "Z": -7390.11 + "Z": -7393.16 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -737032,9 +737032,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 5702.02, + "X": 5704.24, "Y": -20.68, - "Z": -6977.27 + "Z": -6980.33 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -764444,9 +764444,9 @@ "Identity Proof": "Metadata Anchor (COPYRIGHT)" }, "2. Topological Coordinates": { - "X": 3963.5, + "X": 3964.02, "Y": 165.09, - "Z": -10504.12 + "Z": -10505.44 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -764601,9 +764601,9 @@ "Identity Proof": "Single Indicator (Shebang)" }, "2. Topological Coordinates": { - "X": 3947.57, + "X": 3948.09, "Y": 184.98, - "Z": -10127.93 + "Z": -10129.26 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -764966,9 +764966,9 @@ "Identity Proof": "Single Indicator (Shebang)" }, "2. Topological Coordinates": { - "X": 3726.96, + "X": 3727.49, "Y": 160.01, - "Z": -9794.36 + "Z": -9795.68 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -793742,57 +793742,56 @@ } } }, - "sqlite/mediawiki_sqlite_tables": { - "Directory Group Magnitude": 315.54, - "File Count": 11, + "jcl/cics-banking-sample-application-cbsa": { + "Directory Group Magnitude": 316.88, + "File Count": 99, "Ecosystem Fingerprint (Archetypes)": { - "Unclassified": "90.9%", - "Static: Literature & Documentation": "9.1%" + "Unclassified": "100.0%" }, "Average Risk Exposures": { - "Cognitive Load Exposure": "0.48%", - "Error & Exception Exposure": "26.32%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.14%", - "API Exposure": "0.32%", + "Cognitive Load Exposure": "0.0%", + "Error & Exception Exposure": "30.07%", + "Tech Debt Exposure": "43.22%", + "Testing Exposure": "2.33%", + "API Exposure": "1.11%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "81.82%", - "Instability Exposure": "45.45%", + "State Flux Exposure": "1.17%", + "Commented Logic Exposure": "3.07%", + "Specification Exposure": "98.99%", + "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "1.23%", + "Documentation Exposure": "4.47%", "Hardcoded Payload Artifacts": "0.0%" }, "Files": { - "sqlite/mediawiki_sqlite_tables/COPYING": { + "jcl/cics-banking-sample-application-cbsa/ABNDPROC.jcl": { "1. Artifact Identity": { - "Filename": "COPYING", - "Path": "sqlite/mediawiki_sqlite_tables/COPYING", - "Language": "Plaintext", + "Filename": "ABNDPROC.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/ABNDPROC.jcl", + "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "sqlite", - "Lock Tier": 1, - "Identity Proof": "Metadata Anchor (COPYING)" + "Folder Dominant Lang": "jcl", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -2341.96, - "Y": -8.88, - "Z": -7213.53 + "X": -1061.47, + "Y": 112.96, + "Z": -2906.46 }, "3. Architectural Profile": { - "Repository Archetype": "Static: Literature & Documentation", + "Repository Archetype": "Unclassified", "Repository Drift (Z-Score)": 0.0, "Repository Fingerprint": {}, - "File Archetype": "N/A", + "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 379, - "Coding LOC": 0, - "Documentation LOC": 307, - "Structural Magnitude": 7.58, + "Total LOC": 8, + "Coding LOC": 3, + "Documentation LOC": 4, + "Structural Magnitude": 1.16, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -793801,27 +793800,38 @@ "Raw Cognitive Density": 0.0 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "[UNSCANNED - NO DATA]", - "Error & Exception Exposure": "[UNSCANNED - NO DATA]", - "Tech Debt Exposure": "[UNSCANNED - NO DATA]", - "Testing Exposure": "[UNSCANNED - NO DATA]", - "API Exposure": "[UNSCANNED - NO DATA]", - "Concurrency Exposure": "[UNSCANNED - NO DATA]", - "State Flux Exposure": "[UNSCANNED - NO DATA]", - "Commented Logic Exposure": "[UNSCANNED - NO DATA]", - "Specification Exposure": "[UNSCANNED - NO DATA]", - "Instability Exposure": "[UNSCANNED - NO DATA]", - "Volatility Exposure": "[UNSCANNED - NO DATA]", - "Documentation Exposure": "[UNSCANNED - NO DATA]", - "Hardcoded Payload Artifacts": "[UNSCANNED - NO DATA]" + "Cognitive Load Exposure": "0.0%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "73.11%", + "Testing Exposure": "2.31%", + "API Exposure": "0.0%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "0.0%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "100.0%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "0.0%", + "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [], + "5. Function Analysis": [ + { + "Function Name": "Unknown_Block", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 7, + "End Line": 7 + } + ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 0, + "Sequential Logic Declarations": 1, "Function Parameters": 0, - "Function/Method Declarations": 0, + "Function/Method Declarations": 1, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, @@ -793841,7 +793851,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -793883,15 +793893,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 0, + "Core Var Decl": 2, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 0, + "Design Upper Case": 2, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -793915,29 +793925,32 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 0, + "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, + "Total Upstream (Absolute Fragility)": 1, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [] + "9. Extracted Dependencies": [ + "CBSA.CICSBSA.BUILDJCL", + "DEFAULT" + ] }, - "sqlite/mediawiki_sqlite_tables/patch-block_target.sql": { + "jcl/cics-banking-sample-application-cbsa/ACCLOAD.jcl": { "1. Artifact Identity": { - "Filename": "patch-block_target.sql", - "Path": "sqlite/mediawiki_sqlite_tables/patch-block_target.sql", - "Language": "Sqlite", + "Filename": "ACCLOAD.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/ACCLOAD.jcl", + "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "sqlite", + "Folder Dominant Lang": "jcl", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .sql)" + "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -1794.18, - "Y": 10.01, - "Z": -7748.2 + "X": 1664.29, + "Y": 19.7, + "Z": -2898.18 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -793946,10 +793959,10 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 42, - "Coding LOC": 30, - "Documentation LOC": 0, - "Structural Magnitude": 12.3, + "Total LOC": 8, + "Coding LOC": 3, + "Documentation LOC": 4, + "Structural Magnitude": 1.16, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -793960,8 +793973,8 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.41%", + "Tech Debt Exposure": "73.11%", + "Testing Exposure": "2.31%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -793974,114 +793987,24 @@ }, "5. Function Analysis": [ { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 14, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 2, - "End Line": 15 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 26, - "End Line": 33 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 17, - "End Line": 17 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 19, - "End Line": 19 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 21, - "End Line": 21 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 23, - "End Line": 23 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 35, - "End Line": 35 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 37, - "End Line": 37 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 39, - "End Line": 39 - }, - { - "Function Name": "CREATE_Statement", + "Function Name": "Unknown_Block", "Structural Impact": 1.1, "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 41, - "End Line": 41 + "Start Line": 7, + "End Line": 7 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 0, + "Sequential Logic Declarations": 1, "Function Parameters": 0, - "Function/Method Declarations": 8, - "Class/Entity Declarations": 2, - "Defensive Programming Constructs": 2, + "Function/Method Declarations": 1, + "Class/Entity Declarations": 0, + "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, @@ -794099,7 +794022,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -794124,7 +794047,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 18, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -794141,15 +794064,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 0, + "Core Var Decl": 2, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 0, + "Design Upper Case": 2, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -794173,29 +794096,32 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 0, + "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, + "Total Upstream (Absolute Fragility)": 1, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [] + "9. Extracted Dependencies": [ + "CBSA.CICSBSA.BUILDJCL", + "DEFAULT" + ] }, - "sqlite/mediawiki_sqlite_tables/patch-collation.sql": { + "jcl/cics-banking-sample-application-cbsa/ACCOFFL.jcl": { "1. Artifact Identity": { - "Filename": "patch-collation.sql", - "Path": "sqlite/mediawiki_sqlite_tables/patch-collation.sql", - "Language": "Sqlite", + "Filename": "ACCOFFL.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/ACCOFFL.jcl", + "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "sqlite", + "Folder Dominant Lang": "jcl", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .sql)" + "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -1599.29, - "Y": 32.75, - "Z": -7728.82 + "X": -352.52, + "Y": 110.7, + "Z": -1030.34 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -794205,9 +794131,9 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 8, - "Coding LOC": 5, - "Documentation LOC": 0, - "Structural Magnitude": 2.4, + "Coding LOC": 3, + "Documentation LOC": 4, + "Structural Magnitude": 1.16, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -794218,8 +794144,8 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.3%", + "Tech Debt Exposure": "73.11%", + "Testing Exposure": "2.31%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -794232,17 +794158,7 @@ }, "5. Function Analysis": [ { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 2, - "End Line": 5 - }, - { - "Function Name": "CREATE_Statement", + "Function Name": "Unknown_Block", "Structural Impact": 1.1, "Lines of Code (LOC)": 1, "Control Flow Branches": 0, @@ -794255,11 +794171,11 @@ "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 0, + "Sequential Logic Declarations": 1, "Function Parameters": 0, "Function/Method Declarations": 1, - "Class/Entity Declarations": 1, - "Defensive Programming Constructs": 2, + "Class/Entity Declarations": 0, + "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, @@ -794277,7 +794193,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -794302,7 +794218,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 2, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -794319,15 +794235,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 0, + "Core Var Decl": 2, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 0, + "Design Upper Case": 2, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -794351,29 +794267,32 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 0, + "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, + "Total Upstream (Absolute Fragility)": 1, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [] + "9. Extracted Dependencies": [ + "CBSA.CICSBSA.BUILDJCL", + "DEFAULT" + ] }, - "sqlite/mediawiki_sqlite_tables/patch-existencelinks.sql": { + "jcl/cics-banking-sample-application-cbsa/BANKDATA.jcl": { "1. Artifact Identity": { - "Filename": "patch-existencelinks.sql", - "Path": "sqlite/mediawiki_sqlite_tables/patch-existencelinks.sql", - "Language": "Sqlite", + "Filename": "BANKDATA.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/BANKDATA.jcl", + "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "sqlite", + "Folder Dominant Lang": "jcl", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .sql)" + "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -2381.44, - "Y": -73.32, - "Z": -6947.37 + "X": 70.11, + "Y": 59.34, + "Z": -2692.06 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -794382,10 +794301,10 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 8, - "Coding LOC": 6, - "Documentation LOC": 0, - "Structural Magnitude": 2.42, + "Total LOC": 115, + "Coding LOC": 64, + "Documentation LOC": 50, + "Structural Magnitude": 7.48, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -794395,9 +794314,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.31%", + "Error & Exception Exposure": "73.11%", + "Tech Debt Exposure": "96.64%", + "Testing Exposure": "2.37%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -794410,37 +794329,47 @@ }, "5. Function Analysis": [ { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, + "Function Name": "BANKDAT1", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 23, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 1, - "End Line": 5 + "Start Line": 56, + "End Line": 78 }, { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, + "Function Name": "BANKDAT0", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 20, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 7, - "End Line": 7 + "Start Line": 36, + "End Line": 55 + }, + { + "Function Name": "BANKDAT5", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 21, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 94, + "End Line": 114 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 0, + "Sequential Logic Declarations": 17, "Function Parameters": 0, - "Function/Method Declarations": 1, + "Function/Method Declarations": 3, "Class/Entity Declarations": 1, - "Defensive Programming Constructs": 1, + "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, + "High-Risk Execution Commands": 1, + "I/O and Network Boundaries": 25, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -794467,7 +794396,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 2, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -794480,7 +794409,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 3, + "Structural Space Indentations": 32, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -794497,15 +794426,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 0, + "Core Var Decl": 20, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 0, + "Design Upper Case": 20, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 3, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -794513,7 +794442,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, + "Dynamic Code Execution (Eval/Exec)": 2, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -794522,36 +794451,41 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 0, + "Sec Tainted Injection": 1, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 0, + "Direct Upstream (Fragility)": 4, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [] + "9. Extracted Dependencies": [ + "@BANK_DBRMLIB@", + "@BANK_LOADLIB@", + "@BANK_PREFIX@.CUSTOMER", + "@DB2_HLQ@.SDSNLOAD" + ] }, - "sqlite/mediawiki_sqlite_tables/patch-file.sql": { + "jcl/cics-banking-sample-application-cbsa/BATCH.jcl": { "1. Artifact Identity": { - "Filename": "patch-file.sql", - "Path": "sqlite/mediawiki_sqlite_tables/patch-file.sql", - "Language": "Sqlite", + "Filename": "BATCH.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/BATCH.jcl", + "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "sqlite", + "Folder Dominant Lang": "jcl", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .sql)" + "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -2106.91, - "Y": -108.36, - "Z": -6909.87 + "X": -194.39, + "Y": 52.41, + "Z": -2438.32 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -794560,10 +794494,10 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 47, - "Coding LOC": 33, - "Documentation LOC": 0, - "Structural Magnitude": 13.46, + "Total LOC": 57, + "Coding LOC": 52, + "Documentation LOC": 4, + "Structural Magnitude": 9.64, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -794575,137 +794509,742 @@ "Cognitive Load Exposure": "0.0%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.39%", - "API Exposure": "0.0%", + "Testing Exposure": "2.38%", + "API Exposure": "3.41%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", + "Documentation Exposure": "16.41%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 14, - "End Line": 25 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 2, - "End Line": 7 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 38, - "End Line": 42 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 9, - "End Line": 9 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, + "Function Name": "COBOL", + "Structural Impact": 4.4, + "Lines of Code (LOC)": 36, "Control Flow Branches": 0, - "Input Parameters": 0, + "Input Parameters": 6, "Control Flow Ratio": "0.0%", - "Start Line": 11, - "End Line": 11 + "Start Line": 5, + "End Line": 40 }, { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, + "Function Name": "LKED", + "Structural Impact": 3.2, + "Lines of Code (LOC)": 15, "Control Flow Branches": 0, - "Input Parameters": 0, + "Input Parameters": 5, "Control Flow Ratio": "0.0%", - "Start Line": 27, - "End Line": 27 - }, + "Start Line": 42, + "End Line": 56 + } + ], + "6. Contextual Mitigations & Amplifications": "None Detected", + "7. Structural Signatures (Net Mitigated Signals)": { + "Control Flow Branches": 0, + "Sequential Logic Declarations": 42, + "Function Parameters": 3, + "Function/Method Declarations": 2, + "Class/Entity Declarations": 0, + "Defensive Programming Constructs": 1, + "Type/Safety Bypasses": 0, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 43, + "Exposed API / Public Exports": 1, + "State Mutations / Variable Reassignments": 0, + "Commented-out Code (Dead Logic)": 0, + "Structured Documentation Blocks": 0, + "Unit Test Assertions": 0, + "Asynchronous/Concurrent Execution": 0, + "UI / View Layer Components": 0, + "Closures and Anonymous Functions": 0, + "Global State Dependencies": 0, + "Decorators and Annotations": 0, + "Generic Type Abstractions": 0, + "Collection Iterators / Comprehensions": 0, + "Scientific & Mathematical Operations": 0, + "Metaprogramming & Reflection": 0, + "Module Dependencies (Imports)": 0, + "Authorship Metadata": 0, + "Planned Work (TODOs)": 0, + "Acknowledged Tech Debt (FIXMEs)": 0, + "Specification Traceability Tags": 0, + "Server-Side Rendering Contexts": 0, + "Event Publishers / Emitters": 0, + "Dependency Injection Constructs": 0, + "Preprocessor Macros": 0, + "Pointer Arithmetic & Addressing": 0, + "Manual Memory Allocation": 0, + "Inline Assembly Blocks": 0, + "Structured Telemetry & Logging": 0, + "Ad-hoc Print / Debug Statements": 0, + "Explicit Type Casts": 0, + "Fatal Aborts & Exceptions": 0, + "Thread Sleeps & Blocking Waits": 0, + "Bitwise Operations": 0, + "Thread Synchronization Locks": 0, + "Immutable Data Declarations": 0, + "Resource Deallocation & Cleanup": 0, + "Private / Encapsulated Scopes": 0, + "Event Listeners & Subscribers": 0, + "Bypassed / Skipped Tests": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 0, + "Hardware Bridge": 0, + "Cryptography": 0, + "Auth Middleware": 0, + "Ipc Rpc Bridges": 0, + "Feature Flags": 0, + "Serialization Parsing": 0, + "Regex Execution": 0, + "Time Date Logic": 0, + "Cloud LLM API Integrations": 0, + "AI Orchestration Frameworks": 0, + "Vector Databases (RAG)": 0, + "Local Inference & Tensor Math": 0, + "Traditional Machine Learning (Stats/Trees)": 0, + "Deep Learning & Neural Networks": 0, + "Lazy Evaluation & Generators (O(1) Memory)": 0, + "Vectorized Math & Tensor Operations": 0, + "Core Var Decl": 50, + "Design Camel Case": 0, + "Design Snake Case": 0, + "Design Pascal Case": 0, + "Design Upper Case": 50, + "Design Short Vars": 0, + "Design Long Vars": 0, + "Duplicate Logic": 0, + "Orphaned Logic": 0, + "Instructional Code Examples": 0, + "Architectural Diagrams (Mermaid/PlantUML)": 0, + "Structured Literature Headers": 0, + "Hyperlinked Literature References": 0, + "High-Entropy / Obfuscated Logic": 0, + "Safety & Constraint Bypasses": 0, + "External Network & I/O Hooks": 0, + "Dynamic Code Execution (Eval/Exec)": 0, + "Global Environment Mutation": 0, + "Commented-Out Executable Logic": 0, + "Low-Level Bitwise / Cryptographic Math": 0, + "Non-Standard / Steganographic Imports": 0, + "Non-Standard Unicode / Homoglyphs": 0, + "Embedded Credentials & Keys": 0, + "Sec Extension Mismatch": 0, + "Sec Entropy": 0, + "Sec Tainted Injection": 0, + "Prompt Injection": 0, + "Agentic Rce": 0, + "Invisible Unicode Payload Smuggling": 0, + "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 + }, + "8. Dependency Network": { + "Direct Upstream (Fragility)": 13, + "Direct Downstream (Dependency Blast Radius)": 0, + "Total Upstream (Absolute Fragility)": 0, + "Total Downstream (Absolute Dependency Blast Radius)": 0 + }, + "9. Extracted Dependencies": [ + "&CBSAHLQ..ADATA(&MEMBER)", + "&CBSAHLQ..COBOL(&MEMBER)", + "&CBSAHLQ..DEBUG(&MEMBER)", + "&CBSAHLQ..DSECT", + "&CBSAHLQ..LKED(&MEMBER)", + "&CBSAHLQ..LOADLIB", + "&CICSHLQ..SDFHCOB", + "&CICSHLQ..SDFHLOAD", + "&CICSHLQ..SDFHSAMP", + "&COBOLHLQ..SIGYCOMP", + "&DB2HLQ..SDSNLOAD", + "&LEHLQ..SCEELKED", + "&LEHLQ..SCEESAMP" + ] + }, + "jcl/cics-banking-sample-application-cbsa/BNK1ACC.jcl": { + "1. Artifact Identity": { + "Filename": "BNK1ACC.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/BNK1ACC.jcl", + "Language": "Jcl", + "Architect": "Unknown Architect", + "Indentation Style": "Neutral / No Indentation", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "jcl", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .jcl)" + }, + "2. Topological Coordinates": { + "X": 1283.4, + "Y": 71.83, + "Z": -1249.06 + }, + "3. Architectural Profile": { + "Repository Archetype": "Unclassified", + "Repository Drift (Z-Score)": 0.0, + "Repository Fingerprint": {}, + "File Archetype": null, + "File Drift (Z-Score)": 0.0, + "File Fingerprint": {}, + "Total LOC": 9, + "Coding LOC": 4, + "Documentation LOC": 4, + "Structural Magnitude": 1.18, + "Control Flow Ratio": "0.0%", + "Popularity Rank": 1, + "Raw Churn Frequency": 0.0, + "Authorship Centralization": 0.0, + "Ownership Entropy": 0.0, + "Raw Cognitive Density": 0.0 + }, + "4. Vulnerability & Risk Exposures": { + "Cognitive Load Exposure": "0.0%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "2.31%", + "API Exposure": "0.0%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "0.0%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "100.0%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "0.0%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "5. Function Analysis": [ { - "Function Name": "CREATE_Statement", + "Function Name": "BNK1ACC", "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, + "Lines of Code (LOC)": 2, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 29, - "End Line": 29 - }, + "Start Line": 7, + "End Line": 8 + } + ], + "6. Contextual Mitigations & Amplifications": "None Detected", + "7. Structural Signatures (Net Mitigated Signals)": { + "Control Flow Branches": 0, + "Sequential Logic Declarations": 1, + "Function Parameters": 0, + "Function/Method Declarations": 1, + "Class/Entity Declarations": 0, + "Defensive Programming Constructs": 0, + "Type/Safety Bypasses": 0, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 0, + "State Mutations / Variable Reassignments": 0, + "Commented-out Code (Dead Logic)": 0, + "Structured Documentation Blocks": 0, + "Unit Test Assertions": 0, + "Asynchronous/Concurrent Execution": 0, + "UI / View Layer Components": 0, + "Closures and Anonymous Functions": 0, + "Global State Dependencies": 0, + "Decorators and Annotations": 0, + "Generic Type Abstractions": 0, + "Collection Iterators / Comprehensions": 0, + "Scientific & Mathematical Operations": 0, + "Metaprogramming & Reflection": 0, + "Module Dependencies (Imports)": 1, + "Authorship Metadata": 0, + "Planned Work (TODOs)": 0, + "Acknowledged Tech Debt (FIXMEs)": 0, + "Specification Traceability Tags": 0, + "Server-Side Rendering Contexts": 0, + "Event Publishers / Emitters": 0, + "Dependency Injection Constructs": 0, + "Preprocessor Macros": 0, + "Pointer Arithmetic & Addressing": 0, + "Manual Memory Allocation": 0, + "Inline Assembly Blocks": 0, + "Structured Telemetry & Logging": 0, + "Ad-hoc Print / Debug Statements": 0, + "Explicit Type Casts": 0, + "Fatal Aborts & Exceptions": 0, + "Thread Sleeps & Blocking Waits": 0, + "Bitwise Operations": 0, + "Thread Synchronization Locks": 0, + "Immutable Data Declarations": 0, + "Resource Deallocation & Cleanup": 0, + "Private / Encapsulated Scopes": 0, + "Event Listeners & Subscribers": 0, + "Bypassed / Skipped Tests": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 0, + "Hardware Bridge": 0, + "Cryptography": 0, + "Auth Middleware": 0, + "Ipc Rpc Bridges": 0, + "Feature Flags": 0, + "Serialization Parsing": 0, + "Regex Execution": 0, + "Time Date Logic": 0, + "Cloud LLM API Integrations": 0, + "AI Orchestration Frameworks": 0, + "Vector Databases (RAG)": 0, + "Local Inference & Tensor Math": 0, + "Traditional Machine Learning (Stats/Trees)": 0, + "Deep Learning & Neural Networks": 0, + "Lazy Evaluation & Generators (O(1) Memory)": 0, + "Vectorized Math & Tensor Operations": 0, + "Core Var Decl": 4, + "Design Camel Case": 0, + "Design Snake Case": 0, + "Design Pascal Case": 0, + "Design Upper Case": 4, + "Design Short Vars": 0, + "Design Long Vars": 0, + "Duplicate Logic": 0, + "Orphaned Logic": 0, + "Instructional Code Examples": 0, + "Architectural Diagrams (Mermaid/PlantUML)": 0, + "Structured Literature Headers": 0, + "Hyperlinked Literature References": 0, + "High-Entropy / Obfuscated Logic": 0, + "Safety & Constraint Bypasses": 0, + "External Network & I/O Hooks": 0, + "Dynamic Code Execution (Eval/Exec)": 0, + "Global Environment Mutation": 0, + "Commented-Out Executable Logic": 0, + "Low-Level Bitwise / Cryptographic Math": 0, + "Non-Standard / Steganographic Imports": 0, + "Non-Standard Unicode / Homoglyphs": 0, + "Embedded Credentials & Keys": 0, + "Sec Extension Mismatch": 0, + "Sec Entropy": 0, + "Sec Tainted Injection": 0, + "Prompt Injection": 0, + "Agentic Rce": 0, + "Invisible Unicode Payload Smuggling": 0, + "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 + }, + "8. Dependency Network": { + "Direct Upstream (Fragility)": 2, + "Direct Downstream (Dependency Blast Radius)": 1, + "Total Upstream (Absolute Fragility)": 1, + "Total Downstream (Absolute Dependency Blast Radius)": 1 + }, + "9. Extracted Dependencies": [ + "CBSA.CICSBSA.BUILDJCL", + "DEFAULT" + ] + }, + "jcl/cics-banking-sample-application-cbsa/BNK1CAC.jcl": { + "1. Artifact Identity": { + "Filename": "BNK1CAC.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/BNK1CAC.jcl", + "Language": "Jcl", + "Architect": "Unknown Architect", + "Indentation Style": "Neutral / No Indentation", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "jcl", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .jcl)" + }, + "2. Topological Coordinates": { + "X": -177.42, + "Y": 87.12, + "Z": -3615.66 + }, + "3. Architectural Profile": { + "Repository Archetype": "Unclassified", + "Repository Drift (Z-Score)": 0.0, + "Repository Fingerprint": {}, + "File Archetype": null, + "File Drift (Z-Score)": 0.0, + "File Fingerprint": {}, + "Total LOC": 8, + "Coding LOC": 3, + "Documentation LOC": 4, + "Structural Magnitude": 1.16, + "Control Flow Ratio": "0.0%", + "Popularity Rank": 0, + "Raw Churn Frequency": 0.0, + "Authorship Centralization": 0.0, + "Ownership Entropy": 0.0, + "Raw Cognitive Density": 0.0 + }, + "4. Vulnerability & Risk Exposures": { + "Cognitive Load Exposure": "0.0%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "73.11%", + "Testing Exposure": "2.31%", + "API Exposure": "0.0%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "0.0%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "100.0%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "0.0%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "5. Function Analysis": [ { - "Function Name": "CREATE_Statement", + "Function Name": "Unknown_Block", "Structural Impact": 1.1, "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 31, - "End Line": 31 - }, + "Start Line": 7, + "End Line": 7 + } + ], + "6. Contextual Mitigations & Amplifications": "None Detected", + "7. Structural Signatures (Net Mitigated Signals)": { + "Control Flow Branches": 0, + "Sequential Logic Declarations": 1, + "Function Parameters": 0, + "Function/Method Declarations": 1, + "Class/Entity Declarations": 0, + "Defensive Programming Constructs": 0, + "Type/Safety Bypasses": 0, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 0, + "State Mutations / Variable Reassignments": 0, + "Commented-out Code (Dead Logic)": 0, + "Structured Documentation Blocks": 0, + "Unit Test Assertions": 0, + "Asynchronous/Concurrent Execution": 0, + "UI / View Layer Components": 0, + "Closures and Anonymous Functions": 0, + "Global State Dependencies": 0, + "Decorators and Annotations": 0, + "Generic Type Abstractions": 0, + "Collection Iterators / Comprehensions": 0, + "Scientific & Mathematical Operations": 0, + "Metaprogramming & Reflection": 0, + "Module Dependencies (Imports)": 1, + "Authorship Metadata": 0, + "Planned Work (TODOs)": 0, + "Acknowledged Tech Debt (FIXMEs)": 0, + "Specification Traceability Tags": 0, + "Server-Side Rendering Contexts": 0, + "Event Publishers / Emitters": 0, + "Dependency Injection Constructs": 0, + "Preprocessor Macros": 0, + "Pointer Arithmetic & Addressing": 0, + "Manual Memory Allocation": 0, + "Inline Assembly Blocks": 0, + "Structured Telemetry & Logging": 0, + "Ad-hoc Print / Debug Statements": 0, + "Explicit Type Casts": 0, + "Fatal Aborts & Exceptions": 0, + "Thread Sleeps & Blocking Waits": 0, + "Bitwise Operations": 0, + "Thread Synchronization Locks": 0, + "Immutable Data Declarations": 0, + "Resource Deallocation & Cleanup": 0, + "Private / Encapsulated Scopes": 0, + "Event Listeners & Subscribers": 0, + "Bypassed / Skipped Tests": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 0, + "Hardware Bridge": 0, + "Cryptography": 0, + "Auth Middleware": 0, + "Ipc Rpc Bridges": 0, + "Feature Flags": 0, + "Serialization Parsing": 0, + "Regex Execution": 0, + "Time Date Logic": 0, + "Cloud LLM API Integrations": 0, + "AI Orchestration Frameworks": 0, + "Vector Databases (RAG)": 0, + "Local Inference & Tensor Math": 0, + "Traditional Machine Learning (Stats/Trees)": 0, + "Deep Learning & Neural Networks": 0, + "Lazy Evaluation & Generators (O(1) Memory)": 0, + "Vectorized Math & Tensor Operations": 0, + "Core Var Decl": 2, + "Design Camel Case": 0, + "Design Snake Case": 0, + "Design Pascal Case": 0, + "Design Upper Case": 2, + "Design Short Vars": 0, + "Design Long Vars": 0, + "Duplicate Logic": 0, + "Orphaned Logic": 1, + "Instructional Code Examples": 0, + "Architectural Diagrams (Mermaid/PlantUML)": 0, + "Structured Literature Headers": 0, + "Hyperlinked Literature References": 0, + "High-Entropy / Obfuscated Logic": 0, + "Safety & Constraint Bypasses": 0, + "External Network & I/O Hooks": 0, + "Dynamic Code Execution (Eval/Exec)": 0, + "Global Environment Mutation": 0, + "Commented-Out Executable Logic": 0, + "Low-Level Bitwise / Cryptographic Math": 0, + "Non-Standard / Steganographic Imports": 0, + "Non-Standard Unicode / Homoglyphs": 0, + "Embedded Credentials & Keys": 0, + "Sec Extension Mismatch": 0, + "Sec Entropy": 0, + "Sec Tainted Injection": 0, + "Prompt Injection": 0, + "Agentic Rce": 0, + "Invisible Unicode Payload Smuggling": 0, + "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 + }, + "8. Dependency Network": { + "Direct Upstream (Fragility)": 2, + "Direct Downstream (Dependency Blast Radius)": 0, + "Total Upstream (Absolute Fragility)": 1, + "Total Downstream (Absolute Dependency Blast Radius)": 0 + }, + "9. Extracted Dependencies": [ + "CBSA.CICSBSA.BUILDJCL", + "DEFAULT" + ] + }, + "jcl/cics-banking-sample-application-cbsa/BNK1CAM.jcl": { + "1. Artifact Identity": { + "Filename": "BNK1CAM.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/BNK1CAM.jcl", + "Language": "Jcl", + "Architect": "Unknown Architect", + "Indentation Style": "Neutral / No Indentation", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "jcl", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .jcl)" + }, + "2. Topological Coordinates": { + "X": -1156.32, + "Y": 103.72, + "Z": -2145.7 + }, + "3. Architectural Profile": { + "Repository Archetype": "Unclassified", + "Repository Drift (Z-Score)": 0.0, + "Repository Fingerprint": {}, + "File Archetype": null, + "File Drift (Z-Score)": 0.0, + "File Fingerprint": {}, + "Total LOC": 9, + "Coding LOC": 4, + "Documentation LOC": 4, + "Structural Magnitude": 1.18, + "Control Flow Ratio": "0.0%", + "Popularity Rank": 1, + "Raw Churn Frequency": 0.0, + "Authorship Centralization": 0.0, + "Ownership Entropy": 0.0, + "Raw Cognitive Density": 0.0 + }, + "4. Vulnerability & Risk Exposures": { + "Cognitive Load Exposure": "0.0%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "2.31%", + "API Exposure": "0.0%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "0.0%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "100.0%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "0.0%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "5. Function Analysis": [ { - "Function Name": "CREATE_Statement", + "Function Name": "BNK1CAM", "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, + "Lines of Code (LOC)": 2, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 33, - "End Line": 33 - }, + "Start Line": 7, + "End Line": 8 + } + ], + "6. Contextual Mitigations & Amplifications": "None Detected", + "7. Structural Signatures (Net Mitigated Signals)": { + "Control Flow Branches": 0, + "Sequential Logic Declarations": 1, + "Function Parameters": 0, + "Function/Method Declarations": 1, + "Class/Entity Declarations": 0, + "Defensive Programming Constructs": 0, + "Type/Safety Bypasses": 0, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 0, + "State Mutations / Variable Reassignments": 0, + "Commented-out Code (Dead Logic)": 0, + "Structured Documentation Blocks": 0, + "Unit Test Assertions": 0, + "Asynchronous/Concurrent Execution": 0, + "UI / View Layer Components": 0, + "Closures and Anonymous Functions": 0, + "Global State Dependencies": 0, + "Decorators and Annotations": 0, + "Generic Type Abstractions": 0, + "Collection Iterators / Comprehensions": 0, + "Scientific & Mathematical Operations": 0, + "Metaprogramming & Reflection": 0, + "Module Dependencies (Imports)": 1, + "Authorship Metadata": 0, + "Planned Work (TODOs)": 0, + "Acknowledged Tech Debt (FIXMEs)": 0, + "Specification Traceability Tags": 0, + "Server-Side Rendering Contexts": 0, + "Event Publishers / Emitters": 0, + "Dependency Injection Constructs": 0, + "Preprocessor Macros": 0, + "Pointer Arithmetic & Addressing": 0, + "Manual Memory Allocation": 0, + "Inline Assembly Blocks": 0, + "Structured Telemetry & Logging": 0, + "Ad-hoc Print / Debug Statements": 0, + "Explicit Type Casts": 0, + "Fatal Aborts & Exceptions": 0, + "Thread Sleeps & Blocking Waits": 0, + "Bitwise Operations": 0, + "Thread Synchronization Locks": 0, + "Immutable Data Declarations": 0, + "Resource Deallocation & Cleanup": 0, + "Private / Encapsulated Scopes": 0, + "Event Listeners & Subscribers": 0, + "Bypassed / Skipped Tests": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 0, + "Hardware Bridge": 0, + "Cryptography": 0, + "Auth Middleware": 0, + "Ipc Rpc Bridges": 0, + "Feature Flags": 0, + "Serialization Parsing": 0, + "Regex Execution": 0, + "Time Date Logic": 0, + "Cloud LLM API Integrations": 0, + "AI Orchestration Frameworks": 0, + "Vector Databases (RAG)": 0, + "Local Inference & Tensor Math": 0, + "Traditional Machine Learning (Stats/Trees)": 0, + "Deep Learning & Neural Networks": 0, + "Lazy Evaluation & Generators (O(1) Memory)": 0, + "Vectorized Math & Tensor Operations": 0, + "Core Var Decl": 4, + "Design Camel Case": 0, + "Design Snake Case": 0, + "Design Pascal Case": 0, + "Design Upper Case": 4, + "Design Short Vars": 0, + "Design Long Vars": 0, + "Duplicate Logic": 0, + "Orphaned Logic": 0, + "Instructional Code Examples": 0, + "Architectural Diagrams (Mermaid/PlantUML)": 0, + "Structured Literature Headers": 0, + "Hyperlinked Literature References": 0, + "High-Entropy / Obfuscated Logic": 0, + "Safety & Constraint Bypasses": 0, + "External Network & I/O Hooks": 0, + "Dynamic Code Execution (Eval/Exec)": 0, + "Global Environment Mutation": 0, + "Commented-Out Executable Logic": 0, + "Low-Level Bitwise / Cryptographic Math": 0, + "Non-Standard / Steganographic Imports": 0, + "Non-Standard Unicode / Homoglyphs": 0, + "Embedded Credentials & Keys": 0, + "Sec Extension Mismatch": 0, + "Sec Entropy": 0, + "Sec Tainted Injection": 0, + "Prompt Injection": 0, + "Agentic Rce": 0, + "Invisible Unicode Payload Smuggling": 0, + "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 + }, + "8. Dependency Network": { + "Direct Upstream (Fragility)": 2, + "Direct Downstream (Dependency Blast Radius)": 1, + "Total Upstream (Absolute Fragility)": 1, + "Total Downstream (Absolute Dependency Blast Radius)": 1 + }, + "9. Extracted Dependencies": [ + "CBSA.CICSBSA.BUILDJCL", + "DEFAULT" + ] + }, + "jcl/cics-banking-sample-application-cbsa/BNK1CCA.jcl": { + "1. Artifact Identity": { + "Filename": "BNK1CCA.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/BNK1CCA.jcl", + "Language": "Jcl", + "Architect": "Unknown Architect", + "Indentation Style": "Neutral / No Indentation", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "jcl", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .jcl)" + }, + "2. Topological Coordinates": { + "X": 1574.74, + "Y": 48.42, + "Z": -1297.6 + }, + "3. Architectural Profile": { + "Repository Archetype": "Unclassified", + "Repository Drift (Z-Score)": 0.0, + "Repository Fingerprint": {}, + "File Archetype": null, + "File Drift (Z-Score)": 0.0, + "File Fingerprint": {}, + "Total LOC": 8, + "Coding LOC": 3, + "Documentation LOC": 4, + "Structural Magnitude": 1.16, + "Control Flow Ratio": "0.0%", + "Popularity Rank": 0, + "Raw Churn Frequency": 0.0, + "Authorship Centralization": 0.0, + "Ownership Entropy": 0.0, + "Raw Cognitive Density": 0.0 + }, + "4. Vulnerability & Risk Exposures": { + "Cognitive Load Exposure": "0.0%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "73.11%", + "Testing Exposure": "2.31%", + "API Exposure": "0.0%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "0.0%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "100.0%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "0.0%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "5. Function Analysis": [ { - "Function Name": "CREATE_Statement", + "Function Name": "Unknown_Block", "Structural Impact": 1.1, "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 35, - "End Line": 35 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 44, - "End Line": 46 + "Start Line": 7, + "End Line": 7 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 0, + "Sequential Logic Declarations": 1, "Function Parameters": 0, - "Function/Method Declarations": 8, - "Class/Entity Declarations": 3, - "Defensive Programming Constructs": 5, + "Function/Method Declarations": 1, + "Class/Entity Declarations": 0, + "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, @@ -794723,7 +795262,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -794748,7 +795287,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 18, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -794765,15 +795304,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 0, + "Core Var Decl": 2, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 0, + "Design Upper Case": 2, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -794797,29 +795336,32 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 0, + "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, + "Total Upstream (Absolute Fragility)": 1, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [] + "9. Extracted Dependencies": [ + "CBSA.CICSBSA.BUILDJCL", + "DEFAULT" + ] }, - "sqlite/mediawiki_sqlite_tables/patch-user-user_is_temp.sql": { + "jcl/cics-banking-sample-application-cbsa/BNK1CCM.jcl": { "1. Artifact Identity": { - "Filename": "patch-user-user_is_temp.sql", - "Path": "sqlite/mediawiki_sqlite_tables/patch-user-user_is_temp.sql", - "Language": "Sqlite", + "Filename": "BNK1CCM.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/BNK1CCM.jcl", + "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "sqlite", + "Folder Dominant Lang": "jcl", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .sql)" + "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -1334.79, - "Y": -96.87, - "Z": -6905.9 + "X": 1381.15, + "Y": 71.87, + "Z": -3154.8 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -794828,12 +795370,12 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 7, - "Coding LOC": 2, + "Total LOC": 9, + "Coding LOC": 4, "Documentation LOC": 4, - "Structural Magnitude": 3.14, + "Structural Magnitude": 1.18, "Control Flow Ratio": "0.0%", - "Popularity Rank": 0, + "Popularity Rank": 1, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, @@ -794841,14 +795383,14 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "62.58%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.31%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "0.0%", + "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", "Documentation Exposure": "0.0%", @@ -794856,29 +795398,29 @@ }, "5. Function Analysis": [ { - "Function Name": "ALTER_Statement", + "Function Name": "BNK1CCM", "Structural Impact": 1.1, "Lines of Code (LOC)": 2, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 5, - "End Line": 6 + "Start Line": 7, + "End Line": 8 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 0, + "Sequential Logic Declarations": 1, "Function Parameters": 0, - "Function/Method Declarations": 0, + "Function/Method Declarations": 1, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 2, + "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, @@ -794891,7 +795433,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -794916,7 +795458,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 1, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -794933,11 +795475,11 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 0, + "Core Var Decl": 4, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 0, + "Design Upper Case": 4, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, @@ -794965,29 +795507,32 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 0, - "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 + "Direct Upstream (Fragility)": 2, + "Direct Downstream (Dependency Blast Radius)": 1, + "Total Upstream (Absolute Fragility)": 1, + "Total Downstream (Absolute Dependency Blast Radius)": 1 }, - "9. Extracted Dependencies": [] + "9. Extracted Dependencies": [ + "CBSA.CICSBSA.BUILDJCL", + "DEFAULT" + ] }, - "sqlite/mediawiki_sqlite_tables/patch-user_autocreate_serial-uas_year.sql": { + "jcl/cics-banking-sample-application-cbsa/BNK1CCS.jcl": { "1. Artifact Identity": { - "Filename": "patch-user_autocreate_serial-uas_year.sql", - "Path": "sqlite/mediawiki_sqlite_tables/patch-user_autocreate_serial-uas_year.sql", - "Language": "Sqlite", + "Filename": "BNK1CCS.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/BNK1CCS.jcl", + "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "sqlite", + "Folder Dominant Lang": "jcl", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .sql)" + "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -1380.27, - "Y": -43.7, - "Z": -7502.03 + "X": -1186.93, + "Y": 91.82, + "Z": -1930.31 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -794996,10 +795541,10 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 28, - "Coding LOC": 18, + "Total LOC": 8, + "Coding LOC": 3, "Documentation LOC": 4, - "Structural Magnitude": 6.26, + "Structural Magnitude": 1.16, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -795009,9 +795554,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "66.5%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.36%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "73.11%", + "Testing Exposure": "2.31%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -795024,67 +795569,27 @@ }, "5. Function Analysis": [ { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 14, - "End Line": 19 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 5, - "End Line": 9 - }, - { - "Function Name": "INSERT_Statement", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 21, - "End Line": 25 - }, - { - "Function Name": "DROP_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 11, - "End Line": 11 - }, - { - "Function Name": "DROP_Statement", + "Function Name": "Unknown_Block", "Structural Impact": 1.1, "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 27, - "End Line": 27 + "Start Line": 7, + "End Line": 7 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 6, + "Sequential Logic Declarations": 1, "Function Parameters": 0, - "Function/Method Declarations": 0, - "Class/Entity Declarations": 2, - "Defensive Programming Constructs": 1, - "Type/Safety Bypasses": 2, + "Function/Method Declarations": 1, + "Class/Entity Declarations": 0, + "Defensive Programming Constructs": 0, + "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 3, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -795099,7 +795604,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -795119,12 +795624,12 @@ "Bitwise Operations": 0, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 2, - "Private / Encapsulated Scopes": 1, + "Resource Deallocation & Cleanup": 0, + "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 8, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -795141,15 +795646,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 0, + "Core Var Decl": 2, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 0, + "Design Upper Case": 2, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -795173,29 +795678,32 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 0, + "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, + "Total Upstream (Absolute Fragility)": 1, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [] + "9. Extracted Dependencies": [ + "CBSA.CICSBSA.BUILDJCL", + "DEFAULT" + ] }, - "sqlite/mediawiki_sqlite_tables/patch-watchlist_label.sql": { + "jcl/cics-banking-sample-application-cbsa/BNK1CDM.jcl": { "1. Artifact Identity": { - "Filename": "patch-watchlist_label.sql", - "Path": "sqlite/mediawiki_sqlite_tables/patch-watchlist_label.sql", - "Language": "Sqlite", + "Filename": "BNK1CDM.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/BNK1CDM.jcl", + "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "sqlite", + "Folder Dominant Lang": "jcl", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .sql)" + "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -2064.86, - "Y": 59.16, - "Z": -7604.45 + "X": 123.04, + "Y": 67.75, + "Z": -739.12 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -795204,12 +795712,12 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 17, - "Coding LOC": 12, - "Documentation LOC": 0, - "Structural Magnitude": 4.84, + "Total LOC": 9, + "Coding LOC": 4, + "Documentation LOC": 4, + "Structural Magnitude": 1.18, "Control Flow Ratio": "0.0%", - "Popularity Rank": 0, + "Popularity Rank": 1, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, @@ -795219,7 +795727,7 @@ "Cognitive Load Exposure": "0.0%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.32%", + "Testing Exposure": "2.31%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -795232,54 +795740,195 @@ }, "5. Function Analysis": [ { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 1, - "End Line": 5 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 10, - "End Line": 14 - }, - { - "Function Name": "CREATE_Statement", + "Function Name": "BNK1CDM", "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, + "Lines of Code (LOC)": 2, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", "Start Line": 7, - "End Line": 7 - }, + "End Line": 8 + } + ], + "6. Contextual Mitigations & Amplifications": "None Detected", + "7. Structural Signatures (Net Mitigated Signals)": { + "Control Flow Branches": 0, + "Sequential Logic Declarations": 1, + "Function Parameters": 0, + "Function/Method Declarations": 1, + "Class/Entity Declarations": 0, + "Defensive Programming Constructs": 0, + "Type/Safety Bypasses": 0, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 0, + "State Mutations / Variable Reassignments": 0, + "Commented-out Code (Dead Logic)": 0, + "Structured Documentation Blocks": 0, + "Unit Test Assertions": 0, + "Asynchronous/Concurrent Execution": 0, + "UI / View Layer Components": 0, + "Closures and Anonymous Functions": 0, + "Global State Dependencies": 0, + "Decorators and Annotations": 0, + "Generic Type Abstractions": 0, + "Collection Iterators / Comprehensions": 0, + "Scientific & Mathematical Operations": 0, + "Metaprogramming & Reflection": 0, + "Module Dependencies (Imports)": 1, + "Authorship Metadata": 0, + "Planned Work (TODOs)": 0, + "Acknowledged Tech Debt (FIXMEs)": 0, + "Specification Traceability Tags": 0, + "Server-Side Rendering Contexts": 0, + "Event Publishers / Emitters": 0, + "Dependency Injection Constructs": 0, + "Preprocessor Macros": 0, + "Pointer Arithmetic & Addressing": 0, + "Manual Memory Allocation": 0, + "Inline Assembly Blocks": 0, + "Structured Telemetry & Logging": 0, + "Ad-hoc Print / Debug Statements": 0, + "Explicit Type Casts": 0, + "Fatal Aborts & Exceptions": 0, + "Thread Sleeps & Blocking Waits": 0, + "Bitwise Operations": 0, + "Thread Synchronization Locks": 0, + "Immutable Data Declarations": 0, + "Resource Deallocation & Cleanup": 0, + "Private / Encapsulated Scopes": 0, + "Event Listeners & Subscribers": 0, + "Bypassed / Skipped Tests": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 0, + "Hardware Bridge": 0, + "Cryptography": 0, + "Auth Middleware": 0, + "Ipc Rpc Bridges": 0, + "Feature Flags": 0, + "Serialization Parsing": 0, + "Regex Execution": 0, + "Time Date Logic": 0, + "Cloud LLM API Integrations": 0, + "AI Orchestration Frameworks": 0, + "Vector Databases (RAG)": 0, + "Local Inference & Tensor Math": 0, + "Traditional Machine Learning (Stats/Trees)": 0, + "Deep Learning & Neural Networks": 0, + "Lazy Evaluation & Generators (O(1) Memory)": 0, + "Vectorized Math & Tensor Operations": 0, + "Core Var Decl": 4, + "Design Camel Case": 0, + "Design Snake Case": 0, + "Design Pascal Case": 0, + "Design Upper Case": 4, + "Design Short Vars": 0, + "Design Long Vars": 0, + "Duplicate Logic": 0, + "Orphaned Logic": 0, + "Instructional Code Examples": 0, + "Architectural Diagrams (Mermaid/PlantUML)": 0, + "Structured Literature Headers": 0, + "Hyperlinked Literature References": 0, + "High-Entropy / Obfuscated Logic": 0, + "Safety & Constraint Bypasses": 0, + "External Network & I/O Hooks": 0, + "Dynamic Code Execution (Eval/Exec)": 0, + "Global Environment Mutation": 0, + "Commented-Out Executable Logic": 0, + "Low-Level Bitwise / Cryptographic Math": 0, + "Non-Standard / Steganographic Imports": 0, + "Non-Standard Unicode / Homoglyphs": 0, + "Embedded Credentials & Keys": 0, + "Sec Extension Mismatch": 0, + "Sec Entropy": 0, + "Sec Tainted Injection": 0, + "Prompt Injection": 0, + "Agentic Rce": 0, + "Invisible Unicode Payload Smuggling": 0, + "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 + }, + "8. Dependency Network": { + "Direct Upstream (Fragility)": 2, + "Direct Downstream (Dependency Blast Radius)": 1, + "Total Upstream (Absolute Fragility)": 1, + "Total Downstream (Absolute Dependency Blast Radius)": 1 + }, + "9. Extracted Dependencies": [ + "CBSA.CICSBSA.BUILDJCL", + "DEFAULT" + ] + }, + "jcl/cics-banking-sample-application-cbsa/BNK1CRA.jcl": { + "1. Artifact Identity": { + "Filename": "BNK1CRA.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/BNK1CRA.jcl", + "Language": "Jcl", + "Architect": "Unknown Architect", + "Indentation Style": "Neutral / No Indentation", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "jcl", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .jcl)" + }, + "2. Topological Coordinates": { + "X": 1195.48, + "Y": 62.83, + "Z": -3591.7 + }, + "3. Architectural Profile": { + "Repository Archetype": "Unclassified", + "Repository Drift (Z-Score)": 0.0, + "Repository Fingerprint": {}, + "File Archetype": null, + "File Drift (Z-Score)": 0.0, + "File Fingerprint": {}, + "Total LOC": 8, + "Coding LOC": 3, + "Documentation LOC": 4, + "Structural Magnitude": 1.16, + "Control Flow Ratio": "0.0%", + "Popularity Rank": 0, + "Raw Churn Frequency": 0.0, + "Authorship Centralization": 0.0, + "Ownership Entropy": 0.0, + "Raw Cognitive Density": 0.0 + }, + "4. Vulnerability & Risk Exposures": { + "Cognitive Load Exposure": "0.0%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "73.11%", + "Testing Exposure": "2.31%", + "API Exposure": "0.0%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "0.0%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "100.0%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "0.0%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "5. Function Analysis": [ { - "Function Name": "CREATE_Statement", + "Function Name": "Unknown_Block", "Structural Impact": 1.1, "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 16, - "End Line": 16 + "Start Line": 7, + "End Line": 7 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 0, + "Sequential Logic Declarations": 1, "Function Parameters": 0, - "Function/Method Declarations": 2, - "Class/Entity Declarations": 2, - "Defensive Programming Constructs": 3, + "Function/Method Declarations": 1, + "Class/Entity Declarations": 0, + "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, @@ -795297,7 +795946,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -795322,7 +795971,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 6, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -795339,15 +795988,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 0, + "Core Var Decl": 2, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 0, + "Design Upper Case": 2, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -795371,29 +796020,32 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 0, + "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, + "Total Upstream (Absolute Fragility)": 1, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [] + "9. Extracted Dependencies": [ + "CBSA.CICSBSA.BUILDJCL", + "DEFAULT" + ] }, - "sqlite/mediawiki_sqlite_tables/searchindex-fts3.sql": { + "jcl/cics-banking-sample-application-cbsa/BNK1DAC.jcl": { "1. Artifact Identity": { - "Filename": "searchindex-fts3.sql", - "Path": "sqlite/mediawiki_sqlite_tables/searchindex-fts3.sql", - "Language": "Sqlite", + "Filename": "BNK1DAC.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/BNK1DAC.jcl", + "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "sqlite", + "Folder Dominant Lang": "jcl", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .sql)" + "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -2034.62, - "Y": -148.41, - "Z": -6689.44 + "X": 499.16, + "Y": 90.74, + "Z": -647.8 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -795402,10 +796054,10 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 19, - "Coding LOC": 6, - "Documentation LOC": 9, - "Structural Magnitude": 5.52, + "Total LOC": 8, + "Coding LOC": 3, + "Documentation LOC": 4, + "Structural Magnitude": 1.16, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -795415,63 +796067,43 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "70.21%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.35%", - "API Exposure": "3.53%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "73.11%", + "Testing Exposure": "2.31%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "13.55%", + "Documentation Exposure": "0.0%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "INSERT_Statement", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 18, - "End Line": 18 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 11, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 6, - "End Line": 16 - }, - { - "Function Name": "DROP_Statement", + "Function Name": "Unknown_Block", "Structural Impact": 1.1, "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 5, - "End Line": 5 + "Start Line": 7, + "End Line": 7 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, "Sequential Logic Declarations": 1, - "Function Parameters": 1, - "Function/Method Declarations": 0, - "Class/Entity Declarations": 1, + "Function Parameters": 0, + "Function/Method Declarations": 1, + "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 2, + "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 1, - "Exposed API / Public Exports": 1, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -795485,7 +796117,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -795505,12 +796137,12 @@ "Bitwise Operations": 0, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 1, + "Resource Deallocation & Cleanup": 0, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 2, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -795527,15 +796159,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 0, + "Core Var Decl": 2, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 0, + "Design Upper Case": 2, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -795559,29 +796191,32 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 0, + "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, + "Total Upstream (Absolute Fragility)": 1, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [] + "9. Extracted Dependencies": [ + "CBSA.CICSBSA.BUILDJCL", + "DEFAULT" + ] }, - "sqlite/mediawiki_sqlite_tables/searchindex-no-fts.sql": { + "jcl/cics-banking-sample-application-cbsa/BNK1DAM.jcl": { "1. Artifact Identity": { - "Filename": "searchindex-no-fts.sql", - "Path": "sqlite/mediawiki_sqlite_tables/searchindex-no-fts.sql", - "Language": "Sqlite", + "Filename": "BNK1DAM.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/BNK1DAM.jcl", + "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "sqlite", + "Folder Dominant Lang": "jcl", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .sql)" + "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -1605.34, - "Y": -145.6, - "Z": -6950.06 + "X": -603.73, + "Y": 128.09, + "Z": -3321.24 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -795590,22 +796225,22 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 24, - "Coding LOC": 13, - "Documentation LOC": 5, - "Structural Magnitude": 10.16, - "Control Flow Ratio": "50.0%", - "Popularity Rank": 0, + "Total LOC": 9, + "Coding LOC": 4, + "Documentation LOC": 4, + "Structural Magnitude": 1.18, + "Control Flow Ratio": "0.0%", + "Popularity Rank": 1, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.029 + "Raw Cognitive Density": 0.0 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.29%", - "Error & Exception Exposure": "90.28%", + "Cognitive Load Exposure": "0.0%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.4%", + "Testing Exposure": "2.31%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -795618,97 +796253,369 @@ }, "5. Function Analysis": [ { - "Function Name": "DELETE_Statement", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "50.0%", - "Start Line": 23, - "End Line": 23 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 13, - "End Line": 18 - }, - { - "Function Name": "DROP_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 6, - "End Line": 6 - }, - { - "Function Name": "DROP_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 9, - "End Line": 9 - }, - { - "Function Name": "DROP_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 10, - "End Line": 10 - }, - { - "Function Name": "DROP_Statement", + "Function Name": "BNK1DAM", "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, + "Lines of Code (LOC)": 2, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 11, - "End Line": 11 - }, + "Start Line": 7, + "End Line": 8 + } + ], + "6. Contextual Mitigations & Amplifications": "None Detected", + "7. Structural Signatures (Net Mitigated Signals)": { + "Control Flow Branches": 0, + "Sequential Logic Declarations": 1, + "Function Parameters": 0, + "Function/Method Declarations": 1, + "Class/Entity Declarations": 0, + "Defensive Programming Constructs": 0, + "Type/Safety Bypasses": 0, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 0, + "State Mutations / Variable Reassignments": 0, + "Commented-out Code (Dead Logic)": 0, + "Structured Documentation Blocks": 0, + "Unit Test Assertions": 0, + "Asynchronous/Concurrent Execution": 0, + "UI / View Layer Components": 0, + "Closures and Anonymous Functions": 0, + "Global State Dependencies": 0, + "Decorators and Annotations": 0, + "Generic Type Abstractions": 0, + "Collection Iterators / Comprehensions": 0, + "Scientific & Mathematical Operations": 0, + "Metaprogramming & Reflection": 0, + "Module Dependencies (Imports)": 1, + "Authorship Metadata": 0, + "Planned Work (TODOs)": 0, + "Acknowledged Tech Debt (FIXMEs)": 0, + "Specification Traceability Tags": 0, + "Server-Side Rendering Contexts": 0, + "Event Publishers / Emitters": 0, + "Dependency Injection Constructs": 0, + "Preprocessor Macros": 0, + "Pointer Arithmetic & Addressing": 0, + "Manual Memory Allocation": 0, + "Inline Assembly Blocks": 0, + "Structured Telemetry & Logging": 0, + "Ad-hoc Print / Debug Statements": 0, + "Explicit Type Casts": 0, + "Fatal Aborts & Exceptions": 0, + "Thread Sleeps & Blocking Waits": 0, + "Bitwise Operations": 0, + "Thread Synchronization Locks": 0, + "Immutable Data Declarations": 0, + "Resource Deallocation & Cleanup": 0, + "Private / Encapsulated Scopes": 0, + "Event Listeners & Subscribers": 0, + "Bypassed / Skipped Tests": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 0, + "Hardware Bridge": 0, + "Cryptography": 0, + "Auth Middleware": 0, + "Ipc Rpc Bridges": 0, + "Feature Flags": 0, + "Serialization Parsing": 0, + "Regex Execution": 0, + "Time Date Logic": 0, + "Cloud LLM API Integrations": 0, + "AI Orchestration Frameworks": 0, + "Vector Databases (RAG)": 0, + "Local Inference & Tensor Math": 0, + "Traditional Machine Learning (Stats/Trees)": 0, + "Deep Learning & Neural Networks": 0, + "Lazy Evaluation & Generators (O(1) Memory)": 0, + "Vectorized Math & Tensor Operations": 0, + "Core Var Decl": 4, + "Design Camel Case": 0, + "Design Snake Case": 0, + "Design Pascal Case": 0, + "Design Upper Case": 4, + "Design Short Vars": 0, + "Design Long Vars": 0, + "Duplicate Logic": 0, + "Orphaned Logic": 0, + "Instructional Code Examples": 0, + "Architectural Diagrams (Mermaid/PlantUML)": 0, + "Structured Literature Headers": 0, + "Hyperlinked Literature References": 0, + "High-Entropy / Obfuscated Logic": 0, + "Safety & Constraint Bypasses": 0, + "External Network & I/O Hooks": 0, + "Dynamic Code Execution (Eval/Exec)": 0, + "Global Environment Mutation": 0, + "Commented-Out Executable Logic": 0, + "Low-Level Bitwise / Cryptographic Math": 0, + "Non-Standard / Steganographic Imports": 0, + "Non-Standard Unicode / Homoglyphs": 0, + "Embedded Credentials & Keys": 0, + "Sec Extension Mismatch": 0, + "Sec Entropy": 0, + "Sec Tainted Injection": 0, + "Prompt Injection": 0, + "Agentic Rce": 0, + "Invisible Unicode Payload Smuggling": 0, + "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 + }, + "8. Dependency Network": { + "Direct Upstream (Fragility)": 2, + "Direct Downstream (Dependency Blast Radius)": 1, + "Total Upstream (Absolute Fragility)": 1, + "Total Downstream (Absolute Dependency Blast Radius)": 1 + }, + "9. Extracted Dependencies": [ + "CBSA.CICSBSA.BUILDJCL", + "DEFAULT" + ] + }, + "jcl/cics-banking-sample-application-cbsa/BNK1DCM.jcl": { + "1. Artifact Identity": { + "Filename": "BNK1DCM.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/BNK1DCM.jcl", + "Language": "Jcl", + "Architect": "Unknown Architect", + "Indentation Style": "Neutral / No Indentation", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "jcl", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .jcl)" + }, + "2. Topological Coordinates": { + "X": 1751.61, + "Y": 82.5, + "Z": -1808.93 + }, + "3. Architectural Profile": { + "Repository Archetype": "Unclassified", + "Repository Drift (Z-Score)": 0.0, + "Repository Fingerprint": {}, + "File Archetype": null, + "File Drift (Z-Score)": 0.0, + "File Fingerprint": {}, + "Total LOC": 9, + "Coding LOC": 4, + "Documentation LOC": 4, + "Structural Magnitude": 1.18, + "Control Flow Ratio": "0.0%", + "Popularity Rank": 1, + "Raw Churn Frequency": 0.0, + "Authorship Centralization": 0.0, + "Ownership Entropy": 0.0, + "Raw Cognitive Density": 0.0 + }, + "4. Vulnerability & Risk Exposures": { + "Cognitive Load Exposure": "0.0%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "2.31%", + "API Exposure": "0.0%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "0.0%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "100.0%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "0.0%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "5. Function Analysis": [ { - "Function Name": "CREATE_Statement", + "Function Name": "BNK1DCM", "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, + "Lines of Code (LOC)": 2, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 20, - "End Line": 20 - }, + "Start Line": 7, + "End Line": 8 + } + ], + "6. Contextual Mitigations & Amplifications": "None Detected", + "7. Structural Signatures (Net Mitigated Signals)": { + "Control Flow Branches": 0, + "Sequential Logic Declarations": 1, + "Function Parameters": 0, + "Function/Method Declarations": 1, + "Class/Entity Declarations": 0, + "Defensive Programming Constructs": 0, + "Type/Safety Bypasses": 0, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 0, + "State Mutations / Variable Reassignments": 0, + "Commented-out Code (Dead Logic)": 0, + "Structured Documentation Blocks": 0, + "Unit Test Assertions": 0, + "Asynchronous/Concurrent Execution": 0, + "UI / View Layer Components": 0, + "Closures and Anonymous Functions": 0, + "Global State Dependencies": 0, + "Decorators and Annotations": 0, + "Generic Type Abstractions": 0, + "Collection Iterators / Comprehensions": 0, + "Scientific & Mathematical Operations": 0, + "Metaprogramming & Reflection": 0, + "Module Dependencies (Imports)": 1, + "Authorship Metadata": 0, + "Planned Work (TODOs)": 0, + "Acknowledged Tech Debt (FIXMEs)": 0, + "Specification Traceability Tags": 0, + "Server-Side Rendering Contexts": 0, + "Event Publishers / Emitters": 0, + "Dependency Injection Constructs": 0, + "Preprocessor Macros": 0, + "Pointer Arithmetic & Addressing": 0, + "Manual Memory Allocation": 0, + "Inline Assembly Blocks": 0, + "Structured Telemetry & Logging": 0, + "Ad-hoc Print / Debug Statements": 0, + "Explicit Type Casts": 0, + "Fatal Aborts & Exceptions": 0, + "Thread Sleeps & Blocking Waits": 0, + "Bitwise Operations": 0, + "Thread Synchronization Locks": 0, + "Immutable Data Declarations": 0, + "Resource Deallocation & Cleanup": 0, + "Private / Encapsulated Scopes": 0, + "Event Listeners & Subscribers": 0, + "Bypassed / Skipped Tests": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 0, + "Hardware Bridge": 0, + "Cryptography": 0, + "Auth Middleware": 0, + "Ipc Rpc Bridges": 0, + "Feature Flags": 0, + "Serialization Parsing": 0, + "Regex Execution": 0, + "Time Date Logic": 0, + "Cloud LLM API Integrations": 0, + "AI Orchestration Frameworks": 0, + "Vector Databases (RAG)": 0, + "Local Inference & Tensor Math": 0, + "Traditional Machine Learning (Stats/Trees)": 0, + "Deep Learning & Neural Networks": 0, + "Lazy Evaluation & Generators (O(1) Memory)": 0, + "Vectorized Math & Tensor Operations": 0, + "Core Var Decl": 4, + "Design Camel Case": 0, + "Design Snake Case": 0, + "Design Pascal Case": 0, + "Design Upper Case": 4, + "Design Short Vars": 0, + "Design Long Vars": 0, + "Duplicate Logic": 0, + "Orphaned Logic": 0, + "Instructional Code Examples": 0, + "Architectural Diagrams (Mermaid/PlantUML)": 0, + "Structured Literature Headers": 0, + "Hyperlinked Literature References": 0, + "High-Entropy / Obfuscated Logic": 0, + "Safety & Constraint Bypasses": 0, + "External Network & I/O Hooks": 0, + "Dynamic Code Execution (Eval/Exec)": 0, + "Global Environment Mutation": 0, + "Commented-Out Executable Logic": 0, + "Low-Level Bitwise / Cryptographic Math": 0, + "Non-Standard / Steganographic Imports": 0, + "Non-Standard Unicode / Homoglyphs": 0, + "Embedded Credentials & Keys": 0, + "Sec Extension Mismatch": 0, + "Sec Entropy": 0, + "Sec Tainted Injection": 0, + "Prompt Injection": 0, + "Agentic Rce": 0, + "Invisible Unicode Payload Smuggling": 0, + "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 + }, + "8. Dependency Network": { + "Direct Upstream (Fragility)": 2, + "Direct Downstream (Dependency Blast Radius)": 1, + "Total Upstream (Absolute Fragility)": 1, + "Total Downstream (Absolute Dependency Blast Radius)": 1 + }, + "9. Extracted Dependencies": [ + "CBSA.CICSBSA.BUILDJCL", + "DEFAULT" + ] + }, + "jcl/cics-banking-sample-application-cbsa/BNK1DCS.jcl": { + "1. Artifact Identity": { + "Filename": "BNK1DCS.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/BNK1DCS.jcl", + "Language": "Jcl", + "Architect": "Unknown Architect", + "Indentation Style": "Neutral / No Indentation", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "jcl", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .jcl)" + }, + "2. Topological Coordinates": { + "X": -919.55, + "Y": 68.16, + "Z": -3091.96 + }, + "3. Architectural Profile": { + "Repository Archetype": "Unclassified", + "Repository Drift (Z-Score)": 0.0, + "Repository Fingerprint": {}, + "File Archetype": null, + "File Drift (Z-Score)": 0.0, + "File Fingerprint": {}, + "Total LOC": 8, + "Coding LOC": 3, + "Documentation LOC": 4, + "Structural Magnitude": 1.16, + "Control Flow Ratio": "0.0%", + "Popularity Rank": 0, + "Raw Churn Frequency": 0.0, + "Authorship Centralization": 0.0, + "Ownership Entropy": 0.0, + "Raw Cognitive Density": 0.0 + }, + "4. Vulnerability & Risk Exposures": { + "Cognitive Load Exposure": "0.0%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "73.11%", + "Testing Exposure": "2.31%", + "API Exposure": "0.0%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "0.0%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "100.0%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "0.0%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "5. Function Analysis": [ { - "Function Name": "CREATE_Statement", + "Function Name": "Unknown_Block", "Structural Impact": 1.1, "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 21, - "End Line": 21 + "Start Line": 7, + "End Line": 7 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 1, + "Control Flow Branches": 0, "Sequential Logic Declarations": 1, "Function Parameters": 0, - "Function/Method Declarations": 2, - "Class/Entity Declarations": 1, - "Defensive Programming Constructs": 1, - "Type/Safety Bypasses": 8, + "Function/Method Declarations": 1, + "Class/Entity Declarations": 0, + "Defensive Programming Constructs": 0, + "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 1, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -795723,7 +796630,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -795743,12 +796650,12 @@ "Bitwise Operations": 0, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 5, + "Resource Deallocation & Cleanup": 0, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 4, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -795765,15 +796672,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 1, + "Core Var Decl": 2, "Design Camel Case": 0, - "Design Snake Case": 1, + "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 0, + "Design Upper Case": 2, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -795797,29 +796704,32 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 0, + "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, + "Total Upstream (Absolute Fragility)": 1, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [] + "9. Extracted Dependencies": [ + "CBSA.CICSBSA.BUILDJCL", + "DEFAULT" + ] }, - "sqlite/mediawiki_sqlite_tables/tables-generated.sql": { + "jcl/cics-banking-sample-application-cbsa/BNK1MAI.jcl": { "1. Artifact Identity": { - "Filename": "tables-generated.sql", - "Path": "sqlite/mediawiki_sqlite_tables/tables-generated.sql", - "Language": "Sqlite", + "Filename": "BNK1MAI.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/BNK1MAI.jcl", + "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "sqlite", + "Folder Dominant Lang": "jcl", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .sql)" + "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -1805.21, - "Y": -74.03, - "Z": -7206.15 + "X": -991.35, + "Y": 71.62, + "Z": -1489.99 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -795828,12 +796738,12 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 948, - "Coding LOC": 683, + "Total LOC": 9, + "Coding LOC": 4, "Documentation LOC": 4, - "Structural Magnitude": 247.46, + "Structural Magnitude": 1.18, "Control Flow Ratio": "0.0%", - "Popularity Rank": 0, + "Popularity Rank": 1, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, @@ -795843,7 +796753,7 @@ "Cognitive Load Exposure": "0.0%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.43%", + "Testing Exposure": "2.31%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -795856,1994 +796766,537 @@ }, "5. Function Analysis": [ { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 16, - "End Line": 27 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 14, + "Function Name": "BNK1MAI", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 2, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 38, - "End Line": 51 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 103, - "End Line": 112 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 17, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 220, - "End Line": 236 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 251, - "End Line": 262 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 16, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 286, - "End Line": 301 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 381, - "End Line": 390 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 11, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 442, - "End Line": 452 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 14, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 485, - "End Line": 498 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 511, - "End Line": 522 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 580, - "End Line": 589 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 17, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 629, - "End Line": 645 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 685, - "End Line": 694 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 731, - "End Line": 740 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 13, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 743, - "End Line": 755 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 19, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 809, - "End Line": 827 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 16, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 836, - "End Line": 851 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 62, - "End Line": 69 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 80, - "End Line": 88 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 122, - "End Line": 128 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 316, - "End Line": 322 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 338, - "End Line": 346 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 536, - "End Line": 542 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 610, - "End Line": 616 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 673, - "End Line": 680 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 768, - "End Line": 774 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 91, - "End Line": 96 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 171, - "End Line": 176 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 196, - "End Line": 201 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 208, - "End Line": 213 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 349, - "End Line": 354 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 361, - "End Line": 366 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 371, - "End Line": 376 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 406, - "End Line": 411 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 414, - "End Line": 419 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 432, - "End Line": 437 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 475, - "End Line": 480 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 549, - "End Line": 554 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 565, - "End Line": 570 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 707, - "End Line": 712 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 719, - "End Line": 724 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 781, - "End Line": 786 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 860, - "End Line": 865 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 875, - "End Line": 880 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 897, - "End Line": 902 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 907, - "End Line": 912 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 5, - "End Line": 9 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 114, - "End Line": 117 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 141, - "End Line": 145 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 154, - "End Line": 157 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 162, - "End Line": 166 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 179, - "End Line": 182 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 187, - "End Line": 191 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 275, - "End Line": 279 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 332, - "End Line": 335 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 398, - "End Line": 401 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 424, - "End Line": 427 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 530, - "End Line": 533 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 574, - "End Line": 577 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 594, - "End Line": 598 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 603, - "End Line": 607 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 665, - "End Line": 668 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 760, - "End Line": 763 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 790, - "End Line": 793 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 796, - "End Line": 799 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 802, - "End Line": 806 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 868, - "End Line": 872 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 887, - "End Line": 890 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 923, - "End Line": 927 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 932, - "End Line": 936 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 941, - "End Line": 945 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 11, - "End Line": 11 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 13, - "End Line": 13 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 29, - "End Line": 31 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 33, - "End Line": 33 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 35, - "End Line": 35 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 53, - "End Line": 53 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 55, - "End Line": 55 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 57, - "End Line": 57 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 59, - "End Line": 59 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 71, - "End Line": 71 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 73, - "End Line": 73 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 75, - "End Line": 75 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 77, - "End Line": 77 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 98, - "End Line": 98 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 100, - "End Line": 100 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 119, - "End Line": 119 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 130, - "End Line": 130 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 132, - "End Line": 132 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 134, - "End Line": 134 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 136, - "End Line": 138 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 147, - "End Line": 147 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 149, - "End Line": 149 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 151, - "End Line": 151 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 159, - "End Line": 159 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 168, - "End Line": 168 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 184, - "End Line": 184 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 193, - "End Line": 193 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 203, - "End Line": 203 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 205, - "End Line": 205 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 215, - "End Line": 215 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 217, - "End Line": 217 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 238, - "End Line": 238 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 240, - "End Line": 242 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 244, - "End Line": 244 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 246, - "End Line": 246 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 248, - "End Line": 248 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 264, - "End Line": 264 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 266, - "End Line": 266 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 268, - "End Line": 268 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 270, - "End Line": 270 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 272, - "End Line": 272 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 281, - "End Line": 283 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 303, - "End Line": 303 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 305, - "End Line": 305 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 307, - "End Line": 307 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 309, - "End Line": 309 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 311, - "End Line": 313 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 324, - "End Line": 324 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 326, - "End Line": 328 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 330, - "End Line": 330 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 356, - "End Line": 356 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 358, - "End Line": 358 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 368, - "End Line": 368 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 378, - "End Line": 378 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 392, - "End Line": 392 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 394, - "End Line": 394 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 396, - "End Line": 396 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 403, - "End Line": 403 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 421, - "End Line": 421 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 429, - "End Line": 429 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 439, - "End Line": 439 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 454, - "End Line": 454 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 456, - "End Line": 456 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 458, - "End Line": 460 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 462, - "End Line": 462 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 464, - "End Line": 466 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 468, - "End Line": 468 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 470, - "End Line": 472 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 482, - "End Line": 482 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 500, - "End Line": 500 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 502, - "End Line": 502 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 504, - "End Line": 504 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 506, - "End Line": 506 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 508, - "End Line": 508 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 524, - "End Line": 524 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 526, - "End Line": 526 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 528, - "End Line": 528 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 544, - "End Line": 544 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 546, - "End Line": 546 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 556, - "End Line": 556 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 558, - "End Line": 558 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 560, - "End Line": 560 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 562, - "End Line": 562 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 572, - "End Line": 572 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 591, - "End Line": 591 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 600, - "End Line": 600 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 618, - "End Line": 618 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 620, - "End Line": 622 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 624, - "End Line": 626 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 647, - "End Line": 647 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 649, - "End Line": 651 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 653, - "End Line": 653 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 655, - "End Line": 657 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 659, - "End Line": 659 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 661, - "End Line": 661 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 663, - "End Line": 663 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 670, - "End Line": 670 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 682, - "End Line": 682 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 696, - "End Line": 696 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 698, - "End Line": 698 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 700, - "End Line": 700 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 702, - "End Line": 704 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 714, - "End Line": 714 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 716, - "End Line": 716 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 726, - "End Line": 726 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 728, - "End Line": 728 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 757, - "End Line": 757 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 765, - "End Line": 765 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 776, - "End Line": 778 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 788, - "End Line": 788 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 829, - "End Line": 829 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 831, - "End Line": 831 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 833, - "End Line": 833 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 853, - "End Line": 853 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 855, - "End Line": 855 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 857, - "End Line": 857 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 882, - "End Line": 882 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 884, - "End Line": 884 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 892, - "End Line": 892 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 894, - "End Line": 894 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 904, - "End Line": 904 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 914, - "End Line": 914 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 916, - "End Line": 916 - }, - { - "Function Name": "CREATE_Statement", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 918, - "End Line": 920 - }, + "Start Line": 7, + "End Line": 8 + } + ], + "6. Contextual Mitigations & Amplifications": "None Detected", + "7. Structural Signatures (Net Mitigated Signals)": { + "Control Flow Branches": 0, + "Sequential Logic Declarations": 1, + "Function Parameters": 0, + "Function/Method Declarations": 1, + "Class/Entity Declarations": 0, + "Defensive Programming Constructs": 0, + "Type/Safety Bypasses": 0, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 0, + "State Mutations / Variable Reassignments": 0, + "Commented-out Code (Dead Logic)": 0, + "Structured Documentation Blocks": 0, + "Unit Test Assertions": 0, + "Asynchronous/Concurrent Execution": 0, + "UI / View Layer Components": 0, + "Closures and Anonymous Functions": 0, + "Global State Dependencies": 0, + "Decorators and Annotations": 0, + "Generic Type Abstractions": 0, + "Collection Iterators / Comprehensions": 0, + "Scientific & Mathematical Operations": 0, + "Metaprogramming & Reflection": 0, + "Module Dependencies (Imports)": 1, + "Authorship Metadata": 0, + "Planned Work (TODOs)": 0, + "Acknowledged Tech Debt (FIXMEs)": 0, + "Specification Traceability Tags": 0, + "Server-Side Rendering Contexts": 0, + "Event Publishers / Emitters": 0, + "Dependency Injection Constructs": 0, + "Preprocessor Macros": 0, + "Pointer Arithmetic & Addressing": 0, + "Manual Memory Allocation": 0, + "Inline Assembly Blocks": 0, + "Structured Telemetry & Logging": 0, + "Ad-hoc Print / Debug Statements": 0, + "Explicit Type Casts": 0, + "Fatal Aborts & Exceptions": 0, + "Thread Sleeps & Blocking Waits": 0, + "Bitwise Operations": 0, + "Thread Synchronization Locks": 0, + "Immutable Data Declarations": 0, + "Resource Deallocation & Cleanup": 0, + "Private / Encapsulated Scopes": 0, + "Event Listeners & Subscribers": 0, + "Bypassed / Skipped Tests": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 0, + "Hardware Bridge": 0, + "Cryptography": 0, + "Auth Middleware": 0, + "Ipc Rpc Bridges": 0, + "Feature Flags": 0, + "Serialization Parsing": 0, + "Regex Execution": 0, + "Time Date Logic": 0, + "Cloud LLM API Integrations": 0, + "AI Orchestration Frameworks": 0, + "Vector Databases (RAG)": 0, + "Local Inference & Tensor Math": 0, + "Traditional Machine Learning (Stats/Trees)": 0, + "Deep Learning & Neural Networks": 0, + "Lazy Evaluation & Generators (O(1) Memory)": 0, + "Vectorized Math & Tensor Operations": 0, + "Core Var Decl": 4, + "Design Camel Case": 0, + "Design Snake Case": 0, + "Design Pascal Case": 0, + "Design Upper Case": 4, + "Design Short Vars": 0, + "Design Long Vars": 0, + "Duplicate Logic": 0, + "Orphaned Logic": 0, + "Instructional Code Examples": 0, + "Architectural Diagrams (Mermaid/PlantUML)": 0, + "Structured Literature Headers": 0, + "Hyperlinked Literature References": 0, + "High-Entropy / Obfuscated Logic": 0, + "Safety & Constraint Bypasses": 0, + "External Network & I/O Hooks": 0, + "Dynamic Code Execution (Eval/Exec)": 0, + "Global Environment Mutation": 0, + "Commented-Out Executable Logic": 0, + "Low-Level Bitwise / Cryptographic Math": 0, + "Non-Standard / Steganographic Imports": 0, + "Non-Standard Unicode / Homoglyphs": 0, + "Embedded Credentials & Keys": 0, + "Sec Extension Mismatch": 0, + "Sec Entropy": 0, + "Sec Tainted Injection": 0, + "Prompt Injection": 0, + "Agentic Rce": 0, + "Invisible Unicode Payload Smuggling": 0, + "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 + }, + "8. Dependency Network": { + "Direct Upstream (Fragility)": 2, + "Direct Downstream (Dependency Blast Radius)": 1, + "Total Upstream (Absolute Fragility)": 1, + "Total Downstream (Absolute Dependency Blast Radius)": 1 + }, + "9. Extracted Dependencies": [ + "CBSA.CICSBSA.BUILDJCL", + "DEFAULT" + ] + }, + "jcl/cics-banking-sample-application-cbsa/BNK1TFM.jcl": { + "1. Artifact Identity": { + "Filename": "BNK1TFM.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/BNK1TFM.jcl", + "Language": "Jcl", + "Architect": "Unknown Architect", + "Indentation Style": "Neutral / No Indentation", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "jcl", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .jcl)" + }, + "2. Topological Coordinates": { + "X": 720.33, + "Y": 113.75, + "Z": -3565.09 + }, + "3. Architectural Profile": { + "Repository Archetype": "Unclassified", + "Repository Drift (Z-Score)": 0.0, + "Repository Fingerprint": {}, + "File Archetype": null, + "File Drift (Z-Score)": 0.0, + "File Fingerprint": {}, + "Total LOC": 9, + "Coding LOC": 4, + "Documentation LOC": 4, + "Structural Magnitude": 1.18, + "Control Flow Ratio": "0.0%", + "Popularity Rank": 1, + "Raw Churn Frequency": 0.0, + "Authorship Centralization": 0.0, + "Ownership Entropy": 0.0, + "Raw Cognitive Density": 0.0 + }, + "4. Vulnerability & Risk Exposures": { + "Cognitive Load Exposure": "0.0%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "2.31%", + "API Exposure": "0.0%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "0.0%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "100.0%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "0.0%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "5. Function Analysis": [ { - "Function Name": "CREATE_Statement", + "Function Name": "BNK1TFM", "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, + "Lines of Code (LOC)": 2, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 929, - "End Line": 929 - }, + "Start Line": 7, + "End Line": 8 + } + ], + "6. Contextual Mitigations & Amplifications": "None Detected", + "7. Structural Signatures (Net Mitigated Signals)": { + "Control Flow Branches": 0, + "Sequential Logic Declarations": 1, + "Function Parameters": 0, + "Function/Method Declarations": 1, + "Class/Entity Declarations": 0, + "Defensive Programming Constructs": 0, + "Type/Safety Bypasses": 0, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 0, + "State Mutations / Variable Reassignments": 0, + "Commented-out Code (Dead Logic)": 0, + "Structured Documentation Blocks": 0, + "Unit Test Assertions": 0, + "Asynchronous/Concurrent Execution": 0, + "UI / View Layer Components": 0, + "Closures and Anonymous Functions": 0, + "Global State Dependencies": 0, + "Decorators and Annotations": 0, + "Generic Type Abstractions": 0, + "Collection Iterators / Comprehensions": 0, + "Scientific & Mathematical Operations": 0, + "Metaprogramming & Reflection": 0, + "Module Dependencies (Imports)": 1, + "Authorship Metadata": 0, + "Planned Work (TODOs)": 0, + "Acknowledged Tech Debt (FIXMEs)": 0, + "Specification Traceability Tags": 0, + "Server-Side Rendering Contexts": 0, + "Event Publishers / Emitters": 0, + "Dependency Injection Constructs": 0, + "Preprocessor Macros": 0, + "Pointer Arithmetic & Addressing": 0, + "Manual Memory Allocation": 0, + "Inline Assembly Blocks": 0, + "Structured Telemetry & Logging": 0, + "Ad-hoc Print / Debug Statements": 0, + "Explicit Type Casts": 0, + "Fatal Aborts & Exceptions": 0, + "Thread Sleeps & Blocking Waits": 0, + "Bitwise Operations": 0, + "Thread Synchronization Locks": 0, + "Immutable Data Declarations": 0, + "Resource Deallocation & Cleanup": 0, + "Private / Encapsulated Scopes": 0, + "Event Listeners & Subscribers": 0, + "Bypassed / Skipped Tests": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 0, + "Hardware Bridge": 0, + "Cryptography": 0, + "Auth Middleware": 0, + "Ipc Rpc Bridges": 0, + "Feature Flags": 0, + "Serialization Parsing": 0, + "Regex Execution": 0, + "Time Date Logic": 0, + "Cloud LLM API Integrations": 0, + "AI Orchestration Frameworks": 0, + "Vector Databases (RAG)": 0, + "Local Inference & Tensor Math": 0, + "Traditional Machine Learning (Stats/Trees)": 0, + "Deep Learning & Neural Networks": 0, + "Lazy Evaluation & Generators (O(1) Memory)": 0, + "Vectorized Math & Tensor Operations": 0, + "Core Var Decl": 4, + "Design Camel Case": 0, + "Design Snake Case": 0, + "Design Pascal Case": 0, + "Design Upper Case": 4, + "Design Short Vars": 0, + "Design Long Vars": 0, + "Duplicate Logic": 0, + "Orphaned Logic": 0, + "Instructional Code Examples": 0, + "Architectural Diagrams (Mermaid/PlantUML)": 0, + "Structured Literature Headers": 0, + "Hyperlinked Literature References": 0, + "High-Entropy / Obfuscated Logic": 0, + "Safety & Constraint Bypasses": 0, + "External Network & I/O Hooks": 0, + "Dynamic Code Execution (Eval/Exec)": 0, + "Global Environment Mutation": 0, + "Commented-Out Executable Logic": 0, + "Low-Level Bitwise / Cryptographic Math": 0, + "Non-Standard / Steganographic Imports": 0, + "Non-Standard Unicode / Homoglyphs": 0, + "Embedded Credentials & Keys": 0, + "Sec Extension Mismatch": 0, + "Sec Entropy": 0, + "Sec Tainted Injection": 0, + "Prompt Injection": 0, + "Agentic Rce": 0, + "Invisible Unicode Payload Smuggling": 0, + "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 + }, + "8. Dependency Network": { + "Direct Upstream (Fragility)": 2, + "Direct Downstream (Dependency Blast Radius)": 1, + "Total Upstream (Absolute Fragility)": 1, + "Total Downstream (Absolute Dependency Blast Radius)": 1 + }, + "9. Extracted Dependencies": [ + "CBSA.CICSBSA.BUILDJCL", + "DEFAULT" + ] + }, + "jcl/cics-banking-sample-application-cbsa/BNK1TFN.jcl": { + "1. Artifact Identity": { + "Filename": "BNK1TFN.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/BNK1TFN.jcl", + "Language": "Jcl", + "Architect": "Unknown Architect", + "Indentation Style": "Neutral / No Indentation", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "jcl", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .jcl)" + }, + "2. Topological Coordinates": { + "X": 1846.14, + "Y": 28.31, + "Z": -2411.0 + }, + "3. Architectural Profile": { + "Repository Archetype": "Unclassified", + "Repository Drift (Z-Score)": 0.0, + "Repository Fingerprint": {}, + "File Archetype": null, + "File Drift (Z-Score)": 0.0, + "File Fingerprint": {}, + "Total LOC": 8, + "Coding LOC": 3, + "Documentation LOC": 4, + "Structural Magnitude": 1.16, + "Control Flow Ratio": "0.0%", + "Popularity Rank": 0, + "Raw Churn Frequency": 0.0, + "Authorship Centralization": 0.0, + "Ownership Entropy": 0.0, + "Raw Cognitive Density": 0.0 + }, + "4. Vulnerability & Risk Exposures": { + "Cognitive Load Exposure": "0.0%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "73.11%", + "Testing Exposure": "2.31%", + "API Exposure": "0.0%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "0.0%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "100.0%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "0.0%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "5. Function Analysis": [ { - "Function Name": "CREATE_Statement", + "Function Name": "Unknown_Block", "Structural Impact": 1.1, "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 938, - "End Line": 938 - }, + "Start Line": 7, + "End Line": 7 + } + ], + "6. Contextual Mitigations & Amplifications": "None Detected", + "7. Structural Signatures (Net Mitigated Signals)": { + "Control Flow Branches": 0, + "Sequential Logic Declarations": 1, + "Function Parameters": 0, + "Function/Method Declarations": 1, + "Class/Entity Declarations": 0, + "Defensive Programming Constructs": 0, + "Type/Safety Bypasses": 0, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 0, + "State Mutations / Variable Reassignments": 0, + "Commented-out Code (Dead Logic)": 0, + "Structured Documentation Blocks": 0, + "Unit Test Assertions": 0, + "Asynchronous/Concurrent Execution": 0, + "UI / View Layer Components": 0, + "Closures and Anonymous Functions": 0, + "Global State Dependencies": 0, + "Decorators and Annotations": 0, + "Generic Type Abstractions": 0, + "Collection Iterators / Comprehensions": 0, + "Scientific & Mathematical Operations": 0, + "Metaprogramming & Reflection": 0, + "Module Dependencies (Imports)": 1, + "Authorship Metadata": 0, + "Planned Work (TODOs)": 0, + "Acknowledged Tech Debt (FIXMEs)": 0, + "Specification Traceability Tags": 0, + "Server-Side Rendering Contexts": 0, + "Event Publishers / Emitters": 0, + "Dependency Injection Constructs": 0, + "Preprocessor Macros": 0, + "Pointer Arithmetic & Addressing": 0, + "Manual Memory Allocation": 0, + "Inline Assembly Blocks": 0, + "Structured Telemetry & Logging": 0, + "Ad-hoc Print / Debug Statements": 0, + "Explicit Type Casts": 0, + "Fatal Aborts & Exceptions": 0, + "Thread Sleeps & Blocking Waits": 0, + "Bitwise Operations": 0, + "Thread Synchronization Locks": 0, + "Immutable Data Declarations": 0, + "Resource Deallocation & Cleanup": 0, + "Private / Encapsulated Scopes": 0, + "Event Listeners & Subscribers": 0, + "Bypassed / Skipped Tests": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 0, + "Hardware Bridge": 0, + "Cryptography": 0, + "Auth Middleware": 0, + "Ipc Rpc Bridges": 0, + "Feature Flags": 0, + "Serialization Parsing": 0, + "Regex Execution": 0, + "Time Date Logic": 0, + "Cloud LLM API Integrations": 0, + "AI Orchestration Frameworks": 0, + "Vector Databases (RAG)": 0, + "Local Inference & Tensor Math": 0, + "Traditional Machine Learning (Stats/Trees)": 0, + "Deep Learning & Neural Networks": 0, + "Lazy Evaluation & Generators (O(1) Memory)": 0, + "Vectorized Math & Tensor Operations": 0, + "Core Var Decl": 2, + "Design Camel Case": 0, + "Design Snake Case": 0, + "Design Pascal Case": 0, + "Design Upper Case": 2, + "Design Short Vars": 0, + "Design Long Vars": 0, + "Duplicate Logic": 0, + "Orphaned Logic": 1, + "Instructional Code Examples": 0, + "Architectural Diagrams (Mermaid/PlantUML)": 0, + "Structured Literature Headers": 0, + "Hyperlinked Literature References": 0, + "High-Entropy / Obfuscated Logic": 0, + "Safety & Constraint Bypasses": 0, + "External Network & I/O Hooks": 0, + "Dynamic Code Execution (Eval/Exec)": 0, + "Global Environment Mutation": 0, + "Commented-Out Executable Logic": 0, + "Low-Level Bitwise / Cryptographic Math": 0, + "Non-Standard / Steganographic Imports": 0, + "Non-Standard Unicode / Homoglyphs": 0, + "Embedded Credentials & Keys": 0, + "Sec Extension Mismatch": 0, + "Sec Entropy": 0, + "Sec Tainted Injection": 0, + "Prompt Injection": 0, + "Agentic Rce": 0, + "Invisible Unicode Payload Smuggling": 0, + "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 + }, + "8. Dependency Network": { + "Direct Upstream (Fragility)": 2, + "Direct Downstream (Dependency Blast Radius)": 0, + "Total Upstream (Absolute Fragility)": 1, + "Total Downstream (Absolute Dependency Blast Radius)": 0 + }, + "9. Extracted Dependencies": [ + "CBSA.CICSBSA.BUILDJCL", + "DEFAULT" + ] + }, + "jcl/cics-banking-sample-application-cbsa/BNK1UAC.jcl": { + "1. Artifact Identity": { + "Filename": "BNK1UAC.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/BNK1UAC.jcl", + "Language": "Jcl", + "Architect": "Unknown Architect", + "Indentation Style": "Neutral / No Indentation", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "jcl", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .jcl)" + }, + "2. Topological Coordinates": { + "X": -794.73, + "Y": 57.4, + "Z": -1229.29 + }, + "3. Architectural Profile": { + "Repository Archetype": "Unclassified", + "Repository Drift (Z-Score)": 0.0, + "Repository Fingerprint": {}, + "File Archetype": null, + "File Drift (Z-Score)": 0.0, + "File Fingerprint": {}, + "Total LOC": 8, + "Coding LOC": 3, + "Documentation LOC": 4, + "Structural Magnitude": 1.16, + "Control Flow Ratio": "0.0%", + "Popularity Rank": 0, + "Raw Churn Frequency": 0.0, + "Authorship Centralization": 0.0, + "Ownership Entropy": 0.0, + "Raw Cognitive Density": 0.0 + }, + "4. Vulnerability & Risk Exposures": { + "Cognitive Load Exposure": "0.0%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "73.11%", + "Testing Exposure": "2.31%", + "API Exposure": "0.0%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "0.0%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "100.0%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "0.0%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "5. Function Analysis": [ { - "Function Name": "CREATE_Statement", + "Function Name": "Unknown_Block", "Structural Impact": 1.1, "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 947, - "End Line": 947 + "Start Line": 7, + "End Line": 7 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 0, + "Sequential Logic Declarations": 1, "Function Parameters": 0, - "Function/Method Declarations": 134, - "Class/Entity Declarations": 64, - "Defensive Programming Constructs": 83, + "Function/Method Declarations": 1, + "Class/Entity Declarations": 0, + "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, @@ -797861,7 +797314,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -797886,7 +797339,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 398, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -797894,7 +797347,7 @@ "Feature Flags": 0, "Serialization Parsing": 0, "Regex Execution": 0, - "Time Date Logic": 1, + "Time Date Logic": 0, "Cloud LLM API Integrations": 0, "AI Orchestration Frameworks": 0, "Vector Databases (RAG)": 0, @@ -797903,15 +797356,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 0, + "Core Var Decl": 2, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 0, + "Design Upper Case": 2, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -797935,95 +797388,84 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 0, + "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, + "Total Upstream (Absolute Fragility)": 1, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [] - } - } - }, - "python/wtfpython": { - "Directory Group Magnitude": 313.92, - "File Count": 6, - "Ecosystem Fingerprint (Archetypes)": { - "Unclassified": "83.3%", - "Static: Literature & Documentation": "16.7%" - }, - "Average Risk Exposures": { - "Cognitive Load Exposure": "11.38%", - "Error & Exception Exposure": "29.13%", - "Tech Debt Exposure": "31.29%", - "Testing Exposure": "14.88%", - "API Exposure": "2.85%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "31.95%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "66.67%", - "Instability Exposure": "41.67%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "7.95%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "Files": { - "python/wtfpython/README.md": { + "9. Extracted Dependencies": [ + "CBSA.CICSBSA.BUILDJCL", + "DEFAULT" + ] + }, + "jcl/cics-banking-sample-application-cbsa/BNK1UAM.jcl": { "1. Artifact Identity": { - "Filename": "README.md", - "Path": "python/wtfpython/README.md", - "Language": "Markdown", + "Filename": "BNK1UAM.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/BNK1UAM.jcl", + "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Neutral / No Indentation", - "Doc Umbrella": 1.0, - "Folder Dominant Lang": "python", - "Lock Tier": 1, - "Identity Proof": "Prose Extension (.md)" + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "jcl", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -4576.29, - "Y": 99.18, - "Z": 10610.25 + "X": 992.49, + "Y": 22.86, + "Z": -768.49 }, "3. Architectural Profile": { - "Repository Archetype": "Static: Literature & Documentation", + "Repository Archetype": "Unclassified", "Repository Drift (Z-Score)": 0.0, "Repository Fingerprint": {}, - "File Archetype": "N/A", + "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 4180, - "Coding LOC": 0, - "Documentation LOC": 3118, - "Structural Magnitude": 83.6, + "Total LOC": 9, + "Coding LOC": 4, + "Documentation LOC": 4, + "Structural Magnitude": 1.18, "Control Flow Ratio": "0.0%", - "Popularity Rank": 0, + "Popularity Rank": 1, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, "Raw Cognitive Density": 0.0 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "[UNSCANNED - NO DATA]", - "Error & Exception Exposure": "[UNSCANNED - NO DATA]", - "Tech Debt Exposure": "[UNSCANNED - NO DATA]", - "Testing Exposure": "[UNSCANNED - NO DATA]", - "API Exposure": "[UNSCANNED - NO DATA]", - "Concurrency Exposure": "[UNSCANNED - NO DATA]", - "State Flux Exposure": "[UNSCANNED - NO DATA]", - "Commented Logic Exposure": "[UNSCANNED - NO DATA]", - "Specification Exposure": "[UNSCANNED - NO DATA]", - "Instability Exposure": "[UNSCANNED - NO DATA]", - "Volatility Exposure": "[UNSCANNED - NO DATA]", - "Documentation Exposure": "[UNSCANNED - NO DATA]", - "Hardcoded Payload Artifacts": "[UNSCANNED - NO DATA]" + "Cognitive Load Exposure": "0.0%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "2.31%", + "API Exposure": "0.0%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "0.0%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "100.0%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "0.0%", + "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [], + "5. Function Analysis": [ + { + "Function Name": "BNK1UAM", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 7, + "End Line": 8 + } + ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 0, + "Sequential Logic Declarations": 1, "Function Parameters": 0, - "Function/Method Declarations": 0, + "Function/Method Declarations": 1, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, @@ -798043,7 +797485,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -798085,19 +797527,19 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 0, + "Core Var Decl": 4, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 0, + "Design Upper Case": 4, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, "Orphaned Logic": 0, - "Instructional Code Examples": 504, + "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, - "Structured Literature Headers": 174, - "Hyperlinked Literature References": 171, + "Structured Literature Headers": 0, + "Hyperlinked Literature References": 0, "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, @@ -798118,43 +797560,43 @@ }, "8. Dependency Network": { "Direct Upstream (Fragility)": 2, - "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 + "Direct Downstream (Dependency Blast Radius)": 1, + "Total Upstream (Absolute Fragility)": 1, + "Total Downstream (Absolute Dependency Blast Radius)": 1 }, "9. Extracted Dependencies": [ - "/CONTRIBUTING.md", - "/mixed_tabs_and_spaces.py" + "CBSA.CICSBSA.BUILDJCL", + "DEFAULT" ] }, - "python/wtfpython/2_tricky_strings.py": { + "jcl/cics-banking-sample-application-cbsa/BNKMENU.jcl": { "1. Artifact Identity": { - "Filename": "2_tricky_strings.py", - "Path": "python/wtfpython/2_tricky_strings.py", - "Language": "Python", + "Filename": "BNKMENU.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/BNKMENU.jcl", + "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Neutral / No Indentation", - "Doc Umbrella": 1.0, - "Folder Dominant Lang": "python", - "Lock Tier": 1.5, - "Identity Proof": "Ecosystem Consensus Lock (75% Local Dominance)" + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "jcl", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -4313.75, - "Y": 191.44, - "Z": 10129.64 + "X": 360.94, + "Y": 79.59, + "Z": -3797.0 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", "Repository Drift (Z-Score)": 0.0, "Repository Fingerprint": {}, - "File Archetype": "Unclassified", + "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 20, - "Coding LOC": 12, - "Documentation LOC": 3, - "Structural Magnitude": 15.24, + "Total LOC": 8, + "Coding LOC": 3, + "Documentation LOC": 4, + "Structural Magnitude": 1.16, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -798165,27 +797607,38 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", - "Testing Exposure": "2.3%", + "Tech Debt Exposure": "73.11%", + "Testing Exposure": "2.31%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "0.0%", + "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", "Documentation Exposure": "0.0%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [], + "5. Function Analysis": [ + { + "Function Name": "Unknown_Block", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 7, + "End Line": 7 + } + ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 6, + "Sequential Logic Declarations": 1, "Function Parameters": 0, - "Function/Method Declarations": 0, + "Function/Method Declarations": 1, "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 6, + "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, @@ -798203,10 +797656,10 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, - "Acknowledged Tech Debt (FIXMEs)": 8, + "Acknowledged Tech Debt (FIXMEs)": 0, "Specification Traceability Tags": 0, "Server-Side Rendering Contexts": 0, "Event Publishers / Emitters": 0, @@ -798245,15 +797698,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 6, + "Core Var Decl": 2, "Design Camel Case": 0, - "Design Snake Case": 6, + "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 0, - "Design Short Vars": 6, + "Design Upper Case": 2, + "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -798277,88 +797730,262 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 0, + "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, + "Total Upstream (Absolute Fragility)": 1, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [] + "9. Extracted Dependencies": [ + "CBSA.CICSBSA.BUILDJCL", + "DEFAULT" + ] }, - "python/wtfpython/insert_ids.py": { + "jcl/cics-banking-sample-application-cbsa/BTCHSQL.jcl": { "1. Artifact Identity": { - "Filename": "insert_ids.py", - "Path": "python/wtfpython/insert_ids.py", - "Language": "Python", + "Filename": "BTCHSQL.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/BTCHSQL.jcl", + "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Spaces", - "Doc Umbrella": 1.0, - "Folder Dominant Lang": "python", - "Lock Tier": 1.5, - "Identity Proof": "Ecosystem Consensus Lock (75% Local Dominance)" + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "jcl", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -4069.61, - "Y": 187.76, - "Z": 10761.73 + "X": 661.38, + "Y": 85.57, + "Z": -3199.48 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", "Repository Drift (Z-Score)": 0.0, "Repository Fingerprint": {}, - "File Archetype": "Unclassified", + "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 25, - "Coding LOC": 15, - "Documentation LOC": 0, - "Structural Magnitude": 8.4, - "Control Flow Ratio": "44.4%", + "Total LOC": 22, + "Coding LOC": 17, + "Documentation LOC": 4, + "Structural Magnitude": 1.94, + "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.32 + "Raw Cognitive Density": 0.0 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "15.19%", - "Error & Exception Exposure": "79.76%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.31%", - "API Exposure": "3.53%", + "Cognitive Load Exposure": "0.0%", + "Error & Exception Exposure": "76.85%", + "Tech Debt Exposure": "73.11%", + "Testing Exposure": "2.33%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "91.68%", + "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "11.92%", + "Documentation Exposure": "0.0%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "generate_random_id_comment", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, + "Function Name": "GRANT", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 13, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", "Start Line": 9, - "End Line": 11 + "End Line": 21 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 4, - "Sequential Logic Declarations": 5, - "Function Parameters": 1, + "Control Flow Branches": 0, + "Sequential Logic Declarations": 6, + "Function Parameters": 0, "Function/Method Declarations": 1, - "Class/Entity Declarations": 0, + "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 2, + "Type/Safety Bypasses": 0, + "High-Risk Execution Commands": 1, + "I/O and Network Boundaries": 7, + "Exposed API / Public Exports": 0, + "State Mutations / Variable Reassignments": 0, + "Commented-out Code (Dead Logic)": 0, + "Structured Documentation Blocks": 0, + "Unit Test Assertions": 0, + "Asynchronous/Concurrent Execution": 0, + "UI / View Layer Components": 0, + "Closures and Anonymous Functions": 0, + "Global State Dependencies": 1, + "Decorators and Annotations": 0, + "Generic Type Abstractions": 0, + "Collection Iterators / Comprehensions": 0, + "Scientific & Mathematical Operations": 0, + "Metaprogramming & Reflection": 0, + "Module Dependencies (Imports)": 0, + "Authorship Metadata": 0, + "Planned Work (TODOs)": 0, + "Acknowledged Tech Debt (FIXMEs)": 0, + "Specification Traceability Tags": 0, + "Server-Side Rendering Contexts": 0, + "Event Publishers / Emitters": 0, + "Dependency Injection Constructs": 0, + "Preprocessor Macros": 0, + "Pointer Arithmetic & Addressing": 0, + "Manual Memory Allocation": 0, + "Inline Assembly Blocks": 0, + "Structured Telemetry & Logging": 2, + "Ad-hoc Print / Debug Statements": 0, + "Explicit Type Casts": 0, + "Fatal Aborts & Exceptions": 0, + "Thread Sleeps & Blocking Waits": 0, + "Bitwise Operations": 0, + "Thread Synchronization Locks": 0, + "Immutable Data Declarations": 0, + "Resource Deallocation & Cleanup": 0, + "Private / Encapsulated Scopes": 0, + "Event Listeners & Subscribers": 0, + "Bypassed / Skipped Tests": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 4, + "Hardware Bridge": 0, + "Cryptography": 0, + "Auth Middleware": 0, + "Ipc Rpc Bridges": 0, + "Feature Flags": 0, + "Serialization Parsing": 0, + "Regex Execution": 0, + "Time Date Logic": 0, + "Cloud LLM API Integrations": 0, + "AI Orchestration Frameworks": 0, + "Vector Databases (RAG)": 0, + "Local Inference & Tensor Math": 0, + "Traditional Machine Learning (Stats/Trees)": 0, + "Deep Learning & Neural Networks": 0, + "Lazy Evaluation & Generators (O(1) Memory)": 0, + "Vectorized Math & Tensor Operations": 0, + "Core Var Decl": 8, + "Design Camel Case": 0, + "Design Snake Case": 0, + "Design Pascal Case": 0, + "Design Upper Case": 8, + "Design Short Vars": 0, + "Design Long Vars": 0, + "Duplicate Logic": 0, + "Orphaned Logic": 1, + "Instructional Code Examples": 0, + "Architectural Diagrams (Mermaid/PlantUML)": 0, + "Structured Literature Headers": 0, + "Hyperlinked Literature References": 0, + "High-Entropy / Obfuscated Logic": 0, + "Safety & Constraint Bypasses": 0, + "External Network & I/O Hooks": 0, + "Dynamic Code Execution (Eval/Exec)": 2, + "Global Environment Mutation": 0, + "Commented-Out Executable Logic": 0, + "Low-Level Bitwise / Cryptographic Math": 0, + "Non-Standard / Steganographic Imports": 0, + "Non-Standard Unicode / Homoglyphs": 0, + "Embedded Credentials & Keys": 0, + "Sec Extension Mismatch": 0, + "Sec Entropy": 0, + "Sec Tainted Injection": 1, + "Prompt Injection": 0, + "Agentic Rce": 0, + "Invisible Unicode Payload Smuggling": 0, + "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 + }, + "8. Dependency Network": { + "Direct Upstream (Fragility)": 2, + "Direct Downstream (Dependency Blast Radius)": 0, + "Total Upstream (Absolute Fragility)": 0, + "Total Downstream (Absolute Dependency Blast Radius)": 0 + }, + "9. Extracted Dependencies": [ + "DSNC10.PROCLIB", + "DSNC10.SDSNLOAD" + ] + }, + "jcl/cics-banking-sample-application-cbsa/CBSACSD.jcl": { + "1. Artifact Identity": { + "Filename": "CBSACSD.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/CBSACSD.jcl", + "Language": "Jcl", + "Architect": "Unknown Architect", + "Indentation Style": "Neutral / No Indentation", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "jcl", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .jcl)" + }, + "2. Topological Coordinates": { + "X": 590.81, + "Y": 84.6, + "Z": -799.42 + }, + "3. Architectural Profile": { + "Repository Archetype": "Unclassified", + "Repository Drift (Z-Score)": 0.0, + "Repository Fingerprint": {}, + "File Archetype": null, + "File Drift (Z-Score)": 0.0, + "File Fingerprint": {}, + "Total LOC": 24, + "Coding LOC": 10, + "Documentation LOC": 13, + "Structural Magnitude": 1.6, + "Control Flow Ratio": "0.0%", + "Popularity Rank": 0, + "Raw Churn Frequency": 0.0, + "Authorship Centralization": 0.0, + "Ownership Entropy": 0.0, + "Raw Cognitive Density": 0.0 + }, + "4. Vulnerability & Risk Exposures": { + "Cognitive Load Exposure": "0.0%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "2.32%", + "API Exposure": "0.0%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "0.0%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "100.0%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "0.0%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "5. Function Analysis": [ + { + "Function Name": "DFHCSDUP", + "Structural Impact": 1.4, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 17, + "End Line": 23 + } + ], + "6. Contextual Mitigations & Amplifications": "None Detected", + "7. Structural Signatures (Net Mitigated Signals)": { + "Control Flow Branches": 0, + "Sequential Logic Declarations": 6, + "Function Parameters": 0, + "Function/Method Declarations": 1, + "Class/Entity Declarations": 1, + "Defensive Programming Constructs": 0, + "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 2, - "Exposed API / Public Exports": 1, - "State Mutations / Variable Reassignments": 6, + "I/O and Network Boundaries": 10, + "Exposed API / Public Exports": 0, + "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, @@ -798371,7 +797998,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -798383,7 +798010,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 2, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -798396,7 +798023,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 7, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -798413,11 +798040,11 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 5, + "Core Var Decl": 9, "Design Camel Case": 0, - "Design Snake Case": 5, + "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 0, + "Design Upper Case": 9, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, @@ -798445,88 +798072,100 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 1, + "Direct Upstream (Fragility)": 3, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "uuid" + "@CBSA_INSTALL@(BANK)", + "@CICS_PREFIX@.SDFHLOAD", + "@CSD_PREFIX@.DFHCSD" ] }, - "python/wtfpython/mixed_tabs_and_spaces.py": { + "jcl/cics-banking-sample-application-cbsa/CICS.jcl": { "1. Artifact Identity": { - "Filename": "mixed_tabs_and_spaces.py", - "Path": "python/wtfpython/mixed_tabs_and_spaces.py", - "Language": "Python", + "Filename": "CICS.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/CICS.jcl", + "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Mixed (75.0% Spaces / 25.0% Tabs)", - "Doc Umbrella": 1.0, - "Folder Dominant Lang": "python", - "Lock Tier": 1.5, - "Identity Proof": "Ecosystem Consensus Lock (75% Local Dominance)" + "Indentation Style": "Neutral / No Indentation", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "jcl", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -4807.29, - "Y": 107.58, - "Z": 10236.98 + "X": 578.22, + "Y": 58.03, + "Z": -1823.91 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", "Repository Drift (Z-Score)": 0.0, "Repository Fingerprint": {}, - "File Archetype": "Unclassified", + "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 8, - "Coding LOC": 6, - "Documentation LOC": 0, - "Structural Magnitude": 4.22, - "Control Flow Ratio": "33.3%", - "Popularity Rank": 1, + "Total LOC": 59, + "Coding LOC": 53, + "Documentation LOC": 5, + "Structural Magnitude": 9.66, + "Control Flow Ratio": "0.0%", + "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.02 + "Raw Cognitive Density": 0.0 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.12%", + "Cognitive Load Exposure": "0.0%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.33%", - "API Exposure": "3.53%", + "Testing Exposure": "2.38%", + "API Exposure": "3.39%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "11.92%", + "Documentation Exposure": "15.73%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "square", - "Structural Impact": 3.1, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "33.3%", - "Start Line": 1, - "End Line": 5 + "Function Name": "COBOL", + "Structural Impact": 4.4, + "Lines of Code (LOC)": 36, + "Control Flow Branches": 0, + "Input Parameters": 6, + "Control Flow Ratio": "0.0%", + "Start Line": 5, + "End Line": 40 + }, + { + "Function Name": "LKED", + "Structural Impact": 3.2, + "Lines of Code (LOC)": 16, + "Control Flow Branches": 0, + "Input Parameters": 5, + "Control Flow Ratio": "0.0%", + "Start Line": 43, + "End Line": 58 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 1, - "Sequential Logic Declarations": 2, - "Function Parameters": 1, - "Function/Method Declarations": 1, + "Control Flow Branches": 0, + "Sequential Logic Declarations": 43, + "Function Parameters": 3, + "Function/Method Declarations": 2, "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 0, + "Defensive Programming Constructs": 1, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, + "I/O and Network Boundaries": 43, "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -798554,7 +798193,7 @@ "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, - "Ad-hoc Print / Debug Statements": 1, + "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, @@ -798565,8 +798204,8 @@ "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 1, - "Structural Space Indentations": 3, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -798583,11 +798222,11 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 1, + "Core Var Decl": 50, "Design Camel Case": 0, - "Design Snake Case": 1, + "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 0, + "Design Upper Case": 50, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, @@ -798615,57 +798254,72 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 0, - "Direct Downstream (Dependency Blast Radius)": 1, + "Direct Upstream (Fragility)": 13, + "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [] + "9. Extracted Dependencies": [ + "&CBSAHLQ..ADATA(&MEMBER)", + "&CBSAHLQ..COBOL(&MEMBER)", + "&CBSAHLQ..DEBUG(&MEMBER)", + "&CBSAHLQ..DSECT", + "&CBSAHLQ..LKED(&MEMBER)", + "&CBSAHLQ..LOADLIB", + "&CICSHLQ..SDFHCOB", + "&CICSHLQ..SDFHLOAD", + "&CICSHLQ..SDFHSAMP", + "&COBOLHLQ..SIGYCOMP", + "&DB2HLQ..SDSNLOAD", + "&LEHLQ..SCEELKED", + "&LEHLQ..SCEESAMP" + ] }, - "python/wtfpython/notebook_generator.py": { + "jcl/cics-banking-sample-application-cbsa/CICSTS56.jcl": { "1. Artifact Identity": { - "Filename": "notebook_generator.py", - "Path": "python/wtfpython/notebook_generator.py", - "Language": "Python", + "Filename": "CICSTS56.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/CICSTS56.jcl", + "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", - "Doc Umbrella": 1.0, - "Folder Dominant Lang": "python", - "Lock Tier": 1.5, - "Identity Proof": "Ecosystem Consensus Lock (75% Local Dominance)" + "Indentation Style": "Neutral / No Indentation", + "Doc Umbrella": 0.0, + "Alert": "TYPOSQUATTING THREAT: 'DSNC10/SDSNLOD2' mimics 'DSNC10/SDSNLOAD'", + "Folder Dominant Lang": "jcl", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -4390.18, - "Y": 179.55, - "Z": 10396.82 + "X": 351.21, + "Y": 47.47, + "Z": -2729.28 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", "Repository Drift (Z-Score)": 0.0, "Repository Fingerprint": {}, - "File Archetype": "Unclassified", + "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 398, - "Coding LOC": 245, - "Documentation LOC": 89, - "Structural Magnitude": 199.8, - "Control Flow Ratio": "65.9%", + "Total LOC": 183, + "Coding LOC": 108, + "Documentation LOC": 74, + "Structural Magnitude": 18.26, + "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.89 + "Raw Cognitive Density": 0.0 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "42.85%", - "Error & Exception Exposure": "95.04%", - "Tech Debt Exposure": "25.51%", - "Testing Exposure": "80.0%", - "API Exposure": "6.52%", + "Cognitive Load Exposure": "0.0%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "86.97%", + "Testing Exposure": "2.36%", + "API Exposure": "2.66%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "100.0%", - "Commented Logic Exposure": "0.0%", + "State Flux Exposure": "0.0%", + "Commented Logic Exposure": "26.25%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", @@ -798674,115 +798328,105 @@ }, "5. Function Analysis": [ { - "Function Name": "parse_example_parts", - "Structural Impact": 57.1, - "Lines of Code (LOC)": 103, - "Control Flow Branches": 25, - "Input Parameters": 3, - "Control Flow Ratio": "92.6%", - "Start Line": 96, - "End Line": 198 - }, - { - "Function Name": "convert_to_cells", - "Structural Impact": 16.2, - "Lines of Code (LOC)": 81, - "Control Flow Branches": 6, - "Input Parameters": 2, - "Control Flow Ratio": "54.5%", - "Start Line": 228, - "End Line": 308 + "Function Name": "CICS", + "Structural Impact": 6.3, + "Lines of Code (LOC)": 98, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 43, + "End Line": 140 }, { - "Function Name": "convert_to_notebook", - "Structural Impact": 11.6, - "Lines of Code (LOC)": 32, - "Control Flow Branches": 4, - "Input Parameters": 3, - "Control Flow Ratio": "66.7%", - "Start Line": 311, - "End Line": 342 + "Function Name": "PRTDMPA", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 143, + "End Line": 151 }, { - "Function Name": "inspect_and_sanitize_code_lines", - "Structural Impact": 6.6, - "Lines of Code (LOC)": 18, - "Control Flow Branches": 3, + "Function Name": "PRTDMPB", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 0, "Input Parameters": 1, - "Control Flow Ratio": "60.0%", - "Start Line": 208, - "End Line": 225 + "Control Flow Ratio": "0.0%", + "Start Line": 154, + "End Line": 162 }, { - "Function Name": "remove_from_beginning", - "Structural Impact": 5.4, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 2, - "Input Parameters": 2, - "Control Flow Ratio": "50.0%", - "Start Line": 201, - "End Line": 205 + "Function Name": "PRTAUXT", + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 167, + "End Line": 172 }, { - "Function Name": "is_interactive_statement", - "Structural Impact": 4.5, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "40.0%", - "Start Line": 89, - "End Line": 93 + "Function Name": "PRTBUXT", + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 177, + "End Line": 182 }, { - "Function Name": "generate_code_block", - "Structural Impact": 2.5, - "Lines of Code (LOC)": 16, + "Function Name": "CICSCNTL", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, "Control Flow Branches": 0, - "Input Parameters": 2, + "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 57, - "End Line": 72 + "Start Line": 28, + "End Line": 31 }, { - "Function Name": "generate_markdown_block", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 12, + "Function Name": "DTCNTL", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, "Control Flow Branches": 0, - "Input Parameters": 1, + "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 75, - "End Line": 86 + "Start Line": 35, + "End Line": 38 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 56, - "Sequential Logic Declarations": 29, - "Function Parameters": 9, - "Function/Method Declarations": 8, + "Control Flow Branches": 0, + "Sequential Logic Declarations": 70, + "Function Parameters": 4, + "Function/Method Declarations": 7, "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 2, - "Type/Safety Bypasses": 17, + "Defensive Programming Constructs": 5, + "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 4, - "Exposed API / Public Exports": 8, - "State Mutations / Variable Reassignments": 81, - "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 8, + "I/O and Network Boundaries": 115, + "Exposed API / Public Exports": 1, + "State Mutations / Variable Reassignments": 0, + "Commented-out Code (Dead Logic)": 4, + "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 1, + "Closures and Anonymous Functions": 0, "Global State Dependencies": 0, "Decorators and Annotations": 0, - "Generic Type Abstractions": 1, + "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 3, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, - "Planned Work (TODOs)": 3, - "Acknowledged Tech Debt (FIXMEs)": 1, + "Planned Work (TODOs)": 0, + "Acknowledged Tech Debt (FIXMEs)": 0, "Specification Traceability Tags": 0, "Server-Side Rendering Contexts": 0, "Event Publishers / Emitters": 0, @@ -798792,19 +798436,19 @@ "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, - "Ad-hoc Print / Debug Statements": 1, + "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 1, + "Bitwise Operations": 0, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 1, + "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 226, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -798821,15 +798465,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 69, + "Core Var Decl": 104, "Design Camel Case": 0, - "Design Snake Case": 67, + "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 2, + "Design Upper Case": 104, "Design Short Vars": 0, - "Design Long Vars": 1, + "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 4, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -798842,7 +798486,7 @@ "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, "Non-Standard / Steganographic Imports": 0, - "Non-Standard Unicode / Homoglyphs": 0, + "Non-Standard Unicode / Homoglyphs": 1, "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, @@ -798853,92 +798497,479 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 4, + "Direct Upstream (Fragility)": 21, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 1, + "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "json", - "os", - "pprint", - "sys" + "&INDEX2..SDFHAUTH", + "&INDEX2..SDFHLOAD", + "&INDEX3..SEYUAUTH", + "&INDEX3..SEYULOAD", + "ADCD.Z25A.TCPPARMS(GBLTDATA)", + "CBSA.CICSBSA.LOADLIB", + "CEE.SCEECICS", + "CEE.SCEERUN", + "CEE.SCEERUN2", + "DFH560.CICS.EQADPFMB", + "DFH560.CICS.SDFHLINK", + "DFH560.DFHCMACD", + "DFH560.EQAIVP.LOAD", + "DFH560.SDFHLIC", + "DFH560.SYSIN(DFHPLT)", + "DSNC10.SDSNLOAD", + "DSNC10.SDSNLOD2", + "ISM330.SEQAMOD", + "SYS1.MIGLIB", + "SYS1.SIEAMIGE", + "TCPIP.SEZATCP" ] }, - "python/wtfpython/noxfile.py": { + "jcl/cics-banking-sample-application-cbsa/COMPALL.jcl": { "1. Artifact Identity": { - "Filename": "noxfile.py", - "Path": "python/wtfpython/noxfile.py", - "Language": "Python", + "Filename": "COMPALL.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/COMPALL.jcl", + "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", - "Doc Umbrella": 1.0, - "Folder Dominant Lang": "python", - "Lock Tier": 1.5, - "Identity Proof": "Ecosystem Consensus Lock (75% Local Dominance)" + "Indentation Style": "Neutral / No Indentation", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "jcl", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -3977.38, - "Y": 253.19, - "Z": 10025.61 + "X": 255.16, + "Y": 92.42, + "Z": -2312.82 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", "Repository Drift (Z-Score)": 0.0, "Repository Fingerprint": {}, - "File Archetype": "Unclassified", + "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 14, - "Coding LOC": 8, - "Documentation LOC": 0, - "Structural Magnitude": 2.66, - "Control Flow Ratio": "14.3%", + "Total LOC": 175, + "Coding LOC": 87, + "Documentation LOC": 87, + "Structural Magnitude": 47.44, + "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.02 + "Raw Cognitive Density": 0.0 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.12%", + "Cognitive Load Exposure": "0.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "62.25%", - "Testing Exposure": "2.32%", - "API Exposure": "3.53%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "2.65%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "11.92%", + "Documentation Exposure": "0.0%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "tests", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, + "Function Name": "XFRFUN", + "Structural Impact": 1.4, + "Lines of Code (LOC)": 7, "Control Flow Branches": 0, - "Input Parameters": 1, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 97, + "End Line": 103 + }, + { + "Function Name": "ABNDPROC", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, "Control Flow Ratio": "0.0%", "Start Line": 12, - "End Line": 13 + "End Line": 15 + }, + { + "Function Name": "BANKDATA", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 16, + "End Line": 19 + }, + { + "Function Name": "BNK1MAI", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 20, + "End Line": 24 + }, + { + "Function Name": "BNKMENU", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 25, + "End Line": 28 + }, + { + "Function Name": "CRDTAGY1", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 29, + "End Line": 32 + }, + { + "Function Name": "CRDTAGY2", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 33, + "End Line": 36 + }, + { + "Function Name": "CRDTAGY3", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 37, + "End Line": 40 + }, + { + "Function Name": "CRDTAGY4", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 41, + "End Line": 44 + }, + { + "Function Name": "CRDTAGY5", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 45, + "End Line": 48 + }, + { + "Function Name": "CREACC", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 49, + "End Line": 52 + }, + { + "Function Name": "CRECUST", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 53, + "End Line": 56 + }, + { + "Function Name": "DBCRFUN", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 57, + "End Line": 60 + }, + { + "Function Name": "DELACC", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 61, + "End Line": 64 + }, + { + "Function Name": "DELCUS", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 65, + "End Line": 68 + }, + { + "Function Name": "GETCOMPY", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 69, + "End Line": 72 + }, + { + "Function Name": "GETSCODE", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 73, + "End Line": 76 + }, + { + "Function Name": "INQACC", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 77, + "End Line": 80 + }, + { + "Function Name": "INQACCCU", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 81, + "End Line": 84 + }, + { + "Function Name": "INQCUST", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 85, + "End Line": 88 + }, + { + "Function Name": "UPDACC", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 89, + "End Line": 92 + }, + { + "Function Name": "UPDCUST", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 93, + "End Line": 96 + }, + { + "Function Name": "BNK1ACC", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 104, + "End Line": 108 + }, + { + "Function Name": "BNK1CAM", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 109, + "End Line": 113 + }, + { + "Function Name": "BNK1CAC", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 114, + "End Line": 117 + }, + { + "Function Name": "BNK1CCA", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 118, + "End Line": 121 + }, + { + "Function Name": "BNK1CCM", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 122, + "End Line": 126 + }, + { + "Function Name": "BNK1CCS", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 127, + "End Line": 130 + }, + { + "Function Name": "BNK1CDM", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 131, + "End Line": 135 + }, + { + "Function Name": "BNK1CRA", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 136, + "End Line": 139 + }, + { + "Function Name": "BNK1DAM", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 140, + "End Line": 144 + }, + { + "Function Name": "BNK1DAC", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 145, + "End Line": 148 + }, + { + "Function Name": "BNK1DCM", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 149, + "End Line": 153 + }, + { + "Function Name": "BNK1DCS", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 154, + "End Line": 158 + }, + { + "Function Name": "BNK1TFM", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 159, + "End Line": 163 + }, + { + "Function Name": "BNK1TFN", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 164, + "End Line": 167 + }, + { + "Function Name": "BNK1UAM", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 168, + "End Line": 172 + }, + { + "Function Name": "BNK1UAC", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 173, + "End Line": 173 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 1, - "Sequential Logic Declarations": 6, - "Function Parameters": 1, - "Function/Method Declarations": 1, - "Class/Entity Declarations": 0, + "Control Flow Branches": 0, + "Sequential Logic Declarations": 38, + "Function Parameters": 0, + "Function/Method Declarations": 38, + "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 1, + "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -798947,12 +798978,12 @@ "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, "Global State Dependencies": 0, - "Decorators and Annotations": 1, - "Generic Type Abstractions": 1, + "Decorators and Annotations": 0, + "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 3, + "Module Dependencies (Imports)": 38, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -798964,7 +798995,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 1, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -798977,7 +799008,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 2, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -798993,16 +799024,16 @@ "Traditional Machine Learning (Stats/Trees)": 0, "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, - "Vectorized Math & Tensor Operations": 1, - "Core Var Decl": 2, + "Vectorized Math & Tensor Operations": 0, + "Core Var Decl": 57, "Design Camel Case": 0, - "Design Snake Case": 1, + "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 0, - "Design Short Vars": 1, + "Design Upper Case": 57, + "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -799026,45 +799057,20 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 3, + "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, + "Total Upstream (Absolute Fragility)": 1, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "nox", - "nox.sessions", - "typing" + "CBSA.CICSBSA.BUILDJCL", + "DEFAULT" ] - } - } - }, - "jcl/cics-banking-sample-application-cbsa": { - "Directory Group Magnitude": 312.88, - "File Count": 99, - "Ecosystem Fingerprint (Archetypes)": { - "Unclassified": "100.0%" - }, - "Average Risk Exposures": { - "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "45.62%", - "Tech Debt Exposure": "43.22%", - "Testing Exposure": "2.33%", - "API Exposure": "0.98%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "1.17%", - "Commented Logic Exposure": "3.07%", - "Specification Exposure": "98.99%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "3.87%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "Files": { - "jcl/cics-banking-sample-application-cbsa/ABNDPROC.jcl": { + }, + "jcl/cics-banking-sample-application-cbsa/CRDTAGY1.jcl": { "1. Artifact Identity": { - "Filename": "ABNDPROC.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/ABNDPROC.jcl", + "Filename": "CRDTAGY1.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/CRDTAGY1.jcl", "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Neutral / No Indentation", @@ -799074,9 +799080,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -1061.47, - "Y": 112.96, - "Z": -2906.46 + "X": 1242.03, + "Y": 7.88, + "Z": -1185.63 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -799232,10 +799238,10 @@ "DEFAULT" ] }, - "jcl/cics-banking-sample-application-cbsa/ACCLOAD.jcl": { + "jcl/cics-banking-sample-application-cbsa/CRDTAGY2.jcl": { "1. Artifact Identity": { - "Filename": "ACCLOAD.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/ACCLOAD.jcl", + "Filename": "CRDTAGY2.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/CRDTAGY2.jcl", "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Neutral / No Indentation", @@ -799245,9 +799251,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 1664.29, - "Y": 19.7, - "Z": -2898.18 + "X": -1294.76, + "Y": 114.21, + "Z": -2311.29 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -799403,10 +799409,10 @@ "DEFAULT" ] }, - "jcl/cics-banking-sample-application-cbsa/ACCOFFL.jcl": { + "jcl/cics-banking-sample-application-cbsa/CRDTAGY3.jcl": { "1. Artifact Identity": { - "Filename": "ACCOFFL.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/ACCOFFL.jcl", + "Filename": "CRDTAGY3.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/CRDTAGY3.jcl", "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Neutral / No Indentation", @@ -799416,9 +799422,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -352.52, - "Y": 110.7, - "Z": -1030.34 + "X": 1596.28, + "Y": 35.44, + "Z": -3066.76 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -799574,203 +799580,10 @@ "DEFAULT" ] }, - "jcl/cics-banking-sample-application-cbsa/BANKDATA.jcl": { - "1. Artifact Identity": { - "Filename": "BANKDATA.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/BANKDATA.jcl", - "Language": "Jcl", - "Architect": "Unknown Architect", - "Indentation Style": "Spaces", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" - }, - "2. Topological Coordinates": { - "X": 188.46, - "Y": 52.61, - "Z": -1700.58 - }, - "3. Architectural Profile": { - "Repository Archetype": "Unclassified", - "Repository Drift (Z-Score)": 0.0, - "Repository Fingerprint": {}, - "File Archetype": null, - "File Drift (Z-Score)": 0.0, - "File Fingerprint": {}, - "Total LOC": 115, - "Coding LOC": 64, - "Documentation LOC": 50, - "Structural Magnitude": 7.48, - "Control Flow Ratio": "0.0%", - "Popularity Rank": 0, - "Raw Churn Frequency": 0.0, - "Authorship Centralization": 0.0, - "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.0 - }, - "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "89.5%", - "Tech Debt Exposure": "96.64%", - "Testing Exposure": "2.39%", - "API Exposure": "0.0%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "5. Function Analysis": [ - { - "Function Name": "BANKDAT1", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 23, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 56, - "End Line": 78 - }, - { - "Function Name": "BANKDAT0", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 20, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 36, - "End Line": 55 - }, - { - "Function Name": "BANKDAT5", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 21, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 94, - "End Line": 114 - } - ], - "6. Contextual Mitigations & Amplifications": "None Detected", - "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 17, - "Function Parameters": 0, - "Function/Method Declarations": 3, - "Class/Entity Declarations": 1, - "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 3, - "I/O and Network Boundaries": 25, - "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 0, - "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 0, - "Unit Test Assertions": 0, - "Asynchronous/Concurrent Execution": 0, - "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, - "Decorators and Annotations": 0, - "Generic Type Abstractions": 0, - "Collection Iterators / Comprehensions": 0, - "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, - "Authorship Metadata": 0, - "Planned Work (TODOs)": 0, - "Acknowledged Tech Debt (FIXMEs)": 0, - "Specification Traceability Tags": 0, - "Server-Side Rendering Contexts": 0, - "Event Publishers / Emitters": 0, - "Dependency Injection Constructs": 0, - "Preprocessor Macros": 0, - "Pointer Arithmetic & Addressing": 0, - "Manual Memory Allocation": 0, - "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 2, - "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 0, - "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 0, - "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 0, - "Event Listeners & Subscribers": 0, - "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, - "Structural Space Indentations": 32, - "Hardware Bridge": 0, - "Cryptography": 0, - "Auth Middleware": 0, - "Ipc Rpc Bridges": 0, - "Feature Flags": 0, - "Serialization Parsing": 0, - "Regex Execution": 0, - "Time Date Logic": 0, - "Cloud LLM API Integrations": 0, - "AI Orchestration Frameworks": 0, - "Vector Databases (RAG)": 0, - "Local Inference & Tensor Math": 0, - "Traditional Machine Learning (Stats/Trees)": 0, - "Deep Learning & Neural Networks": 0, - "Lazy Evaluation & Generators (O(1) Memory)": 0, - "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 20, - "Design Camel Case": 0, - "Design Snake Case": 0, - "Design Pascal Case": 0, - "Design Upper Case": 20, - "Design Short Vars": 0, - "Design Long Vars": 0, - "Duplicate Logic": 0, - "Orphaned Logic": 3, - "Instructional Code Examples": 0, - "Architectural Diagrams (Mermaid/PlantUML)": 0, - "Structured Literature Headers": 0, - "Hyperlinked Literature References": 0, - "High-Entropy / Obfuscated Logic": 0, - "Safety & Constraint Bypasses": 0, - "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 2, - "Global Environment Mutation": 0, - "Commented-Out Executable Logic": 0, - "Low-Level Bitwise / Cryptographic Math": 0, - "Non-Standard / Steganographic Imports": 0, - "Non-Standard Unicode / Homoglyphs": 0, - "Embedded Credentials & Keys": 0, - "Sec Extension Mismatch": 0, - "Sec Entropy": 0, - "Sec Tainted Injection": 3, - "Prompt Injection": 0, - "Agentic Rce": 0, - "Invisible Unicode Payload Smuggling": 0, - "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 - }, - "8. Dependency Network": { - "Direct Upstream (Fragility)": 4, - "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 - }, - "9. Extracted Dependencies": [ - "@BANK_DBRMLIB@", - "@BANK_LOADLIB@", - "@BANK_PREFIX@.CUSTOMER", - "@DB2_HLQ@.SDSNLOAD" - ] - }, - "jcl/cics-banking-sample-application-cbsa/BATCH.jcl": { + "jcl/cics-banking-sample-application-cbsa/CRDTAGY4.jcl": { "1. Artifact Identity": { - "Filename": "BATCH.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/BATCH.jcl", + "Filename": "CRDTAGY4.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/CRDTAGY4.jcl", "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Neutral / No Indentation", @@ -799780,9 +799593,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -193.46, - "Y": 52.39, - "Z": -2438.15 + "X": -57.94, + "Y": 44.26, + "Z": -604.47 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -799791,10 +799604,10 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 57, - "Coding LOC": 52, + "Total LOC": 8, + "Coding LOC": 3, "Documentation LOC": 4, - "Structural Magnitude": 8.64, + "Structural Magnitude": 1.16, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -799804,9 +799617,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "73.11%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.39%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "73.11%", + "Testing Exposure": "2.31%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -799819,37 +799632,27 @@ }, "5. Function Analysis": [ { - "Function Name": "COBOL", - "Structural Impact": 4.4, - "Lines of Code (LOC)": 36, - "Control Flow Branches": 0, - "Input Parameters": 6, - "Control Flow Ratio": "0.0%", - "Start Line": 5, - "End Line": 40 - }, - { - "Function Name": "LKED", - "Structural Impact": 3.2, - "Lines of Code (LOC)": 15, + "Function Name": "Unknown_Block", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, - "Input Parameters": 5, + "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 42, - "End Line": 56 + "Start Line": 7, + "End Line": 7 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 42, - "Function Parameters": 3, - "Function/Method Declarations": 2, + "Sequential Logic Declarations": 1, + "Function Parameters": 0, + "Function/Method Declarations": 1, "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 1, + "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 43, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -799864,7 +799667,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -799906,15 +799709,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 50, + "Core Var Decl": 2, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 50, + "Design Upper Case": 2, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -799931,38 +799734,27 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 2, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 13, + "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, + "Total Upstream (Absolute Fragility)": 1, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "&CBSAHLQ..ADATA(&MEMBER)", - "&CBSAHLQ..COBOL(&MEMBER)", - "&CBSAHLQ..DEBUG(&MEMBER)", - "&CBSAHLQ..DSECT", - "&CBSAHLQ..LKED(&MEMBER)", - "&CBSAHLQ..LOADLIB", - "&CICSHLQ..SDFHCOB", - "&CICSHLQ..SDFHLOAD", - "&CICSHLQ..SDFHSAMP", - "&COBOLHLQ..SIGYCOMP", - "&DB2HLQ..SDSNLOAD", - "&LEHLQ..SCEELKED", - "&LEHLQ..SCEESAMP" + "CBSA.CICSBSA.BUILDJCL", + "DEFAULT" ] }, - "jcl/cics-banking-sample-application-cbsa/BNK1ACC.jcl": { + "jcl/cics-banking-sample-application-cbsa/CRDTAGY5.jcl": { "1. Artifact Identity": { - "Filename": "BNK1ACC.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/BNK1ACC.jcl", + "Filename": "CRDTAGY5.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/CRDTAGY5.jcl", "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Neutral / No Indentation", @@ -799972,9 +799764,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 1283.4, - "Y": 71.83, - "Z": -1249.06 + "X": -547.15, + "Y": 80.95, + "Z": -3772.75 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -799983,12 +799775,12 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 9, - "Coding LOC": 4, + "Total LOC": 8, + "Coding LOC": 3, "Documentation LOC": 4, - "Structural Magnitude": 1.18, + "Structural Magnitude": 1.16, "Control Flow Ratio": "0.0%", - "Popularity Rank": 1, + "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, @@ -799997,7 +799789,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", + "Tech Debt Exposure": "73.11%", "Testing Exposure": "2.31%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -800011,14 +799803,14 @@ }, "5. Function Analysis": [ { - "Function Name": "BNK1ACC", + "Function Name": "Unknown_Block", "Structural Impact": 1.1, - "Lines of Code (LOC)": 2, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", "Start Line": 7, - "End Line": 8 + "End Line": 7 } ], "6. Contextual Mitigations & Amplifications": "None Detected", @@ -800088,15 +799880,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 4, + "Core Var Decl": 2, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 4, + "Design Upper Case": 2, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -800121,19 +799913,19 @@ }, "8. Dependency Network": { "Direct Upstream (Fragility)": 2, - "Direct Downstream (Dependency Blast Radius)": 1, + "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 1, - "Total Downstream (Absolute Dependency Blast Radius)": 1 + "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ "CBSA.CICSBSA.BUILDJCL", "DEFAULT" ] }, - "jcl/cics-banking-sample-application-cbsa/BNK1CAC.jcl": { + "jcl/cics-banking-sample-application-cbsa/CREACC.jcl": { "1. Artifact Identity": { - "Filename": "BNK1CAC.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/BNK1CAC.jcl", + "Filename": "CREACC.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/CREACC.jcl", "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Neutral / No Indentation", @@ -800143,9 +799935,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -177.42, - "Y": 87.12, - "Z": -3615.66 + "X": -671.2, + "Y": 93.84, + "Z": -1857.31 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -800157,7 +799949,7 @@ "Total LOC": 8, "Coding LOC": 3, "Documentation LOC": 4, - "Structural Magnitude": 1.16, + "Structural Magnitude": 2.16, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -800168,16 +799960,16 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "73.11%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.31%", - "API Exposure": "0.0%", + "API Exposure": "3.53%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", + "Documentation Exposure": "16.56%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -800203,7 +799995,7 @@ "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 0, + "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -800267,7 +800059,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -800294,17 +800086,17 @@ "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 1, - "Total Downstream (Absolute Dependency Blast Radius)": 0 + "Total Downstream (Absolute Dependency Blast Radius)": 1 }, "9. Extracted Dependencies": [ "CBSA.CICSBSA.BUILDJCL", "DEFAULT" ] }, - "jcl/cics-banking-sample-application-cbsa/BNK1CAM.jcl": { + "jcl/cics-banking-sample-application-cbsa/CRECUST.jcl": { "1. Artifact Identity": { - "Filename": "BNK1CAM.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/BNK1CAM.jcl", + "Filename": "CRECUST.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/CRECUST.jcl", "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Neutral / No Indentation", @@ -800314,9 +800106,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -1156.32, - "Y": 103.72, - "Z": -2145.7 + "X": 784.49, + "Y": 102.61, + "Z": -2919.13 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -800325,12 +800117,12 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 9, - "Coding LOC": 4, + "Total LOC": 8, + "Coding LOC": 3, "Documentation LOC": 4, - "Structural Magnitude": 1.18, + "Structural Magnitude": 2.16, "Control Flow Ratio": "0.0%", - "Popularity Rank": 1, + "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, @@ -800341,26 +800133,26 @@ "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.31%", - "API Exposure": "0.0%", + "API Exposure": "3.53%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", + "Documentation Exposure": "16.56%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "BNK1CAM", + "Function Name": "Unknown_Block", "Structural Impact": 1.1, - "Lines of Code (LOC)": 2, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", "Start Line": 7, - "End Line": 8 + "End Line": 7 } ], "6. Contextual Mitigations & Amplifications": "None Detected", @@ -800374,7 +800166,7 @@ "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 0, + "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -800430,11 +800222,11 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 4, + "Core Var Decl": 2, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 4, + "Design Upper Case": 2, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, @@ -800463,7 +800255,7 @@ }, "8. Dependency Network": { "Direct Upstream (Fragility)": 2, - "Direct Downstream (Dependency Blast Radius)": 1, + "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 1, "Total Downstream (Absolute Dependency Blast Radius)": 1 }, @@ -800472,22 +800264,22 @@ "DEFAULT" ] }, - "jcl/cics-banking-sample-application-cbsa/BNK1CCA.jcl": { + "jcl/cics-banking-sample-application-cbsa/CREDB00.jcl": { "1. Artifact Identity": { - "Filename": "BNK1CCA.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/BNK1CCA.jcl", + "Filename": "CREDB00.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/CREDB00.jcl", "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, "Folder Dominant Lang": "jcl", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 1574.74, - "Y": 48.42, - "Z": -1297.6 + "X": 1150.86, + "Y": 87.81, + "Z": -2635.12 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -800496,10 +800288,10 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 8, - "Coding LOC": 3, + "Total LOC": 24, + "Coding LOC": 19, "Documentation LOC": 4, - "Structural Magnitude": 1.16, + "Structural Magnitude": 2.18, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -800509,9 +800301,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "0.0%", + "Error & Exception Exposure": "76.85%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.31%", + "Testing Exposure": "2.33%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -800524,27 +800316,27 @@ }, "5. Function Analysis": [ { - "Function Name": "Unknown_Block", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, + "Function Name": "GRANT", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 15, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 7, - "End Line": 7 + "Start Line": 9, + "End Line": 23 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 1, + "Sequential Logic Declarations": 6, "Function Parameters": 0, "Function/Method Declarations": 1, - "Class/Entity Declarations": 0, + "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, + "High-Risk Execution Commands": 1, + "I/O and Network Boundaries": 7, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -800553,13 +800345,13 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -800571,7 +800363,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 2, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -800584,7 +800376,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 6, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -800601,11 +800393,11 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 2, + "Core Var Decl": 8, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 2, + "Design Upper Case": 8, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, @@ -800617,7 +800409,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, + "Dynamic Code Execution (Eval/Exec)": 2, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -800626,7 +800418,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 0, + "Sec Tainted Injection": 1, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -800635,18 +800427,18 @@ "8. Dependency Network": { "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 1, + "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "CBSA.CICSBSA.BUILDJCL", - "DEFAULT" + "DSNC10.PROCLIB", + "DSNC10.SDSNLOAD" ] }, - "jcl/cics-banking-sample-application-cbsa/BNK1CCM.jcl": { + "jcl/cics-banking-sample-application-cbsa/CREDB2L.jcl": { "1. Artifact Identity": { - "Filename": "BNK1CCM.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/BNK1CCM.jcl", + "Filename": "CREDB2L.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/CREDB2L.jcl", "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Neutral / No Indentation", @@ -800656,9 +800448,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 1381.15, - "Y": 71.87, - "Z": -3154.8 + "X": -246.85, + "Y": 110.85, + "Z": -2016.74 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -800667,10 +800459,10 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 9, - "Coding LOC": 4, - "Documentation LOC": 4, - "Structural Magnitude": 1.18, + "Total LOC": 27, + "Coding LOC": 11, + "Documentation LOC": 15, + "Structural Magnitude": 4.72, "Control Flow Ratio": "0.0%", "Popularity Rank": 1, "Raw Churn Frequency": 0.0, @@ -800682,43 +800474,53 @@ "Cognitive Load Exposure": "0.0%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.31%", - "API Exposure": "0.0%", + "Testing Exposure": "2.33%", + "API Exposure": "5.59%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "0.0%", + "Commented Logic Exposure": "23.15%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", + "Documentation Exposure": "17.3%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "BNK1CCM", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 2, + "Function Name": "STEP10", + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 7, - "End Line": 8 + "Start Line": 12, + "End Line": 17 + }, + { + "Function Name": "STEP20", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 21, + "End Line": 25 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 1, + "Sequential Logic Declarations": 5, "Function Parameters": 0, - "Function/Method Declarations": 1, + "Function/Method Declarations": 2, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 0, + "I/O and Network Boundaries": 5, + "Exposed API / Public Exports": 2, "State Mutations / Variable Reassignments": 0, - "Commented-out Code (Dead Logic)": 0, + "Commented-out Code (Dead Logic)": 1, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, @@ -800730,7 +800532,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -800772,11 +800574,11 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 4, + "Core Var Decl": 9, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 4, + "Design Upper Case": 9, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, @@ -800806,30 +800608,30 @@ "8. Dependency Network": { "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 1, - "Total Upstream (Absolute Fragility)": 1, + "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 1 }, "9. Extracted Dependencies": [ - "CBSA.CICSBSA.BUILDJCL", - "DEFAULT" + "&HLQ..DB2.JCL.INSTALL", + "&HLQ..DB2.JCL.INSTALL(EMPTY)" ] }, - "jcl/cics-banking-sample-application-cbsa/BNK1CCS.jcl": { + "jcl/cics-banking-sample-application-cbsa/CREI101.jcl": { "1. Artifact Identity": { - "Filename": "BNK1CCS.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/BNK1CCS.jcl", + "Filename": "CREI101.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/CREI101.jcl", "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, "Folder Dominant Lang": "jcl", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -1186.93, - "Y": 91.82, - "Z": -1930.31 + "X": -60.63, + "Y": 80.96, + "Z": -1557.9 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -800838,10 +800640,10 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 8, - "Coding LOC": 3, + "Total LOC": 24, + "Coding LOC": 19, "Documentation LOC": 4, - "Structural Magnitude": 1.16, + "Structural Magnitude": 2.18, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -800851,9 +800653,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "0.0%", + "Error & Exception Exposure": "76.85%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.31%", + "Testing Exposure": "2.33%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -800866,27 +800668,27 @@ }, "5. Function Analysis": [ { - "Function Name": "Unknown_Block", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, + "Function Name": "GRANT", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 15, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 7, - "End Line": 7 + "Start Line": 9, + "End Line": 23 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 1, + "Sequential Logic Declarations": 6, "Function Parameters": 0, "Function/Method Declarations": 1, - "Class/Entity Declarations": 0, + "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, + "High-Risk Execution Commands": 1, + "I/O and Network Boundaries": 7, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -800895,13 +800697,13 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -800913,7 +800715,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 2, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -800926,7 +800728,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 6, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -800943,11 +800745,11 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 2, + "Core Var Decl": 8, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 2, + "Design Upper Case": 8, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, @@ -800959,7 +800761,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, + "Dynamic Code Execution (Eval/Exec)": 2, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -800968,7 +800770,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 0, + "Sec Tainted Injection": 1, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -800977,30 +800779,30 @@ "8. Dependency Network": { "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 1, + "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "CBSA.CICSBSA.BUILDJCL", - "DEFAULT" + "DSNC10.PROCLIB", + "DSNC10.SDSNLOAD" ] }, - "jcl/cics-banking-sample-application-cbsa/BNK1CDM.jcl": { + "jcl/cics-banking-sample-application-cbsa/CREI201.jcl": { "1. Artifact Identity": { - "Filename": "BNK1CDM.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/BNK1CDM.jcl", + "Filename": "CREI201.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/CREI201.jcl", "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, "Folder Dominant Lang": "jcl", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 123.04, - "Y": 67.75, - "Z": -739.12 + "X": -42.32, + "Y": 55.22, + "Z": -3282.06 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -801009,12 +800811,12 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 9, - "Coding LOC": 4, + "Total LOC": 24, + "Coding LOC": 19, "Documentation LOC": 4, - "Structural Magnitude": 1.18, + "Structural Magnitude": 2.18, "Control Flow Ratio": "0.0%", - "Popularity Rank": 1, + "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, @@ -801022,9 +800824,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.31%", + "Error & Exception Exposure": "76.85%", + "Tech Debt Exposure": "73.11%", + "Testing Exposure": "2.33%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -801037,27 +800839,27 @@ }, "5. Function Analysis": [ { - "Function Name": "BNK1CDM", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 2, + "Function Name": "GRANT", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 15, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 7, - "End Line": 8 + "Start Line": 9, + "End Line": 23 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 1, + "Sequential Logic Declarations": 6, "Function Parameters": 0, "Function/Method Declarations": 1, - "Class/Entity Declarations": 0, + "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, + "High-Risk Execution Commands": 1, + "I/O and Network Boundaries": 7, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -801066,13 +800868,13 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -801084,7 +800886,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 2, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -801097,7 +800899,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 6, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -801114,15 +800916,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 4, + "Core Var Decl": 8, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 4, + "Design Upper Case": 8, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -801130,7 +800932,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, + "Dynamic Code Execution (Eval/Exec)": 2, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -801139,7 +800941,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 0, + "Sec Tainted Injection": 1, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -801147,31 +800949,31 @@ }, "8. Dependency Network": { "Direct Upstream (Fragility)": 2, - "Direct Downstream (Dependency Blast Radius)": 1, - "Total Upstream (Absolute Fragility)": 1, - "Total Downstream (Absolute Dependency Blast Radius)": 1 + "Direct Downstream (Dependency Blast Radius)": 0, + "Total Upstream (Absolute Fragility)": 0, + "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "CBSA.CICSBSA.BUILDJCL", - "DEFAULT" + "DSNC10.PROCLIB", + "DSNC10.SDSNLOAD" ] }, - "jcl/cics-banking-sample-application-cbsa/BNK1CRA.jcl": { + "jcl/cics-banking-sample-application-cbsa/CREI301.jcl": { "1. Artifact Identity": { - "Filename": "BNK1CRA.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/BNK1CRA.jcl", + "Filename": "CREI301.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/CREI301.jcl", "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, "Folder Dominant Lang": "jcl", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 1195.48, - "Y": 62.83, - "Z": -3591.7 + "X": 1169.24, + "Y": 46.66, + "Z": -1983.58 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -801180,10 +800982,10 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 8, - "Coding LOC": 3, + "Total LOC": 24, + "Coding LOC": 19, "Documentation LOC": 4, - "Structural Magnitude": 1.16, + "Structural Magnitude": 2.18, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -801193,9 +800995,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "0.0%", + "Error & Exception Exposure": "76.85%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.31%", + "Testing Exposure": "2.33%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -801208,27 +801010,27 @@ }, "5. Function Analysis": [ { - "Function Name": "Unknown_Block", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, + "Function Name": "GRANT", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 15, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 7, - "End Line": 7 + "Start Line": 9, + "End Line": 23 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 1, + "Sequential Logic Declarations": 6, "Function Parameters": 0, "Function/Method Declarations": 1, - "Class/Entity Declarations": 0, + "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, + "High-Risk Execution Commands": 1, + "I/O and Network Boundaries": 7, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -801237,13 +801039,13 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -801255,7 +801057,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 2, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -801268,7 +801070,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 4, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -801285,11 +801087,11 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 2, + "Core Var Decl": 8, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 2, + "Design Upper Case": 8, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, @@ -801301,7 +801103,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, + "Dynamic Code Execution (Eval/Exec)": 2, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -801310,7 +801112,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 0, + "Sec Tainted Injection": 1, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -801319,18 +801121,18 @@ "8. Dependency Network": { "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 1, + "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "CBSA.CICSBSA.BUILDJCL", - "DEFAULT" + "DSNC10.PROCLIB", + "DSNC10.SDSNLOAD" ] }, - "jcl/cics-banking-sample-application-cbsa/BNK1DAC.jcl": { + "jcl/cics-banking-sample-application-cbsa/CREL001.jcl": { "1. Artifact Identity": { - "Filename": "BNK1DAC.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/BNK1DAC.jcl", + "Filename": "CREL001.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/CREL001.jcl", "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Neutral / No Indentation", @@ -801340,9 +801142,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 499.16, - "Y": 90.74, - "Z": -647.8 + "X": 588.86, + "Y": 100.45, + "Z": -2673.81 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -801351,12 +801153,12 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 8, - "Coding LOC": 3, - "Documentation LOC": 4, - "Structural Magnitude": 1.16, + "Total LOC": 26, + "Coding LOC": 11, + "Documentation LOC": 14, + "Structural Magnitude": 4.72, "Control Flow Ratio": "0.0%", - "Popularity Rank": 0, + "Popularity Rank": 1, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, @@ -801365,44 +801167,54 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.31%", - "API Exposure": "0.0%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "2.33%", + "API Exposure": "5.59%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "0.0%", + "Commented Logic Exposure": "23.15%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", + "Documentation Exposure": "17.99%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "Unknown_Block", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, + "Function Name": "STEP10", + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 7, - "End Line": 7 + "Start Line": 11, + "End Line": 16 + }, + { + "Function Name": "STEP20", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 20, + "End Line": 24 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 1, + "Sequential Logic Declarations": 5, "Function Parameters": 0, - "Function/Method Declarations": 1, + "Function/Method Declarations": 2, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 0, + "I/O and Network Boundaries": 5, + "Exposed API / Public Exports": 2, "State Mutations / Variable Reassignments": 0, - "Commented-out Code (Dead Logic)": 0, + "Commented-out Code (Dead Logic)": 1, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, @@ -801414,7 +801226,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -801456,15 +801268,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 2, + "Core Var Decl": 9, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 2, + "Design Upper Case": 9, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -801489,19 +801301,19 @@ }, "8. Dependency Network": { "Direct Upstream (Fragility)": 2, - "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 1, - "Total Downstream (Absolute Dependency Blast Radius)": 0 + "Direct Downstream (Dependency Blast Radius)": 1, + "Total Upstream (Absolute Fragility)": 0, + "Total Downstream (Absolute Dependency Blast Radius)": 1 }, "9. Extracted Dependencies": [ - "CBSA.CICSBSA.BUILDJCL", - "DEFAULT" + "&HLQ..CICSBSA.BUILDJCL", + "&HLQ..CICSBSA.BUILDJCL(EMPTY)" ] }, - "jcl/cics-banking-sample-application-cbsa/BNK1DAM.jcl": { + "jcl/cics-banking-sample-application-cbsa/CREL002.jcl": { "1. Artifact Identity": { - "Filename": "BNK1DAM.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/BNK1DAM.jcl", + "Filename": "CREL002.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/CREL002.jcl", "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Neutral / No Indentation", @@ -801511,9 +801323,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -603.73, - "Y": 128.09, - "Z": -3321.24 + "X": -216.03, + "Y": 80.65, + "Z": -2972.83 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -801522,10 +801334,10 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 9, - "Coding LOC": 4, - "Documentation LOC": 4, - "Structural Magnitude": 1.18, + "Total LOC": 17, + "Coding LOC": 6, + "Documentation LOC": 10, + "Structural Magnitude": 2.42, "Control Flow Ratio": "0.0%", "Popularity Rank": 1, "Raw Churn Frequency": 0.0, @@ -801538,26 +801350,26 @@ "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.31%", - "API Exposure": "0.0%", + "API Exposure": "3.53%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "0.0%", + "Commented Logic Exposure": "23.15%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", + "Documentation Exposure": "13.01%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "BNK1DAM", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 2, + "Function Name": "STEP10", + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 7, - "End Line": 8 + "Start Line": 11, + "End Line": 16 } ], "6. Contextual Mitigations & Amplifications": "None Detected", @@ -801570,10 +801382,10 @@ "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 0, + "I/O and Network Boundaries": 1, + "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 0, - "Commented-out Code (Dead Logic)": 0, + "Commented-out Code (Dead Logic)": 1, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, @@ -801585,7 +801397,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -801627,11 +801439,11 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 4, + "Core Var Decl": 6, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 4, + "Design Upper Case": 6, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, @@ -801659,20 +801471,19 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, + "Direct Upstream (Fragility)": 1, "Direct Downstream (Dependency Blast Radius)": 1, - "Total Upstream (Absolute Fragility)": 1, + "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 1 }, "9. Extracted Dependencies": [ - "CBSA.CICSBSA.BUILDJCL", - "DEFAULT" + "&HLQ..CICSBSA.ADATA" ] }, - "jcl/cics-banking-sample-application-cbsa/BNK1DCM.jcl": { + "jcl/cics-banking-sample-application-cbsa/CREL003.jcl": { "1. Artifact Identity": { - "Filename": "BNK1DCM.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/BNK1DCM.jcl", + "Filename": "CREL003.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/CREL003.jcl", "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Neutral / No Indentation", @@ -801682,9 +801493,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 1751.61, - "Y": 82.5, - "Z": -1808.93 + "X": 1092.93, + "Y": 56.25, + "Z": -2114.71 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -801693,10 +801504,10 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 9, - "Coding LOC": 4, - "Documentation LOC": 4, - "Structural Magnitude": 1.18, + "Total LOC": 17, + "Coding LOC": 6, + "Documentation LOC": 10, + "Structural Magnitude": 2.42, "Control Flow Ratio": "0.0%", "Popularity Rank": 1, "Raw Churn Frequency": 0.0, @@ -801709,26 +801520,26 @@ "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.31%", - "API Exposure": "0.0%", + "API Exposure": "3.53%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "0.0%", + "Commented Logic Exposure": "23.15%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", + "Documentation Exposure": "13.01%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "BNK1DCM", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 2, + "Function Name": "STEP10", + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 7, - "End Line": 8 + "Start Line": 11, + "End Line": 16 } ], "6. Contextual Mitigations & Amplifications": "None Detected", @@ -801741,10 +801552,10 @@ "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 0, + "I/O and Network Boundaries": 1, + "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 0, - "Commented-out Code (Dead Logic)": 0, + "Commented-out Code (Dead Logic)": 1, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, @@ -801756,7 +801567,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -801798,11 +801609,11 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 4, + "Core Var Decl": 6, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 4, + "Design Upper Case": 6, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, @@ -801830,20 +801641,19 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, + "Direct Upstream (Fragility)": 1, "Direct Downstream (Dependency Blast Radius)": 1, - "Total Upstream (Absolute Fragility)": 1, + "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 1 }, "9. Extracted Dependencies": [ - "CBSA.CICSBSA.BUILDJCL", - "DEFAULT" + "&HLQ..CICSBSA.LOADLIB" ] }, - "jcl/cics-banking-sample-application-cbsa/BNK1DCS.jcl": { + "jcl/cics-banking-sample-application-cbsa/CREL004.jcl": { "1. Artifact Identity": { - "Filename": "BNK1DCS.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/BNK1DCS.jcl", + "Filename": "CREL004.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/CREL004.jcl", "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Neutral / No Indentation", @@ -801853,9 +801663,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -919.55, - "Y": 68.16, - "Z": -3091.96 + "X": -451.35, + "Y": 112.62, + "Z": -1617.25 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -801864,12 +801674,12 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 8, - "Coding LOC": 3, - "Documentation LOC": 4, - "Structural Magnitude": 1.16, + "Total LOC": 17, + "Coding LOC": 6, + "Documentation LOC": 10, + "Structural Magnitude": 2.42, "Control Flow Ratio": "0.0%", - "Popularity Rank": 0, + "Popularity Rank": 1, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, @@ -801878,28 +801688,28 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "73.11%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.31%", - "API Exposure": "0.0%", + "API Exposure": "3.53%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "0.0%", + "Commented Logic Exposure": "23.15%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", + "Documentation Exposure": "13.01%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "Unknown_Block", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, + "Function Name": "STEP10", + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 7, - "End Line": 7 + "Start Line": 11, + "End Line": 16 } ], "6. Contextual Mitigations & Amplifications": "None Detected", @@ -801912,10 +801722,10 @@ "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 0, + "I/O and Network Boundaries": 1, + "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 0, - "Commented-out Code (Dead Logic)": 0, + "Commented-out Code (Dead Logic)": 1, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, @@ -801927,7 +801737,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -801969,15 +801779,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 2, + "Core Var Decl": 6, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 2, + "Design Upper Case": 6, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -802001,20 +801811,19 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, - "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 1, - "Total Downstream (Absolute Dependency Blast Radius)": 0 + "Direct Upstream (Fragility)": 1, + "Direct Downstream (Dependency Blast Radius)": 1, + "Total Upstream (Absolute Fragility)": 0, + "Total Downstream (Absolute Dependency Blast Radius)": 1 }, "9. Extracted Dependencies": [ - "CBSA.CICSBSA.BUILDJCL", - "DEFAULT" + "&HLQ..CICSBSA.DBRM" ] }, - "jcl/cics-banking-sample-application-cbsa/BNK1MAI.jcl": { + "jcl/cics-banking-sample-application-cbsa/CREL005.jcl": { "1. Artifact Identity": { - "Filename": "BNK1MAI.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/BNK1MAI.jcl", + "Filename": "CREL005.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/CREL005.jcl", "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Neutral / No Indentation", @@ -802024,9 +801833,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -991.35, - "Y": 71.62, - "Z": -1489.99 + "X": 435.07, + "Y": 116.14, + "Z": -3235.9 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -802035,10 +801844,10 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 9, - "Coding LOC": 4, - "Documentation LOC": 4, - "Structural Magnitude": 1.18, + "Total LOC": 17, + "Coding LOC": 6, + "Documentation LOC": 10, + "Structural Magnitude": 2.42, "Control Flow Ratio": "0.0%", "Popularity Rank": 1, "Raw Churn Frequency": 0.0, @@ -802051,26 +801860,26 @@ "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.31%", - "API Exposure": "0.0%", + "API Exposure": "3.53%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "0.0%", + "Commented Logic Exposure": "23.15%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", + "Documentation Exposure": "13.01%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "BNK1MAI", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 2, + "Function Name": "STEP10", + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 7, - "End Line": 8 + "Start Line": 11, + "End Line": 16 } ], "6. Contextual Mitigations & Amplifications": "None Detected", @@ -802083,10 +801892,10 @@ "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 0, + "I/O and Network Boundaries": 1, + "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 0, - "Commented-out Code (Dead Logic)": 0, + "Commented-out Code (Dead Logic)": 1, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, @@ -802098,7 +801907,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -802140,11 +801949,11 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 4, + "Core Var Decl": 6, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 4, + "Design Upper Case": 6, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, @@ -802172,20 +801981,19 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, + "Direct Upstream (Fragility)": 1, "Direct Downstream (Dependency Blast Radius)": 1, - "Total Upstream (Absolute Fragility)": 1, + "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 1 }, "9. Extracted Dependencies": [ - "CBSA.CICSBSA.BUILDJCL", - "DEFAULT" + "&HLQ..CICSBSA.LKED" ] }, - "jcl/cics-banking-sample-application-cbsa/BNK1TFM.jcl": { + "jcl/cics-banking-sample-application-cbsa/CREL006.jcl": { "1. Artifact Identity": { - "Filename": "BNK1TFM.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/BNK1TFM.jcl", + "Filename": "CREL006.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/CREL006.jcl", "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Neutral / No Indentation", @@ -802195,9 +802003,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 720.33, - "Y": 113.75, - "Z": -3565.09 + "X": 466.79, + "Y": 36.17, + "Z": -1638.64 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -802206,10 +802014,10 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 9, - "Coding LOC": 4, - "Documentation LOC": 4, - "Structural Magnitude": 1.18, + "Total LOC": 26, + "Coding LOC": 11, + "Documentation LOC": 14, + "Structural Magnitude": 4.72, "Control Flow Ratio": "0.0%", "Popularity Rank": 1, "Raw Churn Frequency": 0.0, @@ -802221,43 +802029,53 @@ "Cognitive Load Exposure": "0.0%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.31%", - "API Exposure": "0.0%", + "Testing Exposure": "2.33%", + "API Exposure": "5.59%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "0.0%", + "Commented Logic Exposure": "23.15%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", + "Documentation Exposure": "17.99%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "BNK1TFM", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 2, + "Function Name": "STEP10", + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 7, - "End Line": 8 + "Start Line": 11, + "End Line": 16 + }, + { + "Function Name": "STEP20", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 20, + "End Line": 24 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 1, + "Sequential Logic Declarations": 5, "Function Parameters": 0, - "Function/Method Declarations": 1, + "Function/Method Declarations": 2, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 0, + "I/O and Network Boundaries": 5, + "Exposed API / Public Exports": 2, "State Mutations / Variable Reassignments": 0, - "Commented-out Code (Dead Logic)": 0, + "Commented-out Code (Dead Logic)": 1, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, @@ -802269,7 +802087,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -802311,11 +802129,11 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 4, + "Core Var Decl": 9, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 4, + "Design Upper Case": 9, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, @@ -802345,18 +802163,18 @@ "8. Dependency Network": { "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 1, - "Total Upstream (Absolute Fragility)": 1, + "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 1 }, "9. Extracted Dependencies": [ - "CBSA.CICSBSA.BUILDJCL", - "DEFAULT" + "&HLQ..CICSBSA.BMS", + "&HLQ..CICSBSA.BMS(EMPTY)" ] }, - "jcl/cics-banking-sample-application-cbsa/BNK1TFN.jcl": { + "jcl/cics-banking-sample-application-cbsa/CREL007.jcl": { "1. Artifact Identity": { - "Filename": "BNK1TFN.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/BNK1TFN.jcl", + "Filename": "CREL007.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/CREL007.jcl", "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Neutral / No Indentation", @@ -802366,9 +802184,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 1846.14, - "Y": 28.31, - "Z": -2411.0 + "X": 715.31, + "Y": 46.2, + "Z": -1657.73 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -802377,12 +802195,12 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 8, - "Coding LOC": 3, - "Documentation LOC": 4, - "Structural Magnitude": 1.16, + "Total LOC": 17, + "Coding LOC": 6, + "Documentation LOC": 10, + "Structural Magnitude": 2.42, "Control Flow Ratio": "0.0%", - "Popularity Rank": 0, + "Popularity Rank": 1, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, @@ -802391,28 +802209,28 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "73.11%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.31%", - "API Exposure": "0.0%", + "API Exposure": "3.53%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "0.0%", + "Commented Logic Exposure": "23.15%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", + "Documentation Exposure": "13.01%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "Unknown_Block", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, + "Function Name": "STEP10", + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 7, - "End Line": 7 + "Start Line": 11, + "End Line": 16 } ], "6. Contextual Mitigations & Amplifications": "None Detected", @@ -802425,10 +802243,10 @@ "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 0, + "I/O and Network Boundaries": 1, + "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 0, - "Commented-out Code (Dead Logic)": 0, + "Commented-out Code (Dead Logic)": 1, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, @@ -802440,7 +802258,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -802482,15 +802300,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 2, + "Core Var Decl": 6, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 2, + "Design Upper Case": 6, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -802514,20 +802332,19 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, - "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 1, - "Total Downstream (Absolute Dependency Blast Radius)": 0 + "Direct Upstream (Fragility)": 1, + "Direct Downstream (Dependency Blast Radius)": 1, + "Total Upstream (Absolute Fragility)": 0, + "Total Downstream (Absolute Dependency Blast Radius)": 1 }, "9. Extracted Dependencies": [ - "CBSA.CICSBSA.BUILDJCL", - "DEFAULT" + "&HLQ..CICSBSA.DEBUG" ] }, - "jcl/cics-banking-sample-application-cbsa/BNK1UAC.jcl": { + "jcl/cics-banking-sample-application-cbsa/CREL008.jcl": { "1. Artifact Identity": { - "Filename": "BNK1UAC.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/BNK1UAC.jcl", + "Filename": "CREL008.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/CREL008.jcl", "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Neutral / No Indentation", @@ -802537,9 +802354,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -794.73, - "Y": 57.4, - "Z": -1229.29 + "X": -543.32, + "Y": 98.52, + "Z": -2681.46 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -802548,12 +802365,12 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 8, - "Coding LOC": 3, - "Documentation LOC": 4, - "Structural Magnitude": 1.16, + "Total LOC": 17, + "Coding LOC": 6, + "Documentation LOC": 10, + "Structural Magnitude": 2.42, "Control Flow Ratio": "0.0%", - "Popularity Rank": 0, + "Popularity Rank": 1, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, @@ -802562,28 +802379,28 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "73.11%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.31%", - "API Exposure": "0.0%", + "API Exposure": "3.53%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "0.0%", + "Commented Logic Exposure": "23.15%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", + "Documentation Exposure": "13.01%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "Unknown_Block", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, + "Function Name": "STEP10", + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 7, - "End Line": 7 + "Start Line": 11, + "End Line": 16 } ], "6. Contextual Mitigations & Amplifications": "None Detected", @@ -802596,10 +802413,10 @@ "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 0, + "I/O and Network Boundaries": 1, + "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 0, - "Commented-out Code (Dead Logic)": 0, + "Commented-out Code (Dead Logic)": 1, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, @@ -802611,7 +802428,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -802653,15 +802470,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 2, + "Core Var Decl": 6, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 2, + "Design Upper Case": 6, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -802685,20 +802502,19 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, - "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 1, - "Total Downstream (Absolute Dependency Blast Radius)": 0 + "Direct Upstream (Fragility)": 1, + "Direct Downstream (Dependency Blast Radius)": 1, + "Total Upstream (Absolute Fragility)": 0, + "Total Downstream (Absolute Dependency Blast Radius)": 1 }, "9. Extracted Dependencies": [ - "CBSA.CICSBSA.BUILDJCL", - "DEFAULT" + "&HLQ..CICSBSA.CBSAMOD" ] }, - "jcl/cics-banking-sample-application-cbsa/BNK1UAM.jcl": { + "jcl/cics-banking-sample-application-cbsa/CREL009.jcl": { "1. Artifact Identity": { - "Filename": "BNK1UAM.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/BNK1UAM.jcl", + "Filename": "CREL009.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/CREL009.jcl", "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Neutral / No Indentation", @@ -802708,9 +802524,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 992.49, - "Y": 22.86, - "Z": -768.49 + "X": -304.12, + "Y": 127.88, + "Z": -2457.52 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -802719,10 +802535,10 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 9, - "Coding LOC": 4, - "Documentation LOC": 4, - "Structural Magnitude": 1.18, + "Total LOC": 26, + "Coding LOC": 11, + "Documentation LOC": 14, + "Structural Magnitude": 4.72, "Control Flow Ratio": "0.0%", "Popularity Rank": 1, "Raw Churn Frequency": 0.0, @@ -802734,43 +802550,53 @@ "Cognitive Load Exposure": "0.0%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.31%", - "API Exposure": "0.0%", + "Testing Exposure": "2.33%", + "API Exposure": "5.59%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "0.0%", + "Commented Logic Exposure": "23.15%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", + "Documentation Exposure": "17.99%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "BNK1UAM", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 2, + "Function Name": "STEP10", + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 7, - "End Line": 8 + "Start Line": 11, + "End Line": 16 + }, + { + "Function Name": "STEP20", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 20, + "End Line": 24 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 1, + "Sequential Logic Declarations": 5, "Function Parameters": 0, - "Function/Method Declarations": 1, + "Function/Method Declarations": 2, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 0, + "I/O and Network Boundaries": 5, + "Exposed API / Public Exports": 2, "State Mutations / Variable Reassignments": 0, - "Commented-out Code (Dead Logic)": 0, + "Commented-out Code (Dead Logic)": 1, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, @@ -802782,7 +802608,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -802824,11 +802650,11 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 4, + "Core Var Decl": 9, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 4, + "Design Upper Case": 9, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, @@ -802858,18 +802684,18 @@ "8. Dependency Network": { "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 1, - "Total Upstream (Absolute Fragility)": 1, + "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 1 }, "9. Extracted Dependencies": [ - "CBSA.CICSBSA.BUILDJCL", - "DEFAULT" + "&HLQ..CICSBSA.COBOL", + "&HLQ..CICSBSA.COBOL(EMPTY)" ] }, - "jcl/cics-banking-sample-application-cbsa/BNKMENU.jcl": { + "jcl/cics-banking-sample-application-cbsa/CREL010.jcl": { "1. Artifact Identity": { - "Filename": "BNKMENU.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/BNKMENU.jcl", + "Filename": "CREL010.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/CREL010.jcl", "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Neutral / No Indentation", @@ -802879,9 +802705,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 360.94, - "Y": 79.59, - "Z": -3797.0 + "X": 985.36, + "Y": 70.7, + "Z": -2411.44 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -802890,12 +802716,12 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 8, - "Coding LOC": 3, - "Documentation LOC": 4, - "Structural Magnitude": 1.16, + "Total LOC": 26, + "Coding LOC": 11, + "Documentation LOC": 14, + "Structural Magnitude": 4.72, "Control Flow Ratio": "0.0%", - "Popularity Rank": 0, + "Popularity Rank": 1, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, @@ -802904,44 +802730,54 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.31%", - "API Exposure": "0.0%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "2.33%", + "API Exposure": "5.59%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "0.0%", + "Commented Logic Exposure": "23.15%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", + "Documentation Exposure": "17.99%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "Unknown_Block", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, + "Function Name": "STEP10", + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 7, - "End Line": 7 + "Start Line": 11, + "End Line": 16 + }, + { + "Function Name": "STEP20", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 20, + "End Line": 24 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 1, + "Sequential Logic Declarations": 5, "Function Parameters": 0, - "Function/Method Declarations": 1, + "Function/Method Declarations": 2, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 0, + "I/O and Network Boundaries": 5, + "Exposed API / Public Exports": 2, "State Mutations / Variable Reassignments": 0, - "Commented-out Code (Dead Logic)": 0, + "Commented-out Code (Dead Logic)": 1, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, @@ -802953,7 +802789,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -802995,15 +802831,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 2, + "Core Var Decl": 9, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 2, + "Design Upper Case": 9, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -803028,31 +802864,31 @@ }, "8. Dependency Network": { "Direct Upstream (Fragility)": 2, - "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 1, - "Total Downstream (Absolute Dependency Blast Radius)": 0 + "Direct Downstream (Dependency Blast Radius)": 1, + "Total Upstream (Absolute Fragility)": 0, + "Total Downstream (Absolute Dependency Blast Radius)": 1 }, "9. Extracted Dependencies": [ - "CBSA.CICSBSA.BUILDJCL", - "DEFAULT" + "&HLQ..CICSBSA.DSECT", + "&HLQ..CICSBSA.DSECT(EMPTY)" ] }, - "jcl/cics-banking-sample-application-cbsa/BTCHSQL.jcl": { + "jcl/cics-banking-sample-application-cbsa/CREL011.jcl": { "1. Artifact Identity": { - "Filename": "BTCHSQL.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/BTCHSQL.jcl", + "Filename": "CREL011.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/CREL011.jcl", "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, "Folder Dominant Lang": "jcl", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 661.38, - "Y": 85.57, - "Z": -3199.48 + "X": -88.51, + "Y": 44.48, + "Z": -1834.54 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -803061,12 +802897,12 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 22, - "Coding LOC": 17, - "Documentation LOC": 4, - "Structural Magnitude": 1.94, + "Total LOC": 26, + "Coding LOC": 11, + "Documentation LOC": 14, + "Structural Magnitude": 4.72, "Control Flow Ratio": "0.0%", - "Popularity Rank": 0, + "Popularity Rank": 1, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, @@ -803074,45 +802910,55 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", - "Tech Debt Exposure": "73.11%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.33%", - "API Exposure": "0.0%", + "API Exposure": "5.59%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "0.0%", + "Commented Logic Exposure": "23.15%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", + "Documentation Exposure": "17.99%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "GRANT", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 13, + "Function Name": "STEP10", + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 9, - "End Line": 21 + "Start Line": 11, + "End Line": 16 + }, + { + "Function Name": "STEP20", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 20, + "End Line": 24 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 6, + "Sequential Logic Declarations": 5, "Function Parameters": 0, - "Function/Method Declarations": 1, - "Class/Entity Declarations": 1, + "Function/Method Declarations": 2, + "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 7, - "Exposed API / Public Exports": 0, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 5, + "Exposed API / Public Exports": 2, "State Mutations / Variable Reassignments": 0, - "Commented-out Code (Dead Logic)": 0, + "Commented-out Code (Dead Logic)": 1, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, @@ -803136,7 +802982,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 2, + "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -803149,7 +802995,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 4, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -803166,15 +803012,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 8, + "Core Var Decl": 9, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 8, + "Design Upper Case": 9, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -803182,7 +803028,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 2, + "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -803191,7 +803037,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -803199,19 +803045,19 @@ }, "8. Dependency Network": { "Direct Upstream (Fragility)": 2, - "Direct Downstream (Dependency Blast Radius)": 0, + "Direct Downstream (Dependency Blast Radius)": 1, "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 + "Total Downstream (Absolute Dependency Blast Radius)": 1 }, "9. Extracted Dependencies": [ - "DSNC10.PROCLIB", - "DSNC10.SDSNLOAD" + "&HLQ..CICSBSA.REORG", + "&HLQ..CICSBSA.REORG(EMPTY)" ] }, - "jcl/cics-banking-sample-application-cbsa/CBSACSD.jcl": { + "jcl/cics-banking-sample-application-cbsa/CRELIBS.jcl": { "1. Artifact Identity": { - "Filename": "CBSACSD.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/CBSACSD.jcl", + "Filename": "CRELIBS.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/CRELIBS.jcl", "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Neutral / No Indentation", @@ -803221,9 +803067,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 590.81, - "Y": 84.6, - "Z": -799.42 + "X": -440.0, + "Y": 85.04, + "Z": -2105.85 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -803232,10 +803078,10 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 24, - "Coding LOC": 10, - "Documentation LOC": 13, - "Structural Magnitude": 1.6, + "Total LOC": 21, + "Coding LOC": 16, + "Documentation LOC": 4, + "Structural Magnitude": 2.92, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -803245,12 +803091,12 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "64.57%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.33%", + "Testing Exposure": "2.32%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", + "State Flux Exposure": "16.8%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", @@ -803260,42 +803106,42 @@ }, "5. Function Analysis": [ { - "Function Name": "DFHCSDUP", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 7, + "Function Name": "IEFBR14", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 13, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 17, - "End Line": 23 + "Start Line": 8, + "End Line": 20 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 6, + "Sequential Logic Declarations": 13, "Function Parameters": 0, "Function/Method Declarations": 1, "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 10, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 0, + "State Mutations / Variable Reassignments": 1, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 12, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -803307,7 +803153,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 2, + "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -803337,11 +803183,11 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 9, + "Core Var Decl": 15, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 9, + "Design Upper Case": 15, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, @@ -803362,40 +803208,50 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 3, + "Direct Upstream (Fragility)": 13, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, + "Total Upstream (Absolute Fragility)": 12, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "@CBSA_INSTALL@(BANK)", - "@CICS_PREFIX@.SDFHLOAD", - "@CSD_PREFIX@.DFHCSD" + "CBSA.JCL.INSTALL", + "CREDB2L", + "CREL001", + "CREL002", + "CREL003", + "CREL004", + "CREL005", + "CREL006", + "CREL007", + "CREL008", + "CREL009", + "CREL010", + "CREL011" ] }, - "jcl/cics-banking-sample-application-cbsa/CICS.jcl": { + "jcl/cics-banking-sample-application-cbsa/CRESG01.jcl": { "1. Artifact Identity": { - "Filename": "CICS.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/CICS.jcl", + "Filename": "CRESG01.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/CRESG01.jcl", "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, "Folder Dominant Lang": "jcl", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 577.65, - "Y": 58.05, - "Z": -1824.65 + "X": 725.53, + "Y": 47.35, + "Z": -1122.6 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -803404,10 +803260,10 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 59, - "Coding LOC": 53, - "Documentation LOC": 5, - "Structural Magnitude": 8.66, + "Total LOC": 22, + "Coding LOC": 17, + "Documentation LOC": 4, + "Structural Magnitude": 1.94, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -803417,9 +803273,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "72.84%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.39%", + "Error & Exception Exposure": "76.85%", + "Tech Debt Exposure": "73.11%", + "Testing Exposure": "2.33%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -803432,37 +803288,27 @@ }, "5. Function Analysis": [ { - "Function Name": "COBOL", - "Structural Impact": 4.4, - "Lines of Code (LOC)": 36, - "Control Flow Branches": 0, - "Input Parameters": 6, - "Control Flow Ratio": "0.0%", - "Start Line": 5, - "End Line": 40 - }, - { - "Function Name": "LKED", - "Structural Impact": 3.2, - "Lines of Code (LOC)": 16, + "Function Name": "GRANT", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 13, "Control Flow Branches": 0, - "Input Parameters": 5, + "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 43, - "End Line": 58 + "Start Line": 9, + "End Line": 21 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 43, - "Function Parameters": 3, - "Function/Method Declarations": 2, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 1, + "Sequential Logic Declarations": 6, + "Function Parameters": 0, + "Function/Method Declarations": 1, + "Class/Entity Declarations": 1, + "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 43, + "I/O and Network Boundaries": 7, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -803471,7 +803317,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -803489,7 +803335,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 2, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -803502,7 +803348,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 4, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -803519,15 +803365,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 50, + "Core Var Decl": 8, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 50, + "Design Upper Case": 8, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -803535,7 +803381,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, + "Dynamic Code Execution (Eval/Exec)": 2, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -803544,51 +803390,39 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 2, + "Sec Tainted Injection": 1, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 13, + "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "&CBSAHLQ..ADATA(&MEMBER)", - "&CBSAHLQ..COBOL(&MEMBER)", - "&CBSAHLQ..DEBUG(&MEMBER)", - "&CBSAHLQ..DSECT", - "&CBSAHLQ..LKED(&MEMBER)", - "&CBSAHLQ..LOADLIB", - "&CICSHLQ..SDFHCOB", - "&CICSHLQ..SDFHLOAD", - "&CICSHLQ..SDFHSAMP", - "&COBOLHLQ..SIGYCOMP", - "&DB2HLQ..SDSNLOAD", - "&LEHLQ..SCEELKED", - "&LEHLQ..SCEESAMP" + "DSNC10.PROCLIB", + "DSNC10.SDSNLOAD" ] }, - "jcl/cics-banking-sample-application-cbsa/CICSTS56.jcl": { + "jcl/cics-banking-sample-application-cbsa/CRESG02.jcl": { "1. Artifact Identity": { - "Filename": "CICSTS56.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/CICSTS56.jcl", + "Filename": "CRESG02.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/CRESG02.jcl", "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Alert": "TYPOSQUATTING THREAT: 'DSNC10/SDSNLOD2' mimics 'DSNC10/SDSNLOAD'", "Folder Dominant Lang": "jcl", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 351.16, - "Y": 47.47, - "Z": -2728.78 + "X": -786.89, + "Y": 59.34, + "Z": -2709.34 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -803597,10 +803431,10 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 183, - "Coding LOC": 108, - "Documentation LOC": 74, - "Structural Magnitude": 17.26, + "Total LOC": 22, + "Coding LOC": 17, + "Documentation LOC": 4, + "Structural Magnitude": 1.94, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -803610,13 +803444,13 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "63.7%", - "Tech Debt Exposure": "86.97%", - "Testing Exposure": "2.37%", + "Error & Exception Exposure": "76.85%", + "Tech Debt Exposure": "73.11%", + "Testing Exposure": "2.33%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "26.25%", + "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", @@ -803625,96 +803459,36 @@ }, "5. Function Analysis": [ { - "Function Name": "CICS", - "Structural Impact": 6.3, - "Lines of Code (LOC)": 98, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 43, - "End Line": 140 - }, - { - "Function Name": "PRTDMPA", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 143, - "End Line": 151 - }, - { - "Function Name": "PRTDMPB", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 154, - "End Line": 162 - }, - { - "Function Name": "PRTAUXT", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 167, - "End Line": 172 - }, - { - "Function Name": "PRTBUXT", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 177, - "End Line": 182 - }, - { - "Function Name": "CICSCNTL", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 28, - "End Line": 31 - }, - { - "Function Name": "DTCNTL", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, + "Function Name": "GRANT", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 13, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 35, - "End Line": 38 + "Start Line": 9, + "End Line": 21 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 70, - "Function Parameters": 4, - "Function/Method Declarations": 7, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 5, + "Sequential Logic Declarations": 6, + "Function Parameters": 0, + "Function/Method Declarations": 1, + "Class/Entity Declarations": 1, + "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 2, - "I/O and Network Boundaries": 115, + "High-Risk Execution Commands": 1, + "I/O and Network Boundaries": 7, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, - "Commented-out Code (Dead Logic)": 4, + "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -803732,7 +803506,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 2, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -803745,7 +803519,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 4, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -803762,15 +803536,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 104, + "Core Var Decl": 8, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 104, + "Design Upper Case": 8, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 4, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -803778,67 +803552,48 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, + "Dynamic Code Execution (Eval/Exec)": 2, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, "Non-Standard / Steganographic Imports": 0, - "Non-Standard Unicode / Homoglyphs": 1, + "Non-Standard Unicode / Homoglyphs": 0, "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 7, + "Sec Tainted Injection": 1, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 21, + "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "&INDEX2..SDFHAUTH", - "&INDEX2..SDFHLOAD", - "&INDEX3..SEYUAUTH", - "&INDEX3..SEYULOAD", - "ADCD.Z25A.TCPPARMS(GBLTDATA)", - "CBSA.CICSBSA.LOADLIB", - "CEE.SCEECICS", - "CEE.SCEERUN", - "CEE.SCEERUN2", - "DFH560.CICS.EQADPFMB", - "DFH560.CICS.SDFHLINK", - "DFH560.DFHCMACD", - "DFH560.EQAIVP.LOAD", - "DFH560.SDFHLIC", - "DFH560.SYSIN(DFHPLT)", - "DSNC10.SDSNLOAD", - "DSNC10.SDSNLOD2", - "ISM330.SEQAMOD", - "SYS1.MIGLIB", - "SYS1.SIEAMIGE", - "TCPIP.SEZATCP" + "DSNC10.PROCLIB", + "DSNC10.SDSNLOAD" ] }, - "jcl/cics-banking-sample-application-cbsa/COMPALL.jcl": { + "jcl/cics-banking-sample-application-cbsa/CRESG03.jcl": { "1. Artifact Identity": { - "Filename": "COMPALL.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/COMPALL.jcl", + "Filename": "CRESG03.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/CRESG03.jcl", "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, "Folder Dominant Lang": "jcl", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 255.16, - "Y": 92.42, - "Z": -2312.82 + "X": 1411.36, + "Y": 32.74, + "Z": -2489.64 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -803847,10 +803602,10 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 175, - "Coding LOC": 87, - "Documentation LOC": 87, - "Structural Magnitude": 47.44, + "Total LOC": 22, + "Coding LOC": 17, + "Documentation LOC": 4, + "Structural Magnitude": 1.94, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -803860,9 +803615,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.65%", + "Error & Exception Exposure": "76.85%", + "Tech Debt Exposure": "73.11%", + "Testing Exposure": "2.33%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -803875,397 +803630,27 @@ }, "5. Function Analysis": [ { - "Function Name": "XFRFUN", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 97, - "End Line": 103 - }, - { - "Function Name": "ABNDPROC", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 12, - "End Line": 15 - }, - { - "Function Name": "BANKDATA", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 16, - "End Line": 19 - }, - { - "Function Name": "BNK1MAI", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 20, - "End Line": 24 - }, - { - "Function Name": "BNKMENU", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 25, - "End Line": 28 - }, - { - "Function Name": "CRDTAGY1", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 29, - "End Line": 32 - }, - { - "Function Name": "CRDTAGY2", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 33, - "End Line": 36 - }, - { - "Function Name": "CRDTAGY3", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 37, - "End Line": 40 - }, - { - "Function Name": "CRDTAGY4", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 41, - "End Line": 44 - }, - { - "Function Name": "CRDTAGY5", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 45, - "End Line": 48 - }, - { - "Function Name": "CREACC", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 49, - "End Line": 52 - }, - { - "Function Name": "CRECUST", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 53, - "End Line": 56 - }, - { - "Function Name": "DBCRFUN", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 57, - "End Line": 60 - }, - { - "Function Name": "DELACC", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 61, - "End Line": 64 - }, - { - "Function Name": "DELCUS", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 65, - "End Line": 68 - }, - { - "Function Name": "GETCOMPY", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 69, - "End Line": 72 - }, - { - "Function Name": "GETSCODE", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 73, - "End Line": 76 - }, - { - "Function Name": "INQACC", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 77, - "End Line": 80 - }, - { - "Function Name": "INQACCCU", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 81, - "End Line": 84 - }, - { - "Function Name": "INQCUST", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 85, - "End Line": 88 - }, - { - "Function Name": "UPDACC", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 89, - "End Line": 92 - }, - { - "Function Name": "UPDCUST", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 93, - "End Line": 96 - }, - { - "Function Name": "BNK1ACC", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 104, - "End Line": 108 - }, - { - "Function Name": "BNK1CAM", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 109, - "End Line": 113 - }, - { - "Function Name": "BNK1CAC", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 114, - "End Line": 117 - }, - { - "Function Name": "BNK1CCA", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 118, - "End Line": 121 - }, - { - "Function Name": "BNK1CCM", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 122, - "End Line": 126 - }, - { - "Function Name": "BNK1CCS", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 127, - "End Line": 130 - }, - { - "Function Name": "BNK1CDM", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 131, - "End Line": 135 - }, - { - "Function Name": "BNK1CRA", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 136, - "End Line": 139 - }, - { - "Function Name": "BNK1DAM", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 140, - "End Line": 144 - }, - { - "Function Name": "BNK1DAC", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 145, - "End Line": 148 - }, - { - "Function Name": "BNK1DCM", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 149, - "End Line": 153 - }, - { - "Function Name": "BNK1DCS", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 154, - "End Line": 158 - }, - { - "Function Name": "BNK1TFM", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 159, - "End Line": 163 - }, - { - "Function Name": "BNK1TFN", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 164, - "End Line": 167 - }, - { - "Function Name": "BNK1UAM", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 168, - "End Line": 172 - }, - { - "Function Name": "BNK1UAC", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, + "Function Name": "GRANT", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 13, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 173, - "End Line": 173 + "Start Line": 9, + "End Line": 21 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 38, + "Sequential Logic Declarations": 6, "Function Parameters": 0, - "Function/Method Declarations": 38, + "Function/Method Declarations": 1, "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, + "High-Risk Execution Commands": 1, + "I/O and Network Boundaries": 7, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -804274,13 +803659,13 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 38, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -804292,7 +803677,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 1, + "Structured Telemetry & Logging": 2, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -804305,7 +803690,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 4, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -804322,15 +803707,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 57, + "Core Var Decl": 8, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 57, + "Design Upper Case": 8, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -804338,7 +803723,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, + "Dynamic Code Execution (Eval/Exec)": 2, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -804347,7 +803732,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 0, + "Sec Tainted Injection": 1, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -804356,30 +803741,30 @@ "8. Dependency Network": { "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 1, + "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "CBSA.CICSBSA.BUILDJCL", - "DEFAULT" + "DSNC10.PROCLIB", + "DSNC10.SDSNLOAD" ] }, - "jcl/cics-banking-sample-application-cbsa/CRDTAGY1.jcl": { + "jcl/cics-banking-sample-application-cbsa/CRETB01.jcl": { "1. Artifact Identity": { - "Filename": "CRDTAGY1.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/CRDTAGY1.jcl", + "Filename": "CRETB01.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/CRETB01.jcl", "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, "Folder Dominant Lang": "jcl", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 1242.03, - "Y": 7.88, - "Z": -1185.63 + "X": 895.19, + "Y": 83.44, + "Z": -1831.77 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -804388,10 +803773,10 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 8, - "Coding LOC": 3, + "Total LOC": 37, + "Coding LOC": 32, "Documentation LOC": 4, - "Structural Magnitude": 1.16, + "Structural Magnitude": 3.04, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -804401,9 +803786,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "0.0%", + "Error & Exception Exposure": "76.85%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.31%", + "Testing Exposure": "2.34%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -804416,27 +803801,27 @@ }, "5. Function Analysis": [ { - "Function Name": "Unknown_Block", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, + "Function Name": "GRANT", + "Structural Impact": 2.4, + "Lines of Code (LOC)": 28, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 7, - "End Line": 7 + "Start Line": 9, + "End Line": 36 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 1, + "Sequential Logic Declarations": 6, "Function Parameters": 0, "Function/Method Declarations": 1, - "Class/Entity Declarations": 0, + "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, + "High-Risk Execution Commands": 1, + "I/O and Network Boundaries": 7, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -804445,13 +803830,13 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -804463,7 +803848,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 2, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -804476,7 +803861,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 17, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -804493,11 +803878,11 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 2, + "Core Var Decl": 8, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 2, + "Design Upper Case": 8, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, @@ -804509,7 +803894,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, + "Dynamic Code Execution (Eval/Exec)": 2, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -804518,7 +803903,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 0, + "Sec Tainted Injection": 1, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -804527,30 +803912,30 @@ "8. Dependency Network": { "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 1, + "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "CBSA.CICSBSA.BUILDJCL", - "DEFAULT" + "DSNC10.PROCLIB", + "DSNC10.SDSNLOAD" ] }, - "jcl/cics-banking-sample-application-cbsa/CRDTAGY2.jcl": { + "jcl/cics-banking-sample-application-cbsa/CRETB02.jcl": { "1. Artifact Identity": { - "Filename": "CRDTAGY2.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/CRDTAGY2.jcl", + "Filename": "CRETB02.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/CRETB02.jcl", "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, "Folder Dominant Lang": "jcl", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -1294.76, - "Y": 114.21, - "Z": -2311.29 + "X": 838.39, + "Y": 105.1, + "Z": -2725.7 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -804559,10 +803944,10 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 8, - "Coding LOC": 3, + "Total LOC": 35, + "Coding LOC": 30, "Documentation LOC": 4, - "Structural Magnitude": 1.16, + "Structural Magnitude": 2.9, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -804572,9 +803957,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "0.0%", + "Error & Exception Exposure": "76.85%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.31%", + "Testing Exposure": "2.34%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -804587,27 +803972,27 @@ }, "5. Function Analysis": [ { - "Function Name": "Unknown_Block", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, + "Function Name": "GRANT", + "Structural Impact": 2.3, + "Lines of Code (LOC)": 26, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 7, - "End Line": 7 + "Start Line": 9, + "End Line": 34 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 1, + "Sequential Logic Declarations": 6, "Function Parameters": 0, "Function/Method Declarations": 1, - "Class/Entity Declarations": 0, + "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, + "High-Risk Execution Commands": 1, + "I/O and Network Boundaries": 7, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -804616,13 +804001,13 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -804634,7 +804019,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 2, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -804647,7 +804032,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 15, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -804664,11 +804049,11 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 2, + "Core Var Decl": 8, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 2, + "Design Upper Case": 8, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, @@ -804680,7 +804065,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, + "Dynamic Code Execution (Eval/Exec)": 2, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -804689,7 +804074,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 0, + "Sec Tainted Injection": 1, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -804698,30 +804083,30 @@ "8. Dependency Network": { "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 1, + "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "CBSA.CICSBSA.BUILDJCL", - "DEFAULT" + "DSNC10.PROCLIB", + "DSNC10.SDSNLOAD" ] }, - "jcl/cics-banking-sample-application-cbsa/CRDTAGY3.jcl": { + "jcl/cics-banking-sample-application-cbsa/CRETB03.jcl": { "1. Artifact Identity": { - "Filename": "CRDTAGY3.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/CRDTAGY3.jcl", + "Filename": "CRETB03.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/CRETB03.jcl", "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, "Folder Dominant Lang": "jcl", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 1596.28, - "Y": 35.44, - "Z": -3066.76 + "X": 221.12, + "Y": 68.15, + "Z": -1366.65 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -804730,10 +804115,10 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 8, - "Coding LOC": 3, + "Total LOC": 29, + "Coding LOC": 23, "Documentation LOC": 4, - "Structural Magnitude": 1.16, + "Structural Magnitude": 2.46, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -804743,9 +804128,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "0.0%", + "Error & Exception Exposure": "76.85%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.31%", + "Testing Exposure": "2.34%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -804758,27 +804143,27 @@ }, "5. Function Analysis": [ { - "Function Name": "Unknown_Block", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, + "Function Name": "GRANT", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 20, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 7, - "End Line": 7 + "Start Line": 9, + "End Line": 28 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 1, + "Sequential Logic Declarations": 6, "Function Parameters": 0, "Function/Method Declarations": 1, - "Class/Entity Declarations": 0, + "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, + "High-Risk Execution Commands": 1, + "I/O and Network Boundaries": 7, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -804787,13 +804172,13 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -804805,7 +804190,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 2, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -804818,7 +804203,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 8, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -804835,11 +804220,11 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 2, + "Core Var Decl": 8, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 2, + "Design Upper Case": 8, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, @@ -804851,7 +804236,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, + "Dynamic Code Execution (Eval/Exec)": 2, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -804860,7 +804245,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 0, + "Sec Tainted Injection": 1, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -804869,30 +804254,30 @@ "8. Dependency Network": { "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 1, + "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "CBSA.CICSBSA.BUILDJCL", - "DEFAULT" + "DSNC10.PROCLIB", + "DSNC10.SDSNLOAD" ] }, - "jcl/cics-banking-sample-application-cbsa/CRDTAGY4.jcl": { + "jcl/cics-banking-sample-application-cbsa/CRETS01.jcl": { "1. Artifact Identity": { - "Filename": "CRDTAGY4.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/CRDTAGY4.jcl", + "Filename": "CRETS01.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/CRETS01.jcl", "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, "Folder Dominant Lang": "jcl", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -57.94, - "Y": 44.26, - "Z": -604.47 + "X": -330.93, + "Y": 47.69, + "Z": -1135.36 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -804901,10 +804286,10 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 8, - "Coding LOC": 3, + "Total LOC": 22, + "Coding LOC": 17, "Documentation LOC": 4, - "Structural Magnitude": 1.16, + "Structural Magnitude": 1.94, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -804914,9 +804299,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "0.0%", + "Error & Exception Exposure": "76.85%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.31%", + "Testing Exposure": "2.33%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -804929,27 +804314,27 @@ }, "5. Function Analysis": [ { - "Function Name": "Unknown_Block", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, + "Function Name": "GRANT", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 13, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 7, - "End Line": 7 + "Start Line": 9, + "End Line": 21 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 1, + "Sequential Logic Declarations": 6, "Function Parameters": 0, "Function/Method Declarations": 1, - "Class/Entity Declarations": 0, + "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, + "High-Risk Execution Commands": 1, + "I/O and Network Boundaries": 7, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -804958,13 +804343,13 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -804976,7 +804361,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 2, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -804989,7 +804374,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 4, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -805006,11 +804391,11 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 2, + "Core Var Decl": 8, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 2, + "Design Upper Case": 8, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, @@ -805022,7 +804407,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, + "Dynamic Code Execution (Eval/Exec)": 2, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -805031,7 +804416,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 0, + "Sec Tainted Injection": 1, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -805040,30 +804425,30 @@ "8. Dependency Network": { "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 1, + "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "CBSA.CICSBSA.BUILDJCL", - "DEFAULT" + "DSNC10.PROCLIB", + "DSNC10.SDSNLOAD" ] }, - "jcl/cics-banking-sample-application-cbsa/CRDTAGY5.jcl": { + "jcl/cics-banking-sample-application-cbsa/CRETS02.jcl": { "1. Artifact Identity": { - "Filename": "CRDTAGY5.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/CRDTAGY5.jcl", + "Filename": "CRETS02.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/CRETS02.jcl", "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, "Folder Dominant Lang": "jcl", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -547.15, - "Y": 80.95, - "Z": -3772.75 + "X": 48.29, + "Y": 114.88, + "Z": -3296.64 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -805072,10 +804457,10 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 8, - "Coding LOC": 3, + "Total LOC": 22, + "Coding LOC": 17, "Documentation LOC": 4, - "Structural Magnitude": 1.16, + "Structural Magnitude": 1.94, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -805085,9 +804470,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "0.0%", + "Error & Exception Exposure": "76.85%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.31%", + "Testing Exposure": "2.33%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -805100,27 +804485,27 @@ }, "5. Function Analysis": [ { - "Function Name": "Unknown_Block", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, + "Function Name": "GRANT", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 13, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 7, - "End Line": 7 + "Start Line": 9, + "End Line": 21 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 1, + "Sequential Logic Declarations": 6, "Function Parameters": 0, "Function/Method Declarations": 1, - "Class/Entity Declarations": 0, + "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, + "High-Risk Execution Commands": 1, + "I/O and Network Boundaries": 7, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -805129,13 +804514,13 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -805147,7 +804532,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 2, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -805160,7 +804545,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 4, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -805177,11 +804562,11 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 2, + "Core Var Decl": 8, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 2, + "Design Upper Case": 8, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, @@ -805193,7 +804578,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, + "Dynamic Code Execution (Eval/Exec)": 2, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -805202,7 +804587,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 0, + "Sec Tainted Injection": 1, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -805211,30 +804596,30 @@ "8. Dependency Network": { "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 1, + "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "CBSA.CICSBSA.BUILDJCL", - "DEFAULT" + "DSNC10.PROCLIB", + "DSNC10.SDSNLOAD" ] }, - "jcl/cics-banking-sample-application-cbsa/CREACC.jcl": { + "jcl/cics-banking-sample-application-cbsa/CRETS03.jcl": { "1. Artifact Identity": { - "Filename": "CREACC.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/CREACC.jcl", + "Filename": "CRETS03.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/CRETS03.jcl", "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, "Folder Dominant Lang": "jcl", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -671.2, - "Y": 93.84, - "Z": -1857.31 + "X": 1223.92, + "Y": 74.42, + "Z": -1535.6 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -805243,10 +804628,10 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 8, - "Coding LOC": 3, + "Total LOC": 22, + "Coding LOC": 17, "Documentation LOC": 4, - "Structural Magnitude": 2.16, + "Structural Magnitude": 1.94, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -805256,43 +804641,43 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.31%", - "API Exposure": "3.53%", + "Error & Exception Exposure": "76.85%", + "Tech Debt Exposure": "73.11%", + "Testing Exposure": "2.33%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "16.56%", + "Documentation Exposure": "0.0%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "Unknown_Block", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, + "Function Name": "GRANT", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 13, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 7, - "End Line": 7 + "Start Line": 9, + "End Line": 21 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 1, + "Sequential Logic Declarations": 6, "Function Parameters": 0, "Function/Method Declarations": 1, - "Class/Entity Declarations": 0, + "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 1, + "High-Risk Execution Commands": 1, + "I/O and Network Boundaries": 7, + "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -805300,13 +804685,13 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -805318,7 +804703,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 2, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -805331,7 +804716,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 4, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -805348,15 +804733,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 2, + "Core Var Decl": 8, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 2, + "Design Upper Case": 8, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -805364,7 +804749,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, + "Dynamic Code Execution (Eval/Exec)": 2, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -805373,7 +804758,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 0, + "Sec Tainted Injection": 1, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -805382,30 +804767,30 @@ "8. Dependency Network": { "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 1, - "Total Downstream (Absolute Dependency Blast Radius)": 1 + "Total Upstream (Absolute Fragility)": 0, + "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "CBSA.CICSBSA.BUILDJCL", - "DEFAULT" + "DSNC10.PROCLIB", + "DSNC10.SDSNLOAD" ] }, - "jcl/cics-banking-sample-application-cbsa/CRECUST.jcl": { + "jcl/cics-banking-sample-application-cbsa/DB2BIND.jcl": { "1. Artifact Identity": { - "Filename": "CRECUST.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/CRECUST.jcl", + "Filename": "DB2BIND.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/DB2BIND.jcl", "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, "Folder Dominant Lang": "jcl", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 784.49, - "Y": 102.61, - "Z": -2919.13 + "X": 712.49, + "Y": 36.89, + "Z": -2479.63 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -805414,10 +804799,10 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 8, - "Coding LOC": 3, - "Documentation LOC": 4, - "Structural Magnitude": 2.16, + "Total LOC": 110, + "Coding LOC": 89, + "Documentation LOC": 9, + "Structural Magnitude": 8.58, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -805427,43 +804812,53 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "0.0%", + "Error & Exception Exposure": "77.05%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.31%", - "API Exposure": "3.53%", + "Testing Exposure": "2.36%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "16.56%", + "Documentation Exposure": "0.0%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "Unknown_Block", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, + "Function Name": "BIND", + "Structural Impact": 4.8, + "Lines of Code (LOC)": 75, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 7, - "End Line": 7 + "Start Line": 12, + "End Line": 86 + }, + { + "Function Name": "GRANT", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 20, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 90, + "End Line": 109 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 1, + "Sequential Logic Declarations": 24, "Function Parameters": 0, - "Function/Method Declarations": 1, - "Class/Entity Declarations": 0, + "Function/Method Declarations": 2, + "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 1, + "High-Risk Execution Commands": 2, + "I/O and Network Boundaries": 38, + "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -805471,7 +804866,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -805489,7 +804884,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 2, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -805502,7 +804897,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 8, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -805519,11 +804914,11 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 2, + "Core Var Decl": 27, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 2, + "Design Upper Case": 27, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, @@ -805535,7 +804930,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, + "Dynamic Code Execution (Eval/Exec)": 3, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -805544,39 +804939,51 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 0, + "Sec Tainted Injection": 2, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, + "Direct Upstream (Fragility)": 14, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 1, - "Total Downstream (Absolute Dependency Blast Radius)": 1 + "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "CBSA.CICSBSA.BUILDJCL", + "&BANKDBRM(BANKDATA)", + "&BANKDBRM(CREACC)", + "&BANKDBRM(CRECUST)", + "&BANKDBRM(DBCRFUN)", + "&BANKDBRM(DELACC)", + "&BANKDBRM(DELCUS)", + "&BANKDBRM(INQACC)", + "&BANKDBRM(INQACCCU)", + "&BANKDBRM(UPDACC)", + "&BANKDBRM(XFRFUN)", + "&DB2HLQ..SDSNEXIT", + "&DB2HLQ..SDSNLOAD", + "CBSA.DB2.JCL.INSTALL", "DEFAULT" ] }, - "jcl/cics-banking-sample-application-cbsa/CREDB00.jcl": { + "jcl/cics-banking-sample-application-cbsa/DBCRFUN.jcl": { "1. Artifact Identity": { - "Filename": "CREDB00.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/CREDB00.jcl", + "Filename": "DBCRFUN.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/DBCRFUN.jcl", "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, "Folder Dominant Lang": "jcl", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 1150.86, - "Y": 87.81, - "Z": -2635.12 + "X": 1854.69, + "Y": -1.04, + "Z": -1755.71 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -805585,10 +804992,10 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 24, - "Coding LOC": 19, + "Total LOC": 8, + "Coding LOC": 3, "Documentation LOC": 4, - "Structural Magnitude": 2.18, + "Structural Magnitude": 1.16, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -805598,9 +805005,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.33%", + "Testing Exposure": "2.31%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -805613,27 +805020,27 @@ }, "5. Function Analysis": [ { - "Function Name": "GRANT", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 15, + "Function Name": "Unknown_Block", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 9, - "End Line": 23 + "Start Line": 7, + "End Line": 7 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 6, + "Sequential Logic Declarations": 1, "Function Parameters": 0, "Function/Method Declarations": 1, - "Class/Entity Declarations": 1, + "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 7, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -805648,7 +805055,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -805660,7 +805067,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 2, + "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -805673,7 +805080,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 6, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -805690,11 +805097,11 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 8, + "Core Var Decl": 2, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 8, + "Design Upper Case": 2, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, @@ -805706,7 +805113,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 2, + "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -805715,7 +805122,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -805724,18 +805131,18 @@ "8. Dependency Network": { "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, + "Total Upstream (Absolute Fragility)": 1, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "DSNC10.PROCLIB", - "DSNC10.SDSNLOAD" + "CBSA.CICSBSA.BUILDJCL", + "DEFAULT" ] }, - "jcl/cics-banking-sample-application-cbsa/CREDB2L.jcl": { + "jcl/cics-banking-sample-application-cbsa/DEFAULT.jcl": { "1. Artifact Identity": { - "Filename": "CREDB2L.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/CREDB2L.jcl", + "Filename": "DEFAULT.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/DEFAULT.jcl", "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Neutral / No Indentation", @@ -805745,9 +805152,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -246.85, - "Y": 110.85, - "Z": -2016.74 + "X": 90.67, + "Y": 88.14, + "Z": -2113.31 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -805756,12 +805163,12 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 27, - "Coding LOC": 11, - "Documentation LOC": 15, - "Structural Magnitude": 4.72, + "Total LOC": 48, + "Coding LOC": 9, + "Documentation LOC": 38, + "Structural Magnitude": 23.68, "Control Flow Ratio": "0.0%", - "Popularity Rank": 1, + "Popularity Rank": 44, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, @@ -805769,61 +805176,40 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "86.83%", + "Error & Exception Exposure": "78.34%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.36%", - "API Exposure": "5.59%", + "Testing Exposure": "2.3%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "23.15%", - "Specification Exposure": "100.0%", + "State Flux Exposure": "99.18%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "0.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "17.3%", + "Documentation Exposure": "0.0%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [ - { - "Function Name": "STEP10", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 12, - "End Line": 17 - }, - { - "Function Name": "STEP20", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 21, - "End Line": 25 - } - ], + "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 5, + "Sequential Logic Declarations": 9, "Function Parameters": 0, - "Function/Method Declarations": 2, + "Function/Method Declarations": 0, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 2, - "I/O and Network Boundaries": 5, - "Exposed API / Public Exports": 2, - "State Mutations / Variable Reassignments": 0, - "Commented-out Code (Dead Logic)": 1, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 0, + "State Mutations / Variable Reassignments": 9, + "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 9, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -805896,39 +805282,36 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 2, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, - "Direct Downstream (Dependency Blast Radius)": 1, + "Direct Upstream (Fragility)": 0, + "Direct Downstream (Dependency Blast Radius)": 44, "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 1 + "Total Downstream (Absolute Dependency Blast Radius)": 65 }, - "9. Extracted Dependencies": [ - "&HLQ..DB2.JCL.INSTALL", - "&HLQ..DB2.JCL.INSTALL(EMPTY)" - ] + "9. Extracted Dependencies": [] }, - "jcl/cics-banking-sample-application-cbsa/CREI101.jcl": { + "jcl/cics-banking-sample-application-cbsa/DELACC.jcl": { "1. Artifact Identity": { - "Filename": "CREI101.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/CREI101.jcl", + "Filename": "DELACC.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/DELACC.jcl", "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, "Folder Dominant Lang": "jcl", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -60.63, - "Y": 80.96, - "Z": -1557.9 + "X": 486.05, + "Y": 98.77, + "Z": -1438.36 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -805937,10 +805320,10 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 24, - "Coding LOC": 19, + "Total LOC": 8, + "Coding LOC": 3, "Documentation LOC": 4, - "Structural Magnitude": 2.18, + "Structural Magnitude": 2.16, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -805950,43 +805333,43 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", - "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.33%", - "API Exposure": "0.0%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "2.31%", + "API Exposure": "3.53%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", + "Documentation Exposure": "16.56%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "GRANT", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 15, + "Function Name": "Unknown_Block", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 9, - "End Line": 23 + "Start Line": 7, + "End Line": 7 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 6, + "Sequential Logic Declarations": 1, "Function Parameters": 0, "Function/Method Declarations": 1, - "Class/Entity Declarations": 1, + "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 7, - "Exposed API / Public Exports": 0, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -806000,7 +805383,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -806012,7 +805395,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 2, + "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -806025,7 +805408,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 6, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -806042,15 +805425,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 8, + "Core Var Decl": 2, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 8, + "Design Upper Case": 2, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -806058,7 +805441,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 2, + "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -806067,7 +805450,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -806076,30 +805459,30 @@ "8. Dependency Network": { "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 + "Total Upstream (Absolute Fragility)": 1, + "Total Downstream (Absolute Dependency Blast Radius)": 1 }, "9. Extracted Dependencies": [ - "DSNC10.PROCLIB", - "DSNC10.SDSNLOAD" + "CBSA.CICSBSA.BUILDJCL", + "DEFAULT" ] }, - "jcl/cics-banking-sample-application-cbsa/CREI201.jcl": { + "jcl/cics-banking-sample-application-cbsa/DELCUS.jcl": { "1. Artifact Identity": { - "Filename": "CREI201.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/CREI201.jcl", + "Filename": "DELCUS.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/DELCUS.jcl", "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, "Folder Dominant Lang": "jcl", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -42.32, - "Y": 55.22, - "Z": -3282.06 + "X": -506.89, + "Y": 71.31, + "Z": -2703.68 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -806108,10 +805491,10 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 24, - "Coding LOC": 19, + "Total LOC": 8, + "Coding LOC": 3, "Documentation LOC": 4, - "Structural Magnitude": 2.18, + "Structural Magnitude": 2.16, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -806121,43 +805504,43 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", - "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.33%", - "API Exposure": "0.0%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "2.31%", + "API Exposure": "3.53%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", + "Documentation Exposure": "16.56%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "GRANT", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 15, + "Function Name": "Unknown_Block", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 9, - "End Line": 23 + "Start Line": 7, + "End Line": 7 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 6, + "Sequential Logic Declarations": 1, "Function Parameters": 0, "Function/Method Declarations": 1, - "Class/Entity Declarations": 1, + "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 7, - "Exposed API / Public Exports": 0, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -806171,7 +805554,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -806183,7 +805566,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 2, + "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -806196,7 +805579,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 6, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -806213,15 +805596,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 8, + "Core Var Decl": 2, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 8, + "Design Upper Case": 2, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -806229,7 +805612,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 2, + "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -806238,7 +805621,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -806247,18 +805630,18 @@ "8. Dependency Network": { "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 + "Total Upstream (Absolute Fragility)": 1, + "Total Downstream (Absolute Dependency Blast Radius)": 2 }, "9. Extracted Dependencies": [ - "DSNC10.PROCLIB", - "DSNC10.SDSNLOAD" + "CBSA.CICSBSA.BUILDJCL", + "DEFAULT" ] }, - "jcl/cics-banking-sample-application-cbsa/CREI301.jcl": { + "jcl/cics-banking-sample-application-cbsa/DROPDB2.jcl": { "1. Artifact Identity": { - "Filename": "CREI301.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/CREI301.jcl", + "Filename": "DROPDB2.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/DROPDB2.jcl", "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Spaces", @@ -806268,9 +805651,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 1169.24, - "Y": 46.66, - "Z": -1983.58 + "X": 188.48, + "Y": 54.46, + "Z": -2855.26 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -806279,10 +805662,10 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 24, - "Coding LOC": 19, + "Total LOC": 39, + "Coding LOC": 29, "Documentation LOC": 4, - "Structural Magnitude": 2.18, + "Structural Magnitude": 3.08, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -806294,7 +805677,7 @@ "Cognitive Load Exposure": "0.0%", "Error & Exception Exposure": "76.85%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.33%", + "Testing Exposure": "2.34%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -806308,13 +805691,13 @@ "5. Function Analysis": [ { "Function Name": "GRANT", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 15, + "Structural Impact": 2.5, + "Lines of Code (LOC)": 30, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", "Start Line": 9, - "End Line": 23 + "End Line": 38 } ], "6. Contextual Mitigations & Amplifications": "None Detected", @@ -806336,7 +805719,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -806426,22 +805809,22 @@ "DSNC10.SDSNLOAD" ] }, - "jcl/cics-banking-sample-application-cbsa/CREL001.jcl": { + "jcl/cics-banking-sample-application-cbsa/DRPDB00.jcl": { "1. Artifact Identity": { - "Filename": "CREL001.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/CREL001.jcl", + "Filename": "DRPDB00.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/DRPDB00.jcl", "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, "Folder Dominant Lang": "jcl", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 588.86, - "Y": 100.45, - "Z": -2673.81 + "X": -909.98, + "Y": 119.16, + "Z": -2213.4 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -806450,12 +805833,12 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 26, - "Coding LOC": 11, - "Documentation LOC": 14, - "Structural Magnitude": 4.72, + "Total LOC": 22, + "Coding LOC": 17, + "Documentation LOC": 4, + "Structural Magnitude": 1.94, "Control Flow Ratio": "0.0%", - "Popularity Rank": 1, + "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, @@ -806463,61 +805846,51 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "86.83%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.36%", - "API Exposure": "5.59%", + "Error & Exception Exposure": "76.85%", + "Tech Debt Exposure": "73.11%", + "Testing Exposure": "2.33%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "23.15%", + "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "17.99%", + "Documentation Exposure": "0.0%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "STEP10", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 11, - "End Line": 16 - }, - { - "Function Name": "STEP20", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, + "Function Name": "GRANT", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 13, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 20, - "End Line": 24 + "Start Line": 9, + "End Line": 21 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 5, + "Sequential Logic Declarations": 6, "Function Parameters": 0, - "Function/Method Declarations": 2, - "Class/Entity Declarations": 0, + "Function/Method Declarations": 1, + "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 2, - "I/O and Network Boundaries": 5, - "Exposed API / Public Exports": 2, + "High-Risk Execution Commands": 1, + "I/O and Network Boundaries": 7, + "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, - "Commented-out Code (Dead Logic)": 1, + "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -806535,7 +805908,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 2, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -806548,7 +805921,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 4, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -806565,15 +805938,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 9, + "Core Var Decl": 8, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 9, + "Design Upper Case": 8, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -806581,7 +805954,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, + "Dynamic Code Execution (Eval/Exec)": 2, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -806590,7 +805963,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 2, + "Sec Tainted Injection": 1, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -806598,31 +805971,31 @@ }, "8. Dependency Network": { "Direct Upstream (Fragility)": 2, - "Direct Downstream (Dependency Blast Radius)": 1, + "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 1 + "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "&HLQ..CICSBSA.BUILDJCL", - "&HLQ..CICSBSA.BUILDJCL(EMPTY)" + "DSNC10.PROCLIB", + "DSNC10.SDSNLOAD" ] }, - "jcl/cics-banking-sample-application-cbsa/CREL002.jcl": { + "jcl/cics-banking-sample-application-cbsa/DRPI101.jcl": { "1. Artifact Identity": { - "Filename": "CREL002.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/CREL002.jcl", + "Filename": "DRPI101.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/DRPI101.jcl", "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, "Folder Dominant Lang": "jcl", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -216.03, - "Y": 80.65, - "Z": -2972.83 + "X": 1109.99, + "Y": 22.41, + "Z": -3192.15 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -806631,12 +806004,12 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 17, - "Coding LOC": 6, - "Documentation LOC": 10, - "Structural Magnitude": 2.42, + "Total LOC": 22, + "Coding LOC": 17, + "Documentation LOC": 4, + "Structural Magnitude": 1.94, "Control Flow Ratio": "0.0%", - "Popularity Rank": 1, + "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, @@ -806645,50 +806018,50 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", "Error & Exception Exposure": "76.85%", - "Tech Debt Exposure": "0.0%", + "Tech Debt Exposure": "73.11%", "Testing Exposure": "2.33%", - "API Exposure": "3.53%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "23.15%", + "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "13.01%", + "Documentation Exposure": "0.0%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "STEP10", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, + "Function Name": "GRANT", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 13, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 11, - "End Line": 16 + "Start Line": 9, + "End Line": 21 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 1, + "Sequential Logic Declarations": 6, "Function Parameters": 0, "Function/Method Declarations": 1, - "Class/Entity Declarations": 0, + "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 1, - "Exposed API / Public Exports": 1, + "I/O and Network Boundaries": 7, + "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, - "Commented-out Code (Dead Logic)": 1, + "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -806706,7 +806079,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 2, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -806719,7 +806092,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 4, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -806736,15 +806109,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 6, + "Core Var Decl": 8, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 6, + "Design Upper Case": 8, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -806752,7 +806125,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, + "Dynamic Code Execution (Eval/Exec)": 2, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -806768,31 +806141,32 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 1, - "Direct Downstream (Dependency Blast Radius)": 1, + "Direct Upstream (Fragility)": 2, + "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 1 + "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "&HLQ..CICSBSA.ADATA" + "DSNC10.PROCLIB", + "DSNC10.SDSNLOAD" ] }, - "jcl/cics-banking-sample-application-cbsa/CREL003.jcl": { + "jcl/cics-banking-sample-application-cbsa/DRPI201.jcl": { "1. Artifact Identity": { - "Filename": "CREL003.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/CREL003.jcl", + "Filename": "DRPI201.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/DRPI201.jcl", "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, "Folder Dominant Lang": "jcl", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 1092.93, - "Y": 56.25, - "Z": -2114.71 + "X": 345.74, + "Y": 83.0, + "Z": -971.07 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -806801,12 +806175,12 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 17, - "Coding LOC": 6, - "Documentation LOC": 10, - "Structural Magnitude": 2.42, + "Total LOC": 22, + "Coding LOC": 17, + "Documentation LOC": 4, + "Structural Magnitude": 1.94, "Control Flow Ratio": "0.0%", - "Popularity Rank": 1, + "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, @@ -806815,50 +806189,50 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", "Error & Exception Exposure": "76.85%", - "Tech Debt Exposure": "0.0%", + "Tech Debt Exposure": "73.11%", "Testing Exposure": "2.33%", - "API Exposure": "3.53%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "23.15%", + "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "13.01%", + "Documentation Exposure": "0.0%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "STEP10", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, + "Function Name": "GRANT", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 13, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 11, - "End Line": 16 + "Start Line": 9, + "End Line": 21 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 1, + "Sequential Logic Declarations": 6, "Function Parameters": 0, "Function/Method Declarations": 1, - "Class/Entity Declarations": 0, + "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 1, - "Exposed API / Public Exports": 1, + "I/O and Network Boundaries": 7, + "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, - "Commented-out Code (Dead Logic)": 1, + "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -806876,7 +806250,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 2, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -806889,7 +806263,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 4, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -806906,15 +806280,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 6, + "Core Var Decl": 8, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 6, + "Design Upper Case": 8, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -806922,7 +806296,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, + "Dynamic Code Execution (Eval/Exec)": 2, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -806938,31 +806312,32 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 1, - "Direct Downstream (Dependency Blast Radius)": 1, + "Direct Upstream (Fragility)": 2, + "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 1 + "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "&HLQ..CICSBSA.LOADLIB" + "DSNC10.PROCLIB", + "DSNC10.SDSNLOAD" ] }, - "jcl/cics-banking-sample-application-cbsa/CREL004.jcl": { + "jcl/cics-banking-sample-application-cbsa/DRPI301.jcl": { "1. Artifact Identity": { - "Filename": "CREL004.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/CREL004.jcl", + "Filename": "DRPI301.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/DRPI301.jcl", "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, "Folder Dominant Lang": "jcl", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -451.35, - "Y": 112.62, - "Z": -1617.25 + "X": -574.1, + "Y": 112.18, + "Z": -3081.56 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -806971,12 +806346,12 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 17, - "Coding LOC": 6, - "Documentation LOC": 10, - "Structural Magnitude": 2.42, + "Total LOC": 22, + "Coding LOC": 17, + "Documentation LOC": 4, + "Structural Magnitude": 1.94, "Control Flow Ratio": "0.0%", - "Popularity Rank": 1, + "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, @@ -806985,50 +806360,50 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", "Error & Exception Exposure": "76.85%", - "Tech Debt Exposure": "0.0%", + "Tech Debt Exposure": "73.11%", "Testing Exposure": "2.33%", - "API Exposure": "3.53%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "23.15%", + "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "13.01%", + "Documentation Exposure": "0.0%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "STEP10", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, + "Function Name": "GRANT", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 13, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 11, - "End Line": 16 + "Start Line": 9, + "End Line": 21 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 1, + "Sequential Logic Declarations": 6, "Function Parameters": 0, "Function/Method Declarations": 1, - "Class/Entity Declarations": 0, + "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 1, - "Exposed API / Public Exports": 1, + "I/O and Network Boundaries": 7, + "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, - "Commented-out Code (Dead Logic)": 1, + "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -807046,7 +806421,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 2, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -807059,7 +806434,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 4, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -807076,15 +806451,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 6, + "Core Var Decl": 8, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 6, + "Design Upper Case": 8, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -807092,7 +806467,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, + "Dynamic Code Execution (Eval/Exec)": 2, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -807108,31 +806483,32 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 1, - "Direct Downstream (Dependency Blast Radius)": 1, + "Direct Upstream (Fragility)": 2, + "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 1 + "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "&HLQ..CICSBSA.DBRM" + "DSNC10.PROCLIB", + "DSNC10.SDSNLOAD" ] }, - "jcl/cics-banking-sample-application-cbsa/CREL005.jcl": { + "jcl/cics-banking-sample-application-cbsa/DRPSG01.jcl": { "1. Artifact Identity": { - "Filename": "CREL005.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/CREL005.jcl", + "Filename": "DRPSG01.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/DRPSG01.jcl", "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, "Folder Dominant Lang": "jcl", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 435.07, - "Y": 116.14, - "Z": -3235.9 + "X": 1516.43, + "Y": 72.69, + "Z": -2314.29 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -807141,12 +806517,12 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 17, - "Coding LOC": 6, - "Documentation LOC": 10, - "Structural Magnitude": 2.42, + "Total LOC": 22, + "Coding LOC": 17, + "Documentation LOC": 4, + "Structural Magnitude": 1.94, "Control Flow Ratio": "0.0%", - "Popularity Rank": 1, + "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, @@ -807155,50 +806531,50 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", "Error & Exception Exposure": "76.85%", - "Tech Debt Exposure": "0.0%", + "Tech Debt Exposure": "73.11%", "Testing Exposure": "2.33%", - "API Exposure": "3.53%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "23.15%", + "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "13.01%", + "Documentation Exposure": "0.0%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "STEP10", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, + "Function Name": "GRANT", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 13, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 11, - "End Line": 16 + "Start Line": 9, + "End Line": 21 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 1, + "Sequential Logic Declarations": 6, "Function Parameters": 0, "Function/Method Declarations": 1, - "Class/Entity Declarations": 0, + "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 1, - "Exposed API / Public Exports": 1, + "I/O and Network Boundaries": 7, + "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, - "Commented-out Code (Dead Logic)": 1, + "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -807216,7 +806592,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 2, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -807229,7 +806605,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 4, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -807246,15 +806622,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 6, + "Core Var Decl": 8, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 6, + "Design Upper Case": 8, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -807262,7 +806638,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, + "Dynamic Code Execution (Eval/Exec)": 2, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -807277,213 +806653,33 @@ "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, - "8. Dependency Network": { - "Direct Upstream (Fragility)": 1, - "Direct Downstream (Dependency Blast Radius)": 1, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 1 - }, - "9. Extracted Dependencies": [ - "&HLQ..CICSBSA.LKED" - ] - }, - "jcl/cics-banking-sample-application-cbsa/CREL006.jcl": { - "1. Artifact Identity": { - "Filename": "CREL006.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/CREL006.jcl", - "Language": "Jcl", - "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" - }, - "2. Topological Coordinates": { - "X": 466.79, - "Y": 36.17, - "Z": -1638.64 - }, - "3. Architectural Profile": { - "Repository Archetype": "Unclassified", - "Repository Drift (Z-Score)": 0.0, - "Repository Fingerprint": {}, - "File Archetype": null, - "File Drift (Z-Score)": 0.0, - "File Fingerprint": {}, - "Total LOC": 26, - "Coding LOC": 11, - "Documentation LOC": 14, - "Structural Magnitude": 4.72, - "Control Flow Ratio": "0.0%", - "Popularity Rank": 1, - "Raw Churn Frequency": 0.0, - "Authorship Centralization": 0.0, - "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.0 - }, - "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "86.83%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.36%", - "API Exposure": "5.59%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "23.15%", - "Specification Exposure": "100.0%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "17.99%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "5. Function Analysis": [ - { - "Function Name": "STEP10", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 11, - "End Line": 16 - }, - { - "Function Name": "STEP20", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 20, - "End Line": 24 - } - ], - "6. Contextual Mitigations & Amplifications": "None Detected", - "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 5, - "Function Parameters": 0, - "Function/Method Declarations": 2, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 2, - "I/O and Network Boundaries": 5, - "Exposed API / Public Exports": 2, - "State Mutations / Variable Reassignments": 0, - "Commented-out Code (Dead Logic)": 1, - "Structured Documentation Blocks": 0, - "Unit Test Assertions": 0, - "Asynchronous/Concurrent Execution": 0, - "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, - "Decorators and Annotations": 0, - "Generic Type Abstractions": 0, - "Collection Iterators / Comprehensions": 0, - "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, - "Authorship Metadata": 0, - "Planned Work (TODOs)": 0, - "Acknowledged Tech Debt (FIXMEs)": 0, - "Specification Traceability Tags": 0, - "Server-Side Rendering Contexts": 0, - "Event Publishers / Emitters": 0, - "Dependency Injection Constructs": 0, - "Preprocessor Macros": 0, - "Pointer Arithmetic & Addressing": 0, - "Manual Memory Allocation": 0, - "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, - "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 0, - "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 0, - "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 0, - "Event Listeners & Subscribers": 0, - "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, - "Hardware Bridge": 0, - "Cryptography": 0, - "Auth Middleware": 0, - "Ipc Rpc Bridges": 0, - "Feature Flags": 0, - "Serialization Parsing": 0, - "Regex Execution": 0, - "Time Date Logic": 0, - "Cloud LLM API Integrations": 0, - "AI Orchestration Frameworks": 0, - "Vector Databases (RAG)": 0, - "Local Inference & Tensor Math": 0, - "Traditional Machine Learning (Stats/Trees)": 0, - "Deep Learning & Neural Networks": 0, - "Lazy Evaluation & Generators (O(1) Memory)": 0, - "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 9, - "Design Camel Case": 0, - "Design Snake Case": 0, - "Design Pascal Case": 0, - "Design Upper Case": 9, - "Design Short Vars": 0, - "Design Long Vars": 0, - "Duplicate Logic": 0, - "Orphaned Logic": 0, - "Instructional Code Examples": 0, - "Architectural Diagrams (Mermaid/PlantUML)": 0, - "Structured Literature Headers": 0, - "Hyperlinked Literature References": 0, - "High-Entropy / Obfuscated Logic": 0, - "Safety & Constraint Bypasses": 0, - "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, - "Global Environment Mutation": 0, - "Commented-Out Executable Logic": 0, - "Low-Level Bitwise / Cryptographic Math": 0, - "Non-Standard / Steganographic Imports": 0, - "Non-Standard Unicode / Homoglyphs": 0, - "Embedded Credentials & Keys": 0, - "Sec Extension Mismatch": 0, - "Sec Entropy": 0, - "Sec Tainted Injection": 2, - "Prompt Injection": 0, - "Agentic Rce": 0, - "Invisible Unicode Payload Smuggling": 0, - "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 - }, "8. Dependency Network": { "Direct Upstream (Fragility)": 2, - "Direct Downstream (Dependency Blast Radius)": 1, + "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 1 + "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "&HLQ..CICSBSA.BMS", - "&HLQ..CICSBSA.BMS(EMPTY)" + "DSNC10.PROCLIB", + "DSNC10.SDSNLOAD" ] }, - "jcl/cics-banking-sample-application-cbsa/CREL007.jcl": { + "jcl/cics-banking-sample-application-cbsa/DRPSG02.jcl": { "1. Artifact Identity": { - "Filename": "CREL007.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/CREL007.jcl", + "Filename": "DRPSG02.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/DRPSG02.jcl", "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, "Folder Dominant Lang": "jcl", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 715.31, - "Y": 46.2, - "Z": -1657.73 + "X": -682.4, + "Y": 109.0, + "Z": -1343.32 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -807492,12 +806688,12 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 17, - "Coding LOC": 6, - "Documentation LOC": 10, - "Structural Magnitude": 2.42, + "Total LOC": 22, + "Coding LOC": 17, + "Documentation LOC": 4, + "Structural Magnitude": 1.94, "Control Flow Ratio": "0.0%", - "Popularity Rank": 1, + "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, @@ -807506,50 +806702,50 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", "Error & Exception Exposure": "76.85%", - "Tech Debt Exposure": "0.0%", + "Tech Debt Exposure": "73.11%", "Testing Exposure": "2.33%", - "API Exposure": "3.53%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "23.15%", + "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "13.01%", + "Documentation Exposure": "0.0%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "STEP10", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, + "Function Name": "GRANT", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 13, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 11, - "End Line": 16 + "Start Line": 9, + "End Line": 21 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 1, + "Sequential Logic Declarations": 6, "Function Parameters": 0, "Function/Method Declarations": 1, - "Class/Entity Declarations": 0, + "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 1, - "Exposed API / Public Exports": 1, + "I/O and Network Boundaries": 7, + "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, - "Commented-out Code (Dead Logic)": 1, + "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -807567,7 +806763,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 2, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -807580,7 +806776,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 4, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -807597,15 +806793,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 6, + "Core Var Decl": 8, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 6, + "Design Upper Case": 8, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -807613,7 +806809,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, + "Dynamic Code Execution (Eval/Exec)": 2, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -807629,31 +806825,32 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 1, - "Direct Downstream (Dependency Blast Radius)": 1, + "Direct Upstream (Fragility)": 2, + "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 1 + "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "&HLQ..CICSBSA.DEBUG" + "DSNC10.PROCLIB", + "DSNC10.SDSNLOAD" ] }, - "jcl/cics-banking-sample-application-cbsa/CREL008.jcl": { + "jcl/cics-banking-sample-application-cbsa/DRPSG03.jcl": { "1. Artifact Identity": { - "Filename": "CREL008.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/CREL008.jcl", + "Filename": "DRPSG03.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/DRPSG03.jcl", "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, "Folder Dominant Lang": "jcl", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -543.32, - "Y": 98.52, - "Z": -2681.46 + "X": 485.98, + "Y": 63.84, + "Z": -3412.64 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -807662,12 +806859,12 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 17, - "Coding LOC": 6, - "Documentation LOC": 10, - "Structural Magnitude": 2.42, + "Total LOC": 22, + "Coding LOC": 17, + "Documentation LOC": 4, + "Structural Magnitude": 1.94, "Control Flow Ratio": "0.0%", - "Popularity Rank": 1, + "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, @@ -807676,50 +806873,50 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", "Error & Exception Exposure": "76.85%", - "Tech Debt Exposure": "0.0%", + "Tech Debt Exposure": "73.11%", "Testing Exposure": "2.33%", - "API Exposure": "3.53%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "23.15%", + "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "13.01%", + "Documentation Exposure": "0.0%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "STEP10", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, + "Function Name": "GRANT", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 13, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 11, - "End Line": 16 + "Start Line": 9, + "End Line": 21 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 1, + "Sequential Logic Declarations": 6, "Function Parameters": 0, "Function/Method Declarations": 1, - "Class/Entity Declarations": 0, + "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 1, - "Exposed API / Public Exports": 1, + "I/O and Network Boundaries": 7, + "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, - "Commented-out Code (Dead Logic)": 1, + "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -807737,7 +806934,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 2, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -807750,7 +806947,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 4, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -807767,15 +806964,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 6, + "Core Var Decl": 8, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 6, + "Design Upper Case": 8, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -807783,7 +806980,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, + "Dynamic Code Execution (Eval/Exec)": 2, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -807799,31 +806996,32 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 1, - "Direct Downstream (Dependency Blast Radius)": 1, + "Direct Upstream (Fragility)": 2, + "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 1 + "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "&HLQ..CICSBSA.CBSAMOD" + "DSNC10.PROCLIB", + "DSNC10.SDSNLOAD" ] }, - "jcl/cics-banking-sample-application-cbsa/CREL009.jcl": { + "jcl/cics-banking-sample-application-cbsa/DRPTB01.jcl": { "1. Artifact Identity": { - "Filename": "CREL009.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/CREL009.jcl", + "Filename": "DRPTB01.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/DRPTB01.jcl", "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, "Folder Dominant Lang": "jcl", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -304.12, - "Y": 127.88, - "Z": -2457.52 + "X": 1052.61, + "Y": 34.94, + "Z": -1063.94 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -807832,12 +807030,12 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 26, - "Coding LOC": 11, - "Documentation LOC": 14, - "Structural Magnitude": 4.72, + "Total LOC": 22, + "Coding LOC": 17, + "Documentation LOC": 4, + "Structural Magnitude": 1.94, "Control Flow Ratio": "0.0%", - "Popularity Rank": 1, + "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, @@ -807845,61 +807043,51 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "86.83%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.36%", - "API Exposure": "5.59%", + "Error & Exception Exposure": "76.85%", + "Tech Debt Exposure": "73.11%", + "Testing Exposure": "2.33%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "23.15%", + "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "17.99%", + "Documentation Exposure": "0.0%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "STEP10", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 11, - "End Line": 16 - }, - { - "Function Name": "STEP20", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, + "Function Name": "GRANT", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 13, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 20, - "End Line": 24 + "Start Line": 9, + "End Line": 21 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 5, + "Sequential Logic Declarations": 6, "Function Parameters": 0, - "Function/Method Declarations": 2, - "Class/Entity Declarations": 0, + "Function/Method Declarations": 1, + "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 2, - "I/O and Network Boundaries": 5, - "Exposed API / Public Exports": 2, + "High-Risk Execution Commands": 1, + "I/O and Network Boundaries": 7, + "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, - "Commented-out Code (Dead Logic)": 1, + "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -807917,7 +807105,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 2, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -807930,7 +807118,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 4, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -807947,15 +807135,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 9, + "Core Var Decl": 8, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 9, + "Design Upper Case": 8, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -807963,7 +807151,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, + "Dynamic Code Execution (Eval/Exec)": 2, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -807972,7 +807160,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 2, + "Sec Tainted Injection": 1, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -807980,31 +807168,31 @@ }, "8. Dependency Network": { "Direct Upstream (Fragility)": 2, - "Direct Downstream (Dependency Blast Radius)": 1, + "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 1 + "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "&HLQ..CICSBSA.COBOL", - "&HLQ..CICSBSA.COBOL(EMPTY)" + "DSNC10.PROCLIB", + "DSNC10.SDSNLOAD" ] }, - "jcl/cics-banking-sample-application-cbsa/CREL010.jcl": { + "jcl/cics-banking-sample-application-cbsa/DRPTB02.jcl": { "1. Artifact Identity": { - "Filename": "CREL010.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/CREL010.jcl", + "Filename": "DRPTB02.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/DRPTB02.jcl", "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, "Folder Dominant Lang": "jcl", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 985.36, - "Y": 70.7, - "Z": -2411.44 + "X": -976.36, + "Y": 107.54, + "Z": -2590.86 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -808013,12 +807201,12 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 26, - "Coding LOC": 11, - "Documentation LOC": 14, - "Structural Magnitude": 4.72, + "Total LOC": 22, + "Coding LOC": 17, + "Documentation LOC": 4, + "Structural Magnitude": 1.94, "Control Flow Ratio": "0.0%", - "Popularity Rank": 1, + "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, @@ -808026,61 +807214,51 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "86.83%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.36%", - "API Exposure": "5.59%", + "Error & Exception Exposure": "76.85%", + "Tech Debt Exposure": "73.11%", + "Testing Exposure": "2.33%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "23.15%", + "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "17.99%", + "Documentation Exposure": "0.0%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "STEP10", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 11, - "End Line": 16 - }, - { - "Function Name": "STEP20", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, + "Function Name": "GRANT", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 13, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 20, - "End Line": 24 + "Start Line": 9, + "End Line": 21 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 5, + "Sequential Logic Declarations": 6, "Function Parameters": 0, - "Function/Method Declarations": 2, - "Class/Entity Declarations": 0, + "Function/Method Declarations": 1, + "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 2, - "I/O and Network Boundaries": 5, - "Exposed API / Public Exports": 2, + "High-Risk Execution Commands": 1, + "I/O and Network Boundaries": 7, + "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, - "Commented-out Code (Dead Logic)": 1, + "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -808098,7 +807276,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 2, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -808111,7 +807289,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 4, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -808128,15 +807306,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 9, + "Core Var Decl": 8, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 9, + "Design Upper Case": 8, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -808144,7 +807322,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, + "Dynamic Code Execution (Eval/Exec)": 2, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -808153,7 +807331,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 2, + "Sec Tainted Injection": 1, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -808161,31 +807339,31 @@ }, "8. Dependency Network": { "Direct Upstream (Fragility)": 2, - "Direct Downstream (Dependency Blast Radius)": 1, + "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 1 + "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "&HLQ..CICSBSA.DSECT", - "&HLQ..CICSBSA.DSECT(EMPTY)" + "DSNC10.PROCLIB", + "DSNC10.SDSNLOAD" ] }, - "jcl/cics-banking-sample-application-cbsa/CREL011.jcl": { + "jcl/cics-banking-sample-application-cbsa/DRPTB03.jcl": { "1. Artifact Identity": { - "Filename": "CREL011.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/CREL011.jcl", + "Filename": "DRPTB03.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/DRPTB03.jcl", "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, "Folder Dominant Lang": "jcl", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -88.51, - "Y": 44.48, - "Z": -1834.54 + "X": 1379.06, + "Y": 74.55, + "Z": -2931.56 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -808194,12 +807372,12 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 26, - "Coding LOC": 11, - "Documentation LOC": 14, - "Structural Magnitude": 4.72, + "Total LOC": 22, + "Coding LOC": 17, + "Documentation LOC": 4, + "Structural Magnitude": 1.94, "Control Flow Ratio": "0.0%", - "Popularity Rank": 1, + "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, @@ -808207,61 +807385,51 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "86.83%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.36%", - "API Exposure": "5.59%", + "Error & Exception Exposure": "76.85%", + "Tech Debt Exposure": "73.11%", + "Testing Exposure": "2.33%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "23.15%", + "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "17.99%", + "Documentation Exposure": "0.0%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "STEP10", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 11, - "End Line": 16 - }, - { - "Function Name": "STEP20", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, + "Function Name": "GRANT", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 13, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 20, - "End Line": 24 + "Start Line": 9, + "End Line": 21 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 5, + "Sequential Logic Declarations": 6, "Function Parameters": 0, - "Function/Method Declarations": 2, - "Class/Entity Declarations": 0, + "Function/Method Declarations": 1, + "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 2, - "I/O and Network Boundaries": 5, - "Exposed API / Public Exports": 2, + "High-Risk Execution Commands": 1, + "I/O and Network Boundaries": 7, + "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, - "Commented-out Code (Dead Logic)": 1, + "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -808279,7 +807447,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 2, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -808292,7 +807460,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 4, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -808309,15 +807477,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 9, + "Core Var Decl": 8, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 9, + "Design Upper Case": 8, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -808325,7 +807493,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, + "Dynamic Code Execution (Eval/Exec)": 2, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -808334,7 +807502,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 2, + "Sec Tainted Injection": 1, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -808342,31 +807510,31 @@ }, "8. Dependency Network": { "Direct Upstream (Fragility)": 2, - "Direct Downstream (Dependency Blast Radius)": 1, + "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 1 + "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "&HLQ..CICSBSA.REORG", - "&HLQ..CICSBSA.REORG(EMPTY)" + "DSNC10.PROCLIB", + "DSNC10.SDSNLOAD" ] }, - "jcl/cics-banking-sample-application-cbsa/CRELIBS.jcl": { + "jcl/cics-banking-sample-application-cbsa/DRPTS01.jcl": { "1. Artifact Identity": { - "Filename": "CRELIBS.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/CRELIBS.jcl", + "Filename": "DRPTS01.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/DRPTS01.jcl", "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, "Folder Dominant Lang": "jcl", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -440.0, - "Y": 85.04, - "Z": -2105.85 + "X": -105.47, + "Y": 83.15, + "Z": -881.33 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -808375,10 +807543,10 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 21, - "Coding LOC": 16, + "Total LOC": 22, + "Coding LOC": 17, "Documentation LOC": 4, - "Structural Magnitude": 2.92, + "Structural Magnitude": 1.94, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -808388,12 +807556,12 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "78.34%", - "Tech Debt Exposure": "0.0%", + "Error & Exception Exposure": "76.85%", + "Tech Debt Exposure": "73.11%", "Testing Exposure": "2.33%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "16.8%", + "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", @@ -808403,42 +807571,42 @@ }, "5. Function Analysis": [ { - "Function Name": "IEFBR14", + "Function Name": "GRANT", "Structural Impact": 1.6, "Lines of Code (LOC)": 13, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 8, - "End Line": 20 + "Start Line": 9, + "End Line": 21 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 13, + "Sequential Logic Declarations": 6, "Function Parameters": 0, "Function/Method Declarations": 1, "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 0, + "I/O and Network Boundaries": 7, "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 1, + "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 12, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -808450,7 +807618,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 2, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -808463,7 +807631,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 4, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -808480,15 +807648,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 15, + "Core Var Decl": 8, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 15, + "Design Upper Case": 8, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -808496,7 +807664,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, + "Dynamic Code Execution (Eval/Exec)": 2, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -808505,38 +807673,27 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 0, + "Sec Tainted Injection": 1, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 13, + "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 12, + "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "CBSA.JCL.INSTALL", - "CREDB2L", - "CREL001", - "CREL002", - "CREL003", - "CREL004", - "CREL005", - "CREL006", - "CREL007", - "CREL008", - "CREL009", - "CREL010", - "CREL011" + "DSNC10.PROCLIB", + "DSNC10.SDSNLOAD" ] }, - "jcl/cics-banking-sample-application-cbsa/CRESG01.jcl": { + "jcl/cics-banking-sample-application-cbsa/DRPTS02.jcl": { "1. Artifact Identity": { - "Filename": "CRESG01.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/CRESG01.jcl", + "Filename": "DRPTS02.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/DRPTS02.jcl", "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Spaces", @@ -808546,9 +807703,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 725.53, - "Y": 47.35, - "Z": -1122.6 + "X": -237.94, + "Y": 77.49, + "Z": -3583.87 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -808614,7 +807771,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -808704,10 +807861,10 @@ "DSNC10.SDSNLOAD" ] }, - "jcl/cics-banking-sample-application-cbsa/CRESG02.jcl": { + "jcl/cics-banking-sample-application-cbsa/DRPTS03.jcl": { "1. Artifact Identity": { - "Filename": "CRESG02.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/CRESG02.jcl", + "Filename": "DRPTS03.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/DRPTS03.jcl", "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Spaces", @@ -808717,9 +807874,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -786.89, - "Y": 59.34, - "Z": -2709.34 + "X": 1531.21, + "Y": 49.67, + "Z": -1896.39 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -808785,7 +807942,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -808875,22 +808032,22 @@ "DSNC10.SDSNLOAD" ] }, - "jcl/cics-banking-sample-application-cbsa/CRESG03.jcl": { + "jcl/cics-banking-sample-application-cbsa/EXTDCUST.jcl": { "1. Artifact Identity": { - "Filename": "CRESG03.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/CRESG03.jcl", + "Filename": "EXTDCUST.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/EXTDCUST.jcl", "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, "Folder Dominant Lang": "jcl", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 1411.36, - "Y": 32.74, - "Z": -2489.64 + "X": -1229.41, + "Y": 139.06, + "Z": -1697.25 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -808899,10 +808056,10 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 22, - "Coding LOC": 17, + "Total LOC": 8, + "Coding LOC": 3, "Documentation LOC": 4, - "Structural Magnitude": 1.94, + "Structural Magnitude": 1.16, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -808912,9 +808069,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.33%", + "Testing Exposure": "2.31%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -808927,27 +808084,27 @@ }, "5. Function Analysis": [ { - "Function Name": "GRANT", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 13, + "Function Name": "Unknown_Block", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 9, - "End Line": 21 + "Start Line": 7, + "End Line": 7 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 6, + "Sequential Logic Declarations": 1, "Function Parameters": 0, "Function/Method Declarations": 1, - "Class/Entity Declarations": 1, + "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 7, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -808962,7 +808119,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -808974,7 +808131,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 2, + "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -808987,7 +808144,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 4, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -809004,11 +808161,11 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 8, + "Core Var Decl": 2, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 8, + "Design Upper Case": 2, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, @@ -809020,7 +808177,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 2, + "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -809029,7 +808186,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -809038,30 +808195,30 @@ "8. Dependency Network": { "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, + "Total Upstream (Absolute Fragility)": 1, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "DSNC10.PROCLIB", - "DSNC10.SDSNLOAD" + "CTSSVT.CICSBSA.BUILDJCL", + "DEFAULT" ] }, - "jcl/cics-banking-sample-application-cbsa/CRETB01.jcl": { + "jcl/cics-banking-sample-application-cbsa/GETCOMPY.jcl": { "1. Artifact Identity": { - "Filename": "CRETB01.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/CRETB01.jcl", + "Filename": "GETCOMPY.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/GETCOMPY.jcl", "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, "Folder Dominant Lang": "jcl", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 895.19, - "Y": 83.44, - "Z": -1831.77 + "X": 1281.4, + "Y": 29.86, + "Z": -2219.06 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -809070,10 +808227,10 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 37, - "Coding LOC": 32, + "Total LOC": 8, + "Coding LOC": 3, "Documentation LOC": 4, - "Structural Magnitude": 3.04, + "Structural Magnitude": 2.16, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -809083,43 +808240,43 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", - "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.34%", - "API Exposure": "0.0%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "2.31%", + "API Exposure": "3.53%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", + "Documentation Exposure": "16.56%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "GRANT", - "Structural Impact": 2.4, - "Lines of Code (LOC)": 28, + "Function Name": "Unknown_Block", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 9, - "End Line": 36 + "Start Line": 7, + "End Line": 7 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 6, + "Sequential Logic Declarations": 1, "Function Parameters": 0, "Function/Method Declarations": 1, - "Class/Entity Declarations": 1, + "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 7, - "Exposed API / Public Exports": 0, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -809133,7 +808290,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -809145,7 +808302,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 2, + "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -809158,7 +808315,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 17, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -809175,15 +808332,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 8, + "Core Var Decl": 2, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 8, + "Design Upper Case": 2, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -809191,7 +808348,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 2, + "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -809200,7 +808357,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -809209,30 +808366,30 @@ "8. Dependency Network": { "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 + "Total Upstream (Absolute Fragility)": 1, + "Total Downstream (Absolute Dependency Blast Radius)": 1 }, "9. Extracted Dependencies": [ - "DSNC10.PROCLIB", - "DSNC10.SDSNLOAD" + "CBSA.CICSBSA.BUILDJCL", + "DEFAULT" ] }, - "jcl/cics-banking-sample-application-cbsa/CRETB02.jcl": { + "jcl/cics-banking-sample-application-cbsa/GETSCODE.jcl": { "1. Artifact Identity": { - "Filename": "CRETB02.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/CRETB02.jcl", + "Filename": "GETSCODE.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/GETSCODE.jcl", "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, "Folder Dominant Lang": "jcl", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 838.39, - "Y": 105.1, - "Z": -2725.7 + "X": -408.31, + "Y": 75.09, + "Z": -1320.71 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -809241,10 +808398,10 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 35, - "Coding LOC": 30, + "Total LOC": 8, + "Coding LOC": 3, "Documentation LOC": 4, - "Structural Magnitude": 2.9, + "Structural Magnitude": 2.16, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -809254,43 +808411,43 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", - "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.34%", - "API Exposure": "0.0%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "2.31%", + "API Exposure": "3.53%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", + "Documentation Exposure": "16.56%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "GRANT", - "Structural Impact": 2.3, - "Lines of Code (LOC)": 26, + "Function Name": "Unknown_Block", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 9, - "End Line": 34 + "Start Line": 7, + "End Line": 7 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 6, + "Sequential Logic Declarations": 1, "Function Parameters": 0, "Function/Method Declarations": 1, - "Class/Entity Declarations": 1, + "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 7, - "Exposed API / Public Exports": 0, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -809304,7 +808461,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -809316,7 +808473,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 2, + "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -809329,7 +808486,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 15, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -809346,15 +808503,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 8, + "Core Var Decl": 2, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 8, + "Design Upper Case": 2, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -809362,7 +808519,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 2, + "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -809371,7 +808528,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -809380,30 +808537,30 @@ "8. Dependency Network": { "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 + "Total Upstream (Absolute Fragility)": 1, + "Total Downstream (Absolute Dependency Blast Radius)": 1 }, "9. Extracted Dependencies": [ - "DSNC10.PROCLIB", - "DSNC10.SDSNLOAD" + "CBSA.CICSBSA.BUILDJCL", + "DEFAULT" ] }, - "jcl/cics-banking-sample-application-cbsa/CRETB03.jcl": { + "jcl/cics-banking-sample-application-cbsa/INQACC.jcl": { "1. Artifact Identity": { - "Filename": "CRETB03.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/CRETB03.jcl", + "Filename": "INQACC.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/INQACC.jcl", "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, "Folder Dominant Lang": "jcl", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 221.12, - "Y": 68.15, - "Z": -1366.65 + "X": 327.12, + "Y": 40.92, + "Z": -3280.65 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -809412,10 +808569,10 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 29, - "Coding LOC": 23, + "Total LOC": 8, + "Coding LOC": 3, "Documentation LOC": 4, - "Structural Magnitude": 2.46, + "Structural Magnitude": 2.16, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -809425,43 +808582,43 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", - "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.34%", - "API Exposure": "0.0%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "2.31%", + "API Exposure": "3.53%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", + "Documentation Exposure": "16.56%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "GRANT", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 20, + "Function Name": "Unknown_Block", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 9, - "End Line": 28 + "Start Line": 7, + "End Line": 7 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 6, + "Sequential Logic Declarations": 1, "Function Parameters": 0, "Function/Method Declarations": 1, - "Class/Entity Declarations": 1, + "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 7, - "Exposed API / Public Exports": 0, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -809475,7 +808632,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -809487,7 +808644,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 2, + "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -809500,7 +808657,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 8, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -809517,15 +808674,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 8, + "Core Var Decl": 2, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 8, + "Design Upper Case": 2, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -809533,7 +808690,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 2, + "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -809542,7 +808699,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -809551,30 +808708,30 @@ "8. Dependency Network": { "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 + "Total Upstream (Absolute Fragility)": 1, + "Total Downstream (Absolute Dependency Blast Radius)": 2 }, "9. Extracted Dependencies": [ - "DSNC10.PROCLIB", - "DSNC10.SDSNLOAD" + "CBSA.CICSBSA.BUILDJCL", + "DEFAULT" ] }, - "jcl/cics-banking-sample-application-cbsa/CRETS01.jcl": { + "jcl/cics-banking-sample-application-cbsa/INQACCCU.jcl": { "1. Artifact Identity": { - "Filename": "CRETS01.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/CRETS01.jcl", + "Filename": "INQACCCU.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/INQACCCU.jcl", "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, "Folder Dominant Lang": "jcl", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -330.93, - "Y": 47.69, - "Z": -1135.36 + "X": 980.0, + "Y": 17.53, + "Z": -1560.12 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -809583,10 +808740,10 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 22, - "Coding LOC": 17, + "Total LOC": 8, + "Coding LOC": 3, "Documentation LOC": 4, - "Structural Magnitude": 1.94, + "Structural Magnitude": 2.16, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -809596,43 +808753,43 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", - "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.33%", - "API Exposure": "0.0%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "2.31%", + "API Exposure": "3.53%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", + "Documentation Exposure": "16.56%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "GRANT", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 13, + "Function Name": "Unknown_Block", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 9, - "End Line": 21 + "Start Line": 7, + "End Line": 7 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 6, + "Sequential Logic Declarations": 1, "Function Parameters": 0, "Function/Method Declarations": 1, - "Class/Entity Declarations": 1, + "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 7, - "Exposed API / Public Exports": 0, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -809646,7 +808803,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -809658,7 +808815,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 2, + "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -809671,7 +808828,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 4, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -809688,15 +808845,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 8, + "Core Var Decl": 2, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 8, + "Design Upper Case": 2, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -809704,7 +808861,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 2, + "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -809713,7 +808870,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -809722,30 +808879,30 @@ "8. Dependency Network": { "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 + "Total Upstream (Absolute Fragility)": 1, + "Total Downstream (Absolute Dependency Blast Radius)": 4 }, "9. Extracted Dependencies": [ - "DSNC10.PROCLIB", - "DSNC10.SDSNLOAD" + "CBSA.CICSBSA.BUILDJCL", + "DEFAULT" ] }, - "jcl/cics-banking-sample-application-cbsa/CRETS02.jcl": { + "jcl/cics-banking-sample-application-cbsa/INQCUST.jcl": { "1. Artifact Identity": { - "Filename": "CRETS02.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/CRETS02.jcl", + "Filename": "INQCUST.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/INQCUST.jcl", "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, "Folder Dominant Lang": "jcl", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 48.29, - "Y": 114.88, - "Z": -3296.64 + "X": -800.75, + "Y": 78.66, + "Z": -2496.87 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -809754,10 +808911,10 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 22, - "Coding LOC": 17, + "Total LOC": 8, + "Coding LOC": 3, "Documentation LOC": 4, - "Structural Magnitude": 1.94, + "Structural Magnitude": 2.16, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -809767,43 +808924,43 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", - "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.33%", - "API Exposure": "0.0%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "2.31%", + "API Exposure": "3.53%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", + "Documentation Exposure": "16.56%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "GRANT", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 13, + "Function Name": "Unknown_Block", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 9, - "End Line": 21 + "Start Line": 7, + "End Line": 7 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 6, + "Sequential Logic Declarations": 1, "Function Parameters": 0, "Function/Method Declarations": 1, - "Class/Entity Declarations": 1, + "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 7, - "Exposed API / Public Exports": 0, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -809817,7 +808974,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -809829,7 +808986,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 2, + "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -809842,7 +808999,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 4, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -809859,15 +809016,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 8, + "Core Var Decl": 2, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 8, + "Design Upper Case": 2, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -809875,7 +809032,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 2, + "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -809884,7 +809041,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -809893,18 +809050,18 @@ "8. Dependency Network": { "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 + "Total Upstream (Absolute Fragility)": 1, + "Total Downstream (Absolute Dependency Blast Radius)": 5 }, "9. Extracted Dependencies": [ - "DSNC10.PROCLIB", - "DSNC10.SDSNLOAD" + "CBSA.CICSBSA.BUILDJCL", + "DEFAULT" ] }, - "jcl/cics-banking-sample-application-cbsa/CRETS03.jcl": { + "jcl/cics-banking-sample-application-cbsa/INSTDB2.jcl": { "1. Artifact Identity": { - "Filename": "CRETS03.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/CRETS03.jcl", + "Filename": "INSTDB2.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/INSTDB2.jcl", "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Spaces", @@ -809914,9 +809071,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 1223.92, - "Y": 74.42, - "Z": -1535.6 + "X": 868.04, + "Y": 20.31, + "Z": -1946.84 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -809925,10 +809082,10 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 22, - "Coding LOC": 17, - "Documentation LOC": 4, - "Structural Magnitude": 1.94, + "Total LOC": 106, + "Coding LOC": 73, + "Documentation LOC": 17, + "Structural Magnitude": 5.46, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -809938,9 +809095,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", - "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.33%", + "Error & Exception Exposure": "71.16%", + "Tech Debt Exposure": "47.43%", + "Testing Exposure": "2.34%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -809954,19 +809111,19 @@ "5. Function Analysis": [ { "Function Name": "GRANT", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 13, + "Structural Impact": 4.0, + "Lines of Code (LOC)": 90, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 9, - "End Line": 21 + "Start Line": 16, + "End Line": 105 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 6, + "Sequential Logic Declarations": 7, "Function Parameters": 0, "Function/Method Declarations": 1, "Class/Entity Declarations": 1, @@ -809982,13 +809139,13 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 2, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -810013,7 +809170,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 4, + "Structural Space Indentations": 38, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -810030,11 +809187,11 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 8, + "Core Var Decl": 10, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 8, + "Design Upper Case": 10, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, @@ -810062,32 +809219,33 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, + "Direct Upstream (Fragility)": 3, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, + "Total Upstream (Absolute Fragility)": 1, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "DSNC10.PROCLIB", - "DSNC10.SDSNLOAD" + "&DB2HLQ..SDSNLOAD", + "CBSA.DB2.JCL.INSTALL", + "DEFAULT" ] }, - "jcl/cics-banking-sample-application-cbsa/DB2BIND.jcl": { + "jcl/cics-banking-sample-application-cbsa/MAPGEN.jcl": { "1. Artifact Identity": { - "Filename": "DB2BIND.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/DB2BIND.jcl", + "Filename": "MAPGEN.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/MAPGEN.jcl", "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, "Folder Dominant Lang": "jcl", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 712.49, - "Y": 36.89, - "Z": -2479.63 + "X": 173.12, + "Y": 54.15, + "Z": -1841.05 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -810096,10 +809254,10 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 110, - "Coding LOC": 89, - "Documentation LOC": 9, - "Structural Magnitude": 8.58, + "Total LOC": 50, + "Coding LOC": 43, + "Documentation LOC": 6, + "Structural Magnitude": 8.46, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -810109,53 +809267,73 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "77.05%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.36%", - "API Exposure": "0.0%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "99.91%", + "Testing Exposure": "2.38%", + "API Exposure": "3.53%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", + "Documentation Exposure": "15.3%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "BIND", - "Structural Impact": 4.8, - "Lines of Code (LOC)": 75, + "Function Name": "ASMDSECT", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 40, + "End Line": 49 + }, + { + "Function Name": "LINKMAP", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 33, + "End Line": 38 + }, + { + "Function Name": "ASMMAP", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 13, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 12, - "End Line": 86 + "Start Line": 20, + "End Line": 32 }, { - "Function Name": "GRANT", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 20, + "Function Name": "COPY", + "Structural Impact": 1.4, + "Lines of Code (LOC)": 7, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 90, - "End Line": 109 + "Start Line": 13, + "End Line": 19 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 24, - "Function Parameters": 0, - "Function/Method Declarations": 2, - "Class/Entity Declarations": 1, + "Sequential Logic Declarations": 25, + "Function Parameters": 3, + "Function/Method Declarations": 4, + "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 2, - "I/O and Network Boundaries": 38, - "Exposed API / Public Exports": 0, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 28, + "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -810169,7 +809347,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -810181,20 +809359,20 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 2, + "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, "Bitwise Operations": 0, - "Thread Synchronization Locks": 0, + "Thread Synchronization Locks": 4, "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, + "Resource Deallocation & Cleanup": 2, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 8, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -810211,15 +809389,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 27, + "Core Var Decl": 41, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 27, - "Design Short Vars": 0, + "Design Upper Case": 41, + "Design Short Vars": 1, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 4, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -810227,7 +809405,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 3, + "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -810236,51 +809414,42 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 2, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 14, + "Direct Upstream (Fragility)": 5, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 1, + "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "&BANKDBRM(BANKDATA)", - "&BANKDBRM(CREACC)", - "&BANKDBRM(CRECUST)", - "&BANKDBRM(DBCRFUN)", - "&BANKDBRM(DELACC)", - "&BANKDBRM(DELCUS)", - "&BANKDBRM(INQACC)", - "&BANKDBRM(INQACCCU)", - "&BANKDBRM(UPDACC)", - "&BANKDBRM(XFRFUN)", - "&DB2HLQ..SDSNEXIT", - "&DB2HLQ..SDSNLOAD", - "CBSA.DB2.JCL.INSTALL", - "DEFAULT" + "&CBSAHLQ..BMS(&MEMBER)", + "&CBSAHLQ..DSECT(&MEMBER)", + "&CBSAHLQ..LOADLIB(&MEMBER)", + "&CICSHLQ..SDFHMAC", + "SYS1.MACLIB" ] }, - "jcl/cics-banking-sample-application-cbsa/DBCRFUN.jcl": { + "jcl/cics-banking-sample-application-cbsa/RACF001.jcl": { "1. Artifact Identity": { - "Filename": "DBCRFUN.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/DBCRFUN.jcl", + "Filename": "RACF001.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/RACF001.jcl", "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, "Folder Dominant Lang": "jcl", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 1854.69, - "Y": -1.04, - "Z": -1755.71 + "X": -955.94, + "Y": 107.25, + "Z": -1683.66 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -810289,10 +809458,10 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 8, - "Coding LOC": 3, + "Total LOC": 20, + "Coding LOC": 15, "Documentation LOC": 4, - "Structural Magnitude": 1.16, + "Structural Magnitude": 1.9, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -810302,9 +809471,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.31%", + "Error & Exception Exposure": "76.85%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "2.33%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -810317,27 +809486,27 @@ }, "5. Function Analysis": [ { - "Function Name": "Unknown_Block", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, + "Function Name": "TSO", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 12, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 7, - "End Line": 7 + "Start Line": 8, + "End Line": 19 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 1, + "Sequential Logic Declarations": 4, "Function Parameters": 0, "Function/Method Declarations": 1, - "Class/Entity Declarations": 0, + "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, + "High-Risk Execution Commands": 1, + "I/O and Network Boundaries": 4, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -810352,7 +809521,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -810364,7 +809533,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 2, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -810377,7 +809546,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 2, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -810394,15 +809563,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 2, + "Core Var Decl": 6, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 2, + "Design Upper Case": 6, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -810410,7 +809579,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, + "Dynamic Code Execution (Eval/Exec)": 1, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -810419,39 +809588,36 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 0, + "Sec Tainted Injection": 1, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, + "Direct Upstream (Fragility)": 0, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 1, + "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [ - "CBSA.CICSBSA.BUILDJCL", - "DEFAULT" - ] + "9. Extracted Dependencies": [] }, - "jcl/cics-banking-sample-application-cbsa/DEFAULT.jcl": { + "jcl/cics-banking-sample-application-cbsa/REPLCICS.jcl": { "1. Artifact Identity": { - "Filename": "DEFAULT.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/DEFAULT.jcl", + "Filename": "REPLCICS.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/REPLCICS.jcl", "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, "Folder Dominant Lang": "jcl", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 90.67, - "Y": 88.14, - "Z": -2113.31 + "X": 1358.19, + "Y": 39.09, + "Z": -2077.51 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -810460,12 +809626,12 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 48, - "Coding LOC": 9, - "Documentation LOC": 38, - "Structural Magnitude": 23.68, + "Total LOC": 22, + "Coding LOC": 17, + "Documentation LOC": 4, + "Structural Magnitude": 2.04, "Control Flow Ratio": "0.0%", - "Popularity Rank": 44, + "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, @@ -810473,33 +809639,44 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "78.34%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.3%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "73.11%", + "Testing Exposure": "2.32%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "99.18%", + "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "0.0%", + "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", "Documentation Exposure": "0.0%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [], + "5. Function Analysis": [ + { + "Function Name": "JOBSTEP", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 14, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 8, + "End Line": 21 + } + ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 9, + "Sequential Logic Declarations": 7, "Function Parameters": 0, - "Function/Method Declarations": 0, - "Class/Entity Declarations": 0, + "Function/Method Declarations": 1, + "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, + "I/O and Network Boundaries": 7, "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 9, + "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, @@ -810524,7 +809701,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 2, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -810537,7 +809714,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 2, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -810554,15 +809731,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 9, + "Core Var Decl": 14, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 9, + "Design Upper Case": 14, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -810586,29 +809763,32 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 0, - "Direct Downstream (Dependency Blast Radius)": 44, + "Direct Upstream (Fragility)": 2, + "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 65 + "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [] + "9. Extracted Dependencies": [ + "CBSA.JCL.INSTALL", + "FEU.Z25A.PROCLIB" + ] }, - "jcl/cics-banking-sample-application-cbsa/DELACC.jcl": { + "jcl/cics-banking-sample-application-cbsa/REPLSIP.jcl": { "1. Artifact Identity": { - "Filename": "DELACC.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/DELACC.jcl", + "Filename": "REPLSIP.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/REPLSIP.jcl", "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, "Folder Dominant Lang": "jcl", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 486.05, - "Y": 98.77, - "Z": -1438.36 + "X": -755.48, + "Y": 126.68, + "Z": -1637.07 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -810617,10 +809797,10 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 8, - "Coding LOC": 3, + "Total LOC": 22, + "Coding LOC": 17, "Documentation LOC": 4, - "Structural Magnitude": 2.16, + "Structural Magnitude": 2.04, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -810631,42 +809811,42 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.31%", - "API Exposure": "3.53%", + "Tech Debt Exposure": "73.11%", + "Testing Exposure": "2.32%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "16.56%", + "Documentation Exposure": "0.0%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "Unknown_Block", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, + "Function Name": "JOBSTEP", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 14, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 7, - "End Line": 7 + "Start Line": 8, + "End Line": 21 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 1, + "Sequential Logic Declarations": 7, "Function Parameters": 0, "Function/Method Declarations": 1, - "Class/Entity Declarations": 0, + "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 1, + "I/O and Network Boundaries": 7, + "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -810680,7 +809860,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -810692,7 +809872,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 2, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -810705,7 +809885,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 2, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -810722,15 +809902,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 2, + "Core Var Decl": 14, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 2, + "Design Upper Case": 14, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -810756,18 +809936,18 @@ "8. Dependency Network": { "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 1, - "Total Downstream (Absolute Dependency Blast Radius)": 1 + "Total Upstream (Absolute Fragility)": 0, + "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "CBSA.CICSBSA.BUILDJCL", - "DEFAULT" + "CBSA.JCL.INSTALL", + "DFH560.SYSIN" ] }, - "jcl/cics-banking-sample-application-cbsa/DELCUS.jcl": { + "jcl/cics-banking-sample-application-cbsa/RESTCICS.jcl": { "1. Artifact Identity": { - "Filename": "DELCUS.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/DELCUS.jcl", + "Filename": "RESTCICS.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/RESTCICS.jcl", "Language": "Jcl", "Architect": "Unknown Architect", "Indentation Style": "Neutral / No Indentation", @@ -810777,9 +809957,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -506.89, - "Y": 71.31, - "Z": -2703.68 + "X": -823.36, + "Y": 95.33, + "Z": -2963.92 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -810788,10 +809968,10 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 8, - "Coding LOC": 3, - "Documentation LOC": 4, - "Structural Magnitude": 2.16, + "Total LOC": 14, + "Coding LOC": 8, + "Documentation LOC": 5, + "Structural Magnitude": 1.36, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -810801,43 +809981,43 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.31%", - "API Exposure": "3.53%", + "Error & Exception Exposure": "76.85%", + "Tech Debt Exposure": "73.11%", + "Testing Exposure": "2.33%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "16.56%", + "Documentation Exposure": "0.0%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "Unknown_Block", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, + "Function Name": "STEP0001", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 7, - "End Line": 7 + "Start Line": 8, + "End Line": 12 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 1, + "Sequential Logic Declarations": 2, "Function Parameters": 0, "Function/Method Declarations": 1, - "Class/Entity Declarations": 0, + "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, + "High-Risk Execution Commands": 1, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 1, + "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -810851,7 +810031,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -810863,7 +810043,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 2, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -810893,15 +810073,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 2, + "Core Var Decl": 3, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 2, + "Design Upper Case": 3, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -810909,7 +810089,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, + "Dynamic Code Execution (Eval/Exec)": 1, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -810925,32 +810105,29 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, + "Direct Upstream (Fragility)": 0, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 1, - "Total Downstream (Absolute Dependency Blast Radius)": 2 + "Total Upstream (Absolute Fragility)": 0, + "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [ - "CBSA.CICSBSA.BUILDJCL", - "DEFAULT" - ] + "9. Extracted Dependencies": [] }, - "jcl/cics-banking-sample-application-cbsa/DROPDB2.jcl": { + "jcl/cics-banking-sample-application-cbsa/RESTZOSC.jcl": { "1. Artifact Identity": { - "Filename": "DROPDB2.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/DROPDB2.jcl", + "Filename": "RESTZOSC.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/RESTZOSC.jcl", "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, "Folder Dominant Lang": "jcl", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 188.48, - "Y": 54.46, - "Z": -2855.26 + "X": 1641.21, + "Y": -0.78, + "Z": -2558.8 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -810959,10 +810136,10 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 39, - "Coding LOC": 29, - "Documentation LOC": 4, - "Structural Magnitude": 3.08, + "Total LOC": 14, + "Coding LOC": 8, + "Documentation LOC": 5, + "Structural Magnitude": 1.36, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -810974,7 +810151,7 @@ "Cognitive Load Exposure": "0.0%", "Error & Exception Exposure": "76.85%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.34%", + "Testing Exposure": "2.33%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -810987,27 +810164,27 @@ }, "5. Function Analysis": [ { - "Function Name": "GRANT", - "Structural Impact": 2.5, - "Lines of Code (LOC)": 30, + "Function Name": "STEP0001", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 9, - "End Line": 38 + "Start Line": 8, + "End Line": 12 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 6, + "Sequential Logic Declarations": 2, "Function Parameters": 0, "Function/Method Declarations": 1, "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 7, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -811047,7 +810224,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 4, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -811064,11 +810241,11 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 8, + "Core Var Decl": 3, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 8, + "Design Upper Case": 3, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, @@ -811080,7 +810257,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 2, + "Dynamic Code Execution (Eval/Exec)": 1, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -811089,39 +810266,36 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, + "Direct Upstream (Fragility)": 0, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [ - "DSNC10.PROCLIB", - "DSNC10.SDSNLOAD" - ] + "9. Extracted Dependencies": [] }, - "jcl/cics-banking-sample-application-cbsa/DRPDB00.jcl": { + "jcl/cics-banking-sample-application-cbsa/SHUTCICS.jcl": { "1. Artifact Identity": { - "Filename": "DRPDB00.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/DRPDB00.jcl", + "Filename": "SHUTCICS.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/SHUTCICS.jcl", "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, "Folder Dominant Lang": "jcl", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -909.98, - "Y": 119.16, - "Z": -2213.4 + "X": -607.35, + "Y": 72.27, + "Z": -1232.23 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -811130,10 +810304,10 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 22, - "Coding LOC": 17, - "Documentation LOC": 4, - "Structural Magnitude": 1.94, + "Total LOC": 14, + "Coding LOC": 8, + "Documentation LOC": 5, + "Structural Magnitude": 1.36, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -811158,27 +810332,27 @@ }, "5. Function Analysis": [ { - "Function Name": "GRANT", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 13, + "Function Name": "STEP0001", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 9, - "End Line": 21 + "Start Line": 8, + "End Line": 12 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 6, + "Sequential Logic Declarations": 2, "Function Parameters": 0, "Function/Method Declarations": 1, "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 7, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -811218,7 +810392,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 4, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -811235,11 +810409,11 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 8, + "Core Var Decl": 3, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 8, + "Design Upper Case": 3, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, @@ -811251,7 +810425,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 2, + "Dynamic Code Execution (Eval/Exec)": 1, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -811260,39 +810434,36 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, + "Direct Upstream (Fragility)": 0, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [ - "DSNC10.PROCLIB", - "DSNC10.SDSNLOAD" - ] + "9. Extracted Dependencies": [] }, - "jcl/cics-banking-sample-application-cbsa/DRPI101.jcl": { + "jcl/cics-banking-sample-application-cbsa/SHUTZOSC.jcl": { "1. Artifact Identity": { - "Filename": "DRPI101.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/DRPI101.jcl", + "Filename": "SHUTZOSC.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/SHUTZOSC.jcl", "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, "Folder Dominant Lang": "jcl", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 1109.99, - "Y": 22.41, - "Z": -3192.15 + "X": 172.91, + "Y": 79.17, + "Z": -3677.07 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -811301,10 +810472,10 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 22, - "Coding LOC": 17, - "Documentation LOC": 4, - "Structural Magnitude": 1.94, + "Total LOC": 14, + "Coding LOC": 8, + "Documentation LOC": 5, + "Structural Magnitude": 1.36, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -811329,27 +810500,27 @@ }, "5. Function Analysis": [ { - "Function Name": "GRANT", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 13, + "Function Name": "STEP0001", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 9, - "End Line": 21 + "Start Line": 8, + "End Line": 12 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 6, + "Sequential Logic Declarations": 2, "Function Parameters": 0, "Function/Method Declarations": 1, "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 7, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -811389,7 +810560,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 4, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -811406,11 +810577,11 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 8, + "Core Var Decl": 3, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 8, + "Design Upper Case": 3, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, @@ -811422,7 +810593,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 2, + "Dynamic Code Execution (Eval/Exec)": 1, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -811431,39 +810602,36 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, + "Direct Upstream (Fragility)": 0, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [ - "DSNC10.PROCLIB", - "DSNC10.SDSNLOAD" - ] + "9. Extracted Dependencies": [] }, - "jcl/cics-banking-sample-application-cbsa/DRPI201.jcl": { + "jcl/cics-banking-sample-application-cbsa/UPDACC.jcl": { "1. Artifact Identity": { - "Filename": "DRPI201.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/DRPI201.jcl", + "Filename": "UPDACC.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/UPDACC.jcl", "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, "Folder Dominant Lang": "jcl", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 345.74, - "Y": 83.0, - "Z": -971.07 + "X": 1173.27, + "Y": 59.04, + "Z": -2852.23 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -811472,10 +810640,10 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 22, - "Coding LOC": 17, + "Total LOC": 8, + "Coding LOC": 3, "Documentation LOC": 4, - "Structural Magnitude": 1.94, + "Structural Magnitude": 2.16, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -811485,43 +810653,43 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", - "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.33%", - "API Exposure": "0.0%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "2.31%", + "API Exposure": "3.53%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", + "Documentation Exposure": "16.56%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "GRANT", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 13, + "Function Name": "Unknown_Block", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 9, - "End Line": 21 + "Start Line": 7, + "End Line": 7 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 6, + "Sequential Logic Declarations": 1, "Function Parameters": 0, "Function/Method Declarations": 1, - "Class/Entity Declarations": 1, + "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 7, - "Exposed API / Public Exports": 0, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -811535,7 +810703,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -811547,7 +810715,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 2, + "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -811560,7 +810728,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 4, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -811577,15 +810745,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 8, + "Core Var Decl": 2, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 8, + "Design Upper Case": 2, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -811593,7 +810761,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 2, + "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -811602,7 +810770,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -811611,30 +810779,30 @@ "8. Dependency Network": { "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 + "Total Upstream (Absolute Fragility)": 1, + "Total Downstream (Absolute Dependency Blast Radius)": 1 }, "9. Extracted Dependencies": [ - "DSNC10.PROCLIB", - "DSNC10.SDSNLOAD" + "CBSA.CICSBSA.BUILDJCL", + "DEFAULT" ] }, - "jcl/cics-banking-sample-application-cbsa/DRPI301.jcl": { + "jcl/cics-banking-sample-application-cbsa/UPDCUST.jcl": { "1. Artifact Identity": { - "Filename": "DRPI301.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/DRPI301.jcl", + "Filename": "UPDCUST.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/UPDCUST.jcl", "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, "Folder Dominant Lang": "jcl", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -574.1, - "Y": 112.18, - "Z": -3081.56 + "X": 68.17, + "Y": 38.89, + "Z": -1191.01 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -811643,10 +810811,10 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 22, - "Coding LOC": 17, - "Documentation LOC": 4, - "Structural Magnitude": 1.94, + "Total LOC": 9, + "Coding LOC": 3, + "Documentation LOC": 5, + "Structural Magnitude": 2.16, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -811656,43 +810824,43 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", - "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.33%", - "API Exposure": "0.0%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "2.31%", + "API Exposure": "3.53%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", + "Documentation Exposure": "15.92%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "GRANT", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 13, + "Function Name": "Unknown_Block", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 9, - "End Line": 21 + "Start Line": 8, + "End Line": 8 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 6, + "Sequential Logic Declarations": 1, "Function Parameters": 0, "Function/Method Declarations": 1, - "Class/Entity Declarations": 1, + "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 7, - "Exposed API / Public Exports": 0, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -811706,7 +810874,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -811718,7 +810886,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 2, + "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -811731,7 +810899,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 4, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -811748,15 +810916,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 8, + "Core Var Decl": 2, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 8, + "Design Upper Case": 2, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -811764,7 +810932,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 2, + "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -811773,7 +810941,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -811782,30 +810950,30 @@ "8. Dependency Network": { "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 + "Total Upstream (Absolute Fragility)": 1, + "Total Downstream (Absolute Dependency Blast Radius)": 2 }, "9. Extracted Dependencies": [ - "DSNC10.PROCLIB", - "DSNC10.SDSNLOAD" + "CBSA.CICSBSA.BUILDJCL", + "DEFAULT" ] }, - "jcl/cics-banking-sample-application-cbsa/DRPSG01.jcl": { + "jcl/cics-banking-sample-application-cbsa/XFRFUN.jcl": { "1. Artifact Identity": { - "Filename": "DRPSG01.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/DRPSG01.jcl", + "Filename": "XFRFUN.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/XFRFUN.jcl", "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, "Folder Dominant Lang": "jcl", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 1516.43, - "Y": 72.69, - "Z": -2314.29 + "X": -264.18, + "Y": 59.67, + "Z": -3111.83 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -811814,10 +810982,10 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 22, - "Coding LOC": 17, + "Total LOC": 8, + "Coding LOC": 3, "Documentation LOC": 4, - "Structural Magnitude": 1.94, + "Structural Magnitude": 2.16, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -811827,43 +810995,43 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", - "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.33%", - "API Exposure": "0.0%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "2.31%", + "API Exposure": "3.53%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", + "Documentation Exposure": "16.56%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "GRANT", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 13, + "Function Name": "Unknown_Block", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 9, - "End Line": 21 + "Start Line": 7, + "End Line": 7 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 6, + "Sequential Logic Declarations": 1, "Function Parameters": 0, "Function/Method Declarations": 1, - "Class/Entity Declarations": 1, + "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 7, - "Exposed API / Public Exports": 0, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -811877,7 +811045,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -811889,7 +811057,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 2, + "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -811902,7 +811070,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 4, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -811919,15 +811087,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 8, + "Core Var Decl": 2, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 8, + "Design Upper Case": 2, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -811935,7 +811103,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 2, + "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -811944,7 +811112,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -811953,30 +811121,30 @@ "8. Dependency Network": { "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 + "Total Upstream (Absolute Fragility)": 1, + "Total Downstream (Absolute Dependency Blast Radius)": 1 }, "9. Extracted Dependencies": [ - "DSNC10.PROCLIB", - "DSNC10.SDSNLOAD" + "CBSA.CICSBSA.BUILDJCL", + "DEFAULT" ] }, - "jcl/cics-banking-sample-application-cbsa/DRPSG02.jcl": { + "jcl/cics-banking-sample-application-cbsa/ZOSCSEC.jcl": { "1. Artifact Identity": { - "Filename": "DRPSG02.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/DRPSG02.jcl", + "Filename": "ZOSCSEC.jcl", + "Path": "jcl/cics-banking-sample-application-cbsa/ZOSCSEC.jcl", "Language": "Jcl", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, "Folder Dominant Lang": "jcl", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -682.4, - "Y": 109.0, - "Z": -1343.32 + "X": 891.33, + "Y": 97.13, + "Z": -3572.74 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -811985,10 +811153,10 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 22, - "Coding LOC": 17, - "Documentation LOC": 4, - "Structural Magnitude": 1.94, + "Total LOC": 14, + "Coding LOC": 8, + "Documentation LOC": 5, + "Structural Magnitude": 1.86, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -812013,27 +811181,27 @@ }, "5. Function Analysis": [ { - "Function Name": "GRANT", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 13, + "Function Name": "BPXIT", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, "Control Flow Branches": 0, - "Input Parameters": 0, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 9, - "End Line": 21 + "Start Line": 8, + "End Line": 13 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 6, - "Function Parameters": 0, + "Sequential Logic Declarations": 2, + "Function Parameters": 1, "Function/Method Declarations": 1, "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 7, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -812073,7 +811241,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 4, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -812090,11 +811258,11 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 8, + "Core Var Decl": 3, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 8, + "Design Upper Case": 3, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, @@ -812106,60 +811274,82 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 2, + "Dynamic Code Execution (Eval/Exec)": 1, "Global Environment Mutation": 0, - "Commented-Out Executable Logic": 0, + "Commented-Out Executable Logic": 1, "Low-Level Bitwise / Cryptographic Math": 0, "Non-Standard / Steganographic Imports": 0, "Non-Standard Unicode / Homoglyphs": 0, "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, + "Direct Upstream (Fragility)": 0, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [ - "DSNC10.PROCLIB", - "DSNC10.SDSNLOAD" - ] - }, - "jcl/cics-banking-sample-application-cbsa/DRPSG03.jcl": { + "9. Extracted Dependencies": [] + } + } + }, + "sqlite/mediawiki_sqlite_tables": { + "Directory Group Magnitude": 315.54, + "File Count": 11, + "Ecosystem Fingerprint (Archetypes)": { + "Unclassified": "90.9%", + "Static: Literature & Documentation": "9.1%" + }, + "Average Risk Exposures": { + "Cognitive Load Exposure": "0.48%", + "Error & Exception Exposure": "26.32%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "2.14%", + "API Exposure": "0.32%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "0.0%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "81.82%", + "Instability Exposure": "45.45%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "1.23%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "Files": { + "sqlite/mediawiki_sqlite_tables/COPYING": { "1. Artifact Identity": { - "Filename": "DRPSG03.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/DRPSG03.jcl", - "Language": "Jcl", + "Filename": "COPYING", + "Path": "sqlite/mediawiki_sqlite_tables/COPYING", + "Language": "Plaintext", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" + "Folder Dominant Lang": "sqlite", + "Lock Tier": 1, + "Identity Proof": "Metadata Anchor (COPYING)" }, "2. Topological Coordinates": { - "X": 485.98, - "Y": 63.84, - "Z": -3412.64 + "X": -2341.96, + "Y": -8.88, + "Z": -7213.53 }, "3. Architectural Profile": { - "Repository Archetype": "Unclassified", + "Repository Archetype": "Static: Literature & Documentation", "Repository Drift (Z-Score)": 0.0, "Repository Fingerprint": {}, - "File Archetype": null, + "File Archetype": "N/A", "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 22, - "Coding LOC": 17, - "Documentation LOC": 4, - "Structural Magnitude": 1.94, + "Total LOC": 379, + "Coding LOC": 0, + "Documentation LOC": 307, + "Structural Magnitude": 7.58, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -812168,43 +811358,32 @@ "Raw Cognitive Density": 0.0 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", - "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.33%", - "API Exposure": "0.0%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", - "Hardcoded Payload Artifacts": "0.0%" + "Cognitive Load Exposure": "[UNSCANNED - NO DATA]", + "Error & Exception Exposure": "[UNSCANNED - NO DATA]", + "Tech Debt Exposure": "[UNSCANNED - NO DATA]", + "Testing Exposure": "[UNSCANNED - NO DATA]", + "API Exposure": "[UNSCANNED - NO DATA]", + "Concurrency Exposure": "[UNSCANNED - NO DATA]", + "State Flux Exposure": "[UNSCANNED - NO DATA]", + "Commented Logic Exposure": "[UNSCANNED - NO DATA]", + "Specification Exposure": "[UNSCANNED - NO DATA]", + "Instability Exposure": "[UNSCANNED - NO DATA]", + "Volatility Exposure": "[UNSCANNED - NO DATA]", + "Documentation Exposure": "[UNSCANNED - NO DATA]", + "Hardcoded Payload Artifacts": "[UNSCANNED - NO DATA]" }, - "5. Function Analysis": [ - { - "Function Name": "GRANT", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 13, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 9, - "End Line": 21 - } - ], + "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 6, + "Sequential Logic Declarations": 0, "Function Parameters": 0, - "Function/Method Declarations": 1, - "Class/Entity Declarations": 1, + "Function/Method Declarations": 0, + "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 7, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -812231,7 +811410,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 2, + "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -812244,7 +811423,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 4, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -812261,15 +811440,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 8, + "Core Var Decl": 0, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 8, + "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -812277,7 +811456,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 2, + "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -812286,39 +811465,36 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, + "Direct Upstream (Fragility)": 0, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [ - "DSNC10.PROCLIB", - "DSNC10.SDSNLOAD" - ] + "9. Extracted Dependencies": [] }, - "jcl/cics-banking-sample-application-cbsa/DRPTB01.jcl": { + "sqlite/mediawiki_sqlite_tables/patch-block_target.sql": { "1. Artifact Identity": { - "Filename": "DRPTB01.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/DRPTB01.jcl", - "Language": "Jcl", + "Filename": "patch-block_target.sql", + "Path": "sqlite/mediawiki_sqlite_tables/patch-block_target.sql", + "Language": "Sqlite", "Architect": "Unknown Architect", "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", + "Folder Dominant Lang": "sqlite", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" + "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": 1052.61, - "Y": 34.94, - "Z": -1063.94 + "X": -1794.18, + "Y": 10.01, + "Z": -7748.2 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -812327,10 +811503,10 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 22, - "Coding LOC": 17, - "Documentation LOC": 4, - "Structural Magnitude": 1.94, + "Total LOC": 42, + "Coding LOC": 30, + "Documentation LOC": 0, + "Structural Magnitude": 12.3, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -812340,9 +811516,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", - "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.33%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "2.41%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -812355,27 +811531,117 @@ }, "5. Function Analysis": [ { - "Function Name": "GRANT", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 13, + "Function Name": "CREATE_Statement", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 14, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 9, + "Start Line": 2, + "End Line": 15 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.4, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 26, + "End Line": 33 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 17, + "End Line": 17 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 19, + "End Line": 19 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 21, "End Line": 21 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 23, + "End Line": 23 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 35, + "End Line": 35 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 37, + "End Line": 37 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 39, + "End Line": 39 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 41, + "End Line": 41 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 6, + "Sequential Logic Declarations": 0, "Function Parameters": 0, - "Function/Method Declarations": 1, - "Class/Entity Declarations": 1, - "Defensive Programming Constructs": 0, + "Function/Method Declarations": 8, + "Class/Entity Declarations": 2, + "Defensive Programming Constructs": 2, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 7, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -812402,7 +811668,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 2, + "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -812415,7 +811681,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 4, + "Structural Space Indentations": 18, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -812432,15 +811698,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 8, + "Core Var Decl": 0, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 8, + "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -812448,7 +811714,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 2, + "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -812457,39 +811723,36 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, + "Direct Upstream (Fragility)": 0, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [ - "DSNC10.PROCLIB", - "DSNC10.SDSNLOAD" - ] + "9. Extracted Dependencies": [] }, - "jcl/cics-banking-sample-application-cbsa/DRPTB02.jcl": { + "sqlite/mediawiki_sqlite_tables/patch-collation.sql": { "1. Artifact Identity": { - "Filename": "DRPTB02.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/DRPTB02.jcl", - "Language": "Jcl", + "Filename": "patch-collation.sql", + "Path": "sqlite/mediawiki_sqlite_tables/patch-collation.sql", + "Language": "Sqlite", "Architect": "Unknown Architect", "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", + "Folder Dominant Lang": "sqlite", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" + "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": -976.36, - "Y": 107.54, - "Z": -2590.86 + "X": -1599.29, + "Y": 32.75, + "Z": -7728.82 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -812498,10 +811761,10 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 22, - "Coding LOC": 17, - "Documentation LOC": 4, - "Structural Magnitude": 1.94, + "Total LOC": 8, + "Coding LOC": 5, + "Documentation LOC": 0, + "Structural Magnitude": 2.4, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -812511,9 +811774,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", - "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.33%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "2.3%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -812526,27 +811789,37 @@ }, "5. Function Analysis": [ { - "Function Name": "GRANT", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 13, + "Function Name": "CREATE_Statement", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 9, - "End Line": 21 + "Start Line": 2, + "End Line": 5 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 7, + "End Line": 7 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 6, + "Sequential Logic Declarations": 0, "Function Parameters": 0, "Function/Method Declarations": 1, "Class/Entity Declarations": 1, - "Defensive Programming Constructs": 0, + "Defensive Programming Constructs": 2, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 7, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -812573,7 +811846,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 2, + "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -812586,7 +811859,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 4, + "Structural Space Indentations": 2, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -812603,15 +811876,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 8, + "Core Var Decl": 0, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 8, + "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -812619,7 +811892,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 2, + "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -812628,39 +811901,36 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, + "Direct Upstream (Fragility)": 0, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [ - "DSNC10.PROCLIB", - "DSNC10.SDSNLOAD" - ] + "9. Extracted Dependencies": [] }, - "jcl/cics-banking-sample-application-cbsa/DRPTB03.jcl": { + "sqlite/mediawiki_sqlite_tables/patch-existencelinks.sql": { "1. Artifact Identity": { - "Filename": "DRPTB03.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/DRPTB03.jcl", - "Language": "Jcl", + "Filename": "patch-existencelinks.sql", + "Path": "sqlite/mediawiki_sqlite_tables/patch-existencelinks.sql", + "Language": "Sqlite", "Architect": "Unknown Architect", "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", + "Folder Dominant Lang": "sqlite", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" + "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": 1379.06, - "Y": 74.55, - "Z": -2931.56 + "X": -2381.44, + "Y": -73.32, + "Z": -6947.37 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -812669,10 +811939,10 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 22, - "Coding LOC": 17, - "Documentation LOC": 4, - "Structural Magnitude": 1.94, + "Total LOC": 8, + "Coding LOC": 6, + "Documentation LOC": 0, + "Structural Magnitude": 2.42, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -812682,9 +811952,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", - "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.33%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "2.31%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -812697,27 +811967,37 @@ }, "5. Function Analysis": [ { - "Function Name": "GRANT", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 13, + "Function Name": "CREATE_Statement", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 9, - "End Line": 21 + "Start Line": 1, + "End Line": 5 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 7, + "End Line": 7 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 6, + "Sequential Logic Declarations": 0, "Function Parameters": 0, "Function/Method Declarations": 1, "Class/Entity Declarations": 1, - "Defensive Programming Constructs": 0, + "Defensive Programming Constructs": 1, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 7, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -812744,7 +812024,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 2, + "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -812757,7 +812037,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 4, + "Structural Space Indentations": 3, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -812774,15 +812054,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 8, + "Core Var Decl": 0, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 8, + "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -812790,7 +812070,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 2, + "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -812799,39 +812079,36 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, + "Direct Upstream (Fragility)": 0, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [ - "DSNC10.PROCLIB", - "DSNC10.SDSNLOAD" - ] + "9. Extracted Dependencies": [] }, - "jcl/cics-banking-sample-application-cbsa/DRPTS01.jcl": { + "sqlite/mediawiki_sqlite_tables/patch-file.sql": { "1. Artifact Identity": { - "Filename": "DRPTS01.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/DRPTS01.jcl", - "Language": "Jcl", + "Filename": "patch-file.sql", + "Path": "sqlite/mediawiki_sqlite_tables/patch-file.sql", + "Language": "Sqlite", "Architect": "Unknown Architect", "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", + "Folder Dominant Lang": "sqlite", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" + "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": -105.47, - "Y": 83.15, - "Z": -881.33 + "X": -2106.91, + "Y": -108.36, + "Z": -6909.87 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -812840,10 +812117,10 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 22, - "Coding LOC": 17, - "Documentation LOC": 4, - "Structural Magnitude": 1.94, + "Total LOC": 47, + "Coding LOC": 33, + "Documentation LOC": 0, + "Structural Magnitude": 13.46, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -812853,9 +812130,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", - "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.33%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "2.39%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -812868,27 +812145,127 @@ }, "5. Function Analysis": [ { - "Function Name": "GRANT", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 13, + "Function Name": "CREATE_Statement", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 14, + "End Line": 25 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 2, + "End Line": 7 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 38, + "End Line": 42 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", "Start Line": 9, - "End Line": 21 + "End Line": 9 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 11, + "End Line": 11 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 27, + "End Line": 27 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 29, + "End Line": 29 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 31, + "End Line": 31 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 33, + "End Line": 33 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 35, + "End Line": 35 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 44, + "End Line": 46 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 6, + "Sequential Logic Declarations": 0, "Function Parameters": 0, - "Function/Method Declarations": 1, - "Class/Entity Declarations": 1, - "Defensive Programming Constructs": 0, + "Function/Method Declarations": 8, + "Class/Entity Declarations": 3, + "Defensive Programming Constructs": 5, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 7, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -812915,7 +812292,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 2, + "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -812928,7 +812305,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 4, + "Structural Space Indentations": 18, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -812945,15 +812322,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 8, + "Core Var Decl": 0, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 8, + "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -812961,7 +812338,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 2, + "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -812970,39 +812347,36 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, + "Direct Upstream (Fragility)": 0, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [ - "DSNC10.PROCLIB", - "DSNC10.SDSNLOAD" - ] + "9. Extracted Dependencies": [] }, - "jcl/cics-banking-sample-application-cbsa/DRPTS02.jcl": { + "sqlite/mediawiki_sqlite_tables/patch-user-user_is_temp.sql": { "1. Artifact Identity": { - "Filename": "DRPTS02.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/DRPTS02.jcl", - "Language": "Jcl", + "Filename": "patch-user-user_is_temp.sql", + "Path": "sqlite/mediawiki_sqlite_tables/patch-user-user_is_temp.sql", + "Language": "Sqlite", "Architect": "Unknown Architect", "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", + "Folder Dominant Lang": "sqlite", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" + "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": -237.94, - "Y": 77.49, - "Z": -3583.87 + "X": -1334.79, + "Y": -96.87, + "Z": -6905.9 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -813011,10 +812385,10 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 22, - "Coding LOC": 17, + "Total LOC": 7, + "Coding LOC": 2, "Documentation LOC": 4, - "Structural Magnitude": 1.94, + "Structural Magnitude": 3.14, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -813024,14 +812398,14 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", - "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.33%", + "Error & Exception Exposure": "62.58%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "2.31%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "0.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", "Documentation Exposure": "0.0%", @@ -813039,29 +812413,29 @@ }, "5. Function Analysis": [ { - "Function Name": "GRANT", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 13, + "Function Name": "ALTER_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 2, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 9, - "End Line": 21 + "Start Line": 5, + "End Line": 6 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 6, + "Sequential Logic Declarations": 0, "Function Parameters": 0, - "Function/Method Declarations": 1, - "Class/Entity Declarations": 1, + "Function/Method Declarations": 0, + "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 7, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 0, + "State Mutations / Variable Reassignments": 2, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, @@ -813086,7 +812460,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 2, + "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -813099,7 +812473,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 4, + "Structural Space Indentations": 1, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -813116,15 +812490,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 8, + "Core Var Decl": 0, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 8, + "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -813132,7 +812506,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 2, + "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -813141,39 +812515,36 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, + "Direct Upstream (Fragility)": 0, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [ - "DSNC10.PROCLIB", - "DSNC10.SDSNLOAD" - ] + "9. Extracted Dependencies": [] }, - "jcl/cics-banking-sample-application-cbsa/DRPTS03.jcl": { + "sqlite/mediawiki_sqlite_tables/patch-user_autocreate_serial-uas_year.sql": { "1. Artifact Identity": { - "Filename": "DRPTS03.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/DRPTS03.jcl", - "Language": "Jcl", + "Filename": "patch-user_autocreate_serial-uas_year.sql", + "Path": "sqlite/mediawiki_sqlite_tables/patch-user_autocreate_serial-uas_year.sql", + "Language": "Sqlite", "Architect": "Unknown Architect", "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", + "Folder Dominant Lang": "sqlite", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" + "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": 1531.21, - "Y": 49.67, - "Z": -1896.39 + "X": -1380.27, + "Y": -43.7, + "Z": -7502.03 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -813182,10 +812553,10 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 22, - "Coding LOC": 17, + "Total LOC": 28, + "Coding LOC": 18, "Documentation LOC": 4, - "Structural Magnitude": 1.94, + "Structural Magnitude": 6.26, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -813195,9 +812566,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", - "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.33%", + "Error & Exception Exposure": "66.5%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "2.36%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -813210,14 +812581,54 @@ }, "5. Function Analysis": [ { - "Function Name": "GRANT", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 13, + "Function Name": "CREATE_Statement", + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 9, - "End Line": 21 + "Start Line": 14, + "End Line": 19 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 5, + "End Line": 9 + }, + { + "Function Name": "INSERT_Statement", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 21, + "End Line": 25 + }, + { + "Function Name": "DROP_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 11, + "End Line": 11 + }, + { + "Function Name": "DROP_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 27, + "End Line": 27 } ], "6. Contextual Mitigations & Amplifications": "None Detected", @@ -813225,12 +812636,12 @@ "Control Flow Branches": 0, "Sequential Logic Declarations": 6, "Function Parameters": 0, - "Function/Method Declarations": 1, - "Class/Entity Declarations": 1, - "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 7, + "Function/Method Declarations": 0, + "Class/Entity Declarations": 2, + "Defensive Programming Constructs": 1, + "Type/Safety Bypasses": 2, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 3, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -813257,7 +812668,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 2, + "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -813265,12 +812676,12 @@ "Bitwise Operations": 0, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 0, + "Resource Deallocation & Cleanup": 2, + "Private / Encapsulated Scopes": 1, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 4, + "Structural Space Indentations": 8, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -813287,15 +812698,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 8, + "Core Var Decl": 0, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 8, + "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -813303,7 +812714,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 2, + "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -813312,39 +812723,36 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, + "Direct Upstream (Fragility)": 0, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [ - "DSNC10.PROCLIB", - "DSNC10.SDSNLOAD" - ] + "9. Extracted Dependencies": [] }, - "jcl/cics-banking-sample-application-cbsa/EXTDCUST.jcl": { + "sqlite/mediawiki_sqlite_tables/patch-watchlist_label.sql": { "1. Artifact Identity": { - "Filename": "EXTDCUST.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/EXTDCUST.jcl", - "Language": "Jcl", + "Filename": "patch-watchlist_label.sql", + "Path": "sqlite/mediawiki_sqlite_tables/patch-watchlist_label.sql", + "Language": "Sqlite", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", + "Folder Dominant Lang": "sqlite", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" + "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": -1229.41, - "Y": 139.06, - "Z": -1697.25 + "X": -2064.86, + "Y": 59.16, + "Z": -7604.45 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -813353,10 +812761,10 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 8, - "Coding LOC": 3, - "Documentation LOC": 4, - "Structural Magnitude": 1.16, + "Total LOC": 17, + "Coding LOC": 12, + "Documentation LOC": 0, + "Structural Magnitude": 4.84, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -813367,8 +812775,8 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.31%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "2.32%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -813381,7 +812789,27 @@ }, "5. Function Analysis": [ { - "Function Name": "Unknown_Block", + "Function Name": "CREATE_Statement", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 1, + "End Line": 5 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 10, + "End Line": 14 + }, + { + "Function Name": "CREATE_Statement", "Structural Impact": 1.1, "Lines of Code (LOC)": 1, "Control Flow Branches": 0, @@ -813389,16 +812817,26 @@ "Control Flow Ratio": "0.0%", "Start Line": 7, "End Line": 7 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 16, + "End Line": 16 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 1, + "Sequential Logic Declarations": 0, "Function Parameters": 0, - "Function/Method Declarations": 1, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 0, + "Function/Method Declarations": 2, + "Class/Entity Declarations": 2, + "Defensive Programming Constructs": 3, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, @@ -813416,7 +812854,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -813441,7 +812879,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 6, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -813458,15 +812896,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 2, + "Core Var Decl": 0, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 2, + "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -813490,32 +812928,29 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, + "Direct Upstream (Fragility)": 0, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 1, + "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [ - "CTSSVT.CICSBSA.BUILDJCL", - "DEFAULT" - ] + "9. Extracted Dependencies": [] }, - "jcl/cics-banking-sample-application-cbsa/GETCOMPY.jcl": { + "sqlite/mediawiki_sqlite_tables/searchindex-fts3.sql": { "1. Artifact Identity": { - "Filename": "GETCOMPY.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/GETCOMPY.jcl", - "Language": "Jcl", + "Filename": "searchindex-fts3.sql", + "Path": "sqlite/mediawiki_sqlite_tables/searchindex-fts3.sql", + "Language": "Sqlite", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", + "Folder Dominant Lang": "sqlite", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" + "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": 1281.4, - "Y": 29.86, - "Z": -2219.06 + "X": -2034.62, + "Y": -148.41, + "Z": -6689.44 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -813524,10 +812959,10 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 8, - "Coding LOC": 3, - "Documentation LOC": 4, - "Structural Magnitude": 2.16, + "Total LOC": 19, + "Coding LOC": 6, + "Documentation LOC": 9, + "Structural Magnitude": 5.52, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -813537,9 +812972,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "0.0%", + "Error & Exception Exposure": "70.21%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.31%", + "Testing Exposure": "2.35%", "API Exposure": "3.53%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -813547,32 +812982,52 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "16.56%", + "Documentation Exposure": "13.55%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "Unknown_Block", + "Function Name": "INSERT_Statement", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 18, + "End Line": 18 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 11, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 6, + "End Line": 16 + }, + { + "Function Name": "DROP_Statement", "Structural Impact": 1.1, "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 7, - "End Line": 7 + "Start Line": 5, + "End Line": 5 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 1, - "Function Parameters": 0, - "Function/Method Declarations": 1, - "Class/Entity Declarations": 0, + "Sequential Logic Declarations": 1, + "Function Parameters": 1, + "Function/Method Declarations": 0, + "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 0, + "Type/Safety Bypasses": 2, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, + "I/O and Network Boundaries": 1, "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -813587,7 +813042,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -813607,12 +813062,12 @@ "Bitwise Operations": 0, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, + "Resource Deallocation & Cleanup": 1, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 2, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -813629,11 +813084,11 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 2, + "Core Var Decl": 0, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 2, + "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, @@ -813661,32 +813116,29 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, + "Direct Upstream (Fragility)": 0, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 1, - "Total Downstream (Absolute Dependency Blast Radius)": 1 + "Total Upstream (Absolute Fragility)": 0, + "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [ - "CBSA.CICSBSA.BUILDJCL", - "DEFAULT" - ] + "9. Extracted Dependencies": [] }, - "jcl/cics-banking-sample-application-cbsa/GETSCODE.jcl": { + "sqlite/mediawiki_sqlite_tables/searchindex-no-fts.sql": { "1. Artifact Identity": { - "Filename": "GETSCODE.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/GETSCODE.jcl", - "Language": "Jcl", + "Filename": "searchindex-no-fts.sql", + "Path": "sqlite/mediawiki_sqlite_tables/searchindex-no-fts.sql", + "Language": "Sqlite", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", + "Folder Dominant Lang": "sqlite", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" + "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": -408.31, - "Y": 75.09, - "Z": -1320.71 + "X": -1605.34, + "Y": -145.6, + "Z": -6950.06 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -813695,56 +813147,126 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 8, - "Coding LOC": 3, - "Documentation LOC": 4, - "Structural Magnitude": 2.16, - "Control Flow Ratio": "0.0%", + "Total LOC": 24, + "Coding LOC": 13, + "Documentation LOC": 5, + "Structural Magnitude": 10.16, + "Control Flow Ratio": "50.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.0 + "Raw Cognitive Density": 0.029 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "0.0%", + "Cognitive Load Exposure": "5.29%", + "Error & Exception Exposure": "90.28%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.31%", - "API Exposure": "3.53%", + "Testing Exposure": "2.4%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "16.56%", + "Documentation Exposure": "0.0%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "Unknown_Block", + "Function Name": "DELETE_Statement", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "50.0%", + "Start Line": 23, + "End Line": 23 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 13, + "End Line": 18 + }, + { + "Function Name": "DROP_Statement", "Structural Impact": 1.1, "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 7, - "End Line": 7 + "Start Line": 6, + "End Line": 6 + }, + { + "Function Name": "DROP_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 9, + "End Line": 9 + }, + { + "Function Name": "DROP_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 10, + "End Line": 10 + }, + { + "Function Name": "DROP_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 11, + "End Line": 11 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 20, + "End Line": 20 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 21, + "End Line": 21 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, + "Control Flow Branches": 1, "Sequential Logic Declarations": 1, "Function Parameters": 0, - "Function/Method Declarations": 1, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 0, + "Function/Method Declarations": 2, + "Class/Entity Declarations": 1, + "Defensive Programming Constructs": 1, + "Type/Safety Bypasses": 8, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 1, + "I/O and Network Boundaries": 1, + "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -813758,7 +813280,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -813778,12 +813300,12 @@ "Bitwise Operations": 0, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, + "Resource Deallocation & Cleanup": 5, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 4, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -813800,11 +813322,11 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 2, + "Core Var Decl": 1, "Design Camel Case": 0, - "Design Snake Case": 0, + "Design Snake Case": 1, "Design Pascal Case": 0, - "Design Upper Case": 2, + "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, @@ -813832,32 +813354,29 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, + "Direct Upstream (Fragility)": 0, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 1, - "Total Downstream (Absolute Dependency Blast Radius)": 1 + "Total Upstream (Absolute Fragility)": 0, + "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [ - "CBSA.CICSBSA.BUILDJCL", - "DEFAULT" - ] + "9. Extracted Dependencies": [] }, - "jcl/cics-banking-sample-application-cbsa/INQACC.jcl": { + "sqlite/mediawiki_sqlite_tables/tables-generated.sql": { "1. Artifact Identity": { - "Filename": "INQACC.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/INQACC.jcl", - "Language": "Jcl", + "Filename": "tables-generated.sql", + "Path": "sqlite/mediawiki_sqlite_tables/tables-generated.sql", + "Language": "Sqlite", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", + "Folder Dominant Lang": "sqlite", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" + "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": 327.12, - "Y": 40.92, - "Z": -3280.65 + "X": -1805.21, + "Y": -74.03, + "Z": -7206.15 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -813866,10 +813385,10 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 8, - "Coding LOC": 3, + "Total LOC": 948, + "Coding LOC": 683, "Documentation LOC": 4, - "Structural Magnitude": 2.16, + "Structural Magnitude": 247.46, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -813881,1438 +813400,2009 @@ "Cognitive Load Exposure": "0.0%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.31%", - "API Exposure": "3.53%", + "Testing Exposure": "2.43%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "16.56%", + "Documentation Exposure": "0.0%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "Unknown_Block", + "Function Name": "CREATE_Statement", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 16, + "End Line": 27 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 14, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 38, + "End Line": 51 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 103, + "End Line": 112 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 17, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 220, + "End Line": 236 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 251, + "End Line": 262 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 16, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 286, + "End Line": 301 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 381, + "End Line": 390 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 11, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 442, + "End Line": 452 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 14, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 485, + "End Line": 498 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 511, + "End Line": 522 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 580, + "End Line": 589 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 17, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 629, + "End Line": 645 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 685, + "End Line": 694 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 731, + "End Line": 740 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 13, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 743, + "End Line": 755 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 19, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 809, + "End Line": 827 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 16, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 836, + "End Line": 851 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.4, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 62, + "End Line": 69 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.4, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 80, + "End Line": 88 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.4, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 122, + "End Line": 128 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.4, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 316, + "End Line": 322 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.4, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 338, + "End Line": 346 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.4, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 536, + "End Line": 542 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.4, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 610, + "End Line": 616 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.4, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 673, + "End Line": 680 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.4, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 768, + "End Line": 774 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 91, + "End Line": 96 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 171, + "End Line": 176 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 196, + "End Line": 201 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 208, + "End Line": 213 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 349, + "End Line": 354 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 361, + "End Line": 366 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 371, + "End Line": 376 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 406, + "End Line": 411 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 414, + "End Line": 419 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 432, + "End Line": 437 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 475, + "End Line": 480 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 549, + "End Line": 554 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 565, + "End Line": 570 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 707, + "End Line": 712 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 719, + "End Line": 724 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 781, + "End Line": 786 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 860, + "End Line": 865 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 875, + "End Line": 880 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 897, + "End Line": 902 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 907, + "End Line": 912 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 5, + "End Line": 9 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 114, + "End Line": 117 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 141, + "End Line": 145 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 154, + "End Line": 157 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 162, + "End Line": 166 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 179, + "End Line": 182 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 187, + "End Line": 191 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 275, + "End Line": 279 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 332, + "End Line": 335 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 398, + "End Line": 401 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 424, + "End Line": 427 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 530, + "End Line": 533 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 574, + "End Line": 577 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 594, + "End Line": 598 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 603, + "End Line": 607 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 665, + "End Line": 668 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 760, + "End Line": 763 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 790, + "End Line": 793 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 796, + "End Line": 799 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 802, + "End Line": 806 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 868, + "End Line": 872 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 887, + "End Line": 890 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 923, + "End Line": 927 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 932, + "End Line": 936 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 941, + "End Line": 945 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 11, + "End Line": 11 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 13, + "End Line": 13 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 29, + "End Line": 31 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 33, + "End Line": 33 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 35, + "End Line": 35 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 53, + "End Line": 53 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 55, + "End Line": 55 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 57, + "End Line": 57 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 59, + "End Line": 59 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 71, + "End Line": 71 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 73, + "End Line": 73 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 75, + "End Line": 75 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 77, + "End Line": 77 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 98, + "End Line": 98 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 100, + "End Line": 100 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 119, + "End Line": 119 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 130, + "End Line": 130 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 132, + "End Line": 132 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 134, + "End Line": 134 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 136, + "End Line": 138 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 147, + "End Line": 147 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 149, + "End Line": 149 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 151, + "End Line": 151 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 159, + "End Line": 159 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 168, + "End Line": 168 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 184, + "End Line": 184 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 193, + "End Line": 193 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 203, + "End Line": 203 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 205, + "End Line": 205 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 215, + "End Line": 215 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 217, + "End Line": 217 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 238, + "End Line": 238 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 240, + "End Line": 242 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 244, + "End Line": 244 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 246, + "End Line": 246 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 248, + "End Line": 248 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 264, + "End Line": 264 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 266, + "End Line": 266 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 268, + "End Line": 268 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 270, + "End Line": 270 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 272, + "End Line": 272 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 281, + "End Line": 283 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 303, + "End Line": 303 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 305, + "End Line": 305 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 307, + "End Line": 307 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 309, + "End Line": 309 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 311, + "End Line": 313 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 324, + "End Line": 324 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 326, + "End Line": 328 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 330, + "End Line": 330 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 356, + "End Line": 356 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 358, + "End Line": 358 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 368, + "End Line": 368 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 378, + "End Line": 378 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 392, + "End Line": 392 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 394, + "End Line": 394 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 396, + "End Line": 396 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 403, + "End Line": 403 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 421, + "End Line": 421 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 429, + "End Line": 429 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 439, + "End Line": 439 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 454, + "End Line": 454 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 456, + "End Line": 456 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 458, + "End Line": 460 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 462, + "End Line": 462 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 464, + "End Line": 466 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 468, + "End Line": 468 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 470, + "End Line": 472 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 482, + "End Line": 482 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 500, + "End Line": 500 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 502, + "End Line": 502 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 504, + "End Line": 504 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 506, + "End Line": 506 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 508, + "End Line": 508 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 524, + "End Line": 524 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 526, + "End Line": 526 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 528, + "End Line": 528 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 544, + "End Line": 544 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 546, + "End Line": 546 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 556, + "End Line": 556 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 558, + "End Line": 558 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 560, + "End Line": 560 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 562, + "End Line": 562 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 572, + "End Line": 572 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 591, + "End Line": 591 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 600, + "End Line": 600 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 618, + "End Line": 618 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 620, + "End Line": 622 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 624, + "End Line": 626 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 647, + "End Line": 647 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 649, + "End Line": 651 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 653, + "End Line": 653 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 655, + "End Line": 657 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 659, + "End Line": 659 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 661, + "End Line": 661 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 663, + "End Line": 663 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 670, + "End Line": 670 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 682, + "End Line": 682 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 696, + "End Line": 696 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 698, + "End Line": 698 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 700, + "End Line": 700 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 702, + "End Line": 704 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 714, + "End Line": 714 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 716, + "End Line": 716 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 726, + "End Line": 726 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 728, + "End Line": 728 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 757, + "End Line": 757 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 765, + "End Line": 765 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 776, + "End Line": 778 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 788, + "End Line": 788 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 829, + "End Line": 829 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 831, + "End Line": 831 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 833, + "End Line": 833 + }, + { + "Function Name": "CREATE_Statement", "Structural Impact": 1.1, "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 7, - "End Line": 7 - } - ], - "6. Contextual Mitigations & Amplifications": "None Detected", - "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 1, - "Function Parameters": 0, - "Function/Method Declarations": 1, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 1, - "State Mutations / Variable Reassignments": 0, - "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 0, - "Unit Test Assertions": 0, - "Asynchronous/Concurrent Execution": 0, - "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, - "Decorators and Annotations": 0, - "Generic Type Abstractions": 0, - "Collection Iterators / Comprehensions": 0, - "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, - "Authorship Metadata": 0, - "Planned Work (TODOs)": 0, - "Acknowledged Tech Debt (FIXMEs)": 0, - "Specification Traceability Tags": 0, - "Server-Side Rendering Contexts": 0, - "Event Publishers / Emitters": 0, - "Dependency Injection Constructs": 0, - "Preprocessor Macros": 0, - "Pointer Arithmetic & Addressing": 0, - "Manual Memory Allocation": 0, - "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, - "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 0, - "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 0, - "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 0, - "Event Listeners & Subscribers": 0, - "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, - "Hardware Bridge": 0, - "Cryptography": 0, - "Auth Middleware": 0, - "Ipc Rpc Bridges": 0, - "Feature Flags": 0, - "Serialization Parsing": 0, - "Regex Execution": 0, - "Time Date Logic": 0, - "Cloud LLM API Integrations": 0, - "AI Orchestration Frameworks": 0, - "Vector Databases (RAG)": 0, - "Local Inference & Tensor Math": 0, - "Traditional Machine Learning (Stats/Trees)": 0, - "Deep Learning & Neural Networks": 0, - "Lazy Evaluation & Generators (O(1) Memory)": 0, - "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 2, - "Design Camel Case": 0, - "Design Snake Case": 0, - "Design Pascal Case": 0, - "Design Upper Case": 2, - "Design Short Vars": 0, - "Design Long Vars": 0, - "Duplicate Logic": 0, - "Orphaned Logic": 0, - "Instructional Code Examples": 0, - "Architectural Diagrams (Mermaid/PlantUML)": 0, - "Structured Literature Headers": 0, - "Hyperlinked Literature References": 0, - "High-Entropy / Obfuscated Logic": 0, - "Safety & Constraint Bypasses": 0, - "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, - "Global Environment Mutation": 0, - "Commented-Out Executable Logic": 0, - "Low-Level Bitwise / Cryptographic Math": 0, - "Non-Standard / Steganographic Imports": 0, - "Non-Standard Unicode / Homoglyphs": 0, - "Embedded Credentials & Keys": 0, - "Sec Extension Mismatch": 0, - "Sec Entropy": 0, - "Sec Tainted Injection": 0, - "Prompt Injection": 0, - "Agentic Rce": 0, - "Invisible Unicode Payload Smuggling": 0, - "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 - }, - "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, - "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 1, - "Total Downstream (Absolute Dependency Blast Radius)": 2 - }, - "9. Extracted Dependencies": [ - "CBSA.CICSBSA.BUILDJCL", - "DEFAULT" - ] - }, - "jcl/cics-banking-sample-application-cbsa/INQACCCU.jcl": { - "1. Artifact Identity": { - "Filename": "INQACCCU.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/INQACCCU.jcl", - "Language": "Jcl", - "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" - }, - "2. Topological Coordinates": { - "X": 980.0, - "Y": 17.53, - "Z": -1560.12 - }, - "3. Architectural Profile": { - "Repository Archetype": "Unclassified", - "Repository Drift (Z-Score)": 0.0, - "Repository Fingerprint": {}, - "File Archetype": null, - "File Drift (Z-Score)": 0.0, - "File Fingerprint": {}, - "Total LOC": 8, - "Coding LOC": 3, - "Documentation LOC": 4, - "Structural Magnitude": 2.16, - "Control Flow Ratio": "0.0%", - "Popularity Rank": 0, - "Raw Churn Frequency": 0.0, - "Authorship Centralization": 0.0, - "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.0 - }, - "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.31%", - "API Exposure": "3.53%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "16.56%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "5. Function Analysis": [ + "Start Line": 853, + "End Line": 853 + }, { - "Function Name": "Unknown_Block", + "Function Name": "CREATE_Statement", "Structural Impact": 1.1, "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 7, - "End Line": 7 - } - ], - "6. Contextual Mitigations & Amplifications": "None Detected", - "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 1, - "Function Parameters": 0, - "Function/Method Declarations": 1, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 1, - "State Mutations / Variable Reassignments": 0, - "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 0, - "Unit Test Assertions": 0, - "Asynchronous/Concurrent Execution": 0, - "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, - "Decorators and Annotations": 0, - "Generic Type Abstractions": 0, - "Collection Iterators / Comprehensions": 0, - "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, - "Authorship Metadata": 0, - "Planned Work (TODOs)": 0, - "Acknowledged Tech Debt (FIXMEs)": 0, - "Specification Traceability Tags": 0, - "Server-Side Rendering Contexts": 0, - "Event Publishers / Emitters": 0, - "Dependency Injection Constructs": 0, - "Preprocessor Macros": 0, - "Pointer Arithmetic & Addressing": 0, - "Manual Memory Allocation": 0, - "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, - "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 0, - "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 0, - "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 0, - "Event Listeners & Subscribers": 0, - "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, - "Hardware Bridge": 0, - "Cryptography": 0, - "Auth Middleware": 0, - "Ipc Rpc Bridges": 0, - "Feature Flags": 0, - "Serialization Parsing": 0, - "Regex Execution": 0, - "Time Date Logic": 0, - "Cloud LLM API Integrations": 0, - "AI Orchestration Frameworks": 0, - "Vector Databases (RAG)": 0, - "Local Inference & Tensor Math": 0, - "Traditional Machine Learning (Stats/Trees)": 0, - "Deep Learning & Neural Networks": 0, - "Lazy Evaluation & Generators (O(1) Memory)": 0, - "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 2, - "Design Camel Case": 0, - "Design Snake Case": 0, - "Design Pascal Case": 0, - "Design Upper Case": 2, - "Design Short Vars": 0, - "Design Long Vars": 0, - "Duplicate Logic": 0, - "Orphaned Logic": 0, - "Instructional Code Examples": 0, - "Architectural Diagrams (Mermaid/PlantUML)": 0, - "Structured Literature Headers": 0, - "Hyperlinked Literature References": 0, - "High-Entropy / Obfuscated Logic": 0, - "Safety & Constraint Bypasses": 0, - "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, - "Global Environment Mutation": 0, - "Commented-Out Executable Logic": 0, - "Low-Level Bitwise / Cryptographic Math": 0, - "Non-Standard / Steganographic Imports": 0, - "Non-Standard Unicode / Homoglyphs": 0, - "Embedded Credentials & Keys": 0, - "Sec Extension Mismatch": 0, - "Sec Entropy": 0, - "Sec Tainted Injection": 0, - "Prompt Injection": 0, - "Agentic Rce": 0, - "Invisible Unicode Payload Smuggling": 0, - "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 - }, - "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, - "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 1, - "Total Downstream (Absolute Dependency Blast Radius)": 4 - }, - "9. Extracted Dependencies": [ - "CBSA.CICSBSA.BUILDJCL", - "DEFAULT" - ] - }, - "jcl/cics-banking-sample-application-cbsa/INQCUST.jcl": { - "1. Artifact Identity": { - "Filename": "INQCUST.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/INQCUST.jcl", - "Language": "Jcl", - "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" - }, - "2. Topological Coordinates": { - "X": -800.75, - "Y": 78.66, - "Z": -2496.87 - }, - "3. Architectural Profile": { - "Repository Archetype": "Unclassified", - "Repository Drift (Z-Score)": 0.0, - "Repository Fingerprint": {}, - "File Archetype": null, - "File Drift (Z-Score)": 0.0, - "File Fingerprint": {}, - "Total LOC": 8, - "Coding LOC": 3, - "Documentation LOC": 4, - "Structural Magnitude": 2.16, - "Control Flow Ratio": "0.0%", - "Popularity Rank": 0, - "Raw Churn Frequency": 0.0, - "Authorship Centralization": 0.0, - "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.0 - }, - "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.31%", - "API Exposure": "3.53%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "16.56%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "5. Function Analysis": [ + "Start Line": 855, + "End Line": 855 + }, { - "Function Name": "Unknown_Block", + "Function Name": "CREATE_Statement", "Structural Impact": 1.1, "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 7, - "End Line": 7 - } - ], - "6. Contextual Mitigations & Amplifications": "None Detected", - "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 1, - "Function Parameters": 0, - "Function/Method Declarations": 1, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 1, - "State Mutations / Variable Reassignments": 0, - "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 0, - "Unit Test Assertions": 0, - "Asynchronous/Concurrent Execution": 0, - "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, - "Decorators and Annotations": 0, - "Generic Type Abstractions": 0, - "Collection Iterators / Comprehensions": 0, - "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, - "Authorship Metadata": 0, - "Planned Work (TODOs)": 0, - "Acknowledged Tech Debt (FIXMEs)": 0, - "Specification Traceability Tags": 0, - "Server-Side Rendering Contexts": 0, - "Event Publishers / Emitters": 0, - "Dependency Injection Constructs": 0, - "Preprocessor Macros": 0, - "Pointer Arithmetic & Addressing": 0, - "Manual Memory Allocation": 0, - "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, - "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 0, - "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 0, - "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 0, - "Event Listeners & Subscribers": 0, - "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, - "Hardware Bridge": 0, - "Cryptography": 0, - "Auth Middleware": 0, - "Ipc Rpc Bridges": 0, - "Feature Flags": 0, - "Serialization Parsing": 0, - "Regex Execution": 0, - "Time Date Logic": 0, - "Cloud LLM API Integrations": 0, - "AI Orchestration Frameworks": 0, - "Vector Databases (RAG)": 0, - "Local Inference & Tensor Math": 0, - "Traditional Machine Learning (Stats/Trees)": 0, - "Deep Learning & Neural Networks": 0, - "Lazy Evaluation & Generators (O(1) Memory)": 0, - "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 2, - "Design Camel Case": 0, - "Design Snake Case": 0, - "Design Pascal Case": 0, - "Design Upper Case": 2, - "Design Short Vars": 0, - "Design Long Vars": 0, - "Duplicate Logic": 0, - "Orphaned Logic": 0, - "Instructional Code Examples": 0, - "Architectural Diagrams (Mermaid/PlantUML)": 0, - "Structured Literature Headers": 0, - "Hyperlinked Literature References": 0, - "High-Entropy / Obfuscated Logic": 0, - "Safety & Constraint Bypasses": 0, - "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, - "Global Environment Mutation": 0, - "Commented-Out Executable Logic": 0, - "Low-Level Bitwise / Cryptographic Math": 0, - "Non-Standard / Steganographic Imports": 0, - "Non-Standard Unicode / Homoglyphs": 0, - "Embedded Credentials & Keys": 0, - "Sec Extension Mismatch": 0, - "Sec Entropy": 0, - "Sec Tainted Injection": 0, - "Prompt Injection": 0, - "Agentic Rce": 0, - "Invisible Unicode Payload Smuggling": 0, - "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 - }, - "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, - "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 1, - "Total Downstream (Absolute Dependency Blast Radius)": 5 - }, - "9. Extracted Dependencies": [ - "CBSA.CICSBSA.BUILDJCL", - "DEFAULT" - ] - }, - "jcl/cics-banking-sample-application-cbsa/INSTDB2.jcl": { - "1. Artifact Identity": { - "Filename": "INSTDB2.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/INSTDB2.jcl", - "Language": "Jcl", - "Architect": "Unknown Architect", - "Indentation Style": "Spaces", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" - }, - "2. Topological Coordinates": { - "X": 868.04, - "Y": 20.31, - "Z": -1946.84 - }, - "3. Architectural Profile": { - "Repository Archetype": "Unclassified", - "Repository Drift (Z-Score)": 0.0, - "Repository Fingerprint": {}, - "File Archetype": null, - "File Drift (Z-Score)": 0.0, - "File Fingerprint": {}, - "Total LOC": 106, - "Coding LOC": 73, - "Documentation LOC": 17, - "Structural Magnitude": 5.46, - "Control Flow Ratio": "0.0%", - "Popularity Rank": 0, - "Raw Churn Frequency": 0.0, - "Authorship Centralization": 0.0, - "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.0 - }, - "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "71.16%", - "Tech Debt Exposure": "47.43%", - "Testing Exposure": "2.34%", - "API Exposure": "0.0%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "5. Function Analysis": [ + "Start Line": 857, + "End Line": 857 + }, { - "Function Name": "GRANT", - "Structural Impact": 4.0, - "Lines of Code (LOC)": 90, + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 16, - "End Line": 105 - } - ], - "6. Contextual Mitigations & Amplifications": "None Detected", - "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 7, - "Function Parameters": 0, - "Function/Method Declarations": 1, - "Class/Entity Declarations": 1, - "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 7, - "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 0, - "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 0, - "Unit Test Assertions": 0, - "Asynchronous/Concurrent Execution": 0, - "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, - "Decorators and Annotations": 0, - "Generic Type Abstractions": 0, - "Collection Iterators / Comprehensions": 0, - "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, - "Authorship Metadata": 0, - "Planned Work (TODOs)": 0, - "Acknowledged Tech Debt (FIXMEs)": 0, - "Specification Traceability Tags": 0, - "Server-Side Rendering Contexts": 0, - "Event Publishers / Emitters": 0, - "Dependency Injection Constructs": 0, - "Preprocessor Macros": 0, - "Pointer Arithmetic & Addressing": 0, - "Manual Memory Allocation": 0, - "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 2, - "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 0, - "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 0, - "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 0, - "Event Listeners & Subscribers": 0, - "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, - "Structural Space Indentations": 38, - "Hardware Bridge": 0, - "Cryptography": 0, - "Auth Middleware": 0, - "Ipc Rpc Bridges": 0, - "Feature Flags": 0, - "Serialization Parsing": 0, - "Regex Execution": 0, - "Time Date Logic": 0, - "Cloud LLM API Integrations": 0, - "AI Orchestration Frameworks": 0, - "Vector Databases (RAG)": 0, - "Local Inference & Tensor Math": 0, - "Traditional Machine Learning (Stats/Trees)": 0, - "Deep Learning & Neural Networks": 0, - "Lazy Evaluation & Generators (O(1) Memory)": 0, - "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 10, - "Design Camel Case": 0, - "Design Snake Case": 0, - "Design Pascal Case": 0, - "Design Upper Case": 10, - "Design Short Vars": 0, - "Design Long Vars": 0, - "Duplicate Logic": 0, - "Orphaned Logic": 1, - "Instructional Code Examples": 0, - "Architectural Diagrams (Mermaid/PlantUML)": 0, - "Structured Literature Headers": 0, - "Hyperlinked Literature References": 0, - "High-Entropy / Obfuscated Logic": 0, - "Safety & Constraint Bypasses": 0, - "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 2, - "Global Environment Mutation": 0, - "Commented-Out Executable Logic": 0, - "Low-Level Bitwise / Cryptographic Math": 0, - "Non-Standard / Steganographic Imports": 0, - "Non-Standard Unicode / Homoglyphs": 0, - "Embedded Credentials & Keys": 0, - "Sec Extension Mismatch": 0, - "Sec Entropy": 0, - "Sec Tainted Injection": 1, - "Prompt Injection": 0, - "Agentic Rce": 0, - "Invisible Unicode Payload Smuggling": 0, - "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 - }, - "8. Dependency Network": { - "Direct Upstream (Fragility)": 3, - "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 1, - "Total Downstream (Absolute Dependency Blast Radius)": 0 - }, - "9. Extracted Dependencies": [ - "&DB2HLQ..SDSNLOAD", - "CBSA.DB2.JCL.INSTALL", - "DEFAULT" - ] - }, - "jcl/cics-banking-sample-application-cbsa/MAPGEN.jcl": { - "1. Artifact Identity": { - "Filename": "MAPGEN.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/MAPGEN.jcl", - "Language": "Jcl", - "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" - }, - "2. Topological Coordinates": { - "X": 55.05, - "Y": 60.88, - "Z": -2833.53 - }, - "3. Architectural Profile": { - "Repository Archetype": "Unclassified", - "Repository Drift (Z-Score)": 0.0, - "Repository Fingerprint": {}, - "File Archetype": null, - "File Drift (Z-Score)": 0.0, - "File Fingerprint": {}, - "Total LOC": 50, - "Coding LOC": 43, - "Documentation LOC": 6, - "Structural Magnitude": 7.46, - "Control Flow Ratio": "0.0%", - "Popularity Rank": 0, - "Raw Churn Frequency": 0.0, - "Authorship Centralization": 0.0, - "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.0 - }, - "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "86.83%", - "Tech Debt Exposure": "99.91%", - "Testing Exposure": "2.41%", - "API Exposure": "0.0%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "5. Function Analysis": [ + "Start Line": 882, + "End Line": 882 + }, { - "Function Name": "ASMDSECT", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 10, + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, - "Input Parameters": 1, + "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 40, - "End Line": 49 + "Start Line": 884, + "End Line": 884 }, { - "Function Name": "LINKMAP", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 6, + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, - "Input Parameters": 1, + "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 33, - "End Line": 38 + "Start Line": 892, + "End Line": 892 }, { - "Function Name": "ASMMAP", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 13, + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 20, - "End Line": 32 + "Start Line": 894, + "End Line": 894 }, { - "Function Name": "COPY", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 7, + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 13, - "End Line": 19 - } - ], - "6. Contextual Mitigations & Amplifications": "None Detected", - "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 25, - "Function Parameters": 3, - "Function/Method Declarations": 4, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 2, - "I/O and Network Boundaries": 28, - "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 0, - "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 0, - "Unit Test Assertions": 0, - "Asynchronous/Concurrent Execution": 0, - "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, - "Decorators and Annotations": 0, - "Generic Type Abstractions": 0, - "Collection Iterators / Comprehensions": 0, - "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, - "Authorship Metadata": 0, - "Planned Work (TODOs)": 0, - "Acknowledged Tech Debt (FIXMEs)": 0, - "Specification Traceability Tags": 0, - "Server-Side Rendering Contexts": 0, - "Event Publishers / Emitters": 0, - "Dependency Injection Constructs": 0, - "Preprocessor Macros": 0, - "Pointer Arithmetic & Addressing": 0, - "Manual Memory Allocation": 0, - "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, - "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 0, - "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 0, - "Thread Synchronization Locks": 4, - "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 0, - "Event Listeners & Subscribers": 0, - "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, - "Hardware Bridge": 0, - "Cryptography": 0, - "Auth Middleware": 0, - "Ipc Rpc Bridges": 0, - "Feature Flags": 0, - "Serialization Parsing": 0, - "Regex Execution": 0, - "Time Date Logic": 0, - "Cloud LLM API Integrations": 0, - "AI Orchestration Frameworks": 0, - "Vector Databases (RAG)": 0, - "Local Inference & Tensor Math": 0, - "Traditional Machine Learning (Stats/Trees)": 0, - "Deep Learning & Neural Networks": 0, - "Lazy Evaluation & Generators (O(1) Memory)": 0, - "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 41, - "Design Camel Case": 0, - "Design Snake Case": 0, - "Design Pascal Case": 0, - "Design Upper Case": 41, - "Design Short Vars": 1, - "Design Long Vars": 0, - "Duplicate Logic": 0, - "Orphaned Logic": 4, - "Instructional Code Examples": 0, - "Architectural Diagrams (Mermaid/PlantUML)": 0, - "Structured Literature Headers": 0, - "Hyperlinked Literature References": 0, - "High-Entropy / Obfuscated Logic": 0, - "Safety & Constraint Bypasses": 0, - "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, - "Global Environment Mutation": 0, - "Commented-Out Executable Logic": 0, - "Low-Level Bitwise / Cryptographic Math": 0, - "Non-Standard / Steganographic Imports": 0, - "Non-Standard Unicode / Homoglyphs": 0, - "Embedded Credentials & Keys": 0, - "Sec Extension Mismatch": 0, - "Sec Entropy": 0, - "Sec Tainted Injection": 2, - "Prompt Injection": 0, - "Agentic Rce": 0, - "Invisible Unicode Payload Smuggling": 0, - "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 - }, - "8. Dependency Network": { - "Direct Upstream (Fragility)": 5, - "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 - }, - "9. Extracted Dependencies": [ - "&CBSAHLQ..BMS(&MEMBER)", - "&CBSAHLQ..DSECT(&MEMBER)", - "&CBSAHLQ..LOADLIB(&MEMBER)", - "&CICSHLQ..SDFHMAC", - "SYS1.MACLIB" - ] - }, - "jcl/cics-banking-sample-application-cbsa/RACF001.jcl": { - "1. Artifact Identity": { - "Filename": "RACF001.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/RACF001.jcl", - "Language": "Jcl", - "Architect": "Unknown Architect", - "Indentation Style": "Spaces", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" - }, - "2. Topological Coordinates": { - "X": -955.94, - "Y": 107.25, - "Z": -1683.66 - }, - "3. Architectural Profile": { - "Repository Archetype": "Unclassified", - "Repository Drift (Z-Score)": 0.0, - "Repository Fingerprint": {}, - "File Archetype": null, - "File Drift (Z-Score)": 0.0, - "File Fingerprint": {}, - "Total LOC": 20, - "Coding LOC": 15, - "Documentation LOC": 4, - "Structural Magnitude": 1.9, - "Control Flow Ratio": "0.0%", - "Popularity Rank": 0, - "Raw Churn Frequency": 0.0, - "Authorship Centralization": 0.0, - "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.0 - }, - "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.33%", - "API Exposure": "0.0%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "5. Function Analysis": [ + "Start Line": 904, + "End Line": 904 + }, { - "Function Name": "TSO", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 12, + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 8, - "End Line": 19 - } - ], - "6. Contextual Mitigations & Amplifications": "None Detected", - "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 4, - "Function Parameters": 0, - "Function/Method Declarations": 1, - "Class/Entity Declarations": 1, - "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 4, - "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 0, - "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 0, - "Unit Test Assertions": 0, - "Asynchronous/Concurrent Execution": 0, - "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, - "Decorators and Annotations": 0, - "Generic Type Abstractions": 0, - "Collection Iterators / Comprehensions": 0, - "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, - "Authorship Metadata": 0, - "Planned Work (TODOs)": 0, - "Acknowledged Tech Debt (FIXMEs)": 0, - "Specification Traceability Tags": 0, - "Server-Side Rendering Contexts": 0, - "Event Publishers / Emitters": 0, - "Dependency Injection Constructs": 0, - "Preprocessor Macros": 0, - "Pointer Arithmetic & Addressing": 0, - "Manual Memory Allocation": 0, - "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 2, - "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 0, - "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 0, - "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 0, - "Event Listeners & Subscribers": 0, - "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, - "Structural Space Indentations": 2, - "Hardware Bridge": 0, - "Cryptography": 0, - "Auth Middleware": 0, - "Ipc Rpc Bridges": 0, - "Feature Flags": 0, - "Serialization Parsing": 0, - "Regex Execution": 0, - "Time Date Logic": 0, - "Cloud LLM API Integrations": 0, - "AI Orchestration Frameworks": 0, - "Vector Databases (RAG)": 0, - "Local Inference & Tensor Math": 0, - "Traditional Machine Learning (Stats/Trees)": 0, - "Deep Learning & Neural Networks": 0, - "Lazy Evaluation & Generators (O(1) Memory)": 0, - "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 6, - "Design Camel Case": 0, - "Design Snake Case": 0, - "Design Pascal Case": 0, - "Design Upper Case": 6, - "Design Short Vars": 0, - "Design Long Vars": 0, - "Duplicate Logic": 0, - "Orphaned Logic": 0, - "Instructional Code Examples": 0, - "Architectural Diagrams (Mermaid/PlantUML)": 0, - "Structured Literature Headers": 0, - "Hyperlinked Literature References": 0, - "High-Entropy / Obfuscated Logic": 0, - "Safety & Constraint Bypasses": 0, - "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 1, - "Global Environment Mutation": 0, - "Commented-Out Executable Logic": 0, - "Low-Level Bitwise / Cryptographic Math": 0, - "Non-Standard / Steganographic Imports": 0, - "Non-Standard Unicode / Homoglyphs": 0, - "Embedded Credentials & Keys": 0, - "Sec Extension Mismatch": 0, - "Sec Entropy": 0, - "Sec Tainted Injection": 1, - "Prompt Injection": 0, - "Agentic Rce": 0, - "Invisible Unicode Payload Smuggling": 0, - "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 - }, - "8. Dependency Network": { - "Direct Upstream (Fragility)": 0, - "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 - }, - "9. Extracted Dependencies": [] - }, - "jcl/cics-banking-sample-application-cbsa/REPLCICS.jcl": { - "1. Artifact Identity": { - "Filename": "REPLCICS.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/REPLCICS.jcl", - "Language": "Jcl", - "Architect": "Unknown Architect", - "Indentation Style": "Spaces", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" - }, - "2. Topological Coordinates": { - "X": 1358.19, - "Y": 39.09, - "Z": -2077.51 - }, - "3. Architectural Profile": { - "Repository Archetype": "Unclassified", - "Repository Drift (Z-Score)": 0.0, - "Repository Fingerprint": {}, - "File Archetype": null, - "File Drift (Z-Score)": 0.0, - "File Fingerprint": {}, - "Total LOC": 22, - "Coding LOC": 17, - "Documentation LOC": 4, - "Structural Magnitude": 2.04, - "Control Flow Ratio": "0.0%", - "Popularity Rank": 0, - "Raw Churn Frequency": 0.0, - "Authorship Centralization": 0.0, - "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.0 - }, - "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", - "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.33%", - "API Exposure": "0.0%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "5. Function Analysis": [ + "Start Line": 914, + "End Line": 914 + }, { - "Function Name": "JOBSTEP", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 14, + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 8, - "End Line": 21 - } - ], - "6. Contextual Mitigations & Amplifications": "None Detected", - "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 7, - "Function Parameters": 0, - "Function/Method Declarations": 1, - "Class/Entity Declarations": 1, - "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 7, - "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 0, - "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 0, - "Unit Test Assertions": 0, - "Asynchronous/Concurrent Execution": 0, - "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, - "Decorators and Annotations": 0, - "Generic Type Abstractions": 0, - "Collection Iterators / Comprehensions": 0, - "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, - "Authorship Metadata": 0, - "Planned Work (TODOs)": 0, - "Acknowledged Tech Debt (FIXMEs)": 0, - "Specification Traceability Tags": 0, - "Server-Side Rendering Contexts": 0, - "Event Publishers / Emitters": 0, - "Dependency Injection Constructs": 0, - "Preprocessor Macros": 0, - "Pointer Arithmetic & Addressing": 0, - "Manual Memory Allocation": 0, - "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 2, - "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 0, - "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 0, - "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 0, - "Event Listeners & Subscribers": 0, - "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, - "Structural Space Indentations": 2, - "Hardware Bridge": 0, - "Cryptography": 0, - "Auth Middleware": 0, - "Ipc Rpc Bridges": 0, - "Feature Flags": 0, - "Serialization Parsing": 0, - "Regex Execution": 0, - "Time Date Logic": 0, - "Cloud LLM API Integrations": 0, - "AI Orchestration Frameworks": 0, - "Vector Databases (RAG)": 0, - "Local Inference & Tensor Math": 0, - "Traditional Machine Learning (Stats/Trees)": 0, - "Deep Learning & Neural Networks": 0, - "Lazy Evaluation & Generators (O(1) Memory)": 0, - "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 14, - "Design Camel Case": 0, - "Design Snake Case": 0, - "Design Pascal Case": 0, - "Design Upper Case": 14, - "Design Short Vars": 0, - "Design Long Vars": 0, - "Duplicate Logic": 0, - "Orphaned Logic": 1, - "Instructional Code Examples": 0, - "Architectural Diagrams (Mermaid/PlantUML)": 0, - "Structured Literature Headers": 0, - "Hyperlinked Literature References": 0, - "High-Entropy / Obfuscated Logic": 0, - "Safety & Constraint Bypasses": 0, - "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, - "Global Environment Mutation": 0, - "Commented-Out Executable Logic": 0, - "Low-Level Bitwise / Cryptographic Math": 0, - "Non-Standard / Steganographic Imports": 0, - "Non-Standard Unicode / Homoglyphs": 0, - "Embedded Credentials & Keys": 0, - "Sec Extension Mismatch": 0, - "Sec Entropy": 0, - "Sec Tainted Injection": 1, - "Prompt Injection": 0, - "Agentic Rce": 0, - "Invisible Unicode Payload Smuggling": 0, - "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 - }, - "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, - "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 - }, - "9. Extracted Dependencies": [ - "CBSA.JCL.INSTALL", - "FEU.Z25A.PROCLIB" - ] - }, - "jcl/cics-banking-sample-application-cbsa/REPLSIP.jcl": { - "1. Artifact Identity": { - "Filename": "REPLSIP.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/REPLSIP.jcl", - "Language": "Jcl", - "Architect": "Unknown Architect", - "Indentation Style": "Spaces", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" - }, - "2. Topological Coordinates": { - "X": -755.48, - "Y": 126.68, - "Z": -1637.07 - }, - "3. Architectural Profile": { - "Repository Archetype": "Unclassified", - "Repository Drift (Z-Score)": 0.0, - "Repository Fingerprint": {}, - "File Archetype": null, - "File Drift (Z-Score)": 0.0, - "File Fingerprint": {}, - "Total LOC": 22, - "Coding LOC": 17, - "Documentation LOC": 4, - "Structural Magnitude": 2.04, - "Control Flow Ratio": "0.0%", - "Popularity Rank": 0, - "Raw Churn Frequency": 0.0, - "Authorship Centralization": 0.0, - "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.0 - }, - "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", - "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.33%", - "API Exposure": "0.0%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "5. Function Analysis": [ + "Start Line": 916, + "End Line": 916 + }, { - "Function Name": "JOBSTEP", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 14, + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 8, - "End Line": 21 - } - ], - "6. Contextual Mitigations & Amplifications": "None Detected", - "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 7, - "Function Parameters": 0, - "Function/Method Declarations": 1, - "Class/Entity Declarations": 1, - "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 7, - "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 0, - "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 0, - "Unit Test Assertions": 0, - "Asynchronous/Concurrent Execution": 0, - "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, - "Decorators and Annotations": 0, - "Generic Type Abstractions": 0, - "Collection Iterators / Comprehensions": 0, - "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, - "Authorship Metadata": 0, - "Planned Work (TODOs)": 0, - "Acknowledged Tech Debt (FIXMEs)": 0, - "Specification Traceability Tags": 0, - "Server-Side Rendering Contexts": 0, - "Event Publishers / Emitters": 0, - "Dependency Injection Constructs": 0, - "Preprocessor Macros": 0, - "Pointer Arithmetic & Addressing": 0, - "Manual Memory Allocation": 0, - "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 2, - "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 0, - "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 0, - "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 0, - "Event Listeners & Subscribers": 0, - "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, - "Structural Space Indentations": 2, - "Hardware Bridge": 0, - "Cryptography": 0, - "Auth Middleware": 0, - "Ipc Rpc Bridges": 0, - "Feature Flags": 0, - "Serialization Parsing": 0, - "Regex Execution": 0, - "Time Date Logic": 0, - "Cloud LLM API Integrations": 0, - "AI Orchestration Frameworks": 0, - "Vector Databases (RAG)": 0, - "Local Inference & Tensor Math": 0, - "Traditional Machine Learning (Stats/Trees)": 0, - "Deep Learning & Neural Networks": 0, - "Lazy Evaluation & Generators (O(1) Memory)": 0, - "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 14, - "Design Camel Case": 0, - "Design Snake Case": 0, - "Design Pascal Case": 0, - "Design Upper Case": 14, - "Design Short Vars": 0, - "Design Long Vars": 0, - "Duplicate Logic": 0, - "Orphaned Logic": 1, - "Instructional Code Examples": 0, - "Architectural Diagrams (Mermaid/PlantUML)": 0, - "Structured Literature Headers": 0, - "Hyperlinked Literature References": 0, - "High-Entropy / Obfuscated Logic": 0, - "Safety & Constraint Bypasses": 0, - "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, - "Global Environment Mutation": 0, - "Commented-Out Executable Logic": 0, - "Low-Level Bitwise / Cryptographic Math": 0, - "Non-Standard / Steganographic Imports": 0, - "Non-Standard Unicode / Homoglyphs": 0, - "Embedded Credentials & Keys": 0, - "Sec Extension Mismatch": 0, - "Sec Entropy": 0, - "Sec Tainted Injection": 1, - "Prompt Injection": 0, - "Agentic Rce": 0, - "Invisible Unicode Payload Smuggling": 0, - "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 - }, - "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, - "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 - }, - "9. Extracted Dependencies": [ - "CBSA.JCL.INSTALL", - "DFH560.SYSIN" - ] - }, - "jcl/cics-banking-sample-application-cbsa/RESTCICS.jcl": { - "1. Artifact Identity": { - "Filename": "RESTCICS.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/RESTCICS.jcl", - "Language": "Jcl", - "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" - }, - "2. Topological Coordinates": { - "X": -823.36, - "Y": 95.33, - "Z": -2963.92 - }, - "3. Architectural Profile": { - "Repository Archetype": "Unclassified", - "Repository Drift (Z-Score)": 0.0, - "Repository Fingerprint": {}, - "File Archetype": null, - "File Drift (Z-Score)": 0.0, - "File Fingerprint": {}, - "Total LOC": 14, - "Coding LOC": 8, - "Documentation LOC": 5, - "Structural Magnitude": 1.36, - "Control Flow Ratio": "0.0%", - "Popularity Rank": 0, - "Raw Churn Frequency": 0.0, - "Authorship Centralization": 0.0, - "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.0 - }, - "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", - "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.33%", - "API Exposure": "0.0%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "5. Function Analysis": [ + "Start Line": 918, + "End Line": 920 + }, { - "Function Name": "STEP0001", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 8, - "End Line": 12 + "Start Line": 929, + "End Line": 929 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 938, + "End Line": 938 + }, + { + "Function Name": "CREATE_Statement", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 947, + "End Line": 947 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 2, + "Sequential Logic Declarations": 0, "Function Parameters": 0, - "Function/Method Declarations": 1, - "Class/Entity Declarations": 1, - "Defensive Programming Constructs": 0, + "Function/Method Declarations": 134, + "Class/Entity Declarations": 64, + "Defensive Programming Constructs": 83, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -815340,7 +815430,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 2, + "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -815353,7 +815443,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 398, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -815361,7 +815451,7 @@ "Feature Flags": 0, "Serialization Parsing": 0, "Regex Execution": 0, - "Time Date Logic": 0, + "Time Date Logic": 1, "Cloud LLM API Integrations": 0, "AI Orchestration Frameworks": 0, "Vector Databases (RAG)": 0, @@ -815370,15 +815460,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 3, + "Core Var Decl": 0, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 3, + "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -815386,7 +815476,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 1, + "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -815408,35 +815498,60 @@ "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [] - }, - "jcl/cics-banking-sample-application-cbsa/RESTZOSC.jcl": { + } + } + }, + "python/wtfpython": { + "Directory Group Magnitude": 313.92, + "File Count": 6, + "Ecosystem Fingerprint (Archetypes)": { + "Unclassified": "83.3%", + "Static: Literature & Documentation": "16.7%" + }, + "Average Risk Exposures": { + "Cognitive Load Exposure": "11.38%", + "Error & Exception Exposure": "29.13%", + "Tech Debt Exposure": "31.29%", + "Testing Exposure": "14.88%", + "API Exposure": "2.85%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "31.95%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "66.67%", + "Instability Exposure": "41.67%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "7.95%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "Files": { + "python/wtfpython/README.md": { "1. Artifact Identity": { - "Filename": "RESTZOSC.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/RESTZOSC.jcl", - "Language": "Jcl", + "Filename": "README.md", + "Path": "python/wtfpython/README.md", + "Language": "Markdown", "Architect": "Unknown Architect", "Indentation Style": "Neutral / No Indentation", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" + "Doc Umbrella": 1.0, + "Folder Dominant Lang": "python", + "Lock Tier": 1, + "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": 1641.21, - "Y": -0.78, - "Z": -2558.8 + "X": -4576.29, + "Y": 99.18, + "Z": 10610.25 }, "3. Architectural Profile": { - "Repository Archetype": "Unclassified", + "Repository Archetype": "Static: Literature & Documentation", "Repository Drift (Z-Score)": 0.0, "Repository Fingerprint": {}, - "File Archetype": null, + "File Archetype": "N/A", "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 14, - "Coding LOC": 8, - "Documentation LOC": 5, - "Structural Magnitude": 1.36, + "Total LOC": 4180, + "Coding LOC": 0, + "Documentation LOC": 3118, + "Structural Magnitude": 83.6, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -815445,42 +815560,31 @@ "Raw Cognitive Density": 0.0 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", - "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.33%", - "API Exposure": "0.0%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", - "Hardcoded Payload Artifacts": "0.0%" + "Cognitive Load Exposure": "[UNSCANNED - NO DATA]", + "Error & Exception Exposure": "[UNSCANNED - NO DATA]", + "Tech Debt Exposure": "[UNSCANNED - NO DATA]", + "Testing Exposure": "[UNSCANNED - NO DATA]", + "API Exposure": "[UNSCANNED - NO DATA]", + "Concurrency Exposure": "[UNSCANNED - NO DATA]", + "State Flux Exposure": "[UNSCANNED - NO DATA]", + "Commented Logic Exposure": "[UNSCANNED - NO DATA]", + "Specification Exposure": "[UNSCANNED - NO DATA]", + "Instability Exposure": "[UNSCANNED - NO DATA]", + "Volatility Exposure": "[UNSCANNED - NO DATA]", + "Documentation Exposure": "[UNSCANNED - NO DATA]", + "Hardcoded Payload Artifacts": "[UNSCANNED - NO DATA]" }, - "5. Function Analysis": [ - { - "Function Name": "STEP0001", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 8, - "End Line": 12 - } - ], + "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 2, + "Sequential Logic Declarations": 0, "Function Parameters": 0, - "Function/Method Declarations": 1, - "Class/Entity Declarations": 1, + "Function/Method Declarations": 0, + "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -815508,7 +815612,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 2, + "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -815538,23 +815642,23 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 3, + "Core Var Decl": 0, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 3, + "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, - "Instructional Code Examples": 0, + "Orphaned Logic": 0, + "Instructional Code Examples": 504, "Architectural Diagrams (Mermaid/PlantUML)": 0, - "Structured Literature Headers": 0, - "Hyperlinked Literature References": 0, + "Structured Literature Headers": 174, + "Hyperlinked Literature References": 171, "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 1, + "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -815570,41 +815674,44 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 0, + "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [] + "9. Extracted Dependencies": [ + "/CONTRIBUTING.md", + "/mixed_tabs_and_spaces.py" + ] }, - "jcl/cics-banking-sample-application-cbsa/SHUTCICS.jcl": { + "python/wtfpython/2_tricky_strings.py": { "1. Artifact Identity": { - "Filename": "SHUTCICS.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/SHUTCICS.jcl", - "Language": "Jcl", + "Filename": "2_tricky_strings.py", + "Path": "python/wtfpython/2_tricky_strings.py", + "Language": "Python", "Architect": "Unknown Architect", "Indentation Style": "Neutral / No Indentation", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" + "Doc Umbrella": 1.0, + "Folder Dominant Lang": "python", + "Lock Tier": 1.5, + "Identity Proof": "Ecosystem Consensus Lock (75% Local Dominance)" }, "2. Topological Coordinates": { - "X": -607.35, - "Y": 72.27, - "Z": -1232.23 + "X": -4313.75, + "Y": 191.44, + "Z": 10129.64 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", "Repository Drift (Z-Score)": 0.0, "Repository Fingerprint": {}, - "File Archetype": null, + "File Archetype": "Unclassified", "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 14, - "Coding LOC": 8, - "Documentation LOC": 5, - "Structural Magnitude": 1.36, + "Total LOC": 20, + "Coding LOC": 12, + "Documentation LOC": 3, + "Structural Magnitude": 15.24, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -815614,41 +815721,30 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", - "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.33%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "2.3%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "0.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", "Documentation Exposure": "0.0%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [ - { - "Function Name": "STEP0001", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 8, - "End Line": 12 - } - ], + "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 2, + "Sequential Logic Declarations": 6, "Function Parameters": 0, - "Function/Method Declarations": 1, - "Class/Entity Declarations": 1, - "Defensive Programming Constructs": 0, + "Function/Method Declarations": 0, + "Class/Entity Declarations": 0, + "Defensive Programming Constructs": 6, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -815667,7 +815763,7 @@ "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, - "Acknowledged Tech Debt (FIXMEs)": 0, + "Acknowledged Tech Debt (FIXMEs)": 8, "Specification Traceability Tags": 0, "Server-Side Rendering Contexts": 0, "Event Publishers / Emitters": 0, @@ -815676,7 +815772,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 2, + "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -815706,15 +815802,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 3, + "Core Var Decl": 6, "Design Camel Case": 0, - "Design Snake Case": 0, + "Design Snake Case": 6, "Design Pascal Case": 0, - "Design Upper Case": 3, - "Design Short Vars": 0, + "Design Upper Case": 0, + "Design Short Vars": 6, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -815722,7 +815818,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 1, + "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -815745,81 +815841,81 @@ }, "9. Extracted Dependencies": [] }, - "jcl/cics-banking-sample-application-cbsa/SHUTZOSC.jcl": { + "python/wtfpython/insert_ids.py": { "1. Artifact Identity": { - "Filename": "SHUTZOSC.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/SHUTZOSC.jcl", - "Language": "Jcl", + "Filename": "insert_ids.py", + "Path": "python/wtfpython/insert_ids.py", + "Language": "Python", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" + "Indentation Style": "Spaces", + "Doc Umbrella": 1.0, + "Folder Dominant Lang": "python", + "Lock Tier": 1.5, + "Identity Proof": "Ecosystem Consensus Lock (75% Local Dominance)" }, "2. Topological Coordinates": { - "X": 172.91, - "Y": 79.17, - "Z": -3677.07 + "X": -4069.61, + "Y": 187.76, + "Z": 10761.73 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", "Repository Drift (Z-Score)": 0.0, "Repository Fingerprint": {}, - "File Archetype": null, + "File Archetype": "Unclassified", "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 14, - "Coding LOC": 8, - "Documentation LOC": 5, - "Structural Magnitude": 1.36, - "Control Flow Ratio": "0.0%", + "Total LOC": 25, + "Coding LOC": 15, + "Documentation LOC": 0, + "Structural Magnitude": 8.4, + "Control Flow Ratio": "44.4%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.0 + "Raw Cognitive Density": 0.32 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", - "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.33%", - "API Exposure": "0.0%", + "Cognitive Load Exposure": "15.19%", + "Error & Exception Exposure": "79.76%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "2.31%", + "API Exposure": "3.53%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", + "State Flux Exposure": "91.68%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", + "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "STEP0001", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, + "Function Name": "generate_random_id_comment", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 8, - "End Line": 12 + "Start Line": 9, + "End Line": 11 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 2, - "Function Parameters": 0, + "Control Flow Branches": 4, + "Sequential Logic Declarations": 5, + "Function Parameters": 1, "Function/Method Declarations": 1, - "Class/Entity Declarations": 1, + "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 0, + "Type/Safety Bypasses": 2, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 2, + "Exposed API / Public Exports": 1, + "State Mutations / Variable Reassignments": 6, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, @@ -815832,7 +815928,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -815844,7 +815940,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 2, + "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -815857,7 +815953,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 7, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -815874,15 +815970,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 3, + "Core Var Decl": 5, "Design Camel Case": 0, - "Design Snake Case": 0, + "Design Snake Case": 5, "Design Pascal Case": 0, - "Design Upper Case": 3, + "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -815890,7 +815986,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 1, + "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -815906,53 +816002,55 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 0, + "Direct Upstream (Fragility)": 1, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [] + "9. Extracted Dependencies": [ + "uuid" + ] }, - "jcl/cics-banking-sample-application-cbsa/UPDACC.jcl": { + "python/wtfpython/mixed_tabs_and_spaces.py": { "1. Artifact Identity": { - "Filename": "UPDACC.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/UPDACC.jcl", - "Language": "Jcl", + "Filename": "mixed_tabs_and_spaces.py", + "Path": "python/wtfpython/mixed_tabs_and_spaces.py", + "Language": "Python", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" + "Indentation Style": "Mixed (75.0% Spaces / 25.0% Tabs)", + "Doc Umbrella": 1.0, + "Folder Dominant Lang": "python", + "Lock Tier": 1.5, + "Identity Proof": "Ecosystem Consensus Lock (75% Local Dominance)" }, "2. Topological Coordinates": { - "X": 1173.27, - "Y": 59.04, - "Z": -2852.23 + "X": -4807.29, + "Y": 107.58, + "Z": 10236.98 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", "Repository Drift (Z-Score)": 0.0, "Repository Fingerprint": {}, - "File Archetype": null, + "File Archetype": "Unclassified", "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 8, - "Coding LOC": 3, - "Documentation LOC": 4, - "Structural Magnitude": 2.16, - "Control Flow Ratio": "0.0%", - "Popularity Rank": 0, + "Coding LOC": 6, + "Documentation LOC": 0, + "Structural Magnitude": 4.22, + "Control Flow Ratio": "33.3%", + "Popularity Rank": 1, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.0 + "Raw Cognitive Density": 0.02 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "0.0%", + "Cognitive Load Exposure": "5.12%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.31%", + "Testing Exposure": "2.33%", "API Exposure": "3.53%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -815960,26 +816058,26 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "16.56%", + "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "Unknown_Block", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 7, - "End Line": 7 + "Function Name": "square", + "Structural Impact": 3.1, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "33.3%", + "Start Line": 1, + "End Line": 5 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 1, - "Function Parameters": 0, + "Control Flow Branches": 1, + "Sequential Logic Declarations": 2, + "Function Parameters": 1, "Function/Method Declarations": 1, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, @@ -816000,7 +816098,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -816013,7 +816111,7 @@ "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, - "Ad-hoc Print / Debug Statements": 0, + "Ad-hoc Print / Debug Statements": 1, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, @@ -816024,8 +816122,8 @@ "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Tab Indentations": 1, + "Structural Space Indentations": 3, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -816042,11 +816140,11 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 2, + "Core Var Decl": 1, "Design Camel Case": 0, - "Design Snake Case": 0, + "Design Snake Case": 1, "Design Pascal Case": 0, - "Design Upper Case": 2, + "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, @@ -816074,107 +816172,174 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, - "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 1, - "Total Downstream (Absolute Dependency Blast Radius)": 1 + "Direct Upstream (Fragility)": 0, + "Direct Downstream (Dependency Blast Radius)": 1, + "Total Upstream (Absolute Fragility)": 0, + "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [ - "CBSA.CICSBSA.BUILDJCL", - "DEFAULT" - ] + "9. Extracted Dependencies": [] }, - "jcl/cics-banking-sample-application-cbsa/UPDCUST.jcl": { + "python/wtfpython/notebook_generator.py": { "1. Artifact Identity": { - "Filename": "UPDCUST.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/UPDCUST.jcl", - "Language": "Jcl", + "Filename": "notebook_generator.py", + "Path": "python/wtfpython/notebook_generator.py", + "Language": "Python", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" + "Indentation Style": "Spaces", + "Doc Umbrella": 1.0, + "Folder Dominant Lang": "python", + "Lock Tier": 1.5, + "Identity Proof": "Ecosystem Consensus Lock (75% Local Dominance)" }, "2. Topological Coordinates": { - "X": 68.17, - "Y": 38.89, - "Z": -1191.01 + "X": -4390.18, + "Y": 179.55, + "Z": 10396.82 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", "Repository Drift (Z-Score)": 0.0, "Repository Fingerprint": {}, - "File Archetype": null, + "File Archetype": "Unclassified", "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 9, - "Coding LOC": 3, - "Documentation LOC": 5, - "Structural Magnitude": 2.16, - "Control Flow Ratio": "0.0%", + "Total LOC": 398, + "Coding LOC": 245, + "Documentation LOC": 89, + "Structural Magnitude": 199.8, + "Control Flow Ratio": "65.9%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.0 + "Raw Cognitive Density": 0.89 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.31%", - "API Exposure": "3.53%", + "Cognitive Load Exposure": "42.85%", + "Error & Exception Exposure": "95.04%", + "Tech Debt Exposure": "25.51%", + "Testing Exposure": "80.0%", + "API Exposure": "6.52%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", + "State Flux Exposure": "100.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "15.92%", + "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "Unknown_Block", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, + "Function Name": "parse_example_parts", + "Structural Impact": 57.1, + "Lines of Code (LOC)": 103, + "Control Flow Branches": 25, + "Input Parameters": 3, + "Control Flow Ratio": "92.6%", + "Start Line": 96, + "End Line": 198 + }, + { + "Function Name": "convert_to_cells", + "Structural Impact": 16.2, + "Lines of Code (LOC)": 81, + "Control Flow Branches": 6, + "Input Parameters": 2, + "Control Flow Ratio": "54.5%", + "Start Line": 228, + "End Line": 308 + }, + { + "Function Name": "convert_to_notebook", + "Structural Impact": 11.6, + "Lines of Code (LOC)": 32, + "Control Flow Branches": 4, + "Input Parameters": 3, + "Control Flow Ratio": "66.7%", + "Start Line": 311, + "End Line": 342 + }, + { + "Function Name": "inspect_and_sanitize_code_lines", + "Structural Impact": 6.6, + "Lines of Code (LOC)": 18, + "Control Flow Branches": 3, + "Input Parameters": 1, + "Control Flow Ratio": "60.0%", + "Start Line": 208, + "End Line": 225 + }, + { + "Function Name": "remove_from_beginning", + "Structural Impact": 5.4, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 2, + "Input Parameters": 2, + "Control Flow Ratio": "50.0%", + "Start Line": 201, + "End Line": 205 + }, + { + "Function Name": "is_interactive_statement", + "Structural Impact": 4.5, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 2, + "Input Parameters": 1, + "Control Flow Ratio": "40.0%", + "Start Line": 89, + "End Line": 93 + }, + { + "Function Name": "generate_code_block", + "Structural Impact": 2.5, + "Lines of Code (LOC)": 16, "Control Flow Branches": 0, - "Input Parameters": 0, + "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 8, - "End Line": 8 + "Start Line": 57, + "End Line": 72 + }, + { + "Function Name": "generate_markdown_block", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 75, + "End Line": 86 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 1, - "Function Parameters": 0, - "Function/Method Declarations": 1, + "Control Flow Branches": 56, + "Sequential Logic Declarations": 29, + "Function Parameters": 9, + "Function/Method Declarations": 8, "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 0, + "Defensive Programming Constructs": 2, + "Type/Safety Bypasses": 17, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 1, - "State Mutations / Variable Reassignments": 0, + "I/O and Network Boundaries": 4, + "Exposed API / Public Exports": 8, + "State Mutations / Variable Reassignments": 81, "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 0, + "Structured Documentation Blocks": 8, "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 0, + "Closures and Anonymous Functions": 1, "Global State Dependencies": 0, "Decorators and Annotations": 0, - "Generic Type Abstractions": 0, + "Generic Type Abstractions": 1, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, + "Module Dependencies (Imports)": 3, "Authorship Metadata": 0, - "Planned Work (TODOs)": 0, - "Acknowledged Tech Debt (FIXMEs)": 0, + "Planned Work (TODOs)": 3, + "Acknowledged Tech Debt (FIXMEs)": 1, "Specification Traceability Tags": 0, "Server-Side Rendering Contexts": 0, "Event Publishers / Emitters": 0, @@ -816184,19 +816349,19 @@ "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, - "Ad-hoc Print / Debug Statements": 0, + "Ad-hoc Print / Debug Statements": 1, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 0, + "Bitwise Operations": 1, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 0, + "Private / Encapsulated Scopes": 1, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 226, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -816213,13 +816378,13 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 2, + "Core Var Decl": 69, "Design Camel Case": 0, - "Design Snake Case": 0, + "Design Snake Case": 67, "Design Pascal Case": 0, "Design Upper Case": 2, "Design Short Vars": 0, - "Design Long Vars": 0, + "Design Long Vars": 1, "Duplicate Logic": 0, "Orphaned Logic": 0, "Instructional Code Examples": 0, @@ -816245,56 +816410,58 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, + "Direct Upstream (Fragility)": 4, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 1, - "Total Downstream (Absolute Dependency Blast Radius)": 2 + "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "CBSA.CICSBSA.BUILDJCL", - "DEFAULT" + "json", + "os", + "pprint", + "sys" ] }, - "jcl/cics-banking-sample-application-cbsa/XFRFUN.jcl": { + "python/wtfpython/noxfile.py": { "1. Artifact Identity": { - "Filename": "XFRFUN.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/XFRFUN.jcl", - "Language": "Jcl", + "Filename": "noxfile.py", + "Path": "python/wtfpython/noxfile.py", + "Language": "Python", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" + "Indentation Style": "Spaces", + "Doc Umbrella": 1.0, + "Folder Dominant Lang": "python", + "Lock Tier": 1.5, + "Identity Proof": "Ecosystem Consensus Lock (75% Local Dominance)" }, "2. Topological Coordinates": { - "X": -264.18, - "Y": 59.67, - "Z": -3111.83 + "X": -3977.38, + "Y": 253.19, + "Z": 10025.61 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", "Repository Drift (Z-Score)": 0.0, "Repository Fingerprint": {}, - "File Archetype": null, + "File Archetype": "Unclassified", "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 8, - "Coding LOC": 3, - "Documentation LOC": 4, - "Structural Magnitude": 2.16, - "Control Flow Ratio": "0.0%", + "Total LOC": 14, + "Coding LOC": 8, + "Documentation LOC": 0, + "Structural Magnitude": 2.66, + "Control Flow Ratio": "14.3%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.0 + "Raw Cognitive Density": 0.02 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "0.0%", + "Cognitive Load Exposure": "5.12%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.31%", + "Tech Debt Exposure": "62.25%", + "Testing Exposure": "2.32%", "API Exposure": "3.53%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -816302,26 +816469,26 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "16.56%", + "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "Unknown_Block", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, + "Function Name": "tests", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, "Control Flow Branches": 0, - "Input Parameters": 0, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 7, - "End Line": 7 + "Start Line": 12, + "End Line": 13 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 1, - "Function Parameters": 0, + "Control Flow Branches": 1, + "Sequential Logic Declarations": 6, + "Function Parameters": 1, "Function/Method Declarations": 1, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, @@ -816337,12 +816504,12 @@ "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, "Global State Dependencies": 0, - "Decorators and Annotations": 0, - "Generic Type Abstractions": 0, + "Decorators and Annotations": 1, + "Generic Type Abstractions": 1, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, + "Module Dependencies (Imports)": 3, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -816367,7 +816534,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 2, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -816383,16 +816550,16 @@ "Traditional Machine Learning (Stats/Trees)": 0, "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, - "Vectorized Math & Tensor Operations": 0, + "Vectorized Math & Tensor Operations": 1, "Core Var Decl": 2, "Design Camel Case": 0, - "Design Snake Case": 0, + "Design Snake Case": 1, "Design Pascal Case": 0, - "Design Upper Case": 2, - "Design Short Vars": 0, + "Design Upper Case": 0, + "Design Short Vars": 1, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -816416,183 +816583,16 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, - "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 1, - "Total Downstream (Absolute Dependency Blast Radius)": 1 - }, - "9. Extracted Dependencies": [ - "CBSA.CICSBSA.BUILDJCL", - "DEFAULT" - ] - }, - "jcl/cics-banking-sample-application-cbsa/ZOSCSEC.jcl": { - "1. Artifact Identity": { - "Filename": "ZOSCSEC.jcl", - "Path": "jcl/cics-banking-sample-application-cbsa/ZOSCSEC.jcl", - "Language": "Jcl", - "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "jcl", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .jcl)" - }, - "2. Topological Coordinates": { - "X": 891.33, - "Y": 97.13, - "Z": -3572.74 - }, - "3. Architectural Profile": { - "Repository Archetype": "Unclassified", - "Repository Drift (Z-Score)": 0.0, - "Repository Fingerprint": {}, - "File Archetype": null, - "File Drift (Z-Score)": 0.0, - "File Fingerprint": {}, - "Total LOC": 14, - "Coding LOC": 8, - "Documentation LOC": 5, - "Structural Magnitude": 1.86, - "Control Flow Ratio": "0.0%", - "Popularity Rank": 0, - "Raw Churn Frequency": 0.0, - "Authorship Centralization": 0.0, - "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.0 - }, - "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", - "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.33%", - "API Exposure": "0.0%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "5. Function Analysis": [ - { - "Function Name": "BPXIT", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 8, - "End Line": 13 - } - ], - "6. Contextual Mitigations & Amplifications": "None Detected", - "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 2, - "Function Parameters": 1, - "Function/Method Declarations": 1, - "Class/Entity Declarations": 1, - "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 0, - "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 0, - "Unit Test Assertions": 0, - "Asynchronous/Concurrent Execution": 0, - "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, - "Decorators and Annotations": 0, - "Generic Type Abstractions": 0, - "Collection Iterators / Comprehensions": 0, - "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, - "Authorship Metadata": 0, - "Planned Work (TODOs)": 0, - "Acknowledged Tech Debt (FIXMEs)": 0, - "Specification Traceability Tags": 0, - "Server-Side Rendering Contexts": 0, - "Event Publishers / Emitters": 0, - "Dependency Injection Constructs": 0, - "Preprocessor Macros": 0, - "Pointer Arithmetic & Addressing": 0, - "Manual Memory Allocation": 0, - "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 2, - "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 0, - "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 0, - "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 0, - "Event Listeners & Subscribers": 0, - "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, - "Hardware Bridge": 0, - "Cryptography": 0, - "Auth Middleware": 0, - "Ipc Rpc Bridges": 0, - "Feature Flags": 0, - "Serialization Parsing": 0, - "Regex Execution": 0, - "Time Date Logic": 0, - "Cloud LLM API Integrations": 0, - "AI Orchestration Frameworks": 0, - "Vector Databases (RAG)": 0, - "Local Inference & Tensor Math": 0, - "Traditional Machine Learning (Stats/Trees)": 0, - "Deep Learning & Neural Networks": 0, - "Lazy Evaluation & Generators (O(1) Memory)": 0, - "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 3, - "Design Camel Case": 0, - "Design Snake Case": 0, - "Design Pascal Case": 0, - "Design Upper Case": 3, - "Design Short Vars": 0, - "Design Long Vars": 0, - "Duplicate Logic": 0, - "Orphaned Logic": 1, - "Instructional Code Examples": 0, - "Architectural Diagrams (Mermaid/PlantUML)": 0, - "Structured Literature Headers": 0, - "Hyperlinked Literature References": 0, - "High-Entropy / Obfuscated Logic": 0, - "Safety & Constraint Bypasses": 0, - "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 1, - "Global Environment Mutation": 0, - "Commented-Out Executable Logic": 1, - "Low-Level Bitwise / Cryptographic Math": 0, - "Non-Standard / Steganographic Imports": 0, - "Non-Standard Unicode / Homoglyphs": 0, - "Embedded Credentials & Keys": 0, - "Sec Extension Mismatch": 0, - "Sec Entropy": 0, - "Sec Tainted Injection": 0, - "Prompt Injection": 0, - "Agentic Rce": 0, - "Invisible Unicode Payload Smuggling": 0, - "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 - }, - "8. Dependency Network": { - "Direct Upstream (Fragility)": 0, + "Direct Upstream (Fragility)": 3, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [] + "9. Extracted Dependencies": [ + "nox", + "nox.sessions", + "typing" + ] } } }, @@ -827718,7 +827718,7 @@ } }, "jcl/cics-genapp": { - "Directory Group Magnitude": 261.84, + "Directory Group Magnitude": 263.84, "File Count": 30, "Ecosystem Fingerprint (Archetypes)": { "Unclassified": "96.7%", @@ -827726,17 +827726,17 @@ }, "Average Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "50.57%", + "Error & Exception Exposure": "8.22%", "Tech Debt Exposure": "41.75%", - "Testing Exposure": "2.28%", - "API Exposure": "0.0%", + "Testing Exposure": "2.27%", + "API Exposure": "0.21%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.34%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "96.67%", "Instability Exposure": "48.33%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", + "Documentation Exposure": "0.79%", "Hardcoded Payload Artifacts": "0.0%" }, "Files": { @@ -827938,9 +827938,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "91.04%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "98.89%", - "Testing Exposure": "2.41%", + "Testing Exposure": "2.37%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -828022,7 +828022,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 2, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 4, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 20, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -828105,7 +828105,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 6, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -828156,9 +828156,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "91.68%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "99.33%", - "Testing Exposure": "2.42%", + "Testing Exposure": "2.38%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -828220,7 +828220,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 1, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 3, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 34, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -828256,7 +828256,7 @@ "Bitwise Operations": 0, "Thread Synchronization Locks": 3, "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, + "Resource Deallocation & Cleanup": 2, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, @@ -828303,7 +828303,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 4, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -828357,7 +828357,7 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "62.39%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "21.39%", "Testing Exposure": "2.32%", "API Exposure": "0.0%", @@ -828391,7 +828391,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 8, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -828474,7 +828474,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -828525,7 +828525,7 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "58.39%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "15.03%", "Testing Exposure": "2.31%", "API Exposure": "0.0%", @@ -828559,7 +828559,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 8, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -828642,7 +828642,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -828693,7 +828693,7 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "57.24%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "13.62%", "Testing Exposure": "2.31%", "API Exposure": "0.0%", @@ -828727,7 +828727,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 8, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -828810,7 +828810,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -828861,9 +828861,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.34%", + "Testing Exposure": "2.33%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -828895,7 +828895,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 6, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -828978,7 +828978,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -829029,9 +829029,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.34%", + "Testing Exposure": "2.33%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -829063,7 +829063,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 6, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -829146,7 +829146,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -829173,9 +829173,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -4637.53, - "Y": 158.42, - "Z": 5415.23 + "X": -4637.69, + "Y": 158.43, + "Z": 5415.37 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -829187,7 +829187,7 @@ "Total LOC": 114, "Coding LOC": 96, "Documentation LOC": 18, - "Structural Magnitude": 42.92, + "Structural Magnitude": 43.92, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -829197,17 +829197,17 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "62.65%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "33.69%", - "Testing Exposure": "2.58%", - "API Exposure": "0.0%", + "Testing Exposure": "2.57%", + "API Exposure": "2.92%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", + "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -829561,9 +829561,9 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 2, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 49, - "Exposed API / Public Exports": 0, + "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -829597,7 +829597,7 @@ "Bitwise Operations": 0, "Thread Synchronization Locks": 2, "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, + "Resource Deallocation & Cleanup": 2, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, @@ -829644,7 +829644,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 3, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -829739,7 +829739,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -830165,7 +830165,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -830333,7 +830333,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -830457,9 +830457,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "84.74%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "99.33%", - "Testing Exposure": "2.39%", + "Testing Exposure": "2.37%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -830511,7 +830511,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 1, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 2, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 10, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -830594,7 +830594,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 2, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -830645,9 +830645,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "86.83%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "95.26%", - "Testing Exposure": "2.37%", + "Testing Exposure": "2.34%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -830689,7 +830689,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 2, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 4, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -830772,7 +830772,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 2, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -830823,9 +830823,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.33%", + "Testing Exposure": "2.32%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -830857,7 +830857,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 13, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -830940,7 +830940,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -830991,9 +830991,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.33%", + "Testing Exposure": "2.32%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -831025,7 +831025,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 6, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -831108,7 +831108,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -831135,9 +831135,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -4336.2, + "X": -4336.17, "Y": 160.29, - "Z": 4559.97 + "Z": 4559.63 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -831149,7 +831149,7 @@ "Total LOC": 39, "Coding LOC": 35, "Documentation LOC": 4, - "Structural Magnitude": 26.3, + "Structural Magnitude": 27.3, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -831159,17 +831159,17 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.66%", - "API Exposure": "0.0%", + "Testing Exposure": "2.64%", + "API Exposure": "3.53%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", + "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -831413,9 +831413,9 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 11, - "Exposed API / Public Exports": 0, + "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -831496,7 +831496,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -831547,9 +831547,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "71.36%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.36%", + "Testing Exposure": "2.35%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -831581,7 +831581,7 @@ "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 43, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -831664,7 +831664,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -831715,9 +831715,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.33%", + "Testing Exposure": "2.32%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -831749,7 +831749,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 6, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -831832,7 +831832,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -831883,9 +831883,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.34%", + "Testing Exposure": "2.33%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -831917,7 +831917,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 6, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -832000,7 +832000,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -832051,9 +832051,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "66.2%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "30.29%", - "Testing Exposure": "2.35%", + "Testing Exposure": "2.34%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -832085,7 +832085,7 @@ "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 51, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -832168,7 +832168,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -844106,9 +844106,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 5988.55, + "X": 5990.87, "Y": -237.07, - "Z": -7860.94 + "Z": -7863.74 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -844263,9 +844263,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 6717.43, + "X": 6719.75, "Y": -220.86, - "Z": -7446.85 + "Z": -7449.65 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -844420,9 +844420,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 5655.86, + "X": 5658.18, "Y": -230.93, - "Z": -7304.03 + "Z": -7306.83 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -844577,9 +844577,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 5597.39, + "X": 5599.71, "Y": -231.03, - "Z": -7701.48 + "Z": -7704.28 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -844745,9 +844745,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 6068.24, + "X": 6070.56, "Y": -193.38, - "Z": -7168.45 + "Z": -7171.25 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -844902,9 +844902,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 6915.45, + "X": 6917.77, "Y": -200.35, - "Z": -7587.29 + "Z": -7590.09 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -845070,9 +845070,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 6233.35, + "X": 6235.67, "Y": -189.0, - "Z": -7906.75 + "Z": -7909.55 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -845227,9 +845227,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 5983.26, + "X": 5985.58, "Y": -240.46, - "Z": -7404.85 + "Z": -7407.65 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -845384,9 +845384,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 6231.66, + "X": 6233.98, "Y": -208.54, - "Z": -7522.33 + "Z": -7525.13 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -845541,9 +845541,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 5776.22, + "X": 5778.53, "Y": -209.72, - "Z": -7602.48 + "Z": -7605.28 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -845698,9 +845698,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 6470.88, + "X": 6473.2, "Y": -203.73, - "Z": -7067.52 + "Z": -7070.32 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -845855,9 +845855,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 6623.41, + "X": 6625.73, "Y": -223.68, - "Z": -7947.86 + "Z": -7950.66 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -846012,9 +846012,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 6456.61, + "X": 6458.93, "Y": -203.78, - "Z": -8172.85 + "Z": -8175.65 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -846190,9 +846190,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 5832.5, + "X": 5834.82, "Y": -185.31, - "Z": -6885.37 + "Z": -6888.17 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -846358,9 +846358,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 6393.56, + "X": 6395.88, "Y": -205.22, - "Z": -6770.06 + "Z": -6772.86 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -853267,24 +853267,24 @@ } }, "jcl/cobol-programming-course": { - "Directory Group Magnitude": 204.5, + "Directory Group Magnitude": 210.5, "File Count": 43, "Ecosystem Fingerprint (Archetypes)": { "Unclassified": "100.0%" }, "Average Risk Exposures": { "Cognitive Load Exposure": "2.47%", - "Error & Exception Exposure": "61.88%", + "Error & Exception Exposure": "10.65%", "Tech Debt Exposure": "61.05%", - "Testing Exposure": "2.37%", - "API Exposure": "0.0%", + "Testing Exposure": "2.36%", + "API Exposure": "0.49%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", + "Documentation Exposure": "2.19%", "Hardcoded Payload Artifacts": "0.0%" }, "Files": { @@ -853301,9 +853301,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3457.91, - "Y": -255.4, - "Z": -6219.95 + "X": 2779.65, + "Y": -230.33, + "Z": -6611.87 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -853325,9 +853325,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "4.17%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "95.26%", - "Testing Exposure": "2.39%", + "Testing Exposure": "2.37%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -853369,7 +853369,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 8, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -853452,7 +853452,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -853481,9 +853481,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3086.08, - "Y": -336.99, - "Z": -5892.34 + "X": 3086.21, + "Y": -337.15, + "Z": -5892.31 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -853505,9 +853505,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "4.17%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.38%", + "Testing Exposure": "2.37%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -853549,7 +853549,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 11, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -853632,7 +853632,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -853662,9 +853662,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 2960.33, - "Y": -126.12, - "Z": -6759.13 + "X": 2960.31, + "Y": -126.02, + "Z": -6760.3 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -853686,9 +853686,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "4.17%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.38%", + "Testing Exposure": "2.37%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -853730,7 +853730,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 11, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -853813,7 +853813,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -853843,9 +853843,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3714.79, - "Y": -161.91, - "Z": -6217.84 + "X": 3715.71, + "Y": -161.9, + "Z": -6218.21 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -853867,9 +853867,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "4.17%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.38%", + "Testing Exposure": "2.37%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -853911,7 +853911,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 11, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -853994,7 +853994,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -854024,9 +854024,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 2586.33, - "Y": -308.2, - "Z": -6119.61 + "X": 2586.02, + "Y": -308.31, + "Z": -6119.97 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -854048,9 +854048,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "4.17%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.38%", + "Testing Exposure": "2.37%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -854092,7 +854092,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 11, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -854175,7 +854175,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -854205,9 +854205,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3462.11, - "Y": -77.74, - "Z": -7006.69 + "X": 3462.68, + "Y": -77.58, + "Z": -7007.87 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -854229,9 +854229,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "4.17%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.38%", + "Testing Exposure": "2.37%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -854273,7 +854273,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 11, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -854356,7 +854356,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -854386,9 +854386,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3406.97, - "Y": -308.71, - "Z": -5923.56 + "X": 3407.47, + "Y": -308.83, + "Z": -5923.53 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -854410,9 +854410,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "4.17%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.38%", + "Testing Exposure": "2.37%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -854454,7 +854454,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 11, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -854537,7 +854537,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -854567,9 +854567,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 2632.18, - "Y": -208.16, - "Z": -6860.94 + "X": 2631.9, + "Y": -208.14, + "Z": -6861.87 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -854591,9 +854591,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "4.17%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.38%", + "Testing Exposure": "2.37%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -854635,7 +854635,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 11, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -854718,7 +854718,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -854748,9 +854748,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3823.15, - "Y": -81.1, - "Z": -6557.49 + "X": 3824.09, + "Y": -81.01, + "Z": -6558.22 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -854772,9 +854772,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "4.17%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.38%", + "Testing Exposure": "2.37%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -854816,7 +854816,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 11, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -854899,7 +854899,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -854929,9 +854929,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 2754.45, - "Y": -383.72, - "Z": -5742.93 + "X": 2754.37, + "Y": -383.88, + "Z": -5743.0 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -854953,9 +854953,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "4.17%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.38%", + "Testing Exposure": "2.37%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -854997,7 +854997,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 11, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -855080,7 +855080,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -855110,9 +855110,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3032.66, - "Y": -3.37, - "Z": -7017.91 + "X": 3032.86, + "Y": -3.24, + "Z": -7019.15 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -855134,9 +855134,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "4.17%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.38%", + "Testing Exposure": "2.37%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -855178,7 +855178,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 11, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -855261,7 +855261,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -855291,9 +855291,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3771.39, - "Y": -219.77, - "Z": -6028.76 + "X": 3772.2, + "Y": -219.81, + "Z": -6028.93 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -855315,9 +855315,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "4.17%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.38%", + "Testing Exposure": "2.37%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -855359,7 +855359,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 11, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -855442,7 +855442,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -855472,9 +855472,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 2433.69, - "Y": -308.45, - "Z": -6341.31 + "X": 2433.32, + "Y": -308.52, + "Z": -6341.89 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -855496,9 +855496,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "4.17%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.38%", + "Testing Exposure": "2.37%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -855540,7 +855540,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 11, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -855623,7 +855623,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -855653,9 +855653,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3389.66, - "Y": 13.35, - "Z": -7120.22 + "X": 3390.09, + "Y": 13.51, + "Z": -7121.45 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -855677,9 +855677,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "4.17%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.38%", + "Testing Exposure": "2.37%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -855721,7 +855721,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 10, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -855804,7 +855804,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -855833,9 +855833,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3645.0, - "Y": -310.9, - "Z": -5798.17 + "X": 3645.63, + "Y": -310.99, + "Z": -5798.2 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -855857,9 +855857,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "4.17%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.38%", + "Testing Exposure": "2.37%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -855901,7 +855901,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 10, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -855984,7 +855984,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -856013,9 +856013,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 2987.24, - "Y": -300.21, - "Z": -6351.61 + "X": 3228.94, + "Y": -153.47, + "Z": -6890.29 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -856037,9 +856037,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.21%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.44%", + "Testing Exposure": "2.43%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -856091,7 +856091,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 17, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -856174,7 +856174,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -856204,9 +856204,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3733.87, - "Y": -43.57, - "Z": -6872.75 + "X": 3734.63, + "Y": -43.42, + "Z": -6873.79 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -856228,9 +856228,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "4.17%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.38%", + "Testing Exposure": "2.37%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -856272,7 +856272,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 11, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -856355,7 +856355,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -856385,9 +856385,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3178.04, - "Y": -395.74, - "Z": -5752.82 + "X": 3178.32, + "Y": -395.89, + "Z": -5752.77 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -856409,9 +856409,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "4.17%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.38%", + "Testing Exposure": "2.37%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -856453,7 +856453,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 11, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -856536,7 +856536,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -856566,9 +856566,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 2448.14, - "Y": -392.97, - "Z": -5738.23 + "X": 2447.99, + "Y": -393.12, + "Z": -5738.35 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -856734,9 +856734,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 2384.44, - "Y": -132.97, - "Z": -7071.75 + "X": 4169.27, + "Y": -84.18, + "Z": -6542.34 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -856904,9 +856904,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3173.69, - "Y": 18.85, - "Z": -7521.37 + "X": 3173.99, + "Y": 19.0, + "Z": -7522.61 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -857072,9 +857072,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3709.34, - "Y": 57.21, - "Z": -7338.69 + "X": 3373.32, + "Y": -372.61, + "Z": -5609.04 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -857242,9 +857242,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3888.3, - "Y": -347.38, - "Z": -5559.8 + "X": 3889.04, + "Y": -347.45, + "Z": -5559.91 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -857410,9 +857410,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3370.11, - "Y": -393.28, - "Z": -5449.68 + "X": 2406.66, + "Y": -130.54, + "Z": -6994.31 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -857580,9 +857580,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3582.05, - "Y": -88.87, - "Z": -6698.42 + "X": 3582.89, + "Y": -88.73, + "Z": -6699.36 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -857604,9 +857604,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "4.17%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.38%", + "Testing Exposure": "2.37%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -857648,7 +857648,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 10, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -857731,7 +857731,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -857761,9 +857761,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 2245.73, - "Y": -320.15, - "Z": -6072.44 + "X": 3672.92, + "Y": 49.4, + "Z": -7087.44 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -857929,9 +857929,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3183.03, + "X": 3183.32, "Y": -207.64, - "Z": -6293.06 + "Z": -6293.65 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -857943,7 +857943,7 @@ "Total LOC": 61, "Coding LOC": 48, "Documentation LOC": 12, - "Structural Magnitude": 12.76, + "Structural Magnitude": 13.76, "Control Flow Ratio": "13.6%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -857953,17 +857953,17 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.21%", - "Error & Exception Exposure": "84.74%", + "Error & Exception Exposure": "73.66%", "Tech Debt Exposure": "95.26%", - "Testing Exposure": "2.47%", - "API Exposure": "0.0%", + "Testing Exposure": "2.45%", + "API Exposure": "3.36%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", + "Documentation Exposure": "11.98%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -858007,9 +858007,9 @@ "Class/Entity Declarations": 0, "Defensive Programming Constructs": 1, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 2, + "High-Risk Execution Commands": 1, "I/O and Network Boundaries": 33, - "Exposed API / Public Exports": 0, + "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -858043,7 +858043,7 @@ "Bitwise Operations": 0, "Thread Synchronization Locks": 2, "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, + "Resource Deallocation & Cleanup": 1, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, @@ -858090,7 +858090,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 3, + "Sec Tainted Injection": 1, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -858128,9 +858128,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 4120.28, - "Y": -44.86, - "Z": -6536.23 + "X": 2206.56, + "Y": -296.36, + "Z": -6238.7 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -858142,7 +858142,7 @@ "Total LOC": 18, "Coding LOC": 13, "Documentation LOC": 4, - "Structural Magnitude": 1.86, + "Structural Magnitude": 2.86, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -858155,14 +858155,14 @@ "Error & Exception Exposure": "76.85%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.33%", - "API Exposure": "0.0%", + "API Exposure": "3.53%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", + "Documentation Exposure": "16.56%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -858188,7 +858188,7 @@ "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 1, "I/O and Network Boundaries": 6, - "Exposed API / Public Exports": 0, + "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -858298,9 +858298,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 2320.73, - "Y": -192.82, - "Z": -6627.11 + "X": 2320.4, + "Y": -192.83, + "Z": -6627.91 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -858322,9 +858322,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "86.83%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.37%", + "Testing Exposure": "2.34%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -858366,7 +858366,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 2, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 11, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -858449,7 +858449,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 2, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -858482,9 +858482,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 4020.52, - "Y": -1.72, - "Z": -7116.97 + "X": 4021.33, + "Y": -1.58, + "Z": -7117.95 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -858506,9 +858506,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.33%", + "Testing Exposure": "2.31%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -858540,7 +858540,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 1, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -858623,7 +858623,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -858652,8 +858652,8 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 2821.44, - "Y": -425.42, + "X": 2821.48, + "Y": -425.58, "Z": -5628.4 }, "3. Architectural Profile": { @@ -858676,9 +858676,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "86.83%", + "Error & Exception Exposure": "76.85%", "Tech Debt Exposure": "95.26%", - "Testing Exposure": "2.37%", + "Testing Exposure": "2.36%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -858730,7 +858730,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 2, + "High-Risk Execution Commands": 1, "I/O and Network Boundaries": 9, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -858813,7 +858813,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 2, + "Sec Tainted Injection": 1, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -858843,9 +858843,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3983.23, - "Y": -259.36, - "Z": -5801.62 + "X": 3986.64, + "Y": -259.43, + "Z": -5800.6 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -858857,7 +858857,7 @@ "Total LOC": 17, "Coding LOC": 15, "Documentation LOC": 1, - "Structural Magnitude": 2.4, + "Structural Magnitude": 3.4, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -858867,17 +858867,17 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.34%", - "API Exposure": "0.0%", + "Testing Exposure": "2.32%", + "API Exposure": "3.53%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", + "Documentation Exposure": "18.61%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -858901,9 +858901,9 @@ "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 8, - "Exposed API / Public Exports": 0, + "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -858984,7 +858984,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -859014,9 +859014,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 2668.93, - "Y": -130.61, - "Z": -6847.61 + "X": 2668.79, + "Y": -130.54, + "Z": -6848.7 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -859038,9 +859038,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "4.17%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.38%", + "Testing Exposure": "2.37%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -859082,7 +859082,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 11, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -859165,7 +859165,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -859195,9 +859195,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3022.77, - "Y": -483.84, - "Z": -5339.65 + "X": 3022.95, + "Y": -484.0, + "Z": -5339.61 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -859363,9 +859363,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 2828.11, - "Y": -59.42, - "Z": -7305.03 + "X": 2827.28, + "Y": -58.84, + "Z": -7308.61 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -859377,7 +859377,7 @@ "Total LOC": 30, "Coding LOC": 25, "Documentation LOC": 4, - "Structural Magnitude": 2.7, + "Structural Magnitude": 3.7, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -859387,17 +859387,17 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.34%", - "API Exposure": "0.0%", + "Testing Exposure": "2.33%", + "API Exposure": "3.53%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", + "Documentation Exposure": "16.56%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -859421,9 +859421,9 @@ "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 10, - "Exposed API / Public Exports": 0, + "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -859504,7 +859504,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -859536,9 +859536,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 2761.85, - "Y": -178.28, - "Z": -6372.0 + "X": 3441.01, + "Y": -203.6, + "Z": -5980.03 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -859550,7 +859550,7 @@ "Total LOC": 39, "Coding LOC": 34, "Documentation LOC": 4, - "Structural Magnitude": 6.28, + "Structural Magnitude": 7.28, "Control Flow Ratio": "6.5%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -859560,17 +859560,17 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "3.86%", - "Error & Exception Exposure": "86.83%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.4%", - "API Exposure": "0.0%", + "Testing Exposure": "2.37%", + "API Exposure": "3.53%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", + "Documentation Exposure": "16.56%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -859604,9 +859604,9 @@ "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 2, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 20, - "Exposed API / Public Exports": 0, + "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -859640,7 +859640,7 @@ "Bitwise Operations": 0, "Thread Synchronization Locks": 2, "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, + "Resource Deallocation & Cleanup": 1, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, @@ -859687,7 +859687,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 2, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -859722,9 +859722,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3176.68, - "Y": -106.18, - "Z": -6612.13 + "X": 2934.87, + "Y": -252.92, + "Z": -6074.97 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -859736,7 +859736,7 @@ "Total LOC": 51, "Coding LOC": 42, "Documentation LOC": 8, - "Structural Magnitude": 10.04, + "Structural Magnitude": 11.04, "Control Flow Ratio": "10.5%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -859746,17 +859746,17 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "4.49%", - "Error & Exception Exposure": "86.83%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.44%", - "API Exposure": "0.0%", + "Testing Exposure": "2.42%", + "API Exposure": "3.51%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", + "Documentation Exposure": "14.12%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -859800,9 +859800,9 @@ "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 2, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 26, - "Exposed API / Public Exports": 0, + "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -859836,7 +859836,7 @@ "Bitwise Operations": 0, "Thread Synchronization Locks": 2, "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, + "Resource Deallocation & Cleanup": 1, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, @@ -859883,7 +859883,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 2, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -859918,9 +859918,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 4014.75, - "Y": -74.61, - "Z": -6748.23 + "X": 4015.65, + "Y": -74.49, + "Z": -6749.09 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -860098,9 +860098,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 2564.41, - "Y": -10.51, - "Z": -7455.15 + "X": 2564.35, + "Y": -10.42, + "Z": -7456.3 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -860266,9 +860266,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 4258.91, - "Y": -142.13, - "Z": -6008.03 + "X": 4259.85, + "Y": -142.11, + "Z": -6008.45 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -860434,9 +860434,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 2097.76, - "Y": -274.62, - "Z": -6503.5 + "X": 2097.4, + "Y": -274.67, + "Z": -6504.16 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -860602,9 +860602,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 4024.6, - "Y": -161.07, - "Z": -6229.93 + "X": 4025.55, + "Y": -161.03, + "Z": -6230.43 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -860626,9 +860626,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "4.17%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.38%", + "Testing Exposure": "2.37%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -860670,7 +860670,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 11, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -860753,7 +860753,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -860783,9 +860783,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 2459.76, - "Y": -379.41, - "Z": -5954.1 + "X": 2459.52, + "Y": -379.55, + "Z": -5954.33 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -860807,9 +860807,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "4.17%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.38%", + "Testing Exposure": "2.37%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -860851,7 +860851,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 11, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -860934,7 +860934,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -871671,24 +871671,24 @@ } }, "jcl/zopeneditor-sample": { - "Directory Group Magnitude": 97.88, + "Directory Group Magnitude": 98.88, "File Count": 10, "Ecosystem Fingerprint (Archetypes)": { "Unclassified": "100.0%" }, "Average Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "79.56%", + "Error & Exception Exposure": "57.6%", "Tech Debt Exposure": "68.06%", - "Testing Exposure": "2.37%", - "API Exposure": "0.0%", + "Testing Exposure": "2.35%", + "API Exposure": "0.35%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "38.85%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "90.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", + "Documentation Exposure": "1.19%", "Hardcoded Payload Artifacts": "0.0%" }, "Files": { @@ -871729,9 +871729,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "72.2%", + "Error & Exception Exposure": "60.09%", "Tech Debt Exposure": "51.84%", - "Testing Exposure": "2.35%", + "Testing Exposure": "2.34%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "22.73%", @@ -871773,7 +871773,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 1, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 24, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 2, @@ -871783,7 +871783,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 2, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -871809,7 +871809,7 @@ "Bitwise Operations": 0, "Thread Synchronization Locks": 7, "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, + "Resource Deallocation & Cleanup": 7, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, @@ -871856,7 +871856,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 2, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -871915,9 +871915,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "75.96%", + "Error & Exception Exposure": "62.08%", "Tech Debt Exposure": "69.04%", - "Testing Exposure": "2.35%", + "Testing Exposure": "2.34%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "29.1%", @@ -871959,7 +871959,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 1, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 20, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 2, @@ -871969,7 +871969,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 2, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -871995,7 +871995,7 @@ "Bitwise Operations": 0, "Thread Synchronization Locks": 5, "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, + "Resource Deallocation & Cleanup": 5, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, @@ -872042,7 +872042,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 2, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -872075,9 +872075,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -2095.78, - "Y": 31.78, - "Z": 9500.84 + "X": -1023.63, + "Y": 0.3, + "Z": 9468.29 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -872089,7 +872089,7 @@ "Total LOC": 52, "Coding LOC": 24, "Documentation LOC": 28, - "Structural Magnitude": 3.08, + "Structural Magnitude": 4.08, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -872099,17 +872099,17 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.34%", - "API Exposure": "0.0%", + "Testing Exposure": "2.33%", + "API Exposure": "3.49%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", + "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -872133,9 +872133,9 @@ "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 10, - "Exposed API / Public Exports": 0, + "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -872216,7 +872216,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -872305,7 +872305,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 3, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -872405,9 +872405,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -1022.04, - "Y": -37.72, - "Z": 9538.94 + "X": -2092.98, + "Y": -6.37, + "Z": 9572.29 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -872473,7 +872473,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 2, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -872599,9 +872599,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "71.57%", + "Error & Exception Exposure": "59.76%", "Tech Debt Exposure": "49.12%", - "Testing Exposure": "2.35%", + "Testing Exposure": "2.34%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "21.87%", @@ -872643,7 +872643,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 1, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 24, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 2, @@ -872653,7 +872653,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 2, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -872679,7 +872679,7 @@ "Bitwise Operations": 0, "Thread Synchronization Locks": 7, "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, + "Resource Deallocation & Cleanup": 7, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, @@ -872726,7 +872726,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 2, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -872785,9 +872785,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "62.58%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.35%", + "Testing Exposure": "2.34%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "31.0%", @@ -872829,7 +872829,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 1, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 18, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 2, @@ -872839,7 +872839,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 2, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -872865,7 +872865,7 @@ "Bitwise Operations": 0, "Thread Synchronization Locks": 4, "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, + "Resource Deallocation & Cleanup": 4, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, @@ -872912,7 +872912,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 2, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -872968,9 +872968,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "95.49%", + "Error & Exception Exposure": "63.85%", "Tech Debt Exposure": "92.04%", - "Testing Exposure": "2.42%", + "Testing Exposure": "2.38%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "42.15%", @@ -873052,7 +873052,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 6, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 60, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 5, @@ -873062,7 +873062,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 5, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -873088,7 +873088,7 @@ "Bitwise Operations": 0, "Thread Synchronization Locks": 4, "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, + "Resource Deallocation & Cleanup": 2, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, @@ -873135,7 +873135,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 6, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -873201,9 +873201,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "97.34%", + "Error & Exception Exposure": "70.21%", "Tech Debt Exposure": "99.33%", - "Testing Exposure": "2.43%", + "Testing Exposure": "2.38%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "91.68%", @@ -873265,7 +873265,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 1, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 4, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 38, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 6, @@ -873275,7 +873275,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 6, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -873301,7 +873301,7 @@ "Bitwise Operations": 0, "Thread Synchronization Locks": 1, "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, + "Resource Deallocation & Cleanup": 1, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, @@ -873348,7 +873348,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 4, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -873411,9 +873411,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "98.39%", + "Error & Exception Exposure": "66.5%", "Tech Debt Exposure": "99.91%", - "Testing Exposure": "2.47%", + "Testing Exposure": "2.4%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "69.0%", @@ -873485,7 +873485,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 1, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 5, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 51, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 4, @@ -873495,7 +873495,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 4, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -873521,7 +873521,7 @@ "Bitwise Operations": 0, "Thread Synchronization Locks": 3, "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, + "Resource Deallocation & Cleanup": 1, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, @@ -873568,7 +873568,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 5, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -873633,9 +873633,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4689.51, + "X": 4691.11, "Y": -56.97, - "Z": -8157.99 + "Z": -8160.76 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -873790,9 +873790,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4273.53, + "X": 4275.13, "Y": -134.4, - "Z": -7600.26 + "Z": -7603.03 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -873962,9 +873962,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4654.86, + "X": 4656.46, "Y": -19.84, - "Z": -8957.79 + "Z": -8960.56 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -874134,9 +874134,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4505.91, + "X": 4507.51, "Y": -63.53, - "Z": -8045.17 + "Z": -8047.94 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -874291,9 +874291,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4749.39, + "X": 4750.99, "Y": -42.39, - "Z": -8602.81 + "Z": -8605.58 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -874448,9 +874448,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4978.91, + "X": 4980.51, "Y": -165.67, - "Z": -8012.43 + "Z": -8015.2 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -874605,9 +874605,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4111.12, + "X": 4112.72, "Y": -9.17, - "Z": -8429.22 + "Z": -8432.0 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -874773,9 +874773,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4298.81, + "X": 4300.41, "Y": -85.32, - "Z": -8262.73 + "Z": -8265.5 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -874930,9 +874930,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 5336.09, + "X": 5337.7, "Y": -155.33, - "Z": -8170.56 + "Z": -8173.34 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -875098,9 +875098,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4502.84, + "X": 4504.44, "Y": -43.71, - "Z": -8776.99 + "Z": -8779.76 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -875266,9 +875266,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 5219.11, + "X": 5220.71, "Y": -126.41, - "Z": -8122.68 + "Z": -8125.45 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -875434,9 +875434,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4567.53, + "X": 4569.13, "Y": -72.45, - "Z": -7702.47 + "Z": -7705.25 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -875628,9 +875628,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4172.16, + "X": 4173.76, "Y": -93.82, - "Z": -8113.56 + "Z": -8116.33 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -875799,9 +875799,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4962.28, + "X": 4963.88, "Y": -84.11, - "Z": -8661.41 + "Z": -8664.18 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -875970,9 +875970,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 5077.7, + "X": 5079.3, "Y": -65.26, - "Z": -8502.43 + "Z": -8505.2 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -876141,9 +876141,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4934.2, + "X": 4935.8, "Y": -166.2, - "Z": -7627.08 + "Z": -7629.86 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -876341,9 +876341,9 @@ "Identity Proof": "Single Indicator (Ext: .xml)" }, "2. Topological Coordinates": { - "X": 6610.06, + "X": 6612.2, "Y": 112.82, - "Z": -9067.19 + "Z": -9070.01 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -876498,9 +876498,9 @@ "Identity Proof": "Single Indicator (Ext: .xml)" }, "2. Topological Coordinates": { - "X": 6828.06, + "X": 6830.2, "Y": 160.61, - "Z": -8410.69 + "Z": -8413.5 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -876655,9 +876655,9 @@ "Identity Proof": "Single Indicator (Ext: .xml)" }, "2. Topological Coordinates": { - "X": 6129.16, + "X": 6131.3, "Y": 252.1, - "Z": -8730.79 + "Z": -8733.61 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -876812,9 +876812,9 @@ "Identity Proof": "Single Indicator (Ext: .cls)" }, "2. Topological Coordinates": { - "X": 6530.57, + "X": 6532.71, "Y": 135.41, - "Z": -8733.67 + "Z": -8736.49 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -877120,9 +877120,9 @@ "Identity Proof": "Single Indicator (Ext: .cls)" }, "2. Topological Coordinates": { - "X": 6912.47, + "X": 6914.61, "Y": 94.78, - "Z": -8960.05 + "Z": -8962.87 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -877308,9 +877308,9 @@ "Identity Proof": "Single Indicator (Ext: .cls)" }, "2. Topological Coordinates": { - "X": 6288.46, + "X": 6290.6, "Y": 231.79, - "Z": -8574.55 + "Z": -8577.37 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -884504,9 +884504,9 @@ "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": 5853.3, + "X": 5854.76, "Y": -300.32, - "Z": -9989.04 + "Z": -9991.46 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -884672,9 +884672,9 @@ "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": 5588.33, + "X": 5589.8, "Y": -225.58, - "Z": -9295.22 + "Z": -9297.64 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -884840,9 +884840,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 5775.51, + "X": 5776.98, "Y": -210.37, - "Z": -9492.38 + "Z": -9494.8 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -890104,9 +890104,9 @@ "Identity Proof": "Single Indicator (Ext: .hlo)" }, "2. Topological Coordinates": { - "X": 7466.25, + "X": 7468.31, "Y": -115.43, - "Z": -8877.44 + "Z": -8879.84 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -890261,9 +890261,9 @@ "Identity Proof": "Single Indicator (Ext: .hlo)" }, "2. Topological Coordinates": { - "X": 7478.9, + "X": 7480.97, "Y": -71.41, - "Z": -8731.2 + "Z": -8733.6 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -890418,9 +890418,9 @@ "Identity Proof": "Single Indicator (Ext: .hlo)" }, "2. Topological Coordinates": { - "X": 7242.32, + "X": 7244.38, "Y": -21.96, - "Z": -8555.29 + "Z": -8557.68 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -897310,9 +897310,9 @@ "Identity Proof": "Single Indicator (Ext: .go)" }, "2. Topological Coordinates": { - "X": 6432.56, + "X": 6434.42, "Y": 147.19, - "Z": -9406.71 + "Z": -9409.39 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -899206,7 +899206,7 @@ }, "Average Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "71.72%", + "Error & Exception Exposure": "46.1%", "Tech Debt Exposure": "53.79%", "Testing Exposure": "2.34%", "API Exposure": "0.0%", @@ -899502,7 +899502,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -899628,9 +899628,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.33%", + "Testing Exposure": "2.32%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -899662,7 +899662,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 2, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -899745,7 +899745,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -899977,9 +899977,9 @@ "Identity Proof": "Single Indicator (Ext: .proto)" }, "2. Topological Coordinates": { - "X": 8013.2, + "X": 8015.5, "Y": -23.25, - "Z": -8118.05 + "Z": -8120.4 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -906036,9 +906036,9 @@ "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": 2666.91, + "X": 2667.3, "Y": 287.86, - "Z": -9993.43 + "Z": -9994.83 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -906204,9 +906204,9 @@ "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": 2889.07, + "X": 2889.46, "Y": 208.99, - "Z": -10251.99 + "Z": -10253.4 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -907308,9 +907308,9 @@ }, "Average Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.34%", + "Testing Exposure": "2.33%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -907359,9 +907359,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.34%", + "Testing Exposure": "2.33%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -907393,7 +907393,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 2, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -907476,7 +907476,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -914523,9 +914523,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": 3524.65, + "X": 3525.15, "Y": -80.09, - "Z": -10038.34 + "Z": -10039.78 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -915247,9 +915247,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": 5413.75, + "X": 5415.23, "Y": 139.72, - "Z": -9767.89 + "Z": -9770.59 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -915971,9 +915971,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": 7148.36, + "X": 7150.53, "Y": -122.51, - "Z": -8941.09 + "Z": -8943.84 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -921584,9 +921584,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": 4387.63, + "X": 4388.17, "Y": 27.26, - "Z": -10356.27 + "Z": -10357.56 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -922308,9 +922308,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": 6286.25, + "X": 6287.75, "Y": -166.67, - "Z": -9826.65 + "Z": -9829.0 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -923032,9 +923032,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": 7995.22, + "X": 7997.3, "Y": -156.25, - "Z": -8802.19 + "Z": -8804.5 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -928459,9 +928459,9 @@ "Identity Proof": "Single Indicator (Ext: .html)" }, "2. Topological Coordinates": { - "X": 4743.76, + "X": 4745.0, "Y": 252.02, - "Z": -9990.53 + "Z": -9993.17 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -928616,9 +928616,9 @@ "Identity Proof": "Single Indicator (Ext: .html)" }, "2. Topological Coordinates": { - "X": 4486.51, + "X": 4487.75, "Y": 281.75, - "Z": -9893.19 + "Z": -9895.83 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", From 1979029c175928bf87402a43c61e8b0e6e77df70 Mon Sep 17 00:00:00 2001 From: Joe Esquibel Date: Sat, 5 Sep 2026 14:22:33 -0400 Subject: [PATCH 3/3] test(core-engine): re-bless the golden masters on top of #2754's orphan-census fix Main re-blessed for #2754 after this branch's first bless, so the fixtures conflicted. Merged main (taking its fixtures) and regenerated both from the merged tree. Scoped against main: 893 differences, 428 topological, 465 substantive -- all jcl files / jcl aggregates plus the two corpus-wide health averages they feed; zero off-target files. Same shape as the first bless. Co-Authored-By: Claude Fable 5.1 --- tests/golden_master_audit.json | 1794 +++++++++++------------ tests/golden_master_zero_dep_audit.json | 1794 +++++++++++------------ 2 files changed, 1794 insertions(+), 1794 deletions(-) diff --git a/tests/golden_master_audit.json b/tests/golden_master_audit.json index 60679b045..8092df4e3 100644 --- a/tests/golden_master_audit.json +++ b/tests/golden_master_audit.json @@ -11,14 +11,14 @@ "pyyaml": false }, "Target Root Name": "data", - "Absolute Project Path": "/srv/storage_16tb/projects/gitgalaxy/language-crucible/data", - "Analysis ISO Timestamp": "2026-09-05T15:40:44.316547+00:00", - "Total Scan Duration": "26.46 seconds" + "Absolute Project Path": "/home/joe/nyx_projects/language-crucible/data", + "Analysis ISO Timestamp": "2026-09-05T18:20:50.417381+00:00", + "Total Scan Duration": "60.0 seconds" }, "Source Control Footprint (Immutable Anchor)": { "Active Branch": "HEAD", "Commit Hash (SHA-1)": "77bc85ecb8bb2fa8331b83f2bd348ec735df66e3", - "Remote Origin URL": "https://github.com/squid-protocol/language-crucible.git", + "Remote Origin URL": "https://github.com/squid-protocol/language-crucible", "Last Code Integration Date": "2026-08-30T08:52:00-04:00" } }, @@ -237,9 +237,9 @@ }, "health": { "avg_cognitive_load": 22.578, - "avg_safety_score": 45.662, + "avg_safety_score": 43.75, "avg_tech_debt": 29.91, - "avg_documentation": 7.916 + "avg_documentation": 7.984 }, "composition": { "markdown": { @@ -410,7 +410,7 @@ "jcl": { "files": 185, "loc": 5837, - "impact": 903.9400000000007 + "impact": 916.9400000000007 }, "kotlin": { "files": 5, @@ -1152,20 +1152,20 @@ }, "jcl/cics-genapp": { "file_count": 30, - "total_mass": 261.84, + "total_mass": 263.84, "avg_exposures": { "cognitive_load": 0.0, - "safety_score": 50.57, + "safety_score": 8.22, "tech_debt": 56.01, - "verification": 2.28, - "api_exposure": 0.0, + "verification": 2.27, + "api_exposure": 0.21, "concurrency": 0.0, "state_flux": 0.34, "dead_code": 0.0, "spec_match": 96.67, "stability": 48.33, "churn": 0.0, - "documentation": 0.0, + "documentation": 0.79, "secrets_risk": 0.0 } }, @@ -5012,7 +5012,7 @@ "total_mass": 15.76, "avg_exposures": { "cognitive_load": 0.0, - "safety_score": 71.72, + "safety_score": 46.1, "tech_debt": 53.79, "verification": 2.34, "api_exposure": 0.0, @@ -5028,20 +5028,20 @@ }, "jcl/cics-banking-sample-application-cbsa": { "file_count": 99, - "total_mass": 321.88, + "total_mass": 325.88, "avg_exposures": { "cognitive_load": 0.0, - "safety_score": 45.62, + "safety_score": 30.07, "tech_debt": 47.76, "verification": 2.33, - "api_exposure": 1.3, + "api_exposure": 1.43, "concurrency": 0.0, "state_flux": 1.17, "dead_code": 3.07, "spec_match": 98.99, "stability": 50.0, "churn": 0.0, - "documentation": 5.38, + "documentation": 5.98, "secrets_risk": 0.0 } }, @@ -5050,9 +5050,9 @@ "total_mass": 3.12, "avg_exposures": { "cognitive_load": 0.0, - "safety_score": 76.85, + "safety_score": 0.0, "tech_debt": 73.11, - "verification": 2.34, + "verification": 2.33, "api_exposure": 0.0, "concurrency": 0.0, "state_flux": 0.0, @@ -5066,39 +5066,39 @@ }, "jcl/cobol-programming-course": { "file_count": 43, - "total_mass": 204.5, + "total_mass": 210.5, "avg_exposures": { "cognitive_load": 2.47, - "safety_score": 61.88, + "safety_score": 10.65, "tech_debt": 61.57, - "verification": 2.37, - "api_exposure": 0.0, + "verification": 2.36, + "api_exposure": 0.49, "concurrency": 0.0, "state_flux": 0.0, "dead_code": 0.0, "spec_match": 100.0, "stability": 50.0, "churn": 0.0, - "documentation": 0.0, + "documentation": 2.19, "secrets_risk": 0.0 } }, "jcl/zopeneditor-sample": { "file_count": 10, - "total_mass": 97.88, + "total_mass": 98.88, "avg_exposures": { "cognitive_load": 0.0, - "safety_score": 79.56, + "safety_score": 57.6, "tech_debt": 79.42, - "verification": 2.37, - "api_exposure": 0.0, + "verification": 2.35, + "api_exposure": 0.35, "concurrency": 0.0, "state_flux": 38.85, "dead_code": 0.0, "spec_match": 90.0, "stability": 50.0, "churn": 0.0, - "documentation": 0.0, + "documentation": 1.19, "secrets_risk": 0.0 } }, @@ -346598,9 +346598,9 @@ "Identity Proof": "Single Indicator (Ext: .js)" }, "2. Topological Coordinates": { - "X": 3101.32, + "X": 3101.8, "Y": -96.08, - "Z": -9884.12 + "Z": -9885.58 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -347512,9 +347512,9 @@ "Identity Proof": "Single Indicator (Ext: .js)" }, "2. Topological Coordinates": { - "X": 2747.2, + "X": 2747.68, "Y": -174.69, - "Z": -9333.16 + "Z": -9334.62 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -348960,9 +348960,9 @@ "Identity Proof": "Single Indicator (Ext: .js)" }, "2. Topological Coordinates": { - "X": 3072.92, + "X": 3073.4, "Y": -49.48, - "Z": -9615.31 + "Z": -9616.77 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -350692,9 +350692,9 @@ "Identity Proof": "Single Indicator (Ext: .js)" }, "2. Topological Coordinates": { - "X": 3356.44, + "X": 3356.92, "Y": 40.54, - "Z": -9275.17 + "Z": -9276.64 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -350860,9 +350860,9 @@ "Identity Proof": "Single Indicator (Ext: .ts)" }, "2. Topological Coordinates": { - "X": 2575.63, + "X": 2576.11, "Y": -244.18, - "Z": -9677.5 + "Z": -9678.97 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -443886,9 +443886,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": 7379.65, + "X": 7381.92, "Y": 165.91, - "Z": -8428.15 + "Z": -8430.57 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -444689,9 +444689,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": 6999.03, + "X": 7001.3, "Y": 265.38, - "Z": -7713.08 + "Z": -7715.5 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -445659,9 +445659,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": 6787.47, + "X": 6789.74, "Y": 225.18, - "Z": -7948.69 + "Z": -7951.11 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -445940,9 +445940,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": 7824.7, + "X": 7826.97, "Y": 134.51, - "Z": -8173.94 + "Z": -8176.36 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -446212,9 +446212,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": 7637.84, + "X": 7640.11, "Y": 311.63, - "Z": -7253.28 + "Z": -7255.7 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -446490,9 +446490,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": 7292.29, + "X": 7294.56, "Y": 257.91, - "Z": -7908.17 + "Z": -7910.59 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -447600,9 +447600,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": 7201.47, + "X": 7203.75, "Y": 404.61, - "Z": -7208.57 + "Z": -7210.99 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -447991,9 +447991,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": 3754.12, + "X": 3754.73, "Y": -127.57, - "Z": -9730.85 + "Z": -9732.2 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -448148,9 +448148,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": 3527.29, + "X": 3527.89, "Y": -76.36, - "Z": -9338.08 + "Z": -9339.43 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -449380,9 +449380,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": 4546.52, + "X": 4547.12, "Y": -154.94, - "Z": -9433.18 + "Z": -9434.54 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -450100,9 +450100,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": 4000.91, + "X": 4001.51, "Y": -115.21, - "Z": -9116.12 + "Z": -9117.47 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -451422,9 +451422,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": 4065.71, + "X": 4066.32, "Y": -150.26, - "Z": -9701.93 + "Z": -9703.29 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -452471,9 +452471,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": 3853.29, + "X": 3853.89, "Y": -147.74, - "Z": -8519.42 + "Z": -8520.78 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -452843,9 +452843,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": 3774.4, + "X": 3775.01, "Y": -155.51, - "Z": -8957.33 + "Z": -8958.69 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -454671,9 +454671,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": 4359.96, + "X": 4360.56, "Y": -127.18, - "Z": -8643.55 + "Z": -8644.9 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -586387,9 +586387,9 @@ "Identity Proof": "Single Indicator (Ext: .json)" }, "2. Topological Coordinates": { - "X": 5190.5, + "X": 5191.95, "Y": 237.38, - "Z": -9063.81 + "Z": -9066.58 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -586544,9 +586544,9 @@ "Identity Proof": "Single Indicator (Exact Match)" }, "2. Topological Coordinates": { - "X": 4395.86, + "X": 4397.3, "Y": 229.37, - "Z": -9470.98 + "Z": -9473.74 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -586702,9 +586702,9 @@ "Identity Proof": "Single Indicator (Ext: .ts)" }, "2. Topological Coordinates": { - "X": 4895.15, + "X": 4896.59, "Y": 292.43, - "Z": -9843.7 + "Z": -9846.46 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -588738,9 +588738,9 @@ "Identity Proof": "Single Indicator (Ext: .ts)" }, "2. Topological Coordinates": { - "X": 4901.07, + "X": 4902.51, "Y": 202.09, - "Z": -9501.06 + "Z": -9503.83 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -590472,9 +590472,9 @@ "Identity Proof": "Single Indicator (Ext: .ts)" }, "2. Topological Coordinates": { - "X": 4599.26, + "X": 4600.71, "Y": 227.35, - "Z": -9001.68 + "Z": -9004.44 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -644335,9 +644335,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 3515.9, + "X": 3516.45, "Y": 71.06, - "Z": -8331.43 + "Z": -8332.9 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -644543,9 +644543,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 2648.6, + "X": 2649.14, "Y": 152.18, - "Z": -7787.68 + "Z": -7789.15 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -644711,9 +644711,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 3252.91, + "X": 3253.45, "Y": 174.96, - "Z": -7676.21 + "Z": -7677.69 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -644868,9 +644868,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 3061.92, + "X": 3062.47, "Y": 89.43, - "Z": -8674.58 + "Z": -8676.05 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -645186,9 +645186,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 2925.56, + "X": 2926.11, "Y": 80.1, - "Z": -8860.62 + "Z": -8862.09 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -645354,9 +645354,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 3082.82, + "X": 3083.37, "Y": 118.21, - "Z": -8095.17 + "Z": -8096.64 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -645922,9 +645922,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 2490.11, + "X": 2490.66, "Y": 140.87, - "Z": -7952.01 + "Z": -7953.48 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -646120,9 +646120,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 3742.69, + "X": 3743.24, "Y": 118.51, - "Z": -8297.59 + "Z": -8299.07 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -646308,9 +646308,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 2908.16, + "X": 2908.71, "Y": 179.25, - "Z": -7607.1 + "Z": -7608.58 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -646526,9 +646526,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 3381.54, + "X": 3382.09, "Y": 110.37, - "Z": -8947.0 + "Z": -8948.48 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -646683,9 +646683,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 2794.72, + "X": 2795.26, "Y": 125.85, - "Z": -8076.3 + "Z": -8077.77 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -646921,9 +646921,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 2773.83, + "X": 2774.37, "Y": 129.36, - "Z": -8574.44 + "Z": -8575.91 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -647149,9 +647149,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 2412.33, + "X": 2412.88, "Y": 97.98, - "Z": -8659.68 + "Z": -8661.16 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -647317,9 +647317,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 3651.07, + "X": 3651.61, "Y": 99.96, - "Z": -8040.89 + "Z": -8042.36 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -647515,9 +647515,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 3334.01, + "X": 3334.56, "Y": 92.83, - "Z": -7742.97 + "Z": -7744.45 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -647683,9 +647683,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 2580.46, + "X": 2581.01, "Y": 110.01, - "Z": -8383.3 + "Z": -8384.77 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -647851,9 +647851,9 @@ "Identity Proof": "Metadata Anchor (COPYRIGHT)" }, "2. Topological Coordinates": { - "X": 3616.72, + "X": 3617.26, "Y": 137.93, - "Z": -7858.16 + "Z": -7859.63 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -651812,9 +651812,9 @@ "Identity Proof": "Single Indicator (Ext: .xml)" }, "2. Topological Coordinates": { - "X": 5543.46, + "X": 5545.09, "Y": 137.98, - "Z": -9183.57 + "Z": -9186.04 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -651969,9 +651969,9 @@ "Identity Proof": "Single Indicator (Ext: .abap)" }, "2. Topological Coordinates": { - "X": 5619.22, + "X": 5620.86, "Y": 260.73, - "Z": -8065.52 + "Z": -8067.98 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -652133,9 +652133,9 @@ "Identity Proof": "Single Indicator (Ext: .abap)" }, "2. Topological Coordinates": { - "X": 5478.25, + "X": 5479.88, "Y": 205.12, - "Z": -8549.89 + "Z": -8552.35 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -652761,9 +652761,9 @@ "Identity Proof": "Single Indicator (Ext: .abap)" }, "2. Topological Coordinates": { - "X": 5855.09, + "X": 5856.72, "Y": 149.3, - "Z": -9178.84 + "Z": -9181.3 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -653109,9 +653109,9 @@ "Identity Proof": "Single Indicator (Ext: .abap)" }, "2. Topological Coordinates": { - "X": 5304.66, + "X": 5306.29, "Y": 269.32, - "Z": -8739.61 + "Z": -8742.07 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -653367,9 +653367,9 @@ "Identity Proof": "Single Indicator (Ext: .abap)" }, "2. Topological Coordinates": { - "X": 5807.85, + "X": 5809.48, "Y": 186.55, - "Z": -8852.28 + "Z": -8854.75 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -653825,9 +653825,9 @@ "Identity Proof": "Single Indicator (Ext: .abap)" }, "2. Topological Coordinates": { - "X": 6070.91, + "X": 6072.55, "Y": 99.09, - "Z": -8310.04 + "Z": -8312.5 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -654113,9 +654113,9 @@ "Identity Proof": "Single Indicator (Ext: .abap)" }, "2. Topological Coordinates": { - "X": 6183.94, + "X": 6185.58, "Y": 55.62, - "Z": -8988.36 + "Z": -8990.82 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -732321,9 +732321,9 @@ "Identity Proof": "Prose Extension (.txt)" }, "2. Topological Coordinates": { - "X": 5618.7, + "X": 5620.92, "Y": -266.49, - "Z": -6269.74 + "Z": -6272.8 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -732478,9 +732478,9 @@ "Identity Proof": "Metadata Anchor (Jenkinsfile)" }, "2. Topological Coordinates": { - "X": 4796.02, + "X": 4798.24, "Y": -119.0, - "Z": -6798.41 + "Z": -6801.46 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -732746,9 +732746,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 5016.27, + "X": 5018.5, "Y": -210.24, - "Z": -5888.26 + "Z": -5891.32 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -732905,9 +732905,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4318.96, + "X": 4321.19, "Y": -45.97, - "Z": -6583.66 + "Z": -6586.71 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -733067,9 +733067,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 5469.74, + "X": 5471.96, "Y": -135.16, - "Z": -6935.75 + "Z": -6938.81 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -733227,9 +733227,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4459.0, + "X": 4461.22, "Y": 165.94, - "Z": -7444.17 + "Z": -7447.22 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -733384,9 +733384,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 5130.05, + "X": 5132.27, "Y": 15.44, - "Z": -7210.8 + "Z": -7213.86 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -733545,9 +733545,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 5251.87, + "X": 5254.09, "Y": -40.13, - "Z": -6979.22 + "Z": -6982.28 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -733708,9 +733708,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4557.46, + "X": 4559.68, "Y": 65.17, - "Z": -7024.03 + "Z": -7027.08 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -733869,9 +733869,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4193.16, + "X": 4195.38, "Y": 73.84, - "Z": -6997.01 + "Z": -7000.06 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -734028,9 +734028,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 5370.26, + "X": 5372.48, "Y": -264.76, - "Z": -6211.29 + "Z": -6214.35 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -734185,9 +734185,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4025.84, + "X": 4028.06, "Y": -11.64, - "Z": -6430.3 + "Z": -6433.35 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -734342,9 +734342,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4579.71, + "X": 4581.93, "Y": -115.23, - "Z": -6529.55 + "Z": -6532.61 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -734499,9 +734499,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4663.69, + "X": 4665.92, "Y": -198.24, - "Z": -6019.58 + "Z": -6022.64 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -734661,9 +734661,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4359.89, + "X": 4362.11, "Y": -229.14, - "Z": -6147.45 + "Z": -6150.51 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -734820,9 +734820,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4130.54, + "X": 4132.76, "Y": -188.39, - "Z": -6122.76 + "Z": -6125.82 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -734979,9 +734979,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 5101.42, + "X": 5103.64, "Y": -223.34, - "Z": -6433.75 + "Z": -6436.81 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -735138,9 +735138,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4268.55, + "X": 4270.77, "Y": -112.82, - "Z": -6301.9 + "Z": -6304.96 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -735295,9 +735295,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 5412.54, + "X": 5414.76, "Y": -133.35, - "Z": -6434.94 + "Z": -6438.0 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -735454,9 +735454,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4809.51, + "X": 4811.73, "Y": -20.86, - "Z": -7111.88 + "Z": -7114.94 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -735611,9 +735611,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4990.24, + "X": 4992.46, "Y": 96.15, - "Z": -7351.88 + "Z": -7354.93 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -735768,9 +735768,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 5642.46, + "X": 5644.68, "Y": -176.74, - "Z": -6543.93 + "Z": -6546.99 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -735925,9 +735925,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 5274.56, + "X": 5276.78, "Y": -255.85, - "Z": -5979.01 + "Z": -5982.07 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -736082,9 +736082,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4466.04, + "X": 4468.26, "Y": -266.15, - "Z": -5648.6 + "Z": -5651.65 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -736241,9 +736241,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4739.9, + "X": 4742.12, "Y": 52.17, - "Z": -7333.78 + "Z": -7336.83 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -736400,9 +736400,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 5424.34, + "X": 5426.56, "Y": 9.79, - "Z": -7115.05 + "Z": -7118.11 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -736559,9 +736559,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 3950.48, + "X": 3952.7, "Y": 80.71, - "Z": -6890.78 + "Z": -6893.84 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -736716,9 +736716,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4814.53, + "X": 4816.75, "Y": -231.16, - "Z": -5913.63 + "Z": -5916.69 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -736875,9 +736875,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4322.66, + "X": 4324.88, "Y": 78.77, - "Z": -7390.11 + "Z": -7393.16 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -737032,9 +737032,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 5702.02, + "X": 5704.24, "Y": -20.68, - "Z": -6977.27 + "Z": -6980.33 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -758533,9 +758533,9 @@ "Identity Proof": "Metadata Anchor (COPYRIGHT)" }, "2. Topological Coordinates": { - "X": 3963.52, + "X": 3964.04, "Y": 165.09, - "Z": -10504.2 + "Z": -10505.53 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -758690,9 +758690,9 @@ "Identity Proof": "Single Indicator (Shebang)" }, "2. Topological Coordinates": { - "X": 3947.59, + "X": 3948.11, "Y": 184.98, - "Z": -10127.98 + "Z": -10129.3 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -759055,9 +759055,9 @@ "Identity Proof": "Single Indicator (Shebang)" }, "2. Topological Coordinates": { - "X": 3726.94, + "X": 3727.47, "Y": 160.01, - "Z": -9794.37 + "Z": -9795.7 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -793743,24 +793743,24 @@ } }, "jcl/cics-banking-sample-application-cbsa": { - "Directory Group Magnitude": 321.88, + "Directory Group Magnitude": 325.88, "File Count": 99, "Ecosystem Fingerprint (Archetypes)": { "Unclassified": "100.0%" }, "Average Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "45.62%", + "Error & Exception Exposure": "30.07%", "Tech Debt Exposure": "47.76%", "Testing Exposure": "2.33%", - "API Exposure": "1.3%", + "API Exposure": "1.43%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "1.17%", "Commented Logic Exposure": "3.07%", "Specification Exposure": "98.99%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "5.38%", + "Documentation Exposure": "5.98%", "Hardcoded Payload Artifacts": "0.0%" }, "Files": { @@ -794290,9 +794290,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 188.46, - "Y": 52.61, - "Z": -1700.58 + "X": 70.11, + "Y": 59.34, + "Z": -2692.06 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -794314,9 +794314,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "89.5%", + "Error & Exception Exposure": "73.11%", "Tech Debt Exposure": "96.64%", - "Testing Exposure": "2.39%", + "Testing Exposure": "2.37%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -794368,7 +794368,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 3, + "High-Risk Execution Commands": 1, "I/O and Network Boundaries": 25, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -794451,7 +794451,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 3, + "Sec Tainted Injection": 1, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -794483,9 +794483,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -193.46, - "Y": 52.39, - "Z": -2438.15 + "X": -194.39, + "Y": 52.41, + "Z": -2438.32 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -794497,7 +794497,7 @@ "Total LOC": 57, "Coding LOC": 52, "Documentation LOC": 4, - "Structural Magnitude": 8.64, + "Structural Magnitude": 9.64, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -794507,17 +794507,17 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "73.11%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "70.38%", - "Testing Exposure": "2.39%", - "API Exposure": "0.0%", + "Testing Exposure": "2.38%", + "API Exposure": "3.41%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", + "Documentation Exposure": "16.41%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -794551,9 +794551,9 @@ "Class/Entity Declarations": 0, "Defensive Programming Constructs": 1, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 43, - "Exposed API / Public Exports": 0, + "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -794634,7 +794634,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 2, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -797821,7 +797821,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -797948,9 +797948,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.33%", + "Testing Exposure": "2.32%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -797982,7 +797982,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 10, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -798065,7 +798065,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -798096,9 +798096,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 577.65, - "Y": 58.05, - "Z": -1824.65 + "X": 578.22, + "Y": 58.03, + "Z": -1823.91 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -798110,7 +798110,7 @@ "Total LOC": 59, "Coding LOC": 53, "Documentation LOC": 5, - "Structural Magnitude": 8.66, + "Structural Magnitude": 9.66, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -798120,17 +798120,17 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "72.84%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "69.04%", - "Testing Exposure": "2.39%", - "API Exposure": "0.0%", + "Testing Exposure": "2.38%", + "API Exposure": "3.39%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", + "Documentation Exposure": "15.73%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -798164,9 +798164,9 @@ "Class/Entity Declarations": 0, "Defensive Programming Constructs": 1, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 43, - "Exposed API / Public Exports": 0, + "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -798247,7 +798247,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 2, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -798289,9 +798289,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 351.16, + "X": 351.21, "Y": 47.47, - "Z": -2728.78 + "Z": -2729.28 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -798303,7 +798303,7 @@ "Total LOC": 183, "Coding LOC": 108, "Documentation LOC": 74, - "Structural Magnitude": 17.26, + "Structural Magnitude": 18.26, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -798313,17 +798313,17 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "63.7%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "86.97%", - "Testing Exposure": "2.37%", - "API Exposure": "0.0%", + "Testing Exposure": "2.36%", + "API Exposure": "2.66%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "26.25%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", + "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -798407,9 +798407,9 @@ "Class/Entity Declarations": 0, "Defensive Programming Constructs": 5, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 2, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 115, - "Exposed API / Public Exports": 0, + "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 4, "Structured Documentation Blocks": 0, @@ -798490,7 +798490,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 7, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -800345,7 +800345,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -800472,9 +800472,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "86.83%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.36%", + "Testing Exposure": "2.33%", "API Exposure": "5.59%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -800516,7 +800516,7 @@ "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 2, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 5, "Exposed API / Public Exports": 2, "State Mutations / Variable Reassignments": 0, @@ -800599,7 +800599,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 2, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -800697,7 +800697,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -800868,7 +800868,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -801039,7 +801039,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -801166,9 +801166,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "86.83%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.36%", + "Testing Exposure": "2.33%", "API Exposure": "5.59%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -801210,7 +801210,7 @@ "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 2, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 5, "Exposed API / Public Exports": 2, "State Mutations / Variable Reassignments": 0, @@ -801293,7 +801293,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 2, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -801347,9 +801347,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.33%", + "Testing Exposure": "2.31%", "API Exposure": "3.53%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -801381,7 +801381,7 @@ "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 1, "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 0, @@ -801464,7 +801464,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -801517,9 +801517,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.33%", + "Testing Exposure": "2.31%", "API Exposure": "3.53%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -801551,7 +801551,7 @@ "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 1, "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 0, @@ -801634,7 +801634,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -801687,9 +801687,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.33%", + "Testing Exposure": "2.31%", "API Exposure": "3.53%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -801721,7 +801721,7 @@ "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 1, "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 0, @@ -801804,7 +801804,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -801857,9 +801857,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.33%", + "Testing Exposure": "2.31%", "API Exposure": "3.53%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -801891,7 +801891,7 @@ "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 1, "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 0, @@ -801974,7 +801974,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -802027,9 +802027,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "86.83%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.36%", + "Testing Exposure": "2.33%", "API Exposure": "5.59%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -802071,7 +802071,7 @@ "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 2, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 5, "Exposed API / Public Exports": 2, "State Mutations / Variable Reassignments": 0, @@ -802154,7 +802154,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 2, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -802208,9 +802208,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.33%", + "Testing Exposure": "2.31%", "API Exposure": "3.53%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -802242,7 +802242,7 @@ "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 1, "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 0, @@ -802325,7 +802325,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -802378,9 +802378,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.33%", + "Testing Exposure": "2.31%", "API Exposure": "3.53%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -802412,7 +802412,7 @@ "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 1, "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 0, @@ -802495,7 +802495,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -802548,9 +802548,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "86.83%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.36%", + "Testing Exposure": "2.33%", "API Exposure": "5.59%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -802592,7 +802592,7 @@ "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 2, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 5, "Exposed API / Public Exports": 2, "State Mutations / Variable Reassignments": 0, @@ -802675,7 +802675,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 2, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -802729,9 +802729,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "86.83%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.36%", + "Testing Exposure": "2.33%", "API Exposure": "5.59%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -802773,7 +802773,7 @@ "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 2, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 5, "Exposed API / Public Exports": 2, "State Mutations / Variable Reassignments": 0, @@ -802856,7 +802856,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 2, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -802910,9 +802910,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "86.83%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.36%", + "Testing Exposure": "2.33%", "API Exposure": "5.59%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -802954,7 +802954,7 @@ "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 2, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 5, "Exposed API / Public Exports": 2, "State Mutations / Variable Reassignments": 0, @@ -803037,7 +803037,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 2, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -803091,9 +803091,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "78.34%", + "Error & Exception Exposure": "64.57%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.33%", + "Testing Exposure": "2.32%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "16.8%", @@ -803125,7 +803125,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 1, @@ -803135,7 +803135,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -803317,7 +803317,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -803488,7 +803488,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -803659,7 +803659,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -803830,7 +803830,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -804001,7 +804001,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -804172,7 +804172,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -804343,7 +804343,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -804514,7 +804514,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -804685,7 +804685,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -804866,7 +804866,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -805209,7 +805209,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 9, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -805719,7 +805719,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -805890,7 +805890,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -806061,7 +806061,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -806232,7 +806232,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -806403,7 +806403,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -806574,7 +806574,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -806745,7 +806745,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -806916,7 +806916,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -807087,7 +807087,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -807258,7 +807258,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -807429,7 +807429,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -807600,7 +807600,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -807771,7 +807771,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -807942,7 +807942,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -809139,7 +809139,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 2, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -809243,9 +809243,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 55.05, - "Y": 60.88, - "Z": -2833.53 + "X": 173.12, + "Y": 54.15, + "Z": -1841.05 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -809257,7 +809257,7 @@ "Total LOC": 50, "Coding LOC": 43, "Documentation LOC": 6, - "Structural Magnitude": 7.46, + "Structural Magnitude": 8.46, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -809267,17 +809267,17 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "86.83%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "99.91%", - "Testing Exposure": "2.41%", - "API Exposure": "0.0%", + "Testing Exposure": "2.38%", + "API Exposure": "3.53%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", + "Documentation Exposure": "15.3%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -809331,9 +809331,9 @@ "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 2, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 28, - "Exposed API / Public Exports": 0, + "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -809367,7 +809367,7 @@ "Bitwise Operations": 0, "Thread Synchronization Locks": 4, "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, + "Resource Deallocation & Cleanup": 2, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, @@ -809414,7 +809414,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 2, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -809639,9 +809639,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.33%", + "Testing Exposure": "2.32%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -809673,7 +809673,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 7, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -809756,7 +809756,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -809810,9 +809810,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.33%", + "Testing Exposure": "2.32%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -809844,7 +809844,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 7, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -809927,7 +809927,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -827718,7 +827718,7 @@ } }, "jcl/cics-genapp": { - "Directory Group Magnitude": 261.84, + "Directory Group Magnitude": 263.84, "File Count": 30, "Ecosystem Fingerprint (Archetypes)": { "Unclassified": "96.7%", @@ -827726,17 +827726,17 @@ }, "Average Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "50.57%", + "Error & Exception Exposure": "8.22%", "Tech Debt Exposure": "56.01%", - "Testing Exposure": "2.28%", - "API Exposure": "0.0%", + "Testing Exposure": "2.27%", + "API Exposure": "0.21%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.34%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "96.67%", "Instability Exposure": "48.33%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", + "Documentation Exposure": "0.79%", "Hardcoded Payload Artifacts": "0.0%" }, "Files": { @@ -827938,9 +827938,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "91.04%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "98.89%", - "Testing Exposure": "2.41%", + "Testing Exposure": "2.37%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -828022,7 +828022,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 2, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 4, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 20, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -828105,7 +828105,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 6, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -828156,9 +828156,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "91.68%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "99.33%", - "Testing Exposure": "2.42%", + "Testing Exposure": "2.38%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -828220,7 +828220,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 1, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 3, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 34, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -828256,7 +828256,7 @@ "Bitwise Operations": 0, "Thread Synchronization Locks": 3, "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, + "Resource Deallocation & Cleanup": 2, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, @@ -828303,7 +828303,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 4, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -828357,7 +828357,7 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "62.39%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "21.39%", "Testing Exposure": "2.32%", "API Exposure": "0.0%", @@ -828391,7 +828391,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 8, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -828474,7 +828474,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -828525,7 +828525,7 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "58.39%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "15.03%", "Testing Exposure": "2.31%", "API Exposure": "0.0%", @@ -828559,7 +828559,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 8, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -828642,7 +828642,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -828693,7 +828693,7 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "57.24%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "13.62%", "Testing Exposure": "2.31%", "API Exposure": "0.0%", @@ -828727,7 +828727,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 8, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -828810,7 +828810,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -828861,9 +828861,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.34%", + "Testing Exposure": "2.33%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -828895,7 +828895,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 6, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -828978,7 +828978,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -829029,9 +829029,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.34%", + "Testing Exposure": "2.33%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -829063,7 +829063,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 6, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -829146,7 +829146,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -829173,9 +829173,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -4637.53, - "Y": 158.42, - "Z": 5415.23 + "X": -4637.69, + "Y": 158.43, + "Z": 5415.37 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -829187,7 +829187,7 @@ "Total LOC": 114, "Coding LOC": 96, "Documentation LOC": 18, - "Structural Magnitude": 42.92, + "Structural Magnitude": 43.92, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -829197,17 +829197,17 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "62.65%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "100.0%", - "Testing Exposure": "2.58%", - "API Exposure": "0.0%", + "Testing Exposure": "2.57%", + "API Exposure": "2.92%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", + "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -829561,9 +829561,9 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 2, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 49, - "Exposed API / Public Exports": 0, + "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -829597,7 +829597,7 @@ "Bitwise Operations": 0, "Thread Synchronization Locks": 2, "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, + "Resource Deallocation & Cleanup": 2, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, @@ -829644,7 +829644,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 3, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -829739,7 +829739,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -830165,7 +830165,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -830333,7 +830333,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -830457,9 +830457,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "84.74%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "99.33%", - "Testing Exposure": "2.39%", + "Testing Exposure": "2.37%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -830511,7 +830511,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 1, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 2, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 10, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -830594,7 +830594,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 2, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -830645,9 +830645,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "86.83%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "95.26%", - "Testing Exposure": "2.37%", + "Testing Exposure": "2.34%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -830689,7 +830689,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 2, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 4, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -830772,7 +830772,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 2, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -830823,9 +830823,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.33%", + "Testing Exposure": "2.32%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -830857,7 +830857,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 13, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -830940,7 +830940,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -830991,9 +830991,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.33%", + "Testing Exposure": "2.32%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -831025,7 +831025,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 6, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -831108,7 +831108,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -831135,9 +831135,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -4336.2, + "X": -4336.17, "Y": 160.29, - "Z": 4559.97 + "Z": 4559.63 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -831149,7 +831149,7 @@ "Total LOC": 39, "Coding LOC": 35, "Documentation LOC": 4, - "Structural Magnitude": 26.3, + "Structural Magnitude": 27.3, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -831159,17 +831159,17 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "100.0%", - "Testing Exposure": "2.66%", - "API Exposure": "0.0%", + "Testing Exposure": "2.64%", + "API Exposure": "3.53%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", + "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -831413,9 +831413,9 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 11, - "Exposed API / Public Exports": 0, + "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -831496,7 +831496,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -831547,9 +831547,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "71.36%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.36%", + "Testing Exposure": "2.35%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -831581,7 +831581,7 @@ "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 43, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -831664,7 +831664,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -831715,9 +831715,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.33%", + "Testing Exposure": "2.32%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -831749,7 +831749,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 6, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -831832,7 +831832,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -831883,9 +831883,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.34%", + "Testing Exposure": "2.33%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -831917,7 +831917,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 6, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -832000,7 +832000,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -832051,9 +832051,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "66.2%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "30.29%", - "Testing Exposure": "2.35%", + "Testing Exposure": "2.34%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -832085,7 +832085,7 @@ "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 51, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -832168,7 +832168,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -844106,9 +844106,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 5988.55, + "X": 5990.87, "Y": -237.07, - "Z": -7860.94 + "Z": -7863.74 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -844263,9 +844263,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 6717.43, + "X": 6719.75, "Y": -220.86, - "Z": -7446.85 + "Z": -7449.65 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -844420,9 +844420,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 5655.86, + "X": 5658.18, "Y": -230.93, - "Z": -7304.03 + "Z": -7306.83 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -844577,9 +844577,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 5597.39, + "X": 5599.71, "Y": -231.03, - "Z": -7701.48 + "Z": -7704.28 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -844745,9 +844745,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 6068.24, + "X": 6070.56, "Y": -193.38, - "Z": -7168.45 + "Z": -7171.25 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -844902,9 +844902,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 6915.45, + "X": 6917.77, "Y": -200.35, - "Z": -7587.29 + "Z": -7590.09 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -845070,9 +845070,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 6233.35, + "X": 6235.67, "Y": -189.0, - "Z": -7906.75 + "Z": -7909.55 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -845227,9 +845227,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 5983.26, + "X": 5985.58, "Y": -240.46, - "Z": -7404.85 + "Z": -7407.65 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -845384,9 +845384,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 6231.66, + "X": 6233.98, "Y": -208.54, - "Z": -7522.33 + "Z": -7525.13 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -845541,9 +845541,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 5776.22, + "X": 5778.53, "Y": -209.72, - "Z": -7602.48 + "Z": -7605.28 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -845698,9 +845698,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 6470.88, + "X": 6473.2, "Y": -203.73, - "Z": -7067.52 + "Z": -7070.32 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -845855,9 +845855,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 6623.41, + "X": 6625.73, "Y": -223.68, - "Z": -7947.86 + "Z": -7950.66 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -846012,9 +846012,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 6456.61, + "X": 6458.93, "Y": -203.78, - "Z": -8172.85 + "Z": -8175.65 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -846190,9 +846190,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 5832.5, + "X": 5834.82, "Y": -185.31, - "Z": -6885.37 + "Z": -6888.17 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -846358,9 +846358,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 6393.56, + "X": 6395.88, "Y": -205.22, - "Z": -6770.06 + "Z": -6772.86 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -853267,24 +853267,24 @@ } }, "jcl/cobol-programming-course": { - "Directory Group Magnitude": 204.5, + "Directory Group Magnitude": 210.5, "File Count": 43, "Ecosystem Fingerprint (Archetypes)": { "Unclassified": "100.0%" }, "Average Risk Exposures": { "Cognitive Load Exposure": "2.47%", - "Error & Exception Exposure": "61.88%", + "Error & Exception Exposure": "10.65%", "Tech Debt Exposure": "61.57%", - "Testing Exposure": "2.37%", - "API Exposure": "0.0%", + "Testing Exposure": "2.36%", + "API Exposure": "0.49%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", + "Documentation Exposure": "2.19%", "Hardcoded Payload Artifacts": "0.0%" }, "Files": { @@ -853301,9 +853301,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3457.91, - "Y": -255.4, - "Z": -6219.95 + "X": 2779.65, + "Y": -230.33, + "Z": -6611.87 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -853325,9 +853325,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "4.17%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "95.26%", - "Testing Exposure": "2.39%", + "Testing Exposure": "2.37%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -853369,7 +853369,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 8, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -853452,7 +853452,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -853481,9 +853481,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3086.08, - "Y": -336.99, - "Z": -5892.34 + "X": 3086.21, + "Y": -337.15, + "Z": -5892.31 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -853505,9 +853505,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "4.17%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.38%", + "Testing Exposure": "2.37%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -853549,7 +853549,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 11, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -853632,7 +853632,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -853662,9 +853662,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 2960.33, - "Y": -126.12, - "Z": -6759.13 + "X": 2960.31, + "Y": -126.02, + "Z": -6760.3 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -853686,9 +853686,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "4.17%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.38%", + "Testing Exposure": "2.37%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -853730,7 +853730,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 11, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -853813,7 +853813,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -853843,9 +853843,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3714.79, - "Y": -161.91, - "Z": -6217.84 + "X": 3715.71, + "Y": -161.9, + "Z": -6218.21 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -853867,9 +853867,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "4.17%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.38%", + "Testing Exposure": "2.37%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -853911,7 +853911,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 11, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -853994,7 +853994,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -854024,9 +854024,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 2586.33, - "Y": -308.2, - "Z": -6119.61 + "X": 2586.02, + "Y": -308.31, + "Z": -6119.97 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -854048,9 +854048,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "4.17%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.38%", + "Testing Exposure": "2.37%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -854092,7 +854092,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 11, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -854175,7 +854175,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -854205,9 +854205,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3462.11, - "Y": -77.74, - "Z": -7006.69 + "X": 3462.68, + "Y": -77.58, + "Z": -7007.87 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -854229,9 +854229,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "4.17%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.38%", + "Testing Exposure": "2.37%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -854273,7 +854273,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 11, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -854356,7 +854356,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -854386,9 +854386,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3406.97, - "Y": -308.71, - "Z": -5923.56 + "X": 3407.47, + "Y": -308.83, + "Z": -5923.53 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -854410,9 +854410,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "4.17%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.38%", + "Testing Exposure": "2.37%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -854454,7 +854454,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 11, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -854537,7 +854537,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -854567,9 +854567,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 2632.18, - "Y": -208.16, - "Z": -6860.94 + "X": 2631.9, + "Y": -208.14, + "Z": -6861.87 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -854591,9 +854591,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "4.17%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.38%", + "Testing Exposure": "2.37%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -854635,7 +854635,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 11, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -854718,7 +854718,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -854748,9 +854748,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3823.15, - "Y": -81.1, - "Z": -6557.49 + "X": 3824.09, + "Y": -81.01, + "Z": -6558.22 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -854772,9 +854772,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "4.17%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.38%", + "Testing Exposure": "2.37%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -854816,7 +854816,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 11, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -854899,7 +854899,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -854929,9 +854929,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 2754.45, - "Y": -383.72, - "Z": -5742.93 + "X": 2754.37, + "Y": -383.88, + "Z": -5743.0 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -854953,9 +854953,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "4.17%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.38%", + "Testing Exposure": "2.37%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -854997,7 +854997,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 11, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -855080,7 +855080,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -855110,9 +855110,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3032.66, - "Y": -3.37, - "Z": -7017.91 + "X": 3032.86, + "Y": -3.24, + "Z": -7019.15 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -855134,9 +855134,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "4.17%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.38%", + "Testing Exposure": "2.37%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -855178,7 +855178,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 11, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -855261,7 +855261,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -855291,9 +855291,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3771.39, - "Y": -219.77, - "Z": -6028.76 + "X": 3772.2, + "Y": -219.81, + "Z": -6028.93 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -855315,9 +855315,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "4.17%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.38%", + "Testing Exposure": "2.37%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -855359,7 +855359,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 11, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -855442,7 +855442,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -855472,9 +855472,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 2433.69, - "Y": -308.45, - "Z": -6341.31 + "X": 2433.32, + "Y": -308.52, + "Z": -6341.89 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -855496,9 +855496,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "4.17%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.38%", + "Testing Exposure": "2.37%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -855540,7 +855540,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 11, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -855623,7 +855623,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -855653,9 +855653,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3389.66, - "Y": 13.35, - "Z": -7120.22 + "X": 3390.09, + "Y": 13.51, + "Z": -7121.45 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -855677,9 +855677,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "4.17%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.38%", + "Testing Exposure": "2.37%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -855721,7 +855721,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 10, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -855804,7 +855804,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -855833,9 +855833,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3645.0, - "Y": -310.9, - "Z": -5798.17 + "X": 3645.63, + "Y": -310.99, + "Z": -5798.2 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -855857,9 +855857,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "4.17%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.38%", + "Testing Exposure": "2.37%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -855901,7 +855901,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 10, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -855984,7 +855984,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -856013,9 +856013,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 2987.24, - "Y": -300.21, - "Z": -6351.61 + "X": 3228.94, + "Y": -153.47, + "Z": -6890.29 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -856037,9 +856037,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.21%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.44%", + "Testing Exposure": "2.43%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -856091,7 +856091,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 17, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -856174,7 +856174,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -856204,9 +856204,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3733.87, - "Y": -43.57, - "Z": -6872.75 + "X": 3734.63, + "Y": -43.42, + "Z": -6873.79 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -856228,9 +856228,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "4.17%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.38%", + "Testing Exposure": "2.37%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -856272,7 +856272,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 11, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -856355,7 +856355,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -856385,9 +856385,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3178.04, - "Y": -395.74, - "Z": -5752.82 + "X": 3178.32, + "Y": -395.89, + "Z": -5752.77 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -856409,9 +856409,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "4.17%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.38%", + "Testing Exposure": "2.37%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -856453,7 +856453,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 11, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -856536,7 +856536,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -856566,9 +856566,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 2448.14, - "Y": -392.97, - "Z": -5738.23 + "X": 2447.99, + "Y": -393.12, + "Z": -5738.35 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -856734,9 +856734,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 2384.44, - "Y": -132.97, - "Z": -7071.75 + "X": 4169.27, + "Y": -84.18, + "Z": -6542.34 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -856904,9 +856904,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3173.69, - "Y": 18.85, - "Z": -7521.37 + "X": 3173.99, + "Y": 19.0, + "Z": -7522.61 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -857072,9 +857072,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3709.34, - "Y": 57.21, - "Z": -7338.69 + "X": 3373.32, + "Y": -372.61, + "Z": -5609.04 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -857242,9 +857242,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3888.3, - "Y": -347.38, - "Z": -5559.8 + "X": 3889.04, + "Y": -347.45, + "Z": -5559.91 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -857410,9 +857410,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3370.11, - "Y": -393.28, - "Z": -5449.68 + "X": 2406.66, + "Y": -130.54, + "Z": -6994.31 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -857580,9 +857580,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3582.05, - "Y": -88.87, - "Z": -6698.42 + "X": 3582.89, + "Y": -88.73, + "Z": -6699.36 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -857604,9 +857604,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "4.17%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.38%", + "Testing Exposure": "2.37%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -857648,7 +857648,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 10, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -857731,7 +857731,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -857761,9 +857761,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 2245.73, - "Y": -320.15, - "Z": -6072.44 + "X": 3672.92, + "Y": 49.4, + "Z": -7087.44 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -857929,9 +857929,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3183.03, + "X": 3183.32, "Y": -207.64, - "Z": -6293.06 + "Z": -6293.65 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -857943,7 +857943,7 @@ "Total LOC": 61, "Coding LOC": 48, "Documentation LOC": 12, - "Structural Magnitude": 12.76, + "Structural Magnitude": 13.76, "Control Flow Ratio": "13.6%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -857953,17 +857953,17 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.21%", - "Error & Exception Exposure": "84.74%", + "Error & Exception Exposure": "73.66%", "Tech Debt Exposure": "95.26%", - "Testing Exposure": "2.47%", - "API Exposure": "0.0%", + "Testing Exposure": "2.45%", + "API Exposure": "3.36%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", + "Documentation Exposure": "11.98%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -858007,9 +858007,9 @@ "Class/Entity Declarations": 0, "Defensive Programming Constructs": 1, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 2, + "High-Risk Execution Commands": 1, "I/O and Network Boundaries": 33, - "Exposed API / Public Exports": 0, + "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -858043,7 +858043,7 @@ "Bitwise Operations": 0, "Thread Synchronization Locks": 2, "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, + "Resource Deallocation & Cleanup": 1, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, @@ -858090,7 +858090,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 3, + "Sec Tainted Injection": 1, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -858128,9 +858128,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 4120.28, - "Y": -44.86, - "Z": -6536.23 + "X": 2206.56, + "Y": -296.36, + "Z": -6238.7 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -858142,7 +858142,7 @@ "Total LOC": 18, "Coding LOC": 13, "Documentation LOC": 4, - "Structural Magnitude": 1.86, + "Structural Magnitude": 2.86, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -858155,14 +858155,14 @@ "Error & Exception Exposure": "76.85%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.33%", - "API Exposure": "0.0%", + "API Exposure": "3.53%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", + "Documentation Exposure": "16.56%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -858188,7 +858188,7 @@ "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 1, "I/O and Network Boundaries": 6, - "Exposed API / Public Exports": 0, + "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -858298,9 +858298,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 2320.73, - "Y": -192.82, - "Z": -6627.11 + "X": 2320.4, + "Y": -192.83, + "Z": -6627.91 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -858322,9 +858322,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "86.83%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.37%", + "Testing Exposure": "2.34%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -858366,7 +858366,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 2, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 11, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -858449,7 +858449,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 2, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -858482,9 +858482,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 4020.52, - "Y": -1.72, - "Z": -7116.97 + "X": 4021.33, + "Y": -1.58, + "Z": -7117.95 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -858506,9 +858506,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.33%", + "Testing Exposure": "2.31%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -858540,7 +858540,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 1, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -858623,7 +858623,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -858652,8 +858652,8 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 2821.44, - "Y": -425.42, + "X": 2821.48, + "Y": -425.58, "Z": -5628.4 }, "3. Architectural Profile": { @@ -858676,9 +858676,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "86.83%", + "Error & Exception Exposure": "76.85%", "Tech Debt Exposure": "95.26%", - "Testing Exposure": "2.37%", + "Testing Exposure": "2.36%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -858730,7 +858730,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 2, + "High-Risk Execution Commands": 1, "I/O and Network Boundaries": 9, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -858813,7 +858813,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 2, + "Sec Tainted Injection": 1, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -858843,9 +858843,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3983.23, - "Y": -259.36, - "Z": -5801.62 + "X": 3986.64, + "Y": -259.43, + "Z": -5800.6 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -858857,7 +858857,7 @@ "Total LOC": 17, "Coding LOC": 15, "Documentation LOC": 1, - "Structural Magnitude": 2.4, + "Structural Magnitude": 3.4, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -858867,17 +858867,17 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.34%", - "API Exposure": "0.0%", + "Testing Exposure": "2.32%", + "API Exposure": "3.53%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", + "Documentation Exposure": "18.61%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -858901,9 +858901,9 @@ "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 8, - "Exposed API / Public Exports": 0, + "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -858984,7 +858984,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -859014,9 +859014,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 2668.93, - "Y": -130.61, - "Z": -6847.61 + "X": 2668.79, + "Y": -130.54, + "Z": -6848.7 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -859038,9 +859038,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "4.17%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.38%", + "Testing Exposure": "2.37%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -859082,7 +859082,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 11, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -859165,7 +859165,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -859195,9 +859195,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3022.77, - "Y": -483.84, - "Z": -5339.65 + "X": 3022.95, + "Y": -484.0, + "Z": -5339.61 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -859363,9 +859363,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 2828.11, - "Y": -59.42, - "Z": -7305.03 + "X": 2827.28, + "Y": -58.84, + "Z": -7308.61 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -859377,7 +859377,7 @@ "Total LOC": 30, "Coding LOC": 25, "Documentation LOC": 4, - "Structural Magnitude": 2.7, + "Structural Magnitude": 3.7, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -859387,17 +859387,17 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.34%", - "API Exposure": "0.0%", + "Testing Exposure": "2.33%", + "API Exposure": "3.53%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", + "Documentation Exposure": "16.56%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -859421,9 +859421,9 @@ "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 10, - "Exposed API / Public Exports": 0, + "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -859504,7 +859504,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -859536,9 +859536,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 2761.85, - "Y": -178.28, - "Z": -6372.0 + "X": 3441.01, + "Y": -203.6, + "Z": -5980.03 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -859550,7 +859550,7 @@ "Total LOC": 39, "Coding LOC": 34, "Documentation LOC": 4, - "Structural Magnitude": 6.28, + "Structural Magnitude": 7.28, "Control Flow Ratio": "6.5%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -859560,17 +859560,17 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "3.86%", - "Error & Exception Exposure": "86.83%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.4%", - "API Exposure": "0.0%", + "Testing Exposure": "2.37%", + "API Exposure": "3.53%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", + "Documentation Exposure": "16.56%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -859604,9 +859604,9 @@ "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 2, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 20, - "Exposed API / Public Exports": 0, + "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -859640,7 +859640,7 @@ "Bitwise Operations": 0, "Thread Synchronization Locks": 2, "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, + "Resource Deallocation & Cleanup": 1, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, @@ -859687,7 +859687,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 2, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -859722,9 +859722,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3176.68, - "Y": -106.18, - "Z": -6612.13 + "X": 2934.87, + "Y": -252.92, + "Z": -6074.97 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -859736,7 +859736,7 @@ "Total LOC": 51, "Coding LOC": 42, "Documentation LOC": 8, - "Structural Magnitude": 10.04, + "Structural Magnitude": 11.04, "Control Flow Ratio": "10.5%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -859746,17 +859746,17 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "4.49%", - "Error & Exception Exposure": "86.83%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.44%", - "API Exposure": "0.0%", + "Testing Exposure": "2.42%", + "API Exposure": "3.51%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", + "Documentation Exposure": "14.12%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -859800,9 +859800,9 @@ "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 2, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 26, - "Exposed API / Public Exports": 0, + "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -859836,7 +859836,7 @@ "Bitwise Operations": 0, "Thread Synchronization Locks": 2, "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, + "Resource Deallocation & Cleanup": 1, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, @@ -859883,7 +859883,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 2, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -859918,9 +859918,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 4014.75, - "Y": -74.61, - "Z": -6748.23 + "X": 4015.65, + "Y": -74.49, + "Z": -6749.09 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -860098,9 +860098,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 2564.41, - "Y": -10.51, - "Z": -7455.15 + "X": 2564.35, + "Y": -10.42, + "Z": -7456.3 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -860266,9 +860266,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 4258.91, - "Y": -142.13, - "Z": -6008.03 + "X": 4259.85, + "Y": -142.11, + "Z": -6008.45 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -860434,9 +860434,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 2097.76, - "Y": -274.62, - "Z": -6503.5 + "X": 2097.4, + "Y": -274.67, + "Z": -6504.16 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -860602,9 +860602,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 4024.6, - "Y": -161.07, - "Z": -6229.93 + "X": 4025.55, + "Y": -161.03, + "Z": -6230.43 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -860626,9 +860626,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "4.17%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.38%", + "Testing Exposure": "2.37%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -860670,7 +860670,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 11, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -860753,7 +860753,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -860783,9 +860783,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 2459.76, - "Y": -379.41, - "Z": -5954.1 + "X": 2459.52, + "Y": -379.55, + "Z": -5954.33 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -860807,9 +860807,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "4.17%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.38%", + "Testing Exposure": "2.37%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -860851,7 +860851,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 11, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -860934,7 +860934,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -871671,24 +871671,24 @@ } }, "jcl/zopeneditor-sample": { - "Directory Group Magnitude": 97.88, + "Directory Group Magnitude": 98.88, "File Count": 10, "Ecosystem Fingerprint (Archetypes)": { "Unclassified": "100.0%" }, "Average Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "79.56%", + "Error & Exception Exposure": "57.6%", "Tech Debt Exposure": "79.42%", - "Testing Exposure": "2.37%", - "API Exposure": "0.0%", + "Testing Exposure": "2.35%", + "API Exposure": "0.35%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "38.85%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "90.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", + "Documentation Exposure": "1.19%", "Hardcoded Payload Artifacts": "0.0%" }, "Files": { @@ -871729,9 +871729,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "72.2%", + "Error & Exception Exposure": "60.09%", "Tech Debt Exposure": "82.41%", - "Testing Exposure": "2.35%", + "Testing Exposure": "2.34%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "22.73%", @@ -871773,7 +871773,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 1, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 24, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 2, @@ -871783,7 +871783,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 2, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -871809,7 +871809,7 @@ "Bitwise Operations": 0, "Thread Synchronization Locks": 7, "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, + "Resource Deallocation & Cleanup": 7, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, @@ -871856,7 +871856,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 2, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -871915,9 +871915,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "75.96%", + "Error & Exception Exposure": "62.08%", "Tech Debt Exposure": "93.64%", - "Testing Exposure": "2.35%", + "Testing Exposure": "2.34%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "29.1%", @@ -871959,7 +871959,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 1, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 20, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 2, @@ -871969,7 +871969,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 2, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -871995,7 +871995,7 @@ "Bitwise Operations": 0, "Thread Synchronization Locks": 5, "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, + "Resource Deallocation & Cleanup": 5, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, @@ -872042,7 +872042,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 2, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -872075,9 +872075,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -2095.78, - "Y": 31.78, - "Z": 9500.84 + "X": -1023.63, + "Y": 0.3, + "Z": 9468.29 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -872089,7 +872089,7 @@ "Total LOC": 52, "Coding LOC": 24, "Documentation LOC": 28, - "Structural Magnitude": 3.08, + "Structural Magnitude": 4.08, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -872099,17 +872099,17 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.34%", - "API Exposure": "0.0%", + "Testing Exposure": "2.33%", + "API Exposure": "3.49%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", + "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -872133,9 +872133,9 @@ "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 10, - "Exposed API / Public Exports": 0, + "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -872216,7 +872216,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -872305,7 +872305,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 3, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -872405,9 +872405,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -1022.04, - "Y": -37.72, - "Z": 9538.94 + "X": -2092.98, + "Y": -6.37, + "Z": 9572.29 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -872473,7 +872473,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 2, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -872599,9 +872599,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "71.57%", + "Error & Exception Exposure": "59.76%", "Tech Debt Exposure": "79.79%", - "Testing Exposure": "2.35%", + "Testing Exposure": "2.34%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "21.87%", @@ -872643,7 +872643,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 1, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 24, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 2, @@ -872653,7 +872653,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 2, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -872679,7 +872679,7 @@ "Bitwise Operations": 0, "Thread Synchronization Locks": 7, "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, + "Resource Deallocation & Cleanup": 7, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, @@ -872726,7 +872726,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 2, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -872785,9 +872785,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "62.58%", "Tech Debt Exposure": "95.26%", - "Testing Exposure": "2.35%", + "Testing Exposure": "2.34%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "31.0%", @@ -872829,7 +872829,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 1, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 18, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 2, @@ -872839,7 +872839,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 2, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -872865,7 +872865,7 @@ "Bitwise Operations": 0, "Thread Synchronization Locks": 4, "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, + "Resource Deallocation & Cleanup": 4, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, @@ -872912,7 +872912,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 2, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -872968,9 +872968,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "95.49%", + "Error & Exception Exposure": "63.85%", "Tech Debt Exposure": "97.04%", - "Testing Exposure": "2.42%", + "Testing Exposure": "2.38%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "42.15%", @@ -873052,7 +873052,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 6, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 60, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 5, @@ -873062,7 +873062,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 5, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -873088,7 +873088,7 @@ "Bitwise Operations": 0, "Thread Synchronization Locks": 4, "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, + "Resource Deallocation & Cleanup": 2, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, @@ -873135,7 +873135,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 6, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -873201,9 +873201,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "97.34%", + "Error & Exception Exposure": "70.21%", "Tech Debt Exposure": "99.91%", - "Testing Exposure": "2.43%", + "Testing Exposure": "2.38%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "91.68%", @@ -873265,7 +873265,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 1, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 4, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 38, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 6, @@ -873275,7 +873275,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 6, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -873301,7 +873301,7 @@ "Bitwise Operations": 0, "Thread Synchronization Locks": 1, "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, + "Resource Deallocation & Cleanup": 1, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, @@ -873348,7 +873348,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 4, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -873411,9 +873411,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "98.39%", + "Error & Exception Exposure": "66.5%", "Tech Debt Exposure": "99.99%", - "Testing Exposure": "2.47%", + "Testing Exposure": "2.4%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "69.0%", @@ -873485,7 +873485,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 1, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 5, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 51, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 4, @@ -873495,7 +873495,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 4, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -873521,7 +873521,7 @@ "Bitwise Operations": 0, "Thread Synchronization Locks": 3, "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, + "Resource Deallocation & Cleanup": 1, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, @@ -873568,7 +873568,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 5, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -873633,9 +873633,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4689.51, + "X": 4691.11, "Y": -56.97, - "Z": -8157.99 + "Z": -8160.76 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -873790,9 +873790,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4273.53, + "X": 4275.13, "Y": -134.4, - "Z": -7600.26 + "Z": -7603.03 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -873962,9 +873962,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4654.86, + "X": 4656.46, "Y": -19.84, - "Z": -8957.79 + "Z": -8960.56 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -874134,9 +874134,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4505.91, + "X": 4507.51, "Y": -63.53, - "Z": -8045.17 + "Z": -8047.94 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -874291,9 +874291,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4749.39, + "X": 4750.99, "Y": -42.39, - "Z": -8602.81 + "Z": -8605.58 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -874448,9 +874448,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4978.91, + "X": 4980.51, "Y": -165.67, - "Z": -8012.43 + "Z": -8015.2 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -874605,9 +874605,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4111.12, + "X": 4112.72, "Y": -9.17, - "Z": -8429.22 + "Z": -8432.0 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -874773,9 +874773,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4298.81, + "X": 4300.41, "Y": -85.32, - "Z": -8262.73 + "Z": -8265.5 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -874930,9 +874930,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 5336.09, + "X": 5337.7, "Y": -155.33, - "Z": -8170.56 + "Z": -8173.34 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -875098,9 +875098,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4502.84, + "X": 4504.44, "Y": -43.71, - "Z": -8776.99 + "Z": -8779.76 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -875266,9 +875266,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 5219.11, + "X": 5220.71, "Y": -126.41, - "Z": -8122.68 + "Z": -8125.45 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -875434,9 +875434,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4567.53, + "X": 4569.13, "Y": -72.45, - "Z": -7702.47 + "Z": -7705.25 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -875628,9 +875628,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4172.16, + "X": 4173.76, "Y": -93.82, - "Z": -8113.56 + "Z": -8116.33 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -875799,9 +875799,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4962.28, + "X": 4963.88, "Y": -84.11, - "Z": -8661.41 + "Z": -8664.18 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -875970,9 +875970,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 5077.7, + "X": 5079.3, "Y": -65.26, - "Z": -8502.43 + "Z": -8505.2 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -876141,9 +876141,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4934.2, + "X": 4935.8, "Y": -166.2, - "Z": -7627.08 + "Z": -7629.86 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -876341,9 +876341,9 @@ "Identity Proof": "Single Indicator (Ext: .xml)" }, "2. Topological Coordinates": { - "X": 6610.06, + "X": 6612.2, "Y": 112.82, - "Z": -9067.19 + "Z": -9070.01 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -876498,9 +876498,9 @@ "Identity Proof": "Single Indicator (Ext: .xml)" }, "2. Topological Coordinates": { - "X": 6828.06, + "X": 6830.2, "Y": 160.61, - "Z": -8410.69 + "Z": -8413.5 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -876655,9 +876655,9 @@ "Identity Proof": "Single Indicator (Ext: .xml)" }, "2. Topological Coordinates": { - "X": 6129.16, + "X": 6131.3, "Y": 252.1, - "Z": -8730.79 + "Z": -8733.61 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -876812,9 +876812,9 @@ "Identity Proof": "Single Indicator (Ext: .cls)" }, "2. Topological Coordinates": { - "X": 6530.57, + "X": 6532.71, "Y": 135.41, - "Z": -8733.67 + "Z": -8736.49 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -877120,9 +877120,9 @@ "Identity Proof": "Single Indicator (Ext: .cls)" }, "2. Topological Coordinates": { - "X": 6912.47, + "X": 6914.61, "Y": 94.78, - "Z": -8960.05 + "Z": -8962.87 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -877308,9 +877308,9 @@ "Identity Proof": "Single Indicator (Ext: .cls)" }, "2. Topological Coordinates": { - "X": 6288.46, + "X": 6290.6, "Y": 231.79, - "Z": -8574.55 + "Z": -8577.37 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -884504,9 +884504,9 @@ "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": 5853.3, + "X": 5854.76, "Y": -300.32, - "Z": -9989.04 + "Z": -9991.46 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -884672,9 +884672,9 @@ "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": 5588.33, + "X": 5589.8, "Y": -225.58, - "Z": -9295.22 + "Z": -9297.64 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -884840,9 +884840,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 5775.51, + "X": 5776.98, "Y": -210.37, - "Z": -9492.38 + "Z": -9494.8 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -890104,9 +890104,9 @@ "Identity Proof": "Single Indicator (Ext: .hlo)" }, "2. Topological Coordinates": { - "X": 7466.25, + "X": 7468.31, "Y": -115.43, - "Z": -8877.44 + "Z": -8879.84 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -890261,9 +890261,9 @@ "Identity Proof": "Single Indicator (Ext: .hlo)" }, "2. Topological Coordinates": { - "X": 7478.9, + "X": 7480.97, "Y": -71.41, - "Z": -8731.2 + "Z": -8733.6 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -890418,9 +890418,9 @@ "Identity Proof": "Single Indicator (Ext: .hlo)" }, "2. Topological Coordinates": { - "X": 7242.32, + "X": 7244.38, "Y": -21.96, - "Z": -8555.29 + "Z": -8557.68 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -897310,9 +897310,9 @@ "Identity Proof": "Single Indicator (Ext: .go)" }, "2. Topological Coordinates": { - "X": 6432.56, + "X": 6434.42, "Y": 147.19, - "Z": -9406.71 + "Z": -9409.39 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -899206,7 +899206,7 @@ }, "Average Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "71.72%", + "Error & Exception Exposure": "46.1%", "Tech Debt Exposure": "53.79%", "Testing Exposure": "2.34%", "API Exposure": "0.0%", @@ -899502,7 +899502,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -899628,9 +899628,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.33%", + "Testing Exposure": "2.32%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -899662,7 +899662,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 2, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -899745,7 +899745,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -899977,9 +899977,9 @@ "Identity Proof": "Single Indicator (Ext: .proto)" }, "2. Topological Coordinates": { - "X": 8013.2, + "X": 8015.5, "Y": -23.25, - "Z": -8118.05 + "Z": -8120.4 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -906036,9 +906036,9 @@ "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": 2666.91, + "X": 2667.3, "Y": 287.86, - "Z": -9993.43 + "Z": -9994.83 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -906204,9 +906204,9 @@ "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": 2889.07, + "X": 2889.46, "Y": 208.99, - "Z": -10251.99 + "Z": -10253.4 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -907308,9 +907308,9 @@ }, "Average Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.34%", + "Testing Exposure": "2.33%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -907359,9 +907359,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.34%", + "Testing Exposure": "2.33%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -907393,7 +907393,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 2, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -907476,7 +907476,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -914523,9 +914523,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": 3524.65, + "X": 3525.15, "Y": -80.09, - "Z": -10038.34 + "Z": -10039.78 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -915247,9 +915247,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": 5413.75, + "X": 5415.23, "Y": 139.72, - "Z": -9767.89 + "Z": -9770.59 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -915971,9 +915971,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": 7148.36, + "X": 7150.53, "Y": -122.51, - "Z": -8941.09 + "Z": -8943.84 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -921584,9 +921584,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": 4387.67, + "X": 4388.21, "Y": 27.26, - "Z": -10356.37 + "Z": -10357.66 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -922308,9 +922308,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": 6286.25, + "X": 6287.75, "Y": -166.67, - "Z": -9826.65 + "Z": -9829.0 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -923032,9 +923032,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": 7995.22, + "X": 7997.3, "Y": -156.25, - "Z": -8802.19 + "Z": -8804.5 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -928459,9 +928459,9 @@ "Identity Proof": "Single Indicator (Ext: .html)" }, "2. Topological Coordinates": { - "X": 4743.76, + "X": 4745.0, "Y": 252.02, - "Z": -9990.53 + "Z": -9993.17 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -928616,9 +928616,9 @@ "Identity Proof": "Single Indicator (Ext: .html)" }, "2. Topological Coordinates": { - "X": 4486.51, + "X": 4487.75, "Y": 281.75, - "Z": -9893.19 + "Z": -9895.83 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", diff --git a/tests/golden_master_zero_dep_audit.json b/tests/golden_master_zero_dep_audit.json index dac179961..0e9d7df5b 100644 --- a/tests/golden_master_zero_dep_audit.json +++ b/tests/golden_master_zero_dep_audit.json @@ -11,14 +11,14 @@ "pyyaml": false }, "Target Root Name": "data", - "Absolute Project Path": "/srv/storage_16tb/projects/gitgalaxy/language-crucible/data", - "Analysis ISO Timestamp": "2026-09-05T15:41:15.436833+00:00", - "Total Scan Duration": "25.18 seconds" + "Absolute Project Path": "/home/joe/nyx_projects/language-crucible/data", + "Analysis ISO Timestamp": "2026-09-05T18:21:54.887935+00:00", + "Total Scan Duration": "54.39 seconds" }, "Source Control Footprint (Immutable Anchor)": { "Active Branch": "HEAD", "Commit Hash (SHA-1)": "77bc85ecb8bb2fa8331b83f2bd348ec735df66e3", - "Remote Origin URL": "https://github.com/squid-protocol/language-crucible.git", + "Remote Origin URL": "https://github.com/squid-protocol/language-crucible", "Last Code Integration Date": "2026-08-30T08:52:00-04:00" } }, @@ -237,9 +237,9 @@ }, "health": { "avg_cognitive_load": 22.578, - "avg_safety_score": 45.662, + "avg_safety_score": 43.75, "avg_tech_debt": 29.91, - "avg_documentation": 7.916 + "avg_documentation": 7.984 }, "composition": { "markdown": { @@ -410,7 +410,7 @@ "jcl": { "files": 185, "loc": 5837, - "impact": 903.9400000000007 + "impact": 916.9400000000007 }, "kotlin": { "files": 5, @@ -1152,20 +1152,20 @@ }, "jcl/cics-genapp": { "file_count": 30, - "total_mass": 261.84, + "total_mass": 263.84, "avg_exposures": { "cognitive_load": 0.0, - "safety_score": 50.57, + "safety_score": 8.22, "tech_debt": 56.01, - "verification": 2.28, - "api_exposure": 0.0, + "verification": 2.27, + "api_exposure": 0.21, "concurrency": 0.0, "state_flux": 0.34, "dead_code": 0.0, "spec_match": 96.67, "stability": 48.33, "churn": 0.0, - "documentation": 0.0, + "documentation": 0.79, "secrets_risk": 0.0 } }, @@ -5012,7 +5012,7 @@ "total_mass": 15.76, "avg_exposures": { "cognitive_load": 0.0, - "safety_score": 71.72, + "safety_score": 46.1, "tech_debt": 53.79, "verification": 2.34, "api_exposure": 0.0, @@ -5028,20 +5028,20 @@ }, "jcl/cics-banking-sample-application-cbsa": { "file_count": 99, - "total_mass": 321.88, + "total_mass": 325.88, "avg_exposures": { "cognitive_load": 0.0, - "safety_score": 45.62, + "safety_score": 30.07, "tech_debt": 47.76, "verification": 2.33, - "api_exposure": 1.3, + "api_exposure": 1.43, "concurrency": 0.0, "state_flux": 1.17, "dead_code": 3.07, "spec_match": 98.99, "stability": 50.0, "churn": 0.0, - "documentation": 5.38, + "documentation": 5.98, "secrets_risk": 0.0 } }, @@ -5050,9 +5050,9 @@ "total_mass": 3.12, "avg_exposures": { "cognitive_load": 0.0, - "safety_score": 76.85, + "safety_score": 0.0, "tech_debt": 73.11, - "verification": 2.34, + "verification": 2.33, "api_exposure": 0.0, "concurrency": 0.0, "state_flux": 0.0, @@ -5066,39 +5066,39 @@ }, "jcl/cobol-programming-course": { "file_count": 43, - "total_mass": 204.5, + "total_mass": 210.5, "avg_exposures": { "cognitive_load": 2.47, - "safety_score": 61.88, + "safety_score": 10.65, "tech_debt": 61.57, - "verification": 2.37, - "api_exposure": 0.0, + "verification": 2.36, + "api_exposure": 0.49, "concurrency": 0.0, "state_flux": 0.0, "dead_code": 0.0, "spec_match": 100.0, "stability": 50.0, "churn": 0.0, - "documentation": 0.0, + "documentation": 2.19, "secrets_risk": 0.0 } }, "jcl/zopeneditor-sample": { "file_count": 10, - "total_mass": 97.88, + "total_mass": 98.88, "avg_exposures": { "cognitive_load": 0.0, - "safety_score": 79.56, + "safety_score": 57.6, "tech_debt": 79.42, - "verification": 2.37, - "api_exposure": 0.0, + "verification": 2.35, + "api_exposure": 0.35, "concurrency": 0.0, "state_flux": 38.85, "dead_code": 0.0, "spec_match": 90.0, "stability": 50.0, "churn": 0.0, - "documentation": 0.0, + "documentation": 1.19, "secrets_risk": 0.0 } }, @@ -346598,9 +346598,9 @@ "Identity Proof": "Single Indicator (Ext: .js)" }, "2. Topological Coordinates": { - "X": 3101.32, + "X": 3101.8, "Y": -96.08, - "Z": -9884.12 + "Z": -9885.58 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -347512,9 +347512,9 @@ "Identity Proof": "Single Indicator (Ext: .js)" }, "2. Topological Coordinates": { - "X": 2747.2, + "X": 2747.68, "Y": -174.69, - "Z": -9333.16 + "Z": -9334.62 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -348960,9 +348960,9 @@ "Identity Proof": "Single Indicator (Ext: .js)" }, "2. Topological Coordinates": { - "X": 3072.92, + "X": 3073.4, "Y": -49.48, - "Z": -9615.31 + "Z": -9616.77 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -350692,9 +350692,9 @@ "Identity Proof": "Single Indicator (Ext: .js)" }, "2. Topological Coordinates": { - "X": 3356.44, + "X": 3356.92, "Y": 40.54, - "Z": -9275.17 + "Z": -9276.64 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -350860,9 +350860,9 @@ "Identity Proof": "Single Indicator (Ext: .ts)" }, "2. Topological Coordinates": { - "X": 2575.63, + "X": 2576.11, "Y": -244.18, - "Z": -9677.5 + "Z": -9678.97 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -443886,9 +443886,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": 7379.65, + "X": 7381.92, "Y": 165.91, - "Z": -8428.15 + "Z": -8430.57 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -444689,9 +444689,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": 6999.03, + "X": 7001.3, "Y": 265.38, - "Z": -7713.08 + "Z": -7715.5 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -445659,9 +445659,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": 6787.47, + "X": 6789.74, "Y": 225.18, - "Z": -7948.69 + "Z": -7951.11 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -445940,9 +445940,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": 7824.7, + "X": 7826.97, "Y": 134.51, - "Z": -8173.94 + "Z": -8176.36 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -446212,9 +446212,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": 7637.84, + "X": 7640.11, "Y": 311.63, - "Z": -7253.28 + "Z": -7255.7 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -446490,9 +446490,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": 7292.29, + "X": 7294.56, "Y": 257.91, - "Z": -7908.17 + "Z": -7910.59 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -447600,9 +447600,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": 7201.47, + "X": 7203.75, "Y": 404.61, - "Z": -7208.57 + "Z": -7210.99 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -447991,9 +447991,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": 3754.12, + "X": 3754.73, "Y": -127.57, - "Z": -9730.85 + "Z": -9732.2 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -448148,9 +448148,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": 3527.29, + "X": 3527.89, "Y": -76.36, - "Z": -9338.08 + "Z": -9339.43 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -449380,9 +449380,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": 4546.52, + "X": 4547.12, "Y": -154.94, - "Z": -9433.18 + "Z": -9434.54 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -450100,9 +450100,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": 4000.91, + "X": 4001.51, "Y": -115.21, - "Z": -9116.12 + "Z": -9117.47 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -451422,9 +451422,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": 4065.71, + "X": 4066.32, "Y": -150.26, - "Z": -9701.93 + "Z": -9703.29 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -452471,9 +452471,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": 3853.29, + "X": 3853.89, "Y": -147.74, - "Z": -8519.42 + "Z": -8520.78 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -452843,9 +452843,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": 3774.4, + "X": 3775.01, "Y": -155.51, - "Z": -8957.33 + "Z": -8958.69 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -454671,9 +454671,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": 4359.96, + "X": 4360.56, "Y": -127.18, - "Z": -8643.55 + "Z": -8644.9 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -586387,9 +586387,9 @@ "Identity Proof": "Single Indicator (Ext: .json)" }, "2. Topological Coordinates": { - "X": 5190.5, + "X": 5191.95, "Y": 237.38, - "Z": -9063.81 + "Z": -9066.58 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -586544,9 +586544,9 @@ "Identity Proof": "Single Indicator (Exact Match)" }, "2. Topological Coordinates": { - "X": 4395.86, + "X": 4397.3, "Y": 229.37, - "Z": -9470.98 + "Z": -9473.74 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -586702,9 +586702,9 @@ "Identity Proof": "Single Indicator (Ext: .ts)" }, "2. Topological Coordinates": { - "X": 4895.15, + "X": 4896.59, "Y": 292.43, - "Z": -9843.7 + "Z": -9846.46 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -588738,9 +588738,9 @@ "Identity Proof": "Single Indicator (Ext: .ts)" }, "2. Topological Coordinates": { - "X": 4901.07, + "X": 4902.51, "Y": 202.09, - "Z": -9501.06 + "Z": -9503.83 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -590472,9 +590472,9 @@ "Identity Proof": "Single Indicator (Ext: .ts)" }, "2. Topological Coordinates": { - "X": 4599.26, + "X": 4600.71, "Y": 227.35, - "Z": -9001.68 + "Z": -9004.44 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -644335,9 +644335,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 3515.9, + "X": 3516.45, "Y": 71.06, - "Z": -8331.43 + "Z": -8332.9 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -644543,9 +644543,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 2648.6, + "X": 2649.14, "Y": 152.18, - "Z": -7787.68 + "Z": -7789.15 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -644711,9 +644711,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 3252.91, + "X": 3253.45, "Y": 174.96, - "Z": -7676.21 + "Z": -7677.69 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -644868,9 +644868,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 3061.92, + "X": 3062.47, "Y": 89.43, - "Z": -8674.58 + "Z": -8676.05 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -645186,9 +645186,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 2925.56, + "X": 2926.11, "Y": 80.1, - "Z": -8860.62 + "Z": -8862.09 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -645354,9 +645354,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 3082.82, + "X": 3083.37, "Y": 118.21, - "Z": -8095.17 + "Z": -8096.64 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -645922,9 +645922,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 2490.11, + "X": 2490.66, "Y": 140.87, - "Z": -7952.01 + "Z": -7953.48 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -646120,9 +646120,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 3742.69, + "X": 3743.24, "Y": 118.51, - "Z": -8297.59 + "Z": -8299.07 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -646308,9 +646308,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 2908.16, + "X": 2908.71, "Y": 179.25, - "Z": -7607.1 + "Z": -7608.58 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -646526,9 +646526,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 3381.54, + "X": 3382.09, "Y": 110.37, - "Z": -8947.0 + "Z": -8948.48 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -646683,9 +646683,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 2794.72, + "X": 2795.26, "Y": 125.85, - "Z": -8076.3 + "Z": -8077.77 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -646921,9 +646921,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 2773.83, + "X": 2774.37, "Y": 129.36, - "Z": -8574.44 + "Z": -8575.91 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -647149,9 +647149,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 2412.33, + "X": 2412.88, "Y": 97.98, - "Z": -8659.68 + "Z": -8661.16 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -647317,9 +647317,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 3651.07, + "X": 3651.61, "Y": 99.96, - "Z": -8040.89 + "Z": -8042.36 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -647515,9 +647515,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 3334.01, + "X": 3334.56, "Y": 92.83, - "Z": -7742.97 + "Z": -7744.45 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -647683,9 +647683,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 2580.46, + "X": 2581.01, "Y": 110.01, - "Z": -8383.3 + "Z": -8384.77 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -647851,9 +647851,9 @@ "Identity Proof": "Metadata Anchor (COPYRIGHT)" }, "2. Topological Coordinates": { - "X": 3616.72, + "X": 3617.26, "Y": 137.93, - "Z": -7858.16 + "Z": -7859.63 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -651812,9 +651812,9 @@ "Identity Proof": "Single Indicator (Ext: .xml)" }, "2. Topological Coordinates": { - "X": 5543.46, + "X": 5545.09, "Y": 137.98, - "Z": -9183.57 + "Z": -9186.04 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -651969,9 +651969,9 @@ "Identity Proof": "Single Indicator (Ext: .abap)" }, "2. Topological Coordinates": { - "X": 5619.22, + "X": 5620.86, "Y": 260.73, - "Z": -8065.52 + "Z": -8067.98 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -652133,9 +652133,9 @@ "Identity Proof": "Single Indicator (Ext: .abap)" }, "2. Topological Coordinates": { - "X": 5478.25, + "X": 5479.88, "Y": 205.12, - "Z": -8549.89 + "Z": -8552.35 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -652761,9 +652761,9 @@ "Identity Proof": "Single Indicator (Ext: .abap)" }, "2. Topological Coordinates": { - "X": 5855.09, + "X": 5856.72, "Y": 149.3, - "Z": -9178.84 + "Z": -9181.3 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -653109,9 +653109,9 @@ "Identity Proof": "Single Indicator (Ext: .abap)" }, "2. Topological Coordinates": { - "X": 5304.66, + "X": 5306.29, "Y": 269.32, - "Z": -8739.61 + "Z": -8742.07 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -653367,9 +653367,9 @@ "Identity Proof": "Single Indicator (Ext: .abap)" }, "2. Topological Coordinates": { - "X": 5807.85, + "X": 5809.48, "Y": 186.55, - "Z": -8852.28 + "Z": -8854.75 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -653825,9 +653825,9 @@ "Identity Proof": "Single Indicator (Ext: .abap)" }, "2. Topological Coordinates": { - "X": 6070.91, + "X": 6072.55, "Y": 99.09, - "Z": -8310.04 + "Z": -8312.5 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -654113,9 +654113,9 @@ "Identity Proof": "Single Indicator (Ext: .abap)" }, "2. Topological Coordinates": { - "X": 6183.94, + "X": 6185.58, "Y": 55.62, - "Z": -8988.36 + "Z": -8990.82 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -732321,9 +732321,9 @@ "Identity Proof": "Prose Extension (.txt)" }, "2. Topological Coordinates": { - "X": 5618.7, + "X": 5620.92, "Y": -266.49, - "Z": -6269.74 + "Z": -6272.8 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -732478,9 +732478,9 @@ "Identity Proof": "Metadata Anchor (Jenkinsfile)" }, "2. Topological Coordinates": { - "X": 4796.02, + "X": 4798.24, "Y": -119.0, - "Z": -6798.41 + "Z": -6801.46 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -732746,9 +732746,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 5016.27, + "X": 5018.5, "Y": -210.24, - "Z": -5888.26 + "Z": -5891.32 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -732905,9 +732905,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4318.96, + "X": 4321.19, "Y": -45.97, - "Z": -6583.66 + "Z": -6586.71 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -733067,9 +733067,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 5469.74, + "X": 5471.96, "Y": -135.16, - "Z": -6935.75 + "Z": -6938.81 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -733227,9 +733227,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4459.0, + "X": 4461.22, "Y": 165.94, - "Z": -7444.17 + "Z": -7447.22 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -733384,9 +733384,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 5130.05, + "X": 5132.27, "Y": 15.44, - "Z": -7210.8 + "Z": -7213.86 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -733545,9 +733545,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 5251.87, + "X": 5254.09, "Y": -40.13, - "Z": -6979.22 + "Z": -6982.28 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -733708,9 +733708,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4557.46, + "X": 4559.68, "Y": 65.17, - "Z": -7024.03 + "Z": -7027.08 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -733869,9 +733869,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4193.16, + "X": 4195.38, "Y": 73.84, - "Z": -6997.01 + "Z": -7000.06 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -734028,9 +734028,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 5370.26, + "X": 5372.48, "Y": -264.76, - "Z": -6211.29 + "Z": -6214.35 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -734185,9 +734185,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4025.84, + "X": 4028.06, "Y": -11.64, - "Z": -6430.3 + "Z": -6433.35 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -734342,9 +734342,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4579.71, + "X": 4581.93, "Y": -115.23, - "Z": -6529.55 + "Z": -6532.61 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -734499,9 +734499,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4663.69, + "X": 4665.92, "Y": -198.24, - "Z": -6019.58 + "Z": -6022.64 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -734661,9 +734661,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4359.89, + "X": 4362.11, "Y": -229.14, - "Z": -6147.45 + "Z": -6150.51 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -734820,9 +734820,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4130.54, + "X": 4132.76, "Y": -188.39, - "Z": -6122.76 + "Z": -6125.82 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -734979,9 +734979,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 5101.42, + "X": 5103.64, "Y": -223.34, - "Z": -6433.75 + "Z": -6436.81 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -735138,9 +735138,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4268.55, + "X": 4270.77, "Y": -112.82, - "Z": -6301.9 + "Z": -6304.96 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -735295,9 +735295,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 5412.54, + "X": 5414.76, "Y": -133.35, - "Z": -6434.94 + "Z": -6438.0 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -735454,9 +735454,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4809.51, + "X": 4811.73, "Y": -20.86, - "Z": -7111.88 + "Z": -7114.94 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -735611,9 +735611,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4990.24, + "X": 4992.46, "Y": 96.15, - "Z": -7351.88 + "Z": -7354.93 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -735768,9 +735768,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 5642.46, + "X": 5644.68, "Y": -176.74, - "Z": -6543.93 + "Z": -6546.99 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -735925,9 +735925,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 5274.56, + "X": 5276.78, "Y": -255.85, - "Z": -5979.01 + "Z": -5982.07 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -736082,9 +736082,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4466.04, + "X": 4468.26, "Y": -266.15, - "Z": -5648.6 + "Z": -5651.65 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -736241,9 +736241,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4739.9, + "X": 4742.12, "Y": 52.17, - "Z": -7333.78 + "Z": -7336.83 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -736400,9 +736400,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 5424.34, + "X": 5426.56, "Y": 9.79, - "Z": -7115.05 + "Z": -7118.11 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -736559,9 +736559,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 3950.48, + "X": 3952.7, "Y": 80.71, - "Z": -6890.78 + "Z": -6893.84 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -736716,9 +736716,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4814.53, + "X": 4816.75, "Y": -231.16, - "Z": -5913.63 + "Z": -5916.69 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -736875,9 +736875,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4322.66, + "X": 4324.88, "Y": 78.77, - "Z": -7390.11 + "Z": -7393.16 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -737032,9 +737032,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 5702.02, + "X": 5704.24, "Y": -20.68, - "Z": -6977.27 + "Z": -6980.33 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -758533,9 +758533,9 @@ "Identity Proof": "Metadata Anchor (COPYRIGHT)" }, "2. Topological Coordinates": { - "X": 3963.52, + "X": 3964.04, "Y": 165.09, - "Z": -10504.2 + "Z": -10505.53 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -758690,9 +758690,9 @@ "Identity Proof": "Single Indicator (Shebang)" }, "2. Topological Coordinates": { - "X": 3947.59, + "X": 3948.11, "Y": 184.98, - "Z": -10127.98 + "Z": -10129.3 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -759055,9 +759055,9 @@ "Identity Proof": "Single Indicator (Shebang)" }, "2. Topological Coordinates": { - "X": 3726.94, + "X": 3727.47, "Y": 160.01, - "Z": -9794.37 + "Z": -9795.7 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -793743,24 +793743,24 @@ } }, "jcl/cics-banking-sample-application-cbsa": { - "Directory Group Magnitude": 321.88, + "Directory Group Magnitude": 325.88, "File Count": 99, "Ecosystem Fingerprint (Archetypes)": { "Unclassified": "100.0%" }, "Average Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "45.62%", + "Error & Exception Exposure": "30.07%", "Tech Debt Exposure": "47.76%", "Testing Exposure": "2.33%", - "API Exposure": "1.3%", + "API Exposure": "1.43%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "1.17%", "Commented Logic Exposure": "3.07%", "Specification Exposure": "98.99%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "5.38%", + "Documentation Exposure": "5.98%", "Hardcoded Payload Artifacts": "0.0%" }, "Files": { @@ -794290,9 +794290,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 188.46, - "Y": 52.61, - "Z": -1700.58 + "X": 70.11, + "Y": 59.34, + "Z": -2692.06 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -794314,9 +794314,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "89.5%", + "Error & Exception Exposure": "73.11%", "Tech Debt Exposure": "96.64%", - "Testing Exposure": "2.39%", + "Testing Exposure": "2.37%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -794368,7 +794368,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 3, + "High-Risk Execution Commands": 1, "I/O and Network Boundaries": 25, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -794451,7 +794451,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 3, + "Sec Tainted Injection": 1, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -794483,9 +794483,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -193.46, - "Y": 52.39, - "Z": -2438.15 + "X": -194.39, + "Y": 52.41, + "Z": -2438.32 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -794497,7 +794497,7 @@ "Total LOC": 57, "Coding LOC": 52, "Documentation LOC": 4, - "Structural Magnitude": 8.64, + "Structural Magnitude": 9.64, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -794507,17 +794507,17 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "73.11%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "70.38%", - "Testing Exposure": "2.39%", - "API Exposure": "0.0%", + "Testing Exposure": "2.38%", + "API Exposure": "3.41%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", + "Documentation Exposure": "16.41%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -794551,9 +794551,9 @@ "Class/Entity Declarations": 0, "Defensive Programming Constructs": 1, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 43, - "Exposed API / Public Exports": 0, + "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -794634,7 +794634,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 2, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -797821,7 +797821,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -797948,9 +797948,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.33%", + "Testing Exposure": "2.32%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -797982,7 +797982,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 10, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -798065,7 +798065,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -798096,9 +798096,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 577.65, - "Y": 58.05, - "Z": -1824.65 + "X": 578.22, + "Y": 58.03, + "Z": -1823.91 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -798110,7 +798110,7 @@ "Total LOC": 59, "Coding LOC": 53, "Documentation LOC": 5, - "Structural Magnitude": 8.66, + "Structural Magnitude": 9.66, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -798120,17 +798120,17 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "72.84%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "69.04%", - "Testing Exposure": "2.39%", - "API Exposure": "0.0%", + "Testing Exposure": "2.38%", + "API Exposure": "3.39%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", + "Documentation Exposure": "15.73%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -798164,9 +798164,9 @@ "Class/Entity Declarations": 0, "Defensive Programming Constructs": 1, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 43, - "Exposed API / Public Exports": 0, + "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -798247,7 +798247,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 2, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -798289,9 +798289,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 351.16, + "X": 351.21, "Y": 47.47, - "Z": -2728.78 + "Z": -2729.28 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -798303,7 +798303,7 @@ "Total LOC": 183, "Coding LOC": 108, "Documentation LOC": 74, - "Structural Magnitude": 17.26, + "Structural Magnitude": 18.26, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -798313,17 +798313,17 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "63.7%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "86.97%", - "Testing Exposure": "2.37%", - "API Exposure": "0.0%", + "Testing Exposure": "2.36%", + "API Exposure": "2.66%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "26.25%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", + "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -798407,9 +798407,9 @@ "Class/Entity Declarations": 0, "Defensive Programming Constructs": 5, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 2, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 115, - "Exposed API / Public Exports": 0, + "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 4, "Structured Documentation Blocks": 0, @@ -798490,7 +798490,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 7, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -800345,7 +800345,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -800472,9 +800472,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "86.83%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.36%", + "Testing Exposure": "2.33%", "API Exposure": "5.59%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -800516,7 +800516,7 @@ "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 2, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 5, "Exposed API / Public Exports": 2, "State Mutations / Variable Reassignments": 0, @@ -800599,7 +800599,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 2, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -800697,7 +800697,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -800868,7 +800868,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -801039,7 +801039,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -801166,9 +801166,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "86.83%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.36%", + "Testing Exposure": "2.33%", "API Exposure": "5.59%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -801210,7 +801210,7 @@ "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 2, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 5, "Exposed API / Public Exports": 2, "State Mutations / Variable Reassignments": 0, @@ -801293,7 +801293,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 2, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -801347,9 +801347,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.33%", + "Testing Exposure": "2.31%", "API Exposure": "3.53%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -801381,7 +801381,7 @@ "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 1, "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 0, @@ -801464,7 +801464,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -801517,9 +801517,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.33%", + "Testing Exposure": "2.31%", "API Exposure": "3.53%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -801551,7 +801551,7 @@ "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 1, "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 0, @@ -801634,7 +801634,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -801687,9 +801687,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.33%", + "Testing Exposure": "2.31%", "API Exposure": "3.53%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -801721,7 +801721,7 @@ "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 1, "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 0, @@ -801804,7 +801804,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -801857,9 +801857,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.33%", + "Testing Exposure": "2.31%", "API Exposure": "3.53%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -801891,7 +801891,7 @@ "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 1, "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 0, @@ -801974,7 +801974,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -802027,9 +802027,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "86.83%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.36%", + "Testing Exposure": "2.33%", "API Exposure": "5.59%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -802071,7 +802071,7 @@ "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 2, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 5, "Exposed API / Public Exports": 2, "State Mutations / Variable Reassignments": 0, @@ -802154,7 +802154,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 2, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -802208,9 +802208,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.33%", + "Testing Exposure": "2.31%", "API Exposure": "3.53%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -802242,7 +802242,7 @@ "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 1, "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 0, @@ -802325,7 +802325,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -802378,9 +802378,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.33%", + "Testing Exposure": "2.31%", "API Exposure": "3.53%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -802412,7 +802412,7 @@ "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 1, "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 0, @@ -802495,7 +802495,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -802548,9 +802548,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "86.83%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.36%", + "Testing Exposure": "2.33%", "API Exposure": "5.59%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -802592,7 +802592,7 @@ "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 2, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 5, "Exposed API / Public Exports": 2, "State Mutations / Variable Reassignments": 0, @@ -802675,7 +802675,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 2, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -802729,9 +802729,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "86.83%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.36%", + "Testing Exposure": "2.33%", "API Exposure": "5.59%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -802773,7 +802773,7 @@ "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 2, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 5, "Exposed API / Public Exports": 2, "State Mutations / Variable Reassignments": 0, @@ -802856,7 +802856,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 2, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -802910,9 +802910,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "86.83%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.36%", + "Testing Exposure": "2.33%", "API Exposure": "5.59%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -802954,7 +802954,7 @@ "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 2, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 5, "Exposed API / Public Exports": 2, "State Mutations / Variable Reassignments": 0, @@ -803037,7 +803037,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 2, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -803091,9 +803091,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "78.34%", + "Error & Exception Exposure": "64.57%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.33%", + "Testing Exposure": "2.32%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "16.8%", @@ -803125,7 +803125,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 1, @@ -803135,7 +803135,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -803317,7 +803317,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -803488,7 +803488,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -803659,7 +803659,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -803830,7 +803830,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -804001,7 +804001,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -804172,7 +804172,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -804343,7 +804343,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -804514,7 +804514,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -804685,7 +804685,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -804866,7 +804866,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -805209,7 +805209,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 9, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -805719,7 +805719,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -805890,7 +805890,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -806061,7 +806061,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -806232,7 +806232,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -806403,7 +806403,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -806574,7 +806574,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -806745,7 +806745,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -806916,7 +806916,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -807087,7 +807087,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -807258,7 +807258,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -807429,7 +807429,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -807600,7 +807600,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -807771,7 +807771,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -807942,7 +807942,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -809139,7 +809139,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 2, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -809243,9 +809243,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 55.05, - "Y": 60.88, - "Z": -2833.53 + "X": 173.12, + "Y": 54.15, + "Z": -1841.05 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -809257,7 +809257,7 @@ "Total LOC": 50, "Coding LOC": 43, "Documentation LOC": 6, - "Structural Magnitude": 7.46, + "Structural Magnitude": 8.46, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -809267,17 +809267,17 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "86.83%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "99.91%", - "Testing Exposure": "2.41%", - "API Exposure": "0.0%", + "Testing Exposure": "2.38%", + "API Exposure": "3.53%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", + "Documentation Exposure": "15.3%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -809331,9 +809331,9 @@ "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 2, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 28, - "Exposed API / Public Exports": 0, + "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -809367,7 +809367,7 @@ "Bitwise Operations": 0, "Thread Synchronization Locks": 4, "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, + "Resource Deallocation & Cleanup": 2, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, @@ -809414,7 +809414,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 2, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -809639,9 +809639,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.33%", + "Testing Exposure": "2.32%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -809673,7 +809673,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 7, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -809756,7 +809756,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -809810,9 +809810,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.33%", + "Testing Exposure": "2.32%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -809844,7 +809844,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 7, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -809927,7 +809927,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -827718,7 +827718,7 @@ } }, "jcl/cics-genapp": { - "Directory Group Magnitude": 261.84, + "Directory Group Magnitude": 263.84, "File Count": 30, "Ecosystem Fingerprint (Archetypes)": { "Unclassified": "96.7%", @@ -827726,17 +827726,17 @@ }, "Average Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "50.57%", + "Error & Exception Exposure": "8.22%", "Tech Debt Exposure": "56.01%", - "Testing Exposure": "2.28%", - "API Exposure": "0.0%", + "Testing Exposure": "2.27%", + "API Exposure": "0.21%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.34%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "96.67%", "Instability Exposure": "48.33%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", + "Documentation Exposure": "0.79%", "Hardcoded Payload Artifacts": "0.0%" }, "Files": { @@ -827938,9 +827938,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "91.04%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "98.89%", - "Testing Exposure": "2.41%", + "Testing Exposure": "2.37%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -828022,7 +828022,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 2, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 4, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 20, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -828105,7 +828105,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 6, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -828156,9 +828156,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "91.68%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "99.33%", - "Testing Exposure": "2.42%", + "Testing Exposure": "2.38%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -828220,7 +828220,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 1, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 3, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 34, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -828256,7 +828256,7 @@ "Bitwise Operations": 0, "Thread Synchronization Locks": 3, "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, + "Resource Deallocation & Cleanup": 2, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, @@ -828303,7 +828303,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 4, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -828357,7 +828357,7 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "62.39%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "21.39%", "Testing Exposure": "2.32%", "API Exposure": "0.0%", @@ -828391,7 +828391,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 8, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -828474,7 +828474,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -828525,7 +828525,7 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "58.39%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "15.03%", "Testing Exposure": "2.31%", "API Exposure": "0.0%", @@ -828559,7 +828559,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 8, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -828642,7 +828642,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -828693,7 +828693,7 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "57.24%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "13.62%", "Testing Exposure": "2.31%", "API Exposure": "0.0%", @@ -828727,7 +828727,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 8, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -828810,7 +828810,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -828861,9 +828861,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.34%", + "Testing Exposure": "2.33%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -828895,7 +828895,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 6, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -828978,7 +828978,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -829029,9 +829029,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.34%", + "Testing Exposure": "2.33%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -829063,7 +829063,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 6, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -829146,7 +829146,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -829173,9 +829173,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -4637.53, - "Y": 158.42, - "Z": 5415.23 + "X": -4637.69, + "Y": 158.43, + "Z": 5415.37 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -829187,7 +829187,7 @@ "Total LOC": 114, "Coding LOC": 96, "Documentation LOC": 18, - "Structural Magnitude": 42.92, + "Structural Magnitude": 43.92, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -829197,17 +829197,17 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "62.65%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "100.0%", - "Testing Exposure": "2.58%", - "API Exposure": "0.0%", + "Testing Exposure": "2.57%", + "API Exposure": "2.92%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", + "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -829561,9 +829561,9 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 2, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 49, - "Exposed API / Public Exports": 0, + "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -829597,7 +829597,7 @@ "Bitwise Operations": 0, "Thread Synchronization Locks": 2, "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, + "Resource Deallocation & Cleanup": 2, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, @@ -829644,7 +829644,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 3, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -829739,7 +829739,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -830165,7 +830165,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -830333,7 +830333,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -830457,9 +830457,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "84.74%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "99.33%", - "Testing Exposure": "2.39%", + "Testing Exposure": "2.37%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -830511,7 +830511,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 1, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 2, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 10, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -830594,7 +830594,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 2, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -830645,9 +830645,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "86.83%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "95.26%", - "Testing Exposure": "2.37%", + "Testing Exposure": "2.34%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -830689,7 +830689,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 2, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 4, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -830772,7 +830772,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 2, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -830823,9 +830823,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.33%", + "Testing Exposure": "2.32%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -830857,7 +830857,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 13, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -830940,7 +830940,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -830991,9 +830991,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.33%", + "Testing Exposure": "2.32%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -831025,7 +831025,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 6, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -831108,7 +831108,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -831135,9 +831135,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -4336.2, + "X": -4336.17, "Y": 160.29, - "Z": 4559.97 + "Z": 4559.63 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -831149,7 +831149,7 @@ "Total LOC": 39, "Coding LOC": 35, "Documentation LOC": 4, - "Structural Magnitude": 26.3, + "Structural Magnitude": 27.3, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -831159,17 +831159,17 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "100.0%", - "Testing Exposure": "2.66%", - "API Exposure": "0.0%", + "Testing Exposure": "2.64%", + "API Exposure": "3.53%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", + "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -831413,9 +831413,9 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 11, - "Exposed API / Public Exports": 0, + "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -831496,7 +831496,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -831547,9 +831547,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "71.36%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.36%", + "Testing Exposure": "2.35%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -831581,7 +831581,7 @@ "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 43, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -831664,7 +831664,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -831715,9 +831715,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.33%", + "Testing Exposure": "2.32%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -831749,7 +831749,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 6, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -831832,7 +831832,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -831883,9 +831883,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.34%", + "Testing Exposure": "2.33%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -831917,7 +831917,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 6, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -832000,7 +832000,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -832051,9 +832051,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "66.2%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "30.29%", - "Testing Exposure": "2.35%", + "Testing Exposure": "2.34%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -832085,7 +832085,7 @@ "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 51, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -832168,7 +832168,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -844106,9 +844106,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 5988.55, + "X": 5990.87, "Y": -237.07, - "Z": -7860.94 + "Z": -7863.74 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -844263,9 +844263,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 6717.43, + "X": 6719.75, "Y": -220.86, - "Z": -7446.85 + "Z": -7449.65 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -844420,9 +844420,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 5655.86, + "X": 5658.18, "Y": -230.93, - "Z": -7304.03 + "Z": -7306.83 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -844577,9 +844577,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 5597.39, + "X": 5599.71, "Y": -231.03, - "Z": -7701.48 + "Z": -7704.28 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -844745,9 +844745,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 6068.24, + "X": 6070.56, "Y": -193.38, - "Z": -7168.45 + "Z": -7171.25 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -844902,9 +844902,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 6915.45, + "X": 6917.77, "Y": -200.35, - "Z": -7587.29 + "Z": -7590.09 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -845070,9 +845070,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 6233.35, + "X": 6235.67, "Y": -189.0, - "Z": -7906.75 + "Z": -7909.55 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -845227,9 +845227,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 5983.26, + "X": 5985.58, "Y": -240.46, - "Z": -7404.85 + "Z": -7407.65 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -845384,9 +845384,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 6231.66, + "X": 6233.98, "Y": -208.54, - "Z": -7522.33 + "Z": -7525.13 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -845541,9 +845541,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 5776.22, + "X": 5778.53, "Y": -209.72, - "Z": -7602.48 + "Z": -7605.28 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -845698,9 +845698,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 6470.88, + "X": 6473.2, "Y": -203.73, - "Z": -7067.52 + "Z": -7070.32 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -845855,9 +845855,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 6623.41, + "X": 6625.73, "Y": -223.68, - "Z": -7947.86 + "Z": -7950.66 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -846012,9 +846012,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 6456.61, + "X": 6458.93, "Y": -203.78, - "Z": -8172.85 + "Z": -8175.65 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -846190,9 +846190,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 5832.5, + "X": 5834.82, "Y": -185.31, - "Z": -6885.37 + "Z": -6888.17 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -846358,9 +846358,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 6393.56, + "X": 6395.88, "Y": -205.22, - "Z": -6770.06 + "Z": -6772.86 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -853267,24 +853267,24 @@ } }, "jcl/cobol-programming-course": { - "Directory Group Magnitude": 204.5, + "Directory Group Magnitude": 210.5, "File Count": 43, "Ecosystem Fingerprint (Archetypes)": { "Unclassified": "100.0%" }, "Average Risk Exposures": { "Cognitive Load Exposure": "2.47%", - "Error & Exception Exposure": "61.88%", + "Error & Exception Exposure": "10.65%", "Tech Debt Exposure": "61.57%", - "Testing Exposure": "2.37%", - "API Exposure": "0.0%", + "Testing Exposure": "2.36%", + "API Exposure": "0.49%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", + "Documentation Exposure": "2.19%", "Hardcoded Payload Artifacts": "0.0%" }, "Files": { @@ -853301,9 +853301,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3457.91, - "Y": -255.4, - "Z": -6219.95 + "X": 2779.65, + "Y": -230.33, + "Z": -6611.87 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -853325,9 +853325,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "4.17%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "95.26%", - "Testing Exposure": "2.39%", + "Testing Exposure": "2.37%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -853369,7 +853369,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 8, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -853452,7 +853452,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -853481,9 +853481,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3086.08, - "Y": -336.99, - "Z": -5892.34 + "X": 3086.21, + "Y": -337.15, + "Z": -5892.31 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -853505,9 +853505,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "4.17%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.38%", + "Testing Exposure": "2.37%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -853549,7 +853549,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 11, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -853632,7 +853632,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -853662,9 +853662,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 2960.33, - "Y": -126.12, - "Z": -6759.13 + "X": 2960.31, + "Y": -126.02, + "Z": -6760.3 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -853686,9 +853686,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "4.17%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.38%", + "Testing Exposure": "2.37%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -853730,7 +853730,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 11, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -853813,7 +853813,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -853843,9 +853843,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3714.79, - "Y": -161.91, - "Z": -6217.84 + "X": 3715.71, + "Y": -161.9, + "Z": -6218.21 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -853867,9 +853867,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "4.17%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.38%", + "Testing Exposure": "2.37%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -853911,7 +853911,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 11, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -853994,7 +853994,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -854024,9 +854024,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 2586.33, - "Y": -308.2, - "Z": -6119.61 + "X": 2586.02, + "Y": -308.31, + "Z": -6119.97 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -854048,9 +854048,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "4.17%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.38%", + "Testing Exposure": "2.37%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -854092,7 +854092,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 11, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -854175,7 +854175,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -854205,9 +854205,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3462.11, - "Y": -77.74, - "Z": -7006.69 + "X": 3462.68, + "Y": -77.58, + "Z": -7007.87 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -854229,9 +854229,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "4.17%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.38%", + "Testing Exposure": "2.37%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -854273,7 +854273,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 11, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -854356,7 +854356,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -854386,9 +854386,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3406.97, - "Y": -308.71, - "Z": -5923.56 + "X": 3407.47, + "Y": -308.83, + "Z": -5923.53 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -854410,9 +854410,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "4.17%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.38%", + "Testing Exposure": "2.37%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -854454,7 +854454,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 11, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -854537,7 +854537,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -854567,9 +854567,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 2632.18, - "Y": -208.16, - "Z": -6860.94 + "X": 2631.9, + "Y": -208.14, + "Z": -6861.87 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -854591,9 +854591,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "4.17%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.38%", + "Testing Exposure": "2.37%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -854635,7 +854635,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 11, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -854718,7 +854718,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -854748,9 +854748,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3823.15, - "Y": -81.1, - "Z": -6557.49 + "X": 3824.09, + "Y": -81.01, + "Z": -6558.22 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -854772,9 +854772,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "4.17%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.38%", + "Testing Exposure": "2.37%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -854816,7 +854816,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 11, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -854899,7 +854899,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -854929,9 +854929,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 2754.45, - "Y": -383.72, - "Z": -5742.93 + "X": 2754.37, + "Y": -383.88, + "Z": -5743.0 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -854953,9 +854953,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "4.17%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.38%", + "Testing Exposure": "2.37%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -854997,7 +854997,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 11, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -855080,7 +855080,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -855110,9 +855110,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3032.66, - "Y": -3.37, - "Z": -7017.91 + "X": 3032.86, + "Y": -3.24, + "Z": -7019.15 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -855134,9 +855134,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "4.17%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.38%", + "Testing Exposure": "2.37%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -855178,7 +855178,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 11, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -855261,7 +855261,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -855291,9 +855291,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3771.39, - "Y": -219.77, - "Z": -6028.76 + "X": 3772.2, + "Y": -219.81, + "Z": -6028.93 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -855315,9 +855315,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "4.17%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.38%", + "Testing Exposure": "2.37%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -855359,7 +855359,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 11, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -855442,7 +855442,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -855472,9 +855472,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 2433.69, - "Y": -308.45, - "Z": -6341.31 + "X": 2433.32, + "Y": -308.52, + "Z": -6341.89 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -855496,9 +855496,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "4.17%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.38%", + "Testing Exposure": "2.37%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -855540,7 +855540,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 11, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -855623,7 +855623,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -855653,9 +855653,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3389.66, - "Y": 13.35, - "Z": -7120.22 + "X": 3390.09, + "Y": 13.51, + "Z": -7121.45 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -855677,9 +855677,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "4.17%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.38%", + "Testing Exposure": "2.37%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -855721,7 +855721,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 10, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -855804,7 +855804,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -855833,9 +855833,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3645.0, - "Y": -310.9, - "Z": -5798.17 + "X": 3645.63, + "Y": -310.99, + "Z": -5798.2 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -855857,9 +855857,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "4.17%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.38%", + "Testing Exposure": "2.37%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -855901,7 +855901,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 10, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -855984,7 +855984,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -856013,9 +856013,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 2987.24, - "Y": -300.21, - "Z": -6351.61 + "X": 3228.94, + "Y": -153.47, + "Z": -6890.29 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -856037,9 +856037,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.21%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.44%", + "Testing Exposure": "2.43%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -856091,7 +856091,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 17, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -856174,7 +856174,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -856204,9 +856204,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3733.87, - "Y": -43.57, - "Z": -6872.75 + "X": 3734.63, + "Y": -43.42, + "Z": -6873.79 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -856228,9 +856228,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "4.17%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.38%", + "Testing Exposure": "2.37%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -856272,7 +856272,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 11, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -856355,7 +856355,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -856385,9 +856385,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3178.04, - "Y": -395.74, - "Z": -5752.82 + "X": 3178.32, + "Y": -395.89, + "Z": -5752.77 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -856409,9 +856409,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "4.17%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.38%", + "Testing Exposure": "2.37%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -856453,7 +856453,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 11, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -856536,7 +856536,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -856566,9 +856566,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 2448.14, - "Y": -392.97, - "Z": -5738.23 + "X": 2447.99, + "Y": -393.12, + "Z": -5738.35 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -856734,9 +856734,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 2384.44, - "Y": -132.97, - "Z": -7071.75 + "X": 4169.27, + "Y": -84.18, + "Z": -6542.34 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -856904,9 +856904,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3173.69, - "Y": 18.85, - "Z": -7521.37 + "X": 3173.99, + "Y": 19.0, + "Z": -7522.61 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -857072,9 +857072,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3709.34, - "Y": 57.21, - "Z": -7338.69 + "X": 3373.32, + "Y": -372.61, + "Z": -5609.04 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -857242,9 +857242,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3888.3, - "Y": -347.38, - "Z": -5559.8 + "X": 3889.04, + "Y": -347.45, + "Z": -5559.91 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -857410,9 +857410,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3370.11, - "Y": -393.28, - "Z": -5449.68 + "X": 2406.66, + "Y": -130.54, + "Z": -6994.31 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -857580,9 +857580,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3582.05, - "Y": -88.87, - "Z": -6698.42 + "X": 3582.89, + "Y": -88.73, + "Z": -6699.36 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -857604,9 +857604,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "4.17%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.38%", + "Testing Exposure": "2.37%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -857648,7 +857648,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 10, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -857731,7 +857731,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -857761,9 +857761,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 2245.73, - "Y": -320.15, - "Z": -6072.44 + "X": 3672.92, + "Y": 49.4, + "Z": -7087.44 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -857929,9 +857929,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3183.03, + "X": 3183.32, "Y": -207.64, - "Z": -6293.06 + "Z": -6293.65 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -857943,7 +857943,7 @@ "Total LOC": 61, "Coding LOC": 48, "Documentation LOC": 12, - "Structural Magnitude": 12.76, + "Structural Magnitude": 13.76, "Control Flow Ratio": "13.6%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -857953,17 +857953,17 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.21%", - "Error & Exception Exposure": "84.74%", + "Error & Exception Exposure": "73.66%", "Tech Debt Exposure": "95.26%", - "Testing Exposure": "2.47%", - "API Exposure": "0.0%", + "Testing Exposure": "2.45%", + "API Exposure": "3.36%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", + "Documentation Exposure": "11.98%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -858007,9 +858007,9 @@ "Class/Entity Declarations": 0, "Defensive Programming Constructs": 1, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 2, + "High-Risk Execution Commands": 1, "I/O and Network Boundaries": 33, - "Exposed API / Public Exports": 0, + "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -858043,7 +858043,7 @@ "Bitwise Operations": 0, "Thread Synchronization Locks": 2, "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, + "Resource Deallocation & Cleanup": 1, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, @@ -858090,7 +858090,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 3, + "Sec Tainted Injection": 1, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -858128,9 +858128,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 4120.28, - "Y": -44.86, - "Z": -6536.23 + "X": 2206.56, + "Y": -296.36, + "Z": -6238.7 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -858142,7 +858142,7 @@ "Total LOC": 18, "Coding LOC": 13, "Documentation LOC": 4, - "Structural Magnitude": 1.86, + "Structural Magnitude": 2.86, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -858155,14 +858155,14 @@ "Error & Exception Exposure": "76.85%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.33%", - "API Exposure": "0.0%", + "API Exposure": "3.53%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", + "Documentation Exposure": "16.56%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -858188,7 +858188,7 @@ "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 1, "I/O and Network Boundaries": 6, - "Exposed API / Public Exports": 0, + "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -858298,9 +858298,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 2320.73, - "Y": -192.82, - "Z": -6627.11 + "X": 2320.4, + "Y": -192.83, + "Z": -6627.91 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -858322,9 +858322,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "86.83%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.37%", + "Testing Exposure": "2.34%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -858366,7 +858366,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 2, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 11, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -858449,7 +858449,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 2, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -858482,9 +858482,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 4020.52, - "Y": -1.72, - "Z": -7116.97 + "X": 4021.33, + "Y": -1.58, + "Z": -7117.95 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -858506,9 +858506,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.33%", + "Testing Exposure": "2.31%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -858540,7 +858540,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 1, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -858623,7 +858623,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -858652,8 +858652,8 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 2821.44, - "Y": -425.42, + "X": 2821.48, + "Y": -425.58, "Z": -5628.4 }, "3. Architectural Profile": { @@ -858676,9 +858676,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "86.83%", + "Error & Exception Exposure": "76.85%", "Tech Debt Exposure": "95.26%", - "Testing Exposure": "2.37%", + "Testing Exposure": "2.36%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -858730,7 +858730,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 2, + "High-Risk Execution Commands": 1, "I/O and Network Boundaries": 9, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -858813,7 +858813,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 2, + "Sec Tainted Injection": 1, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -858843,9 +858843,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3983.23, - "Y": -259.36, - "Z": -5801.62 + "X": 3986.64, + "Y": -259.43, + "Z": -5800.6 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -858857,7 +858857,7 @@ "Total LOC": 17, "Coding LOC": 15, "Documentation LOC": 1, - "Structural Magnitude": 2.4, + "Structural Magnitude": 3.4, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -858867,17 +858867,17 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.34%", - "API Exposure": "0.0%", + "Testing Exposure": "2.32%", + "API Exposure": "3.53%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", + "Documentation Exposure": "18.61%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -858901,9 +858901,9 @@ "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 8, - "Exposed API / Public Exports": 0, + "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -858984,7 +858984,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -859014,9 +859014,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 2668.93, - "Y": -130.61, - "Z": -6847.61 + "X": 2668.79, + "Y": -130.54, + "Z": -6848.7 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -859038,9 +859038,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "4.17%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.38%", + "Testing Exposure": "2.37%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -859082,7 +859082,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 11, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -859165,7 +859165,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -859195,9 +859195,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3022.77, - "Y": -483.84, - "Z": -5339.65 + "X": 3022.95, + "Y": -484.0, + "Z": -5339.61 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -859363,9 +859363,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 2828.11, - "Y": -59.42, - "Z": -7305.03 + "X": 2827.28, + "Y": -58.84, + "Z": -7308.61 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -859377,7 +859377,7 @@ "Total LOC": 30, "Coding LOC": 25, "Documentation LOC": 4, - "Structural Magnitude": 2.7, + "Structural Magnitude": 3.7, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -859387,17 +859387,17 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.34%", - "API Exposure": "0.0%", + "Testing Exposure": "2.33%", + "API Exposure": "3.53%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", + "Documentation Exposure": "16.56%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -859421,9 +859421,9 @@ "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 10, - "Exposed API / Public Exports": 0, + "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -859504,7 +859504,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -859536,9 +859536,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 2761.85, - "Y": -178.28, - "Z": -6372.0 + "X": 3441.01, + "Y": -203.6, + "Z": -5980.03 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -859550,7 +859550,7 @@ "Total LOC": 39, "Coding LOC": 34, "Documentation LOC": 4, - "Structural Magnitude": 6.28, + "Structural Magnitude": 7.28, "Control Flow Ratio": "6.5%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -859560,17 +859560,17 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "3.86%", - "Error & Exception Exposure": "86.83%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.4%", - "API Exposure": "0.0%", + "Testing Exposure": "2.37%", + "API Exposure": "3.53%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", + "Documentation Exposure": "16.56%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -859604,9 +859604,9 @@ "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 2, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 20, - "Exposed API / Public Exports": 0, + "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -859640,7 +859640,7 @@ "Bitwise Operations": 0, "Thread Synchronization Locks": 2, "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, + "Resource Deallocation & Cleanup": 1, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, @@ -859687,7 +859687,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 2, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -859722,9 +859722,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 3176.68, - "Y": -106.18, - "Z": -6612.13 + "X": 2934.87, + "Y": -252.92, + "Z": -6074.97 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -859736,7 +859736,7 @@ "Total LOC": 51, "Coding LOC": 42, "Documentation LOC": 8, - "Structural Magnitude": 10.04, + "Structural Magnitude": 11.04, "Control Flow Ratio": "10.5%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -859746,17 +859746,17 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "4.49%", - "Error & Exception Exposure": "86.83%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.44%", - "API Exposure": "0.0%", + "Testing Exposure": "2.42%", + "API Exposure": "3.51%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", + "Documentation Exposure": "14.12%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -859800,9 +859800,9 @@ "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 2, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 26, - "Exposed API / Public Exports": 0, + "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -859836,7 +859836,7 @@ "Bitwise Operations": 0, "Thread Synchronization Locks": 2, "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, + "Resource Deallocation & Cleanup": 1, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, @@ -859883,7 +859883,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 2, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -859918,9 +859918,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 4014.75, - "Y": -74.61, - "Z": -6748.23 + "X": 4015.65, + "Y": -74.49, + "Z": -6749.09 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -860098,9 +860098,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 2564.41, - "Y": -10.51, - "Z": -7455.15 + "X": 2564.35, + "Y": -10.42, + "Z": -7456.3 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -860266,9 +860266,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 4258.91, - "Y": -142.13, - "Z": -6008.03 + "X": 4259.85, + "Y": -142.11, + "Z": -6008.45 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -860434,9 +860434,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 2097.76, - "Y": -274.62, - "Z": -6503.5 + "X": 2097.4, + "Y": -274.67, + "Z": -6504.16 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -860602,9 +860602,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 4024.6, - "Y": -161.07, - "Z": -6229.93 + "X": 4025.55, + "Y": -161.03, + "Z": -6230.43 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -860626,9 +860626,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "4.17%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.38%", + "Testing Exposure": "2.37%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -860670,7 +860670,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 11, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -860753,7 +860753,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -860783,9 +860783,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": 2459.76, - "Y": -379.41, - "Z": -5954.1 + "X": 2459.52, + "Y": -379.55, + "Z": -5954.33 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -860807,9 +860807,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "4.17%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.38%", + "Testing Exposure": "2.37%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -860851,7 +860851,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 11, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -860934,7 +860934,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -871671,24 +871671,24 @@ } }, "jcl/zopeneditor-sample": { - "Directory Group Magnitude": 97.88, + "Directory Group Magnitude": 98.88, "File Count": 10, "Ecosystem Fingerprint (Archetypes)": { "Unclassified": "100.0%" }, "Average Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "79.56%", + "Error & Exception Exposure": "57.6%", "Tech Debt Exposure": "79.42%", - "Testing Exposure": "2.37%", - "API Exposure": "0.0%", + "Testing Exposure": "2.35%", + "API Exposure": "0.35%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "38.85%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "90.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", + "Documentation Exposure": "1.19%", "Hardcoded Payload Artifacts": "0.0%" }, "Files": { @@ -871729,9 +871729,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "72.2%", + "Error & Exception Exposure": "60.09%", "Tech Debt Exposure": "82.41%", - "Testing Exposure": "2.35%", + "Testing Exposure": "2.34%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "22.73%", @@ -871773,7 +871773,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 1, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 24, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 2, @@ -871783,7 +871783,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 2, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -871809,7 +871809,7 @@ "Bitwise Operations": 0, "Thread Synchronization Locks": 7, "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, + "Resource Deallocation & Cleanup": 7, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, @@ -871856,7 +871856,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 2, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -871915,9 +871915,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "75.96%", + "Error & Exception Exposure": "62.08%", "Tech Debt Exposure": "93.64%", - "Testing Exposure": "2.35%", + "Testing Exposure": "2.34%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "29.1%", @@ -871959,7 +871959,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 1, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 20, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 2, @@ -871969,7 +871969,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 2, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -871995,7 +871995,7 @@ "Bitwise Operations": 0, "Thread Synchronization Locks": 5, "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, + "Resource Deallocation & Cleanup": 5, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, @@ -872042,7 +872042,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 2, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -872075,9 +872075,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -2095.78, - "Y": 31.78, - "Z": 9500.84 + "X": -1023.63, + "Y": 0.3, + "Z": 9468.29 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -872089,7 +872089,7 @@ "Total LOC": 52, "Coding LOC": 24, "Documentation LOC": 28, - "Structural Magnitude": 3.08, + "Structural Magnitude": 4.08, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -872099,17 +872099,17 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.34%", - "API Exposure": "0.0%", + "Testing Exposure": "2.33%", + "API Exposure": "3.49%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", + "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -872133,9 +872133,9 @@ "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 10, - "Exposed API / Public Exports": 0, + "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -872216,7 +872216,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -872305,7 +872305,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 3, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -872405,9 +872405,9 @@ "Identity Proof": "Single Indicator (Ext: .jcl)" }, "2. Topological Coordinates": { - "X": -1022.04, - "Y": -37.72, - "Z": 9538.94 + "X": -2092.98, + "Y": -6.37, + "Z": 9572.29 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -872473,7 +872473,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 2, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -872599,9 +872599,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "71.57%", + "Error & Exception Exposure": "59.76%", "Tech Debt Exposure": "79.79%", - "Testing Exposure": "2.35%", + "Testing Exposure": "2.34%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "21.87%", @@ -872643,7 +872643,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 1, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 24, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 2, @@ -872653,7 +872653,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 2, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -872679,7 +872679,7 @@ "Bitwise Operations": 0, "Thread Synchronization Locks": 7, "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, + "Resource Deallocation & Cleanup": 7, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, @@ -872726,7 +872726,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 2, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -872785,9 +872785,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "62.58%", "Tech Debt Exposure": "95.26%", - "Testing Exposure": "2.35%", + "Testing Exposure": "2.34%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "31.0%", @@ -872829,7 +872829,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 1, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 18, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 2, @@ -872839,7 +872839,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 2, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -872865,7 +872865,7 @@ "Bitwise Operations": 0, "Thread Synchronization Locks": 4, "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, + "Resource Deallocation & Cleanup": 4, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, @@ -872912,7 +872912,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 2, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -872968,9 +872968,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "95.49%", + "Error & Exception Exposure": "63.85%", "Tech Debt Exposure": "97.04%", - "Testing Exposure": "2.42%", + "Testing Exposure": "2.38%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "42.15%", @@ -873052,7 +873052,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 6, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 60, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 5, @@ -873062,7 +873062,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 5, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -873088,7 +873088,7 @@ "Bitwise Operations": 0, "Thread Synchronization Locks": 4, "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, + "Resource Deallocation & Cleanup": 2, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, @@ -873135,7 +873135,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 6, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -873201,9 +873201,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "97.34%", + "Error & Exception Exposure": "70.21%", "Tech Debt Exposure": "99.91%", - "Testing Exposure": "2.43%", + "Testing Exposure": "2.38%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "91.68%", @@ -873265,7 +873265,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 1, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 4, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 38, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 6, @@ -873275,7 +873275,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 6, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -873301,7 +873301,7 @@ "Bitwise Operations": 0, "Thread Synchronization Locks": 1, "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, + "Resource Deallocation & Cleanup": 1, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, @@ -873348,7 +873348,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 4, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -873411,9 +873411,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "98.39%", + "Error & Exception Exposure": "66.5%", "Tech Debt Exposure": "99.99%", - "Testing Exposure": "2.47%", + "Testing Exposure": "2.4%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "69.0%", @@ -873485,7 +873485,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 1, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 5, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 51, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 4, @@ -873495,7 +873495,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 4, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -873521,7 +873521,7 @@ "Bitwise Operations": 0, "Thread Synchronization Locks": 3, "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, + "Resource Deallocation & Cleanup": 1, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, @@ -873568,7 +873568,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 5, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -873633,9 +873633,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4689.51, + "X": 4691.11, "Y": -56.97, - "Z": -8157.99 + "Z": -8160.76 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -873790,9 +873790,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4273.53, + "X": 4275.13, "Y": -134.4, - "Z": -7600.26 + "Z": -7603.03 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -873962,9 +873962,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4654.86, + "X": 4656.46, "Y": -19.84, - "Z": -8957.79 + "Z": -8960.56 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -874134,9 +874134,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4505.91, + "X": 4507.51, "Y": -63.53, - "Z": -8045.17 + "Z": -8047.94 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -874291,9 +874291,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4749.39, + "X": 4750.99, "Y": -42.39, - "Z": -8602.81 + "Z": -8605.58 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -874448,9 +874448,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4978.91, + "X": 4980.51, "Y": -165.67, - "Z": -8012.43 + "Z": -8015.2 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -874605,9 +874605,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4111.12, + "X": 4112.72, "Y": -9.17, - "Z": -8429.22 + "Z": -8432.0 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -874773,9 +874773,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4298.81, + "X": 4300.41, "Y": -85.32, - "Z": -8262.73 + "Z": -8265.5 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -874930,9 +874930,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 5336.09, + "X": 5337.7, "Y": -155.33, - "Z": -8170.56 + "Z": -8173.34 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -875098,9 +875098,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4502.84, + "X": 4504.44, "Y": -43.71, - "Z": -8776.99 + "Z": -8779.76 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -875266,9 +875266,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 5219.11, + "X": 5220.71, "Y": -126.41, - "Z": -8122.68 + "Z": -8125.45 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -875434,9 +875434,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4567.53, + "X": 4569.13, "Y": -72.45, - "Z": -7702.47 + "Z": -7705.25 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -875628,9 +875628,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4172.16, + "X": 4173.76, "Y": -93.82, - "Z": -8113.56 + "Z": -8116.33 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -875799,9 +875799,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4962.28, + "X": 4963.88, "Y": -84.11, - "Z": -8661.41 + "Z": -8664.18 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -875970,9 +875970,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 5077.7, + "X": 5079.3, "Y": -65.26, - "Z": -8502.43 + "Z": -8505.2 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -876141,9 +876141,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4934.2, + "X": 4935.8, "Y": -166.2, - "Z": -7627.08 + "Z": -7629.86 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -876341,9 +876341,9 @@ "Identity Proof": "Single Indicator (Ext: .xml)" }, "2. Topological Coordinates": { - "X": 6610.06, + "X": 6612.2, "Y": 112.82, - "Z": -9067.19 + "Z": -9070.01 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -876498,9 +876498,9 @@ "Identity Proof": "Single Indicator (Ext: .xml)" }, "2. Topological Coordinates": { - "X": 6828.06, + "X": 6830.2, "Y": 160.61, - "Z": -8410.69 + "Z": -8413.5 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -876655,9 +876655,9 @@ "Identity Proof": "Single Indicator (Ext: .xml)" }, "2. Topological Coordinates": { - "X": 6129.16, + "X": 6131.3, "Y": 252.1, - "Z": -8730.79 + "Z": -8733.61 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -876812,9 +876812,9 @@ "Identity Proof": "Single Indicator (Ext: .cls)" }, "2. Topological Coordinates": { - "X": 6530.57, + "X": 6532.71, "Y": 135.41, - "Z": -8733.67 + "Z": -8736.49 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -877120,9 +877120,9 @@ "Identity Proof": "Single Indicator (Ext: .cls)" }, "2. Topological Coordinates": { - "X": 6912.47, + "X": 6914.61, "Y": 94.78, - "Z": -8960.05 + "Z": -8962.87 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -877308,9 +877308,9 @@ "Identity Proof": "Single Indicator (Ext: .cls)" }, "2. Topological Coordinates": { - "X": 6288.46, + "X": 6290.6, "Y": 231.79, - "Z": -8574.55 + "Z": -8577.37 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -884504,9 +884504,9 @@ "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": 5853.3, + "X": 5854.76, "Y": -300.32, - "Z": -9989.04 + "Z": -9991.46 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -884672,9 +884672,9 @@ "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": 5588.33, + "X": 5589.8, "Y": -225.58, - "Z": -9295.22 + "Z": -9297.64 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -884840,9 +884840,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 5775.51, + "X": 5776.98, "Y": -210.37, - "Z": -9492.38 + "Z": -9494.8 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -890104,9 +890104,9 @@ "Identity Proof": "Single Indicator (Ext: .hlo)" }, "2. Topological Coordinates": { - "X": 7466.25, + "X": 7468.31, "Y": -115.43, - "Z": -8877.44 + "Z": -8879.84 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -890261,9 +890261,9 @@ "Identity Proof": "Single Indicator (Ext: .hlo)" }, "2. Topological Coordinates": { - "X": 7478.9, + "X": 7480.97, "Y": -71.41, - "Z": -8731.2 + "Z": -8733.6 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -890418,9 +890418,9 @@ "Identity Proof": "Single Indicator (Ext: .hlo)" }, "2. Topological Coordinates": { - "X": 7242.32, + "X": 7244.38, "Y": -21.96, - "Z": -8555.29 + "Z": -8557.68 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -897310,9 +897310,9 @@ "Identity Proof": "Single Indicator (Ext: .go)" }, "2. Topological Coordinates": { - "X": 6432.56, + "X": 6434.42, "Y": 147.19, - "Z": -9406.71 + "Z": -9409.39 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -899206,7 +899206,7 @@ }, "Average Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "71.72%", + "Error & Exception Exposure": "46.1%", "Tech Debt Exposure": "53.79%", "Testing Exposure": "2.34%", "API Exposure": "0.0%", @@ -899502,7 +899502,7 @@ "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -899628,9 +899628,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.33%", + "Testing Exposure": "2.32%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -899662,7 +899662,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 2, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -899745,7 +899745,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -899977,9 +899977,9 @@ "Identity Proof": "Single Indicator (Ext: .proto)" }, "2. Topological Coordinates": { - "X": 8013.2, + "X": 8015.5, "Y": -23.25, - "Z": -8118.05 + "Z": -8120.4 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -906036,9 +906036,9 @@ "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": 2666.91, + "X": 2667.3, "Y": 287.86, - "Z": -9993.43 + "Z": -9994.83 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -906204,9 +906204,9 @@ "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": 2889.07, + "X": 2889.46, "Y": 208.99, - "Z": -10251.99 + "Z": -10253.4 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -907308,9 +907308,9 @@ }, "Average Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.34%", + "Testing Exposure": "2.33%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -907359,9 +907359,9 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "76.85%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.34%", + "Testing Exposure": "2.33%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -907393,7 +907393,7 @@ "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 2, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, @@ -907476,7 +907476,7 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 1, + "Sec Tainted Injection": 0, "Prompt Injection": 0, "Agentic Rce": 0, "Invisible Unicode Payload Smuggling": 0, @@ -914523,9 +914523,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": 3524.65, + "X": 3525.15, "Y": -80.09, - "Z": -10038.34 + "Z": -10039.78 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -915247,9 +915247,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": 5413.75, + "X": 5415.23, "Y": 139.72, - "Z": -9767.89 + "Z": -9770.59 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -915971,9 +915971,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": 7148.36, + "X": 7150.53, "Y": -122.51, - "Z": -8941.09 + "Z": -8943.84 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -921584,9 +921584,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": 4387.67, + "X": 4388.21, "Y": 27.26, - "Z": -10356.37 + "Z": -10357.66 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -922308,9 +922308,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": 6286.25, + "X": 6287.75, "Y": -166.67, - "Z": -9826.65 + "Z": -9829.0 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -923032,9 +923032,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": 7995.22, + "X": 7997.3, "Y": -156.25, - "Z": -8802.19 + "Z": -8804.5 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -928459,9 +928459,9 @@ "Identity Proof": "Single Indicator (Ext: .html)" }, "2. Topological Coordinates": { - "X": 4743.76, + "X": 4745.0, "Y": 252.02, - "Z": -9990.53 + "Z": -9993.17 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -928616,9 +928616,9 @@ "Identity Proof": "Single Indicator (Ext: .html)" }, "2. Topological Coordinates": { - "X": 4486.51, + "X": 4487.75, "Y": 281.75, - "Z": -9893.19 + "Z": -9895.83 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified",