Source for Executive SummarySource: Karadag production model and reviewed compute evidenceTables: src/model.js, projects/karadag-investor-data-room/research/normalized/turkiye-sovereign-compute-2026.json, projects/karadag-investor-data-room/research/reports/sovereign-compute-commercial/artifact.jsonReads the exact canonical report snapshot assembled from the production financial engine and normalized public-price evidence.
-- Read-only audit bridge for the canonical portable report snapshot.
--
-- The upstream calculations are executed by src/model.js and assembled by
-- scripts/build-sovereign-compute-report.mjs. This DuckDB query exposes the
-- exact reviewed rows embedded in artifact.json without recomputing or
-- changing their meaning.
WITH artifact AS (
SELECT snapshot.datasets AS datasets
FROM read_json_auto(
'projects/karadag-investor-data-room/research/reports/'
'sovereign-compute-commercial/artifact.json',
maximum_object_size = 10485760
)
)
SELECT
'headline' AS dataset_name,
to_json(datasets.headline) AS reviewed_rows
FROM artifact
UNION ALL
SELECT
'horizonOutcomes' AS dataset_name,
to_json(datasets.horizonOutcomes) AS reviewed_rows
FROM artifact
UNION ALL
SELECT
'hardwareSensitivity' AS dataset_name,
to_json(datasets.hardwareSensitivity) AS reviewed_rows
FROM artifact
UNION ALL
SELECT
'billingInterpretations' AS dataset_name,
to_json(datasets.billingInterpretations) AS reviewed_rows
FROM artifact
UNION ALL
SELECT
'comparators' AS dataset_name,
to_json(datasets.comparators) AS reviewed_rows
FROM artifact;