diff --git a/docs/self_scan/tri_comparison_chart.svg b/docs/self_scan/tri_comparison_chart.svg index 9e192b77c..d2cca9fb6 100644 --- a/docs/self_scan/tri_comparison_chart.svg +++ b/docs/self_scan/tri_comparison_chart.svg @@ -104,22 +104,22 @@ assembly - -1114 + +1108 2878 -1114/1114 - -1088/2878 +1108/1108 + +1087/2878 G -2071§ +2067§ c diff --git a/docs/self_scan/tri_comparison_ledger.json b/docs/self_scan/tri_comparison_ledger.json index 174ceb860..27526e757 100644 --- a/docs/self_scan/tri_comparison_ledger.json +++ b/docs/self_scan/tri_comparison_ledger.json @@ -13,7 +13,7 @@ "investigated_at": "2026-08-20T00:00:00Z", "investigated_by": "Claude (Sonnet 5), direct investigation via tri-comparison-ledger-sweep", "language": "agc_assembly", - "last_reconciled_at": "2026-08-31T00:23:42Z", + "last_reconciled_at": "2026-08-31T00:50:58Z", "last_seen_count": 215, "last_seen_examples": [ { @@ -118,7 +118,7 @@ "investigated_at": "2026-08-20T00:00:00Z", "investigated_by": "Claude (Sonnet 5), direct investigation via tri-comparison-ledger-sweep", "language": "agc_assembly", - "last_reconciled_at": "2026-08-31T00:23:42Z", + "last_reconciled_at": "2026-08-31T00:50:58Z", "last_seen_count": 37, "last_seen_examples": [ { @@ -221,7 +221,7 @@ "investigated_at": "2026-08-20T22:17:39Z", "investigated_by": "Claude Sonnet 5, dispatched via tri-comparison-ledger-sweep (direct investigation, no Gemini dispatch needed -- root cause was immediately clear from source)", "language": "apex", - "last_reconciled_at": "2026-08-31T00:23:43Z", + "last_reconciled_at": "2026-08-31T00:50:59Z", "last_seen_count": 2, "last_seen_examples": [ { @@ -257,11 +257,11 @@ "gitgalaxy" ], "first_seen_at": "2026-08-18T22:44:15Z", - "investigated_at": "2026-08-27T00:00:00Z", + "investigated_at": "2026-08-31", "investigated_by": "Claude (Sonnet 5), direct investigation via tri-comparison-ledger-sweep", "language": "assembly", - "last_reconciled_at": "2026-08-31T00:23:46Z", - "last_seen_count": 1790, + "last_reconciled_at": "2026-08-31T00:51:01Z", + "last_seen_count": 1791, "last_seen_examples": [ { "file_path": "blst_generated_asm/add_mod_256-x86_64.s", @@ -348,7 +348,7 @@ "status": "validated", "still_reproduces": true, "symbol_type": "function", - "verdict": "Re-validated 2026-08-27 (same PR as the mirror shape). All 26 occurrences are ctags' generic Asm parser tagging line-start labels that are not subroutine entries; GitGalaxy correctly excludes every one, confirmed by reading corpus source for each. (1) Data-emission labels: `intro`/`error_message`/`commands`/`int_0x20` in bootos/os.asm (`db`/`dw` string and jump-table data), `A`/`B`/`C` in hellosilicon/matrixmultneon.s (`.short`/`.fill` matrices), `prtstr`/`getcreditcards`/`instr` (`.asciz`/`.ascii` strings). (2) Section / object markers in cosmopolitan/ape.S: `__ro`/`cstr`/`_gdt_end`/`sconf` (`.endobj`), `ape_loader` (`.incbin`), `ape_phdrs`/`ape_macho`/`ape_grub`/`ape_mz`/`apesh` (ELF/Mach-O/Multiboot/shell header data emitted via `.long`/`.ascii`), `_gdtr`/`_gdtrlo` (GDT register values), `ape_idata_idtend`/`ape_idata_iatend` (`.byte` terminators). (3) `.Lenv0`/`.Largv0` -- `.L`-prefixed GCC compiler-local labels `func_start`'s negative lookahead deliberately excludes. The four NASM local-label name-normalization cases from the earlier sample (`load_vec`/`loop`/`empty`/`find`) are gone: the reconciler now pairs them with GitGalaxy's dot-prefixed form. No GitGalaxy recall miss remains in this shape -- the #1949 `_slice_by_labels` cases were fixed and that issue is closed. ctags already pays for these in its own precision denominator (it alone claims them); no credit/debit adjustment applies -- there is no shared-consensus mistake to debit and nothing of GitGalaxy's to credit." + "verdict": "Re-validated 2026-08-31 after the corpus grew 3->16 folders (253 new files, PR #13). Same confirmed mechanism as the prior 2026-08-27 verdict (ctags' generic Asm parser tagging line-start tokens that are not subroutine entries; GitGalaxy correctly excludes every one), now confirmed at ~70x the sample size (1791 occurrences vs. 26) across every new folder, plus two NEW manifestations of the SAME underlying weakness the smaller corpus never exercised: (1) MACRO-INVOCATION-KEYWORD mistagging -- ctags tags the LITERAL macro name as if it were a label, not the real subroutine name inside it. Confirmed directly: NASM's own instruction-set self-test suite (nasm_testsuite/avx005.asm and siblings) uses a `%macro x 1+.nolist` wrapper invoked as bare `x OPCODE ...` on hundreds of lines with no colon anywhere -- `ctags -x --language-force=Asm` tags the word `x` as a 'label' up to 192 times in one file (confirmed via raw ctags run); cpm65_6502's `zproc NAME`/`zendproc` procedure- definition macro convention gets the identical treatment (`zproc`/`zendproc` themselves tagged as literal 'label' names, cpm65_6502/apps_devices.asm, 5 occurrences each) as does the `.label NAME` forward-declaration pseudo-op (tags the NAME as if `.label` itself were the definition, duplicating the real `zproc`-declared one). (2) BARE INSTRUCTION MNEMONIC mistagging on FASM-dialect files -- raspberrypi_baremetal's `format`/`include`/`code64` FASM-assembler directives desync ctags' line-start heuristic entirely, tagging ordinary indented instruction lines (`mov`, `add`, `ldr`, `ands`, `mrc`, ...) as repeated 'labels' (confirmed: x86_bare_metal/apm_shutdown.S tags `mov`x6/`int`x3/`xor`x2 with zero real labels present). GitGalaxy correctly excludes all of these -- its func_start regex requires an actual `name:` colon-terminated declaration head, which none of these forms have. No credit/debit: ctags already pays for these in its own precision denominator (it alone claims them); there is no shared-consensus mistake to debit and nothing of GitGalaxy's to credit." }, "assembly/function/existence/agree[gitgalaxy]_vs[ctags]": { "agreeing_tools": [ @@ -362,11 +362,11 @@ "ctags" ], "first_seen_at": "2026-08-18T22:44:15Z", - "investigated_at": "2026-08-27T00:00:00Z", + "investigated_at": "2026-08-31", "investigated_by": "Claude (Sonnet 5), direct investigation via tri-comparison-ledger-sweep", "language": "assembly", - "last_reconciled_at": "2026-08-31T00:23:46Z", - "last_seen_count": 26, + "last_reconciled_at": "2026-08-31T00:51:01Z", + "last_seen_count": 21, "last_seen_examples": [ { "file_path": "bootos/counter.asm", @@ -441,11 +441,11 @@ } }, { - "file_path": "freebsd_kernel_arch/amd64_amd64_kexec_tramp.S", - "name": "r11", + "file_path": "os_tutorial_x86/05-bootsector-functions-strings_boot_sect_print_hex.asm", + "name": "end", "readings": { "ctags": null, - "gitgalaxy": 46 + "gitgalaxy": 36 } } ], @@ -453,7 +453,7 @@ "status": "validated", "still_reproduces": true, "symbol_type": "function", - "verdict": "Re-validated 2026-08-27; down from 7 occurrences to 2 after two coordinated fixes in the same PR. Four of the original seven (`.load_vec`/`.loop`/`.empty`/`.find`, bootos/os.asm) were never a real disagreement: both tools found the identical label at the identical line, ctags' Asm parser just strips the leading `.` from NASM/GAS local labels while GitGalaxy keeps it verbatim -- `tri_comparison_reconcile.py` now normalizes a single leading dot before pairing, so these register as agreements. One (`ape.mbrpad`, cosmopolitan/ape.S:525) was a genuine GitGalaxy false positive -- a `.org`/`.endobj` MBR-padding object, not a subroutine -- now fixed by a `func_start` negative lookahead that rejects a label followed only by a pure data-emission / location-counter directive (the generic-assembly counterpart to agc_assembly's positive 'opcode must follow' lookahead). The remaining 2 (`.1`, `.2` in bootos/counter.asm:52,67) are real NASM numeric local CODE labels -- `.1:` opens a routine (`int 0x22` ...), `.2:` likewise (`mov [di],ax` ...) -- that Universal Ctags' Asm parser structurally cannot tag (a tag name must start with a letter). GitGalaxy is correct here and ctags has a confirmed structural limitation, not an open question -> credit_tools: [gitgalaxy]." + "verdict": "Re-validated 2026-08-31 after the corpus grew 3->16 folders; down from 26 to 21 occurrences -- 5 were a real, confirmed GitGalaxy engine defect, now FIXED (not just credited): assembly's own lexical_family ('line_exclusive') only ever recognized `;`/`#` line comments, but `.S` files are routed through the C preprocessor and routinely carry genuine `/* ... */` block comments (BSD/FreeBSD license headers, Emacs modelines, register-usage doc comments) that were never stripped at all -- func_start matched label-shaped text INSIDE the unstripped comment: `Result:` (linux_1_0_kernel/drivers_FPU-emu_reg_u_div.S, a stack-layout doc comment) and `r9:`/`r10:`/`r11:` (freebsd_kernel_arch/amd64_amd64_kexec_tramp.S, a register-usage doc comment). Fixed by adding a new `_strip_asm_block_comments` pre-processing pass in prism.py, run BEFORE `;`/`#` line-stripping (confirmed via direct corpus measurement, not assumed: 121 real `/* ... */` blocks in this corpus contain a bare `;`/`#` internally -- copyright prose, URLs, Emacs modelines -- so line-stripping first would truncate every one of those blocks at its first internal `;`/`#`, corrupting the search for the block's real closing `*/`; the reverse risk, a `;`/`#` comment containing an unclosed `/*`, was checked and found to occur zero times in this corpus). Verified: exactly 5 fewer func_start matches corpus-wide post-fix (1144 -> 1139), matching the confirmed count precisely; both golden masters re-blessed. The remaining 21 are all confirmed GitGalaxy-correct, ctags-structurally-can't, via two established mechanisms plus one newly-confirmed variant of the first: (1) NASM leading-dot local labels (`.loop`/`.find`/`.empty`/`.load_vec`/`.getgot`/`.setcs`/`.no_error`/`.disconnect_error`, bootos/os.asm + nasm_testsuite/aoutso.asm + x86_bare_metal/*, 8 occ) and numeric local labels (`.1`/`.2`, bootos/counter.asm, 2 occ) -- ctags strips the leading dot (normalized by the reconciler) or can't tag a name starting with a digit at all, same precedent as the prior verdict. (2) NEW: GAS's `funcname.localname:` dot-SCOPED local-label convention (NOT leading-dot -- the dot sits in the middle, scoping a jump target to its enclosing routine) -- `do_e820.jmpin`/`do_e820.e820lp`/`do_e820.e820f`/`do_e820.skipent`/`do_e820.notext`/`do_e820.failed` (x86_bare_metal/bios_detect_memory.S, 6 occ) and `seta20.1`/`seta20.2` (xv6_x86_kernel/bootasm.S, 2 occ) -- confirmed via raw ctags run: it tags the real top-level `do_e820` fine but zero of its six dotted sub-labels, a structural inability to parse a `.` inside a label name in this position, not a GitGalaxy over-match (GitGalaxy's own inclusion of these as separate satellites, rather than folding them into the enclosing routine, matches its existing, established policy for NASM leading-dot locals in bucket 1 -- consistent, not a new design question). (3) Real subroutines a `zproc`/custom-macro-heavy file declares via a genuine `name:` label that ctags' 'zproc'/'.label'-mistagging (see the sibling shape's verdict) causes it to miss entirely -- `skip`/`syntax_error`/`write_char`/`io_error`/`justprint` (cpm65_6502/apps_bedit.asm, 6 occ), `longjmp` (cosmopolitan_runtime/longjmp.S -- confirmed real via its `_longjmp:` sibling and `#ifdef __x86_64__` body), `end` (os_tutorial_x86 + x86_bare_metal/bios_pixel*.S, 3 occ). One residual, ACKNOWLEDGED false positive, not chased (single occurrence, narrow root cause): xv6_x86_kernel/usys.S's `name` -- `#define SYSCALL(name) \\\\n .globl name; \\\\n name: \\\\n ...`, a C-preprocessor macro TEMPLATE where `name` is a parameter, not a real label; func_start matches the literal `name:` inside the macro's own body text (a textual regex has no concept of preprocessor parameter substitution). Left in the credited shape's count since it's a single, narrow, low-value edge case (one occurrence in the whole corpus) against 20 confirmed-correct siblings -- documented here rather than silently absorbed into the credit, or chased for a fix disproportionate to its impact." }, "c/class/existence/agree[ctags]_vs[gitgalaxy,tree_sitter]": { "agreeing_tools": [ @@ -469,7 +469,7 @@ "investigated_at": "2026-08-19T00:00:00Z", "investigated_by": "Claude Sonnet 5 (resolved + fixed directly, no dispatch needed)", "language": "c", - "last_reconciled_at": "2026-08-31T00:23:52Z", + "last_reconciled_at": "2026-08-31T00:51:04Z", "last_seen_count": 23, "last_seen_examples": [ { @@ -583,7 +583,7 @@ "investigated_at": "2026-08-19T00:00:00Z", "investigated_by": "Gemini (dispatched via tri-comparison-ledger-sweep), confirmed by Claude Sonnet 5", "language": "c", - "last_reconciled_at": "2026-08-31T00:23:52Z", + "last_reconciled_at": "2026-08-31T00:51:04Z", "last_seen_count": 9, "last_seen_examples": [ { @@ -688,7 +688,7 @@ "investigated_at": "2026-08-19T00:00:00Z", "investigated_by": "Gemini (dispatched via tri-comparison-ledger-sweep), confirmed by Claude Sonnet 5", "language": "c", - "last_reconciled_at": "2026-08-31T00:23:52Z", + "last_reconciled_at": "2026-08-31T00:51:04Z", "last_seen_count": 525, "last_seen_examples": [ { @@ -802,7 +802,7 @@ "investigated_at": "2026-08-19T00:00:00Z", "investigated_by": "Claude Sonnet 5 (resolved directly, no dispatch needed) -- corrected after cross-referencing #1837", "language": "c", - "last_reconciled_at": "2026-08-31T00:23:52Z", + "last_reconciled_at": "2026-08-31T00:51:04Z", "last_seen_count": 1, "last_seen_examples": [ { @@ -835,7 +835,7 @@ "investigated_at": "2026-08-19T00:00:00Z", "investigated_by": "Claude Sonnet 5 (resolved + fixed directly, no dispatch needed)", "language": "c", - "last_reconciled_at": "2026-08-31T00:23:52Z", + "last_reconciled_at": "2026-08-31T00:51:04Z", "last_seen_count": 1, "last_seen_examples": [ { @@ -868,7 +868,7 @@ "investigated_at": "2026-08-19T00:00:00Z", "investigated_by": "Gemini (dispatched via tri-comparison-ledger-sweep), confirmed by Claude Sonnet 5", "language": "c", - "last_reconciled_at": "2026-08-31T00:23:52Z", + "last_reconciled_at": "2026-08-31T00:51:04Z", "last_seen_count": 13, "last_seen_examples": [ { @@ -985,7 +985,7 @@ "investigated_at": "2026-08-19T00:00:00Z", "investigated_by": "Claude Sonnet 5 (resolved directly, no dispatch needed)", "language": "c", - "last_reconciled_at": "2026-08-31T00:23:52Z", + "last_reconciled_at": "2026-08-31T00:51:04Z", "last_seen_count": 3, "last_seen_examples": [ { @@ -1036,7 +1036,7 @@ "investigated_at": "2026-08-19T00:00:00Z", "investigated_by": "Claude Sonnet 5 (resolved + fixed directly, no dispatch needed)", "language": "c", - "last_reconciled_at": "2026-08-31T00:23:52Z", + "last_reconciled_at": "2026-08-31T00:51:04Z", "last_seen_count": 7, "last_seen_examples": [ { @@ -1123,7 +1123,7 @@ "investigated_at": "2026-08-21T00:00:00Z", "investigated_by": "Claude Sonnet 5, dispatched via tri-comparison-ledger-sweep", "language": "c", - "last_reconciled_at": "2026-08-31T00:23:52Z", + "last_reconciled_at": "2026-08-31T00:51:04Z", "last_seen_count": 3, "last_seen_examples": [ { @@ -1176,7 +1176,7 @@ "investigated_at": "2026-08-19T00:00:00Z", "investigated_by": "Claude Sonnet 5 (resolved directly, no dispatch needed)", "language": "c", - "last_reconciled_at": "2026-08-31T00:23:52Z", + "last_reconciled_at": "2026-08-31T00:51:04Z", "last_seen_count": 4, "last_seen_examples": [ { @@ -1235,7 +1235,7 @@ "investigated_at": "2026-08-26T00:00:00Z", "investigated_by": "Claude (Sonnet 5), dispatched via tri-comparison-ledger-sweep", "language": "c", - "last_reconciled_at": "2026-08-31T00:23:52Z", + "last_reconciled_at": "2026-08-31T00:51:04Z", "last_seen_count": 17, "last_seen_examples": [ { @@ -1339,7 +1339,7 @@ "investigated_at": "2026-08-19T00:00:00Z", "investigated_by": "Gemini (dispatched via tri-comparison-ledger-sweep), confirmed by Claude Sonnet 5", "language": "c", - "last_reconciled_at": "2026-08-31T00:23:52Z", + "last_reconciled_at": "2026-08-31T00:51:04Z", "last_seen_count": 74, "last_seen_examples": [ { @@ -1452,7 +1452,7 @@ "investigated_at": "2026-08-26T00:00:00Z", "investigated_by": "Claude (Sonnet 5), dispatched via tri-comparison-ledger-sweep", "language": "c", - "last_reconciled_at": "2026-08-31T00:23:52Z", + "last_reconciled_at": "2026-08-31T00:51:04Z", "last_seen_count": 88, "last_seen_examples": [ { @@ -1557,7 +1557,7 @@ "investigated_at": "2026-08-19", "investigated_by": "gemini-3.1-pro-high (agy), dispatched via tri-comparison-ledger-sweep, self-corrected and reviewed by claude-sonnet-5", "language": "cobol", - "last_reconciled_at": "2026-08-31T00:24:13Z", + "last_reconciled_at": "2026-08-31T00:51:11Z", "last_seen_count": 6, "last_seen_examples": [ { @@ -1630,7 +1630,7 @@ "investigated_at": "2026-08-28", "investigated_by": "Claude (Sonnet 5), direct investigation via tri-comparison-ledger-sweep", "language": "cobol", - "last_reconciled_at": "2026-08-31T00:24:13Z", + "last_reconciled_at": "2026-08-31T00:51:11Z", "last_seen_count": 164, "last_seen_examples": [ { @@ -1733,7 +1733,7 @@ "investigated_at": "2026-08-28", "investigated_by": "Claude (Sonnet 5), direct investigation via tri-comparison-ledger-sweep", "language": "cobol", - "last_reconciled_at": "2026-08-31T00:24:13Z", + "last_reconciled_at": "2026-08-31T00:51:11Z", "last_seen_count": 3040, "last_seen_examples": [ { @@ -1838,7 +1838,7 @@ "investigated_at": "2026-08-30", "investigated_by": "Claude (Sonnet 5), direct investigation + fix (gitgalaxy#2480 follow-up)", "language": "cobol", - "last_reconciled_at": "2026-08-31T00:24:13Z", + "last_reconciled_at": "2026-08-31T00:51:11Z", "last_seen_count": 9, "last_seen_examples": [ { @@ -1934,7 +1934,7 @@ "investigated_at": "2026-08-21T00:00:00Z", "investigated_by": "Claude Sonnet 5, dispatched via tri-comparison-ledger-sweep", "language": "cpp", - "last_reconciled_at": "2026-08-31T00:24:18Z", + "last_reconciled_at": "2026-08-31T00:51:14Z", "last_seen_count": 2, "last_seen_examples": [ { @@ -1976,7 +1976,7 @@ "investigated_at": "2026-08-21T00:00:00Z", "investigated_by": "Claude Sonnet 5, dispatched via tri-comparison-ledger-sweep", "language": "cpp", - "last_reconciled_at": "2026-08-31T00:24:18Z", + "last_reconciled_at": "2026-08-31T00:51:14Z", "last_seen_count": 2, "last_seen_examples": [ { @@ -2018,7 +2018,7 @@ "investigated_at": "2026-08-21T00:00:00Z", "investigated_by": "Claude Sonnet 5, dispatched via tri-comparison-ledger-sweep", "language": "cpp", - "last_reconciled_at": "2026-08-31T00:24:18Z", + "last_reconciled_at": "2026-08-31T00:51:14Z", "last_seen_count": 84, "last_seen_examples": [ { @@ -2132,7 +2132,7 @@ "investigated_at": "2026-08-21T00:00:00Z", "investigated_by": "Claude Sonnet 5, dispatched via tri-comparison-ledger-sweep", "language": "cpp", - "last_reconciled_at": "2026-08-31T00:24:18Z", + "last_reconciled_at": "2026-08-31T00:51:14Z", "last_seen_count": 22, "last_seen_examples": [ { @@ -2246,7 +2246,7 @@ "investigated_at": "2026-08-21T00:00:00Z", "investigated_by": "Claude Sonnet 5, dispatched via tri-comparison-ledger-sweep", "language": "cpp", - "last_reconciled_at": "2026-08-31T00:24:18Z", + "last_reconciled_at": "2026-08-31T00:51:14Z", "last_seen_count": 2, "last_seen_examples": [ { @@ -2288,7 +2288,7 @@ "investigated_at": "2026-08-21T00:00:00Z", "investigated_by": "Claude Sonnet 5, dispatched via tri-comparison-ledger-sweep", "language": "cpp", - "last_reconciled_at": "2026-08-31T00:24:18Z", + "last_reconciled_at": "2026-08-31T00:51:14Z", "last_seen_count": 61, "last_seen_examples": [ { @@ -2402,7 +2402,7 @@ "investigated_at": "2026-08-21T00:00:00Z", "investigated_by": "Claude Sonnet 5, dispatched via tri-comparison-ledger-sweep", "language": "cpp", - "last_reconciled_at": "2026-08-31T00:24:18Z", + "last_reconciled_at": "2026-08-31T00:51:14Z", "last_seen_count": 1, "last_seen_examples": [ { @@ -2434,7 +2434,7 @@ "investigated_at": "2026-08-21T00:00:00Z", "investigated_by": "Claude Sonnet 5, dispatched via tri-comparison-ledger-sweep", "language": "cpp", - "last_reconciled_at": "2026-08-31T00:24:18Z", + "last_reconciled_at": "2026-08-31T00:51:14Z", "last_seen_count": 1, "last_seen_examples": [ { @@ -2465,7 +2465,7 @@ "investigated_at": "2026-08-26T00:00:00Z", "investigated_by": "Claude (Sonnet 5), dispatched via tri-comparison-ledger-sweep", "language": "cpp", - "last_reconciled_at": "2026-08-31T00:24:18Z", + "last_reconciled_at": "2026-08-31T00:51:14Z", "last_seen_count": 76, "last_seen_examples": [ { @@ -2569,7 +2569,7 @@ "investigated_at": "2026-08-21T00:00:00Z", "investigated_by": "Claude Sonnet 5, dispatched via tri-comparison-ledger-sweep", "language": "cpp", - "last_reconciled_at": "2026-08-31T00:24:18Z", + "last_reconciled_at": "2026-08-31T00:51:14Z", "last_seen_count": 14, "last_seen_examples": [ { @@ -2683,7 +2683,7 @@ "investigated_at": "2026-08-21T00:00:00Z", "investigated_by": "Claude Sonnet 5, dispatched via tri-comparison-ledger-sweep", "language": "cpp", - "last_reconciled_at": "2026-08-31T00:24:18Z", + "last_reconciled_at": "2026-08-31T00:51:14Z", "last_seen_count": 1, "last_seen_examples": [ { @@ -2716,7 +2716,7 @@ "investigated_at": "2026-08-21T00:00:00Z", "investigated_by": "Claude Sonnet 5, dispatched via tri-comparison-ledger-sweep", "language": "cpp", - "last_reconciled_at": "2026-08-31T00:24:18Z", + "last_reconciled_at": "2026-08-31T00:51:14Z", "last_seen_count": 30, "last_seen_examples": [ { @@ -2830,7 +2830,7 @@ "investigated_at": "2026-08-21T00:00:00Z", "investigated_by": "Claude Sonnet 5, dispatched via tri-comparison-ledger-sweep", "language": "cpp", - "last_reconciled_at": "2026-08-31T00:24:18Z", + "last_reconciled_at": "2026-08-31T00:51:14Z", "last_seen_count": 22, "last_seen_examples": [ { @@ -2944,7 +2944,7 @@ "investigated_at": "2026-08-21T00:00:00Z", "investigated_by": "Claude Sonnet 5, dispatched via tri-comparison-ledger-sweep", "language": "cpp", - "last_reconciled_at": "2026-08-31T00:24:18Z", + "last_reconciled_at": "2026-08-31T00:51:14Z", "last_seen_count": 12, "last_seen_examples": [ { @@ -3057,7 +3057,7 @@ "investigated_at": "2026-08-26T00:00:00Z", "investigated_by": "Claude (Sonnet 5), dispatched via tri-comparison-ledger-sweep", "language": "cpp", - "last_reconciled_at": "2026-08-31T00:24:18Z", + "last_reconciled_at": "2026-08-31T00:51:14Z", "last_seen_count": 64, "last_seen_examples": [ { @@ -3161,7 +3161,7 @@ "investigated_at": "2026-08-21T00:00:00Z", "investigated_by": "Claude Sonnet 5, dispatched via tri-comparison-ledger-sweep", "language": "cpp", - "last_reconciled_at": "2026-08-31T00:24:18Z", + "last_reconciled_at": "2026-08-31T00:51:14Z", "last_seen_count": 135, "last_seen_examples": [ { @@ -3274,7 +3274,7 @@ "investigated_at": "2026-08-26T00:00:00Z", "investigated_by": "Claude (Sonnet 5), dispatched via tri-comparison-ledger-sweep", "language": "cpp", - "last_reconciled_at": "2026-08-31T00:24:18Z", + "last_reconciled_at": "2026-08-31T00:51:14Z", "last_seen_count": 195, "last_seen_examples": [ { @@ -3378,7 +3378,7 @@ "investigated_at": "2026-08-21T18:13:27Z", "investigated_by": "Claude Sonnet 5, dispatched via tri-comparison-ledger-sweep", "language": "csharp", - "last_reconciled_at": "2026-08-31T00:24:23Z", + "last_reconciled_at": "2026-08-31T00:51:17Z", "last_seen_count": 9, "last_seen_examples": [ { @@ -3483,7 +3483,7 @@ "investigated_at": "2026-08-26T00:00:00Z", "investigated_by": "Claude (Sonnet 5), dispatched via tri-comparison-ledger-sweep", "language": "csharp", - "last_reconciled_at": "2026-08-31T00:24:23Z", + "last_reconciled_at": "2026-08-31T00:51:17Z", "last_seen_count": 5, "last_seen_examples": [ { @@ -3552,7 +3552,7 @@ "investigated_at": "2026-08-26T00:00:00Z", "investigated_by": "Claude (Sonnet 5), dispatched via tri-comparison-ledger-sweep", "language": "csharp", - "last_reconciled_at": "2026-08-31T00:24:23Z", + "last_reconciled_at": "2026-08-31T00:51:17Z", "last_seen_count": 6, "last_seen_examples": [ { @@ -3629,7 +3629,7 @@ "investigated_at": "2026-08-26T00:00:00Z", "investigated_by": "Claude (Sonnet 5), dispatched via tri-comparison-ledger-sweep", "language": "csharp", - "last_reconciled_at": "2026-08-31T00:24:23Z", + "last_reconciled_at": "2026-08-31T00:51:17Z", "last_seen_count": 9, "last_seen_examples": [ { @@ -3728,7 +3728,7 @@ "investigated_at": "2026-08-21T20:06:45Z", "investigated_by": "Claude Sonnet 5, dispatched via tri-comparison-ledger-sweep", "language": "csharp", - "last_reconciled_at": "2026-08-31T00:24:23Z", + "last_reconciled_at": "2026-08-31T00:51:17Z", "last_seen_count": 1, "last_seen_examples": [ { @@ -3761,7 +3761,7 @@ "investigated_at": "2026-08-21T20:06:45Z", "investigated_by": "Claude Sonnet 5, dispatched via tri-comparison-ledger-sweep", "language": "csharp", - "last_reconciled_at": "2026-08-31T00:24:23Z", + "last_reconciled_at": "2026-08-31T00:51:17Z", "last_seen_count": 7, "last_seen_examples": [ { @@ -3851,7 +3851,7 @@ "investigated_at": "2026-08-21T20:06:45Z", "investigated_by": "Claude Sonnet 5, dispatched via tri-comparison-ledger-sweep", "language": "csharp", - "last_reconciled_at": "2026-08-31T00:24:23Z", + "last_reconciled_at": "2026-08-31T00:51:17Z", "last_seen_count": 2, "last_seen_examples": [ { @@ -3892,7 +3892,7 @@ "investigated_at": "2026-08-21T20:06:45Z", "investigated_by": "Claude Sonnet 5, dispatched via tri-comparison-ledger-sweep", "language": "csharp", - "last_reconciled_at": "2026-08-31T00:24:23Z", + "last_reconciled_at": "2026-08-31T00:51:17Z", "last_seen_count": 1, "last_seen_examples": [ { @@ -3925,7 +3925,7 @@ "investigated_at": "2026-08-26T00:00:00Z", "investigated_by": "Claude (Sonnet 5), dispatched via tri-comparison-ledger-sweep", "language": "csharp", - "last_reconciled_at": "2026-08-31T00:24:23Z", + "last_reconciled_at": "2026-08-31T00:51:17Z", "last_seen_count": 26, "last_seen_examples": [ { @@ -4029,7 +4029,7 @@ "investigated_at": "2026-08-21T18:13:27Z", "investigated_by": "Claude Sonnet 5, dispatched via tri-comparison-ledger-sweep", "language": "csharp", - "last_reconciled_at": "2026-08-31T00:24:23Z", + "last_reconciled_at": "2026-08-31T00:51:17Z", "last_seen_count": 271, "last_seen_examples": [ { @@ -4143,7 +4143,7 @@ "investigated_at": "2026-08-26T00:00:00Z", "investigated_by": "Claude (Sonnet 5), dispatched via tri-comparison-ledger-sweep", "language": "csharp", - "last_reconciled_at": "2026-08-31T00:24:23Z", + "last_reconciled_at": "2026-08-31T00:51:17Z", "last_seen_count": 4, "last_seen_examples": [ { @@ -4203,7 +4203,7 @@ "investigated_at": "2026-08-21T18:13:27Z", "investigated_by": "Claude Sonnet 5, dispatched via tri-comparison-ledger-sweep", "language": "csharp", - "last_reconciled_at": "2026-08-31T00:24:23Z", + "last_reconciled_at": "2026-08-31T00:51:17Z", "last_seen_count": 1, "last_seen_examples": [ { @@ -4236,7 +4236,7 @@ "investigated_at": "2026-08-21T18:13:44Z", "investigated_by": "Claude Sonnet 5, dispatched via tri-comparison-ledger-sweep", "language": "csharp", - "last_reconciled_at": "2026-08-31T00:24:23Z", + "last_reconciled_at": "2026-08-31T00:51:17Z", "last_seen_count": 108, "last_seen_examples": [ { @@ -4352,7 +4352,7 @@ "investigated_at": "2026-08-21T21:45:53Z", "investigated_by": "Claude Sonnet 5, dispatched via tri-comparison-ledger-sweep", "language": "csharp", - "last_reconciled_at": "2026-08-31T00:24:23Z", + "last_reconciled_at": "2026-08-31T00:51:17Z", "last_seen_count": 46, "last_seen_examples": [ { @@ -4465,7 +4465,7 @@ "investigated_at": "2026-08-26T00:00:00Z", "investigated_by": "Claude (Sonnet 5), dispatched via tri-comparison-ledger-sweep", "language": "csharp", - "last_reconciled_at": "2026-08-31T00:24:23Z", + "last_reconciled_at": "2026-08-31T00:51:17Z", "last_seen_count": 317, "last_seen_examples": [ { @@ -4569,7 +4569,7 @@ "investigated_at": "2026-08-26T00:00:00Z", "investigated_by": "Claude (Sonnet 5), dispatched via tri-comparison-ledger-sweep", "language": "csharp", - "last_reconciled_at": "2026-08-31T00:24:23Z", + "last_reconciled_at": "2026-08-31T00:51:17Z", "last_seen_count": 1, "last_seen_examples": [ { @@ -4602,7 +4602,7 @@ "investigated_at": "2026-08-21T00:00:00Z", "investigated_by": "Claude (Sonnet 5), direct investigation via tri-comparison-ledger-sweep", "language": "css", - "last_reconciled_at": "2026-08-31T00:24:24Z", + "last_reconciled_at": "2026-08-31T00:51:17Z", "last_seen_count": 25, "last_seen_examples": [ { @@ -4716,7 +4716,7 @@ "investigated_at": "2026-08-30T00:00:00Z", "investigated_by": "Claude (Sonnet 5), dispatched via tri-comparison-ledger-sweep", "language": "css", - "last_reconciled_at": "2026-08-31T00:24:24Z", + "last_reconciled_at": "2026-08-31T00:51:17Z", "last_seen_count": 5, "last_seen_examples": [ { @@ -4785,7 +4785,7 @@ "investigated_at": "2026-08-30T00:00:00Z", "investigated_by": "Claude (Sonnet 5), dispatched via tri-comparison-ledger-sweep", "language": "css", - "last_reconciled_at": "2026-08-31T00:24:24Z", + "last_reconciled_at": "2026-08-31T00:51:17Z", "last_seen_count": 4, "last_seen_examples": [ { @@ -4843,7 +4843,7 @@ "investigated_at": "2026-08-21T00:00:00Z", "investigated_by": "Claude (Sonnet 5), direct investigation via tri-comparison-ledger-sweep", "language": "dart", - "last_reconciled_at": "2026-08-31T00:24:28Z", + "last_reconciled_at": "2026-08-31T00:51:19Z", "last_seen_count": 6, "last_seen_examples": [ { @@ -4914,7 +4914,7 @@ "investigated_at": "2026-08-21T00:00:00Z", "investigated_by": "Claude (Sonnet 5), direct investigation via tri-comparison-ledger-sweep", "language": "dart", - "last_reconciled_at": "2026-08-31T00:24:28Z", + "last_reconciled_at": "2026-08-31T00:51:19Z", "last_seen_count": 9, "last_seen_examples": [ { @@ -5009,7 +5009,7 @@ "investigated_at": "2026-08-21T00:00:00Z", "investigated_by": "Claude (Sonnet 5), direct investigation via tri-comparison-ledger-sweep", "language": "dart", - "last_reconciled_at": "2026-08-31T00:24:28Z", + "last_reconciled_at": "2026-08-31T00:51:19Z", "last_seen_count": 1, "last_seen_examples": [ { @@ -5038,7 +5038,7 @@ "investigated_at": null, "investigated_by": null, "language": "embedded_python", - "last_reconciled_at": "2026-08-31T00:24:30Z", + "last_reconciled_at": "2026-08-31T00:51:21Z", "last_seen_count": 1, "last_seen_examples": [ { @@ -5068,7 +5068,7 @@ "investigated_at": null, "investigated_by": null, "language": "embedded_python", - "last_reconciled_at": "2026-08-31T00:24:30Z", + "last_reconciled_at": "2026-08-31T00:51:21Z", "last_seen_count": 69, "last_seen_examples": [ { @@ -5172,7 +5172,7 @@ "investigated_at": "2026-08-21T23:35:49Z", "investigated_by": "Sonnet 5, dispatched via tri-comparison-ledger-sweep", "language": "fortran", - "last_reconciled_at": "2026-08-31T00:24:34Z", + "last_reconciled_at": "2026-08-31T00:51:23Z", "last_seen_count": 8, "last_seen_examples": [ { @@ -5273,7 +5273,7 @@ "investigated_at": "2026-08-24T04:14:26Z", "investigated_by": "Antigravity (direct sweep)", "language": "fortran", - "last_reconciled_at": "2026-08-31T00:24:34Z", + "last_reconciled_at": "2026-08-31T00:51:23Z", "last_seen_count": 1, "last_seen_examples": [ { @@ -5305,7 +5305,7 @@ "investigated_at": "2026-08-21T00:00:00Z", "investigated_by": "Claude Sonnet 5, direct investigation (surfaced while re-blessing the tri-comparison chart after #1973/#1985)", "language": "fortran", - "last_reconciled_at": "2026-08-31T00:24:34Z", + "last_reconciled_at": "2026-08-31T00:51:23Z", "last_seen_count": 1, "last_seen_examples": [ { @@ -5337,7 +5337,7 @@ "investigated_at": "2026-08-21T23:35:49Z", "investigated_by": "Sonnet 5, dispatched via tri-comparison-ledger-sweep", "language": "fortran", - "last_reconciled_at": "2026-08-31T00:24:34Z", + "last_reconciled_at": "2026-08-31T00:51:23Z", "last_seen_count": 1, "last_seen_examples": [ { @@ -5368,7 +5368,7 @@ "investigated_at": "2026-08-26T00:00:00Z", "investigated_by": "Claude (Sonnet 5), dispatched via tri-comparison-ledger-sweep", "language": "fortran", - "last_reconciled_at": "2026-08-31T00:24:34Z", + "last_reconciled_at": "2026-08-31T00:51:23Z", "last_seen_count": 1, "last_seen_examples": [ { @@ -5400,7 +5400,7 @@ "investigated_at": "2026-08-21T23:35:49Z", "investigated_by": "Sonnet 5, dispatched via tri-comparison-ledger-sweep", "language": "fortran", - "last_reconciled_at": "2026-08-31T00:24:34Z", + "last_reconciled_at": "2026-08-31T00:51:23Z", "last_seen_count": 15, "last_seen_examples": [ { @@ -5514,7 +5514,7 @@ "investigated_at": "2026-08-21T23:35:49Z", "investigated_by": "Sonnet 5, dispatched via tri-comparison-ledger-sweep", "language": "fortran", - "last_reconciled_at": "2026-08-31T00:24:34Z", + "last_reconciled_at": "2026-08-31T00:51:23Z", "last_seen_count": 2, "last_seen_examples": [ { @@ -5558,7 +5558,7 @@ "investigated_at": "2026-08-21T23:35:49Z", "investigated_by": "Sonnet 5, dispatched via tri-comparison-ledger-sweep", "language": "fortran", - "last_reconciled_at": "2026-08-31T00:24:34Z", + "last_reconciled_at": "2026-08-31T00:51:23Z", "last_seen_count": 1, "last_seen_examples": [ { @@ -5590,7 +5590,7 @@ "investigated_at": "2026-08-26T00:00:00Z", "investigated_by": "Claude (Sonnet 5), dispatched via tri-comparison-ledger-sweep", "language": "fortran", - "last_reconciled_at": "2026-08-31T00:24:34Z", + "last_reconciled_at": "2026-08-31T00:51:23Z", "last_seen_count": 16, "last_seen_examples": [ { @@ -5699,7 +5699,7 @@ "investigated_at": "2026-08-24T04:14:26Z", "investigated_by": "Antigravity (direct sweep)", "language": "go", - "last_reconciled_at": "2026-08-31T00:24:36Z", + "last_reconciled_at": "2026-08-31T00:51:24Z", "last_seen_count": 75, "last_seen_examples": [ { @@ -5811,7 +5811,7 @@ "investigated_at": "2026-08-26T00:00:00Z", "investigated_by": "Claude (Sonnet 5), dispatched via tri-comparison-ledger-sweep", "language": "go", - "last_reconciled_at": "2026-08-31T00:24:36Z", + "last_reconciled_at": "2026-08-31T00:51:24Z", "last_seen_count": 75, "last_seen_examples": [ { @@ -5913,7 +5913,7 @@ "investigated_at": null, "investigated_by": null, "language": "groovy", - "last_reconciled_at": "2026-08-31T00:24:38Z", + "last_reconciled_at": "2026-08-31T00:51:26Z", "last_seen_count": 721, "last_seen_examples": [ { @@ -6017,7 +6017,7 @@ "investigated_at": "2026-08-19T00:00:00Z", "investigated_by": "Claude Sonnet 5 (session investigation)", "language": "haskell", - "last_reconciled_at": "2026-08-31T00:24:39Z", + "last_reconciled_at": "2026-08-31T00:51:26Z", "last_seen_count": 16, "last_seen_examples": [ { @@ -6129,7 +6129,7 @@ "investigated_at": "2026-08-19T00:00:00Z", "investigated_by": "Claude Sonnet 5 (session investigation)", "language": "haskell", - "last_reconciled_at": "2026-08-31T00:24:39Z", + "last_reconciled_at": "2026-08-31T00:51:26Z", "last_seen_count": 9, "last_seen_examples": [ { @@ -6234,7 +6234,7 @@ "investigated_at": "2026-08-29", "investigated_by": "Claude Sonnet 5, dispatched via tri-comparison-ledger-sweep", "language": "haskell", - "last_reconciled_at": "2026-08-31T00:24:39Z", + "last_reconciled_at": "2026-08-31T00:51:26Z", "last_seen_count": 1, "last_seen_examples": [ { @@ -6267,7 +6267,7 @@ "investigated_at": "2026-08-26T00:00:00Z", "investigated_by": "Claude (Sonnet 5), dispatched via tri-comparison-ledger-sweep", "language": "haskell", - "last_reconciled_at": "2026-08-31T00:24:39Z", + "last_reconciled_at": "2026-08-31T00:51:26Z", "last_seen_count": 1, "last_seen_examples": [ { @@ -6300,7 +6300,7 @@ "investigated_at": "2026-08-19T00:00:00Z", "investigated_by": "Claude Sonnet 5 (dispatched agent investigation)", "language": "haskell", - "last_reconciled_at": "2026-08-31T00:24:39Z", + "last_reconciled_at": "2026-08-31T00:51:26Z", "last_seen_count": 102, "last_seen_examples": [ { @@ -6414,7 +6414,7 @@ "investigated_at": "2026-08-19T00:00:00Z", "investigated_by": "Claude Sonnet 5 (dispatched agent investigation)", "language": "haskell", - "last_reconciled_at": "2026-08-31T00:24:39Z", + "last_reconciled_at": "2026-08-31T00:51:26Z", "last_seen_count": 69, "last_seen_examples": [ { @@ -6530,7 +6530,7 @@ "investigated_at": "2026-08-19T00:00:00Z", "investigated_by": "Claude Sonnet 5 (session investigation)", "language": "haskell", - "last_reconciled_at": "2026-08-31T00:24:39Z", + "last_reconciled_at": "2026-08-31T00:51:26Z", "last_seen_count": 1, "last_seen_examples": [ { @@ -6562,7 +6562,7 @@ "investigated_at": "2026-08-26T00:00:00Z", "investigated_by": "Claude (Sonnet 5), dispatched via tri-comparison-ledger-sweep", "language": "haskell", - "last_reconciled_at": "2026-08-31T00:24:39Z", + "last_reconciled_at": "2026-08-31T00:51:26Z", "last_seen_count": 1, "last_seen_examples": [ { @@ -6594,7 +6594,7 @@ "investigated_at": "2026-08-26T00:00:00Z", "investigated_by": "Claude (Sonnet 5), dispatched via tri-comparison-ledger-sweep", "language": "haskell", - "last_reconciled_at": "2026-08-31T00:24:39Z", + "last_reconciled_at": "2026-08-31T00:51:26Z", "last_seen_count": 91, "last_seen_examples": [ { @@ -6708,7 +6708,7 @@ "investigated_at": "2026-08-29", "investigated_by": "Claude Sonnet 5, dispatched via tri-comparison-ledger-sweep", "language": "html", - "last_reconciled_at": "2026-08-31T00:24:41Z", + "last_reconciled_at": "2026-08-31T00:51:27Z", "last_seen_count": 37, "last_seen_examples": [ { @@ -6822,7 +6822,7 @@ "investigated_at": "2026-08-30", "investigated_by": "Claude Sonnet 5, dispatched via tri-comparison-ledger-sweep", "language": "html", - "last_reconciled_at": "2026-08-31T00:24:41Z", + "last_reconciled_at": "2026-08-31T00:51:27Z", "last_seen_count": 1, "last_seen_examples": [ { @@ -6855,7 +6855,7 @@ "investigated_at": "2026-08-30", "investigated_by": "Claude Sonnet 5, dispatched via tri-comparison-ledger-sweep", "language": "html", - "last_reconciled_at": "2026-08-31T00:24:41Z", + "last_reconciled_at": "2026-08-31T00:51:27Z", "last_seen_count": 2, "last_seen_examples": [ { @@ -6897,7 +6897,7 @@ "investigated_at": "2026-08-26T00:00:00Z", "investigated_by": "Claude (Sonnet 5), dispatched via tri-comparison-ledger-sweep", "language": "java", - "last_reconciled_at": "2026-08-31T00:24:41Z", + "last_reconciled_at": "2026-08-31T00:51:28Z", "last_seen_count": 28, "last_seen_examples": [ { @@ -7011,7 +7011,7 @@ "investigated_at": "2026-08-22T01:15:53Z", "investigated_by": "Sonnet 5, direct investigation via tri-comparison-ledger-sweep", "language": "java", - "last_reconciled_at": "2026-08-31T00:24:41Z", + "last_reconciled_at": "2026-08-31T00:51:28Z", "last_seen_count": 12, "last_seen_examples": [ { @@ -7125,7 +7125,7 @@ "investigated_at": "2026-08-22T01:15:53Z", "investigated_by": "Sonnet 5, direct investigation via tri-comparison-ledger-sweep", "language": "java", - "last_reconciled_at": "2026-08-31T00:24:41Z", + "last_reconciled_at": "2026-08-31T00:51:28Z", "last_seen_count": 28, "last_seen_examples": [ { @@ -7238,7 +7238,7 @@ "investigated_at": "2026-08-22T01:15:53Z", "investigated_by": "Sonnet 5, direct investigation via tri-comparison-ledger-sweep", "language": "java", - "last_reconciled_at": "2026-08-31T00:24:41Z", + "last_reconciled_at": "2026-08-31T00:51:28Z", "last_seen_count": 1, "last_seen_examples": [ { @@ -7271,7 +7271,7 @@ "investigated_at": "2026-08-22T01:15:53Z", "investigated_by": "Sonnet 5, direct investigation via tri-comparison-ledger-sweep", "language": "java", - "last_reconciled_at": "2026-08-31T00:24:41Z", + "last_reconciled_at": "2026-08-31T00:51:28Z", "last_seen_count": 3, "last_seen_examples": [ { @@ -7322,7 +7322,7 @@ "investigated_at": "2026-08-26T00:00:00Z", "investigated_by": "Claude (Sonnet 5), dispatched via tri-comparison-ledger-sweep", "language": "java", - "last_reconciled_at": "2026-08-31T00:24:41Z", + "last_reconciled_at": "2026-08-31T00:51:28Z", "last_seen_count": 315, "last_seen_examples": [ { @@ -7436,7 +7436,7 @@ "investigated_at": "2026-08-26T00:00:00Z", "investigated_by": "Claude (Sonnet 5), dispatched via tri-comparison-ledger-sweep", "language": "java", - "last_reconciled_at": "2026-08-31T00:24:41Z", + "last_reconciled_at": "2026-08-31T00:51:28Z", "last_seen_count": 3, "last_seen_examples": [ { @@ -7487,7 +7487,7 @@ "investigated_at": "2026-08-21", "investigated_by": "Claude (Sonnet 5), dispatched via tri-comparison-ledger-sweep", "language": "javascript", - "last_reconciled_at": "2026-08-31T00:24:44Z", + "last_reconciled_at": "2026-08-31T00:51:30Z", "last_seen_count": 93, "last_seen_examples": [ { @@ -7601,7 +7601,7 @@ "investigated_at": "2026-08-21", "investigated_by": "Claude (Sonnet 5), dispatched via tri-comparison-ledger-sweep", "language": "javascript", - "last_reconciled_at": "2026-08-31T00:24:44Z", + "last_reconciled_at": "2026-08-31T00:51:30Z", "last_seen_count": 7, "last_seen_examples": [ { @@ -7688,7 +7688,7 @@ "investigated_at": "2026-08-21", "investigated_by": "Claude (Sonnet 5), dispatched via tri-comparison-ledger-sweep", "language": "javascript", - "last_reconciled_at": "2026-08-31T00:24:44Z", + "last_reconciled_at": "2026-08-31T00:51:30Z", "last_seen_count": 2, "last_seen_examples": [ { @@ -7728,7 +7728,7 @@ "investigated_at": "2026-08-26T00:00:00Z", "investigated_by": "Claude (Sonnet 5), dispatched via tri-comparison-ledger-sweep", "language": "javascript", - "last_reconciled_at": "2026-08-31T00:24:44Z", + "last_reconciled_at": "2026-08-31T00:51:30Z", "last_seen_count": 45, "last_seen_examples": [ { @@ -7832,7 +7832,7 @@ "investigated_at": "2026-08-21", "investigated_by": "Claude (Sonnet 5), dispatched via tri-comparison-ledger-sweep", "language": "javascript", - "last_reconciled_at": "2026-08-31T00:24:44Z", + "last_reconciled_at": "2026-08-31T00:51:30Z", "last_seen_count": 13, "last_seen_examples": [ { @@ -7946,7 +7946,7 @@ "investigated_at": "2026-08-21", "investigated_by": "Claude (Sonnet 5), dispatched via tri-comparison-ledger-sweep", "language": "javascript", - "last_reconciled_at": "2026-08-31T00:24:44Z", + "last_reconciled_at": "2026-08-31T00:51:30Z", "last_seen_count": 6, "last_seen_examples": [ { @@ -8024,7 +8024,7 @@ "investigated_at": "2026-08-21", "investigated_by": "Claude (Sonnet 5), dispatched via tri-comparison-ledger-sweep", "language": "javascript", - "last_reconciled_at": "2026-08-31T00:24:44Z", + "last_reconciled_at": "2026-08-31T00:51:30Z", "last_seen_count": 265, "last_seen_examples": [ { @@ -8140,7 +8140,7 @@ "investigated_at": "2026-08-21", "investigated_by": "Claude (Sonnet 5), dispatched via tri-comparison-ledger-sweep", "language": "javascript", - "last_reconciled_at": "2026-08-31T00:24:44Z", + "last_reconciled_at": "2026-08-31T00:51:30Z", "last_seen_count": 189, "last_seen_examples": [ { @@ -8253,7 +8253,7 @@ "investigated_at": "2026-08-26T00:00:00Z", "investigated_by": "Claude (Sonnet 5), dispatched via tri-comparison-ledger-sweep", "language": "javascript", - "last_reconciled_at": "2026-08-31T00:24:44Z", + "last_reconciled_at": "2026-08-31T00:51:30Z", "last_seen_count": 194, "last_seen_examples": [ { @@ -8357,7 +8357,7 @@ "investigated_at": "2026-08-21", "investigated_by": "Claude (Sonnet 5), dispatched via tri-comparison-ledger-sweep", "language": "javascript", - "last_reconciled_at": "2026-08-31T00:24:44Z", + "last_reconciled_at": "2026-08-31T00:51:30Z", "last_seen_count": 1, "last_seen_examples": [ { @@ -8390,7 +8390,7 @@ "investigated_at": "2026-08-22T11:40:48Z", "investigated_by": "claude-sonnet-5, dispatched via tri-comparison-ledger-sweep (direct investigation, no Gemini dispatch -- small occurrence counts, answer was directly checkable)", "language": "kotlin", - "last_reconciled_at": "2026-08-31T00:24:46Z", + "last_reconciled_at": "2026-08-31T00:51:31Z", "last_seen_count": 3, "last_seen_examples": [ { @@ -8443,7 +8443,7 @@ "investigated_at": "2026-08-22T11:40:48Z", "investigated_by": "claude-sonnet-5, dispatched via tri-comparison-ledger-sweep (direct investigation, no Gemini dispatch -- small occurrence counts, answer was directly checkable)", "language": "kotlin", - "last_reconciled_at": "2026-08-31T00:24:46Z", + "last_reconciled_at": "2026-08-31T00:51:31Z", "last_seen_count": 15, "last_seen_examples": [ { @@ -8557,7 +8557,7 @@ "investigated_at": "2026-08-22T11:45:48Z", "investigated_by": "claude-sonnet-5, dispatched via tri-comparison-ledger-sweep (direct investigation, no Gemini dispatch)", "language": "kotlin", - "last_reconciled_at": "2026-08-31T00:24:46Z", + "last_reconciled_at": "2026-08-31T00:51:31Z", "last_seen_count": 1, "last_seen_examples": [ { @@ -8590,7 +8590,7 @@ "investigated_at": "2026-08-22T11:40:48Z", "investigated_by": "claude-sonnet-5, dispatched via tri-comparison-ledger-sweep (direct investigation, no Gemini dispatch -- small occurrence counts, answer was directly checkable)", "language": "kotlin", - "last_reconciled_at": "2026-08-31T00:24:46Z", + "last_reconciled_at": "2026-08-31T00:51:31Z", "last_seen_count": 1, "last_seen_examples": [ { @@ -8623,7 +8623,7 @@ "investigated_at": "2026-08-29", "investigated_by": "Claude Sonnet 5, dispatched via tri-comparison-ledger-sweep", "language": "lua", - "last_reconciled_at": "2026-08-31T00:24:50Z", + "last_reconciled_at": "2026-08-31T00:51:34Z", "last_seen_count": 1, "last_seen_examples": [ { @@ -8654,7 +8654,7 @@ "investigated_at": "2026-08-29", "investigated_by": "Claude Sonnet 5, dispatched via tri-comparison-ledger-sweep", "language": "lua", - "last_reconciled_at": "2026-08-31T00:24:50Z", + "last_reconciled_at": "2026-08-31T00:51:34Z", "last_seen_count": 42, "last_seen_examples": [ { @@ -8768,7 +8768,7 @@ "investigated_at": "2026-08-29", "investigated_by": "Claude Sonnet 5, dispatched via tri-comparison-ledger-sweep", "language": "lua", - "last_reconciled_at": "2026-08-31T00:24:50Z", + "last_reconciled_at": "2026-08-31T00:51:34Z", "last_seen_count": 6, "last_seen_examples": [ { @@ -8846,7 +8846,7 @@ "investigated_at": "2026-08-29", "investigated_by": "Claude Sonnet 5, dispatched via tri-comparison-ledger-sweep", "language": "lua", - "last_reconciled_at": "2026-08-31T00:24:50Z", + "last_reconciled_at": "2026-08-31T00:51:34Z", "last_seen_count": 1, "last_seen_examples": [ { @@ -8879,7 +8879,7 @@ "investigated_at": "2026-08-29", "investigated_by": "Claude Sonnet 5, dispatched via tri-comparison-ledger-sweep", "language": "lua", - "last_reconciled_at": "2026-08-31T00:24:50Z", + "last_reconciled_at": "2026-08-31T00:51:34Z", "last_seen_count": 487, "last_seen_examples": [ { @@ -8993,7 +8993,7 @@ "investigated_at": "2026-08-29", "investigated_by": "Claude Sonnet 5, dispatched via tri-comparison-ledger-sweep", "language": "lua", - "last_reconciled_at": "2026-08-31T00:24:50Z", + "last_reconciled_at": "2026-08-31T00:51:34Z", "last_seen_count": 22, "last_seen_examples": [ { @@ -9107,7 +9107,7 @@ "investigated_at": "2026-08-29", "investigated_by": "Claude Sonnet 5, dispatched via tri-comparison-ledger-sweep", "language": "lua", - "last_reconciled_at": "2026-08-31T00:24:50Z", + "last_reconciled_at": "2026-08-31T00:51:34Z", "last_seen_count": 1, "last_seen_examples": [ { @@ -9140,7 +9140,7 @@ "investigated_at": "2026-08-29", "investigated_by": "Claude Sonnet 5, dispatched via tri-comparison-ledger-sweep", "language": "lua", - "last_reconciled_at": "2026-08-31T00:24:50Z", + "last_reconciled_at": "2026-08-31T00:51:34Z", "last_seen_count": 12, "last_seen_examples": [ { @@ -9255,7 +9255,7 @@ "investigated_at": "2026-08-24T03:52:19Z", "investigated_by": "Antigravity (direct source read)", "language": "m4", - "last_reconciled_at": "2026-08-31T00:24:51Z", + "last_reconciled_at": "2026-08-31T00:51:35Z", "last_seen_count": 4, "last_seen_examples": [ { @@ -9312,7 +9312,7 @@ "investigated_at": "2026-08-24T03:52:19Z", "investigated_by": "Antigravity (direct source read)", "language": "m4", - "last_reconciled_at": "2026-08-31T00:24:51Z", + "last_reconciled_at": "2026-08-31T00:51:35Z", "last_seen_count": 76, "last_seen_examples": [ { @@ -9417,7 +9417,7 @@ "investigated_at": "2026-08-24T03:52:19Z", "investigated_by": "Antigravity (direct source read)", "language": "m4", - "last_reconciled_at": "2026-08-31T00:24:51Z", + "last_reconciled_at": "2026-08-31T00:51:35Z", "last_seen_count": 36, "last_seen_examples": [ { @@ -9521,7 +9521,7 @@ "investigated_at": "2026-08-24T04:14:26Z", "investigated_by": "Antigravity (direct sweep)", "language": "makefile", - "last_reconciled_at": "2026-08-31T00:24:52Z", + "last_reconciled_at": "2026-08-31T00:51:36Z", "last_seen_count": 1, "last_seen_examples": [ { @@ -9556,7 +9556,7 @@ "investigated_at": "2026-08-24T04:14:26Z", "investigated_by": "Antigravity (direct sweep)", "language": "matlab", - "last_reconciled_at": "2026-08-31T00:24:53Z", + "last_reconciled_at": "2026-08-31T00:51:36Z", "last_seen_count": 1, "last_seen_examples": [ { @@ -9588,7 +9588,7 @@ "investigated_at": null, "investigated_by": null, "language": "objective-c", - "last_reconciled_at": "2026-08-31T00:24:54Z", + "last_reconciled_at": "2026-08-31T00:51:37Z", "last_seen_count": 2, "last_seen_examples": [ { @@ -9630,7 +9630,7 @@ "investigated_at": "2026-08-25T00:00:00Z", "investigated_by": "Claude (Sonnet 5), direct investigation via tri-comparison-ledger-sweep", "language": "objective-c", - "last_reconciled_at": "2026-08-31T00:24:54Z", + "last_reconciled_at": "2026-08-31T00:51:37Z", "last_seen_count": 2, "last_seen_examples": [ { @@ -9674,7 +9674,7 @@ "investigated_at": "2026-08-24T04:14:26Z", "investigated_by": "Antigravity (direct sweep)", "language": "objective-c", - "last_reconciled_at": "2026-08-31T00:24:54Z", + "last_reconciled_at": "2026-08-31T00:51:37Z", "last_seen_count": 89, "last_seen_examples": [ { @@ -9788,7 +9788,7 @@ "investigated_at": "2026-08-24T04:14:26Z", "investigated_by": "Antigravity (direct sweep)", "language": "objective-c", - "last_reconciled_at": "2026-08-31T00:24:54Z", + "last_reconciled_at": "2026-08-31T00:51:37Z", "last_seen_count": 104, "last_seen_examples": [ { @@ -9904,7 +9904,7 @@ "investigated_at": "2026-08-24T04:14:26Z", "investigated_by": "Antigravity (direct sweep)", "language": "objective-c", - "last_reconciled_at": "2026-08-31T00:24:54Z", + "last_reconciled_at": "2026-08-31T00:51:37Z", "last_seen_count": 1, "last_seen_examples": [ { @@ -9936,7 +9936,7 @@ "investigated_at": "2026-08-26T00:00:00Z", "investigated_by": "Claude (Sonnet 5), dispatched via tri-comparison-ledger-sweep", "language": "objective-c", - "last_reconciled_at": "2026-08-31T00:24:54Z", + "last_reconciled_at": "2026-08-31T00:51:37Z", "last_seen_count": 1, "last_seen_examples": [ { @@ -9970,7 +9970,7 @@ "investigated_at": "2026-08-24T04:14:26Z", "investigated_by": "Antigravity (direct sweep)", "language": "objective-c", - "last_reconciled_at": "2026-08-31T00:24:54Z", + "last_reconciled_at": "2026-08-31T00:51:37Z", "last_seen_count": 2, "last_seen_examples": [ { @@ -10011,7 +10011,7 @@ "investigated_at": "2026-08-26T00:00:00Z", "investigated_by": "Claude (Sonnet 5), dispatched via tri-comparison-ledger-sweep", "language": "objective-c", - "last_reconciled_at": "2026-08-31T00:24:54Z", + "last_reconciled_at": "2026-08-31T00:51:37Z", "last_seen_count": 2, "last_seen_examples": [ { @@ -10051,7 +10051,7 @@ "investigated_at": "2026-08-24T04:14:26Z", "investigated_by": "Antigravity (direct sweep)", "language": "perl", - "last_reconciled_at": "2026-08-31T00:25:00Z", + "last_reconciled_at": "2026-08-31T00:51:41Z", "last_seen_count": 1, "last_seen_examples": [ { @@ -10084,7 +10084,7 @@ "investigated_at": "2026-08-26T00:00:00Z", "investigated_by": "Claude (Sonnet 5), dispatched via tri-comparison-ledger-sweep", "language": "perl", - "last_reconciled_at": "2026-08-31T00:25:00Z", + "last_reconciled_at": "2026-08-31T00:51:41Z", "last_seen_count": 1, "last_seen_examples": [ { @@ -10116,7 +10116,7 @@ "investigated_at": "2026-08-26T00:00:00Z", "investigated_by": "Claude (Sonnet 5), dispatched via tri-comparison-ledger-sweep", "language": "perl", - "last_reconciled_at": "2026-08-31T00:25:00Z", + "last_reconciled_at": "2026-08-31T00:51:41Z", "last_seen_count": 1, "last_seen_examples": [ { @@ -10146,7 +10146,7 @@ "investigated_at": "2026-08-24T04:14:26Z", "investigated_by": "Antigravity (direct sweep)", "language": "perl", - "last_reconciled_at": "2026-08-31T00:25:00Z", + "last_reconciled_at": "2026-08-31T00:51:41Z", "last_seen_count": 12, "last_seen_examples": [ { @@ -10260,7 +10260,7 @@ "investigated_at": "2026-08-24T04:14:26Z", "investigated_by": "Antigravity (direct sweep)", "language": "perl", - "last_reconciled_at": "2026-08-31T00:25:00Z", + "last_reconciled_at": "2026-08-31T00:51:41Z", "last_seen_count": 7, "last_seen_examples": [ { @@ -10347,7 +10347,7 @@ "investigated_at": "2026-08-24T04:14:26Z", "investigated_by": "Antigravity (direct sweep)", "language": "perl", - "last_reconciled_at": "2026-08-31T00:25:00Z", + "last_reconciled_at": "2026-08-31T00:51:41Z", "last_seen_count": 7, "last_seen_examples": [ { @@ -10436,7 +10436,7 @@ "investigated_at": "2026-08-26T00:00:00Z", "investigated_by": "Claude (Sonnet 5), dispatched via tri-comparison-ledger-sweep", "language": "perl", - "last_reconciled_at": "2026-08-31T00:25:00Z", + "last_reconciled_at": "2026-08-31T00:51:41Z", "last_seen_count": 1, "last_seen_examples": [ { @@ -10470,7 +10470,7 @@ "investigated_at": "2026-08-26T00:00:00Z", "investigated_by": "Claude (Sonnet 5), dispatched via tri-comparison-ledger-sweep", "language": "perl", - "last_reconciled_at": "2026-08-31T00:25:00Z", + "last_reconciled_at": "2026-08-31T00:51:41Z", "last_seen_count": 1, "last_seen_examples": [ { @@ -10502,7 +10502,7 @@ "investigated_at": "2026-08-26T00:00:00Z", "investigated_by": "Claude (Sonnet 5), direct investigation correcting a prior misdiagnosis", "language": "perl", - "last_reconciled_at": "2026-08-31T00:25:00Z", + "last_reconciled_at": "2026-08-31T00:51:41Z", "last_seen_count": 122, "last_seen_examples": [ { @@ -10615,7 +10615,7 @@ "investigated_at": "2026-08-26T00:00:00Z", "investigated_by": "Claude (Sonnet 5), dispatched via tri-comparison-ledger-sweep", "language": "perl", - "last_reconciled_at": "2026-08-31T00:25:00Z", + "last_reconciled_at": "2026-08-31T00:51:41Z", "last_seen_count": 122, "last_seen_examples": [ { @@ -10719,12 +10719,12 @@ "investigated_at": "2026-08-24T04:14:26Z", "investigated_by": "Antigravity (direct sweep)", "language": "php", - "last_reconciled_at": "2026-08-31T00:25:04Z", + "last_reconciled_at": "2026-08-31T00:51:43Z", "last_seen_count": 1, "last_seen_examples": [ { "file_path": "laravel_core/BladeCompiler.php", - "name": "AnonymousClassa08aab890100", + "name": "AnonymousClassda5cee600100", "readings": { "ctags": 342, "gitgalaxy": null, @@ -10752,7 +10752,7 @@ "investigated_at": "2026-08-24T04:14:26Z", "investigated_by": "Antigravity (direct sweep)", "language": "php", - "last_reconciled_at": "2026-08-31T00:25:04Z", + "last_reconciled_at": "2026-08-31T00:51:43Z", "last_seen_count": 1, "last_seen_examples": [ { @@ -10785,7 +10785,7 @@ "investigated_at": "2026-08-26T00:00:00Z", "investigated_by": "Claude (Sonnet 5), dispatched via tri-comparison-ledger-sweep", "language": "php", - "last_reconciled_at": "2026-08-31T00:25:04Z", + "last_reconciled_at": "2026-08-31T00:51:43Z", "last_seen_count": 68, "last_seen_examples": [ { @@ -10898,7 +10898,7 @@ "investigated_at": "2026-08-26T00:00:00Z", "investigated_by": "Claude (Sonnet 5), dispatched via tri-comparison-ledger-sweep", "language": "php", - "last_reconciled_at": "2026-08-31T00:25:04Z", + "last_reconciled_at": "2026-08-31T00:51:43Z", "last_seen_count": 1, "last_seen_examples": [ { @@ -10930,7 +10930,7 @@ "investigated_at": "2026-08-24T04:14:26Z", "investigated_by": "Antigravity (direct sweep)", "language": "powershell", - "last_reconciled_at": "2026-08-31T00:25:07Z", + "last_reconciled_at": "2026-08-31T00:51:45Z", "last_seen_count": 9, "last_seen_examples": [ { @@ -11035,7 +11035,7 @@ "investigated_at": "2026-08-29", "investigated_by": "Claude Sonnet 5, dispatched via tri-comparison-ledger-sweep", "language": "powershell", - "last_reconciled_at": "2026-08-31T00:25:07Z", + "last_reconciled_at": "2026-08-31T00:51:45Z", "last_seen_count": 1, "last_seen_examples": [ { @@ -11066,7 +11066,7 @@ "investigated_at": "2026-08-24T04:14:26Z", "investigated_by": "Antigravity (direct sweep)", "language": "powershell", - "last_reconciled_at": "2026-08-31T00:25:07Z", + "last_reconciled_at": "2026-08-31T00:51:45Z", "last_seen_count": 5, "last_seen_examples": [ { @@ -11135,7 +11135,7 @@ "investigated_at": "2026-08-24T04:14:26Z", "investigated_by": "Antigravity (direct sweep)", "language": "powershell", - "last_reconciled_at": "2026-08-31T00:25:07Z", + "last_reconciled_at": "2026-08-31T00:51:45Z", "last_seen_count": 1, "last_seen_examples": [ { @@ -11168,7 +11168,7 @@ "investigated_at": "2026-08-24T04:14:26Z", "investigated_by": "Antigravity (direct sweep)", "language": "powershell", - "last_reconciled_at": "2026-08-31T00:25:07Z", + "last_reconciled_at": "2026-08-31T00:51:45Z", "last_seen_count": 16, "last_seen_examples": [ { @@ -11281,7 +11281,7 @@ "investigated_at": "2026-08-26T00:00:00Z", "investigated_by": "Claude (Sonnet 5), dispatched via tri-comparison-ledger-sweep", "language": "powershell", - "last_reconciled_at": "2026-08-31T00:25:07Z", + "last_reconciled_at": "2026-08-31T00:51:45Z", "last_seen_count": 1, "last_seen_examples": [ { @@ -11313,7 +11313,7 @@ "investigated_at": "2026-08-21T03:23:52Z", "investigated_by": "claude sonnet 5, tri-comparison-ledger-sweep (direct investigation, no dispatch needed)", "language": "python", - "last_reconciled_at": "2026-08-31T00:25:17Z", + "last_reconciled_at": "2026-08-31T00:51:49Z", "last_seen_count": 4, "last_seen_examples": [ { @@ -11372,7 +11372,7 @@ "investigated_at": "2026-08-26T00:00:00Z", "investigated_by": "Claude (Sonnet 5), dispatched via tri-comparison-ledger-sweep", "language": "python", - "last_reconciled_at": "2026-08-31T00:25:17Z", + "last_reconciled_at": "2026-08-31T00:51:49Z", "last_seen_count": 4, "last_seen_examples": [ { @@ -11428,7 +11428,7 @@ "investigated_at": "2026-08-21T03:23:52Z", "investigated_by": "claude sonnet 5, tri-comparison-ledger-sweep (direct investigation, no dispatch needed)", "language": "python", - "last_reconciled_at": "2026-08-31T00:25:17Z", + "last_reconciled_at": "2026-08-31T00:51:49Z", "last_seen_count": 1, "last_seen_examples": [ { @@ -11461,7 +11461,7 @@ "investigated_at": "2026-08-21T12:03:03Z", "investigated_by": "claude sonnet 5, tri-comparison-ledger-sweep (direct investigation, no dispatch needed)", "language": "python", - "last_reconciled_at": "2026-08-31T00:25:17Z", + "last_reconciled_at": "2026-08-31T00:51:49Z", "last_seen_count": 100, "last_seen_examples": [ { @@ -11577,7 +11577,7 @@ "investigated_at": "2026-08-21T12:03:03Z", "investigated_by": "claude sonnet 5, tri-comparison-ledger-sweep (direct investigation, no dispatch needed)", "language": "python", - "last_reconciled_at": "2026-08-31T00:25:17Z", + "last_reconciled_at": "2026-08-31T00:51:49Z", "last_seen_count": 5, "last_seen_examples": [ { @@ -11646,7 +11646,7 @@ "investigated_at": "2026-08-26T00:00:00Z", "investigated_by": "Claude (Sonnet 5), dispatched via tri-comparison-ledger-sweep", "language": "python", - "last_reconciled_at": "2026-08-31T00:25:17Z", + "last_reconciled_at": "2026-08-31T00:51:49Z", "last_seen_count": 5, "last_seen_examples": [ { @@ -11714,7 +11714,7 @@ "investigated_at": "2026-08-26T00:00:00Z", "investigated_by": "Claude (Sonnet 5), dispatched via tri-comparison-ledger-sweep", "language": "python", - "last_reconciled_at": "2026-08-31T00:25:17Z", + "last_reconciled_at": "2026-08-31T00:51:49Z", "last_seen_count": 100, "last_seen_examples": [ { @@ -11820,7 +11820,7 @@ "investigated_at": "2026-08-24T04:14:26Z", "investigated_by": "Antigravity (direct sweep)", "language": "ruby", - "last_reconciled_at": "2026-08-31T00:25:17Z", + "last_reconciled_at": "2026-08-31T00:51:50Z", "last_seen_count": 2, "last_seen_examples": [ { @@ -11862,7 +11862,7 @@ "investigated_at": "2026-08-24T04:14:26Z", "investigated_by": "Antigravity (direct sweep)", "language": "ruby", - "last_reconciled_at": "2026-08-31T00:25:17Z", + "last_reconciled_at": "2026-08-31T00:51:50Z", "last_seen_count": 6, "last_seen_examples": [ { @@ -11940,7 +11940,7 @@ "investigated_at": "2026-08-24T04:14:26Z", "investigated_by": "Antigravity (direct sweep)", "language": "ruby", - "last_reconciled_at": "2026-08-31T00:25:17Z", + "last_reconciled_at": "2026-08-31T00:51:50Z", "last_seen_count": 3, "last_seen_examples": [ { @@ -11991,7 +11991,7 @@ "investigated_at": "2026-08-24T04:14:26Z", "investigated_by": "Antigravity (direct sweep)", "language": "ruby", - "last_reconciled_at": "2026-08-31T00:25:17Z", + "last_reconciled_at": "2026-08-31T00:51:50Z", "last_seen_count": 6, "last_seen_examples": [ { @@ -12069,7 +12069,7 @@ "investigated_at": "2026-08-26T00:00:00Z", "investigated_by": "Claude (Sonnet 5), dispatched via tri-comparison-ledger-sweep", "language": "ruby", - "last_reconciled_at": "2026-08-31T00:25:17Z", + "last_reconciled_at": "2026-08-31T00:51:50Z", "last_seen_count": 9, "last_seen_examples": [ { @@ -12165,7 +12165,7 @@ "investigated_at": "2026-08-26T00:00:00Z", "investigated_by": "Claude (Sonnet 5), dispatched via tri-comparison-ledger-sweep", "language": "rust", - "last_reconciled_at": "2026-08-31T00:25:21Z", + "last_reconciled_at": "2026-08-31T00:51:52Z", "last_seen_count": 14, "last_seen_examples": [ { @@ -12279,7 +12279,7 @@ "investigated_at": "2026-08-19T00:00:00Z", "investigated_by": "Claude Sonnet 5 (resolved directly via live ctags run, no dispatch)", "language": "rust", - "last_reconciled_at": "2026-08-31T00:25:21Z", + "last_reconciled_at": "2026-08-31T00:51:52Z", "last_seen_count": 3, "last_seen_examples": [ { @@ -12332,7 +12332,7 @@ "investigated_at": "2026-08-19T00:00:00Z", "investigated_by": "Gemini (dispatched via tri-comparison-ledger-sweep), confirmed by Claude Sonnet 5", "language": "rust", - "last_reconciled_at": "2026-08-31T00:25:21Z", + "last_reconciled_at": "2026-08-31T00:51:52Z", "last_seen_count": 25, "last_seen_examples": [ { @@ -12445,7 +12445,7 @@ "investigated_at": "2026-08-26T00:00:00Z", "investigated_by": "Claude (Sonnet 5), dispatched via tri-comparison-ledger-sweep", "language": "rust", - "last_reconciled_at": "2026-08-31T00:25:21Z", + "last_reconciled_at": "2026-08-31T00:51:52Z", "last_seen_count": 25, "last_seen_examples": [ { @@ -12551,7 +12551,7 @@ "investigated_at": "2026-08-26T00:00:00Z", "investigated_by": "Claude (Sonnet 5), dispatched via tri-comparison-ledger-sweep", "language": "rust", - "last_reconciled_at": "2026-08-31T00:25:21Z", + "last_reconciled_at": "2026-08-31T00:51:52Z", "last_seen_count": 3, "last_seen_examples": [ { @@ -12602,7 +12602,7 @@ "investigated_at": "2026-08-19T00:00:00Z", "investigated_by": "Gemini (dispatched via tri-comparison-ledger-sweep, 2 rounds with self-correction), confirmed by Claude Sonnet 5", "language": "rust", - "last_reconciled_at": "2026-08-31T00:25:21Z", + "last_reconciled_at": "2026-08-31T00:51:52Z", "last_seen_count": 21, "last_seen_examples": [ { @@ -12714,7 +12714,7 @@ "investigated_at": "2026-08-19T00:00:00Z", "investigated_by": "Gemini (dispatched via tri-comparison-ledger-sweep), confirmed by Claude Sonnet 5", "language": "rust", - "last_reconciled_at": "2026-08-31T00:25:21Z", + "last_reconciled_at": "2026-08-31T00:51:52Z", "last_seen_count": 21, "last_seen_examples": [ { @@ -12828,7 +12828,7 @@ "investigated_at": "2026-08-26T00:00:00Z", "investigated_by": "Claude (Sonnet 5), dispatched via tri-comparison-ledger-sweep", "language": "rust", - "last_reconciled_at": "2026-08-31T00:25:21Z", + "last_reconciled_at": "2026-08-31T00:51:52Z", "last_seen_count": 83, "last_seen_examples": [ { @@ -12942,7 +12942,7 @@ "investigated_at": "2026-08-26T00:00:00Z", "investigated_by": "Claude (Sonnet 5), dispatched via tri-comparison-ledger-sweep", "language": "rust", - "last_reconciled_at": "2026-08-31T00:25:21Z", + "last_reconciled_at": "2026-08-31T00:51:52Z", "last_seen_count": 1, "last_seen_examples": [ { @@ -12975,7 +12975,7 @@ "investigated_at": "2026-08-19T00:00:00Z", "investigated_by": "Claude Sonnet 5 (resolved directly via live ctags run, no dispatch)", "language": "rust", - "last_reconciled_at": "2026-08-31T00:25:21Z", + "last_reconciled_at": "2026-08-31T00:51:52Z", "last_seen_count": 1, "last_seen_examples": [ { @@ -13010,7 +13010,7 @@ "investigated_at": "2026-08-19T00:00:00Z", "investigated_by": "Claude Sonnet 5 (resolved from existing Claim 6 documentation, no dispatch)", "language": "rust", - "last_reconciled_at": "2026-08-31T00:25:21Z", + "last_reconciled_at": "2026-08-31T00:51:52Z", "last_seen_count": 152, "last_seen_examples": [ { @@ -13123,7 +13123,7 @@ "investigated_at": "2026-08-26T00:00:00Z", "investigated_by": "Claude (Sonnet 5), dispatched via tri-comparison-ledger-sweep", "language": "rust", - "last_reconciled_at": "2026-08-31T00:25:21Z", + "last_reconciled_at": "2026-08-31T00:51:52Z", "last_seen_count": 152, "last_seen_examples": [ { @@ -13229,7 +13229,7 @@ "investigated_at": "2026-08-24T04:14:26Z", "investigated_by": "Antigravity (direct sweep)", "language": "scala", - "last_reconciled_at": "2026-08-31T00:25:23Z", + "last_reconciled_at": "2026-08-31T00:51:53Z", "last_seen_count": 16, "last_seen_examples": [ { @@ -13332,7 +13332,7 @@ "investigated_at": "2026-08-20", "investigated_by": "gemini-3.1-pro-high (agy), dispatched via tri-comparison-ledger-sweep, reviewed and fixed by claude-sonnet-5", "language": "scheme", - "last_reconciled_at": "2026-08-31T00:25:27Z", + "last_reconciled_at": "2026-08-31T00:51:55Z", "last_seen_count": 84, "last_seen_examples": [ { @@ -13439,7 +13439,7 @@ "investigated_at": "2026-08-24T04:14:26Z", "investigated_by": "Antigravity (direct sweep)", "language": "scheme", - "last_reconciled_at": "2026-08-31T00:25:27Z", + "last_reconciled_at": "2026-08-31T00:51:55Z", "last_seen_count": 50, "last_seen_examples": [ { @@ -13541,7 +13541,7 @@ "investigated_at": "2026-08-28T23:59:00Z", "investigated_by": "Claude (Sonnet 5), direct investigation via tri-comparison-ledger-sweep", "language": "shell", - "last_reconciled_at": "2026-08-31T00:25:30Z", + "last_reconciled_at": "2026-08-31T00:51:57Z", "last_seen_count": 11, "last_seen_examples": [ { @@ -13655,7 +13655,7 @@ "investigated_at": "2026-08-28T23:59:00Z", "investigated_by": "Claude (Sonnet 5), direct investigation via tri-comparison-ledger-sweep", "language": "shell", - "last_reconciled_at": "2026-08-31T00:25:30Z", + "last_reconciled_at": "2026-08-31T00:51:57Z", "last_seen_count": 14, "last_seen_examples": [ { @@ -13769,7 +13769,7 @@ "investigated_at": "2026-08-28T23:59:00Z", "investigated_by": "Claude (Sonnet 5), direct investigation via tri-comparison-ledger-sweep", "language": "shell", - "last_reconciled_at": "2026-08-31T00:25:30Z", + "last_reconciled_at": "2026-08-31T00:51:57Z", "last_seen_count": 1, "last_seen_examples": [ { @@ -13802,7 +13802,7 @@ "investigated_at": "2026-08-28T23:59:00Z", "investigated_by": "Claude (Sonnet 5), direct investigation via tri-comparison-ledger-sweep", "language": "shell", - "last_reconciled_at": "2026-08-31T00:25:30Z", + "last_reconciled_at": "2026-08-31T00:51:57Z", "last_seen_count": 41, "last_seen_examples": [ { @@ -13916,7 +13916,7 @@ "investigated_at": "2026-08-28T23:59:00Z", "investigated_by": "Claude (Sonnet 5), direct investigation via tri-comparison-ledger-sweep", "language": "shell", - "last_reconciled_at": "2026-08-31T00:25:30Z", + "last_reconciled_at": "2026-08-31T00:51:57Z", "last_seen_count": 1, "last_seen_examples": [ { @@ -13952,7 +13952,7 @@ "investigated_at": "2026-08-24T04:14:26Z", "investigated_by": "Antigravity (direct sweep)", "language": "solidity", - "last_reconciled_at": "2026-08-31T00:25:31Z", + "last_reconciled_at": "2026-08-31T00:51:58Z", "last_seen_count": 6, "last_seen_examples": [ { @@ -14022,7 +14022,7 @@ "investigated_at": "2026-08-30", "investigated_by": "Claude (Sonnet 5), direct investigation via tri-comparison-ledger-sweep", "language": "sqlite", - "last_reconciled_at": "2026-08-31T00:25:32Z", + "last_reconciled_at": "2026-08-31T00:51:59Z", "last_seen_count": 2, "last_seen_examples": [ { @@ -14062,7 +14062,7 @@ "investigated_at": "2026-08-30", "investigated_by": "Claude (Sonnet 5), direct investigation via tri-comparison-ledger-sweep", "language": "sqlite", - "last_reconciled_at": "2026-08-31T00:25:32Z", + "last_reconciled_at": "2026-08-31T00:51:59Z", "last_seen_count": 7, "last_seen_examples": [ { @@ -14142,7 +14142,7 @@ "investigated_at": "2026-08-30", "investigated_by": "Claude (Sonnet 5), direct investigation via tri-comparison-ledger-sweep", "language": "sqlite", - "last_reconciled_at": "2026-08-31T00:25:32Z", + "last_reconciled_at": "2026-08-31T00:51:59Z", "last_seen_count": 734, "last_seen_examples": [ { @@ -14244,7 +14244,7 @@ "investigated_at": "2026-08-24T04:14:26Z", "investigated_by": "Antigravity (direct sweep)", "language": "swift", - "last_reconciled_at": "2026-08-31T00:25:33Z", + "last_reconciled_at": "2026-08-31T00:52:00Z", "last_seen_count": 2, "last_seen_examples": [ { @@ -14285,7 +14285,7 @@ "investigated_at": "2026-08-24T04:14:26Z", "investigated_by": "Antigravity (direct sweep)", "language": "swift", - "last_reconciled_at": "2026-08-31T00:25:33Z", + "last_reconciled_at": "2026-08-31T00:52:00Z", "last_seen_count": 1, "last_seen_examples": [ { @@ -14318,7 +14318,7 @@ "investigated_at": "2026-08-24T04:14:26Z", "investigated_by": "Antigravity (direct sweep)", "language": "swift", - "last_reconciled_at": "2026-08-31T00:25:33Z", + "last_reconciled_at": "2026-08-31T00:52:00Z", "last_seen_count": 1, "last_seen_examples": [ { @@ -14350,7 +14350,7 @@ "investigated_at": "2026-08-24T04:14:26Z", "investigated_by": "Antigravity (direct sweep)", "language": "tcl", - "last_reconciled_at": "2026-08-31T00:25:35Z", + "last_reconciled_at": "2026-08-31T00:52:01Z", "last_seen_count": 13, "last_seen_examples": [ { @@ -14469,7 +14469,7 @@ "investigated_at": "2026-08-26T00:00:00Z", "investigated_by": "Claude (Sonnet 5), dispatched via tri-comparison-ledger-sweep", "language": "tcl", - "last_reconciled_at": "2026-08-31T00:25:35Z", + "last_reconciled_at": "2026-08-31T00:52:01Z", "last_seen_count": 2, "last_seen_examples": [ { @@ -14511,7 +14511,7 @@ "investigated_at": "2026-08-30", "investigated_by": "Claude (Sonnet 5), direct investigation via tri-comparison-ledger-sweep", "language": "tcl", - "last_reconciled_at": "2026-08-31T00:25:35Z", + "last_reconciled_at": "2026-08-31T00:52:01Z", "last_seen_count": 93, "last_seen_examples": [ { @@ -14625,7 +14625,7 @@ "investigated_at": "2026-08-24T04:14:26Z", "investigated_by": "Antigravity (direct sweep)", "language": "tcl", - "last_reconciled_at": "2026-08-31T00:25:35Z", + "last_reconciled_at": "2026-08-31T00:52:01Z", "last_seen_count": 16, "last_seen_examples": [ { @@ -14741,7 +14741,7 @@ "investigated_at": "2026-08-30", "investigated_by": "Claude (Sonnet 5), enriched during docs/language_status/tcl.md write-up via tri-comparison-ledger-sweep", "language": "tcl", - "last_reconciled_at": "2026-08-31T00:25:35Z", + "last_reconciled_at": "2026-08-31T00:52:01Z", "last_seen_count": 2, "last_seen_examples": [ { @@ -14782,7 +14782,7 @@ "investigated_at": "2026-08-26T00:00:00Z", "investigated_by": "Claude (Sonnet 5), dispatched via tri-comparison-ledger-sweep", "language": "tcl", - "last_reconciled_at": "2026-08-31T00:25:35Z", + "last_reconciled_at": "2026-08-31T00:52:01Z", "last_seen_count": 2, "last_seen_examples": [ { @@ -14826,7 +14826,7 @@ "investigated_at": "2026-08-26T00:00:00Z", "investigated_by": "Claude (Sonnet 5), dispatched via tri-comparison-ledger-sweep", "language": "tcl", - "last_reconciled_at": "2026-08-31T00:25:35Z", + "last_reconciled_at": "2026-08-31T00:52:01Z", "last_seen_count": 2, "last_seen_examples": [ { @@ -14871,7 +14871,7 @@ "investigated_at": "2026-08-26T00:00:00Z", "investigated_by": "Claude (Sonnet 5), dispatched via tri-comparison-ledger-sweep", "language": "tcl", - "last_reconciled_at": "2026-08-31T00:25:35Z", + "last_reconciled_at": "2026-08-31T00:52:01Z", "last_seen_count": 2, "last_seen_examples": [ { @@ -14911,7 +14911,7 @@ "investigated_at": "2026-08-24T04:14:26Z", "investigated_by": "Antigravity (direct sweep)", "language": "typescript", - "last_reconciled_at": "2026-08-31T00:25:43Z", + "last_reconciled_at": "2026-08-31T00:52:04Z", "last_seen_count": 2, "last_seen_examples": [ { @@ -14953,7 +14953,7 @@ "investigated_at": "2026-08-24T04:14:26Z", "investigated_by": "Antigravity (direct sweep)", "language": "typescript", - "last_reconciled_at": "2026-08-31T00:25:43Z", + "last_reconciled_at": "2026-08-31T00:52:04Z", "last_seen_count": 501, "last_seen_examples": [ { @@ -15065,7 +15065,7 @@ "investigated_at": "2026-08-24T04:14:26Z", "investigated_by": "Antigravity (direct sweep)", "language": "typescript", - "last_reconciled_at": "2026-08-31T00:25:43Z", + "last_reconciled_at": "2026-08-31T00:52:04Z", "last_seen_count": 4, "last_seen_examples": [ { @@ -15125,7 +15125,7 @@ "investigated_at": "2026-08-26T00:00:00Z", "investigated_by": "Claude (Sonnet 5), dispatched via tri-comparison-ledger-sweep", "language": "typescript", - "last_reconciled_at": "2026-08-31T00:25:43Z", + "last_reconciled_at": "2026-08-31T00:52:04Z", "last_seen_count": 1, "last_seen_examples": [ { @@ -15158,7 +15158,7 @@ "investigated_at": "2026-08-26T16:02:21Z", "investigated_by": "Claude (Sonnet 5), tri-comparison-ledger-sweep skill", "language": "typescript", - "last_reconciled_at": "2026-08-31T00:25:43Z", + "last_reconciled_at": "2026-08-31T00:52:04Z", "last_seen_count": 7, "last_seen_examples": [ { @@ -15245,7 +15245,7 @@ "investigated_at": "2026-08-24T04:14:26Z", "investigated_by": "Antigravity (direct sweep)", "language": "typescript", - "last_reconciled_at": "2026-08-31T00:25:43Z", + "last_reconciled_at": "2026-08-31T00:52:04Z", "last_seen_count": 204, "last_seen_examples": [ { @@ -15359,7 +15359,7 @@ "investigated_at": "2026-08-24T04:14:26Z", "investigated_by": "Antigravity (direct sweep)", "language": "typescript", - "last_reconciled_at": "2026-08-31T00:25:43Z", + "last_reconciled_at": "2026-08-31T00:52:04Z", "last_seen_count": 2226, "last_seen_examples": [ { @@ -15475,7 +15475,7 @@ "investigated_at": "2026-08-24T04:14:26Z", "investigated_by": "Antigravity (direct sweep)", "language": "typescript", - "last_reconciled_at": "2026-08-31T00:25:43Z", + "last_reconciled_at": "2026-08-31T00:52:04Z", "last_seen_count": 2, "last_seen_examples": [ { @@ -15516,7 +15516,7 @@ "investigated_at": "2026-08-26T00:00:00Z", "investigated_by": "Claude (Sonnet 5), dispatched via tri-comparison-ledger-sweep", "language": "typescript", - "last_reconciled_at": "2026-08-31T00:25:43Z", + "last_reconciled_at": "2026-08-31T00:52:04Z", "last_seen_count": 2, "last_seen_examples": [ { @@ -15558,7 +15558,7 @@ "investigated_at": "2026-08-26T16:02:21Z", "investigated_by": "Claude (Sonnet 5), tri-comparison-ledger-sweep skill", "language": "typescript", - "last_reconciled_at": "2026-08-31T00:25:43Z", + "last_reconciled_at": "2026-08-31T00:52:04Z", "last_seen_count": 2, "last_seen_examples": [ { @@ -15601,7 +15601,7 @@ "investigated_at": "2026-08-26T00:00:00Z", "investigated_by": "Claude (Sonnet 5), dispatched via tri-comparison-ledger-sweep", "language": "typescript", - "last_reconciled_at": "2026-08-31T00:25:43Z", + "last_reconciled_at": "2026-08-31T00:52:04Z", "last_seen_count": 183, "last_seen_examples": [ { @@ -15704,7 +15704,7 @@ "investigated_at": "2026-08-27", "investigated_by": "claude-sonnet-5, dispatched via tri-comparison-ledger-sweep", "language": "yacc", - "last_reconciled_at": "2026-08-31T00:25:43Z", + "last_reconciled_at": "2026-08-31T00:52:04Z", "last_seen_count": 18, "last_seen_examples": [ { @@ -15811,7 +15811,7 @@ "investigated_at": "2026-08-23T18:02:16Z", "investigated_by": "Antigravity", "language": "zig", - "last_reconciled_at": "2026-08-31T00:25:53Z", + "last_reconciled_at": "2026-08-31T00:52:08Z", "last_seen_count": 1, "last_seen_examples": [ { @@ -15846,7 +15846,7 @@ "investigated_at": "2026-08-23T18:02:16Z", "investigated_by": "Antigravity", "language": "zig", - "last_reconciled_at": "2026-08-31T00:25:53Z", + "last_reconciled_at": "2026-08-31T00:52:08Z", "last_seen_count": 2, "last_seen_examples": [ { @@ -15889,7 +15889,7 @@ "investigated_at": "2026-08-23T18:02:16Z", "investigated_by": "Antigravity", "language": "zig", - "last_reconciled_at": "2026-08-31T00:25:53Z", + "last_reconciled_at": "2026-08-31T00:52:08Z", "last_seen_count": 1, "last_seen_examples": [ { diff --git a/docs/self_scan/tri_comparison_points_of_interest.md b/docs/self_scan/tri_comparison_points_of_interest.md index aebf914e6..991b63d98 100644 --- a/docs/self_scan/tri_comparison_points_of_interest.md +++ b/docs/self_scan/tri_comparison_points_of_interest.md @@ -52,8 +52,8 @@ Sorted 2-vs-1 splits before 3-way splits, unvalidated before validated, biggest *2-vs-1 -- 1790 occurrences as of 2026-08-31T00:23:46Z* -**Verdict** (by Claude (Sonnet 5), direct investigation via tri-comparison-ledger-sweep, 2026-08-27T00:00:00Z): -> Re-validated 2026-08-27 (same PR as the mirror shape). All 26 occurrences are ctags' generic Asm parser tagging line-start labels that are not subroutine entries; GitGalaxy correctly excludes every one, confirmed by reading corpus source for each. (1) Data-emission labels: `intro`/`error_message`/`commands`/`int_0x20` in bootos/os.asm (`db`/`dw` string and jump-table data), `A`/`B`/`C` in hellosilicon/matrixmultneon.s (`.short`/`.fill` matrices), `prtstr`/`getcreditcards`/`instr` (`.asciz`/`.ascii` strings). (2) Section / object markers in cosmopolitan/ape.S: `__ro`/`cstr`/`_gdt_end`/`sconf` (`.endobj`), `ape_loader` (`.incbin`), `ape_phdrs`/`ape_macho`/`ape_grub`/`ape_mz`/`apesh` (ELF/Mach-O/Multiboot/shell header data emitted via `.long`/`.ascii`), `_gdtr`/`_gdtrlo` (GDT register values), `ape_idata_idtend`/`ape_idata_iatend` (`.byte` terminators). (3) `.Lenv0`/`.Largv0` -- `.L`-prefixed GCC compiler-local labels `func_start`'s negative lookahead deliberately excludes. The four NASM local-label name-normalization cases from the earlier sample (`load_vec`/`loop`/`empty`/`find`) are gone: the reconciler now pairs them with GitGalaxy's dot-prefixed form. No GitGalaxy recall miss remains in this shape -- the #1949 `_slice_by_labels` cases were fixed and that issue is closed. ctags already pays for these in its own precision denominator (it alone claims them); no credit/debit adjustment applies -- there is no shared-consensus mistake to debit and nothing of GitGalaxy's to credit. +**Verdict** (by Claude (Sonnet 5), direct investigation via tri-comparison-ledger-sweep, 2026-08-31): +> Re-validated 2026-08-31 after the corpus grew 3->16 folders (253 new files, PR #13). Same confirmed mechanism as the prior 2026-08-27 verdict (ctags' generic Asm parser tagging line-start tokens that are not subroutine entries; GitGalaxy correctly excludes every one), now confirmed at ~70x the sample size (1791 occurrences vs. 26) across every new folder, plus two NEW manifestations of the SAME underlying weakness the smaller corpus never exercised: (1) MACRO-INVOCATION-KEYWORD mistagging -- ctags tags the LITERAL macro name as if it were a label, not the real subroutine name inside it. Confirmed directly: NASM's own instruction-set self-test suite (nasm_testsuite/avx005.asm and siblings) uses a `%macro x 1+.nolist` wrapper invoked as bare `x OPCODE ...` on hundreds of lines with no colon anywhere -- `ctags -x --language-force=Asm` tags the word `x` as a 'label' up to 192 times in one file (confirmed via raw ctags run); cpm65_6502's `zproc NAME`/`zendproc` procedure- definition macro convention gets the identical treatment (`zproc`/`zendproc` themselves tagged as literal 'label' names, cpm65_6502/apps_devices.asm, 5 occurrences each) as does the `.label NAME` forward-declaration pseudo-op (tags the NAME as if `.label` itself were the definition, duplicating the real `zproc`-declared one). (2) BARE INSTRUCTION MNEMONIC mistagging on FASM-dialect files -- raspberrypi_baremetal's `format`/`include`/`code64` FASM-assembler directives desync ctags' line-start heuristic entirely, tagging ordinary indented instruction lines (`mov`, `add`, `ldr`, `ands`, `mrc`, ...) as repeated 'labels' (confirmed: x86_bare_metal/apm_shutdown.S tags `mov`x6/`int`x3/`xor`x2 with zero real labels present). GitGalaxy correctly excludes all of these -- its func_start regex requires an actual `name:` colon-terminated declaration head, which none of these forms have. No credit/debit: ctags already pays for these in its own precision denominator (it alone claims them); there is no shared-consensus mistake to debit and nothing of GitGalaxy's to credit. | file | name | GitGalaxy | tree-sitter | ctags | |---|---|---|---|---| @@ -72,8 +72,8 @@ Sorted 2-vs-1 splits before 3-way splits, unvalidated before validated, biggest *2-vs-1 -- 26 occurrences as of 2026-08-31T00:23:46Z* -**Verdict** (by Claude (Sonnet 5), direct investigation via tri-comparison-ledger-sweep, 2026-08-27T00:00:00Z): -> Re-validated 2026-08-27; down from 7 occurrences to 2 after two coordinated fixes in the same PR. Four of the original seven (`.load_vec`/`.loop`/`.empty`/`.find`, bootos/os.asm) were never a real disagreement: both tools found the identical label at the identical line, ctags' Asm parser just strips the leading `.` from NASM/GAS local labels while GitGalaxy keeps it verbatim -- `tri_comparison_reconcile.py` now normalizes a single leading dot before pairing, so these register as agreements. One (`ape.mbrpad`, cosmopolitan/ape.S:525) was a genuine GitGalaxy false positive -- a `.org`/`.endobj` MBR-padding object, not a subroutine -- now fixed by a `func_start` negative lookahead that rejects a label followed only by a pure data-emission / location-counter directive (the generic-assembly counterpart to agc_assembly's positive 'opcode must follow' lookahead). The remaining 2 (`.1`, `.2` in bootos/counter.asm:52,67) are real NASM numeric local CODE labels -- `.1:` opens a routine (`int 0x22` ...), `.2:` likewise (`mov [di],ax` ...) -- that Universal Ctags' Asm parser structurally cannot tag (a tag name must start with a letter). GitGalaxy is correct here and ctags has a confirmed structural limitation, not an open question -> credit_tools: [gitgalaxy]. +**Verdict** (by Claude (Sonnet 5), direct investigation via tri-comparison-ledger-sweep, 2026-08-31): +> Re-validated 2026-08-31 after the corpus grew 3->16 folders; down from 26 to 21 occurrences -- 5 were a real, confirmed GitGalaxy engine defect, now FIXED (not just credited): assembly's own lexical_family ('line_exclusive') only ever recognized `;`/`#` line comments, but `.S` files are routed through the C preprocessor and routinely carry genuine `/* ... */` block comments (BSD/FreeBSD license headers, Emacs modelines, register-usage doc comments) that were never stripped at all -- func_start matched label-shaped text INSIDE the unstripped comment: `Result:` (linux_1_0_kernel/drivers_FPU-emu_reg_u_div.S, a stack-layout doc comment) and `r9:`/`r10:`/`r11:` (freebsd_kernel_arch/amd64_amd64_kexec_tramp.S, a register-usage doc comment). Fixed by adding a new `_strip_asm_block_comments` pre-processing pass in prism.py, run BEFORE `;`/`#` line-stripping (confirmed via direct corpus measurement, not assumed: 121 real `/* ... */` blocks in this corpus contain a bare `;`/`#` internally -- copyright prose, URLs, Emacs modelines -- so line-stripping first would truncate every one of those blocks at its first internal `;`/`#`, corrupting the search for the block's real closing `*/`; the reverse risk, a `;`/`#` comment containing an unclosed `/*`, was checked and found to occur zero times in this corpus). Verified: exactly 5 fewer func_start matches corpus-wide post-fix (1144 -> 1139), matching the confirmed count precisely; both golden masters re-blessed. The remaining 21 are all confirmed GitGalaxy-correct, ctags-structurally-can't, via two established mechanisms plus one newly-confirmed variant of the first: (1) NASM leading-dot local labels (`.loop`/`.find`/`.empty`/`.load_vec`/`.getgot`/`.setcs`/`.no_error`/`.disconnect_error`, bootos/os.asm + nasm_testsuite/aoutso.asm + x86_bare_metal/*, 8 occ) and numeric local labels (`.1`/`.2`, bootos/counter.asm, 2 occ) -- ctags strips the leading dot (normalized by the reconciler) or can't tag a name starting with a digit at all, same precedent as the prior verdict. (2) NEW: GAS's `funcname.localname:` dot-SCOPED local-label convention (NOT leading-dot -- the dot sits in the middle, scoping a jump target to its enclosing routine) -- `do_e820.jmpin`/`do_e820.e820lp`/`do_e820.e820f`/`do_e820.skipent`/`do_e820.notext`/`do_e820.failed` (x86_bare_metal/bios_detect_memory.S, 6 occ) and `seta20.1`/`seta20.2` (xv6_x86_kernel/bootasm.S, 2 occ) -- confirmed via raw ctags run: it tags the real top-level `do_e820` fine but zero of its six dotted sub-labels, a structural inability to parse a `.` inside a label name in this position, not a GitGalaxy over-match (GitGalaxy's own inclusion of these as separate satellites, rather than folding them into the enclosing routine, matches its existing, established policy for NASM leading-dot locals in bucket 1 -- consistent, not a new design question). (3) Real subroutines a `zproc`/custom-macro-heavy file declares via a genuine `name:` label that ctags' 'zproc'/'.label'-mistagging (see the sibling shape's verdict) causes it to miss entirely -- `skip`/`syntax_error`/`write_char`/`io_error`/`justprint` (cpm65_6502/apps_bedit.asm, 6 occ), `longjmp` (cosmopolitan_runtime/longjmp.S -- confirmed real via its `_longjmp:` sibling and `#ifdef __x86_64__` body), `end` (os_tutorial_x86 + x86_bare_metal/bios_pixel*.S, 3 occ). One residual, ACKNOWLEDGED false positive, not chased (single occurrence, narrow root cause): xv6_x86_kernel/usys.S's `name` -- `#define SYSCALL(name) \\n .globl name; \\n name: \\n ...`, a C-preprocessor macro TEMPLATE where `name` is a parameter, not a real label; func_start matches the literal `name:` inside the macro's own body text (a textual regex has no concept of preprocessor parameter substitution). Left in the credited shape's count since it's a single, narrow, low-value edge case (one occurrence in the whole corpus) against 20 confirmed-correct siblings -- documented here rather than silently absorbed into the credit, or chased for a fix disproportionate to its impact. | file | name | GitGalaxy | tree-sitter | ctags | |---|---|---|---|---| diff --git a/gitgalaxy/core/prism.py b/gitgalaxy/core/prism.py index 506463bb9..1bd209255 100644 --- a/gitgalaxy/core/prism.py +++ b/gitgalaxy/core/prism.py @@ -337,6 +337,9 @@ def _strip_segment_comments(self, text: str, lang_id: str, family: str) -> tuple elif lang_id == "powershell": text, ps_lits = self._strip_powershell_herestrings(text) lits.extend(ps_lits) + elif lang_id == "assembly": + text, asm_lits = self._strip_asm_block_comments(text) + lits.extend(asm_lits) # 2. SPECIALIZED LEXICAL FAMILY ROUTING # #386: these three used to check "recursive_c_style"/"column_sensitive"/ @@ -693,6 +696,47 @@ def _repl(m: "re.Match[str]") -> str: return self._PS_HERESTRING_RE.sub(_repl, text), lits + def _strip_asm_block_comments(self, text: str) -> tuple[str, list[str]]: + """Strips C-style `/* ... */` block comments before assembly's own `line_exclusive` + family (`;`/`#` line comments only, per its own docstring: "The language possesses no + native multi-line block syntax") ever runs. Real gap, not theoretical: `.S` files are + routed through the C preprocessor before assembling, so both GAS and NASM `.S`/`.asm` + sources routinely carry genuine `/* */` blocks (BSD/FreeBSD kernel license headers, Emacs + modelines, register-usage doc comments) that `line_exclusive` never recognized at all -- + confirmed real corpus false positives (`func_start` matching label-shaped text INSIDE an + unstripped block comment): `Result:` (linux_1_0_kernel/drivers_FPU-emu_reg_u_div.S, a + stack-layout doc comment) and `r9:`/`r10:`/`r11:` (freebsd_kernel_arch/amd64_amd64_ + kexec_tramp.S, a register-usage doc comment), 5 occurrences total across the corpus. + + Runs BEFORE `;`/`#` line-stripping, not after -- deliberately, confirmed by direct corpus + measurement rather than assumed either way. 121 real `/* ... */` blocks in this same + corpus contain a bare `;` or `#` (copyright-header prose, URLs, Emacs modelines like + `/*-*- mode:unix-assembly; indent-tabs-mode:t; ... -*-*/`, and `/* #define ... */`-style + commented-out-code notes) -- stripping line comments FIRST would truncate every one of + those blocks at its first internal `;`/`#`, corrupting the search for the block's real + closing `*/` (silently swallowing everything up to the next UNRELATED `*/` later in the + file, or the whole rest of the file if none exists). The reverse direction was also + checked and found clean: zero lines in this corpus have a `;`/`#` line comment containing + an unclosed `/*` that could similarly mis-pair with a later real `*/`. Same shielded- + alternation idiom as the generic REGEX_MATRIX stripper (LITERAL_MASK_PATTERN tried first + so a `/*`-shaped byte sequence inside a real string literal, e.g. `.ascii "a /* b"`, + passes through unharmed), same non-greedy-bounded-by-two-fixed-delimiters shape already + accepted as ReDoS-safe for every "standard_block" C-family language's own `/\\*.*?\\*/`. + """ + lits: list[str] = [] + pattern = re.compile(rf"{self.LITERAL_MASK_PATTERN}|(/\*.*?\*/)", re.DOTALL) + + def _repl(m: "re.Match[str]") -> str: + if m.group(1) is not None: + return m.group(0) + comment = m.group(2) + lits.append(comment.strip()) + return "\n" * comment.count("\n") + + return pattern.sub(_repl, text), lits + + return self._PS_HERESTRING_RE.sub(_repl, text), lits + _LUA_LONG_BRACKET_RE = re.compile(r"(?:--)?\[(=*)\[.*?\]\1\]", re.DOTALL) @staticmethod diff --git a/tests/core_engine/test_prism.py b/tests/core_engine/test_prism.py index c7bfd88e2..90b62f73b 100644 --- a/tests/core_engine/test_prism.py +++ b/tests/core_engine/test_prism.py @@ -42,6 +42,7 @@ "html": {"lexical_family": "xml"}, "php": {"lexical_family": "standard_block"}, "livecode": {"lexical_family": "multi_style_live"}, + "assembly": {"lexical_family": "line_exclusive"}, } @@ -1188,3 +1189,65 @@ def test_prism_recursive_block_lisp_redos_immunity(): real_prism.split_streams(poison, "scheme") duration = time.time() - start assert duration < 2.0, f"recursive_block_lisp took {duration:.2f}s on a pathological unterminated payload" + + +def test_prism_assembly_strips_c_style_block_comments(prism_engine): + """ + Assembly's own lexical_family ("line_exclusive") only ever recognized `;`/`#` line + comments -- real gap, since `.S` files are routed through the C preprocessor and + routinely carry genuine `/* ... */` blocks (BSD/FreeBSD kernel license headers, Emacs + modelines, register-usage doc comments). Confirmed real corpus false positives: + label-shaped text INSIDE an unstripped block comment matching func_start + (`Result:` in a stack-layout doc comment, `r9:`/`r10:`/`r11:` in a register-usage doc + comment). Proves the block comment is gone from code_stream and landed in + comment_stream instead. + """ + src = "/*\n * Registers on entry:\n * r9: image pointer\n */\nreal_func:\n\tret\n" + res = prism_engine.split_streams(src, primary_lang="assembly") + assert "r9:" not in res["code_stream"] + assert "real_func:" in res["code_stream"] + assert "r9" in res["comment_stream"] + + +def test_prism_assembly_block_comment_stripped_before_line_comments(prism_engine): + """ + Regression test for the real ordering hazard: 121 real `/* ... */` blocks in the + assembly corpus contain a bare `;` or `#` (copyright prose, URLs, Emacs modelines like + `/*-*- mode:unix-assembly; indent-tabs-mode:t; ... -*-*/`). If `;`/`#` line-stripping + ran FIRST, every one of those blocks would get truncated at its first internal `;`/`#`, + corrupting the search for the block's real closing `*/` and silently swallowing + everything up to the next unrelated `*/` (or the rest of the file). Block-comment + stripping must run first so the semicolon inside this comment never gets a chance to + truncate it before the real `*/` is found. + """ + src = "/* mode:unix-assembly; indent-tabs-mode:t */\nreal_func:\n\tret\n" + res = prism_engine.split_streams(src, primary_lang="assembly") + assert "real_func:" in res["code_stream"], ( + f"block comment's internal ';' corrupted comment-span detection: {res['code_stream']!r}" + ) + + +def test_prism_assembly_block_comment_shields_string_literals(prism_engine): + """A `/*`-shaped byte sequence inside a real string literal (e.g. an `.ascii` directive) + must not be misread as a block-comment opener -- LITERAL_MASK_PATTERN is tried first in + the same shielded-alternation idiom the generic REGEX_MATRIX stripper already uses.""" + src = 'msg:\n\t.ascii "a /* not a comment */ b"\nreal_func:\n\tret\n' + res = prism_engine.split_streams(src, primary_lang="assembly") + assert '"a /* not a comment */ b"' in res["code_stream"] + assert "real_func:" in res["code_stream"] + + +def test_prism_assembly_block_comment_redos_immunity(): + """ReDoS check: an adversarial payload with a `/*` opener and no closing `*/` must + resolve well under the generous timeout used throughout this suite -- same + non-greedy-bounded-by-two-fixed-delimiters shape already accepted as safe for every + "standard_block" C-family language's own `/\\*.*?\\*/`.""" + from gitgalaxy.standards.gitgalaxy_config import LEXICAL_FAMILY_HEURISTICS + from gitgalaxy.standards.language_standards import LANGUAGE_DEFINITIONS + + real_prism = Prism(LEXICAL_FAMILY_HEURISTICS, LANGUAGE_DEFINITIONS) + poison = "/* " + ("a" * 50000) + "\nreal_func:\n\tret\n" + start = time.time() + real_prism.split_streams(poison, "assembly") + duration = time.time() - start + assert duration < 2.0, f"assembly block-comment stripping took {duration:.2f}s on an unterminated payload" diff --git a/tests/golden_master_audit.json b/tests/golden_master_audit.json index 5029497e9..870bfa14f 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": "/home/joe/nyx_projects/gitgalaxy-worktrees/language-crucible/data", - "Analysis ISO Timestamp": "2026-08-31T00:12:35.500686+00:00", - "Total Scan Duration": "47.62 seconds" + "Absolute Project Path": "/srv/storage_16tb/projects/gitgalaxy/language-crucible/data", + "Analysis ISO Timestamp": "2026-08-31T00:40:58.605649+00:00", + "Total Scan Duration": "19.92 seconds" }, "Source Control Footprint (Immutable Anchor)": { "Active Branch": "HEAD", "Commit Hash (SHA-1)": "77bc85ecb8bb2fa8331b83f2bd348ec735df66e3", - "Remote Origin URL": "https://github.com/squid-protocol/language-crucible", + "Remote Origin URL": "https://github.com/squid-protocol/language-crucible.git", "Last Code Integration Date": "2026-08-30T08:52:00-04:00" } }, @@ -26,7 +26,7 @@ "summary": { "total_files": 3365, "verified_files": 2817, - "total_loc": 841829, + "total_loc": 838124, "dominant_language": "c", "volatility_index": 0.0, "Percent_Visible": 83.7 @@ -236,10 +236,10 @@ } }, "health": { - "avg_cognitive_load": 29.793, - "avg_safety_score": 47.7, - "avg_tech_debt": 40.24, - "avg_documentation": 29.962 + "avg_cognitive_load": 29.832, + "avg_safety_score": 47.73, + "avg_tech_debt": 40.282, + "avg_documentation": 29.725 }, "composition": { "markdown": { @@ -274,8 +274,8 @@ }, "assembly": { "files": 232, - "loc": 39842, - "impact": 10644.619999999995 + "loc": 36137, + "impact": 10514.060000000005 }, "makefile": { "files": 4, @@ -658,20 +658,20 @@ }, "assembly/x86_bare_metal": { "file_count": 23, - "total_mass": 282.4, + "total_mass": 275.06, "avg_exposures": { - "cognitive_load": 17.65, - "safety_score": 72.86, - "tech_debt": 29.82, - "verification": 1.98, + "cognitive_load": 18.71, + "safety_score": 75.28, + "tech_debt": 30.42, + "verification": 1.83, "api_exposure": 0.22, "concurrency": 0.0, - "state_flux": 17.19, + "state_flux": 17.33, "dead_code": 4.26, - "spec_match": 79.13, + "spec_match": 71.01, "stability": 47.83, "churn": 0.0, - "documentation": 47.94, + "documentation": 42.11, "secrets_risk": 0.0 } }, @@ -2425,39 +2425,39 @@ }, "assembly/cosmopolitan": { "file_count": 4, - "total_mass": 2014.36, + "total_mass": 2008.46, "avg_exposures": { - "cognitive_load": 25.54, - "safety_score": 38.28, - "tech_debt": 9.61, - "verification": 40.64, + "cognitive_load": 25.86, + "safety_score": 38.44, + "tech_debt": 10.68, + "verification": 40.65, "api_exposure": 4.42, "concurrency": 0.0, - "state_flux": 33.82, + "state_flux": 34.92, "dead_code": 2.9, "spec_match": 76.67, "stability": 50.0, "churn": 0.0, - "documentation": 35.96, + "documentation": 34.68, "secrets_risk": 0.0 } }, "assembly/cosmopolitan_runtime": { "file_count": 15, - "total_mass": 224.78, + "total_mass": 217.88, "avg_exposures": { - "cognitive_load": 9.46, - "safety_score": 14.31, + "cognitive_load": 10.49, + "safety_score": 15.16, "tech_debt": 0.0, - "verification": 2.33, + "verification": 1.89, "api_exposure": 0.0, "concurrency": 0.0, - "state_flux": 14.9, + "state_flux": 17.03, "dead_code": 0.0, - "spec_match": 100.0, + "spec_match": 80.0, "stability": 50.0, "churn": 0.0, - "documentation": 39.5, + "documentation": 27.34, "secrets_risk": 0.0 } }, @@ -2501,39 +2501,39 @@ }, "assembly/freebsd_kernel_arch": { "file_count": 17, - "total_mass": 1311.26, + "total_mass": 1252.02, "avg_exposures": { - "cognitive_load": 7.65, - "safety_score": 30.7, - "tech_debt": 2.13, - "verification": 25.06, + "cognitive_load": 9.85, + "safety_score": 31.11, + "tech_debt": 3.15, + "verification": 25.1, "api_exposure": 2.02, - "concurrency": 3.65, - "state_flux": 2.81, + "concurrency": 4.08, + "state_flux": 1.55, "dead_code": 0.0, "spec_match": 94.12, "stability": 47.06, "churn": 0.0, - "documentation": 22.12, + "documentation": 15.82, "secrets_risk": 0.0 } }, "assembly/freebsd_libc_string": { "file_count": 25, - "total_mass": 465.18, + "total_mass": 443.26, "avg_exposures": { - "cognitive_load": 8.12, - "safety_score": 9.11, - "tech_debt": 1.9, - "verification": 2.01, + "cognitive_load": 8.83, + "safety_score": 9.25, + "tech_debt": 3.23, + "verification": 1.88, "api_exposure": 0.0, "concurrency": 0.0, - "state_flux": 5.83, + "state_flux": 6.53, "dead_code": 0.26, - "spec_match": 87.47, + "spec_match": 81.87, "stability": 48.0, "churn": 0.0, - "documentation": 23.34, + "documentation": 15.88, "secrets_risk": 0.0 } }, @@ -2577,20 +2577,20 @@ }, "assembly/linux_1_0_kernel": { "file_count": 19, - "total_mass": 1962.7, + "total_mass": 1933.44, "avg_exposures": { - "cognitive_load": 9.28, - "safety_score": 11.85, - "tech_debt": 9.21, + "cognitive_load": 9.99, + "safety_score": 12.03, + "tech_debt": 11.97, "verification": 47.21, "api_exposure": 3.33, "concurrency": 0.0, - "state_flux": 6.22, + "state_flux": 6.49, "dead_code": 0.63, - "spec_match": 94.74, + "spec_match": 94.04, "stability": 47.37, "churn": 0.0, - "documentation": 27.12, + "documentation": 24.39, "secrets_risk": 0.0 } }, @@ -2943,7 +2943,7 @@ "cognitive_load": 11.99, "safety_score": 63.41, "tech_debt": 58.71, - "verification": 2.21, + "verification": 2.2, "api_exposure": 0.06, "concurrency": 0.0, "state_flux": 42.49, @@ -5147,7 +5147,7 @@ "cognitive_load": 83.04, "safety_score": 95.16, "tech_debt": 48.9, - "verification": 35.83, + "verification": 35.82, "api_exposure": 0.74, "concurrency": 0.0, "state_flux": 100.0, @@ -6159,13 +6159,13 @@ "value": 100.0 }, { - "name": "c_hello_world_entry.S", - "path": "assembly/x86_bare_metal/c_hello_world_entry.S", + "name": "bios_cursor_position.S", + "path": "assembly/x86_bare_metal/bios_cursor_position.S", "value": 100.0 }, { - "name": "CBL0102v01DivisionAmbiente.cbl", - "path": "cobol/CICS-Cobol/CBL0102v01DivisionAmbiente.cbl", + "name": "bios_scroll.S", + "path": "assembly/x86_bare_metal/bios_scroll.S", "value": 100.0 } ], @@ -27928,7 +27928,7 @@ "Cognitive Load Exposure": "15.89%", "Error & Exception Exposure": "76.98%", "Tech Debt Exposure": "100.0%", - "Testing Exposure": "2.53%", + "Testing Exposure": "2.52%", "API Exposure": "6.04%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "45.13%", @@ -28136,7 +28136,7 @@ "Cognitive Load Exposure": "15.89%", "Error & Exception Exposure": "76.98%", "Tech Debt Exposure": "100.0%", - "Testing Exposure": "2.53%", + "Testing Exposure": "2.52%", "API Exposure": "6.04%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "45.13%", @@ -180972,7 +180972,7 @@ "Cognitive Load Exposure": "84.81%", "Error & Exception Exposure": "94.78%", "Tech Debt Exposure": "99.85%", - "Testing Exposure": "3.25%", + "Testing Exposure": "3.24%", "API Exposure": "6.53%", "Concurrency Exposure": "83.2%", "State Flux Exposure": "93.7%", @@ -243629,9 +243629,9 @@ "Identity Proof": "Metadata Anchor (README)" }, "2. Topological Coordinates": { - "X": 8042.1, + "X": 8041.42, "Y": -36.78, - "Z": -4254.82 + "Z": -4254.46 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -243786,9 +243786,9 @@ "Identity Proof": "Single Indicator (Ext: .json)" }, "2. Topological Coordinates": { - "X": 6994.85, + "X": 6994.16, "Y": 8.53, - "Z": -4099.01 + "Z": -4098.65 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -243944,9 +243944,9 @@ "Identity Proof": "Single Indicator (Ext: .pm)" }, "2. Topological Coordinates": { - "X": 7580.12, + "X": 7579.44, "Y": -1.39, - "Z": -4091.93 + "Z": -4091.57 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -245812,9 +245812,9 @@ "Identity Proof": "Metadata Anchor (Makefile.PL)" }, "2. Topological Coordinates": { - "X": 7829.86, + "X": 7829.17, "Y": 28.3, - "Z": -3504.48 + "Z": -3504.12 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -245972,9 +245972,9 @@ "Identity Proof": "Single Indicator (Ext: .pm)" }, "2. Topological Coordinates": { - "X": 7616.22, + "X": 7615.54, "Y": -83.58, - "Z": -4501.15 + "Z": -4500.79 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -246246,9 +246246,9 @@ "Identity Proof": "Single Indicator (Shebang)" }, "2. Topological Coordinates": { - "X": 7256.9, + "X": 7256.21, "Y": 50.88, - "Z": -3579.82 + "Z": -3579.47 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -257941,9 +257941,9 @@ "Identity Proof": "Prose Extension (.txt)" }, "2. Topological Coordinates": { - "X": -891.74, + "X": -891.71, "Y": -107.16, - "Z": -8287.49 + "Z": -8287.16 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -258098,9 +258098,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": -767.72, + "X": -767.69, "Y": -297.2, - "Z": -7142.6 + "Z": -7142.27 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -258261,9 +258261,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": -598.59, + "X": -598.56, "Y": -160.14, - "Z": -7922.32 + "Z": -7921.99 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -259136,9 +259136,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": -956.56, + "X": -956.53, "Y": -177.82, - "Z": -7356.03 + "Z": -7355.7 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -260588,9 +260588,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": -661.5, + "X": -661.47, "Y": -224.26, - "Z": -7723.01 + "Z": -7722.68 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -263008,9 +263008,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": -1183.29, + "X": -1183.26, "Y": -105.25, - "Z": -7730.01 + "Z": -7729.68 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -263468,9 +263468,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": -330.07, + "X": -330.04, "Y": -352.58, - "Z": -7362.37 + "Z": -7362.04 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -263680,9 +263680,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": -192.2, + "X": -192.18, "Y": -226.17, - "Z": -7754.74 + "Z": -7754.42 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -333229,7 +333229,7 @@ "Cognitive Load Exposure": "0.0%", "Error & Exception Exposure": "51.38%", "Tech Debt Exposure": "100.0%", - "Testing Exposure": "2.51%", + "Testing Exposure": "2.5%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -339509,9 +339509,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": 5844.64, + "X": 5843.97, "Y": 27.5, - "Z": -5549.52 + "Z": -5548.93 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -339666,9 +339666,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": 5705.17, + "X": 5704.5, "Y": 60.04, - "Z": -4250.62 + "Z": -4250.04 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -339823,9 +339823,9 @@ "Identity Proof": "Single Indicator (Ext: .agc)" }, "2. Topological Coordinates": { - "X": 6021.68, + "X": 6021.01, "Y": 38.26, - "Z": -4916.35 + "Z": -4915.77 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -340447,9 +340447,9 @@ "Identity Proof": "Single Indicator (Ext: .agc)" }, "2. Topological Coordinates": { - "X": 5259.37, + "X": 5258.7, "Y": 62.74, - "Z": -5471.83 + "Z": -5471.25 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -340803,9 +340803,9 @@ "Identity Proof": "Single Indicator (Ext: .agc)" }, "2. Topological Coordinates": { - "X": 5869.51, + "X": 5868.84, "Y": 68.01, - "Z": -4285.33 + "Z": -4284.75 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -341641,9 +341641,9 @@ "Identity Proof": "Single Indicator (Ext: .agc)" }, "2. Topological Coordinates": { - "X": 4940.82, + "X": 4940.15, "Y": 1.53, - "Z": -4690.59 + "Z": -4690.0 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -342173,9 +342173,9 @@ "Identity Proof": "Single Indicator (Ext: .agc)" }, "2. Topological Coordinates": { - "X": 5229.0, + "X": 5228.33, "Y": 36.25, - "Z": -4422.63 + "Z": -4422.05 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -344766,9 +344766,9 @@ "Identity Proof": "Single Indicator (Ext: .agc)" }, "2. Topological Coordinates": { - "X": 5538.15, + "X": 5537.48, "Y": 79.79, - "Z": -5362.76 + "Z": -5362.18 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -345693,9 +345693,9 @@ "Identity Proof": "Single Indicator (Ext: .agc)" }, "2. Topological Coordinates": { - "X": 5550.26, + "X": 5549.59, "Y": 56.1, - "Z": -4651.27 + "Z": -4650.69 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -348747,9 +348747,9 @@ "Identity Proof": "Single Indicator (Ext: .agc)" }, "2. Topological Coordinates": { - "X": 4878.36, + "X": 4877.68, "Y": 49.14, - "Z": -4535.71 + "Z": -4535.13 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -348930,9 +348930,9 @@ "Identity Proof": "Single Indicator (Ext: .agc)" }, "2. Topological Coordinates": { - "X": 6108.88, + "X": 6108.2, "Y": 116.15, - "Z": -4401.21 + "Z": -4400.63 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -349194,9 +349194,9 @@ "Identity Proof": "Single Indicator (Ext: .agc)" }, "2. Topological Coordinates": { - "X": 5352.76, + "X": 5352.09, "Y": 56.62, - "Z": -4255.49 + "Z": -4254.9 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -356246,9 +356246,9 @@ "Identity Proof": "Single Indicator (Ext: .js)" }, "2. Topological Coordinates": { - "X": 3101.9, + "X": 3101.61, "Y": -96.09, - "Z": -9885.92 + "Z": -9885.04 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -357160,9 +357160,9 @@ "Identity Proof": "Single Indicator (Ext: .js)" }, "2. Topological Coordinates": { - "X": 2747.53, + "X": 2747.24, "Y": -174.73, - "Z": -9334.71 + "Z": -9333.82 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -358608,9 +358608,9 @@ "Identity Proof": "Single Indicator (Ext: .js)" }, "2. Topological Coordinates": { - "X": 3073.5, + "X": 3073.21, "Y": -49.48, - "Z": -9617.09 + "Z": -9616.2 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -360340,9 +360340,9 @@ "Identity Proof": "Single Indicator (Ext: .js)" }, "2. Topological Coordinates": { - "X": 3357.02, + "X": 3356.73, "Y": 40.54, - "Z": -9276.95 + "Z": -9276.06 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -360508,9 +360508,9 @@ "Identity Proof": "Single Indicator (Ext: .ts)" }, "2. Topological Coordinates": { - "X": 2576.21, + "X": 2575.92, "Y": -244.18, - "Z": -9679.28 + "Z": -9678.39 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -441424,9 +441424,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": 7382.79, + "X": 7382.56, "Y": 165.91, - "Z": -8431.5 + "Z": -8431.25 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -442227,9 +442227,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": 7002.18, + "X": 7001.95, "Y": 265.38, - "Z": -7716.43 + "Z": -7716.19 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -443197,9 +443197,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": 6790.38, + "X": 6790.15, "Y": 225.2, - "Z": -7952.09 + "Z": -7951.84 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -443478,9 +443478,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": 7827.85, + "X": 7827.62, "Y": 134.51, - "Z": -8177.29 + "Z": -8177.05 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -443750,9 +443750,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": 7640.99, + "X": 7640.76, "Y": 311.63, - "Z": -7256.63 + "Z": -7256.39 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -444028,9 +444028,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": 7295.44, + "X": 7295.21, "Y": 257.91, - "Z": -7911.52 + "Z": -7911.28 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -445138,9 +445138,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": 7204.62, + "X": 7204.39, "Y": 404.61, - "Z": -7211.93 + "Z": -7211.68 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -445529,9 +445529,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": 3754.91, + "X": 3754.49, "Y": -127.57, - "Z": -9732.61 + "Z": -9731.67 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -445686,9 +445686,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": 4534.3, + "X": 4533.89, "Y": -109.1, - "Z": -9553.3 + "Z": -9552.37 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -446918,9 +446918,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": 3541.85, + "X": 3541.43, "Y": -122.2, - "Z": -9222.05 + "Z": -9221.12 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -447638,9 +447638,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": 4001.69, + "X": 4001.27, "Y": -115.21, - "Z": -9117.88 + "Z": -9116.94 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -448960,9 +448960,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": 4066.5, + "X": 4066.08, "Y": -150.26, - "Z": -9703.69 + "Z": -9702.76 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -450009,9 +450009,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": 3854.07, + "X": 3853.66, "Y": -147.74, - "Z": -8521.18 + "Z": -8520.24 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -450381,9 +450381,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": 3775.19, + "X": 3774.77, "Y": -155.51, - "Z": -8959.09 + "Z": -8958.16 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -452209,9 +452209,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": 4360.74, + "X": 4360.32, "Y": -127.18, - "Z": -8645.3 + "Z": -8644.37 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -496813,7 +496813,7 @@ "Cognitive Load Exposure": "92.7%", "Error & Exception Exposure": "85.43%", "Tech Debt Exposure": "95.11%", - "Testing Exposure": "2.43%", + "Testing Exposure": "2.42%", "API Exposure": "2.71%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "100.0%", @@ -507866,7 +507866,7 @@ "Cognitive Load Exposure": "19.67%", "Error & Exception Exposure": "41.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.73%", + "Testing Exposure": "2.72%", "API Exposure": "3.67%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -514939,9 +514939,9 @@ "Identity Proof": "Ecosystem Consensus Lock (75% Local Dominance)" }, "2. Topological Coordinates": { - "X": 7272.86, + "X": 7272.24, "Y": -60.79, - "Z": -4920.59 + "Z": -4920.18 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -516284,9 +516284,9 @@ "Identity Proof": "Ecosystem Consensus Lock (75% Local Dominance)" }, "2. Topological Coordinates": { - "X": 7588.19, + "X": 7587.57, "Y": -58.65, - "Z": -4922.76 + "Z": -4922.35 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -518008,9 +518008,9 @@ "Identity Proof": "Ecosystem Consensus Lock (75% Local Dominance)" }, "2. Topological Coordinates": { - "X": 7867.75, + "X": 7867.13, "Y": -135.82, - "Z": -4487.98 + "Z": -4487.57 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -518462,9 +518462,9 @@ "Identity Proof": "Ecosystem Consensus Lock (75% Local Dominance)" }, "2. Topological Coordinates": { - "X": 7598.82, + "X": 7598.2, "Y": -69.43, - "Z": -5460.52 + "Z": -5460.1 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -558749,9 +558749,9 @@ "Identity Proof": "Single Indicator (Ext: .rs)" }, "2. Topological Coordinates": { - "X": 6690.35, + "X": 6689.67, "Y": 41.07, - "Z": -5555.92 + "Z": -5555.41 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -559271,9 +559271,9 @@ "Identity Proof": "Single Indicator (Ext: .rs)" }, "2. Topological Coordinates": { - "X": 6407.85, + "X": 6407.18, "Y": 4.05, - "Z": -4718.34 + "Z": -4717.82 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -559791,9 +559791,9 @@ "Identity Proof": "Single Indicator (Ext: .rs)" }, "2. Topological Coordinates": { - "X": 6976.23, + "X": 6975.55, "Y": -122.07, - "Z": -4574.16 + "Z": -4573.65 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -560186,9 +560186,9 @@ "Identity Proof": "Single Indicator (Ext: .rs)" }, "2. Topological Coordinates": { - "X": 6732.53, + "X": 6731.85, "Y": -1.82, - "Z": -5012.93 + "Z": -5012.42 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -562411,9 +562411,9 @@ "Identity Proof": "Single Indicator (Ext: .rs)" }, "2. Topological Coordinates": { - "X": 7128.34, + "X": 7127.67, "Y": -36.01, - "Z": -5410.69 + "Z": -5410.17 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -562699,9 +562699,9 @@ "Identity Proof": "Single Indicator (Ext: .rs)" }, "2. Topological Coordinates": { - "X": 6494.76, + "X": 6494.09, "Y": -4.97, - "Z": -4442.31 + "Z": -4441.8 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -562893,9 +562893,9 @@ "Identity Proof": "Single Indicator (Ext: .rs)" }, "2. Topological Coordinates": { - "X": 6152.2, + "X": 6151.52, "Y": 119.37, - "Z": -5176.7 + "Z": -5176.19 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -564935,9 +564935,9 @@ "Identity Proof": "Single Indicator (Ext: .rs)" }, "2. Topological Coordinates": { - "X": -3339.14, + "X": -3339.07, "Y": 123.4, - "Z": -5947.84 + "Z": -5947.7 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -565092,9 +565092,9 @@ "Identity Proof": "Single Indicator (Ext: .rs)" }, "2. Topological Coordinates": { - "X": -2146.8, + "X": -2146.74, "Y": -7.48, - "Z": -6025.79 + "Z": -6025.66 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -565272,9 +565272,9 @@ "Identity Proof": "Single Indicator (Ext: .rs)" }, "2. Topological Coordinates": { - "X": -2898.84, + "X": -2898.78, "Y": 104.01, - "Z": -5592.72 + "Z": -5592.58 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -565489,9 +565489,9 @@ "Identity Proof": "Single Indicator (Ext: .rs)" }, "2. Topological Coordinates": { - "X": -2671.9, + "X": -2671.84, "Y": 39.61, - "Z": -6488.7 + "Z": -6488.56 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -566143,9 +566143,9 @@ "Identity Proof": "Single Indicator (Ext: .rs)" }, "2. Topological Coordinates": { - "X": -3004.01, + "X": -3003.95, "Y": 31.14, - "Z": -6597.34 + "Z": -6597.21 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -566304,9 +566304,9 @@ "Identity Proof": "Single Indicator (Ext: .rs)" }, "2. Topological Coordinates": { - "X": -2458.52, + "X": -2458.46, "Y": 19.06, - "Z": -6681.73 + "Z": -6681.59 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -566463,9 +566463,9 @@ "Identity Proof": "Single Indicator (Ext: .rs)" }, "2. Topological Coordinates": { - "X": -2295.95, + "X": -2295.89, "Y": -60.08, - "Z": -6550.82 + "Z": -6550.69 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -566780,9 +566780,9 @@ "Identity Proof": "Single Indicator (Ext: .rs)" }, "2. Topological Coordinates": { - "X": -3250.05, + "X": -3249.99, "Y": 136.04, - "Z": -6170.28 + "Z": -6170.14 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -567022,9 +567022,9 @@ "Identity Proof": "Single Indicator (Ext: .rs)" }, "2. Topological Coordinates": { - "X": -2740.3, + "X": -2740.24, "Y": 79.27, - "Z": -6234.41 + "Z": -6234.27 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -567472,9 +567472,9 @@ "Identity Proof": "Single Indicator (Ext: .rs)" }, "2. Topological Coordinates": { - "X": -2472.21, + "X": -2472.15, "Y": 57.03, - "Z": -5577.91 + "Z": -5577.77 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -568245,9 +568245,9 @@ "Identity Proof": "Single Indicator (Ext: .rs)" }, "2. Topological Coordinates": { - "X": -3021.52, + "X": -3021.46, "Y": 86.64, - "Z": -5979.23 + "Z": -5979.09 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -571558,9 +571558,9 @@ "Identity Proof": "Single Indicator (Ext: .podspec)" }, "2. Topological Coordinates": { - "X": -2820.12, + "X": -2820.07, "Y": 66.77, - "Z": -6847.32 + "Z": -6847.19 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -571726,9 +571726,9 @@ "Identity Proof": "Single Indicator (Ext: .swift)" }, "2. Topological Coordinates": { - "X": -2669.13, + "X": -2669.08, "Y": 286.85, - "Z": -7523.17 + "Z": -7523.03 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -571916,9 +571916,9 @@ "Identity Proof": "Metadata Anchor (Package.swift)" }, "2. Topological Coordinates": { - "X": -2287.41, + "X": -2287.36, "Y": 252.72, - "Z": -7626.16 + "Z": -7626.02 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -572075,9 +572075,9 @@ "Identity Proof": "Single Indicator (Ext: .swift)" }, "2. Topological Coordinates": { - "X": -3243.67, + "X": -3243.62, "Y": 166.02, - "Z": -7238.04 + "Z": -7237.91 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -572315,9 +572315,9 @@ "Identity Proof": "Single Indicator (Ext: .swift)" }, "2. Topological Coordinates": { - "X": -2966.91, + "X": -2966.86, "Y": 82.32, - "Z": -6913.67 + "Z": -6913.53 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -572975,9 +572975,9 @@ "Identity Proof": "Single Indicator (Ext: .swift)" }, "2. Topological Coordinates": { - "X": -2391.86, + "X": -2391.81, "Y": 126.68, - "Z": -6882.44 + "Z": -6882.31 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -573285,9 +573285,9 @@ "Identity Proof": "Single Indicator (Ext: .swift)" }, "2. Topological Coordinates": { - "X": -2708.76, + "X": -2708.71, "Y": 135.59, - "Z": -7404.39 + "Z": -7404.25 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -583197,24 +583197,24 @@ } }, "assembly/cosmopolitan": { - "Directory Group Magnitude": 2014.36, + "Directory Group Magnitude": 2008.46, "File Count": 4, "Ecosystem Fingerprint (Archetypes)": { "Unclassified": "100.0%" }, "Average Risk Exposures": { - "Cognitive Load Exposure": "25.54%", - "Error & Exception Exposure": "38.28%", - "Tech Debt Exposure": "9.61%", - "Testing Exposure": "40.64%", + "Cognitive Load Exposure": "25.86%", + "Error & Exception Exposure": "38.44%", + "Tech Debt Exposure": "10.68%", + "Testing Exposure": "40.65%", "API Exposure": "4.42%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "33.82%", + "State Flux Exposure": "34.92%", "Commented Logic Exposure": "2.9%", "Specification Exposure": "76.67%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "35.96%", + "Documentation Exposure": "34.68%", "Hardcoded Payload Artifacts": "0.0%" }, "Files": { @@ -583224,16 +583224,16 @@ "Path": "assembly/cosmopolitan/ape.S", "Language": "Assembly", "Architect": "Unknown Architect", - "Indentation Style": "Mixed (10.4% Spaces / 89.6% Tabs)", + "Indentation Style": "Mixed (3.6% Spaces / 96.4% Tabs)", "Doc Umbrella": 0.0, "Folder Dominant Lang": "assembly", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -7997.79, - "Y": 134.82, - "Z": 6229.64 + "X": -7997.68, + "Y": 134.84, + "Z": 6229.53 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -583243,29 +583243,29 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 1889, - "Coding LOC": 1714, - "Documentation LOC": 77, - "Structural Magnitude": 450.98, + "Coding LOC": 1522, + "Documentation LOC": 269, + "Structural Magnitude": 445.44, "Control Flow Ratio": "31.8%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.144 + "Raw Cognitive Density": 0.162 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "7.54%", - "Error & Exception Exposure": "55.15%", - "Tech Debt Exposure": "28.7%", + "Cognitive Load Exposure": "7.98%", + "Error & Exception Exposure": "55.78%", + "Tech Debt Exposure": "32.97%", "Testing Exposure": "80.0%", "API Exposure": "5.51%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "35.29%", + "State Flux Exposure": "39.7%", "Commented Logic Exposure": "6.5%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "12.55%", + "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -583461,13 +583461,13 @@ }, { "Function Name": "_gdt", - "Structural Impact": 6.8, - "Lines of Code (LOC)": 96, + "Structural Impact": 6.5, + "Lines of Code (LOC)": 91, "Control Flow Branches": 1, "Input Parameters": 0, "Control Flow Ratio": "11.1%", "Start Line": 1186, - "End Line": 1281 + "End Line": 1276 }, { "Function Name": "cpyhi", @@ -583489,16 +583489,6 @@ "Start Line": 1534, "End Line": 1549 }, - { - "Function Name": "ape_grub_entry", - "Structural Impact": 4.9, - "Lines of Code (LOC)": 42, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "20.0%", - "Start Line": 1701, - "End Line": 1742 - }, { "Function Name": "ape_disk", "Structural Impact": 4.3, @@ -583509,6 +583499,16 @@ "Start Line": 526, "End Line": 712 }, + { + "Function Name": "ape_grub_entry", + "Structural Impact": 3.5, + "Lines of Code (LOC)": 13, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "20.0%", + "Start Line": 1701, + "End Line": 1713 + }, { "Function Name": "rlinit", "Structural Impact": 3.1, @@ -583660,7 +583660,7 @@ "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 3, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 31, + "I/O and Network Boundaries": 26, "Exposed API / Public Exports": 7, "State Mutations / Variable Reassignments": 64, "Commented-out Code (Dead Logic)": 7, @@ -583684,7 +583684,7 @@ "Event Publishers / Emitters": 0, "Dependency Injection Constructs": 0, "Preprocessor Macros": 5, - "Pointer Arithmetic & Addressing": 33, + "Pointer Arithmetic & Addressing": 31, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, @@ -583692,15 +583692,15 @@ "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 113, + "Bitwise Operations": 102, "Thread Synchronization Locks": 12, "Immutable Data Declarations": 0, "Resource Deallocation & Cleanup": 0, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 1021, - "Structural Space Indentations": 119, + "Structural Tab Indentations": 1007, + "Structural Space Indentations": 38, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -583717,12 +583717,12 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 28, + "Core Var Decl": 27, "Design Camel Case": 0, - "Design Snake Case": 20, + "Design Snake Case": 19, "Design Pascal Case": 0, "Design Upper Case": 8, - "Design Short Vars": 12, + "Design Short Vars": 11, "Design Long Vars": 0, "Duplicate Logic": 0, "Orphaned Logic": 0, @@ -583928,9 +583928,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -7736.52, - "Y": 160.38, - "Z": 5639.74 + "X": -7736.54, + "Y": 160.35, + "Z": 5640.01 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -583940,21 +583940,21 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 85, - "Coding LOC": 72, - "Documentation LOC": 6, - "Structural Magnitude": 11.44, + "Coding LOC": 54, + "Documentation LOC": 24, + "Structural Magnitude": 11.08, "Control Flow Ratio": "33.3%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.097 + "Raw Cognitive Density": 0.13 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "6.84%", + "Cognitive Load Exposure": "7.72%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.39%", + "Testing Exposure": "2.43%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -583962,7 +583962,7 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "26.07%", + "Documentation Exposure": "21.57%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -584007,7 +584007,7 @@ "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 5, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -584039,7 +584039,7 @@ "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 14, + "Bitwise Operations": 2, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, "Resource Deallocation & Cleanup": 0, @@ -584064,12 +584064,12 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 1, + "Core Var Decl": 0, "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 Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, "Orphaned Logic": 0, @@ -589489,9 +589489,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": 463.35, + "X": 463.34, "Y": -200.51, - "Z": -9534.71 + "Z": -9534.46 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -589646,9 +589646,9 @@ "Identity Proof": "Single Indicator (Ext: .tcl)" }, "2. Topological Coordinates": { - "X": 110.43, + "X": 110.42, "Y": -101.16, - "Z": -8990.65 + "Z": -8990.4 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -590174,9 +590174,9 @@ "Identity Proof": "Single Indicator (Ext: .tcl)" }, "2. Topological Coordinates": { - "X": 356.14, + "X": 356.13, "Y": -98.31, - "Z": -9205.63 + "Z": -9205.37 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -591415,25 +591415,25 @@ } }, "assembly/linux_1_0_kernel": { - "Directory Group Magnitude": 1962.7, + "Directory Group Magnitude": 1933.44, "File Count": 19, "Ecosystem Fingerprint (Archetypes)": { "Unclassified": "94.7%", "Static: Literature & Documentation": "5.3%" }, "Average Risk Exposures": { - "Cognitive Load Exposure": "9.28%", - "Error & Exception Exposure": "11.85%", - "Tech Debt Exposure": "9.21%", + "Cognitive Load Exposure": "9.99%", + "Error & Exception Exposure": "12.03%", + "Tech Debt Exposure": "11.97%", "Testing Exposure": "47.21%", "API Exposure": "3.33%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "6.22%", + "State Flux Exposure": "6.49%", "Commented Logic Exposure": "0.63%", - "Specification Exposure": "94.74%", + "Specification Exposure": "94.04%", "Instability Exposure": "47.37%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "27.12%", + "Documentation Exposure": "24.39%", "Hardcoded Payload Artifacts": "0.0%" }, "Files": { @@ -591450,9 +591450,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 6155.2, + "X": 6155.19, "Y": 41.35, - "Z": -1182.52 + "Z": -1182.49 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -591462,29 +591462,29 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 451, - "Coding LOC": 371, - "Documentation LOC": 15, - "Structural Magnitude": 174.52, + "Coding LOC": 346, + "Documentation LOC": 40, + "Structural Magnitude": 174.02, "Control Flow Ratio": "33.1%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.191 + "Raw Cognitive Density": 0.205 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "9.67%", - "Error & Exception Exposure": "56.41%", + "Cognitive Load Exposure": "10.16%", + "Error & Exception Exposure": "57.32%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", "API Exposure": "2.27%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "18.95%", + "State Flux Exposure": "19.68%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "15.21%", + "Documentation Exposure": "13.78%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -591726,10 +591726,10 @@ "Function Parameters": 173, "Function/Method Declarations": 23, "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": 15, + "I/O and Network Boundaries": 9, "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 6, "Commented-out Code (Dead Logic)": 0, @@ -591761,7 +591761,7 @@ "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 1, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 36, + "Bitwise Operations": 32, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, "Resource Deallocation & Cleanup": 0, @@ -591786,12 +591786,12 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 12, + "Core Var Decl": 10, "Design Camel Case": 0, - "Design Snake Case": 4, + "Design Snake Case": 2, "Design Pascal Case": 0, "Design Upper Case": 8, - "Design Short Vars": 3, + "Design Short Vars": 1, "Design Long Vars": 0, "Duplicate Logic": 0, "Orphaned Logic": 0, @@ -591838,9 +591838,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 6694.18, - "Y": -2.79, - "Z": -355.89 + "X": 6694.02, + "Y": -2.8, + "Z": -355.95 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -591850,29 +591850,29 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 355, - "Coding LOC": 327, - "Documentation LOC": 7, - "Structural Magnitude": 87.44, + "Coding LOC": 251, + "Documentation LOC": 83, + "Structural Magnitude": 85.92, "Control Flow Ratio": "22.4%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.092 + "Raw Cognitive Density": 0.12 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "6.7%", - "Error & Exception Exposure": "53.69%", - "Tech Debt Exposure": "74.17%", + "Cognitive Load Exposure": "7.43%", + "Error & Exception Exposure": "54.72%", + "Tech Debt Exposure": "89.39%", "Testing Exposure": "80.0%", "API Exposure": "6.62%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "15.02%", + "State Flux Exposure": "16.49%", "Commented Logic Exposure": "6.03%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "25.73%", + "Documentation Exposure": "20.56%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -592037,7 +592037,7 @@ "Defensive Programming Constructs": 1, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 4, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 6, "State Mutations / Variable Reassignments": 3, "Commented-out Code (Dead Logic)": 1, @@ -592069,7 +592069,7 @@ "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 9, + "Bitwise Operations": 1, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, "Resource Deallocation & Cleanup": 0, @@ -592094,9 +592094,9 @@ "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": 2, + "Design Snake Case": 0, "Design Pascal Case": 0, "Design Upper Case": 0, "Design Short Vars": 0, @@ -592158,29 +592158,29 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 870, - "Coding LOC": 799, - "Documentation LOC": 5, - "Structural Magnitude": 527.08, + "Coding LOC": 796, + "Documentation LOC": 8, + "Structural Magnitude": 527.02, "Control Flow Ratio": "37.2%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.344 + "Raw Cognitive Density": 0.345 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "16.48%", - "Error & Exception Exposure": "59.76%", - "Tech Debt Exposure": "9.81%", + "Cognitive Load Exposure": "16.55%", + "Error & Exception Exposure": "59.8%", + "Tech Debt Exposure": "9.82%", "Testing Exposure": "80.0%", "API Exposure": "2.05%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "66.9%", + "State Flux Exposure": "67.13%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "13.69%", + "Documentation Exposure": "13.61%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -592994,9 +592994,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 6714.68, - "Y": 76.28, - "Z": -1173.69 + "X": 6714.45, + "Y": 76.24, + "Z": -1173.46 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -593006,21 +593006,21 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 51, - "Coding LOC": 34, - "Documentation LOC": 1, - "Structural Magnitude": 6.98, + "Coding LOC": 21, + "Documentation LOC": 14, + "Structural Magnitude": 6.72, "Control Flow Ratio": "11.1%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.176 + "Raw Cognitive Density": 0.286 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "9.16%", + "Cognitive Load Exposure": "13.5%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.39%", + "Testing Exposure": "2.45%", "API Exposure": "3.51%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -593028,7 +593028,7 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "63.55%", + "Documentation Exposure": "67.67%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -593053,7 +593053,7 @@ "Defensive Programming Constructs": 1, "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": 1, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -593162,9 +593162,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 6837.92, - "Y": 56.25, - "Z": -894.0 + "X": 6837.79, + "Y": 56.24, + "Z": -893.98 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -593174,21 +593174,21 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 98, - "Coding LOC": 74, - "Documentation LOC": 1, - "Structural Magnitude": 25.28, - "Control Flow Ratio": "38.9%", + "Coding LOC": 56, + "Documentation LOC": 19, + "Structural Magnitude": 24.92, + "Control Flow Ratio": "35.3%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.162 + "Raw Cognitive Density": 0.196 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "8.7%", + "Cognitive Load Exposure": "9.85%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.48%", + "Testing Exposure": "2.54%", "API Exposure": "6.03%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -593196,7 +593196,7 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "57.92%", + "Documentation Exposure": "59.86%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -593263,7 +593263,7 @@ ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 7, + "Control Flow Branches": 6, "Sequential Logic Declarations": 11, "Function Parameters": 34, "Function/Method Declarations": 6, @@ -593380,9 +593380,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 6760.32, + "X": 6760.18, "Y": -24.8, - "Z": -87.7 + "Z": -87.82 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -593392,21 +593392,21 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 73, - "Coding LOC": 58, - "Documentation LOC": 1, - "Structural Magnitude": 11.56, - "Control Flow Ratio": "20.0%", + "Coding LOC": 46, + "Documentation LOC": 13, + "Structural Magnitude": 11.32, + "Control Flow Ratio": "11.1%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.155 + "Raw Cognitive Density": 0.152 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "8.48%", + "Cognitive Load Exposure": "8.38%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.4%", + "Testing Exposure": "2.43%", "API Exposure": "3.22%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -593414,7 +593414,7 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "44.26%", + "Documentation Exposure": "43.32%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -593441,7 +593441,7 @@ ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 4, + "Control Flow Branches": 2, "Sequential Logic Declarations": 16, "Function Parameters": 20, "Function/Method Declarations": 2, @@ -593481,7 +593481,7 @@ "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 2, + "Bitwise Operations": 1, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, "Resource Deallocation & Cleanup": 0, @@ -593558,9 +593558,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 5687.0, - "Y": -127.34, - "Z": -57.5 + "X": 5687.13, + "Y": -127.3, + "Z": -57.68 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -593570,21 +593570,21 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 142, - "Coding LOC": 103, - "Documentation LOC": 15, - "Structural Magnitude": 20.76, - "Control Flow Ratio": "12.5%", + "Coding LOC": 78, + "Documentation LOC": 40, + "Structural Magnitude": 20.26, + "Control Flow Ratio": "10.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.087 + "Raw Cognitive Density": 0.103 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "6.6%", + "Cognitive Load Exposure": "6.98%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.41%", + "Testing Exposure": "2.45%", "API Exposure": "2.79%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -593592,7 +593592,7 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "24.91%", + "Documentation Exposure": "20.11%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -593602,7 +593602,7 @@ "Lines of Code (LOC)": 47, "Control Flow Branches": 1, "Input Parameters": 3, - "Control Flow Ratio": "6.7%", + "Control Flow Ratio": "7.1%", "Start Line": 66, "End Line": 112 }, @@ -593649,15 +593649,15 @@ ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 4, - "Sequential Logic Declarations": 28, + "Control Flow Branches": 3, + "Sequential Logic Declarations": 27, "Function Parameters": 28, "Function/Method Declarations": 5, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 1, "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": 1, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -593681,7 +593681,7 @@ "Event Publishers / Emitters": 0, "Dependency Injection Constructs": 0, "Preprocessor Macros": 0, - "Pointer Arithmetic & Addressing": 7, + "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, @@ -593689,7 +593689,7 @@ "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 4, + "Bitwise Operations": 2, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, "Resource Deallocation & Cleanup": 0, @@ -593766,9 +593766,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 5901.68, + "X": 5901.72, "Y": -7.86, - "Z": -1044.11 + "Z": -1044.03 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -593778,20 +593778,20 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 252, - "Coding LOC": 174, - "Documentation LOC": 23, - "Structural Magnitude": 111.58, - "Control Flow Ratio": "58.2%", + "Coding LOC": 149, + "Documentation LOC": 48, + "Structural Magnitude": 110.68, + "Control Flow Ratio": "57.9%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.293 + "Raw Cognitive Density": 0.329 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "13.85%", + "Cognitive Load Exposure": "15.65%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "23.03%", + "Tech Debt Exposure": "27.09%", "Testing Exposure": "80.0%", "API Exposure": "2.51%", "Concurrency Exposure": "0.0%", @@ -593800,7 +593800,7 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "18.05%", + "Documentation Exposure": "15.01%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -593810,7 +593810,7 @@ "Lines of Code (LOC)": 20, "Control Flow Branches": 5, "Input Parameters": 3, - "Control Flow Ratio": "71.4%", + "Control Flow Ratio": "83.3%", "Start Line": 136, "End Line": 155 }, @@ -593866,23 +593866,13 @@ }, { "Function Name": "L_arg2_NaN", - "Structural Impact": 5.6, - "Lines of Code (LOC)": 8, + "Structural Impact": 5.5, + "Lines of Code (LOC)": 6, "Control Flow Branches": 2, "Input Parameters": 2, "Control Flow Ratio": "100.0%", "Start Line": 91, - "End Line": 98 - }, - { - "Function Name": "xL_arg2_not_denormal", - "Structural Impact": 5.5, - "Lines of Code (LOC)": 20, - "Control Flow Branches": 1, - "Input Parameters": 4, - "Control Flow Ratio": "16.7%", - "Start Line": 62, - "End Line": 81 + "End Line": 96 }, { "Function Name": "L_inf_valid", @@ -593894,6 +593884,16 @@ "Start Line": 124, "End Line": 134 }, + { + "Function Name": "xL_arg2_not_denormal", + "Structural Impact": 5.3, + "Lines of Code (LOC)": 17, + "Control Flow Branches": 1, + "Input Parameters": 4, + "Control Flow Ratio": "16.7%", + "Start Line": 62, + "End Line": 78 + }, { "Function Name": "L_unknown_tags", "Structural Impact": 4.8, @@ -593906,13 +593906,13 @@ }, { "Function Name": "L_div_special", - "Structural Impact": 4.6, - "Lines of Code (LOC)": 8, + "Structural Impact": 4.5, + "Lines of Code (LOC)": 6, "Control Flow Branches": 2, "Input Parameters": 1, "Control Flow Ratio": "100.0%", "Start Line": 82, - "End Line": 89 + "End Line": 87 }, { "Function Name": "L_inf_inf", @@ -593997,15 +593997,15 @@ ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 46, - "Sequential Logic Declarations": 33, + "Control Flow Branches": 44, + "Sequential Logic Declarations": 32, "Function Parameters": 57, "Function/Method Declarations": 19, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 1, "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": 1, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -594037,14 +594037,14 @@ "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 6, + "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": 133, + "Structural Tab Indentations": 128, "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, @@ -594062,11 +594062,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": 0, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 1, + "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, @@ -594114,9 +594114,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 6384.22, - "Y": -84.01, - "Z": -103.96 + "X": 6384.18, + "Y": -84.0, + "Z": -104.08 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -594126,21 +594126,21 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 151, - "Coding LOC": 107, - "Documentation LOC": 5, - "Structural Magnitude": 42.34, - "Control Flow Ratio": "47.4%", + "Coding LOC": 89, + "Documentation LOC": 23, + "Structural Magnitude": 41.78, + "Control Flow Ratio": "45.9%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.215 + "Raw Cognitive Density": 0.247 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "10.53%", + "Cognitive Load Exposure": "11.8%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.55%", + "Testing Exposure": "2.6%", "API Exposure": "4.37%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -594148,29 +594148,29 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "34.06%", + "Documentation Exposure": "31.73%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { "Function Name": "L_ok", - "Structural Impact": 5.1, - "Lines of Code (LOC)": 18, + "Structural Impact": 5.0, + "Lines of Code (LOC)": 16, "Control Flow Branches": 2, "Input Parameters": 1, "Control Flow Ratio": "40.0%", "Start Line": 40, - "End Line": 57 + "End Line": 55 }, { "Function Name": "L_ok_nuo", - "Structural Impact": 5.1, - "Lines of Code (LOC)": 18, + "Structural Impact": 5.0, + "Lines of Code (LOC)": 16, "Control Flow Branches": 2, "Input Parameters": 1, "Control Flow Ratio": "40.0%", "Start Line": 120, - "End Line": 137 + "End Line": 135 }, { "Function Name": "L_nuo_shift_1", @@ -594265,15 +594265,15 @@ ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 18, + "Control Flow Branches": 17, "Sequential Logic Declarations": 20, - "Function Parameters": 28, + "Function Parameters": 26, "Function/Method Declarations": 11, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 1, "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": 2, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -594305,7 +594305,7 @@ "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 3, + "Bitwise Operations": 2, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, "Resource Deallocation & Cleanup": 0, @@ -594375,16 +594375,16 @@ "Path": "assembly/linux_1_0_kernel/drivers_FPU-emu_reg_round.S", "Language": "Assembly", "Architect": "Unknown Architect", - "Indentation Style": "Mixed (0.3% Spaces / 99.7% Tabs)", + "Indentation Style": "Tabs", "Doc Umbrella": 0.0, "Folder Dominant Lang": "assembly", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 5832.97, - "Y": -73.12, - "Z": -316.42 + "X": 5833.12, + "Y": -73.09, + "Z": -316.56 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -594394,20 +594394,20 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 702, - "Coding LOC": 531, - "Documentation LOC": 40, - "Structural Magnitude": 278.42, - "Control Flow Ratio": "69.0%", + "Coding LOC": 395, + "Documentation LOC": 176, + "Structural Magnitude": 273.5, + "Control Flow Ratio": "68.6%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.211 + "Raw Cognitive Density": 0.278 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "10.37%", + "Cognitive Load Exposure": "13.17%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "19.14%", + "Tech Debt Exposure": "33.27%", "Testing Exposure": "80.0%", "API Exposure": "4.91%", "Concurrency Exposure": "0.0%", @@ -594416,29 +594416,29 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "15.82%", + "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { "Function Name": "xDenorm_done", - "Structural Impact": 13.6, - "Lines of Code (LOC)": 30, + "Structural Impact": 13.4, + "Lines of Code (LOC)": 25, "Control Flow Branches": 6, "Input Parameters": 2, "Control Flow Ratio": "75.0%", "Start Line": 145, - "End Line": 174 + "End Line": 169 }, { "Function Name": "xDenorm_shift_more_than_32", - "Structural Impact": 12.2, - "Lines of Code (LOC)": 21, + "Structural Impact": 12.1, + "Lines of Code (LOC)": 19, "Control Flow Branches": 4, "Input Parameters": 4, "Control Flow Ratio": "66.7%", "Start Line": 493, - "End Line": 513 + "End Line": 511 }, { "Function Name": "LRound_To_24", @@ -594490,16 +594490,6 @@ "Start Line": 549, "End Line": 584 }, - { - "Function Name": "xMake_denorm", - "Structural Impact": 7.8, - "Lines of Code (LOC)": 35, - "Control Flow Branches": 2, - "Input Parameters": 3, - "Control Flow Ratio": "50.0%", - "Start Line": 458, - "End Line": 492 - }, { "Function Name": "LRound_nearest_53", "Structural Impact": 7.7, @@ -594510,6 +594500,16 @@ "Start Line": 291, "End Line": 306 }, + { + "Function Name": "xMake_denorm", + "Structural Impact": 7.7, + "Lines of Code (LOC)": 33, + "Control Flow Branches": 2, + "Input Parameters": 3, + "Control Flow Ratio": "50.0%", + "Start Line": 458, + "End Line": 490 + }, { "Function Name": "xDenorm_shift_more_than_63", "Structural Impact": 7.6, @@ -594542,13 +594542,13 @@ }, { "Function Name": "L_underflow_to_zero", - "Structural Impact": 6.6, - "Lines of Code (LOC)": 18, + "Structural Impact": 6.4, + "Lines of Code (LOC)": 15, "Control Flow Branches": 3, "Input Parameters": 1, "Control Flow Ratio": "42.9%", "Start Line": 611, - "End Line": 628 + "End Line": 625 }, { "Function Name": "LCheck_24_round_up", @@ -594580,16 +594580,6 @@ "Start Line": 111, "End Line": 123 }, - { - "Function Name": "LNormalise_shift_done", - "Structural Impact": 4.8, - "Lines of Code (LOC)": 17, - "Control Flow Branches": 3, - "Input Parameters": 0, - "Control Flow Ratio": "75.0%", - "Start Line": 594, - "End Line": 610 - }, { "Function Name": "LRound_nearest_64", "Structural Impact": 4.7, @@ -594640,6 +594630,16 @@ "Start Line": 274, "End Line": 278 }, + { + "Function Name": "LNormalise_shift_done", + "Structural Impact": 4.5, + "Lines of Code (LOC)": 11, + "Control Flow Branches": 3, + "Input Parameters": 0, + "Control Flow Ratio": "75.0%", + "Start Line": 594, + "End Line": 604 + }, { "Function Name": "L_overflow", "Structural Impact": 4.5, @@ -594700,26 +594700,6 @@ "Start Line": 128, "End Line": 143 }, - { - "Function Name": "xL_precision_lost_down", - "Structural Impact": 3.6, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 2, - "Input Parameters": 0, - "Control Flow Ratio": "66.7%", - "Start Line": 446, - "End Line": 457 - }, - { - "Function Name": "xL_precision_lost_up", - "Structural Impact": 3.5, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 2, - "Input Parameters": 0, - "Control Flow Ratio": "66.7%", - "Start Line": 436, - "End Line": 445 - }, { "Function Name": "xL_Normalised", "Structural Impact": 3.3, @@ -594750,6 +594730,26 @@ "Start Line": 410, "End Line": 417 }, + { + "Function Name": "xL_precision_lost_up", + "Structural Impact": 3.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 2, + "Input Parameters": 0, + "Control Flow Ratio": "66.7%", + "Start Line": 436, + "End Line": 440 + }, + { + "Function Name": "xL_precision_lost_down", + "Structural Impact": 3.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 2, + "Input Parameters": 0, + "Control Flow Ratio": "66.7%", + "Start Line": 446, + "End Line": 450 + }, { "Function Name": "L_bugged_denorm_486", "Structural Impact": 3.2, @@ -594840,26 +594840,6 @@ "Start Line": 388, "End Line": 390 }, - { - "Function Name": "LDo_truncate_24", - "Structural Impact": 2.4, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "50.0%", - "Start Line": 247, - "End Line": 254 - }, - { - "Function Name": "LTruncate_53", - "Structural Impact": 2.4, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "50.0%", - "Start Line": 322, - "End Line": 328 - }, { "Function Name": "LDo_24_round_up", "Structural Impact": 2.3, @@ -594881,14 +594861,24 @@ "End Line": 314 }, { - "Function Name": "xUnmasked_underflow", - "Structural Impact": 2.3, - "Lines of Code (LOC)": 6, + "Function Name": "LDo_truncate_24", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 5, "Control Flow Branches": 1, "Input Parameters": 0, "Control Flow Ratio": "50.0%", - "Start Line": 543, - "End Line": 548 + "Start Line": 247, + "End Line": 251 + }, + { + "Function Name": "LTruncate_53", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "50.0%", + "Start Line": 322, + "End Line": 325 }, { "Function Name": "L_entry_bugged", @@ -594910,6 +594900,16 @@ "Start Line": 395, "End Line": 397 }, + { + "Function Name": "xUnmasked_underflow", + "Structural Impact": 2.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "50.0%", + "Start Line": 543, + "End Line": 545 + }, { "Function Name": "LNormalise_shift_up_to_31", "Structural Impact": 2.1, @@ -595003,15 +595003,15 @@ ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 107, + "Control Flow Branches": 105, "Sequential Logic Declarations": 48, - "Function Parameters": 170, + "Function Parameters": 162, "Function/Method Declarations": 58, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 1, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 12, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 4, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -595035,7 +595035,7 @@ "Event Publishers / Emitters": 0, "Dependency Injection Constructs": 0, "Preprocessor Macros": 0, - "Pointer Arithmetic & Addressing": 2, + "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, @@ -595043,15 +595043,15 @@ "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 19, + "Bitwise Operations": 3, "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": 347, - "Structural Space Indentations": 1, + "Structural Tab Indentations": 329, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -595076,7 +595076,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 2, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -595120,9 +595120,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 5546.08, - "Y": -175.29, - "Z": -573.78 + "X": 5546.21, + "Y": -175.27, + "Z": -573.83 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -595132,18 +595132,18 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 190, - "Coding LOC": 138, - "Documentation LOC": 9, - "Structural Magnitude": 68.86, - "Control Flow Ratio": "51.2%", + "Coding LOC": 106, + "Documentation LOC": 41, + "Structural Magnitude": 67.92, + "Control Flow Ratio": "53.8%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.196 + "Raw Cognitive Density": 0.245 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "9.82%", + "Cognitive Load Exposure": "11.72%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", @@ -595154,7 +595154,7 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "22.68%", + "Documentation Exposure": "17.75%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -595164,7 +595164,7 @@ "Lines of Code (LOC)": 28, "Control Flow Branches": 3, "Input Parameters": 4, - "Control Flow Ratio": "37.5%", + "Control Flow Ratio": "50.0%", "Start Line": 80, "End Line": 107 }, @@ -595258,16 +595258,6 @@ "Start Line": 152, "End Line": 164 }, - { - "Function Name": "L_round_the_result", - "Structural Impact": 2.4, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 169, - "End Line": 175 - }, { "Function Name": "L_more_31_no_low", "Structural Impact": 2.2, @@ -595278,6 +595268,16 @@ "Start Line": 123, "End Line": 126 }, + { + "Function Name": "L_round_the_result", + "Structural Impact": 2.1, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 169, + "End Line": 170 + }, { "Function Name": "L_arg1_larger", "Structural Impact": 1.6, @@ -595321,15 +595321,15 @@ ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 22, - "Sequential Logic Declarations": 21, - "Function Parameters": 53, + "Control Flow Branches": 21, + "Sequential Logic Declarations": 18, + "Function Parameters": 48, "Function/Method Declarations": 16, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 1, "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": 1, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -595361,14 +595361,14 @@ "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 6, + "Bitwise Operations": 2, "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": 93, + "Structural Tab Indentations": 88, "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, @@ -595431,16 +595431,16 @@ "Path": "assembly/linux_1_0_kernel/drivers_FPU-emu_reg_u_div.S", "Language": "Assembly", "Architect": "Unknown Architect", - "Indentation Style": "Mixed (2.9% Spaces / 97.1% Tabs)", + "Indentation Style": "Tabs", "Doc Umbrella": 0.0, "Folder Dominant Lang": "assembly", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 6455.71, - "Y": -45.56, - "Z": -399.37 + "X": 6455.27, + "Y": -45.54, + "Z": -399.94 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -595450,18 +595450,18 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 478, - "Coding LOC": 340, - "Documentation LOC": 37, - "Structural Magnitude": 133.7, - "Control Flow Ratio": "43.7%", + "Coding LOC": 244, + "Documentation LOC": 133, + "Structural Magnitude": 124.88, + "Control Flow Ratio": "44.9%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.147 + "Raw Cognitive Density": 0.201 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "8.23%", + "Cognitive Load Exposure": "10.0%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", @@ -595472,30 +595472,20 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "15.4%", + "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { "Function Name": "_divide_kernel", - "Structural Impact": 11.1, + "Structural Impact": 9.1, "Lines of Code (LOC)": 22, - "Control Flow Branches": 4, + "Control Flow Branches": 3, "Input Parameters": 3, - "Control Flow Ratio": "57.1%", + "Control Flow Ratio": "50.0%", "Start Line": 114, "End Line": 135 }, - { - "Function Name": "LSecond_div_done", - "Structural Impact": 8.3, - "Lines of Code (LOC)": 53, - "Control Flow Branches": 3, - "Input Parameters": 1, - "Control Flow Ratio": "33.3%", - "Start Line": 312, - "End Line": 364 - }, { "Function Name": "_reg_u_div", "Structural Impact": 8.1, @@ -595516,15 +595506,25 @@ "Start Line": 186, "End Line": 209 }, + { + "Function Name": "LSecond_div_done", + "Structural Impact": 8.0, + "Lines of Code (LOC)": 47, + "Control Flow Branches": 3, + "Input Parameters": 1, + "Control Flow Ratio": "42.9%", + "Start Line": 312, + "End Line": 358 + }, { "Function Name": "LFirst_div_done", - "Structural Impact": 7.5, - "Lines of Code (LOC)": 37, + "Structural Impact": 7.2, + "Lines of Code (LOC)": 31, "Control Flow Branches": 3, "Input Parameters": 1, - "Control Flow Ratio": "33.3%", + "Control Flow Ratio": "42.9%", "Start Line": 238, - "End Line": 274 + "End Line": 268 }, { "Function Name": "LRound_prep", @@ -595598,13 +595598,13 @@ }, { "Function Name": "LRound_precision", - "Structural Impact": 4.0, - "Lines of Code (LOC)": 11, + "Structural Impact": 3.8, + "Lines of Code (LOC)": 7, "Control Flow Branches": 1, "Input Parameters": 2, "Control Flow Ratio": "25.0%", "Start Line": 441, - "End Line": 451 + "End Line": 447 }, { "Function Name": "L_exit", @@ -595616,16 +595616,6 @@ "Start Line": 470, "End Line": 476 }, - { - "Function Name": "LRound_ovfl", - "Structural Impact": 3.6, - "Lines of Code (LOC)": 15, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "100.0%", - "Start Line": 426, - "End Line": 440 - }, { "Function Name": "LPrevent_3rd_overflow", "Structural Impact": 3.5, @@ -595636,6 +595626,16 @@ "Start Line": 377, "End Line": 390 }, + { + "Function Name": "LRound_ovfl", + "Structural Impact": 3.5, + "Lines of Code (LOC)": 13, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "100.0%", + "Start Line": 426, + "End Line": 438 + }, { "Function Name": "LPrevent_2nd_overflow", "Structural Impact": 3.4, @@ -595688,13 +595688,13 @@ }, { "Function Name": "L_no_overflow", - "Structural Impact": 3.0, - "Lines of Code (LOC)": 20, + "Structural Impact": 2.1, + "Lines of Code (LOC)": 2, "Control Flow Branches": 1, "Input Parameters": 0, "Control Flow Ratio": "100.0%", "Start Line": 164, - "End Line": 183 + "End Line": 165 }, { "Function Name": "LGreater_than_1", @@ -595708,33 +595708,13 @@ }, { "Function Name": "LFirst_div_not_1", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", "Start Line": 234, - "End Line": 236 - }, - { - "Function Name": "Result", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 15, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 35, - "End Line": 49 - }, - { - "Function Name": "Result", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 27, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 50, - "End Line": 76 + "End Line": 235 }, { "Function Name": "LSecond_div_not_1", @@ -595769,15 +595749,15 @@ ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 45, - "Sequential Logic Declarations": 58, - "Function Parameters": 63, - "Function/Method Declarations": 29, + "Control Flow Branches": 44, + "Sequential Logic Declarations": 54, + "Function Parameters": 61, + "Function/Method Declarations": 27, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 1, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 7, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 2, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -595809,15 +595789,15 @@ "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 7, + "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": 231, - "Structural Space Indentations": 7, + "Structural Tab Indentations": 206, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -595886,9 +595866,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 5561.42, + "X": 5561.53, "Y": -93.02, - "Z": -1053.25 + "Z": -1053.19 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -595898,21 +595878,21 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 164, - "Coding LOC": 114, - "Documentation LOC": 16, - "Structural Magnitude": 41.18, - "Control Flow Ratio": "45.5%", + "Coding LOC": 88, + "Documentation LOC": 42, + "Structural Magnitude": 40.66, + "Control Flow Ratio": "43.8%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.175 + "Raw Cognitive Density": 0.216 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "9.13%", + "Cognitive Load Exposure": "10.56%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.53%", + "Testing Exposure": "2.6%", "API Exposure": "2.72%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -595920,7 +595900,7 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "23.3%", + "Documentation Exposure": "18.64%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -595997,15 +595977,15 @@ ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 15, + "Control Flow Branches": 14, "Sequential Logic Declarations": 18, - "Function Parameters": 37, + "Function Parameters": 36, "Function/Method Declarations": 7, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 1, "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": 1, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -596037,14 +596017,14 @@ "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 4, + "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": 77, + "Structural Tab Indentations": 76, "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, @@ -596114,9 +596094,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 6016.62, - "Y": -80.25, - "Z": -153.87 + "X": 6613.99, + "Y": 69.98, + "Z": -988.7 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -596126,29 +596106,29 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 293, - "Coding LOC": 224, - "Documentation LOC": 13, - "Structural Magnitude": 113.58, - "Control Flow Ratio": "52.7%", + "Coding LOC": 167, + "Documentation LOC": 70, + "Structural Magnitude": 112.04, + "Control Flow Ratio": "53.5%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.223 + "Raw Cognitive Density": 0.293 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "10.84%", - "Error & Exception Exposure": "55.24%", - "Tech Debt Exposure": "35.37%", + "Cognitive Load Exposure": "13.87%", + "Error & Exception Exposure": "56.82%", + "Tech Debt Exposure": "51.12%", "Testing Exposure": "80.0%", "API Exposure": "2.44%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "17.3%", + "State Flux Exposure": "20.08%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "17.77%", + "Documentation Exposure": "12.0%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -596164,13 +596144,13 @@ }, { "Function Name": "xOp2_not_denorm", - "Structural Impact": 8.6, - "Lines of Code (LOC)": 37, + "Structural Impact": 8.3, + "Lines of Code (LOC)": 31, "Control Flow Branches": 2, "Input Parameters": 4, - "Control Flow Ratio": "20.0%", + "Control Flow Ratio": "25.0%", "Start Line": 61, - "End Line": 97 + "End Line": 91 }, { "Function Name": "_reg_u_sub", @@ -596342,16 +596322,6 @@ "Start Line": 122, "End Line": 125 }, - { - "Function Name": "L_shift_32", - "Structural Impact": 2.1, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 232, - "End Line": 238 - }, { "Function Name": "L_round", "Structural Impact": 2.1, @@ -596362,6 +596332,16 @@ "Start Line": 248, "End Line": 249 }, + { + "Function Name": "L_shift_32", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 232, + "End Line": 236 + }, { "Function Name": "L_more_than_65", "Structural Impact": 1.5, @@ -596405,15 +596385,15 @@ ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 39, - "Sequential Logic Declarations": 35, - "Function Parameters": 84, + "Control Flow Branches": 38, + "Sequential Logic Declarations": 33, + "Function Parameters": 79, "Function/Method Declarations": 25, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 1, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 2, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 3, "Commented-out Code (Dead Logic)": 0, @@ -596445,14 +596425,14 @@ "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 5, + "Bitwise Operations": 3, "Thread Synchronization Locks": 1, "Immutable Data Declarations": 0, "Resource Deallocation & Cleanup": 0, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 148, + "Structural Tab Indentations": 140, "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, @@ -596515,16 +596495,16 @@ "Path": "assembly/linux_1_0_kernel/drivers_FPU-emu_wm_shrx.S", "Language": "Assembly", "Architect": "Unknown Architect", - "Indentation Style": "Mixed (0.8% Spaces / 99.2% Tabs)", + "Indentation Style": "Tabs", "Doc Umbrella": 0.0, "Folder Dominant Lang": "assembly", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 6426.24, - "Y": 59.32, - "Z": -1230.24 + "X": 6426.17, + "Y": 59.3, + "Z": -1230.09 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -596534,18 +596514,18 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 209, - "Coding LOC": 188, - "Documentation LOC": 1, - "Structural Magnitude": 60.26, - "Control Flow Ratio": "29.4%", + "Coding LOC": 138, + "Documentation LOC": 51, + "Structural Magnitude": 59.26, + "Control Flow Ratio": "28.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.106 + "Raw Cognitive Density": 0.138 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "7.08%", + "Cognitive Load Exposure": "7.95%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", @@ -596556,7 +596536,7 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "24.16%", + "Documentation Exposure": "18.24%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -596643,7 +596623,7 @@ ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 15, + "Control Flow Branches": 14, "Sequential Logic Declarations": 36, "Function Parameters": 108, "Function/Method Declarations": 8, @@ -596651,7 +596631,7 @@ "Defensive Programming Constructs": 8, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 4, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 2, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -596675,7 +596655,7 @@ "Event Publishers / Emitters": 0, "Dependency Injection Constructs": 0, "Preprocessor Macros": 0, - "Pointer Arithmetic & Addressing": 7, + "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, @@ -596683,7 +596663,7 @@ "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 18, + "Bitwise Operations": 6, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, "Resource Deallocation & Cleanup": 0, @@ -596691,7 +596671,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 129, - "Structural Space Indentations": 1, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -596753,16 +596733,16 @@ "Path": "assembly/linux_1_0_kernel/drivers_FPU-emu_wm_sqrt.S", "Language": "Assembly", "Architect": "Unknown Architect", - "Indentation Style": "Mixed (3.4% Spaces / 96.6% Tabs)", + "Indentation Style": "Tabs", "Doc Umbrella": 0.0, "Folder Dominant Lang": "assembly", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 6632.03, - "Y": 3.21, - "Z": -868.14 + "X": 6034.35, + "Y": -147.05, + "Z": -33.31 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -596772,20 +596752,20 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 475, - "Coding LOC": 349, - "Documentation LOC": 24, - "Structural Magnitude": 116.68, - "Control Flow Ratio": "51.6%", + "Coding LOC": 253, + "Documentation LOC": 120, + "Structural Magnitude": 111.06, + "Control Flow Ratio": "33.7%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.203 + "Raw Cognitive Density": 0.142 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "10.1%", + "Cognitive Load Exposure": "8.09%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "13.53%", + "Tech Debt Exposure": "16.65%", "Testing Exposure": "80.0%", "API Exposure": "2.25%", "Concurrency Exposure": "0.0%", @@ -596794,7 +596774,7 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "14.81%", + "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -596818,16 +596798,6 @@ "Start Line": 363, "End Line": 389 }, - { - "Function Name": "sqrt_stage_3_finished", - "Structural Impact": 9.6, - "Lines of Code (LOC)": 18, - "Control Flow Branches": 4, - "Input Parameters": 2, - "Control Flow Ratio": "100.0%", - "Start Line": 328, - "End Line": 345 - }, { "Function Name": "sqrt_stage_2_finish", "Structural Impact": 9.2, @@ -596874,10 +596844,20 @@ "Lines of Code (LOC)": 47, "Control Flow Branches": 1, "Input Parameters": 3, - "Control Flow Ratio": "9.1%", + "Control Flow Ratio": "10.0%", "Start Line": 232, "End Line": 278 }, + { + "Function Name": "sqrt_stage_3_finished", + "Structural Impact": 5.9, + "Lines of Code (LOC)": 18, + "Control Flow Branches": 4, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 328, + "End Line": 345 + }, { "Function Name": "_wm_sqrt", "Structural Impact": 5.7, @@ -597011,15 +596991,15 @@ ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 66, - "Sequential Logic Declarations": 62, - "Function Parameters": 132, + "Control Flow Branches": 31, + "Sequential Logic Declarations": 61, + "Function Parameters": 121, "Function/Method Declarations": 21, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 13, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -597051,15 +597031,15 @@ "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 14, + "Bitwise Operations": 4, "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": 226, - "Structural Space Indentations": 8, + "Structural Tab Indentations": 222, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -597128,9 +597108,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 6021.34, - "Y": 0.29, - "Z": -1362.03 + "X": 6021.35, + "Y": 0.28, + "Z": -1361.95 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -597140,29 +597120,29 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 31, - "Coding LOC": 20, - "Documentation LOC": 6, - "Structural Magnitude": 15.4, + "Coding LOC": 13, + "Documentation LOC": 13, + "Structural Magnitude": 15.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.25 + "Raw Cognitive Density": 0.385 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "11.92%", + "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.3%", + "Testing Exposure": "1.99%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "86.67%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "55.06%", + "Documentation Exposure": "48.73%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [], @@ -597285,9 +597265,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 5647.97, + "X": 5648.04, "Y": -116.27, - "Z": -665.44 + "Z": -665.43 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -597297,18 +597277,18 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 391, - "Coding LOC": 357, - "Documentation LOC": 3, - "Structural Magnitude": 120.04, - "Control Flow Ratio": "46.0%", + "Coding LOC": 314, + "Documentation LOC": 46, + "Structural Magnitude": 119.18, + "Control Flow Ratio": "45.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.16 + "Raw Cognitive Density": 0.175 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "8.62%", + "Cognitive Load Exposure": "9.12%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", @@ -597319,7 +597299,7 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "28.87%", + "Documentation Exposure": "26.6%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -597586,15 +597566,15 @@ ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 52, + "Control Flow Branches": 50, "Sequential Logic Declarations": 61, - "Function Parameters": 54, + "Function Parameters": 50, "Function/Method Declarations": 26, "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": 8, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 1, @@ -597626,7 +597606,7 @@ "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 4, + "Bitwise Operations": 0, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, "Resource Deallocation & Cleanup": 0, @@ -639281,7 +639261,7 @@ "Cognitive Load Exposure": "83.04%", "Error & Exception Exposure": "95.16%", "Tech Debt Exposure": "48.9%", - "Testing Exposure": "35.83%", + "Testing Exposure": "35.82%", "API Exposure": "0.74%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "100.0%", @@ -641162,25 +641142,25 @@ } }, "assembly/freebsd_kernel_arch": { - "Directory Group Magnitude": 1311.26, + "Directory Group Magnitude": 1252.02, "File Count": 17, "Ecosystem Fingerprint (Archetypes)": { "Unclassified": "94.1%", "Static: Literature & Documentation": "5.9%" }, "Average Risk Exposures": { - "Cognitive Load Exposure": "7.65%", - "Error & Exception Exposure": "30.7%", - "Tech Debt Exposure": "2.13%", - "Testing Exposure": "25.06%", + "Cognitive Load Exposure": "9.85%", + "Error & Exception Exposure": "31.11%", + "Tech Debt Exposure": "3.15%", + "Testing Exposure": "25.1%", "API Exposure": "2.02%", - "Concurrency Exposure": "3.65%", - "State Flux Exposure": "2.81%", + "Concurrency Exposure": "4.08%", + "State Flux Exposure": "1.55%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "94.12%", "Instability Exposure": "47.06%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "22.12%", + "Documentation Exposure": "15.82%", "Hardcoded Payload Artifacts": "0.0%" }, "Files": { @@ -641197,9 +641177,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 2927.23, - "Y": 115.81, - "Z": -7509.46 + "X": 3516.24, + "Y": 71.06, + "Z": -8332.32 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -641209,21 +641189,21 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 293, - "Coding LOC": 250, - "Documentation LOC": 5, - "Structural Magnitude": 39.9, - "Control Flow Ratio": "21.6%", + "Coding LOC": 126, + "Documentation LOC": 129, + "Structural Magnitude": 33.42, + "Control Flow Ratio": "17.1%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.052 + "Raw Cognitive Density": 0.087 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.78%", - "Error & Exception Exposure": "55.4%", - "Tech Debt Exposure": "16.8%", - "Testing Exposure": "2.39%", + "Cognitive Load Exposure": "6.59%", + "Error & Exception Exposure": "59.89%", + "Tech Debt Exposure": "32.87%", + "Testing Exposure": "2.47%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -641231,27 +641211,27 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "15.89%", + "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { "Function Name": "wakeup_start", - "Structural Impact": 16.4, + "Structural Impact": 14.4, "Lines of Code (LOC)": 88, - "Control Flow Branches": 5, + "Control Flow Branches": 4, "Input Parameters": 3, - "Control Flow Ratio": "27.8%", + "Control Flow Ratio": "23.5%", "Start Line": 56, "End Line": 143 }, { "Function Name": "wakeup_32", - "Structural Impact": 10.1, + "Structural Impact": 8.1, "Lines of Code (LOC)": 82, - "Control Flow Branches": 2, + "Control Flow Branches": 1, "Input Parameters": 3, - "Control Flow Ratio": "14.3%", + "Control Flow Ratio": "7.7%", "Start Line": 144, "End Line": 225 }, @@ -641288,7 +641268,7 @@ ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 8, + "Control Flow Branches": 6, "Sequential Logic Declarations": 29, "Function Parameters": 27, "Function/Method Declarations": 5, @@ -641296,7 +641276,7 @@ "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 1, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 26, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -641317,7 +641297,7 @@ "Acknowledged Tech Debt (FIXMEs)": 0, "Specification Traceability Tags": 0, "Server-Side Rendering Contexts": 0, - "Event Publishers / Emitters": 1, + "Event Publishers / Emitters": 0, "Dependency Injection Constructs": 0, "Preprocessor Macros": 0, "Pointer Arithmetic & Addressing": 0, @@ -641328,14 +641308,14 @@ "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 37, + "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": 125, + "Structural Tab Indentations": 103, "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, @@ -641405,9 +641385,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 2647.81, - "Y": 152.28, - "Z": -7787.16 + "X": 2648.93, + "Y": 152.18, + "Z": -7788.57 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -641417,21 +641397,21 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 277, - "Coding LOC": 245, - "Documentation LOC": 9, - "Structural Magnitude": 12.4, - "Control Flow Ratio": "76.4%", + "Coding LOC": 130, + "Documentation LOC": 124, + "Structural Magnitude": 10.1, + "Control Flow Ratio": "77.8%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.192 + "Raw Cognitive Density": 0.362 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "9.69%", + "Cognitive Load Exposure": "17.45%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.32%", + "Testing Exposure": "2.34%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -641439,7 +641419,7 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "15.58%", + "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -641457,14 +641437,14 @@ "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 42, - "Sequential Logic Declarations": 13, + "Sequential Logic Declarations": 12, "Function Parameters": 14, "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": 12, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -641496,14 +641476,14 @@ "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 25, + "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": 125, + "Structural Tab Indentations": 123, "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, @@ -641573,9 +641553,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 3253.63, - "Y": 174.98, - "Z": -7676.69 + "X": 3253.24, + "Y": 174.96, + "Z": -7677.11 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -641585,18 +641565,18 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 70, - "Coding LOC": 63, - "Documentation LOC": 2, - "Structural Magnitude": 16.26, - "Control Flow Ratio": "60.0%", + "Coding LOC": 25, + "Documentation LOC": 40, + "Structural Magnitude": 15.5, + "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.127 + "Raw Cognitive Density": 0.28 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "7.64%", + "Cognitive Load Exposure": "13.24%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.3%", @@ -641607,13 +641587,13 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "30.09%", + "Documentation Exposure": "17.69%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 3, + "Control Flow Branches": 2, "Sequential Logic Declarations": 2, "Function Parameters": 2, "Function/Method Declarations": 0, @@ -641621,7 +641601,7 @@ "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "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, @@ -641653,7 +641633,7 @@ "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 22, + "Bitwise Operations": 0, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, "Resource Deallocation & Cleanup": 0, @@ -641730,9 +641710,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 3062.45, - "Y": 89.41, - "Z": -8676.49 + "X": 3062.26, + "Y": 89.43, + "Z": -8675.48 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -641742,18 +641722,18 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 499, - "Coding LOC": 446, - "Documentation LOC": 7, - "Structural Magnitude": 100.52, - "Control Flow Ratio": "11.3%", + "Coding LOC": 344, + "Documentation LOC": 109, + "Structural Magnitude": 98.48, + "Control Flow Ratio": "11.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.074 + "Raw Cognitive Density": 0.093 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "6.27%", + "Cognitive Load Exposure": "6.74%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", @@ -641764,7 +641744,7 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "16.2%", + "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -641931,15 +641911,15 @@ ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 28, + "Control Flow Branches": 27, "Sequential Logic Declarations": 219, - "Function Parameters": 238, + "Function Parameters": 233, "Function/Method Declarations": 16, "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 1, + "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 12, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 2, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -641951,7 +641931,7 @@ "Global State Dependencies": 0, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, - "Collection Iterators / Comprehensions": 1, + "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, @@ -641971,14 +641951,14 @@ "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 1, - "Bitwise Operations": 33, + "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": 342, + "Structural Tab Indentations": 317, "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, @@ -642048,9 +642028,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 2925.86, - "Y": 80.06, - "Z": -8863.22 + "X": 2925.89, + "Y": 80.1, + "Z": -8861.51 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -642060,21 +642040,21 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 119, - "Coding LOC": 105, - "Documentation LOC": 2, - "Structural Magnitude": 5.6, + "Coding LOC": 76, + "Documentation LOC": 31, + "Structural Magnitude": 5.02, "Control Flow Ratio": "18.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.133 + "Raw Cognitive Density": 0.184 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "7.82%", + "Cognitive Load Exposure": "9.42%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.32%", + "Testing Exposure": "2.33%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -642082,7 +642062,7 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "22.59%", + "Documentation Exposure": "16.83%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -642107,7 +642087,7 @@ "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "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, @@ -642139,7 +642119,7 @@ "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 19, + "Bitwise Operations": 0, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, "Resource Deallocation & Cleanup": 0, @@ -642216,9 +642196,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 3083.3, + "X": 3083.15, "Y": 118.21, - "Z": -8096.45 + "Z": -8096.06 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -642228,39 +642208,39 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 1376, - "Coding LOC": 1293, - "Documentation LOC": 27, - "Structural Magnitude": 463.96, + "Coding LOC": 988, + "Documentation LOC": 332, + "Structural Magnitude": 448.66, "Control Flow Ratio": "26.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.151 + "Raw Cognitive Density": 0.189 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "8.34%", - "Error & Exception Exposure": "52.36%", - "Tech Debt Exposure": "10.6%", + "Cognitive Load Exposure": "9.6%", + "Error & Exception Exposure": "53.68%", + "Tech Debt Exposure": "11.72%", "Testing Exposure": "80.0%", "API Exposure": "9.02%", - "Concurrency Exposure": "34.78%", - "State Flux Exposure": "11.21%", + "Concurrency Exposure": "39.76%", + "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "25.63%", + "Documentation Exposure": "20.06%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { "Function Name": "fast_syscall_common", - "Structural Impact": 56.3, + "Structural Impact": 53.6, "Lines of Code (LOC)": 173, - "Control Flow Branches": 17, + "Control Flow Branches": 16, "Input Parameters": 6, - "Control Flow Ratio": "18.1%", + "Control Flow Ratio": "17.2%", "Start Line": 527, "End Line": 699 }, @@ -642326,11 +642306,11 @@ }, { "Function Name": "nmi_calltrap", - "Structural Impact": 16.1, + "Structural Impact": 13.9, "Lines of Code (LOC)": 54, - "Control Flow Branches": 5, + "Control Flow Branches": 4, "Input Parameters": 4, - "Control Flow Ratio": "35.7%", + "Control Flow Ratio": "30.8%", "Start Line": 842, "End Line": 895 }, @@ -642347,12 +642327,12 @@ { "Function Name": "nmi_fromuserspace", "Structural Impact": 11.2, - "Lines of Code (LOC)": 25, + "Lines of Code (LOC)": 24, "Control Flow Branches": 4, "Input Parameters": 3, "Control Flow Ratio": "36.4%", "Start Line": 817, - "End Line": 841 + "End Line": 840 }, { "Function Name": "alltraps_pushregs_no_rax", @@ -642374,16 +642354,6 @@ "Start Line": 1203, "End Line": 1240 }, - { - "Function Name": "outofnmi", - "Structural Impact": 8.9, - "Lines of Code (LOC)": 19, - "Control Flow Branches": 3, - "Input Parameters": 3, - "Control Flow Ratio": "42.9%", - "Start Line": 896, - "End Line": 914 - }, { "Function Name": "fsbase_load_fault", "Structural Impact": 7.7, @@ -642405,14 +642375,14 @@ "End Line": 1374 }, { - "Function Name": "doreti_ast", - "Structural Impact": 6.8, - "Lines of Code (LOC)": 22, - "Control Flow Branches": 3, - "Input Parameters": 1, - "Control Flow Ratio": "42.9%", - "Start Line": 1118, - "End Line": 1139 + "Function Name": "outofnmi", + "Structural Impact": 7.0, + "Lines of Code (LOC)": 19, + "Control Flow Branches": 2, + "Input Parameters": 3, + "Control Flow Ratio": "33.3%", + "Start Line": 896, + "End Line": 914 }, { "Function Name": "alltraps_u", @@ -642434,6 +642404,16 @@ "Start Line": 1140, "End Line": 1156 }, + { + "Function Name": "doreti_ast", + "Structural Impact": 6.4, + "Lines of Code (LOC)": 14, + "Control Flow Branches": 3, + "Input Parameters": 1, + "Control Flow Ratio": "60.0%", + "Start Line": 1118, + "End Line": 1131 + }, { "Function Name": "gs_load_fault", "Structural Impact": 6.4, @@ -642517,12 +642497,12 @@ { "Function Name": "mchk_fromuserspace", "Structural Impact": 3.5, - "Lines of Code (LOC)": 10, + "Lines of Code (LOC)": 9, "Control Flow Branches": 2, "Input Parameters": 0, "Control Flow Ratio": "40.0%", "Start Line": 1021, - "End Line": 1030 + "End Line": 1029 }, { "Function Name": "alltraps_noen_u", @@ -642667,21 +642647,21 @@ ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 140, - "Sequential Logic Declarations": 398, - "Function Parameters": 235, + "Control Flow Branches": 137, + "Sequential Logic Declarations": 390, + "Function Parameters": 230, "Function/Method Declarations": 41, "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 4, + "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 5, "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 44, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 25, - "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": 16, + "Asynchronous/Concurrent Execution": 15, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, "Global State Dependencies": 4, @@ -642696,7 +642676,7 @@ "Acknowledged Tech Debt (FIXMEs)": 2, "Specification Traceability Tags": 0, "Server-Side Rendering Contexts": 0, - "Event Publishers / Emitters": 10, + "Event Publishers / Emitters": 2, "Dependency Injection Constructs": 0, "Preprocessor Macros": 8, "Pointer Arithmetic & Addressing": 0, @@ -642707,14 +642687,14 @@ "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 1, "Thread Sleeps & Blocking Waits": 1, - "Bitwise Operations": 72, + "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": 928, + "Structural Tab Indentations": 889, "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, @@ -642784,9 +642764,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 3654.43, - "Y": 106.09, - "Z": -7985.03 + "X": 2490.44, + "Y": 140.87, + "Z": -7952.9 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -642796,29 +642776,29 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 92, - "Coding LOC": 84, - "Documentation LOC": 3, - "Structural Magnitude": 25.98, - "Control Flow Ratio": "38.5%", + "Coding LOC": 39, + "Documentation LOC": 48, + "Structural Magnitude": 19.68, + "Control Flow Ratio": "41.7%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.143 + "Raw Cognitive Density": 0.256 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "8.1%", - "Error & Exception Exposure": "61.68%", + "Cognitive Load Exposure": "12.19%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.48%", + "Testing Exposure": "2.61%", "API Exposure": "4.85%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "16.47%", + "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "41.91%", + "Documentation Exposure": "36.35%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -642852,26 +642832,6 @@ "Start Line": 66, "End Line": 68 }, - { - "Function Name": "r11", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 46, - "End Line": 52 - }, - { - "Function Name": "r9", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 44, - "End Line": 44 - }, { "Function Name": "kexec_stack", "Structural Impact": 1.2, @@ -642881,31 +642841,21 @@ "Control Flow Ratio": "0.0%", "Start Line": 88, "End Line": 91 - }, - { - "Function Name": "r10", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 45, - "End Line": 45 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 5, - "Sequential Logic Declarations": 8, - "Function Parameters": 11, - "Function/Method Declarations": 7, + "Sequential Logic Declarations": 7, + "Function Parameters": 10, + "Function/Method Declarations": 4, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 10, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 2, - "State Mutations / Variable Reassignments": 1, + "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, @@ -642935,14 +642885,14 @@ "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 20, + "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": 38, + "Structural Tab Indentations": 30, "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, @@ -643012,9 +642962,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 2429.1, - "Y": 149.93, - "Z": -8496.73 + "X": 3743.03, + "Y": 118.51, + "Z": -8298.49 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -643024,21 +642974,21 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 197, - "Coding LOC": 163, - "Documentation LOC": 8, - "Structural Magnitude": 13.86, - "Control Flow Ratio": "16.7%", + "Coding LOC": 92, + "Documentation LOC": 79, + "Structural Magnitude": 12.44, + "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.067 + "Raw Cognitive Density": 0.109 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "6.12%", - "Error & Exception Exposure": "60.89%", + "Cognitive Load Exposure": "7.14%", + "Error & Exception Exposure": "67.33%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.34%", + "Testing Exposure": "2.37%", "API Exposure": "4.15%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -643046,7 +642996,7 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "24.92%", + "Documentation Exposure": "14.31%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -643083,15 +643033,15 @@ ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 6, + "Control Flow Branches": 5, "Sequential Logic Declarations": 30, - "Function Parameters": 8, + "Function Parameters": 7, "Function/Method Declarations": 3, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 11, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 2, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -643123,14 +643073,14 @@ "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 1, "Thread Sleeps & Blocking Waits": 1, - "Bitwise Operations": 28, + "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": 85, + "Structural Tab Indentations": 81, "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, @@ -643173,7 +643123,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, @@ -643200,9 +643150,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 3499.22, - "Y": 134.49, - "Z": -8430.62 + "X": 2908.49, + "Y": 179.25, + "Z": -7608.0 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -643212,21 +643162,21 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 279, - "Coding LOC": 247, - "Documentation LOC": 3, - "Structural Magnitude": 41.44, - "Control Flow Ratio": "28.6%", + "Coding LOC": 99, + "Documentation LOC": 151, + "Structural Magnitude": 32.28, + "Control Flow Ratio": "20.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.053 + "Raw Cognitive Density": 0.101 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.79%", - "Error & Exception Exposure": "55.46%", + "Cognitive Load Exposure": "6.94%", + "Error & Exception Exposure": "62.05%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.39%", + "Testing Exposure": "2.48%", "API Exposure": "6.36%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -643234,17 +643184,17 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "28.93%", + "Documentation Exposure": "12.01%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { "Function Name": "protmode", - "Structural Impact": 11.3, + "Structural Impact": 9.6, "Lines of Code (LOC)": 88, - "Control Flow Branches": 3, + "Control Flow Branches": 2, "Input Parameters": 2, - "Control Flow Ratio": "23.1%", + "Control Flow Ratio": "16.7%", "Start Line": 87, "End Line": 174 }, @@ -643258,16 +643208,6 @@ "Start Line": 36, "End Line": 86 }, - { - "Function Name": "gdt", - "Structural Impact": 4.5, - "Lines of Code (LOC)": 37, - "Control Flow Branches": 2, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 180, - "End Line": 216 - }, { "Function Name": "entry_64", "Structural Impact": 4.5, @@ -643311,7 +643251,7 @@ ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 8, + "Control Flow Branches": 5, "Sequential Logic Declarations": 20, "Function Parameters": 10, "Function/Method Declarations": 7, @@ -643319,7 +643259,7 @@ "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 1, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 26, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 5, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -643351,14 +643291,14 @@ "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 35, + "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": 103, + "Structural Tab Indentations": 80, "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, @@ -643376,11 +643316,11 @@ "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, @@ -643428,9 +643368,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 3382.4, - "Y": 110.33, - "Z": -8949.1 + "X": 3381.88, + "Y": 110.37, + "Z": -8947.9 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -643440,21 +643380,21 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 100, - "Coding LOC": 86, - "Documentation LOC": 9, - "Structural Magnitude": 16.72, - "Control Flow Ratio": "60.0%", + "Coding LOC": 42, + "Documentation LOC": 53, + "Structural Magnitude": 15.84, + "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.093 + "Raw Cognitive Density": 0.167 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "6.74%", - "Error & Exception Exposure": "61.87%", + "Cognitive Load Exposure": "8.84%", + "Error & Exception Exposure": "82.12%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.3%", + "Testing Exposure": "2.31%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -643462,21 +643402,21 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "22.71%", + "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 3, + "Control Flow Branches": 2, "Sequential Logic Declarations": 2, "Function Parameters": 7, "Function/Method Declarations": 0, "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 1, + "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 1, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 8, + "High-Risk Execution Commands": 1, + "I/O and Network Boundaries": 1, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -643508,7 +643448,7 @@ "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 1, "Thread Sleeps & Blocking Waits": 1, - "Bitwise Operations": 22, + "Bitwise Operations": 0, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, "Resource Deallocation & Cleanup": 0, @@ -643585,9 +643525,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 2794.66, - "Y": 125.88, - "Z": -8077.1 + "X": 2795.05, + "Y": 125.85, + "Z": -8077.2 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -643597,29 +643537,29 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 1999, - "Coding LOC": 1780, - "Documentation LOC": 7, - "Structural Magnitude": 319.4, - "Control Flow Ratio": "35.2%", + "Coding LOC": 1500, + "Documentation LOC": 287, + "Structural Magnitude": 311.2, + "Control Flow Ratio": "34.9%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.151 + "Raw Cognitive Density": 0.178 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "8.35%", - "Error & Exception Exposure": "51.19%", - "Tech Debt Exposure": "8.74%", + "Cognitive Load Exposure": "9.21%", + "Error & Exception Exposure": "51.41%", + "Tech Debt Exposure": "8.98%", "Testing Exposure": "80.0%", "API Exposure": "0.0%", - "Concurrency Exposure": "27.3%", + "Concurrency Exposure": "29.62%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "14.91%", + "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -643635,11 +643575,11 @@ }, { "Function Name": "wrmsr_early_faulted", - "Structural Impact": 55.9, + "Structural Impact": 53.3, "Lines of Code (LOC)": 166, - "Control Flow Branches": 17, + "Control Flow Branches": 16, "Input Parameters": 6, - "Control Flow Ratio": "45.9%", + "Control Flow Ratio": "44.4%", "Start Line": 1575, "End Line": 1740 }, @@ -643706,15 +643646,15 @@ ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 204, + "Control Flow Branches": 202, "Sequential Logic Declarations": 376, - "Function Parameters": 952, + "Function Parameters": 885, "Function/Method Declarations": 8, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 3, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 25, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -643735,7 +643675,7 @@ "Acknowledged Tech Debt (FIXMEs)": 1, "Specification Traceability Tags": 0, "Server-Side Rendering Contexts": 0, - "Event Publishers / Emitters": 3, + "Event Publishers / Emitters": 2, "Dependency Injection Constructs": 0, "Preprocessor Macros": 30, "Pointer Arithmetic & Addressing": 0, @@ -643746,14 +643686,14 @@ "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 44, + "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": 1258, + "Structural Tab Indentations": 1231, "Structural Space Indentations": 1, "Hardware Bridge": 0, "Cryptography": 0, @@ -643771,9 +643711,9 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 33, + "Core Var Decl": 23, "Design Camel Case": 0, - "Design Snake Case": 33, + "Design Snake Case": 23, "Design Pascal Case": 0, "Design Upper Case": 0, "Design Short Vars": 2, @@ -643823,9 +643763,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 2773.95, - "Y": 129.35, - "Z": -8576.4 + "X": 2774.16, + "Y": 129.36, + "Z": -8575.33 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -643835,29 +643775,29 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 209, - "Coding LOC": 167, - "Documentation LOC": 12, - "Structural Magnitude": 30.24, + "Coding LOC": 112, + "Documentation LOC": 67, + "Structural Magnitude": 29.14, "Control Flow Ratio": "19.4%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.108 + "Raw Cognitive Density": 0.161 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "7.12%", - "Error & Exception Exposure": "62.37%", + "Cognitive Load Exposure": "8.65%", + "Error & Exception Exposure": "67.17%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.4%", + "Testing Exposure": "2.45%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "20.08%", + "State Flux Exposure": "26.34%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "16.91%", + "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -643942,7 +643882,7 @@ "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 9, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 3, "Commented-out Code (Dead Logic)": 0, @@ -643966,7 +643906,7 @@ "Event Publishers / Emitters": 0, "Dependency Injection Constructs": 0, "Preprocessor Macros": 0, - "Pointer Arithmetic & Addressing": 5, + "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, @@ -643974,14 +643914,14 @@ "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 1, "Thread Sleeps & Blocking Waits": 1, - "Bitwise Operations": 19, + "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": 108, + "Structural Tab Indentations": 93, "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, @@ -643999,12 +643939,12 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 1, + "Core Var Decl": 0, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 1, - "Design Short Vars": 1, + "Design Upper Case": 0, + "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, "Orphaned Logic": 0, @@ -644051,9 +643991,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 3727.07, - "Y": 66.53, - "Z": -8463.9 + "X": 2412.66, + "Y": 97.98, + "Z": -8660.58 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -644063,21 +644003,21 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 77, - "Coding LOC": 71, - "Documentation LOC": 2, - "Structural Magnitude": 13.52, - "Control Flow Ratio": "21.7%", + "Coding LOC": 38, + "Documentation LOC": 35, + "Structural Magnitude": 12.86, + "Control Flow Ratio": "18.2%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.141 + "Raw Cognitive Density": 0.237 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "8.04%", + "Cognitive Load Exposure": "11.38%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.42%", + "Testing Exposure": "2.52%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -644085,7 +644025,7 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "28.0%", + "Documentation Exposure": "18.68%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -644102,7 +644042,7 @@ ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 5, + "Control Flow Branches": 4, "Sequential Logic Declarations": 18, "Function Parameters": 9, "Function/Method Declarations": 1, @@ -644110,7 +644050,7 @@ "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 11, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -644131,7 +644071,7 @@ "Acknowledged Tech Debt (FIXMEs)": 0, "Specification Traceability Tags": 0, "Server-Side Rendering Contexts": 0, - "Event Publishers / Emitters": 2, + "Event Publishers / Emitters": 0, "Dependency Injection Constructs": 0, "Preprocessor Macros": 0, "Pointer Arithmetic & Addressing": 0, @@ -644142,7 +644082,7 @@ "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 21, + "Bitwise Operations": 0, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, "Resource Deallocation & Cleanup": 0, @@ -644219,9 +644159,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 2488.07, - "Y": 134.79, - "Z": -8008.78 + "X": 3651.4, + "Y": 99.96, + "Z": -8041.78 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -644231,21 +644171,21 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 141, - "Coding LOC": 116, - "Documentation LOC": 18, - "Structural Magnitude": 23.72, - "Control Flow Ratio": "66.7%", + "Coding LOC": 67, + "Documentation LOC": 67, + "Structural Magnitude": 20.74, + "Control Flow Ratio": "57.1%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.095 + "Raw Cognitive Density": 0.134 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "6.78%", - "Error & Exception Exposure": "60.75%", + "Cognitive Load Exposure": "7.85%", + "Error & Exception Exposure": "85.3%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.4%", + "Testing Exposure": "2.49%", "API Exposure": "6.5%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -644253,7 +644193,7 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "41.33%", + "Documentation Exposure": "36.9%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -644269,11 +644209,11 @@ }, { "Function Name": "__vdso_ia32_osigcode", - "Structural Impact": 5.5, + "Structural Impact": 3.5, "Lines of Code (LOC)": 29, - "Control Flow Branches": 3, + "Control Flow Branches": 1, "Input Parameters": 0, - "Control Flow Ratio": "75.0%", + "Control Flow Ratio": "50.0%", "Start Line": 104, "End Line": 132 }, @@ -644300,15 +644240,15 @@ ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 6, + "Control Flow Branches": 4, "Sequential Logic Declarations": 3, "Function Parameters": 4, "Function/Method Declarations": 4, "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 3, + "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 9, + "High-Risk Execution Commands": 3, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 4, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -644340,182 +644280,182 @@ "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 3, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 23, + "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": 61, - "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": 0, - "Design Camel Case": 0, - "Design Snake Case": 0, - "Design Pascal Case": 0, - "Design Upper Case": 0, - "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": 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": [] - }, - "assembly/freebsd_kernel_arch/amd64_linux32_linux32_support.S": { - "1. Artifact Identity": { - "Filename": "amd64_linux32_linux32_support.S", - "Path": "assembly/freebsd_kernel_arch/amd64_linux32_linux32_support.S", - "Language": "Assembly", - "Architect": "Unknown Architect", - "Indentation Style": "Tabs", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "assembly", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .s)" - }, - "2. Topological Coordinates": { - "X": 3334.78, - "Y": 92.84, - "Z": -7743.88 - }, - "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": 230, - "Coding LOC": 196, - "Documentation LOC": 20, - "Structural Magnitude": 92.62, - "Control Flow Ratio": "30.4%", - "Popularity Rank": 0, - "Raw Churn Frequency": 0.0, - "Authorship Centralization": 0.0, - "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.291 - }, - "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "13.74%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "80.0%", - "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": "15.18%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "5. Function Analysis": [ - { - "Function Name": "futex_fault", - "Structural Impact": 80.7, - "Lines of Code (LOC)": 194, - "Control Flow Branches": 28, - "Input Parameters": 5, - "Control Flow Ratio": "30.4%", - "Start Line": 35, - "End Line": 228 - } - ], - "6. Contextual Mitigations & Amplifications": "None Detected", - "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 28, - "Sequential Logic Declarations": 64, - "Function Parameters": 99, - "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": 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": 8, - "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": 19, - "Thread Synchronization Locks": 8, - "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 0, - "Event Listeners & Subscribers": 0, - "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 141, + "Structural Tab Indentations": 59, + "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": 0, + "Design Camel Case": 0, + "Design Snake Case": 0, + "Design Pascal Case": 0, + "Design Upper Case": 0, + "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)": 0, + "Direct Downstream (Dependency Blast Radius)": 0, + "Total Upstream (Absolute Fragility)": 0, + "Total Downstream (Absolute Dependency Blast Radius)": 0 + }, + "9. Extracted Dependencies": [] + }, + "assembly/freebsd_kernel_arch/amd64_linux32_linux32_support.S": { + "1. Artifact Identity": { + "Filename": "amd64_linux32_linux32_support.S", + "Path": "assembly/freebsd_kernel_arch/amd64_linux32_linux32_support.S", + "Language": "Assembly", + "Architect": "Unknown Architect", + "Indentation Style": "Tabs", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "assembly", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .s)" + }, + "2. Topological Coordinates": { + "X": 3334.35, + "Y": 92.83, + "Z": -7743.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": 230, + "Coding LOC": 169, + "Documentation LOC": 47, + "Structural Magnitude": 92.08, + "Control Flow Ratio": "30.4%", + "Popularity Rank": 0, + "Raw Churn Frequency": 0.0, + "Authorship Centralization": 0.0, + "Ownership Entropy": 0.0, + "Raw Cognitive Density": 0.337 + }, + "4. Vulnerability & Risk Exposures": { + "Cognitive Load Exposure": "16.1%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "80.0%", + "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": "12.31%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "5. Function Analysis": [ + { + "Function Name": "futex_fault", + "Structural Impact": 80.7, + "Lines of Code (LOC)": 194, + "Control Flow Branches": 28, + "Input Parameters": 5, + "Control Flow Ratio": "30.4%", + "Start Line": 35, + "End Line": 228 + } + ], + "6. Contextual Mitigations & Amplifications": "None Detected", + "7. Structural Signatures (Net Mitigated Signals)": { + "Control Flow Branches": 28, + "Sequential Logic Declarations": 64, + "Function Parameters": 99, + "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": 8, + "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": 8, + "Immutable Data Declarations": 0, + "Resource Deallocation & Cleanup": 0, + "Private / Encapsulated Scopes": 0, + "Event Listeners & Subscribers": 0, + "Bypassed / Skipped Tests": 0, + "Structural Tab Indentations": 141, "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, @@ -644585,9 +644525,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 2580.47, - "Y": 110.02, - "Z": -8384.67 + "X": 2580.79, + "Y": 110.01, + "Z": -8384.19 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -644597,18 +644537,18 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 230, - "Coding LOC": 196, - "Documentation LOC": 20, - "Structural Magnitude": 92.62, + "Coding LOC": 169, + "Documentation LOC": 47, + "Structural Magnitude": 92.08, "Control Flow Ratio": "30.4%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.291 + "Raw Cognitive Density": 0.337 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "13.74%", + "Cognitive Load Exposure": "16.1%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", @@ -644619,7 +644559,7 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "15.18%", + "Documentation Exposure": "12.31%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -644644,7 +644584,7 @@ "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "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, @@ -644676,7 +644616,7 @@ "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 19, + "Bitwise Operations": 0, "Thread Synchronization Locks": 8, "Immutable Data Declarations": 0, "Resource Deallocation & Cleanup": 0, @@ -644753,9 +644693,9 @@ "Identity Proof": "Metadata Anchor (COPYRIGHT)" }, "2. Topological Coordinates": { - "X": 3617.51, + "X": 3617.05, "Y": 137.93, - "Z": -7859.18 + "Z": -7859.06 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -684641,9 +684581,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": -920.62, + "X": -920.57, "Y": -227.61, - "Z": -5536.6 + "Z": -5536.27 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -684798,9 +684738,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -877.3, + "X": -877.25, "Y": -197.73, - "Z": -6314.06 + "Z": -6313.73 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -685096,9 +685036,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -473.69, + "X": -473.64, "Y": -240.93, - "Z": -6480.48 + "Z": -6480.14 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -685274,9 +685214,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -1155.29, + "X": -1155.25, "Y": -217.67, - "Z": -6627.23 + "Z": -6626.89 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -685472,9 +685412,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -1429.18, + "X": -1429.13, "Y": -227.48, - "Z": -6278.06 + "Z": -6277.73 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -685650,9 +685590,9 @@ "Identity Proof": "Single Indicator (Ext: .sh)" }, "2. Topological Coordinates": { - "X": -377.75, + "X": -377.7, "Y": -171.66, - "Z": -6829.81 + "Z": -6829.47 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -685818,9 +685758,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -1053.94, + "X": -1053.89, "Y": -280.11, - "Z": -7108.35 + "Z": -7108.01 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -685996,9 +685936,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -1038.13, + "X": -1038.08, "Y": -260.02, - "Z": -5850.41 + "Z": -5850.07 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -686184,9 +686124,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -328.23, + "X": -328.18, "Y": -217.08, - "Z": -5753.84 + "Z": -5753.51 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -686362,9 +686302,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -678.39, + "X": -678.34, "Y": -218.82, - "Z": -5702.83 + "Z": -5702.5 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -686540,9 +686480,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -1187.04, + "X": -1186.99, "Y": -258.37, - "Z": -5942.78 + "Z": -5942.44 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -686858,9 +686798,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -361.29, + "X": -361.24, "Y": -249.93, - "Z": -5941.7 + "Z": -5941.36 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -687036,9 +686976,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -891.4, + "X": -891.35, "Y": -281.13, - "Z": -6660.73 + "Z": -6660.4 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -687284,9 +687224,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -1717.21, + "X": -1717.16, "Y": -270.39, - "Z": -6241.31 + "Z": -6240.98 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -687452,9 +687392,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -1455.24, + "X": -1455.19, "Y": -297.08, - "Z": -6116.12 + "Z": -6115.78 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -687478,7 +687418,7 @@ "Cognitive Load Exposure": "100.0%", "Error & Exception Exposure": "100.0%", "Tech Debt Exposure": "100.0%", - "Testing Exposure": "3.73%", + "Testing Exposure": "3.72%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "100.0%", @@ -687620,9 +687560,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -1545.16, + "X": -1545.11, "Y": -255.54, - "Z": -6387.46 + "Z": -6387.12 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -687798,9 +687738,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -636.24, + "X": -636.19, "Y": -194.72, - "Z": -6875.26 + "Z": -6874.92 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -687986,9 +687926,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -1327.29, + "X": -1327.24, "Y": -288.84, - "Z": -5476.57 + "Z": -5476.23 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -688164,9 +688104,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -634.67, + "X": -634.62, "Y": -205.38, - "Z": -5979.33 + "Z": -5978.99 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -688362,9 +688302,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -217.52, + "X": -217.47, "Y": -216.95, - "Z": -6332.77 + "Z": -6332.43 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -698465,7 +698405,7 @@ "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "94.95%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "0.57%", + "Testing Exposure": "0.56%", "API Exposure": "2.89%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "100.0%", @@ -701461,9 +701401,9 @@ "Identity Proof": "Single Indicator (Ext: .sol)" }, "2. Topological Coordinates": { - "X": -1575.69, + "X": -1575.64, "Y": -141.56, - "Z": -8611.8 + "Z": -8611.52 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -701743,9 +701683,9 @@ "Identity Proof": "Single Indicator (Ext: .sol)" }, "2. Topological Coordinates": { - "X": -1287.82, + "X": -1287.77, "Y": -203.92, - "Z": -7929.73 + "Z": -7929.46 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -701976,9 +701916,9 @@ "Identity Proof": "Single Indicator (Ext: .sol)" }, "2. Topological Coordinates": { - "X": -1880.57, + "X": -1880.52, "Y": -280.56, - "Z": -7970.68 + "Z": -7970.41 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -702231,9 +702171,9 @@ "Identity Proof": "Single Indicator (Ext: .sol)" }, "2. Topological Coordinates": { - "X": -1551.81, + "X": -1551.76, "Y": -165.03, - "Z": -8428.67 + "Z": -8428.39 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -702962,9 +702902,9 @@ "Identity Proof": "Single Indicator (Ext: .sol)" }, "2. Topological Coordinates": { - "X": -1706.55, + "X": -1706.49, "Y": -276.55, - "Z": -7691.32 + "Z": -7691.04 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -703160,9 +703100,9 @@ "Identity Proof": "Single Indicator (Ext: .sol)" }, "2. Topological Coordinates": { - "X": -1132.43, + "X": -1132.38, "Y": -115.73, - "Z": -8507.21 + "Z": -8506.94 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -703400,9 +703340,9 @@ "Identity Proof": "Single Indicator (Ext: .sol)" }, "2. Topological Coordinates": { - "X": -2036.78, + "X": -2036.73, "Y": -170.9, - "Z": -8299.16 + "Z": -8298.88 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -705982,7 +705922,7 @@ "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "0.84%", + "Testing Exposure": "0.83%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -724096,7 +724036,7 @@ "Cognitive Load Exposure": "60.0%", "Error & Exception Exposure": "69.36%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.92%", + "Testing Exposure": "2.91%", "API Exposure": "1.79%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "100.0%", @@ -761708,45 +761648,44 @@ } } }, - "assembly/freebsd_libc_string": { - "Directory Group Magnitude": 465.18, - "File Count": 25, + "cobol/cobol-programming-course": { + "Directory Group Magnitude": 461.14, + "File Count": 7, "Ecosystem Fingerprint (Archetypes)": { - "Unclassified": "96.0%", - "Static: Literature & Documentation": "4.0%" + "Unclassified": "100.0%" }, "Average Risk Exposures": { - "Cognitive Load Exposure": "8.12%", - "Error & Exception Exposure": "9.11%", - "Tech Debt Exposure": "1.9%", - "Testing Exposure": "2.01%", - "API Exposure": "0.0%", + "Cognitive Load Exposure": "59.27%", + "Error & Exception Exposure": "78.34%", + "Tech Debt Exposure": "99.25%", + "Testing Exposure": "24.6%", + "API Exposure": "1.15%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "5.83%", - "Commented Logic Exposure": "0.26%", - "Specification Exposure": "87.47%", - "Instability Exposure": "48.0%", + "State Flux Exposure": "99.77%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "100.0%", + "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "23.34%", + "Documentation Exposure": "22.78%", "Hardcoded Payload Artifacts": "0.0%" }, "Files": { - "assembly/freebsd_libc_string/gen__setjmp.S": { + "cobol/cobol-programming-course/CBL0106.cbl": { "1. Artifact Identity": { - "Filename": "gen__setjmp.S", - "Path": "assembly/freebsd_libc_string/gen__setjmp.S", - "Language": "Assembly", + "Filename": "CBL0106.cbl", + "Path": "cobol/cobol-programming-course/CBL0106.cbl", + "Language": "Cobol", "Architect": "Unknown Architect", - "Indentation Style": "Tabs", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "assembly", + "Folder Dominant Lang": "cobol", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .s)" + "Identity Proof": "Single Indicator (Ext: .cbl)" }, "2. Topological Coordinates": { - "X": 4110.43, - "Y": 145.49, - "Z": -3208.16 + "X": 1558.96, + "Y": 47.06, + "Z": -8275.49 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -761755,60 +761694,161 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 91, - "Coding LOC": 85, - "Documentation LOC": 1, - "Structural Magnitude": 16.7, - "Control Flow Ratio": "14.3%", + "Total LOC": 196, + "Coding LOC": 161, + "Documentation LOC": 28, + "Structural Magnitude": 84.12, + "Control Flow Ratio": "69.2%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.106 + "Raw Cognitive Density": 0.727 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "7.07%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.3%", + "Cognitive Load Exposure": "45.9%", + "Error & Exception Exposure": "77.11%", + "Tech Debt Exposure": "98.89%", + "Testing Exposure": "2.43%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", + "State Flux Exposure": "99.99%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "25.61%", + "Documentation Exposure": "14.14%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [], + "5. Function Analysis": [ + { + "Function Name": "READ-NEXT-RECORD", + "Structural Impact": 9.4, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 8, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 141, + "End Line": 149 + }, + { + "Function Name": "FILE-CONTROL", + "Structural Impact": 5.0, + "Lines of Code (LOC)": 109, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "20.0%", + "Start Line": 13, + "End Line": 121 + }, + { + "Function Name": "WRITE-OVERLIMIT", + "Structural Impact": 4.5, + "Lines of Code (LOC)": 11, + "Control Flow Branches": 3, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 177, + "End Line": 187 + }, + { + "Function Name": "IS-OVERLIMIT", + "Structural Impact": 3.4, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 2, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 163, + "End Line": 170 + }, + { + "Function Name": "IS-STATE-VIRGINIA", + "Structural Impact": 3.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 2, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 172, + "End Line": 175 + }, + { + "Function Name": "CLOSE-STOP", + "Structural Impact": 2.3, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "50.0%", + "Start Line": 151, + "End Line": 156 + }, + { + "Function Name": "READ-RECORD", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 158, + "End Line": 161 + }, + { + "Function Name": "WRITE-HEADERS", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 13, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 127, + "End Line": 139 + }, + { + "Function Name": "WRITE-RECORD", + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 189, + "End Line": 194 + }, + { + "Function Name": "OPEN-FILES", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 123, + "End Line": 125 + } + ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 4, - "Sequential Logic Declarations": 24, - "Function Parameters": 22, - "Function/Method Declarations": 0, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 1, + "Control Flow Branches": 18, + "Sequential Logic Declarations": 8, + "Function Parameters": 0, + "Function/Method Declarations": 10, + "Class/Entity Declarations": 1, + "Defensive Programming Constructs": 5, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 7, + "I/O and Network Boundaries": 26, "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 0, + "State Mutations / Variable Reassignments": 47, "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 0, + "Structured Documentation Blocks": 1, "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, - "Authorship Metadata": 0, + "Authorship Metadata": 1, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, "Specification Traceability Tags": 0, @@ -761822,17 +761862,17 @@ "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 0, + "Fatal Aborts & Exceptions": 1, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 22, + "Bitwise Operations": 0, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, + "Resource Deallocation & Cleanup": 3, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 40, - "Structural Space Indentations": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 161, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -761840,7 +761880,7 @@ "Feature Flags": 0, "Serialization Parsing": 0, "Regex Execution": 0, - "Time Date Logic": 0, + "Time Date Logic": 4, "Cloud LLM API Integrations": 0, "AI Orchestration Frameworks": 0, "Vector Databases (RAG)": 0, @@ -761849,15 +761889,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": 3, "Design Camel Case": 0, "Design Snake Case": 0, - "Design Pascal Case": 0, - "Design Upper Case": 0, + "Design Pascal Case": 1, + "Design Upper Case": 2, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 10, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -761888,22 +761928,22 @@ }, "9. Extracted Dependencies": [] }, - "assembly/freebsd_libc_string/gen_fabs.S": { + "cobol/cobol-programming-course/CBL0106C.cbl": { "1. Artifact Identity": { - "Filename": "gen_fabs.S", - "Path": "assembly/freebsd_libc_string/gen_fabs.S", - "Language": "Assembly", + "Filename": "CBL0106C.cbl", + "Path": "cobol/cobol-programming-course/CBL0106C.cbl", + "Language": "Cobol", "Architect": "Unknown Architect", - "Indentation Style": "Tabs", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "assembly", + "Folder Dominant Lang": "cobol", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .s)" + "Identity Proof": "Single Indicator (Ext: .cbl)" }, "2. Topological Coordinates": { - "X": 5427.03, - "Y": 93.19, - "Z": -3972.87 + "X": 1358.84, + "Y": 24.82, + "Z": -9039.18 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -761912,60 +761952,161 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 46, - "Coding LOC": 40, - "Documentation LOC": 1, - "Structural Magnitude": 15.8, - "Control Flow Ratio": "100.0%", + "Total LOC": 205, + "Coding LOC": 167, + "Documentation LOC": 32, + "Structural Magnitude": 89.64, + "Control Flow Ratio": "66.7%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.15 + "Raw Cognitive Density": 0.749 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "8.32%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.3%", + "Cognitive Load Exposure": "48.06%", + "Error & Exception Exposure": "77.01%", + "Tech Debt Exposure": "98.57%", + "Testing Exposure": "2.43%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", + "State Flux Exposure": "99.99%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "40.94%", + "Documentation Exposure": "13.56%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [], + "5. Function Analysis": [ + { + "Function Name": "READ-NEXT-RECORD", + "Structural Impact": 9.4, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 8, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 142, + "End Line": 150 + }, + { + "Function Name": "IS-OVERLIMIT", + "Structural Impact": 5.8, + "Lines of Code (LOC)": 16, + "Control Flow Branches": 4, + "Input Parameters": 0, + "Control Flow Ratio": "66.7%", + "Start Line": 164, + "End Line": 179 + }, + { + "Function Name": "FILE-CONTROL", + "Structural Impact": 5.0, + "Lines of Code (LOC)": 110, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "20.0%", + "Start Line": 13, + "End Line": 122 + }, + { + "Function Name": "WRITE-OVERLIMIT", + "Structural Impact": 4.5, + "Lines of Code (LOC)": 11, + "Control Flow Branches": 3, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 186, + "End Line": 196 + }, + { + "Function Name": "IS-STATE-VIRGINIA", + "Structural Impact": 3.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 2, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 181, + "End Line": 184 + }, + { + "Function Name": "CLOSE-STOP", + "Structural Impact": 2.3, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "50.0%", + "Start Line": 152, + "End Line": 157 + }, + { + "Function Name": "READ-RECORD", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 159, + "End Line": 162 + }, + { + "Function Name": "WRITE-HEADERS", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 13, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 128, + "End Line": 140 + }, + { + "Function Name": "WRITE-RECORD", + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 198, + "End Line": 203 + }, + { + "Function Name": "OPEN-FILES", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 124, + "End Line": 126 + } + ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 1, - "Sequential Logic Declarations": 0, - "Function Parameters": 5, - "Function/Method Declarations": 0, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 0, + "Control Flow Branches": 20, + "Sequential Logic Declarations": 10, + "Function Parameters": 0, + "Function/Method Declarations": 10, + "Class/Entity Declarations": 1, + "Defensive Programming Constructs": 6, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 7, + "I/O and Network Boundaries": 26, "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 0, + "State Mutations / Variable Reassignments": 50, "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 0, + "Structured Documentation Blocks": 1, "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, - "Authorship Metadata": 0, + "Authorship Metadata": 1, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, "Specification Traceability Tags": 0, @@ -761977,19 +762118,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, + "Fatal Aborts & Exceptions": 2, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 19, + "Bitwise Operations": 0, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, + "Resource Deallocation & Cleanup": 3, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 9, - "Structural Space Indentations": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 167, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -761997,7 +762138,7 @@ "Feature Flags": 0, "Serialization Parsing": 0, "Regex Execution": 0, - "Time Date Logic": 0, + "Time Date Logic": 4, "Cloud LLM API Integrations": 0, "AI Orchestration Frameworks": 0, "Vector Databases (RAG)": 0, @@ -762006,15 +762147,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": 3, "Design Camel Case": 0, "Design Snake Case": 0, - "Design Pascal Case": 0, - "Design Upper Case": 0, + "Design Pascal Case": 1, + "Design Upper Case": 2, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 10, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -762045,22 +762186,22 @@ }, "9. Extracted Dependencies": [] }, - "assembly/freebsd_libc_string/gen_setjmp.S": { + "cobol/cobol-programming-course/CBLDB21.cbl": { "1. Artifact Identity": { - "Filename": "gen_setjmp.S", - "Path": "assembly/freebsd_libc_string/gen_setjmp.S", - "Language": "Assembly", + "Filename": "CBLDB21.cbl", + "Path": "cobol/cobol-programming-course/CBLDB21.cbl", + "Language": "Cobol", "Architect": "Unknown Architect", - "Indentation Style": "Tabs", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "assembly", + "Folder Dominant Lang": "cobol", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .s)" + "Identity Proof": "Single Indicator (Ext: .cbl)" }, "2. Topological Coordinates": { - "X": 4780.03, - "Y": 148.88, - "Z": -4230.28 + "X": 789.93, + "Y": 93.43, + "Z": -8752.23 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -762069,60 +762210,131 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 112, - "Coding LOC": 104, - "Documentation LOC": 2, - "Structural Magnitude": 17.08, - "Control Flow Ratio": "16.7%", + "Total LOC": 145, + "Coding LOC": 107, + "Documentation LOC": 30, + "Structural Magnitude": 53.44, + "Control Flow Ratio": "62.5%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.106 + "Raw Cognitive Density": 0.897 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "7.06%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.3%", - "API Exposure": "0.0%", + "Cognitive Load Exposure": "60.7%", + "Error & Exception Exposure": "69.2%", + "Tech Debt Exposure": "99.46%", + "Testing Exposure": "2.49%", + "API Exposure": "2.78%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", + "State Flux Exposure": "99.03%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "22.7%", + "Documentation Exposure": "19.21%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [], + "5. Function Analysis": [ + { + "Function Name": "LIST-ALL", + "Structural Impact": 12.9, + "Lines of Code (LOC)": 19, + "Control Flow Branches": 11, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 101, + "End Line": 119 + }, + { + "Function Name": "SQL-ERROR-HANDLING", + "Structural Impact": 7.7, + "Lines of Code (LOC)": 13, + "Control Flow Branches": 6, + "Input Parameters": 0, + "Control Flow Ratio": "66.7%", + "Start Line": 132, + "End Line": 144 + }, + { + "Function Name": "FILE-CONTROL", + "Structural Impact": 5.0, + "Lines of Code (LOC)": 73, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "20.0%", + "Start Line": 14, + "End Line": 86 + }, + { + "Function Name": "PROG-START", + "Structural Impact": 2.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 92, + "End Line": 94 + }, + { + "Function Name": "PRINT-AND-GET1", + "Structural Impact": 2.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 120, + "End Line": 122 + }, + { + "Function Name": "PRINT-A-LINE", + "Structural Impact": 1.4, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 123, + "End Line": 130 + }, + { + "Function Name": "PROG-END", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 95, + "End Line": 97 + } + ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 6, - "Sequential Logic Declarations": 30, - "Function Parameters": 51, - "Function/Method Declarations": 0, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 1, - "Type/Safety Bypasses": 0, + "Control Flow Branches": 20, + "Sequential Logic Declarations": 12, + "Function Parameters": 1, + "Function/Method Declarations": 7, + "Class/Entity Declarations": 1, + "Defensive Programming Constructs": 5, + "Type/Safety Bypasses": 1, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 7, - "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 0, + "I/O and Network Boundaries": 15, + "Exposed API / Public Exports": 1, + "State Mutations / Variable Reassignments": 18, "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 0, + "Structured Documentation Blocks": 1, "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, + "Metaprogramming & Reflection": 7, "Module Dependencies (Imports)": 0, - "Authorship Metadata": 0, + "Authorship Metadata": 1, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, "Specification Traceability Tags": 0, @@ -762134,23 +762346,23 @@ "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, - "Ad-hoc Print / Debug Statements": 0, + "Ad-hoc Print / Debug Statements": 2, "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 0, + "Fatal Aborts & Exceptions": 2, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 21, + "Bitwise Operations": 0, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, + "Resource Deallocation & Cleanup": 3, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 59, - "Structural Space Indentations": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 107, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, - "Ipc Rpc Bridges": 0, + "Ipc Rpc Bridges": 8, "Feature Flags": 0, "Serialization Parsing": 0, "Regex Execution": 0, @@ -762163,15 +762375,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": 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, + "Orphaned Logic": 7, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -762202,22 +762414,22 @@ }, "9. Extracted Dependencies": [] }, - "assembly/freebsd_libc_string/gen_sigsetjmp.S": { + "cobol/cobol-programming-course/CBLDB22.cbl": { "1. Artifact Identity": { - "Filename": "gen_sigsetjmp.S", - "Path": "assembly/freebsd_libc_string/gen_sigsetjmp.S", - "Language": "Assembly", + "Filename": "CBLDB22.cbl", + "Path": "cobol/cobol-programming-course/CBLDB22.cbl", + "Language": "Cobol", "Architect": "Unknown Architect", - "Indentation Style": "Tabs", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "assembly", + "Folder Dominant Lang": "cobol", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .s)" + "Identity Proof": "Single Indicator (Ext: .cbl)" }, "2. Topological Coordinates": { - "X": 5469.3, - "Y": 92.84, - "Z": -2757.47 + "X": 1274.99, + "Y": 99.49, + "Z": -8918.07 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -762226,61 +762438,172 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 113, - "Coding LOC": 103, - "Documentation LOC": 4, - "Structural Magnitude": 17.06, - "Control Flow Ratio": "24.3%", + "Total LOC": 202, + "Coding LOC": 157, + "Documentation LOC": 39, + "Structural Magnitude": 94.04, + "Control Flow Ratio": "76.5%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.136 + "Raw Cognitive Density": 1.083 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "7.9%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "30.98%", - "Testing Exposure": "2.3%", - "API Exposure": "0.0%", + "Cognitive Load Exposure": "79.1%", + "Error & Exception Exposure": "71.51%", + "Tech Debt Exposure": "99.07%", + "Testing Exposure": "80.0%", + "API Exposure": "2.61%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", + "State Flux Exposure": "99.82%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "22.25%", + "Documentation Exposure": "16.17%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [], + "5. Function Analysis": [ + { + "Function Name": "GET-ALL", + "Structural Impact": 12.9, + "Lines of Code (LOC)": 19, + "Control Flow Branches": 11, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 132, + "End Line": 150 + }, + { + "Function Name": "GET-SPECIFIC", + "Structural Impact": 12.9, + "Lines of Code (LOC)": 19, + "Control Flow Branches": 11, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 156, + "End Line": 174 + }, + { + "Function Name": "SQL-ERROR-HANDLING", + "Structural Impact": 7.7, + "Lines of Code (LOC)": 13, + "Control Flow Branches": 6, + "Input Parameters": 0, + "Control Flow Ratio": "66.7%", + "Start Line": 189, + "End Line": 201 + }, + { + "Function Name": "PROCESS-INPUT", + "Structural Impact": 6.3, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 5, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 124, + "End Line": 130 + }, + { + "Function Name": "FILE-CONTROL", + "Structural Impact": 5.0, + "Lines of Code (LOC)": 97, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "20.0%", + "Start Line": 13, + "End Line": 109 + }, + { + "Function Name": "PROG-START", + "Structural Impact": 4.3, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 3, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 111, + "End Line": 117 + }, + { + "Function Name": "PRINT-ALL", + "Structural Impact": 2.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 152, + "End Line": 154 + }, + { + "Function Name": "PRINT-SPECIFIC", + "Structural Impact": 2.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 176, + "End Line": 178 + }, + { + "Function Name": "PRINT-A-LINE", + "Structural Impact": 1.4, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 180, + "End Line": 187 + }, + { + "Function Name": "PROG-END", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 119, + "End Line": 120 + }, + { + "Function Name": "REPOUT", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 121, + "End Line": 122 + } + ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 9, - "Sequential Logic Declarations": 28, - "Function Parameters": 50, - "Function/Method Declarations": 0, + "Control Flow Branches": 39, + "Sequential Logic Declarations": 12, + "Function Parameters": 1, + "Function/Method Declarations": 11, "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 0, + "Defensive Programming Constructs": 8, + "Type/Safety Bypasses": 2, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 9, - "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 0, + "I/O and Network Boundaries": 27, + "Exposed API / Public Exports": 1, + "State Mutations / Variable Reassignments": 33, "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, + "Metaprogramming & Reflection": 12, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, - "Planned Work (TODOs)": 1, + "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, "Specification Traceability Tags": 0, "Server-Side Rendering Contexts": 0, @@ -762291,23 +762614,23 @@ "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, - "Ad-hoc Print / Debug Statements": 0, + "Ad-hoc Print / Debug Statements": 2, "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 0, + "Fatal Aborts & Exceptions": 2, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 24, + "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": 54, - "Structural Space Indentations": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 157, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, - "Ipc Rpc Bridges": 0, + "Ipc Rpc Bridges": 13, "Feature Flags": 0, "Serialization Parsing": 0, "Regex Execution": 0, @@ -762320,15 +762643,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": 9, "Design Camel Case": 0, "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, - "Orphaned Logic": 0, + "Orphaned Logic": 10, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -762359,22 +762682,22 @@ }, "9. Extracted Dependencies": [] }, - "assembly/freebsd_libc_string/stdlib_div.S": { + "cobol/cobol-programming-course/CBLDB23.cbl": { "1. Artifact Identity": { - "Filename": "stdlib_div.S", - "Path": "assembly/freebsd_libc_string/stdlib_div.S", - "Language": "Assembly", + "Filename": "CBLDB23.cbl", + "Path": "cobol/cobol-programming-course/CBLDB23.cbl", + "Language": "Cobol", "Architect": "Unknown Architect", - "Indentation Style": "Tabs", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "assembly", + "Folder Dominant Lang": "cobol", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .s)" + "Identity Proof": "Single Indicator (Ext: .cbl)" }, "2. Topological Coordinates": { - "X": 4872.79, - "Y": 169.09, - "Z": -2543.95 + "X": 1054.57, + "Y": 159.02, + "Z": -8485.81 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -762383,60 +762706,171 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 19, - "Coding LOC": 14, - "Documentation LOC": 1, - "Structural Magnitude": 15.28, - "Control Flow Ratio": "20.0%", + "Total LOC": 189, + "Coding LOC": 156, + "Documentation LOC": 27, + "Structural Magnitude": 91.92, + "Control Flow Ratio": "76.5%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.429 + "Raw Cognitive Density": 1.064 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.0%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.14%", - "API Exposure": "0.0%", + "Cognitive Load Exposure": "74.85%", + "Error & Exception Exposure": "70.48%", + "Tech Debt Exposure": "99.11%", + "Testing Exposure": "80.0%", + "API Exposure": "2.64%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", + "State Flux Exposure": "99.71%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "93.33%", + "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "66.03%", + "Documentation Exposure": "17.37%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [], + "5. Function Analysis": [ + { + "Function Name": "GET-ALL", + "Structural Impact": 12.9, + "Lines of Code (LOC)": 19, + "Control Flow Branches": 11, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 125, + "End Line": 143 + }, + { + "Function Name": "GET-SPECIFIC", + "Structural Impact": 12.9, + "Lines of Code (LOC)": 19, + "Control Flow Branches": 11, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 147, + "End Line": 165 + }, + { + "Function Name": "SQL-ERROR-HANDLING", + "Structural Impact": 7.7, + "Lines of Code (LOC)": 13, + "Control Flow Branches": 6, + "Input Parameters": 0, + "Control Flow Ratio": "66.7%", + "Start Line": 176, + "End Line": 188 + }, + { + "Function Name": "PROCESS-INPUT", + "Structural Impact": 6.3, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 5, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 118, + "End Line": 124 + }, + { + "Function Name": "FILE-CONTROL", + "Structural Impact": 5.0, + "Lines of Code (LOC)": 92, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "20.0%", + "Start Line": 14, + "End Line": 105 + }, + { + "Function Name": "PROG-START", + "Structural Impact": 4.3, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 3, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 107, + "End Line": 113 + }, + { + "Function Name": "PRINT-ALL", + "Structural Impact": 2.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 144, + "End Line": 146 + }, + { + "Function Name": "PRINT-SPECIFIC", + "Structural Impact": 2.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 166, + "End Line": 168 + }, + { + "Function Name": "PRINT-A-LINE", + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 169, + "End Line": 174 + }, + { + "Function Name": "PROG-END", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 114, + "End Line": 115 + }, + { + "Function Name": "REPOUT", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 116, + "End Line": 117 + } + ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 1, - "Sequential Logic Declarations": 4, - "Function Parameters": 4, - "Function/Method Declarations": 0, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 0, + "Control Flow Branches": 39, + "Sequential Logic Declarations": 12, + "Function Parameters": 1, + "Function/Method Declarations": 11, + "Class/Entity Declarations": 1, + "Defensive Programming Constructs": 8, + "Type/Safety Bypasses": 2, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 0, + "I/O and Network Boundaries": 27, + "Exposed API / Public Exports": 1, + "State Mutations / Variable Reassignments": 31, "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 0, + "Structured Documentation Blocks": 1, "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, + "Metaprogramming & Reflection": 12, "Module Dependencies (Imports)": 0, - "Authorship Metadata": 0, + "Authorship Metadata": 1, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, "Specification Traceability Tags": 0, @@ -762448,23 +762882,23 @@ "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, - "Ad-hoc Print / Debug Statements": 0, + "Ad-hoc Print / Debug Statements": 2, "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 0, + "Fatal Aborts & Exceptions": 2, "Thread Sleeps & Blocking Waits": 0, "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": 7, - "Structural Space Indentations": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 156, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, - "Ipc Rpc Bridges": 0, + "Ipc Rpc Bridges": 13, "Feature Flags": 0, "Serialization Parsing": 0, "Regex Execution": 0, @@ -762477,15 +762911,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": 9, "Design Camel Case": 0, "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, - "Orphaned Logic": 0, + "Orphaned Logic": 10, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -762516,22 +762950,22 @@ }, "9. Extracted Dependencies": [] }, - "assembly/freebsd_libc_string/stdlib_ldiv.S": { + "cobol/cobol-programming-course/DEPTPAY.CBL": { "1. Artifact Identity": { - "Filename": "stdlib_ldiv.S", - "Path": "assembly/freebsd_libc_string/stdlib_ldiv.S", - "Language": "Assembly", + "Filename": "DEPTPAY.CBL", + "Path": "cobol/cobol-programming-course/DEPTPAY.CBL", + "Language": "Cobol", "Architect": "Unknown Architect", - "Indentation Style": "Tabs", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "assembly", + "Folder Dominant Lang": "cobol", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .s)" + "Identity Proof": "Single Indicator (Ext: .cbl)" }, "2. Topological Coordinates": { - "X": 4381.55, - "Y": 102.54, - "Z": -4180.49 + "X": 1134.89, + "Y": 144.73, + "Z": -8414.57 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -762540,53 +762974,74 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 17, - "Coding LOC": 12, + "Total LOC": 37, + "Coding LOC": 33, "Documentation LOC": 1, - "Structural Magnitude": 15.24, - "Control Flow Ratio": "50.0%", + "Structural Magnitude": 10.46, + "Control Flow Ratio": "13.3%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.5 + "Raw Cognitive Density": 0.636 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.0%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "1.84%", + "Cognitive Load Exposure": "38.83%", + "Error & Exception Exposure": "89.31%", + "Tech Debt Exposure": "99.94%", + "Testing Exposure": "2.38%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", + "State Flux Exposure": "99.83%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "80.0%", + "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "59.46%", + "Documentation Exposure": "46.24%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [], + "5. Function Analysis": [ + { + "Function Name": "AVERAGE-SALARY", + "Structural Impact": 1.4, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 19, + "End Line": 27 + }, + { + "Function Name": "DISPLAY-DETAILS", + "Structural Impact": 1.4, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 29, + "End Line": 35 + } + ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 1, - "Sequential Logic Declarations": 1, - "Function Parameters": 2, - "Function/Method Declarations": 0, - "Class/Entity Declarations": 0, + "Control Flow Branches": 2, + "Sequential Logic Declarations": 13, + "Function Parameters": 0, + "Function/Method Declarations": 2, + "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": 0, - "State Mutations / Variable Reassignments": 0, + "State Mutations / Variable Reassignments": 7, "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, @@ -762605,9 +763060,9 @@ "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, - "Ad-hoc Print / Debug Statements": 0, + "Ad-hoc Print / Debug Statements": 8, "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 0, + "Fatal Aborts & Exceptions": 1, "Thread Sleeps & Blocking Waits": 0, "Bitwise Operations": 0, "Thread Synchronization Locks": 0, @@ -762616,8 +763071,8 @@ "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 5, - "Structural Space Indentations": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 33, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -762642,7 +763097,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 2, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -762673,22 +763128,22 @@ }, "9. Extracted Dependencies": [] }, - "assembly/freebsd_libc_string/stdlib_lldiv.S": { + "cobol/cobol-programming-course/EMPPAY.CBL": { "1. Artifact Identity": { - "Filename": "stdlib_lldiv.S", - "Path": "assembly/freebsd_libc_string/stdlib_lldiv.S", - "Language": "Assembly", + "Filename": "EMPPAY.CBL", + "Path": "cobol/cobol-programming-course/EMPPAY.CBL", + "Language": "Cobol", "Architect": "Unknown Architect", - "Indentation Style": "Tabs", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "assembly", + "Folder Dominant Lang": "cobol", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .s)" + "Identity Proof": "Single Indicator (Ext: .cbl)" }, "2. Topological Coordinates": { - "X": 5695.35, - "Y": 69.18, - "Z": -3386.82 + "X": 1713.75, + "Y": -10.87, + "Z": -9201.58 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -762697,60 +763152,101 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 17, - "Coding LOC": 12, - "Documentation LOC": 1, - "Structural Magnitude": 15.24, - "Control Flow Ratio": "50.0%", + "Total LOC": 55, + "Coding LOC": 51, + "Documentation LOC": 0, + "Structural Magnitude": 37.52, + "Control Flow Ratio": "45.5%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.5 + "Raw Cognitive Density": 1.044 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.0%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "1.84%", + "Cognitive Load Exposure": "67.44%", + "Error & Exception Exposure": "93.79%", + "Tech Debt Exposure": "99.71%", + "Testing Exposure": "2.47%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", + "State Flux Exposure": "100.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "80.0%", + "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "59.46%", + "Documentation Exposure": "32.78%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [], + "5. Function Analysis": [ + { + "Function Name": "PAYMENT-WEEKLY", + "Structural Impact": 5.5, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 4, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 30, + "End Line": 39 + }, + { + "Function Name": "PAYMENT-MONTHLY", + "Structural Impact": 3.4, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 2, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 40, + "End Line": 47 + }, + { + "Function Name": "SHOW-OUTPUT", + "Structural Impact": 1.4, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 48, + "End Line": 55 + }, + { + "Function Name": "INITIALIZATION", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 25, + "End Line": 29 + } + ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 1, - "Sequential Logic Declarations": 1, - "Function Parameters": 2, - "Function/Method Declarations": 0, - "Class/Entity Declarations": 0, + "Control Flow Branches": 10, + "Sequential Logic Declarations": 12, + "Function Parameters": 0, + "Function/Method Declarations": 4, + "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": 0, - "State Mutations / Variable Reassignments": 0, + "State Mutations / Variable Reassignments": 25, "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 0, + "Structured Documentation Blocks": 1, "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, - "Authorship Metadata": 0, + "Authorship Metadata": 1, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, "Specification Traceability Tags": 0, @@ -762762,9 +763258,9 @@ "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, - "Ad-hoc Print / Debug Statements": 0, + "Ad-hoc Print / Debug Statements": 7, "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 0, + "Fatal Aborts & Exceptions": 1, "Thread Sleeps & Blocking Waits": 0, "Bitwise Operations": 0, "Thread Synchronization Locks": 0, @@ -762773,8 +763269,8 @@ "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 5, - "Structural Space Indentations": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 51, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -762799,7 +763295,7 @@ "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, @@ -762829,56 +763325,81 @@ "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [] - }, - "assembly/freebsd_libc_string/string_bcmp.S": { + } + } + }, + "shell/sqlite": { + "Directory Group Magnitude": 459.2, + "File Count": 13, + "Ecosystem Fingerprint (Archetypes)": { + "Unclassified": "92.3%", + "Static: Literature & Documentation": "7.7%" + }, + "Average Risk Exposures": { + "Cognitive Load Exposure": "35.49%", + "Error & Exception Exposure": "66.87%", + "Tech Debt Exposure": "75.36%", + "Testing Exposure": "8.21%", + "API Exposure": "0.29%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "46.15%", + "Commented Logic Exposure": "2.64%", + "Specification Exposure": "83.59%", + "Instability Exposure": "46.15%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "9.96%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "Files": { + "shell/sqlite/LICENSE.md": { "1. Artifact Identity": { - "Filename": "string_bcmp.S", - "Path": "assembly/freebsd_libc_string/string_bcmp.S", - "Language": "Assembly", + "Filename": "LICENSE.md", + "Path": "shell/sqlite/LICENSE.md", + "Language": "Markdown", "Architect": "Unknown Architect", "Indentation Style": "Neutral / No Indentation", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "assembly", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .s)" + "Doc Umbrella": 1.0, + "Folder Dominant Lang": "shell", + "Lock Tier": 1, + "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": 4161.57, - "Y": 153.84, - "Z": -3063.95 + "X": 5765.2, + "Y": -4.52, + "Z": -4341.31 }, "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": 8, - "Coding LOC": 4, - "Documentation LOC": 2, - "Structural Magnitude": 12.08, + "Total LOC": 86, + "Coding LOC": 0, + "Documentation LOC": 68, + "Structural Magnitude": 1.72, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.25 + "Raw Cognitive Density": 0.0 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.0%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "0.61%", - "API Exposure": "0.0%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "26.67%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "23.49%", - "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": [], "6. Contextual Mitigations & Amplifications": "None Detected", @@ -762960,7 +763481,7 @@ "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, - "Hyperlinked Literature References": 0, + "Hyperlinked Literature References": 7, "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, @@ -762987,22 +763508,22 @@ }, "9. Extracted Dependencies": [] }, - "assembly/freebsd_libc_string/string_memccpy.S": { + "shell/sqlite/cktclsh.sh": { "1. Artifact Identity": { - "Filename": "string_memccpy.S", - "Path": "assembly/freebsd_libc_string/string_memccpy.S", - "Language": "Assembly", + "Filename": "cktclsh.sh", + "Path": "shell/sqlite/cktclsh.sh", + "Language": "Shell", "Architect": "Unknown Architect", - "Indentation Style": "Tabs", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "assembly", + "Indentation Style": "Spaces", + "Doc Umbrella": 1.0, + "Folder Dominant Lang": "shell", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .s)" + "Identity Proof": "Single Indicator (Ext: .sh)" }, "2. Topological Coordinates": { - "X": 4291.48, - "Y": 93.22, - "Z": -3062.54 + "X": 6904.93, + "Y": -32.86, + "Z": -3574.62 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -763011,44 +763532,65 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 261, - "Coding LOC": 219, - "Documentation LOC": 3, - "Structural Magnitude": 19.38, - "Control Flow Ratio": "26.9%", + "Total LOC": 12, + "Coding LOC": 9, + "Documentation LOC": 2, + "Structural Magnitude": 10.48, + "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.151 + "Raw Cognitive Density": 1.0 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "8.34%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.3%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "99.68%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "1.93%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "60.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "16.71%", + "Documentation Exposure": "7.15%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [], + "5. Function Analysis": [ + { + "Function Name": "Anonymous_Block", + "Structural Impact": 7.2, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 3, + "Input Parameters": 2, + "Control Flow Ratio": "60.0%", + "Start Line": 5, + "End Line": 10 + }, + { + "Function Name": "__global_context__", + "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": 11 + } + ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 28, - "Sequential Logic Declarations": 76, - "Function Parameters": 214, + "Control Flow Branches": 4, + "Sequential Logic Declarations": 4, + "Function Parameters": 8, "Function/Method Declarations": 0, "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 1, - "Type/Safety Bypasses": 0, + "Defensive Programming Constructs": 0, + "Type/Safety Bypasses": 9, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 12, + "I/O and Network Boundaries": 4, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -763071,24 +763613,24 @@ "Server-Side Rendering Contexts": 0, "Event Publishers / Emitters": 0, "Dependency Injection Constructs": 0, - "Preprocessor Macros": 1, + "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, + "Ad-hoc Print / Debug Statements": 3, "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 0, + "Fatal Aborts & Exceptions": 2, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 33, + "Bitwise Operations": 0, "Thread Synchronization Locks": 0, "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": 171, - "Structural Space Indentations": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 3, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -763113,7 +763655,7 @@ "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, @@ -763144,22 +763686,22 @@ }, "9. Extracted Dependencies": [] }, - "assembly/freebsd_libc_string/string_memchr.S": { + "shell/sqlite/fts3cov.sh": { "1. Artifact Identity": { - "Filename": "string_memchr.S", - "Path": "assembly/freebsd_libc_string/string_memchr.S", - "Language": "Assembly", + "Filename": "fts3cov.sh", + "Path": "shell/sqlite/fts3cov.sh", + "Language": "Shell", "Architect": "Unknown Architect", - "Indentation Style": "Mixed (1.5% Spaces / 98.5% Tabs)", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "assembly", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .s)" + "Indentation Style": "Spaces", + "Doc Umbrella": 1.0, + "Folder Dominant Lang": "shell", + "Lock Tier": 0, + "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 5151.62, - "Y": 83.48, - "Z": -4064.07 + "X": 6192.39, + "Y": -21.82, + "Z": -3161.26 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -763168,46 +763710,67 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 208, - "Coding LOC": 172, - "Documentation LOC": 3, - "Structural Magnitude": 18.44, - "Control Flow Ratio": "39.6%", + "Total LOC": 17, + "Coding LOC": 11, + "Documentation LOC": 0, + "Structural Magnitude": 12.02, + "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.14 + "Raw Cognitive Density": 1.636 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "8.0%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.3%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "98.62%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "1.97%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", + "State Flux Exposure": "100.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "73.33%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "18.09%", + "Documentation Exposure": "8.74%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [], + "5. Function Analysis": [ + { + "Function Name": "Anonymous_Block", + "Structural Impact": 4.3, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 3, + "Input Parameters": 0, + "Control Flow Ratio": "50.0%", + "Start Line": 10, + "End Line": 15 + }, + { + "Function Name": "__global_context__", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 1, + "End Line": 16 + } + ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 19, - "Sequential Logic Declarations": 29, - "Function Parameters": 136, + "Control Flow Branches": 3, + "Sequential Logic Declarations": 3, + "Function Parameters": 0, "Function/Method Declarations": 0, "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 0, + "Defensive Programming Constructs": 1, + "Type/Safety Bypasses": 5, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 7, + "I/O and Network Boundaries": 3, "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 0, + "State Mutations / Variable Reassignments": 6, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, @@ -763219,7 +763782,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 0, + "Metaprogramming & Reflection": 4, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -763228,31 +763791,31 @@ "Server-Side Rendering Contexts": 0, "Event Publishers / Emitters": 0, "Dependency Injection Constructs": 0, - "Preprocessor Macros": 1, + "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, + "Ad-hoc Print / Debug Statements": 2, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 53, + "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": 128, - "Structural Space Indentations": 2, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 3, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, "Ipc Rpc Bridges": 0, "Feature Flags": 0, - "Serialization Parsing": 0, - "Regex Execution": 0, + "Serialization Parsing": 1, + "Regex Execution": 2, "Time Date Logic": 0, "Cloud LLM API Integrations": 0, "AI Orchestration Frameworks": 0, @@ -763262,15 +763825,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 Snake Case": 2, "Design Pascal Case": 0, "Design Upper Case": 0, - "Design Short Vars": 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, @@ -763301,22 +763864,22 @@ }, "9. Extracted Dependencies": [] }, - "assembly/freebsd_libc_string/string_memcmp.S": { + "shell/sqlite/json-speed-check.sh": { "1. Artifact Identity": { - "Filename": "string_memcmp.S", - "Path": "assembly/freebsd_libc_string/string_memcmp.S", - "Language": "Assembly", + "Filename": "json-speed-check.sh", + "Path": "shell/sqlite/json-speed-check.sh", + "Language": "Shell", "Architect": "Unknown Architect", - "Indentation Style": "Tabs", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "assembly", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .s)" + "Indentation Style": "Mixed (93.1% Spaces / 6.9% Tabs)", + "Doc Umbrella": 1.0, + "Folder Dominant Lang": "shell", + "Lock Tier": 0, + "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 5157.35, - "Y": 107.75, - "Z": -3019.81 + "X": 6161.06, + "Y": -8.93, + "Z": -3666.86 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -763325,46 +763888,87 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 421, - "Coding LOC": 367, - "Documentation LOC": 17, - "Structural Magnitude": 22.34, - "Control Flow Ratio": "45.9%", + "Total LOC": 88, + "Coding LOC": 71, + "Documentation LOC": 16, + "Structural Magnitude": 100.32, + "Control Flow Ratio": "57.9%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.166 + "Raw Cognitive Density": 1.116 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "8.83%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.3%", + "Cognitive Load Exposure": "81.23%", + "Error & Exception Exposure": "99.99%", + "Tech Debt Exposure": "66.13%", + "Testing Exposure": "2.54%", "API Exposure": "0.0%", "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": "13.84%", + "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [], + "5. Function Analysis": [ + { + "Function Name": "Anonymous_Block", + "Structural Impact": 9.8, + "Lines of Code (LOC)": 27, + "Control Flow Branches": 5, + "Input Parameters": 1, + "Control Flow Ratio": "100.0%", + "Start Line": 45, + "End Line": 71 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 5.9, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 3, + "Input Parameters": 1, + "Control Flow Ratio": "75.0%", + "Start Line": 17, + "End Line": 21 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 4.2, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 3, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 85, + "End Line": 87 + }, + { + "Function Name": "__global_context__", + "Structural Impact": 4.0, + "Lines of Code (LOC)": 52, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 1, + "End Line": 87 + } + ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 56, - "Sequential Logic Declarations": 66, - "Function Parameters": 330, + "Control Flow Branches": 11, + "Sequential Logic Declarations": 8, + "Function Parameters": 6, "Function/Method Declarations": 0, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 0, + "Type/Safety Bypasses": 32, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 11, + "I/O and Network Boundaries": 13, "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 0, + "State Mutations / Variable Reassignments": 75, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, @@ -763376,7 +763980,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 0, + "Metaprogramming & Reflection": 2, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -763390,26 +763994,26 @@ "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, - "Ad-hoc Print / Debug Statements": 0, + "Ad-hoc Print / Debug Statements": 6, "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 0, + "Fatal Aborts & Exceptions": 1, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 42, + "Bitwise Operations": 0, "Thread Synchronization Locks": 0, "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": 262, - "Structural Space Indentations": 0, + "Structural Tab Indentations": 2, + "Structural Space Indentations": 27, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, "Ipc Rpc Bridges": 0, "Feature Flags": 0, - "Serialization Parsing": 0, - "Regex Execution": 0, + "Serialization Parsing": 2, + "Regex Execution": 2, "Time Date Logic": 0, "Cloud LLM API Integrations": 0, "AI Orchestration Frameworks": 0, @@ -763419,15 +764023,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 0, - "Design Camel Case": 0, - "Design Snake Case": 0, + "Core Var Decl": 31, + "Design Camel Case": 8, + "Design Snake Case": 1, "Design Pascal Case": 0, - "Design Upper Case": 0, - "Design Short Vars": 0, + "Design Upper Case": 22, + "Design Short Vars": 4, "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, @@ -763437,7 +764041,7 @@ "External Network & I/O Hooks": 0, "Dynamic Code Execution (Eval/Exec)": 0, "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, @@ -763458,22 +764062,22 @@ }, "9. Extracted Dependencies": [] }, - "assembly/freebsd_libc_string/string_memcpy.S": { + "shell/sqlite/mkautoconfamal.sh": { "1. Artifact Identity": { - "Filename": "string_memcpy.S", - "Path": "assembly/freebsd_libc_string/string_memcpy.S", - "Language": "Assembly", + "Filename": "mkautoconfamal.sh", + "Path": "shell/sqlite/mkautoconfamal.sh", + "Language": "Shell", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "assembly", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .s)" + "Indentation Style": "Spaces", + "Doc Umbrella": 1.0, + "Folder Dominant Lang": "shell", + "Lock Tier": 0, + "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 5041.56, - "Y": 148.01, - "Z": -4169.83 + "X": 6603.93, + "Y": 31.41, + "Z": -3411.35 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -763482,47 +764086,68 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 5, - "Coding LOC": 1, - "Documentation LOC": 2, - "Structural Magnitude": 10.52, - "Control Flow Ratio": "0.0%", + "Total LOC": 97, + "Coding LOC": 53, + "Documentation LOC": 34, + "Structural Magnitude": 42.96, + "Control Flow Ratio": "11.9%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 5.0 + "Raw Cognitive Density": 1.599 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.0%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "0.15%", + "Cognitive Load Exposure": "96.76%", + "Error & Exception Exposure": "100.0%", + "Tech Debt Exposure": "85.14%", + "Testing Exposure": "2.47%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "6.67%", + "State Flux Exposure": "100.0%", + "Commented Logic Exposure": "11.18%", + "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "6.19%", + "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [], + "5. Function Analysis": [ + { + "Function Name": "Anonymous_Block", + "Structural Impact": 7.8, + "Lines of Code (LOC)": 14, + "Control Flow Branches": 4, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 32, + "End Line": 45 + }, + { + "Function Name": "__global_context__", + "Structural Impact": 6.1, + "Lines of Code (LOC)": 82, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "2.9%", + "Start Line": 1, + "End Line": 96 + } + ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 0, - "Function Parameters": 0, + "Control Flow Branches": 5, + "Sequential Logic Declarations": 37, + "Function Parameters": 2, "Function/Method Declarations": 0, "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 0, + "Defensive Programming Constructs": 3, + "Type/Safety Bypasses": 47, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, + "I/O and Network Boundaries": 20, "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 0, - "Commented-out Code (Dead Logic)": 0, + "State Mutations / Variable Reassignments": 28, + "Commented-out Code (Dead Logic)": 1, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, @@ -763533,8 +764158,8 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Metaprogramming & Reflection": 7, + "Module Dependencies (Imports)": 4, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -763547,26 +764172,26 @@ "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, - "Ad-hoc Print / Debug Statements": 0, + "Ad-hoc Print / Debug Statements": 4, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, "Bitwise Operations": 0, - "Thread Synchronization Locks": 0, + "Thread Synchronization Locks": 1, "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": 8, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, "Ipc Rpc Bridges": 0, "Feature Flags": 0, - "Serialization Parsing": 0, - "Regex Execution": 0, + "Serialization Parsing": 3, + "Regex Execution": 5, "Time Date Logic": 0, "Cloud LLM API Integrations": 0, "AI Orchestration Frameworks": 0, @@ -763576,15 +764201,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": 10, "Design Camel Case": 0, - "Design Snake Case": 0, + "Design Snake Case": 4, "Design Pascal Case": 0, - "Design Upper Case": 0, - "Design Short Vars": 0, + "Design Upper Case": 6, + "Design Short Vars": 4, "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, @@ -763601,36 +764226,40 @@ "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)": 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": [ + "-name", + "-type", + "tree." + ] }, - "assembly/freebsd_libc_string/string_memmove.S": { + "shell/sqlite/mkdist.sh": { "1. Artifact Identity": { - "Filename": "string_memmove.S", - "Path": "assembly/freebsd_libc_string/string_memmove.S", - "Language": "Assembly", + "Filename": "mkdist.sh", + "Path": "shell/sqlite/mkdist.sh", + "Language": "Shell", "Architect": "Unknown Architect", - "Indentation Style": "Mixed (0.5% Spaces / 99.5% Tabs)", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "assembly", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .s)" + "Indentation Style": "Spaces", + "Doc Umbrella": 1.0, + "Folder Dominant Lang": "shell", + "Lock Tier": 0, + "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 4757.45, - "Y": 166.86, - "Z": -2883.16 + "X": 6387.55, + "Y": 6.53, + "Z": -3748.06 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -763639,48 +764268,169 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 309, - "Coding LOC": 285, - "Documentation LOC": 5, - "Structural Magnitude": 20.7, - "Control Flow Ratio": "37.6%", + "Total LOC": 211, + "Coding LOC": 142, + "Documentation LOC": 35, + "Structural Magnitude": 163.74, + "Control Flow Ratio": "83.6%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.151 + "Raw Cognitive Density": 1.778 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "8.34%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.3%", + "Cognitive Load Exposure": "94.23%", + "Error & Exception Exposure": "99.77%", + "Tech Debt Exposure": "28.59%", + "Testing Exposure": "80.0%", "API Exposure": "0.0%", "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.39%", + "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [], + "5. Function Analysis": [ + { + "Function Name": "__global_context__", + "Structural Impact": 26.9, + "Lines of Code (LOC)": 139, + "Control Flow Branches": 19, + "Input Parameters": 0, + "Control Flow Ratio": "73.1%", + "Start Line": 1, + "End Line": 210 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 15.6, + "Lines of Code (LOC)": 30, + "Control Flow Branches": 9, + "Input Parameters": 1, + "Control Flow Ratio": "81.8%", + "Start Line": 39, + "End Line": 68 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 8.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 7, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 72, + "End Line": 75 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 6.5, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 5, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 102, + "End Line": 110 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 6.2, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 5, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 158, + "End Line": 160 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 5.2, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 4, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 185, + "End Line": 187 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 5.2, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 4, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 189, + "End Line": 191 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 4.2, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 3, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 177, + "End Line": 179 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 4.2, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 3, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 181, + "End Line": 183 + }, + { + "Function Name": "fcp", + "Structural Impact": 3.0, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 162, + "End Line": 165 + }, + { + "Function Name": "scc", + "Structural Impact": 3.0, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "100.0%", + "Start Line": 167, + "End Line": 169 + }, + { + "Function Name": "die", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 25, + "End Line": 30 + } + ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 38, - "Sequential Logic Declarations": 63, - "Function Parameters": 222, - "Function/Method Declarations": 0, + "Control Flow Branches": 61, + "Sequential Logic Declarations": 12, + "Function Parameters": 5, + "Function/Method Declarations": 3, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 0, + "Type/Safety Bypasses": 46, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 9, + "I/O and Network Boundaries": 33, "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 0, + "State Mutations / Variable Reassignments": 71, "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 0, + "Structured Documentation Blocks": 1, "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, @@ -763688,9 +764438,9 @@ "Global State Dependencies": 0, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, - "Collection Iterators / Comprehensions": 5, + "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 0, + "Metaprogramming & Reflection": 16, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -763699,32 +764449,32 @@ "Server-Side Rendering Contexts": 0, "Event Publishers / Emitters": 0, "Dependency Injection Constructs": 0, - "Preprocessor Macros": 6, + "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, + "Ad-hoc Print / Debug Statements": 2, "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 0, + "Fatal Aborts & Exceptions": 2, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 21, - "Thread Synchronization Locks": 0, + "Bitwise Operations": 0, + "Thread Synchronization Locks": 2, "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": 196, - "Structural Space Indentations": 1, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 72, "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, + "Serialization Parsing": 1, + "Regex Execution": 1, + "Time Date Logic": 1, "Cloud LLM API Integrations": 0, "AI Orchestration Frameworks": 0, "Vector Databases (RAG)": 0, @@ -763733,15 +764483,15 @@ "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": 2, + "Core Var Decl": 30, + "Design Camel Case": 16, + "Design Snake Case": 14, "Design Pascal Case": 0, "Design Upper Case": 0, - "Design Short Vars": 0, + "Design Short Vars": 5, "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, @@ -763751,7 +764501,7 @@ "External Network & I/O Hooks": 0, "Dynamic Code Execution (Eval/Exec)": 0, "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, @@ -763772,22 +764522,22 @@ }, "9. Extracted Dependencies": [] }, - "assembly/freebsd_libc_string/string_memrchr.S": { + "shell/sqlite/run-wordcount.sh": { "1. Artifact Identity": { - "Filename": "string_memrchr.S", - "Path": "assembly/freebsd_libc_string/string_memrchr.S", - "Language": "Assembly", + "Filename": "run-wordcount.sh", + "Path": "shell/sqlite/run-wordcount.sh", + "Language": "Shell", "Architect": "Unknown Architect", - "Indentation Style": "Tabs", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "assembly", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .s)" + "Indentation Style": "Spaces", + "Doc Umbrella": 1.0, + "Folder Dominant Lang": "shell", + "Lock Tier": 0, + "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 4920.75, - "Y": 141.1, - "Z": -3891.01 + "X": 6418.72, + "Y": -23.42, + "Z": -4402.39 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -763796,46 +764546,137 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 159, - "Coding LOC": 119, - "Documentation LOC": 3, - "Structural Magnitude": 26.38, - "Control Flow Ratio": "59.0%", + "Total LOC": 79, + "Coding LOC": 59, + "Documentation LOC": 10, + "Structural Magnitude": 49.58, + "Control Flow Ratio": "75.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.387 + "Raw Cognitive Density": 0.585 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "18.94%", - "Error & Exception Exposure": "64.91%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.3%", + "Cognitive Load Exposure": "34.05%", + "Error & Exception Exposure": "91.62%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "2.94%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "71.61%", + "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "21.03%", + "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [], + "5. Function Analysis": [ + { + "Function Name": "__global_context__", + "Structural Impact": 6.2, + "Lines of Code (LOC)": 40, + "Control Flow Branches": 2, + "Input Parameters": 1, + "Control Flow Ratio": "16.7%", + "Start Line": 1, + "End Line": 78 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 5.8, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 3, + "Input Parameters": 1, + "Control Flow Ratio": "75.0%", + "Start Line": 9, + "End Line": 11 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 5.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 4, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 20, + "End Line": 24 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 5.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 4, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 28, + "End Line": 32 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 5.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 4, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 35, + "End Line": 39 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 5.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 4, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 43, + "End Line": 47 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 5.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 4, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 51, + "End Line": 55 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 5.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 4, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 60, + "End Line": 64 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 5.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 4, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 69, + "End Line": 73 + } + ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 23, - "Sequential Logic Declarations": 16, - "Function Parameters": 94, + "Control Flow Branches": 33, + "Sequential Logic Declarations": 11, + "Function Parameters": 11, "Function/Method Declarations": 0, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, + "Type/Safety Bypasses": 8, + "High-Risk Execution Commands": 1, + "I/O and Network Boundaries": 17, "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, @@ -763861,19 +764702,19 @@ "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, - "Ad-hoc Print / Debug Statements": 0, + "Ad-hoc Print / Debug Statements": 15, "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 0, + "Fatal Aborts & Exceptions": 1, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 14, + "Bitwise Operations": 0, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, + "Resource Deallocation & Cleanup": 7, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 96, - "Structural Space Indentations": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 35, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -763897,8 +764738,8 @@ "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, - "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Duplicate Logic": 7, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -763915,36 +764756,38 @@ "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)": 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": [ + "text" + ] }, - "assembly/freebsd_libc_string/string_memset.S": { + "shell/sqlite/split-speedtest1-script.sh": { "1. Artifact Identity": { - "Filename": "string_memset.S", - "Path": "assembly/freebsd_libc_string/string_memset.S", - "Language": "Assembly", + "Filename": "split-speedtest1-script.sh", + "Path": "shell/sqlite/split-speedtest1-script.sh", + "Language": "Shell", "Architect": "Unknown Architect", - "Indentation Style": "Tabs", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "assembly", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .s)" + "Indentation Style": "Spaces", + "Doc Umbrella": 1.0, + "Folder Dominant Lang": "shell", + "Lock Tier": 0, + "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 5535.94, - "Y": 125.41, - "Z": -3411.68 + "X": 5868.76, + "Y": 32.22, + "Z": -4102.73 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -763953,47 +764796,78 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 146, - "Coding LOC": 134, - "Documentation LOC": 2, - "Structural Magnitude": 17.68, - "Control Flow Ratio": "40.8%", + "Total LOC": 18, + "Coding LOC": 14, + "Documentation LOC": 3, + "Structural Magnitude": 31.58, + "Control Flow Ratio": "86.7%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.187 + "Raw Cognitive Density": 2.357 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "9.5%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.3%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "99.81%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "3.22%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "State Flux Exposure": "100.0%", + "Commented Logic Exposure": "23.15%", + "Specification Exposure": "93.33%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "20.16%", + "Documentation Exposure": "11.13%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [], + "5. Function Analysis": [ + { + "Function Name": "__global_context__", + "Structural Impact": 8.9, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 5, + "Input Parameters": 1, + "Control Flow Ratio": "83.3%", + "Start Line": 1, + "End Line": 17 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 6.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 5, + "Input Parameters": 0, + "Control Flow Ratio": "83.3%", + "Start Line": 6, + "End Line": 9 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 4.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 3, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 13, + "End Line": 17 + } + ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 20, - "Sequential Logic Declarations": 29, - "Function Parameters": 64, + "Control Flow Branches": 13, + "Sequential Logic Declarations": 2, + "Function Parameters": 1, "Function/Method Declarations": 0, "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 0, + "Defensive Programming Constructs": 1, + "Type/Safety Bypasses": 9, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 9, + "I/O and Network Boundaries": 4, "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 0, - "Commented-out Code (Dead Logic)": 0, + "State Mutations / Variable Reassignments": 12, + "Commented-out Code (Dead Logic)": 1, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, @@ -764002,9 +764876,9 @@ "Global State Dependencies": 0, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, - "Collection Iterators / Comprehensions": 2, + "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 0, + "Metaprogramming & Reflection": 3, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -764013,31 +764887,31 @@ "Server-Side Rendering Contexts": 0, "Event Publishers / Emitters": 0, "Dependency Injection Constructs": 0, - "Preprocessor Macros": 2, + "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, + "Ad-hoc Print / Debug Statements": 3, "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 0, + "Fatal Aborts & Exceptions": 1, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 19, + "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": 83, - "Structural Space Indentations": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 5, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, "Ipc Rpc Bridges": 0, "Feature Flags": 0, - "Serialization Parsing": 0, - "Regex Execution": 0, + "Serialization Parsing": 1, + "Regex Execution": 2, "Time Date Logic": 0, "Cloud LLM API Integrations": 0, "AI Orchestration Frameworks": 0, @@ -764047,15 +764921,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": 5, "Design Camel Case": 0, - "Design Snake Case": 1, + "Design Snake Case": 5, "Design Pascal Case": 0, "Design Upper Case": 0, - "Design Short Vars": 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, @@ -764065,7 +764939,7 @@ "External Network & I/O Hooks": 0, "Dynamic Code Execution (Eval/Exec)": 0, "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, @@ -764086,22 +764960,22 @@ }, "9. Extracted Dependencies": [] }, - "assembly/freebsd_libc_string/string_stpcpy.S": { + "shell/sqlite/symbols-mingw.sh": { "1. Artifact Identity": { - "Filename": "string_stpcpy.S", - "Path": "assembly/freebsd_libc_string/string_stpcpy.S", - "Language": "Assembly", + "Filename": "symbols-mingw.sh", + "Path": "shell/sqlite/symbols-mingw.sh", + "Language": "Shell", "Architect": "Unknown Architect", - "Indentation Style": "Tabs", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "assembly", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .s)" + "Indentation Style": "Spaces", + "Doc Umbrella": 1.0, + "Folder Dominant Lang": "shell", + "Lock Tier": 0, + "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 4452.86, - "Y": 150.08, - "Z": -3508.97 + "X": 6634.12, + "Y": 20.91, + "Z": -4501.41 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -764110,46 +764984,57 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 238, - "Coding LOC": 197, + "Total LOC": 34, + "Coding LOC": 25, "Documentation LOC": 4, - "Structural Magnitude": 21.94, - "Control Flow Ratio": "39.7%", + "Structural Magnitude": 4.2, + "Control Flow Ratio": "16.7%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.213 + "Raw Cognitive Density": 0.24 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "10.46%", - "Error & Exception Exposure": "56.7%", - "Tech Debt Exposure": "16.64%", - "Testing Exposure": "2.3%", + "Cognitive Load Exposure": "11.51%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "99.85%", + "Testing Exposure": "2.4%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "18.38%", + "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "17.14%", + "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [], + "5. Function Analysis": [ + { + "Function Name": "__global_context__", + "Structural Impact": 3.7, + "Lines of Code (LOC)": 33, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "16.7%", + "Start Line": 1, + "End Line": 33 + } + ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 31, - "Sequential Logic Declarations": 47, - "Function Parameters": 160, + "Control Flow Branches": 1, + "Sequential Logic Declarations": 5, + "Function Parameters": 0, "Function/Method Declarations": 0, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 5, + "I/O and Network Boundaries": 10, "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 3, + "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, @@ -764164,37 +765049,37 @@ "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, - "Planned Work (TODOs)": 1, + "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": 1, + "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, + "Ad-hoc Print / Debug Statements": 4, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 7, + "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": 147, - "Structural Space Indentations": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 12, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, "Ipc Rpc Bridges": 0, "Feature Flags": 0, "Serialization Parsing": 0, - "Regex Execution": 0, + "Regex Execution": 5, "Time Date Logic": 0, "Cloud LLM API Integrations": 0, "AI Orchestration Frameworks": 0, @@ -764212,7 +765097,7 @@ "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, @@ -764243,22 +765128,22 @@ }, "9. Extracted Dependencies": [] }, - "assembly/freebsd_libc_string/string_stpncpy.S": { + "shell/sqlite/symbols.sh": { "1. Artifact Identity": { - "Filename": "string_stpncpy.S", - "Path": "assembly/freebsd_libc_string/string_stpncpy.S", - "Language": "Assembly", + "Filename": "symbols.sh", + "Path": "shell/sqlite/symbols.sh", + "Language": "Shell", "Architect": "Unknown Architect", - "Indentation Style": "Tabs", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "assembly", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .s)" + "Indentation Style": "Spaces", + "Doc Umbrella": 1.0, + "Folder Dominant Lang": "shell", + "Lock Tier": 0, + "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 5469.98, - "Y": 93.22, - "Z": -3249.93 + "X": 5836.81, + "Y": 9.6, + "Z": -3544.71 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -764267,45 +765152,56 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 284, - "Coding LOC": 229, - "Documentation LOC": 6, - "Structural Magnitude": 19.58, - "Control Flow Ratio": "28.1%", + "Total LOC": 37, + "Coding LOC": 28, + "Documentation LOC": 4, + "Structural Magnitude": 4.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.162 + "Raw Cognitive Density": 0.179 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "8.68%", + "Cognitive Load Exposure": "9.23%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.3%", - "API Exposure": "0.0%", + "Testing Exposure": "2.37%", + "API Exposure": "3.81%", "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.16%", + "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [], + "5. Function Analysis": [ + { + "Function Name": "__global_context__", + "Structural Impact": 2.8, + "Lines of Code (LOC)": 36, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 1, + "End Line": 36 + } + ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 32, - "Sequential Logic Declarations": 82, - "Function Parameters": 210, + "Control Flow Branches": 0, + "Sequential Logic Declarations": 11, + "Function Parameters": 0, "Function/Method Declarations": 0, "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 1, + "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 7, - "Exposed API / Public Exports": 0, + "I/O and Network Boundaries": 15, + "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -764327,31 +765223,31 @@ "Server-Side Rendering Contexts": 0, "Event Publishers / Emitters": 0, "Dependency Injection Constructs": 0, - "Preprocessor Macros": 1, + "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, + "Ad-hoc Print / Debug Statements": 4, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 32, + "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": 174, - "Structural Space Indentations": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 15, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, "Ipc Rpc Bridges": 0, "Feature Flags": 0, "Serialization Parsing": 0, - "Regex Execution": 0, + "Regex Execution": 5, "Time Date Logic": 0, "Cloud LLM API Integrations": 0, "AI Orchestration Frameworks": 0, @@ -764400,22 +765296,22 @@ }, "9. Extracted Dependencies": [] }, - "assembly/freebsd_libc_string/string_strcat.S": { + "shell/sqlite/tclConfigShToMake.sh": { "1. Artifact Identity": { - "Filename": "string_strcat.S", - "Path": "assembly/freebsd_libc_string/string_strcat.S", - "Language": "Assembly", + "Filename": "tclConfigShToMake.sh", + "Path": "shell/sqlite/tclConfigShToMake.sh", + "Language": "Shell", "Architect": "Unknown Architect", - "Indentation Style": "Tabs", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "assembly", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .s)" + "Indentation Style": "Spaces", + "Doc Umbrella": 1.0, + "Folder Dominant Lang": "shell", + "Lock Tier": 0, + "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 5067.44, - "Y": 115.93, - "Z": -2625.67 + "X": 6830.58, + "Y": 17.3, + "Z": -4291.24 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -764424,46 +765320,67 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 204, - "Coding LOC": 170, - "Documentation LOC": 4, - "Structural Magnitude": 18.4, - "Control Flow Ratio": "64.7%", + "Total LOC": 32, + "Coding LOC": 17, + "Documentation LOC": 13, + "Structural Magnitude": 24.34, + "Control Flow Ratio": "80.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.288 + "Raw Cognitive Density": 1.279 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "13.62%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.3%", + "Cognitive Load Exposure": "89.26%", + "Error & Exception Exposure": "99.23%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "2.69%", "API Exposure": "0.0%", "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": "18.01%", + "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [], + "5. Function Analysis": [ + { + "Function Name": "Anonymous_Block", + "Structural Impact": 7.5, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 4, + "Input Parameters": 1, + "Control Flow Ratio": "80.0%", + "Start Line": 15, + "End Line": 23 + }, + { + "Function Name": "__global_context__", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 22, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 1, + "End Line": 31 + } + ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 44, - "Sequential Logic Declarations": 24, - "Function Parameters": 99, + "Control Flow Branches": 4, + "Sequential Logic Declarations": 1, + "Function Parameters": 2, "Function/Method Declarations": 0, "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 1, - "Type/Safety Bypasses": 0, + "Defensive Programming Constructs": 0, + "Type/Safety Bypasses": 5, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 4, + "I/O and Network Boundaries": 3, "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 0, + "State Mutations / Variable Reassignments": 15, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, @@ -764476,7 +765393,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, @@ -764500,8 +765417,8 @@ "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 118, - "Structural Space Indentations": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 6, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -764518,15 +765435,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": 11, "Design Camel Case": 0, - "Design Snake Case": 0, + "Design Snake Case": 1, "Design Pascal Case": 0, - "Design Upper Case": 0, - "Design Short Vars": 0, + "Design Upper Case": 10, + "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, @@ -764550,29 +765467,31 @@ "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": [ + "$1" + ] }, - "assembly/freebsd_libc_string/string_strchrnul.S": { + "shell/sqlite/time-wordcount.sh": { "1. Artifact Identity": { - "Filename": "string_strchrnul.S", - "Path": "assembly/freebsd_libc_string/string_strchrnul.S", - "Language": "Assembly", + "Filename": "time-wordcount.sh", + "Path": "shell/sqlite/time-wordcount.sh", + "Language": "Shell", "Architect": "Unknown Architect", - "Indentation Style": "Tabs", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "assembly", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .s)" + "Indentation Style": "Neutral / No Indentation", + "Doc Umbrella": 1.0, + "Folder Dominant Lang": "shell", + "Lock Tier": 0, + "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 4264.68, - "Y": 95.41, - "Z": -3802.04 + "X": 6129.58, + "Y": -21.19, + "Z": -4214.88 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -764581,22 +765500,22 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 171, - "Coding LOC": 150, - "Documentation LOC": 3, - "Structural Magnitude": 18.0, - "Control Flow Ratio": "25.6%", + "Total LOC": 35, + "Coding LOC": 21, + "Documentation LOC": 10, + "Structural Magnitude": 12.02, + "Control Flow Ratio": "38.5%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.1 + "Raw Cognitive Density": 0.476 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "6.91%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.3%", + "Cognitive Load Exposure": "25.06%", + "Error & Exception Exposure": "80.64%", + "Tech Debt Exposure": "99.97%", + "Testing Exposure": "2.7%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -764604,21 +765523,42 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "19.05%", + "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [], + "5. Function Analysis": [ + { + "Function Name": "Anonymous_Block", + "Structural Impact": 5.8, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 3, + "Input Parameters": 1, + "Control Flow Ratio": "75.0%", + "Start Line": 9, + "End Line": 11 + }, + { + "Function Name": "__global_context__", + "Structural Impact": 5.8, + "Lines of Code (LOC)": 31, + "Control Flow Branches": 2, + "Input Parameters": 1, + "Control Flow Ratio": "22.2%", + "Start Line": 1, + "End Line": 34 + } + ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 10, - "Sequential Logic Declarations": 29, - "Function Parameters": 110, + "Control Flow Branches": 5, + "Sequential Logic Declarations": 8, + "Function Parameters": 11, "Function/Method Declarations": 0, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 0, + "Type/Safety Bypasses": 1, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 9, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -764641,23 +765581,23 @@ "Server-Side Rendering Contexts": 0, "Event Publishers / Emitters": 0, "Dependency Injection Constructs": 0, - "Preprocessor Macros": 1, + "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, + "Ad-hoc Print / Debug Statements": 1, "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 0, + "Fatal Aborts & Exceptions": 1, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 53, + "Bitwise Operations": 0, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, + "Resource Deallocation & Cleanup": 8, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 101, + "Structural Tab Indentations": 0, "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, @@ -764683,7 +765623,7 @@ "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, @@ -764707,29 +765647,31 @@ "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": [ + "text" + ] }, - "assembly/freebsd_libc_string/string_strcmp.S": { + "shell/sqlite/warnings-clang.sh": { "1. Artifact Identity": { - "Filename": "string_strcmp.S", - "Path": "assembly/freebsd_libc_string/string_strcmp.S", - "Language": "Assembly", + "Filename": "warnings-clang.sh", + "Path": "shell/sqlite/warnings-clang.sh", + "Language": "Shell", "Architect": "Unknown Architect", - "Indentation Style": "Tabs", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "assembly", + "Indentation Style": "Spaces", + "Doc Umbrella": 1.0, + "Folder Dominant Lang": "shell", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .s)" + "Identity Proof": "Single Indicator (Ext: .sh)" }, "2. Topological Coordinates": { - "X": 5268.79, - "Y": 100.93, - "Z": -3739.83 + "X": 6582.72, + "Y": -12.11, + "Z": -3129.68 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -764738,44 +765680,55 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 360, - "Coding LOC": 320, - "Documentation LOC": 6, - "Structural Magnitude": 21.4, - "Control Flow Ratio": "40.6%", + "Total LOC": 15, + "Coding LOC": 9, + "Documentation LOC": 5, + "Structural Magnitude": 1.88, + "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.144 + "Raw Cognitive Density": 0.556 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "8.13%", + "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.3%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "1.46%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "60.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "14.92%", + "Documentation Exposure": "7.15%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [], + "5. Function Analysis": [ + { + "Function Name": "__global_context__", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 14, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 1, + "End Line": 14 + } + ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 41, - "Sequential Logic Declarations": 60, - "Function Parameters": 332, + "Control Flow Branches": 0, + "Sequential Logic Declarations": 3, + "Function Parameters": 0, "Function/Method Declarations": 0, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 8, + "I/O and Network Boundaries": 6, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -764803,26 +765756,26 @@ "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, - "Ad-hoc Print / Debug Statements": 0, + "Ad-hoc Print / Debug Statements": 2, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 39, + "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": 241, - "Structural Space Indentations": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 3, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, "Ipc Rpc Bridges": 0, "Feature Flags": 0, "Serialization Parsing": 0, - "Regex Execution": 0, + "Regex Execution": 2, "Time Date Logic": 0, "Cloud LLM API Integrations": 0, "AI Orchestration Frameworks": 0, @@ -764832,15 +765785,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": 1, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 0, + "Design Upper Case": 1, "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, @@ -764870,71 +765823,96 @@ "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [] - }, - "assembly/freebsd_libc_string/string_strcspn.S": { + } + } + }, + "yacc/freebsd": { + "Directory Group Magnitude": 451.44, + "File Count": 3, + "Ecosystem Fingerprint (Archetypes)": { + "Unclassified": "66.7%", + "Static: Literature & Documentation": "33.3%" + }, + "Average Risk Exposures": { + "Cognitive Load Exposure": "45.35%", + "Error & Exception Exposure": "59.3%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "53.33%", + "API Exposure": "0.12%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "66.67%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "66.67%", + "Instability Exposure": "33.33%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "8.35%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "Files": { + "yacc/freebsd/COPYRIGHT": { "1. Artifact Identity": { - "Filename": "string_strcspn.S", - "Path": "assembly/freebsd_libc_string/string_strcspn.S", - "Language": "Assembly", + "Filename": "COPYRIGHT", + "Path": "yacc/freebsd/COPYRIGHT", + "Language": "Plaintext", "Architect": "Unknown Architect", - "Indentation Style": "Tabs", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "assembly", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .s)" + "Folder Dominant Lang": "yacc", + "Lock Tier": 1, + "Identity Proof": "Metadata Anchor (COPYRIGHT)" }, "2. Topological Coordinates": { - "X": 4847.82, - "Y": 155.89, - "Z": -3245.51 + "X": 3963.82, + "Y": 165.09, + "Z": -10504.92 }, "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": 397, - "Coding LOC": 335, - "Documentation LOC": 4, - "Structural Magnitude": 33.7, - "Control Flow Ratio": "38.5%", + "Total LOC": 125, + "Coding LOC": 0, + "Documentation LOC": 100, + "Structural Magnitude": 2.5, + "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.236 + "Raw Cognitive Density": 0.0 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "11.34%", - "Error & Exception Exposure": "51.39%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.3%", - "API Exposure": "0.0%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "33.91%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "14.92%", - "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": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 50, - "Sequential Logic Declarations": 80, - "Function Parameters": 217, + "Control Flow Branches": 0, + "Sequential Logic Declarations": 0, + "Function Parameters": 0, "Function/Method Declarations": 0, "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 11, + "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 17, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 12, + "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, @@ -764955,7 +765933,7 @@ "Server-Side Rendering Contexts": 0, "Event Publishers / Emitters": 0, "Dependency Injection Constructs": 0, - "Preprocessor Macros": 1, + "Preprocessor Macros": 0, "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, @@ -764964,14 +765942,14 @@ "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 33, + "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": 253, + "Structural Tab Indentations": 0, "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, @@ -765028,22 +766006,22 @@ }, "9. Extracted Dependencies": [] }, - "assembly/freebsd_libc_string/string_strlcpy.S": { + "yacc/freebsd/config.y": { "1. Artifact Identity": { - "Filename": "string_strlcpy.S", - "Path": "assembly/freebsd_libc_string/string_strlcpy.S", - "Language": "Assembly", - "Architect": "Unknown Architect", + "Filename": "config.y", + "Path": "yacc/freebsd/config.y", + "Language": "Yacc", + "Architect": "(c) 1988, 1993", "Indentation Style": "Tabs", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "assembly", + "Folder Dominant Lang": "yacc", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .s)" + "Identity Proof": "Single Indicator (Shebang)" }, "2. Topological Coordinates": { - "X": 4648.27, - "Y": 128.28, - "Z": -4063.1 + "X": 3947.89, + "Y": 184.98, + "Z": -10128.74 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -765052,47 +766030,248 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 282, - "Coding LOC": 238, - "Documentation LOC": 3, - "Structural Magnitude": 19.76, - "Control Flow Ratio": "28.1%", + "Total LOC": 504, + "Coding LOC": 378, + "Documentation LOC": 64, + "Structural Magnitude": 251.76, + "Control Flow Ratio": "61.8%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.155 + "Raw Cognitive Density": 1.226 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "8.49%", - "Error & Exception Exposure": "0.0%", + "Cognitive Load Exposure": "60.92%", + "Error & Exception Exposure": "82.21%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.3%", - "API Exposure": "0.0%", + "Testing Exposure": "80.0%", + "API Exposure": "0.37%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "6.41%", + "State Flux Exposure": "100.0%", + "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "16.31%", + "Documentation Exposure": "13.14%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [], + "5. Function Analysis": [ + { + "Function Name": "NoDevice", + "Structural Impact": 29.7, + "Lines of Code (LOC)": 169, + "Control Flow Branches": 14, + "Input Parameters": 1, + "Control Flow Ratio": "60.9%", + "Start Line": 297, + "End Line": 465 + }, + { + "Function Name": "Config_spec", + "Structural Impact": 28.2, + "Lines of Code (LOC)": 55, + "Control Flow Branches": 17, + "Input Parameters": 1, + "Control Flow Ratio": "100.0%", + "Start Line": 152, + "End Line": 206 + }, + { + "Function Name": "Spec", + "Structural Impact": 16.8, + "Lines of Code (LOC)": 25, + "Control Flow Branches": 10, + "Input Parameters": 1, + "Control Flow Ratio": "100.0%", + "Start Line": 126, + "End Line": 150 + }, + { + "Function Name": "Mkoption", + "Structural Impact": 5.9, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 3, + "Input Parameters": 1, + "Control Flow Ratio": "100.0%", + "Start Line": 262, + "End Line": 266 + }, + { + "Function Name": "Option", + "Structural Impact": 4.7, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 2, + "Input Parameters": 1, + "Control Flow Ratio": "100.0%", + "Start Line": 227, + "End Line": 236 + }, + { + "Function Name": "Opt_value", + "Structural Impact": 3.2, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "100.0%", + "Start Line": 243, + "End Line": 250 + }, + { + "Function Name": "Many_specs", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 120, + "End Line": 124 + }, + { + "Function Name": "System_parameter_list", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 211, + "End Line": 214 + }, + { + "Function Name": "Opt_list", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 216, + "End Line": 220 + }, + { + "Function Name": "NoOpt_list", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 222, + "End Line": 226 + }, + { + "Function Name": "Mkopt_list", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 256, + "End Line": 260 + }, + { + "Function Name": "Device_spec", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 272, + "End Line": 276 + }, + { + "Function Name": "Dev_list", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 278, + "End Line": 282 + }, + { + "Function Name": "NoDev_list", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 284, + "End Line": 288 + }, + { + "Function Name": "Device", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 290, + "End Line": 295 + }, + { + "Function Name": "NoOption", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 238, + "End Line": 241 + }, + { + "Function Name": "Save_id", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 252, + "End Line": 254 + }, + { + "Function Name": "Dev", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 268, + "End Line": 270 + }, + { + "Function Name": "System_id", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 208, + "End Line": 209 + }, + { + "Function Name": "Configuration", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 116, + "End Line": 118 + } + ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 32, - "Sequential Logic Declarations": 82, - "Function Parameters": 222, - "Function/Method Declarations": 0, + "Control Flow Branches": 63, + "Sequential Logic Declarations": 39, + "Function Parameters": 43, + "Function/Method Declarations": 20, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 1, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 9, - "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 0, - "Commented-out Code (Dead Logic)": 1, + "I/O and Network Boundaries": 2, + "Exposed API / Public Exports": 2, + "State Mutations / Variable Reassignments": 127, + "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, @@ -765100,12 +766279,12 @@ "Closures and Anonymous Functions": 0, "Global State Dependencies": 0, "Decorators and Annotations": 0, - "Generic Type Abstractions": 0, + "Generic Type Abstractions": 7, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, - "Authorship Metadata": 0, + "Metaprogramming & Reflection": 4, + "Module Dependencies (Imports)": 6, + "Authorship Metadata": 3, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, "Specification Traceability Tags": 0, @@ -765113,22 +766292,22 @@ "Event Publishers / Emitters": 0, "Dependency Injection Constructs": 0, "Preprocessor Macros": 1, - "Pointer Arithmetic & Addressing": 0, - "Manual Memory Allocation": 0, + "Pointer Arithmetic & Addressing": 45, + "Manual Memory Allocation": 3, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, - "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 0, + "Ad-hoc Print / Debug Statements": 4, + "Explicit Type Casts": 1, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 28, + "Bitwise Operations": 54, "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 0, + "Immutable Data Declarations": 4, + "Resource Deallocation & Cleanup": 8, + "Private / Encapsulated Scopes": 17, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 184, + "Structural Tab Indentations": 229, "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, @@ -765146,12 +766325,12 @@ "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 Snake Case": 20, "Design Pascal Case": 0, "Design Upper Case": 0, - "Design Short Vars": 0, + "Design Short Vars": 5, "Design Long Vars": 0, "Duplicate Logic": 0, "Orphaned Logic": 0, @@ -765185,22 +766364,22 @@ }, "9. Extracted Dependencies": [] }, - "assembly/freebsd_libc_string/string_strlen.S": { + "yacc/freebsd/jailparse.y": { "1. Artifact Identity": { - "Filename": "string_strlen.S", - "Path": "assembly/freebsd_libc_string/string_strlen.S", - "Language": "Assembly", - "Architect": "Unknown Architect", + "Filename": "jailparse.y", + "Path": "yacc/freebsd/jailparse.y", + "Language": "Yacc", + "Architect": "(c) 2011 James Gritton", "Indentation Style": "Tabs", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "assembly", + "Folder Dominant Lang": "yacc", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .s)" + "Identity Proof": "Single Indicator (Shebang)" }, "2. Topological Coordinates": { - "X": 4423.96, - "Y": 138.02, - "Z": -2932.69 + "X": 3727.28, + "Y": 160.01, + "Z": -9795.16 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -765209,46 +766388,117 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 132, - "Coding LOC": 113, - "Documentation LOC": 3, - "Structural Magnitude": 17.26, - "Control Flow Ratio": "47.8%", + "Total LOC": 277, + "Coding LOC": 199, + "Documentation LOC": 50, + "Structural Magnitude": 197.18, + "Control Flow Ratio": "81.1%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.142 + "Raw Cognitive Density": 1.026 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "8.06%", - "Error & Exception Exposure": "0.0%", + "Cognitive Load Exposure": "75.13%", + "Error & Exception Exposure": "95.7%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.3%", + "Testing Exposure": "80.0%", "API Exposure": "0.0%", "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": "21.54%", + "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [], + "5. Function Analysis": [ + { + "Function Name": "string", + "Structural Impact": 25.7, + "Lines of Code (LOC)": 89, + "Control Flow Branches": 14, + "Input Parameters": 1, + "Control Flow Ratio": "87.5%", + "Start Line": 187, + "End Line": 275 + }, + { + "Function Name": "param", + "Structural Impact": 11.2, + "Lines of Code (LOC)": 26, + "Control Flow Branches": 6, + "Input Parameters": 1, + "Control Flow Ratio": "100.0%", + "Start Line": 123, + "End Line": 148 + }, + { + "Function Name": "conf", + "Structural Impact": 10.8, + "Lines of Code (LOC)": 19, + "Control Flow Branches": 6, + "Input Parameters": 1, + "Control Flow Ratio": "100.0%", + "Start Line": 70, + "End Line": 88 + }, + { + "Function Name": "jail_name", + "Structural Impact": 5.3, + "Lines of Code (LOC)": 22, + "Control Flow Branches": 2, + "Input Parameters": 1, + "Control Flow Ratio": "100.0%", + "Start Line": 96, + "End Line": 117 + }, + { + "Function Name": "name", + "Structural Impact": 3.6, + "Lines of Code (LOC)": 15, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "100.0%", + "Start Line": 154, + "End Line": 168 + }, + { + "Function Name": "value", + "Structural Impact": 3.4, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "100.0%", + "Start Line": 170, + "End Line": 181 + }, + { + "Function Name": "jail", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 90, + "End Line": 94 + } + ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 11, - "Sequential Logic Declarations": 12, - "Function Parameters": 60, - "Function/Method Declarations": 0, + "Control Flow Branches": 30, + "Sequential Logic Declarations": 7, + "Function Parameters": 71, + "Function/Method Declarations": 7, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 0, + "Type/Safety Bypasses": 3, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 6, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 0, + "State Mutations / Variable Reassignments": 132, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, @@ -765257,20 +766507,20 @@ "Closures and Anonymous Functions": 0, "Global State Dependencies": 0, "Decorators and Annotations": 0, - "Generic Type Abstractions": 0, + "Generic Type Abstractions": 4, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, - "Authorship Metadata": 0, + "Metaprogramming & Reflection": 4, + "Module Dependencies (Imports)": 5, + "Authorship Metadata": 3, "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, + "Preprocessor Macros": 2, + "Pointer Arithmetic & Addressing": 55, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, @@ -765278,14 +766528,14 @@ "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 4, + "Bitwise Operations": 29, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 0, + "Resource Deallocation & Cleanup": 6, + "Private / Encapsulated Scopes": 4, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 66, + "Structural Tab Indentations": 151, "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, @@ -765303,12 +766553,12 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 0, + "Core Var Decl": 8, "Design Camel Case": 0, - "Design Snake Case": 0, + "Design Snake Case": 8, "Design Pascal Case": 0, "Design Upper Case": 0, - "Design Short Vars": 0, + "Design Short Vars": 3, "Design Long Vars": 0, "Duplicate Logic": 0, "Orphaned Logic": 0, @@ -765341,11 +766591,36 @@ "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [] - }, - "assembly/freebsd_libc_string/string_strncmp.S": { + } + } + }, + "assembly/freebsd_libc_string": { + "Directory Group Magnitude": 443.26, + "File Count": 25, + "Ecosystem Fingerprint (Archetypes)": { + "Unclassified": "96.0%", + "Static: Literature & Documentation": "4.0%" + }, + "Average Risk Exposures": { + "Cognitive Load Exposure": "8.83%", + "Error & Exception Exposure": "9.25%", + "Tech Debt Exposure": "3.23%", + "Testing Exposure": "1.88%", + "API Exposure": "0.0%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "6.53%", + "Commented Logic Exposure": "0.26%", + "Specification Exposure": "81.87%", + "Instability Exposure": "48.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "15.88%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "Files": { + "assembly/freebsd_libc_string/gen__setjmp.S": { "1. Artifact Identity": { - "Filename": "string_strncmp.S", - "Path": "assembly/freebsd_libc_string/string_strncmp.S", + "Filename": "gen__setjmp.S", + "Path": "assembly/freebsd_libc_string/gen__setjmp.S", "Language": "Assembly", "Architect": "Unknown Architect", "Indentation Style": "Tabs", @@ -765355,9 +766630,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 4679.21, - "Y": 121.75, - "Z": -3077.29 + "X": 4110.94, + "Y": 145.48, + "Z": -3207.99 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -765366,46 +766641,46 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 489, - "Coding LOC": 436, - "Documentation LOC": 4, - "Structural Magnitude": 32.72, - "Control Flow Ratio": "40.4%", + "Total LOC": 91, + "Coding LOC": 44, + "Documentation LOC": 42, + "Structural Magnitude": 15.88, + "Control Flow Ratio": "11.1%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.202 + "Raw Cognitive Density": 0.182 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "10.04%", - "Error & Exception Exposure": "54.67%", + "Cognitive Load Exposure": "9.34%", + "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": "21.85%", + "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "14.21%", + "Documentation Exposure": "14.97%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 65, - "Sequential Logic Declarations": 96, - "Function Parameters": 461, + "Control Flow Branches": 3, + "Sequential Logic Declarations": 24, + "Function Parameters": 22, "Function/Method Declarations": 0, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 12, + "I/O and Network Boundaries": 0, "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, @@ -765435,14 +766710,14 @@ "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 59, + "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": 355, + "Structural Tab Indentations": 39, "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, @@ -765499,62 +766774,62 @@ }, "9. Extracted Dependencies": [] }, - "assembly/freebsd_libc_string/COPYRIGHT": { + "assembly/freebsd_libc_string/gen_fabs.S": { "1. Artifact Identity": { - "Filename": "COPYRIGHT", - "Path": "assembly/freebsd_libc_string/COPYRIGHT", - "Language": "Plaintext", + "Filename": "gen_fabs.S", + "Path": "assembly/freebsd_libc_string/gen_fabs.S", + "Language": "Assembly", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Tabs", "Doc Umbrella": 0.0, "Folder Dominant Lang": "assembly", - "Lock Tier": 1, - "Identity Proof": "Metadata Anchor (COPYRIGHT)" + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 5284.04, - "Y": 134.5, - "Z": -2759.01 + "X": 5426.24, + "Y": 93.2, + "Z": -3972.18 }, "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": 125, - "Coding LOC": 0, - "Documentation LOC": 100, - "Structural Magnitude": 2.5, - "Control Flow Ratio": "0.0%", + "Total LOC": 46, + "Coding LOC": 12, + "Documentation LOC": 29, + "Structural Magnitude": 15.24, + "Control Flow Ratio": "100.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.5 }, "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": "5.0%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "1.84%", + "API Exposure": "0.0%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "0.0%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "80.0%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "27.09%", + "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, + "Control Flow Branches": 1, "Sequential Logic Declarations": 0, - "Function Parameters": 0, + "Function Parameters": 5, "Function/Method Declarations": 0, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, @@ -765599,7 +766874,7 @@ "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, + "Structural Tab Indentations": 9, "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, @@ -765655,47 +766930,23 @@ "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [] - } - } - }, - "cobol/cobol-programming-course": { - "Directory Group Magnitude": 461.14, - "File Count": 7, - "Ecosystem Fingerprint (Archetypes)": { - "Unclassified": "100.0%" - }, - "Average Risk Exposures": { - "Cognitive Load Exposure": "59.27%", - "Error & Exception Exposure": "78.34%", - "Tech Debt Exposure": "99.25%", - "Testing Exposure": "24.6%", - "API Exposure": "1.15%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "99.77%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "22.78%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "Files": { - "cobol/cobol-programming-course/CBL0106.cbl": { + }, + "assembly/freebsd_libc_string/gen_setjmp.S": { "1. Artifact Identity": { - "Filename": "CBL0106.cbl", - "Path": "cobol/cobol-programming-course/CBL0106.cbl", - "Language": "Cobol", + "Filename": "gen_setjmp.S", + "Path": "assembly/freebsd_libc_string/gen_setjmp.S", + "Language": "Assembly", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Tabs", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "cobol", + "Folder Dominant Lang": "assembly", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .cbl)" + "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 1558.96, - "Y": 47.06, - "Z": -8275.49 + "X": 4779.84, + "Y": 148.88, + "Z": -4229.26 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -765704,161 +766955,60 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 196, - "Coding LOC": 161, - "Documentation LOC": 28, - "Structural Magnitude": 84.12, - "Control Flow Ratio": "69.2%", + "Total LOC": 112, + "Coding LOC": 62, + "Documentation LOC": 44, + "Structural Magnitude": 16.24, + "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.727 + "Raw Cognitive Density": 0.161 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "45.9%", - "Error & Exception Exposure": "77.11%", - "Tech Debt Exposure": "98.89%", - "Testing Exposure": "2.43%", + "Cognitive Load Exposure": "8.67%", + "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": "99.99%", + "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "14.14%", + "Documentation Exposure": "13.67%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [ - { - "Function Name": "READ-NEXT-RECORD", - "Structural Impact": 9.4, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 8, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 141, - "End Line": 149 - }, - { - "Function Name": "FILE-CONTROL", - "Structural Impact": 5.0, - "Lines of Code (LOC)": 109, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "20.0%", - "Start Line": 13, - "End Line": 121 - }, - { - "Function Name": "WRITE-OVERLIMIT", - "Structural Impact": 4.5, - "Lines of Code (LOC)": 11, - "Control Flow Branches": 3, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 177, - "End Line": 187 - }, - { - "Function Name": "IS-OVERLIMIT", - "Structural Impact": 3.4, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 2, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 163, - "End Line": 170 - }, - { - "Function Name": "IS-STATE-VIRGINIA", - "Structural Impact": 3.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 2, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 172, - "End Line": 175 - }, - { - "Function Name": "CLOSE-STOP", - "Structural Impact": 2.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "50.0%", - "Start Line": 151, - "End Line": 156 - }, - { - "Function Name": "READ-RECORD", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 158, - "End Line": 161 - }, - { - "Function Name": "WRITE-HEADERS", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 13, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 127, - "End Line": 139 - }, - { - "Function Name": "WRITE-RECORD", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 189, - "End Line": 194 - }, - { - "Function Name": "OPEN-FILES", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 123, - "End Line": 125 - } - ], + "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 18, - "Sequential Logic Declarations": 8, - "Function Parameters": 0, - "Function/Method Declarations": 10, - "Class/Entity Declarations": 1, - "Defensive Programming Constructs": 5, + "Control Flow Branches": 5, + "Sequential Logic Declarations": 30, + "Function Parameters": 51, + "Function/Method Declarations": 0, + "Class/Entity Declarations": 0, + "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 26, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 47, + "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 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": 1, + "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": 1, + "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, "Specification Traceability Tags": 0, @@ -765872,17 +767022,17 @@ "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 1, + "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, "Bitwise Operations": 0, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 3, + "Resource Deallocation & Cleanup": 0, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, - "Structural Space Indentations": 161, + "Structural Tab Indentations": 57, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -765890,7 +767040,7 @@ "Feature Flags": 0, "Serialization Parsing": 0, "Regex Execution": 0, - "Time Date Logic": 4, + "Time Date Logic": 0, "Cloud LLM API Integrations": 0, "AI Orchestration Frameworks": 0, "Vector Databases (RAG)": 0, @@ -765899,15 +767049,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": 1, - "Design Upper Case": 2, + "Design Pascal Case": 0, + "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 10, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -765938,22 +767088,22 @@ }, "9. Extracted Dependencies": [] }, - "cobol/cobol-programming-course/CBL0106C.cbl": { + "assembly/freebsd_libc_string/gen_sigsetjmp.S": { "1. Artifact Identity": { - "Filename": "CBL0106C.cbl", - "Path": "cobol/cobol-programming-course/CBL0106C.cbl", - "Language": "Cobol", + "Filename": "gen_sigsetjmp.S", + "Path": "assembly/freebsd_libc_string/gen_sigsetjmp.S", + "Language": "Assembly", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Tabs", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "cobol", + "Folder Dominant Lang": "assembly", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .cbl)" + "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 1358.84, - "Y": 24.82, - "Z": -9039.18 + "X": 5468.37, + "Y": 92.85, + "Z": -2757.8 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -765962,162 +767112,61 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 205, - "Coding LOC": 167, - "Documentation LOC": 32, - "Structural Magnitude": 89.64, - "Control Flow Ratio": "66.7%", + "Total LOC": 113, + "Coding LOC": 60, + "Documentation LOC": 47, + "Structural Magnitude": 16.2, + "Control Flow Ratio": "20.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.749 + "Raw Cognitive Density": 0.2 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "48.06%", - "Error & Exception Exposure": "77.01%", - "Tech Debt Exposure": "98.57%", - "Testing Exposure": "2.43%", + "Cognitive Load Exposure": "9.97%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "60.27%", + "Testing Exposure": "2.3%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "99.99%", + "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.56%", + "Documentation Exposure": "12.86%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [ - { - "Function Name": "READ-NEXT-RECORD", - "Structural Impact": 9.4, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 8, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 142, - "End Line": 150 - }, - { - "Function Name": "IS-OVERLIMIT", - "Structural Impact": 5.8, - "Lines of Code (LOC)": 16, - "Control Flow Branches": 4, - "Input Parameters": 0, - "Control Flow Ratio": "66.7%", - "Start Line": 164, - "End Line": 179 - }, - { - "Function Name": "FILE-CONTROL", - "Structural Impact": 5.0, - "Lines of Code (LOC)": 110, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "20.0%", - "Start Line": 13, - "End Line": 122 - }, - { - "Function Name": "WRITE-OVERLIMIT", - "Structural Impact": 4.5, - "Lines of Code (LOC)": 11, - "Control Flow Branches": 3, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 186, - "End Line": 196 - }, - { - "Function Name": "IS-STATE-VIRGINIA", - "Structural Impact": 3.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 2, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 181, - "End Line": 184 - }, - { - "Function Name": "CLOSE-STOP", - "Structural Impact": 2.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "50.0%", - "Start Line": 152, - "End Line": 157 - }, - { - "Function Name": "READ-RECORD", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 159, - "End Line": 162 - }, - { - "Function Name": "WRITE-HEADERS", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 13, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 128, - "End Line": 140 - }, - { - "Function Name": "WRITE-RECORD", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 198, - "End Line": 203 - }, - { - "Function Name": "OPEN-FILES", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 124, - "End Line": 126 - } - ], + "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 20, - "Sequential Logic Declarations": 10, - "Function Parameters": 0, - "Function/Method Declarations": 10, - "Class/Entity Declarations": 1, - "Defensive Programming Constructs": 6, + "Control Flow Branches": 7, + "Sequential Logic Declarations": 28, + "Function Parameters": 50, + "Function/Method Declarations": 0, + "Class/Entity Declarations": 0, + "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 26, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 50, + "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 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": 1, + "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": 1, - "Planned Work (TODOs)": 0, + "Authorship Metadata": 0, + "Planned Work (TODOs)": 1, "Acknowledged Tech Debt (FIXMEs)": 0, "Specification Traceability Tags": 0, "Server-Side Rendering Contexts": 0, @@ -766128,19 +767177,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": 2, + "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, "Bitwise Operations": 0, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 3, + "Resource Deallocation & Cleanup": 0, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, - "Structural Space Indentations": 167, + "Structural Tab Indentations": 53, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -766148,7 +767197,7 @@ "Feature Flags": 0, "Serialization Parsing": 0, "Regex Execution": 0, - "Time Date Logic": 4, + "Time Date Logic": 0, "Cloud LLM API Integrations": 0, "AI Orchestration Frameworks": 0, "Vector Databases (RAG)": 0, @@ -766157,15 +767206,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": 1, - "Design Upper Case": 2, + "Design Pascal Case": 0, + "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 10, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -766196,22 +767245,22 @@ }, "9. Extracted Dependencies": [] }, - "cobol/cobol-programming-course/CBLDB21.cbl": { + "assembly/freebsd_libc_string/stdlib_div.S": { "1. Artifact Identity": { - "Filename": "CBLDB21.cbl", - "Path": "cobol/cobol-programming-course/CBLDB21.cbl", - "Language": "Cobol", + "Filename": "stdlib_div.S", + "Path": "assembly/freebsd_libc_string/stdlib_div.S", + "Language": "Assembly", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Tabs", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "cobol", + "Folder Dominant Lang": "assembly", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .cbl)" + "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 789.93, - "Y": 93.43, - "Z": -8752.23 + "X": 4872.52, + "Y": 169.09, + "Z": -2544.46 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -766220,131 +767269,60 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 145, - "Coding LOC": 107, - "Documentation LOC": 30, - "Structural Magnitude": 53.44, - "Control Flow Ratio": "62.5%", + "Total LOC": 19, + "Coding LOC": 9, + "Documentation LOC": 6, + "Structural Magnitude": 14.68, + "Control Flow Ratio": "25.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.897 + "Raw Cognitive Density": 0.667 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "60.7%", - "Error & Exception Exposure": "69.2%", - "Tech Debt Exposure": "99.46%", - "Testing Exposure": "2.49%", - "API Exposure": "2.78%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "1.38%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "99.03%", + "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "60.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "19.21%", + "Documentation Exposure": "44.31%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [ - { - "Function Name": "LIST-ALL", - "Structural Impact": 12.9, - "Lines of Code (LOC)": 19, - "Control Flow Branches": 11, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 101, - "End Line": 119 - }, - { - "Function Name": "SQL-ERROR-HANDLING", - "Structural Impact": 7.7, - "Lines of Code (LOC)": 13, - "Control Flow Branches": 6, - "Input Parameters": 0, - "Control Flow Ratio": "66.7%", - "Start Line": 132, - "End Line": 144 - }, - { - "Function Name": "FILE-CONTROL", - "Structural Impact": 5.0, - "Lines of Code (LOC)": 73, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "20.0%", - "Start Line": 14, - "End Line": 86 - }, - { - "Function Name": "PROG-START", - "Structural Impact": 2.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 92, - "End Line": 94 - }, - { - "Function Name": "PRINT-AND-GET1", - "Structural Impact": 2.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 120, - "End Line": 122 - }, - { - "Function Name": "PRINT-A-LINE", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 123, - "End Line": 130 - }, - { - "Function Name": "PROG-END", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 95, - "End Line": 97 - } - ], + "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 20, - "Sequential Logic Declarations": 12, - "Function Parameters": 1, - "Function/Method Declarations": 7, - "Class/Entity Declarations": 1, - "Defensive Programming Constructs": 5, - "Type/Safety Bypasses": 1, + "Control Flow Branches": 1, + "Sequential Logic Declarations": 3, + "Function Parameters": 4, + "Function/Method Declarations": 0, + "Class/Entity Declarations": 0, + "Defensive Programming Constructs": 0, + "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 15, - "Exposed API / Public Exports": 1, - "State Mutations / Variable Reassignments": 18, + "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": 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": 1, + "Global State Dependencies": 0, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 7, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, - "Authorship Metadata": 1, + "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, "Specification Traceability Tags": 0, @@ -766356,23 +767334,23 @@ "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, - "Ad-hoc Print / Debug Statements": 2, + "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 2, + "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, "Bitwise Operations": 0, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 3, + "Resource Deallocation & Cleanup": 0, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, - "Structural Space Indentations": 107, + "Structural Tab Indentations": 7, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, - "Ipc Rpc Bridges": 8, + "Ipc Rpc Bridges": 0, "Feature Flags": 0, "Serialization Parsing": 0, "Regex Execution": 0, @@ -766385,15 +767363,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": 0, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 4, + "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 7, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -766424,22 +767402,22 @@ }, "9. Extracted Dependencies": [] }, - "cobol/cobol-programming-course/CBLDB22.cbl": { + "assembly/freebsd_libc_string/stdlib_ldiv.S": { "1. Artifact Identity": { - "Filename": "CBLDB22.cbl", - "Path": "cobol/cobol-programming-course/CBLDB22.cbl", - "Language": "Cobol", + "Filename": "stdlib_ldiv.S", + "Path": "assembly/freebsd_libc_string/stdlib_ldiv.S", + "Language": "Assembly", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Tabs", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "cobol", + "Folder Dominant Lang": "assembly", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .cbl)" + "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 1274.99, - "Y": 99.49, - "Z": -8918.07 + "X": 4382.11, + "Y": 102.53, + "Z": -4179.24 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -766448,169 +767426,58 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 202, - "Coding LOC": 157, - "Documentation LOC": 39, - "Structural Magnitude": 94.04, - "Control Flow Ratio": "76.5%", + "Total LOC": 17, + "Coding LOC": 7, + "Documentation LOC": 6, + "Structural Magnitude": 13.64, + "Control Flow Ratio": "50.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.083 + "Raw Cognitive Density": 0.857 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "79.1%", - "Error & Exception Exposure": "71.51%", - "Tech Debt Exposure": "99.07%", - "Testing Exposure": "80.0%", - "API Exposure": "2.61%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "1.07%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "99.82%", + "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "46.67%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "16.17%", + "Documentation Exposure": "36.38%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [ - { - "Function Name": "GET-ALL", - "Structural Impact": 12.9, - "Lines of Code (LOC)": 19, - "Control Flow Branches": 11, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 132, - "End Line": 150 - }, - { - "Function Name": "GET-SPECIFIC", - "Structural Impact": 12.9, - "Lines of Code (LOC)": 19, - "Control Flow Branches": 11, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 156, - "End Line": 174 - }, - { - "Function Name": "SQL-ERROR-HANDLING", - "Structural Impact": 7.7, - "Lines of Code (LOC)": 13, - "Control Flow Branches": 6, - "Input Parameters": 0, - "Control Flow Ratio": "66.7%", - "Start Line": 189, - "End Line": 201 - }, - { - "Function Name": "PROCESS-INPUT", - "Structural Impact": 6.3, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 5, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 124, - "End Line": 130 - }, - { - "Function Name": "FILE-CONTROL", - "Structural Impact": 5.0, - "Lines of Code (LOC)": 97, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "20.0%", - "Start Line": 13, - "End Line": 109 - }, - { - "Function Name": "PROG-START", - "Structural Impact": 4.3, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 3, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 111, - "End Line": 117 - }, - { - "Function Name": "PRINT-ALL", - "Structural Impact": 2.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 152, - "End Line": 154 - }, - { - "Function Name": "PRINT-SPECIFIC", - "Structural Impact": 2.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 176, - "End Line": 178 - }, - { - "Function Name": "PRINT-A-LINE", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 180, - "End Line": 187 - }, - { - "Function Name": "PROG-END", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 119, - "End Line": 120 - }, - { - "Function Name": "REPOUT", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 121, - "End Line": 122 - } - ], + "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 39, - "Sequential Logic Declarations": 12, - "Function Parameters": 1, - "Function/Method Declarations": 11, + "Control Flow Branches": 1, + "Sequential Logic Declarations": 1, + "Function Parameters": 2, + "Function/Method Declarations": 0, "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 8, - "Type/Safety Bypasses": 2, + "Defensive Programming Constructs": 0, + "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 27, - "Exposed API / Public Exports": 1, - "State Mutations / Variable Reassignments": 33, + "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": 1, + "Global State Dependencies": 0, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 12, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -766624,23 +767491,23 @@ "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, - "Ad-hoc Print / Debug Statements": 2, + "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 2, + "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, "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": 157, + "Structural Tab Indentations": 5, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, - "Ipc Rpc Bridges": 13, + "Ipc Rpc Bridges": 0, "Feature Flags": 0, "Serialization Parsing": 0, "Regex Execution": 0, @@ -766653,15 +767520,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": 0, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 9, + "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 10, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -766692,22 +767559,22 @@ }, "9. Extracted Dependencies": [] }, - "cobol/cobol-programming-course/CBLDB23.cbl": { + "assembly/freebsd_libc_string/stdlib_lldiv.S": { "1. Artifact Identity": { - "Filename": "CBLDB23.cbl", - "Path": "cobol/cobol-programming-course/CBLDB23.cbl", - "Language": "Cobol", + "Filename": "stdlib_lldiv.S", + "Path": "assembly/freebsd_libc_string/stdlib_lldiv.S", + "Language": "Assembly", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Tabs", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "cobol", + "Folder Dominant Lang": "assembly", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .cbl)" + "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 1054.57, - "Y": 159.02, - "Z": -8485.81 + "X": 5693.71, + "Y": 69.2, + "Z": -3386.79 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -766716,171 +767583,60 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 189, - "Coding LOC": 156, - "Documentation LOC": 27, - "Structural Magnitude": 91.92, - "Control Flow Ratio": "76.5%", + "Total LOC": 17, + "Coding LOC": 7, + "Documentation LOC": 6, + "Structural Magnitude": 13.64, + "Control Flow Ratio": "50.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.064 + "Raw Cognitive Density": 0.857 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "74.85%", - "Error & Exception Exposure": "70.48%", - "Tech Debt Exposure": "99.11%", - "Testing Exposure": "80.0%", - "API Exposure": "2.64%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "1.07%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "99.71%", + "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "46.67%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "17.37%", + "Documentation Exposure": "36.38%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [ - { - "Function Name": "GET-ALL", - "Structural Impact": 12.9, - "Lines of Code (LOC)": 19, - "Control Flow Branches": 11, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 125, - "End Line": 143 - }, - { - "Function Name": "GET-SPECIFIC", - "Structural Impact": 12.9, - "Lines of Code (LOC)": 19, - "Control Flow Branches": 11, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 147, - "End Line": 165 - }, - { - "Function Name": "SQL-ERROR-HANDLING", - "Structural Impact": 7.7, - "Lines of Code (LOC)": 13, - "Control Flow Branches": 6, - "Input Parameters": 0, - "Control Flow Ratio": "66.7%", - "Start Line": 176, - "End Line": 188 - }, - { - "Function Name": "PROCESS-INPUT", - "Structural Impact": 6.3, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 5, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 118, - "End Line": 124 - }, - { - "Function Name": "FILE-CONTROL", - "Structural Impact": 5.0, - "Lines of Code (LOC)": 92, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "20.0%", - "Start Line": 14, - "End Line": 105 - }, - { - "Function Name": "PROG-START", - "Structural Impact": 4.3, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 3, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 107, - "End Line": 113 - }, - { - "Function Name": "PRINT-ALL", - "Structural Impact": 2.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 144, - "End Line": 146 - }, - { - "Function Name": "PRINT-SPECIFIC", - "Structural Impact": 2.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 166, - "End Line": 168 - }, - { - "Function Name": "PRINT-A-LINE", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 169, - "End Line": 174 - }, - { - "Function Name": "PROG-END", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 114, - "End Line": 115 - }, - { - "Function Name": "REPOUT", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 116, - "End Line": 117 - } - ], + "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 39, - "Sequential Logic Declarations": 12, - "Function Parameters": 1, - "Function/Method Declarations": 11, - "Class/Entity Declarations": 1, - "Defensive Programming Constructs": 8, - "Type/Safety Bypasses": 2, + "Control Flow Branches": 1, + "Sequential Logic Declarations": 1, + "Function Parameters": 2, + "Function/Method Declarations": 0, + "Class/Entity Declarations": 0, + "Defensive Programming Constructs": 0, + "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 27, - "Exposed API / Public Exports": 1, - "State Mutations / Variable Reassignments": 31, + "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": 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": 1, + "Global State Dependencies": 0, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 12, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, - "Authorship Metadata": 1, + "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, "Specification Traceability Tags": 0, @@ -766892,23 +767648,23 @@ "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, - "Ad-hoc Print / Debug Statements": 2, + "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 2, + "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, "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": 156, + "Structural Tab Indentations": 5, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, - "Ipc Rpc Bridges": 13, + "Ipc Rpc Bridges": 0, "Feature Flags": 0, "Serialization Parsing": 0, "Regex Execution": 0, @@ -766921,15 +767677,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": 0, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 9, + "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 10, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -766960,22 +767716,22 @@ }, "9. Extracted Dependencies": [] }, - "cobol/cobol-programming-course/DEPTPAY.CBL": { + "assembly/freebsd_libc_string/string_bcmp.S": { "1. Artifact Identity": { - "Filename": "DEPTPAY.CBL", - "Path": "cobol/cobol-programming-course/DEPTPAY.CBL", - "Language": "Cobol", + "Filename": "string_bcmp.S", + "Path": "assembly/freebsd_libc_string/string_bcmp.S", + "Language": "Assembly", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "cobol", + "Folder Dominant Lang": "assembly", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .cbl)" + "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 1134.89, - "Y": 144.73, - "Z": -8414.57 + "X": 4162.56, + "Y": 153.82, + "Z": -3064.64 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -766984,74 +767740,53 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 37, - "Coding LOC": 33, - "Documentation LOC": 1, - "Structural Magnitude": 10.46, - "Control Flow Ratio": "13.3%", + "Total LOC": 8, + "Coding LOC": 0, + "Documentation LOC": 6, + "Structural Magnitude": 10.52, + "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.636 + "Raw Cognitive Density": 5.0 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "38.83%", - "Error & Exception Exposure": "89.31%", - "Tech Debt Exposure": "99.94%", - "Testing Exposure": "2.38%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "0.15%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "99.83%", + "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "6.67%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "46.24%", + "Documentation Exposure": "6.0%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [ - { - "Function Name": "AVERAGE-SALARY", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 19, - "End Line": 27 - }, - { - "Function Name": "DISPLAY-DETAILS", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 29, - "End Line": 35 - } - ], + "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 2, - "Sequential Logic Declarations": 13, + "Control Flow Branches": 0, + "Sequential Logic Declarations": 0, "Function Parameters": 0, - "Function/Method Declarations": 2, - "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": 7, + "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, + "Global State Dependencies": 0, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -767070,9 +767805,9 @@ "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, - "Ad-hoc Print / Debug Statements": 8, + "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 1, + "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, "Bitwise Operations": 0, "Thread Synchronization Locks": 0, @@ -767082,7 +767817,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 33, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -767107,7 +767842,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 2, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -767138,22 +767873,22 @@ }, "9. Extracted Dependencies": [] }, - "cobol/cobol-programming-course/EMPPAY.CBL": { + "assembly/freebsd_libc_string/string_memccpy.S": { "1. Artifact Identity": { - "Filename": "EMPPAY.CBL", - "Path": "cobol/cobol-programming-course/EMPPAY.CBL", - "Language": "Cobol", + "Filename": "string_memccpy.S", + "Path": "assembly/freebsd_libc_string/string_memccpy.S", + "Language": "Assembly", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Tabs", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "cobol", + "Folder Dominant Lang": "assembly", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .cbl)" + "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 1713.75, - "Y": -10.87, - "Z": -9201.58 + "X": 4291.86, + "Y": 93.21, + "Z": -3062.61 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -767162,125 +767897,84 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 55, - "Coding LOC": 51, - "Documentation LOC": 0, - "Structural Magnitude": 37.52, - "Control Flow Ratio": "45.5%", + "Total LOC": 261, + "Coding LOC": 180, + "Documentation LOC": 42, + "Structural Magnitude": 18.6, + "Control Flow Ratio": "25.5%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.044 + "Raw Cognitive Density": 0.172 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "67.44%", - "Error & Exception Exposure": "93.79%", - "Tech Debt Exposure": "99.71%", - "Testing Exposure": "2.47%", + "Cognitive Load Exposure": "9.02%", + "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": "100.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": "32.78%", + "Documentation Exposure": "12.83%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [ - { - "Function Name": "PAYMENT-WEEKLY", - "Structural Impact": 5.5, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 4, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 30, - "End Line": 39 - }, - { - "Function Name": "PAYMENT-MONTHLY", - "Structural Impact": 3.4, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 2, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 40, - "End Line": 47 - }, - { - "Function Name": "SHOW-OUTPUT", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 48, - "End Line": 55 - }, - { - "Function Name": "INITIALIZATION", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 25, - "End Line": 29 - } - ], + "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 10, - "Sequential Logic Declarations": 12, - "Function Parameters": 0, - "Function/Method Declarations": 4, - "Class/Entity Declarations": 1, - "Defensive Programming Constructs": 0, + "Control Flow Branches": 26, + "Sequential Logic Declarations": 76, + "Function Parameters": 213, + "Function/Method Declarations": 0, + "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": 0, "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 25, + "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 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": 1, + "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": 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, + "Preprocessor Macros": 1, "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, - "Ad-hoc Print / Debug Statements": 7, + "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 1, + "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 0, + "Bitwise Operations": 9, "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": 51, + "Structural Tab Indentations": 159, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -767305,7 +767999,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 3, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -767335,88 +768029,63 @@ "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [] - } - } - }, - "shell/sqlite": { - "Directory Group Magnitude": 459.2, - "File Count": 13, - "Ecosystem Fingerprint (Archetypes)": { - "Unclassified": "92.3%", - "Static: Literature & Documentation": "7.7%" - }, - "Average Risk Exposures": { - "Cognitive Load Exposure": "35.49%", - "Error & Exception Exposure": "66.87%", - "Tech Debt Exposure": "75.36%", - "Testing Exposure": "8.21%", - "API Exposure": "0.29%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "46.15%", - "Commented Logic Exposure": "2.64%", - "Specification Exposure": "83.59%", - "Instability Exposure": "46.15%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "9.96%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "Files": { - "shell/sqlite/LICENSE.md": { + }, + "assembly/freebsd_libc_string/string_memchr.S": { "1. Artifact Identity": { - "Filename": "LICENSE.md", - "Path": "shell/sqlite/LICENSE.md", - "Language": "Markdown", + "Filename": "string_memchr.S", + "Path": "assembly/freebsd_libc_string/string_memchr.S", + "Language": "Assembly", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", - "Doc Umbrella": 1.0, - "Folder Dominant Lang": "shell", - "Lock Tier": 1, - "Identity Proof": "Prose Extension (.md)" + "Indentation Style": "Mixed (1.6% Spaces / 98.4% Tabs)", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "assembly", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 5765.9, - "Y": -4.52, - "Z": -4341.73 + "X": 5151.03, + "Y": 83.49, + "Z": -4063.24 }, "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": 86, - "Coding LOC": 0, - "Documentation LOC": 68, - "Structural Magnitude": 1.72, - "Control Flow Ratio": "0.0%", + "Total LOC": 208, + "Coding LOC": 140, + "Documentation LOC": 35, + "Structural Magnitude": 17.8, + "Control Flow Ratio": "37.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.157 }, "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": "8.54%", + "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%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "100.0%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "14.09%", + "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 0, - "Function Parameters": 0, + "Control Flow Branches": 17, + "Sequential Logic Declarations": 29, + "Function Parameters": 136, "Function/Method Declarations": 0, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, @@ -767445,7 +768114,7 @@ "Server-Side Rendering Contexts": 0, "Event Publishers / Emitters": 0, "Dependency Injection Constructs": 0, - "Preprocessor Macros": 0, + "Preprocessor Macros": 1, "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, @@ -767454,15 +768123,15 @@ "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 0, + "Bitwise Operations": 33, "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, + "Structural Tab Indentations": 123, + "Structural Space Indentations": 2, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -767491,7 +768160,7 @@ "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, - "Hyperlinked Literature References": 7, + "Hyperlinked Literature References": 0, "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, @@ -767518,22 +768187,22 @@ }, "9. Extracted Dependencies": [] }, - "shell/sqlite/cktclsh.sh": { + "assembly/freebsd_libc_string/string_memcmp.S": { "1. Artifact Identity": { - "Filename": "cktclsh.sh", - "Path": "shell/sqlite/cktclsh.sh", - "Language": "Shell", + "Filename": "string_memcmp.S", + "Path": "assembly/freebsd_libc_string/string_memcmp.S", + "Language": "Assembly", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", - "Doc Umbrella": 1.0, - "Folder Dominant Lang": "shell", + "Indentation Style": "Tabs", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "assembly", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .sh)" + "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 6905.62, - "Y": -32.86, - "Z": -3575.04 + "X": 4449.86, + "Y": 116.81, + "Z": -3432.6 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -767542,65 +768211,44 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 12, - "Coding LOC": 9, - "Documentation LOC": 2, - "Structural Magnitude": 10.48, - "Control Flow Ratio": "50.0%", + "Total LOC": 421, + "Coding LOC": 296, + "Documentation LOC": 88, + "Structural Magnitude": 20.92, + "Control Flow Ratio": "44.5%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.0 + "Raw Cognitive Density": 0.196 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.0%", - "Error & Exception Exposure": "99.68%", - "Tech Debt Exposure": "100.0%", - "Testing Exposure": "1.93%", + "Cognitive Load Exposure": "9.83%", + "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%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "60.0%", + "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "7.15%", + "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [ - { - "Function Name": "Anonymous_Block", - "Structural Impact": 7.2, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 3, - "Input Parameters": 2, - "Control Flow Ratio": "60.0%", - "Start Line": 5, - "End Line": 10 - }, - { - "Function Name": "__global_context__", - "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": 11 - } - ], + "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 4, - "Sequential Logic Declarations": 4, - "Function Parameters": 8, + "Control Flow Branches": 53, + "Sequential Logic Declarations": 66, + "Function Parameters": 328, "Function/Method Declarations": 0, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 9, + "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 4, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -767628,19 +768276,19 @@ "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, - "Ad-hoc Print / Debug Statements": 3, + "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 2, + "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 0, + "Bitwise Operations": 16, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 2, + "Resource Deallocation & Cleanup": 0, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, - "Structural Space Indentations": 3, + "Structural Tab Indentations": 252, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -767665,7 +768313,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, @@ -767696,22 +768344,22 @@ }, "9. Extracted Dependencies": [] }, - "shell/sqlite/fts3cov.sh": { + "assembly/freebsd_libc_string/string_memcpy.S": { "1. Artifact Identity": { - "Filename": "fts3cov.sh", - "Path": "shell/sqlite/fts3cov.sh", - "Language": "Shell", + "Filename": "string_memcpy.S", + "Path": "assembly/freebsd_libc_string/string_memcpy.S", + "Language": "Assembly", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", - "Doc Umbrella": 1.0, - "Folder Dominant Lang": "shell", - "Lock Tier": 0, - "Identity Proof": "Absolute Consensus (Ext + Shebang)" + "Indentation Style": "Neutral / No Indentation", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "assembly", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 6193.09, - "Y": -21.82, - "Z": -3161.68 + "X": 5041.18, + "Y": 148.01, + "Z": -4169.26 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -767720,67 +768368,46 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 17, - "Coding LOC": 11, - "Documentation LOC": 0, - "Structural Magnitude": 12.02, - "Control Flow Ratio": "50.0%", + "Total LOC": 5, + "Coding LOC": 0, + "Documentation LOC": 3, + "Structural Magnitude": 10.52, + "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.636 + "Raw Cognitive Density": 5.0 }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", - "Error & Exception Exposure": "98.62%", - "Tech Debt Exposure": "100.0%", - "Testing Exposure": "1.97%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "0.15%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "100.0%", + "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "73.33%", + "Specification Exposure": "6.67%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "8.74%", + "Documentation Exposure": "6.15%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [ - { - "Function Name": "Anonymous_Block", - "Structural Impact": 4.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 3, - "Input Parameters": 0, - "Control Flow Ratio": "50.0%", - "Start Line": 10, - "End Line": 15 - }, - { - "Function Name": "__global_context__", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 1, - "End Line": 16 - } - ], + "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 3, - "Sequential Logic Declarations": 3, + "Control Flow Branches": 0, + "Sequential Logic Declarations": 0, "Function Parameters": 0, "Function/Method Declarations": 0, "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 1, - "Type/Safety Bypasses": 5, + "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": 6, + "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, @@ -767792,7 +768419,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 4, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -767806,7 +768433,7 @@ "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, - "Ad-hoc Print / Debug Statements": 2, + "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, @@ -767818,14 +768445,14 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 3, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, "Ipc Rpc Bridges": 0, "Feature Flags": 0, - "Serialization Parsing": 1, - "Regex Execution": 2, + "Serialization Parsing": 0, + "Regex Execution": 0, "Time Date Logic": 0, "Cloud LLM API Integrations": 0, "AI Orchestration Frameworks": 0, @@ -767835,15 +768462,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": 2, + "Design Snake Case": 0, "Design Pascal Case": 0, "Design Upper Case": 0, - "Design Short Vars": 1, + "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, @@ -767874,22 +768501,22 @@ }, "9. Extracted Dependencies": [] }, - "shell/sqlite/json-speed-check.sh": { + "assembly/freebsd_libc_string/string_memmove.S": { "1. Artifact Identity": { - "Filename": "json-speed-check.sh", - "Path": "shell/sqlite/json-speed-check.sh", - "Language": "Shell", + "Filename": "string_memmove.S", + "Path": "assembly/freebsd_libc_string/string_memmove.S", + "Language": "Assembly", "Architect": "Unknown Architect", - "Indentation Style": "Mixed (93.1% Spaces / 6.9% Tabs)", - "Doc Umbrella": 1.0, - "Folder Dominant Lang": "shell", - "Lock Tier": 0, - "Identity Proof": "Absolute Consensus (Ext + Shebang)" + "Indentation Style": "Mixed (0.5% Spaces / 99.5% Tabs)", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "assembly", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 6161.76, - "Y": -8.93, - "Z": -3667.29 + "X": 4757.36, + "Y": 166.86, + "Z": -2883.75 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -767898,25 +768525,25 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 88, - "Coding LOC": 71, - "Documentation LOC": 16, - "Structural Magnitude": 100.32, - "Control Flow Ratio": "57.9%", + "Total LOC": 309, + "Coding LOC": 233, + "Documentation LOC": 57, + "Structural Magnitude": 19.66, + "Control Flow Ratio": "37.6%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.116 + "Raw Cognitive Density": 0.185 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "81.23%", - "Error & Exception Exposure": "99.99%", - "Tech Debt Exposure": "66.13%", - "Testing Exposure": "2.54%", + "Cognitive Load Exposure": "9.43%", + "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": "100.0%", + "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", @@ -767924,61 +768551,20 @@ "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [ - { - "Function Name": "Anonymous_Block", - "Structural Impact": 9.8, - "Lines of Code (LOC)": 27, - "Control Flow Branches": 5, - "Input Parameters": 1, - "Control Flow Ratio": "100.0%", - "Start Line": 45, - "End Line": 71 - }, - { - "Function Name": "Anonymous_Block", - "Structural Impact": 5.9, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 3, - "Input Parameters": 1, - "Control Flow Ratio": "75.0%", - "Start Line": 17, - "End Line": 21 - }, - { - "Function Name": "Anonymous_Block", - "Structural Impact": 4.2, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 3, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 85, - "End Line": 87 - }, - { - "Function Name": "__global_context__", - "Structural Impact": 4.0, - "Lines of Code (LOC)": 52, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 1, - "End Line": 87 - } - ], + "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 11, - "Sequential Logic Declarations": 8, - "Function Parameters": 6, + "Control Flow Branches": 38, + "Sequential Logic Declarations": 63, + "Function Parameters": 213, "Function/Method Declarations": 0, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 32, + "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 13, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 75, + "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, @@ -767988,9 +768574,9 @@ "Global State Dependencies": 0, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, - "Collection Iterators / Comprehensions": 0, + "Collection Iterators / Comprehensions": 5, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 2, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -767999,31 +768585,31 @@ "Server-Side Rendering Contexts": 0, "Event Publishers / Emitters": 0, "Dependency Injection Constructs": 0, - "Preprocessor Macros": 0, + "Preprocessor Macros": 6, "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, - "Ad-hoc Print / Debug Statements": 6, + "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 1, + "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, "Bitwise Operations": 0, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 2, + "Resource Deallocation & Cleanup": 0, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 2, - "Structural Space Indentations": 27, + "Structural Tab Indentations": 194, + "Structural Space Indentations": 1, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, "Ipc Rpc Bridges": 0, "Feature Flags": 0, - "Serialization Parsing": 2, - "Regex Execution": 2, + "Serialization Parsing": 0, + "Regex Execution": 0, "Time Date Logic": 0, "Cloud LLM API Integrations": 0, "AI Orchestration Frameworks": 0, @@ -768033,15 +768619,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 31, - "Design Camel Case": 8, - "Design Snake Case": 1, + "Core Var Decl": 2, + "Design Camel Case": 0, + "Design Snake Case": 2, "Design Pascal Case": 0, - "Design Upper Case": 22, - "Design Short Vars": 4, + "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, @@ -768051,7 +768637,7 @@ "External Network & I/O Hooks": 0, "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, - "Commented-Out Executable Logic": 1, + "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, "Non-Standard / Steganographic Imports": 0, "Non-Standard Unicode / Homoglyphs": 0, @@ -768072,22 +768658,22 @@ }, "9. Extracted Dependencies": [] }, - "shell/sqlite/mkautoconfamal.sh": { + "assembly/freebsd_libc_string/string_memrchr.S": { "1. Artifact Identity": { - "Filename": "mkautoconfamal.sh", - "Path": "shell/sqlite/mkautoconfamal.sh", - "Language": "Shell", + "Filename": "string_memrchr.S", + "Path": "assembly/freebsd_libc_string/string_memrchr.S", + "Language": "Assembly", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", - "Doc Umbrella": 1.0, - "Folder Dominant Lang": "shell", - "Lock Tier": 0, - "Identity Proof": "Absolute Consensus (Ext + Shebang)" + "Indentation Style": "Tabs", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "assembly", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 6604.63, - "Y": 31.41, - "Z": -3411.77 + "X": 4920.41, + "Y": 141.1, + "Z": -3890.38 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -768096,68 +768682,47 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 97, - "Coding LOC": 53, - "Documentation LOC": 34, - "Structural Magnitude": 42.96, - "Control Flow Ratio": "11.9%", + "Total LOC": 159, + "Coding LOC": 111, + "Documentation LOC": 11, + "Structural Magnitude": 26.22, + "Control Flow Ratio": "57.9%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.599 + "Raw Cognitive Density": 0.405 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "96.76%", - "Error & Exception Exposure": "100.0%", - "Tech Debt Exposure": "85.14%", - "Testing Exposure": "2.47%", + "Cognitive Load Exposure": "20.13%", + "Error & Exception Exposure": "65.76%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "2.3%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "100.0%", - "Commented Logic Exposure": "11.18%", + "State Flux Exposure": "75.83%", + "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "11.92%", + "Documentation Exposure": "19.74%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [ - { - "Function Name": "Anonymous_Block", - "Structural Impact": 7.8, - "Lines of Code (LOC)": 14, - "Control Flow Branches": 4, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 32, - "End Line": 45 - }, - { - "Function Name": "__global_context__", - "Structural Impact": 6.1, - "Lines of Code (LOC)": 82, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "2.9%", - "Start Line": 1, - "End Line": 96 - } - ], + "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 5, - "Sequential Logic Declarations": 37, - "Function Parameters": 2, + "Control Flow Branches": 22, + "Sequential Logic Declarations": 16, + "Function Parameters": 94, "Function/Method Declarations": 0, "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 3, - "Type/Safety Bypasses": 47, + "Defensive Programming Constructs": 0, + "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 20, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 28, - "Commented-out Code (Dead Logic)": 1, + "State Mutations / Variable Reassignments": 9, + "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, @@ -768168,8 +768733,8 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 7, - "Module Dependencies (Imports)": 4, + "Metaprogramming & Reflection": 0, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -768182,26 +768747,26 @@ "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, - "Ad-hoc Print / Debug Statements": 4, + "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": 1, + "Bitwise Operations": 14, + "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": 8, + "Structural Tab Indentations": 93, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, "Ipc Rpc Bridges": 0, "Feature Flags": 0, - "Serialization Parsing": 3, - "Regex Execution": 5, + "Serialization Parsing": 0, + "Regex Execution": 0, "Time Date Logic": 0, "Cloud LLM API Integrations": 0, "AI Orchestration Frameworks": 0, @@ -768211,15 +768776,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 10, + "Core Var Decl": 0, "Design Camel Case": 0, - "Design Snake Case": 4, + "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 6, - "Design Short Vars": 4, + "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, @@ -768236,40 +768801,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)": 3, + "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": [ - "-name", - "-type", - "tree." - ] + "9. Extracted Dependencies": [] }, - "shell/sqlite/mkdist.sh": { + "assembly/freebsd_libc_string/string_memset.S": { "1. Artifact Identity": { - "Filename": "mkdist.sh", - "Path": "shell/sqlite/mkdist.sh", - "Language": "Shell", + "Filename": "string_memset.S", + "Path": "assembly/freebsd_libc_string/string_memset.S", + "Language": "Assembly", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", - "Doc Umbrella": 1.0, - "Folder Dominant Lang": "shell", - "Lock Tier": 0, - "Identity Proof": "Absolute Consensus (Ext + Shebang)" + "Indentation Style": "Tabs", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "assembly", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 6388.25, - "Y": 6.53, - "Z": -3748.48 + "X": 5534.96, + "Y": 125.42, + "Z": -3411.32 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -768278,169 +768839,48 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 211, - "Coding LOC": 142, - "Documentation LOC": 35, - "Structural Magnitude": 163.74, - "Control Flow Ratio": "83.6%", + "Total LOC": 146, + "Coding LOC": 102, + "Documentation LOC": 34, + "Structural Magnitude": 17.04, + "Control Flow Ratio": "40.8%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.778 + "Raw Cognitive Density": 0.245 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "94.23%", - "Error & Exception Exposure": "99.77%", - "Tech Debt Exposure": "28.59%", - "Testing Exposure": "80.0%", + "Cognitive Load Exposure": "11.72%", + "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": "100.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.03%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [ - { - "Function Name": "__global_context__", - "Structural Impact": 26.9, - "Lines of Code (LOC)": 139, - "Control Flow Branches": 19, - "Input Parameters": 0, - "Control Flow Ratio": "73.1%", - "Start Line": 1, - "End Line": 210 - }, - { - "Function Name": "Anonymous_Block", - "Structural Impact": 15.6, - "Lines of Code (LOC)": 30, - "Control Flow Branches": 9, - "Input Parameters": 1, - "Control Flow Ratio": "81.8%", - "Start Line": 39, - "End Line": 68 - }, - { - "Function Name": "Anonymous_Block", - "Structural Impact": 8.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 7, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 72, - "End Line": 75 - }, - { - "Function Name": "Anonymous_Block", - "Structural Impact": 6.5, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 5, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 102, - "End Line": 110 - }, - { - "Function Name": "Anonymous_Block", - "Structural Impact": 6.2, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 5, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 158, - "End Line": 160 - }, - { - "Function Name": "Anonymous_Block", - "Structural Impact": 5.2, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 4, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 185, - "End Line": 187 - }, - { - "Function Name": "Anonymous_Block", - "Structural Impact": 5.2, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 4, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 189, - "End Line": 191 - }, - { - "Function Name": "Anonymous_Block", - "Structural Impact": 4.2, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 3, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 177, - "End Line": 179 - }, - { - "Function Name": "Anonymous_Block", - "Structural Impact": 4.2, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 3, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 181, - "End Line": 183 - }, - { - "Function Name": "fcp", - "Structural Impact": 3.0, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 162, - "End Line": 165 - }, - { - "Function Name": "scc", - "Structural Impact": 3.0, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "100.0%", - "Start Line": 167, - "End Line": 169 - }, - { - "Function Name": "die", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 25, - "End Line": 30 - } - ], + "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 61, - "Sequential Logic Declarations": 12, - "Function Parameters": 5, - "Function/Method Declarations": 3, + "Control Flow Branches": 20, + "Sequential Logic Declarations": 29, + "Function Parameters": 64, + "Function/Method Declarations": 0, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 46, + "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 33, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 71, + "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 1, + "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, @@ -768448,9 +768888,9 @@ "Global State Dependencies": 0, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, - "Collection Iterators / Comprehensions": 0, + "Collection Iterators / Comprehensions": 2, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 16, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -768459,32 +768899,32 @@ "Server-Side Rendering Contexts": 0, "Event Publishers / Emitters": 0, "Dependency Injection Constructs": 0, - "Preprocessor Macros": 0, + "Preprocessor Macros": 2, "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, - "Ad-hoc Print / Debug Statements": 2, + "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 2, + "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, "Bitwise Operations": 0, - "Thread Synchronization Locks": 2, + "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": 72, + "Structural Tab Indentations": 83, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, "Ipc Rpc Bridges": 0, "Feature Flags": 0, - "Serialization Parsing": 1, - "Regex Execution": 1, - "Time Date Logic": 1, + "Serialization Parsing": 0, + "Regex Execution": 0, + "Time Date Logic": 0, "Cloud LLM API Integrations": 0, "AI Orchestration Frameworks": 0, "Vector Databases (RAG)": 0, @@ -768493,15 +768933,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 30, - "Design Camel Case": 16, - "Design Snake Case": 14, + "Core Var Decl": 1, + "Design Camel Case": 0, + "Design Snake Case": 1, "Design Pascal Case": 0, "Design Upper Case": 0, - "Design Short Vars": 5, + "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, @@ -768511,7 +768951,7 @@ "External Network & I/O Hooks": 0, "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, - "Commented-Out Executable Logic": 1, + "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, "Non-Standard / Steganographic Imports": 0, "Non-Standard Unicode / Homoglyphs": 0, @@ -768532,22 +768972,22 @@ }, "9. Extracted Dependencies": [] }, - "shell/sqlite/run-wordcount.sh": { + "assembly/freebsd_libc_string/string_stpcpy.S": { "1. Artifact Identity": { - "Filename": "run-wordcount.sh", - "Path": "shell/sqlite/run-wordcount.sh", - "Language": "Shell", + "Filename": "string_stpcpy.S", + "Path": "assembly/freebsd_libc_string/string_stpcpy.S", + "Language": "Assembly", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", - "Doc Umbrella": 1.0, - "Folder Dominant Lang": "shell", - "Lock Tier": 0, - "Identity Proof": "Absolute Consensus (Ext + Shebang)" + "Indentation Style": "Tabs", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "assembly", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 6419.42, - "Y": -23.42, - "Z": -4402.81 + "X": 5159.99, + "Y": 141.01, + "Z": -3096.32 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -768556,137 +768996,46 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 79, - "Coding LOC": 59, - "Documentation LOC": 10, - "Structural Magnitude": 49.58, - "Control Flow Ratio": "75.0%", + "Total LOC": 238, + "Coding LOC": 154, + "Documentation LOC": 47, + "Structural Magnitude": 21.08, + "Control Flow Ratio": "35.6%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.585 + "Raw Cognitive Density": 0.24 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "34.05%", - "Error & Exception Exposure": "91.62%", - "Tech Debt Exposure": "100.0%", - "Testing Exposure": "2.94%", + "Cognitive Load Exposure": "11.52%", + "Error & Exception Exposure": "58.33%", + "Tech Debt Exposure": "20.36%", + "Testing Exposure": "2.3%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", + "State Flux Exposure": "21.07%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "11.92%", + "Documentation Exposure": "12.35%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [ - { - "Function Name": "__global_context__", - "Structural Impact": 6.2, - "Lines of Code (LOC)": 40, - "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "16.7%", - "Start Line": 1, - "End Line": 78 - }, - { - "Function Name": "Anonymous_Block", - "Structural Impact": 5.8, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 3, - "Input Parameters": 1, - "Control Flow Ratio": "75.0%", - "Start Line": 9, - "End Line": 11 - }, - { - "Function Name": "Anonymous_Block", - "Structural Impact": 5.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 4, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 20, - "End Line": 24 - }, - { - "Function Name": "Anonymous_Block", - "Structural Impact": 5.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 4, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 28, - "End Line": 32 - }, - { - "Function Name": "Anonymous_Block", - "Structural Impact": 5.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 4, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 35, - "End Line": 39 - }, - { - "Function Name": "Anonymous_Block", - "Structural Impact": 5.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 4, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 43, - "End Line": 47 - }, - { - "Function Name": "Anonymous_Block", - "Structural Impact": 5.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 4, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 51, - "End Line": 55 - }, - { - "Function Name": "Anonymous_Block", - "Structural Impact": 5.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 4, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 60, - "End Line": 64 - }, - { - "Function Name": "Anonymous_Block", - "Structural Impact": 5.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 4, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 69, - "End Line": 73 - } - ], + "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 33, - "Sequential Logic Declarations": 11, - "Function Parameters": 11, + "Control Flow Branches": 26, + "Sequential Logic Declarations": 47, + "Function Parameters": 160, "Function/Method Declarations": 0, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 8, - "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 17, + "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, + "State Mutations / Variable Reassignments": 3, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, @@ -768701,30 +769050,30 @@ "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, - "Planned Work (TODOs)": 0, + "Planned Work (TODOs)": 1, "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, + "Preprocessor Macros": 1, "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, - "Ad-hoc Print / Debug Statements": 15, + "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 1, + "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 0, + "Bitwise Operations": 3, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 7, + "Resource Deallocation & Cleanup": 0, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, - "Structural Space Indentations": 35, + "Structural Tab Indentations": 135, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -768748,8 +769097,8 @@ "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, - "Duplicate Logic": 7, - "Orphaned Logic": 1, + "Duplicate Logic": 0, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -768766,38 +769115,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)": 1, + "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": [ - "text" - ] + "9. Extracted Dependencies": [] }, - "shell/sqlite/split-speedtest1-script.sh": { + "assembly/freebsd_libc_string/string_stpncpy.S": { "1. Artifact Identity": { - "Filename": "split-speedtest1-script.sh", - "Path": "shell/sqlite/split-speedtest1-script.sh", - "Language": "Shell", + "Filename": "string_stpncpy.S", + "Path": "assembly/freebsd_libc_string/string_stpncpy.S", + "Language": "Assembly", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", - "Doc Umbrella": 1.0, - "Folder Dominant Lang": "shell", - "Lock Tier": 0, - "Identity Proof": "Absolute Consensus (Ext + Shebang)" + "Indentation Style": "Tabs", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "assembly", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 5869.46, - "Y": 32.22, - "Z": -4103.15 + "X": 5468.97, + "Y": 93.23, + "Z": -3249.98 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -768806,78 +769153,47 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 18, - "Coding LOC": 14, - "Documentation LOC": 3, - "Structural Magnitude": 31.58, - "Control Flow Ratio": "86.7%", + "Total LOC": 284, + "Coding LOC": 188, + "Documentation LOC": 47, + "Structural Magnitude": 18.76, + "Control Flow Ratio": "27.4%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 2.357 + "Raw Cognitive Density": 0.191 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.0%", - "Error & Exception Exposure": "99.81%", - "Tech Debt Exposure": "100.0%", - "Testing Exposure": "3.22%", + "Cognitive Load Exposure": "9.67%", + "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": "100.0%", - "Commented Logic Exposure": "23.15%", - "Specification Exposure": "93.33%", + "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.13%", + "Documentation Exposure": "12.28%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [ - { - "Function Name": "__global_context__", - "Structural Impact": 8.9, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 5, - "Input Parameters": 1, - "Control Flow Ratio": "83.3%", - "Start Line": 1, - "End Line": 17 - }, - { - "Function Name": "Anonymous_Block", - "Structural Impact": 6.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 5, - "Input Parameters": 0, - "Control Flow Ratio": "83.3%", - "Start Line": 6, - "End Line": 9 - }, - { - "Function Name": "Anonymous_Block", - "Structural Impact": 4.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 3, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 13, - "End Line": 17 - } - ], + "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 13, - "Sequential Logic Declarations": 2, - "Function Parameters": 1, + "Control Flow Branches": 31, + "Sequential Logic Declarations": 82, + "Function Parameters": 207, "Function/Method Declarations": 0, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 1, - "Type/Safety Bypasses": 9, + "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 4, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 12, - "Commented-out Code (Dead Logic)": 1, + "State Mutations / Variable Reassignments": 0, + "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, @@ -768888,7 +769204,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 3, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -768897,31 +769213,31 @@ "Server-Side Rendering Contexts": 0, "Event Publishers / Emitters": 0, "Dependency Injection Constructs": 0, - "Preprocessor Macros": 0, + "Preprocessor Macros": 1, "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, - "Ad-hoc Print / Debug Statements": 3, + "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 1, + "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 0, + "Bitwise Operations": 9, "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": 5, + "Structural Tab Indentations": 164, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, "Ipc Rpc Bridges": 0, "Feature Flags": 0, - "Serialization Parsing": 1, - "Regex Execution": 2, + "Serialization Parsing": 0, + "Regex Execution": 0, "Time Date Logic": 0, "Cloud LLM API Integrations": 0, "AI Orchestration Frameworks": 0, @@ -768931,15 +769247,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 5, + "Core Var Decl": 0, "Design Camel Case": 0, - "Design Snake Case": 5, + "Design Snake Case": 0, "Design Pascal Case": 0, "Design Upper Case": 0, - "Design Short Vars": 1, + "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, @@ -768949,7 +769265,7 @@ "External Network & I/O Hooks": 0, "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, - "Commented-Out Executable Logic": 1, + "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, "Non-Standard / Steganographic Imports": 0, "Non-Standard Unicode / Homoglyphs": 0, @@ -768970,22 +769286,22 @@ }, "9. Extracted Dependencies": [] }, - "shell/sqlite/symbols-mingw.sh": { + "assembly/freebsd_libc_string/string_strcat.S": { "1. Artifact Identity": { - "Filename": "symbols-mingw.sh", - "Path": "shell/sqlite/symbols-mingw.sh", - "Language": "Shell", + "Filename": "string_strcat.S", + "Path": "assembly/freebsd_libc_string/string_strcat.S", + "Language": "Assembly", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", - "Doc Umbrella": 1.0, - "Folder Dominant Lang": "shell", - "Lock Tier": 0, - "Identity Proof": "Absolute Consensus (Ext + Shebang)" + "Indentation Style": "Tabs", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "assembly", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 6634.82, - "Y": 20.91, - "Z": -4501.84 + "X": 5066.92, + "Y": 115.93, + "Z": -2626.13 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -768994,22 +769310,22 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 34, - "Coding LOC": 25, - "Documentation LOC": 4, - "Structural Magnitude": 4.2, - "Control Flow Ratio": "16.7%", + "Total LOC": 204, + "Coding LOC": 136, + "Documentation LOC": 38, + "Structural Magnitude": 17.72, + "Control Flow Ratio": "59.3%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.24 + "Raw Cognitive Density": 0.294 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "11.51%", + "Cognitive Load Exposure": "13.9%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "99.85%", - "Testing Exposure": "2.4%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "2.3%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -769017,32 +769333,21 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "11.92%", + "Documentation Exposure": "13.69%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [ - { - "Function Name": "__global_context__", - "Structural Impact": 3.7, - "Lines of Code (LOC)": 33, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "16.7%", - "Start Line": 1, - "End Line": 33 - } - ], + "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 1, - "Sequential Logic Declarations": 5, - "Function Parameters": 0, + "Control Flow Branches": 35, + "Sequential Logic Declarations": 24, + "Function Parameters": 99, "Function/Method Declarations": 0, "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": 10, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -769070,7 +769375,7 @@ "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, - "Ad-hoc Print / Debug Statements": 4, + "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, @@ -769081,15 +769386,15 @@ "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, - "Structural Space Indentations": 12, + "Structural Tab Indentations": 114, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, "Ipc Rpc Bridges": 0, "Feature Flags": 0, "Serialization Parsing": 0, - "Regex Execution": 5, + "Regex Execution": 0, "Time Date Logic": 0, "Cloud LLM API Integrations": 0, "AI Orchestration Frameworks": 0, @@ -769107,7 +769412,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, @@ -769138,22 +769443,22 @@ }, "9. Extracted Dependencies": [] }, - "shell/sqlite/symbols.sh": { + "assembly/freebsd_libc_string/string_strchrnul.S": { "1. Artifact Identity": { - "Filename": "symbols.sh", - "Path": "shell/sqlite/symbols.sh", - "Language": "Shell", + "Filename": "string_strchrnul.S", + "Path": "assembly/freebsd_libc_string/string_strchrnul.S", + "Language": "Assembly", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", - "Doc Umbrella": 1.0, - "Folder Dominant Lang": "shell", - "Lock Tier": 0, - "Identity Proof": "Absolute Consensus (Ext + Shebang)" + "Indentation Style": "Tabs", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "assembly", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 5837.51, - "Y": 9.6, - "Z": -3545.13 + "X": 4265.06, + "Y": 95.4, + "Z": -3801.43 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -769162,56 +769467,45 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 37, - "Coding LOC": 28, - "Documentation LOC": 4, - "Structural Magnitude": 4.36, - "Control Flow Ratio": "0.0%", + "Total LOC": 171, + "Coding LOC": 108, + "Documentation LOC": 45, + "Structural Magnitude": 17.16, + "Control Flow Ratio": "22.9%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.179 + "Raw Cognitive Density": 0.12 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "9.23%", + "Cognitive Load Exposure": "7.46%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.37%", - "API Exposure": "3.81%", + "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%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "11.92%", + "Documentation Exposure": "12.84%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [ - { - "Function Name": "__global_context__", - "Structural Impact": 2.8, - "Lines of Code (LOC)": 36, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 1, - "End Line": 36 - } - ], + "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 11, - "Function Parameters": 0, + "Control Flow Branches": 8, + "Sequential Logic Declarations": 27, + "Function Parameters": 110, "Function/Method Declarations": 0, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 15, - "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, @@ -769233,31 +769527,31 @@ "Server-Side Rendering Contexts": 0, "Event Publishers / Emitters": 0, "Dependency Injection Constructs": 0, - "Preprocessor Macros": 0, + "Preprocessor Macros": 1, "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, - "Ad-hoc Print / Debug Statements": 4, + "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 0, + "Bitwise Operations": 32, "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": 15, + "Structural Tab Indentations": 96, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, "Ipc Rpc Bridges": 0, "Feature Flags": 0, "Serialization Parsing": 0, - "Regex Execution": 5, + "Regex Execution": 0, "Time Date Logic": 0, "Cloud LLM API Integrations": 0, "AI Orchestration Frameworks": 0, @@ -769306,22 +769600,22 @@ }, "9. Extracted Dependencies": [] }, - "shell/sqlite/tclConfigShToMake.sh": { + "assembly/freebsd_libc_string/string_strcmp.S": { "1. Artifact Identity": { - "Filename": "tclConfigShToMake.sh", - "Path": "shell/sqlite/tclConfigShToMake.sh", - "Language": "Shell", + "Filename": "string_strcmp.S", + "Path": "assembly/freebsd_libc_string/string_strcmp.S", + "Language": "Assembly", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", - "Doc Umbrella": 1.0, - "Folder Dominant Lang": "shell", - "Lock Tier": 0, - "Identity Proof": "Absolute Consensus (Ext + Shebang)" + "Indentation Style": "Tabs", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "assembly", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 6831.28, - "Y": 17.3, - "Z": -4291.66 + "X": 5267.64, + "Y": 100.94, + "Z": -3739.08 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -769330,25 +769624,25 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 32, - "Coding LOC": 17, - "Documentation LOC": 13, - "Structural Magnitude": 24.34, - "Control Flow Ratio": "80.0%", + "Total LOC": 360, + "Coding LOC": 247, + "Documentation LOC": 79, + "Structural Magnitude": 19.94, + "Control Flow Ratio": "35.5%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.279 + "Raw Cognitive Density": 0.154 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "89.26%", - "Error & Exception Exposure": "99.23%", - "Tech Debt Exposure": "100.0%", - "Testing Exposure": "2.69%", + "Cognitive Load Exposure": "8.44%", + "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": "100.0%", + "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", @@ -769356,41 +769650,20 @@ "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [ - { - "Function Name": "Anonymous_Block", - "Structural Impact": 7.5, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 4, - "Input Parameters": 1, - "Control Flow Ratio": "80.0%", - "Start Line": 15, - "End Line": 23 - }, - { - "Function Name": "__global_context__", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 22, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 1, - "End Line": 31 - } - ], + "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 4, - "Sequential Logic Declarations": 1, - "Function Parameters": 2, + "Control Flow Branches": 33, + "Sequential Logic Declarations": 60, + "Function Parameters": 310, "Function/Method Declarations": 0, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 5, + "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": 15, + "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, @@ -769403,7 +769676,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, @@ -769420,15 +769693,15 @@ "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 0, + "Bitwise Operations": 26, "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": 6, + "Structural Tab Indentations": 224, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -769445,15 +769718,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 11, + "Core Var Decl": 0, "Design Camel Case": 0, - "Design Snake Case": 1, + "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 10, - "Design Short Vars": 1, + "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, @@ -769477,31 +769750,29 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 1, + "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": [ - "$1" - ] + "9. Extracted Dependencies": [] }, - "shell/sqlite/time-wordcount.sh": { + "assembly/freebsd_libc_string/string_strcspn.S": { "1. Artifact Identity": { - "Filename": "time-wordcount.sh", - "Path": "shell/sqlite/time-wordcount.sh", - "Language": "Shell", + "Filename": "string_strcspn.S", + "Path": "assembly/freebsd_libc_string/string_strcspn.S", + "Language": "Assembly", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", - "Doc Umbrella": 1.0, - "Folder Dominant Lang": "shell", - "Lock Tier": 0, - "Identity Proof": "Absolute Consensus (Ext + Shebang)" + "Indentation Style": "Tabs", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "assembly", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 6130.28, - "Y": -21.19, - "Z": -4215.3 + "X": 4847.52, + "Y": 155.89, + "Z": -3245.3 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -769510,25 +769781,25 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 35, - "Coding LOC": 21, - "Documentation LOC": 10, - "Structural Magnitude": 12.02, - "Control Flow Ratio": "38.5%", + "Total LOC": 397, + "Coding LOC": 270, + "Documentation LOC": 69, + "Structural Magnitude": 32.4, + "Control Flow Ratio": "37.5%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.476 + "Raw Cognitive Density": 0.285 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "25.06%", - "Error & Exception Exposure": "80.64%", - "Tech Debt Exposure": "99.97%", - "Testing Exposure": "2.71%", + "Cognitive Load Exposure": "13.48%", + "Error & Exception Exposure": "51.71%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "2.3%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", + "State Flux Exposure": "42.01%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", @@ -769536,41 +769807,20 @@ "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [ - { - "Function Name": "Anonymous_Block", - "Structural Impact": 5.8, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 3, - "Input Parameters": 1, - "Control Flow Ratio": "75.0%", - "Start Line": 9, - "End Line": 11 - }, - { - "Function Name": "__global_context__", - "Structural Impact": 5.8, - "Lines of Code (LOC)": 31, - "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "22.2%", - "Start Line": 1, - "End Line": 34 - } - ], + "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 5, - "Sequential Logic Declarations": 8, - "Function Parameters": 11, + "Control Flow Branches": 48, + "Sequential Logic Declarations": 80, + "Function Parameters": 217, "Function/Method Declarations": 0, "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 1, + "Defensive Programming Constructs": 11, + "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, + "State Mutations / Variable Reassignments": 12, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, @@ -769591,23 +769841,23 @@ "Server-Side Rendering Contexts": 0, "Event Publishers / Emitters": 0, "Dependency Injection Constructs": 0, - "Preprocessor Macros": 0, + "Preprocessor Macros": 1, "Pointer Arithmetic & Addressing": 0, "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": 1, + "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 0, + "Bitwise Operations": 9, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 8, + "Resource Deallocation & Cleanup": 0, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, + "Structural Tab Indentations": 230, "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, @@ -769633,7 +769883,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, @@ -769657,31 +769907,29 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 1, + "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": [ - "text" - ] + "9. Extracted Dependencies": [] }, - "shell/sqlite/warnings-clang.sh": { + "assembly/freebsd_libc_string/string_strlcpy.S": { "1. Artifact Identity": { - "Filename": "warnings-clang.sh", - "Path": "shell/sqlite/warnings-clang.sh", - "Language": "Shell", + "Filename": "string_strlcpy.S", + "Path": "assembly/freebsd_libc_string/string_strlcpy.S", + "Language": "Assembly", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", - "Doc Umbrella": 1.0, - "Folder Dominant Lang": "shell", + "Indentation Style": "Tabs", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "assembly", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .sh)" + "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 6583.42, - "Y": -12.11, - "Z": -3130.1 + "X": 4648.3, + "Y": 128.28, + "Z": -4062.25 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -769690,58 +769938,47 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 15, - "Coding LOC": 9, - "Documentation LOC": 5, - "Structural Magnitude": 1.88, - "Control Flow Ratio": "0.0%", + "Total LOC": 282, + "Coding LOC": 201, + "Documentation LOC": 40, + "Structural Magnitude": 19.02, + "Control Flow Ratio": "27.4%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.556 + "Raw Cognitive Density": 0.179 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.0%", + "Cognitive Load Exposure": "9.25%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", - "Testing Exposure": "1.46%", + "Tech Debt Exposure": "0.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": "60.0%", + "Commented Logic Exposure": "6.41%", + "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "7.15%", + "Documentation Exposure": "12.94%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [ - { - "Function Name": "__global_context__", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 14, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 1, - "End Line": 14 - } - ], + "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 3, - "Function Parameters": 0, + "Control Flow Branches": 31, + "Sequential Logic Declarations": 82, + "Function Parameters": 221, "Function/Method Declarations": 0, "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": 6, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, "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, @@ -769761,31 +769998,31 @@ "Server-Side Rendering Contexts": 0, "Event Publishers / Emitters": 0, "Dependency Injection Constructs": 0, - "Preprocessor Macros": 0, + "Preprocessor Macros": 1, "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, - "Ad-hoc Print / Debug Statements": 2, + "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 0, + "Bitwise Operations": 5, "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": 3, + "Structural Tab Indentations": 174, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, "Ipc Rpc Bridges": 0, "Feature Flags": 0, "Serialization Parsing": 0, - "Regex Execution": 2, + "Regex Execution": 0, "Time Date Logic": 0, "Cloud LLM API Integrations": 0, "AI Orchestration Frameworks": 0, @@ -769795,15 +770032,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": 0, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 1, + "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, @@ -769833,88 +770070,63 @@ "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [] - } - } - }, - "yacc/freebsd": { - "Directory Group Magnitude": 451.44, - "File Count": 3, - "Ecosystem Fingerprint (Archetypes)": { - "Unclassified": "66.7%", - "Static: Literature & Documentation": "33.3%" - }, - "Average Risk Exposures": { - "Cognitive Load Exposure": "45.35%", - "Error & Exception Exposure": "59.3%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "53.33%", - "API Exposure": "0.12%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "66.67%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "66.67%", - "Instability Exposure": "33.33%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "8.35%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "Files": { - "yacc/freebsd/COPYRIGHT": { + }, + "assembly/freebsd_libc_string/string_strlen.S": { "1. Artifact Identity": { - "Filename": "COPYRIGHT", - "Path": "yacc/freebsd/COPYRIGHT", - "Language": "Plaintext", + "Filename": "string_strlen.S", + "Path": "assembly/freebsd_libc_string/string_strlen.S", + "Language": "Assembly", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Tabs", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "yacc", - "Lock Tier": 1, - "Identity Proof": "Metadata Anchor (COPYRIGHT)" + "Folder Dominant Lang": "assembly", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 3964.18, - "Y": 165.09, - "Z": -10505.84 + "X": 4424.12, + "Y": 138.01, + "Z": -2933.13 }, "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": 125, - "Coding LOC": 0, - "Documentation LOC": 100, - "Structural Magnitude": 2.5, - "Control Flow Ratio": "0.0%", + "Total LOC": 132, + "Coding LOC": 73, + "Documentation LOC": 43, + "Structural Magnitude": 16.46, + "Control Flow Ratio": "42.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.192 }, "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": "9.68%", + "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%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "100.0%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "13.7%", + "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 0, - "Function Parameters": 0, + "Control Flow Branches": 9, + "Sequential Logic Declarations": 12, + "Function Parameters": 59, "Function/Method Declarations": 0, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, @@ -769952,14 +770164,14 @@ "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 0, + "Bitwise Operations": 3, "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 Tab Indentations": 61, "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, @@ -770016,22 +770228,22 @@ }, "9. Extracted Dependencies": [] }, - "yacc/freebsd/config.y": { + "assembly/freebsd_libc_string/string_strncmp.S": { "1. Artifact Identity": { - "Filename": "config.y", - "Path": "yacc/freebsd/config.y", - "Language": "Yacc", - "Architect": "(c) 1988, 1993", + "Filename": "string_strncmp.S", + "Path": "assembly/freebsd_libc_string/string_strncmp.S", + "Language": "Assembly", + "Architect": "Unknown Architect", "Indentation Style": "Tabs", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "yacc", + "Folder Dominant Lang": "assembly", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Shebang)" + "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 3948.25, - "Y": 184.98, - "Z": -10129.65 + "X": 4679.46, + "Y": 121.74, + "Z": -3077.58 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -770040,247 +770252,46 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 504, - "Coding LOC": 378, - "Documentation LOC": 64, - "Structural Magnitude": 251.76, - "Control Flow Ratio": "61.8%", + "Total LOC": 489, + "Coding LOC": 371, + "Documentation LOC": 69, + "Structural Magnitude": 31.42, + "Control Flow Ratio": "37.7%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.226 + "Raw Cognitive Density": 0.218 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "60.92%", - "Error & Exception Exposure": "82.21%", + "Cognitive Load Exposure": "10.65%", + "Error & Exception Exposure": "55.45%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "80.0%", - "API Exposure": "0.37%", + "Testing Exposure": "2.3%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "100.0%", + "State Flux Exposure": "24.42%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "13.14%", + "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [ - { - "Function Name": "NoDevice", - "Structural Impact": 29.7, - "Lines of Code (LOC)": 169, - "Control Flow Branches": 14, - "Input Parameters": 1, - "Control Flow Ratio": "60.9%", - "Start Line": 297, - "End Line": 465 - }, - { - "Function Name": "Config_spec", - "Structural Impact": 28.2, - "Lines of Code (LOC)": 55, - "Control Flow Branches": 17, - "Input Parameters": 1, - "Control Flow Ratio": "100.0%", - "Start Line": 152, - "End Line": 206 - }, - { - "Function Name": "Spec", - "Structural Impact": 16.8, - "Lines of Code (LOC)": 25, - "Control Flow Branches": 10, - "Input Parameters": 1, - "Control Flow Ratio": "100.0%", - "Start Line": 126, - "End Line": 150 - }, - { - "Function Name": "Mkoption", - "Structural Impact": 5.9, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 3, - "Input Parameters": 1, - "Control Flow Ratio": "100.0%", - "Start Line": 262, - "End Line": 266 - }, - { - "Function Name": "Option", - "Structural Impact": 4.7, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "100.0%", - "Start Line": 227, - "End Line": 236 - }, - { - "Function Name": "Opt_value", - "Structural Impact": 3.2, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "100.0%", - "Start Line": 243, - "End Line": 250 - }, - { - "Function Name": "Many_specs", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 120, - "End Line": 124 - }, - { - "Function Name": "System_parameter_list", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 211, - "End Line": 214 - }, - { - "Function Name": "Opt_list", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 216, - "End Line": 220 - }, - { - "Function Name": "NoOpt_list", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 222, - "End Line": 226 - }, - { - "Function Name": "Mkopt_list", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 256, - "End Line": 260 - }, - { - "Function Name": "Device_spec", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 272, - "End Line": 276 - }, - { - "Function Name": "Dev_list", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 278, - "End Line": 282 - }, - { - "Function Name": "NoDev_list", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 284, - "End Line": 288 - }, - { - "Function Name": "Device", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 290, - "End Line": 295 - }, - { - "Function Name": "NoOption", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 238, - "End Line": 241 - }, - { - "Function Name": "Save_id", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 252, - "End Line": 254 - }, - { - "Function Name": "Dev", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 268, - "End Line": 270 - }, - { - "Function Name": "System_id", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 208, - "End Line": 209 - }, - { - "Function Name": "Configuration", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 116, - "End Line": 118 - } - ], + "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 63, - "Sequential Logic Declarations": 39, - "Function Parameters": 43, - "Function/Method Declarations": 20, + "Control Flow Branches": 58, + "Sequential Logic Declarations": 96, + "Function Parameters": 451, + "Function/Method Declarations": 0, "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 1, + "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 2, - "Exposed API / Public Exports": 2, - "State Mutations / Variable Reassignments": 127, + "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, @@ -770289,35 +770300,35 @@ "Closures and Anonymous Functions": 0, "Global State Dependencies": 0, "Decorators and Annotations": 0, - "Generic Type Abstractions": 7, + "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 4, - "Module Dependencies (Imports)": 6, - "Authorship Metadata": 3, + "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": 1, - "Pointer Arithmetic & Addressing": 45, - "Manual Memory Allocation": 3, + "Preprocessor Macros": 0, + "Pointer Arithmetic & Addressing": 0, + "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, - "Ad-hoc Print / Debug Statements": 4, - "Explicit Type Casts": 1, + "Ad-hoc Print / Debug Statements": 0, + "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 54, + "Bitwise Operations": 33, "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 4, - "Resource Deallocation & Cleanup": 8, - "Private / Encapsulated Scopes": 17, + "Immutable Data Declarations": 0, + "Resource Deallocation & Cleanup": 0, + "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 229, + "Structural Tab Indentations": 337, "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, @@ -770335,12 +770346,12 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 20, + "Core Var Decl": 0, "Design Camel Case": 0, - "Design Snake Case": 20, + "Design Snake Case": 0, "Design Pascal Case": 0, "Design Upper Case": 0, - "Design Short Vars": 5, + "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, "Orphaned Logic": 0, @@ -770374,141 +770385,70 @@ }, "9. Extracted Dependencies": [] }, - "yacc/freebsd/jailparse.y": { + "assembly/freebsd_libc_string/COPYRIGHT": { "1. Artifact Identity": { - "Filename": "jailparse.y", - "Path": "yacc/freebsd/jailparse.y", - "Language": "Yacc", - "Architect": "(c) 2011 James Gritton", - "Indentation Style": "Tabs", + "Filename": "COPYRIGHT", + "Path": "assembly/freebsd_libc_string/COPYRIGHT", + "Language": "Plaintext", + "Architect": "Unknown Architect", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "yacc", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Shebang)" + "Folder Dominant Lang": "assembly", + "Lock Tier": 1, + "Identity Proof": "Metadata Anchor (COPYRIGHT)" }, "2. Topological Coordinates": { - "X": 3727.64, - "Y": 160.01, - "Z": -9796.08 + "X": 5283.55, + "Y": 134.5, + "Z": -2759.12 }, "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": 277, - "Coding LOC": 199, - "Documentation LOC": 50, - "Structural Magnitude": 197.18, - "Control Flow Ratio": "81.1%", + "Total LOC": 125, + "Coding LOC": 0, + "Documentation LOC": 100, + "Structural Magnitude": 2.5, + "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.026 + "Raw Cognitive Density": 0.0 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "75.13%", - "Error & Exception Exposure": "95.7%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "80.0%", - "API Exposure": "0.0%", - "Concurrency 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": "11.92%", - "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": "string", - "Structural Impact": 25.7, - "Lines of Code (LOC)": 89, - "Control Flow Branches": 14, - "Input Parameters": 1, - "Control Flow Ratio": "87.5%", - "Start Line": 187, - "End Line": 275 - }, - { - "Function Name": "param", - "Structural Impact": 11.2, - "Lines of Code (LOC)": 26, - "Control Flow Branches": 6, - "Input Parameters": 1, - "Control Flow Ratio": "100.0%", - "Start Line": 123, - "End Line": 148 - }, - { - "Function Name": "conf", - "Structural Impact": 10.8, - "Lines of Code (LOC)": 19, - "Control Flow Branches": 6, - "Input Parameters": 1, - "Control Flow Ratio": "100.0%", - "Start Line": 70, - "End Line": 88 - }, - { - "Function Name": "jail_name", - "Structural Impact": 5.3, - "Lines of Code (LOC)": 22, - "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "100.0%", - "Start Line": 96, - "End Line": 117 - }, - { - "Function Name": "name", - "Structural Impact": 3.6, - "Lines of Code (LOC)": 15, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "100.0%", - "Start Line": 154, - "End Line": 168 - }, - { - "Function Name": "value", - "Structural Impact": 3.4, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "100.0%", - "Start Line": 170, - "End Line": 181 - }, - { - "Function Name": "jail", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 90, - "End Line": 94 - } - ], + "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 30, - "Sequential Logic Declarations": 7, - "Function Parameters": 71, - "Function/Method Declarations": 7, + "Control Flow Branches": 0, + "Sequential Logic Declarations": 0, + "Function Parameters": 0, + "Function/Method Declarations": 0, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 3, + "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 132, + "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, @@ -770517,20 +770457,20 @@ "Closures and Anonymous Functions": 0, "Global State Dependencies": 0, "Decorators and Annotations": 0, - "Generic Type Abstractions": 4, + "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 4, - "Module Dependencies (Imports)": 5, - "Authorship Metadata": 3, + "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": 2, - "Pointer Arithmetic & Addressing": 55, + "Preprocessor Macros": 0, + "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, @@ -770538,14 +770478,14 @@ "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 29, + "Bitwise Operations": 0, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 6, - "Private / Encapsulated Scopes": 4, + "Resource Deallocation & Cleanup": 0, + "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 151, + "Structural Tab Indentations": 0, "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, @@ -770563,12 +770503,12 @@ "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": 8, + "Design Snake Case": 0, "Design Pascal Case": 0, "Design Upper Case": 0, - "Design Short Vars": 3, + "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, "Orphaned Logic": 0, @@ -779703,7 +779643,7 @@ "Cognitive Load Exposure": "15.45%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "99.97%", - "Testing Exposure": "2.54%", + "Testing Exposure": "2.53%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -787837,7 +787777,7 @@ "Cognitive Load Exposure": "20.45%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.5%", + "Testing Exposure": "2.49%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -814992,9 +814932,9 @@ "Identity Proof": "Metadata Anchor (COPYING)" }, "2. Topological Coordinates": { - "X": -2342.06, + "X": -2341.99, "Y": -8.88, - "Z": -7213.94 + "Z": -7213.65 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -815149,9 +815089,9 @@ "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": -1794.29, + "X": -1794.21, "Y": 10.01, - "Z": -7748.61 + "Z": -7748.32 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -815407,9 +815347,9 @@ "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": -1599.4, + "X": -1599.32, "Y": 32.75, - "Z": -7729.24 + "Z": -7728.95 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -815585,9 +815525,9 @@ "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": -2381.55, + "X": -2381.47, "Y": -73.32, - "Z": -6947.78 + "Z": -6947.49 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -815763,9 +815703,9 @@ "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": -2107.02, + "X": -2106.94, "Y": -108.36, - "Z": -6910.28 + "Z": -6909.99 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -816031,9 +815971,9 @@ "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": -1334.89, + "X": -1334.82, "Y": -96.87, - "Z": -6906.31 + "Z": -6906.02 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -816199,9 +816139,9 @@ "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": -1380.38, + "X": -1380.31, "Y": -43.7, - "Z": -7502.44 + "Z": -7502.15 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -816407,9 +816347,9 @@ "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": -2064.96, + "X": -2064.89, "Y": 59.16, - "Z": -7604.86 + "Z": -7604.57 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -816605,9 +816545,9 @@ "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": -2034.73, + "X": -2034.65, "Y": -148.41, - "Z": -6689.85 + "Z": -6689.56 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -816793,9 +816733,9 @@ "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": -1605.45, + "X": -1605.37, "Y": -145.6, - "Z": -6950.47 + "Z": -6950.18 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -817031,9 +816971,9 @@ "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": -1805.32, + "X": -1805.25, "Y": -74.03, - "Z": -7206.56 + "Z": -7206.27 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -821248,25 +821188,25 @@ } }, "assembly/x86_bare_metal": { - "Directory Group Magnitude": 282.4, + "Directory Group Magnitude": 275.06, "File Count": 23, "Ecosystem Fingerprint (Archetypes)": { "Unclassified": "95.7%", "Static: Literature & Documentation": "4.3%" }, "Average Risk Exposures": { - "Cognitive Load Exposure": "17.65%", - "Error & Exception Exposure": "72.86%", - "Tech Debt Exposure": "29.82%", - "Testing Exposure": "1.98%", + "Cognitive Load Exposure": "18.71%", + "Error & Exception Exposure": "75.28%", + "Tech Debt Exposure": "30.42%", + "Testing Exposure": "1.83%", "API Exposure": "0.22%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "17.19%", + "State Flux Exposure": "17.33%", "Commented Logic Exposure": "4.26%", - "Specification Exposure": "79.13%", + "Specification Exposure": "71.01%", "Instability Exposure": "47.83%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "47.94%", + "Documentation Exposure": "42.11%", "Hardcoded Payload Artifacts": "0.0%" }, "Files": { @@ -821283,9 +821223,9 @@ "Identity Proof": "Prefix Anchor (LICENSE)" }, "2. Topological Coordinates": { - "X": -2378.66, - "Y": 5.29, - "Z": -4574.03 + "X": -2378.59, + "Y": 5.27, + "Z": -4574.01 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -821440,9 +821380,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -1117.33, - "Y": -254.24, - "Z": -4939.7 + "X": -2096.2, + "Y": -103.8, + "Z": -5224.86 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -821452,29 +821392,29 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 22, - "Coding LOC": 15, - "Documentation LOC": 1, - "Structural Magnitude": 15.3, + "Coding LOC": 12, + "Documentation LOC": 4, + "Structural Magnitude": 15.24, "Control Flow Ratio": "45.5%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.667 + "Raw Cognitive Density": 0.833 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "41.74%", + "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.3%", + "Testing Exposure": "1.84%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "80.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "69.01%", + "Documentation Exposure": "56.5%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [], @@ -821597,9 +821537,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -1650.32, - "Y": -185.32, - "Z": -5484.02 + "X": -1650.31, + "Y": -185.31, + "Z": -5483.88 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -821609,21 +821549,21 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 65, - "Coding LOC": 36, - "Documentation LOC": 18, - "Structural Magnitude": 16.42, + "Coding LOC": 35, + "Documentation LOC": 19, + "Structural Magnitude": 16.4, "Control Flow Ratio": "41.7%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.417 + "Raw Cognitive Density": 0.429 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "20.86%", - "Error & Exception Exposure": "80.94%", - "Tech Debt Exposure": "99.85%", - "Testing Exposure": "2.64%", + "Cognitive Load Exposure": "21.66%", + "Error & Exception Exposure": "81.35%", + "Tech Debt Exposure": "99.89%", + "Testing Exposure": "2.65%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -821631,7 +821571,7 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "29.93%", + "Documentation Exposure": "29.61%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -821785,9 +821725,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -2237.34, - "Y": -88.19, - "Z": -5569.65 + "X": -1463.75, + "Y": -136.06, + "Z": -4608.06 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -821797,29 +821737,29 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 13, - "Coding LOC": 7, - "Documentation LOC": 1, - "Structural Magnitude": 13.64, + "Coding LOC": 6, + "Documentation LOC": 2, + "Structural Magnitude": 13.12, "Control Flow Ratio": "33.3%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.857 + "Raw Cognitive Density": 1.0 }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", - "Error & Exception Exposure": "95.26%", + "Error & Exception Exposure": "95.75%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "1.12%", + "Testing Exposure": "0.97%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "46.67%", + "Specification Exposure": "40.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "39.02%", + "Documentation Exposure": "33.79%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [], @@ -821942,9 +821882,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -1011.61, - "Y": -289.27, - "Z": -5124.12 + "X": -2253.77, + "Y": -82.57, + "Z": -5322.22 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -821954,29 +821894,29 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 9, - "Coding LOC": 6, - "Documentation LOC": 1, - "Structural Magnitude": 13.12, + "Coding LOC": 5, + "Documentation LOC": 2, + "Structural Magnitude": 12.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.833 + "Raw Cognitive Density": 1.0 }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", - "Error & Exception Exposure": "95.75%", + "Error & Exception Exposure": "96.23%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "0.97%", + "Testing Exposure": "0.81%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "40.0%", + "Specification Exposure": "33.33%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "34.18%", + "Documentation Exposure": "28.77%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [], @@ -822099,9 +822039,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -2120.94, - "Y": -89.92, - "Z": -5182.42 + "X": -1427.86, + "Y": -176.1, + "Z": -4769.62 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -822111,20 +822051,20 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 33, - "Coding LOC": 24, - "Documentation LOC": 1, - "Structural Magnitude": 15.48, + "Coding LOC": 19, + "Documentation LOC": 6, + "Structural Magnitude": 15.38, "Control Flow Ratio": "33.3%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.292 + "Raw Cognitive Density": 0.368 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "13.78%", - "Error & Exception Exposure": "86.31%", - "Tech Debt Exposure": "99.18%", + "Cognitive Load Exposure": "17.85%", + "Error & Exception Exposure": "88.86%", + "Tech Debt Exposure": "99.88%", "Testing Exposure": "2.33%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -822133,7 +822073,7 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "55.67%", + "Documentation Exposure": "56.45%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [], @@ -822179,7 +822119,7 @@ "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 1, "Thread Sleeps & Blocking Waits": 1, - "Bitwise Operations": 2, + "Bitwise Operations": 1, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, "Resource Deallocation & Cleanup": 0, @@ -822256,9 +822196,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -1255.09, - "Y": -243.68, - "Z": -5241.78 + "X": -1123.32, + "Y": -223.16, + "Z": -4780.73 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -822268,29 +822208,29 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 25, - "Coding LOC": 19, - "Documentation LOC": 1, - "Structural Magnitude": 15.38, + "Coding LOC": 9, + "Documentation LOC": 11, + "Structural Magnitude": 14.68, "Control Flow Ratio": "40.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.368 + "Raw Cognitive Density": 0.778 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "17.85%", - "Error & Exception Exposure": "88.86%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "94.23%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.33%", + "Testing Exposure": "1.42%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "60.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "62.56%", + "Documentation Exposure": "40.05%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [], @@ -822336,7 +822276,7 @@ "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 1, "Thread Sleeps & Blocking Waits": 1, - "Bitwise Operations": 1, + "Bitwise Operations": 0, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, "Resource Deallocation & Cleanup": 0, @@ -822413,9 +822353,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -1753.01, - "Y": -106.38, - "Z": -4584.13 + "X": -1752.96, + "Y": -106.39, + "Z": -4584.2 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -822425,29 +822365,29 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 23, - "Coding LOC": 16, - "Documentation LOC": 1, - "Structural Magnitude": 15.32, + "Coding LOC": 10, + "Documentation LOC": 7, + "Structural Magnitude": 15.2, "Control Flow Ratio": "25.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.375 + "Raw Cognitive Density": 0.6 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "18.24%", - "Error & Exception Exposure": "90.47%", - "Tech Debt Exposure": "99.98%", - "Testing Exposure": "2.34%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "93.7%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "1.58%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "66.67%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "67.32%", + "Documentation Exposure": "47.0%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [], @@ -822455,7 +822395,7 @@ "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 1, "Sequential Logic Declarations": 3, - "Function Parameters": 5, + "Function Parameters": 3, "Function/Method Declarations": 0, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, @@ -822518,12 +822458,12 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 1, + "Core Var Decl": 0, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 1, - "Design Short Vars": 1, + "Design Upper Case": 0, + "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, "Orphaned Logic": 0, @@ -822570,9 +822510,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -1676.5, + "X": -1676.48, "Y": -181.14, - "Z": -5230.68 + "Z": -5230.62 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -822582,21 +822522,21 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 75, - "Coding LOC": 67, - "Documentation LOC": 2, - "Structural Magnitude": 29.34, + "Coding LOC": 57, + "Documentation LOC": 12, + "Structural Magnitude": 29.14, "Control Flow Ratio": "40.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.224 + "Raw Cognitive Density": 0.263 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "10.87%", - "Error & Exception Exposure": "71.73%", - "Tech Debt Exposure": "99.98%", - "Testing Exposure": "2.61%", + "Cognitive Load Exposure": "12.48%", + "Error & Exception Exposure": "74.11%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "2.67%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -822604,7 +822544,7 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "28.99%", + "Documentation Exposure": "26.7%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -822693,7 +822633,7 @@ "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 10, "Sequential Logic Declarations": 15, - "Function Parameters": 23, + "Function Parameters": 21, "Function/Method Declarations": 8, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, @@ -822720,7 +822660,7 @@ "Acknowledged Tech Debt (FIXMEs)": 0, "Specification Traceability Tags": 0, "Server-Side Rendering Contexts": 0, - "Event Publishers / Emitters": 1, + "Event Publishers / Emitters": 0, "Dependency Injection Constructs": 0, "Preprocessor Macros": 0, "Pointer Arithmetic & Addressing": 0, @@ -822739,7 +822679,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 50, + "Structural Space Indentations": 48, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -822756,12 +822696,12 @@ "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": 2, + "Design Snake Case": 0, "Design Pascal Case": 0, "Design Upper Case": 0, - "Design Short Vars": 1, + "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, "Orphaned Logic": 6, @@ -822808,9 +822748,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -2154.52, - "Y": -86.95, - "Z": -5731.48 + "X": -832.71, + "Y": -255.83, + "Z": -4991.1 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -822820,21 +822760,21 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 59, - "Coding LOC": 51, - "Documentation LOC": 1, - "Structural Magnitude": 2.42, - "Control Flow Ratio": "25.0%", + "Coding LOC": 15, + "Documentation LOC": 37, + "Structural Magnitude": 1.4, + "Control Flow Ratio": "22.2%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.157 + "Raw Cognitive Density": 0.467 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "8.53%", - "Error & Exception Exposure": "75.78%", - "Tech Debt Exposure": "87.12%", - "Testing Exposure": "2.33%", + "Cognitive Load Exposure": "24.35%", + "Error & Exception Exposure": "91.01%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "2.39%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -822842,32 +822782,32 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "34.99%", + "Documentation Exposure": "22.51%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { "Function Name": "stage2", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 9, + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", "Start Line": 50, - "End Line": 58 + "End Line": 52 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 3, - "Sequential Logic Declarations": 9, - "Function Parameters": 11, + "Control Flow Branches": 2, + "Sequential Logic Declarations": 7, + "Function Parameters": 7, "Function/Method Declarations": 1, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 2, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -822899,7 +822839,7 @@ "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 1, "Thread Sleeps & Blocking Waits": 1, - "Bitwise Operations": 2, + "Bitwise Operations": 0, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, "Resource Deallocation & Cleanup": 0, @@ -822907,7 +822847,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 44, + "Structural Space Indentations": 12, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -822976,9 +822916,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -814.73, - "Y": -270.42, - "Z": -5119.74 + "X": -2137.59, + "Y": -101.33, + "Z": -5859.78 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -822988,29 +822928,29 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 13, - "Coding LOC": 10, - "Documentation LOC": 1, - "Structural Magnitude": 2.3, + "Coding LOC": 9, + "Documentation LOC": 2, + "Structural Magnitude": 2.28, "Control Flow Ratio": "100.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.7 + "Raw Cognitive Density": 0.778 }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", - "Error & Exception Exposure": "93.7%", + "Error & Exception Exposure": "94.23%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "1.68%", + "Testing Exposure": "1.53%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "66.67%", + "Specification Exposure": "60.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "52.02%", + "Documentation Exposure": "47.27%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -823144,9 +823084,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -2458.14, - "Y": 14.66, - "Z": -5169.63 + "X": -1133.78, + "Y": -181.61, + "Z": -4708.4 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -823156,29 +823096,29 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 18, - "Coding LOC": 14, - "Documentation LOC": 1, - "Structural Magnitude": 8.88, + "Coding LOC": 13, + "Documentation LOC": 2, + "Structural Magnitude": 8.86, "Control Flow Ratio": "66.7%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.643 + "Raw Cognitive Density": 0.692 }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", - "Error & Exception Exposure": "91.55%", + "Error & Exception Exposure": "92.09%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.63%", + "Testing Exposure": "2.48%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "93.33%", + "Specification Exposure": "86.67%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "66.03%", + "Documentation Exposure": "61.8%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -823322,9 +823262,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -1106.15, - "Y": -185.22, - "Z": -4480.84 + "X": -2430.42, + "Y": 11.03, + "Z": -4942.06 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -823334,21 +823274,21 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 65, - "Coding LOC": 49, - "Documentation LOC": 1, - "Structural Magnitude": 8.98, - "Control Flow Ratio": "44.4%", + "Coding LOC": 37, + "Documentation LOC": 13, + "Structural Magnitude": 8.74, + "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.184 + "Raw Cognitive Density": 0.243 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "9.4%", - "Error & Exception Exposure": "79.73%", + "Cognitive Load Exposure": "11.64%", + "Error & Exception Exposure": "84.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.43%", + "Testing Exposure": "2.47%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -823356,7 +823296,7 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "35.91%", + "Documentation Exposure": "33.24%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -823366,7 +823306,7 @@ "Lines of Code (LOC)": 25, "Control Flow Branches": 2, "Input Parameters": 4, - "Control Flow Ratio": "40.0%", + "Control Flow Ratio": "50.0%", "Start Line": 40, "End Line": 64 } @@ -823374,7 +823314,7 @@ "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 4, - "Sequential Logic Declarations": 5, + "Sequential Logic Declarations": 4, "Function Parameters": 15, "Function/Method Declarations": 1, "Class/Entity Declarations": 0, @@ -823413,7 +823353,7 @@ "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 1, "Thread Sleeps & Blocking Waits": 1, - "Bitwise Operations": 4, + "Bitwise Operations": 1, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, "Resource Deallocation & Cleanup": 0, @@ -823421,7 +823361,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 31, + "Structural Space Indentations": 27, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -823490,9 +823430,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -2250.79, - "Y": -31.06, - "Z": -4900.03 + "X": -1445.26, + "Y": -253.66, + "Z": -5689.59 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -823502,29 +823442,29 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 10, - "Coding LOC": 7, - "Documentation LOC": 1, - "Structural Magnitude": 14.64, + "Coding LOC": 6, + "Documentation LOC": 2, + "Structural Magnitude": 14.12, "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.857 + "Raw Cognitive Density": 1.0 }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", - "Error & Exception Exposure": "95.96%", + "Error & Exception Exposure": "96.4%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "1.12%", + "Testing Exposure": "0.97%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "97.38%", + "State Flux Exposure": "98.97%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "46.67%", + "Specification Exposure": "40.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "39.02%", + "Documentation Exposure": "33.79%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [], @@ -823647,9 +823587,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -1730.49, - "Y": -83.59, - "Z": -4491.04 + "X": -1730.47, + "Y": -83.6, + "Z": -4491.09 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -823659,29 +823599,29 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 10, - "Coding LOC": 7, - "Documentation LOC": 1, - "Structural Magnitude": 3.24, + "Coding LOC": 6, + "Documentation LOC": 2, + "Structural Magnitude": 3.22, "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.857 + "Raw Cognitive Density": 1.0 }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "1.22%", + "Testing Exposure": "1.07%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "46.67%", + "Specification Exposure": "40.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "39.02%", + "Documentation Exposure": "33.79%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -823815,9 +823755,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -2043.71, - "Y": -1.79, - "Z": -4384.76 + "X": -978.07, + "Y": -265.11, + "Z": -5106.18 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -823827,29 +823767,29 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 9, - "Coding LOC": 6, - "Documentation LOC": 1, - "Structural Magnitude": 13.12, + "Coding LOC": 5, + "Documentation LOC": 2, + "Structural Magnitude": 12.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.833 + "Raw Cognitive Density": 1.0 }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", - "Error & Exception Exposure": "95.75%", + "Error & Exception Exposure": "96.23%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "0.97%", + "Testing Exposure": "0.81%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "40.0%", + "Specification Exposure": "33.33%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "34.18%", + "Documentation Exposure": "28.77%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [], @@ -823903,7 +823843,185 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 3, + "Structural Space Indentations": 3, + "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": 0, + "Design Camel Case": 0, + "Design Snake Case": 0, + "Design Pascal Case": 0, + "Design Upper Case": 0, + "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)": 0, + "Direct Downstream (Dependency Blast Radius)": 0, + "Total Upstream (Absolute Fragility)": 0, + "Total Downstream (Absolute Dependency Blast Radius)": 0 + }, + "9. Extracted Dependencies": [] + }, + "assembly/x86_bare_metal/bios_pixel.S": { + "1. Artifact Identity": { + "Filename": "bios_pixel.S", + "Path": "assembly/x86_bare_metal/bios_pixel.S", + "Language": "Assembly", + "Architect": "Unknown Architect", + "Indentation Style": "Spaces", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "assembly", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .s)" + }, + "2. Topological Coordinates": { + "X": -1919.54, + "Y": -154.83, + "Z": -5607.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": 30, + "Coding LOC": 16, + "Documentation LOC": 11, + "Structural Magnitude": 15.12, + "Control Flow Ratio": "22.2%", + "Popularity Rank": 0, + "Raw Churn Frequency": 0.0, + "Authorship Centralization": 0.0, + "Ownership Entropy": 0.0, + "Raw Cognitive Density": 1.188 + }, + "4. Vulnerability & Risk Exposures": { + "Cognitive Load Exposure": "85.2%", + "Error & Exception Exposure": "95.26%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "2.75%", + "API Exposure": "0.0%", + "Concurrency 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": "54.31%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "5. Function Analysis": [ + { + "Function Name": "start", + "Structural Impact": 7.7, + "Lines of Code (LOC)": 20, + "Control Flow Branches": 2, + "Input Parameters": 4, + "Control Flow Ratio": "25.0%", + "Start Line": 8, + "End Line": 27 + }, + { + "Function Name": "end", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 28, + "End Line": 29 + } + ], + "6. Contextual Mitigations & Amplifications": "None Detected", + "7. Structural Signatures (Net Mitigated Signals)": { + "Control Flow Branches": 2, + "Sequential Logic Declarations": 7, + "Function Parameters": 8, + "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": 0, + "Exposed API / Public Exports": 0, + "State Mutations / Variable Reassignments": 6, + "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": 1, + "Thread Sleeps & Blocking Waits": 1, + "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": 13, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -823959,184 +824077,6 @@ }, "9. Extracted Dependencies": [] }, - "assembly/x86_bare_metal/bios_pixel.S": { - "1. Artifact Identity": { - "Filename": "bios_pixel.S", - "Path": "assembly/x86_bare_metal/bios_pixel.S", - "Language": "Assembly", - "Architect": "Unknown Architect", - "Indentation Style": "Spaces", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "assembly", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .s)" - }, - "2. Topological Coordinates": { - "X": -1919.64, - "Y": -154.83, - "Z": -5607.86 - }, - "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": 30, - "Coding LOC": 26, - "Documentation LOC": 1, - "Structural Magnitude": 15.32, - "Control Flow Ratio": "22.2%", - "Popularity Rank": 0, - "Raw Churn Frequency": 0.0, - "Authorship Centralization": 0.0, - "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.731 - }, - "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "48.08%", - "Error & Exception Exposure": "89.95%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.57%", - "API Exposure": "0.0%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "99.92%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "53.27%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "5. Function Analysis": [ - { - "Function Name": "start", - "Structural Impact": 7.7, - "Lines of Code (LOC)": 20, - "Control Flow Branches": 2, - "Input Parameters": 4, - "Control Flow Ratio": "25.0%", - "Start Line": 8, - "End Line": 27 - }, - { - "Function Name": "end", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 28, - "End Line": 29 - } - ], - "6. Contextual Mitigations & Amplifications": "None Detected", - "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 2, - "Sequential Logic Declarations": 7, - "Function Parameters": 13, - "Function/Method Declarations": 2, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 1, - "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 6, - "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": 1, - "Thread Sleeps & Blocking Waits": 1, - "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": 22, - "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": 5, - "Design Camel Case": 0, - "Design Snake Case": 0, - "Design Pascal Case": 0, - "Design Upper Case": 5, - "Design Short Vars": 5, - "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)": 0, - "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 - }, - "9. Extracted Dependencies": [] - }, "assembly/x86_bare_metal/bios_pixel_line.S": { "1. Artifact Identity": { "Filename": "bios_pixel_line.S", @@ -824150,9 +824090,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -1417.72, - "Y": -281.03, - "Z": -5684.76 + "X": -2223.3, + "Y": -58.38, + "Z": -4894.76 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -824162,21 +824102,21 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 20, - "Coding LOC": 17, - "Documentation LOC": 1, - "Structural Magnitude": 14.64, + "Coding LOC": 16, + "Documentation LOC": 2, + "Structural Magnitude": 14.62, "Control Flow Ratio": "22.2%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.118 + "Raw Cognitive Density": 1.188 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "81.31%", - "Error & Exception Exposure": "94.88%", + "Cognitive Load Exposure": "85.2%", + "Error & Exception Exposure": "95.26%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.7%", + "Testing Exposure": "2.73%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "100.0%", @@ -824184,7 +824124,7 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "65.68%", + "Documentation Exposure": "66.1%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -824328,9 +824268,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -1458.7, - "Y": -163.8, - "Z": -4623.87 + "X": -2055.24, + "Y": -59.47, + "Z": -4666.57 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -824340,29 +824280,29 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 11, - "Coding LOC": 8, - "Documentation LOC": 1, - "Structural Magnitude": 14.16, + "Coding LOC": 4, + "Documentation LOC": 5, + "Structural Magnitude": 12.08, "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.625 + "Raw Cognitive Density": 1.25 }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", - "Error & Exception Exposure": "94.75%", + "Error & Exception Exposure": "96.69%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "1.27%", + "Testing Exposure": "0.66%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "53.33%", + "Specification Exposure": "26.67%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "43.61%", + "Documentation Exposure": "22.73%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [], @@ -824485,9 +824425,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -1448.88, - "Y": -137.5, - "Z": -4886.53 + "X": -1295.19, + "Y": -222.22, + "Z": -5475.12 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -824497,29 +824437,29 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 31, - "Coding LOC": 25, - "Documentation LOC": 1, - "Structural Magnitude": 15.5, + "Coding LOC": 12, + "Documentation LOC": 14, + "Structural Magnitude": 15.24, "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.2 + "Raw Cognitive Density": 0.417 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "9.97%", - "Error & Exception Exposure": "85.81%", - "Tech Debt Exposure": "99.85%", - "Testing Exposure": "2.33%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "92.63%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "1.88%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "80.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "54.44%", + "Documentation Exposure": "45.15%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [], @@ -824527,7 +824467,7 @@ "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, "Sequential Logic Declarations": 5, - "Function Parameters": 9, + "Function Parameters": 5, "Function/Method Declarations": 0, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, @@ -824642,9 +824582,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -1720.0, - "Y": -203.04, - "Z": -5852.98 + "X": -1719.96, + "Y": -203.03, + "Z": -5852.76 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -824654,21 +824594,21 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 27, - "Coding LOC": 22, - "Documentation LOC": 1, - "Structural Magnitude": 9.14, + "Coding LOC": 17, + "Documentation LOC": 6, + "Structural Magnitude": 9.04, "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.409 + "Raw Cognitive Density": 0.529 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "20.36%", - "Error & Exception Exposure": "87.31%", + "Cognitive Load Exposure": "29.27%", + "Error & Exception Exposure": "89.93%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.62%", + "Testing Exposure": "2.72%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -824676,7 +824616,7 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "58.27%", + "Documentation Exposure": "59.43%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -824705,13 +824645,13 @@ "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 4, "Sequential Logic Declarations": 5, - "Function Parameters": 8, + "Function Parameters": 7, "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": 1, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -824751,7 +824691,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 17, + "Structural Space Indentations": 13, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -824820,9 +824760,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -1916.38, - "Y": -55.71, - "Z": -5083.46 + "X": -1916.28, + "Y": -55.73, + "Z": -5083.47 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -824832,29 +824772,29 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 23, - "Coding LOC": 20, - "Documentation LOC": 1, - "Structural Magnitude": 19.5, + "Coding LOC": 16, + "Documentation LOC": 5, + "Structural Magnitude": 19.42, "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.85 + "Raw Cognitive Density": 1.062 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "59.87%", - "Error & Exception Exposure": "81.19%", + "Cognitive Load Exposure": "77.73%", + "Error & Exception Exposure": "83.55%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.91%", + "Testing Exposure": "3.09%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "98.02%", + "State Flux Exposure": "99.55%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "61.08%", + "Documentation Exposure": "62.31%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -824929,7 +824869,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 16, + "Structural Space Indentations": 13, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -824998,9 +824938,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -1091.64, - "Y": -331.54, - "Z": -5520.1 + "X": -1091.67, + "Y": -331.52, + "Z": -5520.0 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -833778,9 +833718,9 @@ "Identity Proof": "Metadata Anchor (COPYING)" }, "2. Topological Coordinates": { - "X": 7797.7, + "X": 7797.06, "Y": 211.04, - "Z": -4375.91 + "Z": -4375.53 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -833935,9 +833875,9 @@ "Identity Proof": "Metadata Anchor (configure.ac)" }, "2. Topological Coordinates": { - "X": 8039.24, + "X": 8038.6, "Y": 251.14, - "Z": -4794.38 + "Z": -4794.0 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -837850,7 +837790,7 @@ "Cognitive Load Exposure": "11.99%", "Error & Exception Exposure": "63.41%", "Tech Debt Exposure": "58.71%", - "Testing Exposure": "2.21%", + "Testing Exposure": "2.2%", "API Exposure": "0.06%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "42.49%", @@ -839852,14 +839792,1523 @@ "Raw Cognitive Density": 0.965 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "38.63%", - "Error & Exception Exposure": "97.84%", - "Tech Debt Exposure": "20.26%", - "Testing Exposure": "80.0%", - "API Exposure": "0.32%", + "Cognitive Load Exposure": "38.63%", + "Error & Exception Exposure": "97.84%", + "Tech Debt Exposure": "20.26%", + "Testing Exposure": "80.0%", + "API Exposure": "0.32%", + "Concurrency 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": "11.92%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "5. Function Analysis": [ + { + "Function Name": "supportsShallowClone", + "Structural Impact": 17.2, + "Lines of Code (LOC)": 32, + "Control Flow Branches": 10, + "Input Parameters": 1, + "Control Flow Ratio": "66.7%", + "Start Line": 142, + "End Line": 173 + }, + { + "Function Name": "checkout", + "Structural Impact": 11.3, + "Lines of Code (LOC)": 28, + "Control Flow Branches": 6, + "Input Parameters": 1, + "Control Flow Ratio": "54.5%", + "Start Line": 175, + "End Line": 202 + }, + { + "Function Name": "clone", + "Structural Impact": 10.1, + "Lines of Code (LOC)": 42, + "Control Flow Branches": 7, + "Input Parameters": 0, + "Control Flow Ratio": "46.7%", + "Start Line": 49, + "End Line": 90 + }, + { + "Function Name": "parseRemoteURL", + "Structural Impact": 9.9, + "Lines of Code (LOC)": 29, + "Control Flow Branches": 5, + "Input Parameters": 1, + "Control Flow Ratio": "62.5%", + "Start Line": 92, + "End Line": 120 + }, + { + "Function Name": "Clone", + "Structural Impact": 7.5, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 3, + "Input Parameters": 2, + "Control Flow Ratio": "60.0%", + "Start Line": 36, + "End Line": 47 + }, + { + "Function Name": "isGitTransport", + "Structural Impact": 6.3, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 3, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 223, + "End Line": 234 + }, + { + "Function Name": "gitWithinDir", + "Structural Impact": 4.3, + "Lines of Code (LOC)": 16, + "Control Flow Branches": 1, + "Input Parameters": 2, + "Control Flow Ratio": "50.0%", + "Start Line": 204, + "End Line": 219 + }, + { + "Function Name": "fetchArgs", + "Structural Impact": 3.9, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 1, + "Input Parameters": 2, + "Control Flow Ratio": "50.0%", + "Start Line": 130, + "End Line": 138 + }, + { + "Function Name": "getRefAndSubdir", + "Structural Impact": 3.2, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 122, + "End Line": 128 + }, + { + "Function Name": "getScheme", + "Structural Impact": 3.2, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "33.3%", + "Start Line": 238, + "End Line": 244 + }, + { + "Function Name": "WithIsolatedConfig", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 28, + "End Line": 32 + } + ], + "6. Contextual Mitigations & Amplifications": "None Detected", + "7. Structural Signatures (Net Mitigated Signals)": { + "Control Flow Branches": 38, + "Sequential Logic Declarations": 37, + "Function Parameters": 11, + "Function/Method Declarations": 11, + "Class/Entity Declarations": 1, + "Defensive Programming Constructs": 14, + "Type/Safety Bypasses": 3, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 1, + "Exposed API / Public Exports": 3, + "State Mutations / Variable Reassignments": 147, + "Commented-out Code (Dead Logic)": 0, + "Structured Documentation Blocks": 14, + "Unit Test Assertions": 0, + "Asynchronous/Concurrent Execution": 0, + "UI / View Layer Components": 0, + "Closures and Anonymous Functions": 6, + "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, + "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": 1, + "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": 2, + "Private / Encapsulated Scopes": 44, + "Event Listeners & Subscribers": 0, + "Bypassed / Skipped Tests": 0, + "Structural Tab Indentations": 149, + "Structural Space Indentations": 0, + "Hardware Bridge": 0, + "Cryptography": 0, + "Auth Middleware": 0, + "Ipc Rpc Bridges": 2, + "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": 1, + "Design Snake Case": 6, + "Design Pascal Case": 0, + "Design Upper Case": 0, + "Design Short Vars": 3, + "Design Long Vars": 0, + "Duplicate Logic": 0, + "Orphaned Logic": 2, + "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": 3, + "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)": 9, + "Direct Downstream (Dependency Blast Radius)": 0, + "Total Upstream (Absolute Fragility)": 8, + "Total Downstream (Absolute Dependency Blast Radius)": 0 + }, + "9. Extracted Dependencies": [ + "git", + "github.com/moby/sys/symlink", + "github.com/pkg/errors", + "net/http", + "net/url", + "os", + "os/exec", + "path/filepath", + "strings" + ] + } + } + }, + "dockerfile/moby/test_targets": { + "Directory Group Magnitude": 224.04, + "File Count": 4, + "Ecosystem Fingerprint (Archetypes)": { + "Unclassified": "100.0%" + }, + "Average Risk Exposures": { + "Cognitive Load Exposure": "24.78%", + "Error & Exception Exposure": "44.35%", + "Tech Debt Exposure": "37.26%", + "Testing Exposure": "21.87%", + "API Exposure": "0.6%", + "Concurrency Exposure": "4.79%", + "State Flux Exposure": "25.6%", + "Commented Logic Exposure": "4.19%", + "Specification Exposure": "96.67%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "29.05%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "Files": { + "dockerfile/moby/test_targets/daemon.Dockerfile": { + "1. Artifact Identity": { + "Filename": "daemon.Dockerfile", + "Path": "dockerfile/moby/test_targets/daemon.Dockerfile", + "Language": "Dockerfile", + "Architect": "Unknown Architect", + "Indentation Style": "Spaces", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "dockerfile", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .dockerfile)" + }, + "2. Topological Coordinates": { + "X": -9188.29, + "Y": -97.87, + "Z": 1626.63 + }, + "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": 624, + "Coding LOC": 477, + "Documentation LOC": 89, + "Structural Magnitude": 180.64, + "Control Flow Ratio": "78.4%", + "Popularity Rank": 0, + "Raw Churn Frequency": 0.0, + "Authorship Centralization": 0.0, + "Ownership Entropy": 0.0, + "Raw Cognitive Density": 0.813 + }, + "4. Vulnerability & Risk Exposures": { + "Cognitive Load Exposure": "52.77%", + "Error & Exception Exposure": "55.63%", + "Tech Debt Exposure": "49.08%", + "Testing Exposure": "80.0%", + "API Exposure": "0.0%", + "Concurrency Exposure": "19.14%", + "State Flux Exposure": "29.23%", + "Commented Logic Exposure": "6.23%", + "Specification Exposure": "100.0%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "11.92%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "5. Function Analysis": [ + { + "Function Name": "RUN", + "Structural Impact": 8.9, + "Lines of Code (LOC)": 38, + "Control Flow Branches": 6, + "Input Parameters": 0, + "Control Flow Ratio": "85.7%", + "Start Line": 559, + "End Line": 596 + }, + { + "Function Name": "RUN", + "Structural Impact": 8.0, + "Lines of Code (LOC)": 20, + "Control Flow Branches": 6, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 163, + "End Line": 182 + }, + { + "Function Name": "RUN", + "Structural Impact": 7.2, + "Lines of Code (LOC)": 24, + "Control Flow Branches": 5, + "Input Parameters": 0, + "Control Flow Ratio": "83.3%", + "Start Line": 354, + "End Line": 377 + }, + { + "Function Name": "RUN", + "Structural Impact": 5.9, + "Lines of Code (LOC)": 18, + "Control Flow Branches": 4, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 322, + "End Line": 339 + }, + { + "Function Name": "RUN", + "Structural Impact": 5.5, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 4, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 75, + "End Line": 84 + }, + { + "Function Name": "RUN", + "Structural Impact": 4.8, + "Lines of Code (LOC)": 17, + "Control Flow Branches": 3, + "Input Parameters": 0, + "Control Flow Ratio": "75.0%", + "Start Line": 256, + "End Line": 272 + }, + { + "Function Name": "RUN", + "Structural Impact": 4.7, + "Lines of Code (LOC)": 13, + "Control Flow Branches": 3, + "Input Parameters": 0, + "Control Flow Ratio": "75.0%", + "Start Line": 214, + "End Line": 226 + }, + { + "Function Name": "RUN", + "Structural Impact": 3.5, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 2, + "Input Parameters": 0, + "Control Flow Ratio": "66.7%", + "Start Line": 227, + "End Line": 236 + }, + { + "Function Name": "RUN", + "Structural Impact": 3.3, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 2, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 553, + "End Line": 558 + }, + { + "Function Name": "RUN", + "Structural Impact": 3.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 2, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 461, + "End Line": 463 + }, + { + "Function Name": "RUN", + "Structural Impact": 3.0, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 2, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 68, + "End Line": 68 + }, + { + "Function Name": "RUN", + "Structural Impact": 3.0, + "Lines of Code (LOC)": 48, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 390, + "End Line": 437 + }, + { + "Function Name": "RUN", + "Structural Impact": 3.0, + "Lines of Code (LOC)": 33, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 474, + "End Line": 506 + }, + { + "Function Name": "RUN", + "Structural Impact": 2.8, + "Lines of Code (LOC)": 16, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "50.0%", + "Start Line": 507, + "End Line": 522 + }, + { + "Function Name": "RUN", + "Structural Impact": 2.7, + "Lines of Code (LOC)": 14, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 340, + "End Line": 353 + }, + { + "Function Name": "RUN", + "Structural Impact": 2.5, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 91, + "End Line": 100 + }, + { + "Function Name": "RUN", + "Structural Impact": 2.5, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "50.0%", + "Start Line": 204, + "End Line": 213 + }, + { + "Function Name": "RUN", + "Structural Impact": 2.4, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "50.0%", + "Start Line": 138, + "End Line": 145 + }, + { + "Function Name": "RUN", + "Structural Impact": 2.4, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 183, + "End Line": 190 + }, + { + "Function Name": "RUN", + "Structural Impact": 2.4, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 191, + "End Line": 197 + }, + { + "Function Name": "RUN", + "Structural Impact": 2.4, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 248, + "End Line": 255 + }, + { + "Function Name": "RUN", + "Structural Impact": 2.4, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 315, + "End Line": 321 + }, + { + "Function Name": "RUN", + "Structural Impact": 2.4, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 442, + "End Line": 448 + }, + { + "Function Name": "RUN", + "Structural Impact": 2.4, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 523, + "End Line": 530 + }, + { + "Function Name": "RUN", + "Structural Impact": 2.3, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 85, + "End Line": 90 + }, + { + "Function Name": "RUN", + "Structural Impact": 2.3, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 113, + "End Line": 118 + }, + { + "Function Name": "RUN", + "Structural Impact": 2.3, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 146, + "End Line": 151 + }, + { + "Function Name": "RUN", + "Structural Impact": 2.3, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 157, + "End Line": 162 + }, + { + "Function Name": "RUN", + "Structural Impact": 2.3, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 198, + "End Line": 203 + }, + { + "Function Name": "RUN", + "Structural Impact": 2.3, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 237, + "End Line": 242 + }, + { + "Function Name": "RUN", + "Structural Impact": 2.3, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 454, + "End Line": 459 + }, + { + "Function Name": "RUN", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 70, + "End Line": 74 + }, + { + "Function Name": "RUN", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "50.0%", + "Start Line": 119, + "End Line": 123 + }, + { + "Function Name": "RUN", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "50.0%", + "Start Line": 152, + "End Line": 156 + }, + { + "Function Name": "RUN", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "50.0%", + "Start Line": 243, + "End Line": 247 + }, + { + "Function Name": "RUN", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 273, + "End Line": 276 + }, + { + "Function Name": "RUN", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "50.0%", + "Start Line": 277, + "End Line": 280 + }, + { + "Function Name": "RUN", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 281, + "End Line": 284 + }, + { + "Function Name": "RUN", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "50.0%", + "Start Line": 310, + "End Line": 314 + }, + { + "Function Name": "RUN", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "50.0%", + "Start Line": 380, + "End Line": 384 + }, + { + "Function Name": "RUN", + "Structural Impact": 2.1, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 308, + "End Line": 309 + }, + { + "Function Name": "RUN", + "Structural Impact": 2.1, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 378, + "End Line": 379 + }, + { + "Function Name": "RUN", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 17, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 291, + "End Line": 307 + }, + { + "Function Name": "RUN", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 101, + "End Line": 112 + }, + { + "Function Name": "RUN", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 14, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 124, + "End Line": 137 + }, + { + "Function Name": "RUN", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 22, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 531, + "End Line": 552 + }, + { + "Function Name": "RUN", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 27, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 597, + "End Line": 623 + }, + { + "Function Name": "RUN", + "Structural Impact": 1.4, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 57, + "End Line": 63 + }, + { + "Function Name": "RUN", + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 285, + "End Line": 290 + }, + { + "Function Name": "RUN", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 385, + "End Line": 389 + }, + { + "Function Name": "ENTRYPOINT", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 449, + "End Line": 453 + }, + { + "Function Name": "RUN", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 69, + "End Line": 69 + }, + { + "Function Name": "ENTRYPOINT", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 439, + "End Line": 441 + }, + { + "Function Name": "RUN", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 460, + "End Line": 460 + }, + { + "Function Name": "RUN", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 465, + "End Line": 465 + }, + { + "Function Name": "RUN", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 467, + "End Line": 467 + }, + { + "Function Name": "RUN", + "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": "RUN", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 471, + "End Line": 471 + } + ], + "6. Contextual Mitigations & Amplifications": "None Detected", + "7. Structural Signatures (Net Mitigated Signals)": { + "Control Flow Branches": 69, + "Sequential Logic Declarations": 19, + "Function Parameters": 60, + "Function/Method Declarations": 58, + "Class/Entity Declarations": 69, + "Defensive Programming Constructs": 7, + "Type/Safety Bypasses": 3, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 74, + "Exposed API / Public Exports": 0, + "State Mutations / Variable Reassignments": 18, + "Commented-out Code (Dead Logic)": 2, + "Structured Documentation Blocks": 5, + "Unit Test Assertions": 0, + "Asynchronous/Concurrent Execution": 1, + "UI / View Layer Components": 0, + "Closures and Anonymous Functions": 0, + "Global State Dependencies": 7, + "Decorators and Annotations": 0, + "Generic Type Abstractions": 0, + "Collection Iterators / Comprehensions": 0, + "Scientific & Mathematical Operations": 0, + "Metaprogramming & Reflection": 55, + "Module Dependencies (Imports)": 105, + "Authorship Metadata": 0, + "Planned Work (TODOs)": 0, + "Acknowledged Tech Debt (FIXMEs)": 7, + "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": 22, + "Explicit Type Casts": 0, + "Fatal Aborts & Exceptions": 1, + "Thread Sleeps & Blocking Waits": 0, + "Bitwise Operations": 0, + "Thread Synchronization Locks": 0, + "Immutable Data Declarations": 7, + "Resource Deallocation & Cleanup": 0, + "Private / Encapsulated Scopes": 69, + "Event Listeners & Subscribers": 0, + "Bypassed / Skipped Tests": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 210, + "Hardware Bridge": 0, + "Cryptography": 0, + "Auth Middleware": 0, + "Ipc Rpc Bridges": 4, + "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": 54, + "Design Camel Case": 0, + "Design Snake Case": 1, + "Design Pascal Case": 0, + "Design Upper Case": 53, + "Design Short Vars": 3, + "Design Long Vars": 2, + "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": 1, + "Dynamic Code Execution (Eval/Exec)": 0, + "Global Environment Mutation": 0, + "Commented-Out Executable Logic": 2, + "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)": 54, + "Direct Downstream (Dependency Blast Radius)": 0, + "Total Upstream (Absolute Fragility)": 35, + "Total Downstream (Absolute Dependency Blast Radius)": 0 + }, + "9. Extracted Dependencies": [ + "--platform", + "all", + "base", + "binary-dummy", + "build", + "build-dummy", + "buildx", + "busybox", + "compose", + "containerd", + "containerd-", + "containerd-build", + "containerutil", + "containerutil-", + "containerutil-build", + "containerutil-windows-", + "crun", + "debian:", + "delve", + "delve-", + "dev-base", + "dev-firewalld-", + "dev-systemd-", + "dev-systemd-false", + "dev-systemd-true", + "distribution/distribution:", + "docker/buildx-bin:", + "docker/compose-bin:", + "docker:dind", + "dockercli", + "dockercli-integration", + "frozen-images", + "golangci_lint", + "gopls", + "gotestsum", + "gowinres", + "moby/vpnkit-bin:", + "registry", + "rootlesskit", + "rootlesskit-", + "rootlesskit-build", + "runc", + "runc-", + "runc-build", + "scratch", + "shfmt", + "tini", + "tini-", + "tini-build", + "tonistiigi/xx:", + "vpnkit", + "vpnkit-", + "vpnkit-linux-", + "xx" + ] + }, + "dockerfile/moby/test_targets/generate-files.Dockerfile": { + "1. Artifact Identity": { + "Filename": "generate-files.Dockerfile", + "Path": "dockerfile/moby/test_targets/generate-files.Dockerfile", + "Language": "Dockerfile", + "Architect": "Unknown Architect", + "Indentation Style": "Spaces", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "dockerfile", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .dockerfile)" + }, + "2. Topological Coordinates": { + "X": -9452.6, + "Y": -0.84, + "Z": 1889.56 + }, + "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": 75, + "Coding LOC": 65, + "Documentation LOC": 2, + "Structural Magnitude": 18.2, + "Control Flow Ratio": "71.4%", + "Popularity Rank": 0, + "Raw Churn Frequency": 0.0, + "Authorship Centralization": 0.0, + "Ownership Entropy": 0.0, + "Raw Cognitive Density": 0.592 + }, + "4. Vulnerability & Risk Exposures": { + "Cognitive Load Exposure": "34.73%", + "Error & Exception Exposure": "63.92%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "2.42%", + "API Exposure": "0.0%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "58.94%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "100.0%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "29.52%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "5. Function Analysis": [ + { + "Function Name": "RUN", + "Structural Impact": 4.6, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 3, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 61, + "End Line": 72 + }, + { + "Function Name": "RUN", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 9, + "End Line": 13 + }, + { + "Function Name": "RUN", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 11, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 14, + "End Line": 24 + }, + { + "Function Name": "RUN", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 25, + "End Line": 34 + }, + { + "Function Name": "RUN", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 15, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 35, + "End Line": 49 + }, + { + "Function Name": "RUN", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 11, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 50, + "End Line": 60 + } + ], + "6. Contextual Mitigations & Amplifications": "None Detected", + "7. Structural Signatures (Net Mitigated Signals)": { + "Control Flow Branches": 5, + "Sequential Logic Declarations": 2, + "Function Parameters": 6, + "Function/Method Declarations": 6, + "Class/Entity Declarations": 6, + "Defensive Programming Constructs": 2, + "Type/Safety Bypasses": 0, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 8, + "Exposed API / Public Exports": 0, + "State Mutations / Variable Reassignments": 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": 2, + "Decorators and Annotations": 0, + "Generic Type Abstractions": 0, + "Collection Iterators / Comprehensions": 0, + "Scientific & Mathematical Operations": 0, + "Metaprogramming & Reflection": 2, + "Module Dependencies (Imports)": 7, + "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": 3, + "Explicit Type Casts": 0, + "Fatal Aborts & Exceptions": 1, + "Thread Sleeps & Blocking Waits": 0, + "Bitwise Operations": 0, + "Thread Synchronization Locks": 0, + "Immutable Data Declarations": 0, + "Resource Deallocation & Cleanup": 0, + "Private / Encapsulated Scopes": 6, + "Event Listeners & Subscribers": 0, + "Bypassed / Skipped Tests": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 36, + "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": 7, + "Design Camel Case": 0, + "Design Snake Case": 2, + "Design Pascal Case": 0, + "Design Upper Case": 5, + "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)": 5, + "Direct Downstream (Dependency Blast Radius)": 0, + "Total Upstream (Absolute Fragility)": 1, + "Total Downstream (Absolute Dependency Blast Radius)": 0 + }, + "9. Extracted Dependencies": [ + "base", + "generated", + "golang:", + "scratch", + "tools" + ] + }, + "dockerfile/moby/test_targets/syscall.Dockerfile": { + "1. Artifact Identity": { + "Filename": "syscall.Dockerfile", + "Path": "dockerfile/moby/test_targets/syscall.Dockerfile", + "Language": "Dockerfile", + "Architect": "Unknown Architect", + "Indentation Style": "Tabs", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "dockerfile", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .dockerfile)" + }, + "2. Topological Coordinates": { + "X": -9162.92, + "Y": -170.42, + "Z": 1318.68 + }, + "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": 21, + "Coding LOC": 13, + "Documentation LOC": 1, + "Structural Magnitude": 12.76, + "Control Flow Ratio": "90.0%", + "Popularity Rank": 0, + "Raw Churn Frequency": 0.0, + "Authorship Centralization": 0.0, + "Ownership Entropy": 0.0, + "Raw Cognitive Density": 1.077 + }, + "4. Vulnerability & Risk Exposures": { + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "2.72%", + "API Exposure": "0.0%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "0.0%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "86.67%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "62.85%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "5. Function Analysis": [ + { + "Function Name": "RUN", + "Structural Impact": 7.3, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 6, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 12, + "End Line": 18 + }, + { + "Function Name": "RUN", + "Structural Impact": 3.0, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 2, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 20, + "End Line": 20 + }, + { + "Function Name": "RUN", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "50.0%", + "Start Line": 6, + "End Line": 10 + } + ], + "6. Contextual Mitigations & Amplifications": "None Detected", + "7. Structural Signatures (Net Mitigated Signals)": { + "Control Flow Branches": 9, + "Sequential Logic Declarations": 1, + "Function Parameters": 1, + "Function/Method Declarations": 3, + "Class/Entity Declarations": 1, + "Defensive Programming Constructs": 0, + "Type/Safety Bypasses": 0, + "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, + "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": 1, + "Structural Tab Indentations": 6, + "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": 1, + "Design Camel Case": 0, + "Design Snake Case": 0, + "Design Pascal Case": 0, + "Design Upper Case": 1, + "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)": 1, + "Direct Downstream (Dependency Blast Radius)": 0, + "Total Upstream (Absolute Fragility)": 0, + "Total Downstream (Absolute Dependency Blast Radius)": 0 + }, + "9. Extracted Dependencies": [ + "debian:" + ] + }, + "dockerfile/moby/test_targets/windows.Dockerfile": { + "1. Artifact Identity": { + "Filename": "windows.Dockerfile", + "Path": "dockerfile/moby/test_targets/windows.Dockerfile", + "Language": "Dockerfile", + "Architect": "Unknown Architect", + "Indentation Style": "Spaces", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "dockerfile", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .dockerfile)" + }, + "2. Topological Coordinates": { + "X": -8945.82, + "Y": -79.86, + "Z": 2057.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": 314, + "Coding LOC": 132, + "Documentation LOC": 146, + "Structural Magnitude": 12.44, + "Control Flow Ratio": "80.0%", + "Popularity Rank": 0, + "Raw Churn Frequency": 0.0, + "Authorship Centralization": 0.0, + "Ownership Entropy": 0.0, + "Raw Cognitive Density": 0.114 + }, + "4. Vulnerability & Risk Exposures": { + "Cognitive Load Exposure": "6.61%", + "Error & Exception Exposure": "57.84%", + "Tech Debt Exposure": "99.96%", + "Testing Exposure": "2.34%", + "API Exposure": "2.41%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "100.0%", - "Commented Logic Exposure": "0.0%", + "State Flux Exposure": "14.22%", + "Commented Logic Exposure": "10.53%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", @@ -839868,151 +841317,81 @@ }, "5. Function Analysis": [ { - "Function Name": "supportsShallowClone", - "Structural Impact": 17.2, - "Lines of Code (LOC)": 32, - "Control Flow Branches": 10, - "Input Parameters": 1, - "Control Flow Ratio": "66.7%", - "Start Line": 142, - "End Line": 173 - }, - { - "Function Name": "checkout", - "Structural Impact": 11.3, - "Lines of Code (LOC)": 28, - "Control Flow Branches": 6, - "Input Parameters": 1, - "Control Flow Ratio": "54.5%", - "Start Line": 175, - "End Line": 202 - }, - { - "Function Name": "clone", - "Structural Impact": 10.1, - "Lines of Code (LOC)": 42, - "Control Flow Branches": 7, - "Input Parameters": 0, - "Control Flow Ratio": "46.7%", - "Start Line": 49, - "End Line": 90 - }, - { - "Function Name": "parseRemoteURL", - "Structural Impact": 9.9, - "Lines of Code (LOC)": 29, - "Control Flow Branches": 5, - "Input Parameters": 1, - "Control Flow Ratio": "62.5%", - "Start Line": 92, - "End Line": 120 - }, - { - "Function Name": "Clone", - "Structural Impact": 7.5, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 3, - "Input Parameters": 2, - "Control Flow Ratio": "60.0%", - "Start Line": 36, - "End Line": 47 - }, - { - "Function Name": "isGitTransport", - "Structural Impact": 6.3, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 3, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 223, - "End Line": 234 - }, - { - "Function Name": "gitWithinDir", - "Structural Impact": 4.3, - "Lines of Code (LOC)": 16, - "Control Flow Branches": 1, - "Input Parameters": 2, - "Control Flow Ratio": "50.0%", - "Start Line": 204, - "End Line": 219 - }, - { - "Function Name": "fetchArgs", - "Structural Impact": 3.9, - "Lines of Code (LOC)": 9, + "Function Name": "RUN", + "Structural Impact": 2.6, + "Lines of Code (LOC)": 13, "Control Flow Branches": 1, - "Input Parameters": 2, - "Control Flow Ratio": "50.0%", - "Start Line": 130, - "End Line": 138 + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 278, + "End Line": 290 }, { - "Function Name": "getRefAndSubdir", - "Structural Impact": 3.2, - "Lines of Code (LOC)": 7, + "Function Name": "RUN", + "Structural Impact": 2.6, + "Lines of Code (LOC)": 13, "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 122, - "End Line": 128 + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 292, + "End Line": 304 }, { - "Function Name": "getScheme", - "Structural Impact": 3.2, + "Function Name": "ENTRYPOINT", + "Structural Impact": 1.4, "Lines of Code (LOC)": 7, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "33.3%", - "Start Line": 238, - "End Line": 244 + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 307, + "End Line": 313 }, { - "Function Name": "WithIsolatedConfig", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 5, + "Function Name": "RUN", + "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": 28, - "End Line": 32 + "Start Line": 189, + "End Line": 192 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 38, - "Sequential Logic Declarations": 37, - "Function Parameters": 11, - "Function/Method Declarations": 11, + "Control Flow Branches": 8, + "Sequential Logic Declarations": 2, + "Function Parameters": 6, + "Function/Method Declarations": 4, "Class/Entity Declarations": 1, - "Defensive Programming Constructs": 14, - "Type/Safety Bypasses": 3, + "Defensive Programming Constructs": 0, + "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 1, - "Exposed API / Public Exports": 3, - "State Mutations / Variable Reassignments": 147, - "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 14, + "Exposed API / Public Exports": 1, + "State Mutations / Variable Reassignments": 1, + "Commented-out Code (Dead Logic)": 3, + "Structured Documentation Blocks": 2, "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 6, + "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)": 1, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, - "Planned Work (TODOs)": 0, - "Acknowledged Tech Debt (FIXMEs)": 0, + "Planned Work (TODOs)": 1, + "Acknowledged Tech Debt (FIXMEs)": 8, "Specification Traceability Tags": 0, "Server-Side Rendering Contexts": 0, "Event Publishers / Emitters": 0, "Dependency Injection Constructs": 0, "Preprocessor Macros": 0, - "Pointer Arithmetic & Addressing": 1, + "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, @@ -840023,16 +841402,16 @@ "Bitwise Operations": 0, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 2, - "Private / Encapsulated Scopes": 44, + "Resource Deallocation & Cleanup": 0, + "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 149, - "Structural Space Indentations": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 117, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, - "Ipc Rpc Bridges": 2, + "Ipc Rpc Bridges": 1, "Feature Flags": 0, "Serialization Parsing": 0, "Regex Execution": 0, @@ -840045,15 +841424,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 10, - "Design Camel Case": 1, - "Design Snake Case": 6, + "Core Var Decl": 14, + "Design Camel Case": 0, + "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 0, - "Design Short Vars": 3, + "Design Upper Case": 14, + "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 2, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -840063,7 +841442,7 @@ "External Network & I/O Hooks": 0, "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, - "Commented-Out Executable Logic": 3, + "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, "Non-Standard / Steganographic Imports": 0, "Non-Standard Unicode / Homoglyphs": 0, @@ -840077,44 +841456,34 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 9, + "Direct Upstream (Fragility)": 0, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 8, + "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [ - "git", - "github.com/moby/sys/symlink", - "github.com/pkg/errors", - "net/http", - "net/url", - "os", - "os/exec", - "path/filepath", - "strings" - ] + "9. Extracted Dependencies": [] } } }, "assembly/cosmopolitan_runtime": { - "Directory Group Magnitude": 224.78, + "Directory Group Magnitude": 217.88, "File Count": 15, "Ecosystem Fingerprint (Archetypes)": { "Unclassified": "100.0%" }, "Average Risk Exposures": { - "Cognitive Load Exposure": "9.46%", - "Error & Exception Exposure": "14.31%", + "Cognitive Load Exposure": "10.49%", + "Error & Exception Exposure": "15.16%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.33%", + "Testing Exposure": "1.89%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "14.9%", + "State Flux Exposure": "17.03%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "80.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "39.5%", + "Documentation Exposure": "27.34%", "Hardcoded Payload Artifacts": "0.0%" }, "Files": { @@ -840131,9 +841500,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 5991.32, + "X": 5991.53, "Y": -237.07, - "Z": -7865.18 + "Z": -7864.54 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -840143,29 +841512,29 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 31, - "Coding LOC": 27, - "Documentation LOC": 1, - "Structural Magnitude": 15.54, + "Coding LOC": 9, + "Documentation LOC": 19, + "Structural Magnitude": 14.68, "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.185 + "Raw Cognitive Density": 0.556 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "9.46%", + "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.3%", + "Testing Exposure": "1.38%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "60.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "52.14%", + "Documentation Exposure": "32.26%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [], @@ -840179,7 +841548,7 @@ "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 5, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -840211,7 +841580,7 @@ "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 12, + "Bitwise Operations": 0, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, "Resource Deallocation & Cleanup": 0, @@ -840236,12 +841605,12 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 1, + "Core Var Decl": 0, "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 Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, "Orphaned Logic": 0, @@ -840288,9 +841657,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 6721.06, - "Y": -220.85, - "Z": -7450.33 + "X": 6720.4, + "Y": -220.86, + "Z": -7450.45 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -840300,29 +841669,29 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 31, - "Coding LOC": 27, - "Documentation LOC": 1, - "Structural Magnitude": 15.54, + "Coding LOC": 9, + "Documentation LOC": 19, + "Structural Magnitude": 14.68, "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.185 + "Raw Cognitive Density": 0.556 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "9.46%", + "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.3%", + "Testing Exposure": "1.38%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "60.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "52.14%", + "Documentation Exposure": "32.26%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [], @@ -840336,7 +841705,7 @@ "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 5, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -840368,7 +841737,7 @@ "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 12, + "Bitwise Operations": 0, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, "Resource Deallocation & Cleanup": 0, @@ -840393,12 +841762,12 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 1, + "Core Var Decl": 0, "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 Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, "Orphaned Logic": 0, @@ -840445,9 +841814,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 5658.34, - "Y": -230.95, - "Z": -7307.48 + "X": 5658.84, + "Y": -230.93, + "Z": -7307.63 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -840457,29 +841826,29 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 31, - "Coding LOC": 27, - "Documentation LOC": 1, - "Structural Magnitude": 15.54, + "Coding LOC": 9, + "Documentation LOC": 19, + "Structural Magnitude": 14.68, "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.185 + "Raw Cognitive Density": 0.556 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "9.46%", + "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.3%", + "Testing Exposure": "1.38%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "60.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "52.14%", + "Documentation Exposure": "32.26%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [], @@ -840493,7 +841862,7 @@ "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 5, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -840525,7 +841894,7 @@ "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 12, + "Bitwise Operations": 0, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, "Resource Deallocation & Cleanup": 0, @@ -840550,12 +841919,12 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 1, + "Core Var Decl": 0, "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 Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, "Orphaned Logic": 0, @@ -840602,9 +841971,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 5600.04, - "Y": -231.04, - "Z": -7705.41 + "X": 5600.37, + "Y": -231.03, + "Z": -7705.08 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -840614,21 +841983,21 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 49, - "Coding LOC": 37, - "Documentation LOC": 6, - "Structural Magnitude": 8.84, + "Coding LOC": 19, + "Documentation LOC": 24, + "Structural Magnitude": 8.48, "Control Flow Ratio": "40.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.243 + "Raw Cognitive Density": 0.474 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "11.64%", + "Cognitive Load Exposure": "24.88%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.43%", + "Testing Exposure": "2.56%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -840636,7 +842005,7 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "38.84%", + "Documentation Exposure": "34.2%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -840661,7 +842030,7 @@ "Defensive Programming Constructs": 2, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 5, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -840693,7 +842062,7 @@ "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 1, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 13, + "Bitwise Operations": 1, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, "Resource Deallocation & Cleanup": 0, @@ -840718,12 +842087,12 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 1, + "Core Var Decl": 0, "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 Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, "Orphaned Logic": 0, @@ -840772,7 +842141,7 @@ "2. Topological Coordinates": { "X": 6071.21, "Y": -193.38, - "Z": -7171.83 + "Z": -7172.05 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -840782,29 +842151,29 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 32, - "Coding LOC": 28, - "Documentation LOC": 1, - "Structural Magnitude": 15.56, + "Coding LOC": 10, + "Documentation LOC": 19, + "Structural Magnitude": 15.2, "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.179 + "Raw Cognitive Density": 0.5 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "9.23%", + "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.3%", + "Testing Exposure": "1.53%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "66.67%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "51.05%", + "Documentation Exposure": "34.65%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [], @@ -840818,7 +842187,7 @@ "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 5, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -840850,7 +842219,7 @@ "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 12, + "Bitwise Operations": 0, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, "Resource Deallocation & Cleanup": 0, @@ -840875,12 +842244,12 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 1, + "Core Var Decl": 0, "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 Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, "Orphaned Logic": 0, @@ -840927,9 +842296,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 6919.49, - "Y": -200.32, - "Z": -7591.2 + "X": 6918.43, + "Y": -200.35, + "Z": -7590.89 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -840939,29 +842308,29 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 27, - "Coding LOC": 24, - "Documentation LOC": 1, - "Structural Magnitude": 3.48, + "Coding LOC": 6, + "Documentation LOC": 19, + "Structural Magnitude": 3.12, "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.25 + "Raw Cognitive Density": 1.0 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "8.94%", + "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.38%", + "Testing Exposure": "1.07%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "40.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "52.28%", + "Documentation Exposure": "21.68%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -840986,7 +842355,7 @@ "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 5, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -841018,7 +842387,7 @@ "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 12, + "Bitwise Operations": 0, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, "Resource Deallocation & Cleanup": 0, @@ -841043,12 +842412,12 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 1, + "Core Var Decl": 0, "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 Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, "Orphaned Logic": 0, @@ -841095,9 +842464,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 6236.44, - "Y": -188.99, - "Z": -7910.75 + "X": 6236.33, + "Y": -189.0, + "Z": -7910.35 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -841107,9 +842476,9 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 96, - "Coding LOC": 92, - "Documentation LOC": 2, - "Structural Magnitude": 16.84, + "Coding LOC": 74, + "Documentation LOC": 20, + "Structural Magnitude": 16.48, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -841129,7 +842498,7 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "24.19%", + "Documentation Exposure": "20.47%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [], @@ -841143,7 +842512,7 @@ "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 5, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -841175,7 +842544,7 @@ "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 12, + "Bitwise Operations": 0, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, "Resource Deallocation & Cleanup": 0, @@ -841200,12 +842569,12 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 1, + "Core Var Decl": 0, "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 Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, "Orphaned Logic": 0, @@ -841252,9 +842621,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 5986.13, - "Y": -240.47, - "Z": -7408.38 + "X": 5986.24, + "Y": -240.46, + "Z": -7408.45 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -841264,29 +842633,29 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 130, - "Coding LOC": 113, - "Documentation LOC": 8, - "Structural Magnitude": 26.26, + "Coding LOC": 95, + "Documentation LOC": 26, + "Structural Magnitude": 25.9, "Control Flow Ratio": "24.2%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.274 + "Raw Cognitive Density": 0.326 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "12.98%", - "Error & Exception Exposure": "65.54%", + "Cognitive Load Exposure": "15.52%", + "Error & Exception Exposure": "67.78%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.3%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "74.76%", + "State Flux Exposure": "84.42%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "20.31%", + "Documentation Exposure": "17.11%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [], @@ -841300,7 +842669,7 @@ "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 6, + "I/O and Network Boundaries": 1, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 9, "Commented-out Code (Dead Logic)": 0, @@ -841332,7 +842701,7 @@ "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 22, + "Bitwise Operations": 10, "Thread Synchronization Locks": 3, "Immutable Data Declarations": 0, "Resource Deallocation & Cleanup": 0, @@ -841357,12 +842726,12 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 11, + "Core Var Decl": 10, "Design Camel Case": 0, - "Design Snake Case": 1, + "Design Snake Case": 0, "Design Pascal Case": 0, "Design Upper Case": 10, - "Design Short Vars": 1, + "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, "Orphaned Logic": 0, @@ -841409,9 +842778,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 6234.71, + "X": 6234.64, "Y": -208.54, - "Z": -7526.02 + "Z": -7525.93 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -841421,29 +842790,29 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 76, - "Coding LOC": 65, - "Documentation LOC": 4, - "Structural Magnitude": 28.3, + "Coding LOC": 47, + "Documentation LOC": 22, + "Structural Magnitude": 27.94, "Control Flow Ratio": "22.7%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.523 + "Raw Cognitive Density": 0.723 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "28.75%", - "Error & Exception Exposure": "76.22%", + "Cognitive Load Exposure": "47.34%", + "Error & Exception Exposure": "81.42%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.3%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "99.5%", + "State Flux Exposure": "99.97%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "28.56%", + "Documentation Exposure": "23.91%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [], @@ -841457,7 +842826,7 @@ "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 6, + "I/O and Network Boundaries": 1, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 12, "Commented-out Code (Dead Logic)": 0, @@ -841489,7 +842858,7 @@ "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 18, + "Bitwise Operations": 6, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, "Resource Deallocation & Cleanup": 0, @@ -841514,12 +842883,12 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 1, + "Core Var Decl": 0, "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 Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, "Orphaned Logic": 0, @@ -841566,9 +842935,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 5778.95, - "Y": -209.73, - "Z": -7606.23 + "X": 5779.19, + "Y": -209.72, + "Z": -7606.08 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -841578,18 +842947,18 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 41, - "Coding LOC": 38, - "Documentation LOC": 1, - "Structural Magnitude": 15.76, + "Coding LOC": 20, + "Documentation LOC": 19, + "Structural Magnitude": 15.4, "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.132 + "Raw Cognitive Density": 0.25 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "7.77%", + "Cognitive Load Exposure": "11.92%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.3%", @@ -841600,7 +842969,7 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "42.31%", + "Documentation Exposure": "39.16%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [], @@ -841614,7 +842983,7 @@ "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 5, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -841646,7 +843015,7 @@ "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 12, + "Bitwise Operations": 0, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, "Resource Deallocation & Cleanup": 0, @@ -841671,12 +843040,12 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 1, + "Core Var Decl": 0, "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 Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, "Orphaned Logic": 0, @@ -841723,9 +843092,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 6474.13, + "X": 6473.86, "Y": -203.73, - "Z": -7070.96 + "Z": -7071.12 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -841735,18 +843104,18 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 65, - "Coding LOC": 62, - "Documentation LOC": 1, - "Structural Magnitude": 16.24, + "Coding LOC": 44, + "Documentation LOC": 19, + "Structural Magnitude": 15.88, "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 + "Raw Cognitive Density": 0.114 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "0.0%", + "Cognitive Load Exposure": "7.27%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.3%", @@ -841757,7 +843126,7 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "30.9%", + "Documentation Exposure": "26.4%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [], @@ -841771,7 +843140,7 @@ "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 5, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -841803,7 +843172,7 @@ "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 12, + "Bitwise Operations": 0, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, "Resource Deallocation & Cleanup": 0, @@ -841828,12 +843197,12 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 1, + "Core Var Decl": 0, "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 Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, "Orphaned Logic": 0, @@ -841880,9 +843249,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 6626.74, - "Y": -223.67, - "Z": -7951.72 + "X": 6626.39, + "Y": -223.68, + "Z": -7951.46 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -841892,29 +843261,29 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 32, - "Coding LOC": 29, - "Documentation LOC": 1, - "Structural Magnitude": 15.58, + "Coding LOC": 11, + "Documentation LOC": 19, + "Structural Magnitude": 15.22, "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.172 + "Raw Cognitive Density": 0.455 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "9.03%", + "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.3%", + "Testing Exposure": "1.69%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "73.33%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "50.01%", + "Documentation Exposure": "36.89%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [], @@ -841928,7 +843297,7 @@ "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 5, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -841960,7 +843329,7 @@ "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 12, + "Bitwise Operations": 0, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, "Resource Deallocation & Cleanup": 0, @@ -841985,12 +843354,12 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 1, + "Core Var Decl": 0, "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 Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, "Orphaned Logic": 0, @@ -842037,9 +843406,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 6459.81, - "Y": -203.77, - "Z": -8176.85 + "X": 6459.59, + "Y": -203.78, + "Z": -8176.45 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -842049,29 +843418,29 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 66, - "Coding LOC": 58, - "Documentation LOC": 6, - "Structural Magnitude": 14.36, + "Coding LOC": 40, + "Documentation LOC": 24, + "Structural Magnitude": 14.0, "Control Flow Ratio": "8.7%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.224 + "Raw Cognitive Density": 0.325 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "8.63%", - "Error & Exception Exposure": "72.82%", + "Cognitive Load Exposure": "10.81%", + "Error & Exception Exposure": "78.26%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.41%", + "Testing Exposure": "2.47%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "49.22%", + "State Flux Exposure": "71.09%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "26.42%", + "Documentation Exposure": "20.99%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -842106,7 +843475,7 @@ "Defensive Programming Constructs": 1, "Type/Safety Bypasses": 2, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 5, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 3, "Commented-out Code (Dead Logic)": 0, @@ -842138,7 +843507,7 @@ "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 12, + "Bitwise Operations": 0, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, "Resource Deallocation & Cleanup": 0, @@ -842163,1576 +843532,11 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 1, - "Design Camel Case": 0, - "Design Snake Case": 1, - "Design Pascal Case": 0, - "Design Upper Case": 0, - "Design Short Vars": 1, - "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)": 0, - "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 - }, - "9. Extracted Dependencies": [] - }, - "assembly/cosmopolitan_runtime/mcount.S": { - "1. Artifact Identity": { - "Filename": "mcount.S", - "Path": "assembly/cosmopolitan_runtime/mcount.S", - "Language": "Assembly", - "Architect": "Unknown Architect", - "Indentation Style": "Tabs", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "assembly", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .s)" - }, - "2. Topological Coordinates": { - "X": 5834.81, - "Y": -185.34, - "Z": -6888.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": 27, - "Coding LOC": 24, - "Documentation LOC": 1, - "Structural Magnitude": 2.68, - "Control Flow Ratio": "100.0%", - "Popularity Rank": 0, - "Raw Churn Frequency": 0.0, - "Authorship Centralization": 0.0, - "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.25 - }, - "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "11.92%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "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": "55.67%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "5. Function Analysis": [ - { - "Function Name": "mcount", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 23, - "End Line": 26 - } - ], - "6. Contextual Mitigations & Amplifications": "None Detected", - "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 1, - "Sequential Logic Declarations": 0, - "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": 5, - "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": 12, - "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": 3, - "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": 1, - "Design Camel Case": 0, - "Design Snake Case": 1, - "Design Pascal Case": 0, - "Design Upper Case": 0, - "Design Short Vars": 1, - "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)": 0, - "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 - }, - "9. Extracted Dependencies": [] - }, - "assembly/cosmopolitan_runtime/mul4x4adx.S": { - "1. Artifact Identity": { - "Filename": "mul4x4adx.S", - "Path": "assembly/cosmopolitan_runtime/mul4x4adx.S", - "Language": "Assembly", - "Architect": "Unknown Architect", - "Indentation Style": "Tabs", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "assembly", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .s)" - }, - "2. Topological Coordinates": { - "X": 6396.72, - "Y": -205.22, - "Z": -6773.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": 222, - "Coding LOC": 218, - "Documentation LOC": 1, - "Structural Magnitude": 14.26, - "Control Flow Ratio": "1.3%", - "Popularity Rank": 0, - "Raw Churn Frequency": 0.0, - "Authorship Centralization": 0.0, - "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.028 - }, - "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "4.69%", - "Error & Exception Exposure": "0.0%", - "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": "15.59%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "5. Function Analysis": [ - { - "Function Name": "Mul4x4Adx", - "Structural Impact": 9.9, - "Lines of Code (LOC)": 93, - "Control Flow Branches": 1, - "Input Parameters": 6, - "Control Flow Ratio": "2.4%", - "Start Line": 36, - "End Line": 128 - } - ], - "6. Contextual Mitigations & Amplifications": "None Detected", - "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 1, - "Sequential Logic Declarations": 76, - "Function Parameters": 139, - "Function/Method Declarations": 1, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 1, - "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 5, - "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 0, - "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 4, - "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": 88, - "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": 16, - "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": 95, - "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": 5, - "Design Camel Case": 0, - "Design Snake Case": 1, - "Design Pascal Case": 0, - "Design Upper Case": 4, - "Design Short Vars": 5, - "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)": 0, - "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 - }, - "9. Extracted Dependencies": [] - } - } - }, - "dockerfile/moby/test_targets": { - "Directory Group Magnitude": 224.04, - "File Count": 4, - "Ecosystem Fingerprint (Archetypes)": { - "Unclassified": "100.0%" - }, - "Average Risk Exposures": { - "Cognitive Load Exposure": "24.78%", - "Error & Exception Exposure": "44.35%", - "Tech Debt Exposure": "37.26%", - "Testing Exposure": "21.87%", - "API Exposure": "0.6%", - "Concurrency Exposure": "4.79%", - "State Flux Exposure": "25.6%", - "Commented Logic Exposure": "4.19%", - "Specification Exposure": "96.67%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "29.05%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "Files": { - "dockerfile/moby/test_targets/daemon.Dockerfile": { - "1. Artifact Identity": { - "Filename": "daemon.Dockerfile", - "Path": "dockerfile/moby/test_targets/daemon.Dockerfile", - "Language": "Dockerfile", - "Architect": "Unknown Architect", - "Indentation Style": "Spaces", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "dockerfile", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .dockerfile)" - }, - "2. Topological Coordinates": { - "X": -9188.29, - "Y": -97.87, - "Z": 1626.63 - }, - "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": 624, - "Coding LOC": 477, - "Documentation LOC": 89, - "Structural Magnitude": 180.64, - "Control Flow Ratio": "78.4%", - "Popularity Rank": 0, - "Raw Churn Frequency": 0.0, - "Authorship Centralization": 0.0, - "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.813 - }, - "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "52.77%", - "Error & Exception Exposure": "55.63%", - "Tech Debt Exposure": "49.08%", - "Testing Exposure": "80.0%", - "API Exposure": "0.0%", - "Concurrency Exposure": "19.14%", - "State Flux Exposure": "29.23%", - "Commented Logic Exposure": "6.23%", - "Specification Exposure": "100.0%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "11.92%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "5. Function Analysis": [ - { - "Function Name": "RUN", - "Structural Impact": 8.9, - "Lines of Code (LOC)": 38, - "Control Flow Branches": 6, - "Input Parameters": 0, - "Control Flow Ratio": "85.7%", - "Start Line": 559, - "End Line": 596 - }, - { - "Function Name": "RUN", - "Structural Impact": 8.0, - "Lines of Code (LOC)": 20, - "Control Flow Branches": 6, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 163, - "End Line": 182 - }, - { - "Function Name": "RUN", - "Structural Impact": 7.2, - "Lines of Code (LOC)": 24, - "Control Flow Branches": 5, - "Input Parameters": 0, - "Control Flow Ratio": "83.3%", - "Start Line": 354, - "End Line": 377 - }, - { - "Function Name": "RUN", - "Structural Impact": 5.9, - "Lines of Code (LOC)": 18, - "Control Flow Branches": 4, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 322, - "End Line": 339 - }, - { - "Function Name": "RUN", - "Structural Impact": 5.5, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 4, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 75, - "End Line": 84 - }, - { - "Function Name": "RUN", - "Structural Impact": 4.8, - "Lines of Code (LOC)": 17, - "Control Flow Branches": 3, - "Input Parameters": 0, - "Control Flow Ratio": "75.0%", - "Start Line": 256, - "End Line": 272 - }, - { - "Function Name": "RUN", - "Structural Impact": 4.7, - "Lines of Code (LOC)": 13, - "Control Flow Branches": 3, - "Input Parameters": 0, - "Control Flow Ratio": "75.0%", - "Start Line": 214, - "End Line": 226 - }, - { - "Function Name": "RUN", - "Structural Impact": 3.5, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 2, - "Input Parameters": 0, - "Control Flow Ratio": "66.7%", - "Start Line": 227, - "End Line": 236 - }, - { - "Function Name": "RUN", - "Structural Impact": 3.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 2, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 553, - "End Line": 558 - }, - { - "Function Name": "RUN", - "Structural Impact": 3.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 2, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 461, - "End Line": 463 - }, - { - "Function Name": "RUN", - "Structural Impact": 3.0, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 2, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 68, - "End Line": 68 - }, - { - "Function Name": "RUN", - "Structural Impact": 3.0, - "Lines of Code (LOC)": 48, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 390, - "End Line": 437 - }, - { - "Function Name": "RUN", - "Structural Impact": 3.0, - "Lines of Code (LOC)": 33, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 474, - "End Line": 506 - }, - { - "Function Name": "RUN", - "Structural Impact": 2.8, - "Lines of Code (LOC)": 16, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "50.0%", - "Start Line": 507, - "End Line": 522 - }, - { - "Function Name": "RUN", - "Structural Impact": 2.7, - "Lines of Code (LOC)": 14, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 340, - "End Line": 353 - }, - { - "Function Name": "RUN", - "Structural Impact": 2.5, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 91, - "End Line": 100 - }, - { - "Function Name": "RUN", - "Structural Impact": 2.5, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "50.0%", - "Start Line": 204, - "End Line": 213 - }, - { - "Function Name": "RUN", - "Structural Impact": 2.4, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "50.0%", - "Start Line": 138, - "End Line": 145 - }, - { - "Function Name": "RUN", - "Structural Impact": 2.4, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 183, - "End Line": 190 - }, - { - "Function Name": "RUN", - "Structural Impact": 2.4, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 191, - "End Line": 197 - }, - { - "Function Name": "RUN", - "Structural Impact": 2.4, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 248, - "End Line": 255 - }, - { - "Function Name": "RUN", - "Structural Impact": 2.4, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 315, - "End Line": 321 - }, - { - "Function Name": "RUN", - "Structural Impact": 2.4, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 442, - "End Line": 448 - }, - { - "Function Name": "RUN", - "Structural Impact": 2.4, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 523, - "End Line": 530 - }, - { - "Function Name": "RUN", - "Structural Impact": 2.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 85, - "End Line": 90 - }, - { - "Function Name": "RUN", - "Structural Impact": 2.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 113, - "End Line": 118 - }, - { - "Function Name": "RUN", - "Structural Impact": 2.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 146, - "End Line": 151 - }, - { - "Function Name": "RUN", - "Structural Impact": 2.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 157, - "End Line": 162 - }, - { - "Function Name": "RUN", - "Structural Impact": 2.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 198, - "End Line": 203 - }, - { - "Function Name": "RUN", - "Structural Impact": 2.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 237, - "End Line": 242 - }, - { - "Function Name": "RUN", - "Structural Impact": 2.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 454, - "End Line": 459 - }, - { - "Function Name": "RUN", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 70, - "End Line": 74 - }, - { - "Function Name": "RUN", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "50.0%", - "Start Line": 119, - "End Line": 123 - }, - { - "Function Name": "RUN", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "50.0%", - "Start Line": 152, - "End Line": 156 - }, - { - "Function Name": "RUN", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "50.0%", - "Start Line": 243, - "End Line": 247 - }, - { - "Function Name": "RUN", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 273, - "End Line": 276 - }, - { - "Function Name": "RUN", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "50.0%", - "Start Line": 277, - "End Line": 280 - }, - { - "Function Name": "RUN", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 281, - "End Line": 284 - }, - { - "Function Name": "RUN", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "50.0%", - "Start Line": 310, - "End Line": 314 - }, - { - "Function Name": "RUN", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "50.0%", - "Start Line": 380, - "End Line": 384 - }, - { - "Function Name": "RUN", - "Structural Impact": 2.1, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 308, - "End Line": 309 - }, - { - "Function Name": "RUN", - "Structural Impact": 2.1, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 378, - "End Line": 379 - }, - { - "Function Name": "RUN", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 17, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 291, - "End Line": 307 - }, - { - "Function Name": "RUN", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 101, - "End Line": 112 - }, - { - "Function Name": "RUN", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 14, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 124, - "End Line": 137 - }, - { - "Function Name": "RUN", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 22, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 531, - "End Line": 552 - }, - { - "Function Name": "RUN", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 27, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 597, - "End Line": 623 - }, - { - "Function Name": "RUN", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 57, - "End Line": 63 - }, - { - "Function Name": "RUN", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 285, - "End Line": 290 - }, - { - "Function Name": "RUN", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 385, - "End Line": 389 - }, - { - "Function Name": "ENTRYPOINT", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 449, - "End Line": 453 - }, - { - "Function Name": "RUN", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 69, - "End Line": 69 - }, - { - "Function Name": "ENTRYPOINT", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 439, - "End Line": 441 - }, - { - "Function Name": "RUN", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 460, - "End Line": 460 - }, - { - "Function Name": "RUN", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 465, - "End Line": 465 - }, - { - "Function Name": "RUN", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 467, - "End Line": 467 - }, - { - "Function Name": "RUN", - "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": "RUN", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 471, - "End Line": 471 - } - ], - "6. Contextual Mitigations & Amplifications": "None Detected", - "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 69, - "Sequential Logic Declarations": 19, - "Function Parameters": 60, - "Function/Method Declarations": 58, - "Class/Entity Declarations": 69, - "Defensive Programming Constructs": 7, - "Type/Safety Bypasses": 3, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 74, - "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 18, - "Commented-out Code (Dead Logic)": 2, - "Structured Documentation Blocks": 5, - "Unit Test Assertions": 0, - "Asynchronous/Concurrent Execution": 1, - "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 0, - "Global State Dependencies": 7, - "Decorators and Annotations": 0, - "Generic Type Abstractions": 0, - "Collection Iterators / Comprehensions": 0, - "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 55, - "Module Dependencies (Imports)": 105, - "Authorship Metadata": 0, - "Planned Work (TODOs)": 0, - "Acknowledged Tech Debt (FIXMEs)": 7, - "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": 22, - "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 1, - "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 0, - "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 7, - "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 69, - "Event Listeners & Subscribers": 0, - "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, - "Structural Space Indentations": 210, - "Hardware Bridge": 0, - "Cryptography": 0, - "Auth Middleware": 0, - "Ipc Rpc Bridges": 4, - "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": 54, - "Design Camel Case": 0, - "Design Snake Case": 1, - "Design Pascal Case": 0, - "Design Upper Case": 53, - "Design Short Vars": 3, - "Design Long Vars": 2, - "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": 1, - "Dynamic Code Execution (Eval/Exec)": 0, - "Global Environment Mutation": 0, - "Commented-Out Executable Logic": 2, - "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)": 54, - "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 35, - "Total Downstream (Absolute Dependency Blast Radius)": 0 - }, - "9. Extracted Dependencies": [ - "--platform", - "all", - "base", - "binary-dummy", - "build", - "build-dummy", - "buildx", - "busybox", - "compose", - "containerd", - "containerd-", - "containerd-build", - "containerutil", - "containerutil-", - "containerutil-build", - "containerutil-windows-", - "crun", - "debian:", - "delve", - "delve-", - "dev-base", - "dev-firewalld-", - "dev-systemd-", - "dev-systemd-false", - "dev-systemd-true", - "distribution/distribution:", - "docker/buildx-bin:", - "docker/compose-bin:", - "docker:dind", - "dockercli", - "dockercli-integration", - "frozen-images", - "golangci_lint", - "gopls", - "gotestsum", - "gowinres", - "moby/vpnkit-bin:", - "registry", - "rootlesskit", - "rootlesskit-", - "rootlesskit-build", - "runc", - "runc-", - "runc-build", - "scratch", - "shfmt", - "tini", - "tini-", - "tini-build", - "tonistiigi/xx:", - "vpnkit", - "vpnkit-", - "vpnkit-linux-", - "xx" - ] - }, - "dockerfile/moby/test_targets/generate-files.Dockerfile": { - "1. Artifact Identity": { - "Filename": "generate-files.Dockerfile", - "Path": "dockerfile/moby/test_targets/generate-files.Dockerfile", - "Language": "Dockerfile", - "Architect": "Unknown Architect", - "Indentation Style": "Spaces", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "dockerfile", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .dockerfile)" - }, - "2. Topological Coordinates": { - "X": -9452.6, - "Y": -0.84, - "Z": 1889.56 - }, - "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": 75, - "Coding LOC": 65, - "Documentation LOC": 2, - "Structural Magnitude": 18.2, - "Control Flow Ratio": "71.4%", - "Popularity Rank": 0, - "Raw Churn Frequency": 0.0, - "Authorship Centralization": 0.0, - "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.592 - }, - "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "34.73%", - "Error & Exception Exposure": "63.92%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.42%", - "API Exposure": "0.0%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "58.94%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "29.52%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "5. Function Analysis": [ - { - "Function Name": "RUN", - "Structural Impact": 4.6, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 3, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 61, - "End Line": 72 - }, - { - "Function Name": "RUN", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 9, - "End Line": 13 - }, - { - "Function Name": "RUN", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 11, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 14, - "End Line": 24 - }, - { - "Function Name": "RUN", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 25, - "End Line": 34 - }, - { - "Function Name": "RUN", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 15, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 35, - "End Line": 49 - }, - { - "Function Name": "RUN", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 11, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 50, - "End Line": 60 - } - ], - "6. Contextual Mitigations & Amplifications": "None Detected", - "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 5, - "Sequential Logic Declarations": 2, - "Function Parameters": 6, - "Function/Method Declarations": 6, - "Class/Entity Declarations": 6, - "Defensive Programming Constructs": 2, - "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 8, - "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 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": 2, - "Decorators and Annotations": 0, - "Generic Type Abstractions": 0, - "Collection Iterators / Comprehensions": 0, - "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 2, - "Module Dependencies (Imports)": 7, - "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": 3, - "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 1, - "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 0, - "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 6, - "Event Listeners & Subscribers": 0, - "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, - "Structural Space Indentations": 36, - "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": 7, - "Design Camel Case": 0, - "Design Snake Case": 2, - "Design Pascal Case": 0, - "Design Upper Case": 5, - "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)": 5, - "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 1, - "Total Downstream (Absolute Dependency Blast Radius)": 0 - }, - "9. Extracted Dependencies": [ - "base", - "generated", - "golang:", - "scratch", - "tools" - ] - }, - "dockerfile/moby/test_targets/syscall.Dockerfile": { - "1. Artifact Identity": { - "Filename": "syscall.Dockerfile", - "Path": "dockerfile/moby/test_targets/syscall.Dockerfile", - "Language": "Dockerfile", - "Architect": "Unknown Architect", - "Indentation Style": "Tabs", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "dockerfile", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .dockerfile)" - }, - "2. Topological Coordinates": { - "X": -9162.92, - "Y": -170.42, - "Z": 1318.68 - }, - "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": 21, - "Coding LOC": 13, - "Documentation LOC": 1, - "Structural Magnitude": 12.76, - "Control Flow Ratio": "90.0%", - "Popularity Rank": 0, - "Raw Churn Frequency": 0.0, - "Authorship Centralization": 0.0, - "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.077 - }, - "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.0%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.72%", - "API Exposure": "0.0%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "86.67%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "62.85%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "5. Function Analysis": [ - { - "Function Name": "RUN", - "Structural Impact": 7.3, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 6, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 12, - "End Line": 18 - }, - { - "Function Name": "RUN", - "Structural Impact": 3.0, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 2, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 20, - "End Line": 20 - }, - { - "Function Name": "RUN", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "50.0%", - "Start Line": 6, - "End Line": 10 - } - ], - "6. Contextual Mitigations & Amplifications": "None Detected", - "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 9, - "Sequential Logic Declarations": 1, - "Function Parameters": 1, - "Function/Method Declarations": 3, - "Class/Entity Declarations": 1, - "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 0, - "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, - "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": 1, - "Structural Tab Indentations": 6, - "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": 1, + "Core Var Decl": 0, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 1, + "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, @@ -843760,31 +843564,29 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 1, + "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": [ - "debian:" - ] + "9. Extracted Dependencies": [] }, - "dockerfile/moby/test_targets/windows.Dockerfile": { + "assembly/cosmopolitan_runtime/mcount.S": { "1. Artifact Identity": { - "Filename": "windows.Dockerfile", - "Path": "dockerfile/moby/test_targets/windows.Dockerfile", - "Language": "Dockerfile", + "Filename": "mcount.S", + "Path": "assembly/cosmopolitan_runtime/mcount.S", + "Language": "Assembly", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Tabs", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "dockerfile", + "Folder Dominant Lang": "assembly", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .dockerfile)" + "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -8945.82, - "Y": -79.86, - "Z": 2057.6 + "X": 5835.48, + "Y": -185.31, + "Z": -6888.97 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -843793,94 +843595,64 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 314, - "Coding LOC": 132, - "Documentation LOC": 146, - "Structural Magnitude": 12.44, - "Control Flow Ratio": "80.0%", + "Total LOC": 27, + "Coding LOC": 6, + "Documentation LOC": 19, + "Structural Magnitude": 2.32, + "Control Flow Ratio": "100.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.114 + "Raw Cognitive Density": 1.0 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "6.61%", - "Error & Exception Exposure": "57.84%", - "Tech Debt Exposure": "99.96%", - "Testing Exposure": "2.34%", - "API Exposure": "2.41%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "1.02%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "14.22%", - "Commented Logic Exposure": "10.53%", - "Specification Exposure": "100.0%", + "State Flux Exposure": "0.0%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "40.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "11.92%", + "Documentation Exposure": "23.94%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "RUN", - "Structural Impact": 2.6, - "Lines of Code (LOC)": 13, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 278, - "End Line": 290 - }, - { - "Function Name": "RUN", - "Structural Impact": 2.6, - "Lines of Code (LOC)": 13, + "Function Name": "mcount", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 4, "Control Flow Branches": 1, "Input Parameters": 0, "Control Flow Ratio": "100.0%", - "Start Line": 292, - "End Line": 304 - }, - { - "Function Name": "ENTRYPOINT", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 307, - "End Line": 313 - }, - { - "Function Name": "RUN", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 189, - "End Line": 192 + "Start Line": 23, + "End Line": 26 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 8, - "Sequential Logic Declarations": 2, - "Function Parameters": 6, - "Function/Method Declarations": 4, - "Class/Entity Declarations": 1, + "Control Flow Branches": 1, + "Sequential Logic Declarations": 0, + "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": 1, - "Exposed API / Public Exports": 1, - "State Mutations / Variable Reassignments": 1, - "Commented-out Code (Dead Logic)": 3, - "Structured Documentation Blocks": 2, + "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": 1, + "Global State Dependencies": 0, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -843888,8 +843660,8 @@ "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, - "Planned Work (TODOs)": 1, - "Acknowledged Tech Debt (FIXMEs)": 8, + "Planned Work (TODOs)": 0, + "Acknowledged Tech Debt (FIXMEs)": 0, "Specification Traceability Tags": 0, "Server-Side Rendering Contexts": 0, "Event Publishers / Emitters": 0, @@ -843910,12 +843682,12 @@ "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, - "Structural Space Indentations": 117, + "Structural Tab Indentations": 3, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, - "Ipc Rpc Bridges": 1, + "Ipc Rpc Bridges": 0, "Feature Flags": 0, "Serialization Parsing": 0, "Regex Execution": 0, @@ -843928,11 +843700,11 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 14, + "Core Var Decl": 0, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 14, + "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, @@ -843966,6 +843738,174 @@ "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [] + }, + "assembly/cosmopolitan_runtime/mul4x4adx.S": { + "1. Artifact Identity": { + "Filename": "mul4x4adx.S", + "Path": "assembly/cosmopolitan_runtime/mul4x4adx.S", + "Language": "Assembly", + "Architect": "Unknown Architect", + "Indentation Style": "Tabs", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "assembly", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .s)" + }, + "2. Topological Coordinates": { + "X": 6396.54, + "Y": -205.22, + "Z": -6773.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": 222, + "Coding LOC": 200, + "Documentation LOC": 19, + "Structural Magnitude": 13.9, + "Control Flow Ratio": "1.3%", + "Popularity Rank": 0, + "Raw Churn Frequency": 0.0, + "Authorship Centralization": 0.0, + "Ownership Entropy": 0.0, + "Raw Cognitive Density": 0.03 + }, + "4. Vulnerability & Risk Exposures": { + "Cognitive Load Exposure": "4.68%", + "Error & Exception Exposure": "0.0%", + "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": "13.88%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "5. Function Analysis": [ + { + "Function Name": "Mul4x4Adx", + "Structural Impact": 9.9, + "Lines of Code (LOC)": 93, + "Control Flow Branches": 1, + "Input Parameters": 6, + "Control Flow Ratio": "2.4%", + "Start Line": 36, + "End Line": 128 + } + ], + "6. Contextual Mitigations & Amplifications": "None Detected", + "7. Structural Signatures (Net Mitigated Signals)": { + "Control Flow Branches": 1, + "Sequential Logic Declarations": 76, + "Function Parameters": 139, + "Function/Method Declarations": 1, + "Class/Entity Declarations": 0, + "Defensive Programming Constructs": 1, + "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": 4, + "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": 88, + "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": 4, + "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": 95, + "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": 4, + "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)": 0, + "Direct Downstream (Dependency Blast Radius)": 0, + "Total Upstream (Absolute Fragility)": 0, + "Total Downstream (Absolute Dependency Blast Radius)": 0 + }, + "9. Extracted Dependencies": [] } } }, @@ -874530,9 +874470,9 @@ "Identity Proof": "Single Indicator (Ext: .xml)" }, "2. Topological Coordinates": { - "X": 6612.97, + "X": 6612.8, "Y": 112.82, - "Z": -9071.03 + "Z": -9070.81 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -874687,9 +874627,9 @@ "Identity Proof": "Single Indicator (Ext: .xml)" }, "2. Topological Coordinates": { - "X": 6830.97, + "X": 6830.81, "Y": 160.61, - "Z": -8414.53 + "Z": -8414.31 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -874844,9 +874784,9 @@ "Identity Proof": "Single Indicator (Ext: .xml)" }, "2. Topological Coordinates": { - "X": 6132.08, + "X": 6131.91, "Y": 252.1, - "Z": -8734.63 + "Z": -8734.41 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -875001,9 +874941,9 @@ "Identity Proof": "Single Indicator (Ext: .cls)" }, "2. Topological Coordinates": { - "X": 6533.48, + "X": 6533.32, "Y": 135.41, - "Z": -8737.51 + "Z": -8737.29 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -875309,9 +875249,9 @@ "Identity Proof": "Single Indicator (Ext: .cls)" }, "2. Topological Coordinates": { - "X": 6915.39, + "X": 6915.22, "Y": 94.78, - "Z": -8963.89 + "Z": -8963.67 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -875497,9 +875437,9 @@ "Identity Proof": "Single Indicator (Ext: .cls)" }, "2. Topological Coordinates": { - "X": 6291.38, + "X": 6291.21, "Y": 231.79, - "Z": -8578.39 + "Z": -8578.17 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -876903,9 +876843,9 @@ "Identity Proof": "Single Indicator (Ext: .blp)" }, "2. Topological Coordinates": { - "X": -2658.55, + "X": -2658.51, "Y": 229.77, - "Z": -7977.36 + "Z": -7977.23 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -877060,9 +877000,9 @@ "Identity Proof": "Single Indicator (Ext: .blp)" }, "2. Topological Coordinates": { - "X": -2388.84, + "X": -2388.8, "Y": 150.65, - "Z": -8537.46 + "Z": -8537.33 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -877217,9 +877157,9 @@ "Identity Proof": "Single Indicator (Ext: .blp)" }, "2. Topological Coordinates": { - "X": -2921.02, + "X": -2920.98, "Y": 150.33, - "Z": -8365.48 + "Z": -8365.35 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -877374,9 +877314,9 @@ "Identity Proof": "Single Indicator (Ext: .blp)" }, "2. Topological Coordinates": { - "X": -2177.67, + "X": -2177.64, "Y": 218.44, - "Z": -7770.98 + "Z": -7770.85 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -877531,9 +877471,9 @@ "Identity Proof": "Single Indicator (Ext: .blp)" }, "2. Topological Coordinates": { - "X": -2489.32, + "X": -2489.28, "Y": 184.72, - "Z": -8188.96 + "Z": -8188.84 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -877713,9 +877653,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": 7937.28, + "X": 7936.67, "Y": -134.08, - "Z": -3955.0 + "Z": -3954.73 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -877870,9 +877810,9 @@ "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": 8195.67, + "X": 8195.06, "Y": -104.77, - "Z": -3566.11 + "Z": -3565.83 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -878108,9 +878048,9 @@ "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": 8378.68, + "X": 8378.07, "Y": -2.09, - "Z": -4239.61 + "Z": -4239.33 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -878346,9 +878286,9 @@ "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": 8360.15, + "X": 8359.54, "Y": -23.79, - "Z": -3745.62 + "Z": -3745.35 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -878654,9 +878594,9 @@ "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": 8665.16, + "X": 8664.54, "Y": -34.68, - "Z": -3579.03 + "Z": -3578.75 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -878916,9 +878856,9 @@ "Identity Proof": "Single Indicator (Ext: .cbl)" }, "2. Topological Coordinates": { - "X": -3498.57, + "X": -3498.52, "Y": -20.36, - "Z": -7729.84 + "Z": -7729.72 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -879104,9 +879044,9 @@ "Identity Proof": "Single Indicator (Ext: .cbl)" }, "2. Topological Coordinates": { - "X": -3283.97, + "X": -3283.92, "Y": 5.06, - "Z": -7692.56 + "Z": -7692.44 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -879317,9 +879257,9 @@ "Identity Proof": "Prose Extension (.txt)" }, "2. Topological Coordinates": { - "X": 177.73, + "X": 177.74, "Y": -187.35, - "Z": -8875.47 + "Z": -8875.16 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -879474,9 +879414,9 @@ "Identity Proof": "Single Indicator (Ext: .gradle)" }, "2. Topological Coordinates": { - "X": -364.43, + "X": -364.42, "Y": -41.9, - "Z": -8196.16 + "Z": -8195.86 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -879631,9 +879571,9 @@ "Identity Proof": "Single Indicator (Ext: .gradle)" }, "2. Topological Coordinates": { - "X": -421.15, + "X": -421.14, "Y": -163.63, - "Z": -9130.96 + "Z": -9130.65 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -879799,9 +879739,9 @@ "Identity Proof": "Single Indicator (Ext: .gradle)" }, "2. Topological Coordinates": { - "X": -203.33, + "X": -203.32, "Y": -73.53, - "Z": -8494.6 + "Z": -8494.3 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -879958,7 +879898,7 @@ "2. Topological Coordinates": { "X": -302.62, "Y": -26.18, - "Z": -8180.32 + "Z": -8180.01 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -880124,9 +880064,9 @@ "Identity Proof": "Single Indicator (Ext: .gradle)" }, "2. Topological Coordinates": { - "X": -165.4, + "X": -165.39, "Y": -160.27, - "Z": -8885.15 + "Z": -8884.84 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -880283,7 +880223,7 @@ "2. Topological Coordinates": { "X": 43.36, "Y": -67.39, - "Z": -8209.27 + "Z": -8208.96 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -880438,9 +880378,9 @@ "Identity Proof": "Single Indicator (Ext: .gradle)" }, "2. Topological Coordinates": { - "X": -615.8, + "X": -615.79, "Y": -50.31, - "Z": -8622.27 + "Z": -8621.97 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -887901,9 +887841,9 @@ "Identity Proof": "Single Indicator (Ext: .hlo)" }, "2. Topological Coordinates": { - "X": 7469.11, + "X": 7468.9, "Y": -115.43, - "Z": -8880.76 + "Z": -8880.52 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -888058,9 +887998,9 @@ "Identity Proof": "Single Indicator (Ext: .hlo)" }, "2. Topological Coordinates": { - "X": 7481.77, + "X": 7481.56, "Y": -71.41, - "Z": -8734.52 + "Z": -8734.28 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -888215,9 +888155,9 @@ "Identity Proof": "Single Indicator (Ext: .hlo)" }, "2. Topological Coordinates": { - "X": 7245.18, + "X": 7244.97, "Y": -21.96, - "Z": -8558.61 + "Z": -8558.36 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -888734,9 +888674,9 @@ "Identity Proof": "Single Indicator (Ext: .nix)" }, "2. Topological Coordinates": { - "X": -2125.32, + "X": -2125.26, "Y": 96.0, - "Z": -9095.43 + "Z": -9095.16 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -888891,9 +888831,9 @@ "Identity Proof": "Single Indicator (Ext: .nix)" }, "2. Topological Coordinates": { - "X": -2342.45, + "X": -2342.39, "Y": 86.12, - "Z": -8858.52 + "Z": -8858.25 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -889567,9 +889507,9 @@ "Identity Proof": "Single Indicator (Ext: .xml)" }, "2. Topological Coordinates": { - "X": 7122.77, + "X": 7122.14, "Y": -147.44, - "Z": -5765.81 + "Z": -5765.29 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -889724,9 +889664,9 @@ "Identity Proof": "Single Indicator (Ext: .xml)" }, "2. Topological Coordinates": { - "X": 6849.7, + "X": 6849.07, "Y": -198.73, - "Z": -5835.35 + "Z": -5834.83 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -889881,9 +889821,9 @@ "Identity Proof": "Single Indicator (Ext: .xml)" }, "2. Topological Coordinates": { - "X": 7090.93, + "X": 7090.3, "Y": -172.08, - "Z": -6201.14 + "Z": -6200.62 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -890738,9 +890678,9 @@ "Identity Proof": "Single Indicator (Ext: .yml)" }, "2. Topological Coordinates": { - "X": -773.43, + "X": -773.41, "Y": 92.28, - "Z": -9095.04 + "Z": -9094.74 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -890895,9 +890835,9 @@ "Identity Proof": "Single Indicator (Ext: .yml)" }, "2. Topological Coordinates": { - "X": -554.25, + "X": -554.24, "Y": 141.88, - "Z": -9443.53 + "Z": -9443.23 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -894725,9 +894665,9 @@ "Identity Proof": "Single Indicator (Ext: .go)" }, "2. Topological Coordinates": { - "X": 6435.1, + "X": 6434.95, "Y": 147.19, - "Z": -9410.36 + "Z": -9410.15 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -897392,9 +897332,9 @@ "Identity Proof": "Single Indicator (Ext: .proto)" }, "2. Topological Coordinates": { - "X": 8016.39, + "X": 8016.16, "Y": -23.25, - "Z": -8121.31 + "Z": -8121.07 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -898611,9 +898551,9 @@ "Identity Proof": "Single Indicator (Ext: .yml)" }, "2. Topological Coordinates": { - "X": 7766.22, + "X": 7765.65, "Y": 95.21, - "Z": -5476.23 + "Z": -5475.82 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -899713,9 +899653,9 @@ "Identity Proof": "Metadata Anchor (COPYING)" }, "2. Topological Coordinates": { - "X": 6102.35, + "X": 6101.71, "Y": 98.47, - "Z": -5692.95 + "Z": -5692.35 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -899870,9 +899810,9 @@ "Identity Proof": "Single Indicator (Ext: .css)" }, "2. Topological Coordinates": { - "X": 6500.55, + "X": 6499.91, "Y": 101.11, - "Z": -5985.77 + "Z": -5985.17 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -900038,9 +899978,9 @@ "Identity Proof": "Single Indicator (Ext: .css)" }, "2. Topological Coordinates": { - "X": 5710.85, + "X": 5710.22, "Y": 78.48, - "Z": -5683.96 + "Z": -5683.37 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -900195,9 +900135,9 @@ "Identity Proof": "Single Indicator (Ext: .css)" }, "2. Topological Coordinates": { - "X": 5954.34, + "X": 5953.71, "Y": 122.85, - "Z": -5417.53 + "Z": -5416.94 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -900352,9 +900292,9 @@ "Identity Proof": "Single Indicator (Ext: .css)" }, "2. Topological Coordinates": { - "X": 6355.9, + "X": 6355.26, "Y": 68.89, - "Z": -5448.87 + "Z": -5448.27 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -900509,9 +900449,9 @@ "Identity Proof": "Single Indicator (Ext: .css)" }, "2. Topological Coordinates": { - "X": 6130.34, + "X": 6129.7, "Y": 61.87, - "Z": -6012.47 + "Z": -6011.87 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -901067,7 +901007,7 @@ "Cognitive Load Exposure": "39.35%", "Error & Exception Exposure": "85.2%", "Tech Debt Exposure": "100.0%", - "Testing Exposure": "2.35%", + "Testing Exposure": "2.34%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "99.96%", @@ -902224,9 +902164,9 @@ "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": 2663.98, + "X": 2663.74, "Y": 288.93, - "Z": -9994.9 + "Z": -9994.05 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -902392,9 +902332,9 @@ "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": 2890.64, + "X": 2890.4, "Y": 208.99, - "Z": -10257.63 + "Z": -10256.77 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -903609,9 +903549,9 @@ "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": 8623.01, + "X": 8622.44, "Y": 104.77, - "Z": -4341.21 + "Z": -4340.93 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -904183,9 +904123,9 @@ "Identity Proof": "Prose Extension (.txt)" }, "2. Topological Coordinates": { - "X": -3001.27, + "X": -3001.23, "Y": 56.28, - "Z": -8573.98 + "Z": -8573.86 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -905982,9 +905922,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": -1605.42, + "X": -1605.39, "Y": 51.68, - "Z": -9507.4 + "Z": -9507.18 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -906708,7 +906648,7 @@ "2. Topological Coordinates": { "X": -21.85, "Y": -201.21, - "Z": -9698.96 + "Z": -9698.73 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -910004,9 +909944,9 @@ "Identity Proof": "Prose Extension (.txt)" }, "2. Topological Coordinates": { - "X": -1173.25, + "X": -1173.22, "Y": -222.59, - "Z": -9046.87 + "Z": -9046.63 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -910161,9 +910101,9 @@ "Identity Proof": "Single Indicator (Ext: .html)" }, "2. Topological Coordinates": { - "X": -896.69, + "X": -896.66, "Y": -176.94, - "Z": -8684.28 + "Z": -8684.04 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -910329,9 +910269,9 @@ "Identity Proof": "Single Indicator (Ext: .html)" }, "2. Topological Coordinates": { - "X": -1334.97, + "X": -1334.93, "Y": -189.39, - "Z": -8786.26 + "Z": -8786.02 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -910493,9 +910433,9 @@ "Identity Proof": "Single Indicator (Ext: .html)" }, "2. Topological Coordinates": { - "X": -1556.42, + "X": -1556.39, "Y": -224.2, - "Z": -9123.47 + "Z": -9123.23 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -910661,9 +910601,9 @@ "Identity Proof": "Single Indicator (Ext: .html)" }, "2. Topological Coordinates": { - "X": -1134.37, + "X": -1134.34, "Y": -268.52, - "Z": -9187.78 + "Z": -9187.54 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -911935,9 +911875,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": 3525.26, + "X": 3524.95, "Y": -80.09, - "Z": -10040.09 + "Z": -10039.22 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -913383,9 +913323,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": 7151.32, + "X": 7151.15, "Y": -122.51, - "Z": -8944.83 + "Z": -8944.62 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -914107,9 +914047,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": 6755.98, + "X": 6755.33, "Y": 63.32, - "Z": -6006.39 + "Z": -6005.81 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -914831,9 +914771,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": 8228.96, + "X": 8228.34, "Y": 22.26, - "Z": -5146.39 + "Z": -5145.99 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -915555,9 +915495,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": 9054.33, + "X": 9053.71, "Y": 157.37, - "Z": -3730.91 + "Z": -3730.65 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -916098,9 +916038,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": -2452.82, + "X": -2452.78, "Y": -39.53, - "Z": -8722.71 + "Z": -8722.59 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -916822,9 +916762,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": -1007.13, + "X": -1007.11, "Y": -133.53, - "Z": -9539.0 + "Z": -9538.76 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -917546,9 +917486,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": 614.45, + "X": 614.43, "Y": -52.05, - "Z": -9641.38 + "Z": -9641.13 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -918994,9 +918934,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": 4388.33, + "X": 4387.96, "Y": 27.26, - "Z": -10357.95 + "Z": -10357.06 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -920442,9 +920382,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": 7998.11, + "X": 7997.89, "Y": -156.25, - "Z": -8805.4 + "Z": -8805.16 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -920985,9 +920925,9 @@ "Identity Proof": "Single Indicator (Exact Match)" }, "2. Topological Coordinates": { - "X": 7639.32, + "X": 7638.69, "Y": 141.51, - "Z": -5896.63 + "Z": -5896.13 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", diff --git a/tests/golden_master_zero_dep_audit.json b/tests/golden_master_zero_dep_audit.json index b9db075c4..61b93485e 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": "/home/joe/nyx_projects/gitgalaxy-worktrees/language-crucible/data", - "Analysis ISO Timestamp": "2026-08-31T00:13:49.667060+00:00", - "Total Scan Duration": "44.23 seconds" + "Absolute Project Path": "/srv/storage_16tb/projects/gitgalaxy/language-crucible/data", + "Analysis ISO Timestamp": "2026-08-31T00:41:28.216794+00:00", + "Total Scan Duration": "18.5 seconds" }, "Source Control Footprint (Immutable Anchor)": { "Active Branch": "HEAD", "Commit Hash (SHA-1)": "77bc85ecb8bb2fa8331b83f2bd348ec735df66e3", - "Remote Origin URL": "https://github.com/squid-protocol/language-crucible", + "Remote Origin URL": "https://github.com/squid-protocol/language-crucible.git", "Last Code Integration Date": "2026-08-30T08:52:00-04:00" } }, @@ -26,7 +26,7 @@ "summary": { "total_files": 3365, "verified_files": 2817, - "total_loc": 841829, + "total_loc": 838124, "dominant_language": "c", "volatility_index": 0.0, "Percent_Visible": 83.7 @@ -236,10 +236,10 @@ } }, "health": { - "avg_cognitive_load": 29.793, - "avg_safety_score": 47.7, - "avg_tech_debt": 40.24, - "avg_documentation": 29.962 + "avg_cognitive_load": 29.832, + "avg_safety_score": 47.73, + "avg_tech_debt": 40.282, + "avg_documentation": 29.725 }, "composition": { "markdown": { @@ -274,8 +274,8 @@ }, "assembly": { "files": 232, - "loc": 39842, - "impact": 10644.619999999995 + "loc": 36137, + "impact": 10514.060000000005 }, "makefile": { "files": 4, @@ -658,20 +658,20 @@ }, "assembly/x86_bare_metal": { "file_count": 23, - "total_mass": 282.4, + "total_mass": 275.06, "avg_exposures": { - "cognitive_load": 17.65, - "safety_score": 72.86, - "tech_debt": 29.82, - "verification": 1.98, + "cognitive_load": 18.71, + "safety_score": 75.28, + "tech_debt": 30.42, + "verification": 1.83, "api_exposure": 0.22, "concurrency": 0.0, - "state_flux": 17.19, + "state_flux": 17.33, "dead_code": 4.26, - "spec_match": 79.13, + "spec_match": 71.01, "stability": 47.83, "churn": 0.0, - "documentation": 47.94, + "documentation": 42.11, "secrets_risk": 0.0 } }, @@ -2425,39 +2425,39 @@ }, "assembly/cosmopolitan": { "file_count": 4, - "total_mass": 2014.36, + "total_mass": 2008.46, "avg_exposures": { - "cognitive_load": 25.54, - "safety_score": 38.28, - "tech_debt": 9.61, - "verification": 40.64, + "cognitive_load": 25.86, + "safety_score": 38.44, + "tech_debt": 10.68, + "verification": 40.65, "api_exposure": 4.42, "concurrency": 0.0, - "state_flux": 33.82, + "state_flux": 34.92, "dead_code": 2.9, "spec_match": 76.67, "stability": 50.0, "churn": 0.0, - "documentation": 35.96, + "documentation": 34.68, "secrets_risk": 0.0 } }, "assembly/cosmopolitan_runtime": { "file_count": 15, - "total_mass": 224.78, + "total_mass": 217.88, "avg_exposures": { - "cognitive_load": 9.46, - "safety_score": 14.31, + "cognitive_load": 10.49, + "safety_score": 15.16, "tech_debt": 0.0, - "verification": 2.33, + "verification": 1.89, "api_exposure": 0.0, "concurrency": 0.0, - "state_flux": 14.9, + "state_flux": 17.03, "dead_code": 0.0, - "spec_match": 100.0, + "spec_match": 80.0, "stability": 50.0, "churn": 0.0, - "documentation": 39.5, + "documentation": 27.34, "secrets_risk": 0.0 } }, @@ -2501,39 +2501,39 @@ }, "assembly/freebsd_kernel_arch": { "file_count": 17, - "total_mass": 1311.26, + "total_mass": 1252.02, "avg_exposures": { - "cognitive_load": 7.65, - "safety_score": 30.7, - "tech_debt": 2.13, - "verification": 25.06, + "cognitive_load": 9.85, + "safety_score": 31.11, + "tech_debt": 3.15, + "verification": 25.1, "api_exposure": 2.02, - "concurrency": 3.65, - "state_flux": 2.81, + "concurrency": 4.08, + "state_flux": 1.55, "dead_code": 0.0, "spec_match": 94.12, "stability": 47.06, "churn": 0.0, - "documentation": 22.12, + "documentation": 15.82, "secrets_risk": 0.0 } }, "assembly/freebsd_libc_string": { "file_count": 25, - "total_mass": 465.18, + "total_mass": 443.26, "avg_exposures": { - "cognitive_load": 8.12, - "safety_score": 9.11, - "tech_debt": 1.9, - "verification": 2.01, + "cognitive_load": 8.83, + "safety_score": 9.25, + "tech_debt": 3.23, + "verification": 1.88, "api_exposure": 0.0, "concurrency": 0.0, - "state_flux": 5.83, + "state_flux": 6.53, "dead_code": 0.26, - "spec_match": 87.47, + "spec_match": 81.87, "stability": 48.0, "churn": 0.0, - "documentation": 23.34, + "documentation": 15.88, "secrets_risk": 0.0 } }, @@ -2577,20 +2577,20 @@ }, "assembly/linux_1_0_kernel": { "file_count": 19, - "total_mass": 1962.7, + "total_mass": 1933.44, "avg_exposures": { - "cognitive_load": 9.28, - "safety_score": 11.85, - "tech_debt": 9.21, + "cognitive_load": 9.99, + "safety_score": 12.03, + "tech_debt": 11.97, "verification": 47.21, "api_exposure": 3.33, "concurrency": 0.0, - "state_flux": 6.22, + "state_flux": 6.49, "dead_code": 0.63, - "spec_match": 94.74, + "spec_match": 94.04, "stability": 47.37, "churn": 0.0, - "documentation": 27.12, + "documentation": 24.39, "secrets_risk": 0.0 } }, @@ -2943,7 +2943,7 @@ "cognitive_load": 11.99, "safety_score": 63.41, "tech_debt": 58.71, - "verification": 2.21, + "verification": 2.2, "api_exposure": 0.06, "concurrency": 0.0, "state_flux": 42.49, @@ -5147,7 +5147,7 @@ "cognitive_load": 83.04, "safety_score": 95.16, "tech_debt": 48.9, - "verification": 35.83, + "verification": 35.82, "api_exposure": 0.74, "concurrency": 0.0, "state_flux": 100.0, @@ -6159,13 +6159,13 @@ "value": 100.0 }, { - "name": "c_hello_world_entry.S", - "path": "assembly/x86_bare_metal/c_hello_world_entry.S", + "name": "bios_cursor_position.S", + "path": "assembly/x86_bare_metal/bios_cursor_position.S", "value": 100.0 }, { - "name": "CBL0102v01DivisionAmbiente.cbl", - "path": "cobol/CICS-Cobol/CBL0102v01DivisionAmbiente.cbl", + "name": "bios_scroll.S", + "path": "assembly/x86_bare_metal/bios_scroll.S", "value": 100.0 } ], @@ -27928,7 +27928,7 @@ "Cognitive Load Exposure": "15.89%", "Error & Exception Exposure": "76.98%", "Tech Debt Exposure": "100.0%", - "Testing Exposure": "2.53%", + "Testing Exposure": "2.52%", "API Exposure": "6.04%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "45.13%", @@ -28136,7 +28136,7 @@ "Cognitive Load Exposure": "15.89%", "Error & Exception Exposure": "76.98%", "Tech Debt Exposure": "100.0%", - "Testing Exposure": "2.53%", + "Testing Exposure": "2.52%", "API Exposure": "6.04%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "45.13%", @@ -180972,7 +180972,7 @@ "Cognitive Load Exposure": "84.81%", "Error & Exception Exposure": "94.78%", "Tech Debt Exposure": "99.85%", - "Testing Exposure": "3.25%", + "Testing Exposure": "3.24%", "API Exposure": "6.53%", "Concurrency Exposure": "83.2%", "State Flux Exposure": "93.7%", @@ -243629,9 +243629,9 @@ "Identity Proof": "Metadata Anchor (README)" }, "2. Topological Coordinates": { - "X": 8042.1, + "X": 8041.42, "Y": -36.78, - "Z": -4254.82 + "Z": -4254.46 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -243786,9 +243786,9 @@ "Identity Proof": "Single Indicator (Ext: .json)" }, "2. Topological Coordinates": { - "X": 6994.85, + "X": 6994.16, "Y": 8.53, - "Z": -4099.01 + "Z": -4098.65 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -243944,9 +243944,9 @@ "Identity Proof": "Single Indicator (Ext: .pm)" }, "2. Topological Coordinates": { - "X": 7580.12, + "X": 7579.44, "Y": -1.39, - "Z": -4091.93 + "Z": -4091.57 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -245812,9 +245812,9 @@ "Identity Proof": "Metadata Anchor (Makefile.PL)" }, "2. Topological Coordinates": { - "X": 7829.86, + "X": 7829.17, "Y": 28.3, - "Z": -3504.48 + "Z": -3504.12 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -245972,9 +245972,9 @@ "Identity Proof": "Single Indicator (Ext: .pm)" }, "2. Topological Coordinates": { - "X": 7616.22, + "X": 7615.54, "Y": -83.58, - "Z": -4501.15 + "Z": -4500.79 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -246246,9 +246246,9 @@ "Identity Proof": "Single Indicator (Shebang)" }, "2. Topological Coordinates": { - "X": 7256.9, + "X": 7256.21, "Y": 50.88, - "Z": -3579.82 + "Z": -3579.47 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -257941,9 +257941,9 @@ "Identity Proof": "Prose Extension (.txt)" }, "2. Topological Coordinates": { - "X": -891.74, + "X": -891.71, "Y": -107.16, - "Z": -8287.49 + "Z": -8287.16 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -258098,9 +258098,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": -767.72, + "X": -767.69, "Y": -297.2, - "Z": -7142.6 + "Z": -7142.27 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -258261,9 +258261,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": -598.59, + "X": -598.56, "Y": -160.14, - "Z": -7922.32 + "Z": -7921.99 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -259136,9 +259136,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": -956.56, + "X": -956.53, "Y": -177.82, - "Z": -7356.03 + "Z": -7355.7 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -260588,9 +260588,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": -661.5, + "X": -661.47, "Y": -224.26, - "Z": -7723.01 + "Z": -7722.68 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -263008,9 +263008,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": -1183.29, + "X": -1183.26, "Y": -105.25, - "Z": -7730.01 + "Z": -7729.68 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -263468,9 +263468,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": -330.07, + "X": -330.04, "Y": -352.58, - "Z": -7362.37 + "Z": -7362.04 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -263680,9 +263680,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": -192.2, + "X": -192.18, "Y": -226.17, - "Z": -7754.74 + "Z": -7754.42 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -333229,7 +333229,7 @@ "Cognitive Load Exposure": "0.0%", "Error & Exception Exposure": "51.38%", "Tech Debt Exposure": "100.0%", - "Testing Exposure": "2.51%", + "Testing Exposure": "2.5%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -339509,9 +339509,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": 5844.64, + "X": 5843.97, "Y": 27.5, - "Z": -5549.52 + "Z": -5548.93 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -339666,9 +339666,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": 5705.17, + "X": 5704.5, "Y": 60.04, - "Z": -4250.62 + "Z": -4250.04 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -339823,9 +339823,9 @@ "Identity Proof": "Single Indicator (Ext: .agc)" }, "2. Topological Coordinates": { - "X": 6021.68, + "X": 6021.01, "Y": 38.26, - "Z": -4916.35 + "Z": -4915.77 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -340447,9 +340447,9 @@ "Identity Proof": "Single Indicator (Ext: .agc)" }, "2. Topological Coordinates": { - "X": 5259.37, + "X": 5258.7, "Y": 62.74, - "Z": -5471.83 + "Z": -5471.25 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -340803,9 +340803,9 @@ "Identity Proof": "Single Indicator (Ext: .agc)" }, "2. Topological Coordinates": { - "X": 5869.51, + "X": 5868.84, "Y": 68.01, - "Z": -4285.33 + "Z": -4284.75 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -341641,9 +341641,9 @@ "Identity Proof": "Single Indicator (Ext: .agc)" }, "2. Topological Coordinates": { - "X": 4940.82, + "X": 4940.15, "Y": 1.53, - "Z": -4690.59 + "Z": -4690.0 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -342173,9 +342173,9 @@ "Identity Proof": "Single Indicator (Ext: .agc)" }, "2. Topological Coordinates": { - "X": 5229.0, + "X": 5228.33, "Y": 36.25, - "Z": -4422.63 + "Z": -4422.05 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -344766,9 +344766,9 @@ "Identity Proof": "Single Indicator (Ext: .agc)" }, "2. Topological Coordinates": { - "X": 5538.15, + "X": 5537.48, "Y": 79.79, - "Z": -5362.76 + "Z": -5362.18 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -345693,9 +345693,9 @@ "Identity Proof": "Single Indicator (Ext: .agc)" }, "2. Topological Coordinates": { - "X": 5550.26, + "X": 5549.59, "Y": 56.1, - "Z": -4651.27 + "Z": -4650.69 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -348747,9 +348747,9 @@ "Identity Proof": "Single Indicator (Ext: .agc)" }, "2. Topological Coordinates": { - "X": 4878.36, + "X": 4877.68, "Y": 49.14, - "Z": -4535.71 + "Z": -4535.13 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -348930,9 +348930,9 @@ "Identity Proof": "Single Indicator (Ext: .agc)" }, "2. Topological Coordinates": { - "X": 6108.88, + "X": 6108.2, "Y": 116.15, - "Z": -4401.21 + "Z": -4400.63 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -349194,9 +349194,9 @@ "Identity Proof": "Single Indicator (Ext: .agc)" }, "2. Topological Coordinates": { - "X": 5352.76, + "X": 5352.09, "Y": 56.62, - "Z": -4255.49 + "Z": -4254.9 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -356246,9 +356246,9 @@ "Identity Proof": "Single Indicator (Ext: .js)" }, "2. Topological Coordinates": { - "X": 3101.9, + "X": 3101.61, "Y": -96.09, - "Z": -9885.92 + "Z": -9885.04 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -357160,9 +357160,9 @@ "Identity Proof": "Single Indicator (Ext: .js)" }, "2. Topological Coordinates": { - "X": 2747.53, + "X": 2747.24, "Y": -174.73, - "Z": -9334.71 + "Z": -9333.82 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -358608,9 +358608,9 @@ "Identity Proof": "Single Indicator (Ext: .js)" }, "2. Topological Coordinates": { - "X": 3073.5, + "X": 3073.21, "Y": -49.48, - "Z": -9617.09 + "Z": -9616.2 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -360340,9 +360340,9 @@ "Identity Proof": "Single Indicator (Ext: .js)" }, "2. Topological Coordinates": { - "X": 3357.02, + "X": 3356.73, "Y": 40.54, - "Z": -9276.95 + "Z": -9276.06 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -360508,9 +360508,9 @@ "Identity Proof": "Single Indicator (Ext: .ts)" }, "2. Topological Coordinates": { - "X": 2576.21, + "X": 2575.92, "Y": -244.18, - "Z": -9679.28 + "Z": -9678.39 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -441424,9 +441424,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": 7382.79, + "X": 7382.56, "Y": 165.91, - "Z": -8431.5 + "Z": -8431.25 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -442227,9 +442227,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": 7002.18, + "X": 7001.95, "Y": 265.38, - "Z": -7716.43 + "Z": -7716.19 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -443197,9 +443197,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": 6790.38, + "X": 6790.15, "Y": 225.2, - "Z": -7952.09 + "Z": -7951.84 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -443478,9 +443478,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": 7827.85, + "X": 7827.62, "Y": 134.51, - "Z": -8177.29 + "Z": -8177.05 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -443750,9 +443750,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": 7640.99, + "X": 7640.76, "Y": 311.63, - "Z": -7256.63 + "Z": -7256.39 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -444028,9 +444028,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": 7295.44, + "X": 7295.21, "Y": 257.91, - "Z": -7911.52 + "Z": -7911.28 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -445138,9 +445138,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": 7204.62, + "X": 7204.39, "Y": 404.61, - "Z": -7211.93 + "Z": -7211.68 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -445529,9 +445529,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": 3754.91, + "X": 3754.49, "Y": -127.57, - "Z": -9732.61 + "Z": -9731.67 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -445686,9 +445686,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": 4534.3, + "X": 4533.89, "Y": -109.1, - "Z": -9553.3 + "Z": -9552.37 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -446918,9 +446918,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": 3541.85, + "X": 3541.43, "Y": -122.2, - "Z": -9222.05 + "Z": -9221.12 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -447638,9 +447638,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": 4001.69, + "X": 4001.27, "Y": -115.21, - "Z": -9117.88 + "Z": -9116.94 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -448960,9 +448960,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": 4066.5, + "X": 4066.08, "Y": -150.26, - "Z": -9703.69 + "Z": -9702.76 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -450009,9 +450009,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": 3854.07, + "X": 3853.66, "Y": -147.74, - "Z": -8521.18 + "Z": -8520.24 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -450381,9 +450381,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": 3775.19, + "X": 3774.77, "Y": -155.51, - "Z": -8959.09 + "Z": -8958.16 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -452209,9 +452209,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": 4360.74, + "X": 4360.32, "Y": -127.18, - "Z": -8645.3 + "Z": -8644.37 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -496813,7 +496813,7 @@ "Cognitive Load Exposure": "92.7%", "Error & Exception Exposure": "85.43%", "Tech Debt Exposure": "95.11%", - "Testing Exposure": "2.43%", + "Testing Exposure": "2.42%", "API Exposure": "2.71%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "100.0%", @@ -507866,7 +507866,7 @@ "Cognitive Load Exposure": "19.67%", "Error & Exception Exposure": "41.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.73%", + "Testing Exposure": "2.72%", "API Exposure": "3.67%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -514939,9 +514939,9 @@ "Identity Proof": "Ecosystem Consensus Lock (75% Local Dominance)" }, "2. Topological Coordinates": { - "X": 7272.86, + "X": 7272.24, "Y": -60.79, - "Z": -4920.59 + "Z": -4920.18 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -516284,9 +516284,9 @@ "Identity Proof": "Ecosystem Consensus Lock (75% Local Dominance)" }, "2. Topological Coordinates": { - "X": 7588.19, + "X": 7587.57, "Y": -58.65, - "Z": -4922.76 + "Z": -4922.35 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -518008,9 +518008,9 @@ "Identity Proof": "Ecosystem Consensus Lock (75% Local Dominance)" }, "2. Topological Coordinates": { - "X": 7867.75, + "X": 7867.13, "Y": -135.82, - "Z": -4487.98 + "Z": -4487.57 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -518462,9 +518462,9 @@ "Identity Proof": "Ecosystem Consensus Lock (75% Local Dominance)" }, "2. Topological Coordinates": { - "X": 7598.82, + "X": 7598.2, "Y": -69.43, - "Z": -5460.52 + "Z": -5460.1 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -558749,9 +558749,9 @@ "Identity Proof": "Single Indicator (Ext: .rs)" }, "2. Topological Coordinates": { - "X": 6690.35, + "X": 6689.67, "Y": 41.07, - "Z": -5555.92 + "Z": -5555.41 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -559271,9 +559271,9 @@ "Identity Proof": "Single Indicator (Ext: .rs)" }, "2. Topological Coordinates": { - "X": 6407.85, + "X": 6407.18, "Y": 4.05, - "Z": -4718.34 + "Z": -4717.82 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -559791,9 +559791,9 @@ "Identity Proof": "Single Indicator (Ext: .rs)" }, "2. Topological Coordinates": { - "X": 6976.23, + "X": 6975.55, "Y": -122.07, - "Z": -4574.16 + "Z": -4573.65 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -560186,9 +560186,9 @@ "Identity Proof": "Single Indicator (Ext: .rs)" }, "2. Topological Coordinates": { - "X": 6732.53, + "X": 6731.85, "Y": -1.82, - "Z": -5012.93 + "Z": -5012.42 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -562411,9 +562411,9 @@ "Identity Proof": "Single Indicator (Ext: .rs)" }, "2. Topological Coordinates": { - "X": 7128.34, + "X": 7127.67, "Y": -36.01, - "Z": -5410.69 + "Z": -5410.17 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -562699,9 +562699,9 @@ "Identity Proof": "Single Indicator (Ext: .rs)" }, "2. Topological Coordinates": { - "X": 6494.76, + "X": 6494.09, "Y": -4.97, - "Z": -4442.31 + "Z": -4441.8 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -562893,9 +562893,9 @@ "Identity Proof": "Single Indicator (Ext: .rs)" }, "2. Topological Coordinates": { - "X": 6152.2, + "X": 6151.52, "Y": 119.37, - "Z": -5176.7 + "Z": -5176.19 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -564935,9 +564935,9 @@ "Identity Proof": "Single Indicator (Ext: .rs)" }, "2. Topological Coordinates": { - "X": -3339.14, + "X": -3339.07, "Y": 123.4, - "Z": -5947.84 + "Z": -5947.7 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -565092,9 +565092,9 @@ "Identity Proof": "Single Indicator (Ext: .rs)" }, "2. Topological Coordinates": { - "X": -2146.8, + "X": -2146.74, "Y": -7.48, - "Z": -6025.79 + "Z": -6025.66 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -565272,9 +565272,9 @@ "Identity Proof": "Single Indicator (Ext: .rs)" }, "2. Topological Coordinates": { - "X": -2898.84, + "X": -2898.78, "Y": 104.01, - "Z": -5592.72 + "Z": -5592.58 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -565489,9 +565489,9 @@ "Identity Proof": "Single Indicator (Ext: .rs)" }, "2. Topological Coordinates": { - "X": -2671.9, + "X": -2671.84, "Y": 39.61, - "Z": -6488.7 + "Z": -6488.56 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -566143,9 +566143,9 @@ "Identity Proof": "Single Indicator (Ext: .rs)" }, "2. Topological Coordinates": { - "X": -3004.01, + "X": -3003.95, "Y": 31.14, - "Z": -6597.34 + "Z": -6597.21 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -566304,9 +566304,9 @@ "Identity Proof": "Single Indicator (Ext: .rs)" }, "2. Topological Coordinates": { - "X": -2458.52, + "X": -2458.46, "Y": 19.06, - "Z": -6681.73 + "Z": -6681.59 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -566463,9 +566463,9 @@ "Identity Proof": "Single Indicator (Ext: .rs)" }, "2. Topological Coordinates": { - "X": -2295.95, + "X": -2295.89, "Y": -60.08, - "Z": -6550.82 + "Z": -6550.69 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -566780,9 +566780,9 @@ "Identity Proof": "Single Indicator (Ext: .rs)" }, "2. Topological Coordinates": { - "X": -3250.05, + "X": -3249.99, "Y": 136.04, - "Z": -6170.28 + "Z": -6170.14 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -567022,9 +567022,9 @@ "Identity Proof": "Single Indicator (Ext: .rs)" }, "2. Topological Coordinates": { - "X": -2740.3, + "X": -2740.24, "Y": 79.27, - "Z": -6234.41 + "Z": -6234.27 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -567472,9 +567472,9 @@ "Identity Proof": "Single Indicator (Ext: .rs)" }, "2. Topological Coordinates": { - "X": -2472.21, + "X": -2472.15, "Y": 57.03, - "Z": -5577.91 + "Z": -5577.77 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -568245,9 +568245,9 @@ "Identity Proof": "Single Indicator (Ext: .rs)" }, "2. Topological Coordinates": { - "X": -3021.52, + "X": -3021.46, "Y": 86.64, - "Z": -5979.23 + "Z": -5979.09 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -571558,9 +571558,9 @@ "Identity Proof": "Single Indicator (Ext: .podspec)" }, "2. Topological Coordinates": { - "X": -2820.12, + "X": -2820.07, "Y": 66.77, - "Z": -6847.32 + "Z": -6847.19 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -571726,9 +571726,9 @@ "Identity Proof": "Single Indicator (Ext: .swift)" }, "2. Topological Coordinates": { - "X": -2669.13, + "X": -2669.08, "Y": 286.85, - "Z": -7523.17 + "Z": -7523.03 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -571916,9 +571916,9 @@ "Identity Proof": "Metadata Anchor (Package.swift)" }, "2. Topological Coordinates": { - "X": -2287.41, + "X": -2287.36, "Y": 252.72, - "Z": -7626.16 + "Z": -7626.02 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -572075,9 +572075,9 @@ "Identity Proof": "Single Indicator (Ext: .swift)" }, "2. Topological Coordinates": { - "X": -3243.67, + "X": -3243.62, "Y": 166.02, - "Z": -7238.04 + "Z": -7237.91 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -572315,9 +572315,9 @@ "Identity Proof": "Single Indicator (Ext: .swift)" }, "2. Topological Coordinates": { - "X": -2966.91, + "X": -2966.86, "Y": 82.32, - "Z": -6913.67 + "Z": -6913.53 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -572975,9 +572975,9 @@ "Identity Proof": "Single Indicator (Ext: .swift)" }, "2. Topological Coordinates": { - "X": -2391.86, + "X": -2391.81, "Y": 126.68, - "Z": -6882.44 + "Z": -6882.31 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -573285,9 +573285,9 @@ "Identity Proof": "Single Indicator (Ext: .swift)" }, "2. Topological Coordinates": { - "X": -2708.76, + "X": -2708.71, "Y": 135.59, - "Z": -7404.39 + "Z": -7404.25 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -583197,24 +583197,24 @@ } }, "assembly/cosmopolitan": { - "Directory Group Magnitude": 2014.36, + "Directory Group Magnitude": 2008.46, "File Count": 4, "Ecosystem Fingerprint (Archetypes)": { "Unclassified": "100.0%" }, "Average Risk Exposures": { - "Cognitive Load Exposure": "25.54%", - "Error & Exception Exposure": "38.28%", - "Tech Debt Exposure": "9.61%", - "Testing Exposure": "40.64%", + "Cognitive Load Exposure": "25.86%", + "Error & Exception Exposure": "38.44%", + "Tech Debt Exposure": "10.68%", + "Testing Exposure": "40.65%", "API Exposure": "4.42%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "33.82%", + "State Flux Exposure": "34.92%", "Commented Logic Exposure": "2.9%", "Specification Exposure": "76.67%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "35.96%", + "Documentation Exposure": "34.68%", "Hardcoded Payload Artifacts": "0.0%" }, "Files": { @@ -583224,16 +583224,16 @@ "Path": "assembly/cosmopolitan/ape.S", "Language": "Assembly", "Architect": "Unknown Architect", - "Indentation Style": "Mixed (10.4% Spaces / 89.6% Tabs)", + "Indentation Style": "Mixed (3.6% Spaces / 96.4% Tabs)", "Doc Umbrella": 0.0, "Folder Dominant Lang": "assembly", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -7997.79, - "Y": 134.82, - "Z": 6229.64 + "X": -7997.68, + "Y": 134.84, + "Z": 6229.53 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -583243,29 +583243,29 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 1889, - "Coding LOC": 1714, - "Documentation LOC": 77, - "Structural Magnitude": 450.98, + "Coding LOC": 1522, + "Documentation LOC": 269, + "Structural Magnitude": 445.44, "Control Flow Ratio": "31.8%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.144 + "Raw Cognitive Density": 0.162 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "7.54%", - "Error & Exception Exposure": "55.15%", - "Tech Debt Exposure": "28.7%", + "Cognitive Load Exposure": "7.98%", + "Error & Exception Exposure": "55.78%", + "Tech Debt Exposure": "32.97%", "Testing Exposure": "80.0%", "API Exposure": "5.51%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "35.29%", + "State Flux Exposure": "39.7%", "Commented Logic Exposure": "6.5%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "12.55%", + "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -583461,13 +583461,13 @@ }, { "Function Name": "_gdt", - "Structural Impact": 6.8, - "Lines of Code (LOC)": 96, + "Structural Impact": 6.5, + "Lines of Code (LOC)": 91, "Control Flow Branches": 1, "Input Parameters": 0, "Control Flow Ratio": "11.1%", "Start Line": 1186, - "End Line": 1281 + "End Line": 1276 }, { "Function Name": "cpyhi", @@ -583489,16 +583489,6 @@ "Start Line": 1534, "End Line": 1549 }, - { - "Function Name": "ape_grub_entry", - "Structural Impact": 4.9, - "Lines of Code (LOC)": 42, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "20.0%", - "Start Line": 1701, - "End Line": 1742 - }, { "Function Name": "ape_disk", "Structural Impact": 4.3, @@ -583509,6 +583499,16 @@ "Start Line": 526, "End Line": 712 }, + { + "Function Name": "ape_grub_entry", + "Structural Impact": 3.5, + "Lines of Code (LOC)": 13, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "20.0%", + "Start Line": 1701, + "End Line": 1713 + }, { "Function Name": "rlinit", "Structural Impact": 3.1, @@ -583660,7 +583660,7 @@ "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 3, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 31, + "I/O and Network Boundaries": 26, "Exposed API / Public Exports": 7, "State Mutations / Variable Reassignments": 64, "Commented-out Code (Dead Logic)": 7, @@ -583684,7 +583684,7 @@ "Event Publishers / Emitters": 0, "Dependency Injection Constructs": 0, "Preprocessor Macros": 5, - "Pointer Arithmetic & Addressing": 33, + "Pointer Arithmetic & Addressing": 31, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, @@ -583692,15 +583692,15 @@ "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 113, + "Bitwise Operations": 102, "Thread Synchronization Locks": 12, "Immutable Data Declarations": 0, "Resource Deallocation & Cleanup": 0, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 1021, - "Structural Space Indentations": 119, + "Structural Tab Indentations": 1007, + "Structural Space Indentations": 38, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -583717,12 +583717,12 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 28, + "Core Var Decl": 27, "Design Camel Case": 0, - "Design Snake Case": 20, + "Design Snake Case": 19, "Design Pascal Case": 0, "Design Upper Case": 8, - "Design Short Vars": 12, + "Design Short Vars": 11, "Design Long Vars": 0, "Duplicate Logic": 0, "Orphaned Logic": 0, @@ -583928,9 +583928,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -7736.52, - "Y": 160.38, - "Z": 5639.74 + "X": -7736.54, + "Y": 160.35, + "Z": 5640.01 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -583940,21 +583940,21 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 85, - "Coding LOC": 72, - "Documentation LOC": 6, - "Structural Magnitude": 11.44, + "Coding LOC": 54, + "Documentation LOC": 24, + "Structural Magnitude": 11.08, "Control Flow Ratio": "33.3%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.097 + "Raw Cognitive Density": 0.13 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "6.84%", + "Cognitive Load Exposure": "7.72%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.39%", + "Testing Exposure": "2.43%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -583962,7 +583962,7 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "26.07%", + "Documentation Exposure": "21.57%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -584007,7 +584007,7 @@ "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 5, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -584039,7 +584039,7 @@ "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 14, + "Bitwise Operations": 2, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, "Resource Deallocation & Cleanup": 0, @@ -584064,12 +584064,12 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 1, + "Core Var Decl": 0, "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 Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, "Orphaned Logic": 0, @@ -589489,9 +589489,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": 463.35, + "X": 463.34, "Y": -200.51, - "Z": -9534.71 + "Z": -9534.46 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -589646,9 +589646,9 @@ "Identity Proof": "Single Indicator (Ext: .tcl)" }, "2. Topological Coordinates": { - "X": 110.43, + "X": 110.42, "Y": -101.16, - "Z": -8990.65 + "Z": -8990.4 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -590174,9 +590174,9 @@ "Identity Proof": "Single Indicator (Ext: .tcl)" }, "2. Topological Coordinates": { - "X": 356.14, + "X": 356.13, "Y": -98.31, - "Z": -9205.63 + "Z": -9205.37 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -591415,25 +591415,25 @@ } }, "assembly/linux_1_0_kernel": { - "Directory Group Magnitude": 1962.7, + "Directory Group Magnitude": 1933.44, "File Count": 19, "Ecosystem Fingerprint (Archetypes)": { "Unclassified": "94.7%", "Static: Literature & Documentation": "5.3%" }, "Average Risk Exposures": { - "Cognitive Load Exposure": "9.28%", - "Error & Exception Exposure": "11.85%", - "Tech Debt Exposure": "9.21%", + "Cognitive Load Exposure": "9.99%", + "Error & Exception Exposure": "12.03%", + "Tech Debt Exposure": "11.97%", "Testing Exposure": "47.21%", "API Exposure": "3.33%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "6.22%", + "State Flux Exposure": "6.49%", "Commented Logic Exposure": "0.63%", - "Specification Exposure": "94.74%", + "Specification Exposure": "94.04%", "Instability Exposure": "47.37%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "27.12%", + "Documentation Exposure": "24.39%", "Hardcoded Payload Artifacts": "0.0%" }, "Files": { @@ -591450,9 +591450,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 6155.2, + "X": 6155.19, "Y": 41.35, - "Z": -1182.52 + "Z": -1182.49 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -591462,29 +591462,29 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 451, - "Coding LOC": 371, - "Documentation LOC": 15, - "Structural Magnitude": 174.52, + "Coding LOC": 346, + "Documentation LOC": 40, + "Structural Magnitude": 174.02, "Control Flow Ratio": "33.1%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.191 + "Raw Cognitive Density": 0.205 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "9.67%", - "Error & Exception Exposure": "56.41%", + "Cognitive Load Exposure": "10.16%", + "Error & Exception Exposure": "57.32%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", "API Exposure": "2.27%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "18.95%", + "State Flux Exposure": "19.68%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "15.21%", + "Documentation Exposure": "13.78%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -591726,10 +591726,10 @@ "Function Parameters": 173, "Function/Method Declarations": 23, "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": 15, + "I/O and Network Boundaries": 9, "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 6, "Commented-out Code (Dead Logic)": 0, @@ -591761,7 +591761,7 @@ "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 1, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 36, + "Bitwise Operations": 32, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, "Resource Deallocation & Cleanup": 0, @@ -591786,12 +591786,12 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 12, + "Core Var Decl": 10, "Design Camel Case": 0, - "Design Snake Case": 4, + "Design Snake Case": 2, "Design Pascal Case": 0, "Design Upper Case": 8, - "Design Short Vars": 3, + "Design Short Vars": 1, "Design Long Vars": 0, "Duplicate Logic": 0, "Orphaned Logic": 0, @@ -591838,9 +591838,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 6694.18, - "Y": -2.79, - "Z": -355.89 + "X": 6694.02, + "Y": -2.8, + "Z": -355.95 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -591850,29 +591850,29 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 355, - "Coding LOC": 327, - "Documentation LOC": 7, - "Structural Magnitude": 87.44, + "Coding LOC": 251, + "Documentation LOC": 83, + "Structural Magnitude": 85.92, "Control Flow Ratio": "22.4%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.092 + "Raw Cognitive Density": 0.12 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "6.7%", - "Error & Exception Exposure": "53.69%", - "Tech Debt Exposure": "74.17%", + "Cognitive Load Exposure": "7.43%", + "Error & Exception Exposure": "54.72%", + "Tech Debt Exposure": "89.39%", "Testing Exposure": "80.0%", "API Exposure": "6.62%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "15.02%", + "State Flux Exposure": "16.49%", "Commented Logic Exposure": "6.03%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "25.73%", + "Documentation Exposure": "20.56%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -592037,7 +592037,7 @@ "Defensive Programming Constructs": 1, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 4, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 6, "State Mutations / Variable Reassignments": 3, "Commented-out Code (Dead Logic)": 1, @@ -592069,7 +592069,7 @@ "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 9, + "Bitwise Operations": 1, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, "Resource Deallocation & Cleanup": 0, @@ -592094,9 +592094,9 @@ "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": 2, + "Design Snake Case": 0, "Design Pascal Case": 0, "Design Upper Case": 0, "Design Short Vars": 0, @@ -592158,29 +592158,29 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 870, - "Coding LOC": 799, - "Documentation LOC": 5, - "Structural Magnitude": 527.08, + "Coding LOC": 796, + "Documentation LOC": 8, + "Structural Magnitude": 527.02, "Control Flow Ratio": "37.2%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.344 + "Raw Cognitive Density": 0.345 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "16.48%", - "Error & Exception Exposure": "59.76%", - "Tech Debt Exposure": "9.81%", + "Cognitive Load Exposure": "16.55%", + "Error & Exception Exposure": "59.8%", + "Tech Debt Exposure": "9.82%", "Testing Exposure": "80.0%", "API Exposure": "2.05%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "66.9%", + "State Flux Exposure": "67.13%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "13.69%", + "Documentation Exposure": "13.61%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -592994,9 +592994,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 6714.68, - "Y": 76.28, - "Z": -1173.69 + "X": 6714.45, + "Y": 76.24, + "Z": -1173.46 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -593006,21 +593006,21 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 51, - "Coding LOC": 34, - "Documentation LOC": 1, - "Structural Magnitude": 6.98, + "Coding LOC": 21, + "Documentation LOC": 14, + "Structural Magnitude": 6.72, "Control Flow Ratio": "11.1%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.176 + "Raw Cognitive Density": 0.286 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "9.16%", + "Cognitive Load Exposure": "13.5%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.39%", + "Testing Exposure": "2.45%", "API Exposure": "3.51%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -593028,7 +593028,7 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "63.55%", + "Documentation Exposure": "67.67%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -593053,7 +593053,7 @@ "Defensive Programming Constructs": 1, "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": 1, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -593162,9 +593162,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 6837.92, - "Y": 56.25, - "Z": -894.0 + "X": 6837.79, + "Y": 56.24, + "Z": -893.98 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -593174,21 +593174,21 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 98, - "Coding LOC": 74, - "Documentation LOC": 1, - "Structural Magnitude": 25.28, - "Control Flow Ratio": "38.9%", + "Coding LOC": 56, + "Documentation LOC": 19, + "Structural Magnitude": 24.92, + "Control Flow Ratio": "35.3%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.162 + "Raw Cognitive Density": 0.196 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "8.7%", + "Cognitive Load Exposure": "9.85%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.48%", + "Testing Exposure": "2.54%", "API Exposure": "6.03%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -593196,7 +593196,7 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "57.92%", + "Documentation Exposure": "59.86%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -593263,7 +593263,7 @@ ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 7, + "Control Flow Branches": 6, "Sequential Logic Declarations": 11, "Function Parameters": 34, "Function/Method Declarations": 6, @@ -593380,9 +593380,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 6760.32, + "X": 6760.18, "Y": -24.8, - "Z": -87.7 + "Z": -87.82 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -593392,21 +593392,21 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 73, - "Coding LOC": 58, - "Documentation LOC": 1, - "Structural Magnitude": 11.56, - "Control Flow Ratio": "20.0%", + "Coding LOC": 46, + "Documentation LOC": 13, + "Structural Magnitude": 11.32, + "Control Flow Ratio": "11.1%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.155 + "Raw Cognitive Density": 0.152 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "8.48%", + "Cognitive Load Exposure": "8.38%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.4%", + "Testing Exposure": "2.43%", "API Exposure": "3.22%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -593414,7 +593414,7 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "44.26%", + "Documentation Exposure": "43.32%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -593441,7 +593441,7 @@ ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 4, + "Control Flow Branches": 2, "Sequential Logic Declarations": 16, "Function Parameters": 20, "Function/Method Declarations": 2, @@ -593481,7 +593481,7 @@ "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 2, + "Bitwise Operations": 1, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, "Resource Deallocation & Cleanup": 0, @@ -593558,9 +593558,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 5687.0, - "Y": -127.34, - "Z": -57.5 + "X": 5687.13, + "Y": -127.3, + "Z": -57.68 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -593570,21 +593570,21 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 142, - "Coding LOC": 103, - "Documentation LOC": 15, - "Structural Magnitude": 20.76, - "Control Flow Ratio": "12.5%", + "Coding LOC": 78, + "Documentation LOC": 40, + "Structural Magnitude": 20.26, + "Control Flow Ratio": "10.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.087 + "Raw Cognitive Density": 0.103 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "6.6%", + "Cognitive Load Exposure": "6.98%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.41%", + "Testing Exposure": "2.45%", "API Exposure": "2.79%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -593592,7 +593592,7 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "24.91%", + "Documentation Exposure": "20.11%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -593602,7 +593602,7 @@ "Lines of Code (LOC)": 47, "Control Flow Branches": 1, "Input Parameters": 3, - "Control Flow Ratio": "6.7%", + "Control Flow Ratio": "7.1%", "Start Line": 66, "End Line": 112 }, @@ -593649,15 +593649,15 @@ ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 4, - "Sequential Logic Declarations": 28, + "Control Flow Branches": 3, + "Sequential Logic Declarations": 27, "Function Parameters": 28, "Function/Method Declarations": 5, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 1, "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": 1, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -593681,7 +593681,7 @@ "Event Publishers / Emitters": 0, "Dependency Injection Constructs": 0, "Preprocessor Macros": 0, - "Pointer Arithmetic & Addressing": 7, + "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, @@ -593689,7 +593689,7 @@ "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 4, + "Bitwise Operations": 2, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, "Resource Deallocation & Cleanup": 0, @@ -593766,9 +593766,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 5901.68, + "X": 5901.72, "Y": -7.86, - "Z": -1044.11 + "Z": -1044.03 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -593778,20 +593778,20 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 252, - "Coding LOC": 174, - "Documentation LOC": 23, - "Structural Magnitude": 111.58, - "Control Flow Ratio": "58.2%", + "Coding LOC": 149, + "Documentation LOC": 48, + "Structural Magnitude": 110.68, + "Control Flow Ratio": "57.9%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.293 + "Raw Cognitive Density": 0.329 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "13.85%", + "Cognitive Load Exposure": "15.65%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "23.03%", + "Tech Debt Exposure": "27.09%", "Testing Exposure": "80.0%", "API Exposure": "2.51%", "Concurrency Exposure": "0.0%", @@ -593800,7 +593800,7 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "18.05%", + "Documentation Exposure": "15.01%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -593810,7 +593810,7 @@ "Lines of Code (LOC)": 20, "Control Flow Branches": 5, "Input Parameters": 3, - "Control Flow Ratio": "71.4%", + "Control Flow Ratio": "83.3%", "Start Line": 136, "End Line": 155 }, @@ -593866,23 +593866,13 @@ }, { "Function Name": "L_arg2_NaN", - "Structural Impact": 5.6, - "Lines of Code (LOC)": 8, + "Structural Impact": 5.5, + "Lines of Code (LOC)": 6, "Control Flow Branches": 2, "Input Parameters": 2, "Control Flow Ratio": "100.0%", "Start Line": 91, - "End Line": 98 - }, - { - "Function Name": "xL_arg2_not_denormal", - "Structural Impact": 5.5, - "Lines of Code (LOC)": 20, - "Control Flow Branches": 1, - "Input Parameters": 4, - "Control Flow Ratio": "16.7%", - "Start Line": 62, - "End Line": 81 + "End Line": 96 }, { "Function Name": "L_inf_valid", @@ -593894,6 +593884,16 @@ "Start Line": 124, "End Line": 134 }, + { + "Function Name": "xL_arg2_not_denormal", + "Structural Impact": 5.3, + "Lines of Code (LOC)": 17, + "Control Flow Branches": 1, + "Input Parameters": 4, + "Control Flow Ratio": "16.7%", + "Start Line": 62, + "End Line": 78 + }, { "Function Name": "L_unknown_tags", "Structural Impact": 4.8, @@ -593906,13 +593906,13 @@ }, { "Function Name": "L_div_special", - "Structural Impact": 4.6, - "Lines of Code (LOC)": 8, + "Structural Impact": 4.5, + "Lines of Code (LOC)": 6, "Control Flow Branches": 2, "Input Parameters": 1, "Control Flow Ratio": "100.0%", "Start Line": 82, - "End Line": 89 + "End Line": 87 }, { "Function Name": "L_inf_inf", @@ -593997,15 +593997,15 @@ ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 46, - "Sequential Logic Declarations": 33, + "Control Flow Branches": 44, + "Sequential Logic Declarations": 32, "Function Parameters": 57, "Function/Method Declarations": 19, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 1, "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": 1, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -594037,14 +594037,14 @@ "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 6, + "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": 133, + "Structural Tab Indentations": 128, "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, @@ -594062,11 +594062,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": 0, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 1, + "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, @@ -594114,9 +594114,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 6384.22, - "Y": -84.01, - "Z": -103.96 + "X": 6384.18, + "Y": -84.0, + "Z": -104.08 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -594126,21 +594126,21 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 151, - "Coding LOC": 107, - "Documentation LOC": 5, - "Structural Magnitude": 42.34, - "Control Flow Ratio": "47.4%", + "Coding LOC": 89, + "Documentation LOC": 23, + "Structural Magnitude": 41.78, + "Control Flow Ratio": "45.9%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.215 + "Raw Cognitive Density": 0.247 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "10.53%", + "Cognitive Load Exposure": "11.8%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.55%", + "Testing Exposure": "2.6%", "API Exposure": "4.37%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -594148,29 +594148,29 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "34.06%", + "Documentation Exposure": "31.73%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { "Function Name": "L_ok", - "Structural Impact": 5.1, - "Lines of Code (LOC)": 18, + "Structural Impact": 5.0, + "Lines of Code (LOC)": 16, "Control Flow Branches": 2, "Input Parameters": 1, "Control Flow Ratio": "40.0%", "Start Line": 40, - "End Line": 57 + "End Line": 55 }, { "Function Name": "L_ok_nuo", - "Structural Impact": 5.1, - "Lines of Code (LOC)": 18, + "Structural Impact": 5.0, + "Lines of Code (LOC)": 16, "Control Flow Branches": 2, "Input Parameters": 1, "Control Flow Ratio": "40.0%", "Start Line": 120, - "End Line": 137 + "End Line": 135 }, { "Function Name": "L_nuo_shift_1", @@ -594265,15 +594265,15 @@ ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 18, + "Control Flow Branches": 17, "Sequential Logic Declarations": 20, - "Function Parameters": 28, + "Function Parameters": 26, "Function/Method Declarations": 11, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 1, "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": 2, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -594305,7 +594305,7 @@ "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 3, + "Bitwise Operations": 2, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, "Resource Deallocation & Cleanup": 0, @@ -594375,16 +594375,16 @@ "Path": "assembly/linux_1_0_kernel/drivers_FPU-emu_reg_round.S", "Language": "Assembly", "Architect": "Unknown Architect", - "Indentation Style": "Mixed (0.3% Spaces / 99.7% Tabs)", + "Indentation Style": "Tabs", "Doc Umbrella": 0.0, "Folder Dominant Lang": "assembly", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 5832.97, - "Y": -73.12, - "Z": -316.42 + "X": 5833.12, + "Y": -73.09, + "Z": -316.56 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -594394,20 +594394,20 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 702, - "Coding LOC": 531, - "Documentation LOC": 40, - "Structural Magnitude": 278.42, - "Control Flow Ratio": "69.0%", + "Coding LOC": 395, + "Documentation LOC": 176, + "Structural Magnitude": 273.5, + "Control Flow Ratio": "68.6%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.211 + "Raw Cognitive Density": 0.278 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "10.37%", + "Cognitive Load Exposure": "13.17%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "19.14%", + "Tech Debt Exposure": "33.27%", "Testing Exposure": "80.0%", "API Exposure": "4.91%", "Concurrency Exposure": "0.0%", @@ -594416,29 +594416,29 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "15.82%", + "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { "Function Name": "xDenorm_done", - "Structural Impact": 13.6, - "Lines of Code (LOC)": 30, + "Structural Impact": 13.4, + "Lines of Code (LOC)": 25, "Control Flow Branches": 6, "Input Parameters": 2, "Control Flow Ratio": "75.0%", "Start Line": 145, - "End Line": 174 + "End Line": 169 }, { "Function Name": "xDenorm_shift_more_than_32", - "Structural Impact": 12.2, - "Lines of Code (LOC)": 21, + "Structural Impact": 12.1, + "Lines of Code (LOC)": 19, "Control Flow Branches": 4, "Input Parameters": 4, "Control Flow Ratio": "66.7%", "Start Line": 493, - "End Line": 513 + "End Line": 511 }, { "Function Name": "LRound_To_24", @@ -594490,16 +594490,6 @@ "Start Line": 549, "End Line": 584 }, - { - "Function Name": "xMake_denorm", - "Structural Impact": 7.8, - "Lines of Code (LOC)": 35, - "Control Flow Branches": 2, - "Input Parameters": 3, - "Control Flow Ratio": "50.0%", - "Start Line": 458, - "End Line": 492 - }, { "Function Name": "LRound_nearest_53", "Structural Impact": 7.7, @@ -594510,6 +594500,16 @@ "Start Line": 291, "End Line": 306 }, + { + "Function Name": "xMake_denorm", + "Structural Impact": 7.7, + "Lines of Code (LOC)": 33, + "Control Flow Branches": 2, + "Input Parameters": 3, + "Control Flow Ratio": "50.0%", + "Start Line": 458, + "End Line": 490 + }, { "Function Name": "xDenorm_shift_more_than_63", "Structural Impact": 7.6, @@ -594542,13 +594542,13 @@ }, { "Function Name": "L_underflow_to_zero", - "Structural Impact": 6.6, - "Lines of Code (LOC)": 18, + "Structural Impact": 6.4, + "Lines of Code (LOC)": 15, "Control Flow Branches": 3, "Input Parameters": 1, "Control Flow Ratio": "42.9%", "Start Line": 611, - "End Line": 628 + "End Line": 625 }, { "Function Name": "LCheck_24_round_up", @@ -594580,16 +594580,6 @@ "Start Line": 111, "End Line": 123 }, - { - "Function Name": "LNormalise_shift_done", - "Structural Impact": 4.8, - "Lines of Code (LOC)": 17, - "Control Flow Branches": 3, - "Input Parameters": 0, - "Control Flow Ratio": "75.0%", - "Start Line": 594, - "End Line": 610 - }, { "Function Name": "LRound_nearest_64", "Structural Impact": 4.7, @@ -594640,6 +594630,16 @@ "Start Line": 274, "End Line": 278 }, + { + "Function Name": "LNormalise_shift_done", + "Structural Impact": 4.5, + "Lines of Code (LOC)": 11, + "Control Flow Branches": 3, + "Input Parameters": 0, + "Control Flow Ratio": "75.0%", + "Start Line": 594, + "End Line": 604 + }, { "Function Name": "L_overflow", "Structural Impact": 4.5, @@ -594700,26 +594700,6 @@ "Start Line": 128, "End Line": 143 }, - { - "Function Name": "xL_precision_lost_down", - "Structural Impact": 3.6, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 2, - "Input Parameters": 0, - "Control Flow Ratio": "66.7%", - "Start Line": 446, - "End Line": 457 - }, - { - "Function Name": "xL_precision_lost_up", - "Structural Impact": 3.5, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 2, - "Input Parameters": 0, - "Control Flow Ratio": "66.7%", - "Start Line": 436, - "End Line": 445 - }, { "Function Name": "xL_Normalised", "Structural Impact": 3.3, @@ -594750,6 +594730,26 @@ "Start Line": 410, "End Line": 417 }, + { + "Function Name": "xL_precision_lost_up", + "Structural Impact": 3.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 2, + "Input Parameters": 0, + "Control Flow Ratio": "66.7%", + "Start Line": 436, + "End Line": 440 + }, + { + "Function Name": "xL_precision_lost_down", + "Structural Impact": 3.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 2, + "Input Parameters": 0, + "Control Flow Ratio": "66.7%", + "Start Line": 446, + "End Line": 450 + }, { "Function Name": "L_bugged_denorm_486", "Structural Impact": 3.2, @@ -594840,26 +594840,6 @@ "Start Line": 388, "End Line": 390 }, - { - "Function Name": "LDo_truncate_24", - "Structural Impact": 2.4, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "50.0%", - "Start Line": 247, - "End Line": 254 - }, - { - "Function Name": "LTruncate_53", - "Structural Impact": 2.4, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "50.0%", - "Start Line": 322, - "End Line": 328 - }, { "Function Name": "LDo_24_round_up", "Structural Impact": 2.3, @@ -594881,14 +594861,24 @@ "End Line": 314 }, { - "Function Name": "xUnmasked_underflow", - "Structural Impact": 2.3, - "Lines of Code (LOC)": 6, + "Function Name": "LDo_truncate_24", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 5, "Control Flow Branches": 1, "Input Parameters": 0, "Control Flow Ratio": "50.0%", - "Start Line": 543, - "End Line": 548 + "Start Line": 247, + "End Line": 251 + }, + { + "Function Name": "LTruncate_53", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "50.0%", + "Start Line": 322, + "End Line": 325 }, { "Function Name": "L_entry_bugged", @@ -594910,6 +594900,16 @@ "Start Line": 395, "End Line": 397 }, + { + "Function Name": "xUnmasked_underflow", + "Structural Impact": 2.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "50.0%", + "Start Line": 543, + "End Line": 545 + }, { "Function Name": "LNormalise_shift_up_to_31", "Structural Impact": 2.1, @@ -595003,15 +595003,15 @@ ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 107, + "Control Flow Branches": 105, "Sequential Logic Declarations": 48, - "Function Parameters": 170, + "Function Parameters": 162, "Function/Method Declarations": 58, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 1, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 12, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 4, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -595035,7 +595035,7 @@ "Event Publishers / Emitters": 0, "Dependency Injection Constructs": 0, "Preprocessor Macros": 0, - "Pointer Arithmetic & Addressing": 2, + "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, @@ -595043,15 +595043,15 @@ "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 19, + "Bitwise Operations": 3, "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": 347, - "Structural Space Indentations": 1, + "Structural Tab Indentations": 329, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -595076,7 +595076,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 2, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -595120,9 +595120,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 5546.08, - "Y": -175.29, - "Z": -573.78 + "X": 5546.21, + "Y": -175.27, + "Z": -573.83 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -595132,18 +595132,18 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 190, - "Coding LOC": 138, - "Documentation LOC": 9, - "Structural Magnitude": 68.86, - "Control Flow Ratio": "51.2%", + "Coding LOC": 106, + "Documentation LOC": 41, + "Structural Magnitude": 67.92, + "Control Flow Ratio": "53.8%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.196 + "Raw Cognitive Density": 0.245 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "9.82%", + "Cognitive Load Exposure": "11.72%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", @@ -595154,7 +595154,7 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "22.68%", + "Documentation Exposure": "17.75%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -595164,7 +595164,7 @@ "Lines of Code (LOC)": 28, "Control Flow Branches": 3, "Input Parameters": 4, - "Control Flow Ratio": "37.5%", + "Control Flow Ratio": "50.0%", "Start Line": 80, "End Line": 107 }, @@ -595258,16 +595258,6 @@ "Start Line": 152, "End Line": 164 }, - { - "Function Name": "L_round_the_result", - "Structural Impact": 2.4, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 169, - "End Line": 175 - }, { "Function Name": "L_more_31_no_low", "Structural Impact": 2.2, @@ -595278,6 +595268,16 @@ "Start Line": 123, "End Line": 126 }, + { + "Function Name": "L_round_the_result", + "Structural Impact": 2.1, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 169, + "End Line": 170 + }, { "Function Name": "L_arg1_larger", "Structural Impact": 1.6, @@ -595321,15 +595321,15 @@ ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 22, - "Sequential Logic Declarations": 21, - "Function Parameters": 53, + "Control Flow Branches": 21, + "Sequential Logic Declarations": 18, + "Function Parameters": 48, "Function/Method Declarations": 16, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 1, "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": 1, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -595361,14 +595361,14 @@ "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 6, + "Bitwise Operations": 2, "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": 93, + "Structural Tab Indentations": 88, "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, @@ -595431,16 +595431,16 @@ "Path": "assembly/linux_1_0_kernel/drivers_FPU-emu_reg_u_div.S", "Language": "Assembly", "Architect": "Unknown Architect", - "Indentation Style": "Mixed (2.9% Spaces / 97.1% Tabs)", + "Indentation Style": "Tabs", "Doc Umbrella": 0.0, "Folder Dominant Lang": "assembly", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 6455.71, - "Y": -45.56, - "Z": -399.37 + "X": 6455.27, + "Y": -45.54, + "Z": -399.94 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -595450,18 +595450,18 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 478, - "Coding LOC": 340, - "Documentation LOC": 37, - "Structural Magnitude": 133.7, - "Control Flow Ratio": "43.7%", + "Coding LOC": 244, + "Documentation LOC": 133, + "Structural Magnitude": 124.88, + "Control Flow Ratio": "44.9%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.147 + "Raw Cognitive Density": 0.201 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "8.23%", + "Cognitive Load Exposure": "10.0%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", @@ -595472,30 +595472,20 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "15.4%", + "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { "Function Name": "_divide_kernel", - "Structural Impact": 11.1, + "Structural Impact": 9.1, "Lines of Code (LOC)": 22, - "Control Flow Branches": 4, + "Control Flow Branches": 3, "Input Parameters": 3, - "Control Flow Ratio": "57.1%", + "Control Flow Ratio": "50.0%", "Start Line": 114, "End Line": 135 }, - { - "Function Name": "LSecond_div_done", - "Structural Impact": 8.3, - "Lines of Code (LOC)": 53, - "Control Flow Branches": 3, - "Input Parameters": 1, - "Control Flow Ratio": "33.3%", - "Start Line": 312, - "End Line": 364 - }, { "Function Name": "_reg_u_div", "Structural Impact": 8.1, @@ -595516,15 +595506,25 @@ "Start Line": 186, "End Line": 209 }, + { + "Function Name": "LSecond_div_done", + "Structural Impact": 8.0, + "Lines of Code (LOC)": 47, + "Control Flow Branches": 3, + "Input Parameters": 1, + "Control Flow Ratio": "42.9%", + "Start Line": 312, + "End Line": 358 + }, { "Function Name": "LFirst_div_done", - "Structural Impact": 7.5, - "Lines of Code (LOC)": 37, + "Structural Impact": 7.2, + "Lines of Code (LOC)": 31, "Control Flow Branches": 3, "Input Parameters": 1, - "Control Flow Ratio": "33.3%", + "Control Flow Ratio": "42.9%", "Start Line": 238, - "End Line": 274 + "End Line": 268 }, { "Function Name": "LRound_prep", @@ -595598,13 +595598,13 @@ }, { "Function Name": "LRound_precision", - "Structural Impact": 4.0, - "Lines of Code (LOC)": 11, + "Structural Impact": 3.8, + "Lines of Code (LOC)": 7, "Control Flow Branches": 1, "Input Parameters": 2, "Control Flow Ratio": "25.0%", "Start Line": 441, - "End Line": 451 + "End Line": 447 }, { "Function Name": "L_exit", @@ -595616,16 +595616,6 @@ "Start Line": 470, "End Line": 476 }, - { - "Function Name": "LRound_ovfl", - "Structural Impact": 3.6, - "Lines of Code (LOC)": 15, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "100.0%", - "Start Line": 426, - "End Line": 440 - }, { "Function Name": "LPrevent_3rd_overflow", "Structural Impact": 3.5, @@ -595636,6 +595626,16 @@ "Start Line": 377, "End Line": 390 }, + { + "Function Name": "LRound_ovfl", + "Structural Impact": 3.5, + "Lines of Code (LOC)": 13, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "100.0%", + "Start Line": 426, + "End Line": 438 + }, { "Function Name": "LPrevent_2nd_overflow", "Structural Impact": 3.4, @@ -595688,13 +595688,13 @@ }, { "Function Name": "L_no_overflow", - "Structural Impact": 3.0, - "Lines of Code (LOC)": 20, + "Structural Impact": 2.1, + "Lines of Code (LOC)": 2, "Control Flow Branches": 1, "Input Parameters": 0, "Control Flow Ratio": "100.0%", "Start Line": 164, - "End Line": 183 + "End Line": 165 }, { "Function Name": "LGreater_than_1", @@ -595708,33 +595708,13 @@ }, { "Function Name": "LFirst_div_not_1", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", "Start Line": 234, - "End Line": 236 - }, - { - "Function Name": "Result", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 15, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 35, - "End Line": 49 - }, - { - "Function Name": "Result", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 27, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 50, - "End Line": 76 + "End Line": 235 }, { "Function Name": "LSecond_div_not_1", @@ -595769,15 +595749,15 @@ ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 45, - "Sequential Logic Declarations": 58, - "Function Parameters": 63, - "Function/Method Declarations": 29, + "Control Flow Branches": 44, + "Sequential Logic Declarations": 54, + "Function Parameters": 61, + "Function/Method Declarations": 27, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 1, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 7, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 2, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -595809,15 +595789,15 @@ "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 7, + "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": 231, - "Structural Space Indentations": 7, + "Structural Tab Indentations": 206, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -595886,9 +595866,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 5561.42, + "X": 5561.53, "Y": -93.02, - "Z": -1053.25 + "Z": -1053.19 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -595898,21 +595878,21 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 164, - "Coding LOC": 114, - "Documentation LOC": 16, - "Structural Magnitude": 41.18, - "Control Flow Ratio": "45.5%", + "Coding LOC": 88, + "Documentation LOC": 42, + "Structural Magnitude": 40.66, + "Control Flow Ratio": "43.8%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.175 + "Raw Cognitive Density": 0.216 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "9.13%", + "Cognitive Load Exposure": "10.56%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.53%", + "Testing Exposure": "2.6%", "API Exposure": "2.72%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -595920,7 +595900,7 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "23.3%", + "Documentation Exposure": "18.64%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -595997,15 +595977,15 @@ ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 15, + "Control Flow Branches": 14, "Sequential Logic Declarations": 18, - "Function Parameters": 37, + "Function Parameters": 36, "Function/Method Declarations": 7, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 1, "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": 1, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -596037,14 +596017,14 @@ "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 4, + "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": 77, + "Structural Tab Indentations": 76, "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, @@ -596114,9 +596094,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 6016.62, - "Y": -80.25, - "Z": -153.87 + "X": 6613.99, + "Y": 69.98, + "Z": -988.7 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -596126,29 +596106,29 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 293, - "Coding LOC": 224, - "Documentation LOC": 13, - "Structural Magnitude": 113.58, - "Control Flow Ratio": "52.7%", + "Coding LOC": 167, + "Documentation LOC": 70, + "Structural Magnitude": 112.04, + "Control Flow Ratio": "53.5%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.223 + "Raw Cognitive Density": 0.293 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "10.84%", - "Error & Exception Exposure": "55.24%", - "Tech Debt Exposure": "35.37%", + "Cognitive Load Exposure": "13.87%", + "Error & Exception Exposure": "56.82%", + "Tech Debt Exposure": "51.12%", "Testing Exposure": "80.0%", "API Exposure": "2.44%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "17.3%", + "State Flux Exposure": "20.08%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "17.77%", + "Documentation Exposure": "12.0%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -596164,13 +596144,13 @@ }, { "Function Name": "xOp2_not_denorm", - "Structural Impact": 8.6, - "Lines of Code (LOC)": 37, + "Structural Impact": 8.3, + "Lines of Code (LOC)": 31, "Control Flow Branches": 2, "Input Parameters": 4, - "Control Flow Ratio": "20.0%", + "Control Flow Ratio": "25.0%", "Start Line": 61, - "End Line": 97 + "End Line": 91 }, { "Function Name": "_reg_u_sub", @@ -596342,16 +596322,6 @@ "Start Line": 122, "End Line": 125 }, - { - "Function Name": "L_shift_32", - "Structural Impact": 2.1, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 232, - "End Line": 238 - }, { "Function Name": "L_round", "Structural Impact": 2.1, @@ -596362,6 +596332,16 @@ "Start Line": 248, "End Line": 249 }, + { + "Function Name": "L_shift_32", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 232, + "End Line": 236 + }, { "Function Name": "L_more_than_65", "Structural Impact": 1.5, @@ -596405,15 +596385,15 @@ ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 39, - "Sequential Logic Declarations": 35, - "Function Parameters": 84, + "Control Flow Branches": 38, + "Sequential Logic Declarations": 33, + "Function Parameters": 79, "Function/Method Declarations": 25, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 1, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 2, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 3, "Commented-out Code (Dead Logic)": 0, @@ -596445,14 +596425,14 @@ "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 5, + "Bitwise Operations": 3, "Thread Synchronization Locks": 1, "Immutable Data Declarations": 0, "Resource Deallocation & Cleanup": 0, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 148, + "Structural Tab Indentations": 140, "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, @@ -596515,16 +596495,16 @@ "Path": "assembly/linux_1_0_kernel/drivers_FPU-emu_wm_shrx.S", "Language": "Assembly", "Architect": "Unknown Architect", - "Indentation Style": "Mixed (0.8% Spaces / 99.2% Tabs)", + "Indentation Style": "Tabs", "Doc Umbrella": 0.0, "Folder Dominant Lang": "assembly", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 6426.24, - "Y": 59.32, - "Z": -1230.24 + "X": 6426.17, + "Y": 59.3, + "Z": -1230.09 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -596534,18 +596514,18 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 209, - "Coding LOC": 188, - "Documentation LOC": 1, - "Structural Magnitude": 60.26, - "Control Flow Ratio": "29.4%", + "Coding LOC": 138, + "Documentation LOC": 51, + "Structural Magnitude": 59.26, + "Control Flow Ratio": "28.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.106 + "Raw Cognitive Density": 0.138 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "7.08%", + "Cognitive Load Exposure": "7.95%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", @@ -596556,7 +596536,7 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "24.16%", + "Documentation Exposure": "18.24%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -596643,7 +596623,7 @@ ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 15, + "Control Flow Branches": 14, "Sequential Logic Declarations": 36, "Function Parameters": 108, "Function/Method Declarations": 8, @@ -596651,7 +596631,7 @@ "Defensive Programming Constructs": 8, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 4, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 2, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -596675,7 +596655,7 @@ "Event Publishers / Emitters": 0, "Dependency Injection Constructs": 0, "Preprocessor Macros": 0, - "Pointer Arithmetic & Addressing": 7, + "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, @@ -596683,7 +596663,7 @@ "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 18, + "Bitwise Operations": 6, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, "Resource Deallocation & Cleanup": 0, @@ -596691,7 +596671,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 129, - "Structural Space Indentations": 1, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -596753,16 +596733,16 @@ "Path": "assembly/linux_1_0_kernel/drivers_FPU-emu_wm_sqrt.S", "Language": "Assembly", "Architect": "Unknown Architect", - "Indentation Style": "Mixed (3.4% Spaces / 96.6% Tabs)", + "Indentation Style": "Tabs", "Doc Umbrella": 0.0, "Folder Dominant Lang": "assembly", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 6632.03, - "Y": 3.21, - "Z": -868.14 + "X": 6034.35, + "Y": -147.05, + "Z": -33.31 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -596772,20 +596752,20 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 475, - "Coding LOC": 349, - "Documentation LOC": 24, - "Structural Magnitude": 116.68, - "Control Flow Ratio": "51.6%", + "Coding LOC": 253, + "Documentation LOC": 120, + "Structural Magnitude": 111.06, + "Control Flow Ratio": "33.7%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.203 + "Raw Cognitive Density": 0.142 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "10.1%", + "Cognitive Load Exposure": "8.09%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "13.53%", + "Tech Debt Exposure": "16.65%", "Testing Exposure": "80.0%", "API Exposure": "2.25%", "Concurrency Exposure": "0.0%", @@ -596794,7 +596774,7 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "14.81%", + "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -596818,16 +596798,6 @@ "Start Line": 363, "End Line": 389 }, - { - "Function Name": "sqrt_stage_3_finished", - "Structural Impact": 9.6, - "Lines of Code (LOC)": 18, - "Control Flow Branches": 4, - "Input Parameters": 2, - "Control Flow Ratio": "100.0%", - "Start Line": 328, - "End Line": 345 - }, { "Function Name": "sqrt_stage_2_finish", "Structural Impact": 9.2, @@ -596874,10 +596844,20 @@ "Lines of Code (LOC)": 47, "Control Flow Branches": 1, "Input Parameters": 3, - "Control Flow Ratio": "9.1%", + "Control Flow Ratio": "10.0%", "Start Line": 232, "End Line": 278 }, + { + "Function Name": "sqrt_stage_3_finished", + "Structural Impact": 5.9, + "Lines of Code (LOC)": 18, + "Control Flow Branches": 4, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 328, + "End Line": 345 + }, { "Function Name": "_wm_sqrt", "Structural Impact": 5.7, @@ -597011,15 +596991,15 @@ ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 66, - "Sequential Logic Declarations": 62, - "Function Parameters": 132, + "Control Flow Branches": 31, + "Sequential Logic Declarations": 61, + "Function Parameters": 121, "Function/Method Declarations": 21, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 13, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -597051,15 +597031,15 @@ "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 14, + "Bitwise Operations": 4, "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": 226, - "Structural Space Indentations": 8, + "Structural Tab Indentations": 222, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -597128,9 +597108,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 6021.34, - "Y": 0.29, - "Z": -1362.03 + "X": 6021.35, + "Y": 0.28, + "Z": -1361.95 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -597140,29 +597120,29 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 31, - "Coding LOC": 20, - "Documentation LOC": 6, - "Structural Magnitude": 15.4, + "Coding LOC": 13, + "Documentation LOC": 13, + "Structural Magnitude": 15.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.25 + "Raw Cognitive Density": 0.385 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "11.92%", + "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.3%", + "Testing Exposure": "1.99%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "86.67%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "55.06%", + "Documentation Exposure": "48.73%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [], @@ -597285,9 +597265,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 5647.97, + "X": 5648.04, "Y": -116.27, - "Z": -665.44 + "Z": -665.43 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -597297,18 +597277,18 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 391, - "Coding LOC": 357, - "Documentation LOC": 3, - "Structural Magnitude": 120.04, - "Control Flow Ratio": "46.0%", + "Coding LOC": 314, + "Documentation LOC": 46, + "Structural Magnitude": 119.18, + "Control Flow Ratio": "45.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.16 + "Raw Cognitive Density": 0.175 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "8.62%", + "Cognitive Load Exposure": "9.12%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", @@ -597319,7 +597299,7 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "28.87%", + "Documentation Exposure": "26.6%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -597586,15 +597566,15 @@ ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 52, + "Control Flow Branches": 50, "Sequential Logic Declarations": 61, - "Function Parameters": 54, + "Function Parameters": 50, "Function/Method Declarations": 26, "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": 8, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 1, @@ -597626,7 +597606,7 @@ "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 4, + "Bitwise Operations": 0, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, "Resource Deallocation & Cleanup": 0, @@ -639281,7 +639261,7 @@ "Cognitive Load Exposure": "83.04%", "Error & Exception Exposure": "95.16%", "Tech Debt Exposure": "48.9%", - "Testing Exposure": "35.83%", + "Testing Exposure": "35.82%", "API Exposure": "0.74%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "100.0%", @@ -641162,25 +641142,25 @@ } }, "assembly/freebsd_kernel_arch": { - "Directory Group Magnitude": 1311.26, + "Directory Group Magnitude": 1252.02, "File Count": 17, "Ecosystem Fingerprint (Archetypes)": { "Unclassified": "94.1%", "Static: Literature & Documentation": "5.9%" }, "Average Risk Exposures": { - "Cognitive Load Exposure": "7.65%", - "Error & Exception Exposure": "30.7%", - "Tech Debt Exposure": "2.13%", - "Testing Exposure": "25.06%", + "Cognitive Load Exposure": "9.85%", + "Error & Exception Exposure": "31.11%", + "Tech Debt Exposure": "3.15%", + "Testing Exposure": "25.1%", "API Exposure": "2.02%", - "Concurrency Exposure": "3.65%", - "State Flux Exposure": "2.81%", + "Concurrency Exposure": "4.08%", + "State Flux Exposure": "1.55%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "94.12%", "Instability Exposure": "47.06%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "22.12%", + "Documentation Exposure": "15.82%", "Hardcoded Payload Artifacts": "0.0%" }, "Files": { @@ -641197,9 +641177,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 2927.23, - "Y": 115.81, - "Z": -7509.46 + "X": 3516.24, + "Y": 71.06, + "Z": -8332.32 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -641209,21 +641189,21 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 293, - "Coding LOC": 250, - "Documentation LOC": 5, - "Structural Magnitude": 39.9, - "Control Flow Ratio": "21.6%", + "Coding LOC": 126, + "Documentation LOC": 129, + "Structural Magnitude": 33.42, + "Control Flow Ratio": "17.1%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.052 + "Raw Cognitive Density": 0.087 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.78%", - "Error & Exception Exposure": "55.4%", - "Tech Debt Exposure": "16.8%", - "Testing Exposure": "2.39%", + "Cognitive Load Exposure": "6.59%", + "Error & Exception Exposure": "59.89%", + "Tech Debt Exposure": "32.87%", + "Testing Exposure": "2.47%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -641231,27 +641211,27 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "15.89%", + "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { "Function Name": "wakeup_start", - "Structural Impact": 16.4, + "Structural Impact": 14.4, "Lines of Code (LOC)": 88, - "Control Flow Branches": 5, + "Control Flow Branches": 4, "Input Parameters": 3, - "Control Flow Ratio": "27.8%", + "Control Flow Ratio": "23.5%", "Start Line": 56, "End Line": 143 }, { "Function Name": "wakeup_32", - "Structural Impact": 10.1, + "Structural Impact": 8.1, "Lines of Code (LOC)": 82, - "Control Flow Branches": 2, + "Control Flow Branches": 1, "Input Parameters": 3, - "Control Flow Ratio": "14.3%", + "Control Flow Ratio": "7.7%", "Start Line": 144, "End Line": 225 }, @@ -641288,7 +641268,7 @@ ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 8, + "Control Flow Branches": 6, "Sequential Logic Declarations": 29, "Function Parameters": 27, "Function/Method Declarations": 5, @@ -641296,7 +641276,7 @@ "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 1, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 26, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -641317,7 +641297,7 @@ "Acknowledged Tech Debt (FIXMEs)": 0, "Specification Traceability Tags": 0, "Server-Side Rendering Contexts": 0, - "Event Publishers / Emitters": 1, + "Event Publishers / Emitters": 0, "Dependency Injection Constructs": 0, "Preprocessor Macros": 0, "Pointer Arithmetic & Addressing": 0, @@ -641328,14 +641308,14 @@ "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 37, + "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": 125, + "Structural Tab Indentations": 103, "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, @@ -641405,9 +641385,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 2647.81, - "Y": 152.28, - "Z": -7787.16 + "X": 2648.93, + "Y": 152.18, + "Z": -7788.57 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -641417,21 +641397,21 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 277, - "Coding LOC": 245, - "Documentation LOC": 9, - "Structural Magnitude": 12.4, - "Control Flow Ratio": "76.4%", + "Coding LOC": 130, + "Documentation LOC": 124, + "Structural Magnitude": 10.1, + "Control Flow Ratio": "77.8%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.192 + "Raw Cognitive Density": 0.362 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "9.69%", + "Cognitive Load Exposure": "17.45%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.32%", + "Testing Exposure": "2.34%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -641439,7 +641419,7 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "15.58%", + "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -641457,14 +641437,14 @@ "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 42, - "Sequential Logic Declarations": 13, + "Sequential Logic Declarations": 12, "Function Parameters": 14, "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": 12, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -641496,14 +641476,14 @@ "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 25, + "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": 125, + "Structural Tab Indentations": 123, "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, @@ -641573,9 +641553,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 3253.63, - "Y": 174.98, - "Z": -7676.69 + "X": 3253.24, + "Y": 174.96, + "Z": -7677.11 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -641585,18 +641565,18 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 70, - "Coding LOC": 63, - "Documentation LOC": 2, - "Structural Magnitude": 16.26, - "Control Flow Ratio": "60.0%", + "Coding LOC": 25, + "Documentation LOC": 40, + "Structural Magnitude": 15.5, + "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.127 + "Raw Cognitive Density": 0.28 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "7.64%", + "Cognitive Load Exposure": "13.24%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.3%", @@ -641607,13 +641587,13 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "30.09%", + "Documentation Exposure": "17.69%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 3, + "Control Flow Branches": 2, "Sequential Logic Declarations": 2, "Function Parameters": 2, "Function/Method Declarations": 0, @@ -641621,7 +641601,7 @@ "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "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, @@ -641653,7 +641633,7 @@ "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 22, + "Bitwise Operations": 0, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, "Resource Deallocation & Cleanup": 0, @@ -641730,9 +641710,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 3062.45, - "Y": 89.41, - "Z": -8676.49 + "X": 3062.26, + "Y": 89.43, + "Z": -8675.48 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -641742,18 +641722,18 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 499, - "Coding LOC": 446, - "Documentation LOC": 7, - "Structural Magnitude": 100.52, - "Control Flow Ratio": "11.3%", + "Coding LOC": 344, + "Documentation LOC": 109, + "Structural Magnitude": 98.48, + "Control Flow Ratio": "11.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.074 + "Raw Cognitive Density": 0.093 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "6.27%", + "Cognitive Load Exposure": "6.74%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", @@ -641764,7 +641744,7 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "16.2%", + "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -641931,15 +641911,15 @@ ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 28, + "Control Flow Branches": 27, "Sequential Logic Declarations": 219, - "Function Parameters": 238, + "Function Parameters": 233, "Function/Method Declarations": 16, "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 1, + "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 12, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 2, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -641951,7 +641931,7 @@ "Global State Dependencies": 0, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, - "Collection Iterators / Comprehensions": 1, + "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, @@ -641971,14 +641951,14 @@ "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 1, - "Bitwise Operations": 33, + "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": 342, + "Structural Tab Indentations": 317, "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, @@ -642048,9 +642028,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 2925.86, - "Y": 80.06, - "Z": -8863.22 + "X": 2925.89, + "Y": 80.1, + "Z": -8861.51 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -642060,21 +642040,21 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 119, - "Coding LOC": 105, - "Documentation LOC": 2, - "Structural Magnitude": 5.6, + "Coding LOC": 76, + "Documentation LOC": 31, + "Structural Magnitude": 5.02, "Control Flow Ratio": "18.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.133 + "Raw Cognitive Density": 0.184 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "7.82%", + "Cognitive Load Exposure": "9.42%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.32%", + "Testing Exposure": "2.33%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -642082,7 +642062,7 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "22.59%", + "Documentation Exposure": "16.83%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -642107,7 +642087,7 @@ "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "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, @@ -642139,7 +642119,7 @@ "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 19, + "Bitwise Operations": 0, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, "Resource Deallocation & Cleanup": 0, @@ -642216,9 +642196,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 3083.3, + "X": 3083.15, "Y": 118.21, - "Z": -8096.45 + "Z": -8096.06 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -642228,39 +642208,39 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 1376, - "Coding LOC": 1293, - "Documentation LOC": 27, - "Structural Magnitude": 463.96, + "Coding LOC": 988, + "Documentation LOC": 332, + "Structural Magnitude": 448.66, "Control Flow Ratio": "26.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.151 + "Raw Cognitive Density": 0.189 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "8.34%", - "Error & Exception Exposure": "52.36%", - "Tech Debt Exposure": "10.6%", + "Cognitive Load Exposure": "9.6%", + "Error & Exception Exposure": "53.68%", + "Tech Debt Exposure": "11.72%", "Testing Exposure": "80.0%", "API Exposure": "9.02%", - "Concurrency Exposure": "34.78%", - "State Flux Exposure": "11.21%", + "Concurrency Exposure": "39.76%", + "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "25.63%", + "Documentation Exposure": "20.06%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { "Function Name": "fast_syscall_common", - "Structural Impact": 56.3, + "Structural Impact": 53.6, "Lines of Code (LOC)": 173, - "Control Flow Branches": 17, + "Control Flow Branches": 16, "Input Parameters": 6, - "Control Flow Ratio": "18.1%", + "Control Flow Ratio": "17.2%", "Start Line": 527, "End Line": 699 }, @@ -642326,11 +642306,11 @@ }, { "Function Name": "nmi_calltrap", - "Structural Impact": 16.1, + "Structural Impact": 13.9, "Lines of Code (LOC)": 54, - "Control Flow Branches": 5, + "Control Flow Branches": 4, "Input Parameters": 4, - "Control Flow Ratio": "35.7%", + "Control Flow Ratio": "30.8%", "Start Line": 842, "End Line": 895 }, @@ -642347,12 +642327,12 @@ { "Function Name": "nmi_fromuserspace", "Structural Impact": 11.2, - "Lines of Code (LOC)": 25, + "Lines of Code (LOC)": 24, "Control Flow Branches": 4, "Input Parameters": 3, "Control Flow Ratio": "36.4%", "Start Line": 817, - "End Line": 841 + "End Line": 840 }, { "Function Name": "alltraps_pushregs_no_rax", @@ -642374,16 +642354,6 @@ "Start Line": 1203, "End Line": 1240 }, - { - "Function Name": "outofnmi", - "Structural Impact": 8.9, - "Lines of Code (LOC)": 19, - "Control Flow Branches": 3, - "Input Parameters": 3, - "Control Flow Ratio": "42.9%", - "Start Line": 896, - "End Line": 914 - }, { "Function Name": "fsbase_load_fault", "Structural Impact": 7.7, @@ -642405,14 +642375,14 @@ "End Line": 1374 }, { - "Function Name": "doreti_ast", - "Structural Impact": 6.8, - "Lines of Code (LOC)": 22, - "Control Flow Branches": 3, - "Input Parameters": 1, - "Control Flow Ratio": "42.9%", - "Start Line": 1118, - "End Line": 1139 + "Function Name": "outofnmi", + "Structural Impact": 7.0, + "Lines of Code (LOC)": 19, + "Control Flow Branches": 2, + "Input Parameters": 3, + "Control Flow Ratio": "33.3%", + "Start Line": 896, + "End Line": 914 }, { "Function Name": "alltraps_u", @@ -642434,6 +642404,16 @@ "Start Line": 1140, "End Line": 1156 }, + { + "Function Name": "doreti_ast", + "Structural Impact": 6.4, + "Lines of Code (LOC)": 14, + "Control Flow Branches": 3, + "Input Parameters": 1, + "Control Flow Ratio": "60.0%", + "Start Line": 1118, + "End Line": 1131 + }, { "Function Name": "gs_load_fault", "Structural Impact": 6.4, @@ -642517,12 +642497,12 @@ { "Function Name": "mchk_fromuserspace", "Structural Impact": 3.5, - "Lines of Code (LOC)": 10, + "Lines of Code (LOC)": 9, "Control Flow Branches": 2, "Input Parameters": 0, "Control Flow Ratio": "40.0%", "Start Line": 1021, - "End Line": 1030 + "End Line": 1029 }, { "Function Name": "alltraps_noen_u", @@ -642667,21 +642647,21 @@ ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 140, - "Sequential Logic Declarations": 398, - "Function Parameters": 235, + "Control Flow Branches": 137, + "Sequential Logic Declarations": 390, + "Function Parameters": 230, "Function/Method Declarations": 41, "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 4, + "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 5, "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 44, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 25, - "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": 16, + "Asynchronous/Concurrent Execution": 15, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, "Global State Dependencies": 4, @@ -642696,7 +642676,7 @@ "Acknowledged Tech Debt (FIXMEs)": 2, "Specification Traceability Tags": 0, "Server-Side Rendering Contexts": 0, - "Event Publishers / Emitters": 10, + "Event Publishers / Emitters": 2, "Dependency Injection Constructs": 0, "Preprocessor Macros": 8, "Pointer Arithmetic & Addressing": 0, @@ -642707,14 +642687,14 @@ "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 1, "Thread Sleeps & Blocking Waits": 1, - "Bitwise Operations": 72, + "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": 928, + "Structural Tab Indentations": 889, "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, @@ -642784,9 +642764,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 3654.43, - "Y": 106.09, - "Z": -7985.03 + "X": 2490.44, + "Y": 140.87, + "Z": -7952.9 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -642796,29 +642776,29 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 92, - "Coding LOC": 84, - "Documentation LOC": 3, - "Structural Magnitude": 25.98, - "Control Flow Ratio": "38.5%", + "Coding LOC": 39, + "Documentation LOC": 48, + "Structural Magnitude": 19.68, + "Control Flow Ratio": "41.7%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.143 + "Raw Cognitive Density": 0.256 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "8.1%", - "Error & Exception Exposure": "61.68%", + "Cognitive Load Exposure": "12.19%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.48%", + "Testing Exposure": "2.61%", "API Exposure": "4.85%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "16.47%", + "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "41.91%", + "Documentation Exposure": "36.35%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -642852,26 +642832,6 @@ "Start Line": 66, "End Line": 68 }, - { - "Function Name": "r11", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 46, - "End Line": 52 - }, - { - "Function Name": "r9", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 44, - "End Line": 44 - }, { "Function Name": "kexec_stack", "Structural Impact": 1.2, @@ -642881,31 +642841,21 @@ "Control Flow Ratio": "0.0%", "Start Line": 88, "End Line": 91 - }, - { - "Function Name": "r10", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 45, - "End Line": 45 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 5, - "Sequential Logic Declarations": 8, - "Function Parameters": 11, - "Function/Method Declarations": 7, + "Sequential Logic Declarations": 7, + "Function Parameters": 10, + "Function/Method Declarations": 4, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 10, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 2, - "State Mutations / Variable Reassignments": 1, + "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, @@ -642935,14 +642885,14 @@ "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 20, + "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": 38, + "Structural Tab Indentations": 30, "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, @@ -643012,9 +642962,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 2429.1, - "Y": 149.93, - "Z": -8496.73 + "X": 3743.03, + "Y": 118.51, + "Z": -8298.49 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -643024,21 +642974,21 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 197, - "Coding LOC": 163, - "Documentation LOC": 8, - "Structural Magnitude": 13.86, - "Control Flow Ratio": "16.7%", + "Coding LOC": 92, + "Documentation LOC": 79, + "Structural Magnitude": 12.44, + "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.067 + "Raw Cognitive Density": 0.109 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "6.12%", - "Error & Exception Exposure": "60.89%", + "Cognitive Load Exposure": "7.14%", + "Error & Exception Exposure": "67.33%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.34%", + "Testing Exposure": "2.37%", "API Exposure": "4.15%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -643046,7 +642996,7 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "24.92%", + "Documentation Exposure": "14.31%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -643083,15 +643033,15 @@ ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 6, + "Control Flow Branches": 5, "Sequential Logic Declarations": 30, - "Function Parameters": 8, + "Function Parameters": 7, "Function/Method Declarations": 3, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 11, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 2, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -643123,14 +643073,14 @@ "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 1, "Thread Sleeps & Blocking Waits": 1, - "Bitwise Operations": 28, + "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": 85, + "Structural Tab Indentations": 81, "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, @@ -643173,7 +643123,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, @@ -643200,9 +643150,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 3499.22, - "Y": 134.49, - "Z": -8430.62 + "X": 2908.49, + "Y": 179.25, + "Z": -7608.0 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -643212,21 +643162,21 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 279, - "Coding LOC": 247, - "Documentation LOC": 3, - "Structural Magnitude": 41.44, - "Control Flow Ratio": "28.6%", + "Coding LOC": 99, + "Documentation LOC": 151, + "Structural Magnitude": 32.28, + "Control Flow Ratio": "20.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.053 + "Raw Cognitive Density": 0.101 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.79%", - "Error & Exception Exposure": "55.46%", + "Cognitive Load Exposure": "6.94%", + "Error & Exception Exposure": "62.05%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.39%", + "Testing Exposure": "2.48%", "API Exposure": "6.36%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -643234,17 +643184,17 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "28.93%", + "Documentation Exposure": "12.01%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { "Function Name": "protmode", - "Structural Impact": 11.3, + "Structural Impact": 9.6, "Lines of Code (LOC)": 88, - "Control Flow Branches": 3, + "Control Flow Branches": 2, "Input Parameters": 2, - "Control Flow Ratio": "23.1%", + "Control Flow Ratio": "16.7%", "Start Line": 87, "End Line": 174 }, @@ -643258,16 +643208,6 @@ "Start Line": 36, "End Line": 86 }, - { - "Function Name": "gdt", - "Structural Impact": 4.5, - "Lines of Code (LOC)": 37, - "Control Flow Branches": 2, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 180, - "End Line": 216 - }, { "Function Name": "entry_64", "Structural Impact": 4.5, @@ -643311,7 +643251,7 @@ ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 8, + "Control Flow Branches": 5, "Sequential Logic Declarations": 20, "Function Parameters": 10, "Function/Method Declarations": 7, @@ -643319,7 +643259,7 @@ "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 1, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 26, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 5, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -643351,14 +643291,14 @@ "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 35, + "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": 103, + "Structural Tab Indentations": 80, "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, @@ -643376,11 +643316,11 @@ "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, @@ -643428,9 +643368,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 3382.4, - "Y": 110.33, - "Z": -8949.1 + "X": 3381.88, + "Y": 110.37, + "Z": -8947.9 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -643440,21 +643380,21 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 100, - "Coding LOC": 86, - "Documentation LOC": 9, - "Structural Magnitude": 16.72, - "Control Flow Ratio": "60.0%", + "Coding LOC": 42, + "Documentation LOC": 53, + "Structural Magnitude": 15.84, + "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.093 + "Raw Cognitive Density": 0.167 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "6.74%", - "Error & Exception Exposure": "61.87%", + "Cognitive Load Exposure": "8.84%", + "Error & Exception Exposure": "82.12%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.3%", + "Testing Exposure": "2.31%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -643462,21 +643402,21 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "22.71%", + "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 3, + "Control Flow Branches": 2, "Sequential Logic Declarations": 2, "Function Parameters": 7, "Function/Method Declarations": 0, "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 1, + "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 1, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 8, + "High-Risk Execution Commands": 1, + "I/O and Network Boundaries": 1, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -643508,7 +643448,7 @@ "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 1, "Thread Sleeps & Blocking Waits": 1, - "Bitwise Operations": 22, + "Bitwise Operations": 0, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, "Resource Deallocation & Cleanup": 0, @@ -643585,9 +643525,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 2794.66, - "Y": 125.88, - "Z": -8077.1 + "X": 2795.05, + "Y": 125.85, + "Z": -8077.2 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -643597,29 +643537,29 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 1999, - "Coding LOC": 1780, - "Documentation LOC": 7, - "Structural Magnitude": 319.4, - "Control Flow Ratio": "35.2%", + "Coding LOC": 1500, + "Documentation LOC": 287, + "Structural Magnitude": 311.2, + "Control Flow Ratio": "34.9%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.151 + "Raw Cognitive Density": 0.178 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "8.35%", - "Error & Exception Exposure": "51.19%", - "Tech Debt Exposure": "8.74%", + "Cognitive Load Exposure": "9.21%", + "Error & Exception Exposure": "51.41%", + "Tech Debt Exposure": "8.98%", "Testing Exposure": "80.0%", "API Exposure": "0.0%", - "Concurrency Exposure": "27.3%", + "Concurrency Exposure": "29.62%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "14.91%", + "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -643635,11 +643575,11 @@ }, { "Function Name": "wrmsr_early_faulted", - "Structural Impact": 55.9, + "Structural Impact": 53.3, "Lines of Code (LOC)": 166, - "Control Flow Branches": 17, + "Control Flow Branches": 16, "Input Parameters": 6, - "Control Flow Ratio": "45.9%", + "Control Flow Ratio": "44.4%", "Start Line": 1575, "End Line": 1740 }, @@ -643706,15 +643646,15 @@ ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 204, + "Control Flow Branches": 202, "Sequential Logic Declarations": 376, - "Function Parameters": 952, + "Function Parameters": 885, "Function/Method Declarations": 8, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 3, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 25, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -643735,7 +643675,7 @@ "Acknowledged Tech Debt (FIXMEs)": 1, "Specification Traceability Tags": 0, "Server-Side Rendering Contexts": 0, - "Event Publishers / Emitters": 3, + "Event Publishers / Emitters": 2, "Dependency Injection Constructs": 0, "Preprocessor Macros": 30, "Pointer Arithmetic & Addressing": 0, @@ -643746,14 +643686,14 @@ "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 44, + "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": 1258, + "Structural Tab Indentations": 1231, "Structural Space Indentations": 1, "Hardware Bridge": 0, "Cryptography": 0, @@ -643771,9 +643711,9 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 33, + "Core Var Decl": 23, "Design Camel Case": 0, - "Design Snake Case": 33, + "Design Snake Case": 23, "Design Pascal Case": 0, "Design Upper Case": 0, "Design Short Vars": 2, @@ -643823,9 +643763,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 2773.95, - "Y": 129.35, - "Z": -8576.4 + "X": 2774.16, + "Y": 129.36, + "Z": -8575.33 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -643835,29 +643775,29 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 209, - "Coding LOC": 167, - "Documentation LOC": 12, - "Structural Magnitude": 30.24, + "Coding LOC": 112, + "Documentation LOC": 67, + "Structural Magnitude": 29.14, "Control Flow Ratio": "19.4%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.108 + "Raw Cognitive Density": 0.161 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "7.12%", - "Error & Exception Exposure": "62.37%", + "Cognitive Load Exposure": "8.65%", + "Error & Exception Exposure": "67.17%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.4%", + "Testing Exposure": "2.45%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "20.08%", + "State Flux Exposure": "26.34%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "16.91%", + "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -643942,7 +643882,7 @@ "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 9, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 3, "Commented-out Code (Dead Logic)": 0, @@ -643966,7 +643906,7 @@ "Event Publishers / Emitters": 0, "Dependency Injection Constructs": 0, "Preprocessor Macros": 0, - "Pointer Arithmetic & Addressing": 5, + "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, @@ -643974,14 +643914,14 @@ "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 1, "Thread Sleeps & Blocking Waits": 1, - "Bitwise Operations": 19, + "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": 108, + "Structural Tab Indentations": 93, "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, @@ -643999,12 +643939,12 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 1, + "Core Var Decl": 0, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 1, - "Design Short Vars": 1, + "Design Upper Case": 0, + "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, "Orphaned Logic": 0, @@ -644051,9 +643991,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 3727.07, - "Y": 66.53, - "Z": -8463.9 + "X": 2412.66, + "Y": 97.98, + "Z": -8660.58 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -644063,21 +644003,21 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 77, - "Coding LOC": 71, - "Documentation LOC": 2, - "Structural Magnitude": 13.52, - "Control Flow Ratio": "21.7%", + "Coding LOC": 38, + "Documentation LOC": 35, + "Structural Magnitude": 12.86, + "Control Flow Ratio": "18.2%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.141 + "Raw Cognitive Density": 0.237 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "8.04%", + "Cognitive Load Exposure": "11.38%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.42%", + "Testing Exposure": "2.52%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -644085,7 +644025,7 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "28.0%", + "Documentation Exposure": "18.68%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -644102,7 +644042,7 @@ ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 5, + "Control Flow Branches": 4, "Sequential Logic Declarations": 18, "Function Parameters": 9, "Function/Method Declarations": 1, @@ -644110,7 +644050,7 @@ "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 11, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -644131,7 +644071,7 @@ "Acknowledged Tech Debt (FIXMEs)": 0, "Specification Traceability Tags": 0, "Server-Side Rendering Contexts": 0, - "Event Publishers / Emitters": 2, + "Event Publishers / Emitters": 0, "Dependency Injection Constructs": 0, "Preprocessor Macros": 0, "Pointer Arithmetic & Addressing": 0, @@ -644142,7 +644082,7 @@ "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 21, + "Bitwise Operations": 0, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, "Resource Deallocation & Cleanup": 0, @@ -644219,9 +644159,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 2488.07, - "Y": 134.79, - "Z": -8008.78 + "X": 3651.4, + "Y": 99.96, + "Z": -8041.78 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -644231,21 +644171,21 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 141, - "Coding LOC": 116, - "Documentation LOC": 18, - "Structural Magnitude": 23.72, - "Control Flow Ratio": "66.7%", + "Coding LOC": 67, + "Documentation LOC": 67, + "Structural Magnitude": 20.74, + "Control Flow Ratio": "57.1%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.095 + "Raw Cognitive Density": 0.134 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "6.78%", - "Error & Exception Exposure": "60.75%", + "Cognitive Load Exposure": "7.85%", + "Error & Exception Exposure": "85.3%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.4%", + "Testing Exposure": "2.49%", "API Exposure": "6.5%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -644253,7 +644193,7 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "41.33%", + "Documentation Exposure": "36.9%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -644269,11 +644209,11 @@ }, { "Function Name": "__vdso_ia32_osigcode", - "Structural Impact": 5.5, + "Structural Impact": 3.5, "Lines of Code (LOC)": 29, - "Control Flow Branches": 3, + "Control Flow Branches": 1, "Input Parameters": 0, - "Control Flow Ratio": "75.0%", + "Control Flow Ratio": "50.0%", "Start Line": 104, "End Line": 132 }, @@ -644300,15 +644240,15 @@ ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 6, + "Control Flow Branches": 4, "Sequential Logic Declarations": 3, "Function Parameters": 4, "Function/Method Declarations": 4, "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 3, + "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 9, + "High-Risk Execution Commands": 3, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 4, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -644340,182 +644280,182 @@ "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 3, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 23, + "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": 61, - "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": 0, - "Design Camel Case": 0, - "Design Snake Case": 0, - "Design Pascal Case": 0, - "Design Upper Case": 0, - "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": 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": [] - }, - "assembly/freebsd_kernel_arch/amd64_linux32_linux32_support.S": { - "1. Artifact Identity": { - "Filename": "amd64_linux32_linux32_support.S", - "Path": "assembly/freebsd_kernel_arch/amd64_linux32_linux32_support.S", - "Language": "Assembly", - "Architect": "Unknown Architect", - "Indentation Style": "Tabs", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "assembly", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .s)" - }, - "2. Topological Coordinates": { - "X": 3334.78, - "Y": 92.84, - "Z": -7743.88 - }, - "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": 230, - "Coding LOC": 196, - "Documentation LOC": 20, - "Structural Magnitude": 92.62, - "Control Flow Ratio": "30.4%", - "Popularity Rank": 0, - "Raw Churn Frequency": 0.0, - "Authorship Centralization": 0.0, - "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.291 - }, - "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "13.74%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "80.0%", - "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": "15.18%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "5. Function Analysis": [ - { - "Function Name": "futex_fault", - "Structural Impact": 80.7, - "Lines of Code (LOC)": 194, - "Control Flow Branches": 28, - "Input Parameters": 5, - "Control Flow Ratio": "30.4%", - "Start Line": 35, - "End Line": 228 - } - ], - "6. Contextual Mitigations & Amplifications": "None Detected", - "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 28, - "Sequential Logic Declarations": 64, - "Function Parameters": 99, - "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": 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": 8, - "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": 19, - "Thread Synchronization Locks": 8, - "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 0, - "Event Listeners & Subscribers": 0, - "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 141, + "Structural Tab Indentations": 59, + "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": 0, + "Design Camel Case": 0, + "Design Snake Case": 0, + "Design Pascal Case": 0, + "Design Upper Case": 0, + "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)": 0, + "Direct Downstream (Dependency Blast Radius)": 0, + "Total Upstream (Absolute Fragility)": 0, + "Total Downstream (Absolute Dependency Blast Radius)": 0 + }, + "9. Extracted Dependencies": [] + }, + "assembly/freebsd_kernel_arch/amd64_linux32_linux32_support.S": { + "1. Artifact Identity": { + "Filename": "amd64_linux32_linux32_support.S", + "Path": "assembly/freebsd_kernel_arch/amd64_linux32_linux32_support.S", + "Language": "Assembly", + "Architect": "Unknown Architect", + "Indentation Style": "Tabs", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "assembly", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .s)" + }, + "2. Topological Coordinates": { + "X": 3334.35, + "Y": 92.83, + "Z": -7743.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": 230, + "Coding LOC": 169, + "Documentation LOC": 47, + "Structural Magnitude": 92.08, + "Control Flow Ratio": "30.4%", + "Popularity Rank": 0, + "Raw Churn Frequency": 0.0, + "Authorship Centralization": 0.0, + "Ownership Entropy": 0.0, + "Raw Cognitive Density": 0.337 + }, + "4. Vulnerability & Risk Exposures": { + "Cognitive Load Exposure": "16.1%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "80.0%", + "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": "12.31%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "5. Function Analysis": [ + { + "Function Name": "futex_fault", + "Structural Impact": 80.7, + "Lines of Code (LOC)": 194, + "Control Flow Branches": 28, + "Input Parameters": 5, + "Control Flow Ratio": "30.4%", + "Start Line": 35, + "End Line": 228 + } + ], + "6. Contextual Mitigations & Amplifications": "None Detected", + "7. Structural Signatures (Net Mitigated Signals)": { + "Control Flow Branches": 28, + "Sequential Logic Declarations": 64, + "Function Parameters": 99, + "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": 8, + "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": 8, + "Immutable Data Declarations": 0, + "Resource Deallocation & Cleanup": 0, + "Private / Encapsulated Scopes": 0, + "Event Listeners & Subscribers": 0, + "Bypassed / Skipped Tests": 0, + "Structural Tab Indentations": 141, "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, @@ -644585,9 +644525,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 2580.47, - "Y": 110.02, - "Z": -8384.67 + "X": 2580.79, + "Y": 110.01, + "Z": -8384.19 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -644597,18 +644537,18 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 230, - "Coding LOC": 196, - "Documentation LOC": 20, - "Structural Magnitude": 92.62, + "Coding LOC": 169, + "Documentation LOC": 47, + "Structural Magnitude": 92.08, "Control Flow Ratio": "30.4%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.291 + "Raw Cognitive Density": 0.337 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "13.74%", + "Cognitive Load Exposure": "16.1%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", @@ -644619,7 +644559,7 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "15.18%", + "Documentation Exposure": "12.31%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -644644,7 +644584,7 @@ "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "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, @@ -644676,7 +644616,7 @@ "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 19, + "Bitwise Operations": 0, "Thread Synchronization Locks": 8, "Immutable Data Declarations": 0, "Resource Deallocation & Cleanup": 0, @@ -644753,9 +644693,9 @@ "Identity Proof": "Metadata Anchor (COPYRIGHT)" }, "2. Topological Coordinates": { - "X": 3617.51, + "X": 3617.05, "Y": 137.93, - "Z": -7859.18 + "Z": -7859.06 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -684641,9 +684581,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": -920.62, + "X": -920.57, "Y": -227.61, - "Z": -5536.6 + "Z": -5536.27 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -684798,9 +684738,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -877.3, + "X": -877.25, "Y": -197.73, - "Z": -6314.06 + "Z": -6313.73 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -685096,9 +685036,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -473.69, + "X": -473.64, "Y": -240.93, - "Z": -6480.48 + "Z": -6480.14 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -685274,9 +685214,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -1155.29, + "X": -1155.25, "Y": -217.67, - "Z": -6627.23 + "Z": -6626.89 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -685472,9 +685412,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -1429.18, + "X": -1429.13, "Y": -227.48, - "Z": -6278.06 + "Z": -6277.73 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -685650,9 +685590,9 @@ "Identity Proof": "Single Indicator (Ext: .sh)" }, "2. Topological Coordinates": { - "X": -377.75, + "X": -377.7, "Y": -171.66, - "Z": -6829.81 + "Z": -6829.47 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -685818,9 +685758,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -1053.94, + "X": -1053.89, "Y": -280.11, - "Z": -7108.35 + "Z": -7108.01 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -685996,9 +685936,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -1038.13, + "X": -1038.08, "Y": -260.02, - "Z": -5850.41 + "Z": -5850.07 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -686184,9 +686124,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -328.23, + "X": -328.18, "Y": -217.08, - "Z": -5753.84 + "Z": -5753.51 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -686362,9 +686302,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -678.39, + "X": -678.34, "Y": -218.82, - "Z": -5702.83 + "Z": -5702.5 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -686540,9 +686480,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -1187.04, + "X": -1186.99, "Y": -258.37, - "Z": -5942.78 + "Z": -5942.44 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -686858,9 +686798,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -361.29, + "X": -361.24, "Y": -249.93, - "Z": -5941.7 + "Z": -5941.36 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -687036,9 +686976,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -891.4, + "X": -891.35, "Y": -281.13, - "Z": -6660.73 + "Z": -6660.4 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -687284,9 +687224,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -1717.21, + "X": -1717.16, "Y": -270.39, - "Z": -6241.31 + "Z": -6240.98 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -687452,9 +687392,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -1455.24, + "X": -1455.19, "Y": -297.08, - "Z": -6116.12 + "Z": -6115.78 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -687478,7 +687418,7 @@ "Cognitive Load Exposure": "100.0%", "Error & Exception Exposure": "100.0%", "Tech Debt Exposure": "100.0%", - "Testing Exposure": "3.73%", + "Testing Exposure": "3.72%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "100.0%", @@ -687620,9 +687560,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -1545.16, + "X": -1545.11, "Y": -255.54, - "Z": -6387.46 + "Z": -6387.12 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -687798,9 +687738,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -636.24, + "X": -636.19, "Y": -194.72, - "Z": -6875.26 + "Z": -6874.92 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -687986,9 +687926,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -1327.29, + "X": -1327.24, "Y": -288.84, - "Z": -5476.57 + "Z": -5476.23 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -688164,9 +688104,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -634.67, + "X": -634.62, "Y": -205.38, - "Z": -5979.33 + "Z": -5978.99 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -688362,9 +688302,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -217.52, + "X": -217.47, "Y": -216.95, - "Z": -6332.77 + "Z": -6332.43 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -698465,7 +698405,7 @@ "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "94.95%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "0.57%", + "Testing Exposure": "0.56%", "API Exposure": "2.89%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "100.0%", @@ -701461,9 +701401,9 @@ "Identity Proof": "Single Indicator (Ext: .sol)" }, "2. Topological Coordinates": { - "X": -1575.69, + "X": -1575.64, "Y": -141.56, - "Z": -8611.8 + "Z": -8611.52 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -701743,9 +701683,9 @@ "Identity Proof": "Single Indicator (Ext: .sol)" }, "2. Topological Coordinates": { - "X": -1287.82, + "X": -1287.77, "Y": -203.92, - "Z": -7929.73 + "Z": -7929.46 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -701976,9 +701916,9 @@ "Identity Proof": "Single Indicator (Ext: .sol)" }, "2. Topological Coordinates": { - "X": -1880.57, + "X": -1880.52, "Y": -280.56, - "Z": -7970.68 + "Z": -7970.41 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -702231,9 +702171,9 @@ "Identity Proof": "Single Indicator (Ext: .sol)" }, "2. Topological Coordinates": { - "X": -1551.81, + "X": -1551.76, "Y": -165.03, - "Z": -8428.67 + "Z": -8428.39 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -702962,9 +702902,9 @@ "Identity Proof": "Single Indicator (Ext: .sol)" }, "2. Topological Coordinates": { - "X": -1706.55, + "X": -1706.49, "Y": -276.55, - "Z": -7691.32 + "Z": -7691.04 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -703160,9 +703100,9 @@ "Identity Proof": "Single Indicator (Ext: .sol)" }, "2. Topological Coordinates": { - "X": -1132.43, + "X": -1132.38, "Y": -115.73, - "Z": -8507.21 + "Z": -8506.94 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -703400,9 +703340,9 @@ "Identity Proof": "Single Indicator (Ext: .sol)" }, "2. Topological Coordinates": { - "X": -2036.78, + "X": -2036.73, "Y": -170.9, - "Z": -8299.16 + "Z": -8298.88 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -705982,7 +705922,7 @@ "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "0.84%", + "Testing Exposure": "0.83%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -724096,7 +724036,7 @@ "Cognitive Load Exposure": "60.0%", "Error & Exception Exposure": "69.36%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.92%", + "Testing Exposure": "2.91%", "API Exposure": "1.79%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "100.0%", @@ -761708,45 +761648,44 @@ } } }, - "assembly/freebsd_libc_string": { - "Directory Group Magnitude": 465.18, - "File Count": 25, + "cobol/cobol-programming-course": { + "Directory Group Magnitude": 461.14, + "File Count": 7, "Ecosystem Fingerprint (Archetypes)": { - "Unclassified": "96.0%", - "Static: Literature & Documentation": "4.0%" + "Unclassified": "100.0%" }, "Average Risk Exposures": { - "Cognitive Load Exposure": "8.12%", - "Error & Exception Exposure": "9.11%", - "Tech Debt Exposure": "1.9%", - "Testing Exposure": "2.01%", - "API Exposure": "0.0%", + "Cognitive Load Exposure": "59.27%", + "Error & Exception Exposure": "78.34%", + "Tech Debt Exposure": "99.25%", + "Testing Exposure": "24.6%", + "API Exposure": "1.15%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "5.83%", - "Commented Logic Exposure": "0.26%", - "Specification Exposure": "87.47%", - "Instability Exposure": "48.0%", + "State Flux Exposure": "99.77%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "100.0%", + "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "23.34%", + "Documentation Exposure": "22.78%", "Hardcoded Payload Artifacts": "0.0%" }, "Files": { - "assembly/freebsd_libc_string/gen__setjmp.S": { + "cobol/cobol-programming-course/CBL0106.cbl": { "1. Artifact Identity": { - "Filename": "gen__setjmp.S", - "Path": "assembly/freebsd_libc_string/gen__setjmp.S", - "Language": "Assembly", + "Filename": "CBL0106.cbl", + "Path": "cobol/cobol-programming-course/CBL0106.cbl", + "Language": "Cobol", "Architect": "Unknown Architect", - "Indentation Style": "Tabs", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "assembly", + "Folder Dominant Lang": "cobol", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .s)" + "Identity Proof": "Single Indicator (Ext: .cbl)" }, "2. Topological Coordinates": { - "X": 4110.43, - "Y": 145.49, - "Z": -3208.16 + "X": 1558.96, + "Y": 47.06, + "Z": -8275.49 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -761755,60 +761694,161 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 91, - "Coding LOC": 85, - "Documentation LOC": 1, - "Structural Magnitude": 16.7, - "Control Flow Ratio": "14.3%", + "Total LOC": 196, + "Coding LOC": 161, + "Documentation LOC": 28, + "Structural Magnitude": 84.12, + "Control Flow Ratio": "69.2%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.106 + "Raw Cognitive Density": 0.727 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "7.07%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.3%", + "Cognitive Load Exposure": "45.9%", + "Error & Exception Exposure": "77.11%", + "Tech Debt Exposure": "98.89%", + "Testing Exposure": "2.43%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", + "State Flux Exposure": "99.99%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "25.61%", + "Documentation Exposure": "14.14%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [], + "5. Function Analysis": [ + { + "Function Name": "READ-NEXT-RECORD", + "Structural Impact": 9.4, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 8, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 141, + "End Line": 149 + }, + { + "Function Name": "FILE-CONTROL", + "Structural Impact": 5.0, + "Lines of Code (LOC)": 109, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "20.0%", + "Start Line": 13, + "End Line": 121 + }, + { + "Function Name": "WRITE-OVERLIMIT", + "Structural Impact": 4.5, + "Lines of Code (LOC)": 11, + "Control Flow Branches": 3, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 177, + "End Line": 187 + }, + { + "Function Name": "IS-OVERLIMIT", + "Structural Impact": 3.4, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 2, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 163, + "End Line": 170 + }, + { + "Function Name": "IS-STATE-VIRGINIA", + "Structural Impact": 3.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 2, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 172, + "End Line": 175 + }, + { + "Function Name": "CLOSE-STOP", + "Structural Impact": 2.3, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "50.0%", + "Start Line": 151, + "End Line": 156 + }, + { + "Function Name": "READ-RECORD", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 158, + "End Line": 161 + }, + { + "Function Name": "WRITE-HEADERS", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 13, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 127, + "End Line": 139 + }, + { + "Function Name": "WRITE-RECORD", + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 189, + "End Line": 194 + }, + { + "Function Name": "OPEN-FILES", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 123, + "End Line": 125 + } + ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 4, - "Sequential Logic Declarations": 24, - "Function Parameters": 22, - "Function/Method Declarations": 0, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 1, + "Control Flow Branches": 18, + "Sequential Logic Declarations": 8, + "Function Parameters": 0, + "Function/Method Declarations": 10, + "Class/Entity Declarations": 1, + "Defensive Programming Constructs": 5, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 7, + "I/O and Network Boundaries": 26, "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 0, + "State Mutations / Variable Reassignments": 47, "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 0, + "Structured Documentation Blocks": 1, "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, - "Authorship Metadata": 0, + "Authorship Metadata": 1, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, "Specification Traceability Tags": 0, @@ -761822,17 +761862,17 @@ "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 0, + "Fatal Aborts & Exceptions": 1, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 22, + "Bitwise Operations": 0, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, + "Resource Deallocation & Cleanup": 3, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 40, - "Structural Space Indentations": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 161, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -761840,7 +761880,7 @@ "Feature Flags": 0, "Serialization Parsing": 0, "Regex Execution": 0, - "Time Date Logic": 0, + "Time Date Logic": 4, "Cloud LLM API Integrations": 0, "AI Orchestration Frameworks": 0, "Vector Databases (RAG)": 0, @@ -761849,15 +761889,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": 3, "Design Camel Case": 0, "Design Snake Case": 0, - "Design Pascal Case": 0, - "Design Upper Case": 0, + "Design Pascal Case": 1, + "Design Upper Case": 2, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 10, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -761888,22 +761928,22 @@ }, "9. Extracted Dependencies": [] }, - "assembly/freebsd_libc_string/gen_fabs.S": { + "cobol/cobol-programming-course/CBL0106C.cbl": { "1. Artifact Identity": { - "Filename": "gen_fabs.S", - "Path": "assembly/freebsd_libc_string/gen_fabs.S", - "Language": "Assembly", + "Filename": "CBL0106C.cbl", + "Path": "cobol/cobol-programming-course/CBL0106C.cbl", + "Language": "Cobol", "Architect": "Unknown Architect", - "Indentation Style": "Tabs", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "assembly", + "Folder Dominant Lang": "cobol", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .s)" + "Identity Proof": "Single Indicator (Ext: .cbl)" }, "2. Topological Coordinates": { - "X": 5427.03, - "Y": 93.19, - "Z": -3972.87 + "X": 1358.84, + "Y": 24.82, + "Z": -9039.18 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -761912,60 +761952,161 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 46, - "Coding LOC": 40, - "Documentation LOC": 1, - "Structural Magnitude": 15.8, - "Control Flow Ratio": "100.0%", + "Total LOC": 205, + "Coding LOC": 167, + "Documentation LOC": 32, + "Structural Magnitude": 89.64, + "Control Flow Ratio": "66.7%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.15 + "Raw Cognitive Density": 0.749 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "8.32%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.3%", + "Cognitive Load Exposure": "48.06%", + "Error & Exception Exposure": "77.01%", + "Tech Debt Exposure": "98.57%", + "Testing Exposure": "2.43%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", + "State Flux Exposure": "99.99%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "40.94%", + "Documentation Exposure": "13.56%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [], + "5. Function Analysis": [ + { + "Function Name": "READ-NEXT-RECORD", + "Structural Impact": 9.4, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 8, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 142, + "End Line": 150 + }, + { + "Function Name": "IS-OVERLIMIT", + "Structural Impact": 5.8, + "Lines of Code (LOC)": 16, + "Control Flow Branches": 4, + "Input Parameters": 0, + "Control Flow Ratio": "66.7%", + "Start Line": 164, + "End Line": 179 + }, + { + "Function Name": "FILE-CONTROL", + "Structural Impact": 5.0, + "Lines of Code (LOC)": 110, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "20.0%", + "Start Line": 13, + "End Line": 122 + }, + { + "Function Name": "WRITE-OVERLIMIT", + "Structural Impact": 4.5, + "Lines of Code (LOC)": 11, + "Control Flow Branches": 3, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 186, + "End Line": 196 + }, + { + "Function Name": "IS-STATE-VIRGINIA", + "Structural Impact": 3.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 2, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 181, + "End Line": 184 + }, + { + "Function Name": "CLOSE-STOP", + "Structural Impact": 2.3, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "50.0%", + "Start Line": 152, + "End Line": 157 + }, + { + "Function Name": "READ-RECORD", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 159, + "End Line": 162 + }, + { + "Function Name": "WRITE-HEADERS", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 13, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 128, + "End Line": 140 + }, + { + "Function Name": "WRITE-RECORD", + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 198, + "End Line": 203 + }, + { + "Function Name": "OPEN-FILES", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 124, + "End Line": 126 + } + ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 1, - "Sequential Logic Declarations": 0, - "Function Parameters": 5, - "Function/Method Declarations": 0, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 0, + "Control Flow Branches": 20, + "Sequential Logic Declarations": 10, + "Function Parameters": 0, + "Function/Method Declarations": 10, + "Class/Entity Declarations": 1, + "Defensive Programming Constructs": 6, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 7, + "I/O and Network Boundaries": 26, "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 0, + "State Mutations / Variable Reassignments": 50, "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 0, + "Structured Documentation Blocks": 1, "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, - "Authorship Metadata": 0, + "Authorship Metadata": 1, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, "Specification Traceability Tags": 0, @@ -761977,19 +762118,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, + "Fatal Aborts & Exceptions": 2, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 19, + "Bitwise Operations": 0, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, + "Resource Deallocation & Cleanup": 3, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 9, - "Structural Space Indentations": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 167, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -761997,7 +762138,7 @@ "Feature Flags": 0, "Serialization Parsing": 0, "Regex Execution": 0, - "Time Date Logic": 0, + "Time Date Logic": 4, "Cloud LLM API Integrations": 0, "AI Orchestration Frameworks": 0, "Vector Databases (RAG)": 0, @@ -762006,15 +762147,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": 3, "Design Camel Case": 0, "Design Snake Case": 0, - "Design Pascal Case": 0, - "Design Upper Case": 0, + "Design Pascal Case": 1, + "Design Upper Case": 2, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 10, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -762045,22 +762186,22 @@ }, "9. Extracted Dependencies": [] }, - "assembly/freebsd_libc_string/gen_setjmp.S": { + "cobol/cobol-programming-course/CBLDB21.cbl": { "1. Artifact Identity": { - "Filename": "gen_setjmp.S", - "Path": "assembly/freebsd_libc_string/gen_setjmp.S", - "Language": "Assembly", + "Filename": "CBLDB21.cbl", + "Path": "cobol/cobol-programming-course/CBLDB21.cbl", + "Language": "Cobol", "Architect": "Unknown Architect", - "Indentation Style": "Tabs", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "assembly", + "Folder Dominant Lang": "cobol", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .s)" + "Identity Proof": "Single Indicator (Ext: .cbl)" }, "2. Topological Coordinates": { - "X": 4780.03, - "Y": 148.88, - "Z": -4230.28 + "X": 789.93, + "Y": 93.43, + "Z": -8752.23 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -762069,60 +762210,131 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 112, - "Coding LOC": 104, - "Documentation LOC": 2, - "Structural Magnitude": 17.08, - "Control Flow Ratio": "16.7%", + "Total LOC": 145, + "Coding LOC": 107, + "Documentation LOC": 30, + "Structural Magnitude": 53.44, + "Control Flow Ratio": "62.5%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.106 + "Raw Cognitive Density": 0.897 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "7.06%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.3%", - "API Exposure": "0.0%", + "Cognitive Load Exposure": "60.7%", + "Error & Exception Exposure": "69.2%", + "Tech Debt Exposure": "99.46%", + "Testing Exposure": "2.49%", + "API Exposure": "2.78%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", + "State Flux Exposure": "99.03%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "22.7%", + "Documentation Exposure": "19.21%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [], + "5. Function Analysis": [ + { + "Function Name": "LIST-ALL", + "Structural Impact": 12.9, + "Lines of Code (LOC)": 19, + "Control Flow Branches": 11, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 101, + "End Line": 119 + }, + { + "Function Name": "SQL-ERROR-HANDLING", + "Structural Impact": 7.7, + "Lines of Code (LOC)": 13, + "Control Flow Branches": 6, + "Input Parameters": 0, + "Control Flow Ratio": "66.7%", + "Start Line": 132, + "End Line": 144 + }, + { + "Function Name": "FILE-CONTROL", + "Structural Impact": 5.0, + "Lines of Code (LOC)": 73, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "20.0%", + "Start Line": 14, + "End Line": 86 + }, + { + "Function Name": "PROG-START", + "Structural Impact": 2.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 92, + "End Line": 94 + }, + { + "Function Name": "PRINT-AND-GET1", + "Structural Impact": 2.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 120, + "End Line": 122 + }, + { + "Function Name": "PRINT-A-LINE", + "Structural Impact": 1.4, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 123, + "End Line": 130 + }, + { + "Function Name": "PROG-END", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 95, + "End Line": 97 + } + ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 6, - "Sequential Logic Declarations": 30, - "Function Parameters": 51, - "Function/Method Declarations": 0, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 1, - "Type/Safety Bypasses": 0, + "Control Flow Branches": 20, + "Sequential Logic Declarations": 12, + "Function Parameters": 1, + "Function/Method Declarations": 7, + "Class/Entity Declarations": 1, + "Defensive Programming Constructs": 5, + "Type/Safety Bypasses": 1, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 7, - "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 0, + "I/O and Network Boundaries": 15, + "Exposed API / Public Exports": 1, + "State Mutations / Variable Reassignments": 18, "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 0, + "Structured Documentation Blocks": 1, "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, + "Metaprogramming & Reflection": 7, "Module Dependencies (Imports)": 0, - "Authorship Metadata": 0, + "Authorship Metadata": 1, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, "Specification Traceability Tags": 0, @@ -762134,23 +762346,23 @@ "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, - "Ad-hoc Print / Debug Statements": 0, + "Ad-hoc Print / Debug Statements": 2, "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 0, + "Fatal Aborts & Exceptions": 2, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 21, + "Bitwise Operations": 0, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, + "Resource Deallocation & Cleanup": 3, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 59, - "Structural Space Indentations": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 107, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, - "Ipc Rpc Bridges": 0, + "Ipc Rpc Bridges": 8, "Feature Flags": 0, "Serialization Parsing": 0, "Regex Execution": 0, @@ -762163,15 +762375,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": 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, + "Orphaned Logic": 7, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -762202,22 +762414,22 @@ }, "9. Extracted Dependencies": [] }, - "assembly/freebsd_libc_string/gen_sigsetjmp.S": { + "cobol/cobol-programming-course/CBLDB22.cbl": { "1. Artifact Identity": { - "Filename": "gen_sigsetjmp.S", - "Path": "assembly/freebsd_libc_string/gen_sigsetjmp.S", - "Language": "Assembly", + "Filename": "CBLDB22.cbl", + "Path": "cobol/cobol-programming-course/CBLDB22.cbl", + "Language": "Cobol", "Architect": "Unknown Architect", - "Indentation Style": "Tabs", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "assembly", + "Folder Dominant Lang": "cobol", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .s)" + "Identity Proof": "Single Indicator (Ext: .cbl)" }, "2. Topological Coordinates": { - "X": 5469.3, - "Y": 92.84, - "Z": -2757.47 + "X": 1274.99, + "Y": 99.49, + "Z": -8918.07 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -762226,61 +762438,172 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 113, - "Coding LOC": 103, - "Documentation LOC": 4, - "Structural Magnitude": 17.06, - "Control Flow Ratio": "24.3%", + "Total LOC": 202, + "Coding LOC": 157, + "Documentation LOC": 39, + "Structural Magnitude": 94.04, + "Control Flow Ratio": "76.5%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.136 + "Raw Cognitive Density": 1.083 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "7.9%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "30.98%", - "Testing Exposure": "2.3%", - "API Exposure": "0.0%", + "Cognitive Load Exposure": "79.1%", + "Error & Exception Exposure": "71.51%", + "Tech Debt Exposure": "99.07%", + "Testing Exposure": "80.0%", + "API Exposure": "2.61%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", + "State Flux Exposure": "99.82%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "22.25%", + "Documentation Exposure": "16.17%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [], + "5. Function Analysis": [ + { + "Function Name": "GET-ALL", + "Structural Impact": 12.9, + "Lines of Code (LOC)": 19, + "Control Flow Branches": 11, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 132, + "End Line": 150 + }, + { + "Function Name": "GET-SPECIFIC", + "Structural Impact": 12.9, + "Lines of Code (LOC)": 19, + "Control Flow Branches": 11, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 156, + "End Line": 174 + }, + { + "Function Name": "SQL-ERROR-HANDLING", + "Structural Impact": 7.7, + "Lines of Code (LOC)": 13, + "Control Flow Branches": 6, + "Input Parameters": 0, + "Control Flow Ratio": "66.7%", + "Start Line": 189, + "End Line": 201 + }, + { + "Function Name": "PROCESS-INPUT", + "Structural Impact": 6.3, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 5, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 124, + "End Line": 130 + }, + { + "Function Name": "FILE-CONTROL", + "Structural Impact": 5.0, + "Lines of Code (LOC)": 97, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "20.0%", + "Start Line": 13, + "End Line": 109 + }, + { + "Function Name": "PROG-START", + "Structural Impact": 4.3, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 3, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 111, + "End Line": 117 + }, + { + "Function Name": "PRINT-ALL", + "Structural Impact": 2.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 152, + "End Line": 154 + }, + { + "Function Name": "PRINT-SPECIFIC", + "Structural Impact": 2.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 176, + "End Line": 178 + }, + { + "Function Name": "PRINT-A-LINE", + "Structural Impact": 1.4, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 180, + "End Line": 187 + }, + { + "Function Name": "PROG-END", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 119, + "End Line": 120 + }, + { + "Function Name": "REPOUT", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 121, + "End Line": 122 + } + ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 9, - "Sequential Logic Declarations": 28, - "Function Parameters": 50, - "Function/Method Declarations": 0, + "Control Flow Branches": 39, + "Sequential Logic Declarations": 12, + "Function Parameters": 1, + "Function/Method Declarations": 11, "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 0, + "Defensive Programming Constructs": 8, + "Type/Safety Bypasses": 2, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 9, - "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 0, + "I/O and Network Boundaries": 27, + "Exposed API / Public Exports": 1, + "State Mutations / Variable Reassignments": 33, "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, + "Metaprogramming & Reflection": 12, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, - "Planned Work (TODOs)": 1, + "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, "Specification Traceability Tags": 0, "Server-Side Rendering Contexts": 0, @@ -762291,23 +762614,23 @@ "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, - "Ad-hoc Print / Debug Statements": 0, + "Ad-hoc Print / Debug Statements": 2, "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 0, + "Fatal Aborts & Exceptions": 2, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 24, + "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": 54, - "Structural Space Indentations": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 157, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, - "Ipc Rpc Bridges": 0, + "Ipc Rpc Bridges": 13, "Feature Flags": 0, "Serialization Parsing": 0, "Regex Execution": 0, @@ -762320,15 +762643,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": 9, "Design Camel Case": 0, "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, - "Orphaned Logic": 0, + "Orphaned Logic": 10, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -762359,22 +762682,22 @@ }, "9. Extracted Dependencies": [] }, - "assembly/freebsd_libc_string/stdlib_div.S": { + "cobol/cobol-programming-course/CBLDB23.cbl": { "1. Artifact Identity": { - "Filename": "stdlib_div.S", - "Path": "assembly/freebsd_libc_string/stdlib_div.S", - "Language": "Assembly", + "Filename": "CBLDB23.cbl", + "Path": "cobol/cobol-programming-course/CBLDB23.cbl", + "Language": "Cobol", "Architect": "Unknown Architect", - "Indentation Style": "Tabs", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "assembly", + "Folder Dominant Lang": "cobol", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .s)" + "Identity Proof": "Single Indicator (Ext: .cbl)" }, "2. Topological Coordinates": { - "X": 4872.79, - "Y": 169.09, - "Z": -2543.95 + "X": 1054.57, + "Y": 159.02, + "Z": -8485.81 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -762383,60 +762706,171 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 19, - "Coding LOC": 14, - "Documentation LOC": 1, - "Structural Magnitude": 15.28, - "Control Flow Ratio": "20.0%", + "Total LOC": 189, + "Coding LOC": 156, + "Documentation LOC": 27, + "Structural Magnitude": 91.92, + "Control Flow Ratio": "76.5%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.429 + "Raw Cognitive Density": 1.064 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.0%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.14%", - "API Exposure": "0.0%", + "Cognitive Load Exposure": "74.85%", + "Error & Exception Exposure": "70.48%", + "Tech Debt Exposure": "99.11%", + "Testing Exposure": "80.0%", + "API Exposure": "2.64%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", + "State Flux Exposure": "99.71%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "93.33%", + "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "66.03%", + "Documentation Exposure": "17.37%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [], + "5. Function Analysis": [ + { + "Function Name": "GET-ALL", + "Structural Impact": 12.9, + "Lines of Code (LOC)": 19, + "Control Flow Branches": 11, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 125, + "End Line": 143 + }, + { + "Function Name": "GET-SPECIFIC", + "Structural Impact": 12.9, + "Lines of Code (LOC)": 19, + "Control Flow Branches": 11, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 147, + "End Line": 165 + }, + { + "Function Name": "SQL-ERROR-HANDLING", + "Structural Impact": 7.7, + "Lines of Code (LOC)": 13, + "Control Flow Branches": 6, + "Input Parameters": 0, + "Control Flow Ratio": "66.7%", + "Start Line": 176, + "End Line": 188 + }, + { + "Function Name": "PROCESS-INPUT", + "Structural Impact": 6.3, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 5, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 118, + "End Line": 124 + }, + { + "Function Name": "FILE-CONTROL", + "Structural Impact": 5.0, + "Lines of Code (LOC)": 92, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "20.0%", + "Start Line": 14, + "End Line": 105 + }, + { + "Function Name": "PROG-START", + "Structural Impact": 4.3, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 3, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 107, + "End Line": 113 + }, + { + "Function Name": "PRINT-ALL", + "Structural Impact": 2.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 144, + "End Line": 146 + }, + { + "Function Name": "PRINT-SPECIFIC", + "Structural Impact": 2.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 166, + "End Line": 168 + }, + { + "Function Name": "PRINT-A-LINE", + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 169, + "End Line": 174 + }, + { + "Function Name": "PROG-END", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 114, + "End Line": 115 + }, + { + "Function Name": "REPOUT", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 116, + "End Line": 117 + } + ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 1, - "Sequential Logic Declarations": 4, - "Function Parameters": 4, - "Function/Method Declarations": 0, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 0, + "Control Flow Branches": 39, + "Sequential Logic Declarations": 12, + "Function Parameters": 1, + "Function/Method Declarations": 11, + "Class/Entity Declarations": 1, + "Defensive Programming Constructs": 8, + "Type/Safety Bypasses": 2, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 0, + "I/O and Network Boundaries": 27, + "Exposed API / Public Exports": 1, + "State Mutations / Variable Reassignments": 31, "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 0, + "Structured Documentation Blocks": 1, "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, + "Metaprogramming & Reflection": 12, "Module Dependencies (Imports)": 0, - "Authorship Metadata": 0, + "Authorship Metadata": 1, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, "Specification Traceability Tags": 0, @@ -762448,23 +762882,23 @@ "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, - "Ad-hoc Print / Debug Statements": 0, + "Ad-hoc Print / Debug Statements": 2, "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 0, + "Fatal Aborts & Exceptions": 2, "Thread Sleeps & Blocking Waits": 0, "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": 7, - "Structural Space Indentations": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 156, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, - "Ipc Rpc Bridges": 0, + "Ipc Rpc Bridges": 13, "Feature Flags": 0, "Serialization Parsing": 0, "Regex Execution": 0, @@ -762477,15 +762911,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": 9, "Design Camel Case": 0, "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, - "Orphaned Logic": 0, + "Orphaned Logic": 10, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -762516,22 +762950,22 @@ }, "9. Extracted Dependencies": [] }, - "assembly/freebsd_libc_string/stdlib_ldiv.S": { + "cobol/cobol-programming-course/DEPTPAY.CBL": { "1. Artifact Identity": { - "Filename": "stdlib_ldiv.S", - "Path": "assembly/freebsd_libc_string/stdlib_ldiv.S", - "Language": "Assembly", + "Filename": "DEPTPAY.CBL", + "Path": "cobol/cobol-programming-course/DEPTPAY.CBL", + "Language": "Cobol", "Architect": "Unknown Architect", - "Indentation Style": "Tabs", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "assembly", + "Folder Dominant Lang": "cobol", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .s)" + "Identity Proof": "Single Indicator (Ext: .cbl)" }, "2. Topological Coordinates": { - "X": 4381.55, - "Y": 102.54, - "Z": -4180.49 + "X": 1134.89, + "Y": 144.73, + "Z": -8414.57 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -762540,53 +762974,74 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 17, - "Coding LOC": 12, + "Total LOC": 37, + "Coding LOC": 33, "Documentation LOC": 1, - "Structural Magnitude": 15.24, - "Control Flow Ratio": "50.0%", + "Structural Magnitude": 10.46, + "Control Flow Ratio": "13.3%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.5 + "Raw Cognitive Density": 0.636 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.0%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "1.84%", + "Cognitive Load Exposure": "38.83%", + "Error & Exception Exposure": "89.31%", + "Tech Debt Exposure": "99.94%", + "Testing Exposure": "2.38%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", + "State Flux Exposure": "99.83%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "80.0%", + "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "59.46%", + "Documentation Exposure": "46.24%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [], + "5. Function Analysis": [ + { + "Function Name": "AVERAGE-SALARY", + "Structural Impact": 1.4, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 19, + "End Line": 27 + }, + { + "Function Name": "DISPLAY-DETAILS", + "Structural Impact": 1.4, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 29, + "End Line": 35 + } + ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 1, - "Sequential Logic Declarations": 1, - "Function Parameters": 2, - "Function/Method Declarations": 0, - "Class/Entity Declarations": 0, + "Control Flow Branches": 2, + "Sequential Logic Declarations": 13, + "Function Parameters": 0, + "Function/Method Declarations": 2, + "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": 0, - "State Mutations / Variable Reassignments": 0, + "State Mutations / Variable Reassignments": 7, "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, @@ -762605,9 +763060,9 @@ "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, - "Ad-hoc Print / Debug Statements": 0, + "Ad-hoc Print / Debug Statements": 8, "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 0, + "Fatal Aborts & Exceptions": 1, "Thread Sleeps & Blocking Waits": 0, "Bitwise Operations": 0, "Thread Synchronization Locks": 0, @@ -762616,8 +763071,8 @@ "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 5, - "Structural Space Indentations": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 33, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -762642,7 +763097,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 2, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -762673,22 +763128,22 @@ }, "9. Extracted Dependencies": [] }, - "assembly/freebsd_libc_string/stdlib_lldiv.S": { + "cobol/cobol-programming-course/EMPPAY.CBL": { "1. Artifact Identity": { - "Filename": "stdlib_lldiv.S", - "Path": "assembly/freebsd_libc_string/stdlib_lldiv.S", - "Language": "Assembly", + "Filename": "EMPPAY.CBL", + "Path": "cobol/cobol-programming-course/EMPPAY.CBL", + "Language": "Cobol", "Architect": "Unknown Architect", - "Indentation Style": "Tabs", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "assembly", + "Folder Dominant Lang": "cobol", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .s)" + "Identity Proof": "Single Indicator (Ext: .cbl)" }, "2. Topological Coordinates": { - "X": 5695.35, - "Y": 69.18, - "Z": -3386.82 + "X": 1713.75, + "Y": -10.87, + "Z": -9201.58 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -762697,60 +763152,101 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 17, - "Coding LOC": 12, - "Documentation LOC": 1, - "Structural Magnitude": 15.24, - "Control Flow Ratio": "50.0%", + "Total LOC": 55, + "Coding LOC": 51, + "Documentation LOC": 0, + "Structural Magnitude": 37.52, + "Control Flow Ratio": "45.5%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.5 + "Raw Cognitive Density": 1.044 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.0%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "1.84%", + "Cognitive Load Exposure": "67.44%", + "Error & Exception Exposure": "93.79%", + "Tech Debt Exposure": "99.71%", + "Testing Exposure": "2.47%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", + "State Flux Exposure": "100.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "80.0%", + "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "59.46%", + "Documentation Exposure": "32.78%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [], + "5. Function Analysis": [ + { + "Function Name": "PAYMENT-WEEKLY", + "Structural Impact": 5.5, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 4, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 30, + "End Line": 39 + }, + { + "Function Name": "PAYMENT-MONTHLY", + "Structural Impact": 3.4, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 2, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 40, + "End Line": 47 + }, + { + "Function Name": "SHOW-OUTPUT", + "Structural Impact": 1.4, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 48, + "End Line": 55 + }, + { + "Function Name": "INITIALIZATION", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 25, + "End Line": 29 + } + ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 1, - "Sequential Logic Declarations": 1, - "Function Parameters": 2, - "Function/Method Declarations": 0, - "Class/Entity Declarations": 0, + "Control Flow Branches": 10, + "Sequential Logic Declarations": 12, + "Function Parameters": 0, + "Function/Method Declarations": 4, + "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": 0, - "State Mutations / Variable Reassignments": 0, + "State Mutations / Variable Reassignments": 25, "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 0, + "Structured Documentation Blocks": 1, "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, - "Authorship Metadata": 0, + "Authorship Metadata": 1, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, "Specification Traceability Tags": 0, @@ -762762,9 +763258,9 @@ "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, - "Ad-hoc Print / Debug Statements": 0, + "Ad-hoc Print / Debug Statements": 7, "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 0, + "Fatal Aborts & Exceptions": 1, "Thread Sleeps & Blocking Waits": 0, "Bitwise Operations": 0, "Thread Synchronization Locks": 0, @@ -762773,8 +763269,8 @@ "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 5, - "Structural Space Indentations": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 51, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -762799,7 +763295,7 @@ "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, @@ -762829,56 +763325,81 @@ "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [] - }, - "assembly/freebsd_libc_string/string_bcmp.S": { + } + } + }, + "shell/sqlite": { + "Directory Group Magnitude": 459.2, + "File Count": 13, + "Ecosystem Fingerprint (Archetypes)": { + "Unclassified": "92.3%", + "Static: Literature & Documentation": "7.7%" + }, + "Average Risk Exposures": { + "Cognitive Load Exposure": "35.49%", + "Error & Exception Exposure": "66.87%", + "Tech Debt Exposure": "75.36%", + "Testing Exposure": "8.21%", + "API Exposure": "0.29%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "46.15%", + "Commented Logic Exposure": "2.64%", + "Specification Exposure": "83.59%", + "Instability Exposure": "46.15%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "9.96%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "Files": { + "shell/sqlite/LICENSE.md": { "1. Artifact Identity": { - "Filename": "string_bcmp.S", - "Path": "assembly/freebsd_libc_string/string_bcmp.S", - "Language": "Assembly", + "Filename": "LICENSE.md", + "Path": "shell/sqlite/LICENSE.md", + "Language": "Markdown", "Architect": "Unknown Architect", "Indentation Style": "Neutral / No Indentation", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "assembly", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .s)" + "Doc Umbrella": 1.0, + "Folder Dominant Lang": "shell", + "Lock Tier": 1, + "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": 4161.57, - "Y": 153.84, - "Z": -3063.95 + "X": 5765.2, + "Y": -4.52, + "Z": -4341.31 }, "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": 8, - "Coding LOC": 4, - "Documentation LOC": 2, - "Structural Magnitude": 12.08, + "Total LOC": 86, + "Coding LOC": 0, + "Documentation LOC": 68, + "Structural Magnitude": 1.72, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.25 + "Raw Cognitive Density": 0.0 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.0%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "0.61%", - "API Exposure": "0.0%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "26.67%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "23.49%", - "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": [], "6. Contextual Mitigations & Amplifications": "None Detected", @@ -762960,7 +763481,7 @@ "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, - "Hyperlinked Literature References": 0, + "Hyperlinked Literature References": 7, "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, @@ -762987,22 +763508,22 @@ }, "9. Extracted Dependencies": [] }, - "assembly/freebsd_libc_string/string_memccpy.S": { + "shell/sqlite/cktclsh.sh": { "1. Artifact Identity": { - "Filename": "string_memccpy.S", - "Path": "assembly/freebsd_libc_string/string_memccpy.S", - "Language": "Assembly", + "Filename": "cktclsh.sh", + "Path": "shell/sqlite/cktclsh.sh", + "Language": "Shell", "Architect": "Unknown Architect", - "Indentation Style": "Tabs", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "assembly", + "Indentation Style": "Spaces", + "Doc Umbrella": 1.0, + "Folder Dominant Lang": "shell", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .s)" + "Identity Proof": "Single Indicator (Ext: .sh)" }, "2. Topological Coordinates": { - "X": 4291.48, - "Y": 93.22, - "Z": -3062.54 + "X": 6904.93, + "Y": -32.86, + "Z": -3574.62 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -763011,44 +763532,65 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 261, - "Coding LOC": 219, - "Documentation LOC": 3, - "Structural Magnitude": 19.38, - "Control Flow Ratio": "26.9%", + "Total LOC": 12, + "Coding LOC": 9, + "Documentation LOC": 2, + "Structural Magnitude": 10.48, + "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.151 + "Raw Cognitive Density": 1.0 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "8.34%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.3%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "99.68%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "1.93%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "60.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "16.71%", + "Documentation Exposure": "7.15%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [], + "5. Function Analysis": [ + { + "Function Name": "Anonymous_Block", + "Structural Impact": 7.2, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 3, + "Input Parameters": 2, + "Control Flow Ratio": "60.0%", + "Start Line": 5, + "End Line": 10 + }, + { + "Function Name": "__global_context__", + "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": 11 + } + ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 28, - "Sequential Logic Declarations": 76, - "Function Parameters": 214, + "Control Flow Branches": 4, + "Sequential Logic Declarations": 4, + "Function Parameters": 8, "Function/Method Declarations": 0, "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 1, - "Type/Safety Bypasses": 0, + "Defensive Programming Constructs": 0, + "Type/Safety Bypasses": 9, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 12, + "I/O and Network Boundaries": 4, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -763071,24 +763613,24 @@ "Server-Side Rendering Contexts": 0, "Event Publishers / Emitters": 0, "Dependency Injection Constructs": 0, - "Preprocessor Macros": 1, + "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, + "Ad-hoc Print / Debug Statements": 3, "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 0, + "Fatal Aborts & Exceptions": 2, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 33, + "Bitwise Operations": 0, "Thread Synchronization Locks": 0, "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": 171, - "Structural Space Indentations": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 3, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -763113,7 +763655,7 @@ "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, @@ -763144,22 +763686,22 @@ }, "9. Extracted Dependencies": [] }, - "assembly/freebsd_libc_string/string_memchr.S": { + "shell/sqlite/fts3cov.sh": { "1. Artifact Identity": { - "Filename": "string_memchr.S", - "Path": "assembly/freebsd_libc_string/string_memchr.S", - "Language": "Assembly", + "Filename": "fts3cov.sh", + "Path": "shell/sqlite/fts3cov.sh", + "Language": "Shell", "Architect": "Unknown Architect", - "Indentation Style": "Mixed (1.5% Spaces / 98.5% Tabs)", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "assembly", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .s)" + "Indentation Style": "Spaces", + "Doc Umbrella": 1.0, + "Folder Dominant Lang": "shell", + "Lock Tier": 0, + "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 5151.62, - "Y": 83.48, - "Z": -4064.07 + "X": 6192.39, + "Y": -21.82, + "Z": -3161.26 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -763168,46 +763710,67 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 208, - "Coding LOC": 172, - "Documentation LOC": 3, - "Structural Magnitude": 18.44, - "Control Flow Ratio": "39.6%", + "Total LOC": 17, + "Coding LOC": 11, + "Documentation LOC": 0, + "Structural Magnitude": 12.02, + "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.14 + "Raw Cognitive Density": 1.636 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "8.0%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.3%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "98.62%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "1.97%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", + "State Flux Exposure": "100.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "73.33%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "18.09%", + "Documentation Exposure": "8.74%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [], + "5. Function Analysis": [ + { + "Function Name": "Anonymous_Block", + "Structural Impact": 4.3, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 3, + "Input Parameters": 0, + "Control Flow Ratio": "50.0%", + "Start Line": 10, + "End Line": 15 + }, + { + "Function Name": "__global_context__", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 1, + "End Line": 16 + } + ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 19, - "Sequential Logic Declarations": 29, - "Function Parameters": 136, + "Control Flow Branches": 3, + "Sequential Logic Declarations": 3, + "Function Parameters": 0, "Function/Method Declarations": 0, "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 0, + "Defensive Programming Constructs": 1, + "Type/Safety Bypasses": 5, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 7, + "I/O and Network Boundaries": 3, "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 0, + "State Mutations / Variable Reassignments": 6, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, @@ -763219,7 +763782,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 0, + "Metaprogramming & Reflection": 4, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -763228,31 +763791,31 @@ "Server-Side Rendering Contexts": 0, "Event Publishers / Emitters": 0, "Dependency Injection Constructs": 0, - "Preprocessor Macros": 1, + "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, + "Ad-hoc Print / Debug Statements": 2, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 53, + "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": 128, - "Structural Space Indentations": 2, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 3, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, "Ipc Rpc Bridges": 0, "Feature Flags": 0, - "Serialization Parsing": 0, - "Regex Execution": 0, + "Serialization Parsing": 1, + "Regex Execution": 2, "Time Date Logic": 0, "Cloud LLM API Integrations": 0, "AI Orchestration Frameworks": 0, @@ -763262,15 +763825,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 Snake Case": 2, "Design Pascal Case": 0, "Design Upper Case": 0, - "Design Short Vars": 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, @@ -763301,22 +763864,22 @@ }, "9. Extracted Dependencies": [] }, - "assembly/freebsd_libc_string/string_memcmp.S": { + "shell/sqlite/json-speed-check.sh": { "1. Artifact Identity": { - "Filename": "string_memcmp.S", - "Path": "assembly/freebsd_libc_string/string_memcmp.S", - "Language": "Assembly", + "Filename": "json-speed-check.sh", + "Path": "shell/sqlite/json-speed-check.sh", + "Language": "Shell", "Architect": "Unknown Architect", - "Indentation Style": "Tabs", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "assembly", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .s)" + "Indentation Style": "Mixed (93.1% Spaces / 6.9% Tabs)", + "Doc Umbrella": 1.0, + "Folder Dominant Lang": "shell", + "Lock Tier": 0, + "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 5157.35, - "Y": 107.75, - "Z": -3019.81 + "X": 6161.06, + "Y": -8.93, + "Z": -3666.86 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -763325,46 +763888,87 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 421, - "Coding LOC": 367, - "Documentation LOC": 17, - "Structural Magnitude": 22.34, - "Control Flow Ratio": "45.9%", + "Total LOC": 88, + "Coding LOC": 71, + "Documentation LOC": 16, + "Structural Magnitude": 100.32, + "Control Flow Ratio": "57.9%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.166 + "Raw Cognitive Density": 1.116 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "8.83%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.3%", + "Cognitive Load Exposure": "81.23%", + "Error & Exception Exposure": "99.99%", + "Tech Debt Exposure": "66.13%", + "Testing Exposure": "2.54%", "API Exposure": "0.0%", "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": "13.84%", + "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [], + "5. Function Analysis": [ + { + "Function Name": "Anonymous_Block", + "Structural Impact": 9.8, + "Lines of Code (LOC)": 27, + "Control Flow Branches": 5, + "Input Parameters": 1, + "Control Flow Ratio": "100.0%", + "Start Line": 45, + "End Line": 71 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 5.9, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 3, + "Input Parameters": 1, + "Control Flow Ratio": "75.0%", + "Start Line": 17, + "End Line": 21 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 4.2, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 3, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 85, + "End Line": 87 + }, + { + "Function Name": "__global_context__", + "Structural Impact": 4.0, + "Lines of Code (LOC)": 52, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 1, + "End Line": 87 + } + ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 56, - "Sequential Logic Declarations": 66, - "Function Parameters": 330, + "Control Flow Branches": 11, + "Sequential Logic Declarations": 8, + "Function Parameters": 6, "Function/Method Declarations": 0, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 0, + "Type/Safety Bypasses": 32, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 11, + "I/O and Network Boundaries": 13, "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 0, + "State Mutations / Variable Reassignments": 75, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, @@ -763376,7 +763980,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 0, + "Metaprogramming & Reflection": 2, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -763390,26 +763994,26 @@ "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, - "Ad-hoc Print / Debug Statements": 0, + "Ad-hoc Print / Debug Statements": 6, "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 0, + "Fatal Aborts & Exceptions": 1, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 42, + "Bitwise Operations": 0, "Thread Synchronization Locks": 0, "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": 262, - "Structural Space Indentations": 0, + "Structural Tab Indentations": 2, + "Structural Space Indentations": 27, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, "Ipc Rpc Bridges": 0, "Feature Flags": 0, - "Serialization Parsing": 0, - "Regex Execution": 0, + "Serialization Parsing": 2, + "Regex Execution": 2, "Time Date Logic": 0, "Cloud LLM API Integrations": 0, "AI Orchestration Frameworks": 0, @@ -763419,15 +764023,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 0, - "Design Camel Case": 0, - "Design Snake Case": 0, + "Core Var Decl": 31, + "Design Camel Case": 8, + "Design Snake Case": 1, "Design Pascal Case": 0, - "Design Upper Case": 0, - "Design Short Vars": 0, + "Design Upper Case": 22, + "Design Short Vars": 4, "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, @@ -763437,7 +764041,7 @@ "External Network & I/O Hooks": 0, "Dynamic Code Execution (Eval/Exec)": 0, "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, @@ -763458,22 +764062,22 @@ }, "9. Extracted Dependencies": [] }, - "assembly/freebsd_libc_string/string_memcpy.S": { + "shell/sqlite/mkautoconfamal.sh": { "1. Artifact Identity": { - "Filename": "string_memcpy.S", - "Path": "assembly/freebsd_libc_string/string_memcpy.S", - "Language": "Assembly", + "Filename": "mkautoconfamal.sh", + "Path": "shell/sqlite/mkautoconfamal.sh", + "Language": "Shell", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "assembly", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .s)" + "Indentation Style": "Spaces", + "Doc Umbrella": 1.0, + "Folder Dominant Lang": "shell", + "Lock Tier": 0, + "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 5041.56, - "Y": 148.01, - "Z": -4169.83 + "X": 6603.93, + "Y": 31.41, + "Z": -3411.35 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -763482,47 +764086,68 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 5, - "Coding LOC": 1, - "Documentation LOC": 2, - "Structural Magnitude": 10.52, - "Control Flow Ratio": "0.0%", + "Total LOC": 97, + "Coding LOC": 53, + "Documentation LOC": 34, + "Structural Magnitude": 42.96, + "Control Flow Ratio": "11.9%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 5.0 + "Raw Cognitive Density": 1.599 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.0%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "0.15%", + "Cognitive Load Exposure": "96.76%", + "Error & Exception Exposure": "100.0%", + "Tech Debt Exposure": "85.14%", + "Testing Exposure": "2.47%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "6.67%", + "State Flux Exposure": "100.0%", + "Commented Logic Exposure": "11.18%", + "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "6.19%", + "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [], + "5. Function Analysis": [ + { + "Function Name": "Anonymous_Block", + "Structural Impact": 7.8, + "Lines of Code (LOC)": 14, + "Control Flow Branches": 4, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 32, + "End Line": 45 + }, + { + "Function Name": "__global_context__", + "Structural Impact": 6.1, + "Lines of Code (LOC)": 82, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "2.9%", + "Start Line": 1, + "End Line": 96 + } + ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 0, - "Function Parameters": 0, + "Control Flow Branches": 5, + "Sequential Logic Declarations": 37, + "Function Parameters": 2, "Function/Method Declarations": 0, "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 0, + "Defensive Programming Constructs": 3, + "Type/Safety Bypasses": 47, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, + "I/O and Network Boundaries": 20, "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 0, - "Commented-out Code (Dead Logic)": 0, + "State Mutations / Variable Reassignments": 28, + "Commented-out Code (Dead Logic)": 1, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, @@ -763533,8 +764158,8 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Metaprogramming & Reflection": 7, + "Module Dependencies (Imports)": 4, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -763547,26 +764172,26 @@ "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, - "Ad-hoc Print / Debug Statements": 0, + "Ad-hoc Print / Debug Statements": 4, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, "Bitwise Operations": 0, - "Thread Synchronization Locks": 0, + "Thread Synchronization Locks": 1, "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": 8, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, "Ipc Rpc Bridges": 0, "Feature Flags": 0, - "Serialization Parsing": 0, - "Regex Execution": 0, + "Serialization Parsing": 3, + "Regex Execution": 5, "Time Date Logic": 0, "Cloud LLM API Integrations": 0, "AI Orchestration Frameworks": 0, @@ -763576,15 +764201,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": 10, "Design Camel Case": 0, - "Design Snake Case": 0, + "Design Snake Case": 4, "Design Pascal Case": 0, - "Design Upper Case": 0, - "Design Short Vars": 0, + "Design Upper Case": 6, + "Design Short Vars": 4, "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, @@ -763601,36 +764226,40 @@ "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)": 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": [ + "-name", + "-type", + "tree." + ] }, - "assembly/freebsd_libc_string/string_memmove.S": { + "shell/sqlite/mkdist.sh": { "1. Artifact Identity": { - "Filename": "string_memmove.S", - "Path": "assembly/freebsd_libc_string/string_memmove.S", - "Language": "Assembly", + "Filename": "mkdist.sh", + "Path": "shell/sqlite/mkdist.sh", + "Language": "Shell", "Architect": "Unknown Architect", - "Indentation Style": "Mixed (0.5% Spaces / 99.5% Tabs)", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "assembly", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .s)" + "Indentation Style": "Spaces", + "Doc Umbrella": 1.0, + "Folder Dominant Lang": "shell", + "Lock Tier": 0, + "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 4757.45, - "Y": 166.86, - "Z": -2883.16 + "X": 6387.55, + "Y": 6.53, + "Z": -3748.06 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -763639,48 +764268,169 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 309, - "Coding LOC": 285, - "Documentation LOC": 5, - "Structural Magnitude": 20.7, - "Control Flow Ratio": "37.6%", + "Total LOC": 211, + "Coding LOC": 142, + "Documentation LOC": 35, + "Structural Magnitude": 163.74, + "Control Flow Ratio": "83.6%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.151 + "Raw Cognitive Density": 1.778 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "8.34%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.3%", + "Cognitive Load Exposure": "94.23%", + "Error & Exception Exposure": "99.77%", + "Tech Debt Exposure": "28.59%", + "Testing Exposure": "80.0%", "API Exposure": "0.0%", "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.39%", + "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [], + "5. Function Analysis": [ + { + "Function Name": "__global_context__", + "Structural Impact": 26.9, + "Lines of Code (LOC)": 139, + "Control Flow Branches": 19, + "Input Parameters": 0, + "Control Flow Ratio": "73.1%", + "Start Line": 1, + "End Line": 210 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 15.6, + "Lines of Code (LOC)": 30, + "Control Flow Branches": 9, + "Input Parameters": 1, + "Control Flow Ratio": "81.8%", + "Start Line": 39, + "End Line": 68 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 8.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 7, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 72, + "End Line": 75 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 6.5, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 5, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 102, + "End Line": 110 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 6.2, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 5, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 158, + "End Line": 160 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 5.2, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 4, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 185, + "End Line": 187 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 5.2, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 4, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 189, + "End Line": 191 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 4.2, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 3, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 177, + "End Line": 179 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 4.2, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 3, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 181, + "End Line": 183 + }, + { + "Function Name": "fcp", + "Structural Impact": 3.0, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 162, + "End Line": 165 + }, + { + "Function Name": "scc", + "Structural Impact": 3.0, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "100.0%", + "Start Line": 167, + "End Line": 169 + }, + { + "Function Name": "die", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 25, + "End Line": 30 + } + ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 38, - "Sequential Logic Declarations": 63, - "Function Parameters": 222, - "Function/Method Declarations": 0, + "Control Flow Branches": 61, + "Sequential Logic Declarations": 12, + "Function Parameters": 5, + "Function/Method Declarations": 3, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 0, + "Type/Safety Bypasses": 46, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 9, + "I/O and Network Boundaries": 33, "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 0, + "State Mutations / Variable Reassignments": 71, "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 0, + "Structured Documentation Blocks": 1, "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, @@ -763688,9 +764438,9 @@ "Global State Dependencies": 0, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, - "Collection Iterators / Comprehensions": 5, + "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 0, + "Metaprogramming & Reflection": 16, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -763699,32 +764449,32 @@ "Server-Side Rendering Contexts": 0, "Event Publishers / Emitters": 0, "Dependency Injection Constructs": 0, - "Preprocessor Macros": 6, + "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, + "Ad-hoc Print / Debug Statements": 2, "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 0, + "Fatal Aborts & Exceptions": 2, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 21, - "Thread Synchronization Locks": 0, + "Bitwise Operations": 0, + "Thread Synchronization Locks": 2, "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": 196, - "Structural Space Indentations": 1, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 72, "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, + "Serialization Parsing": 1, + "Regex Execution": 1, + "Time Date Logic": 1, "Cloud LLM API Integrations": 0, "AI Orchestration Frameworks": 0, "Vector Databases (RAG)": 0, @@ -763733,15 +764483,15 @@ "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": 2, + "Core Var Decl": 30, + "Design Camel Case": 16, + "Design Snake Case": 14, "Design Pascal Case": 0, "Design Upper Case": 0, - "Design Short Vars": 0, + "Design Short Vars": 5, "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, @@ -763751,7 +764501,7 @@ "External Network & I/O Hooks": 0, "Dynamic Code Execution (Eval/Exec)": 0, "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, @@ -763772,22 +764522,22 @@ }, "9. Extracted Dependencies": [] }, - "assembly/freebsd_libc_string/string_memrchr.S": { + "shell/sqlite/run-wordcount.sh": { "1. Artifact Identity": { - "Filename": "string_memrchr.S", - "Path": "assembly/freebsd_libc_string/string_memrchr.S", - "Language": "Assembly", + "Filename": "run-wordcount.sh", + "Path": "shell/sqlite/run-wordcount.sh", + "Language": "Shell", "Architect": "Unknown Architect", - "Indentation Style": "Tabs", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "assembly", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .s)" + "Indentation Style": "Spaces", + "Doc Umbrella": 1.0, + "Folder Dominant Lang": "shell", + "Lock Tier": 0, + "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 4920.75, - "Y": 141.1, - "Z": -3891.01 + "X": 6418.72, + "Y": -23.42, + "Z": -4402.39 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -763796,46 +764546,137 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 159, - "Coding LOC": 119, - "Documentation LOC": 3, - "Structural Magnitude": 26.38, - "Control Flow Ratio": "59.0%", + "Total LOC": 79, + "Coding LOC": 59, + "Documentation LOC": 10, + "Structural Magnitude": 49.58, + "Control Flow Ratio": "75.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.387 + "Raw Cognitive Density": 0.585 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "18.94%", - "Error & Exception Exposure": "64.91%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.3%", + "Cognitive Load Exposure": "34.05%", + "Error & Exception Exposure": "91.62%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "2.94%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "71.61%", + "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "21.03%", + "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [], + "5. Function Analysis": [ + { + "Function Name": "__global_context__", + "Structural Impact": 6.2, + "Lines of Code (LOC)": 40, + "Control Flow Branches": 2, + "Input Parameters": 1, + "Control Flow Ratio": "16.7%", + "Start Line": 1, + "End Line": 78 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 5.8, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 3, + "Input Parameters": 1, + "Control Flow Ratio": "75.0%", + "Start Line": 9, + "End Line": 11 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 5.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 4, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 20, + "End Line": 24 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 5.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 4, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 28, + "End Line": 32 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 5.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 4, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 35, + "End Line": 39 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 5.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 4, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 43, + "End Line": 47 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 5.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 4, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 51, + "End Line": 55 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 5.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 4, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 60, + "End Line": 64 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 5.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 4, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 69, + "End Line": 73 + } + ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 23, - "Sequential Logic Declarations": 16, - "Function Parameters": 94, + "Control Flow Branches": 33, + "Sequential Logic Declarations": 11, + "Function Parameters": 11, "Function/Method Declarations": 0, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, + "Type/Safety Bypasses": 8, + "High-Risk Execution Commands": 1, + "I/O and Network Boundaries": 17, "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, @@ -763861,19 +764702,19 @@ "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, - "Ad-hoc Print / Debug Statements": 0, + "Ad-hoc Print / Debug Statements": 15, "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 0, + "Fatal Aborts & Exceptions": 1, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 14, + "Bitwise Operations": 0, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, + "Resource Deallocation & Cleanup": 7, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 96, - "Structural Space Indentations": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 35, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -763897,8 +764738,8 @@ "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, - "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Duplicate Logic": 7, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -763915,36 +764756,38 @@ "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)": 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": [ + "text" + ] }, - "assembly/freebsd_libc_string/string_memset.S": { + "shell/sqlite/split-speedtest1-script.sh": { "1. Artifact Identity": { - "Filename": "string_memset.S", - "Path": "assembly/freebsd_libc_string/string_memset.S", - "Language": "Assembly", + "Filename": "split-speedtest1-script.sh", + "Path": "shell/sqlite/split-speedtest1-script.sh", + "Language": "Shell", "Architect": "Unknown Architect", - "Indentation Style": "Tabs", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "assembly", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .s)" + "Indentation Style": "Spaces", + "Doc Umbrella": 1.0, + "Folder Dominant Lang": "shell", + "Lock Tier": 0, + "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 5535.94, - "Y": 125.41, - "Z": -3411.68 + "X": 5868.76, + "Y": 32.22, + "Z": -4102.73 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -763953,47 +764796,78 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 146, - "Coding LOC": 134, - "Documentation LOC": 2, - "Structural Magnitude": 17.68, - "Control Flow Ratio": "40.8%", + "Total LOC": 18, + "Coding LOC": 14, + "Documentation LOC": 3, + "Structural Magnitude": 31.58, + "Control Flow Ratio": "86.7%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.187 + "Raw Cognitive Density": 2.357 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "9.5%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.3%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "99.81%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "3.22%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "State Flux Exposure": "100.0%", + "Commented Logic Exposure": "23.15%", + "Specification Exposure": "93.33%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "20.16%", + "Documentation Exposure": "11.13%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [], + "5. Function Analysis": [ + { + "Function Name": "__global_context__", + "Structural Impact": 8.9, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 5, + "Input Parameters": 1, + "Control Flow Ratio": "83.3%", + "Start Line": 1, + "End Line": 17 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 6.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 5, + "Input Parameters": 0, + "Control Flow Ratio": "83.3%", + "Start Line": 6, + "End Line": 9 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 4.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 3, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 13, + "End Line": 17 + } + ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 20, - "Sequential Logic Declarations": 29, - "Function Parameters": 64, + "Control Flow Branches": 13, + "Sequential Logic Declarations": 2, + "Function Parameters": 1, "Function/Method Declarations": 0, "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 0, + "Defensive Programming Constructs": 1, + "Type/Safety Bypasses": 9, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 9, + "I/O and Network Boundaries": 4, "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 0, - "Commented-out Code (Dead Logic)": 0, + "State Mutations / Variable Reassignments": 12, + "Commented-out Code (Dead Logic)": 1, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, @@ -764002,9 +764876,9 @@ "Global State Dependencies": 0, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, - "Collection Iterators / Comprehensions": 2, + "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 0, + "Metaprogramming & Reflection": 3, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -764013,31 +764887,31 @@ "Server-Side Rendering Contexts": 0, "Event Publishers / Emitters": 0, "Dependency Injection Constructs": 0, - "Preprocessor Macros": 2, + "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, + "Ad-hoc Print / Debug Statements": 3, "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 0, + "Fatal Aborts & Exceptions": 1, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 19, + "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": 83, - "Structural Space Indentations": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 5, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, "Ipc Rpc Bridges": 0, "Feature Flags": 0, - "Serialization Parsing": 0, - "Regex Execution": 0, + "Serialization Parsing": 1, + "Regex Execution": 2, "Time Date Logic": 0, "Cloud LLM API Integrations": 0, "AI Orchestration Frameworks": 0, @@ -764047,15 +764921,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": 5, "Design Camel Case": 0, - "Design Snake Case": 1, + "Design Snake Case": 5, "Design Pascal Case": 0, "Design Upper Case": 0, - "Design Short Vars": 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, @@ -764065,7 +764939,7 @@ "External Network & I/O Hooks": 0, "Dynamic Code Execution (Eval/Exec)": 0, "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, @@ -764086,22 +764960,22 @@ }, "9. Extracted Dependencies": [] }, - "assembly/freebsd_libc_string/string_stpcpy.S": { + "shell/sqlite/symbols-mingw.sh": { "1. Artifact Identity": { - "Filename": "string_stpcpy.S", - "Path": "assembly/freebsd_libc_string/string_stpcpy.S", - "Language": "Assembly", + "Filename": "symbols-mingw.sh", + "Path": "shell/sqlite/symbols-mingw.sh", + "Language": "Shell", "Architect": "Unknown Architect", - "Indentation Style": "Tabs", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "assembly", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .s)" + "Indentation Style": "Spaces", + "Doc Umbrella": 1.0, + "Folder Dominant Lang": "shell", + "Lock Tier": 0, + "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 4452.86, - "Y": 150.08, - "Z": -3508.97 + "X": 6634.12, + "Y": 20.91, + "Z": -4501.41 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -764110,46 +764984,57 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 238, - "Coding LOC": 197, + "Total LOC": 34, + "Coding LOC": 25, "Documentation LOC": 4, - "Structural Magnitude": 21.94, - "Control Flow Ratio": "39.7%", + "Structural Magnitude": 4.2, + "Control Flow Ratio": "16.7%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.213 + "Raw Cognitive Density": 0.24 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "10.46%", - "Error & Exception Exposure": "56.7%", - "Tech Debt Exposure": "16.64%", - "Testing Exposure": "2.3%", + "Cognitive Load Exposure": "11.51%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "99.85%", + "Testing Exposure": "2.4%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "18.38%", + "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "17.14%", + "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [], + "5. Function Analysis": [ + { + "Function Name": "__global_context__", + "Structural Impact": 3.7, + "Lines of Code (LOC)": 33, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "16.7%", + "Start Line": 1, + "End Line": 33 + } + ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 31, - "Sequential Logic Declarations": 47, - "Function Parameters": 160, + "Control Flow Branches": 1, + "Sequential Logic Declarations": 5, + "Function Parameters": 0, "Function/Method Declarations": 0, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 5, + "I/O and Network Boundaries": 10, "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 3, + "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, @@ -764164,37 +765049,37 @@ "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, - "Planned Work (TODOs)": 1, + "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": 1, + "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, + "Ad-hoc Print / Debug Statements": 4, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 7, + "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": 147, - "Structural Space Indentations": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 12, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, "Ipc Rpc Bridges": 0, "Feature Flags": 0, "Serialization Parsing": 0, - "Regex Execution": 0, + "Regex Execution": 5, "Time Date Logic": 0, "Cloud LLM API Integrations": 0, "AI Orchestration Frameworks": 0, @@ -764212,7 +765097,7 @@ "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, @@ -764243,22 +765128,22 @@ }, "9. Extracted Dependencies": [] }, - "assembly/freebsd_libc_string/string_stpncpy.S": { + "shell/sqlite/symbols.sh": { "1. Artifact Identity": { - "Filename": "string_stpncpy.S", - "Path": "assembly/freebsd_libc_string/string_stpncpy.S", - "Language": "Assembly", + "Filename": "symbols.sh", + "Path": "shell/sqlite/symbols.sh", + "Language": "Shell", "Architect": "Unknown Architect", - "Indentation Style": "Tabs", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "assembly", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .s)" + "Indentation Style": "Spaces", + "Doc Umbrella": 1.0, + "Folder Dominant Lang": "shell", + "Lock Tier": 0, + "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 5469.98, - "Y": 93.22, - "Z": -3249.93 + "X": 5836.81, + "Y": 9.6, + "Z": -3544.71 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -764267,45 +765152,56 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 284, - "Coding LOC": 229, - "Documentation LOC": 6, - "Structural Magnitude": 19.58, - "Control Flow Ratio": "28.1%", + "Total LOC": 37, + "Coding LOC": 28, + "Documentation LOC": 4, + "Structural Magnitude": 4.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.162 + "Raw Cognitive Density": 0.179 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "8.68%", + "Cognitive Load Exposure": "9.23%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.3%", - "API Exposure": "0.0%", + "Testing Exposure": "2.37%", + "API Exposure": "3.81%", "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.16%", + "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [], + "5. Function Analysis": [ + { + "Function Name": "__global_context__", + "Structural Impact": 2.8, + "Lines of Code (LOC)": 36, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 1, + "End Line": 36 + } + ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 32, - "Sequential Logic Declarations": 82, - "Function Parameters": 210, + "Control Flow Branches": 0, + "Sequential Logic Declarations": 11, + "Function Parameters": 0, "Function/Method Declarations": 0, "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 1, + "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 7, - "Exposed API / Public Exports": 0, + "I/O and Network Boundaries": 15, + "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -764327,31 +765223,31 @@ "Server-Side Rendering Contexts": 0, "Event Publishers / Emitters": 0, "Dependency Injection Constructs": 0, - "Preprocessor Macros": 1, + "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, + "Ad-hoc Print / Debug Statements": 4, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 32, + "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": 174, - "Structural Space Indentations": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 15, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, "Ipc Rpc Bridges": 0, "Feature Flags": 0, "Serialization Parsing": 0, - "Regex Execution": 0, + "Regex Execution": 5, "Time Date Logic": 0, "Cloud LLM API Integrations": 0, "AI Orchestration Frameworks": 0, @@ -764400,22 +765296,22 @@ }, "9. Extracted Dependencies": [] }, - "assembly/freebsd_libc_string/string_strcat.S": { + "shell/sqlite/tclConfigShToMake.sh": { "1. Artifact Identity": { - "Filename": "string_strcat.S", - "Path": "assembly/freebsd_libc_string/string_strcat.S", - "Language": "Assembly", + "Filename": "tclConfigShToMake.sh", + "Path": "shell/sqlite/tclConfigShToMake.sh", + "Language": "Shell", "Architect": "Unknown Architect", - "Indentation Style": "Tabs", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "assembly", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .s)" + "Indentation Style": "Spaces", + "Doc Umbrella": 1.0, + "Folder Dominant Lang": "shell", + "Lock Tier": 0, + "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 5067.44, - "Y": 115.93, - "Z": -2625.67 + "X": 6830.58, + "Y": 17.3, + "Z": -4291.24 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -764424,46 +765320,67 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 204, - "Coding LOC": 170, - "Documentation LOC": 4, - "Structural Magnitude": 18.4, - "Control Flow Ratio": "64.7%", + "Total LOC": 32, + "Coding LOC": 17, + "Documentation LOC": 13, + "Structural Magnitude": 24.34, + "Control Flow Ratio": "80.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.288 + "Raw Cognitive Density": 1.279 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "13.62%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.3%", + "Cognitive Load Exposure": "89.26%", + "Error & Exception Exposure": "99.23%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "2.69%", "API Exposure": "0.0%", "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": "18.01%", + "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [], + "5. Function Analysis": [ + { + "Function Name": "Anonymous_Block", + "Structural Impact": 7.5, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 4, + "Input Parameters": 1, + "Control Flow Ratio": "80.0%", + "Start Line": 15, + "End Line": 23 + }, + { + "Function Name": "__global_context__", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 22, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 1, + "End Line": 31 + } + ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 44, - "Sequential Logic Declarations": 24, - "Function Parameters": 99, + "Control Flow Branches": 4, + "Sequential Logic Declarations": 1, + "Function Parameters": 2, "Function/Method Declarations": 0, "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 1, - "Type/Safety Bypasses": 0, + "Defensive Programming Constructs": 0, + "Type/Safety Bypasses": 5, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 4, + "I/O and Network Boundaries": 3, "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 0, + "State Mutations / Variable Reassignments": 15, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, @@ -764476,7 +765393,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, @@ -764500,8 +765417,8 @@ "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 118, - "Structural Space Indentations": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 6, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -764518,15 +765435,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": 11, "Design Camel Case": 0, - "Design Snake Case": 0, + "Design Snake Case": 1, "Design Pascal Case": 0, - "Design Upper Case": 0, - "Design Short Vars": 0, + "Design Upper Case": 10, + "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, @@ -764550,29 +765467,31 @@ "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": [ + "$1" + ] }, - "assembly/freebsd_libc_string/string_strchrnul.S": { + "shell/sqlite/time-wordcount.sh": { "1. Artifact Identity": { - "Filename": "string_strchrnul.S", - "Path": "assembly/freebsd_libc_string/string_strchrnul.S", - "Language": "Assembly", + "Filename": "time-wordcount.sh", + "Path": "shell/sqlite/time-wordcount.sh", + "Language": "Shell", "Architect": "Unknown Architect", - "Indentation Style": "Tabs", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "assembly", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .s)" + "Indentation Style": "Neutral / No Indentation", + "Doc Umbrella": 1.0, + "Folder Dominant Lang": "shell", + "Lock Tier": 0, + "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 4264.68, - "Y": 95.41, - "Z": -3802.04 + "X": 6129.58, + "Y": -21.19, + "Z": -4214.88 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -764581,22 +765500,22 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 171, - "Coding LOC": 150, - "Documentation LOC": 3, - "Structural Magnitude": 18.0, - "Control Flow Ratio": "25.6%", + "Total LOC": 35, + "Coding LOC": 21, + "Documentation LOC": 10, + "Structural Magnitude": 12.02, + "Control Flow Ratio": "38.5%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.1 + "Raw Cognitive Density": 0.476 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "6.91%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.3%", + "Cognitive Load Exposure": "25.06%", + "Error & Exception Exposure": "80.64%", + "Tech Debt Exposure": "99.97%", + "Testing Exposure": "2.7%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -764604,21 +765523,42 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "19.05%", + "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [], + "5. Function Analysis": [ + { + "Function Name": "Anonymous_Block", + "Structural Impact": 5.8, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 3, + "Input Parameters": 1, + "Control Flow Ratio": "75.0%", + "Start Line": 9, + "End Line": 11 + }, + { + "Function Name": "__global_context__", + "Structural Impact": 5.8, + "Lines of Code (LOC)": 31, + "Control Flow Branches": 2, + "Input Parameters": 1, + "Control Flow Ratio": "22.2%", + "Start Line": 1, + "End Line": 34 + } + ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 10, - "Sequential Logic Declarations": 29, - "Function Parameters": 110, + "Control Flow Branches": 5, + "Sequential Logic Declarations": 8, + "Function Parameters": 11, "Function/Method Declarations": 0, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 0, + "Type/Safety Bypasses": 1, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 9, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -764641,23 +765581,23 @@ "Server-Side Rendering Contexts": 0, "Event Publishers / Emitters": 0, "Dependency Injection Constructs": 0, - "Preprocessor Macros": 1, + "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, + "Ad-hoc Print / Debug Statements": 1, "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 0, + "Fatal Aborts & Exceptions": 1, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 53, + "Bitwise Operations": 0, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, + "Resource Deallocation & Cleanup": 8, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 101, + "Structural Tab Indentations": 0, "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, @@ -764683,7 +765623,7 @@ "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, @@ -764707,29 +765647,31 @@ "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": [ + "text" + ] }, - "assembly/freebsd_libc_string/string_strcmp.S": { + "shell/sqlite/warnings-clang.sh": { "1. Artifact Identity": { - "Filename": "string_strcmp.S", - "Path": "assembly/freebsd_libc_string/string_strcmp.S", - "Language": "Assembly", + "Filename": "warnings-clang.sh", + "Path": "shell/sqlite/warnings-clang.sh", + "Language": "Shell", "Architect": "Unknown Architect", - "Indentation Style": "Tabs", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "assembly", + "Indentation Style": "Spaces", + "Doc Umbrella": 1.0, + "Folder Dominant Lang": "shell", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .s)" + "Identity Proof": "Single Indicator (Ext: .sh)" }, "2. Topological Coordinates": { - "X": 5268.79, - "Y": 100.93, - "Z": -3739.83 + "X": 6582.72, + "Y": -12.11, + "Z": -3129.68 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -764738,44 +765680,55 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 360, - "Coding LOC": 320, - "Documentation LOC": 6, - "Structural Magnitude": 21.4, - "Control Flow Ratio": "40.6%", + "Total LOC": 15, + "Coding LOC": 9, + "Documentation LOC": 5, + "Structural Magnitude": 1.88, + "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.144 + "Raw Cognitive Density": 0.556 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "8.13%", + "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.3%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "1.46%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "60.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "14.92%", + "Documentation Exposure": "7.15%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [], + "5. Function Analysis": [ + { + "Function Name": "__global_context__", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 14, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 1, + "End Line": 14 + } + ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 41, - "Sequential Logic Declarations": 60, - "Function Parameters": 332, + "Control Flow Branches": 0, + "Sequential Logic Declarations": 3, + "Function Parameters": 0, "Function/Method Declarations": 0, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 8, + "I/O and Network Boundaries": 6, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -764803,26 +765756,26 @@ "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, - "Ad-hoc Print / Debug Statements": 0, + "Ad-hoc Print / Debug Statements": 2, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 39, + "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": 241, - "Structural Space Indentations": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 3, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, "Ipc Rpc Bridges": 0, "Feature Flags": 0, "Serialization Parsing": 0, - "Regex Execution": 0, + "Regex Execution": 2, "Time Date Logic": 0, "Cloud LLM API Integrations": 0, "AI Orchestration Frameworks": 0, @@ -764832,15 +765785,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": 1, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 0, + "Design Upper Case": 1, "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, @@ -764870,71 +765823,96 @@ "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [] - }, - "assembly/freebsd_libc_string/string_strcspn.S": { + } + } + }, + "yacc/freebsd": { + "Directory Group Magnitude": 451.44, + "File Count": 3, + "Ecosystem Fingerprint (Archetypes)": { + "Unclassified": "66.7%", + "Static: Literature & Documentation": "33.3%" + }, + "Average Risk Exposures": { + "Cognitive Load Exposure": "45.35%", + "Error & Exception Exposure": "59.3%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "53.33%", + "API Exposure": "0.12%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "66.67%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "66.67%", + "Instability Exposure": "33.33%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "8.35%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "Files": { + "yacc/freebsd/COPYRIGHT": { "1. Artifact Identity": { - "Filename": "string_strcspn.S", - "Path": "assembly/freebsd_libc_string/string_strcspn.S", - "Language": "Assembly", + "Filename": "COPYRIGHT", + "Path": "yacc/freebsd/COPYRIGHT", + "Language": "Plaintext", "Architect": "Unknown Architect", - "Indentation Style": "Tabs", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "assembly", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .s)" + "Folder Dominant Lang": "yacc", + "Lock Tier": 1, + "Identity Proof": "Metadata Anchor (COPYRIGHT)" }, "2. Topological Coordinates": { - "X": 4847.82, - "Y": 155.89, - "Z": -3245.51 + "X": 3963.82, + "Y": 165.09, + "Z": -10504.92 }, "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": 397, - "Coding LOC": 335, - "Documentation LOC": 4, - "Structural Magnitude": 33.7, - "Control Flow Ratio": "38.5%", + "Total LOC": 125, + "Coding LOC": 0, + "Documentation LOC": 100, + "Structural Magnitude": 2.5, + "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.236 + "Raw Cognitive Density": 0.0 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "11.34%", - "Error & Exception Exposure": "51.39%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.3%", - "API Exposure": "0.0%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "33.91%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "14.92%", - "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": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 50, - "Sequential Logic Declarations": 80, - "Function Parameters": 217, + "Control Flow Branches": 0, + "Sequential Logic Declarations": 0, + "Function Parameters": 0, "Function/Method Declarations": 0, "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 11, + "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 17, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 12, + "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, @@ -764955,7 +765933,7 @@ "Server-Side Rendering Contexts": 0, "Event Publishers / Emitters": 0, "Dependency Injection Constructs": 0, - "Preprocessor Macros": 1, + "Preprocessor Macros": 0, "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, @@ -764964,14 +765942,14 @@ "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 33, + "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": 253, + "Structural Tab Indentations": 0, "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, @@ -765028,22 +766006,22 @@ }, "9. Extracted Dependencies": [] }, - "assembly/freebsd_libc_string/string_strlcpy.S": { + "yacc/freebsd/config.y": { "1. Artifact Identity": { - "Filename": "string_strlcpy.S", - "Path": "assembly/freebsd_libc_string/string_strlcpy.S", - "Language": "Assembly", - "Architect": "Unknown Architect", + "Filename": "config.y", + "Path": "yacc/freebsd/config.y", + "Language": "Yacc", + "Architect": "(c) 1988, 1993", "Indentation Style": "Tabs", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "assembly", + "Folder Dominant Lang": "yacc", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .s)" + "Identity Proof": "Single Indicator (Shebang)" }, "2. Topological Coordinates": { - "X": 4648.27, - "Y": 128.28, - "Z": -4063.1 + "X": 3947.89, + "Y": 184.98, + "Z": -10128.74 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -765052,47 +766030,248 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 282, - "Coding LOC": 238, - "Documentation LOC": 3, - "Structural Magnitude": 19.76, - "Control Flow Ratio": "28.1%", + "Total LOC": 504, + "Coding LOC": 378, + "Documentation LOC": 64, + "Structural Magnitude": 251.76, + "Control Flow Ratio": "61.8%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.155 + "Raw Cognitive Density": 1.226 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "8.49%", - "Error & Exception Exposure": "0.0%", + "Cognitive Load Exposure": "60.92%", + "Error & Exception Exposure": "82.21%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.3%", - "API Exposure": "0.0%", + "Testing Exposure": "80.0%", + "API Exposure": "0.37%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "6.41%", + "State Flux Exposure": "100.0%", + "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "16.31%", + "Documentation Exposure": "13.14%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [], + "5. Function Analysis": [ + { + "Function Name": "NoDevice", + "Structural Impact": 29.7, + "Lines of Code (LOC)": 169, + "Control Flow Branches": 14, + "Input Parameters": 1, + "Control Flow Ratio": "60.9%", + "Start Line": 297, + "End Line": 465 + }, + { + "Function Name": "Config_spec", + "Structural Impact": 28.2, + "Lines of Code (LOC)": 55, + "Control Flow Branches": 17, + "Input Parameters": 1, + "Control Flow Ratio": "100.0%", + "Start Line": 152, + "End Line": 206 + }, + { + "Function Name": "Spec", + "Structural Impact": 16.8, + "Lines of Code (LOC)": 25, + "Control Flow Branches": 10, + "Input Parameters": 1, + "Control Flow Ratio": "100.0%", + "Start Line": 126, + "End Line": 150 + }, + { + "Function Name": "Mkoption", + "Structural Impact": 5.9, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 3, + "Input Parameters": 1, + "Control Flow Ratio": "100.0%", + "Start Line": 262, + "End Line": 266 + }, + { + "Function Name": "Option", + "Structural Impact": 4.7, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 2, + "Input Parameters": 1, + "Control Flow Ratio": "100.0%", + "Start Line": 227, + "End Line": 236 + }, + { + "Function Name": "Opt_value", + "Structural Impact": 3.2, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "100.0%", + "Start Line": 243, + "End Line": 250 + }, + { + "Function Name": "Many_specs", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 120, + "End Line": 124 + }, + { + "Function Name": "System_parameter_list", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 211, + "End Line": 214 + }, + { + "Function Name": "Opt_list", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 216, + "End Line": 220 + }, + { + "Function Name": "NoOpt_list", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 222, + "End Line": 226 + }, + { + "Function Name": "Mkopt_list", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 256, + "End Line": 260 + }, + { + "Function Name": "Device_spec", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 272, + "End Line": 276 + }, + { + "Function Name": "Dev_list", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 278, + "End Line": 282 + }, + { + "Function Name": "NoDev_list", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 284, + "End Line": 288 + }, + { + "Function Name": "Device", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 290, + "End Line": 295 + }, + { + "Function Name": "NoOption", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 238, + "End Line": 241 + }, + { + "Function Name": "Save_id", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 252, + "End Line": 254 + }, + { + "Function Name": "Dev", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 268, + "End Line": 270 + }, + { + "Function Name": "System_id", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 208, + "End Line": 209 + }, + { + "Function Name": "Configuration", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 116, + "End Line": 118 + } + ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 32, - "Sequential Logic Declarations": 82, - "Function Parameters": 222, - "Function/Method Declarations": 0, + "Control Flow Branches": 63, + "Sequential Logic Declarations": 39, + "Function Parameters": 43, + "Function/Method Declarations": 20, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 1, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 9, - "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 0, - "Commented-out Code (Dead Logic)": 1, + "I/O and Network Boundaries": 2, + "Exposed API / Public Exports": 2, + "State Mutations / Variable Reassignments": 127, + "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, @@ -765100,12 +766279,12 @@ "Closures and Anonymous Functions": 0, "Global State Dependencies": 0, "Decorators and Annotations": 0, - "Generic Type Abstractions": 0, + "Generic Type Abstractions": 7, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, - "Authorship Metadata": 0, + "Metaprogramming & Reflection": 4, + "Module Dependencies (Imports)": 6, + "Authorship Metadata": 3, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, "Specification Traceability Tags": 0, @@ -765113,22 +766292,22 @@ "Event Publishers / Emitters": 0, "Dependency Injection Constructs": 0, "Preprocessor Macros": 1, - "Pointer Arithmetic & Addressing": 0, - "Manual Memory Allocation": 0, + "Pointer Arithmetic & Addressing": 45, + "Manual Memory Allocation": 3, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, - "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 0, + "Ad-hoc Print / Debug Statements": 4, + "Explicit Type Casts": 1, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 28, + "Bitwise Operations": 54, "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 0, + "Immutable Data Declarations": 4, + "Resource Deallocation & Cleanup": 8, + "Private / Encapsulated Scopes": 17, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 184, + "Structural Tab Indentations": 229, "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, @@ -765146,12 +766325,12 @@ "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 Snake Case": 20, "Design Pascal Case": 0, "Design Upper Case": 0, - "Design Short Vars": 0, + "Design Short Vars": 5, "Design Long Vars": 0, "Duplicate Logic": 0, "Orphaned Logic": 0, @@ -765185,22 +766364,22 @@ }, "9. Extracted Dependencies": [] }, - "assembly/freebsd_libc_string/string_strlen.S": { + "yacc/freebsd/jailparse.y": { "1. Artifact Identity": { - "Filename": "string_strlen.S", - "Path": "assembly/freebsd_libc_string/string_strlen.S", - "Language": "Assembly", - "Architect": "Unknown Architect", + "Filename": "jailparse.y", + "Path": "yacc/freebsd/jailparse.y", + "Language": "Yacc", + "Architect": "(c) 2011 James Gritton", "Indentation Style": "Tabs", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "assembly", + "Folder Dominant Lang": "yacc", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .s)" + "Identity Proof": "Single Indicator (Shebang)" }, "2. Topological Coordinates": { - "X": 4423.96, - "Y": 138.02, - "Z": -2932.69 + "X": 3727.28, + "Y": 160.01, + "Z": -9795.16 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -765209,46 +766388,117 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 132, - "Coding LOC": 113, - "Documentation LOC": 3, - "Structural Magnitude": 17.26, - "Control Flow Ratio": "47.8%", + "Total LOC": 277, + "Coding LOC": 199, + "Documentation LOC": 50, + "Structural Magnitude": 197.18, + "Control Flow Ratio": "81.1%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.142 + "Raw Cognitive Density": 1.026 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "8.06%", - "Error & Exception Exposure": "0.0%", + "Cognitive Load Exposure": "75.13%", + "Error & Exception Exposure": "95.7%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.3%", + "Testing Exposure": "80.0%", "API Exposure": "0.0%", "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": "21.54%", + "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [], + "5. Function Analysis": [ + { + "Function Name": "string", + "Structural Impact": 25.7, + "Lines of Code (LOC)": 89, + "Control Flow Branches": 14, + "Input Parameters": 1, + "Control Flow Ratio": "87.5%", + "Start Line": 187, + "End Line": 275 + }, + { + "Function Name": "param", + "Structural Impact": 11.2, + "Lines of Code (LOC)": 26, + "Control Flow Branches": 6, + "Input Parameters": 1, + "Control Flow Ratio": "100.0%", + "Start Line": 123, + "End Line": 148 + }, + { + "Function Name": "conf", + "Structural Impact": 10.8, + "Lines of Code (LOC)": 19, + "Control Flow Branches": 6, + "Input Parameters": 1, + "Control Flow Ratio": "100.0%", + "Start Line": 70, + "End Line": 88 + }, + { + "Function Name": "jail_name", + "Structural Impact": 5.3, + "Lines of Code (LOC)": 22, + "Control Flow Branches": 2, + "Input Parameters": 1, + "Control Flow Ratio": "100.0%", + "Start Line": 96, + "End Line": 117 + }, + { + "Function Name": "name", + "Structural Impact": 3.6, + "Lines of Code (LOC)": 15, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "100.0%", + "Start Line": 154, + "End Line": 168 + }, + { + "Function Name": "value", + "Structural Impact": 3.4, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "100.0%", + "Start Line": 170, + "End Line": 181 + }, + { + "Function Name": "jail", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 90, + "End Line": 94 + } + ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 11, - "Sequential Logic Declarations": 12, - "Function Parameters": 60, - "Function/Method Declarations": 0, + "Control Flow Branches": 30, + "Sequential Logic Declarations": 7, + "Function Parameters": 71, + "Function/Method Declarations": 7, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 0, + "Type/Safety Bypasses": 3, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 6, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 0, + "State Mutations / Variable Reassignments": 132, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, @@ -765257,20 +766507,20 @@ "Closures and Anonymous Functions": 0, "Global State Dependencies": 0, "Decorators and Annotations": 0, - "Generic Type Abstractions": 0, + "Generic Type Abstractions": 4, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, - "Authorship Metadata": 0, + "Metaprogramming & Reflection": 4, + "Module Dependencies (Imports)": 5, + "Authorship Metadata": 3, "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, + "Preprocessor Macros": 2, + "Pointer Arithmetic & Addressing": 55, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, @@ -765278,14 +766528,14 @@ "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 4, + "Bitwise Operations": 29, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 0, + "Resource Deallocation & Cleanup": 6, + "Private / Encapsulated Scopes": 4, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 66, + "Structural Tab Indentations": 151, "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, @@ -765303,12 +766553,12 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 0, + "Core Var Decl": 8, "Design Camel Case": 0, - "Design Snake Case": 0, + "Design Snake Case": 8, "Design Pascal Case": 0, "Design Upper Case": 0, - "Design Short Vars": 0, + "Design Short Vars": 3, "Design Long Vars": 0, "Duplicate Logic": 0, "Orphaned Logic": 0, @@ -765341,11 +766591,36 @@ "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [] - }, - "assembly/freebsd_libc_string/string_strncmp.S": { + } + } + }, + "assembly/freebsd_libc_string": { + "Directory Group Magnitude": 443.26, + "File Count": 25, + "Ecosystem Fingerprint (Archetypes)": { + "Unclassified": "96.0%", + "Static: Literature & Documentation": "4.0%" + }, + "Average Risk Exposures": { + "Cognitive Load Exposure": "8.83%", + "Error & Exception Exposure": "9.25%", + "Tech Debt Exposure": "3.23%", + "Testing Exposure": "1.88%", + "API Exposure": "0.0%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "6.53%", + "Commented Logic Exposure": "0.26%", + "Specification Exposure": "81.87%", + "Instability Exposure": "48.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "15.88%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "Files": { + "assembly/freebsd_libc_string/gen__setjmp.S": { "1. Artifact Identity": { - "Filename": "string_strncmp.S", - "Path": "assembly/freebsd_libc_string/string_strncmp.S", + "Filename": "gen__setjmp.S", + "Path": "assembly/freebsd_libc_string/gen__setjmp.S", "Language": "Assembly", "Architect": "Unknown Architect", "Indentation Style": "Tabs", @@ -765355,9 +766630,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 4679.21, - "Y": 121.75, - "Z": -3077.29 + "X": 4110.94, + "Y": 145.48, + "Z": -3207.99 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -765366,46 +766641,46 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 489, - "Coding LOC": 436, - "Documentation LOC": 4, - "Structural Magnitude": 32.72, - "Control Flow Ratio": "40.4%", + "Total LOC": 91, + "Coding LOC": 44, + "Documentation LOC": 42, + "Structural Magnitude": 15.88, + "Control Flow Ratio": "11.1%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.202 + "Raw Cognitive Density": 0.182 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "10.04%", - "Error & Exception Exposure": "54.67%", + "Cognitive Load Exposure": "9.34%", + "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": "21.85%", + "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "14.21%", + "Documentation Exposure": "14.97%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 65, - "Sequential Logic Declarations": 96, - "Function Parameters": 461, + "Control Flow Branches": 3, + "Sequential Logic Declarations": 24, + "Function Parameters": 22, "Function/Method Declarations": 0, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 12, + "I/O and Network Boundaries": 0, "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, @@ -765435,14 +766710,14 @@ "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 59, + "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": 355, + "Structural Tab Indentations": 39, "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, @@ -765499,62 +766774,62 @@ }, "9. Extracted Dependencies": [] }, - "assembly/freebsd_libc_string/COPYRIGHT": { + "assembly/freebsd_libc_string/gen_fabs.S": { "1. Artifact Identity": { - "Filename": "COPYRIGHT", - "Path": "assembly/freebsd_libc_string/COPYRIGHT", - "Language": "Plaintext", + "Filename": "gen_fabs.S", + "Path": "assembly/freebsd_libc_string/gen_fabs.S", + "Language": "Assembly", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Tabs", "Doc Umbrella": 0.0, "Folder Dominant Lang": "assembly", - "Lock Tier": 1, - "Identity Proof": "Metadata Anchor (COPYRIGHT)" + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 5284.04, - "Y": 134.5, - "Z": -2759.01 + "X": 5426.24, + "Y": 93.2, + "Z": -3972.18 }, "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": 125, - "Coding LOC": 0, - "Documentation LOC": 100, - "Structural Magnitude": 2.5, - "Control Flow Ratio": "0.0%", + "Total LOC": 46, + "Coding LOC": 12, + "Documentation LOC": 29, + "Structural Magnitude": 15.24, + "Control Flow Ratio": "100.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.5 }, "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": "5.0%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "1.84%", + "API Exposure": "0.0%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "0.0%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "80.0%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "27.09%", + "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, + "Control Flow Branches": 1, "Sequential Logic Declarations": 0, - "Function Parameters": 0, + "Function Parameters": 5, "Function/Method Declarations": 0, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, @@ -765599,7 +766874,7 @@ "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, + "Structural Tab Indentations": 9, "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, @@ -765655,47 +766930,23 @@ "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [] - } - } - }, - "cobol/cobol-programming-course": { - "Directory Group Magnitude": 461.14, - "File Count": 7, - "Ecosystem Fingerprint (Archetypes)": { - "Unclassified": "100.0%" - }, - "Average Risk Exposures": { - "Cognitive Load Exposure": "59.27%", - "Error & Exception Exposure": "78.34%", - "Tech Debt Exposure": "99.25%", - "Testing Exposure": "24.6%", - "API Exposure": "1.15%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "99.77%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "22.78%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "Files": { - "cobol/cobol-programming-course/CBL0106.cbl": { + }, + "assembly/freebsd_libc_string/gen_setjmp.S": { "1. Artifact Identity": { - "Filename": "CBL0106.cbl", - "Path": "cobol/cobol-programming-course/CBL0106.cbl", - "Language": "Cobol", + "Filename": "gen_setjmp.S", + "Path": "assembly/freebsd_libc_string/gen_setjmp.S", + "Language": "Assembly", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Tabs", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "cobol", + "Folder Dominant Lang": "assembly", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .cbl)" + "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 1558.96, - "Y": 47.06, - "Z": -8275.49 + "X": 4779.84, + "Y": 148.88, + "Z": -4229.26 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -765704,161 +766955,60 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 196, - "Coding LOC": 161, - "Documentation LOC": 28, - "Structural Magnitude": 84.12, - "Control Flow Ratio": "69.2%", + "Total LOC": 112, + "Coding LOC": 62, + "Documentation LOC": 44, + "Structural Magnitude": 16.24, + "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.727 + "Raw Cognitive Density": 0.161 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "45.9%", - "Error & Exception Exposure": "77.11%", - "Tech Debt Exposure": "98.89%", - "Testing Exposure": "2.43%", + "Cognitive Load Exposure": "8.67%", + "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": "99.99%", + "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "14.14%", + "Documentation Exposure": "13.67%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [ - { - "Function Name": "READ-NEXT-RECORD", - "Structural Impact": 9.4, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 8, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 141, - "End Line": 149 - }, - { - "Function Name": "FILE-CONTROL", - "Structural Impact": 5.0, - "Lines of Code (LOC)": 109, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "20.0%", - "Start Line": 13, - "End Line": 121 - }, - { - "Function Name": "WRITE-OVERLIMIT", - "Structural Impact": 4.5, - "Lines of Code (LOC)": 11, - "Control Flow Branches": 3, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 177, - "End Line": 187 - }, - { - "Function Name": "IS-OVERLIMIT", - "Structural Impact": 3.4, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 2, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 163, - "End Line": 170 - }, - { - "Function Name": "IS-STATE-VIRGINIA", - "Structural Impact": 3.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 2, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 172, - "End Line": 175 - }, - { - "Function Name": "CLOSE-STOP", - "Structural Impact": 2.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "50.0%", - "Start Line": 151, - "End Line": 156 - }, - { - "Function Name": "READ-RECORD", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 158, - "End Line": 161 - }, - { - "Function Name": "WRITE-HEADERS", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 13, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 127, - "End Line": 139 - }, - { - "Function Name": "WRITE-RECORD", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 189, - "End Line": 194 - }, - { - "Function Name": "OPEN-FILES", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 123, - "End Line": 125 - } - ], + "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 18, - "Sequential Logic Declarations": 8, - "Function Parameters": 0, - "Function/Method Declarations": 10, - "Class/Entity Declarations": 1, - "Defensive Programming Constructs": 5, + "Control Flow Branches": 5, + "Sequential Logic Declarations": 30, + "Function Parameters": 51, + "Function/Method Declarations": 0, + "Class/Entity Declarations": 0, + "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 26, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 47, + "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 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": 1, + "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": 1, + "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, "Specification Traceability Tags": 0, @@ -765872,17 +767022,17 @@ "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 1, + "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, "Bitwise Operations": 0, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 3, + "Resource Deallocation & Cleanup": 0, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, - "Structural Space Indentations": 161, + "Structural Tab Indentations": 57, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -765890,7 +767040,7 @@ "Feature Flags": 0, "Serialization Parsing": 0, "Regex Execution": 0, - "Time Date Logic": 4, + "Time Date Logic": 0, "Cloud LLM API Integrations": 0, "AI Orchestration Frameworks": 0, "Vector Databases (RAG)": 0, @@ -765899,15 +767049,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": 1, - "Design Upper Case": 2, + "Design Pascal Case": 0, + "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 10, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -765938,22 +767088,22 @@ }, "9. Extracted Dependencies": [] }, - "cobol/cobol-programming-course/CBL0106C.cbl": { + "assembly/freebsd_libc_string/gen_sigsetjmp.S": { "1. Artifact Identity": { - "Filename": "CBL0106C.cbl", - "Path": "cobol/cobol-programming-course/CBL0106C.cbl", - "Language": "Cobol", + "Filename": "gen_sigsetjmp.S", + "Path": "assembly/freebsd_libc_string/gen_sigsetjmp.S", + "Language": "Assembly", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Tabs", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "cobol", + "Folder Dominant Lang": "assembly", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .cbl)" + "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 1358.84, - "Y": 24.82, - "Z": -9039.18 + "X": 5468.37, + "Y": 92.85, + "Z": -2757.8 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -765962,162 +767112,61 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 205, - "Coding LOC": 167, - "Documentation LOC": 32, - "Structural Magnitude": 89.64, - "Control Flow Ratio": "66.7%", + "Total LOC": 113, + "Coding LOC": 60, + "Documentation LOC": 47, + "Structural Magnitude": 16.2, + "Control Flow Ratio": "20.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.749 + "Raw Cognitive Density": 0.2 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "48.06%", - "Error & Exception Exposure": "77.01%", - "Tech Debt Exposure": "98.57%", - "Testing Exposure": "2.43%", + "Cognitive Load Exposure": "9.97%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "60.27%", + "Testing Exposure": "2.3%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "99.99%", + "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.56%", + "Documentation Exposure": "12.86%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [ - { - "Function Name": "READ-NEXT-RECORD", - "Structural Impact": 9.4, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 8, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 142, - "End Line": 150 - }, - { - "Function Name": "IS-OVERLIMIT", - "Structural Impact": 5.8, - "Lines of Code (LOC)": 16, - "Control Flow Branches": 4, - "Input Parameters": 0, - "Control Flow Ratio": "66.7%", - "Start Line": 164, - "End Line": 179 - }, - { - "Function Name": "FILE-CONTROL", - "Structural Impact": 5.0, - "Lines of Code (LOC)": 110, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "20.0%", - "Start Line": 13, - "End Line": 122 - }, - { - "Function Name": "WRITE-OVERLIMIT", - "Structural Impact": 4.5, - "Lines of Code (LOC)": 11, - "Control Flow Branches": 3, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 186, - "End Line": 196 - }, - { - "Function Name": "IS-STATE-VIRGINIA", - "Structural Impact": 3.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 2, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 181, - "End Line": 184 - }, - { - "Function Name": "CLOSE-STOP", - "Structural Impact": 2.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "50.0%", - "Start Line": 152, - "End Line": 157 - }, - { - "Function Name": "READ-RECORD", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 159, - "End Line": 162 - }, - { - "Function Name": "WRITE-HEADERS", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 13, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 128, - "End Line": 140 - }, - { - "Function Name": "WRITE-RECORD", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 198, - "End Line": 203 - }, - { - "Function Name": "OPEN-FILES", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 124, - "End Line": 126 - } - ], + "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 20, - "Sequential Logic Declarations": 10, - "Function Parameters": 0, - "Function/Method Declarations": 10, - "Class/Entity Declarations": 1, - "Defensive Programming Constructs": 6, + "Control Flow Branches": 7, + "Sequential Logic Declarations": 28, + "Function Parameters": 50, + "Function/Method Declarations": 0, + "Class/Entity Declarations": 0, + "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 26, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 50, + "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 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": 1, + "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": 1, - "Planned Work (TODOs)": 0, + "Authorship Metadata": 0, + "Planned Work (TODOs)": 1, "Acknowledged Tech Debt (FIXMEs)": 0, "Specification Traceability Tags": 0, "Server-Side Rendering Contexts": 0, @@ -766128,19 +767177,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": 2, + "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, "Bitwise Operations": 0, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 3, + "Resource Deallocation & Cleanup": 0, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, - "Structural Space Indentations": 167, + "Structural Tab Indentations": 53, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -766148,7 +767197,7 @@ "Feature Flags": 0, "Serialization Parsing": 0, "Regex Execution": 0, - "Time Date Logic": 4, + "Time Date Logic": 0, "Cloud LLM API Integrations": 0, "AI Orchestration Frameworks": 0, "Vector Databases (RAG)": 0, @@ -766157,15 +767206,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": 1, - "Design Upper Case": 2, + "Design Pascal Case": 0, + "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 10, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -766196,22 +767245,22 @@ }, "9. Extracted Dependencies": [] }, - "cobol/cobol-programming-course/CBLDB21.cbl": { + "assembly/freebsd_libc_string/stdlib_div.S": { "1. Artifact Identity": { - "Filename": "CBLDB21.cbl", - "Path": "cobol/cobol-programming-course/CBLDB21.cbl", - "Language": "Cobol", + "Filename": "stdlib_div.S", + "Path": "assembly/freebsd_libc_string/stdlib_div.S", + "Language": "Assembly", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Tabs", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "cobol", + "Folder Dominant Lang": "assembly", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .cbl)" + "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 789.93, - "Y": 93.43, - "Z": -8752.23 + "X": 4872.52, + "Y": 169.09, + "Z": -2544.46 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -766220,131 +767269,60 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 145, - "Coding LOC": 107, - "Documentation LOC": 30, - "Structural Magnitude": 53.44, - "Control Flow Ratio": "62.5%", + "Total LOC": 19, + "Coding LOC": 9, + "Documentation LOC": 6, + "Structural Magnitude": 14.68, + "Control Flow Ratio": "25.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.897 + "Raw Cognitive Density": 0.667 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "60.7%", - "Error & Exception Exposure": "69.2%", - "Tech Debt Exposure": "99.46%", - "Testing Exposure": "2.49%", - "API Exposure": "2.78%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "1.38%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "99.03%", + "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "60.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "19.21%", + "Documentation Exposure": "44.31%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [ - { - "Function Name": "LIST-ALL", - "Structural Impact": 12.9, - "Lines of Code (LOC)": 19, - "Control Flow Branches": 11, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 101, - "End Line": 119 - }, - { - "Function Name": "SQL-ERROR-HANDLING", - "Structural Impact": 7.7, - "Lines of Code (LOC)": 13, - "Control Flow Branches": 6, - "Input Parameters": 0, - "Control Flow Ratio": "66.7%", - "Start Line": 132, - "End Line": 144 - }, - { - "Function Name": "FILE-CONTROL", - "Structural Impact": 5.0, - "Lines of Code (LOC)": 73, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "20.0%", - "Start Line": 14, - "End Line": 86 - }, - { - "Function Name": "PROG-START", - "Structural Impact": 2.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 92, - "End Line": 94 - }, - { - "Function Name": "PRINT-AND-GET1", - "Structural Impact": 2.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 120, - "End Line": 122 - }, - { - "Function Name": "PRINT-A-LINE", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 123, - "End Line": 130 - }, - { - "Function Name": "PROG-END", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 95, - "End Line": 97 - } - ], + "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 20, - "Sequential Logic Declarations": 12, - "Function Parameters": 1, - "Function/Method Declarations": 7, - "Class/Entity Declarations": 1, - "Defensive Programming Constructs": 5, - "Type/Safety Bypasses": 1, + "Control Flow Branches": 1, + "Sequential Logic Declarations": 3, + "Function Parameters": 4, + "Function/Method Declarations": 0, + "Class/Entity Declarations": 0, + "Defensive Programming Constructs": 0, + "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 15, - "Exposed API / Public Exports": 1, - "State Mutations / Variable Reassignments": 18, + "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": 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": 1, + "Global State Dependencies": 0, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 7, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, - "Authorship Metadata": 1, + "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, "Specification Traceability Tags": 0, @@ -766356,23 +767334,23 @@ "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, - "Ad-hoc Print / Debug Statements": 2, + "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 2, + "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, "Bitwise Operations": 0, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 3, + "Resource Deallocation & Cleanup": 0, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, - "Structural Space Indentations": 107, + "Structural Tab Indentations": 7, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, - "Ipc Rpc Bridges": 8, + "Ipc Rpc Bridges": 0, "Feature Flags": 0, "Serialization Parsing": 0, "Regex Execution": 0, @@ -766385,15 +767363,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": 0, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 4, + "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 7, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -766424,22 +767402,22 @@ }, "9. Extracted Dependencies": [] }, - "cobol/cobol-programming-course/CBLDB22.cbl": { + "assembly/freebsd_libc_string/stdlib_ldiv.S": { "1. Artifact Identity": { - "Filename": "CBLDB22.cbl", - "Path": "cobol/cobol-programming-course/CBLDB22.cbl", - "Language": "Cobol", + "Filename": "stdlib_ldiv.S", + "Path": "assembly/freebsd_libc_string/stdlib_ldiv.S", + "Language": "Assembly", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Tabs", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "cobol", + "Folder Dominant Lang": "assembly", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .cbl)" + "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 1274.99, - "Y": 99.49, - "Z": -8918.07 + "X": 4382.11, + "Y": 102.53, + "Z": -4179.24 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -766448,169 +767426,58 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 202, - "Coding LOC": 157, - "Documentation LOC": 39, - "Structural Magnitude": 94.04, - "Control Flow Ratio": "76.5%", + "Total LOC": 17, + "Coding LOC": 7, + "Documentation LOC": 6, + "Structural Magnitude": 13.64, + "Control Flow Ratio": "50.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.083 + "Raw Cognitive Density": 0.857 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "79.1%", - "Error & Exception Exposure": "71.51%", - "Tech Debt Exposure": "99.07%", - "Testing Exposure": "80.0%", - "API Exposure": "2.61%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "1.07%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "99.82%", + "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "46.67%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "16.17%", + "Documentation Exposure": "36.38%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [ - { - "Function Name": "GET-ALL", - "Structural Impact": 12.9, - "Lines of Code (LOC)": 19, - "Control Flow Branches": 11, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 132, - "End Line": 150 - }, - { - "Function Name": "GET-SPECIFIC", - "Structural Impact": 12.9, - "Lines of Code (LOC)": 19, - "Control Flow Branches": 11, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 156, - "End Line": 174 - }, - { - "Function Name": "SQL-ERROR-HANDLING", - "Structural Impact": 7.7, - "Lines of Code (LOC)": 13, - "Control Flow Branches": 6, - "Input Parameters": 0, - "Control Flow Ratio": "66.7%", - "Start Line": 189, - "End Line": 201 - }, - { - "Function Name": "PROCESS-INPUT", - "Structural Impact": 6.3, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 5, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 124, - "End Line": 130 - }, - { - "Function Name": "FILE-CONTROL", - "Structural Impact": 5.0, - "Lines of Code (LOC)": 97, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "20.0%", - "Start Line": 13, - "End Line": 109 - }, - { - "Function Name": "PROG-START", - "Structural Impact": 4.3, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 3, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 111, - "End Line": 117 - }, - { - "Function Name": "PRINT-ALL", - "Structural Impact": 2.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 152, - "End Line": 154 - }, - { - "Function Name": "PRINT-SPECIFIC", - "Structural Impact": 2.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 176, - "End Line": 178 - }, - { - "Function Name": "PRINT-A-LINE", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 180, - "End Line": 187 - }, - { - "Function Name": "PROG-END", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 119, - "End Line": 120 - }, - { - "Function Name": "REPOUT", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 121, - "End Line": 122 - } - ], + "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 39, - "Sequential Logic Declarations": 12, - "Function Parameters": 1, - "Function/Method Declarations": 11, + "Control Flow Branches": 1, + "Sequential Logic Declarations": 1, + "Function Parameters": 2, + "Function/Method Declarations": 0, "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 8, - "Type/Safety Bypasses": 2, + "Defensive Programming Constructs": 0, + "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 27, - "Exposed API / Public Exports": 1, - "State Mutations / Variable Reassignments": 33, + "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": 1, + "Global State Dependencies": 0, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 12, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -766624,23 +767491,23 @@ "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, - "Ad-hoc Print / Debug Statements": 2, + "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 2, + "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, "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": 157, + "Structural Tab Indentations": 5, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, - "Ipc Rpc Bridges": 13, + "Ipc Rpc Bridges": 0, "Feature Flags": 0, "Serialization Parsing": 0, "Regex Execution": 0, @@ -766653,15 +767520,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": 0, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 9, + "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 10, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -766692,22 +767559,22 @@ }, "9. Extracted Dependencies": [] }, - "cobol/cobol-programming-course/CBLDB23.cbl": { + "assembly/freebsd_libc_string/stdlib_lldiv.S": { "1. Artifact Identity": { - "Filename": "CBLDB23.cbl", - "Path": "cobol/cobol-programming-course/CBLDB23.cbl", - "Language": "Cobol", + "Filename": "stdlib_lldiv.S", + "Path": "assembly/freebsd_libc_string/stdlib_lldiv.S", + "Language": "Assembly", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Tabs", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "cobol", + "Folder Dominant Lang": "assembly", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .cbl)" + "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 1054.57, - "Y": 159.02, - "Z": -8485.81 + "X": 5693.71, + "Y": 69.2, + "Z": -3386.79 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -766716,171 +767583,60 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 189, - "Coding LOC": 156, - "Documentation LOC": 27, - "Structural Magnitude": 91.92, - "Control Flow Ratio": "76.5%", + "Total LOC": 17, + "Coding LOC": 7, + "Documentation LOC": 6, + "Structural Magnitude": 13.64, + "Control Flow Ratio": "50.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.064 + "Raw Cognitive Density": 0.857 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "74.85%", - "Error & Exception Exposure": "70.48%", - "Tech Debt Exposure": "99.11%", - "Testing Exposure": "80.0%", - "API Exposure": "2.64%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "1.07%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "99.71%", + "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "46.67%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "17.37%", + "Documentation Exposure": "36.38%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [ - { - "Function Name": "GET-ALL", - "Structural Impact": 12.9, - "Lines of Code (LOC)": 19, - "Control Flow Branches": 11, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 125, - "End Line": 143 - }, - { - "Function Name": "GET-SPECIFIC", - "Structural Impact": 12.9, - "Lines of Code (LOC)": 19, - "Control Flow Branches": 11, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 147, - "End Line": 165 - }, - { - "Function Name": "SQL-ERROR-HANDLING", - "Structural Impact": 7.7, - "Lines of Code (LOC)": 13, - "Control Flow Branches": 6, - "Input Parameters": 0, - "Control Flow Ratio": "66.7%", - "Start Line": 176, - "End Line": 188 - }, - { - "Function Name": "PROCESS-INPUT", - "Structural Impact": 6.3, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 5, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 118, - "End Line": 124 - }, - { - "Function Name": "FILE-CONTROL", - "Structural Impact": 5.0, - "Lines of Code (LOC)": 92, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "20.0%", - "Start Line": 14, - "End Line": 105 - }, - { - "Function Name": "PROG-START", - "Structural Impact": 4.3, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 3, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 107, - "End Line": 113 - }, - { - "Function Name": "PRINT-ALL", - "Structural Impact": 2.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 144, - "End Line": 146 - }, - { - "Function Name": "PRINT-SPECIFIC", - "Structural Impact": 2.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 166, - "End Line": 168 - }, - { - "Function Name": "PRINT-A-LINE", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 169, - "End Line": 174 - }, - { - "Function Name": "PROG-END", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 114, - "End Line": 115 - }, - { - "Function Name": "REPOUT", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 116, - "End Line": 117 - } - ], + "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 39, - "Sequential Logic Declarations": 12, - "Function Parameters": 1, - "Function/Method Declarations": 11, - "Class/Entity Declarations": 1, - "Defensive Programming Constructs": 8, - "Type/Safety Bypasses": 2, + "Control Flow Branches": 1, + "Sequential Logic Declarations": 1, + "Function Parameters": 2, + "Function/Method Declarations": 0, + "Class/Entity Declarations": 0, + "Defensive Programming Constructs": 0, + "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 27, - "Exposed API / Public Exports": 1, - "State Mutations / Variable Reassignments": 31, + "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": 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": 1, + "Global State Dependencies": 0, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 12, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, - "Authorship Metadata": 1, + "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, "Specification Traceability Tags": 0, @@ -766892,23 +767648,23 @@ "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, - "Ad-hoc Print / Debug Statements": 2, + "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 2, + "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, "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": 156, + "Structural Tab Indentations": 5, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, - "Ipc Rpc Bridges": 13, + "Ipc Rpc Bridges": 0, "Feature Flags": 0, "Serialization Parsing": 0, "Regex Execution": 0, @@ -766921,15 +767677,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": 0, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 9, + "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 10, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -766960,22 +767716,22 @@ }, "9. Extracted Dependencies": [] }, - "cobol/cobol-programming-course/DEPTPAY.CBL": { + "assembly/freebsd_libc_string/string_bcmp.S": { "1. Artifact Identity": { - "Filename": "DEPTPAY.CBL", - "Path": "cobol/cobol-programming-course/DEPTPAY.CBL", - "Language": "Cobol", + "Filename": "string_bcmp.S", + "Path": "assembly/freebsd_libc_string/string_bcmp.S", + "Language": "Assembly", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "cobol", + "Folder Dominant Lang": "assembly", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .cbl)" + "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 1134.89, - "Y": 144.73, - "Z": -8414.57 + "X": 4162.56, + "Y": 153.82, + "Z": -3064.64 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -766984,74 +767740,53 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 37, - "Coding LOC": 33, - "Documentation LOC": 1, - "Structural Magnitude": 10.46, - "Control Flow Ratio": "13.3%", + "Total LOC": 8, + "Coding LOC": 0, + "Documentation LOC": 6, + "Structural Magnitude": 10.52, + "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.636 + "Raw Cognitive Density": 5.0 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "38.83%", - "Error & Exception Exposure": "89.31%", - "Tech Debt Exposure": "99.94%", - "Testing Exposure": "2.38%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "0.15%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "99.83%", + "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "6.67%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "46.24%", + "Documentation Exposure": "6.0%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [ - { - "Function Name": "AVERAGE-SALARY", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 19, - "End Line": 27 - }, - { - "Function Name": "DISPLAY-DETAILS", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 29, - "End Line": 35 - } - ], + "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 2, - "Sequential Logic Declarations": 13, + "Control Flow Branches": 0, + "Sequential Logic Declarations": 0, "Function Parameters": 0, - "Function/Method Declarations": 2, - "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": 7, + "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, + "Global State Dependencies": 0, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -767070,9 +767805,9 @@ "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, - "Ad-hoc Print / Debug Statements": 8, + "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 1, + "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, "Bitwise Operations": 0, "Thread Synchronization Locks": 0, @@ -767082,7 +767817,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 33, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -767107,7 +767842,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 2, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -767138,22 +767873,22 @@ }, "9. Extracted Dependencies": [] }, - "cobol/cobol-programming-course/EMPPAY.CBL": { + "assembly/freebsd_libc_string/string_memccpy.S": { "1. Artifact Identity": { - "Filename": "EMPPAY.CBL", - "Path": "cobol/cobol-programming-course/EMPPAY.CBL", - "Language": "Cobol", + "Filename": "string_memccpy.S", + "Path": "assembly/freebsd_libc_string/string_memccpy.S", + "Language": "Assembly", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Tabs", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "cobol", + "Folder Dominant Lang": "assembly", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .cbl)" + "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 1713.75, - "Y": -10.87, - "Z": -9201.58 + "X": 4291.86, + "Y": 93.21, + "Z": -3062.61 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -767162,125 +767897,84 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 55, - "Coding LOC": 51, - "Documentation LOC": 0, - "Structural Magnitude": 37.52, - "Control Flow Ratio": "45.5%", + "Total LOC": 261, + "Coding LOC": 180, + "Documentation LOC": 42, + "Structural Magnitude": 18.6, + "Control Flow Ratio": "25.5%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.044 + "Raw Cognitive Density": 0.172 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "67.44%", - "Error & Exception Exposure": "93.79%", - "Tech Debt Exposure": "99.71%", - "Testing Exposure": "2.47%", + "Cognitive Load Exposure": "9.02%", + "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": "100.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": "32.78%", + "Documentation Exposure": "12.83%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [ - { - "Function Name": "PAYMENT-WEEKLY", - "Structural Impact": 5.5, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 4, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 30, - "End Line": 39 - }, - { - "Function Name": "PAYMENT-MONTHLY", - "Structural Impact": 3.4, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 2, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 40, - "End Line": 47 - }, - { - "Function Name": "SHOW-OUTPUT", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 48, - "End Line": 55 - }, - { - "Function Name": "INITIALIZATION", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 25, - "End Line": 29 - } - ], + "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 10, - "Sequential Logic Declarations": 12, - "Function Parameters": 0, - "Function/Method Declarations": 4, - "Class/Entity Declarations": 1, - "Defensive Programming Constructs": 0, + "Control Flow Branches": 26, + "Sequential Logic Declarations": 76, + "Function Parameters": 213, + "Function/Method Declarations": 0, + "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": 0, "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 25, + "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 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": 1, + "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": 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, + "Preprocessor Macros": 1, "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, - "Ad-hoc Print / Debug Statements": 7, + "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 1, + "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 0, + "Bitwise Operations": 9, "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": 51, + "Structural Tab Indentations": 159, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -767305,7 +767999,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 3, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -767335,88 +768029,63 @@ "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [] - } - } - }, - "shell/sqlite": { - "Directory Group Magnitude": 459.2, - "File Count": 13, - "Ecosystem Fingerprint (Archetypes)": { - "Unclassified": "92.3%", - "Static: Literature & Documentation": "7.7%" - }, - "Average Risk Exposures": { - "Cognitive Load Exposure": "35.49%", - "Error & Exception Exposure": "66.87%", - "Tech Debt Exposure": "75.36%", - "Testing Exposure": "8.21%", - "API Exposure": "0.29%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "46.15%", - "Commented Logic Exposure": "2.64%", - "Specification Exposure": "83.59%", - "Instability Exposure": "46.15%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "9.96%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "Files": { - "shell/sqlite/LICENSE.md": { + }, + "assembly/freebsd_libc_string/string_memchr.S": { "1. Artifact Identity": { - "Filename": "LICENSE.md", - "Path": "shell/sqlite/LICENSE.md", - "Language": "Markdown", + "Filename": "string_memchr.S", + "Path": "assembly/freebsd_libc_string/string_memchr.S", + "Language": "Assembly", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", - "Doc Umbrella": 1.0, - "Folder Dominant Lang": "shell", - "Lock Tier": 1, - "Identity Proof": "Prose Extension (.md)" + "Indentation Style": "Mixed (1.6% Spaces / 98.4% Tabs)", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "assembly", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 5765.9, - "Y": -4.52, - "Z": -4341.73 + "X": 5151.03, + "Y": 83.49, + "Z": -4063.24 }, "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": 86, - "Coding LOC": 0, - "Documentation LOC": 68, - "Structural Magnitude": 1.72, - "Control Flow Ratio": "0.0%", + "Total LOC": 208, + "Coding LOC": 140, + "Documentation LOC": 35, + "Structural Magnitude": 17.8, + "Control Flow Ratio": "37.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.157 }, "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": "8.54%", + "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%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "100.0%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "14.09%", + "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 0, - "Function Parameters": 0, + "Control Flow Branches": 17, + "Sequential Logic Declarations": 29, + "Function Parameters": 136, "Function/Method Declarations": 0, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, @@ -767445,7 +768114,7 @@ "Server-Side Rendering Contexts": 0, "Event Publishers / Emitters": 0, "Dependency Injection Constructs": 0, - "Preprocessor Macros": 0, + "Preprocessor Macros": 1, "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, @@ -767454,15 +768123,15 @@ "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 0, + "Bitwise Operations": 33, "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, + "Structural Tab Indentations": 123, + "Structural Space Indentations": 2, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -767491,7 +768160,7 @@ "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, - "Hyperlinked Literature References": 7, + "Hyperlinked Literature References": 0, "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, @@ -767518,22 +768187,22 @@ }, "9. Extracted Dependencies": [] }, - "shell/sqlite/cktclsh.sh": { + "assembly/freebsd_libc_string/string_memcmp.S": { "1. Artifact Identity": { - "Filename": "cktclsh.sh", - "Path": "shell/sqlite/cktclsh.sh", - "Language": "Shell", + "Filename": "string_memcmp.S", + "Path": "assembly/freebsd_libc_string/string_memcmp.S", + "Language": "Assembly", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", - "Doc Umbrella": 1.0, - "Folder Dominant Lang": "shell", + "Indentation Style": "Tabs", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "assembly", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .sh)" + "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 6905.62, - "Y": -32.86, - "Z": -3575.04 + "X": 4449.86, + "Y": 116.81, + "Z": -3432.6 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -767542,65 +768211,44 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 12, - "Coding LOC": 9, - "Documentation LOC": 2, - "Structural Magnitude": 10.48, - "Control Flow Ratio": "50.0%", + "Total LOC": 421, + "Coding LOC": 296, + "Documentation LOC": 88, + "Structural Magnitude": 20.92, + "Control Flow Ratio": "44.5%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.0 + "Raw Cognitive Density": 0.196 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.0%", - "Error & Exception Exposure": "99.68%", - "Tech Debt Exposure": "100.0%", - "Testing Exposure": "1.93%", + "Cognitive Load Exposure": "9.83%", + "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%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "60.0%", + "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "7.15%", + "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [ - { - "Function Name": "Anonymous_Block", - "Structural Impact": 7.2, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 3, - "Input Parameters": 2, - "Control Flow Ratio": "60.0%", - "Start Line": 5, - "End Line": 10 - }, - { - "Function Name": "__global_context__", - "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": 11 - } - ], + "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 4, - "Sequential Logic Declarations": 4, - "Function Parameters": 8, + "Control Flow Branches": 53, + "Sequential Logic Declarations": 66, + "Function Parameters": 328, "Function/Method Declarations": 0, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 9, + "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 4, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -767628,19 +768276,19 @@ "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, - "Ad-hoc Print / Debug Statements": 3, + "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 2, + "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 0, + "Bitwise Operations": 16, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 2, + "Resource Deallocation & Cleanup": 0, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, - "Structural Space Indentations": 3, + "Structural Tab Indentations": 252, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -767665,7 +768313,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, @@ -767696,22 +768344,22 @@ }, "9. Extracted Dependencies": [] }, - "shell/sqlite/fts3cov.sh": { + "assembly/freebsd_libc_string/string_memcpy.S": { "1. Artifact Identity": { - "Filename": "fts3cov.sh", - "Path": "shell/sqlite/fts3cov.sh", - "Language": "Shell", + "Filename": "string_memcpy.S", + "Path": "assembly/freebsd_libc_string/string_memcpy.S", + "Language": "Assembly", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", - "Doc Umbrella": 1.0, - "Folder Dominant Lang": "shell", - "Lock Tier": 0, - "Identity Proof": "Absolute Consensus (Ext + Shebang)" + "Indentation Style": "Neutral / No Indentation", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "assembly", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 6193.09, - "Y": -21.82, - "Z": -3161.68 + "X": 5041.18, + "Y": 148.01, + "Z": -4169.26 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -767720,67 +768368,46 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 17, - "Coding LOC": 11, - "Documentation LOC": 0, - "Structural Magnitude": 12.02, - "Control Flow Ratio": "50.0%", + "Total LOC": 5, + "Coding LOC": 0, + "Documentation LOC": 3, + "Structural Magnitude": 10.52, + "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.636 + "Raw Cognitive Density": 5.0 }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", - "Error & Exception Exposure": "98.62%", - "Tech Debt Exposure": "100.0%", - "Testing Exposure": "1.97%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "0.15%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "100.0%", + "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "73.33%", + "Specification Exposure": "6.67%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "8.74%", + "Documentation Exposure": "6.15%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [ - { - "Function Name": "Anonymous_Block", - "Structural Impact": 4.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 3, - "Input Parameters": 0, - "Control Flow Ratio": "50.0%", - "Start Line": 10, - "End Line": 15 - }, - { - "Function Name": "__global_context__", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 1, - "End Line": 16 - } - ], + "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 3, - "Sequential Logic Declarations": 3, + "Control Flow Branches": 0, + "Sequential Logic Declarations": 0, "Function Parameters": 0, "Function/Method Declarations": 0, "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 1, - "Type/Safety Bypasses": 5, + "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": 6, + "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, @@ -767792,7 +768419,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 4, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -767806,7 +768433,7 @@ "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, - "Ad-hoc Print / Debug Statements": 2, + "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, @@ -767818,14 +768445,14 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 3, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, "Ipc Rpc Bridges": 0, "Feature Flags": 0, - "Serialization Parsing": 1, - "Regex Execution": 2, + "Serialization Parsing": 0, + "Regex Execution": 0, "Time Date Logic": 0, "Cloud LLM API Integrations": 0, "AI Orchestration Frameworks": 0, @@ -767835,15 +768462,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": 2, + "Design Snake Case": 0, "Design Pascal Case": 0, "Design Upper Case": 0, - "Design Short Vars": 1, + "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, @@ -767874,22 +768501,22 @@ }, "9. Extracted Dependencies": [] }, - "shell/sqlite/json-speed-check.sh": { + "assembly/freebsd_libc_string/string_memmove.S": { "1. Artifact Identity": { - "Filename": "json-speed-check.sh", - "Path": "shell/sqlite/json-speed-check.sh", - "Language": "Shell", + "Filename": "string_memmove.S", + "Path": "assembly/freebsd_libc_string/string_memmove.S", + "Language": "Assembly", "Architect": "Unknown Architect", - "Indentation Style": "Mixed (93.1% Spaces / 6.9% Tabs)", - "Doc Umbrella": 1.0, - "Folder Dominant Lang": "shell", - "Lock Tier": 0, - "Identity Proof": "Absolute Consensus (Ext + Shebang)" + "Indentation Style": "Mixed (0.5% Spaces / 99.5% Tabs)", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "assembly", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 6161.76, - "Y": -8.93, - "Z": -3667.29 + "X": 4757.36, + "Y": 166.86, + "Z": -2883.75 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -767898,25 +768525,25 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 88, - "Coding LOC": 71, - "Documentation LOC": 16, - "Structural Magnitude": 100.32, - "Control Flow Ratio": "57.9%", + "Total LOC": 309, + "Coding LOC": 233, + "Documentation LOC": 57, + "Structural Magnitude": 19.66, + "Control Flow Ratio": "37.6%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.116 + "Raw Cognitive Density": 0.185 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "81.23%", - "Error & Exception Exposure": "99.99%", - "Tech Debt Exposure": "66.13%", - "Testing Exposure": "2.54%", + "Cognitive Load Exposure": "9.43%", + "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": "100.0%", + "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", @@ -767924,61 +768551,20 @@ "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [ - { - "Function Name": "Anonymous_Block", - "Structural Impact": 9.8, - "Lines of Code (LOC)": 27, - "Control Flow Branches": 5, - "Input Parameters": 1, - "Control Flow Ratio": "100.0%", - "Start Line": 45, - "End Line": 71 - }, - { - "Function Name": "Anonymous_Block", - "Structural Impact": 5.9, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 3, - "Input Parameters": 1, - "Control Flow Ratio": "75.0%", - "Start Line": 17, - "End Line": 21 - }, - { - "Function Name": "Anonymous_Block", - "Structural Impact": 4.2, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 3, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 85, - "End Line": 87 - }, - { - "Function Name": "__global_context__", - "Structural Impact": 4.0, - "Lines of Code (LOC)": 52, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 1, - "End Line": 87 - } - ], + "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 11, - "Sequential Logic Declarations": 8, - "Function Parameters": 6, + "Control Flow Branches": 38, + "Sequential Logic Declarations": 63, + "Function Parameters": 213, "Function/Method Declarations": 0, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 32, + "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 13, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 75, + "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, @@ -767988,9 +768574,9 @@ "Global State Dependencies": 0, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, - "Collection Iterators / Comprehensions": 0, + "Collection Iterators / Comprehensions": 5, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 2, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -767999,31 +768585,31 @@ "Server-Side Rendering Contexts": 0, "Event Publishers / Emitters": 0, "Dependency Injection Constructs": 0, - "Preprocessor Macros": 0, + "Preprocessor Macros": 6, "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, - "Ad-hoc Print / Debug Statements": 6, + "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 1, + "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, "Bitwise Operations": 0, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 2, + "Resource Deallocation & Cleanup": 0, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 2, - "Structural Space Indentations": 27, + "Structural Tab Indentations": 194, + "Structural Space Indentations": 1, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, "Ipc Rpc Bridges": 0, "Feature Flags": 0, - "Serialization Parsing": 2, - "Regex Execution": 2, + "Serialization Parsing": 0, + "Regex Execution": 0, "Time Date Logic": 0, "Cloud LLM API Integrations": 0, "AI Orchestration Frameworks": 0, @@ -768033,15 +768619,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 31, - "Design Camel Case": 8, - "Design Snake Case": 1, + "Core Var Decl": 2, + "Design Camel Case": 0, + "Design Snake Case": 2, "Design Pascal Case": 0, - "Design Upper Case": 22, - "Design Short Vars": 4, + "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, @@ -768051,7 +768637,7 @@ "External Network & I/O Hooks": 0, "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, - "Commented-Out Executable Logic": 1, + "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, "Non-Standard / Steganographic Imports": 0, "Non-Standard Unicode / Homoglyphs": 0, @@ -768072,22 +768658,22 @@ }, "9. Extracted Dependencies": [] }, - "shell/sqlite/mkautoconfamal.sh": { + "assembly/freebsd_libc_string/string_memrchr.S": { "1. Artifact Identity": { - "Filename": "mkautoconfamal.sh", - "Path": "shell/sqlite/mkautoconfamal.sh", - "Language": "Shell", + "Filename": "string_memrchr.S", + "Path": "assembly/freebsd_libc_string/string_memrchr.S", + "Language": "Assembly", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", - "Doc Umbrella": 1.0, - "Folder Dominant Lang": "shell", - "Lock Tier": 0, - "Identity Proof": "Absolute Consensus (Ext + Shebang)" + "Indentation Style": "Tabs", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "assembly", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 6604.63, - "Y": 31.41, - "Z": -3411.77 + "X": 4920.41, + "Y": 141.1, + "Z": -3890.38 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -768096,68 +768682,47 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 97, - "Coding LOC": 53, - "Documentation LOC": 34, - "Structural Magnitude": 42.96, - "Control Flow Ratio": "11.9%", + "Total LOC": 159, + "Coding LOC": 111, + "Documentation LOC": 11, + "Structural Magnitude": 26.22, + "Control Flow Ratio": "57.9%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.599 + "Raw Cognitive Density": 0.405 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "96.76%", - "Error & Exception Exposure": "100.0%", - "Tech Debt Exposure": "85.14%", - "Testing Exposure": "2.47%", + "Cognitive Load Exposure": "20.13%", + "Error & Exception Exposure": "65.76%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "2.3%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "100.0%", - "Commented Logic Exposure": "11.18%", + "State Flux Exposure": "75.83%", + "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "11.92%", + "Documentation Exposure": "19.74%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [ - { - "Function Name": "Anonymous_Block", - "Structural Impact": 7.8, - "Lines of Code (LOC)": 14, - "Control Flow Branches": 4, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 32, - "End Line": 45 - }, - { - "Function Name": "__global_context__", - "Structural Impact": 6.1, - "Lines of Code (LOC)": 82, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "2.9%", - "Start Line": 1, - "End Line": 96 - } - ], + "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 5, - "Sequential Logic Declarations": 37, - "Function Parameters": 2, + "Control Flow Branches": 22, + "Sequential Logic Declarations": 16, + "Function Parameters": 94, "Function/Method Declarations": 0, "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 3, - "Type/Safety Bypasses": 47, + "Defensive Programming Constructs": 0, + "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 20, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 28, - "Commented-out Code (Dead Logic)": 1, + "State Mutations / Variable Reassignments": 9, + "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, @@ -768168,8 +768733,8 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 7, - "Module Dependencies (Imports)": 4, + "Metaprogramming & Reflection": 0, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -768182,26 +768747,26 @@ "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, - "Ad-hoc Print / Debug Statements": 4, + "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": 1, + "Bitwise Operations": 14, + "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": 8, + "Structural Tab Indentations": 93, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, "Ipc Rpc Bridges": 0, "Feature Flags": 0, - "Serialization Parsing": 3, - "Regex Execution": 5, + "Serialization Parsing": 0, + "Regex Execution": 0, "Time Date Logic": 0, "Cloud LLM API Integrations": 0, "AI Orchestration Frameworks": 0, @@ -768211,15 +768776,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 10, + "Core Var Decl": 0, "Design Camel Case": 0, - "Design Snake Case": 4, + "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 6, - "Design Short Vars": 4, + "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, @@ -768236,40 +768801,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)": 3, + "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": [ - "-name", - "-type", - "tree." - ] + "9. Extracted Dependencies": [] }, - "shell/sqlite/mkdist.sh": { + "assembly/freebsd_libc_string/string_memset.S": { "1. Artifact Identity": { - "Filename": "mkdist.sh", - "Path": "shell/sqlite/mkdist.sh", - "Language": "Shell", + "Filename": "string_memset.S", + "Path": "assembly/freebsd_libc_string/string_memset.S", + "Language": "Assembly", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", - "Doc Umbrella": 1.0, - "Folder Dominant Lang": "shell", - "Lock Tier": 0, - "Identity Proof": "Absolute Consensus (Ext + Shebang)" + "Indentation Style": "Tabs", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "assembly", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 6388.25, - "Y": 6.53, - "Z": -3748.48 + "X": 5534.96, + "Y": 125.42, + "Z": -3411.32 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -768278,169 +768839,48 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 211, - "Coding LOC": 142, - "Documentation LOC": 35, - "Structural Magnitude": 163.74, - "Control Flow Ratio": "83.6%", + "Total LOC": 146, + "Coding LOC": 102, + "Documentation LOC": 34, + "Structural Magnitude": 17.04, + "Control Flow Ratio": "40.8%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.778 + "Raw Cognitive Density": 0.245 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "94.23%", - "Error & Exception Exposure": "99.77%", - "Tech Debt Exposure": "28.59%", - "Testing Exposure": "80.0%", + "Cognitive Load Exposure": "11.72%", + "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": "100.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.03%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [ - { - "Function Name": "__global_context__", - "Structural Impact": 26.9, - "Lines of Code (LOC)": 139, - "Control Flow Branches": 19, - "Input Parameters": 0, - "Control Flow Ratio": "73.1%", - "Start Line": 1, - "End Line": 210 - }, - { - "Function Name": "Anonymous_Block", - "Structural Impact": 15.6, - "Lines of Code (LOC)": 30, - "Control Flow Branches": 9, - "Input Parameters": 1, - "Control Flow Ratio": "81.8%", - "Start Line": 39, - "End Line": 68 - }, - { - "Function Name": "Anonymous_Block", - "Structural Impact": 8.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 7, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 72, - "End Line": 75 - }, - { - "Function Name": "Anonymous_Block", - "Structural Impact": 6.5, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 5, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 102, - "End Line": 110 - }, - { - "Function Name": "Anonymous_Block", - "Structural Impact": 6.2, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 5, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 158, - "End Line": 160 - }, - { - "Function Name": "Anonymous_Block", - "Structural Impact": 5.2, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 4, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 185, - "End Line": 187 - }, - { - "Function Name": "Anonymous_Block", - "Structural Impact": 5.2, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 4, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 189, - "End Line": 191 - }, - { - "Function Name": "Anonymous_Block", - "Structural Impact": 4.2, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 3, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 177, - "End Line": 179 - }, - { - "Function Name": "Anonymous_Block", - "Structural Impact": 4.2, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 3, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 181, - "End Line": 183 - }, - { - "Function Name": "fcp", - "Structural Impact": 3.0, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 162, - "End Line": 165 - }, - { - "Function Name": "scc", - "Structural Impact": 3.0, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "100.0%", - "Start Line": 167, - "End Line": 169 - }, - { - "Function Name": "die", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 25, - "End Line": 30 - } - ], + "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 61, - "Sequential Logic Declarations": 12, - "Function Parameters": 5, - "Function/Method Declarations": 3, + "Control Flow Branches": 20, + "Sequential Logic Declarations": 29, + "Function Parameters": 64, + "Function/Method Declarations": 0, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 46, + "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 33, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 71, + "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 1, + "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, @@ -768448,9 +768888,9 @@ "Global State Dependencies": 0, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, - "Collection Iterators / Comprehensions": 0, + "Collection Iterators / Comprehensions": 2, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 16, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -768459,32 +768899,32 @@ "Server-Side Rendering Contexts": 0, "Event Publishers / Emitters": 0, "Dependency Injection Constructs": 0, - "Preprocessor Macros": 0, + "Preprocessor Macros": 2, "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, - "Ad-hoc Print / Debug Statements": 2, + "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 2, + "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, "Bitwise Operations": 0, - "Thread Synchronization Locks": 2, + "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": 72, + "Structural Tab Indentations": 83, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, "Ipc Rpc Bridges": 0, "Feature Flags": 0, - "Serialization Parsing": 1, - "Regex Execution": 1, - "Time Date Logic": 1, + "Serialization Parsing": 0, + "Regex Execution": 0, + "Time Date Logic": 0, "Cloud LLM API Integrations": 0, "AI Orchestration Frameworks": 0, "Vector Databases (RAG)": 0, @@ -768493,15 +768933,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 30, - "Design Camel Case": 16, - "Design Snake Case": 14, + "Core Var Decl": 1, + "Design Camel Case": 0, + "Design Snake Case": 1, "Design Pascal Case": 0, "Design Upper Case": 0, - "Design Short Vars": 5, + "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, @@ -768511,7 +768951,7 @@ "External Network & I/O Hooks": 0, "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, - "Commented-Out Executable Logic": 1, + "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, "Non-Standard / Steganographic Imports": 0, "Non-Standard Unicode / Homoglyphs": 0, @@ -768532,22 +768972,22 @@ }, "9. Extracted Dependencies": [] }, - "shell/sqlite/run-wordcount.sh": { + "assembly/freebsd_libc_string/string_stpcpy.S": { "1. Artifact Identity": { - "Filename": "run-wordcount.sh", - "Path": "shell/sqlite/run-wordcount.sh", - "Language": "Shell", + "Filename": "string_stpcpy.S", + "Path": "assembly/freebsd_libc_string/string_stpcpy.S", + "Language": "Assembly", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", - "Doc Umbrella": 1.0, - "Folder Dominant Lang": "shell", - "Lock Tier": 0, - "Identity Proof": "Absolute Consensus (Ext + Shebang)" + "Indentation Style": "Tabs", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "assembly", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 6419.42, - "Y": -23.42, - "Z": -4402.81 + "X": 5159.99, + "Y": 141.01, + "Z": -3096.32 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -768556,137 +768996,46 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 79, - "Coding LOC": 59, - "Documentation LOC": 10, - "Structural Magnitude": 49.58, - "Control Flow Ratio": "75.0%", + "Total LOC": 238, + "Coding LOC": 154, + "Documentation LOC": 47, + "Structural Magnitude": 21.08, + "Control Flow Ratio": "35.6%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.585 + "Raw Cognitive Density": 0.24 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "34.05%", - "Error & Exception Exposure": "91.62%", - "Tech Debt Exposure": "100.0%", - "Testing Exposure": "2.94%", + "Cognitive Load Exposure": "11.52%", + "Error & Exception Exposure": "58.33%", + "Tech Debt Exposure": "20.36%", + "Testing Exposure": "2.3%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", + "State Flux Exposure": "21.07%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "11.92%", + "Documentation Exposure": "12.35%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [ - { - "Function Name": "__global_context__", - "Structural Impact": 6.2, - "Lines of Code (LOC)": 40, - "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "16.7%", - "Start Line": 1, - "End Line": 78 - }, - { - "Function Name": "Anonymous_Block", - "Structural Impact": 5.8, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 3, - "Input Parameters": 1, - "Control Flow Ratio": "75.0%", - "Start Line": 9, - "End Line": 11 - }, - { - "Function Name": "Anonymous_Block", - "Structural Impact": 5.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 4, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 20, - "End Line": 24 - }, - { - "Function Name": "Anonymous_Block", - "Structural Impact": 5.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 4, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 28, - "End Line": 32 - }, - { - "Function Name": "Anonymous_Block", - "Structural Impact": 5.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 4, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 35, - "End Line": 39 - }, - { - "Function Name": "Anonymous_Block", - "Structural Impact": 5.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 4, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 43, - "End Line": 47 - }, - { - "Function Name": "Anonymous_Block", - "Structural Impact": 5.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 4, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 51, - "End Line": 55 - }, - { - "Function Name": "Anonymous_Block", - "Structural Impact": 5.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 4, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 60, - "End Line": 64 - }, - { - "Function Name": "Anonymous_Block", - "Structural Impact": 5.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 4, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 69, - "End Line": 73 - } - ], + "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 33, - "Sequential Logic Declarations": 11, - "Function Parameters": 11, + "Control Flow Branches": 26, + "Sequential Logic Declarations": 47, + "Function Parameters": 160, "Function/Method Declarations": 0, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 8, - "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 17, + "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, + "State Mutations / Variable Reassignments": 3, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, @@ -768701,30 +769050,30 @@ "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, - "Planned Work (TODOs)": 0, + "Planned Work (TODOs)": 1, "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, + "Preprocessor Macros": 1, "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, - "Ad-hoc Print / Debug Statements": 15, + "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 1, + "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 0, + "Bitwise Operations": 3, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 7, + "Resource Deallocation & Cleanup": 0, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, - "Structural Space Indentations": 35, + "Structural Tab Indentations": 135, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -768748,8 +769097,8 @@ "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, - "Duplicate Logic": 7, - "Orphaned Logic": 1, + "Duplicate Logic": 0, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -768766,38 +769115,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)": 1, + "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": [ - "text" - ] + "9. Extracted Dependencies": [] }, - "shell/sqlite/split-speedtest1-script.sh": { + "assembly/freebsd_libc_string/string_stpncpy.S": { "1. Artifact Identity": { - "Filename": "split-speedtest1-script.sh", - "Path": "shell/sqlite/split-speedtest1-script.sh", - "Language": "Shell", + "Filename": "string_stpncpy.S", + "Path": "assembly/freebsd_libc_string/string_stpncpy.S", + "Language": "Assembly", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", - "Doc Umbrella": 1.0, - "Folder Dominant Lang": "shell", - "Lock Tier": 0, - "Identity Proof": "Absolute Consensus (Ext + Shebang)" + "Indentation Style": "Tabs", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "assembly", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 5869.46, - "Y": 32.22, - "Z": -4103.15 + "X": 5468.97, + "Y": 93.23, + "Z": -3249.98 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -768806,78 +769153,47 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 18, - "Coding LOC": 14, - "Documentation LOC": 3, - "Structural Magnitude": 31.58, - "Control Flow Ratio": "86.7%", + "Total LOC": 284, + "Coding LOC": 188, + "Documentation LOC": 47, + "Structural Magnitude": 18.76, + "Control Flow Ratio": "27.4%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 2.357 + "Raw Cognitive Density": 0.191 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.0%", - "Error & Exception Exposure": "99.81%", - "Tech Debt Exposure": "100.0%", - "Testing Exposure": "3.22%", + "Cognitive Load Exposure": "9.67%", + "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": "100.0%", - "Commented Logic Exposure": "23.15%", - "Specification Exposure": "93.33%", + "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.13%", + "Documentation Exposure": "12.28%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [ - { - "Function Name": "__global_context__", - "Structural Impact": 8.9, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 5, - "Input Parameters": 1, - "Control Flow Ratio": "83.3%", - "Start Line": 1, - "End Line": 17 - }, - { - "Function Name": "Anonymous_Block", - "Structural Impact": 6.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 5, - "Input Parameters": 0, - "Control Flow Ratio": "83.3%", - "Start Line": 6, - "End Line": 9 - }, - { - "Function Name": "Anonymous_Block", - "Structural Impact": 4.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 3, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 13, - "End Line": 17 - } - ], + "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 13, - "Sequential Logic Declarations": 2, - "Function Parameters": 1, + "Control Flow Branches": 31, + "Sequential Logic Declarations": 82, + "Function Parameters": 207, "Function/Method Declarations": 0, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 1, - "Type/Safety Bypasses": 9, + "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 4, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 12, - "Commented-out Code (Dead Logic)": 1, + "State Mutations / Variable Reassignments": 0, + "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, @@ -768888,7 +769204,7 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 3, + "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -768897,31 +769213,31 @@ "Server-Side Rendering Contexts": 0, "Event Publishers / Emitters": 0, "Dependency Injection Constructs": 0, - "Preprocessor Macros": 0, + "Preprocessor Macros": 1, "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, - "Ad-hoc Print / Debug Statements": 3, + "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 1, + "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 0, + "Bitwise Operations": 9, "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": 5, + "Structural Tab Indentations": 164, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, "Ipc Rpc Bridges": 0, "Feature Flags": 0, - "Serialization Parsing": 1, - "Regex Execution": 2, + "Serialization Parsing": 0, + "Regex Execution": 0, "Time Date Logic": 0, "Cloud LLM API Integrations": 0, "AI Orchestration Frameworks": 0, @@ -768931,15 +769247,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 5, + "Core Var Decl": 0, "Design Camel Case": 0, - "Design Snake Case": 5, + "Design Snake Case": 0, "Design Pascal Case": 0, "Design Upper Case": 0, - "Design Short Vars": 1, + "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, @@ -768949,7 +769265,7 @@ "External Network & I/O Hooks": 0, "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, - "Commented-Out Executable Logic": 1, + "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, "Non-Standard / Steganographic Imports": 0, "Non-Standard Unicode / Homoglyphs": 0, @@ -768970,22 +769286,22 @@ }, "9. Extracted Dependencies": [] }, - "shell/sqlite/symbols-mingw.sh": { + "assembly/freebsd_libc_string/string_strcat.S": { "1. Artifact Identity": { - "Filename": "symbols-mingw.sh", - "Path": "shell/sqlite/symbols-mingw.sh", - "Language": "Shell", + "Filename": "string_strcat.S", + "Path": "assembly/freebsd_libc_string/string_strcat.S", + "Language": "Assembly", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", - "Doc Umbrella": 1.0, - "Folder Dominant Lang": "shell", - "Lock Tier": 0, - "Identity Proof": "Absolute Consensus (Ext + Shebang)" + "Indentation Style": "Tabs", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "assembly", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 6634.82, - "Y": 20.91, - "Z": -4501.84 + "X": 5066.92, + "Y": 115.93, + "Z": -2626.13 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -768994,22 +769310,22 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 34, - "Coding LOC": 25, - "Documentation LOC": 4, - "Structural Magnitude": 4.2, - "Control Flow Ratio": "16.7%", + "Total LOC": 204, + "Coding LOC": 136, + "Documentation LOC": 38, + "Structural Magnitude": 17.72, + "Control Flow Ratio": "59.3%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.24 + "Raw Cognitive Density": 0.294 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "11.51%", + "Cognitive Load Exposure": "13.9%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "99.85%", - "Testing Exposure": "2.4%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "2.3%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -769017,32 +769333,21 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "11.92%", + "Documentation Exposure": "13.69%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [ - { - "Function Name": "__global_context__", - "Structural Impact": 3.7, - "Lines of Code (LOC)": 33, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "16.7%", - "Start Line": 1, - "End Line": 33 - } - ], + "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 1, - "Sequential Logic Declarations": 5, - "Function Parameters": 0, + "Control Flow Branches": 35, + "Sequential Logic Declarations": 24, + "Function Parameters": 99, "Function/Method Declarations": 0, "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": 10, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -769070,7 +769375,7 @@ "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, - "Ad-hoc Print / Debug Statements": 4, + "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, @@ -769081,15 +769386,15 @@ "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, - "Structural Space Indentations": 12, + "Structural Tab Indentations": 114, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, "Ipc Rpc Bridges": 0, "Feature Flags": 0, "Serialization Parsing": 0, - "Regex Execution": 5, + "Regex Execution": 0, "Time Date Logic": 0, "Cloud LLM API Integrations": 0, "AI Orchestration Frameworks": 0, @@ -769107,7 +769412,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, @@ -769138,22 +769443,22 @@ }, "9. Extracted Dependencies": [] }, - "shell/sqlite/symbols.sh": { + "assembly/freebsd_libc_string/string_strchrnul.S": { "1. Artifact Identity": { - "Filename": "symbols.sh", - "Path": "shell/sqlite/symbols.sh", - "Language": "Shell", + "Filename": "string_strchrnul.S", + "Path": "assembly/freebsd_libc_string/string_strchrnul.S", + "Language": "Assembly", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", - "Doc Umbrella": 1.0, - "Folder Dominant Lang": "shell", - "Lock Tier": 0, - "Identity Proof": "Absolute Consensus (Ext + Shebang)" + "Indentation Style": "Tabs", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "assembly", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 5837.51, - "Y": 9.6, - "Z": -3545.13 + "X": 4265.06, + "Y": 95.4, + "Z": -3801.43 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -769162,56 +769467,45 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 37, - "Coding LOC": 28, - "Documentation LOC": 4, - "Structural Magnitude": 4.36, - "Control Flow Ratio": "0.0%", + "Total LOC": 171, + "Coding LOC": 108, + "Documentation LOC": 45, + "Structural Magnitude": 17.16, + "Control Flow Ratio": "22.9%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.179 + "Raw Cognitive Density": 0.12 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "9.23%", + "Cognitive Load Exposure": "7.46%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.37%", - "API Exposure": "3.81%", + "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%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "11.92%", + "Documentation Exposure": "12.84%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [ - { - "Function Name": "__global_context__", - "Structural Impact": 2.8, - "Lines of Code (LOC)": 36, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 1, - "End Line": 36 - } - ], + "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 11, - "Function Parameters": 0, + "Control Flow Branches": 8, + "Sequential Logic Declarations": 27, + "Function Parameters": 110, "Function/Method Declarations": 0, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 15, - "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, @@ -769233,31 +769527,31 @@ "Server-Side Rendering Contexts": 0, "Event Publishers / Emitters": 0, "Dependency Injection Constructs": 0, - "Preprocessor Macros": 0, + "Preprocessor Macros": 1, "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, - "Ad-hoc Print / Debug Statements": 4, + "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 0, + "Bitwise Operations": 32, "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": 15, + "Structural Tab Indentations": 96, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, "Ipc Rpc Bridges": 0, "Feature Flags": 0, "Serialization Parsing": 0, - "Regex Execution": 5, + "Regex Execution": 0, "Time Date Logic": 0, "Cloud LLM API Integrations": 0, "AI Orchestration Frameworks": 0, @@ -769306,22 +769600,22 @@ }, "9. Extracted Dependencies": [] }, - "shell/sqlite/tclConfigShToMake.sh": { + "assembly/freebsd_libc_string/string_strcmp.S": { "1. Artifact Identity": { - "Filename": "tclConfigShToMake.sh", - "Path": "shell/sqlite/tclConfigShToMake.sh", - "Language": "Shell", + "Filename": "string_strcmp.S", + "Path": "assembly/freebsd_libc_string/string_strcmp.S", + "Language": "Assembly", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", - "Doc Umbrella": 1.0, - "Folder Dominant Lang": "shell", - "Lock Tier": 0, - "Identity Proof": "Absolute Consensus (Ext + Shebang)" + "Indentation Style": "Tabs", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "assembly", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 6831.28, - "Y": 17.3, - "Z": -4291.66 + "X": 5267.64, + "Y": 100.94, + "Z": -3739.08 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -769330,25 +769624,25 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 32, - "Coding LOC": 17, - "Documentation LOC": 13, - "Structural Magnitude": 24.34, - "Control Flow Ratio": "80.0%", + "Total LOC": 360, + "Coding LOC": 247, + "Documentation LOC": 79, + "Structural Magnitude": 19.94, + "Control Flow Ratio": "35.5%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.279 + "Raw Cognitive Density": 0.154 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "89.26%", - "Error & Exception Exposure": "99.23%", - "Tech Debt Exposure": "100.0%", - "Testing Exposure": "2.69%", + "Cognitive Load Exposure": "8.44%", + "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": "100.0%", + "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", @@ -769356,41 +769650,20 @@ "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [ - { - "Function Name": "Anonymous_Block", - "Structural Impact": 7.5, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 4, - "Input Parameters": 1, - "Control Flow Ratio": "80.0%", - "Start Line": 15, - "End Line": 23 - }, - { - "Function Name": "__global_context__", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 22, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 1, - "End Line": 31 - } - ], + "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 4, - "Sequential Logic Declarations": 1, - "Function Parameters": 2, + "Control Flow Branches": 33, + "Sequential Logic Declarations": 60, + "Function Parameters": 310, "Function/Method Declarations": 0, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 5, + "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": 15, + "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, @@ -769403,7 +769676,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, @@ -769420,15 +769693,15 @@ "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 0, + "Bitwise Operations": 26, "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": 6, + "Structural Tab Indentations": 224, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -769445,15 +769718,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 11, + "Core Var Decl": 0, "Design Camel Case": 0, - "Design Snake Case": 1, + "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 10, - "Design Short Vars": 1, + "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, @@ -769477,31 +769750,29 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 1, + "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": [ - "$1" - ] + "9. Extracted Dependencies": [] }, - "shell/sqlite/time-wordcount.sh": { + "assembly/freebsd_libc_string/string_strcspn.S": { "1. Artifact Identity": { - "Filename": "time-wordcount.sh", - "Path": "shell/sqlite/time-wordcount.sh", - "Language": "Shell", + "Filename": "string_strcspn.S", + "Path": "assembly/freebsd_libc_string/string_strcspn.S", + "Language": "Assembly", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", - "Doc Umbrella": 1.0, - "Folder Dominant Lang": "shell", - "Lock Tier": 0, - "Identity Proof": "Absolute Consensus (Ext + Shebang)" + "Indentation Style": "Tabs", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "assembly", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 6130.28, - "Y": -21.19, - "Z": -4215.3 + "X": 4847.52, + "Y": 155.89, + "Z": -3245.3 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -769510,25 +769781,25 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 35, - "Coding LOC": 21, - "Documentation LOC": 10, - "Structural Magnitude": 12.02, - "Control Flow Ratio": "38.5%", + "Total LOC": 397, + "Coding LOC": 270, + "Documentation LOC": 69, + "Structural Magnitude": 32.4, + "Control Flow Ratio": "37.5%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.476 + "Raw Cognitive Density": 0.285 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "25.06%", - "Error & Exception Exposure": "80.64%", - "Tech Debt Exposure": "99.97%", - "Testing Exposure": "2.71%", + "Cognitive Load Exposure": "13.48%", + "Error & Exception Exposure": "51.71%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "2.3%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", + "State Flux Exposure": "42.01%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", @@ -769536,41 +769807,20 @@ "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [ - { - "Function Name": "Anonymous_Block", - "Structural Impact": 5.8, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 3, - "Input Parameters": 1, - "Control Flow Ratio": "75.0%", - "Start Line": 9, - "End Line": 11 - }, - { - "Function Name": "__global_context__", - "Structural Impact": 5.8, - "Lines of Code (LOC)": 31, - "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "22.2%", - "Start Line": 1, - "End Line": 34 - } - ], + "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 5, - "Sequential Logic Declarations": 8, - "Function Parameters": 11, + "Control Flow Branches": 48, + "Sequential Logic Declarations": 80, + "Function Parameters": 217, "Function/Method Declarations": 0, "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 1, + "Defensive Programming Constructs": 11, + "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, + "State Mutations / Variable Reassignments": 12, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, @@ -769591,23 +769841,23 @@ "Server-Side Rendering Contexts": 0, "Event Publishers / Emitters": 0, "Dependency Injection Constructs": 0, - "Preprocessor Macros": 0, + "Preprocessor Macros": 1, "Pointer Arithmetic & Addressing": 0, "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": 1, + "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 0, + "Bitwise Operations": 9, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 8, + "Resource Deallocation & Cleanup": 0, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, + "Structural Tab Indentations": 230, "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, @@ -769633,7 +769883,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, @@ -769657,31 +769907,29 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 1, + "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": [ - "text" - ] + "9. Extracted Dependencies": [] }, - "shell/sqlite/warnings-clang.sh": { + "assembly/freebsd_libc_string/string_strlcpy.S": { "1. Artifact Identity": { - "Filename": "warnings-clang.sh", - "Path": "shell/sqlite/warnings-clang.sh", - "Language": "Shell", + "Filename": "string_strlcpy.S", + "Path": "assembly/freebsd_libc_string/string_strlcpy.S", + "Language": "Assembly", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", - "Doc Umbrella": 1.0, - "Folder Dominant Lang": "shell", + "Indentation Style": "Tabs", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "assembly", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .sh)" + "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 6583.42, - "Y": -12.11, - "Z": -3130.1 + "X": 4648.3, + "Y": 128.28, + "Z": -4062.25 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -769690,58 +769938,47 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 15, - "Coding LOC": 9, - "Documentation LOC": 5, - "Structural Magnitude": 1.88, - "Control Flow Ratio": "0.0%", + "Total LOC": 282, + "Coding LOC": 201, + "Documentation LOC": 40, + "Structural Magnitude": 19.02, + "Control Flow Ratio": "27.4%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.556 + "Raw Cognitive Density": 0.179 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.0%", + "Cognitive Load Exposure": "9.25%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", - "Testing Exposure": "1.46%", + "Tech Debt Exposure": "0.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": "60.0%", + "Commented Logic Exposure": "6.41%", + "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "7.15%", + "Documentation Exposure": "12.94%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [ - { - "Function Name": "__global_context__", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 14, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 1, - "End Line": 14 - } - ], + "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 3, - "Function Parameters": 0, + "Control Flow Branches": 31, + "Sequential Logic Declarations": 82, + "Function Parameters": 221, "Function/Method Declarations": 0, "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": 6, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, "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, @@ -769761,31 +769998,31 @@ "Server-Side Rendering Contexts": 0, "Event Publishers / Emitters": 0, "Dependency Injection Constructs": 0, - "Preprocessor Macros": 0, + "Preprocessor Macros": 1, "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, - "Ad-hoc Print / Debug Statements": 2, + "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 0, + "Bitwise Operations": 5, "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": 3, + "Structural Tab Indentations": 174, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, "Ipc Rpc Bridges": 0, "Feature Flags": 0, "Serialization Parsing": 0, - "Regex Execution": 2, + "Regex Execution": 0, "Time Date Logic": 0, "Cloud LLM API Integrations": 0, "AI Orchestration Frameworks": 0, @@ -769795,15 +770032,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": 0, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 1, + "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, @@ -769833,88 +770070,63 @@ "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [] - } - } - }, - "yacc/freebsd": { - "Directory Group Magnitude": 451.44, - "File Count": 3, - "Ecosystem Fingerprint (Archetypes)": { - "Unclassified": "66.7%", - "Static: Literature & Documentation": "33.3%" - }, - "Average Risk Exposures": { - "Cognitive Load Exposure": "45.35%", - "Error & Exception Exposure": "59.3%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "53.33%", - "API Exposure": "0.12%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "66.67%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "66.67%", - "Instability Exposure": "33.33%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "8.35%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "Files": { - "yacc/freebsd/COPYRIGHT": { + }, + "assembly/freebsd_libc_string/string_strlen.S": { "1. Artifact Identity": { - "Filename": "COPYRIGHT", - "Path": "yacc/freebsd/COPYRIGHT", - "Language": "Plaintext", + "Filename": "string_strlen.S", + "Path": "assembly/freebsd_libc_string/string_strlen.S", + "Language": "Assembly", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Tabs", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "yacc", - "Lock Tier": 1, - "Identity Proof": "Metadata Anchor (COPYRIGHT)" + "Folder Dominant Lang": "assembly", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 3964.18, - "Y": 165.09, - "Z": -10505.84 + "X": 4424.12, + "Y": 138.01, + "Z": -2933.13 }, "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": 125, - "Coding LOC": 0, - "Documentation LOC": 100, - "Structural Magnitude": 2.5, - "Control Flow Ratio": "0.0%", + "Total LOC": 132, + "Coding LOC": 73, + "Documentation LOC": 43, + "Structural Magnitude": 16.46, + "Control Flow Ratio": "42.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.192 }, "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": "9.68%", + "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%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "100.0%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "13.7%", + "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 0, - "Function Parameters": 0, + "Control Flow Branches": 9, + "Sequential Logic Declarations": 12, + "Function Parameters": 59, "Function/Method Declarations": 0, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, @@ -769952,14 +770164,14 @@ "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 0, + "Bitwise Operations": 3, "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 Tab Indentations": 61, "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, @@ -770016,22 +770228,22 @@ }, "9. Extracted Dependencies": [] }, - "yacc/freebsd/config.y": { + "assembly/freebsd_libc_string/string_strncmp.S": { "1. Artifact Identity": { - "Filename": "config.y", - "Path": "yacc/freebsd/config.y", - "Language": "Yacc", - "Architect": "(c) 1988, 1993", + "Filename": "string_strncmp.S", + "Path": "assembly/freebsd_libc_string/string_strncmp.S", + "Language": "Assembly", + "Architect": "Unknown Architect", "Indentation Style": "Tabs", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "yacc", + "Folder Dominant Lang": "assembly", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Shebang)" + "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 3948.25, - "Y": 184.98, - "Z": -10129.65 + "X": 4679.46, + "Y": 121.74, + "Z": -3077.58 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -770040,247 +770252,46 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 504, - "Coding LOC": 378, - "Documentation LOC": 64, - "Structural Magnitude": 251.76, - "Control Flow Ratio": "61.8%", + "Total LOC": 489, + "Coding LOC": 371, + "Documentation LOC": 69, + "Structural Magnitude": 31.42, + "Control Flow Ratio": "37.7%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.226 + "Raw Cognitive Density": 0.218 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "60.92%", - "Error & Exception Exposure": "82.21%", + "Cognitive Load Exposure": "10.65%", + "Error & Exception Exposure": "55.45%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "80.0%", - "API Exposure": "0.37%", + "Testing Exposure": "2.3%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "100.0%", + "State Flux Exposure": "24.42%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "13.14%", + "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [ - { - "Function Name": "NoDevice", - "Structural Impact": 29.7, - "Lines of Code (LOC)": 169, - "Control Flow Branches": 14, - "Input Parameters": 1, - "Control Flow Ratio": "60.9%", - "Start Line": 297, - "End Line": 465 - }, - { - "Function Name": "Config_spec", - "Structural Impact": 28.2, - "Lines of Code (LOC)": 55, - "Control Flow Branches": 17, - "Input Parameters": 1, - "Control Flow Ratio": "100.0%", - "Start Line": 152, - "End Line": 206 - }, - { - "Function Name": "Spec", - "Structural Impact": 16.8, - "Lines of Code (LOC)": 25, - "Control Flow Branches": 10, - "Input Parameters": 1, - "Control Flow Ratio": "100.0%", - "Start Line": 126, - "End Line": 150 - }, - { - "Function Name": "Mkoption", - "Structural Impact": 5.9, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 3, - "Input Parameters": 1, - "Control Flow Ratio": "100.0%", - "Start Line": 262, - "End Line": 266 - }, - { - "Function Name": "Option", - "Structural Impact": 4.7, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "100.0%", - "Start Line": 227, - "End Line": 236 - }, - { - "Function Name": "Opt_value", - "Structural Impact": 3.2, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "100.0%", - "Start Line": 243, - "End Line": 250 - }, - { - "Function Name": "Many_specs", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 120, - "End Line": 124 - }, - { - "Function Name": "System_parameter_list", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 211, - "End Line": 214 - }, - { - "Function Name": "Opt_list", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 216, - "End Line": 220 - }, - { - "Function Name": "NoOpt_list", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 222, - "End Line": 226 - }, - { - "Function Name": "Mkopt_list", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 256, - "End Line": 260 - }, - { - "Function Name": "Device_spec", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 272, - "End Line": 276 - }, - { - "Function Name": "Dev_list", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 278, - "End Line": 282 - }, - { - "Function Name": "NoDev_list", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 284, - "End Line": 288 - }, - { - "Function Name": "Device", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 290, - "End Line": 295 - }, - { - "Function Name": "NoOption", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 238, - "End Line": 241 - }, - { - "Function Name": "Save_id", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 252, - "End Line": 254 - }, - { - "Function Name": "Dev", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 268, - "End Line": 270 - }, - { - "Function Name": "System_id", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 208, - "End Line": 209 - }, - { - "Function Name": "Configuration", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 116, - "End Line": 118 - } - ], + "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 63, - "Sequential Logic Declarations": 39, - "Function Parameters": 43, - "Function/Method Declarations": 20, + "Control Flow Branches": 58, + "Sequential Logic Declarations": 96, + "Function Parameters": 451, + "Function/Method Declarations": 0, "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 1, + "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 2, - "Exposed API / Public Exports": 2, - "State Mutations / Variable Reassignments": 127, + "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, @@ -770289,35 +770300,35 @@ "Closures and Anonymous Functions": 0, "Global State Dependencies": 0, "Decorators and Annotations": 0, - "Generic Type Abstractions": 7, + "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 4, - "Module Dependencies (Imports)": 6, - "Authorship Metadata": 3, + "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": 1, - "Pointer Arithmetic & Addressing": 45, - "Manual Memory Allocation": 3, + "Preprocessor Macros": 0, + "Pointer Arithmetic & Addressing": 0, + "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, - "Ad-hoc Print / Debug Statements": 4, - "Explicit Type Casts": 1, + "Ad-hoc Print / Debug Statements": 0, + "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 54, + "Bitwise Operations": 33, "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 4, - "Resource Deallocation & Cleanup": 8, - "Private / Encapsulated Scopes": 17, + "Immutable Data Declarations": 0, + "Resource Deallocation & Cleanup": 0, + "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 229, + "Structural Tab Indentations": 337, "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, @@ -770335,12 +770346,12 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 20, + "Core Var Decl": 0, "Design Camel Case": 0, - "Design Snake Case": 20, + "Design Snake Case": 0, "Design Pascal Case": 0, "Design Upper Case": 0, - "Design Short Vars": 5, + "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, "Orphaned Logic": 0, @@ -770374,141 +770385,70 @@ }, "9. Extracted Dependencies": [] }, - "yacc/freebsd/jailparse.y": { + "assembly/freebsd_libc_string/COPYRIGHT": { "1. Artifact Identity": { - "Filename": "jailparse.y", - "Path": "yacc/freebsd/jailparse.y", - "Language": "Yacc", - "Architect": "(c) 2011 James Gritton", - "Indentation Style": "Tabs", + "Filename": "COPYRIGHT", + "Path": "assembly/freebsd_libc_string/COPYRIGHT", + "Language": "Plaintext", + "Architect": "Unknown Architect", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "yacc", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Shebang)" + "Folder Dominant Lang": "assembly", + "Lock Tier": 1, + "Identity Proof": "Metadata Anchor (COPYRIGHT)" }, "2. Topological Coordinates": { - "X": 3727.64, - "Y": 160.01, - "Z": -9796.08 + "X": 5283.55, + "Y": 134.5, + "Z": -2759.12 }, "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": 277, - "Coding LOC": 199, - "Documentation LOC": 50, - "Structural Magnitude": 197.18, - "Control Flow Ratio": "81.1%", + "Total LOC": 125, + "Coding LOC": 0, + "Documentation LOC": 100, + "Structural Magnitude": 2.5, + "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.026 + "Raw Cognitive Density": 0.0 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "75.13%", - "Error & Exception Exposure": "95.7%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "80.0%", - "API Exposure": "0.0%", - "Concurrency 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": "11.92%", - "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": "string", - "Structural Impact": 25.7, - "Lines of Code (LOC)": 89, - "Control Flow Branches": 14, - "Input Parameters": 1, - "Control Flow Ratio": "87.5%", - "Start Line": 187, - "End Line": 275 - }, - { - "Function Name": "param", - "Structural Impact": 11.2, - "Lines of Code (LOC)": 26, - "Control Flow Branches": 6, - "Input Parameters": 1, - "Control Flow Ratio": "100.0%", - "Start Line": 123, - "End Line": 148 - }, - { - "Function Name": "conf", - "Structural Impact": 10.8, - "Lines of Code (LOC)": 19, - "Control Flow Branches": 6, - "Input Parameters": 1, - "Control Flow Ratio": "100.0%", - "Start Line": 70, - "End Line": 88 - }, - { - "Function Name": "jail_name", - "Structural Impact": 5.3, - "Lines of Code (LOC)": 22, - "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "100.0%", - "Start Line": 96, - "End Line": 117 - }, - { - "Function Name": "name", - "Structural Impact": 3.6, - "Lines of Code (LOC)": 15, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "100.0%", - "Start Line": 154, - "End Line": 168 - }, - { - "Function Name": "value", - "Structural Impact": 3.4, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "100.0%", - "Start Line": 170, - "End Line": 181 - }, - { - "Function Name": "jail", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 90, - "End Line": 94 - } - ], + "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 30, - "Sequential Logic Declarations": 7, - "Function Parameters": 71, - "Function/Method Declarations": 7, + "Control Flow Branches": 0, + "Sequential Logic Declarations": 0, + "Function Parameters": 0, + "Function/Method Declarations": 0, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 3, + "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 132, + "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, @@ -770517,20 +770457,20 @@ "Closures and Anonymous Functions": 0, "Global State Dependencies": 0, "Decorators and Annotations": 0, - "Generic Type Abstractions": 4, + "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 4, - "Module Dependencies (Imports)": 5, - "Authorship Metadata": 3, + "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": 2, - "Pointer Arithmetic & Addressing": 55, + "Preprocessor Macros": 0, + "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, @@ -770538,14 +770478,14 @@ "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 29, + "Bitwise Operations": 0, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 6, - "Private / Encapsulated Scopes": 4, + "Resource Deallocation & Cleanup": 0, + "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 151, + "Structural Tab Indentations": 0, "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, @@ -770563,12 +770503,12 @@ "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": 8, + "Design Snake Case": 0, "Design Pascal Case": 0, "Design Upper Case": 0, - "Design Short Vars": 3, + "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, "Orphaned Logic": 0, @@ -779703,7 +779643,7 @@ "Cognitive Load Exposure": "15.45%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "99.97%", - "Testing Exposure": "2.54%", + "Testing Exposure": "2.53%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -787837,7 +787777,7 @@ "Cognitive Load Exposure": "20.45%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.5%", + "Testing Exposure": "2.49%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -814992,9 +814932,9 @@ "Identity Proof": "Metadata Anchor (COPYING)" }, "2. Topological Coordinates": { - "X": -2342.06, + "X": -2341.99, "Y": -8.88, - "Z": -7213.94 + "Z": -7213.65 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -815149,9 +815089,9 @@ "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": -1794.29, + "X": -1794.21, "Y": 10.01, - "Z": -7748.61 + "Z": -7748.32 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -815407,9 +815347,9 @@ "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": -1599.4, + "X": -1599.32, "Y": 32.75, - "Z": -7729.24 + "Z": -7728.95 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -815585,9 +815525,9 @@ "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": -2381.55, + "X": -2381.47, "Y": -73.32, - "Z": -6947.78 + "Z": -6947.49 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -815763,9 +815703,9 @@ "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": -2107.02, + "X": -2106.94, "Y": -108.36, - "Z": -6910.28 + "Z": -6909.99 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -816031,9 +815971,9 @@ "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": -1334.89, + "X": -1334.82, "Y": -96.87, - "Z": -6906.31 + "Z": -6906.02 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -816199,9 +816139,9 @@ "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": -1380.38, + "X": -1380.31, "Y": -43.7, - "Z": -7502.44 + "Z": -7502.15 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -816407,9 +816347,9 @@ "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": -2064.96, + "X": -2064.89, "Y": 59.16, - "Z": -7604.86 + "Z": -7604.57 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -816605,9 +816545,9 @@ "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": -2034.73, + "X": -2034.65, "Y": -148.41, - "Z": -6689.85 + "Z": -6689.56 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -816793,9 +816733,9 @@ "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": -1605.45, + "X": -1605.37, "Y": -145.6, - "Z": -6950.47 + "Z": -6950.18 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -817031,9 +816971,9 @@ "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": -1805.32, + "X": -1805.25, "Y": -74.03, - "Z": -7206.56 + "Z": -7206.27 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -821248,25 +821188,25 @@ } }, "assembly/x86_bare_metal": { - "Directory Group Magnitude": 282.4, + "Directory Group Magnitude": 275.06, "File Count": 23, "Ecosystem Fingerprint (Archetypes)": { "Unclassified": "95.7%", "Static: Literature & Documentation": "4.3%" }, "Average Risk Exposures": { - "Cognitive Load Exposure": "17.65%", - "Error & Exception Exposure": "72.86%", - "Tech Debt Exposure": "29.82%", - "Testing Exposure": "1.98%", + "Cognitive Load Exposure": "18.71%", + "Error & Exception Exposure": "75.28%", + "Tech Debt Exposure": "30.42%", + "Testing Exposure": "1.83%", "API Exposure": "0.22%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "17.19%", + "State Flux Exposure": "17.33%", "Commented Logic Exposure": "4.26%", - "Specification Exposure": "79.13%", + "Specification Exposure": "71.01%", "Instability Exposure": "47.83%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "47.94%", + "Documentation Exposure": "42.11%", "Hardcoded Payload Artifacts": "0.0%" }, "Files": { @@ -821283,9 +821223,9 @@ "Identity Proof": "Prefix Anchor (LICENSE)" }, "2. Topological Coordinates": { - "X": -2378.66, - "Y": 5.29, - "Z": -4574.03 + "X": -2378.59, + "Y": 5.27, + "Z": -4574.01 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -821440,9 +821380,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -1117.33, - "Y": -254.24, - "Z": -4939.7 + "X": -2096.2, + "Y": -103.8, + "Z": -5224.86 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -821452,29 +821392,29 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 22, - "Coding LOC": 15, - "Documentation LOC": 1, - "Structural Magnitude": 15.3, + "Coding LOC": 12, + "Documentation LOC": 4, + "Structural Magnitude": 15.24, "Control Flow Ratio": "45.5%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.667 + "Raw Cognitive Density": 0.833 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "41.74%", + "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.3%", + "Testing Exposure": "1.84%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "80.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "69.01%", + "Documentation Exposure": "56.5%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [], @@ -821597,9 +821537,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -1650.32, - "Y": -185.32, - "Z": -5484.02 + "X": -1650.31, + "Y": -185.31, + "Z": -5483.88 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -821609,21 +821549,21 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 65, - "Coding LOC": 36, - "Documentation LOC": 18, - "Structural Magnitude": 16.42, + "Coding LOC": 35, + "Documentation LOC": 19, + "Structural Magnitude": 16.4, "Control Flow Ratio": "41.7%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.417 + "Raw Cognitive Density": 0.429 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "20.86%", - "Error & Exception Exposure": "80.94%", - "Tech Debt Exposure": "99.85%", - "Testing Exposure": "2.64%", + "Cognitive Load Exposure": "21.66%", + "Error & Exception Exposure": "81.35%", + "Tech Debt Exposure": "99.89%", + "Testing Exposure": "2.65%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -821631,7 +821571,7 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "29.93%", + "Documentation Exposure": "29.61%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -821785,9 +821725,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -2237.34, - "Y": -88.19, - "Z": -5569.65 + "X": -1463.75, + "Y": -136.06, + "Z": -4608.06 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -821797,29 +821737,29 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 13, - "Coding LOC": 7, - "Documentation LOC": 1, - "Structural Magnitude": 13.64, + "Coding LOC": 6, + "Documentation LOC": 2, + "Structural Magnitude": 13.12, "Control Flow Ratio": "33.3%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.857 + "Raw Cognitive Density": 1.0 }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", - "Error & Exception Exposure": "95.26%", + "Error & Exception Exposure": "95.75%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "1.12%", + "Testing Exposure": "0.97%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "46.67%", + "Specification Exposure": "40.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "39.02%", + "Documentation Exposure": "33.79%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [], @@ -821942,9 +821882,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -1011.61, - "Y": -289.27, - "Z": -5124.12 + "X": -2253.77, + "Y": -82.57, + "Z": -5322.22 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -821954,29 +821894,29 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 9, - "Coding LOC": 6, - "Documentation LOC": 1, - "Structural Magnitude": 13.12, + "Coding LOC": 5, + "Documentation LOC": 2, + "Structural Magnitude": 12.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.833 + "Raw Cognitive Density": 1.0 }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", - "Error & Exception Exposure": "95.75%", + "Error & Exception Exposure": "96.23%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "0.97%", + "Testing Exposure": "0.81%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "40.0%", + "Specification Exposure": "33.33%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "34.18%", + "Documentation Exposure": "28.77%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [], @@ -822099,9 +822039,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -2120.94, - "Y": -89.92, - "Z": -5182.42 + "X": -1427.86, + "Y": -176.1, + "Z": -4769.62 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -822111,20 +822051,20 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 33, - "Coding LOC": 24, - "Documentation LOC": 1, - "Structural Magnitude": 15.48, + "Coding LOC": 19, + "Documentation LOC": 6, + "Structural Magnitude": 15.38, "Control Flow Ratio": "33.3%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.292 + "Raw Cognitive Density": 0.368 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "13.78%", - "Error & Exception Exposure": "86.31%", - "Tech Debt Exposure": "99.18%", + "Cognitive Load Exposure": "17.85%", + "Error & Exception Exposure": "88.86%", + "Tech Debt Exposure": "99.88%", "Testing Exposure": "2.33%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -822133,7 +822073,7 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "55.67%", + "Documentation Exposure": "56.45%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [], @@ -822179,7 +822119,7 @@ "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 1, "Thread Sleeps & Blocking Waits": 1, - "Bitwise Operations": 2, + "Bitwise Operations": 1, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, "Resource Deallocation & Cleanup": 0, @@ -822256,9 +822196,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -1255.09, - "Y": -243.68, - "Z": -5241.78 + "X": -1123.32, + "Y": -223.16, + "Z": -4780.73 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -822268,29 +822208,29 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 25, - "Coding LOC": 19, - "Documentation LOC": 1, - "Structural Magnitude": 15.38, + "Coding LOC": 9, + "Documentation LOC": 11, + "Structural Magnitude": 14.68, "Control Flow Ratio": "40.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.368 + "Raw Cognitive Density": 0.778 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "17.85%", - "Error & Exception Exposure": "88.86%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "94.23%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.33%", + "Testing Exposure": "1.42%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "60.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "62.56%", + "Documentation Exposure": "40.05%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [], @@ -822336,7 +822276,7 @@ "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 1, "Thread Sleeps & Blocking Waits": 1, - "Bitwise Operations": 1, + "Bitwise Operations": 0, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, "Resource Deallocation & Cleanup": 0, @@ -822413,9 +822353,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -1753.01, - "Y": -106.38, - "Z": -4584.13 + "X": -1752.96, + "Y": -106.39, + "Z": -4584.2 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -822425,29 +822365,29 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 23, - "Coding LOC": 16, - "Documentation LOC": 1, - "Structural Magnitude": 15.32, + "Coding LOC": 10, + "Documentation LOC": 7, + "Structural Magnitude": 15.2, "Control Flow Ratio": "25.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.375 + "Raw Cognitive Density": 0.6 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "18.24%", - "Error & Exception Exposure": "90.47%", - "Tech Debt Exposure": "99.98%", - "Testing Exposure": "2.34%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "93.7%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "1.58%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "66.67%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "67.32%", + "Documentation Exposure": "47.0%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [], @@ -822455,7 +822395,7 @@ "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 1, "Sequential Logic Declarations": 3, - "Function Parameters": 5, + "Function Parameters": 3, "Function/Method Declarations": 0, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, @@ -822518,12 +822458,12 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 1, + "Core Var Decl": 0, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 1, - "Design Short Vars": 1, + "Design Upper Case": 0, + "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, "Orphaned Logic": 0, @@ -822570,9 +822510,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -1676.5, + "X": -1676.48, "Y": -181.14, - "Z": -5230.68 + "Z": -5230.62 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -822582,21 +822522,21 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 75, - "Coding LOC": 67, - "Documentation LOC": 2, - "Structural Magnitude": 29.34, + "Coding LOC": 57, + "Documentation LOC": 12, + "Structural Magnitude": 29.14, "Control Flow Ratio": "40.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.224 + "Raw Cognitive Density": 0.263 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "10.87%", - "Error & Exception Exposure": "71.73%", - "Tech Debt Exposure": "99.98%", - "Testing Exposure": "2.61%", + "Cognitive Load Exposure": "12.48%", + "Error & Exception Exposure": "74.11%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "2.67%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -822604,7 +822544,7 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "28.99%", + "Documentation Exposure": "26.7%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -822693,7 +822633,7 @@ "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 10, "Sequential Logic Declarations": 15, - "Function Parameters": 23, + "Function Parameters": 21, "Function/Method Declarations": 8, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, @@ -822720,7 +822660,7 @@ "Acknowledged Tech Debt (FIXMEs)": 0, "Specification Traceability Tags": 0, "Server-Side Rendering Contexts": 0, - "Event Publishers / Emitters": 1, + "Event Publishers / Emitters": 0, "Dependency Injection Constructs": 0, "Preprocessor Macros": 0, "Pointer Arithmetic & Addressing": 0, @@ -822739,7 +822679,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 50, + "Structural Space Indentations": 48, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -822756,12 +822696,12 @@ "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": 2, + "Design Snake Case": 0, "Design Pascal Case": 0, "Design Upper Case": 0, - "Design Short Vars": 1, + "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, "Orphaned Logic": 6, @@ -822808,9 +822748,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -2154.52, - "Y": -86.95, - "Z": -5731.48 + "X": -832.71, + "Y": -255.83, + "Z": -4991.1 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -822820,21 +822760,21 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 59, - "Coding LOC": 51, - "Documentation LOC": 1, - "Structural Magnitude": 2.42, - "Control Flow Ratio": "25.0%", + "Coding LOC": 15, + "Documentation LOC": 37, + "Structural Magnitude": 1.4, + "Control Flow Ratio": "22.2%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.157 + "Raw Cognitive Density": 0.467 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "8.53%", - "Error & Exception Exposure": "75.78%", - "Tech Debt Exposure": "87.12%", - "Testing Exposure": "2.33%", + "Cognitive Load Exposure": "24.35%", + "Error & Exception Exposure": "91.01%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "2.39%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -822842,32 +822782,32 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "34.99%", + "Documentation Exposure": "22.51%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { "Function Name": "stage2", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 9, + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", "Start Line": 50, - "End Line": 58 + "End Line": 52 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 3, - "Sequential Logic Declarations": 9, - "Function Parameters": 11, + "Control Flow Branches": 2, + "Sequential Logic Declarations": 7, + "Function Parameters": 7, "Function/Method Declarations": 1, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 2, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -822899,7 +822839,7 @@ "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 1, "Thread Sleeps & Blocking Waits": 1, - "Bitwise Operations": 2, + "Bitwise Operations": 0, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, "Resource Deallocation & Cleanup": 0, @@ -822907,7 +822847,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 44, + "Structural Space Indentations": 12, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -822976,9 +822916,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -814.73, - "Y": -270.42, - "Z": -5119.74 + "X": -2137.59, + "Y": -101.33, + "Z": -5859.78 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -822988,29 +822928,29 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 13, - "Coding LOC": 10, - "Documentation LOC": 1, - "Structural Magnitude": 2.3, + "Coding LOC": 9, + "Documentation LOC": 2, + "Structural Magnitude": 2.28, "Control Flow Ratio": "100.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.7 + "Raw Cognitive Density": 0.778 }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", - "Error & Exception Exposure": "93.7%", + "Error & Exception Exposure": "94.23%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "1.68%", + "Testing Exposure": "1.53%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "66.67%", + "Specification Exposure": "60.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "52.02%", + "Documentation Exposure": "47.27%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -823144,9 +823084,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -2458.14, - "Y": 14.66, - "Z": -5169.63 + "X": -1133.78, + "Y": -181.61, + "Z": -4708.4 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -823156,29 +823096,29 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 18, - "Coding LOC": 14, - "Documentation LOC": 1, - "Structural Magnitude": 8.88, + "Coding LOC": 13, + "Documentation LOC": 2, + "Structural Magnitude": 8.86, "Control Flow Ratio": "66.7%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.643 + "Raw Cognitive Density": 0.692 }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", - "Error & Exception Exposure": "91.55%", + "Error & Exception Exposure": "92.09%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.63%", + "Testing Exposure": "2.48%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "93.33%", + "Specification Exposure": "86.67%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "66.03%", + "Documentation Exposure": "61.8%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -823322,9 +823262,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -1106.15, - "Y": -185.22, - "Z": -4480.84 + "X": -2430.42, + "Y": 11.03, + "Z": -4942.06 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -823334,21 +823274,21 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 65, - "Coding LOC": 49, - "Documentation LOC": 1, - "Structural Magnitude": 8.98, - "Control Flow Ratio": "44.4%", + "Coding LOC": 37, + "Documentation LOC": 13, + "Structural Magnitude": 8.74, + "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.184 + "Raw Cognitive Density": 0.243 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "9.4%", - "Error & Exception Exposure": "79.73%", + "Cognitive Load Exposure": "11.64%", + "Error & Exception Exposure": "84.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.43%", + "Testing Exposure": "2.47%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -823356,7 +823296,7 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "35.91%", + "Documentation Exposure": "33.24%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -823366,7 +823306,7 @@ "Lines of Code (LOC)": 25, "Control Flow Branches": 2, "Input Parameters": 4, - "Control Flow Ratio": "40.0%", + "Control Flow Ratio": "50.0%", "Start Line": 40, "End Line": 64 } @@ -823374,7 +823314,7 @@ "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 4, - "Sequential Logic Declarations": 5, + "Sequential Logic Declarations": 4, "Function Parameters": 15, "Function/Method Declarations": 1, "Class/Entity Declarations": 0, @@ -823413,7 +823353,7 @@ "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 1, "Thread Sleeps & Blocking Waits": 1, - "Bitwise Operations": 4, + "Bitwise Operations": 1, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, "Resource Deallocation & Cleanup": 0, @@ -823421,7 +823361,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 31, + "Structural Space Indentations": 27, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -823490,9 +823430,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -2250.79, - "Y": -31.06, - "Z": -4900.03 + "X": -1445.26, + "Y": -253.66, + "Z": -5689.59 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -823502,29 +823442,29 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 10, - "Coding LOC": 7, - "Documentation LOC": 1, - "Structural Magnitude": 14.64, + "Coding LOC": 6, + "Documentation LOC": 2, + "Structural Magnitude": 14.12, "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.857 + "Raw Cognitive Density": 1.0 }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", - "Error & Exception Exposure": "95.96%", + "Error & Exception Exposure": "96.4%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "1.12%", + "Testing Exposure": "0.97%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "97.38%", + "State Flux Exposure": "98.97%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "46.67%", + "Specification Exposure": "40.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "39.02%", + "Documentation Exposure": "33.79%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [], @@ -823647,9 +823587,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -1730.49, - "Y": -83.59, - "Z": -4491.04 + "X": -1730.47, + "Y": -83.6, + "Z": -4491.09 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -823659,29 +823599,29 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 10, - "Coding LOC": 7, - "Documentation LOC": 1, - "Structural Magnitude": 3.24, + "Coding LOC": 6, + "Documentation LOC": 2, + "Structural Magnitude": 3.22, "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.857 + "Raw Cognitive Density": 1.0 }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "1.22%", + "Testing Exposure": "1.07%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "46.67%", + "Specification Exposure": "40.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "39.02%", + "Documentation Exposure": "33.79%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -823815,9 +823755,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -2043.71, - "Y": -1.79, - "Z": -4384.76 + "X": -978.07, + "Y": -265.11, + "Z": -5106.18 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -823827,29 +823767,29 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 9, - "Coding LOC": 6, - "Documentation LOC": 1, - "Structural Magnitude": 13.12, + "Coding LOC": 5, + "Documentation LOC": 2, + "Structural Magnitude": 12.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.833 + "Raw Cognitive Density": 1.0 }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", - "Error & Exception Exposure": "95.75%", + "Error & Exception Exposure": "96.23%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "0.97%", + "Testing Exposure": "0.81%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "40.0%", + "Specification Exposure": "33.33%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "34.18%", + "Documentation Exposure": "28.77%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [], @@ -823903,7 +823843,185 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 3, + "Structural Space Indentations": 3, + "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": 0, + "Design Camel Case": 0, + "Design Snake Case": 0, + "Design Pascal Case": 0, + "Design Upper Case": 0, + "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)": 0, + "Direct Downstream (Dependency Blast Radius)": 0, + "Total Upstream (Absolute Fragility)": 0, + "Total Downstream (Absolute Dependency Blast Radius)": 0 + }, + "9. Extracted Dependencies": [] + }, + "assembly/x86_bare_metal/bios_pixel.S": { + "1. Artifact Identity": { + "Filename": "bios_pixel.S", + "Path": "assembly/x86_bare_metal/bios_pixel.S", + "Language": "Assembly", + "Architect": "Unknown Architect", + "Indentation Style": "Spaces", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "assembly", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .s)" + }, + "2. Topological Coordinates": { + "X": -1919.54, + "Y": -154.83, + "Z": -5607.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": 30, + "Coding LOC": 16, + "Documentation LOC": 11, + "Structural Magnitude": 15.12, + "Control Flow Ratio": "22.2%", + "Popularity Rank": 0, + "Raw Churn Frequency": 0.0, + "Authorship Centralization": 0.0, + "Ownership Entropy": 0.0, + "Raw Cognitive Density": 1.188 + }, + "4. Vulnerability & Risk Exposures": { + "Cognitive Load Exposure": "85.2%", + "Error & Exception Exposure": "95.26%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "2.75%", + "API Exposure": "0.0%", + "Concurrency 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": "54.31%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "5. Function Analysis": [ + { + "Function Name": "start", + "Structural Impact": 7.7, + "Lines of Code (LOC)": 20, + "Control Flow Branches": 2, + "Input Parameters": 4, + "Control Flow Ratio": "25.0%", + "Start Line": 8, + "End Line": 27 + }, + { + "Function Name": "end", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 28, + "End Line": 29 + } + ], + "6. Contextual Mitigations & Amplifications": "None Detected", + "7. Structural Signatures (Net Mitigated Signals)": { + "Control Flow Branches": 2, + "Sequential Logic Declarations": 7, + "Function Parameters": 8, + "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": 0, + "Exposed API / Public Exports": 0, + "State Mutations / Variable Reassignments": 6, + "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": 1, + "Thread Sleeps & Blocking Waits": 1, + "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": 13, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -823959,184 +824077,6 @@ }, "9. Extracted Dependencies": [] }, - "assembly/x86_bare_metal/bios_pixel.S": { - "1. Artifact Identity": { - "Filename": "bios_pixel.S", - "Path": "assembly/x86_bare_metal/bios_pixel.S", - "Language": "Assembly", - "Architect": "Unknown Architect", - "Indentation Style": "Spaces", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "assembly", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .s)" - }, - "2. Topological Coordinates": { - "X": -1919.64, - "Y": -154.83, - "Z": -5607.86 - }, - "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": 30, - "Coding LOC": 26, - "Documentation LOC": 1, - "Structural Magnitude": 15.32, - "Control Flow Ratio": "22.2%", - "Popularity Rank": 0, - "Raw Churn Frequency": 0.0, - "Authorship Centralization": 0.0, - "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.731 - }, - "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "48.08%", - "Error & Exception Exposure": "89.95%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.57%", - "API Exposure": "0.0%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "99.92%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "53.27%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "5. Function Analysis": [ - { - "Function Name": "start", - "Structural Impact": 7.7, - "Lines of Code (LOC)": 20, - "Control Flow Branches": 2, - "Input Parameters": 4, - "Control Flow Ratio": "25.0%", - "Start Line": 8, - "End Line": 27 - }, - { - "Function Name": "end", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 28, - "End Line": 29 - } - ], - "6. Contextual Mitigations & Amplifications": "None Detected", - "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 2, - "Sequential Logic Declarations": 7, - "Function Parameters": 13, - "Function/Method Declarations": 2, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 1, - "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 6, - "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": 1, - "Thread Sleeps & Blocking Waits": 1, - "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": 22, - "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": 5, - "Design Camel Case": 0, - "Design Snake Case": 0, - "Design Pascal Case": 0, - "Design Upper Case": 5, - "Design Short Vars": 5, - "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)": 0, - "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 - }, - "9. Extracted Dependencies": [] - }, "assembly/x86_bare_metal/bios_pixel_line.S": { "1. Artifact Identity": { "Filename": "bios_pixel_line.S", @@ -824150,9 +824090,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -1417.72, - "Y": -281.03, - "Z": -5684.76 + "X": -2223.3, + "Y": -58.38, + "Z": -4894.76 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -824162,21 +824102,21 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 20, - "Coding LOC": 17, - "Documentation LOC": 1, - "Structural Magnitude": 14.64, + "Coding LOC": 16, + "Documentation LOC": 2, + "Structural Magnitude": 14.62, "Control Flow Ratio": "22.2%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.118 + "Raw Cognitive Density": 1.188 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "81.31%", - "Error & Exception Exposure": "94.88%", + "Cognitive Load Exposure": "85.2%", + "Error & Exception Exposure": "95.26%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.7%", + "Testing Exposure": "2.73%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "100.0%", @@ -824184,7 +824124,7 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "65.68%", + "Documentation Exposure": "66.1%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -824328,9 +824268,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -1458.7, - "Y": -163.8, - "Z": -4623.87 + "X": -2055.24, + "Y": -59.47, + "Z": -4666.57 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -824340,29 +824280,29 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 11, - "Coding LOC": 8, - "Documentation LOC": 1, - "Structural Magnitude": 14.16, + "Coding LOC": 4, + "Documentation LOC": 5, + "Structural Magnitude": 12.08, "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.625 + "Raw Cognitive Density": 1.25 }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", - "Error & Exception Exposure": "94.75%", + "Error & Exception Exposure": "96.69%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "1.27%", + "Testing Exposure": "0.66%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "53.33%", + "Specification Exposure": "26.67%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "43.61%", + "Documentation Exposure": "22.73%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [], @@ -824485,9 +824425,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -1448.88, - "Y": -137.5, - "Z": -4886.53 + "X": -1295.19, + "Y": -222.22, + "Z": -5475.12 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -824497,29 +824437,29 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 31, - "Coding LOC": 25, - "Documentation LOC": 1, - "Structural Magnitude": 15.5, + "Coding LOC": 12, + "Documentation LOC": 14, + "Structural Magnitude": 15.24, "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.2 + "Raw Cognitive Density": 0.417 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "9.97%", - "Error & Exception Exposure": "85.81%", - "Tech Debt Exposure": "99.85%", - "Testing Exposure": "2.33%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "92.63%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "1.88%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "80.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "54.44%", + "Documentation Exposure": "45.15%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [], @@ -824527,7 +824467,7 @@ "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, "Sequential Logic Declarations": 5, - "Function Parameters": 9, + "Function Parameters": 5, "Function/Method Declarations": 0, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, @@ -824642,9 +824582,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -1720.0, - "Y": -203.04, - "Z": -5852.98 + "X": -1719.96, + "Y": -203.03, + "Z": -5852.76 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -824654,21 +824594,21 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 27, - "Coding LOC": 22, - "Documentation LOC": 1, - "Structural Magnitude": 9.14, + "Coding LOC": 17, + "Documentation LOC": 6, + "Structural Magnitude": 9.04, "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.409 + "Raw Cognitive Density": 0.529 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "20.36%", - "Error & Exception Exposure": "87.31%", + "Cognitive Load Exposure": "29.27%", + "Error & Exception Exposure": "89.93%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.62%", + "Testing Exposure": "2.72%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -824676,7 +824616,7 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "58.27%", + "Documentation Exposure": "59.43%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -824705,13 +824645,13 @@ "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 4, "Sequential Logic Declarations": 5, - "Function Parameters": 8, + "Function Parameters": 7, "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": 1, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -824751,7 +824691,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 17, + "Structural Space Indentations": 13, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -824820,9 +824760,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -1916.38, - "Y": -55.71, - "Z": -5083.46 + "X": -1916.28, + "Y": -55.73, + "Z": -5083.47 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -824832,29 +824772,29 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 23, - "Coding LOC": 20, - "Documentation LOC": 1, - "Structural Magnitude": 19.5, + "Coding LOC": 16, + "Documentation LOC": 5, + "Structural Magnitude": 19.42, "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.85 + "Raw Cognitive Density": 1.062 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "59.87%", - "Error & Exception Exposure": "81.19%", + "Cognitive Load Exposure": "77.73%", + "Error & Exception Exposure": "83.55%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.91%", + "Testing Exposure": "3.09%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "98.02%", + "State Flux Exposure": "99.55%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "61.08%", + "Documentation Exposure": "62.31%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -824929,7 +824869,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 16, + "Structural Space Indentations": 13, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -824998,9 +824938,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -1091.64, - "Y": -331.54, - "Z": -5520.1 + "X": -1091.67, + "Y": -331.52, + "Z": -5520.0 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -833778,9 +833718,9 @@ "Identity Proof": "Metadata Anchor (COPYING)" }, "2. Topological Coordinates": { - "X": 7797.7, + "X": 7797.06, "Y": 211.04, - "Z": -4375.91 + "Z": -4375.53 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -833935,9 +833875,9 @@ "Identity Proof": "Metadata Anchor (configure.ac)" }, "2. Topological Coordinates": { - "X": 8039.24, + "X": 8038.6, "Y": 251.14, - "Z": -4794.38 + "Z": -4794.0 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -837850,7 +837790,7 @@ "Cognitive Load Exposure": "11.99%", "Error & Exception Exposure": "63.41%", "Tech Debt Exposure": "58.71%", - "Testing Exposure": "2.21%", + "Testing Exposure": "2.2%", "API Exposure": "0.06%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "42.49%", @@ -839852,14 +839792,1523 @@ "Raw Cognitive Density": 0.965 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "38.63%", - "Error & Exception Exposure": "97.84%", - "Tech Debt Exposure": "20.26%", - "Testing Exposure": "80.0%", - "API Exposure": "0.32%", + "Cognitive Load Exposure": "38.63%", + "Error & Exception Exposure": "97.84%", + "Tech Debt Exposure": "20.26%", + "Testing Exposure": "80.0%", + "API Exposure": "0.32%", + "Concurrency 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": "11.92%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "5. Function Analysis": [ + { + "Function Name": "supportsShallowClone", + "Structural Impact": 17.2, + "Lines of Code (LOC)": 32, + "Control Flow Branches": 10, + "Input Parameters": 1, + "Control Flow Ratio": "66.7%", + "Start Line": 142, + "End Line": 173 + }, + { + "Function Name": "checkout", + "Structural Impact": 11.3, + "Lines of Code (LOC)": 28, + "Control Flow Branches": 6, + "Input Parameters": 1, + "Control Flow Ratio": "54.5%", + "Start Line": 175, + "End Line": 202 + }, + { + "Function Name": "clone", + "Structural Impact": 10.1, + "Lines of Code (LOC)": 42, + "Control Flow Branches": 7, + "Input Parameters": 0, + "Control Flow Ratio": "46.7%", + "Start Line": 49, + "End Line": 90 + }, + { + "Function Name": "parseRemoteURL", + "Structural Impact": 9.9, + "Lines of Code (LOC)": 29, + "Control Flow Branches": 5, + "Input Parameters": 1, + "Control Flow Ratio": "62.5%", + "Start Line": 92, + "End Line": 120 + }, + { + "Function Name": "Clone", + "Structural Impact": 7.5, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 3, + "Input Parameters": 2, + "Control Flow Ratio": "60.0%", + "Start Line": 36, + "End Line": 47 + }, + { + "Function Name": "isGitTransport", + "Structural Impact": 6.3, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 3, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 223, + "End Line": 234 + }, + { + "Function Name": "gitWithinDir", + "Structural Impact": 4.3, + "Lines of Code (LOC)": 16, + "Control Flow Branches": 1, + "Input Parameters": 2, + "Control Flow Ratio": "50.0%", + "Start Line": 204, + "End Line": 219 + }, + { + "Function Name": "fetchArgs", + "Structural Impact": 3.9, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 1, + "Input Parameters": 2, + "Control Flow Ratio": "50.0%", + "Start Line": 130, + "End Line": 138 + }, + { + "Function Name": "getRefAndSubdir", + "Structural Impact": 3.2, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 122, + "End Line": 128 + }, + { + "Function Name": "getScheme", + "Structural Impact": 3.2, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "33.3%", + "Start Line": 238, + "End Line": 244 + }, + { + "Function Name": "WithIsolatedConfig", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 28, + "End Line": 32 + } + ], + "6. Contextual Mitigations & Amplifications": "None Detected", + "7. Structural Signatures (Net Mitigated Signals)": { + "Control Flow Branches": 38, + "Sequential Logic Declarations": 37, + "Function Parameters": 11, + "Function/Method Declarations": 11, + "Class/Entity Declarations": 1, + "Defensive Programming Constructs": 14, + "Type/Safety Bypasses": 3, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 1, + "Exposed API / Public Exports": 3, + "State Mutations / Variable Reassignments": 147, + "Commented-out Code (Dead Logic)": 0, + "Structured Documentation Blocks": 14, + "Unit Test Assertions": 0, + "Asynchronous/Concurrent Execution": 0, + "UI / View Layer Components": 0, + "Closures and Anonymous Functions": 6, + "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, + "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": 1, + "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": 2, + "Private / Encapsulated Scopes": 44, + "Event Listeners & Subscribers": 0, + "Bypassed / Skipped Tests": 0, + "Structural Tab Indentations": 149, + "Structural Space Indentations": 0, + "Hardware Bridge": 0, + "Cryptography": 0, + "Auth Middleware": 0, + "Ipc Rpc Bridges": 2, + "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": 1, + "Design Snake Case": 6, + "Design Pascal Case": 0, + "Design Upper Case": 0, + "Design Short Vars": 3, + "Design Long Vars": 0, + "Duplicate Logic": 0, + "Orphaned Logic": 2, + "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": 3, + "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)": 9, + "Direct Downstream (Dependency Blast Radius)": 0, + "Total Upstream (Absolute Fragility)": 8, + "Total Downstream (Absolute Dependency Blast Radius)": 0 + }, + "9. Extracted Dependencies": [ + "git", + "github.com/moby/sys/symlink", + "github.com/pkg/errors", + "net/http", + "net/url", + "os", + "os/exec", + "path/filepath", + "strings" + ] + } + } + }, + "dockerfile/moby/test_targets": { + "Directory Group Magnitude": 224.04, + "File Count": 4, + "Ecosystem Fingerprint (Archetypes)": { + "Unclassified": "100.0%" + }, + "Average Risk Exposures": { + "Cognitive Load Exposure": "24.78%", + "Error & Exception Exposure": "44.35%", + "Tech Debt Exposure": "37.26%", + "Testing Exposure": "21.87%", + "API Exposure": "0.6%", + "Concurrency Exposure": "4.79%", + "State Flux Exposure": "25.6%", + "Commented Logic Exposure": "4.19%", + "Specification Exposure": "96.67%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "29.05%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "Files": { + "dockerfile/moby/test_targets/daemon.Dockerfile": { + "1. Artifact Identity": { + "Filename": "daemon.Dockerfile", + "Path": "dockerfile/moby/test_targets/daemon.Dockerfile", + "Language": "Dockerfile", + "Architect": "Unknown Architect", + "Indentation Style": "Spaces", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "dockerfile", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .dockerfile)" + }, + "2. Topological Coordinates": { + "X": -9188.29, + "Y": -97.87, + "Z": 1626.63 + }, + "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": 624, + "Coding LOC": 477, + "Documentation LOC": 89, + "Structural Magnitude": 180.64, + "Control Flow Ratio": "78.4%", + "Popularity Rank": 0, + "Raw Churn Frequency": 0.0, + "Authorship Centralization": 0.0, + "Ownership Entropy": 0.0, + "Raw Cognitive Density": 0.813 + }, + "4. Vulnerability & Risk Exposures": { + "Cognitive Load Exposure": "52.77%", + "Error & Exception Exposure": "55.63%", + "Tech Debt Exposure": "49.08%", + "Testing Exposure": "80.0%", + "API Exposure": "0.0%", + "Concurrency Exposure": "19.14%", + "State Flux Exposure": "29.23%", + "Commented Logic Exposure": "6.23%", + "Specification Exposure": "100.0%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "11.92%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "5. Function Analysis": [ + { + "Function Name": "RUN", + "Structural Impact": 8.9, + "Lines of Code (LOC)": 38, + "Control Flow Branches": 6, + "Input Parameters": 0, + "Control Flow Ratio": "85.7%", + "Start Line": 559, + "End Line": 596 + }, + { + "Function Name": "RUN", + "Structural Impact": 8.0, + "Lines of Code (LOC)": 20, + "Control Flow Branches": 6, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 163, + "End Line": 182 + }, + { + "Function Name": "RUN", + "Structural Impact": 7.2, + "Lines of Code (LOC)": 24, + "Control Flow Branches": 5, + "Input Parameters": 0, + "Control Flow Ratio": "83.3%", + "Start Line": 354, + "End Line": 377 + }, + { + "Function Name": "RUN", + "Structural Impact": 5.9, + "Lines of Code (LOC)": 18, + "Control Flow Branches": 4, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 322, + "End Line": 339 + }, + { + "Function Name": "RUN", + "Structural Impact": 5.5, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 4, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 75, + "End Line": 84 + }, + { + "Function Name": "RUN", + "Structural Impact": 4.8, + "Lines of Code (LOC)": 17, + "Control Flow Branches": 3, + "Input Parameters": 0, + "Control Flow Ratio": "75.0%", + "Start Line": 256, + "End Line": 272 + }, + { + "Function Name": "RUN", + "Structural Impact": 4.7, + "Lines of Code (LOC)": 13, + "Control Flow Branches": 3, + "Input Parameters": 0, + "Control Flow Ratio": "75.0%", + "Start Line": 214, + "End Line": 226 + }, + { + "Function Name": "RUN", + "Structural Impact": 3.5, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 2, + "Input Parameters": 0, + "Control Flow Ratio": "66.7%", + "Start Line": 227, + "End Line": 236 + }, + { + "Function Name": "RUN", + "Structural Impact": 3.3, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 2, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 553, + "End Line": 558 + }, + { + "Function Name": "RUN", + "Structural Impact": 3.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 2, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 461, + "End Line": 463 + }, + { + "Function Name": "RUN", + "Structural Impact": 3.0, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 2, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 68, + "End Line": 68 + }, + { + "Function Name": "RUN", + "Structural Impact": 3.0, + "Lines of Code (LOC)": 48, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 390, + "End Line": 437 + }, + { + "Function Name": "RUN", + "Structural Impact": 3.0, + "Lines of Code (LOC)": 33, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 474, + "End Line": 506 + }, + { + "Function Name": "RUN", + "Structural Impact": 2.8, + "Lines of Code (LOC)": 16, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "50.0%", + "Start Line": 507, + "End Line": 522 + }, + { + "Function Name": "RUN", + "Structural Impact": 2.7, + "Lines of Code (LOC)": 14, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 340, + "End Line": 353 + }, + { + "Function Name": "RUN", + "Structural Impact": 2.5, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 91, + "End Line": 100 + }, + { + "Function Name": "RUN", + "Structural Impact": 2.5, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "50.0%", + "Start Line": 204, + "End Line": 213 + }, + { + "Function Name": "RUN", + "Structural Impact": 2.4, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "50.0%", + "Start Line": 138, + "End Line": 145 + }, + { + "Function Name": "RUN", + "Structural Impact": 2.4, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 183, + "End Line": 190 + }, + { + "Function Name": "RUN", + "Structural Impact": 2.4, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 191, + "End Line": 197 + }, + { + "Function Name": "RUN", + "Structural Impact": 2.4, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 248, + "End Line": 255 + }, + { + "Function Name": "RUN", + "Structural Impact": 2.4, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 315, + "End Line": 321 + }, + { + "Function Name": "RUN", + "Structural Impact": 2.4, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 442, + "End Line": 448 + }, + { + "Function Name": "RUN", + "Structural Impact": 2.4, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 523, + "End Line": 530 + }, + { + "Function Name": "RUN", + "Structural Impact": 2.3, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 85, + "End Line": 90 + }, + { + "Function Name": "RUN", + "Structural Impact": 2.3, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 113, + "End Line": 118 + }, + { + "Function Name": "RUN", + "Structural Impact": 2.3, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 146, + "End Line": 151 + }, + { + "Function Name": "RUN", + "Structural Impact": 2.3, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 157, + "End Line": 162 + }, + { + "Function Name": "RUN", + "Structural Impact": 2.3, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 198, + "End Line": 203 + }, + { + "Function Name": "RUN", + "Structural Impact": 2.3, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 237, + "End Line": 242 + }, + { + "Function Name": "RUN", + "Structural Impact": 2.3, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 454, + "End Line": 459 + }, + { + "Function Name": "RUN", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 70, + "End Line": 74 + }, + { + "Function Name": "RUN", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "50.0%", + "Start Line": 119, + "End Line": 123 + }, + { + "Function Name": "RUN", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "50.0%", + "Start Line": 152, + "End Line": 156 + }, + { + "Function Name": "RUN", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "50.0%", + "Start Line": 243, + "End Line": 247 + }, + { + "Function Name": "RUN", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 273, + "End Line": 276 + }, + { + "Function Name": "RUN", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "50.0%", + "Start Line": 277, + "End Line": 280 + }, + { + "Function Name": "RUN", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 281, + "End Line": 284 + }, + { + "Function Name": "RUN", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "50.0%", + "Start Line": 310, + "End Line": 314 + }, + { + "Function Name": "RUN", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "50.0%", + "Start Line": 380, + "End Line": 384 + }, + { + "Function Name": "RUN", + "Structural Impact": 2.1, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 308, + "End Line": 309 + }, + { + "Function Name": "RUN", + "Structural Impact": 2.1, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 378, + "End Line": 379 + }, + { + "Function Name": "RUN", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 17, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 291, + "End Line": 307 + }, + { + "Function Name": "RUN", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 101, + "End Line": 112 + }, + { + "Function Name": "RUN", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 14, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 124, + "End Line": 137 + }, + { + "Function Name": "RUN", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 22, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 531, + "End Line": 552 + }, + { + "Function Name": "RUN", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 27, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 597, + "End Line": 623 + }, + { + "Function Name": "RUN", + "Structural Impact": 1.4, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 57, + "End Line": 63 + }, + { + "Function Name": "RUN", + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 285, + "End Line": 290 + }, + { + "Function Name": "RUN", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 385, + "End Line": 389 + }, + { + "Function Name": "ENTRYPOINT", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 449, + "End Line": 453 + }, + { + "Function Name": "RUN", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 69, + "End Line": 69 + }, + { + "Function Name": "ENTRYPOINT", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 439, + "End Line": 441 + }, + { + "Function Name": "RUN", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 460, + "End Line": 460 + }, + { + "Function Name": "RUN", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 465, + "End Line": 465 + }, + { + "Function Name": "RUN", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 467, + "End Line": 467 + }, + { + "Function Name": "RUN", + "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": "RUN", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 471, + "End Line": 471 + } + ], + "6. Contextual Mitigations & Amplifications": "None Detected", + "7. Structural Signatures (Net Mitigated Signals)": { + "Control Flow Branches": 69, + "Sequential Logic Declarations": 19, + "Function Parameters": 60, + "Function/Method Declarations": 58, + "Class/Entity Declarations": 69, + "Defensive Programming Constructs": 7, + "Type/Safety Bypasses": 3, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 74, + "Exposed API / Public Exports": 0, + "State Mutations / Variable Reassignments": 18, + "Commented-out Code (Dead Logic)": 2, + "Structured Documentation Blocks": 5, + "Unit Test Assertions": 0, + "Asynchronous/Concurrent Execution": 1, + "UI / View Layer Components": 0, + "Closures and Anonymous Functions": 0, + "Global State Dependencies": 7, + "Decorators and Annotations": 0, + "Generic Type Abstractions": 0, + "Collection Iterators / Comprehensions": 0, + "Scientific & Mathematical Operations": 0, + "Metaprogramming & Reflection": 55, + "Module Dependencies (Imports)": 105, + "Authorship Metadata": 0, + "Planned Work (TODOs)": 0, + "Acknowledged Tech Debt (FIXMEs)": 7, + "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": 22, + "Explicit Type Casts": 0, + "Fatal Aborts & Exceptions": 1, + "Thread Sleeps & Blocking Waits": 0, + "Bitwise Operations": 0, + "Thread Synchronization Locks": 0, + "Immutable Data Declarations": 7, + "Resource Deallocation & Cleanup": 0, + "Private / Encapsulated Scopes": 69, + "Event Listeners & Subscribers": 0, + "Bypassed / Skipped Tests": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 210, + "Hardware Bridge": 0, + "Cryptography": 0, + "Auth Middleware": 0, + "Ipc Rpc Bridges": 4, + "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": 54, + "Design Camel Case": 0, + "Design Snake Case": 1, + "Design Pascal Case": 0, + "Design Upper Case": 53, + "Design Short Vars": 3, + "Design Long Vars": 2, + "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": 1, + "Dynamic Code Execution (Eval/Exec)": 0, + "Global Environment Mutation": 0, + "Commented-Out Executable Logic": 2, + "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)": 54, + "Direct Downstream (Dependency Blast Radius)": 0, + "Total Upstream (Absolute Fragility)": 35, + "Total Downstream (Absolute Dependency Blast Radius)": 0 + }, + "9. Extracted Dependencies": [ + "--platform", + "all", + "base", + "binary-dummy", + "build", + "build-dummy", + "buildx", + "busybox", + "compose", + "containerd", + "containerd-", + "containerd-build", + "containerutil", + "containerutil-", + "containerutil-build", + "containerutil-windows-", + "crun", + "debian:", + "delve", + "delve-", + "dev-base", + "dev-firewalld-", + "dev-systemd-", + "dev-systemd-false", + "dev-systemd-true", + "distribution/distribution:", + "docker/buildx-bin:", + "docker/compose-bin:", + "docker:dind", + "dockercli", + "dockercli-integration", + "frozen-images", + "golangci_lint", + "gopls", + "gotestsum", + "gowinres", + "moby/vpnkit-bin:", + "registry", + "rootlesskit", + "rootlesskit-", + "rootlesskit-build", + "runc", + "runc-", + "runc-build", + "scratch", + "shfmt", + "tini", + "tini-", + "tini-build", + "tonistiigi/xx:", + "vpnkit", + "vpnkit-", + "vpnkit-linux-", + "xx" + ] + }, + "dockerfile/moby/test_targets/generate-files.Dockerfile": { + "1. Artifact Identity": { + "Filename": "generate-files.Dockerfile", + "Path": "dockerfile/moby/test_targets/generate-files.Dockerfile", + "Language": "Dockerfile", + "Architect": "Unknown Architect", + "Indentation Style": "Spaces", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "dockerfile", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .dockerfile)" + }, + "2. Topological Coordinates": { + "X": -9452.6, + "Y": -0.84, + "Z": 1889.56 + }, + "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": 75, + "Coding LOC": 65, + "Documentation LOC": 2, + "Structural Magnitude": 18.2, + "Control Flow Ratio": "71.4%", + "Popularity Rank": 0, + "Raw Churn Frequency": 0.0, + "Authorship Centralization": 0.0, + "Ownership Entropy": 0.0, + "Raw Cognitive Density": 0.592 + }, + "4. Vulnerability & Risk Exposures": { + "Cognitive Load Exposure": "34.73%", + "Error & Exception Exposure": "63.92%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "2.42%", + "API Exposure": "0.0%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "58.94%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "100.0%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "29.52%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "5. Function Analysis": [ + { + "Function Name": "RUN", + "Structural Impact": 4.6, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 3, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 61, + "End Line": 72 + }, + { + "Function Name": "RUN", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 9, + "End Line": 13 + }, + { + "Function Name": "RUN", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 11, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 14, + "End Line": 24 + }, + { + "Function Name": "RUN", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 25, + "End Line": 34 + }, + { + "Function Name": "RUN", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 15, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 35, + "End Line": 49 + }, + { + "Function Name": "RUN", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 11, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 50, + "End Line": 60 + } + ], + "6. Contextual Mitigations & Amplifications": "None Detected", + "7. Structural Signatures (Net Mitigated Signals)": { + "Control Flow Branches": 5, + "Sequential Logic Declarations": 2, + "Function Parameters": 6, + "Function/Method Declarations": 6, + "Class/Entity Declarations": 6, + "Defensive Programming Constructs": 2, + "Type/Safety Bypasses": 0, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 8, + "Exposed API / Public Exports": 0, + "State Mutations / Variable Reassignments": 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": 2, + "Decorators and Annotations": 0, + "Generic Type Abstractions": 0, + "Collection Iterators / Comprehensions": 0, + "Scientific & Mathematical Operations": 0, + "Metaprogramming & Reflection": 2, + "Module Dependencies (Imports)": 7, + "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": 3, + "Explicit Type Casts": 0, + "Fatal Aborts & Exceptions": 1, + "Thread Sleeps & Blocking Waits": 0, + "Bitwise Operations": 0, + "Thread Synchronization Locks": 0, + "Immutable Data Declarations": 0, + "Resource Deallocation & Cleanup": 0, + "Private / Encapsulated Scopes": 6, + "Event Listeners & Subscribers": 0, + "Bypassed / Skipped Tests": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 36, + "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": 7, + "Design Camel Case": 0, + "Design Snake Case": 2, + "Design Pascal Case": 0, + "Design Upper Case": 5, + "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)": 5, + "Direct Downstream (Dependency Blast Radius)": 0, + "Total Upstream (Absolute Fragility)": 1, + "Total Downstream (Absolute Dependency Blast Radius)": 0 + }, + "9. Extracted Dependencies": [ + "base", + "generated", + "golang:", + "scratch", + "tools" + ] + }, + "dockerfile/moby/test_targets/syscall.Dockerfile": { + "1. Artifact Identity": { + "Filename": "syscall.Dockerfile", + "Path": "dockerfile/moby/test_targets/syscall.Dockerfile", + "Language": "Dockerfile", + "Architect": "Unknown Architect", + "Indentation Style": "Tabs", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "dockerfile", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .dockerfile)" + }, + "2. Topological Coordinates": { + "X": -9162.92, + "Y": -170.42, + "Z": 1318.68 + }, + "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": 21, + "Coding LOC": 13, + "Documentation LOC": 1, + "Structural Magnitude": 12.76, + "Control Flow Ratio": "90.0%", + "Popularity Rank": 0, + "Raw Churn Frequency": 0.0, + "Authorship Centralization": 0.0, + "Ownership Entropy": 0.0, + "Raw Cognitive Density": 1.077 + }, + "4. Vulnerability & Risk Exposures": { + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "2.72%", + "API Exposure": "0.0%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "0.0%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "86.67%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "62.85%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "5. Function Analysis": [ + { + "Function Name": "RUN", + "Structural Impact": 7.3, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 6, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 12, + "End Line": 18 + }, + { + "Function Name": "RUN", + "Structural Impact": 3.0, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 2, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 20, + "End Line": 20 + }, + { + "Function Name": "RUN", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "50.0%", + "Start Line": 6, + "End Line": 10 + } + ], + "6. Contextual Mitigations & Amplifications": "None Detected", + "7. Structural Signatures (Net Mitigated Signals)": { + "Control Flow Branches": 9, + "Sequential Logic Declarations": 1, + "Function Parameters": 1, + "Function/Method Declarations": 3, + "Class/Entity Declarations": 1, + "Defensive Programming Constructs": 0, + "Type/Safety Bypasses": 0, + "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, + "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": 1, + "Structural Tab Indentations": 6, + "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": 1, + "Design Camel Case": 0, + "Design Snake Case": 0, + "Design Pascal Case": 0, + "Design Upper Case": 1, + "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)": 1, + "Direct Downstream (Dependency Blast Radius)": 0, + "Total Upstream (Absolute Fragility)": 0, + "Total Downstream (Absolute Dependency Blast Radius)": 0 + }, + "9. Extracted Dependencies": [ + "debian:" + ] + }, + "dockerfile/moby/test_targets/windows.Dockerfile": { + "1. Artifact Identity": { + "Filename": "windows.Dockerfile", + "Path": "dockerfile/moby/test_targets/windows.Dockerfile", + "Language": "Dockerfile", + "Architect": "Unknown Architect", + "Indentation Style": "Spaces", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "dockerfile", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .dockerfile)" + }, + "2. Topological Coordinates": { + "X": -8945.82, + "Y": -79.86, + "Z": 2057.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": 314, + "Coding LOC": 132, + "Documentation LOC": 146, + "Structural Magnitude": 12.44, + "Control Flow Ratio": "80.0%", + "Popularity Rank": 0, + "Raw Churn Frequency": 0.0, + "Authorship Centralization": 0.0, + "Ownership Entropy": 0.0, + "Raw Cognitive Density": 0.114 + }, + "4. Vulnerability & Risk Exposures": { + "Cognitive Load Exposure": "6.61%", + "Error & Exception Exposure": "57.84%", + "Tech Debt Exposure": "99.96%", + "Testing Exposure": "2.34%", + "API Exposure": "2.41%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "100.0%", - "Commented Logic Exposure": "0.0%", + "State Flux Exposure": "14.22%", + "Commented Logic Exposure": "10.53%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", @@ -839868,151 +841317,81 @@ }, "5. Function Analysis": [ { - "Function Name": "supportsShallowClone", - "Structural Impact": 17.2, - "Lines of Code (LOC)": 32, - "Control Flow Branches": 10, - "Input Parameters": 1, - "Control Flow Ratio": "66.7%", - "Start Line": 142, - "End Line": 173 - }, - { - "Function Name": "checkout", - "Structural Impact": 11.3, - "Lines of Code (LOC)": 28, - "Control Flow Branches": 6, - "Input Parameters": 1, - "Control Flow Ratio": "54.5%", - "Start Line": 175, - "End Line": 202 - }, - { - "Function Name": "clone", - "Structural Impact": 10.1, - "Lines of Code (LOC)": 42, - "Control Flow Branches": 7, - "Input Parameters": 0, - "Control Flow Ratio": "46.7%", - "Start Line": 49, - "End Line": 90 - }, - { - "Function Name": "parseRemoteURL", - "Structural Impact": 9.9, - "Lines of Code (LOC)": 29, - "Control Flow Branches": 5, - "Input Parameters": 1, - "Control Flow Ratio": "62.5%", - "Start Line": 92, - "End Line": 120 - }, - { - "Function Name": "Clone", - "Structural Impact": 7.5, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 3, - "Input Parameters": 2, - "Control Flow Ratio": "60.0%", - "Start Line": 36, - "End Line": 47 - }, - { - "Function Name": "isGitTransport", - "Structural Impact": 6.3, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 3, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 223, - "End Line": 234 - }, - { - "Function Name": "gitWithinDir", - "Structural Impact": 4.3, - "Lines of Code (LOC)": 16, - "Control Flow Branches": 1, - "Input Parameters": 2, - "Control Flow Ratio": "50.0%", - "Start Line": 204, - "End Line": 219 - }, - { - "Function Name": "fetchArgs", - "Structural Impact": 3.9, - "Lines of Code (LOC)": 9, + "Function Name": "RUN", + "Structural Impact": 2.6, + "Lines of Code (LOC)": 13, "Control Flow Branches": 1, - "Input Parameters": 2, - "Control Flow Ratio": "50.0%", - "Start Line": 130, - "End Line": 138 + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 278, + "End Line": 290 }, { - "Function Name": "getRefAndSubdir", - "Structural Impact": 3.2, - "Lines of Code (LOC)": 7, + "Function Name": "RUN", + "Structural Impact": 2.6, + "Lines of Code (LOC)": 13, "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 122, - "End Line": 128 + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 292, + "End Line": 304 }, { - "Function Name": "getScheme", - "Structural Impact": 3.2, + "Function Name": "ENTRYPOINT", + "Structural Impact": 1.4, "Lines of Code (LOC)": 7, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "33.3%", - "Start Line": 238, - "End Line": 244 + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 307, + "End Line": 313 }, { - "Function Name": "WithIsolatedConfig", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 5, + "Function Name": "RUN", + "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": 28, - "End Line": 32 + "Start Line": 189, + "End Line": 192 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 38, - "Sequential Logic Declarations": 37, - "Function Parameters": 11, - "Function/Method Declarations": 11, + "Control Flow Branches": 8, + "Sequential Logic Declarations": 2, + "Function Parameters": 6, + "Function/Method Declarations": 4, "Class/Entity Declarations": 1, - "Defensive Programming Constructs": 14, - "Type/Safety Bypasses": 3, + "Defensive Programming Constructs": 0, + "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 1, - "Exposed API / Public Exports": 3, - "State Mutations / Variable Reassignments": 147, - "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 14, + "Exposed API / Public Exports": 1, + "State Mutations / Variable Reassignments": 1, + "Commented-out Code (Dead Logic)": 3, + "Structured Documentation Blocks": 2, "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 6, + "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)": 1, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, - "Planned Work (TODOs)": 0, - "Acknowledged Tech Debt (FIXMEs)": 0, + "Planned Work (TODOs)": 1, + "Acknowledged Tech Debt (FIXMEs)": 8, "Specification Traceability Tags": 0, "Server-Side Rendering Contexts": 0, "Event Publishers / Emitters": 0, "Dependency Injection Constructs": 0, "Preprocessor Macros": 0, - "Pointer Arithmetic & Addressing": 1, + "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, @@ -840023,16 +841402,16 @@ "Bitwise Operations": 0, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 2, - "Private / Encapsulated Scopes": 44, + "Resource Deallocation & Cleanup": 0, + "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 149, - "Structural Space Indentations": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 117, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, - "Ipc Rpc Bridges": 2, + "Ipc Rpc Bridges": 1, "Feature Flags": 0, "Serialization Parsing": 0, "Regex Execution": 0, @@ -840045,15 +841424,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 10, - "Design Camel Case": 1, - "Design Snake Case": 6, + "Core Var Decl": 14, + "Design Camel Case": 0, + "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 0, - "Design Short Vars": 3, + "Design Upper Case": 14, + "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 2, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -840063,7 +841442,7 @@ "External Network & I/O Hooks": 0, "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, - "Commented-Out Executable Logic": 3, + "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, "Non-Standard / Steganographic Imports": 0, "Non-Standard Unicode / Homoglyphs": 0, @@ -840077,44 +841456,34 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 9, + "Direct Upstream (Fragility)": 0, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 8, + "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [ - "git", - "github.com/moby/sys/symlink", - "github.com/pkg/errors", - "net/http", - "net/url", - "os", - "os/exec", - "path/filepath", - "strings" - ] + "9. Extracted Dependencies": [] } } }, "assembly/cosmopolitan_runtime": { - "Directory Group Magnitude": 224.78, + "Directory Group Magnitude": 217.88, "File Count": 15, "Ecosystem Fingerprint (Archetypes)": { "Unclassified": "100.0%" }, "Average Risk Exposures": { - "Cognitive Load Exposure": "9.46%", - "Error & Exception Exposure": "14.31%", + "Cognitive Load Exposure": "10.49%", + "Error & Exception Exposure": "15.16%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.33%", + "Testing Exposure": "1.89%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "14.9%", + "State Flux Exposure": "17.03%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "80.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "39.5%", + "Documentation Exposure": "27.34%", "Hardcoded Payload Artifacts": "0.0%" }, "Files": { @@ -840131,9 +841500,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 5991.32, + "X": 5991.53, "Y": -237.07, - "Z": -7865.18 + "Z": -7864.54 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -840143,29 +841512,29 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 31, - "Coding LOC": 27, - "Documentation LOC": 1, - "Structural Magnitude": 15.54, + "Coding LOC": 9, + "Documentation LOC": 19, + "Structural Magnitude": 14.68, "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.185 + "Raw Cognitive Density": 0.556 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "9.46%", + "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.3%", + "Testing Exposure": "1.38%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "60.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "52.14%", + "Documentation Exposure": "32.26%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [], @@ -840179,7 +841548,7 @@ "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 5, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -840211,7 +841580,7 @@ "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 12, + "Bitwise Operations": 0, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, "Resource Deallocation & Cleanup": 0, @@ -840236,12 +841605,12 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 1, + "Core Var Decl": 0, "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 Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, "Orphaned Logic": 0, @@ -840288,9 +841657,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 6721.06, - "Y": -220.85, - "Z": -7450.33 + "X": 6720.4, + "Y": -220.86, + "Z": -7450.45 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -840300,29 +841669,29 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 31, - "Coding LOC": 27, - "Documentation LOC": 1, - "Structural Magnitude": 15.54, + "Coding LOC": 9, + "Documentation LOC": 19, + "Structural Magnitude": 14.68, "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.185 + "Raw Cognitive Density": 0.556 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "9.46%", + "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.3%", + "Testing Exposure": "1.38%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "60.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "52.14%", + "Documentation Exposure": "32.26%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [], @@ -840336,7 +841705,7 @@ "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 5, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -840368,7 +841737,7 @@ "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 12, + "Bitwise Operations": 0, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, "Resource Deallocation & Cleanup": 0, @@ -840393,12 +841762,12 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 1, + "Core Var Decl": 0, "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 Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, "Orphaned Logic": 0, @@ -840445,9 +841814,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 5658.34, - "Y": -230.95, - "Z": -7307.48 + "X": 5658.84, + "Y": -230.93, + "Z": -7307.63 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -840457,29 +841826,29 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 31, - "Coding LOC": 27, - "Documentation LOC": 1, - "Structural Magnitude": 15.54, + "Coding LOC": 9, + "Documentation LOC": 19, + "Structural Magnitude": 14.68, "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.185 + "Raw Cognitive Density": 0.556 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "9.46%", + "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.3%", + "Testing Exposure": "1.38%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "60.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "52.14%", + "Documentation Exposure": "32.26%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [], @@ -840493,7 +841862,7 @@ "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 5, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -840525,7 +841894,7 @@ "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 12, + "Bitwise Operations": 0, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, "Resource Deallocation & Cleanup": 0, @@ -840550,12 +841919,12 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 1, + "Core Var Decl": 0, "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 Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, "Orphaned Logic": 0, @@ -840602,9 +841971,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 5600.04, - "Y": -231.04, - "Z": -7705.41 + "X": 5600.37, + "Y": -231.03, + "Z": -7705.08 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -840614,21 +841983,21 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 49, - "Coding LOC": 37, - "Documentation LOC": 6, - "Structural Magnitude": 8.84, + "Coding LOC": 19, + "Documentation LOC": 24, + "Structural Magnitude": 8.48, "Control Flow Ratio": "40.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.243 + "Raw Cognitive Density": 0.474 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "11.64%", + "Cognitive Load Exposure": "24.88%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.43%", + "Testing Exposure": "2.56%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -840636,7 +842005,7 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "38.84%", + "Documentation Exposure": "34.2%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -840661,7 +842030,7 @@ "Defensive Programming Constructs": 2, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 5, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -840693,7 +842062,7 @@ "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 1, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 13, + "Bitwise Operations": 1, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, "Resource Deallocation & Cleanup": 0, @@ -840718,12 +842087,12 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 1, + "Core Var Decl": 0, "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 Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, "Orphaned Logic": 0, @@ -840772,7 +842141,7 @@ "2. Topological Coordinates": { "X": 6071.21, "Y": -193.38, - "Z": -7171.83 + "Z": -7172.05 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -840782,29 +842151,29 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 32, - "Coding LOC": 28, - "Documentation LOC": 1, - "Structural Magnitude": 15.56, + "Coding LOC": 10, + "Documentation LOC": 19, + "Structural Magnitude": 15.2, "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.179 + "Raw Cognitive Density": 0.5 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "9.23%", + "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.3%", + "Testing Exposure": "1.53%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "66.67%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "51.05%", + "Documentation Exposure": "34.65%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [], @@ -840818,7 +842187,7 @@ "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 5, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -840850,7 +842219,7 @@ "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 12, + "Bitwise Operations": 0, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, "Resource Deallocation & Cleanup": 0, @@ -840875,12 +842244,12 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 1, + "Core Var Decl": 0, "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 Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, "Orphaned Logic": 0, @@ -840927,9 +842296,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 6919.49, - "Y": -200.32, - "Z": -7591.2 + "X": 6918.43, + "Y": -200.35, + "Z": -7590.89 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -840939,29 +842308,29 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 27, - "Coding LOC": 24, - "Documentation LOC": 1, - "Structural Magnitude": 3.48, + "Coding LOC": 6, + "Documentation LOC": 19, + "Structural Magnitude": 3.12, "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.25 + "Raw Cognitive Density": 1.0 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "8.94%", + "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.38%", + "Testing Exposure": "1.07%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "40.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "52.28%", + "Documentation Exposure": "21.68%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -840986,7 +842355,7 @@ "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 5, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -841018,7 +842387,7 @@ "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 12, + "Bitwise Operations": 0, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, "Resource Deallocation & Cleanup": 0, @@ -841043,12 +842412,12 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 1, + "Core Var Decl": 0, "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 Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, "Orphaned Logic": 0, @@ -841095,9 +842464,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 6236.44, - "Y": -188.99, - "Z": -7910.75 + "X": 6236.33, + "Y": -189.0, + "Z": -7910.35 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -841107,9 +842476,9 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 96, - "Coding LOC": 92, - "Documentation LOC": 2, - "Structural Magnitude": 16.84, + "Coding LOC": 74, + "Documentation LOC": 20, + "Structural Magnitude": 16.48, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -841129,7 +842498,7 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "24.19%", + "Documentation Exposure": "20.47%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [], @@ -841143,7 +842512,7 @@ "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 5, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -841175,7 +842544,7 @@ "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 12, + "Bitwise Operations": 0, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, "Resource Deallocation & Cleanup": 0, @@ -841200,12 +842569,12 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 1, + "Core Var Decl": 0, "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 Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, "Orphaned Logic": 0, @@ -841252,9 +842621,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 5986.13, - "Y": -240.47, - "Z": -7408.38 + "X": 5986.24, + "Y": -240.46, + "Z": -7408.45 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -841264,29 +842633,29 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 130, - "Coding LOC": 113, - "Documentation LOC": 8, - "Structural Magnitude": 26.26, + "Coding LOC": 95, + "Documentation LOC": 26, + "Structural Magnitude": 25.9, "Control Flow Ratio": "24.2%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.274 + "Raw Cognitive Density": 0.326 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "12.98%", - "Error & Exception Exposure": "65.54%", + "Cognitive Load Exposure": "15.52%", + "Error & Exception Exposure": "67.78%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.3%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "74.76%", + "State Flux Exposure": "84.42%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "20.31%", + "Documentation Exposure": "17.11%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [], @@ -841300,7 +842669,7 @@ "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 6, + "I/O and Network Boundaries": 1, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 9, "Commented-out Code (Dead Logic)": 0, @@ -841332,7 +842701,7 @@ "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 22, + "Bitwise Operations": 10, "Thread Synchronization Locks": 3, "Immutable Data Declarations": 0, "Resource Deallocation & Cleanup": 0, @@ -841357,12 +842726,12 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 11, + "Core Var Decl": 10, "Design Camel Case": 0, - "Design Snake Case": 1, + "Design Snake Case": 0, "Design Pascal Case": 0, "Design Upper Case": 10, - "Design Short Vars": 1, + "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, "Orphaned Logic": 0, @@ -841409,9 +842778,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 6234.71, + "X": 6234.64, "Y": -208.54, - "Z": -7526.02 + "Z": -7525.93 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -841421,29 +842790,29 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 76, - "Coding LOC": 65, - "Documentation LOC": 4, - "Structural Magnitude": 28.3, + "Coding LOC": 47, + "Documentation LOC": 22, + "Structural Magnitude": 27.94, "Control Flow Ratio": "22.7%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.523 + "Raw Cognitive Density": 0.723 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "28.75%", - "Error & Exception Exposure": "76.22%", + "Cognitive Load Exposure": "47.34%", + "Error & Exception Exposure": "81.42%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.3%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "99.5%", + "State Flux Exposure": "99.97%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "28.56%", + "Documentation Exposure": "23.91%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [], @@ -841457,7 +842826,7 @@ "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 6, + "I/O and Network Boundaries": 1, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 12, "Commented-out Code (Dead Logic)": 0, @@ -841489,7 +842858,7 @@ "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 18, + "Bitwise Operations": 6, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, "Resource Deallocation & Cleanup": 0, @@ -841514,12 +842883,12 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 1, + "Core Var Decl": 0, "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 Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, "Orphaned Logic": 0, @@ -841566,9 +842935,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 5778.95, - "Y": -209.73, - "Z": -7606.23 + "X": 5779.19, + "Y": -209.72, + "Z": -7606.08 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -841578,18 +842947,18 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 41, - "Coding LOC": 38, - "Documentation LOC": 1, - "Structural Magnitude": 15.76, + "Coding LOC": 20, + "Documentation LOC": 19, + "Structural Magnitude": 15.4, "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.132 + "Raw Cognitive Density": 0.25 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "7.77%", + "Cognitive Load Exposure": "11.92%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.3%", @@ -841600,7 +842969,7 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "42.31%", + "Documentation Exposure": "39.16%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [], @@ -841614,7 +842983,7 @@ "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 5, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -841646,7 +843015,7 @@ "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 12, + "Bitwise Operations": 0, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, "Resource Deallocation & Cleanup": 0, @@ -841671,12 +843040,12 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 1, + "Core Var Decl": 0, "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 Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, "Orphaned Logic": 0, @@ -841723,9 +843092,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 6474.13, + "X": 6473.86, "Y": -203.73, - "Z": -7070.96 + "Z": -7071.12 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -841735,18 +843104,18 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 65, - "Coding LOC": 62, - "Documentation LOC": 1, - "Structural Magnitude": 16.24, + "Coding LOC": 44, + "Documentation LOC": 19, + "Structural Magnitude": 15.88, "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 + "Raw Cognitive Density": 0.114 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "0.0%", + "Cognitive Load Exposure": "7.27%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.3%", @@ -841757,7 +843126,7 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "30.9%", + "Documentation Exposure": "26.4%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [], @@ -841771,7 +843140,7 @@ "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 5, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -841803,7 +843172,7 @@ "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 12, + "Bitwise Operations": 0, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, "Resource Deallocation & Cleanup": 0, @@ -841828,12 +843197,12 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 1, + "Core Var Decl": 0, "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 Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, "Orphaned Logic": 0, @@ -841880,9 +843249,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 6626.74, - "Y": -223.67, - "Z": -7951.72 + "X": 6626.39, + "Y": -223.68, + "Z": -7951.46 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -841892,29 +843261,29 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 32, - "Coding LOC": 29, - "Documentation LOC": 1, - "Structural Magnitude": 15.58, + "Coding LOC": 11, + "Documentation LOC": 19, + "Structural Magnitude": 15.22, "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.172 + "Raw Cognitive Density": 0.455 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "9.03%", + "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.3%", + "Testing Exposure": "1.69%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "73.33%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "50.01%", + "Documentation Exposure": "36.89%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [], @@ -841928,7 +843297,7 @@ "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 5, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -841960,7 +843329,7 @@ "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 12, + "Bitwise Operations": 0, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, "Resource Deallocation & Cleanup": 0, @@ -841985,12 +843354,12 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 1, + "Core Var Decl": 0, "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 Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, "Orphaned Logic": 0, @@ -842037,9 +843406,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 6459.81, - "Y": -203.77, - "Z": -8176.85 + "X": 6459.59, + "Y": -203.78, + "Z": -8176.45 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -842049,29 +843418,29 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 66, - "Coding LOC": 58, - "Documentation LOC": 6, - "Structural Magnitude": 14.36, + "Coding LOC": 40, + "Documentation LOC": 24, + "Structural Magnitude": 14.0, "Control Flow Ratio": "8.7%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.224 + "Raw Cognitive Density": 0.325 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "8.63%", - "Error & Exception Exposure": "72.82%", + "Cognitive Load Exposure": "10.81%", + "Error & Exception Exposure": "78.26%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.41%", + "Testing Exposure": "2.47%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "49.22%", + "State Flux Exposure": "71.09%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "26.42%", + "Documentation Exposure": "20.99%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -842106,7 +843475,7 @@ "Defensive Programming Constructs": 1, "Type/Safety Bypasses": 2, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 5, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 3, "Commented-out Code (Dead Logic)": 0, @@ -842138,7 +843507,7 @@ "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 12, + "Bitwise Operations": 0, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, "Resource Deallocation & Cleanup": 0, @@ -842163,1576 +843532,11 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 1, - "Design Camel Case": 0, - "Design Snake Case": 1, - "Design Pascal Case": 0, - "Design Upper Case": 0, - "Design Short Vars": 1, - "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)": 0, - "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 - }, - "9. Extracted Dependencies": [] - }, - "assembly/cosmopolitan_runtime/mcount.S": { - "1. Artifact Identity": { - "Filename": "mcount.S", - "Path": "assembly/cosmopolitan_runtime/mcount.S", - "Language": "Assembly", - "Architect": "Unknown Architect", - "Indentation Style": "Tabs", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "assembly", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .s)" - }, - "2. Topological Coordinates": { - "X": 5834.81, - "Y": -185.34, - "Z": -6888.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": 27, - "Coding LOC": 24, - "Documentation LOC": 1, - "Structural Magnitude": 2.68, - "Control Flow Ratio": "100.0%", - "Popularity Rank": 0, - "Raw Churn Frequency": 0.0, - "Authorship Centralization": 0.0, - "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.25 - }, - "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "11.92%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "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": "55.67%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "5. Function Analysis": [ - { - "Function Name": "mcount", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 23, - "End Line": 26 - } - ], - "6. Contextual Mitigations & Amplifications": "None Detected", - "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 1, - "Sequential Logic Declarations": 0, - "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": 5, - "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": 12, - "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": 3, - "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": 1, - "Design Camel Case": 0, - "Design Snake Case": 1, - "Design Pascal Case": 0, - "Design Upper Case": 0, - "Design Short Vars": 1, - "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)": 0, - "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 - }, - "9. Extracted Dependencies": [] - }, - "assembly/cosmopolitan_runtime/mul4x4adx.S": { - "1. Artifact Identity": { - "Filename": "mul4x4adx.S", - "Path": "assembly/cosmopolitan_runtime/mul4x4adx.S", - "Language": "Assembly", - "Architect": "Unknown Architect", - "Indentation Style": "Tabs", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "assembly", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .s)" - }, - "2. Topological Coordinates": { - "X": 6396.72, - "Y": -205.22, - "Z": -6773.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": 222, - "Coding LOC": 218, - "Documentation LOC": 1, - "Structural Magnitude": 14.26, - "Control Flow Ratio": "1.3%", - "Popularity Rank": 0, - "Raw Churn Frequency": 0.0, - "Authorship Centralization": 0.0, - "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.028 - }, - "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "4.69%", - "Error & Exception Exposure": "0.0%", - "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": "15.59%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "5. Function Analysis": [ - { - "Function Name": "Mul4x4Adx", - "Structural Impact": 9.9, - "Lines of Code (LOC)": 93, - "Control Flow Branches": 1, - "Input Parameters": 6, - "Control Flow Ratio": "2.4%", - "Start Line": 36, - "End Line": 128 - } - ], - "6. Contextual Mitigations & Amplifications": "None Detected", - "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 1, - "Sequential Logic Declarations": 76, - "Function Parameters": 139, - "Function/Method Declarations": 1, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 1, - "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 5, - "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 0, - "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 4, - "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": 88, - "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": 16, - "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": 95, - "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": 5, - "Design Camel Case": 0, - "Design Snake Case": 1, - "Design Pascal Case": 0, - "Design Upper Case": 4, - "Design Short Vars": 5, - "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)": 0, - "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 - }, - "9. Extracted Dependencies": [] - } - } - }, - "dockerfile/moby/test_targets": { - "Directory Group Magnitude": 224.04, - "File Count": 4, - "Ecosystem Fingerprint (Archetypes)": { - "Unclassified": "100.0%" - }, - "Average Risk Exposures": { - "Cognitive Load Exposure": "24.78%", - "Error & Exception Exposure": "44.35%", - "Tech Debt Exposure": "37.26%", - "Testing Exposure": "21.87%", - "API Exposure": "0.6%", - "Concurrency Exposure": "4.79%", - "State Flux Exposure": "25.6%", - "Commented Logic Exposure": "4.19%", - "Specification Exposure": "96.67%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "29.05%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "Files": { - "dockerfile/moby/test_targets/daemon.Dockerfile": { - "1. Artifact Identity": { - "Filename": "daemon.Dockerfile", - "Path": "dockerfile/moby/test_targets/daemon.Dockerfile", - "Language": "Dockerfile", - "Architect": "Unknown Architect", - "Indentation Style": "Spaces", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "dockerfile", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .dockerfile)" - }, - "2. Topological Coordinates": { - "X": -9188.29, - "Y": -97.87, - "Z": 1626.63 - }, - "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": 624, - "Coding LOC": 477, - "Documentation LOC": 89, - "Structural Magnitude": 180.64, - "Control Flow Ratio": "78.4%", - "Popularity Rank": 0, - "Raw Churn Frequency": 0.0, - "Authorship Centralization": 0.0, - "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.813 - }, - "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "52.77%", - "Error & Exception Exposure": "55.63%", - "Tech Debt Exposure": "49.08%", - "Testing Exposure": "80.0%", - "API Exposure": "0.0%", - "Concurrency Exposure": "19.14%", - "State Flux Exposure": "29.23%", - "Commented Logic Exposure": "6.23%", - "Specification Exposure": "100.0%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "11.92%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "5. Function Analysis": [ - { - "Function Name": "RUN", - "Structural Impact": 8.9, - "Lines of Code (LOC)": 38, - "Control Flow Branches": 6, - "Input Parameters": 0, - "Control Flow Ratio": "85.7%", - "Start Line": 559, - "End Line": 596 - }, - { - "Function Name": "RUN", - "Structural Impact": 8.0, - "Lines of Code (LOC)": 20, - "Control Flow Branches": 6, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 163, - "End Line": 182 - }, - { - "Function Name": "RUN", - "Structural Impact": 7.2, - "Lines of Code (LOC)": 24, - "Control Flow Branches": 5, - "Input Parameters": 0, - "Control Flow Ratio": "83.3%", - "Start Line": 354, - "End Line": 377 - }, - { - "Function Name": "RUN", - "Structural Impact": 5.9, - "Lines of Code (LOC)": 18, - "Control Flow Branches": 4, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 322, - "End Line": 339 - }, - { - "Function Name": "RUN", - "Structural Impact": 5.5, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 4, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 75, - "End Line": 84 - }, - { - "Function Name": "RUN", - "Structural Impact": 4.8, - "Lines of Code (LOC)": 17, - "Control Flow Branches": 3, - "Input Parameters": 0, - "Control Flow Ratio": "75.0%", - "Start Line": 256, - "End Line": 272 - }, - { - "Function Name": "RUN", - "Structural Impact": 4.7, - "Lines of Code (LOC)": 13, - "Control Flow Branches": 3, - "Input Parameters": 0, - "Control Flow Ratio": "75.0%", - "Start Line": 214, - "End Line": 226 - }, - { - "Function Name": "RUN", - "Structural Impact": 3.5, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 2, - "Input Parameters": 0, - "Control Flow Ratio": "66.7%", - "Start Line": 227, - "End Line": 236 - }, - { - "Function Name": "RUN", - "Structural Impact": 3.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 2, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 553, - "End Line": 558 - }, - { - "Function Name": "RUN", - "Structural Impact": 3.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 2, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 461, - "End Line": 463 - }, - { - "Function Name": "RUN", - "Structural Impact": 3.0, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 2, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 68, - "End Line": 68 - }, - { - "Function Name": "RUN", - "Structural Impact": 3.0, - "Lines of Code (LOC)": 48, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 390, - "End Line": 437 - }, - { - "Function Name": "RUN", - "Structural Impact": 3.0, - "Lines of Code (LOC)": 33, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 474, - "End Line": 506 - }, - { - "Function Name": "RUN", - "Structural Impact": 2.8, - "Lines of Code (LOC)": 16, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "50.0%", - "Start Line": 507, - "End Line": 522 - }, - { - "Function Name": "RUN", - "Structural Impact": 2.7, - "Lines of Code (LOC)": 14, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 340, - "End Line": 353 - }, - { - "Function Name": "RUN", - "Structural Impact": 2.5, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 91, - "End Line": 100 - }, - { - "Function Name": "RUN", - "Structural Impact": 2.5, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "50.0%", - "Start Line": 204, - "End Line": 213 - }, - { - "Function Name": "RUN", - "Structural Impact": 2.4, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "50.0%", - "Start Line": 138, - "End Line": 145 - }, - { - "Function Name": "RUN", - "Structural Impact": 2.4, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 183, - "End Line": 190 - }, - { - "Function Name": "RUN", - "Structural Impact": 2.4, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 191, - "End Line": 197 - }, - { - "Function Name": "RUN", - "Structural Impact": 2.4, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 248, - "End Line": 255 - }, - { - "Function Name": "RUN", - "Structural Impact": 2.4, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 315, - "End Line": 321 - }, - { - "Function Name": "RUN", - "Structural Impact": 2.4, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 442, - "End Line": 448 - }, - { - "Function Name": "RUN", - "Structural Impact": 2.4, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 523, - "End Line": 530 - }, - { - "Function Name": "RUN", - "Structural Impact": 2.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 85, - "End Line": 90 - }, - { - "Function Name": "RUN", - "Structural Impact": 2.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 113, - "End Line": 118 - }, - { - "Function Name": "RUN", - "Structural Impact": 2.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 146, - "End Line": 151 - }, - { - "Function Name": "RUN", - "Structural Impact": 2.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 157, - "End Line": 162 - }, - { - "Function Name": "RUN", - "Structural Impact": 2.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 198, - "End Line": 203 - }, - { - "Function Name": "RUN", - "Structural Impact": 2.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 237, - "End Line": 242 - }, - { - "Function Name": "RUN", - "Structural Impact": 2.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 454, - "End Line": 459 - }, - { - "Function Name": "RUN", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 70, - "End Line": 74 - }, - { - "Function Name": "RUN", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "50.0%", - "Start Line": 119, - "End Line": 123 - }, - { - "Function Name": "RUN", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "50.0%", - "Start Line": 152, - "End Line": 156 - }, - { - "Function Name": "RUN", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "50.0%", - "Start Line": 243, - "End Line": 247 - }, - { - "Function Name": "RUN", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 273, - "End Line": 276 - }, - { - "Function Name": "RUN", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "50.0%", - "Start Line": 277, - "End Line": 280 - }, - { - "Function Name": "RUN", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 281, - "End Line": 284 - }, - { - "Function Name": "RUN", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "50.0%", - "Start Line": 310, - "End Line": 314 - }, - { - "Function Name": "RUN", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "50.0%", - "Start Line": 380, - "End Line": 384 - }, - { - "Function Name": "RUN", - "Structural Impact": 2.1, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 308, - "End Line": 309 - }, - { - "Function Name": "RUN", - "Structural Impact": 2.1, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 378, - "End Line": 379 - }, - { - "Function Name": "RUN", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 17, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 291, - "End Line": 307 - }, - { - "Function Name": "RUN", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 101, - "End Line": 112 - }, - { - "Function Name": "RUN", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 14, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 124, - "End Line": 137 - }, - { - "Function Name": "RUN", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 22, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 531, - "End Line": 552 - }, - { - "Function Name": "RUN", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 27, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 597, - "End Line": 623 - }, - { - "Function Name": "RUN", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 57, - "End Line": 63 - }, - { - "Function Name": "RUN", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 285, - "End Line": 290 - }, - { - "Function Name": "RUN", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 385, - "End Line": 389 - }, - { - "Function Name": "ENTRYPOINT", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 449, - "End Line": 453 - }, - { - "Function Name": "RUN", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 69, - "End Line": 69 - }, - { - "Function Name": "ENTRYPOINT", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 439, - "End Line": 441 - }, - { - "Function Name": "RUN", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 460, - "End Line": 460 - }, - { - "Function Name": "RUN", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 465, - "End Line": 465 - }, - { - "Function Name": "RUN", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 467, - "End Line": 467 - }, - { - "Function Name": "RUN", - "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": "RUN", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 471, - "End Line": 471 - } - ], - "6. Contextual Mitigations & Amplifications": "None Detected", - "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 69, - "Sequential Logic Declarations": 19, - "Function Parameters": 60, - "Function/Method Declarations": 58, - "Class/Entity Declarations": 69, - "Defensive Programming Constructs": 7, - "Type/Safety Bypasses": 3, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 74, - "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 18, - "Commented-out Code (Dead Logic)": 2, - "Structured Documentation Blocks": 5, - "Unit Test Assertions": 0, - "Asynchronous/Concurrent Execution": 1, - "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 0, - "Global State Dependencies": 7, - "Decorators and Annotations": 0, - "Generic Type Abstractions": 0, - "Collection Iterators / Comprehensions": 0, - "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 55, - "Module Dependencies (Imports)": 105, - "Authorship Metadata": 0, - "Planned Work (TODOs)": 0, - "Acknowledged Tech Debt (FIXMEs)": 7, - "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": 22, - "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 1, - "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 0, - "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 7, - "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 69, - "Event Listeners & Subscribers": 0, - "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, - "Structural Space Indentations": 210, - "Hardware Bridge": 0, - "Cryptography": 0, - "Auth Middleware": 0, - "Ipc Rpc Bridges": 4, - "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": 54, - "Design Camel Case": 0, - "Design Snake Case": 1, - "Design Pascal Case": 0, - "Design Upper Case": 53, - "Design Short Vars": 3, - "Design Long Vars": 2, - "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": 1, - "Dynamic Code Execution (Eval/Exec)": 0, - "Global Environment Mutation": 0, - "Commented-Out Executable Logic": 2, - "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)": 54, - "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 35, - "Total Downstream (Absolute Dependency Blast Radius)": 0 - }, - "9. Extracted Dependencies": [ - "--platform", - "all", - "base", - "binary-dummy", - "build", - "build-dummy", - "buildx", - "busybox", - "compose", - "containerd", - "containerd-", - "containerd-build", - "containerutil", - "containerutil-", - "containerutil-build", - "containerutil-windows-", - "crun", - "debian:", - "delve", - "delve-", - "dev-base", - "dev-firewalld-", - "dev-systemd-", - "dev-systemd-false", - "dev-systemd-true", - "distribution/distribution:", - "docker/buildx-bin:", - "docker/compose-bin:", - "docker:dind", - "dockercli", - "dockercli-integration", - "frozen-images", - "golangci_lint", - "gopls", - "gotestsum", - "gowinres", - "moby/vpnkit-bin:", - "registry", - "rootlesskit", - "rootlesskit-", - "rootlesskit-build", - "runc", - "runc-", - "runc-build", - "scratch", - "shfmt", - "tini", - "tini-", - "tini-build", - "tonistiigi/xx:", - "vpnkit", - "vpnkit-", - "vpnkit-linux-", - "xx" - ] - }, - "dockerfile/moby/test_targets/generate-files.Dockerfile": { - "1. Artifact Identity": { - "Filename": "generate-files.Dockerfile", - "Path": "dockerfile/moby/test_targets/generate-files.Dockerfile", - "Language": "Dockerfile", - "Architect": "Unknown Architect", - "Indentation Style": "Spaces", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "dockerfile", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .dockerfile)" - }, - "2. Topological Coordinates": { - "X": -9452.6, - "Y": -0.84, - "Z": 1889.56 - }, - "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": 75, - "Coding LOC": 65, - "Documentation LOC": 2, - "Structural Magnitude": 18.2, - "Control Flow Ratio": "71.4%", - "Popularity Rank": 0, - "Raw Churn Frequency": 0.0, - "Authorship Centralization": 0.0, - "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.592 - }, - "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "34.73%", - "Error & Exception Exposure": "63.92%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.42%", - "API Exposure": "0.0%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "58.94%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "29.52%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "5. Function Analysis": [ - { - "Function Name": "RUN", - "Structural Impact": 4.6, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 3, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 61, - "End Line": 72 - }, - { - "Function Name": "RUN", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 9, - "End Line": 13 - }, - { - "Function Name": "RUN", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 11, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 14, - "End Line": 24 - }, - { - "Function Name": "RUN", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 25, - "End Line": 34 - }, - { - "Function Name": "RUN", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 15, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 35, - "End Line": 49 - }, - { - "Function Name": "RUN", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 11, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 50, - "End Line": 60 - } - ], - "6. Contextual Mitigations & Amplifications": "None Detected", - "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 5, - "Sequential Logic Declarations": 2, - "Function Parameters": 6, - "Function/Method Declarations": 6, - "Class/Entity Declarations": 6, - "Defensive Programming Constructs": 2, - "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 8, - "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 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": 2, - "Decorators and Annotations": 0, - "Generic Type Abstractions": 0, - "Collection Iterators / Comprehensions": 0, - "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 2, - "Module Dependencies (Imports)": 7, - "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": 3, - "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 1, - "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 0, - "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 6, - "Event Listeners & Subscribers": 0, - "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, - "Structural Space Indentations": 36, - "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": 7, - "Design Camel Case": 0, - "Design Snake Case": 2, - "Design Pascal Case": 0, - "Design Upper Case": 5, - "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)": 5, - "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 1, - "Total Downstream (Absolute Dependency Blast Radius)": 0 - }, - "9. Extracted Dependencies": [ - "base", - "generated", - "golang:", - "scratch", - "tools" - ] - }, - "dockerfile/moby/test_targets/syscall.Dockerfile": { - "1. Artifact Identity": { - "Filename": "syscall.Dockerfile", - "Path": "dockerfile/moby/test_targets/syscall.Dockerfile", - "Language": "Dockerfile", - "Architect": "Unknown Architect", - "Indentation Style": "Tabs", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "dockerfile", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .dockerfile)" - }, - "2. Topological Coordinates": { - "X": -9162.92, - "Y": -170.42, - "Z": 1318.68 - }, - "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": 21, - "Coding LOC": 13, - "Documentation LOC": 1, - "Structural Magnitude": 12.76, - "Control Flow Ratio": "90.0%", - "Popularity Rank": 0, - "Raw Churn Frequency": 0.0, - "Authorship Centralization": 0.0, - "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.077 - }, - "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.0%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.72%", - "API Exposure": "0.0%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "86.67%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "62.85%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "5. Function Analysis": [ - { - "Function Name": "RUN", - "Structural Impact": 7.3, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 6, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 12, - "End Line": 18 - }, - { - "Function Name": "RUN", - "Structural Impact": 3.0, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 2, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 20, - "End Line": 20 - }, - { - "Function Name": "RUN", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "50.0%", - "Start Line": 6, - "End Line": 10 - } - ], - "6. Contextual Mitigations & Amplifications": "None Detected", - "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 9, - "Sequential Logic Declarations": 1, - "Function Parameters": 1, - "Function/Method Declarations": 3, - "Class/Entity Declarations": 1, - "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 0, - "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, - "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": 1, - "Structural Tab Indentations": 6, - "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": 1, + "Core Var Decl": 0, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 1, + "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, @@ -843760,31 +843564,29 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 1, + "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": [ - "debian:" - ] + "9. Extracted Dependencies": [] }, - "dockerfile/moby/test_targets/windows.Dockerfile": { + "assembly/cosmopolitan_runtime/mcount.S": { "1. Artifact Identity": { - "Filename": "windows.Dockerfile", - "Path": "dockerfile/moby/test_targets/windows.Dockerfile", - "Language": "Dockerfile", + "Filename": "mcount.S", + "Path": "assembly/cosmopolitan_runtime/mcount.S", + "Language": "Assembly", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Tabs", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "dockerfile", + "Folder Dominant Lang": "assembly", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .dockerfile)" + "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -8945.82, - "Y": -79.86, - "Z": 2057.6 + "X": 5835.48, + "Y": -185.31, + "Z": -6888.97 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -843793,94 +843595,64 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 314, - "Coding LOC": 132, - "Documentation LOC": 146, - "Structural Magnitude": 12.44, - "Control Flow Ratio": "80.0%", + "Total LOC": 27, + "Coding LOC": 6, + "Documentation LOC": 19, + "Structural Magnitude": 2.32, + "Control Flow Ratio": "100.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.114 + "Raw Cognitive Density": 1.0 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "6.61%", - "Error & Exception Exposure": "57.84%", - "Tech Debt Exposure": "99.96%", - "Testing Exposure": "2.34%", - "API Exposure": "2.41%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "1.02%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "14.22%", - "Commented Logic Exposure": "10.53%", - "Specification Exposure": "100.0%", + "State Flux Exposure": "0.0%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "40.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "11.92%", + "Documentation Exposure": "23.94%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "RUN", - "Structural Impact": 2.6, - "Lines of Code (LOC)": 13, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 278, - "End Line": 290 - }, - { - "Function Name": "RUN", - "Structural Impact": 2.6, - "Lines of Code (LOC)": 13, + "Function Name": "mcount", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 4, "Control Flow Branches": 1, "Input Parameters": 0, "Control Flow Ratio": "100.0%", - "Start Line": 292, - "End Line": 304 - }, - { - "Function Name": "ENTRYPOINT", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 307, - "End Line": 313 - }, - { - "Function Name": "RUN", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 189, - "End Line": 192 + "Start Line": 23, + "End Line": 26 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 8, - "Sequential Logic Declarations": 2, - "Function Parameters": 6, - "Function/Method Declarations": 4, - "Class/Entity Declarations": 1, + "Control Flow Branches": 1, + "Sequential Logic Declarations": 0, + "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": 1, - "Exposed API / Public Exports": 1, - "State Mutations / Variable Reassignments": 1, - "Commented-out Code (Dead Logic)": 3, - "Structured Documentation Blocks": 2, + "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": 1, + "Global State Dependencies": 0, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -843888,8 +843660,8 @@ "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, - "Planned Work (TODOs)": 1, - "Acknowledged Tech Debt (FIXMEs)": 8, + "Planned Work (TODOs)": 0, + "Acknowledged Tech Debt (FIXMEs)": 0, "Specification Traceability Tags": 0, "Server-Side Rendering Contexts": 0, "Event Publishers / Emitters": 0, @@ -843910,12 +843682,12 @@ "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, - "Structural Space Indentations": 117, + "Structural Tab Indentations": 3, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, - "Ipc Rpc Bridges": 1, + "Ipc Rpc Bridges": 0, "Feature Flags": 0, "Serialization Parsing": 0, "Regex Execution": 0, @@ -843928,11 +843700,11 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 14, + "Core Var Decl": 0, "Design Camel Case": 0, "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 14, + "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, @@ -843966,6 +843738,174 @@ "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [] + }, + "assembly/cosmopolitan_runtime/mul4x4adx.S": { + "1. Artifact Identity": { + "Filename": "mul4x4adx.S", + "Path": "assembly/cosmopolitan_runtime/mul4x4adx.S", + "Language": "Assembly", + "Architect": "Unknown Architect", + "Indentation Style": "Tabs", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "assembly", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .s)" + }, + "2. Topological Coordinates": { + "X": 6396.54, + "Y": -205.22, + "Z": -6773.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": 222, + "Coding LOC": 200, + "Documentation LOC": 19, + "Structural Magnitude": 13.9, + "Control Flow Ratio": "1.3%", + "Popularity Rank": 0, + "Raw Churn Frequency": 0.0, + "Authorship Centralization": 0.0, + "Ownership Entropy": 0.0, + "Raw Cognitive Density": 0.03 + }, + "4. Vulnerability & Risk Exposures": { + "Cognitive Load Exposure": "4.68%", + "Error & Exception Exposure": "0.0%", + "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": "13.88%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "5. Function Analysis": [ + { + "Function Name": "Mul4x4Adx", + "Structural Impact": 9.9, + "Lines of Code (LOC)": 93, + "Control Flow Branches": 1, + "Input Parameters": 6, + "Control Flow Ratio": "2.4%", + "Start Line": 36, + "End Line": 128 + } + ], + "6. Contextual Mitigations & Amplifications": "None Detected", + "7. Structural Signatures (Net Mitigated Signals)": { + "Control Flow Branches": 1, + "Sequential Logic Declarations": 76, + "Function Parameters": 139, + "Function/Method Declarations": 1, + "Class/Entity Declarations": 0, + "Defensive Programming Constructs": 1, + "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": 4, + "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": 88, + "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": 4, + "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": 95, + "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": 4, + "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)": 0, + "Direct Downstream (Dependency Blast Radius)": 0, + "Total Upstream (Absolute Fragility)": 0, + "Total Downstream (Absolute Dependency Blast Radius)": 0 + }, + "9. Extracted Dependencies": [] } } }, @@ -874530,9 +874470,9 @@ "Identity Proof": "Single Indicator (Ext: .xml)" }, "2. Topological Coordinates": { - "X": 6612.97, + "X": 6612.8, "Y": 112.82, - "Z": -9071.03 + "Z": -9070.81 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -874687,9 +874627,9 @@ "Identity Proof": "Single Indicator (Ext: .xml)" }, "2. Topological Coordinates": { - "X": 6830.97, + "X": 6830.81, "Y": 160.61, - "Z": -8414.53 + "Z": -8414.31 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -874844,9 +874784,9 @@ "Identity Proof": "Single Indicator (Ext: .xml)" }, "2. Topological Coordinates": { - "X": 6132.08, + "X": 6131.91, "Y": 252.1, - "Z": -8734.63 + "Z": -8734.41 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -875001,9 +874941,9 @@ "Identity Proof": "Single Indicator (Ext: .cls)" }, "2. Topological Coordinates": { - "X": 6533.48, + "X": 6533.32, "Y": 135.41, - "Z": -8737.51 + "Z": -8737.29 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -875309,9 +875249,9 @@ "Identity Proof": "Single Indicator (Ext: .cls)" }, "2. Topological Coordinates": { - "X": 6915.39, + "X": 6915.22, "Y": 94.78, - "Z": -8963.89 + "Z": -8963.67 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -875497,9 +875437,9 @@ "Identity Proof": "Single Indicator (Ext: .cls)" }, "2. Topological Coordinates": { - "X": 6291.38, + "X": 6291.21, "Y": 231.79, - "Z": -8578.39 + "Z": -8578.17 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -876903,9 +876843,9 @@ "Identity Proof": "Single Indicator (Ext: .blp)" }, "2. Topological Coordinates": { - "X": -2658.55, + "X": -2658.51, "Y": 229.77, - "Z": -7977.36 + "Z": -7977.23 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -877060,9 +877000,9 @@ "Identity Proof": "Single Indicator (Ext: .blp)" }, "2. Topological Coordinates": { - "X": -2388.84, + "X": -2388.8, "Y": 150.65, - "Z": -8537.46 + "Z": -8537.33 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -877217,9 +877157,9 @@ "Identity Proof": "Single Indicator (Ext: .blp)" }, "2. Topological Coordinates": { - "X": -2921.02, + "X": -2920.98, "Y": 150.33, - "Z": -8365.48 + "Z": -8365.35 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -877374,9 +877314,9 @@ "Identity Proof": "Single Indicator (Ext: .blp)" }, "2. Topological Coordinates": { - "X": -2177.67, + "X": -2177.64, "Y": 218.44, - "Z": -7770.98 + "Z": -7770.85 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -877531,9 +877471,9 @@ "Identity Proof": "Single Indicator (Ext: .blp)" }, "2. Topological Coordinates": { - "X": -2489.32, + "X": -2489.28, "Y": 184.72, - "Z": -8188.96 + "Z": -8188.84 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -877713,9 +877653,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": 7937.28, + "X": 7936.67, "Y": -134.08, - "Z": -3955.0 + "Z": -3954.73 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -877870,9 +877810,9 @@ "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": 8195.67, + "X": 8195.06, "Y": -104.77, - "Z": -3566.11 + "Z": -3565.83 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -878108,9 +878048,9 @@ "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": 8378.68, + "X": 8378.07, "Y": -2.09, - "Z": -4239.61 + "Z": -4239.33 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -878346,9 +878286,9 @@ "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": 8360.15, + "X": 8359.54, "Y": -23.79, - "Z": -3745.62 + "Z": -3745.35 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -878654,9 +878594,9 @@ "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": 8665.16, + "X": 8664.54, "Y": -34.68, - "Z": -3579.03 + "Z": -3578.75 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -878916,9 +878856,9 @@ "Identity Proof": "Single Indicator (Ext: .cbl)" }, "2. Topological Coordinates": { - "X": -3498.57, + "X": -3498.52, "Y": -20.36, - "Z": -7729.84 + "Z": -7729.72 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -879104,9 +879044,9 @@ "Identity Proof": "Single Indicator (Ext: .cbl)" }, "2. Topological Coordinates": { - "X": -3283.97, + "X": -3283.92, "Y": 5.06, - "Z": -7692.56 + "Z": -7692.44 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -879317,9 +879257,9 @@ "Identity Proof": "Prose Extension (.txt)" }, "2. Topological Coordinates": { - "X": 177.73, + "X": 177.74, "Y": -187.35, - "Z": -8875.47 + "Z": -8875.16 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -879474,9 +879414,9 @@ "Identity Proof": "Single Indicator (Ext: .gradle)" }, "2. Topological Coordinates": { - "X": -364.43, + "X": -364.42, "Y": -41.9, - "Z": -8196.16 + "Z": -8195.86 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -879631,9 +879571,9 @@ "Identity Proof": "Single Indicator (Ext: .gradle)" }, "2. Topological Coordinates": { - "X": -421.15, + "X": -421.14, "Y": -163.63, - "Z": -9130.96 + "Z": -9130.65 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -879799,9 +879739,9 @@ "Identity Proof": "Single Indicator (Ext: .gradle)" }, "2. Topological Coordinates": { - "X": -203.33, + "X": -203.32, "Y": -73.53, - "Z": -8494.6 + "Z": -8494.3 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -879958,7 +879898,7 @@ "2. Topological Coordinates": { "X": -302.62, "Y": -26.18, - "Z": -8180.32 + "Z": -8180.01 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -880124,9 +880064,9 @@ "Identity Proof": "Single Indicator (Ext: .gradle)" }, "2. Topological Coordinates": { - "X": -165.4, + "X": -165.39, "Y": -160.27, - "Z": -8885.15 + "Z": -8884.84 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -880283,7 +880223,7 @@ "2. Topological Coordinates": { "X": 43.36, "Y": -67.39, - "Z": -8209.27 + "Z": -8208.96 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -880438,9 +880378,9 @@ "Identity Proof": "Single Indicator (Ext: .gradle)" }, "2. Topological Coordinates": { - "X": -615.8, + "X": -615.79, "Y": -50.31, - "Z": -8622.27 + "Z": -8621.97 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -887901,9 +887841,9 @@ "Identity Proof": "Single Indicator (Ext: .hlo)" }, "2. Topological Coordinates": { - "X": 7469.11, + "X": 7468.9, "Y": -115.43, - "Z": -8880.76 + "Z": -8880.52 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -888058,9 +887998,9 @@ "Identity Proof": "Single Indicator (Ext: .hlo)" }, "2. Topological Coordinates": { - "X": 7481.77, + "X": 7481.56, "Y": -71.41, - "Z": -8734.52 + "Z": -8734.28 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -888215,9 +888155,9 @@ "Identity Proof": "Single Indicator (Ext: .hlo)" }, "2. Topological Coordinates": { - "X": 7245.18, + "X": 7244.97, "Y": -21.96, - "Z": -8558.61 + "Z": -8558.36 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -888734,9 +888674,9 @@ "Identity Proof": "Single Indicator (Ext: .nix)" }, "2. Topological Coordinates": { - "X": -2125.32, + "X": -2125.26, "Y": 96.0, - "Z": -9095.43 + "Z": -9095.16 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -888891,9 +888831,9 @@ "Identity Proof": "Single Indicator (Ext: .nix)" }, "2. Topological Coordinates": { - "X": -2342.45, + "X": -2342.39, "Y": 86.12, - "Z": -8858.52 + "Z": -8858.25 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -889567,9 +889507,9 @@ "Identity Proof": "Single Indicator (Ext: .xml)" }, "2. Topological Coordinates": { - "X": 7122.77, + "X": 7122.14, "Y": -147.44, - "Z": -5765.81 + "Z": -5765.29 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -889724,9 +889664,9 @@ "Identity Proof": "Single Indicator (Ext: .xml)" }, "2. Topological Coordinates": { - "X": 6849.7, + "X": 6849.07, "Y": -198.73, - "Z": -5835.35 + "Z": -5834.83 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -889881,9 +889821,9 @@ "Identity Proof": "Single Indicator (Ext: .xml)" }, "2. Topological Coordinates": { - "X": 7090.93, + "X": 7090.3, "Y": -172.08, - "Z": -6201.14 + "Z": -6200.62 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -890738,9 +890678,9 @@ "Identity Proof": "Single Indicator (Ext: .yml)" }, "2. Topological Coordinates": { - "X": -773.43, + "X": -773.41, "Y": 92.28, - "Z": -9095.04 + "Z": -9094.74 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -890895,9 +890835,9 @@ "Identity Proof": "Single Indicator (Ext: .yml)" }, "2. Topological Coordinates": { - "X": -554.25, + "X": -554.24, "Y": 141.88, - "Z": -9443.53 + "Z": -9443.23 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -894725,9 +894665,9 @@ "Identity Proof": "Single Indicator (Ext: .go)" }, "2. Topological Coordinates": { - "X": 6435.1, + "X": 6434.95, "Y": 147.19, - "Z": -9410.36 + "Z": -9410.15 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -897392,9 +897332,9 @@ "Identity Proof": "Single Indicator (Ext: .proto)" }, "2. Topological Coordinates": { - "X": 8016.39, + "X": 8016.16, "Y": -23.25, - "Z": -8121.31 + "Z": -8121.07 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -898611,9 +898551,9 @@ "Identity Proof": "Single Indicator (Ext: .yml)" }, "2. Topological Coordinates": { - "X": 7766.22, + "X": 7765.65, "Y": 95.21, - "Z": -5476.23 + "Z": -5475.82 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -899713,9 +899653,9 @@ "Identity Proof": "Metadata Anchor (COPYING)" }, "2. Topological Coordinates": { - "X": 6102.35, + "X": 6101.71, "Y": 98.47, - "Z": -5692.95 + "Z": -5692.35 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -899870,9 +899810,9 @@ "Identity Proof": "Single Indicator (Ext: .css)" }, "2. Topological Coordinates": { - "X": 6500.55, + "X": 6499.91, "Y": 101.11, - "Z": -5985.77 + "Z": -5985.17 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -900038,9 +899978,9 @@ "Identity Proof": "Single Indicator (Ext: .css)" }, "2. Topological Coordinates": { - "X": 5710.85, + "X": 5710.22, "Y": 78.48, - "Z": -5683.96 + "Z": -5683.37 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -900195,9 +900135,9 @@ "Identity Proof": "Single Indicator (Ext: .css)" }, "2. Topological Coordinates": { - "X": 5954.34, + "X": 5953.71, "Y": 122.85, - "Z": -5417.53 + "Z": -5416.94 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -900352,9 +900292,9 @@ "Identity Proof": "Single Indicator (Ext: .css)" }, "2. Topological Coordinates": { - "X": 6355.9, + "X": 6355.26, "Y": 68.89, - "Z": -5448.87 + "Z": -5448.27 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -900509,9 +900449,9 @@ "Identity Proof": "Single Indicator (Ext: .css)" }, "2. Topological Coordinates": { - "X": 6130.34, + "X": 6129.7, "Y": 61.87, - "Z": -6012.47 + "Z": -6011.87 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -901067,7 +901007,7 @@ "Cognitive Load Exposure": "39.35%", "Error & Exception Exposure": "85.2%", "Tech Debt Exposure": "100.0%", - "Testing Exposure": "2.35%", + "Testing Exposure": "2.34%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "99.96%", @@ -902224,9 +902164,9 @@ "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": 2663.98, + "X": 2663.74, "Y": 288.93, - "Z": -9994.9 + "Z": -9994.05 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -902392,9 +902332,9 @@ "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": 2890.64, + "X": 2890.4, "Y": 208.99, - "Z": -10257.63 + "Z": -10256.77 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -903609,9 +903549,9 @@ "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": 8623.01, + "X": 8622.44, "Y": 104.77, - "Z": -4341.21 + "Z": -4340.93 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -904183,9 +904123,9 @@ "Identity Proof": "Prose Extension (.txt)" }, "2. Topological Coordinates": { - "X": -3001.27, + "X": -3001.23, "Y": 56.28, - "Z": -8573.98 + "Z": -8573.86 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -905982,9 +905922,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": -1605.42, + "X": -1605.39, "Y": 51.68, - "Z": -9507.4 + "Z": -9507.18 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -906708,7 +906648,7 @@ "2. Topological Coordinates": { "X": -21.85, "Y": -201.21, - "Z": -9698.96 + "Z": -9698.73 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -910004,9 +909944,9 @@ "Identity Proof": "Prose Extension (.txt)" }, "2. Topological Coordinates": { - "X": -1173.25, + "X": -1173.22, "Y": -222.59, - "Z": -9046.87 + "Z": -9046.63 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -910161,9 +910101,9 @@ "Identity Proof": "Single Indicator (Ext: .html)" }, "2. Topological Coordinates": { - "X": -896.69, + "X": -896.66, "Y": -176.94, - "Z": -8684.28 + "Z": -8684.04 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -910329,9 +910269,9 @@ "Identity Proof": "Single Indicator (Ext: .html)" }, "2. Topological Coordinates": { - "X": -1334.97, + "X": -1334.93, "Y": -189.39, - "Z": -8786.26 + "Z": -8786.02 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -910493,9 +910433,9 @@ "Identity Proof": "Single Indicator (Ext: .html)" }, "2. Topological Coordinates": { - "X": -1556.42, + "X": -1556.39, "Y": -224.2, - "Z": -9123.47 + "Z": -9123.23 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -910661,9 +910601,9 @@ "Identity Proof": "Single Indicator (Ext: .html)" }, "2. Topological Coordinates": { - "X": -1134.37, + "X": -1134.34, "Y": -268.52, - "Z": -9187.78 + "Z": -9187.54 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -911935,9 +911875,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": 3525.26, + "X": 3524.95, "Y": -80.09, - "Z": -10040.09 + "Z": -10039.22 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -913383,9 +913323,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": 7151.32, + "X": 7151.15, "Y": -122.51, - "Z": -8944.83 + "Z": -8944.62 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -914107,9 +914047,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": 6755.98, + "X": 6755.33, "Y": 63.32, - "Z": -6006.39 + "Z": -6005.81 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -914831,9 +914771,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": 8228.96, + "X": 8228.34, "Y": 22.26, - "Z": -5146.39 + "Z": -5145.99 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -915555,9 +915495,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": 9054.33, + "X": 9053.71, "Y": 157.37, - "Z": -3730.91 + "Z": -3730.65 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -916098,9 +916038,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": -2452.82, + "X": -2452.78, "Y": -39.53, - "Z": -8722.71 + "Z": -8722.59 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -916822,9 +916762,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": -1007.13, + "X": -1007.11, "Y": -133.53, - "Z": -9539.0 + "Z": -9538.76 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -917546,9 +917486,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": 614.45, + "X": 614.43, "Y": -52.05, - "Z": -9641.38 + "Z": -9641.13 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -918994,9 +918934,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": 4388.33, + "X": 4387.96, "Y": 27.26, - "Z": -10357.95 + "Z": -10357.06 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -920442,9 +920382,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": 7998.11, + "X": 7997.89, "Y": -156.25, - "Z": -8805.4 + "Z": -8805.16 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -920985,9 +920925,9 @@ "Identity Proof": "Single Indicator (Exact Match)" }, "2. Topological Coordinates": { - "X": 7639.32, + "X": 7638.69, "Y": 141.51, - "Z": -5896.63 + "Z": -5896.13 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation",