-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1385 lines (1313 loc) · 115 KB
/
Copy pathindex.html
File metadata and controls
1385 lines (1313 loc) · 115 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<link rel="icon" type="image/svg+xml" href="./favicon.svg">
<script>
window.onerror = function(msg, url, line, col, error) {
const errDiv = document.createElement('div');
errDiv.style.cssText = 'position:fixed;top:0;left:0;width:100%;background:#ef4444;color:#fff;padding:12px;z-index:99999;font-family:monospace;font-size:12px;box-shadow:0 2px 10px rgba(0,0,0,0.5);text-align:left;';
errDiv.innerHTML = '<strong>JS ERROR:</strong> ' + msg + '<br><small>at ' + url + ':' + line + ':' + col + '</small>';
(document.body || document.documentElement).appendChild(errDiv);
};
</script>
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Flamehaven — Verification Ledger</title>
<meta name="description" content="Public, reproducible ledger of AI-safety audits, mathematical physics verification runs (EQA), biomolecular AI pipeline governance (BAV), and bioscience repository compliance audits (BSC) by Flamehaven Labs. Every result is deterministic, locally executed, and fully inspectable.">
<meta name="keywords" content="AI verification, AI safety, reproducibility, physics verification, bioscience compliance, biomolecular AI, Flamehaven, EQA, BAV, BSC, Leiden Declaration">
<meta name="author" content="Flamehaven Labs">
<link rel="canonical" href="https://flamehaven01.github.io/Flamehaven-Verification-Ledger/">
<!-- Open Graph -->
<meta property="og:type" content="website">
<meta property="og:title" content="Flamehaven — Verification Ledger">
<meta property="og:description" content="Public, reproducible ledger of AI-safety audits, physics verification runs, and bioscience compliance audits. Every result is deterministic, locally executed, and fully inspectable.">
<meta property="og:url" content="https://flamehaven01.github.io/Flamehaven-Verification-Ledger/">
<meta property="og:site_name" content="Flamehaven Verification Ledger">
<meta property="og:image" content="https://flamehaven01.github.io/Flamehaven-Verification-Ledger/logo.png">
<!-- Twitter Card -->
<meta name="twitter:card" content="summary">
<meta name="twitter:title" content="Flamehaven — Verification Ledger">
<meta name="twitter:description" content="Public, reproducible ledger of AI-safety audits, physics verification runs, and bioscience compliance audits.">
<meta name="twitter:image" content="https://flamehaven01.github.io/Flamehaven-Verification-Ledger/logo.png">
<!-- Machine-readable provenance (schema.org Dataset) for indexing / citation -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Dataset",
"name": "Flamehaven Verification Ledger",
"description": "Public, transparent, reproducible ledger of AI-safety audits, mathematical and physical verification runs (EQA), biomolecular AI pipeline-governance validations (BAV), and bioscience repository compliance audits (BSC). Internal metrics (SR9, DI2, Omega) are labelled advisory and not externally validated; verification weight rests on external anchors (public MIT repositories, DOIs, and standard third-party metrics such as AlphaFold pLDDT/PAE).",
"url": "https://flamehaven01.github.io/Flamehaven-Verification-Ledger/",
"sameAs": ["https://github.com/flamehaven01/Flamehaven-Verification-Ledger", "https://flamehaven.space/"],
"identifier": "https://doi.org/10.5281/zenodo.20483364",
"license": "https://creativecommons.org/licenses/by-nc/4.0/",
"isAccessibleForFree": true,
"creator": { "@type": "Organization", "name": "Flamehaven Labs", "@id": "https://orcid.org/0009-0009-2641-4280" },
"keywords": ["AI safety", "reproducibility", "verification", "AlphaFold", "bioscience compliance", "Leiden Declaration"],
"citation": "https://doi.org/10.5281/zenodo.15487327"
}
</script>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500;600&display=swap" rel="stylesheet"> <link rel="stylesheet" href="./css/tokens.css">
<link rel="stylesheet" href="./css/layout.css">
<link rel="stylesheet" href="./css/sidebar.css">
<link rel="stylesheet" href="./css/components.css">
<link rel="stylesheet" href="./css/dashboards.css">
<link rel="stylesheet" href="./css/viewer.css">
<link rel="stylesheet" href="./css/responsive.css">
</head>
<body>
<!-- ── NAV ─────────────────────────────────────────────────────────────── -->
<nav class="nav">
<a href="./index.html" class="nav-logo" onclick="goHome(event)">
<img src="./logo.png" alt="Flamehaven Labs Logo" class="nav-logo-img">
<span class="nav-brand">Flamehaven</span>
<span class="nav-sub">Verification Ledger</span>
</a>
<div class="nav-right">
<a href="./leiden-alignment/" class="nav-link">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round" style="color:#10b981;">
<path d="M9 12l2 2 4-4m5.618-4.016A11.955 11.955 0 0112 2.944a11.955 11.955 0 01-8.618 3.04A12.02 12.02 0 003 9c0 5.591 3.824 10.29 9 11.622 5.176-1.332 9-6.03 9-11.622 0-1.042-.133-2.052-.382-3.016z"/>
</svg>
Standards
</a>
<a href="./api/v1/" class="nav-link">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round" style="color: var(--t4c);">
<polyline points="16 18 22 12 16 6"/>
<polyline points="8 6 2 12 8 18"/>
</svg>
API v1
</a>
<a href="https://flamehaven.space/" class="nav-link" target="_blank" rel="noopener">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round" style="color: var(--t1);">
<path d="M8.5 14.5A2.5 2.5 0 0 0 11 12c0-1.38-.5-2-1-3-1.072-2.143-.224-4.054 2-6 .5 2.5 2 4.9 4 6.5 2 1.6 3 3.5 3 5.5a7 7 0 1 1-14 0c0-1.153.433-2.294 1-3a2.5 2.5 0 0 0 2.5 2.5z"/>
</svg>
flamehaven.space
</a>
<a href="https://github.com/flamehaven01/Flamehaven-Verification-Ledger" class="nav-link" target="_blank" rel="noopener">
<svg viewBox="0 0 12 12" fill="currentColor" width="12" height="12">
<path d="M6 .3a6 6 0 00-1.9 11.7c.3.05.4-.13.4-.3v-1.1c-1.67.36-2.02-.8-2.02-.8-.27-.7-.67-.88-.67-.88-.55-.37.04-.36.04-.36.6.04.92.62.92.62.54.92 1.42.66 1.76.5.06-.39.21-.66.38-.81-1.34-.15-2.74-.67-2.74-2.97 0-.66.24-1.2.62-1.62-.06-.15-.27-.77.06-1.6 0 0 .5-.16 1.65.62A5.75 5.75 0 016 4.32c.51 0 1.02.07 1.5.2 1.15-.78 1.65-.62 1.65-.62.33.83.12 1.45.06 1.6.39.42.62.96.62 1.62 0 2.31-1.41 2.82-2.75 2.97.22.19.41.55.41 1.11v1.65c0 .17.1.36.4.3A6 6 0 006 .3z"/>
</svg>
GitHub
</a>
</div>
</nav>
<!-- ── PAGE LAYOUT ────────────────────────────────────────────────── -->
<div class="page-layout">
<!-- ── SIDEBAR ────────────────────────────────────────────────── -->
<aside class="sidebar">
<div class="sb-header">
<div class="sb-title">
<svg viewBox="0 0 16 16" fill="none" stroke="currentColor" stroke-width="1.5" style="width:12px;height:12px;color:var(--t4);">
<rect x="2" y="2" width="12" height="12" rx="1.5"/>
<path d="M5 5h6M5 8h6M5 11h4" stroke-linecap="round"/>
</svg>
Verification Explorer
</div>
<div class="sb-search">
<svg class="sb-search-icon" viewBox="0 0 14 14" fill="none" stroke="currentColor" stroke-width="1.5">
<circle cx="5.5" cy="5.5" r="4"/>
<path d="M9 9l3.5 3.5" stroke-linecap="round"/>
</svg>
<input type="text" id="sb-search-input" placeholder="Search files (/) ..." autocomplete="off" oninput="handleSidebarSearch()">
</div>
</div>
<div class="sb-tree">
<!-- TOE Folder -->
<div class="sb-folder">
<div class="sb-folder-header">
<button class="sb-folder-btn" onclick="toggleFolder(this)" data-id="toe">
<span class="sb-folder-icon"></span>
<span class="sb-folder-name">Equation-to-Artifact (EQA)</span>
<span class="sb-folder-badge" style="color:#10b981;border-color:rgba(16, 185, 129, 0.2);">6</span>
<svg class="sb-chevron" viewBox="0 0 10 10" fill="none" stroke="currentColor" stroke-width="1.5">
<path d="M3 2l3 3-3 3" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</button>
<span class="sb-tooltip">
<strong>Equation-to-Artifact Verification (EQA)</strong><br>
Deterministic verification process reproducing theoretical physics and mathematical breakthroughs as runnable, citable computational software (CI-tested Python, LaTeX source, and Zenodo DOI citations).
</span>
</div>
<div class="sb-children" id="child-toe">
<div class="sb-files" style="padding-left: 8px;">
<div class="sb-file" data-keep onclick="highlightFile(this); activeColl='toe'; applyFilters(); document.getElementById('eqa-card-archive').scrollIntoView({behavior:'smooth'});" style="margin-left:8px;padding-left:14px;">
<span class="sb-file-dot" style="background:#6b7280"></span>
<span class="sb-file-name">eqa-archive-0001~0051</span>
</div>
</div>
</div>
</div>
<!-- BAV Folder -->
<div class="sb-folder">
<div class="sb-folder-header">
<button class="sb-folder-btn" onclick="toggleFolder(this)" data-id="rexsyn">
<span class="sb-folder-icon"></span>
<span class="sb-folder-name">Biomolecular AI Validation (BAV)</span>
<span class="sb-folder-badge" style="color:#10b981;border-color:rgba(16, 185, 129, 0.2);">7</span>
<svg class="sb-chevron" viewBox="0 0 10 10" fill="none" stroke="currentColor" stroke-width="1.5">
<path d="M3 2l3 3-3 3" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</button>
<span class="sb-tooltip">
<strong>Biomolecular AI Validation (BAV)</strong><br>
Governance validation of the RExSyn + NNSL pipeline: multi-model structural consensus (AF3, AF2, Boltz-2, Chai-1) and end-to-end reliability gating.
</span>
</div>
<div class="sb-children" id="child-rexsyn">
<div class="sb-files" style="padding-left: 8px;">
<div class="sb-file" onclick="highlightFile(this); activeColl='rexsyn'; applyFilters(); document.getElementById('bav-card-0034').scrollIntoView({behavior:'smooth'});" style="margin-left:8px;padding-left:14px;">
<span class="sb-file-dot" style="background:#10b981"></span>
<span class="sb-file-name">exp-034 methodlock</span>
</div>
<div class="sb-file" onclick="highlightFile(this); activeColl='rexsyn'; applyFilters(); document.getElementById('bav-card-0033').scrollIntoView({behavior:'smooth'});" style="margin-left:8px;padding-left:14px;">
<span class="sb-file-dot" style="background:#60a5fa"></span>
<span class="sb-file-name">exp-033 lawbinder-critic</span>
</div>
<div class="sb-file" onclick="highlightFile(this); activeColl='rexsyn'; applyFilters(); document.getElementById('bav-card-0032').scrollIntoView({behavior:'smooth'});" style="margin-left:8px;padding-left:14px;">
<span class="sb-file-dot" style="background:#10b981"></span>
<span class="sb-file-name">exp-032 adaptive-gate</span>
</div>
<div class="sb-file" onclick="highlightFile(this); activeColl='rexsyn'; applyFilters(); document.getElementById('bav-card-0031').scrollIntoView({behavior:'smooth'});" style="margin-left:8px;padding-left:14px;">
<span class="sb-file-dot" style="background:#eab308"></span>
<span class="sb-file-name">exp-031 ood-ablation</span>
</div>
<div class="sb-file" onclick="highlightFile(this); activeColl='rexsyn'; applyFilters(); document.getElementById('bav-card-0028').scrollIntoView({behavior:'smooth'});" style="margin-left:8px;padding-left:14px;">
<span class="sb-file-dot" style="background:#ef4444"></span>
<span class="sb-file-name">exp-028 honesty-test</span>
</div>
<div class="sb-file" onclick="highlightFile(this); activeColl='rexsyn'; applyFilters(); document.getElementById('bav-card-0005').scrollIntoView({behavior:'smooth'});" style="margin-left:8px;padding-left:14px;">
<span class="sb-file-dot" style="background:#10b981"></span>
<span class="sb-file-name">exp-005~007 upadacitinib</span>
</div>
<div class="sb-file" onclick="highlightFile(this); activeColl='rexsyn'; applyFilters(); document.getElementById('bav-card-archive').scrollIntoView({behavior:'smooth'});" style="margin-left:8px;padding-left:14px;">
<span class="sb-file-dot" style="background:#6b7280"></span>
<span class="sb-file-name">exp-001~030 archive</span>
</div>
</div>
</div>
</div>
<!-- STEM-BIO-AI (BSC) Folder -->
<div class="sb-folder">
<div class="sb-folder-header">
<button class="sb-folder-btn" onclick="toggleFolder(this)" data-id="bsc">
<span class="sb-folder-icon"></span>
<span class="sb-folder-name">Bioscience Compliance (BSC)</span>
<span class="sb-folder-badge" style="color:#10b981;border-color:rgba(16, 185, 129, 0.2);">2</span>
<svg class="sb-chevron" viewBox="0 0 10 10" fill="none" stroke="currentColor" stroke-width="1.5">
<path d="M3 2l3 3-3 3" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</button>
<span class="sb-tooltip">
<strong>Bioscience Compliance (BSC)</strong><br>
Deterministic static scanning auditing bioscience AI surfaces, checking clinical boundaries, safety limitations, and license compliance.
</span>
</div>
<div class="sb-children" id="child-bsc">
<div class="sb-files" style="padding-left: 8px;"></div>
</div>
</div>
<!-- Methodology & Frameworks Folder -->
<div class="sb-folder">
<div class="sb-folder-header">
<button class="sb-folder-btn" onclick="toggleFolder(this)" data-id="extra">
<span class="sb-folder-icon"></span>
<span class="sb-folder-name">Methodology & Frameworks</span>
<span class="sb-folder-badge" style="color:#10b981;border-color:rgba(16, 185, 129, 0.2);">1</span>
<svg class="sb-chevron" viewBox="0 0 10 10" fill="none" stroke="currentColor" stroke-width="1.5">
<path d="M3 2l3 3-3 3" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</button>
<span class="sb-tooltip">
<strong>Methodology & Frameworks</strong><br>
Reusable templates, operational frameworks, and practical code for deterministic AI verification and compliance auditing. Currently: HTML Effectiveness Template (blank, html-effectiveness framework, 9 document types). Frameworks and Practical Code in preparation.
</span>
</div>
<div class="sb-children" id="child-extra">
<!-- Templates -->
<div style="padding: 6px 8px 2px 8px; font-size: 9px; font-family: 'JetBrains Mono', monospace; color: var(--t5); text-transform: uppercase; letter-spacing: 0.6px;">Templates</div>
<div class="sb-files" id="extra-sb-templates" style="padding-left: 8px;"></div>
<!-- Frameworks -->
<div style="padding: 6px 8px 2px 8px; font-size: 9px; font-family: 'JetBrains Mono', monospace; color: var(--t5); text-transform: uppercase; letter-spacing: 0.6px;">Frameworks</div>
<div class="sb-files" id="extra-sb-frameworks" style="padding-left: 8px;"></div>
<!-- Practical Code -->
<div style="padding: 6px 8px 2px 8px; font-size: 9px; font-family: 'JetBrains Mono', monospace; color: var(--t5); text-transform: uppercase; letter-spacing: 0.6px;">Practical Code</div>
<div class="sb-files" id="extra-sb-code" style="padding-left: 8px;"></div>
</div>
</div>
</div>
<a href="./api/v1/" style="display:flex;align-items:center;gap:8px;padding:8px 14px;border-top:1px solid var(--border);font-size:11px;color:var(--t4);text-decoration:none;transition:color .15s;" onmouseover="this.style.color='var(--t4c)'" onmouseout="this.style.color='var(--t4)'">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round" style="width:11px;height:11px;flex-shrink:0;">
<polyline points="16 18 22 12 16 6"/>
<polyline points="8 6 2 12 8 18"/>
</svg>
<span>Public API</span>
<span style="margin-left:auto;font-family:'JetBrains Mono',monospace;font-size:9.5px;color:var(--t4c);border:1px solid var(--blue-bd,rgba(59,130,246,.2));background:var(--blue-bg,rgba(59,130,246,.08));padding:1px 6px;border-radius:999px;">v1</span>
</a>
<a id="ledger-version-tag" href="https://github.com/flamehaven01/Flamehaven-Verification-Ledger" target="_blank" rel="noopener" title="Flamehaven Verification Ledger — view repository on GitHub" style="margin-top:auto;display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:6px;padding:10px 14px;border-top:1px solid var(--border);font-family:'JetBrains Mono',monospace;font-size:10.5px;color:var(--t4);text-decoration:none;">
<span>Flamehaven Verification Ledger</span>
<span class="lv-num" style="color:#10b981;font-weight:600;">v—</span>
</a>
</aside>
<!-- ── MAIN CONTENT ────────────────────────────────────────────── -->
<div class="wrap">
<!-- B2B Service Banner -->
<div class="b2b-notice-banner">
<div class="b2b-notice-icon">
<svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<path d="M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z"/>
</svg>
</div>
<div class="b2b-notice-content">
This is the public verification record of Flamehaven's governance review work. For commercial services, blueprints, and methodologies, visit <a href="https://flamehaven.space" target="_blank" rel="noopener">flamehaven.space</a>.
</div>
</div>
<!-- HERO -->
<div class="hero">
<div class="hero-eyebrow">Flamehaven Labs</div>
<h1>Verification <em>Ledger</em></h1>
<p class="hero-desc">
Public verification record for Flamehaven's governance reviews, physics verification runs, and biomedical audit scans. Every result is deterministic, locally executed, and fully inspectable.
</p>
<!-- Unified Ledger Views (Dashboard Guides nested inside individual lanes) -->
</div><!-- /hero -->
<!-- ARCHIVE DESCRIPTION & TRUST MISSION -->
<div class="archive-mission-card">
<div class="mission-header">
<svg class="mission-icon" width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round">
<path d="M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z"/>
</svg>
What is the Flamehaven Verification Ledger?
</div>
<p class="mission-text">
The <strong>Flamehaven Verification Ledger</strong> is a transparent, reproducible public ledger of all capability evaluations, mathematical physics verification runs, and biomedical AI governance audits executed by Flamehaven.
</p>
<p class="mission-text">
Every log and audit report published here is fully local and deterministic—run without network dependencies or external LLM layers, so the results can be reproduced from repository state.
</p>
</div>
<!-- PORTAL INTRO -->
<div class="portal-intro">
<div class="portal-intro-header">
<div class="portal-intro-eyebrow">Flamehaven Verification Ledger</div>
<h2 class="portal-intro-title">Portal Overview & Verification Engines</h2>
</div>
<div class="portal-intro-grid">
<!-- Card 1: EQA -->
<div class="portal-intro-card" onclick="openCollection('toe')">
<div class="portal-intro-card-title">
<svg class="portal-intro-card-icon" viewBox="0 0 16 16" fill="none" stroke="currentColor" stroke-width="1.8">
<circle cx="8" cy="8" r="6"/>
<path d="M8 5v6M5 8h6" stroke-linecap="round"/>
</svg>
Equation-to-Artifact (EQA)
</div>
<p class="portal-intro-card-desc">
Verifies theoretical math and physics breakthroughs by reproducing published equations as runnable, citable, and testable computational software.
</p>
<div class="portal-intro-card-status active">
<span class="status-dot"></span>
<span>1 Paper / 53 Runs Active</span>
</div>
</div>
<!-- Card 2: BAV -->
<div class="portal-intro-card" onclick="openCollection('rexsyn')">
<div class="portal-intro-card-title">
<svg class="portal-intro-card-icon" viewBox="0 0 16 16" fill="none" stroke="currentColor" stroke-width="1.8">
<path d="M8 1.5L2 4.5v4.25c0 3.75 6 5.75 6 5.75s6-2 6-5.75V4.5l-6-3z" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
Biomolecular AI Validation (BAV)
</div>
<p class="portal-intro-card-desc">
Governs biomedical AI pipelines. Surfaces 34 experiments through 6 live cards, with one grouped truthful-null sub-series and a 26-entry foundational archive.
</p>
<div class="portal-intro-card-status active">
<span class="status-dot"></span>
<span>34 Experiments · 6 Live Cards</span>
</div>
</div>
<!-- Card 3: BSC -->
<div class="portal-intro-card" onclick="openCollection('bsc')">
<div class="portal-intro-card-title">
<svg class="portal-intro-card-icon" viewBox="0 0 16 16" fill="none" stroke="currentColor" stroke-width="1.8">
<rect x="2" y="2" width="12" height="12" rx="1.5"/>
<path d="M5 5h6M5 8h6M5 11h4" stroke-linecap="round"/>
</svg>
Bioscience Compliance (BSC)
</div>
<p class="portal-intro-card-desc">
Deterministic static scanning auditing bioscience AI surfaces. Evaluates clinical boundaries and dependency risks without runtime hazards.
</p>
<div class="portal-intro-card-status active">
<span class="status-dot"></span>
<span>2 Reports Active</span>
</div>
</div>
<!-- Card 4: Methodology & Frameworks -->
<div class="portal-intro-card" onclick="openCollection('extra')">
<div class="portal-intro-card-title">
<svg class="portal-intro-card-icon" viewBox="0 0 16 16" fill="none" stroke="currentColor" stroke-width="1.8">
<path d="M4 1.5h8a1.5 1.5 0 011.5 1.5v10a1.5 1.5 0 01-1.5 1.5H4a1.5 1.5 0 01-1.5-1.5V3A1.5 1.5 0 014 1.5z" stroke-linecap="round"/>
<path d="M5.5 4.5h5M5.5 7.5h5M5.5 10.5h3" stroke-linecap="round"/>
</svg>
Methodology & Frameworks
</div>
<p class="portal-intro-card-desc">
Review dashboards, verification blueprints, and compliance mapping frameworks demonstrating systematic review methods.
</p>
<div class="portal-intro-card-status active">
<span class="status-dot"></span>
<span>1 Framework Active (v3)</span>
</div>
</div>
</div>
</div>
<!-- TOE PROJECT DASHBOARD -->
<div class="project-dashboard" id="dashboard-toe">
<div class="project-dashboard-header">
<div class="project-dashboard-eyebrow">Equation-to-Artifact (EQA)</div>
<h2 class="project-dashboard-title">Mathematical & Physical Verification Ledger</h2>
<p class="project-dashboard-desc">
Independent, deterministic reproduction of mathematical proofs, physics models, and discrete geometry equations. Rather than generating ungrounded hypotheses, this ledger validates theoretical claims by turning abstract formulas into executable, citable, and testable scientific software.
</p>
</div>
<div class="dashboard-grid">
<div class="dashboard-card">
<div class="dashboard-card-title">
<svg class="portal-intro-card-icon" viewBox="0 0 16 16" fill="none" stroke="currentColor" stroke-width="1.5">
<rect x="2" y="2" width="12" height="12" rx="1.5"/>
<path d="M5 5h6M5 8h6M5 11h4" stroke-linecap="round"/>
</svg>
EQA Protocol
</div>
<p class="dashboard-card-desc">
Structured conversion of abstract mathematical equations to verified digital software:
</p>
<ul class="dashboard-list">
<li><strong>Step 1: Precision Lock</strong>: Re-deriving equations using arbitrary-precision libraries (e.g. <code>mpmath</code>) to prevent standard underflow/catastrophic cancellation.</li>
<li><strong>Step 2: Constraint Verification</strong>: Checking local constraints, bounds, and algebraic-geometric admissibility programmatically.</li>
<li><strong>Step 3: CI/CD Proof-of-Work</strong>: Regression testing codebases across multiple OS platforms and environments.</li>
</ul>
</div>
<div class="dashboard-card">
<div class="dashboard-card-title">
<svg class="portal-intro-card-icon" viewBox="0 0 16 16" fill="none" stroke="currentColor" stroke-width="1.5">
<line x1="3" y1="4" x2="13" y2="4" stroke-linecap="round"/>
<line x1="3" y1="8" x2="13" y2="8" stroke-linecap="round"/>
<path d="M3 12h5" stroke-linecap="round"/>
<circle cx="12" cy="12" r="2.5"/>
<path d="M14 14l1.5 1.5" stroke-linecap="round"/>
</svg>
Scholarly Archival Alignment
</div>
<p class="dashboard-card-desc">
Ensuring verified math software is fit for peer-reviewed citation:
</p>
<ul class="dashboard-list">
<li><strong>Citable Metadata</strong>: Enforcing standardized <code>CITATION.cff</code> and Zenodo integrations to issue immutable DOIs.</li>
<li><strong>Provenance Manifests</strong>: Freezing SHA-256 cryptographic signatures of code files to verify execution immutability.</li>
<li><strong>Audit Disclosures</strong>: Exposing explicit LaTeX paper sources alongside codebases to document deviations from literature.</li>
</ul>
</div>
</div>
<!-- EQA Filter Pill Bar -->
<div class="eq-filter-bar" style="display: flex; gap: 8px; margin-top: 40px; margin-bottom: 24px; border-bottom: 1px solid var(--border); padding-bottom: 12px; align-items: center; justify-content: flex-start; flex-wrap: wrap;">
<span style="font-family: 'JetBrains Mono', monospace; font-size: 11px; font-weight: 600; text-transform: uppercase; color: var(--t4); margin-right: 16px;">Filter Ledger:</span>
<button class="eq-filter-pill active" onclick="filterEqLedger('all', this)" style="background: rgba(255,255,255,0.02); border: 1px solid var(--border); color: var(--t3); padding: 4px 12px; border-radius: var(--r-md); cursor: pointer; font-size: 12px; font-family: 'JetBrains Mono', monospace; transition: all 0.15s;">All</button>
<button class="eq-filter-pill" onclick="filterEqLedger('verification-run', this)" style="background: rgba(255,255,255,0.02); border: 1px solid var(--border); color: var(--t4); padding: 4px 12px; border-radius: var(--r-md); cursor: pointer; font-size: 12px; font-family: 'JetBrains Mono', monospace; transition: all 0.15s;">Verification Runs</button>
<button class="eq-filter-pill" onclick="filterEqLedger('non-run', this)" style="background: rgba(255,255,255,0.02); border: 1px solid var(--border); color: var(--t4); padding: 4px 12px; border-radius: var(--r-md); cursor: pointer; font-size: 12px; font-family: 'JetBrains Mono', monospace; transition: all 0.15s;">Non-Run Artifacts</button>
<!-- Local search input -->
<div class="local-search-wrap" style="margin-left: auto; position: relative; display: flex; align-items: center; min-width: 200px;">
<svg class="search-icon" viewBox="0 0 14 14" fill="none" stroke="currentColor" stroke-width="1.5" style="position: absolute; left: 8px; width: 11px; height: 11px; color: var(--t5); pointer-events: none;">
<circle cx="5.5" cy="5.5" r="4"/>
<path d="M9 9l3.5 3.5" stroke-linecap="round"/>
</svg>
<input type="text" id="eq-local-search" placeholder="Search math runs..." oninput="handleLocalSearch('toe')" autocomplete="off" style="width: 100%; padding: 5px 8px 5px 26px; background: rgba(0,0,0,0.2); border: 1px solid var(--border); border-radius: var(--r-md); color: var(--tp); font-family: 'Inter', sans-serif; font-size: 11px; outline: none; transition: border-color 0.15s;">
</div>
</div>
<!-- Vertical Stack for EQA Cards -->
<div class="eq-ledger-list" style="display: flex; flex-direction: column; gap: 16px; margin-top: 16px;">
<!-- EQA cards rendered from eqa-registry.js by renderEqaCards() -->
<div id="eqa-cards-container" style="display:flex;flex-direction:column;gap:16px;"></div>
<!-- CARD 6: EQA-ARCHIVE-0001 (Historical Runs Registry 1-51) -->
<article class="eq-card" id="eqa-card-archive" data-kind="verification-run" data-class="verification-run" style="display: flex; flex-direction: column; background: rgba(255,255,255,0.01); border: 1px solid var(--border); border-radius: var(--r-xl); padding: 24px; transition: border-color 0.2s, transform 0.2s; position: relative;">
<div style="display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; flex-wrap: wrap; gap: 8px;">
<div style="display: flex; align-items: center; gap: 10px;">
<span style="font-family: 'JetBrains Mono', monospace; font-size: 11px; font-weight: 600; color: var(--t4); background: rgba(255,255,255,0.02); border: 1px solid var(--border); padding: 2px 8px; border-radius: var(--r-xs);">EQA-ARCHIVE</span>
<span style="font-size: 12px; color: var(--t4);">TOE-TEST-0001 ~ 0051</span>
</div>
<span class="tier-chip tb-t4" style="margin: 0; padding: 2px 10px; font-size: 10px; text-transform: uppercase; color:#9ca3af; border-color: rgba(156,163,175,0.2);">
<span class="tier-dot" style="background:#9ca3af"></span>
<span class="tier-chip-label">Historical Records</span>
</span>
</div>
<h3 style="font-size: 18px; font-weight: 600; color: var(--ts); margin: 0 0 10px 0;">
TOE-TEST Foundational Runs (0001 ~ 0051)
</h3>
<p style="font-size: 13.5px; color: var(--t3); line-height: 1.6; margin: 0 0 16px 0; max-width: 800px;">
The foundational Flamehaven-TOE experiment series that preceded the active EQA ledger (0052+): string-theory / topology physics, quantum-biology and protein spin-qubit studies, and the verification-methodology layers themselves. Each entry opens the <strong>verbatim source report</strong> in the Ledger Inspector (local-workspace paths sanitized; report content unedited). Ordered most-recent first.
</p>
<!-- Real TOE-TEST foundational-run archive (data-driven from eqa/archive/manifest.json) -->
<div style="margin-top: 8px; border: 1px solid var(--border); border-radius: var(--r-md); background: rgba(0,0,0,0.15); overflow: hidden; display: flex; flex-direction: column;">
<div style="display: flex; justify-content: space-between; align-items: center; padding: 10px 16px; border-bottom: 1px solid var(--border); background: rgba(255,255,255,0.02); flex-wrap: wrap; gap: 8px;">
<span style="font-family: 'JetBrains Mono', monospace; font-size: 11px; font-weight: 600; color: var(--ts); display: flex; align-items: center; gap: 6px;">
<span style="width: 6px; height: 6px; border-radius: 50%; background: #6b7280; display: inline-block;"></span>
Foundational Runs
</span>
<input type="text" id="eqa-archive-search" placeholder="Search runs..." oninput="handleEqaArchiveSearch()" style="padding: 4px 8px; background: rgba(0,0,0,0.3); border: 1px solid var(--border); border-radius: 4px; color: var(--tp); font-family: 'Inter', sans-serif; font-size: 10.5px; outline: none; width: 180px;">
</div>
<div id="eqa-archive-list" style="max-height: 220px; overflow-y: auto; padding: 8px; display: flex; flex-direction: column; gap: 6px;">
<!-- Populated dynamically via renderEqaArchive() -->
</div>
</div>
<p style="font-size: 11.5px; color: var(--t5); line-height: 1.5; margin: 16px 0 0 0; border-top: 1px solid var(--border); padding-top: 14px;">
Click any run above to open its verbatim report and provenance in the Ledger Inspector.
</p>
</article>
</div><!-- /eq-ledger-list -->
</div>
<!-- BAV PROJECT DASHBOARD -->
<div class="project-dashboard" id="dashboard-bav">
<div class="project-dashboard-header">
<div class="project-dashboard-eyebrow">Biomolecular AI Validation (BAV)</div>
<h2 class="project-dashboard-title">Biomolecular AI Validation Ledger</h2>
<p class="project-dashboard-desc">
Validates whether an <em>entire</em> biomedical AI pipeline — RExSyn reasoning + NNSL resonance + LawBinder governance — deserves trust, not just whether one model looks confident. Treats model disagreement as signal, gates fail-closed, and keeps accepted results separate from held diagnostics.
</p>
</div>
<div class="dashboard-grid">
<!-- Governance Protocol -->
<div class="dashboard-card">
<div class="dashboard-card-title">
<svg class="portal-intro-card-icon" viewBox="0 0 16 16" fill="none" stroke="currentColor" stroke-width="1.5">
<rect x="2" y="2" width="12" height="12" rx="1.5"/>
<path d="M5 5h6M5 8h6M5 11h4" stroke-linecap="round"/>
</svg>
Governance Protocol
</div>
<p class="dashboard-card-desc">
How a multi-engine pipeline is judged trustworthy — disagreement, honesty, and chain reliability:
</p>
<ul class="dashboard-list">
<li><strong>Multi-Model Disagreement</strong>: AlphaFold 3 / 2 / Chai-1 / Boltz-2 cross-validation. Rising drift exposes hidden topology conflict — disagreement is signal, not noise (KEEP_OBSERVER when convergence fails).</li>
<li><strong>Honesty Gating (SR9 / DI2)</strong>: Cross-domain resonance must clear SR9 ≥ 0.70 and logical drift DI2 ≤ 0.30; the pipeline abstains rather than hallucinate confidence.</li>
<li><strong>End-to-End Reliability</strong>: <code>p_e2e = capture × transfer × model × clinical</code>, with LawBinder fail-closed escalation to human review.</li>
</ul>
</div>
<!-- Governance Reproducibility -->
<div class="dashboard-card">
<div class="dashboard-card-title">
<svg class="portal-intro-card-icon" viewBox="0 0 16 16" fill="none" stroke="currentColor" stroke-width="1.5">
<line x1="3" y1="4" x2="13" y2="4" stroke-linecap="round"/>
<line x1="3" y1="8" x2="13" y2="8" stroke-linecap="round"/>
<path d="M3 12h5" stroke-linecap="round"/>
<circle cx="12" cy="12" r="2.5"/>
<path d="M14 14l1.5 1.5" stroke-linecap="round"/>
</svg>
Governance Reproducibility
</div>
<p class="dashboard-card-desc">
Why each verdict is auditable and how accepted results stay clean:
</p>
<ul class="dashboard-list">
<li><strong>Path Separation</strong>: An accepted legacy-replay anchor is never blended with a held current-regeneration path — controlled expansion without breaking the PASS/BLOCK baseline.</li>
<li><strong>Provenance Manifests</strong>: Verbatim run payloads frozen with SHA-256; all card values are live-fetched from them, never hardcoded.</li>
<li><strong>Honest Scope</strong>: Pipeline reliability & governance only — explicitly not clinical efficacy, with disabled features disclosed.</li>
</ul>
</div>
</div>
<!-- Metrics & Engines Glossary (external-readable definitions of internal terms) -->
<details style="margin-top: 20px; border: 1px solid var(--border); border-radius: var(--r-md); background: rgba(255,255,255,0.01); overflow: hidden;">
<summary style="cursor: pointer; padding: 12px 16px; font-family: 'JetBrains Mono', monospace; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--t3); list-style: none;">📖 Metrics & Engines — Glossary</summary>
<div style="padding: 0 16px 16px; display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 10px;">
<div style="grid-column: 1 / -1; font-size: 11.5px; color: var(--t4); line-height: 1.6; border-bottom: 1px solid var(--border); padding-bottom: 10px; margin-bottom: 2px;">
Each metric is tagged by where its authority comes from:
<span style="font-family:'JetBrains Mono',monospace;font-size:8.5px;color:#10b981;border:1px solid #10b98155;border-radius:3px;padding:0 4px;text-transform:uppercase;">EXTERNAL</span> third-party-defined & checkable ·
<span style="font-family:'JetBrains Mono',monospace;font-size:8.5px;color:#60a5fa;border:1px solid #60a5fa55;border-radius:3px;padding:0 4px;text-transform:uppercase;">DERIVED</span> recomputable from external inputs ·
<span style="font-family:'JetBrains Mono',monospace;font-size:8.5px;color:#eab308;border:1px solid #eab30855;border-radius:3px;padding:0 4px;text-transform:uppercase;">RULE</span> deterministic rule citing an external basis ·
<span style="font-family:'JetBrains Mono',monospace;font-size:8.5px;color:#9ca3af;border:1px solid #9ca3af55;border-radius:3px;padding:0 4px;text-transform:uppercase;">ADVISORY</span> Flamehaven internal, <em>not externally validated</em>.
</div>
<div style="font-size: 12.5px; color: var(--t3); line-height: 1.55;"><strong style="color: var(--ts);">SR9</strong> <span style="color:var(--t5);">(Scientific Resonance)</span> <span style="font-family:'JetBrains Mono',monospace;font-size:8.5px;color:#9ca3af;border:1px solid #9ca3af55;border-radius:3px;padding:0 4px;text-transform:uppercase;">ADVISORY</span> — cross-domain consistency: does the reasoning stay coherent across chemistry, genomics, and proteomics? Higher is better (guard ≥ 0.70).</div>
<div style="font-size: 12.5px; color: var(--t3); line-height: 1.55;"><strong style="color: var(--ts);">DI2</strong> <span style="color:var(--t5);">(Dimensional Integrity)</span> <span style="font-family:'JetBrains Mono',monospace;font-size:8.5px;color:#9ca3af;border:1px solid #9ca3af55;border-radius:3px;padding:0 4px;text-transform:uppercase;">ADVISORY</span> — reasoning drift: internal contradiction across inference steps. Lower is better (guard ≤ 0.30).</div>
<div style="font-size: 12.5px; color: var(--t3); line-height: 1.55;"><strong style="color: var(--ts);">NNSL</strong> <span style="font-family:'JetBrains Mono',monospace;font-size:8.5px;color:#9ca3af;border:1px solid #9ca3af55;border-radius:3px;padding:0 4px;text-transform:uppercase;">ADVISORY</span> — the Flamehaven semantic-resonance engine that computes SR9 / DI2 (internal).</div>
<div style="font-size: 12.5px; color: var(--t3); line-height: 1.55;"><strong style="color: var(--ts);">RExSyn</strong> <span style="font-family:'JetBrains Mono',monospace;font-size:8.5px;color:#9ca3af;border:1px solid #9ca3af55;border-radius:3px;padding:0 4px;text-transform:uppercase;">ADVISORY</span> — the Flamehaven hypothesis-synthesis engine (multi-validator); runs observer-first.</div>
<div style="font-size: 12.5px; color: var(--t3); line-height: 1.55;"><strong style="color: var(--ts);">LawBinder</strong> <span style="font-family:'JetBrains Mono',monospace;font-size:8.5px;color:#eab308;border:1px solid #eab30855;border-radius:3px;padding:0 4px;text-transform:uppercase;">RULE</span> — a fail-closed governance gate that escalates to human review when uncertain.</div>
<div style="font-size: 12.5px; color: var(--t3); line-height: 1.55;"><strong style="color: var(--ts);">LOGOS</strong> <span style="font-family:'JetBrains Mono',monospace;font-size:8.5px;color:#9ca3af;border:1px solid #9ca3af55;border-radius:3px;padding:0 4px;text-transform:uppercase;">ADVISORY</span> — Flamehaven's internal multi-engine reasoning orchestrator: coordinates inference across several solver engines under LawBinder governance; candidate generator for the EQA intake gate. (Codename, not a claim of autonomy.)</div>
<div style="font-size: 12.5px; color: var(--t3); line-height: 1.55;"><strong style="color: var(--ts);">TOE</strong> <span style="font-family:'JetBrains Mono',monospace;font-size:8.5px;color:#9ca3af;border:1px solid #9ca3af55;border-radius:3px;padding:0 4px;text-transform:uppercase;">ADVISORY</span> — the mathematical-model verification engine: turns candidate physics models into runnable, gated checks (run IDs <code style="font-family:'JetBrains Mono',monospace;">TOE-TEST-NNNN</code>). Named for the Theory-of-Everything physics it tests against — it does not claim to be one.</div>
<div style="font-size: 12.5px; color: var(--t3); line-height: 1.55;"><strong style="color: var(--ts);">p_e2e</strong> <span style="font-family:'JetBrains Mono',monospace;font-size:8.5px;color:#60a5fa;border:1px solid #60a5fa55;border-radius:3px;padding:0 4px;text-transform:uppercase;">DERIVED</span> — end-to-end reliability = capture × transfer × model × clinical (recomputable from the shown factors).</div>
<div style="font-size: 12.5px; color: var(--t3); line-height: 1.55;"><strong style="color: var(--ts);">pLDDT / PAE / pTM</strong> <span style="font-family:'JetBrains Mono',monospace;font-size:8.5px;color:#10b981;border:1px solid #10b98155;border-radius:3px;padding:0 4px;text-transform:uppercase;">EXTERNAL</span> — standard AlphaFold confidence metrics (per-residue confidence, predicted aligned error, predicted TM-score), defined by DeepMind/EBI.</div>
<div style="font-size: 12.5px; color: var(--t3); line-height: 1.55;"><strong style="color: var(--ts);">Brier / ECE</strong> <span style="font-family:'JetBrains Mono',monospace;font-size:8.5px;color:#10b981;border:1px solid #10b98155;border-radius:3px;padding:0 4px;text-transform:uppercase;">EXTERNAL</span> — standard calibration metrics (probability accuracy; lower is better).</div>
</div>
</details>
<!-- BAV Filter Pill Bar -->
<div class="bav-filter-bar" style="display: flex; gap: 8px; margin-top: 40px; margin-bottom: 24px; border-bottom: 1px solid var(--border); padding-bottom: 12px; align-items: center; justify-content: flex-start; flex-wrap: wrap;">
<span style="font-family: 'JetBrains Mono', monospace; font-size: 11px; font-weight: 600; text-transform: uppercase; color: var(--t4); margin-right: 16px;">Filter Ledger:</span>
<button class="eq-filter-pill active" onclick="filterBavLedger('all', this)" style="background: rgba(255,255,255,0.02); border: 1px solid var(--border); color: var(--t3); padding: 4px 12px; border-radius: var(--r-md); cursor: pointer; font-size: 12px; font-family: 'JetBrains Mono', monospace; transition: all 0.15s;">All</button>
<button class="eq-filter-pill" onclick="filterBavLedger('published', this)" style="background: rgba(255,255,255,0.02); border: 1px solid var(--border); color: var(--t4); padding: 4px 12px; border-radius: var(--r-md); cursor: pointer; font-size: 12px; font-family: 'JetBrains Mono', monospace; transition: all 0.15s;">Published</button>
<button class="eq-filter-pill" onclick="filterBavLedger('verified', this)" style="background: rgba(255,255,255,0.02); border: 1px solid var(--border); color: var(--t4); padding: 4px 12px; border-radius: var(--r-md); cursor: pointer; font-size: 12px; font-family: 'JetBrains Mono', monospace; transition: all 0.15s;">Verified</button>
<button class="eq-filter-pill" onclick="filterBavLedger('archived', this)" style="background: rgba(255,255,255,0.02); border: 1px solid var(--border); color: var(--t4); padding: 4px 12px; border-radius: var(--r-md); cursor: pointer; font-size: 12px; font-family: 'JetBrains Mono', monospace; transition: all 0.15s;">Archived</button>
<!-- Local search input -->
<div class="local-search-wrap" style="margin-left: auto; position: relative; display: flex; align-items: center; min-width: 200px;">
<svg class="search-icon" viewBox="0 0 14 14" fill="none" stroke="currentColor" stroke-width="1.5" style="position: absolute; left: 8px; width: 11px; height: 11px; color: var(--t5); pointer-events: none;">
<circle cx="5.5" cy="5.5" r="4"/>
<path d="M9 9l3.5 3.5" stroke-linecap="round"/>
</svg>
<input type="text" id="bav-local-search" placeholder="Search bio runs..." oninput="handleLocalSearch('rexsyn')" autocomplete="off" style="width: 100%; padding: 5px 8px 5px 26px; background: rgba(0,0,0,0.2); border: 1px solid var(--border); border-radius: var(--r-md); color: var(--tp); font-family: 'Inter', sans-serif; font-size: 11px; outline: none; transition: border-color 0.15s;">
</div>
</div>
<!-- Vertical Stack for BAV Cards -->
<div class="bav-ledger-list" style="display: flex; flex-direction: column; gap: 16px; margin-top: 16px;">
<!-- CARD 0: ENGINE OVERVIEW (RExSyn / NNSL governance context) -->
<article class="bav-card" id="bav-card-overview" data-status="published" style="display: flex; flex-direction: column; background: rgba(167,139,250,0.03); border: 1px solid rgba(167,139,250,0.18); border-radius: var(--r-xl); padding: 24px; transition: border-color 0.2s, transform 0.2s; position: relative;">
<div style="display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; flex-wrap: wrap; gap: 8px;">
<div style="display: flex; align-items: center; gap: 10px;">
<span style="font-family: 'JetBrains Mono', monospace; font-size: 11px; font-weight: 600; color: #a78bfa; background: rgba(167, 139, 250, 0.1); border: 1px solid rgba(167, 139, 250, 0.2); padding: 2px 8px; border-radius: var(--r-xs);">ENGINE OVERVIEW</span>
<span style="font-size: 12px; color: var(--t4);">RExSyn + NNSL</span>
</div>
<span class="tier-chip tb-t2" style="margin: 0; padding: 2px 10px; font-size: 10px; text-transform: uppercase;">
<span class="tier-dot" style="background:#a78bfa"></span>
Context
</span>
</div>
<h3 style="font-size: 18px; font-weight: 600; color: var(--ts); margin: 0 0 10px 0;">
What This Lane Validates: the RExSyn + NNSL Governance Chain
</h3>
<p style="font-size: 13.5px; color: var(--t3); line-height: 1.6; margin: 0 0 16px 0; max-width: 820px;">
BAV does not do drug discovery — it validates whether a biomedical AI <em>pipeline</em> deserves trust. Two engines anchor the chain, themselves audited for code health (pipeline-insight Omega):
</p>
<ul class="dashboard-list" style="margin: 0 0 18px 0;">
<li><strong>RExSyn (Nexus)</strong> — trinity hypothesis + multi-validator synthesis. Audited Omega <code>0.665 (Revoked)</code>: runs observer-first, not as an accepted decision-maker.</li>
<li><strong>NNSL</strong> — semantic resonance / governance verification (SR9 cross-domain coherence, DI2 logical drift). Audited Omega <code>0.919 (Certified)</code>.</li>
<li><strong>LawBinder</strong> — fail-closed policy gate: escalates to human review when uncertain, never silently approves.</li>
</ul>
<div style="display: flex; gap: 12px; flex-wrap: wrap; border-top: 1px solid var(--border); padding-top: 20px;">
<a class="eq-slot-btn" href="https://flamehaven.space/writing/what-an-ai-reasoning-engine-built-for-alzheimers-metabolic-research-a-code-walkthrough/" target="_blank" rel="noopener" style="display: flex; align-items: center; gap: 8px; text-decoration: none; font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--t3); background: rgba(255,255,255,0.03); border: 1px solid var(--border); padding: 8px 16px; border-radius: var(--r-md); transition: all 0.15s;">
<svg width="12" height="12" viewBox="0 0 12 12" fill="none" stroke="currentColor" stroke-width="1.8"><path d="M1 3h10M1 6h7M1 9h5" stroke-linecap="round"/></svg>
RExSyn Walkthrough
</a>
<a class="eq-slot-btn" href="https://flamehaven.space/writing/when-adding-chai-1-and-boltz-2-exposed-hidden-model-disagreementtrinity-protocol-part/" target="_blank" rel="noopener" style="display: flex; align-items: center; gap: 8px; text-decoration: none; font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--t3); background: rgba(255,255,255,0.03); border: 1px solid var(--border); padding: 8px 16px; border-radius: var(--r-md); transition: all 0.15s;">
<svg width="12" height="12" viewBox="0 0 12 12" fill="none" stroke="currentColor" stroke-width="1.8"><path d="M1 3h10M1 6h7M1 9h5" stroke-linecap="round"/></svg>
Trinity Protocol II
</a>
</div>
</article>
<!-- CARD 4: EXP-034 METHODLOCK-MODAL-EXPANSION (Path Separation) -->
<article class="bav-card" id="bav-card-0034" data-status="published" style="display: flex; flex-direction: column; background: rgba(255,255,255,0.01); border: 1px solid var(--border); border-radius: var(--r-xl); padding: 24px; transition: border-color 0.2s, transform 0.2s; position: relative;">
<div style="display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; flex-wrap: wrap; gap: 8px;">
<div style="display: flex; align-items: center; gap: 10px;">
<span style="font-family: 'JetBrains Mono', monospace; font-size: 11px; font-weight: 600; color: #10b981; background: rgba(16, 185, 129, 0.1); border: 1px solid rgba(16, 185, 129, 0.2); padding: 2px 8px; border-radius: var(--r-xs);">EXP-034 · METHODLOCK</span>
<span style="font-size: 12px; color: var(--t4);">2026-04-19</span>
</div>
<span class="tier-chip tb-t2" style="margin: 0; padding: 2px 10px; font-size: 10px; text-transform: uppercase;">
<span class="tier-dot" style="background:#10b981"></span>
GO · Path Held
</span>
</div>
<h3 style="font-size: 18px; font-weight: 600; color: var(--ts); margin: 0 0 10px 0;">
When a Pipeline Passes — But One Path Must Still Be Held
</h3>
<p style="font-size: 13.5px; color: var(--t3); line-height: 1.6; margin: 0 0 20px 0; max-width: 800px;">
Modal expansion (AlphaFold-EBI observer, AlphaGenome live) was admitted only after the parity anchor reproduced. The legacy-replay path was accepted (GO); the current-regeneration path was held (HOLD) rather than blended into success.
<strong style="color:var(--ts); display: block; margin-top: 6px;">Result: Final stage gate = PASS for the accepted anchor, with a separate diagnostic HOLD for current regeneration. Accuracy delta stayed 0.0: non-degradation, not repair.</strong>
</p>
<div style="display: flex; gap: 12px; flex-wrap: wrap; border-top: 1px solid var(--border); padding-top: 20px;">
<button class="eq-slot-btn" onclick="openJsonInspector('bav-exp-034'); return false;" style="cursor: pointer; display: flex; align-items: center; gap: 8px; text-decoration: none; font-family: 'JetBrains Mono', monospace; font-size: 12px; color: #a78bfa; background: rgba(167, 139, 250, 0.05); border: 1px solid rgba(167, 139, 250, 0.2); padding: 8px 16px; border-radius: var(--r-md); transition: all 0.15s;" onmouseover="this.style.background='rgba(167, 139, 250, 0.12)'" onmouseout="this.style.background='rgba(167, 139, 250, 0.05)'">
<svg width="12" height="12" viewBox="0 0 12 12" fill="none" stroke="currentColor" stroke-width="1.8"><circle cx="5" cy="5" r="3.5"/><path d="M7.5 7.5l3 3" stroke-linecap="round"/></svg>
Inspect
</button>
<a class="eq-slot-btn" href="https://flamehaven.space/writing/when-an-ai-pipeline-passes-but-one-path-still-must-be-held-exp-034/" target="_blank" rel="noopener" style="display: flex; align-items: center; gap: 8px; text-decoration: none; font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--t3); background: rgba(255,255,255,0.03); border: 1px solid var(--border); padding: 8px 16px; border-radius: var(--r-md); transition: all 0.15s;">
<svg width="12" height="12" viewBox="0 0 12 12" fill="none" stroke="currentColor" stroke-width="1.8"><path d="M1 3h10M1 6h7M1 9h5" stroke-linecap="round"/></svg>
Note
</a>
</div>
</article>
<!-- CARD 3: EXP-033 LAWBINDER-CRITIC-ALIGNMENT (Pipeline-Level Validation) -->
<article class="bav-card" id="bav-card-0033" data-status="published" style="display: flex; flex-direction: column; background: rgba(255,255,255,0.01); border: 1px solid var(--border); border-radius: var(--r-xl); padding: 24px; transition: border-color 0.2s, transform 0.2s; position: relative;">
<div style="display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; flex-wrap: wrap; gap: 8px;">
<div style="display: flex; align-items: center; gap: 10px;">
<span style="font-family: 'JetBrains Mono', monospace; font-size: 11px; font-weight: 600; color: #60a5fa; background: rgba(96, 165, 250, 0.1); border: 1px solid rgba(96, 165, 250, 0.2); padding: 2px 8px; border-radius: var(--r-xs);">EXP-033 · LAWBINDER-CRITIC</span>
<span style="font-size: 12px; color: var(--t4);">2026-03-10</span>
</div>
<span class="tier-chip tb-t2" style="margin: 0; padding: 2px 10px; font-size: 10px; text-transform: uppercase;">
<span class="tier-dot" style="background:#60a5fa"></span>
Pipeline Audit
</span>
</div>
<h3 style="font-size: 18px; font-weight: 600; color: var(--ts); margin: 0 0 10px 0;">
How Do You Know the Entire Pipeline Is Wrong — Not Just One Model?
</h3>
<p style="font-size: 13.5px; color: var(--t3); line-height: 1.6; margin: 0 0 20px 0; max-width: 800px;">
Validating each model in isolation missed the chain failure. Against the EXP-032 parity baseline, EXP-033 current repro2 drove all PASS-eligible controls to BLOCK while keeping dangerous false-pass at zero.
<strong style="color:var(--ts); display: block; margin-top: 6px;">Result: balanced accuracy fell to 0.50, pass recall collapsed to 0.00, and rule routing shifted from R6_pass to R5_e2e_floor. This is a pipeline failure record, not a model victory.</strong>
</p>
<div style="display: flex; gap: 12px; flex-wrap: wrap; border-top: 1px solid var(--border); padding-top: 20px;">
<button class="eq-slot-btn" onclick="openJsonInspector('bav-exp-033'); return false;" style="cursor: pointer; display: flex; align-items: center; gap: 8px; text-decoration: none; font-family: 'JetBrains Mono', monospace; font-size: 12px; color: #a78bfa; background: rgba(167, 139, 250, 0.05); border: 1px solid rgba(167, 139, 250, 0.2); padding: 8px 16px; border-radius: var(--r-md); transition: all 0.15s;" onmouseover="this.style.background='rgba(167, 139, 250, 0.12)'" onmouseout="this.style.background='rgba(167, 139, 250, 0.05)'">
<svg width="12" height="12" viewBox="0 0 12 12" fill="none" stroke="currentColor" stroke-width="1.8"><circle cx="5" cy="5" r="3.5"/><path d="M7.5 7.5l3 3" stroke-linecap="round"/></svg>
Inspect
</button>
<a class="eq-slot-btn" href="https://flamehaven.space/writing/how-do-you-know-when-your-entire-ai-pipeline-is-wrong-not-just-one-model-exp-033/" target="_blank" rel="noopener" style="display: flex; align-items: center; gap: 8px; text-decoration: none; font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--t3); background: rgba(255,255,255,0.03); border: 1px solid var(--border); padding: 8px 16px; border-radius: var(--r-md); transition: all 0.15s;">
<svg width="12" height="12" viewBox="0 0 12 12" fill="none" stroke="currentColor" stroke-width="1.8"><path d="M1 3h10M1 6h7M1 9h5" stroke-linecap="round"/></svg>
Note
</a>
</div>
</article>
<!-- CARD 2: EXP-032 ADAPTIVE-GATE (Governance) -->
<article class="bav-card" id="bav-card-0032" data-status="published" style="display: flex; flex-direction: column; background: rgba(255,255,255,0.01); border: 1px solid var(--border); border-radius: var(--r-xl); padding: 24px; transition: border-color 0.2s, transform 0.2s; position: relative;">
<div style="display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; flex-wrap: wrap; gap: 8px;">
<div style="display: flex; align-items: center; gap: 10px;">
<span style="font-family: 'JetBrains Mono', monospace; font-size: 11px; font-weight: 600; color: #10b981; background: rgba(16, 185, 129, 0.1); border: 1px solid rgba(16, 185, 129, 0.2); padding: 2px 8px; border-radius: var(--r-xs);">EXP-032 · ADAPTIVE-GATE</span>
<span style="font-size: 12px; color: var(--t4);">2026-03-07</span>
</div>
<span class="tier-chip tb-t2" style="margin: 0; padding: 2px 10px; font-size: 10px; text-transform: uppercase;">
<span class="tier-dot" style="background:#10b981"></span>
Verdict GO
</span>
</div>
<h3 style="font-size: 18px; font-weight: 600; color: var(--ts); margin: 0 0 10px 0;">
Adaptive Gate: Pipeline Governance & PASS/BLOCK Discrimination
</h3>
<p style="font-size: 13.5px; color: var(--t3); line-height: 1.6; margin: 0 0 20px 0; max-width: 800px;">
Accepted legacy-replay parity anchor for the RExSyn + NNSL governance chain. The benchmark spans two labeled control classes expanded into six arm payloads; current-regeneration outputs are diagnostic-only and excluded from success claims.
<strong style="color:var(--ts); display: block; margin-top: 6px;">Result: Clinical parity is GO (PASS->PASS, BLOCK->BLOCK, dangerous false-pass 0.0), but LawBinder still returns ESCALATE on both classes. Shadow hints are non-binding, strict-evidence recheck still fails, and the replay remains governance-only rather than a production gate activation.</strong>
</p>
<div style="display: flex; gap: 12px; flex-wrap: wrap; border-top: 1px solid var(--border); padding-top: 20px;">
<button class="eq-slot-btn" onclick="openJsonInspector('bav-exp-032'); return false;" style="cursor: pointer; display: flex; align-items: center; gap: 8px; text-decoration: none; font-family: 'JetBrains Mono', monospace; font-size: 12px; color: #a78bfa; background: rgba(167, 139, 250, 0.05); border: 1px solid rgba(167, 139, 250, 0.2); padding: 8px 16px; border-radius: var(--r-md); transition: all 0.15s;" onmouseover="this.style.background='rgba(167, 139, 250, 0.12)'" onmouseout="this.style.background='rgba(167, 139, 250, 0.05)'">
<svg width="12" height="12" viewBox="0 0 12 12" fill="none" stroke="currentColor" stroke-width="1.8">
<circle cx="5" cy="5" r="3.5"/><path d="M7.5 7.5l3 3" stroke-linecap="round"/>
</svg>
Inspect
</button>
<a class="eq-slot-btn" href="https://flamehaven.space/writing/orchestrating-alphafold-3-2-with-python-handling-ai-hallucinations-using-adapter-patter-trinity-protocol-part-1/" target="_blank" rel="noopener" style="display: flex; align-items: center; gap: 8px; text-decoration: none; font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--t3); background: rgba(255,255,255,0.03); border: 1px solid var(--border); padding: 8px 16px; border-radius: var(--r-md); transition: all 0.15s;">
<svg width="12" height="12" viewBox="0 0 12 12" fill="none" stroke="currentColor" stroke-width="1.8">
<path d="M1 3h10M1 6h7M1 9h5" stroke-linecap="round"/>
</svg>
Note
</a>
</div>
</article>
<!-- CARD 1: EXP-031 OOD-ABLATION (Multi-Model Disagreement) -->
<article class="bav-card" id="bav-card-0031" data-status="published" style="display: flex; flex-direction: column; background: rgba(255,255,255,0.01); border: 1px solid var(--border); border-radius: var(--r-xl); padding: 24px; transition: border-color 0.2s, transform 0.2s; position: relative;">
<div style="display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; flex-wrap: wrap; gap: 8px;">
<div style="display: flex; align-items: center; gap: 10px;">
<span style="font-family: 'JetBrains Mono', monospace; font-size: 11px; font-weight: 600; color: #eab308; background: rgba(234, 179, 8, 0.1); border: 1px solid rgba(234, 179, 8, 0.2); padding: 2px 8px; border-radius: var(--r-xs);">EXP-031 · OOD-ABLATION</span>
<span style="font-size: 12px; color: var(--t4);">2026-02-09</span>
</div>
<span class="tier-chip tb-t2" style="margin: 0; padding: 2px 10px; font-size: 10px; text-transform: uppercase;">
<span class="tier-dot" style="background:#eab308"></span>
Keep Observer
</span>
</div>
<h3 style="font-size: 18px; font-weight: 600; color: var(--ts); margin: 0 0 10px 0;">
Trinity Protocol: Multi-Model Disagreement Under Out-of-Distribution Stress
</h3>
<p style="font-size: 13.5px; color: var(--t3); line-height: 1.6; margin: 0 0 20px 0; max-width: 800px;">
Cross-checked AF2 / AF3 / Boltz-2 / Chai-1 artifact metrics on an out-of-distribution protein-ligand target across three observer-only validator arms. AlphaGenome participated as a redesign engine, not as a direct validator score source. Adding independent validators <em>increased</em> structural disagreement rather than reducing it — exposing topology conflict invisible to any single model.
<strong style="color:var(--ts); display: block; margin-top: 6px;">Result: All arms returned "Unverified (Drift Detected)" / failed convergence. Manual validator metrics were preserved as observer-only evidence, promotion evidence remained insufficient, and the disposition stayed KEEP_OBSERVER (do not target).</strong>
</p>
<div style="display: flex; gap: 12px; flex-wrap: wrap; border-top: 1px solid var(--border); padding-top: 20px;">
<button class="eq-slot-btn" onclick="openJsonInspector('bav-exp-031'); return false;" style="cursor: pointer; display: flex; align-items: center; gap: 8px; text-decoration: none; font-family: 'JetBrains Mono', monospace; font-size: 12px; color: #a78bfa; background: rgba(167, 139, 250, 0.05); border: 1px solid rgba(167, 139, 250, 0.2); padding: 8px 16px; border-radius: var(--r-md); transition: all 0.15s;" onmouseover="this.style.background='rgba(167, 139, 250, 0.12)'" onmouseout="this.style.background='rgba(167, 139, 250, 0.05)'">
<svg width="12" height="12" viewBox="0 0 12 12" fill="none" stroke="currentColor" stroke-width="1.8">
<circle cx="5" cy="5" r="3.5"/><path d="M7.5 7.5l3 3" stroke-linecap="round"/>
</svg>
Inspect
</button>
<a class="eq-slot-btn" href="https://flamehaven.space/writing/when-ai-models-fight-truth-wins-the-eureka-moment-for-tired-researchers/" target="_blank" rel="noopener" style="display: flex; align-items: center; gap: 8px; text-decoration: none; font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--t3); background: rgba(255,255,255,0.03); border: 1px solid var(--border); padding: 8px 16px; border-radius: var(--r-md); transition: all 0.15s;">
<svg width="12" height="12" viewBox="0 0 12 12" fill="none" stroke="currentColor" stroke-width="1.8">
<path d="M1 3h10M1 6h7M1 9h5" stroke-linecap="round"/>
</svg>
Note
</a>
<a class="eq-slot-btn" href="https://github.com/flamehaven01/Flamehaven-Verification-Ledger/tree/main/bav/exp-031/reproduce" target="_blank" rel="noopener" title="Independent re-run scaffold: input.fasta + models + recorded reference run. Re-foldable on public AlphaFold; deviations expected (model non-determinism)." style="display: flex; align-items: center; gap: 8px; text-decoration: none; font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--t3); background: rgba(255,255,255,0.03); border: 1px solid var(--border); padding: 8px 16px; border-radius: var(--r-md); transition: all 0.15s;">
<svg width="12" height="12" viewBox="0 0 12 12" fill="none" stroke="currentColor" stroke-width="1.8">
<path d="M2 3l3 3-3 3M6 9h4" stroke-linecap="round"/>
</svg>
Reproduce
</a>
<span class="eq-slot-btn disabled" style="display: flex; align-items: center; gap: 8px; font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--t5); background: transparent; border: 1px solid rgba(255,255,255,0.05); padding: 8px 16px; border-radius: var(--r-md); cursor: not-allowed; opacity: 0.4;">
<svg width="12" height="12" viewBox="0 0 12 12" fill="none" stroke="currentColor" stroke-width="1.8">
<path d="M2 1h8a1 1 0 011 1v8a1 1 0 01-1 1H2a1 1 0 01-1-1V2a1 1 0 011-1zM4 4h4M4 7h4" stroke-linecap="round"/>
</svg>
[Paper]
</span>
</div>
</article>
<!-- CARD 0: EXP-028 POST-OVERLAY (Honesty Test) -->
<article class="bav-card" id="bav-card-0028" data-status="published" style="display: flex; flex-direction: column; background: rgba(255,255,255,0.01); border: 1px solid var(--border); border-radius: var(--r-xl); padding: 24px; transition: border-color 0.2s, transform 0.2s; position: relative;">
<div style="display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; flex-wrap: wrap; gap: 8px;">
<div style="display: flex; align-items: center; gap: 10px;">
<span style="font-family: 'JetBrains Mono', monospace; font-size: 11px; font-weight: 600; color: #ef4444; background: rgba(239, 68, 68, 0.1); border: 1px solid rgba(239, 68, 68, 0.2); padding: 2px 8px; border-radius: var(--r-xs);">EXP-028 · POST-OVERLAY</span>
<span style="font-size: 12px; color: var(--t4);">2026-02-05</span>
</div>
<span class="tier-chip tb-t2" style="margin: 0; padding: 2px 10px; font-size: 10px; text-transform: uppercase;">
<span class="tier-dot" style="background:#ef4444"></span>
Honest Abstain
</span>
</div>
<h3 style="font-size: 18px; font-weight: 600; color: var(--ts); margin: 0 0 10px 0;">
The Honesty Test: It Looked Perfect, Then It Failed
</h3>
<p style="font-size: 13.5px; color: var(--t3); line-height: 1.6; margin: 0 0 20px 0; max-width: 800px;">
Integrating AlphaFold 3 + AlphaGenome produced confident, well-calibrated outputs — yet the honesty check (SR9 cross-domain resonance, DI2 logical drift) flagged contradictory reasoning on a very small pilot.
<strong style="color:var(--ts); display: block; margin-top: 6px;">Result: Brier 0.0056 and AUC 1.0 are real, but phase1 used only 6 samples, phase3 tested only 2, and the deployed gate fell back from 0.5 to 0.075 with Youden J = 0. The honest result is not "perfect performance." It is a tiny fallback-gated pilot that refuses to overclaim.</strong>
</p>
<div style="display: flex; gap: 12px; flex-wrap: wrap; border-top: 1px solid var(--border); padding-top: 20px;">
<button class="eq-slot-btn" onclick="openJsonInspector('bav-exp-028'); return false;" style="cursor: pointer; display: flex; align-items: center; gap: 8px; text-decoration: none; font-family: 'JetBrains Mono', monospace; font-size: 12px; color: #a78bfa; background: rgba(167, 139, 250, 0.05); border: 1px solid rgba(167, 139, 250, 0.2); padding: 8px 16px; border-radius: var(--r-md); transition: all 0.15s;" onmouseover="this.style.background='rgba(167, 139, 250, 0.12)'" onmouseout="this.style.background='rgba(167, 139, 250, 0.05)'">
<svg width="12" height="12" viewBox="0 0 12 12" fill="none" stroke="currentColor" stroke-width="1.8"><circle cx="5" cy="5" r="3.5"/><path d="M7.5 7.5l3 3" stroke-linecap="round"/></svg>
Inspect
</button>
<a class="eq-slot-btn" href="https://flamehaven.space/writing/i-integrated-alphafolder3-alphagenome-it-looked-perfect-then-it-failed-the-honesty-test/" target="_blank" rel="noopener" style="display: flex; align-items: center; gap: 8px; text-decoration: none; font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--t3); background: rgba(255,255,255,0.03); border: 1px solid var(--border); padding: 8px 16px; border-radius: var(--r-md); transition: all 0.15s;">
<svg width="12" height="12" viewBox="0 0 12 12" fill="none" stroke="currentColor" stroke-width="1.8"><path d="M1 3h10M1 6h7M1 9h5" stroke-linecap="round"/></svg>
Note
</a>
</div>
</article>
<!-- CARD 0b: EXP-005~007 / SEP Upadacitinib (Truthful Null) -->
<article class="bav-card" id="bav-card-0005" data-status="published" style="display: flex; flex-direction: column; background: rgba(255,255,255,0.01); border: 1px solid var(--border); border-radius: var(--r-xl); padding: 24px; transition: border-color 0.2s, transform 0.2s; position: relative;">
<div style="display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; flex-wrap: wrap; gap: 8px;">
<div style="display: flex; align-items: center; gap: 10px;">
<span style="font-family: 'JetBrains Mono', monospace; font-size: 11px; font-weight: 600; color: #10b981; background: rgba(16, 185, 129, 0.1); border: 1px solid rgba(16, 185, 129, 0.2); padding: 2px 8px; border-radius: var(--r-xs);">EXP-005~007 · SEP UPADACITINIB</span>
<span style="font-size: 12px; color: var(--t4);">2026-01-24</span>
</div>
<span class="tier-chip tb-t2" style="margin: 0; padding: 2px 10px; font-size: 10px; text-transform: uppercase;">
<span class="tier-dot" style="background:#10b981"></span>
Truthful Null
</span>
</div>
<h3 style="font-size: 18px; font-weight: 600; color: var(--ts); margin: 0 0 10px 0;">
How Failing in 2 Hours Saved 8 Months — Upadacitinib Topical Formulation
</h3>
<p style="font-size: 13.5px; color: var(--t3); line-height: 1.6; margin: 0 0 20px 0; max-width: 800px;">
Early RExSyn line-first control runs screened three lipid-based carriers (SLN, NLC, Liposomal Gel) for topical Upadacitinib, with manual fact injection present upstream and the NNSL SR9 honesty gate (≥ 0.80) deciding eligibility.
<strong style="color:var(--ts); display: block; margin-top: 6px;">Result: all three carriers scored SR9 ~0.23–0.28 and were rejected. The useful finding is the honest null, not a fully autonomous pipeline win: the public record now exposes the manual-assisted provenance, the validator split, and the fact that the active decision window was ~2 hours after separate literature pre-work.</strong>
</p>
<div style="display: flex; gap: 12px; flex-wrap: wrap; border-top: 1px solid var(--border); padding-top: 20px;">
<button class="eq-slot-btn" onclick="openJsonInspector('bav-exp-005'); return false;" style="cursor: pointer; display: flex; align-items: center; gap: 8px; text-decoration: none; font-family: 'JetBrains Mono', monospace; font-size: 12px; color: #a78bfa; background: rgba(167, 139, 250, 0.05); border: 1px solid rgba(167, 139, 250, 0.2); padding: 8px 16px; border-radius: var(--r-md); transition: all 0.15s;" onmouseover="this.style.background='rgba(167, 139, 250, 0.12)'" onmouseout="this.style.background='rgba(167, 139, 250, 0.05)'">
<svg width="12" height="12" viewBox="0 0 12 12" fill="none" stroke="currentColor" stroke-width="1.8"><circle cx="5" cy="5" r="3.5"/><path d="M7.5 7.5l3 3" stroke-linecap="round"/></svg>
Inspect
</button>
<a class="eq-slot-btn" href="https://flamehaven.space/writing/how-failing-in-2-hours-saved-8-months-of-drug-rd-engineering-a-truthful-null-with-upadacitinib/" target="_blank" rel="noopener" style="display: flex; align-items: center; gap: 8px; text-decoration: none; font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--t3); background: rgba(255,255,255,0.03); border: 1px solid var(--border); padding: 8px 16px; border-radius: var(--r-md); transition: all 0.15s;">
<svg width="12" height="12" viewBox="0 0 12 12" fill="none" stroke="currentColor" stroke-width="1.8"><path d="M1 3h10M1 6h7M1 9h5" stroke-linecap="round"/></svg>
Note
</a>
</div>
</article>
<!-- CARD 5: BAV ARCHIVE (Foundational Iterations EXP-001~030) -->
<article class="bav-card" id="bav-card-archive" data-status="archived" style="display: flex; flex-direction: column; background: rgba(255,255,255,0.01); border: 1px solid var(--border); border-radius: var(--r-xl); padding: 24px; transition: border-color 0.2s, transform 0.2s; position: relative;">
<div style="display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; flex-wrap: wrap; gap: 8px;">
<div style="display: flex; align-items: center; gap: 10px;">
<span style="font-family: 'JetBrains Mono', monospace; font-size: 11px; font-weight: 600; color: var(--t4); background: rgba(255,255,255,0.02); border: 1px solid var(--border); padding: 2px 8px; border-radius: var(--r-xs);">EXP-001~030 · ARCHIVE</span>
<span style="font-size: 12px; color: var(--t4);">2026-01~04</span>
</div>
<span class="tier-chip tb-t4" style="margin: 0; padding: 2px 10px; font-size: 10px; text-transform: uppercase;">
<span class="tier-dot" style="background:#6b7280"></span>
Archived
</span>
</div>
<h3 style="font-size: 18px; font-weight: 600; color: var(--ts); margin: 0 0 10px 0;">
Foundational Iterations (EXP-001 ~ 030)
</h3>
<p style="font-size: 13.5px; color: var(--t3); line-height: 1.6; margin: 0 0 16px 0; max-width: 800px;">
The early RExSyn / NNSL iteration sequence that established the trinity-consensus, multimodal, and governance primitives. Experiments EXP-028 and EXP-031~034 graduated from this lineage into full ledger cards above. Archived as historical record — reproducibility / governance only.
</p>
<div style="margin-top: 8px; border: 1px solid var(--border); border-radius: var(--r-md); background: rgba(0,0,0,0.15); overflow: hidden;">
<div style="display: flex; align-items: center; padding: 10px 16px; border-bottom: 1px solid var(--border); background: rgba(255,255,255,0.02);">
<span style="font-family: 'JetBrains Mono', monospace; font-size: 11px; font-weight: 600; color: var(--ts); display: flex; align-items: center; gap: 6px;">
<span style="width: 6px; height: 6px; border-radius: 50%; background: #6b7280; display: inline-block;"></span>
Foundational Iteration Registry (26 experiments)
</span>
</div>
<div id="bav-archive-list" style="max-height: 240px; overflow-y: auto; padding: 8px; display: flex; flex-direction: column; gap: 6px;">
<!-- Populated dynamically from bav/archive/manifest.json -->
</div>
</div>
</article>
</div>
</div>
<!-- REPORT VIEWER SECTION -->
<div class="project-dashboard" id="report-viewer" style="display: none;">
<div class="viewer-frame-header">
<div class="viewer-frame-title-wrap">
<div class="viewer-frame-eyebrow" id="viewer-eyebrow">Bioscience Compliance · 2026-05-18</div>
<h2 class="viewer-frame-title" id="viewer-title">yorkeccak/bio</h2>
</div>
<div style="display:flex;align-items:center;gap:6px;">
<!-- Social share icons in frame header — applies to all reports without modifying HTML sources -->
<a id="btn-share-fb" href="#" target="_blank" rel="noopener" title="Share on Facebook"
style="display:flex;align-items:center;justify-content:center;width:28px;height:28px;border:1px solid var(--border);border-radius:var(--r-sm);color:var(--t4);transition:all .15s;"
onmouseover="this.style.borderColor='var(--border-h)';this.style.color='var(--ts)'"
onmouseout="this.style.borderColor='var(--border)';this.style.color='var(--t4)'">
<svg width="10" height="10" viewBox="0 0 24 24" fill="currentColor"><path d="M24 12.073c0-6.627-5.373-12-12-12s-12 5.373-12 12c0 5.99 4.388 10.954 10.125 11.854v-8.385H7.078v-3.47h3.047V9.43c0-3.007 1.792-4.669 4.533-4.669 1.312 0 2.686.235 2.686.235v2.953H15.83c-1.491 0-1.956.925-1.956 1.874v2.25h3.328l-.532 3.47h-2.796v8.385C19.612 23.027 24 18.062 24 12.073z"/></svg>
</a>
<a id="btn-share-li" href="#" target="_blank" rel="noopener" title="Share on LinkedIn"
style="display:flex;align-items:center;justify-content:center;width:28px;height:28px;border:1px solid var(--border);border-radius:var(--r-sm);color:var(--t4);transition:all .15s;"
onmouseover="this.style.borderColor='var(--border-h)';this.style.color='var(--ts)'"
onmouseout="this.style.borderColor='var(--border)';this.style.color='var(--t4)'">
<svg width="10" height="10" viewBox="0 0 24 24" fill="currentColor"><path d="M20.447 20.452h-3.554v-5.569c0-1.328-.027-3.037-1.852-3.037-1.853 0-2.136 1.445-2.136 2.939v5.667H9.351V9h3.414v1.561h.046c.477-.9 1.637-1.85 3.37-1.85 3.601 0 4.267 2.37 4.267 5.455v6.286zM5.337 7.433c-1.144 0-2.063-.926-2.063-2.065 0-1.138.92-2.063 2.063-2.063 1.14 0 2.064.925 2.064 2.063 0 1.139-.925 2.065-2.064 2.065zm1.782 13.019H3.555V9h3.564v11.452zM22.225 0H1.771C.792 0 0 .774 0 1.729v20.542C0 23.227.792 24 1.771 24h20.451C23.2 24 24 23.227 24 22.271V1.729C24 .774 23.2 0 22.225 0h.003z"/></svg>
</a>
<a id="btn-share-x" href="#" target="_blank" rel="noopener" title="Share on X"
style="display:flex;align-items:center;justify-content:center;width:28px;height:28px;border:1px solid var(--border);border-radius:var(--r-sm);color:var(--t4);transition:all .15s;"
onmouseover="this.style.borderColor='var(--border-h)';this.style.color='var(--ts)'"
onmouseout="this.style.borderColor='var(--border)';this.style.color='var(--t4)'">
<svg width="10" height="10" viewBox="0 0 24 24" fill="currentColor"><path d="M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-4.714-6.231-5.401 6.231H2.744l7.73-8.835L1.254 2.25H8.08l4.259 5.63 5.905-5.63zm-1.161 17.52h1.833L7.084 4.126H5.117z"/></svg>
</a>
<a id="btn-share-email" href="#" title="Share via Email"
style="display:flex;align-items:center;justify-content:center;width:28px;height:28px;border:1px solid var(--border);border-radius:var(--r-sm);color:var(--t4);transition:all .15s;"
onmouseover="this.style.borderColor='var(--border-h)';this.style.color='var(--ts)'"
onmouseout="this.style.borderColor='var(--border)';this.style.color='var(--t4)'">
<svg width="10" height="10" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><rect x="2" y="4" width="20" height="16" rx="2"/><path d="M2 7l10 7 10-7" stroke-linecap="round"/></svg>
</a>
<button id="btn-share-copy" title="Copy Link" onclick="copyReportLink()"
style="display:flex;align-items:center;justify-content:center;width:28px;height:28px;border:1px solid var(--border);border-radius:var(--r-sm);color:var(--t4);background:transparent;cursor:pointer;transition:all .15s;"
onmouseover="this.style.borderColor='var(--border-h)';this.style.color='var(--ts)'"
onmouseout="this.style.borderColor='var(--border)';this.style.color='var(--t4)'">
<svg width="11" height="11" viewBox="0 0 12 12" fill="none" stroke="currentColor" stroke-width="1.5"><rect x="4" y="4" width="7" height="7" rx="1"/><path d="M8 4V2a1 1 0 00-1-1H2a1 1 0 00-1 1v5a1 1 0 001 1h2" stroke-linecap="round"/></svg>
</button>
<div style="width:1px;height:16px;background:var(--border);margin:0 2px;"></div>
<button class="viewer-close-btn" onclick="closeReport(event)">
<svg viewBox="0 0 10 10" fill="none" stroke="currentColor" stroke-width="1.8">
<path d="M2 2l6 6M8 2L2 8" stroke-linecap="round"/>
</svg>
Close Report
</button>
</div>
</div>
<div class="viewer-layout">
<!-- Left Sticky Action Box -->
<div class="viewer-sidebar-panel">
<div class="viewer-action-box">
<div class="viewer-action-title">Connections</div>
<a class="viewer-btn" id="btn-article" href="#" target="_blank" rel="noopener" style="display:none;">
<svg viewBox="0 0 12 12" fill="none" stroke="currentColor" stroke-width="1.8">
<path d="M1 3h10M1 6h7M1 9h5" stroke-linecap="round"/>
</svg>
Read Article
</a>
<a class="viewer-btn" id="btn-view-tab" href="#" target="_blank" rel="noopener">
<svg viewBox="0 0 10 10" fill="none" stroke="currentColor" stroke-width="1.8">
<path d="M1 9l8-8M4 1h5v5" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
Open in Tab
</a>
<a class="viewer-btn" id="btn-deep-dive" href="#" target="_blank" rel="noopener" style="background: rgba(139, 92, 246, 0.15); border-color: rgba(139, 92, 246, 0.3); color: #c4b5fd; display: none;">
<svg viewBox="0 0 12 12" fill="none" stroke="currentColor" stroke-width="1.5">
<path d="M2 1h8a1 1 0 011 1v8a1 1 0 01-1 1H2a1 1 0 01-1-1V2a1 1 0 011-1zM4 4h4M4 7h4" stroke-linecap="round"/>
</svg>
Case Study Brief
</a>
<a class="viewer-btn" id="btn-dl-html" href="#" download style="display:none;">
<svg viewBox="0 0 10 10" fill="none" stroke="currentColor" stroke-width="1.8">
<path d="M5 1v6M2 5l3 3 3-3M2 9h6" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
Download HTML
</a>
<a class="viewer-btn" id="btn-dl-md" href="#" download>
<svg viewBox="0 0 10 10" fill="none" stroke="currentColor" stroke-width="1.8">
<path d="M5 1v6M2 5l3 3 3-3M2 9h6" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
Download MD
</a>
<a class="viewer-btn" id="btn-dl-yaml" href="#" download style="display:none;">
<svg viewBox="0 0 10 10" fill="none" stroke="currentColor" stroke-width="1.8">
<path d="M5 1v6M2 5l3 3 3-3M2 9h6" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
Freeze Manifest
</a>
<a class="viewer-btn" id="btn-dl-txt" href="#" download style="display:none;">
<svg viewBox="0 0 10 10" fill="none" stroke="currentColor" stroke-width="1.8">
<path d="M5 1v6M2 5l3 3 3-3M2 9h6" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
Freeze Receipt
</a>
<a class="viewer-btn" id="btn-dl-json" href="#" download>
<svg viewBox="0 0 10 10" fill="none" stroke="currentColor" stroke-width="1.8">
<path d="M5 1v6M2 5l3 3 3-3M2 9h6" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
Download JSON
</a>
<a class="viewer-btn" id="btn-dl-pdf" href="#" download>
<svg viewBox="0 0 10 10" fill="none" stroke="currentColor" stroke-width="1.8">
<path d="M5 1v6M2 5l3 3 3-3M2 9h6" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
Download PDF
</a>
</div>
</div>
<!-- Right Frame Column -->
<div class="viewer-frame-panel">
<div class="viewer-iframe-container">
<iframe id="report-iframe" class="viewer-iframe" src="about:blank"></iframe>
</div>
</div>
</div>
</div>
<!-- ── STEM-BIO-AI COLLECTION ──────────────────────────────────────────── -->
<section class="collection-section" id="coll-bsc" data-coll="bsc">
<!-- BSC PROJECT DASHBOARD -->
<div class="project-dashboard" id="dashboard-bsc" style="display: block; margin-bottom: 32px;">
<div class="project-dashboard-header">
<div class="project-dashboard-eyebrow">Bioscience Compliance (BSC)</div>
<h2 class="project-dashboard-title">Bioscience Repository Compliance Ledger</h2>
<p class="project-dashboard-desc">
Deterministic static scanning auditing bioscience AI surfaces. Evaluates clinical boundaries, safety limitations, and license compliance to enforce safe, transparent distribution.
</p>
</div>