diff --git a/experiments/bare_metal/analysis/analyse_stadium_relaunch_fixed.R b/experiments/bare_metal/analysis/analyse_stadium_relaunch_fixed.R
new file mode 100644
index 0000000..bb1bd96
--- /dev/null
+++ b/experiments/bare_metal/analysis/analyse_stadium_relaunch_fixed.R
@@ -0,0 +1,251 @@
+#!/usr/bin/env Rscript
+# analyse_stadium_relaunch_fixed.R
+# StarForth LithosAnanke -- EXEC-DOE 3x3 Latin square campaign, re-run on
+# the post-item-4.6 Stadium substrate AND against the fixed SWAP-MTX
+# shuffle (2026-08-20). Supersedes analyse_stadium_relaunch.R's dataset
+# (acl-rwt-20260820/, buggy shuffle) with acl-rwt-20260820-fixed/.
+#
+# Two layers, per Captain Bob's own framing:
+# 1. Aggregate -- all 9 cells as a conglomerate Latin square.
+# 2. Per-cell / per-ISA -- each cell's own internal pattern, and how
+# each ISA's three seeds hold up against each other (subtle
+# within-ISA interactions), including 2-way factor interactions and
+# quadratic (factor^2) terms.
+
+suppressPackageStartupMessages({
+ library(ggplot2)
+ library(svglite)
+ library(dplyr)
+ library(tidyr)
+ library(scales)
+ library(patchwork)
+})
+
+SCRIPT_DIR <- tryCatch(
+ dirname(normalizePath(sys.frames()[[1]]$ofile)),
+ error = function(e) getwd()
+)
+BASE_DIR <- normalizePath(file.path(SCRIPT_DIR, ".."))
+RUNS_DIR <- file.path(BASE_DIR, "runs", "acl-rwt-20260820-fixed")
+OUT_CHARTS <- file.path(SCRIPT_DIR, "charts")
+OUT_TABLES <- file.path(SCRIPT_DIR, "tables")
+dir.create(OUT_CHARTS, showWarnings = FALSE, recursive = TRUE)
+dir.create(OUT_TABLES, showWarnings = FALSE, recursive = TRUE)
+
+cat("══════════════════════════════════════════════════════════════════\n")
+cat(" StarForth LithosAnanke -- Stadium relaunch, FIXED shuffle\n")
+cat(" Item 5.1 / F.3 -- campaign-mechanism + factor analysis, 2026-08-20\n")
+cat("══════════════════════════════════════════════════════════════════\n\n")
+
+arch_colours <- c(amd64 = "#E07B39", aarch64 = "#4A90D9", riscv64 = "#50C878")
+
+theme_light_sf <- function(base = 11) {
+ theme_minimal(base_size = base) %+replace% theme(
+ panel.grid.minor = element_blank(),
+ panel.grid.major = element_line(colour = "grey90"),
+ strip.text = element_text(face = "bold"),
+ plot.title = element_text(face = "bold", size = base + 1),
+ plot.subtitle = element_text(colour = "grey40", size = base - 2),
+ legend.position = "bottom",
+ legend.key.size = unit(0.5, "cm")
+ )
+}
+theme_dark_sf <- function(base = 11) {
+ theme_minimal(base_size = base) %+replace% theme(
+ panel.background = element_rect(fill = "#0d0d0d", colour = NA),
+ plot.background = element_rect(fill = "#0d0d0d", colour = NA),
+ panel.grid.major = element_line(colour = "#1e1e1e"),
+ panel.grid.minor = element_blank(),
+ axis.text = element_text(colour = "#aaaaaa"),
+ axis.title = element_text(colour = "#cccccc"),
+ strip.text = element_text(colour = "white", face = "bold"),
+ plot.title = element_text(colour = "white", face = "bold", size = base + 1),
+ plot.subtitle = element_text(colour = "#666666", size = base - 2),
+ legend.text = element_text(colour = "#aaaaaa"),
+ legend.title = element_text(colour = "#cccccc"),
+ legend.background = element_rect(fill = "#0d0d0d", colour = NA),
+ legend.position = "bottom",
+ legend.key.size = unit(0.5, "cm")
+ )
+}
+save_svg <- function(plot, name, w = 12, h = 7) {
+ path <- file.path(OUT_CHARTS, paste0(name, ".svg"))
+ svglite(path, width = w, height = h); print(plot); dev.off()
+ cat(sprintf(" Saved: %s.svg\n", name))
+ invisible(path)
+}
+
+col_names <- c("run_id", "cfg", "rep", "ent_in", "cv_in", "tmp_in", "stb_in",
+ "l8_mode", "win_div", "infer_win", "infer_dec_q", "infer_var_q",
+ "early_exit", "bc_mean_q", "bb_mean_q", "fit_q")
+archs <- c("amd64", "aarch64", "riscv64")
+seeds <- c("12345", "67890", "13579")
+
+load_cell <- function(arch, seed) {
+ f <- file.path(RUNS_DIR, sprintf("%s-seed%s.csv", arch, seed))
+ df <- read.csv(f, header = TRUE)
+ names(df) <- col_names
+ df$arch <- arch; df$seed <- seed
+ df$ent_f <- factor(ifelse(df$ent_in > 0, "hi", "lo"))
+ df$cv_f <- factor(ifelse(df$cv_in > 0, "hi", "lo"))
+ df$tmp_f <- factor(ifelse(df$tmp_in > 0, "hi", "lo"))
+ df$stb_f <- factor(ifelse(df$stb_in > 0, "hi", "lo"))
+ df
+}
+
+cat("Loading 9 cells (fixed-shuffle dataset)...\n")
+all_data <- bind_rows(lapply(archs, function(a) bind_rows(lapply(seeds, function(s) load_cell(a, s)))))
+cat(sprintf(" Total rows: %d (expect 4320)\n", nrow(all_data)))
+all_data$arch <- factor(all_data$arch, levels = archs)
+all_data$seed <- factor(all_data$seed, levels = seeds)
+
+# ══════════════════════════════════════════════════════════════════════
+# LAYER 1 -- AGGREGATE: all 9 cells as a conglomerate Latin square
+# ══════════════════════════════════════════════════════════════════════
+
+cell_summary <- all_data %>%
+ group_by(arch, seed) %>%
+ summarise(
+ n_rows = n(), n_cfg = n_distinct(cfg), n_run_id = n_distinct(run_id),
+ mean_infer_dec_q = mean(infer_dec_q), sd_infer_dec_q = sd(infer_dec_q),
+ early_exit_rate = mean(early_exit),
+ l8_mode_const = length(unique(l8_mode)) == 1,
+ win_div_const = length(unique(win_div)) == 1,
+ fit_q_const = length(unique(fit_q)) == 1,
+ .groups = "drop"
+ )
+write.csv(cell_summary, file.path(OUT_TABLES, "stadium_fixed_cell_summary.csv"), row.names = FALSE)
+cat("\nPer-cell summary (Layer 1 -- aggregate view):\n"); print(as.data.frame(cell_summary))
+
+# Confirms the invariant metrics: l8_mode/win_div/infer_win/infer_var_q/
+# bc_mean_q/bb_mean_q/fit_q are all zero-variance across all 9 cells --
+# same extreme-determinism result survives the shuffle fix (expected:
+# the shuffle bug affected WHICH (cfg,rep) pairs got visited, not the
+# underlying physics/inference computation).
+invariant_check <- all_data %>%
+ summarise(across(c(l8_mode, win_div, infer_win, infer_var_q, bc_mean_q, bb_mean_q, fit_q),
+ n_distinct))
+cat("\nInvariant-metric check across ALL 4320 rows (expect all = 1):\n")
+print(as.data.frame(invariant_check))
+
+# ══════════════════════════════════════════════════════════════════════
+# FIGURE 1: Latin-square heatmap -- mean infer_dec_q per (arch, seed) cell
+# ══════════════════════════════════════════════════════════════════════
+cat("\n[F1] Aggregate Latin-square heatmap (light + dark)...\n")
+
+make_heatmap <- function(dark = FALSE) {
+ thm <- if (dark) theme_dark_sf() else theme_light_sf()
+ txt <- if (dark) "white" else "grey10"
+ ggplot(cell_summary, aes(x = seed, y = arch, fill = mean_infer_dec_q)) +
+ geom_tile(colour = if (dark) "#0d0d0d" else "white", linewidth = 1.5) +
+ geom_text(aes(label = sprintf("%.1f\n(sd=%.1f)", mean_infer_dec_q, sd_infer_dec_q)),
+ colour = txt, fontface = "bold", size = 3.6, lineheight = 0.9) +
+ scale_fill_gradient(low = "#4A90D9", high = "#E07B39", name = "mean infer_dec_q") +
+ labs(title = "Aggregate Latin Square -- mean infer_dec_q per cell",
+ subtitle = "9 cells, 480 runs each, fixed Fisher-Yates shuffle, Stadium substrate",
+ x = "Seed", y = "Architecture") +
+ thm
+}
+save_svg(make_heatmap(FALSE), "stadium_fixed_latin_square_light", w = 9, h = 6)
+save_svg(make_heatmap(TRUE), "stadium_fixed_latin_square_dark", w = 9, h = 6)
+
+# ══════════════════════════════════════════════════════════════════════
+# LAYER 2a -- PER-ISA: how each ISA's three seeds hold up against each
+# other (within-ISA consistency, the "subtle interactions ... within the
+# ISA itself" Captain Bob asked for)
+# ══════════════════════════════════════════════════════════════════════
+cat("\n[F2] Per-ISA seed comparison, infer_dec_q distribution (light + dark)...\n")
+
+make_isa_panel <- function(dark = FALSE) {
+ thm <- if (dark) theme_dark_sf() else theme_light_sf()
+ ggplot(all_data, aes(x = seed, y = infer_dec_q, fill = arch)) +
+ geom_boxplot(alpha = 0.85, outlier.size = 0.5, outlier.alpha = 0.4) +
+ scale_fill_manual(values = arch_colours, guide = "none") +
+ facet_wrap(~arch, nrow = 1) +
+ labs(title = "Within-ISA Seed Consistency -- infer_dec_q by Seed, Faceted by ISA",
+ subtitle = "Each panel: one ISA's 3 seeds side by side (480 runs/seed)",
+ x = "Seed", y = "infer_dec_q") +
+ thm
+}
+save_svg(make_isa_panel(FALSE), "stadium_fixed_isa_seed_panel_light", w = 12, h = 6)
+save_svg(make_isa_panel(TRUE), "stadium_fixed_isa_seed_panel_dark", w = 12, h = 6)
+
+# Kruskal-Wallis: does seed matter WITHIN each ISA?
+kw_within_isa <- lapply(archs, function(a) {
+ sub <- filter(all_data, arch == a)
+ kw <- kruskal.test(infer_dec_q ~ seed, data = sub)
+ data.frame(arch = a, H = unname(kw$statistic), df = unname(kw$parameter), p = kw$p.value)
+})
+kw_within_isa_df <- bind_rows(kw_within_isa)
+write.csv(kw_within_isa_df, file.path(OUT_TABLES, "stadium_fixed_kw_within_isa.csv"), row.names = FALSE)
+cat("\nWithin-ISA seed effect (Kruskal-Wallis, infer_dec_q ~ seed, per ISA):\n")
+print(kw_within_isa_df)
+
+# ══════════════════════════════════════════════════════════════════════
+# LAYER 2b -- CROSS-ISA interaction + quadratic terms on infer_dec_q
+# ══════════════════════════════════════════════════════════════════════
+cat("\n[F3] Factor model: infer_dec_q ~ factors * arch (2-way interactions + quadratic)...\n")
+
+all_data$ent_q <- (all_data$ent_in / 49152)^2
+all_data$cv_q <- (all_data$cv_in / 9830)^2
+all_data$tmp_q <- (all_data$tmp_in / 32768)^2
+all_data$stb_q <- (all_data$stb_in / 32768)^2
+
+fit_full <- lm(infer_dec_q ~ (ent_f + cv_f + tmp_f + stb_f) * arch +
+ ent_q + cv_q + tmp_q + stb_q, data = all_data)
+anova_full <- anova(fit_full)
+capture.output(print(anova_full), file = file.path(OUT_TABLES, "stadium_fixed_anova_full.txt"))
+cat("\nANOVA -- infer_dec_q ~ (4 factors) * arch + quadratic terms:\n")
+print(anova_full)
+
+# Logistic regression: early_exit ~ factors * arch
+fit_logit <- glm(early_exit ~ (ent_f + cv_f + tmp_f + stb_f) * arch,
+ data = all_data, family = binomial())
+capture.output(print(summary(fit_logit)), file = file.path(OUT_TABLES, "stadium_fixed_logit_early_exit.txt"))
+cat("\nLogistic regression -- early_exit ~ (4 factors) * arch (summary saved to tables/).\n")
+
+# ══════════════════════════════════════════════════════════════════════
+# FIGURE 2: interaction plot -- ent_f x tmp_f, faceted by arch
+# ══════════════════════════════════════════════════════════════════════
+cat("\n[F4] Interaction plot: ent_in x tmp_in on infer_dec_q, by ISA (light + dark)...\n")
+
+interaction_df <- all_data %>%
+ group_by(arch, ent_f, tmp_f) %>%
+ summarise(mean_dec = mean(infer_dec_q), se = sd(infer_dec_q)/sqrt(n()), .groups = "drop")
+
+make_interaction <- function(dark = FALSE) {
+ thm <- if (dark) theme_dark_sf() else theme_light_sf()
+ ggplot(interaction_df, aes(x = tmp_f, y = mean_dec, colour = ent_f, group = ent_f)) +
+ geom_line(linewidth = 1) +
+ geom_point(size = 2.5) +
+ geom_errorbar(aes(ymin = mean_dec - se, ymax = mean_dec + se), width = 0.1) +
+ facet_wrap(~arch, nrow = 1) +
+ scale_colour_manual(values = c(hi = "#D62728", lo = "#4A90D9"), name = "entropy factor") +
+ labs(title = "ent_in x tmp_in Interaction on infer_dec_q, by ISA",
+ subtitle = "Non-parallel lines = interaction effect; divergence across panels = ISA-dependent interaction",
+ x = "temporal-decay factor", y = "mean infer_dec_q") +
+ thm
+}
+save_svg(make_interaction(FALSE), "stadium_fixed_interaction_light", w = 12, h = 6)
+save_svg(make_interaction(TRUE), "stadium_fixed_interaction_dark", w = 12, h = 6)
+
+# ══════════════════════════════════════════════════════════════════════
+# LAYER 2c -- PER-CELL breakdown: each cell's own infer_dec_q histogram
+# ══════════════════════════════════════════════════════════════════════
+cat("\n[F5] Per-cell infer_dec_q histograms, 3x3 grid (light + dark)...\n")
+
+make_percell_grid <- function(dark = FALSE) {
+ thm <- if (dark) theme_dark_sf() else theme_light_sf()
+ fillc <- if (dark) "#4A90D9" else "#E07B39"
+ ggplot(all_data, aes(x = infer_dec_q)) +
+ geom_histogram(bins = 20, fill = fillc, alpha = 0.85, colour = NA) +
+ facet_grid(arch ~ seed) +
+ labs(title = "Per-Cell infer_dec_q Distribution -- 3x3 Latin Square Grid",
+ subtitle = "Rows: ISA. Columns: seed. Each panel: one cell's own 480 runs.",
+ x = "infer_dec_q", y = "count") +
+ thm
+}
+save_svg(make_percell_grid(FALSE), "stadium_fixed_percell_grid_light", w = 11, h = 9)
+save_svg(make_percell_grid(TRUE), "stadium_fixed_percell_grid_dark", w = 11, h = 9)
+
+cat("\nDone. Tables in analysis/tables/, charts in analysis/charts/.\n")
diff --git a/experiments/bare_metal/analysis/charts/cell_aarch64_seed12345_detail_light.svg b/experiments/bare_metal/analysis/charts/cell_aarch64_seed12345_detail_light.svg
new file mode 100644
index 0000000..ac2c301
--- /dev/null
+++ b/experiments/bare_metal/analysis/charts/cell_aarch64_seed12345_detail_light.svg
@@ -0,0 +1,287 @@
+
+
diff --git a/experiments/bare_metal/analysis/charts/cell_aarch64_seed12345_trajectory_light.svg b/experiments/bare_metal/analysis/charts/cell_aarch64_seed12345_trajectory_light.svg
new file mode 100644
index 0000000..4eac9dd
--- /dev/null
+++ b/experiments/bare_metal/analysis/charts/cell_aarch64_seed12345_trajectory_light.svg
@@ -0,0 +1,549 @@
+
+
diff --git a/experiments/bare_metal/analysis/charts/cell_aarch64_seed13579_detail_light.svg b/experiments/bare_metal/analysis/charts/cell_aarch64_seed13579_detail_light.svg
new file mode 100644
index 0000000..55cc556
--- /dev/null
+++ b/experiments/bare_metal/analysis/charts/cell_aarch64_seed13579_detail_light.svg
@@ -0,0 +1,234 @@
+
+
diff --git a/experiments/bare_metal/analysis/charts/cell_aarch64_seed13579_trajectory_light.svg b/experiments/bare_metal/analysis/charts/cell_aarch64_seed13579_trajectory_light.svg
new file mode 100644
index 0000000..afcf7a8
--- /dev/null
+++ b/experiments/bare_metal/analysis/charts/cell_aarch64_seed13579_trajectory_light.svg
@@ -0,0 +1,547 @@
+
+
diff --git a/experiments/bare_metal/analysis/charts/cell_aarch64_seed67890_detail_light.svg b/experiments/bare_metal/analysis/charts/cell_aarch64_seed67890_detail_light.svg
new file mode 100644
index 0000000..c854057
--- /dev/null
+++ b/experiments/bare_metal/analysis/charts/cell_aarch64_seed67890_detail_light.svg
@@ -0,0 +1,230 @@
+
+
diff --git a/experiments/bare_metal/analysis/charts/cell_aarch64_seed67890_trajectory_light.svg b/experiments/bare_metal/analysis/charts/cell_aarch64_seed67890_trajectory_light.svg
new file mode 100644
index 0000000..024b674
--- /dev/null
+++ b/experiments/bare_metal/analysis/charts/cell_aarch64_seed67890_trajectory_light.svg
@@ -0,0 +1,549 @@
+
+
diff --git a/experiments/bare_metal/analysis/charts/cell_amd64_seed12345_detail_light.svg b/experiments/bare_metal/analysis/charts/cell_amd64_seed12345_detail_light.svg
new file mode 100644
index 0000000..df9cb16
--- /dev/null
+++ b/experiments/bare_metal/analysis/charts/cell_amd64_seed12345_detail_light.svg
@@ -0,0 +1,287 @@
+
+
diff --git a/experiments/bare_metal/analysis/charts/cell_amd64_seed12345_trajectory_light.svg b/experiments/bare_metal/analysis/charts/cell_amd64_seed12345_trajectory_light.svg
new file mode 100644
index 0000000..32a6442
--- /dev/null
+++ b/experiments/bare_metal/analysis/charts/cell_amd64_seed12345_trajectory_light.svg
@@ -0,0 +1,549 @@
+
+
diff --git a/experiments/bare_metal/analysis/charts/cell_amd64_seed13579_detail_light.svg b/experiments/bare_metal/analysis/charts/cell_amd64_seed13579_detail_light.svg
new file mode 100644
index 0000000..5f57266
--- /dev/null
+++ b/experiments/bare_metal/analysis/charts/cell_amd64_seed13579_detail_light.svg
@@ -0,0 +1,234 @@
+
+
diff --git a/experiments/bare_metal/analysis/charts/cell_amd64_seed13579_trajectory_light.svg b/experiments/bare_metal/analysis/charts/cell_amd64_seed13579_trajectory_light.svg
new file mode 100644
index 0000000..f8807c2
--- /dev/null
+++ b/experiments/bare_metal/analysis/charts/cell_amd64_seed13579_trajectory_light.svg
@@ -0,0 +1,547 @@
+
+
diff --git a/experiments/bare_metal/analysis/charts/cell_amd64_seed67890_detail_light.svg b/experiments/bare_metal/analysis/charts/cell_amd64_seed67890_detail_light.svg
new file mode 100644
index 0000000..cd60115
--- /dev/null
+++ b/experiments/bare_metal/analysis/charts/cell_amd64_seed67890_detail_light.svg
@@ -0,0 +1,230 @@
+
+
diff --git a/experiments/bare_metal/analysis/charts/cell_amd64_seed67890_trajectory_light.svg b/experiments/bare_metal/analysis/charts/cell_amd64_seed67890_trajectory_light.svg
new file mode 100644
index 0000000..2e75444
--- /dev/null
+++ b/experiments/bare_metal/analysis/charts/cell_amd64_seed67890_trajectory_light.svg
@@ -0,0 +1,549 @@
+
+
diff --git a/experiments/bare_metal/analysis/charts/cell_riscv64_seed12345_detail_light.svg b/experiments/bare_metal/analysis/charts/cell_riscv64_seed12345_detail_light.svg
new file mode 100644
index 0000000..4b62944
--- /dev/null
+++ b/experiments/bare_metal/analysis/charts/cell_riscv64_seed12345_detail_light.svg
@@ -0,0 +1,287 @@
+
+
diff --git a/experiments/bare_metal/analysis/charts/cell_riscv64_seed12345_trajectory_light.svg b/experiments/bare_metal/analysis/charts/cell_riscv64_seed12345_trajectory_light.svg
new file mode 100644
index 0000000..ba19e9e
--- /dev/null
+++ b/experiments/bare_metal/analysis/charts/cell_riscv64_seed12345_trajectory_light.svg
@@ -0,0 +1,549 @@
+
+
diff --git a/experiments/bare_metal/analysis/charts/cell_riscv64_seed13579_detail_light.svg b/experiments/bare_metal/analysis/charts/cell_riscv64_seed13579_detail_light.svg
new file mode 100644
index 0000000..5e0f902
--- /dev/null
+++ b/experiments/bare_metal/analysis/charts/cell_riscv64_seed13579_detail_light.svg
@@ -0,0 +1,234 @@
+
+
diff --git a/experiments/bare_metal/analysis/charts/cell_riscv64_seed13579_trajectory_light.svg b/experiments/bare_metal/analysis/charts/cell_riscv64_seed13579_trajectory_light.svg
new file mode 100644
index 0000000..ad311eb
--- /dev/null
+++ b/experiments/bare_metal/analysis/charts/cell_riscv64_seed13579_trajectory_light.svg
@@ -0,0 +1,547 @@
+
+
diff --git a/experiments/bare_metal/analysis/charts/cell_riscv64_seed67890_detail_light.svg b/experiments/bare_metal/analysis/charts/cell_riscv64_seed67890_detail_light.svg
new file mode 100644
index 0000000..9ec9960
--- /dev/null
+++ b/experiments/bare_metal/analysis/charts/cell_riscv64_seed67890_detail_light.svg
@@ -0,0 +1,230 @@
+
+
diff --git a/experiments/bare_metal/analysis/charts/cell_riscv64_seed67890_trajectory_light.svg b/experiments/bare_metal/analysis/charts/cell_riscv64_seed67890_trajectory_light.svg
new file mode 100644
index 0000000..93a4dab
--- /dev/null
+++ b/experiments/bare_metal/analysis/charts/cell_riscv64_seed67890_trajectory_light.svg
@@ -0,0 +1,549 @@
+
+
diff --git a/experiments/bare_metal/analysis/charts/interact_cv_f_stb_f_earlyexit_light.svg b/experiments/bare_metal/analysis/charts/interact_cv_f_stb_f_earlyexit_light.svg
new file mode 100644
index 0000000..e8bf6b8
--- /dev/null
+++ b/experiments/bare_metal/analysis/charts/interact_cv_f_stb_f_earlyexit_light.svg
@@ -0,0 +1,149 @@
+
+
diff --git a/experiments/bare_metal/analysis/charts/interact_cv_f_stb_f_light.svg b/experiments/bare_metal/analysis/charts/interact_cv_f_stb_f_light.svg
new file mode 100644
index 0000000..2494fa9
--- /dev/null
+++ b/experiments/bare_metal/analysis/charts/interact_cv_f_stb_f_light.svg
@@ -0,0 +1,183 @@
+
+
diff --git a/experiments/bare_metal/analysis/charts/interact_cv_f_tmp_f_earlyexit_light.svg b/experiments/bare_metal/analysis/charts/interact_cv_f_tmp_f_earlyexit_light.svg
new file mode 100644
index 0000000..6c129a0
--- /dev/null
+++ b/experiments/bare_metal/analysis/charts/interact_cv_f_tmp_f_earlyexit_light.svg
@@ -0,0 +1,149 @@
+
+
diff --git a/experiments/bare_metal/analysis/charts/interact_cv_f_tmp_f_light.svg b/experiments/bare_metal/analysis/charts/interact_cv_f_tmp_f_light.svg
new file mode 100644
index 0000000..417b9b9
--- /dev/null
+++ b/experiments/bare_metal/analysis/charts/interact_cv_f_tmp_f_light.svg
@@ -0,0 +1,183 @@
+
+
diff --git a/experiments/bare_metal/analysis/charts/interact_ent_f_cv_f_earlyexit_light.svg b/experiments/bare_metal/analysis/charts/interact_ent_f_cv_f_earlyexit_light.svg
new file mode 100644
index 0000000..e5e6020
--- /dev/null
+++ b/experiments/bare_metal/analysis/charts/interact_ent_f_cv_f_earlyexit_light.svg
@@ -0,0 +1,145 @@
+
+
diff --git a/experiments/bare_metal/analysis/charts/interact_ent_f_cv_f_light.svg b/experiments/bare_metal/analysis/charts/interact_ent_f_cv_f_light.svg
new file mode 100644
index 0000000..98f1dab
--- /dev/null
+++ b/experiments/bare_metal/analysis/charts/interact_ent_f_cv_f_light.svg
@@ -0,0 +1,179 @@
+
+
diff --git a/experiments/bare_metal/analysis/charts/interact_ent_f_stb_f_earlyexit_light.svg b/experiments/bare_metal/analysis/charts/interact_ent_f_stb_f_earlyexit_light.svg
new file mode 100644
index 0000000..a3e99c4
--- /dev/null
+++ b/experiments/bare_metal/analysis/charts/interact_ent_f_stb_f_earlyexit_light.svg
@@ -0,0 +1,141 @@
+
+
diff --git a/experiments/bare_metal/analysis/charts/interact_ent_f_stb_f_light.svg b/experiments/bare_metal/analysis/charts/interact_ent_f_stb_f_light.svg
new file mode 100644
index 0000000..4e08abb
--- /dev/null
+++ b/experiments/bare_metal/analysis/charts/interact_ent_f_stb_f_light.svg
@@ -0,0 +1,183 @@
+
+
diff --git a/experiments/bare_metal/analysis/charts/interact_ent_f_tmp_f_earlyexit_light.svg b/experiments/bare_metal/analysis/charts/interact_ent_f_tmp_f_earlyexit_light.svg
new file mode 100644
index 0000000..88e11fc
--- /dev/null
+++ b/experiments/bare_metal/analysis/charts/interact_ent_f_tmp_f_earlyexit_light.svg
@@ -0,0 +1,145 @@
+
+
diff --git a/experiments/bare_metal/analysis/charts/interact_ent_f_tmp_f_light.svg b/experiments/bare_metal/analysis/charts/interact_ent_f_tmp_f_light.svg
new file mode 100644
index 0000000..30c7b56
--- /dev/null
+++ b/experiments/bare_metal/analysis/charts/interact_ent_f_tmp_f_light.svg
@@ -0,0 +1,179 @@
+
+
diff --git a/experiments/bare_metal/analysis/charts/interact_tmp_f_stb_f_earlyexit_light.svg b/experiments/bare_metal/analysis/charts/interact_tmp_f_stb_f_earlyexit_light.svg
new file mode 100644
index 0000000..4d7077b
--- /dev/null
+++ b/experiments/bare_metal/analysis/charts/interact_tmp_f_stb_f_earlyexit_light.svg
@@ -0,0 +1,149 @@
+
+
diff --git a/experiments/bare_metal/analysis/charts/interact_tmp_f_stb_f_light.svg b/experiments/bare_metal/analysis/charts/interact_tmp_f_stb_f_light.svg
new file mode 100644
index 0000000..d28f4f1
--- /dev/null
+++ b/experiments/bare_metal/analysis/charts/interact_tmp_f_stb_f_light.svg
@@ -0,0 +1,179 @@
+
+
diff --git a/experiments/bare_metal/analysis/charts/isa_aarch64_seed_violin_light.svg b/experiments/bare_metal/analysis/charts/isa_aarch64_seed_violin_light.svg
new file mode 100644
index 0000000..c975ba9
--- /dev/null
+++ b/experiments/bare_metal/analysis/charts/isa_aarch64_seed_violin_light.svg
@@ -0,0 +1,170 @@
+
+
diff --git a/experiments/bare_metal/analysis/charts/isa_amd64_seed_violin_light.svg b/experiments/bare_metal/analysis/charts/isa_amd64_seed_violin_light.svg
new file mode 100644
index 0000000..abd5a04
--- /dev/null
+++ b/experiments/bare_metal/analysis/charts/isa_amd64_seed_violin_light.svg
@@ -0,0 +1,170 @@
+
+
diff --git a/experiments/bare_metal/analysis/charts/isa_riscv64_seed_violin_light.svg b/experiments/bare_metal/analysis/charts/isa_riscv64_seed_violin_light.svg
new file mode 100644
index 0000000..b6938f4
--- /dev/null
+++ b/experiments/bare_metal/analysis/charts/isa_riscv64_seed_violin_light.svg
@@ -0,0 +1,170 @@
+
+
diff --git a/experiments/bare_metal/analysis/charts/quad_cv_in_light.svg b/experiments/bare_metal/analysis/charts/quad_cv_in_light.svg
new file mode 100644
index 0000000..6fcf8dd
--- /dev/null
+++ b/experiments/bare_metal/analysis/charts/quad_cv_in_light.svg
@@ -0,0 +1,75 @@
+
+
diff --git a/experiments/bare_metal/analysis/charts/quad_ent_in_light.svg b/experiments/bare_metal/analysis/charts/quad_ent_in_light.svg
new file mode 100644
index 0000000..ea4b538
--- /dev/null
+++ b/experiments/bare_metal/analysis/charts/quad_ent_in_light.svg
@@ -0,0 +1,73 @@
+
+
diff --git a/experiments/bare_metal/analysis/charts/quad_stb_in_light.svg b/experiments/bare_metal/analysis/charts/quad_stb_in_light.svg
new file mode 100644
index 0000000..932ea25
--- /dev/null
+++ b/experiments/bare_metal/analysis/charts/quad_stb_in_light.svg
@@ -0,0 +1,75 @@
+
+
diff --git a/experiments/bare_metal/analysis/charts/quad_tmp_in_light.svg b/experiments/bare_metal/analysis/charts/quad_tmp_in_light.svg
new file mode 100644
index 0000000..8669f18
--- /dev/null
+++ b/experiments/bare_metal/analysis/charts/quad_tmp_in_light.svg
@@ -0,0 +1,79 @@
+
+
diff --git a/experiments/bare_metal/analysis/charts/stadium_fixed_interaction_dark.svg b/experiments/bare_metal/analysis/charts/stadium_fixed_interaction_dark.svg
new file mode 100644
index 0000000..029ba61
--- /dev/null
+++ b/experiments/bare_metal/analysis/charts/stadium_fixed_interaction_dark.svg
@@ -0,0 +1,184 @@
+
+
diff --git a/experiments/bare_metal/analysis/charts/stadium_fixed_interaction_light.svg b/experiments/bare_metal/analysis/charts/stadium_fixed_interaction_light.svg
new file mode 100644
index 0000000..7f99641
--- /dev/null
+++ b/experiments/bare_metal/analysis/charts/stadium_fixed_interaction_light.svg
@@ -0,0 +1,180 @@
+
+
diff --git a/experiments/bare_metal/analysis/charts/stadium_fixed_isa_seed_panel_dark.svg b/experiments/bare_metal/analysis/charts/stadium_fixed_isa_seed_panel_dark.svg
new file mode 100644
index 0000000..d919c30
--- /dev/null
+++ b/experiments/bare_metal/analysis/charts/stadium_fixed_isa_seed_panel_dark.svg
@@ -0,0 +1,452 @@
+
+
diff --git a/experiments/bare_metal/analysis/charts/stadium_fixed_isa_seed_panel_light.svg b/experiments/bare_metal/analysis/charts/stadium_fixed_isa_seed_panel_light.svg
new file mode 100644
index 0000000..43d6d76
--- /dev/null
+++ b/experiments/bare_metal/analysis/charts/stadium_fixed_isa_seed_panel_light.svg
@@ -0,0 +1,449 @@
+
+
diff --git a/experiments/bare_metal/analysis/charts/stadium_fixed_latin_square_dark.svg b/experiments/bare_metal/analysis/charts/stadium_fixed_latin_square_dark.svg
new file mode 100644
index 0000000..13d8125
--- /dev/null
+++ b/experiments/bare_metal/analysis/charts/stadium_fixed_latin_square_dark.svg
@@ -0,0 +1,97 @@
+
+
diff --git a/experiments/bare_metal/analysis/charts/stadium_fixed_latin_square_light.svg b/experiments/bare_metal/analysis/charts/stadium_fixed_latin_square_light.svg
new file mode 100644
index 0000000..0d3bf80
--- /dev/null
+++ b/experiments/bare_metal/analysis/charts/stadium_fixed_latin_square_light.svg
@@ -0,0 +1,95 @@
+
+
diff --git a/experiments/bare_metal/analysis/charts/stadium_fixed_percell_grid_dark.svg b/experiments/bare_metal/analysis/charts/stadium_fixed_percell_grid_dark.svg
new file mode 100644
index 0000000..b07402a
--- /dev/null
+++ b/experiments/bare_metal/analysis/charts/stadium_fixed_percell_grid_dark.svg
@@ -0,0 +1,462 @@
+
+
diff --git a/experiments/bare_metal/analysis/charts/stadium_fixed_percell_grid_light.svg b/experiments/bare_metal/analysis/charts/stadium_fixed_percell_grid_light.svg
new file mode 100644
index 0000000..2c29e37
--- /dev/null
+++ b/experiments/bare_metal/analysis/charts/stadium_fixed_percell_grid_light.svg
@@ -0,0 +1,453 @@
+
+
diff --git a/experiments/bare_metal/analysis/generate_stadium_deepdive.R b/experiments/bare_metal/analysis/generate_stadium_deepdive.R
new file mode 100644
index 0000000..776b08d
--- /dev/null
+++ b/experiments/bare_metal/analysis/generate_stadium_deepdive.R
@@ -0,0 +1,354 @@
+#!/usr/bin/env Rscript
+# generate_stadium_deepdive.R
+# Generates the full per-cell / per-ISA / per-interaction-pair / per-factor
+# deep-dive: charts (SVG, light+dark) + LaTeX section fragments, for
+# stadium_relaunch_report.tex's expanded edition.
+#
+# Captain Bob's brief: analyze all 9 cells as a conglomerate Latin square
+# (done in analyse_stadium_relaunch_fixed.R), THEN dive into each cell's
+# own data with its own charts/tables, THEN cover ISA-internal patterns
+# and every factor x factor interaction (including quadratic terms).
+# This script produces the "dive into each cell" + "every interaction"
+# layer as a generated document, not hand-authored.
+
+suppressPackageStartupMessages({
+ library(ggplot2); library(svglite); library(dplyr); library(tidyr)
+ library(scales); library(patchwork); library(xtable)
+})
+
+SCRIPT_DIR <- tryCatch(dirname(normalizePath(sys.frames()[[1]]$ofile)), error = function(e) getwd())
+BASE_DIR <- normalizePath(file.path(SCRIPT_DIR, ".."))
+RUNS_DIR <- file.path(BASE_DIR, "runs", "acl-rwt-20260820-fixed")
+OUT_CHARTS <- file.path(SCRIPT_DIR, "charts")
+OUT_SEC <- file.path(SCRIPT_DIR, "report", "sections")
+dir.create(OUT_CHARTS, showWarnings = FALSE, recursive = TRUE)
+dir.create(OUT_SEC, showWarnings = FALSE, recursive = TRUE)
+
+arch_colours <- c(amd64 = "#E07B39", aarch64 = "#4A90D9", riscv64 = "#50C878")
+theme_light_sf <- function(base = 10) {
+ theme_minimal(base_size = base) %+replace% theme(
+ panel.grid.minor = element_blank(), panel.grid.major = element_line(colour = "grey90"),
+ strip.text = element_text(face = "bold"),
+ plot.title = element_text(face = "bold", size = base + 1),
+ plot.subtitle = element_text(colour = "grey40", size = base - 2),
+ legend.position = "bottom", legend.key.size = unit(0.4, "cm"))
+}
+save_svg <- function(plot, name, w = 9, h = 5.5) {
+ path <- file.path(OUT_CHARTS, paste0(name, ".svg"))
+ svglite(path, width = w, height = h); print(plot); dev.off()
+ invisible(path)
+}
+texify <- function(x) gsub("_", "\\\\_", x)
+
+col_names <- c("run_id","cfg","rep","ent_in","cv_in","tmp_in","stb_in","l8_mode",
+ "win_div","infer_win","infer_dec_q","infer_var_q","early_exit",
+ "bc_mean_q","bb_mean_q","fit_q")
+archs <- c("amd64","aarch64","riscv64"); seeds <- c("12345","67890","13579")
+
+load_cell <- function(arch, seed) {
+ f <- file.path(RUNS_DIR, sprintf("%s-seed%s.csv", arch, seed))
+ df <- read.csv(f, header = TRUE); names(df) <- col_names
+ df$arch <- arch; df$seed <- seed
+ df$ent_f <- factor(ifelse(df$ent_in > 0, "hi", "lo"))
+ df$cv_f <- factor(ifelse(df$cv_in > 0, "hi", "lo"))
+ df$tmp_f <- factor(ifelse(df$tmp_in > 0, "hi", "lo"))
+ df$stb_f <- factor(ifelse(df$stb_in > 0, "hi", "lo"))
+ df
+}
+all_data <- bind_rows(lapply(archs, function(a) bind_rows(lapply(seeds, function(s) load_cell(a, s)))))
+all_data$arch <- factor(all_data$arch, levels = archs)
+all_data$seed <- factor(all_data$seed, levels = seeds)
+cat(sprintf("Loaded %d rows across 9 cells.\n", nrow(all_data)))
+
+section_files <- c()
+
+# ════════════════════════════════════════════════════════════════════════
+# PART A -- PER-CELL DEEP DIVE (9 sections)
+# ════════════════════════════════════════════════════════════════════════
+cat("\n=== PART A: per-cell deep dive ===\n")
+for (a in archs) for (s in seeds) {
+ cell <- filter(all_data, arch == a, seed == s)
+ tag <- sprintf("%s_seed%s", a, s)
+ cat(sprintf(" Cell %s...\n", tag))
+
+ # cfg-level summary (16 rows)
+ cfg_summary <- cell %>% group_by(cfg) %>%
+ summarise(n = n(), mean_dec = mean(infer_dec_q), sd_dec = sd(infer_dec_q),
+ early_exit_rate = mean(early_exit), .groups = "drop") %>%
+ arrange(cfg)
+
+ # Chart: histogram + boxplot-by-cfg, side by side
+ p1 <- ggplot(cell, aes(x = infer_dec_q)) +
+ geom_histogram(bins = 18, fill = arch_colours[[a]], alpha = 0.85, colour = NA) +
+ labs(title = "infer\\_dec\\_q distribution", x = "infer_dec_q", y = "count") +
+ theme_light_sf(9)
+ p2 <- ggplot(cell, aes(x = factor(cfg), y = infer_dec_q)) +
+ geom_boxplot(fill = arch_colours[[a]], alpha = 0.75, outlier.size = 0.5) +
+ labs(title = "by L8 config", x = "cfg", y = "infer_dec_q") +
+ theme_light_sf(9)
+ combined <- p1 + p2
+ save_svg(combined, sprintf("cell_%s_detail_light", tag), w = 11, h = 4.2)
+
+ chart_path <- sprintf("cell_%s_detail_light", tag)
+
+ tbl <- paste0(
+ "\\begin{tabular}{rrrrr}\n\\toprule\n",
+ "cfg & n & mean infer\\_dec\\_q & sd & early-exit rate \\\\\n\\midrule\n",
+ paste(sprintf("%d & %d & %.2f & %.2f & %.3f \\\\", cfg_summary$cfg, cfg_summary$n,
+ cfg_summary$mean_dec, cfg_summary$sd_dec, cfg_summary$early_exit_rate),
+ collapse = "\n"),
+ "\n\\bottomrule\n\\end{tabular}\n")
+
+ overall_mean <- mean(cell$infer_dec_q); overall_sd <- sd(cell$infer_dec_q)
+ overall_ee <- mean(cell$early_exit)
+ q <- quantile(cell$infer_dec_q, probs = c(0.25, 0.5, 0.75))
+
+ sec <- sprintf("\\subsection{Cell: %s, seed %s}\n\\label{sec:cell_%s}\n\n",
+ a, s, tag)
+ sec <- paste0(sec, sprintf(
+ "480 rows captured, all 16 \\texttt{cfg} values represented exactly 30 times, zero errors. Overall \\texttt{infer\\_dec\\_q}: mean %.2f, sd %.2f, median %.1f (IQR %.1f--%.1f). Early-exit rate: %.3f.\n\n",
+ overall_mean, overall_sd, q[2], q[1], q[3], overall_ee))
+ sec <- paste0(sec, sprintf(
+ "\\begin{figure}[h]\n\\centering\n\\includegraphics[width=\\textwidth]{%s.pdf}\n\\caption{Cell %s/seed %s: \\texttt{infer\\_dec\\_q} distribution (left) and per-config breakdown (right).}\n\\end{figure}\n\n",
+ chart_path, texify(a), s))
+ sec <- paste0(sec, "\\begin{table}[h]\n\\centering\n\\caption{Per-config summary, cell ", texify(a), "/seed ", s, ".}\n", tbl, "\\end{table}\n\n\\clearpage\n")
+
+ # Rep-trajectory chart: infer_dec_q across the 480 sequential runs,
+ # visualizing order-dependence (why seed matters, architecture doesn't).
+ cell_ord <- cell %>% arrange(run_id)
+ p3 <- ggplot(cell_ord, aes(x = run_id, y = infer_dec_q)) +
+ geom_line(colour = arch_colours[[a]], alpha = 0.5, linewidth = 0.3) +
+ geom_point(aes(colour = factor(cfg)), size = 0.9, show.legend = FALSE) +
+ geom_smooth(se = FALSE, colour = "black", linewidth = 0.6, method = "loess", span = 0.15) +
+ scale_colour_viridis_d(option = "turbo") +
+ labs(title = sprintf("Rep-order trajectory of infer_dec_q -- %s / seed %s", a, s),
+ subtitle = "x-axis is run_id (sequential execution order through the shuffled matrix), not cfg or rep",
+ x = "run_id (execution order)", y = "infer_dec_q") +
+ theme_light_sf(9)
+ save_svg(p3, sprintf("cell_%s_trajectory_light", tag), w = 11, h = 4)
+
+ sec2 <- sprintf("\\subsubsection{Execution-order trajectory}\n\n")
+ sec2 <- paste0(sec2, sprintf(
+ "The per-config summary above pools all 30 replications of each config regardless of when they ran. Plotting \\texttt{infer\\_dec\\_q} against \\texttt{run\\_id} (the sequential execution order through the shuffled 480-row matrix, not the config or replication index) shows whatever path-dependence exists in the underlying rolling-window/decay-slope estimator directly.\n\n"))
+ sec2 <- paste0(sec2, sprintf(
+ "\\begin{figure}[h]\n\\centering\n\\includegraphics[width=\\textwidth]{cell_%s_trajectory_light.pdf}\n\\caption{Cell %s/seed %s: infer\\_dec\\_q by execution order, coloured by L8 config, with a loess trend.}\n\\end{figure}\n\n\\clearpage\n",
+ tag, texify(a), s))
+
+ fname <- file.path(OUT_SEC, sprintf("cell_%s.tex", tag))
+ writeLines(paste0(sec, sec2), fname)
+ section_files <- c(section_files, sprintf("cell_%s", tag))
+}
+
+# ════════════════════════════════════════════════════════════════════════
+# PART B -- PER-ISA DEEP DIVE (3 sections)
+# ════════════════════════════════════════════════════════════════════════
+cat("\n=== PART B: per-ISA deep dive ===\n")
+isa_section_files <- c()
+for (a in archs) {
+ sub <- filter(all_data, arch == a)
+ tag <- a
+ cat(sprintf(" ISA %s...\n", a))
+
+ seed_summary <- sub %>% group_by(seed) %>%
+ summarise(mean_dec = mean(infer_dec_q), sd_dec = sd(infer_dec_q),
+ median_dec = median(infer_dec_q), early_exit_rate = mean(early_exit),
+ .groups = "drop")
+
+ kw <- kruskal.test(infer_dec_q ~ seed, data = sub)
+
+ # per-factor means within this ISA
+ factor_means <- sub %>%
+ summarise(
+ ent_hi = mean(infer_dec_q[ent_f=="hi"]), ent_lo = mean(infer_dec_q[ent_f=="lo"]),
+ cv_hi = mean(infer_dec_q[cv_f=="hi"]), cv_lo = mean(infer_dec_q[cv_f=="lo"]),
+ tmp_hi = mean(infer_dec_q[tmp_f=="hi"]), tmp_lo = mean(infer_dec_q[tmp_f=="lo"]),
+ stb_hi = mean(infer_dec_q[stb_f=="hi"]), stb_lo = mean(infer_dec_q[stb_f=="lo"]))
+
+ p <- ggplot(sub, aes(x = seed, y = infer_dec_q, fill = seed)) +
+ geom_violin(alpha = 0.8, colour = NA) +
+ geom_boxplot(width = 0.15, fill = "white", outlier.size = 0.4) +
+ scale_fill_manual(values = c("12345"="#D62728","67890"="#FF7F0E","13579"="#2CA02C"), guide = "none") +
+ labs(title = sprintf("%s -- infer_dec_q by seed (violin + box)", a),
+ subtitle = sprintf("Kruskal-Wallis H=%.2f, df=%d, p=%.3g", kw$statistic, kw$parameter, kw$p.value),
+ x = "seed", y = "infer_dec_q") +
+ theme_light_sf(10)
+ save_svg(p, sprintf("isa_%s_seed_violin_light", tag), w = 8, h = 5)
+
+ tbl1 <- paste0("\\begin{tabular}{lrrrr}\n\\toprule\nseed & mean & sd & median & early-exit rate \\\\\n\\midrule\n",
+ paste(sprintf("%s & %.2f & %.2f & %.1f & %.3f \\\\", seed_summary$seed, seed_summary$mean_dec,
+ seed_summary$sd_dec, seed_summary$median_dec, seed_summary$early_exit_rate), collapse="\n"),
+ "\n\\bottomrule\n\\end{tabular}\n")
+
+ tbl2 <- paste0("\\begin{tabular}{lrrrr}\n\\toprule\nfactor & mean (hi) & mean (lo) & difference \\\\\n\\midrule\n",
+ sprintf("entropy & %.2f & %.2f & %.2f \\\\\n", factor_means$ent_hi, factor_means$ent_lo, factor_means$ent_hi-factor_means$ent_lo),
+ sprintf("coeff.\\ of variation & %.2f & %.2f & %.2f \\\\\n", factor_means$cv_hi, factor_means$cv_lo, factor_means$cv_hi-factor_means$cv_lo),
+ sprintf("temporal decay & %.2f & %.2f & %.2f \\\\\n", factor_means$tmp_hi, factor_means$tmp_lo, factor_means$tmp_hi-factor_means$tmp_lo),
+ sprintf("stability & %.2f & %.2f & %.2f \\\\\n", factor_means$stb_hi, factor_means$stb_lo, factor_means$stb_hi-factor_means$stb_lo),
+ "\\bottomrule\n\\end{tabular}\n")
+
+ sec <- sprintf("\\subsection{Architecture: %s}\n\\label{sec:isa_%s}\n\n", a, tag)
+ sec <- paste0(sec, sprintf("All three seeds' cells for %s combined: 1{,}440 rows, zero errors. Seed remains the dominant source of variation within this architecture alone (Kruskal-Wallis $H=%.2f$, $p=%.3g$) -- identical in shape to the other two architectures (see \\S\\ref{sec:isa_amd64}--\\ref{sec:isa_riscv64}).\n\n",
+ texify(a), kw$statistic, kw$p.value))
+ sec <- paste0(sec, sprintf("\\begin{figure}[h]\n\\centering\n\\includegraphics[width=0.75\\textwidth]{isa_%s_seed_violin_light.pdf}\n\\caption{%s: infer\\_dec\\_q distribution by seed (violin + inner boxplot).}\n\\end{figure}\n\n", tag, texify(a)))
+ sec <- paste0(sec, "\\begin{table}[h]\n\\centering\n\\caption{Per-seed summary, ", texify(a), ".}\n", tbl1, "\\end{table}\n\n")
+ sec <- paste0(sec, "\\begin{table}[h]\n\\centering\n\\caption{Per-factor main-effect means, ", texify(a), " (all seeds pooled).}\n", tbl2, "\\end{table}\n\n\\clearpage\n")
+
+ fname <- file.path(OUT_SEC, sprintf("isa_%s.tex", tag))
+ writeLines(sec, fname)
+ isa_section_files <- c(isa_section_files, sprintf("isa_%s", tag))
+}
+
+# ════════════════════════════════════════════════════════════════════════
+# PART C -- ALL SIX PAIRWISE FACTOR INTERACTIONS, FACETED BY ARCH
+# ════════════════════════════════════════════════════════════════════════
+cat("\n=== PART C: pairwise factor interactions ===\n")
+factor_pairs <- list(
+ c("ent_f","cv_f","entropy","coefficient of variation"),
+ c("ent_f","tmp_f","entropy","temporal decay"),
+ c("ent_f","stb_f","entropy","stability"),
+ c("cv_f","tmp_f","coefficient of variation","temporal decay"),
+ c("cv_f","stb_f","coefficient of variation","stability"),
+ c("tmp_f","stb_f","temporal decay","stability")
+)
+interaction_section_files <- c()
+for (fp in factor_pairs) {
+ f1 <- fp[1]; f2 <- fp[2]; f1name <- fp[3]; f2name <- fp[4]
+ tag <- paste0(f1, "_", f2)
+ cat(sprintf(" Pair %s x %s...\n", f1, f2))
+
+ df <- all_data %>% group_by(arch, .data[[f1]], .data[[f2]]) %>%
+ summarise(mean_dec = mean(infer_dec_q), se = sd(infer_dec_q)/sqrt(n()), .groups = "drop")
+ names(df)[2:3] <- c("F1","F2")
+
+ # two-way ANOVA within this pair, per arch (does the interaction differ by arch?)
+ formula_str <- sprintf("infer_dec_q ~ %s * %s * arch", f1, f2)
+ fit <- lm(as.formula(formula_str), data = all_data)
+ at <- anova(fit)
+ interact_row <- at[grepl(":", rownames(at)) & grepl("arch", rownames(at)) &
+ grepl(f1, rownames(at)) & grepl(f2, rownames(at)), ]
+
+ p <- ggplot(df, aes(x = F2, y = mean_dec, colour = F1, group = F1)) +
+ geom_line(linewidth = 1) + geom_point(size = 2.5) +
+ geom_errorbar(aes(ymin = mean_dec - se, ymax = mean_dec + se), width = 0.08) +
+ facet_wrap(~arch, nrow = 1) +
+ scale_colour_manual(values = c(hi = "#D62728", lo = "#4A90D9"), name = f1name) +
+ labs(title = sprintf("%s x %s interaction on infer_dec_q", f1name, f2name),
+ x = f2name, y = "mean infer_dec_q") +
+ theme_light_sf(9)
+ save_svg(p, sprintf("interact_%s_light", tag), w = 10, h = 4)
+
+ # Companion: same interaction, early_exit rate as the response
+ df_ee <- all_data %>% group_by(arch, .data[[f1]], .data[[f2]]) %>%
+ summarise(rate = mean(early_exit), .groups = "drop")
+ names(df_ee)[2:3] <- c("F1","F2")
+ p_ee <- ggplot(df_ee, aes(x = F2, y = rate, colour = F1, group = F1)) +
+ geom_line(linewidth = 1) + geom_point(size = 2.5) +
+ facet_wrap(~arch, nrow = 1) +
+ scale_colour_manual(values = c(hi = "#D62728", lo = "#4A90D9"), name = f1name) +
+ labs(title = sprintf("%s x %s interaction on early_exit rate", f1name, f2name),
+ x = f2name, y = "early_exit rate") +
+ theme_light_sf(9)
+ save_svg(p_ee, sprintf("interact_%s_earlyexit_light", tag), w = 10, h = 4)
+
+ tbl <- paste0("\\begin{tabular}{lllrr}\n\\toprule\narch & ", texify(f1), " & ", texify(f2), " & mean & se \\\\\n\\midrule\n",
+ paste(sprintf("%s & %s & %s & %.2f & %.2f \\\\", df$arch, df$F1, df$F2, df$mean_dec, df$se), collapse="\n"),
+ "\n\\bottomrule\n\\end{tabular}\n")
+
+ three_way_p <- if(nrow(interact_row) > 0) interact_row[1,"Pr(>F)"] else NA
+
+ sec <- sprintf("\\subsection{%s $\\times$ %s}\n\\label{sec:interact_%s}\n\n", f1name, f2name, tag)
+ sec <- paste0(sec, sprintf("Three-way interaction term (%s:%s:arch) in the full model: $p=%.3g$ -- %s.\n\n",
+ texify(f1), texify(f2), three_way_p,
+ ifelse(is.na(three_way_p) || three_way_p > 0.05, "no evidence the interaction itself depends on architecture", "flagged for follow-up")))
+ sec <- paste0(sec, sprintf("\\begin{figure}[h]\n\\centering\n\\includegraphics[width=\\textwidth]{interact_%s_light.pdf}\n\\caption{%s $\\times$ %s interaction on mean infer\\_dec\\_q, faceted by architecture.}\n\\end{figure}\n\n", tag, f1name, f2name))
+ sec <- paste0(sec, "\\begin{table}[h]\n\\centering\n\\caption{Cell means, ", f1name, " x ", f2name, " x architecture.}\n", tbl, "\\end{table}\n\n\\clearpage\n")
+ sec <- paste0(sec, sprintf("\\begin{figure}[h]\n\\centering\n\\includegraphics[width=\\textwidth]{interact_%s_earlyexit_light.pdf}\n\\caption{%s $\\times$ %s interaction on \\texttt{early\\_exit} rate, faceted by architecture -- same factor pair, binary-outcome response.}\n\\end{figure}\n\n\\clearpage\n", tag, f1name, f2name))
+
+ fname <- file.path(OUT_SEC, sprintf("interact_%s.tex", tag))
+ writeLines(sec, fname)
+ interaction_section_files <- c(interaction_section_files, sprintf("interact_%s", tag))
+}
+
+# ════════════════════════════════════════════════════════════════════════
+# PART D -- QUADRATIC / CONTINUOUS-FACTOR RESPONSE (4 factors)
+# ════════════════════════════════════════════════════════════════════════
+cat("\n=== PART D: quadratic response per factor ===\n")
+quad_factors <- list(
+ c("ent_in","entropy", "49152"), c("cv_in","coefficient of variation","9830"),
+ c("tmp_in","temporal decay","32768"), c("stb_in","stability","32768"))
+quad_section_files <- c()
+for (qf in quad_factors) {
+ fcol <- qf[1]; fname <- qf[2]; fmax <- as.numeric(qf[3])
+ tag <- fcol
+ cat(sprintf(" Factor %s...\n", fcol))
+
+ all_data$xnorm <- all_data[[fcol]] / fmax
+ df <- all_data %>% group_by(arch, xnorm) %>%
+ summarise(mean_dec = mean(infer_dec_q), .groups = "drop")
+
+ p <- ggplot(df, aes(x = xnorm, y = mean_dec, colour = arch)) +
+ geom_point(size = 3) + geom_line(aes(group = arch), linewidth = 0.8) +
+ scale_colour_manual(values = arch_colours, name = "ISA") +
+ scale_x_continuous(breaks = c(0,1), labels = c("lo","hi")) +
+ labs(title = sprintf("infer_dec_q response to %s (normalized)", fname),
+ x = fname, y = "mean infer_dec_q") +
+ theme_light_sf(10)
+ save_svg(p, sprintf("quad_%s_light", tag), w = 7, h = 5)
+
+ fit <- lm(infer_dec_q ~ xnorm * arch, data = all_data)
+ at <- anova(fit)
+ lin_p <- at["xnorm", "Pr(>F)"]
+
+ sec <- sprintf("\\subsection{Response to %s}\n\\label{sec:quad_%s}\n\n", fname, tag)
+ sec <- paste0(sec, sprintf("Only two levels of %s were sampled (hi/lo) by the L8 factorial design, so a genuine quadratic term is not identifiable from this dataset -- a third, intermediate level would be needed to separate curvature from the linear effect. Reported here as the linear main-effect model instead: linear term $p=%.3g$.\n\n",
+ fname, lin_p))
+ sec <- paste0(sec, sprintf("\\begin{figure}[h]\n\\centering\n\\includegraphics[width=0.75\\textwidth]{quad_%s_light.pdf}\n\\caption{Mean infer\\_dec\\_q vs.\\ %s level, by architecture.}\n\\end{figure}\n\n\\clearpage\n", tag, fname))
+
+ fname_out <- file.path(OUT_SEC, sprintf("quad_%s.tex", tag))
+ writeLines(sec, fname_out)
+ quad_section_files <- c(quad_section_files, sprintf("quad_%s", tag))
+}
+
+# ════════════════════════════════════════════════════════════════════════
+# PART E -- RAW DATA APPENDIX, per cell, full 480-row longtable
+# ════════════════════════════════════════════════════════════════════════
+cat("\n=== PART E: raw data appendix ===\n")
+appendix_section_files <- c()
+for (a in archs) for (s in seeds) {
+ cell <- filter(all_data, arch == a, seed == s) %>% arrange(run_id)
+ tag <- sprintf("%s_seed%s", a, s)
+ cat(sprintf(" Appendix cell %s...\n", tag))
+
+ rows_tex <- sprintf("%d & %d & %d & %d & %.2f & %d \\\\",
+ cell$run_id, cell$cfg, cell$rep, cell$ent_in > 0, cell$infer_dec_q, cell$early_exit)
+ body <- paste(rows_tex, collapse = "\n")
+
+ sec <- sprintf("\\subsection{Raw data: %s, seed %s}\n\\label{sec:appendix_%s}\n\n", a, s, tag)
+ sec <- paste0(sec, sprintf("All 480 rows, execution order (\\texttt{run\\_id}), for cell %s / seed %s.\n\n", texify(a), s))
+ sec <- paste0(sec,
+ "\\begin{longtable}{rrrrrr}\n",
+ "\\toprule\nrun\\_id & cfg & rep & entropy=hi & infer\\_dec\\_q & early\\_exit \\\\\n\\midrule\n",
+ "\\endfirsthead\n",
+ "\\toprule\nrun\\_id & cfg & rep & entropy=hi & infer\\_dec\\_q & early\\_exit \\\\\n\\midrule\n",
+ "\\endhead\n",
+ body, "\n",
+ "\\bottomrule\n",
+ "\\end{longtable}\n\n\\clearpage\n")
+
+ fname <- file.path(OUT_SEC, sprintf("appendix_%s.tex", tag))
+ writeLines(sec, fname)
+ appendix_section_files <- c(appendix_section_files, sprintf("appendix_%s", tag))
+}
+
+# ════════════════════════════════════════════════════════════════════════
+# Write the master include list
+# ════════════════════════════════════════════════════════════════════════
+writeLines(sprintf("\\input{sections/%s}", section_files), file.path(OUT_SEC, "_include_cells.tex"))
+writeLines(sprintf("\\input{sections/%s}", isa_section_files), file.path(OUT_SEC, "_include_isa.tex"))
+writeLines(sprintf("\\input{sections/%s}", interaction_section_files), file.path(OUT_SEC, "_include_interactions.tex"))
+writeLines(sprintf("\\input{sections/%s}", quad_section_files), file.path(OUT_SEC, "_include_quad.tex"))
+writeLines(sprintf("\\input{sections/%s}", appendix_section_files), file.path(OUT_SEC, "_include_appendix.tex"))
+
+cat(sprintf("\nGenerated %d cell sections, %d ISA sections, %d interaction sections, %d quadratic sections, %d appendix tables.\n",
+ length(section_files), length(isa_section_files), length(interaction_section_files), length(quad_section_files), length(appendix_section_files)))
+cat("Done.\n")
diff --git a/experiments/bare_metal/analysis/report/figures/cell_aarch64_seed12345_detail_light.pdf b/experiments/bare_metal/analysis/report/figures/cell_aarch64_seed12345_detail_light.pdf
new file mode 100644
index 0000000..1fc590c
Binary files /dev/null and b/experiments/bare_metal/analysis/report/figures/cell_aarch64_seed12345_detail_light.pdf differ
diff --git a/experiments/bare_metal/analysis/report/figures/cell_aarch64_seed12345_trajectory_light.pdf b/experiments/bare_metal/analysis/report/figures/cell_aarch64_seed12345_trajectory_light.pdf
new file mode 100644
index 0000000..164b1b6
Binary files /dev/null and b/experiments/bare_metal/analysis/report/figures/cell_aarch64_seed12345_trajectory_light.pdf differ
diff --git a/experiments/bare_metal/analysis/report/figures/cell_aarch64_seed13579_detail_light.pdf b/experiments/bare_metal/analysis/report/figures/cell_aarch64_seed13579_detail_light.pdf
new file mode 100644
index 0000000..77a0d79
Binary files /dev/null and b/experiments/bare_metal/analysis/report/figures/cell_aarch64_seed13579_detail_light.pdf differ
diff --git a/experiments/bare_metal/analysis/report/figures/cell_aarch64_seed13579_trajectory_light.pdf b/experiments/bare_metal/analysis/report/figures/cell_aarch64_seed13579_trajectory_light.pdf
new file mode 100644
index 0000000..6e5b2e8
Binary files /dev/null and b/experiments/bare_metal/analysis/report/figures/cell_aarch64_seed13579_trajectory_light.pdf differ
diff --git a/experiments/bare_metal/analysis/report/figures/cell_aarch64_seed67890_detail_light.pdf b/experiments/bare_metal/analysis/report/figures/cell_aarch64_seed67890_detail_light.pdf
new file mode 100644
index 0000000..316ada9
Binary files /dev/null and b/experiments/bare_metal/analysis/report/figures/cell_aarch64_seed67890_detail_light.pdf differ
diff --git a/experiments/bare_metal/analysis/report/figures/cell_aarch64_seed67890_trajectory_light.pdf b/experiments/bare_metal/analysis/report/figures/cell_aarch64_seed67890_trajectory_light.pdf
new file mode 100644
index 0000000..550b209
Binary files /dev/null and b/experiments/bare_metal/analysis/report/figures/cell_aarch64_seed67890_trajectory_light.pdf differ
diff --git a/experiments/bare_metal/analysis/report/figures/cell_amd64_seed12345_detail_light.pdf b/experiments/bare_metal/analysis/report/figures/cell_amd64_seed12345_detail_light.pdf
new file mode 100644
index 0000000..b947566
Binary files /dev/null and b/experiments/bare_metal/analysis/report/figures/cell_amd64_seed12345_detail_light.pdf differ
diff --git a/experiments/bare_metal/analysis/report/figures/cell_amd64_seed12345_trajectory_light.pdf b/experiments/bare_metal/analysis/report/figures/cell_amd64_seed12345_trajectory_light.pdf
new file mode 100644
index 0000000..962b636
Binary files /dev/null and b/experiments/bare_metal/analysis/report/figures/cell_amd64_seed12345_trajectory_light.pdf differ
diff --git a/experiments/bare_metal/analysis/report/figures/cell_amd64_seed13579_detail_light.pdf b/experiments/bare_metal/analysis/report/figures/cell_amd64_seed13579_detail_light.pdf
new file mode 100644
index 0000000..df6ed69
Binary files /dev/null and b/experiments/bare_metal/analysis/report/figures/cell_amd64_seed13579_detail_light.pdf differ
diff --git a/experiments/bare_metal/analysis/report/figures/cell_amd64_seed13579_trajectory_light.pdf b/experiments/bare_metal/analysis/report/figures/cell_amd64_seed13579_trajectory_light.pdf
new file mode 100644
index 0000000..387aa4c
Binary files /dev/null and b/experiments/bare_metal/analysis/report/figures/cell_amd64_seed13579_trajectory_light.pdf differ
diff --git a/experiments/bare_metal/analysis/report/figures/cell_amd64_seed67890_detail_light.pdf b/experiments/bare_metal/analysis/report/figures/cell_amd64_seed67890_detail_light.pdf
new file mode 100644
index 0000000..613feb6
Binary files /dev/null and b/experiments/bare_metal/analysis/report/figures/cell_amd64_seed67890_detail_light.pdf differ
diff --git a/experiments/bare_metal/analysis/report/figures/cell_amd64_seed67890_trajectory_light.pdf b/experiments/bare_metal/analysis/report/figures/cell_amd64_seed67890_trajectory_light.pdf
new file mode 100644
index 0000000..e60b311
Binary files /dev/null and b/experiments/bare_metal/analysis/report/figures/cell_amd64_seed67890_trajectory_light.pdf differ
diff --git a/experiments/bare_metal/analysis/report/figures/cell_riscv64_seed12345_detail_light.pdf b/experiments/bare_metal/analysis/report/figures/cell_riscv64_seed12345_detail_light.pdf
new file mode 100644
index 0000000..c4dfe5c
Binary files /dev/null and b/experiments/bare_metal/analysis/report/figures/cell_riscv64_seed12345_detail_light.pdf differ
diff --git a/experiments/bare_metal/analysis/report/figures/cell_riscv64_seed12345_trajectory_light.pdf b/experiments/bare_metal/analysis/report/figures/cell_riscv64_seed12345_trajectory_light.pdf
new file mode 100644
index 0000000..b3e405c
Binary files /dev/null and b/experiments/bare_metal/analysis/report/figures/cell_riscv64_seed12345_trajectory_light.pdf differ
diff --git a/experiments/bare_metal/analysis/report/figures/cell_riscv64_seed13579_detail_light.pdf b/experiments/bare_metal/analysis/report/figures/cell_riscv64_seed13579_detail_light.pdf
new file mode 100644
index 0000000..8e1d0cc
Binary files /dev/null and b/experiments/bare_metal/analysis/report/figures/cell_riscv64_seed13579_detail_light.pdf differ
diff --git a/experiments/bare_metal/analysis/report/figures/cell_riscv64_seed13579_trajectory_light.pdf b/experiments/bare_metal/analysis/report/figures/cell_riscv64_seed13579_trajectory_light.pdf
new file mode 100644
index 0000000..845dde6
Binary files /dev/null and b/experiments/bare_metal/analysis/report/figures/cell_riscv64_seed13579_trajectory_light.pdf differ
diff --git a/experiments/bare_metal/analysis/report/figures/cell_riscv64_seed67890_detail_light.pdf b/experiments/bare_metal/analysis/report/figures/cell_riscv64_seed67890_detail_light.pdf
new file mode 100644
index 0000000..808e524
Binary files /dev/null and b/experiments/bare_metal/analysis/report/figures/cell_riscv64_seed67890_detail_light.pdf differ
diff --git a/experiments/bare_metal/analysis/report/figures/cell_riscv64_seed67890_trajectory_light.pdf b/experiments/bare_metal/analysis/report/figures/cell_riscv64_seed67890_trajectory_light.pdf
new file mode 100644
index 0000000..9198eb3
Binary files /dev/null and b/experiments/bare_metal/analysis/report/figures/cell_riscv64_seed67890_trajectory_light.pdf differ
diff --git a/experiments/bare_metal/analysis/report/figures/interact_cv_f_stb_f_earlyexit_light.pdf b/experiments/bare_metal/analysis/report/figures/interact_cv_f_stb_f_earlyexit_light.pdf
new file mode 100644
index 0000000..f1359f0
Binary files /dev/null and b/experiments/bare_metal/analysis/report/figures/interact_cv_f_stb_f_earlyexit_light.pdf differ
diff --git a/experiments/bare_metal/analysis/report/figures/interact_cv_f_stb_f_light.pdf b/experiments/bare_metal/analysis/report/figures/interact_cv_f_stb_f_light.pdf
new file mode 100644
index 0000000..2b4c2a8
Binary files /dev/null and b/experiments/bare_metal/analysis/report/figures/interact_cv_f_stb_f_light.pdf differ
diff --git a/experiments/bare_metal/analysis/report/figures/interact_cv_f_tmp_f_earlyexit_light.pdf b/experiments/bare_metal/analysis/report/figures/interact_cv_f_tmp_f_earlyexit_light.pdf
new file mode 100644
index 0000000..1880c1d
Binary files /dev/null and b/experiments/bare_metal/analysis/report/figures/interact_cv_f_tmp_f_earlyexit_light.pdf differ
diff --git a/experiments/bare_metal/analysis/report/figures/interact_cv_f_tmp_f_light.pdf b/experiments/bare_metal/analysis/report/figures/interact_cv_f_tmp_f_light.pdf
new file mode 100644
index 0000000..a45c90a
Binary files /dev/null and b/experiments/bare_metal/analysis/report/figures/interact_cv_f_tmp_f_light.pdf differ
diff --git a/experiments/bare_metal/analysis/report/figures/interact_ent_f_cv_f_earlyexit_light.pdf b/experiments/bare_metal/analysis/report/figures/interact_ent_f_cv_f_earlyexit_light.pdf
new file mode 100644
index 0000000..864300f
Binary files /dev/null and b/experiments/bare_metal/analysis/report/figures/interact_ent_f_cv_f_earlyexit_light.pdf differ
diff --git a/experiments/bare_metal/analysis/report/figures/interact_ent_f_cv_f_light.pdf b/experiments/bare_metal/analysis/report/figures/interact_ent_f_cv_f_light.pdf
new file mode 100644
index 0000000..3727ef2
Binary files /dev/null and b/experiments/bare_metal/analysis/report/figures/interact_ent_f_cv_f_light.pdf differ
diff --git a/experiments/bare_metal/analysis/report/figures/interact_ent_f_stb_f_earlyexit_light.pdf b/experiments/bare_metal/analysis/report/figures/interact_ent_f_stb_f_earlyexit_light.pdf
new file mode 100644
index 0000000..f52fe1b
Binary files /dev/null and b/experiments/bare_metal/analysis/report/figures/interact_ent_f_stb_f_earlyexit_light.pdf differ
diff --git a/experiments/bare_metal/analysis/report/figures/interact_ent_f_stb_f_light.pdf b/experiments/bare_metal/analysis/report/figures/interact_ent_f_stb_f_light.pdf
new file mode 100644
index 0000000..5a4075c
Binary files /dev/null and b/experiments/bare_metal/analysis/report/figures/interact_ent_f_stb_f_light.pdf differ
diff --git a/experiments/bare_metal/analysis/report/figures/interact_ent_f_tmp_f_earlyexit_light.pdf b/experiments/bare_metal/analysis/report/figures/interact_ent_f_tmp_f_earlyexit_light.pdf
new file mode 100644
index 0000000..e9879a3
Binary files /dev/null and b/experiments/bare_metal/analysis/report/figures/interact_ent_f_tmp_f_earlyexit_light.pdf differ
diff --git a/experiments/bare_metal/analysis/report/figures/interact_ent_f_tmp_f_light.pdf b/experiments/bare_metal/analysis/report/figures/interact_ent_f_tmp_f_light.pdf
new file mode 100644
index 0000000..4200c33
Binary files /dev/null and b/experiments/bare_metal/analysis/report/figures/interact_ent_f_tmp_f_light.pdf differ
diff --git a/experiments/bare_metal/analysis/report/figures/interact_tmp_f_stb_f_earlyexit_light.pdf b/experiments/bare_metal/analysis/report/figures/interact_tmp_f_stb_f_earlyexit_light.pdf
new file mode 100644
index 0000000..2446dc5
Binary files /dev/null and b/experiments/bare_metal/analysis/report/figures/interact_tmp_f_stb_f_earlyexit_light.pdf differ
diff --git a/experiments/bare_metal/analysis/report/figures/interact_tmp_f_stb_f_light.pdf b/experiments/bare_metal/analysis/report/figures/interact_tmp_f_stb_f_light.pdf
new file mode 100644
index 0000000..19e3fa7
Binary files /dev/null and b/experiments/bare_metal/analysis/report/figures/interact_tmp_f_stb_f_light.pdf differ
diff --git a/experiments/bare_metal/analysis/report/figures/isa_aarch64_seed_violin_light.pdf b/experiments/bare_metal/analysis/report/figures/isa_aarch64_seed_violin_light.pdf
new file mode 100644
index 0000000..cc1a182
Binary files /dev/null and b/experiments/bare_metal/analysis/report/figures/isa_aarch64_seed_violin_light.pdf differ
diff --git a/experiments/bare_metal/analysis/report/figures/isa_amd64_seed_violin_light.pdf b/experiments/bare_metal/analysis/report/figures/isa_amd64_seed_violin_light.pdf
new file mode 100644
index 0000000..e5175e5
Binary files /dev/null and b/experiments/bare_metal/analysis/report/figures/isa_amd64_seed_violin_light.pdf differ
diff --git a/experiments/bare_metal/analysis/report/figures/isa_riscv64_seed_violin_light.pdf b/experiments/bare_metal/analysis/report/figures/isa_riscv64_seed_violin_light.pdf
new file mode 100644
index 0000000..27e86db
Binary files /dev/null and b/experiments/bare_metal/analysis/report/figures/isa_riscv64_seed_violin_light.pdf differ
diff --git a/experiments/bare_metal/analysis/report/figures/quad_cv_in_light.pdf b/experiments/bare_metal/analysis/report/figures/quad_cv_in_light.pdf
new file mode 100644
index 0000000..da3a2aa
Binary files /dev/null and b/experiments/bare_metal/analysis/report/figures/quad_cv_in_light.pdf differ
diff --git a/experiments/bare_metal/analysis/report/figures/quad_ent_in_light.pdf b/experiments/bare_metal/analysis/report/figures/quad_ent_in_light.pdf
new file mode 100644
index 0000000..b95e38d
Binary files /dev/null and b/experiments/bare_metal/analysis/report/figures/quad_ent_in_light.pdf differ
diff --git a/experiments/bare_metal/analysis/report/figures/quad_stb_in_light.pdf b/experiments/bare_metal/analysis/report/figures/quad_stb_in_light.pdf
new file mode 100644
index 0000000..4bf20f1
Binary files /dev/null and b/experiments/bare_metal/analysis/report/figures/quad_stb_in_light.pdf differ
diff --git a/experiments/bare_metal/analysis/report/figures/quad_tmp_in_light.pdf b/experiments/bare_metal/analysis/report/figures/quad_tmp_in_light.pdf
new file mode 100644
index 0000000..865dfad
Binary files /dev/null and b/experiments/bare_metal/analysis/report/figures/quad_tmp_in_light.pdf differ
diff --git a/experiments/bare_metal/analysis/report/figures/stadium_fixed_interaction_dark.pdf b/experiments/bare_metal/analysis/report/figures/stadium_fixed_interaction_dark.pdf
new file mode 100644
index 0000000..468a928
Binary files /dev/null and b/experiments/bare_metal/analysis/report/figures/stadium_fixed_interaction_dark.pdf differ
diff --git a/experiments/bare_metal/analysis/report/figures/stadium_fixed_interaction_light.pdf b/experiments/bare_metal/analysis/report/figures/stadium_fixed_interaction_light.pdf
new file mode 100644
index 0000000..06d0ca1
Binary files /dev/null and b/experiments/bare_metal/analysis/report/figures/stadium_fixed_interaction_light.pdf differ
diff --git a/experiments/bare_metal/analysis/report/figures/stadium_fixed_isa_seed_panel_dark.pdf b/experiments/bare_metal/analysis/report/figures/stadium_fixed_isa_seed_panel_dark.pdf
new file mode 100644
index 0000000..9fc2241
Binary files /dev/null and b/experiments/bare_metal/analysis/report/figures/stadium_fixed_isa_seed_panel_dark.pdf differ
diff --git a/experiments/bare_metal/analysis/report/figures/stadium_fixed_isa_seed_panel_light.pdf b/experiments/bare_metal/analysis/report/figures/stadium_fixed_isa_seed_panel_light.pdf
new file mode 100644
index 0000000..35e43a2
Binary files /dev/null and b/experiments/bare_metal/analysis/report/figures/stadium_fixed_isa_seed_panel_light.pdf differ
diff --git a/experiments/bare_metal/analysis/report/figures/stadium_fixed_latin_square_dark.pdf b/experiments/bare_metal/analysis/report/figures/stadium_fixed_latin_square_dark.pdf
new file mode 100644
index 0000000..272a3fe
Binary files /dev/null and b/experiments/bare_metal/analysis/report/figures/stadium_fixed_latin_square_dark.pdf differ
diff --git a/experiments/bare_metal/analysis/report/figures/stadium_fixed_latin_square_light.pdf b/experiments/bare_metal/analysis/report/figures/stadium_fixed_latin_square_light.pdf
new file mode 100644
index 0000000..1dec38a
Binary files /dev/null and b/experiments/bare_metal/analysis/report/figures/stadium_fixed_latin_square_light.pdf differ
diff --git a/experiments/bare_metal/analysis/report/figures/stadium_fixed_percell_grid_dark.pdf b/experiments/bare_metal/analysis/report/figures/stadium_fixed_percell_grid_dark.pdf
new file mode 100644
index 0000000..1dde806
Binary files /dev/null and b/experiments/bare_metal/analysis/report/figures/stadium_fixed_percell_grid_dark.pdf differ
diff --git a/experiments/bare_metal/analysis/report/figures/stadium_fixed_percell_grid_light.pdf b/experiments/bare_metal/analysis/report/figures/stadium_fixed_percell_grid_light.pdf
new file mode 100644
index 0000000..38bd0a0
Binary files /dev/null and b/experiments/bare_metal/analysis/report/figures/stadium_fixed_percell_grid_light.pdf differ
diff --git a/experiments/bare_metal/analysis/report/figures/stadium_relaunch_completeness_dark.pdf b/experiments/bare_metal/analysis/report/figures/stadium_relaunch_completeness_dark.pdf
index 53b14c8..0d8360f 100644
Binary files a/experiments/bare_metal/analysis/report/figures/stadium_relaunch_completeness_dark.pdf and b/experiments/bare_metal/analysis/report/figures/stadium_relaunch_completeness_dark.pdf differ
diff --git a/experiments/bare_metal/analysis/report/figures/stadium_relaunch_completeness_light.pdf b/experiments/bare_metal/analysis/report/figures/stadium_relaunch_completeness_light.pdf
index 4eb2af0..714fbe9 100644
Binary files a/experiments/bare_metal/analysis/report/figures/stadium_relaunch_completeness_light.pdf and b/experiments/bare_metal/analysis/report/figures/stadium_relaunch_completeness_light.pdf differ
diff --git a/experiments/bare_metal/analysis/report/figures/stadium_relaunch_fitq_box_dark.pdf b/experiments/bare_metal/analysis/report/figures/stadium_relaunch_fitq_box_dark.pdf
index 1091d77..ab8ebda 100644
Binary files a/experiments/bare_metal/analysis/report/figures/stadium_relaunch_fitq_box_dark.pdf and b/experiments/bare_metal/analysis/report/figures/stadium_relaunch_fitq_box_dark.pdf differ
diff --git a/experiments/bare_metal/analysis/report/figures/stadium_relaunch_fitq_box_light.pdf b/experiments/bare_metal/analysis/report/figures/stadium_relaunch_fitq_box_light.pdf
index dd04867..d7f114e 100644
Binary files a/experiments/bare_metal/analysis/report/figures/stadium_relaunch_fitq_box_light.pdf and b/experiments/bare_metal/analysis/report/figures/stadium_relaunch_fitq_box_light.pdf differ
diff --git a/experiments/bare_metal/analysis/report/figures/stadium_relaunch_windiv_bar_dark.pdf b/experiments/bare_metal/analysis/report/figures/stadium_relaunch_windiv_bar_dark.pdf
index 125afe0..e931ad9 100644
Binary files a/experiments/bare_metal/analysis/report/figures/stadium_relaunch_windiv_bar_dark.pdf and b/experiments/bare_metal/analysis/report/figures/stadium_relaunch_windiv_bar_dark.pdf differ
diff --git a/experiments/bare_metal/analysis/report/figures/stadium_relaunch_windiv_bar_light.pdf b/experiments/bare_metal/analysis/report/figures/stadium_relaunch_windiv_bar_light.pdf
index 62ce4be..4937997 100644
Binary files a/experiments/bare_metal/analysis/report/figures/stadium_relaunch_windiv_bar_light.pdf and b/experiments/bare_metal/analysis/report/figures/stadium_relaunch_windiv_bar_light.pdf differ
diff --git a/experiments/bare_metal/analysis/report/sections/_include_appendix.tex b/experiments/bare_metal/analysis/report/sections/_include_appendix.tex
new file mode 100644
index 0000000..ecf1ca9
--- /dev/null
+++ b/experiments/bare_metal/analysis/report/sections/_include_appendix.tex
@@ -0,0 +1,9 @@
+\input{sections/appendix_amd64_seed12345}
+\input{sections/appendix_amd64_seed67890}
+\input{sections/appendix_amd64_seed13579}
+\input{sections/appendix_aarch64_seed12345}
+\input{sections/appendix_aarch64_seed67890}
+\input{sections/appendix_aarch64_seed13579}
+\input{sections/appendix_riscv64_seed12345}
+\input{sections/appendix_riscv64_seed67890}
+\input{sections/appendix_riscv64_seed13579}
diff --git a/experiments/bare_metal/analysis/report/sections/_include_cells.tex b/experiments/bare_metal/analysis/report/sections/_include_cells.tex
new file mode 100644
index 0000000..8d1ee79
--- /dev/null
+++ b/experiments/bare_metal/analysis/report/sections/_include_cells.tex
@@ -0,0 +1,9 @@
+\input{sections/cell_amd64_seed12345}
+\input{sections/cell_amd64_seed67890}
+\input{sections/cell_amd64_seed13579}
+\input{sections/cell_aarch64_seed12345}
+\input{sections/cell_aarch64_seed67890}
+\input{sections/cell_aarch64_seed13579}
+\input{sections/cell_riscv64_seed12345}
+\input{sections/cell_riscv64_seed67890}
+\input{sections/cell_riscv64_seed13579}
diff --git a/experiments/bare_metal/analysis/report/sections/_include_interactions.tex b/experiments/bare_metal/analysis/report/sections/_include_interactions.tex
new file mode 100644
index 0000000..14a3456
--- /dev/null
+++ b/experiments/bare_metal/analysis/report/sections/_include_interactions.tex
@@ -0,0 +1,6 @@
+\input{sections/interact_ent_f_cv_f}
+\input{sections/interact_ent_f_tmp_f}
+\input{sections/interact_ent_f_stb_f}
+\input{sections/interact_cv_f_tmp_f}
+\input{sections/interact_cv_f_stb_f}
+\input{sections/interact_tmp_f_stb_f}
diff --git a/experiments/bare_metal/analysis/report/sections/_include_isa.tex b/experiments/bare_metal/analysis/report/sections/_include_isa.tex
new file mode 100644
index 0000000..1b0f031
--- /dev/null
+++ b/experiments/bare_metal/analysis/report/sections/_include_isa.tex
@@ -0,0 +1,3 @@
+\input{sections/isa_amd64}
+\input{sections/isa_aarch64}
+\input{sections/isa_riscv64}
diff --git a/experiments/bare_metal/analysis/report/sections/_include_quad.tex b/experiments/bare_metal/analysis/report/sections/_include_quad.tex
new file mode 100644
index 0000000..cbfabbc
--- /dev/null
+++ b/experiments/bare_metal/analysis/report/sections/_include_quad.tex
@@ -0,0 +1,4 @@
+\input{sections/quad_ent_in}
+\input{sections/quad_cv_in}
+\input{sections/quad_tmp_in}
+\input{sections/quad_stb_in}
diff --git a/experiments/bare_metal/analysis/report/sections/appendix_aarch64_seed12345.tex b/experiments/bare_metal/analysis/report/sections/appendix_aarch64_seed12345.tex
new file mode 100644
index 0000000..4dd278e
--- /dev/null
+++ b/experiments/bare_metal/analysis/report/sections/appendix_aarch64_seed12345.tex
@@ -0,0 +1,499 @@
+\subsection{Raw data: aarch64, seed 12345}
+\label{sec:appendix_aarch64_seed12345}
+
+All 480 rows, execution order (\texttt{run\_id}), for cell aarch64 / seed 12345.
+
+\begin{longtable}{rrrrrr}
+\toprule
+run\_id & cfg & rep & entropy=hi & infer\_dec\_q & early\_exit \\
+\midrule
+\endfirsthead
+\toprule
+run\_id & cfg & rep & entropy=hi & infer\_dec\_q & early\_exit \\
+\midrule
+\endhead
+0 & 7 & 23 & 0 & 0.00 & 0 \\
+1 & 2 & 22 & 0 & 0.00 & 1 \\
+2 & 6 & 2 & 0 & 0.00 & 1 \\
+3 & 5 & 27 & 0 & 0.00 & 1 \\
+4 & 12 & 24 & 1 & 0.00 & 1 \\
+5 & 7 & 4 & 0 & 0.00 & 1 \\
+6 & 9 & 29 & 1 & 0.00 & 1 \\
+7 & 11 & 20 & 1 & 0.00 & 1 \\
+8 & 11 & 23 & 1 & 0.00 & 1 \\
+9 & 7 & 10 & 0 & 0.00 & 1 \\
+10 & 13 & 11 & 1 & 0.00 & 1 \\
+11 & 5 & 5 & 0 & 0.00 & 1 \\
+12 & 1 & 6 & 0 & 0.00 & 1 \\
+13 & 12 & 27 & 1 & 0.00 & 1 \\
+14 & 13 & 20 & 1 & 0.00 & 1 \\
+15 & 4 & 3 & 0 & 0.00 & 1 \\
+16 & 5 & 13 & 0 & 0.00 & 1 \\
+17 & 12 & 12 & 1 & 0.00 & 1 \\
+18 & 6 & 21 & 0 & 0.00 & 1 \\
+19 & 4 & 26 & 0 & 0.00 & 1 \\
+20 & 15 & 27 & 1 & 0.00 & 1 \\
+21 & 5 & 9 & 0 & 0.00 & 1 \\
+22 & 11 & 16 & 1 & 0.00 & 1 \\
+23 & 5 & 14 & 0 & 0.00 & 1 \\
+24 & 9 & 7 & 1 & 0.00 & 1 \\
+25 & 13 & 13 & 1 & 0.00 & 1 \\
+26 & 10 & 21 & 1 & 0.00 & 1 \\
+27 & 8 & 17 & 1 & 0.00 & 1 \\
+28 & 12 & 14 & 1 & 0.00 & 1 \\
+29 & 4 & 5 & 0 & 0.00 & 1 \\
+30 & 4 & 11 & 0 & 0.00 & 1 \\
+31 & 7 & 3 & 0 & 0.00 & 1 \\
+32 & 9 & 3 & 1 & 0.00 & 1 \\
+33 & 0 & 8 & 0 & 0.00 & 1 \\
+34 & 9 & 18 & 1 & 0.00 & 1 \\
+35 & 7 & 15 & 0 & 0.00 & 1 \\
+36 & 5 & 7 & 0 & 0.00 & 1 \\
+37 & 2 & 20 & 0 & 0.00 & 1 \\
+38 & 13 & 6 & 1 & 0.00 & 1 \\
+39 & 12 & 6 & 1 & 0.00 & 1 \\
+40 & 14 & 2 & 1 & 0.00 & 1 \\
+41 & 5 & 1 & 0 & 0.00 & 1 \\
+42 & 4 & 28 & 0 & 0.00 & 1 \\
+43 & 0 & 14 & 0 & 0.00 & 1 \\
+44 & 11 & 11 & 1 & 0.00 & 1 \\
+45 & 1 & 9 & 0 & 0.00 & 1 \\
+46 & 5 & 29 & 0 & 0.00 & 1 \\
+47 & 12 & 3 & 1 & 0.00 & 1 \\
+48 & 10 & 11 & 1 & 0.00 & 1 \\
+49 & 6 & 29 & 0 & 0.00 & 1 \\
+50 & 0 & 22 & 0 & 0.00 & 1 \\
+51 & 1 & 2 & 0 & 0.00 & 1 \\
+52 & 10 & 24 & 1 & 0.00 & 1 \\
+53 & 0 & 5 & 0 & 0.00 & 1 \\
+54 & 6 & 10 & 0 & 0.00 & 1 \\
+55 & 9 & 14 & 1 & 0.00 & 1 \\
+56 & 5 & 4 & 0 & 0.00 & 1 \\
+57 & 13 & 0 & 1 & 0.00 & 1 \\
+58 & 4 & 25 & 0 & 0.00 & 1 \\
+59 & 3 & 21 & 0 & 0.00 & 1 \\
+60 & 1 & 1 & 0 & 0.00 & 1 \\
+61 & 0 & 19 & 0 & 0.00 & 1 \\
+62 & 7 & 0 & 0 & 0.00 & 1 \\
+63 & 13 & 12 & 1 & 0.00 & 1 \\
+64 & 1 & 20 & 0 & 0.00 & 1 \\
+65 & 12 & 4 & 1 & 0.00 & 1 \\
+66 & 12 & 1 & 1 & 0.00 & 1 \\
+67 & 14 & 16 & 1 & 0.00 & 1 \\
+68 & 8 & 4 & 1 & 0.00 & 1 \\
+69 & 1 & 5 & 0 & 0.00 & 1 \\
+70 & 13 & 15 & 1 & 0.00 & 1 \\
+71 & 9 & 12 & 1 & 0.00 & 1 \\
+72 & 3 & 4 & 0 & 0.00 & 1 \\
+73 & 6 & 23 & 0 & 0.00 & 1 \\
+74 & 0 & 11 & 0 & 0.00 & 1 \\
+75 & 1 & 13 & 0 & 0.00 & 1 \\
+76 & 3 & 11 & 0 & 0.00 & 1 \\
+77 & 3 & 24 & 0 & 0.00 & 1 \\
+78 & 6 & 11 & 0 & 0.00 & 1 \\
+79 & 8 & 16 & 1 & 0.00 & 1 \\
+80 & 14 & 28 & 1 & 0.00 & 1 \\
+81 & 10 & 22 & 1 & 0.00 & 1 \\
+82 & 2 & 27 & 0 & 0.00 & 1 \\
+83 & 10 & 7 & 1 & 0.00 & 1 \\
+84 & 1 & 21 & 0 & 0.00 & 1 \\
+85 & 14 & 18 & 1 & 0.00 & 1 \\
+86 & 1 & 19 & 0 & 0.00 & 1 \\
+87 & 7 & 29 & 0 & 0.00 & 1 \\
+88 & 8 & 6 & 1 & 0.00 & 1 \\
+89 & 11 & 2 & 1 & 0.00 & 1 \\
+90 & 6 & 5 & 0 & 0.00 & 1 \\
+91 & 4 & 20 & 0 & 0.00 & 1 \\
+92 & 4 & 17 & 0 & 0.00 & 1 \\
+93 & 0 & 15 & 0 & 0.00 & 1 \\
+94 & 0 & 10 & 0 & 56.00 & 0 \\
+95 & 9 & 13 & 1 & 56.00 & 1 \\
+96 & 2 & 5 & 0 & 56.00 & 1 \\
+97 & 1 & 4 & 0 & 56.00 & 1 \\
+98 & 8 & 8 & 1 & 56.00 & 1 \\
+99 & 2 & 18 & 0 & 56.00 & 1 \\
+100 & 4 & 21 & 0 & 56.00 & 1 \\
+101 & 13 & 8 & 1 & 56.00 & 1 \\
+102 & 9 & 0 & 1 & 56.00 & 1 \\
+103 & 6 & 24 & 0 & 56.00 & 1 \\
+104 & 10 & 12 & 1 & 56.00 & 1 \\
+105 & 14 & 10 & 1 & 56.00 & 1 \\
+106 & 9 & 17 & 1 & 56.00 & 1 \\
+107 & 6 & 13 & 0 & 56.00 & 1 \\
+108 & 6 & 18 & 0 & 56.00 & 1 \\
+109 & 8 & 19 & 1 & 56.00 & 1 \\
+110 & 8 & 20 & 1 & 56.00 & 1 \\
+111 & 5 & 23 & 0 & 56.00 & 1 \\
+112 & 6 & 17 & 0 & 56.00 & 1 \\
+113 & 13 & 2 & 1 & 56.00 & 1 \\
+114 & 0 & 25 & 0 & 56.00 & 1 \\
+115 & 12 & 17 & 1 & 56.00 & 1 \\
+116 & 12 & 28 & 1 & 56.00 & 1 \\
+117 & 7 & 16 & 0 & 56.00 & 1 \\
+118 & 0 & 23 & 0 & 56.00 & 1 \\
+119 & 0 & 13 & 0 & 56.00 & 1 \\
+120 & 2 & 12 & 0 & 56.00 & 1 \\
+121 & 7 & 2 & 0 & 56.00 & 1 \\
+122 & 13 & 24 & 1 & 56.00 & 1 \\
+123 & 8 & 26 & 1 & 56.00 & 1 \\
+124 & 3 & 10 & 0 & 56.00 & 1 \\
+125 & 6 & 22 & 0 & 56.00 & 1 \\
+126 & 14 & 3 & 1 & 56.00 & 1 \\
+127 & 0 & 12 & 0 & 56.00 & 1 \\
+128 & 0 & 1 & 0 & 56.00 & 1 \\
+129 & 12 & 2 & 1 & 56.00 & 1 \\
+130 & 0 & 24 & 0 & 56.00 & 1 \\
+131 & 10 & 0 & 1 & 56.00 & 1 \\
+132 & 2 & 29 & 0 & 56.00 & 1 \\
+133 & 3 & 1 & 0 & 56.00 & 1 \\
+134 & 13 & 16 & 1 & 56.00 & 1 \\
+135 & 14 & 26 & 1 & 56.00 & 1 \\
+136 & 3 & 15 & 0 & 56.00 & 1 \\
+137 & 4 & 2 & 0 & 56.00 & 1 \\
+138 & 15 & 9 & 1 & 56.00 & 1 \\
+139 & 0 & 26 & 0 & 56.00 & 1 \\
+140 & 8 & 22 & 1 & 56.00 & 1 \\
+141 & 10 & 28 & 1 & 56.00 & 1 \\
+142 & 11 & 4 & 1 & 56.00 & 1 \\
+143 & 4 & 27 & 0 & 56.00 & 1 \\
+144 & 8 & 15 & 1 & 56.00 & 1 \\
+145 & 9 & 19 & 1 & 56.00 & 1 \\
+146 & 0 & 0 & 0 & 56.00 & 1 \\
+147 & 13 & 7 & 1 & 56.00 & 1 \\
+148 & 13 & 27 & 1 & 56.00 & 1 \\
+149 & 11 & 26 & 1 & 56.00 & 1 \\
+150 & 2 & 2 & 0 & 56.00 & 1 \\
+151 & 14 & 22 & 1 & 56.00 & 1 \\
+152 & 4 & 18 & 0 & 56.00 & 1 \\
+153 & 0 & 3 & 0 & 56.00 & 1 \\
+154 & 15 & 28 & 1 & 56.00 & 1 \\
+155 & 12 & 26 & 1 & 56.00 & 1 \\
+156 & 12 & 8 & 1 & 56.00 & 1 \\
+157 & 3 & 9 & 0 & 56.00 & 1 \\
+158 & 3 & 22 & 0 & 56.00 & 1 \\
+159 & 15 & 7 & 1 & 56.00 & 1 \\
+160 & 11 & 1 & 1 & 56.00 & 1 \\
+161 & 12 & 29 & 1 & 56.00 & 1 \\
+162 & 14 & 27 & 1 & 56.00 & 1 \\
+163 & 4 & 29 & 0 & 56.00 & 1 \\
+164 & 1 & 25 & 0 & 56.00 & 1 \\
+165 & 6 & 7 & 0 & 56.00 & 1 \\
+166 & 14 & 6 & 1 & 56.00 & 1 \\
+167 & 9 & 4 & 1 & 56.00 & 1 \\
+168 & 9 & 8 & 1 & 56.00 & 1 \\
+169 & 3 & 27 & 0 & 56.00 & 1 \\
+170 & 5 & 21 & 0 & 56.00 & 1 \\
+171 & 12 & 18 & 1 & 56.00 & 1 \\
+172 & 14 & 23 & 1 & 56.00 & 1 \\
+173 & 13 & 26 & 1 & 56.00 & 1 \\
+174 & 11 & 17 & 1 & 56.00 & 1 \\
+175 & 5 & 8 & 0 & 56.00 & 1 \\
+176 & 4 & 13 & 0 & 56.00 & 1 \\
+177 & 1 & 11 & 0 & 56.00 & 1 \\
+178 & 15 & 26 & 1 & 56.00 & 1 \\
+179 & 11 & 29 & 1 & 56.00 & 1 \\
+180 & 10 & 23 & 1 & 56.00 & 1 \\
+181 & 1 & 23 & 0 & 56.00 & 1 \\
+182 & 9 & 27 & 1 & 56.00 & 1 \\
+183 & 14 & 9 & 1 & 56.00 & 1 \\
+184 & 13 & 21 & 1 & 56.00 & 1 \\
+185 & 8 & 3 & 1 & 56.00 & 1 \\
+186 & 9 & 23 & 1 & 56.00 & 1 \\
+187 & 12 & 22 & 1 & 56.00 & 1 \\
+188 & 14 & 15 & 1 & 68.00 & 0 \\
+189 & 3 & 8 & 0 & 68.00 & 1 \\
+190 & 6 & 27 & 0 & 68.00 & 1 \\
+191 & 4 & 14 & 0 & 68.00 & 1 \\
+192 & 7 & 21 & 0 & 68.00 & 1 \\
+193 & 15 & 6 & 1 & 68.00 & 1 \\
+194 & 2 & 0 & 0 & 68.00 & 1 \\
+195 & 6 & 6 & 0 & 68.00 & 1 \\
+196 & 13 & 1 & 1 & 68.00 & 1 \\
+197 & 12 & 11 & 1 & 68.00 & 1 \\
+198 & 2 & 6 & 0 & 68.00 & 1 \\
+199 & 5 & 16 & 0 & 68.00 & 1 \\
+200 & 14 & 29 & 1 & 68.00 & 1 \\
+201 & 15 & 13 & 1 & 68.00 & 1 \\
+202 & 15 & 15 & 1 & 68.00 & 1 \\
+203 & 4 & 24 & 0 & 68.00 & 1 \\
+204 & 10 & 3 & 1 & 68.00 & 1 \\
+205 & 3 & 19 & 0 & 68.00 & 1 \\
+206 & 15 & 24 & 1 & 68.00 & 1 \\
+207 & 1 & 7 & 0 & 68.00 & 1 \\
+208 & 8 & 18 & 1 & 68.00 & 1 \\
+209 & 0 & 27 & 0 & 68.00 & 1 \\
+210 & 0 & 7 & 0 & 68.00 & 1 \\
+211 & 5 & 10 & 0 & 68.00 & 1 \\
+212 & 7 & 26 & 0 & 68.00 & 1 \\
+213 & 0 & 6 & 0 & 68.00 & 1 \\
+214 & 3 & 18 & 0 & 68.00 & 1 \\
+215 & 9 & 9 & 1 & 68.00 & 1 \\
+216 & 7 & 25 & 0 & 68.00 & 1 \\
+217 & 12 & 5 & 1 & 68.00 & 1 \\
+218 & 7 & 8 & 0 & 68.00 & 1 \\
+219 & 12 & 10 & 1 & 68.00 & 1 \\
+220 & 10 & 2 & 1 & 68.00 & 1 \\
+221 & 13 & 28 & 1 & 68.00 & 1 \\
+222 & 3 & 0 & 0 & 68.00 & 1 \\
+223 & 7 & 6 & 0 & 68.00 & 1 \\
+224 & 6 & 3 & 0 & 68.00 & 1 \\
+225 & 5 & 17 & 0 & 68.00 & 1 \\
+226 & 7 & 7 & 0 & 68.00 & 1 \\
+227 & 14 & 8 & 1 & 68.00 & 1 \\
+228 & 6 & 4 & 0 & 68.00 & 1 \\
+229 & 14 & 12 & 1 & 68.00 & 1 \\
+230 & 1 & 18 & 0 & 68.00 & 1 \\
+231 & 4 & 6 & 0 & 68.00 & 1 \\
+232 & 0 & 9 & 0 & 68.00 & 1 \\
+233 & 1 & 15 & 0 & 68.00 & 1 \\
+234 & 13 & 29 & 1 & 68.00 & 1 \\
+235 & 5 & 28 & 0 & 68.00 & 1 \\
+236 & 14 & 7 & 1 & 68.00 & 1 \\
+237 & 15 & 29 & 1 & 68.00 & 1 \\
+238 & 2 & 4 & 0 & 68.00 & 1 \\
+239 & 2 & 3 & 0 & 68.00 & 1 \\
+240 & 7 & 1 & 0 & 68.00 & 1 \\
+241 & 13 & 25 & 1 & 68.00 & 1 \\
+242 & 6 & 25 & 0 & 68.00 & 1 \\
+243 & 12 & 23 & 1 & 68.00 & 1 \\
+244 & 7 & 9 & 0 & 68.00 & 1 \\
+245 & 11 & 3 & 1 & 68.00 & 1 \\
+246 & 10 & 6 & 1 & 68.00 & 1 \\
+247 & 6 & 9 & 0 & 68.00 & 1 \\
+248 & 14 & 21 & 1 & 73.00 & 0 \\
+249 & 8 & 21 & 1 & 73.00 & 1 \\
+250 & 10 & 18 & 1 & 73.00 & 1 \\
+251 & 6 & 16 & 0 & 73.00 & 1 \\
+252 & 2 & 24 & 0 & 73.00 & 1 \\
+253 & 13 & 14 & 1 & 73.00 & 1 \\
+254 & 1 & 29 & 0 & 73.00 & 1 \\
+255 & 10 & 29 & 1 & 73.00 & 1 \\
+256 & 7 & 24 & 0 & 73.00 & 1 \\
+257 & 1 & 0 & 0 & 73.00 & 1 \\
+258 & 10 & 20 & 1 & 73.00 & 1 \\
+259 & 7 & 27 & 0 & 73.00 & 1 \\
+260 & 8 & 5 & 1 & 73.00 & 1 \\
+261 & 10 & 17 & 1 & 73.00 & 1 \\
+262 & 14 & 13 & 1 & 73.00 & 1 \\
+263 & 13 & 17 & 1 & 73.00 & 1 \\
+264 & 11 & 21 & 1 & 73.00 & 1 \\
+265 & 15 & 2 & 1 & 73.00 & 1 \\
+266 & 15 & 23 & 1 & 73.00 & 1 \\
+267 & 9 & 16 & 1 & 73.00 & 1 \\
+268 & 11 & 0 & 1 & 73.00 & 1 \\
+269 & 2 & 16 & 0 & 73.00 & 1 \\
+270 & 2 & 14 & 0 & 73.00 & 1 \\
+271 & 7 & 19 & 0 & 73.00 & 1 \\
+272 & 3 & 17 & 0 & 73.00 & 1 \\
+273 & 15 & 21 & 1 & 73.00 & 1 \\
+274 & 11 & 8 & 1 & 73.00 & 1 \\
+275 & 5 & 20 & 0 & 73.00 & 1 \\
+276 & 14 & 14 & 1 & 73.00 & 1 \\
+277 & 8 & 2 & 1 & 73.00 & 1 \\
+278 & 0 & 20 & 0 & 73.00 & 1 \\
+279 & 0 & 21 & 0 & 73.00 & 1 \\
+280 & 0 & 28 & 0 & 73.00 & 1 \\
+281 & 14 & 19 & 1 & 73.00 & 1 \\
+282 & 15 & 25 & 1 & 73.00 & 1 \\
+283 & 11 & 19 & 1 & 73.00 & 1 \\
+284 & 8 & 14 & 1 & 73.00 & 1 \\
+285 & 10 & 4 & 1 & 73.00 & 1 \\
+286 & 4 & 0 & 0 & 73.00 & 1 \\
+287 & 3 & 6 & 0 & 73.00 & 1 \\
+288 & 8 & 27 & 1 & 73.00 & 1 \\
+289 & 3 & 25 & 0 & 73.00 & 1 \\
+290 & 14 & 0 & 1 & 73.00 & 1 \\
+291 & 3 & 28 & 0 & 73.00 & 1 \\
+292 & 10 & 9 & 1 & 73.00 & 1 \\
+293 & 11 & 7 & 1 & 73.00 & 1 \\
+294 & 4 & 15 & 0 & 73.00 & 1 \\
+295 & 12 & 21 & 1 & 73.00 & 1 \\
+296 & 4 & 8 & 0 & 73.00 & 1 \\
+297 & 5 & 18 & 0 & 73.00 & 1 \\
+298 & 5 & 25 & 0 & 73.00 & 1 \\
+299 & 15 & 12 & 1 & 73.00 & 1 \\
+300 & 7 & 22 & 0 & 73.00 & 1 \\
+301 & 0 & 4 & 0 & 73.00 & 1 \\
+302 & 13 & 10 & 1 & 73.00 & 1 \\
+303 & 4 & 7 & 0 & 73.00 & 1 \\
+304 & 2 & 17 & 0 & 73.00 & 1 \\
+305 & 1 & 12 & 0 & 73.00 & 1 \\
+306 & 13 & 4 & 1 & 73.00 & 1 \\
+307 & 11 & 10 & 1 & 73.00 & 1 \\
+308 & 5 & 22 & 0 & 73.00 & 1 \\
+309 & 8 & 23 & 1 & 73.00 & 1 \\
+310 & 10 & 5 & 1 & 73.00 & 1 \\
+311 & 11 & 28 & 1 & 73.00 & 1 \\
+312 & 6 & 15 & 0 & 73.00 & 1 \\
+313 & 15 & 22 & 1 & 73.00 & 1 \\
+314 & 1 & 27 & 0 & 73.00 & 1 \\
+315 & 2 & 7 & 0 & 73.00 & 1 \\
+316 & 4 & 9 & 0 & 73.00 & 1 \\
+317 & 13 & 5 & 1 & 73.00 & 1 \\
+318 & 2 & 1 & 0 & 73.00 & 1 \\
+319 & 9 & 5 & 1 & 73.00 & 1 \\
+320 & 10 & 10 & 1 & 73.00 & 1 \\
+321 & 8 & 24 & 1 & 73.00 & 1 \\
+322 & 9 & 1 & 1 & 73.00 & 1 \\
+323 & 8 & 9 & 1 & 73.00 & 1 \\
+324 & 15 & 20 & 1 & 78.00 & 0 \\
+325 & 3 & 12 & 0 & 78.00 & 1 \\
+326 & 1 & 22 & 0 & 78.00 & 1 \\
+327 & 5 & 15 & 0 & 78.00 & 1 \\
+328 & 9 & 2 & 1 & 78.00 & 1 \\
+329 & 8 & 29 & 1 & 78.00 & 1 \\
+330 & 8 & 12 & 1 & 78.00 & 1 \\
+331 & 1 & 16 & 0 & 78.00 & 1 \\
+332 & 6 & 20 & 0 & 78.00 & 1 \\
+333 & 10 & 27 & 1 & 78.00 & 1 \\
+334 & 14 & 1 & 1 & 78.00 & 1 \\
+335 & 11 & 18 & 1 & 78.00 & 1 \\
+336 & 15 & 0 & 1 & 78.00 & 1 \\
+337 & 3 & 13 & 0 & 78.00 & 1 \\
+338 & 13 & 19 & 1 & 78.00 & 1 \\
+339 & 15 & 19 & 1 & 78.00 & 1 \\
+340 & 15 & 5 & 1 & 78.00 & 1 \\
+341 & 1 & 10 & 0 & 78.00 & 1 \\
+342 & 8 & 11 & 1 & 78.00 & 1 \\
+343 & 3 & 20 & 0 & 78.00 & 1 \\
+344 & 0 & 16 & 0 & 78.00 & 1 \\
+345 & 12 & 19 & 1 & 78.00 & 1 \\
+346 & 9 & 26 & 1 & 78.00 & 1 \\
+347 & 12 & 13 & 1 & 78.00 & 1 \\
+348 & 2 & 26 & 0 & 78.00 & 1 \\
+349 & 10 & 13 & 1 & 78.00 & 1 \\
+350 & 7 & 13 & 0 & 78.00 & 1 \\
+351 & 8 & 10 & 1 & 78.00 & 1 \\
+352 & 10 & 19 & 1 & 78.00 & 1 \\
+353 & 15 & 4 & 1 & 78.00 & 1 \\
+354 & 4 & 22 & 0 & 78.00 & 1 \\
+355 & 8 & 28 & 1 & 78.00 & 1 \\
+356 & 6 & 26 & 0 & 78.00 & 1 \\
+357 & 7 & 18 & 0 & 78.00 & 1 \\
+358 & 2 & 8 & 0 & 78.00 & 1 \\
+359 & 8 & 7 & 1 & 78.00 & 1 \\
+360 & 6 & 28 & 0 & 78.00 & 1 \\
+361 & 9 & 22 & 1 & 78.00 & 1 \\
+362 & 12 & 25 & 1 & 78.00 & 1 \\
+363 & 1 & 14 & 0 & 78.00 & 1 \\
+364 & 5 & 0 & 0 & 78.00 & 1 \\
+365 & 10 & 15 & 1 & 80.00 & 0 \\
+366 & 15 & 3 & 1 & 80.00 & 1 \\
+367 & 10 & 1 & 1 & 80.00 & 1 \\
+368 & 1 & 26 & 0 & 80.00 & 1 \\
+369 & 15 & 18 & 1 & 80.00 & 1 \\
+370 & 2 & 25 & 0 & 80.00 & 1 \\
+371 & 10 & 16 & 1 & 80.00 & 1 \\
+372 & 3 & 26 & 0 & 80.00 & 1 \\
+373 & 10 & 14 & 1 & 80.00 & 1 \\
+374 & 7 & 12 & 0 & 80.00 & 1 \\
+375 & 8 & 13 & 1 & 80.00 & 1 \\
+376 & 7 & 14 & 0 & 80.00 & 1 \\
+377 & 3 & 14 & 0 & 80.00 & 1 \\
+378 & 14 & 25 & 1 & 80.00 & 1 \\
+379 & 10 & 8 & 1 & 80.00 & 1 \\
+380 & 9 & 24 & 1 & 80.00 & 1 \\
+381 & 12 & 16 & 1 & 80.00 & 1 \\
+382 & 14 & 24 & 1 & 80.00 & 1 \\
+383 & 1 & 17 & 0 & 80.00 & 1 \\
+384 & 15 & 1 & 1 & 80.00 & 1 \\
+385 & 11 & 24 & 1 & 80.00 & 1 \\
+386 & 8 & 0 & 1 & 80.00 & 1 \\
+387 & 9 & 25 & 1 & 80.00 & 1 \\
+388 & 11 & 12 & 1 & 80.00 & 1 \\
+389 & 1 & 8 & 0 & 80.00 & 1 \\
+390 & 7 & 28 & 0 & 80.00 & 1 \\
+391 & 15 & 14 & 1 & 80.00 & 1 \\
+392 & 2 & 10 & 0 & 80.00 & 1 \\
+393 & 2 & 15 & 0 & 80.00 & 1 \\
+394 & 9 & 15 & 1 & 80.00 & 1 \\
+395 & 9 & 11 & 1 & 80.00 & 1 \\
+396 & 2 & 23 & 0 & 80.00 & 1 \\
+397 & 14 & 11 & 1 & 80.00 & 1 \\
+398 & 15 & 16 & 1 & 80.00 & 1 \\
+399 & 5 & 19 & 0 & 80.00 & 1 \\
+400 & 3 & 2 & 0 & 80.00 & 1 \\
+401 & 2 & 19 & 0 & 80.00 & 1 \\
+402 & 9 & 6 & 1 & 80.00 & 1 \\
+403 & 10 & 25 & 1 & 80.00 & 1 \\
+404 & 6 & 1 & 0 & 80.00 & 1 \\
+405 & 8 & 25 & 1 & 80.00 & 1 \\
+406 & 6 & 0 & 0 & 80.00 & 1 \\
+407 & 6 & 12 & 0 & 80.00 & 1 \\
+408 & 12 & 20 & 1 & 80.00 & 1 \\
+409 & 3 & 7 & 0 & 80.00 & 1 \\
+410 & 14 & 17 & 1 & 80.00 & 1 \\
+411 & 9 & 21 & 1 & 80.00 & 1 \\
+412 & 11 & 13 & 1 & 80.00 & 1 \\
+413 & 12 & 0 & 1 & 80.00 & 1 \\
+414 & 3 & 5 & 0 & 80.00 & 1 \\
+415 & 2 & 9 & 0 & 80.00 & 1 \\
+416 & 9 & 28 & 1 & 80.00 & 1 \\
+417 & 2 & 21 & 0 & 80.00 & 1 \\
+418 & 5 & 12 & 0 & 80.00 & 1 \\
+419 & 11 & 14 & 1 & 80.00 & 1 \\
+420 & 6 & 19 & 0 & 80.00 & 1 \\
+421 & 7 & 11 & 0 & 80.00 & 1 \\
+422 & 7 & 17 & 0 & 80.00 & 1 \\
+423 & 0 & 18 & 0 & 80.00 & 1 \\
+424 & 15 & 10 & 1 & 80.00 & 1 \\
+425 & 13 & 22 & 1 & 80.00 & 1 \\
+426 & 0 & 17 & 0 & 80.00 & 1 \\
+427 & 15 & 17 & 1 & 80.00 & 1 \\
+428 & 15 & 8 & 1 & 80.00 & 1 \\
+429 & 5 & 2 & 0 & 80.00 & 1 \\
+430 & 14 & 4 & 1 & 80.00 & 1 \\
+431 & 4 & 23 & 0 & 80.00 & 1 \\
+432 & 4 & 16 & 0 & 80.00 & 1 \\
+433 & 2 & 13 & 0 & 80.00 & 1 \\
+434 & 0 & 29 & 0 & 80.00 & 1 \\
+435 & 4 & 12 & 0 & 80.00 & 1 \\
+436 & 3 & 16 & 0 & 80.00 & 1 \\
+437 & 5 & 24 & 0 & 80.00 & 1 \\
+438 & 11 & 6 & 1 & 80.00 & 1 \\
+439 & 0 & 2 & 0 & 80.00 & 1 \\
+440 & 1 & 28 & 0 & 80.00 & 1 \\
+441 & 6 & 8 & 0 & 80.00 & 1 \\
+442 & 5 & 11 & 0 & 80.00 & 1 \\
+443 & 11 & 9 & 1 & 80.00 & 1 \\
+444 & 10 & 26 & 1 & 80.00 & 1 \\
+445 & 9 & 10 & 1 & 80.00 & 1 \\
+446 & 13 & 3 & 1 & 80.00 & 1 \\
+447 & 13 & 18 & 1 & 80.00 & 1 \\
+448 & 4 & 4 & 0 & 80.00 & 1 \\
+449 & 4 & 19 & 0 & 80.00 & 1 \\
+450 & 11 & 5 & 1 & 80.00 & 1 \\
+451 & 5 & 3 & 0 & 80.00 & 1 \\
+452 & 3 & 29 & 0 & 80.00 & 1 \\
+453 & 15 & 11 & 1 & 80.00 & 1 \\
+454 & 11 & 25 & 1 & 80.00 & 1 \\
+455 & 3 & 23 & 0 & 80.00 & 1 \\
+456 & 2 & 28 & 0 & 80.00 & 1 \\
+457 & 14 & 20 & 1 & 80.00 & 1 \\
+458 & 3 & 3 & 0 & 80.00 & 1 \\
+459 & 11 & 15 & 1 & 80.00 & 1 \\
+460 & 12 & 7 & 1 & 80.00 & 1 \\
+461 & 2 & 11 & 0 & 80.00 & 1 \\
+462 & 5 & 6 & 0 & 80.00 & 1 \\
+463 & 12 & 9 & 1 & 80.00 & 1 \\
+464 & 6 & 14 & 0 & 80.00 & 1 \\
+465 & 11 & 27 & 1 & 80.00 & 1 \\
+466 & 5 & 26 & 0 & 80.00 & 1 \\
+467 & 9 & 20 & 1 & 80.00 & 1 \\
+468 & 1 & 3 & 0 & 80.00 & 1 \\
+469 & 13 & 23 & 1 & 80.00 & 1 \\
+470 & 1 & 24 & 0 & 80.00 & 1 \\
+471 & 11 & 22 & 1 & 80.00 & 1 \\
+472 & 8 & 1 & 1 & 80.00 & 1 \\
+473 & 7 & 20 & 0 & 80.00 & 1 \\
+474 & 13 & 9 & 1 & 80.00 & 1 \\
+475 & 7 & 5 & 0 & 80.00 & 1 \\
+476 & 4 & 10 & 0 & 80.00 & 1 \\
+477 & 12 & 15 & 1 & 80.00 & 1 \\
+478 & 4 & 1 & 0 & 80.00 & 1 \\
+479 & 14 & 5 & 1 & 80.00 & 1 \\
+\bottomrule
+\end{longtable}
+
+\clearpage
+
diff --git a/experiments/bare_metal/analysis/report/sections/appendix_aarch64_seed13579.tex b/experiments/bare_metal/analysis/report/sections/appendix_aarch64_seed13579.tex
new file mode 100644
index 0000000..96920ff
--- /dev/null
+++ b/experiments/bare_metal/analysis/report/sections/appendix_aarch64_seed13579.tex
@@ -0,0 +1,499 @@
+\subsection{Raw data: aarch64, seed 13579}
+\label{sec:appendix_aarch64_seed13579}
+
+All 480 rows, execution order (\texttt{run\_id}), for cell aarch64 / seed 13579.
+
+\begin{longtable}{rrrrrr}
+\toprule
+run\_id & cfg & rep & entropy=hi & infer\_dec\_q & early\_exit \\
+\midrule
+\endfirsthead
+\toprule
+run\_id & cfg & rep & entropy=hi & infer\_dec\_q & early\_exit \\
+\midrule
+\endhead
+0 & 5 & 18 & 0 & 0.00 & 0 \\
+1 & 11 & 14 & 1 & 0.00 & 1 \\
+2 & 10 & 1 & 1 & 0.00 & 1 \\
+3 & 13 & 13 & 1 & 0.00 & 1 \\
+4 & 3 & 7 & 0 & 0.00 & 1 \\
+5 & 1 & 9 & 0 & 0.00 & 1 \\
+6 & 14 & 19 & 1 & 0.00 & 1 \\
+7 & 6 & 29 & 0 & 0.00 & 1 \\
+8 & 14 & 5 & 1 & 0.00 & 1 \\
+9 & 7 & 9 & 0 & 0.00 & 1 \\
+10 & 8 & 2 & 1 & 0.00 & 1 \\
+11 & 5 & 2 & 0 & 0.00 & 1 \\
+12 & 2 & 21 & 0 & 0.00 & 1 \\
+13 & 12 & 28 & 1 & 0.00 & 1 \\
+14 & 14 & 29 & 1 & 0.00 & 1 \\
+15 & 6 & 27 & 0 & 0.00 & 1 \\
+16 & 11 & 16 & 1 & 0.00 & 1 \\
+17 & 9 & 27 & 1 & 0.00 & 1 \\
+18 & 6 & 17 & 0 & 0.00 & 1 \\
+19 & 2 & 22 & 0 & 0.00 & 1 \\
+20 & 1 & 17 & 0 & 0.00 & 1 \\
+21 & 1 & 10 & 0 & 0.00 & 1 \\
+22 & 13 & 29 & 1 & 0.00 & 1 \\
+23 & 5 & 20 & 0 & 0.00 & 1 \\
+24 & 11 & 3 & 1 & 0.00 & 1 \\
+25 & 2 & 11 & 0 & 0.00 & 1 \\
+26 & 3 & 25 & 0 & 0.00 & 1 \\
+27 & 7 & 1 & 0 & 0.00 & 1 \\
+28 & 3 & 28 & 0 & 0.00 & 1 \\
+29 & 2 & 17 & 0 & 0.00 & 1 \\
+30 & 4 & 14 & 0 & 0.00 & 1 \\
+31 & 10 & 3 & 1 & 0.00 & 1 \\
+32 & 10 & 0 & 1 & 0.00 & 1 \\
+33 & 14 & 25 & 1 & 0.00 & 1 \\
+34 & 7 & 5 & 0 & 0.00 & 1 \\
+35 & 6 & 1 & 0 & 0.00 & 1 \\
+36 & 13 & 25 & 1 & 0.00 & 1 \\
+37 & 14 & 1 & 1 & 0.00 & 1 \\
+38 & 1 & 24 & 0 & 0.00 & 1 \\
+39 & 12 & 18 & 1 & 0.00 & 1 \\
+40 & 6 & 20 & 0 & 0.00 & 1 \\
+41 & 8 & 10 & 1 & 0.00 & 1 \\
+42 & 2 & 0 & 0 & 0.00 & 1 \\
+43 & 8 & 27 & 1 & 0.00 & 1 \\
+44 & 6 & 19 & 0 & 0.00 & 1 \\
+45 & 7 & 14 & 0 & 0.00 & 1 \\
+46 & 15 & 9 & 1 & 0.00 & 1 \\
+47 & 13 & 7 & 1 & 0.00 & 1 \\
+48 & 6 & 6 & 0 & 0.00 & 1 \\
+49 & 4 & 20 & 0 & 0.00 & 1 \\
+50 & 12 & 1 & 1 & 0.00 & 1 \\
+51 & 14 & 2 & 1 & 0.00 & 1 \\
+52 & 8 & 8 & 1 & 0.00 & 1 \\
+53 & 15 & 19 & 1 & 0.00 & 1 \\
+54 & 8 & 6 & 1 & 0.00 & 1 \\
+55 & 5 & 11 & 0 & 0.00 & 1 \\
+56 & 2 & 26 & 0 & 0.00 & 1 \\
+57 & 6 & 8 & 0 & 0.00 & 1 \\
+58 & 14 & 23 & 1 & 0.00 & 1 \\
+59 & 8 & 0 & 1 & 0.00 & 1 \\
+60 & 3 & 10 & 0 & 0.00 & 1 \\
+61 & 2 & 5 & 0 & 0.00 & 1 \\
+62 & 13 & 20 & 1 & 0.00 & 1 \\
+63 & 6 & 24 & 0 & 0.00 & 1 \\
+64 & 11 & 25 & 1 & 0.00 & 1 \\
+65 & 8 & 1 & 1 & 0.00 & 1 \\
+66 & 3 & 5 & 0 & 0.00 & 1 \\
+67 & 9 & 26 & 1 & 0.00 & 1 \\
+68 & 7 & 18 & 0 & 0.00 & 1 \\
+69 & 2 & 7 & 0 & 0.00 & 1 \\
+70 & 3 & 22 & 0 & 0.00 & 1 \\
+71 & 5 & 19 & 0 & 0.00 & 1 \\
+72 & 1 & 27 & 0 & 0.00 & 1 \\
+73 & 7 & 22 & 0 & 0.00 & 1 \\
+74 & 6 & 4 & 0 & 0.00 & 1 \\
+75 & 7 & 20 & 0 & 0.00 & 1 \\
+76 & 1 & 6 & 0 & 0.00 & 1 \\
+77 & 14 & 14 & 1 & 0.00 & 1 \\
+78 & 2 & 9 & 0 & 0.00 & 1 \\
+79 & 6 & 22 & 0 & 0.00 & 1 \\
+80 & 4 & 10 & 0 & 0.00 & 1 \\
+81 & 3 & 4 & 0 & 0.00 & 1 \\
+82 & 7 & 29 & 0 & 0.00 & 1 \\
+83 & 8 & 5 & 1 & 0.00 & 1 \\
+84 & 6 & 21 & 0 & 0.00 & 1 \\
+85 & 13 & 24 & 1 & 0.00 & 1 \\
+86 & 11 & 29 & 1 & 0.00 & 1 \\
+87 & 15 & 28 & 1 & 0.00 & 1 \\
+88 & 13 & 18 & 1 & 0.00 & 1 \\
+89 & 9 & 6 & 1 & 0.00 & 1 \\
+90 & 15 & 7 & 1 & 0.00 & 1 \\
+91 & 10 & 27 & 1 & 0.00 & 1 \\
+92 & 2 & 18 & 0 & 0.00 & 1 \\
+93 & 1 & 13 & 0 & 0.00 & 1 \\
+94 & 4 & 1 & 0 & 0.00 & 1 \\
+95 & 0 & 29 & 0 & 0.00 & 1 \\
+96 & 12 & 13 & 1 & 0.00 & 1 \\
+97 & 2 & 12 & 0 & 0.00 & 1 \\
+98 & 5 & 24 & 0 & 0.00 & 1 \\
+99 & 2 & 2 & 0 & 0.00 & 1 \\
+100 & 6 & 23 & 0 & 0.00 & 1 \\
+101 & 8 & 22 & 1 & 0.00 & 1 \\
+102 & 12 & 25 & 1 & 0.00 & 1 \\
+103 & 12 & 15 & 1 & 0.00 & 1 \\
+104 & 11 & 4 & 1 & 0.00 & 1 \\
+105 & 0 & 11 & 0 & 0.00 & 1 \\
+106 & 9 & 24 & 1 & 0.00 & 1 \\
+107 & 9 & 13 & 1 & 0.00 & 1 \\
+108 & 7 & 23 & 0 & 0.00 & 1 \\
+109 & 5 & 10 & 0 & 0.00 & 1 \\
+110 & 14 & 13 & 1 & 0.00 & 1 \\
+111 & 2 & 14 & 0 & 0.00 & 1 \\
+112 & 10 & 29 & 1 & 0.00 & 1 \\
+113 & 1 & 14 & 0 & 0.00 & 1 \\
+114 & 11 & 15 & 1 & 0.00 & 1 \\
+115 & 2 & 20 & 0 & 0.00 & 1 \\
+116 & 5 & 12 & 0 & 0.00 & 1 \\
+117 & 15 & 22 & 1 & 0.00 & 1 \\
+118 & 3 & 26 & 0 & 0.00 & 1 \\
+119 & 1 & 1 & 0 & 0.00 & 1 \\
+120 & 3 & 17 & 0 & 0.00 & 1 \\
+121 & 15 & 4 & 1 & 0.00 & 1 \\
+122 & 6 & 9 & 0 & 0.00 & 1 \\
+123 & 6 & 25 & 0 & 0.00 & 1 \\
+124 & 5 & 1 & 0 & 0.00 & 1 \\
+125 & 4 & 18 & 0 & 0.00 & 1 \\
+126 & 5 & 5 & 0 & 0.00 & 1 \\
+127 & 9 & 2 & 1 & 0.00 & 1 \\
+128 & 1 & 12 & 0 & 0.00 & 1 \\
+129 & 8 & 14 & 1 & 0.00 & 1 \\
+130 & 15 & 5 & 1 & 0.00 & 1 \\
+131 & 4 & 4 & 0 & 0.00 & 1 \\
+132 & 15 & 11 & 1 & 0.00 & 1 \\
+133 & 3 & 18 & 0 & 0.00 & 1 \\
+134 & 5 & 27 & 0 & 0.00 & 1 \\
+135 & 12 & 11 & 1 & 0.00 & 1 \\
+136 & 7 & 19 & 0 & 0.00 & 1 \\
+137 & 1 & 26 & 0 & 0.00 & 1 \\
+138 & 12 & 20 & 1 & 0.00 & 1 \\
+139 & 0 & 14 & 0 & 0.00 & 1 \\
+140 & 3 & 8 & 0 & 0.00 & 1 \\
+141 & 9 & 8 & 1 & 0.00 & 1 \\
+142 & 1 & 7 & 0 & 0.00 & 1 \\
+143 & 4 & 0 & 0 & 0.00 & 1 \\
+144 & 9 & 10 & 1 & 0.00 & 1 \\
+145 & 7 & 21 & 0 & 0.00 & 1 \\
+146 & 1 & 22 & 0 & 0.00 & 1 \\
+147 & 14 & 4 & 1 & 0.00 & 1 \\
+148 & 15 & 14 & 1 & 0.00 & 1 \\
+149 & 11 & 11 & 1 & 0.00 & 1 \\
+150 & 14 & 15 & 1 & 0.00 & 1 \\
+151 & 10 & 26 & 1 & 0.00 & 1 \\
+152 & 0 & 19 & 0 & 0.00 & 1 \\
+153 & 0 & 23 & 0 & 0.00 & 1 \\
+154 & 8 & 4 & 1 & 0.00 & 1 \\
+155 & 10 & 8 & 1 & 0.00 & 1 \\
+156 & 11 & 22 & 1 & 0.00 & 1 \\
+157 & 0 & 22 & 0 & 0.00 & 1 \\
+158 & 10 & 22 & 1 & 0.00 & 1 \\
+159 & 3 & 14 & 0 & 0.00 & 1 \\
+160 & 2 & 3 & 0 & 0.00 & 1 \\
+161 & 15 & 15 & 1 & 0.00 & 1 \\
+162 & 6 & 11 & 0 & 0.00 & 1 \\
+163 & 7 & 2 & 0 & 0.00 & 1 \\
+164 & 7 & 26 & 0 & 0.00 & 1 \\
+165 & 9 & 19 & 1 & 0.00 & 1 \\
+166 & 7 & 4 & 0 & 0.00 & 1 \\
+167 & 4 & 19 & 0 & 0.00 & 1 \\
+168 & 10 & 5 & 1 & 0.00 & 1 \\
+169 & 0 & 28 & 0 & 0.00 & 1 \\
+170 & 7 & 27 & 0 & 0.00 & 1 \\
+171 & 0 & 6 & 0 & 0.00 & 1 \\
+172 & 2 & 23 & 0 & 0.00 & 1 \\
+173 & 15 & 6 & 1 & 0.00 & 1 \\
+174 & 14 & 16 & 1 & 0.00 & 1 \\
+175 & 4 & 26 & 0 & 0.00 & 1 \\
+176 & 4 & 16 & 0 & 0.00 & 1 \\
+177 & 15 & 27 & 1 & 0.00 & 1 \\
+178 & 3 & 13 & 0 & 0.00 & 1 \\
+179 & 8 & 26 & 1 & 0.00 & 1 \\
+180 & 15 & 12 & 1 & 0.00 & 1 \\
+181 & 5 & 13 & 0 & 0.00 & 1 \\
+182 & 11 & 1 & 1 & 0.00 & 1 \\
+183 & 15 & 18 & 1 & 0.00 & 1 \\
+184 & 3 & 6 & 0 & 0.00 & 1 \\
+185 & 10 & 6 & 1 & 0.00 & 1 \\
+186 & 0 & 12 & 0 & 68.00 & 0 \\
+187 & 9 & 4 & 1 & 68.00 & 1 \\
+188 & 1 & 4 & 0 & 68.00 & 1 \\
+189 & 8 & 13 & 1 & 68.00 & 1 \\
+190 & 0 & 18 & 0 & 68.00 & 1 \\
+191 & 12 & 2 & 1 & 68.00 & 1 \\
+192 & 12 & 24 & 1 & 68.00 & 1 \\
+193 & 11 & 9 & 1 & 68.00 & 1 \\
+194 & 14 & 9 & 1 & 68.00 & 1 \\
+195 & 13 & 10 & 1 & 68.00 & 1 \\
+196 & 2 & 16 & 0 & 68.00 & 1 \\
+197 & 9 & 20 & 1 & 68.00 & 1 \\
+198 & 13 & 1 & 1 & 68.00 & 1 \\
+199 & 8 & 24 & 1 & 68.00 & 1 \\
+200 & 10 & 14 & 1 & 68.00 & 1 \\
+201 & 2 & 15 & 0 & 68.00 & 1 \\
+202 & 4 & 15 & 0 & 68.00 & 1 \\
+203 & 12 & 26 & 1 & 68.00 & 1 \\
+204 & 10 & 23 & 1 & 68.00 & 1 \\
+205 & 5 & 17 & 0 & 68.00 & 1 \\
+206 & 12 & 8 & 1 & 68.00 & 1 \\
+207 & 2 & 28 & 0 & 68.00 & 1 \\
+208 & 1 & 11 & 0 & 68.00 & 1 \\
+209 & 9 & 7 & 1 & 68.00 & 1 \\
+210 & 14 & 6 & 1 & 68.00 & 1 \\
+211 & 7 & 15 & 0 & 68.00 & 1 \\
+212 & 0 & 15 & 0 & 68.00 & 1 \\
+213 & 6 & 3 & 0 & 68.00 & 1 \\
+214 & 15 & 2 & 1 & 68.00 & 1 \\
+215 & 6 & 10 & 0 & 68.00 & 1 \\
+216 & 14 & 0 & 1 & 68.00 & 1 \\
+217 & 8 & 20 & 1 & 68.00 & 1 \\
+218 & 1 & 23 & 0 & 68.00 & 1 \\
+219 & 13 & 6 & 1 & 68.00 & 1 \\
+220 & 14 & 17 & 1 & 68.00 & 1 \\
+221 & 11 & 17 & 1 & 68.00 & 1 \\
+222 & 7 & 7 & 0 & 68.00 & 1 \\
+223 & 6 & 12 & 0 & 68.00 & 1 \\
+224 & 6 & 26 & 0 & 68.00 & 1 \\
+225 & 11 & 0 & 1 & 68.00 & 1 \\
+226 & 5 & 3 & 0 & 68.00 & 1 \\
+227 & 4 & 25 & 0 & 68.00 & 1 \\
+228 & 9 & 16 & 1 & 68.00 & 1 \\
+229 & 11 & 24 & 1 & 68.00 & 1 \\
+230 & 8 & 23 & 1 & 68.00 & 1 \\
+231 & 15 & 17 & 1 & 68.00 & 1 \\
+232 & 4 & 13 & 0 & 68.00 & 1 \\
+233 & 1 & 5 & 0 & 68.00 & 1 \\
+234 & 12 & 12 & 1 & 68.00 & 1 \\
+235 & 6 & 14 & 0 & 68.00 & 1 \\
+236 & 2 & 6 & 0 & 68.00 & 1 \\
+237 & 3 & 29 & 0 & 68.00 & 1 \\
+238 & 11 & 19 & 1 & 68.00 & 1 \\
+239 & 12 & 9 & 1 & 68.00 & 1 \\
+240 & 11 & 21 & 1 & 68.00 & 1 \\
+241 & 12 & 5 & 1 & 68.00 & 1 \\
+242 & 1 & 3 & 0 & 68.00 & 1 \\
+243 & 3 & 11 & 0 & 68.00 & 1 \\
+244 & 13 & 9 & 1 & 68.00 & 1 \\
+245 & 15 & 29 & 1 & 68.00 & 1 \\
+246 & 4 & 12 & 0 & 68.00 & 1 \\
+247 & 12 & 21 & 1 & 68.00 & 1 \\
+248 & 12 & 29 & 1 & 68.00 & 1 \\
+249 & 2 & 19 & 0 & 73.00 & 0 \\
+250 & 8 & 18 & 1 & 73.00 & 1 \\
+251 & 5 & 16 & 0 & 73.00 & 1 \\
+252 & 4 & 29 & 0 & 73.00 & 1 \\
+253 & 5 & 21 & 0 & 73.00 & 1 \\
+254 & 15 & 21 & 1 & 73.00 & 1 \\
+255 & 15 & 10 & 1 & 73.00 & 1 \\
+256 & 9 & 21 & 1 & 73.00 & 1 \\
+257 & 2 & 1 & 0 & 73.00 & 1 \\
+258 & 6 & 13 & 0 & 73.00 & 1 \\
+259 & 6 & 18 & 0 & 73.00 & 1 \\
+260 & 12 & 14 & 1 & 73.00 & 1 \\
+261 & 5 & 28 & 0 & 73.00 & 1 \\
+262 & 5 & 14 & 0 & 73.00 & 1 \\
+263 & 10 & 18 & 1 & 73.00 & 1 \\
+264 & 0 & 7 & 0 & 73.00 & 1 \\
+265 & 8 & 3 & 1 & 73.00 & 1 \\
+266 & 1 & 8 & 0 & 73.00 & 1 \\
+267 & 12 & 4 & 1 & 74.00 & 0 \\
+268 & 12 & 16 & 1 & 74.00 & 1 \\
+269 & 7 & 17 & 0 & 74.00 & 1 \\
+270 & 13 & 23 & 1 & 74.00 & 1 \\
+271 & 0 & 8 & 0 & 74.00 & 1 \\
+272 & 0 & 25 & 0 & 74.00 & 1 \\
+273 & 3 & 19 & 0 & 74.00 & 1 \\
+274 & 13 & 0 & 1 & 74.00 & 1 \\
+275 & 15 & 24 & 1 & 74.00 & 1 \\
+276 & 5 & 9 & 0 & 74.00 & 1 \\
+277 & 0 & 4 & 0 & 74.00 & 1 \\
+278 & 14 & 8 & 1 & 74.00 & 1 \\
+279 & 4 & 6 & 0 & 74.00 & 1 \\
+280 & 11 & 13 & 1 & 74.00 & 1 \\
+281 & 4 & 21 & 0 & 74.00 & 1 \\
+282 & 7 & 25 & 0 & 74.00 & 1 \\
+283 & 9 & 22 & 1 & 74.00 & 1 \\
+284 & 14 & 11 & 1 & 74.00 & 1 \\
+285 & 0 & 16 & 0 & 74.00 & 1 \\
+286 & 13 & 19 & 1 & 74.00 & 1 \\
+287 & 14 & 21 & 1 & 74.00 & 1 \\
+288 & 5 & 15 & 0 & 74.00 & 1 \\
+289 & 7 & 10 & 0 & 74.00 & 1 \\
+290 & 12 & 27 & 1 & 74.00 & 1 \\
+291 & 15 & 3 & 1 & 74.00 & 1 \\
+292 & 8 & 25 & 1 & 74.00 & 1 \\
+293 & 13 & 16 & 1 & 74.00 & 1 \\
+294 & 10 & 4 & 1 & 74.00 & 1 \\
+295 & 9 & 18 & 1 & 74.00 & 1 \\
+296 & 13 & 8 & 1 & 74.00 & 1 \\
+297 & 4 & 5 & 0 & 74.00 & 1 \\
+298 & 14 & 20 & 1 & 74.00 & 1 \\
+299 & 4 & 8 & 0 & 74.00 & 1 \\
+300 & 13 & 15 & 1 & 74.00 & 1 \\
+301 & 15 & 0 & 1 & 74.00 & 1 \\
+302 & 9 & 17 & 1 & 74.00 & 1 \\
+303 & 11 & 23 & 1 & 74.00 & 1 \\
+304 & 1 & 2 & 0 & 74.00 & 1 \\
+305 & 12 & 10 & 1 & 74.00 & 1 \\
+306 & 2 & 27 & 0 & 74.00 & 1 \\
+307 & 14 & 7 & 1 & 74.00 & 1 \\
+308 & 7 & 28 & 0 & 74.00 & 1 \\
+309 & 7 & 11 & 0 & 74.00 & 1 \\
+310 & 5 & 22 & 0 & 74.00 & 1 \\
+311 & 8 & 7 & 1 & 74.00 & 1 \\
+312 & 0 & 27 & 0 & 74.00 & 1 \\
+313 & 4 & 9 & 0 & 74.00 & 1 \\
+314 & 11 & 10 & 1 & 74.00 & 1 \\
+315 & 1 & 20 & 0 & 74.00 & 1 \\
+316 & 10 & 13 & 1 & 74.00 & 1 \\
+317 & 6 & 28 & 0 & 74.00 & 1 \\
+318 & 11 & 6 & 1 & 74.00 & 1 \\
+319 & 9 & 5 & 1 & 74.00 & 1 \\
+320 & 10 & 17 & 1 & 74.00 & 1 \\
+321 & 7 & 13 & 0 & 74.00 & 1 \\
+322 & 0 & 5 & 0 & 74.00 & 1 \\
+323 & 5 & 25 & 0 & 74.00 & 1 \\
+324 & 15 & 8 & 1 & 74.00 & 1 \\
+325 & 3 & 24 & 0 & 74.00 & 1 \\
+326 & 12 & 23 & 1 & 74.00 & 1 \\
+327 & 14 & 28 & 1 & 74.00 & 1 \\
+328 & 0 & 20 & 0 & 74.00 & 1 \\
+329 & 6 & 5 & 0 & 74.00 & 1 \\
+330 & 2 & 24 & 0 & 74.00 & 1 \\
+331 & 13 & 3 & 1 & 74.00 & 1 \\
+332 & 6 & 16 & 0 & 74.00 & 1 \\
+333 & 2 & 13 & 0 & 74.00 & 1 \\
+334 & 15 & 20 & 1 & 74.00 & 1 \\
+335 & 10 & 10 & 1 & 74.00 & 1 \\
+336 & 4 & 27 & 0 & 74.00 & 1 \\
+337 & 4 & 11 & 0 & 74.00 & 1 \\
+338 & 8 & 12 & 1 & 74.00 & 1 \\
+339 & 2 & 4 & 0 & 74.00 & 1 \\
+340 & 10 & 12 & 1 & 74.00 & 1 \\
+341 & 0 & 0 & 0 & 74.00 & 1 \\
+342 & 3 & 16 & 0 & 74.00 & 1 \\
+343 & 9 & 3 & 1 & 74.00 & 1 \\
+344 & 1 & 21 & 0 & 74.00 & 1 \\
+345 & 11 & 28 & 1 & 74.00 & 1 \\
+346 & 12 & 22 & 1 & 74.00 & 1 \\
+347 & 1 & 18 & 0 & 74.00 & 1 \\
+348 & 6 & 7 & 0 & 74.00 & 1 \\
+349 & 5 & 0 & 0 & 74.00 & 1 \\
+350 & 9 & 25 & 1 & 74.00 & 1 \\
+351 & 14 & 12 & 1 & 74.00 & 1 \\
+352 & 13 & 26 & 1 & 74.00 & 1 \\
+353 & 9 & 12 & 1 & 74.00 & 1 \\
+354 & 0 & 3 & 0 & 74.00 & 1 \\
+355 & 4 & 7 & 0 & 74.00 & 1 \\
+356 & 5 & 4 & 0 & 74.00 & 1 \\
+357 & 10 & 7 & 1 & 74.00 & 1 \\
+358 & 9 & 0 & 1 & 74.00 & 1 \\
+359 & 11 & 7 & 1 & 74.00 & 1 \\
+360 & 10 & 2 & 1 & 74.00 & 1 \\
+361 & 13 & 5 & 1 & 74.00 & 1 \\
+362 & 6 & 2 & 0 & 74.00 & 1 \\
+363 & 4 & 28 & 0 & 74.00 & 1 \\
+364 & 0 & 24 & 0 & 74.00 & 1 \\
+365 & 13 & 2 & 1 & 74.00 & 1 \\
+366 & 0 & 13 & 0 & 74.00 & 1 \\
+367 & 1 & 25 & 0 & 74.00 & 1 \\
+368 & 12 & 0 & 1 & 74.00 & 1 \\
+369 & 8 & 28 & 1 & 74.00 & 1 \\
+370 & 3 & 12 & 0 & 74.00 & 1 \\
+371 & 13 & 17 & 1 & 74.00 & 1 \\
+372 & 13 & 22 & 1 & 74.00 & 1 \\
+373 & 10 & 9 & 1 & 74.00 & 1 \\
+374 & 14 & 26 & 1 & 74.00 & 1 \\
+375 & 2 & 8 & 0 & 74.00 & 1 \\
+376 & 8 & 15 & 1 & 74.00 & 1 \\
+377 & 0 & 2 & 0 & 74.00 & 1 \\
+378 & 8 & 11 & 1 & 74.00 & 1 \\
+379 & 14 & 10 & 1 & 74.00 & 1 \\
+380 & 8 & 19 & 1 & 74.00 & 1 \\
+381 & 0 & 9 & 0 & 74.00 & 1 \\
+382 & 2 & 10 & 0 & 74.00 & 1 \\
+383 & 9 & 9 & 1 & 74.00 & 1 \\
+384 & 6 & 15 & 0 & 74.00 & 1 \\
+385 & 11 & 26 & 1 & 74.00 & 1 \\
+386 & 7 & 3 & 0 & 74.00 & 1 \\
+387 & 14 & 27 & 1 & 74.00 & 1 \\
+388 & 13 & 14 & 1 & 74.00 & 1 \\
+389 & 10 & 19 & 1 & 74.00 & 1 \\
+390 & 10 & 20 & 1 & 74.00 & 1 \\
+391 & 0 & 10 & 0 & 74.00 & 1 \\
+392 & 3 & 9 & 0 & 74.00 & 1 \\
+393 & 11 & 12 & 1 & 74.00 & 1 \\
+394 & 3 & 20 & 0 & 74.00 & 1 \\
+395 & 4 & 24 & 0 & 74.00 & 1 \\
+396 & 5 & 6 & 0 & 74.00 & 1 \\
+397 & 15 & 25 & 1 & 74.00 & 1 \\
+398 & 4 & 3 & 0 & 74.00 & 1 \\
+399 & 11 & 18 & 1 & 74.00 & 1 \\
+400 & 13 & 28 & 1 & 74.00 & 1 \\
+401 & 12 & 17 & 1 & 74.00 & 1 \\
+402 & 11 & 8 & 1 & 74.00 & 1 \\
+403 & 8 & 17 & 1 & 74.00 & 1 \\
+404 & 1 & 29 & 0 & 74.00 & 1 \\
+405 & 11 & 2 & 1 & 74.00 & 1 \\
+406 & 14 & 24 & 1 & 74.00 & 1 \\
+407 & 8 & 16 & 1 & 74.00 & 1 \\
+408 & 1 & 28 & 0 & 74.00 & 1 \\
+409 & 10 & 11 & 1 & 74.00 & 1 \\
+410 & 3 & 2 & 0 & 74.00 & 1 \\
+411 & 6 & 0 & 0 & 74.00 & 1 \\
+412 & 9 & 14 & 1 & 74.00 & 1 \\
+413 & 1 & 19 & 0 & 74.00 & 1 \\
+414 & 5 & 26 & 0 & 74.00 & 1 \\
+415 & 7 & 0 & 0 & 74.00 & 1 \\
+416 & 9 & 11 & 1 & 74.00 & 1 \\
+417 & 8 & 29 & 1 & 74.00 & 1 \\
+418 & 4 & 22 & 0 & 74.00 & 1 \\
+419 & 5 & 8 & 0 & 74.00 & 1 \\
+420 & 0 & 17 & 0 & 74.00 & 1 \\
+421 & 8 & 21 & 1 & 74.00 & 1 \\
+422 & 15 & 16 & 1 & 74.00 & 1 \\
+423 & 7 & 16 & 0 & 74.00 & 1 \\
+424 & 1 & 15 & 0 & 74.00 & 1 \\
+425 & 9 & 23 & 1 & 74.00 & 1 \\
+426 & 11 & 20 & 1 & 74.00 & 1 \\
+427 & 4 & 17 & 0 & 74.00 & 1 \\
+428 & 15 & 23 & 1 & 74.00 & 1 \\
+429 & 14 & 18 & 1 & 74.00 & 1 \\
+430 & 3 & 27 & 0 & 74.00 & 1 \\
+431 & 13 & 11 & 1 & 74.00 & 1 \\
+432 & 10 & 24 & 1 & 74.00 & 1 \\
+433 & 3 & 0 & 0 & 74.00 & 1 \\
+434 & 10 & 15 & 1 & 74.00 & 1 \\
+435 & 7 & 6 & 0 & 74.00 & 1 \\
+436 & 2 & 25 & 0 & 74.00 & 1 \\
+437 & 13 & 12 & 1 & 74.00 & 1 \\
+438 & 12 & 3 & 1 & 74.00 & 1 \\
+439 & 15 & 26 & 1 & 74.00 & 1 \\
+440 & 1 & 16 & 0 & 74.00 & 1 \\
+441 & 3 & 15 & 0 & 74.00 & 1 \\
+442 & 8 & 9 & 1 & 74.00 & 1 \\
+443 & 7 & 12 & 0 & 74.00 & 1 \\
+444 & 11 & 27 & 1 & 74.00 & 1 \\
+445 & 9 & 15 & 1 & 74.00 & 1 \\
+446 & 13 & 4 & 1 & 74.00 & 1 \\
+447 & 15 & 1 & 1 & 74.00 & 1 \\
+448 & 10 & 28 & 1 & 74.00 & 1 \\
+449 & 2 & 29 & 0 & 74.00 & 1 \\
+450 & 12 & 19 & 1 & 74.00 & 1 \\
+451 & 3 & 1 & 0 & 74.00 & 1 \\
+452 & 9 & 28 & 1 & 74.00 & 1 \\
+453 & 0 & 21 & 0 & 74.00 & 1 \\
+454 & 9 & 1 & 1 & 74.00 & 1 \\
+455 & 0 & 1 & 0 & 74.00 & 1 \\
+456 & 1 & 0 & 0 & 74.00 & 1 \\
+457 & 15 & 13 & 1 & 74.00 & 1 \\
+458 & 11 & 5 & 1 & 74.00 & 1 \\
+459 & 4 & 2 & 0 & 74.00 & 1 \\
+460 & 10 & 21 & 1 & 74.00 & 1 \\
+461 & 13 & 27 & 1 & 74.00 & 1 \\
+462 & 14 & 22 & 1 & 74.00 & 1 \\
+463 & 3 & 21 & 0 & 74.00 & 1 \\
+464 & 4 & 23 & 0 & 74.00 & 1 \\
+465 & 3 & 3 & 0 & 74.00 & 1 \\
+466 & 14 & 3 & 1 & 74.00 & 1 \\
+467 & 0 & 26 & 0 & 74.00 & 1 \\
+468 & 7 & 8 & 0 & 74.00 & 1 \\
+469 & 5 & 23 & 0 & 74.00 & 1 \\
+470 & 5 & 29 & 0 & 74.00 & 1 \\
+471 & 12 & 7 & 1 & 74.00 & 1 \\
+472 & 5 & 7 & 0 & 74.00 & 1 \\
+473 & 13 & 21 & 1 & 74.00 & 1 \\
+474 & 10 & 25 & 1 & 74.00 & 1 \\
+475 & 7 & 24 & 0 & 74.00 & 1 \\
+476 & 9 & 29 & 1 & 74.00 & 1 \\
+477 & 3 & 23 & 0 & 74.00 & 1 \\
+478 & 10 & 16 & 1 & 74.00 & 1 \\
+479 & 12 & 6 & 1 & 74.00 & 1 \\
+\bottomrule
+\end{longtable}
+
+\clearpage
+
diff --git a/experiments/bare_metal/analysis/report/sections/appendix_aarch64_seed67890.tex b/experiments/bare_metal/analysis/report/sections/appendix_aarch64_seed67890.tex
new file mode 100644
index 0000000..9c2f13d
--- /dev/null
+++ b/experiments/bare_metal/analysis/report/sections/appendix_aarch64_seed67890.tex
@@ -0,0 +1,499 @@
+\subsection{Raw data: aarch64, seed 67890}
+\label{sec:appendix_aarch64_seed67890}
+
+All 480 rows, execution order (\texttt{run\_id}), for cell aarch64 / seed 67890.
+
+\begin{longtable}{rrrrrr}
+\toprule
+run\_id & cfg & rep & entropy=hi & infer\_dec\_q & early\_exit \\
+\midrule
+\endfirsthead
+\toprule
+run\_id & cfg & rep & entropy=hi & infer\_dec\_q & early\_exit \\
+\midrule
+\endhead
+0 & 12 & 23 & 1 & 0.00 & 0 \\
+1 & 9 & 11 & 1 & 0.00 & 1 \\
+2 & 0 & 20 & 0 & 0.00 & 1 \\
+3 & 15 & 21 & 1 & 0.00 & 1 \\
+4 & 0 & 13 & 0 & 0.00 & 1 \\
+5 & 10 & 0 & 1 & 0.00 & 1 \\
+6 & 0 & 8 & 0 & 0.00 & 1 \\
+7 & 8 & 10 & 1 & 0.00 & 1 \\
+8 & 11 & 9 & 1 & 0.00 & 1 \\
+9 & 8 & 9 & 1 & 0.00 & 1 \\
+10 & 13 & 22 & 1 & 0.00 & 1 \\
+11 & 1 & 13 & 0 & 0.00 & 1 \\
+12 & 14 & 10 & 1 & 0.00 & 1 \\
+13 & 14 & 4 & 1 & 0.00 & 1 \\
+14 & 4 & 3 & 0 & 0.00 & 1 \\
+15 & 5 & 20 & 0 & 0.00 & 1 \\
+16 & 7 & 19 & 0 & 0.00 & 1 \\
+17 & 6 & 16 & 0 & 0.00 & 1 \\
+18 & 6 & 27 & 0 & 0.00 & 1 \\
+19 & 7 & 4 & 0 & 0.00 & 1 \\
+20 & 13 & 20 & 1 & 0.00 & 1 \\
+21 & 11 & 14 & 1 & 0.00 & 1 \\
+22 & 13 & 28 & 1 & 0.00 & 1 \\
+23 & 11 & 4 & 1 & 0.00 & 1 \\
+24 & 13 & 11 & 1 & 0.00 & 1 \\
+25 & 9 & 26 & 1 & 0.00 & 1 \\
+26 & 11 & 26 & 1 & 0.00 & 1 \\
+27 & 14 & 23 & 1 & 0.00 & 1 \\
+28 & 9 & 10 & 1 & 0.00 & 1 \\
+29 & 7 & 21 & 0 & 0.00 & 1 \\
+30 & 8 & 23 & 1 & 0.00 & 1 \\
+31 & 1 & 8 & 0 & 0.00 & 1 \\
+32 & 14 & 21 & 1 & 0.00 & 1 \\
+33 & 14 & 25 & 1 & 0.00 & 1 \\
+34 & 4 & 7 & 0 & 0.00 & 1 \\
+35 & 1 & 19 & 0 & 0.00 & 1 \\
+36 & 6 & 9 & 0 & 0.00 & 1 \\
+37 & 10 & 26 & 1 & 0.00 & 1 \\
+38 & 7 & 28 & 0 & 0.00 & 1 \\
+39 & 11 & 13 & 1 & 0.00 & 1 \\
+40 & 12 & 10 & 1 & 0.00 & 1 \\
+41 & 2 & 22 & 0 & 0.00 & 1 \\
+42 & 6 & 13 & 0 & 0.00 & 1 \\
+43 & 6 & 21 & 0 & 0.00 & 1 \\
+44 & 6 & 14 & 0 & 0.00 & 1 \\
+45 & 12 & 14 & 1 & 0.00 & 1 \\
+46 & 10 & 15 & 1 & 0.00 & 1 \\
+47 & 1 & 26 & 0 & 0.00 & 1 \\
+48 & 8 & 4 & 1 & 0.00 & 1 \\
+49 & 0 & 5 & 0 & 0.00 & 1 \\
+50 & 7 & 22 & 0 & 0.00 & 1 \\
+51 & 10 & 6 & 1 & 0.00 & 1 \\
+52 & 0 & 28 & 0 & 0.00 & 1 \\
+53 & 2 & 13 & 0 & 0.00 & 1 \\
+54 & 12 & 25 & 1 & 0.00 & 1 \\
+55 & 8 & 21 & 1 & 0.00 & 1 \\
+56 & 9 & 8 & 1 & 0.00 & 1 \\
+57 & 13 & 12 & 1 & 0.00 & 1 \\
+58 & 5 & 0 & 0 & 0.00 & 1 \\
+59 & 8 & 3 & 1 & 0.00 & 1 \\
+60 & 13 & 10 & 1 & 0.00 & 1 \\
+61 & 15 & 24 & 1 & 0.00 & 1 \\
+62 & 9 & 25 & 1 & 0.00 & 1 \\
+63 & 8 & 12 & 1 & 0.00 & 1 \\
+64 & 5 & 26 & 0 & 0.00 & 1 \\
+65 & 12 & 18 & 1 & 0.00 & 1 \\
+66 & 2 & 0 & 0 & 0.00 & 1 \\
+67 & 6 & 18 & 0 & 0.00 & 1 \\
+68 & 4 & 19 & 0 & 0.00 & 1 \\
+69 & 3 & 27 & 0 & 0.00 & 1 \\
+70 & 11 & 19 & 1 & 0.00 & 1 \\
+71 & 4 & 2 & 0 & 0.00 & 1 \\
+72 & 15 & 22 & 1 & 0.00 & 1 \\
+73 & 1 & 11 & 0 & 0.00 & 1 \\
+74 & 11 & 3 & 1 & 0.00 & 1 \\
+75 & 4 & 12 & 0 & 0.00 & 1 \\
+76 & 1 & 9 & 0 & 0.00 & 1 \\
+77 & 6 & 23 & 0 & 0.00 & 1 \\
+78 & 1 & 12 & 0 & 0.00 & 1 \\
+79 & 6 & 19 & 0 & 0.00 & 1 \\
+80 & 10 & 10 & 1 & 0.00 & 1 \\
+81 & 9 & 19 & 1 & 0.00 & 1 \\
+82 & 11 & 17 & 1 & 0.00 & 1 \\
+83 & 14 & 18 & 1 & 0.00 & 1 \\
+84 & 8 & 16 & 1 & 0.00 & 1 \\
+85 & 10 & 8 & 1 & 0.00 & 1 \\
+86 & 7 & 14 & 0 & 0.00 & 1 \\
+87 & 4 & 13 & 0 & 0.00 & 1 \\
+88 & 12 & 0 & 1 & 0.00 & 1 \\
+89 & 8 & 7 & 1 & 0.00 & 1 \\
+90 & 15 & 6 & 1 & 0.00 & 1 \\
+91 & 1 & 23 & 0 & 0.00 & 1 \\
+92 & 3 & 23 & 0 & 0.00 & 1 \\
+93 & 14 & 9 & 1 & 0.00 & 1 \\
+94 & 4 & 28 & 0 & 0.00 & 1 \\
+95 & 5 & 12 & 0 & 0.00 & 1 \\
+96 & 13 & 8 & 1 & 0.00 & 1 \\
+97 & 10 & 29 & 1 & 0.00 & 1 \\
+98 & 15 & 9 & 1 & 0.00 & 1 \\
+99 & 15 & 14 & 1 & 0.00 & 1 \\
+100 & 13 & 27 & 1 & 0.00 & 1 \\
+101 & 7 & 9 & 0 & 0.00 & 1 \\
+102 & 0 & 6 & 0 & 0.00 & 1 \\
+103 & 3 & 20 & 0 & 0.00 & 1 \\
+104 & 12 & 6 & 1 & 0.00 & 1 \\
+105 & 2 & 11 & 0 & 0.00 & 1 \\
+106 & 7 & 18 & 0 & 0.00 & 1 \\
+107 & 11 & 11 & 1 & 0.00 & 1 \\
+108 & 13 & 4 & 1 & 0.00 & 1 \\
+109 & 4 & 10 & 0 & 0.00 & 1 \\
+110 & 11 & 8 & 1 & 0.00 & 1 \\
+111 & 15 & 7 & 1 & 0.00 & 1 \\
+112 & 1 & 21 & 0 & 0.00 & 1 \\
+113 & 9 & 1 & 1 & 0.00 & 1 \\
+114 & 8 & 24 & 1 & 0.00 & 1 \\
+115 & 14 & 5 & 1 & 0.00 & 1 \\
+116 & 3 & 24 & 0 & 0.00 & 1 \\
+117 & 11 & 28 & 1 & 0.00 & 1 \\
+118 & 8 & 22 & 1 & 0.00 & 1 \\
+119 & 6 & 2 & 0 & 0.00 & 1 \\
+120 & 1 & 25 & 0 & 0.00 & 1 \\
+121 & 10 & 25 & 1 & 0.00 & 1 \\
+122 & 10 & 21 & 1 & 0.00 & 1 \\
+123 & 9 & 24 & 1 & 0.00 & 1 \\
+124 & 5 & 5 & 0 & 0.00 & 1 \\
+125 & 3 & 29 & 0 & 0.00 & 1 \\
+126 & 4 & 0 & 0 & 0.00 & 1 \\
+127 & 14 & 17 & 1 & 0.00 & 1 \\
+128 & 14 & 22 & 1 & 0.00 & 1 \\
+129 & 9 & 18 & 1 & 0.00 & 1 \\
+130 & 10 & 16 & 1 & 0.00 & 1 \\
+131 & 13 & 17 & 1 & 0.00 & 1 \\
+132 & 9 & 7 & 1 & 0.00 & 1 \\
+133 & 15 & 2 & 1 & 0.00 & 1 \\
+134 & 10 & 5 & 1 & 0.00 & 1 \\
+135 & 7 & 24 & 0 & 0.00 & 1 \\
+136 & 6 & 25 & 0 & 0.00 & 1 \\
+137 & 7 & 0 & 0 & 0.00 & 1 \\
+138 & 6 & 1 & 0 & 0.00 & 1 \\
+139 & 11 & 6 & 1 & 0.00 & 1 \\
+140 & 1 & 6 & 0 & 0.00 & 1 \\
+141 & 12 & 26 & 1 & 0.00 & 1 \\
+142 & 14 & 14 & 1 & 0.00 & 1 \\
+143 & 2 & 5 & 0 & 0.00 & 1 \\
+144 & 12 & 7 & 1 & 0.00 & 1 \\
+145 & 11 & 10 & 1 & 0.00 & 1 \\
+146 & 4 & 26 & 0 & 0.00 & 1 \\
+147 & 12 & 1 & 1 & 0.00 & 1 \\
+148 & 12 & 27 & 1 & 0.00 & 1 \\
+149 & 4 & 18 & 0 & 0.00 & 1 \\
+150 & 1 & 7 & 0 & 0.00 & 1 \\
+151 & 11 & 12 & 1 & 0.00 & 1 \\
+152 & 4 & 24 & 0 & 0.00 & 1 \\
+153 & 13 & 0 & 1 & 0.00 & 1 \\
+154 & 0 & 24 & 0 & 0.00 & 1 \\
+155 & 7 & 6 & 0 & 0.00 & 1 \\
+156 & 10 & 22 & 1 & 0.00 & 1 \\
+157 & 6 & 0 & 0 & 0.00 & 1 \\
+158 & 4 & 1 & 0 & 0.00 & 1 \\
+159 & 14 & 19 & 1 & 0.00 & 1 \\
+160 & 15 & 26 & 1 & 0.00 & 1 \\
+161 & 12 & 12 & 1 & 0.00 & 1 \\
+162 & 7 & 5 & 0 & 0.00 & 1 \\
+163 & 5 & 6 & 0 & 0.00 & 1 \\
+164 & 9 & 15 & 1 & 0.00 & 1 \\
+165 & 1 & 16 & 0 & 0.00 & 1 \\
+166 & 9 & 28 & 1 & 0.00 & 1 \\
+167 & 10 & 27 & 1 & 0.00 & 1 \\
+168 & 10 & 23 & 1 & 0.00 & 1 \\
+169 & 2 & 25 & 0 & 0.00 & 1 \\
+170 & 0 & 9 & 0 & 0.00 & 1 \\
+171 & 9 & 4 & 1 & 0.00 & 1 \\
+172 & 5 & 13 & 0 & 0.00 & 1 \\
+173 & 6 & 5 & 0 & 0.00 & 1 \\
+174 & 2 & 6 & 0 & 0.00 & 1 \\
+175 & 6 & 17 & 0 & 0.00 & 1 \\
+176 & 14 & 3 & 1 & 0.00 & 1 \\
+177 & 3 & 4 & 0 & 0.00 & 1 \\
+178 & 12 & 21 & 1 & 0.00 & 1 \\
+179 & 1 & 28 & 0 & 0.00 & 1 \\
+180 & 0 & 23 & 0 & 0.00 & 1 \\
+181 & 15 & 0 & 1 & 0.00 & 1 \\
+182 & 11 & 5 & 1 & 0.00 & 1 \\
+183 & 14 & 1 & 1 & 0.00 & 1 \\
+184 & 14 & 0 & 1 & 0.00 & 1 \\
+185 & 5 & 9 & 0 & 0.00 & 1 \\
+186 & 14 & 11 & 1 & 0.00 & 1 \\
+187 & 3 & 28 & 0 & 0.00 & 1 \\
+188 & 7 & 20 & 0 & 0.00 & 1 \\
+189 & 0 & 11 & 0 & 0.00 & 1 \\
+190 & 15 & 4 & 1 & 0.00 & 1 \\
+191 & 3 & 26 & 0 & 0.00 & 1 \\
+192 & 5 & 15 & 0 & 0.00 & 1 \\
+193 & 8 & 15 & 1 & 0.00 & 1 \\
+194 & 5 & 25 & 0 & 0.00 & 1 \\
+195 & 8 & 18 & 1 & 0.00 & 1 \\
+196 & 5 & 17 & 0 & 0.00 & 1 \\
+197 & 9 & 23 & 1 & 0.00 & 1 \\
+198 & 14 & 6 & 1 & 0.00 & 1 \\
+199 & 12 & 19 & 1 & 0.00 & 1 \\
+200 & 9 & 12 & 1 & 0.00 & 1 \\
+201 & 10 & 4 & 1 & 0.00 & 1 \\
+202 & 12 & 17 & 1 & 0.00 & 1 \\
+203 & 4 & 9 & 0 & 0.00 & 1 \\
+204 & 3 & 19 & 0 & 0.00 & 1 \\
+205 & 5 & 29 & 0 & 0.00 & 1 \\
+206 & 12 & 20 & 1 & 0.00 & 1 \\
+207 & 3 & 13 & 0 & 0.00 & 1 \\
+208 & 3 & 10 & 0 & 0.00 & 1 \\
+209 & 12 & 4 & 1 & 0.00 & 1 \\
+210 & 2 & 23 & 0 & 0.00 & 1 \\
+211 & 5 & 18 & 0 & 0.00 & 1 \\
+212 & 15 & 29 & 1 & 0.00 & 1 \\
+213 & 11 & 23 & 1 & 0.00 & 1 \\
+214 & 4 & 15 & 0 & 0.00 & 1 \\
+215 & 13 & 9 & 1 & 0.00 & 1 \\
+216 & 9 & 0 & 1 & 0.00 & 1 \\
+217 & 4 & 20 & 0 & 0.00 & 1 \\
+218 & 2 & 4 & 0 & 0.00 & 1 \\
+219 & 15 & 1 & 1 & 0.00 & 1 \\
+220 & 5 & 2 & 0 & 0.00 & 1 \\
+221 & 2 & 12 & 0 & 0.00 & 1 \\
+222 & 0 & 12 & 0 & 0.00 & 1 \\
+223 & 2 & 3 & 0 & 0.00 & 1 \\
+224 & 6 & 28 & 0 & 0.00 & 1 \\
+225 & 13 & 5 & 1 & 0.00 & 1 \\
+226 & 8 & 1 & 1 & 0.00 & 1 \\
+227 & 6 & 11 & 0 & 0.00 & 1 \\
+228 & 9 & 27 & 1 & 0.00 & 1 \\
+229 & 3 & 25 & 0 & 0.00 & 1 \\
+230 & 13 & 2 & 1 & 0.00 & 1 \\
+231 & 11 & 18 & 1 & 0.00 & 1 \\
+232 & 1 & 2 & 0 & 0.00 & 1 \\
+233 & 11 & 25 & 1 & 0.00 & 1 \\
+234 & 13 & 24 & 1 & 0.00 & 1 \\
+235 & 2 & 21 & 0 & 0.00 & 1 \\
+236 & 2 & 7 & 0 & 0.00 & 1 \\
+237 & 9 & 2 & 1 & 0.00 & 1 \\
+238 & 15 & 3 & 1 & 0.00 & 1 \\
+239 & 14 & 13 & 1 & 0.00 & 1 \\
+240 & 1 & 4 & 0 & 0.00 & 1 \\
+241 & 2 & 24 & 0 & 0.00 & 1 \\
+242 & 0 & 21 & 0 & 0.00 & 1 \\
+243 & 2 & 17 & 0 & 0.00 & 1 \\
+244 & 15 & 13 & 1 & 0.00 & 1 \\
+245 & 15 & 8 & 1 & 0.00 & 1 \\
+246 & 1 & 17 & 0 & 0.00 & 1 \\
+247 & 15 & 15 & 1 & 0.00 & 1 \\
+248 & 11 & 1 & 1 & 0.00 & 1 \\
+249 & 0 & 10 & 0 & 0.00 & 1 \\
+250 & 9 & 9 & 1 & 0.00 & 1 \\
+251 & 5 & 22 & 0 & 0.00 & 1 \\
+252 & 3 & 18 & 0 & 0.00 & 1 \\
+253 & 8 & 29 & 1 & 0.00 & 1 \\
+254 & 6 & 20 & 0 & 0.00 & 1 \\
+255 & 10 & 2 & 1 & 0.00 & 1 \\
+256 & 13 & 15 & 1 & 0.00 & 1 \\
+257 & 3 & 9 & 0 & 0.00 & 1 \\
+258 & 15 & 19 & 1 & 0.00 & 1 \\
+259 & 0 & 4 & 0 & 0.00 & 1 \\
+260 & 8 & 14 & 1 & 0.00 & 1 \\
+261 & 10 & 12 & 1 & 0.00 & 1 \\
+262 & 1 & 5 & 0 & 0.00 & 1 \\
+263 & 1 & 15 & 0 & 0.00 & 1 \\
+264 & 10 & 19 & 1 & 0.00 & 1 \\
+265 & 0 & 19 & 0 & 0.00 & 1 \\
+266 & 8 & 28 & 1 & 0.00 & 1 \\
+267 & 7 & 1 & 0 & 0.00 & 1 \\
+268 & 4 & 29 & 0 & 0.00 & 1 \\
+269 & 0 & 0 & 0 & 0.00 & 1 \\
+270 & 12 & 24 & 1 & 0.00 & 1 \\
+271 & 8 & 19 & 1 & 0.00 & 1 \\
+272 & 15 & 25 & 1 & 0.00 & 1 \\
+273 & 7 & 23 & 0 & 0.00 & 1 \\
+274 & 4 & 4 & 0 & 0.00 & 1 \\
+275 & 13 & 3 & 1 & 0.00 & 1 \\
+276 & 3 & 6 & 0 & 0.00 & 1 \\
+277 & 10 & 14 & 1 & 0.00 & 1 \\
+278 & 13 & 16 & 1 & 0.00 & 1 \\
+279 & 12 & 15 & 1 & 0.00 & 1 \\
+280 & 1 & 14 & 0 & 0.00 & 1 \\
+281 & 6 & 22 & 0 & 0.00 & 1 \\
+282 & 0 & 22 & 0 & 0.00 & 1 \\
+283 & 8 & 27 & 1 & 0.00 & 1 \\
+284 & 15 & 27 & 1 & 0.00 & 1 \\
+285 & 5 & 27 & 0 & 0.00 & 1 \\
+286 & 15 & 28 & 1 & 0.00 & 1 \\
+287 & 6 & 15 & 0 & 0.00 & 1 \\
+288 & 11 & 21 & 1 & 0.00 & 1 \\
+289 & 10 & 11 & 1 & 0.00 & 1 \\
+290 & 14 & 24 & 1 & 0.00 & 1 \\
+291 & 3 & 8 & 0 & 0.00 & 1 \\
+292 & 2 & 20 & 0 & 0.00 & 1 \\
+293 & 1 & 10 & 0 & 0.00 & 1 \\
+294 & 8 & 26 & 1 & 0.00 & 1 \\
+295 & 14 & 27 & 1 & 0.00 & 1 \\
+296 & 9 & 16 & 1 & 0.00 & 1 \\
+297 & 1 & 22 & 0 & 0.00 & 1 \\
+298 & 0 & 26 & 0 & 0.00 & 1 \\
+299 & 15 & 20 & 1 & 0.00 & 1 \\
+300 & 8 & 13 & 1 & 0.00 & 1 \\
+301 & 8 & 2 & 1 & 0.00 & 1 \\
+302 & 13 & 13 & 1 & 0.00 & 1 \\
+303 & 8 & 11 & 1 & 0.00 & 1 \\
+304 & 8 & 8 & 1 & 0.00 & 1 \\
+305 & 8 & 5 & 1 & 0.00 & 1 \\
+306 & 5 & 23 & 0 & 0.00 & 1 \\
+307 & 14 & 16 & 1 & 0.00 & 1 \\
+308 & 3 & 3 & 0 & 0.00 & 1 \\
+309 & 3 & 15 & 0 & 0.00 & 1 \\
+310 & 0 & 2 & 0 & 0.00 & 1 \\
+311 & 2 & 15 & 0 & 0.00 & 1 \\
+312 & 15 & 17 & 1 & 77.00 & 0 \\
+313 & 5 & 14 & 0 & 77.00 & 1 \\
+314 & 1 & 1 & 0 & 77.00 & 1 \\
+315 & 2 & 29 & 0 & 77.00 & 1 \\
+316 & 14 & 29 & 1 & 77.00 & 1 \\
+317 & 15 & 23 & 1 & 77.00 & 1 \\
+318 & 7 & 7 & 0 & 77.00 & 1 \\
+319 & 7 & 16 & 0 & 77.00 & 1 \\
+320 & 7 & 8 & 0 & 77.00 & 1 \\
+321 & 4 & 23 & 0 & 77.00 & 1 \\
+322 & 4 & 21 & 0 & 77.00 & 1 \\
+323 & 5 & 4 & 0 & 77.00 & 1 \\
+324 & 10 & 7 & 1 & 77.00 & 1 \\
+325 & 0 & 27 & 0 & 77.00 & 1 \\
+326 & 0 & 29 & 0 & 77.00 & 1 \\
+327 & 1 & 24 & 0 & 77.00 & 1 \\
+328 & 12 & 5 & 1 & 77.00 & 1 \\
+329 & 9 & 29 & 1 & 77.00 & 1 \\
+330 & 14 & 28 & 1 & 77.00 & 1 \\
+331 & 11 & 7 & 1 & 77.00 & 1 \\
+332 & 5 & 28 & 0 & 77.00 & 1 \\
+333 & 0 & 1 & 0 & 77.00 & 1 \\
+334 & 7 & 15 & 0 & 77.00 & 1 \\
+335 & 4 & 8 & 0 & 77.00 & 1 \\
+336 & 1 & 3 & 0 & 77.00 & 1 \\
+337 & 8 & 20 & 1 & 77.00 & 1 \\
+338 & 3 & 21 & 0 & 77.00 & 1 \\
+339 & 14 & 2 & 1 & 77.00 & 1 \\
+340 & 9 & 22 & 1 & 77.00 & 1 \\
+341 & 0 & 16 & 0 & 77.00 & 1 \\
+342 & 7 & 17 & 0 & 77.00 & 1 \\
+343 & 2 & 19 & 0 & 77.00 & 1 \\
+344 & 5 & 1 & 0 & 77.00 & 1 \\
+345 & 2 & 28 & 0 & 77.00 & 1 \\
+346 & 5 & 10 & 0 & 77.00 & 1 \\
+347 & 14 & 26 & 1 & 77.00 & 1 \\
+348 & 10 & 13 & 1 & 77.00 & 1 \\
+349 & 5 & 16 & 0 & 77.00 & 1 \\
+350 & 10 & 3 & 1 & 77.00 & 1 \\
+351 & 13 & 18 & 1 & 77.00 & 1 \\
+352 & 10 & 1 & 1 & 77.00 & 1 \\
+353 & 13 & 23 & 1 & 77.00 & 1 \\
+354 & 13 & 19 & 1 & 77.00 & 1 \\
+355 & 3 & 5 & 0 & 77.00 & 1 \\
+356 & 3 & 14 & 0 & 77.00 & 1 \\
+357 & 1 & 20 & 0 & 77.00 & 1 \\
+358 & 14 & 8 & 1 & 77.00 & 1 \\
+359 & 6 & 6 & 0 & 77.00 & 1 \\
+360 & 12 & 28 & 1 & 77.00 & 1 \\
+361 & 11 & 0 & 1 & 77.00 & 1 \\
+362 & 13 & 14 & 1 & 77.00 & 1 \\
+363 & 15 & 11 & 1 & 80.00 & 0 \\
+364 & 15 & 10 & 1 & 80.00 & 1 \\
+365 & 12 & 11 & 1 & 80.00 & 1 \\
+366 & 15 & 12 & 1 & 80.00 & 1 \\
+367 & 2 & 26 & 0 & 80.00 & 1 \\
+368 & 10 & 17 & 1 & 80.00 & 1 \\
+369 & 6 & 29 & 0 & 80.00 & 1 \\
+370 & 5 & 7 & 0 & 80.00 & 1 \\
+371 & 10 & 20 & 1 & 80.00 & 1 \\
+372 & 11 & 29 & 1 & 80.00 & 1 \\
+373 & 6 & 8 & 0 & 80.00 & 1 \\
+374 & 1 & 0 & 0 & 80.00 & 1 \\
+375 & 3 & 0 & 0 & 80.00 & 1 \\
+376 & 3 & 11 & 0 & 80.00 & 1 \\
+377 & 0 & 14 & 0 & 80.00 & 1 \\
+378 & 4 & 16 & 0 & 80.00 & 1 \\
+379 & 5 & 8 & 0 & 80.00 & 1 \\
+380 & 9 & 13 & 1 & 80.00 & 1 \\
+381 & 4 & 25 & 0 & 80.00 & 1 \\
+382 & 3 & 7 & 0 & 80.00 & 1 \\
+383 & 12 & 22 & 1 & 80.00 & 1 \\
+384 & 4 & 22 & 0 & 80.00 & 1 \\
+385 & 2 & 1 & 0 & 80.00 & 1 \\
+386 & 8 & 0 & 1 & 80.00 & 1 \\
+387 & 5 & 3 & 0 & 80.00 & 1 \\
+388 & 3 & 22 & 0 & 80.00 & 1 \\
+389 & 6 & 12 & 0 & 80.00 & 1 \\
+390 & 13 & 29 & 1 & 80.00 & 1 \\
+391 & 5 & 24 & 0 & 80.00 & 1 \\
+392 & 10 & 9 & 1 & 80.00 & 1 \\
+393 & 5 & 19 & 0 & 80.00 & 1 \\
+394 & 7 & 10 & 0 & 80.00 & 1 \\
+395 & 0 & 7 & 0 & 80.00 & 1 \\
+396 & 14 & 20 & 1 & 80.00 & 1 \\
+397 & 15 & 18 & 1 & 80.00 & 1 \\
+398 & 6 & 26 & 0 & 80.00 & 1 \\
+399 & 11 & 15 & 1 & 80.00 & 1 \\
+400 & 15 & 5 & 1 & 80.00 & 1 \\
+401 & 6 & 24 & 0 & 80.00 & 1 \\
+402 & 3 & 17 & 0 & 80.00 & 1 \\
+403 & 13 & 26 & 1 & 80.00 & 1 \\
+404 & 10 & 18 & 1 & 80.00 & 1 \\
+405 & 7 & 2 & 0 & 80.00 & 1 \\
+406 & 6 & 10 & 0 & 80.00 & 1 \\
+407 & 2 & 14 & 0 & 80.00 & 1 \\
+408 & 9 & 14 & 1 & 80.00 & 1 \\
+409 & 2 & 2 & 0 & 80.00 & 1 \\
+410 & 1 & 27 & 0 & 80.00 & 1 \\
+411 & 4 & 6 & 0 & 82.00 & 0 \\
+412 & 0 & 18 & 0 & 82.00 & 1 \\
+413 & 4 & 11 & 0 & 82.00 & 1 \\
+414 & 7 & 3 & 0 & 82.00 & 1 \\
+415 & 14 & 12 & 1 & 82.00 & 1 \\
+416 & 2 & 27 & 0 & 82.00 & 1 \\
+417 & 7 & 12 & 0 & 82.00 & 1 \\
+418 & 12 & 2 & 1 & 82.00 & 1 \\
+419 & 2 & 18 & 0 & 82.00 & 1 \\
+420 & 9 & 3 & 1 & 82.00 & 1 \\
+421 & 6 & 3 & 0 & 82.00 & 1 \\
+422 & 7 & 29 & 0 & 82.00 & 1 \\
+423 & 3 & 2 & 0 & 82.00 & 1 \\
+424 & 15 & 16 & 1 & 82.00 & 1 \\
+425 & 0 & 25 & 0 & 82.00 & 1 \\
+426 & 10 & 28 & 1 & 82.00 & 1 \\
+427 & 9 & 21 & 1 & 82.00 & 1 \\
+428 & 12 & 29 & 1 & 82.00 & 1 \\
+429 & 0 & 3 & 0 & 82.00 & 1 \\
+430 & 11 & 16 & 1 & 82.00 & 1 \\
+431 & 13 & 25 & 1 & 82.00 & 1 \\
+432 & 8 & 17 & 1 & 82.00 & 1 \\
+433 & 1 & 18 & 0 & 82.00 & 1 \\
+434 & 9 & 5 & 1 & 82.00 & 1 \\
+435 & 6 & 7 & 0 & 82.00 & 1 \\
+436 & 0 & 15 & 0 & 82.00 & 1 \\
+437 & 13 & 21 & 1 & 82.00 & 1 \\
+438 & 7 & 11 & 0 & 82.00 & 1 \\
+439 & 7 & 13 & 0 & 82.00 & 1 \\
+440 & 12 & 16 & 1 & 82.00 & 1 \\
+441 & 3 & 12 & 0 & 82.00 & 1 \\
+442 & 8 & 6 & 1 & 82.00 & 1 \\
+443 & 12 & 3 & 1 & 82.00 & 1 \\
+444 & 2 & 9 & 0 & 82.00 & 1 \\
+445 & 13 & 1 & 1 & 82.00 & 1 \\
+446 & 7 & 26 & 0 & 82.00 & 1 \\
+447 & 3 & 16 & 0 & 82.00 & 1 \\
+448 & 13 & 7 & 1 & 82.00 & 1 \\
+449 & 9 & 20 & 1 & 82.00 & 1 \\
+450 & 13 & 6 & 1 & 82.00 & 1 \\
+451 & 5 & 11 & 0 & 82.00 & 1 \\
+452 & 11 & 22 & 1 & 84.00 & 0 \\
+453 & 0 & 17 & 0 & 84.00 & 1 \\
+454 & 11 & 20 & 1 & 84.00 & 1 \\
+455 & 2 & 10 & 0 & 84.00 & 1 \\
+456 & 10 & 24 & 1 & 84.00 & 1 \\
+457 & 6 & 4 & 0 & 84.00 & 1 \\
+458 & 8 & 25 & 1 & 84.00 & 1 \\
+459 & 4 & 5 & 0 & 84.00 & 1 \\
+460 & 12 & 13 & 1 & 84.00 & 1 \\
+461 & 3 & 1 & 0 & 84.00 & 1 \\
+462 & 2 & 8 & 0 & 84.00 & 1 \\
+463 & 14 & 15 & 1 & 84.00 & 1 \\
+464 & 7 & 25 & 0 & 84.00 & 1 \\
+465 & 9 & 6 & 1 & 84.00 & 1 \\
+466 & 4 & 17 & 0 & 84.00 & 1 \\
+467 & 11 & 24 & 1 & 84.00 & 1 \\
+468 & 11 & 27 & 1 & 84.00 & 1 \\
+469 & 12 & 9 & 1 & 84.00 & 1 \\
+470 & 1 & 29 & 0 & 84.00 & 1 \\
+471 & 9 & 17 & 1 & 84.00 & 1 \\
+472 & 4 & 27 & 0 & 84.00 & 1 \\
+473 & 2 & 16 & 0 & 84.00 & 1 \\
+474 & 7 & 27 & 0 & 84.00 & 1 \\
+475 & 12 & 8 & 1 & 84.00 & 1 \\
+476 & 5 & 21 & 0 & 84.00 & 1 \\
+477 & 14 & 7 & 1 & 84.00 & 1 \\
+478 & 4 & 14 & 0 & 84.00 & 1 \\
+479 & 11 & 2 & 1 & 84.00 & 1 \\
+\bottomrule
+\end{longtable}
+
+\clearpage
+
diff --git a/experiments/bare_metal/analysis/report/sections/appendix_amd64_seed12345.tex b/experiments/bare_metal/analysis/report/sections/appendix_amd64_seed12345.tex
new file mode 100644
index 0000000..7d4972f
--- /dev/null
+++ b/experiments/bare_metal/analysis/report/sections/appendix_amd64_seed12345.tex
@@ -0,0 +1,499 @@
+\subsection{Raw data: amd64, seed 12345}
+\label{sec:appendix_amd64_seed12345}
+
+All 480 rows, execution order (\texttt{run\_id}), for cell amd64 / seed 12345.
+
+\begin{longtable}{rrrrrr}
+\toprule
+run\_id & cfg & rep & entropy=hi & infer\_dec\_q & early\_exit \\
+\midrule
+\endfirsthead
+\toprule
+run\_id & cfg & rep & entropy=hi & infer\_dec\_q & early\_exit \\
+\midrule
+\endhead
+0 & 7 & 23 & 0 & 0.00 & 0 \\
+1 & 2 & 22 & 0 & 0.00 & 1 \\
+2 & 6 & 2 & 0 & 0.00 & 1 \\
+3 & 5 & 27 & 0 & 0.00 & 1 \\
+4 & 12 & 24 & 1 & 0.00 & 1 \\
+5 & 7 & 4 & 0 & 0.00 & 1 \\
+6 & 9 & 29 & 1 & 0.00 & 1 \\
+7 & 11 & 20 & 1 & 0.00 & 1 \\
+8 & 11 & 23 & 1 & 0.00 & 1 \\
+9 & 7 & 10 & 0 & 0.00 & 1 \\
+10 & 13 & 11 & 1 & 0.00 & 1 \\
+11 & 5 & 5 & 0 & 0.00 & 1 \\
+12 & 1 & 6 & 0 & 0.00 & 1 \\
+13 & 12 & 27 & 1 & 0.00 & 1 \\
+14 & 13 & 20 & 1 & 0.00 & 1 \\
+15 & 4 & 3 & 0 & 0.00 & 1 \\
+16 & 5 & 13 & 0 & 0.00 & 1 \\
+17 & 12 & 12 & 1 & 0.00 & 1 \\
+18 & 6 & 21 & 0 & 0.00 & 1 \\
+19 & 4 & 26 & 0 & 0.00 & 1 \\
+20 & 15 & 27 & 1 & 0.00 & 1 \\
+21 & 5 & 9 & 0 & 0.00 & 1 \\
+22 & 11 & 16 & 1 & 0.00 & 1 \\
+23 & 5 & 14 & 0 & 0.00 & 1 \\
+24 & 9 & 7 & 1 & 0.00 & 1 \\
+25 & 13 & 13 & 1 & 0.00 & 1 \\
+26 & 10 & 21 & 1 & 0.00 & 1 \\
+27 & 8 & 17 & 1 & 0.00 & 1 \\
+28 & 12 & 14 & 1 & 0.00 & 1 \\
+29 & 4 & 5 & 0 & 0.00 & 1 \\
+30 & 4 & 11 & 0 & 0.00 & 1 \\
+31 & 7 & 3 & 0 & 0.00 & 1 \\
+32 & 9 & 3 & 1 & 0.00 & 1 \\
+33 & 0 & 8 & 0 & 0.00 & 1 \\
+34 & 9 & 18 & 1 & 0.00 & 1 \\
+35 & 7 & 15 & 0 & 0.00 & 1 \\
+36 & 5 & 7 & 0 & 0.00 & 1 \\
+37 & 2 & 20 & 0 & 0.00 & 1 \\
+38 & 13 & 6 & 1 & 0.00 & 1 \\
+39 & 12 & 6 & 1 & 0.00 & 1 \\
+40 & 14 & 2 & 1 & 0.00 & 1 \\
+41 & 5 & 1 & 0 & 0.00 & 1 \\
+42 & 4 & 28 & 0 & 0.00 & 1 \\
+43 & 0 & 14 & 0 & 0.00 & 1 \\
+44 & 11 & 11 & 1 & 0.00 & 1 \\
+45 & 1 & 9 & 0 & 0.00 & 1 \\
+46 & 5 & 29 & 0 & 0.00 & 1 \\
+47 & 12 & 3 & 1 & 0.00 & 1 \\
+48 & 10 & 11 & 1 & 0.00 & 1 \\
+49 & 6 & 29 & 0 & 0.00 & 1 \\
+50 & 0 & 22 & 0 & 0.00 & 1 \\
+51 & 1 & 2 & 0 & 0.00 & 1 \\
+52 & 10 & 24 & 1 & 0.00 & 1 \\
+53 & 0 & 5 & 0 & 0.00 & 1 \\
+54 & 6 & 10 & 0 & 0.00 & 1 \\
+55 & 9 & 14 & 1 & 0.00 & 1 \\
+56 & 5 & 4 & 0 & 0.00 & 1 \\
+57 & 13 & 0 & 1 & 0.00 & 1 \\
+58 & 4 & 25 & 0 & 0.00 & 1 \\
+59 & 3 & 21 & 0 & 0.00 & 1 \\
+60 & 1 & 1 & 0 & 0.00 & 1 \\
+61 & 0 & 19 & 0 & 0.00 & 1 \\
+62 & 7 & 0 & 0 & 0.00 & 1 \\
+63 & 13 & 12 & 1 & 0.00 & 1 \\
+64 & 1 & 20 & 0 & 0.00 & 1 \\
+65 & 12 & 4 & 1 & 0.00 & 1 \\
+66 & 12 & 1 & 1 & 0.00 & 1 \\
+67 & 14 & 16 & 1 & 0.00 & 1 \\
+68 & 8 & 4 & 1 & 0.00 & 1 \\
+69 & 1 & 5 & 0 & 0.00 & 1 \\
+70 & 13 & 15 & 1 & 0.00 & 1 \\
+71 & 9 & 12 & 1 & 0.00 & 1 \\
+72 & 3 & 4 & 0 & 0.00 & 1 \\
+73 & 6 & 23 & 0 & 0.00 & 1 \\
+74 & 0 & 11 & 0 & 0.00 & 1 \\
+75 & 1 & 13 & 0 & 0.00 & 1 \\
+76 & 3 & 11 & 0 & 0.00 & 1 \\
+77 & 3 & 24 & 0 & 0.00 & 1 \\
+78 & 6 & 11 & 0 & 0.00 & 1 \\
+79 & 8 & 16 & 1 & 0.00 & 1 \\
+80 & 14 & 28 & 1 & 0.00 & 1 \\
+81 & 10 & 22 & 1 & 0.00 & 1 \\
+82 & 2 & 27 & 0 & 0.00 & 1 \\
+83 & 10 & 7 & 1 & 0.00 & 1 \\
+84 & 1 & 21 & 0 & 0.00 & 1 \\
+85 & 14 & 18 & 1 & 0.00 & 1 \\
+86 & 1 & 19 & 0 & 0.00 & 1 \\
+87 & 7 & 29 & 0 & 0.00 & 1 \\
+88 & 8 & 6 & 1 & 0.00 & 1 \\
+89 & 11 & 2 & 1 & 0.00 & 1 \\
+90 & 6 & 5 & 0 & 0.00 & 1 \\
+91 & 4 & 20 & 0 & 0.00 & 1 \\
+92 & 4 & 17 & 0 & 0.00 & 1 \\
+93 & 0 & 15 & 0 & 0.00 & 1 \\
+94 & 0 & 10 & 0 & 56.00 & 0 \\
+95 & 9 & 13 & 1 & 56.00 & 1 \\
+96 & 2 & 5 & 0 & 56.00 & 1 \\
+97 & 1 & 4 & 0 & 56.00 & 1 \\
+98 & 8 & 8 & 1 & 56.00 & 1 \\
+99 & 2 & 18 & 0 & 56.00 & 1 \\
+100 & 4 & 21 & 0 & 56.00 & 1 \\
+101 & 13 & 8 & 1 & 56.00 & 1 \\
+102 & 9 & 0 & 1 & 56.00 & 1 \\
+103 & 6 & 24 & 0 & 56.00 & 1 \\
+104 & 10 & 12 & 1 & 56.00 & 1 \\
+105 & 14 & 10 & 1 & 56.00 & 1 \\
+106 & 9 & 17 & 1 & 56.00 & 1 \\
+107 & 6 & 13 & 0 & 56.00 & 1 \\
+108 & 6 & 18 & 0 & 56.00 & 1 \\
+109 & 8 & 19 & 1 & 56.00 & 1 \\
+110 & 8 & 20 & 1 & 56.00 & 1 \\
+111 & 5 & 23 & 0 & 56.00 & 1 \\
+112 & 6 & 17 & 0 & 56.00 & 1 \\
+113 & 13 & 2 & 1 & 56.00 & 1 \\
+114 & 0 & 25 & 0 & 56.00 & 1 \\
+115 & 12 & 17 & 1 & 56.00 & 1 \\
+116 & 12 & 28 & 1 & 56.00 & 1 \\
+117 & 7 & 16 & 0 & 56.00 & 1 \\
+118 & 0 & 23 & 0 & 56.00 & 1 \\
+119 & 0 & 13 & 0 & 56.00 & 1 \\
+120 & 2 & 12 & 0 & 56.00 & 1 \\
+121 & 7 & 2 & 0 & 56.00 & 1 \\
+122 & 13 & 24 & 1 & 56.00 & 1 \\
+123 & 8 & 26 & 1 & 56.00 & 1 \\
+124 & 3 & 10 & 0 & 56.00 & 1 \\
+125 & 6 & 22 & 0 & 56.00 & 1 \\
+126 & 14 & 3 & 1 & 56.00 & 1 \\
+127 & 0 & 12 & 0 & 56.00 & 1 \\
+128 & 0 & 1 & 0 & 56.00 & 1 \\
+129 & 12 & 2 & 1 & 56.00 & 1 \\
+130 & 0 & 24 & 0 & 56.00 & 1 \\
+131 & 10 & 0 & 1 & 56.00 & 1 \\
+132 & 2 & 29 & 0 & 56.00 & 1 \\
+133 & 3 & 1 & 0 & 56.00 & 1 \\
+134 & 13 & 16 & 1 & 56.00 & 1 \\
+135 & 14 & 26 & 1 & 56.00 & 1 \\
+136 & 3 & 15 & 0 & 56.00 & 1 \\
+137 & 4 & 2 & 0 & 56.00 & 1 \\
+138 & 15 & 9 & 1 & 56.00 & 1 \\
+139 & 0 & 26 & 0 & 56.00 & 1 \\
+140 & 8 & 22 & 1 & 56.00 & 1 \\
+141 & 10 & 28 & 1 & 56.00 & 1 \\
+142 & 11 & 4 & 1 & 56.00 & 1 \\
+143 & 4 & 27 & 0 & 56.00 & 1 \\
+144 & 8 & 15 & 1 & 56.00 & 1 \\
+145 & 9 & 19 & 1 & 56.00 & 1 \\
+146 & 0 & 0 & 0 & 56.00 & 1 \\
+147 & 13 & 7 & 1 & 56.00 & 1 \\
+148 & 13 & 27 & 1 & 56.00 & 1 \\
+149 & 11 & 26 & 1 & 56.00 & 1 \\
+150 & 2 & 2 & 0 & 56.00 & 1 \\
+151 & 14 & 22 & 1 & 56.00 & 1 \\
+152 & 4 & 18 & 0 & 56.00 & 1 \\
+153 & 0 & 3 & 0 & 56.00 & 1 \\
+154 & 15 & 28 & 1 & 56.00 & 1 \\
+155 & 12 & 26 & 1 & 56.00 & 1 \\
+156 & 12 & 8 & 1 & 56.00 & 1 \\
+157 & 3 & 9 & 0 & 56.00 & 1 \\
+158 & 3 & 22 & 0 & 56.00 & 1 \\
+159 & 15 & 7 & 1 & 56.00 & 1 \\
+160 & 11 & 1 & 1 & 56.00 & 1 \\
+161 & 12 & 29 & 1 & 56.00 & 1 \\
+162 & 14 & 27 & 1 & 56.00 & 1 \\
+163 & 4 & 29 & 0 & 56.00 & 1 \\
+164 & 1 & 25 & 0 & 56.00 & 1 \\
+165 & 6 & 7 & 0 & 56.00 & 1 \\
+166 & 14 & 6 & 1 & 56.00 & 1 \\
+167 & 9 & 4 & 1 & 56.00 & 1 \\
+168 & 9 & 8 & 1 & 56.00 & 1 \\
+169 & 3 & 27 & 0 & 56.00 & 1 \\
+170 & 5 & 21 & 0 & 56.00 & 1 \\
+171 & 12 & 18 & 1 & 56.00 & 1 \\
+172 & 14 & 23 & 1 & 56.00 & 1 \\
+173 & 13 & 26 & 1 & 56.00 & 1 \\
+174 & 11 & 17 & 1 & 56.00 & 1 \\
+175 & 5 & 8 & 0 & 56.00 & 1 \\
+176 & 4 & 13 & 0 & 56.00 & 1 \\
+177 & 1 & 11 & 0 & 56.00 & 1 \\
+178 & 15 & 26 & 1 & 56.00 & 1 \\
+179 & 11 & 29 & 1 & 56.00 & 1 \\
+180 & 10 & 23 & 1 & 56.00 & 1 \\
+181 & 1 & 23 & 0 & 56.00 & 1 \\
+182 & 9 & 27 & 1 & 56.00 & 1 \\
+183 & 14 & 9 & 1 & 56.00 & 1 \\
+184 & 13 & 21 & 1 & 56.00 & 1 \\
+185 & 8 & 3 & 1 & 56.00 & 1 \\
+186 & 9 & 23 & 1 & 56.00 & 1 \\
+187 & 12 & 22 & 1 & 56.00 & 1 \\
+188 & 14 & 15 & 1 & 68.00 & 0 \\
+189 & 3 & 8 & 0 & 68.00 & 1 \\
+190 & 6 & 27 & 0 & 68.00 & 1 \\
+191 & 4 & 14 & 0 & 68.00 & 1 \\
+192 & 7 & 21 & 0 & 68.00 & 1 \\
+193 & 15 & 6 & 1 & 68.00 & 1 \\
+194 & 2 & 0 & 0 & 68.00 & 1 \\
+195 & 6 & 6 & 0 & 68.00 & 1 \\
+196 & 13 & 1 & 1 & 68.00 & 1 \\
+197 & 12 & 11 & 1 & 68.00 & 1 \\
+198 & 2 & 6 & 0 & 68.00 & 1 \\
+199 & 5 & 16 & 0 & 68.00 & 1 \\
+200 & 14 & 29 & 1 & 68.00 & 1 \\
+201 & 15 & 13 & 1 & 68.00 & 1 \\
+202 & 15 & 15 & 1 & 68.00 & 1 \\
+203 & 4 & 24 & 0 & 68.00 & 1 \\
+204 & 10 & 3 & 1 & 68.00 & 1 \\
+205 & 3 & 19 & 0 & 68.00 & 1 \\
+206 & 15 & 24 & 1 & 68.00 & 1 \\
+207 & 1 & 7 & 0 & 68.00 & 1 \\
+208 & 8 & 18 & 1 & 68.00 & 1 \\
+209 & 0 & 27 & 0 & 68.00 & 1 \\
+210 & 0 & 7 & 0 & 68.00 & 1 \\
+211 & 5 & 10 & 0 & 68.00 & 1 \\
+212 & 7 & 26 & 0 & 68.00 & 1 \\
+213 & 0 & 6 & 0 & 68.00 & 1 \\
+214 & 3 & 18 & 0 & 68.00 & 1 \\
+215 & 9 & 9 & 1 & 68.00 & 1 \\
+216 & 7 & 25 & 0 & 68.00 & 1 \\
+217 & 12 & 5 & 1 & 68.00 & 1 \\
+218 & 7 & 8 & 0 & 68.00 & 1 \\
+219 & 12 & 10 & 1 & 68.00 & 1 \\
+220 & 10 & 2 & 1 & 68.00 & 1 \\
+221 & 13 & 28 & 1 & 68.00 & 1 \\
+222 & 3 & 0 & 0 & 68.00 & 1 \\
+223 & 7 & 6 & 0 & 68.00 & 1 \\
+224 & 6 & 3 & 0 & 68.00 & 1 \\
+225 & 5 & 17 & 0 & 68.00 & 1 \\
+226 & 7 & 7 & 0 & 68.00 & 1 \\
+227 & 14 & 8 & 1 & 68.00 & 1 \\
+228 & 6 & 4 & 0 & 68.00 & 1 \\
+229 & 14 & 12 & 1 & 68.00 & 1 \\
+230 & 1 & 18 & 0 & 68.00 & 1 \\
+231 & 4 & 6 & 0 & 68.00 & 1 \\
+232 & 0 & 9 & 0 & 68.00 & 1 \\
+233 & 1 & 15 & 0 & 68.00 & 1 \\
+234 & 13 & 29 & 1 & 68.00 & 1 \\
+235 & 5 & 28 & 0 & 68.00 & 1 \\
+236 & 14 & 7 & 1 & 68.00 & 1 \\
+237 & 15 & 29 & 1 & 68.00 & 1 \\
+238 & 2 & 4 & 0 & 68.00 & 1 \\
+239 & 2 & 3 & 0 & 68.00 & 1 \\
+240 & 7 & 1 & 0 & 68.00 & 1 \\
+241 & 13 & 25 & 1 & 68.00 & 1 \\
+242 & 6 & 25 & 0 & 68.00 & 1 \\
+243 & 12 & 23 & 1 & 68.00 & 1 \\
+244 & 7 & 9 & 0 & 68.00 & 1 \\
+245 & 11 & 3 & 1 & 68.00 & 1 \\
+246 & 10 & 6 & 1 & 68.00 & 1 \\
+247 & 6 & 9 & 0 & 68.00 & 1 \\
+248 & 14 & 21 & 1 & 73.00 & 0 \\
+249 & 8 & 21 & 1 & 73.00 & 1 \\
+250 & 10 & 18 & 1 & 73.00 & 1 \\
+251 & 6 & 16 & 0 & 73.00 & 1 \\
+252 & 2 & 24 & 0 & 73.00 & 1 \\
+253 & 13 & 14 & 1 & 73.00 & 1 \\
+254 & 1 & 29 & 0 & 73.00 & 1 \\
+255 & 10 & 29 & 1 & 73.00 & 1 \\
+256 & 7 & 24 & 0 & 73.00 & 1 \\
+257 & 1 & 0 & 0 & 73.00 & 1 \\
+258 & 10 & 20 & 1 & 73.00 & 1 \\
+259 & 7 & 27 & 0 & 73.00 & 1 \\
+260 & 8 & 5 & 1 & 73.00 & 1 \\
+261 & 10 & 17 & 1 & 73.00 & 1 \\
+262 & 14 & 13 & 1 & 73.00 & 1 \\
+263 & 13 & 17 & 1 & 73.00 & 1 \\
+264 & 11 & 21 & 1 & 73.00 & 1 \\
+265 & 15 & 2 & 1 & 73.00 & 1 \\
+266 & 15 & 23 & 1 & 73.00 & 1 \\
+267 & 9 & 16 & 1 & 73.00 & 1 \\
+268 & 11 & 0 & 1 & 73.00 & 1 \\
+269 & 2 & 16 & 0 & 73.00 & 1 \\
+270 & 2 & 14 & 0 & 73.00 & 1 \\
+271 & 7 & 19 & 0 & 73.00 & 1 \\
+272 & 3 & 17 & 0 & 73.00 & 1 \\
+273 & 15 & 21 & 1 & 73.00 & 1 \\
+274 & 11 & 8 & 1 & 73.00 & 1 \\
+275 & 5 & 20 & 0 & 73.00 & 1 \\
+276 & 14 & 14 & 1 & 73.00 & 1 \\
+277 & 8 & 2 & 1 & 73.00 & 1 \\
+278 & 0 & 20 & 0 & 73.00 & 1 \\
+279 & 0 & 21 & 0 & 73.00 & 1 \\
+280 & 0 & 28 & 0 & 73.00 & 1 \\
+281 & 14 & 19 & 1 & 73.00 & 1 \\
+282 & 15 & 25 & 1 & 73.00 & 1 \\
+283 & 11 & 19 & 1 & 73.00 & 1 \\
+284 & 8 & 14 & 1 & 73.00 & 1 \\
+285 & 10 & 4 & 1 & 73.00 & 1 \\
+286 & 4 & 0 & 0 & 73.00 & 1 \\
+287 & 3 & 6 & 0 & 73.00 & 1 \\
+288 & 8 & 27 & 1 & 73.00 & 1 \\
+289 & 3 & 25 & 0 & 73.00 & 1 \\
+290 & 14 & 0 & 1 & 73.00 & 1 \\
+291 & 3 & 28 & 0 & 73.00 & 1 \\
+292 & 10 & 9 & 1 & 73.00 & 1 \\
+293 & 11 & 7 & 1 & 73.00 & 1 \\
+294 & 4 & 15 & 0 & 73.00 & 1 \\
+295 & 12 & 21 & 1 & 73.00 & 1 \\
+296 & 4 & 8 & 0 & 73.00 & 1 \\
+297 & 5 & 18 & 0 & 73.00 & 1 \\
+298 & 5 & 25 & 0 & 73.00 & 1 \\
+299 & 15 & 12 & 1 & 73.00 & 1 \\
+300 & 7 & 22 & 0 & 73.00 & 1 \\
+301 & 0 & 4 & 0 & 73.00 & 1 \\
+302 & 13 & 10 & 1 & 73.00 & 1 \\
+303 & 4 & 7 & 0 & 73.00 & 1 \\
+304 & 2 & 17 & 0 & 73.00 & 1 \\
+305 & 1 & 12 & 0 & 73.00 & 1 \\
+306 & 13 & 4 & 1 & 73.00 & 1 \\
+307 & 11 & 10 & 1 & 73.00 & 1 \\
+308 & 5 & 22 & 0 & 73.00 & 1 \\
+309 & 8 & 23 & 1 & 73.00 & 1 \\
+310 & 10 & 5 & 1 & 73.00 & 1 \\
+311 & 11 & 28 & 1 & 73.00 & 1 \\
+312 & 6 & 15 & 0 & 73.00 & 1 \\
+313 & 15 & 22 & 1 & 73.00 & 1 \\
+314 & 1 & 27 & 0 & 73.00 & 1 \\
+315 & 2 & 7 & 0 & 73.00 & 1 \\
+316 & 4 & 9 & 0 & 73.00 & 1 \\
+317 & 13 & 5 & 1 & 73.00 & 1 \\
+318 & 2 & 1 & 0 & 73.00 & 1 \\
+319 & 9 & 5 & 1 & 73.00 & 1 \\
+320 & 10 & 10 & 1 & 73.00 & 1 \\
+321 & 8 & 24 & 1 & 73.00 & 1 \\
+322 & 9 & 1 & 1 & 73.00 & 1 \\
+323 & 8 & 9 & 1 & 73.00 & 1 \\
+324 & 15 & 20 & 1 & 78.00 & 0 \\
+325 & 3 & 12 & 0 & 78.00 & 1 \\
+326 & 1 & 22 & 0 & 78.00 & 1 \\
+327 & 5 & 15 & 0 & 78.00 & 1 \\
+328 & 9 & 2 & 1 & 78.00 & 1 \\
+329 & 8 & 29 & 1 & 78.00 & 1 \\
+330 & 8 & 12 & 1 & 78.00 & 1 \\
+331 & 1 & 16 & 0 & 78.00 & 1 \\
+332 & 6 & 20 & 0 & 78.00 & 1 \\
+333 & 10 & 27 & 1 & 78.00 & 1 \\
+334 & 14 & 1 & 1 & 78.00 & 1 \\
+335 & 11 & 18 & 1 & 78.00 & 1 \\
+336 & 15 & 0 & 1 & 78.00 & 1 \\
+337 & 3 & 13 & 0 & 78.00 & 1 \\
+338 & 13 & 19 & 1 & 78.00 & 1 \\
+339 & 15 & 19 & 1 & 78.00 & 1 \\
+340 & 15 & 5 & 1 & 78.00 & 1 \\
+341 & 1 & 10 & 0 & 78.00 & 1 \\
+342 & 8 & 11 & 1 & 78.00 & 1 \\
+343 & 3 & 20 & 0 & 78.00 & 1 \\
+344 & 0 & 16 & 0 & 78.00 & 1 \\
+345 & 12 & 19 & 1 & 78.00 & 1 \\
+346 & 9 & 26 & 1 & 78.00 & 1 \\
+347 & 12 & 13 & 1 & 78.00 & 1 \\
+348 & 2 & 26 & 0 & 78.00 & 1 \\
+349 & 10 & 13 & 1 & 78.00 & 1 \\
+350 & 7 & 13 & 0 & 78.00 & 1 \\
+351 & 8 & 10 & 1 & 78.00 & 1 \\
+352 & 10 & 19 & 1 & 78.00 & 1 \\
+353 & 15 & 4 & 1 & 78.00 & 1 \\
+354 & 4 & 22 & 0 & 78.00 & 1 \\
+355 & 8 & 28 & 1 & 78.00 & 1 \\
+356 & 6 & 26 & 0 & 78.00 & 1 \\
+357 & 7 & 18 & 0 & 78.00 & 1 \\
+358 & 2 & 8 & 0 & 78.00 & 1 \\
+359 & 8 & 7 & 1 & 78.00 & 1 \\
+360 & 6 & 28 & 0 & 78.00 & 1 \\
+361 & 9 & 22 & 1 & 78.00 & 1 \\
+362 & 12 & 25 & 1 & 78.00 & 1 \\
+363 & 1 & 14 & 0 & 78.00 & 1 \\
+364 & 5 & 0 & 0 & 78.00 & 1 \\
+365 & 10 & 15 & 1 & 80.00 & 0 \\
+366 & 15 & 3 & 1 & 80.00 & 1 \\
+367 & 10 & 1 & 1 & 80.00 & 1 \\
+368 & 1 & 26 & 0 & 80.00 & 1 \\
+369 & 15 & 18 & 1 & 80.00 & 1 \\
+370 & 2 & 25 & 0 & 80.00 & 1 \\
+371 & 10 & 16 & 1 & 80.00 & 1 \\
+372 & 3 & 26 & 0 & 80.00 & 1 \\
+373 & 10 & 14 & 1 & 80.00 & 1 \\
+374 & 7 & 12 & 0 & 80.00 & 1 \\
+375 & 8 & 13 & 1 & 80.00 & 1 \\
+376 & 7 & 14 & 0 & 80.00 & 1 \\
+377 & 3 & 14 & 0 & 80.00 & 1 \\
+378 & 14 & 25 & 1 & 80.00 & 1 \\
+379 & 10 & 8 & 1 & 80.00 & 1 \\
+380 & 9 & 24 & 1 & 80.00 & 1 \\
+381 & 12 & 16 & 1 & 80.00 & 1 \\
+382 & 14 & 24 & 1 & 80.00 & 1 \\
+383 & 1 & 17 & 0 & 80.00 & 1 \\
+384 & 15 & 1 & 1 & 80.00 & 1 \\
+385 & 11 & 24 & 1 & 80.00 & 1 \\
+386 & 8 & 0 & 1 & 80.00 & 1 \\
+387 & 9 & 25 & 1 & 80.00 & 1 \\
+388 & 11 & 12 & 1 & 80.00 & 1 \\
+389 & 1 & 8 & 0 & 80.00 & 1 \\
+390 & 7 & 28 & 0 & 80.00 & 1 \\
+391 & 15 & 14 & 1 & 80.00 & 1 \\
+392 & 2 & 10 & 0 & 80.00 & 1 \\
+393 & 2 & 15 & 0 & 80.00 & 1 \\
+394 & 9 & 15 & 1 & 80.00 & 1 \\
+395 & 9 & 11 & 1 & 80.00 & 1 \\
+396 & 2 & 23 & 0 & 80.00 & 1 \\
+397 & 14 & 11 & 1 & 80.00 & 1 \\
+398 & 15 & 16 & 1 & 80.00 & 1 \\
+399 & 5 & 19 & 0 & 80.00 & 1 \\
+400 & 3 & 2 & 0 & 80.00 & 1 \\
+401 & 2 & 19 & 0 & 80.00 & 1 \\
+402 & 9 & 6 & 1 & 80.00 & 1 \\
+403 & 10 & 25 & 1 & 80.00 & 1 \\
+404 & 6 & 1 & 0 & 80.00 & 1 \\
+405 & 8 & 25 & 1 & 80.00 & 1 \\
+406 & 6 & 0 & 0 & 80.00 & 1 \\
+407 & 6 & 12 & 0 & 80.00 & 1 \\
+408 & 12 & 20 & 1 & 80.00 & 1 \\
+409 & 3 & 7 & 0 & 80.00 & 1 \\
+410 & 14 & 17 & 1 & 80.00 & 1 \\
+411 & 9 & 21 & 1 & 80.00 & 1 \\
+412 & 11 & 13 & 1 & 80.00 & 1 \\
+413 & 12 & 0 & 1 & 80.00 & 1 \\
+414 & 3 & 5 & 0 & 80.00 & 1 \\
+415 & 2 & 9 & 0 & 80.00 & 1 \\
+416 & 9 & 28 & 1 & 80.00 & 1 \\
+417 & 2 & 21 & 0 & 80.00 & 1 \\
+418 & 5 & 12 & 0 & 80.00 & 1 \\
+419 & 11 & 14 & 1 & 80.00 & 1 \\
+420 & 6 & 19 & 0 & 80.00 & 1 \\
+421 & 7 & 11 & 0 & 80.00 & 1 \\
+422 & 7 & 17 & 0 & 80.00 & 1 \\
+423 & 0 & 18 & 0 & 80.00 & 1 \\
+424 & 15 & 10 & 1 & 80.00 & 1 \\
+425 & 13 & 22 & 1 & 80.00 & 1 \\
+426 & 0 & 17 & 0 & 80.00 & 1 \\
+427 & 15 & 17 & 1 & 80.00 & 1 \\
+428 & 15 & 8 & 1 & 80.00 & 1 \\
+429 & 5 & 2 & 0 & 80.00 & 1 \\
+430 & 14 & 4 & 1 & 80.00 & 1 \\
+431 & 4 & 23 & 0 & 80.00 & 1 \\
+432 & 4 & 16 & 0 & 80.00 & 1 \\
+433 & 2 & 13 & 0 & 80.00 & 1 \\
+434 & 0 & 29 & 0 & 80.00 & 1 \\
+435 & 4 & 12 & 0 & 80.00 & 1 \\
+436 & 3 & 16 & 0 & 80.00 & 1 \\
+437 & 5 & 24 & 0 & 80.00 & 1 \\
+438 & 11 & 6 & 1 & 80.00 & 1 \\
+439 & 0 & 2 & 0 & 80.00 & 1 \\
+440 & 1 & 28 & 0 & 80.00 & 1 \\
+441 & 6 & 8 & 0 & 80.00 & 1 \\
+442 & 5 & 11 & 0 & 80.00 & 1 \\
+443 & 11 & 9 & 1 & 80.00 & 1 \\
+444 & 10 & 26 & 1 & 80.00 & 1 \\
+445 & 9 & 10 & 1 & 80.00 & 1 \\
+446 & 13 & 3 & 1 & 80.00 & 1 \\
+447 & 13 & 18 & 1 & 80.00 & 1 \\
+448 & 4 & 4 & 0 & 80.00 & 1 \\
+449 & 4 & 19 & 0 & 80.00 & 1 \\
+450 & 11 & 5 & 1 & 80.00 & 1 \\
+451 & 5 & 3 & 0 & 80.00 & 1 \\
+452 & 3 & 29 & 0 & 80.00 & 1 \\
+453 & 15 & 11 & 1 & 80.00 & 1 \\
+454 & 11 & 25 & 1 & 80.00 & 1 \\
+455 & 3 & 23 & 0 & 80.00 & 1 \\
+456 & 2 & 28 & 0 & 80.00 & 1 \\
+457 & 14 & 20 & 1 & 80.00 & 1 \\
+458 & 3 & 3 & 0 & 80.00 & 1 \\
+459 & 11 & 15 & 1 & 80.00 & 1 \\
+460 & 12 & 7 & 1 & 80.00 & 1 \\
+461 & 2 & 11 & 0 & 80.00 & 1 \\
+462 & 5 & 6 & 0 & 80.00 & 1 \\
+463 & 12 & 9 & 1 & 80.00 & 1 \\
+464 & 6 & 14 & 0 & 80.00 & 1 \\
+465 & 11 & 27 & 1 & 80.00 & 1 \\
+466 & 5 & 26 & 0 & 80.00 & 1 \\
+467 & 9 & 20 & 1 & 80.00 & 1 \\
+468 & 1 & 3 & 0 & 80.00 & 1 \\
+469 & 13 & 23 & 1 & 80.00 & 1 \\
+470 & 1 & 24 & 0 & 80.00 & 1 \\
+471 & 11 & 22 & 1 & 80.00 & 1 \\
+472 & 8 & 1 & 1 & 80.00 & 1 \\
+473 & 7 & 20 & 0 & 80.00 & 1 \\
+474 & 13 & 9 & 1 & 80.00 & 1 \\
+475 & 7 & 5 & 0 & 80.00 & 1 \\
+476 & 4 & 10 & 0 & 80.00 & 1 \\
+477 & 12 & 15 & 1 & 80.00 & 1 \\
+478 & 4 & 1 & 0 & 80.00 & 1 \\
+479 & 14 & 5 & 1 & 80.00 & 1 \\
+\bottomrule
+\end{longtable}
+
+\clearpage
+
diff --git a/experiments/bare_metal/analysis/report/sections/appendix_amd64_seed13579.tex b/experiments/bare_metal/analysis/report/sections/appendix_amd64_seed13579.tex
new file mode 100644
index 0000000..ab4dd12
--- /dev/null
+++ b/experiments/bare_metal/analysis/report/sections/appendix_amd64_seed13579.tex
@@ -0,0 +1,499 @@
+\subsection{Raw data: amd64, seed 13579}
+\label{sec:appendix_amd64_seed13579}
+
+All 480 rows, execution order (\texttt{run\_id}), for cell amd64 / seed 13579.
+
+\begin{longtable}{rrrrrr}
+\toprule
+run\_id & cfg & rep & entropy=hi & infer\_dec\_q & early\_exit \\
+\midrule
+\endfirsthead
+\toprule
+run\_id & cfg & rep & entropy=hi & infer\_dec\_q & early\_exit \\
+\midrule
+\endhead
+0 & 5 & 18 & 0 & 0.00 & 0 \\
+1 & 11 & 14 & 1 & 0.00 & 1 \\
+2 & 10 & 1 & 1 & 0.00 & 1 \\
+3 & 13 & 13 & 1 & 0.00 & 1 \\
+4 & 3 & 7 & 0 & 0.00 & 1 \\
+5 & 1 & 9 & 0 & 0.00 & 1 \\
+6 & 14 & 19 & 1 & 0.00 & 1 \\
+7 & 6 & 29 & 0 & 0.00 & 1 \\
+8 & 14 & 5 & 1 & 0.00 & 1 \\
+9 & 7 & 9 & 0 & 0.00 & 1 \\
+10 & 8 & 2 & 1 & 0.00 & 1 \\
+11 & 5 & 2 & 0 & 0.00 & 1 \\
+12 & 2 & 21 & 0 & 0.00 & 1 \\
+13 & 12 & 28 & 1 & 0.00 & 1 \\
+14 & 14 & 29 & 1 & 0.00 & 1 \\
+15 & 6 & 27 & 0 & 0.00 & 1 \\
+16 & 11 & 16 & 1 & 0.00 & 1 \\
+17 & 9 & 27 & 1 & 0.00 & 1 \\
+18 & 6 & 17 & 0 & 0.00 & 1 \\
+19 & 2 & 22 & 0 & 0.00 & 1 \\
+20 & 1 & 17 & 0 & 0.00 & 1 \\
+21 & 1 & 10 & 0 & 0.00 & 1 \\
+22 & 13 & 29 & 1 & 0.00 & 1 \\
+23 & 5 & 20 & 0 & 0.00 & 1 \\
+24 & 11 & 3 & 1 & 0.00 & 1 \\
+25 & 2 & 11 & 0 & 0.00 & 1 \\
+26 & 3 & 25 & 0 & 0.00 & 1 \\
+27 & 7 & 1 & 0 & 0.00 & 1 \\
+28 & 3 & 28 & 0 & 0.00 & 1 \\
+29 & 2 & 17 & 0 & 0.00 & 1 \\
+30 & 4 & 14 & 0 & 0.00 & 1 \\
+31 & 10 & 3 & 1 & 0.00 & 1 \\
+32 & 10 & 0 & 1 & 0.00 & 1 \\
+33 & 14 & 25 & 1 & 0.00 & 1 \\
+34 & 7 & 5 & 0 & 0.00 & 1 \\
+35 & 6 & 1 & 0 & 0.00 & 1 \\
+36 & 13 & 25 & 1 & 0.00 & 1 \\
+37 & 14 & 1 & 1 & 0.00 & 1 \\
+38 & 1 & 24 & 0 & 0.00 & 1 \\
+39 & 12 & 18 & 1 & 0.00 & 1 \\
+40 & 6 & 20 & 0 & 0.00 & 1 \\
+41 & 8 & 10 & 1 & 0.00 & 1 \\
+42 & 2 & 0 & 0 & 0.00 & 1 \\
+43 & 8 & 27 & 1 & 0.00 & 1 \\
+44 & 6 & 19 & 0 & 0.00 & 1 \\
+45 & 7 & 14 & 0 & 0.00 & 1 \\
+46 & 15 & 9 & 1 & 0.00 & 1 \\
+47 & 13 & 7 & 1 & 0.00 & 1 \\
+48 & 6 & 6 & 0 & 0.00 & 1 \\
+49 & 4 & 20 & 0 & 0.00 & 1 \\
+50 & 12 & 1 & 1 & 0.00 & 1 \\
+51 & 14 & 2 & 1 & 0.00 & 1 \\
+52 & 8 & 8 & 1 & 0.00 & 1 \\
+53 & 15 & 19 & 1 & 0.00 & 1 \\
+54 & 8 & 6 & 1 & 0.00 & 1 \\
+55 & 5 & 11 & 0 & 0.00 & 1 \\
+56 & 2 & 26 & 0 & 0.00 & 1 \\
+57 & 6 & 8 & 0 & 0.00 & 1 \\
+58 & 14 & 23 & 1 & 0.00 & 1 \\
+59 & 8 & 0 & 1 & 0.00 & 1 \\
+60 & 3 & 10 & 0 & 0.00 & 1 \\
+61 & 2 & 5 & 0 & 0.00 & 1 \\
+62 & 13 & 20 & 1 & 0.00 & 1 \\
+63 & 6 & 24 & 0 & 0.00 & 1 \\
+64 & 11 & 25 & 1 & 0.00 & 1 \\
+65 & 8 & 1 & 1 & 0.00 & 1 \\
+66 & 3 & 5 & 0 & 0.00 & 1 \\
+67 & 9 & 26 & 1 & 0.00 & 1 \\
+68 & 7 & 18 & 0 & 0.00 & 1 \\
+69 & 2 & 7 & 0 & 0.00 & 1 \\
+70 & 3 & 22 & 0 & 0.00 & 1 \\
+71 & 5 & 19 & 0 & 0.00 & 1 \\
+72 & 1 & 27 & 0 & 0.00 & 1 \\
+73 & 7 & 22 & 0 & 0.00 & 1 \\
+74 & 6 & 4 & 0 & 0.00 & 1 \\
+75 & 7 & 20 & 0 & 0.00 & 1 \\
+76 & 1 & 6 & 0 & 0.00 & 1 \\
+77 & 14 & 14 & 1 & 0.00 & 1 \\
+78 & 2 & 9 & 0 & 0.00 & 1 \\
+79 & 6 & 22 & 0 & 0.00 & 1 \\
+80 & 4 & 10 & 0 & 0.00 & 1 \\
+81 & 3 & 4 & 0 & 0.00 & 1 \\
+82 & 7 & 29 & 0 & 0.00 & 1 \\
+83 & 8 & 5 & 1 & 0.00 & 1 \\
+84 & 6 & 21 & 0 & 0.00 & 1 \\
+85 & 13 & 24 & 1 & 0.00 & 1 \\
+86 & 11 & 29 & 1 & 0.00 & 1 \\
+87 & 15 & 28 & 1 & 0.00 & 1 \\
+88 & 13 & 18 & 1 & 0.00 & 1 \\
+89 & 9 & 6 & 1 & 0.00 & 1 \\
+90 & 15 & 7 & 1 & 0.00 & 1 \\
+91 & 10 & 27 & 1 & 0.00 & 1 \\
+92 & 2 & 18 & 0 & 0.00 & 1 \\
+93 & 1 & 13 & 0 & 0.00 & 1 \\
+94 & 4 & 1 & 0 & 0.00 & 1 \\
+95 & 0 & 29 & 0 & 0.00 & 1 \\
+96 & 12 & 13 & 1 & 0.00 & 1 \\
+97 & 2 & 12 & 0 & 0.00 & 1 \\
+98 & 5 & 24 & 0 & 0.00 & 1 \\
+99 & 2 & 2 & 0 & 0.00 & 1 \\
+100 & 6 & 23 & 0 & 0.00 & 1 \\
+101 & 8 & 22 & 1 & 0.00 & 1 \\
+102 & 12 & 25 & 1 & 0.00 & 1 \\
+103 & 12 & 15 & 1 & 0.00 & 1 \\
+104 & 11 & 4 & 1 & 0.00 & 1 \\
+105 & 0 & 11 & 0 & 0.00 & 1 \\
+106 & 9 & 24 & 1 & 0.00 & 1 \\
+107 & 9 & 13 & 1 & 0.00 & 1 \\
+108 & 7 & 23 & 0 & 0.00 & 1 \\
+109 & 5 & 10 & 0 & 0.00 & 1 \\
+110 & 14 & 13 & 1 & 0.00 & 1 \\
+111 & 2 & 14 & 0 & 0.00 & 1 \\
+112 & 10 & 29 & 1 & 0.00 & 1 \\
+113 & 1 & 14 & 0 & 0.00 & 1 \\
+114 & 11 & 15 & 1 & 0.00 & 1 \\
+115 & 2 & 20 & 0 & 0.00 & 1 \\
+116 & 5 & 12 & 0 & 0.00 & 1 \\
+117 & 15 & 22 & 1 & 0.00 & 1 \\
+118 & 3 & 26 & 0 & 0.00 & 1 \\
+119 & 1 & 1 & 0 & 0.00 & 1 \\
+120 & 3 & 17 & 0 & 0.00 & 1 \\
+121 & 15 & 4 & 1 & 0.00 & 1 \\
+122 & 6 & 9 & 0 & 0.00 & 1 \\
+123 & 6 & 25 & 0 & 0.00 & 1 \\
+124 & 5 & 1 & 0 & 0.00 & 1 \\
+125 & 4 & 18 & 0 & 0.00 & 1 \\
+126 & 5 & 5 & 0 & 0.00 & 1 \\
+127 & 9 & 2 & 1 & 0.00 & 1 \\
+128 & 1 & 12 & 0 & 0.00 & 1 \\
+129 & 8 & 14 & 1 & 0.00 & 1 \\
+130 & 15 & 5 & 1 & 0.00 & 1 \\
+131 & 4 & 4 & 0 & 0.00 & 1 \\
+132 & 15 & 11 & 1 & 0.00 & 1 \\
+133 & 3 & 18 & 0 & 0.00 & 1 \\
+134 & 5 & 27 & 0 & 0.00 & 1 \\
+135 & 12 & 11 & 1 & 0.00 & 1 \\
+136 & 7 & 19 & 0 & 0.00 & 1 \\
+137 & 1 & 26 & 0 & 0.00 & 1 \\
+138 & 12 & 20 & 1 & 0.00 & 1 \\
+139 & 0 & 14 & 0 & 0.00 & 1 \\
+140 & 3 & 8 & 0 & 0.00 & 1 \\
+141 & 9 & 8 & 1 & 0.00 & 1 \\
+142 & 1 & 7 & 0 & 0.00 & 1 \\
+143 & 4 & 0 & 0 & 0.00 & 1 \\
+144 & 9 & 10 & 1 & 0.00 & 1 \\
+145 & 7 & 21 & 0 & 0.00 & 1 \\
+146 & 1 & 22 & 0 & 0.00 & 1 \\
+147 & 14 & 4 & 1 & 0.00 & 1 \\
+148 & 15 & 14 & 1 & 0.00 & 1 \\
+149 & 11 & 11 & 1 & 0.00 & 1 \\
+150 & 14 & 15 & 1 & 0.00 & 1 \\
+151 & 10 & 26 & 1 & 0.00 & 1 \\
+152 & 0 & 19 & 0 & 0.00 & 1 \\
+153 & 0 & 23 & 0 & 0.00 & 1 \\
+154 & 8 & 4 & 1 & 0.00 & 1 \\
+155 & 10 & 8 & 1 & 0.00 & 1 \\
+156 & 11 & 22 & 1 & 0.00 & 1 \\
+157 & 0 & 22 & 0 & 0.00 & 1 \\
+158 & 10 & 22 & 1 & 0.00 & 1 \\
+159 & 3 & 14 & 0 & 0.00 & 1 \\
+160 & 2 & 3 & 0 & 0.00 & 1 \\
+161 & 15 & 15 & 1 & 0.00 & 1 \\
+162 & 6 & 11 & 0 & 0.00 & 1 \\
+163 & 7 & 2 & 0 & 0.00 & 1 \\
+164 & 7 & 26 & 0 & 0.00 & 1 \\
+165 & 9 & 19 & 1 & 0.00 & 1 \\
+166 & 7 & 4 & 0 & 0.00 & 1 \\
+167 & 4 & 19 & 0 & 0.00 & 1 \\
+168 & 10 & 5 & 1 & 0.00 & 1 \\
+169 & 0 & 28 & 0 & 0.00 & 1 \\
+170 & 7 & 27 & 0 & 0.00 & 1 \\
+171 & 0 & 6 & 0 & 0.00 & 1 \\
+172 & 2 & 23 & 0 & 0.00 & 1 \\
+173 & 15 & 6 & 1 & 0.00 & 1 \\
+174 & 14 & 16 & 1 & 0.00 & 1 \\
+175 & 4 & 26 & 0 & 0.00 & 1 \\
+176 & 4 & 16 & 0 & 0.00 & 1 \\
+177 & 15 & 27 & 1 & 0.00 & 1 \\
+178 & 3 & 13 & 0 & 0.00 & 1 \\
+179 & 8 & 26 & 1 & 0.00 & 1 \\
+180 & 15 & 12 & 1 & 0.00 & 1 \\
+181 & 5 & 13 & 0 & 0.00 & 1 \\
+182 & 11 & 1 & 1 & 0.00 & 1 \\
+183 & 15 & 18 & 1 & 0.00 & 1 \\
+184 & 3 & 6 & 0 & 0.00 & 1 \\
+185 & 10 & 6 & 1 & 0.00 & 1 \\
+186 & 0 & 12 & 0 & 68.00 & 0 \\
+187 & 9 & 4 & 1 & 68.00 & 1 \\
+188 & 1 & 4 & 0 & 68.00 & 1 \\
+189 & 8 & 13 & 1 & 68.00 & 1 \\
+190 & 0 & 18 & 0 & 68.00 & 1 \\
+191 & 12 & 2 & 1 & 68.00 & 1 \\
+192 & 12 & 24 & 1 & 68.00 & 1 \\
+193 & 11 & 9 & 1 & 68.00 & 1 \\
+194 & 14 & 9 & 1 & 68.00 & 1 \\
+195 & 13 & 10 & 1 & 68.00 & 1 \\
+196 & 2 & 16 & 0 & 68.00 & 1 \\
+197 & 9 & 20 & 1 & 68.00 & 1 \\
+198 & 13 & 1 & 1 & 68.00 & 1 \\
+199 & 8 & 24 & 1 & 68.00 & 1 \\
+200 & 10 & 14 & 1 & 68.00 & 1 \\
+201 & 2 & 15 & 0 & 68.00 & 1 \\
+202 & 4 & 15 & 0 & 68.00 & 1 \\
+203 & 12 & 26 & 1 & 68.00 & 1 \\
+204 & 10 & 23 & 1 & 68.00 & 1 \\
+205 & 5 & 17 & 0 & 68.00 & 1 \\
+206 & 12 & 8 & 1 & 68.00 & 1 \\
+207 & 2 & 28 & 0 & 68.00 & 1 \\
+208 & 1 & 11 & 0 & 68.00 & 1 \\
+209 & 9 & 7 & 1 & 68.00 & 1 \\
+210 & 14 & 6 & 1 & 68.00 & 1 \\
+211 & 7 & 15 & 0 & 68.00 & 1 \\
+212 & 0 & 15 & 0 & 68.00 & 1 \\
+213 & 6 & 3 & 0 & 68.00 & 1 \\
+214 & 15 & 2 & 1 & 68.00 & 1 \\
+215 & 6 & 10 & 0 & 68.00 & 1 \\
+216 & 14 & 0 & 1 & 68.00 & 1 \\
+217 & 8 & 20 & 1 & 68.00 & 1 \\
+218 & 1 & 23 & 0 & 68.00 & 1 \\
+219 & 13 & 6 & 1 & 68.00 & 1 \\
+220 & 14 & 17 & 1 & 68.00 & 1 \\
+221 & 11 & 17 & 1 & 68.00 & 1 \\
+222 & 7 & 7 & 0 & 68.00 & 1 \\
+223 & 6 & 12 & 0 & 68.00 & 1 \\
+224 & 6 & 26 & 0 & 68.00 & 1 \\
+225 & 11 & 0 & 1 & 68.00 & 1 \\
+226 & 5 & 3 & 0 & 68.00 & 1 \\
+227 & 4 & 25 & 0 & 68.00 & 1 \\
+228 & 9 & 16 & 1 & 68.00 & 1 \\
+229 & 11 & 24 & 1 & 68.00 & 1 \\
+230 & 8 & 23 & 1 & 68.00 & 1 \\
+231 & 15 & 17 & 1 & 68.00 & 1 \\
+232 & 4 & 13 & 0 & 68.00 & 1 \\
+233 & 1 & 5 & 0 & 68.00 & 1 \\
+234 & 12 & 12 & 1 & 68.00 & 1 \\
+235 & 6 & 14 & 0 & 68.00 & 1 \\
+236 & 2 & 6 & 0 & 68.00 & 1 \\
+237 & 3 & 29 & 0 & 68.00 & 1 \\
+238 & 11 & 19 & 1 & 68.00 & 1 \\
+239 & 12 & 9 & 1 & 68.00 & 1 \\
+240 & 11 & 21 & 1 & 68.00 & 1 \\
+241 & 12 & 5 & 1 & 68.00 & 1 \\
+242 & 1 & 3 & 0 & 68.00 & 1 \\
+243 & 3 & 11 & 0 & 68.00 & 1 \\
+244 & 13 & 9 & 1 & 68.00 & 1 \\
+245 & 15 & 29 & 1 & 68.00 & 1 \\
+246 & 4 & 12 & 0 & 68.00 & 1 \\
+247 & 12 & 21 & 1 & 68.00 & 1 \\
+248 & 12 & 29 & 1 & 68.00 & 1 \\
+249 & 2 & 19 & 0 & 73.00 & 0 \\
+250 & 8 & 18 & 1 & 73.00 & 1 \\
+251 & 5 & 16 & 0 & 73.00 & 1 \\
+252 & 4 & 29 & 0 & 73.00 & 1 \\
+253 & 5 & 21 & 0 & 73.00 & 1 \\
+254 & 15 & 21 & 1 & 73.00 & 1 \\
+255 & 15 & 10 & 1 & 73.00 & 1 \\
+256 & 9 & 21 & 1 & 73.00 & 1 \\
+257 & 2 & 1 & 0 & 73.00 & 1 \\
+258 & 6 & 13 & 0 & 73.00 & 1 \\
+259 & 6 & 18 & 0 & 73.00 & 1 \\
+260 & 12 & 14 & 1 & 73.00 & 1 \\
+261 & 5 & 28 & 0 & 73.00 & 1 \\
+262 & 5 & 14 & 0 & 73.00 & 1 \\
+263 & 10 & 18 & 1 & 73.00 & 1 \\
+264 & 0 & 7 & 0 & 73.00 & 1 \\
+265 & 8 & 3 & 1 & 73.00 & 1 \\
+266 & 1 & 8 & 0 & 73.00 & 1 \\
+267 & 12 & 4 & 1 & 74.00 & 0 \\
+268 & 12 & 16 & 1 & 74.00 & 1 \\
+269 & 7 & 17 & 0 & 74.00 & 1 \\
+270 & 13 & 23 & 1 & 74.00 & 1 \\
+271 & 0 & 8 & 0 & 74.00 & 1 \\
+272 & 0 & 25 & 0 & 74.00 & 1 \\
+273 & 3 & 19 & 0 & 74.00 & 1 \\
+274 & 13 & 0 & 1 & 74.00 & 1 \\
+275 & 15 & 24 & 1 & 74.00 & 1 \\
+276 & 5 & 9 & 0 & 74.00 & 1 \\
+277 & 0 & 4 & 0 & 74.00 & 1 \\
+278 & 14 & 8 & 1 & 74.00 & 1 \\
+279 & 4 & 6 & 0 & 74.00 & 1 \\
+280 & 11 & 13 & 1 & 74.00 & 1 \\
+281 & 4 & 21 & 0 & 74.00 & 1 \\
+282 & 7 & 25 & 0 & 74.00 & 1 \\
+283 & 9 & 22 & 1 & 74.00 & 1 \\
+284 & 14 & 11 & 1 & 74.00 & 1 \\
+285 & 0 & 16 & 0 & 74.00 & 1 \\
+286 & 13 & 19 & 1 & 74.00 & 1 \\
+287 & 14 & 21 & 1 & 74.00 & 1 \\
+288 & 5 & 15 & 0 & 74.00 & 1 \\
+289 & 7 & 10 & 0 & 74.00 & 1 \\
+290 & 12 & 27 & 1 & 74.00 & 1 \\
+291 & 15 & 3 & 1 & 74.00 & 1 \\
+292 & 8 & 25 & 1 & 74.00 & 1 \\
+293 & 13 & 16 & 1 & 74.00 & 1 \\
+294 & 10 & 4 & 1 & 74.00 & 1 \\
+295 & 9 & 18 & 1 & 74.00 & 1 \\
+296 & 13 & 8 & 1 & 74.00 & 1 \\
+297 & 4 & 5 & 0 & 74.00 & 1 \\
+298 & 14 & 20 & 1 & 74.00 & 1 \\
+299 & 4 & 8 & 0 & 74.00 & 1 \\
+300 & 13 & 15 & 1 & 74.00 & 1 \\
+301 & 15 & 0 & 1 & 74.00 & 1 \\
+302 & 9 & 17 & 1 & 74.00 & 1 \\
+303 & 11 & 23 & 1 & 74.00 & 1 \\
+304 & 1 & 2 & 0 & 74.00 & 1 \\
+305 & 12 & 10 & 1 & 74.00 & 1 \\
+306 & 2 & 27 & 0 & 74.00 & 1 \\
+307 & 14 & 7 & 1 & 74.00 & 1 \\
+308 & 7 & 28 & 0 & 74.00 & 1 \\
+309 & 7 & 11 & 0 & 74.00 & 1 \\
+310 & 5 & 22 & 0 & 74.00 & 1 \\
+311 & 8 & 7 & 1 & 74.00 & 1 \\
+312 & 0 & 27 & 0 & 74.00 & 1 \\
+313 & 4 & 9 & 0 & 74.00 & 1 \\
+314 & 11 & 10 & 1 & 74.00 & 1 \\
+315 & 1 & 20 & 0 & 74.00 & 1 \\
+316 & 10 & 13 & 1 & 74.00 & 1 \\
+317 & 6 & 28 & 0 & 74.00 & 1 \\
+318 & 11 & 6 & 1 & 74.00 & 1 \\
+319 & 9 & 5 & 1 & 74.00 & 1 \\
+320 & 10 & 17 & 1 & 74.00 & 1 \\
+321 & 7 & 13 & 0 & 74.00 & 1 \\
+322 & 0 & 5 & 0 & 74.00 & 1 \\
+323 & 5 & 25 & 0 & 74.00 & 1 \\
+324 & 15 & 8 & 1 & 74.00 & 1 \\
+325 & 3 & 24 & 0 & 74.00 & 1 \\
+326 & 12 & 23 & 1 & 74.00 & 1 \\
+327 & 14 & 28 & 1 & 74.00 & 1 \\
+328 & 0 & 20 & 0 & 74.00 & 1 \\
+329 & 6 & 5 & 0 & 74.00 & 1 \\
+330 & 2 & 24 & 0 & 74.00 & 1 \\
+331 & 13 & 3 & 1 & 74.00 & 1 \\
+332 & 6 & 16 & 0 & 74.00 & 1 \\
+333 & 2 & 13 & 0 & 74.00 & 1 \\
+334 & 15 & 20 & 1 & 74.00 & 1 \\
+335 & 10 & 10 & 1 & 74.00 & 1 \\
+336 & 4 & 27 & 0 & 74.00 & 1 \\
+337 & 4 & 11 & 0 & 74.00 & 1 \\
+338 & 8 & 12 & 1 & 74.00 & 1 \\
+339 & 2 & 4 & 0 & 74.00 & 1 \\
+340 & 10 & 12 & 1 & 74.00 & 1 \\
+341 & 0 & 0 & 0 & 74.00 & 1 \\
+342 & 3 & 16 & 0 & 74.00 & 1 \\
+343 & 9 & 3 & 1 & 74.00 & 1 \\
+344 & 1 & 21 & 0 & 74.00 & 1 \\
+345 & 11 & 28 & 1 & 74.00 & 1 \\
+346 & 12 & 22 & 1 & 74.00 & 1 \\
+347 & 1 & 18 & 0 & 74.00 & 1 \\
+348 & 6 & 7 & 0 & 74.00 & 1 \\
+349 & 5 & 0 & 0 & 74.00 & 1 \\
+350 & 9 & 25 & 1 & 74.00 & 1 \\
+351 & 14 & 12 & 1 & 74.00 & 1 \\
+352 & 13 & 26 & 1 & 74.00 & 1 \\
+353 & 9 & 12 & 1 & 74.00 & 1 \\
+354 & 0 & 3 & 0 & 74.00 & 1 \\
+355 & 4 & 7 & 0 & 74.00 & 1 \\
+356 & 5 & 4 & 0 & 74.00 & 1 \\
+357 & 10 & 7 & 1 & 74.00 & 1 \\
+358 & 9 & 0 & 1 & 74.00 & 1 \\
+359 & 11 & 7 & 1 & 74.00 & 1 \\
+360 & 10 & 2 & 1 & 74.00 & 1 \\
+361 & 13 & 5 & 1 & 74.00 & 1 \\
+362 & 6 & 2 & 0 & 74.00 & 1 \\
+363 & 4 & 28 & 0 & 74.00 & 1 \\
+364 & 0 & 24 & 0 & 74.00 & 1 \\
+365 & 13 & 2 & 1 & 74.00 & 1 \\
+366 & 0 & 13 & 0 & 74.00 & 1 \\
+367 & 1 & 25 & 0 & 74.00 & 1 \\
+368 & 12 & 0 & 1 & 74.00 & 1 \\
+369 & 8 & 28 & 1 & 74.00 & 1 \\
+370 & 3 & 12 & 0 & 74.00 & 1 \\
+371 & 13 & 17 & 1 & 74.00 & 1 \\
+372 & 13 & 22 & 1 & 74.00 & 1 \\
+373 & 10 & 9 & 1 & 74.00 & 1 \\
+374 & 14 & 26 & 1 & 74.00 & 1 \\
+375 & 2 & 8 & 0 & 74.00 & 1 \\
+376 & 8 & 15 & 1 & 74.00 & 1 \\
+377 & 0 & 2 & 0 & 74.00 & 1 \\
+378 & 8 & 11 & 1 & 74.00 & 1 \\
+379 & 14 & 10 & 1 & 74.00 & 1 \\
+380 & 8 & 19 & 1 & 74.00 & 1 \\
+381 & 0 & 9 & 0 & 74.00 & 1 \\
+382 & 2 & 10 & 0 & 74.00 & 1 \\
+383 & 9 & 9 & 1 & 74.00 & 1 \\
+384 & 6 & 15 & 0 & 74.00 & 1 \\
+385 & 11 & 26 & 1 & 74.00 & 1 \\
+386 & 7 & 3 & 0 & 74.00 & 1 \\
+387 & 14 & 27 & 1 & 74.00 & 1 \\
+388 & 13 & 14 & 1 & 74.00 & 1 \\
+389 & 10 & 19 & 1 & 74.00 & 1 \\
+390 & 10 & 20 & 1 & 74.00 & 1 \\
+391 & 0 & 10 & 0 & 74.00 & 1 \\
+392 & 3 & 9 & 0 & 74.00 & 1 \\
+393 & 11 & 12 & 1 & 74.00 & 1 \\
+394 & 3 & 20 & 0 & 74.00 & 1 \\
+395 & 4 & 24 & 0 & 74.00 & 1 \\
+396 & 5 & 6 & 0 & 74.00 & 1 \\
+397 & 15 & 25 & 1 & 74.00 & 1 \\
+398 & 4 & 3 & 0 & 74.00 & 1 \\
+399 & 11 & 18 & 1 & 74.00 & 1 \\
+400 & 13 & 28 & 1 & 74.00 & 1 \\
+401 & 12 & 17 & 1 & 74.00 & 1 \\
+402 & 11 & 8 & 1 & 74.00 & 1 \\
+403 & 8 & 17 & 1 & 74.00 & 1 \\
+404 & 1 & 29 & 0 & 74.00 & 1 \\
+405 & 11 & 2 & 1 & 74.00 & 1 \\
+406 & 14 & 24 & 1 & 74.00 & 1 \\
+407 & 8 & 16 & 1 & 74.00 & 1 \\
+408 & 1 & 28 & 0 & 74.00 & 1 \\
+409 & 10 & 11 & 1 & 74.00 & 1 \\
+410 & 3 & 2 & 0 & 74.00 & 1 \\
+411 & 6 & 0 & 0 & 74.00 & 1 \\
+412 & 9 & 14 & 1 & 74.00 & 1 \\
+413 & 1 & 19 & 0 & 74.00 & 1 \\
+414 & 5 & 26 & 0 & 74.00 & 1 \\
+415 & 7 & 0 & 0 & 74.00 & 1 \\
+416 & 9 & 11 & 1 & 74.00 & 1 \\
+417 & 8 & 29 & 1 & 74.00 & 1 \\
+418 & 4 & 22 & 0 & 74.00 & 1 \\
+419 & 5 & 8 & 0 & 74.00 & 1 \\
+420 & 0 & 17 & 0 & 74.00 & 1 \\
+421 & 8 & 21 & 1 & 74.00 & 1 \\
+422 & 15 & 16 & 1 & 74.00 & 1 \\
+423 & 7 & 16 & 0 & 74.00 & 1 \\
+424 & 1 & 15 & 0 & 74.00 & 1 \\
+425 & 9 & 23 & 1 & 74.00 & 1 \\
+426 & 11 & 20 & 1 & 74.00 & 1 \\
+427 & 4 & 17 & 0 & 74.00 & 1 \\
+428 & 15 & 23 & 1 & 74.00 & 1 \\
+429 & 14 & 18 & 1 & 74.00 & 1 \\
+430 & 3 & 27 & 0 & 74.00 & 1 \\
+431 & 13 & 11 & 1 & 74.00 & 1 \\
+432 & 10 & 24 & 1 & 74.00 & 1 \\
+433 & 3 & 0 & 0 & 74.00 & 1 \\
+434 & 10 & 15 & 1 & 74.00 & 1 \\
+435 & 7 & 6 & 0 & 74.00 & 1 \\
+436 & 2 & 25 & 0 & 74.00 & 1 \\
+437 & 13 & 12 & 1 & 74.00 & 1 \\
+438 & 12 & 3 & 1 & 74.00 & 1 \\
+439 & 15 & 26 & 1 & 74.00 & 1 \\
+440 & 1 & 16 & 0 & 74.00 & 1 \\
+441 & 3 & 15 & 0 & 74.00 & 1 \\
+442 & 8 & 9 & 1 & 74.00 & 1 \\
+443 & 7 & 12 & 0 & 74.00 & 1 \\
+444 & 11 & 27 & 1 & 74.00 & 1 \\
+445 & 9 & 15 & 1 & 74.00 & 1 \\
+446 & 13 & 4 & 1 & 74.00 & 1 \\
+447 & 15 & 1 & 1 & 74.00 & 1 \\
+448 & 10 & 28 & 1 & 74.00 & 1 \\
+449 & 2 & 29 & 0 & 74.00 & 1 \\
+450 & 12 & 19 & 1 & 74.00 & 1 \\
+451 & 3 & 1 & 0 & 74.00 & 1 \\
+452 & 9 & 28 & 1 & 74.00 & 1 \\
+453 & 0 & 21 & 0 & 74.00 & 1 \\
+454 & 9 & 1 & 1 & 74.00 & 1 \\
+455 & 0 & 1 & 0 & 74.00 & 1 \\
+456 & 1 & 0 & 0 & 74.00 & 1 \\
+457 & 15 & 13 & 1 & 74.00 & 1 \\
+458 & 11 & 5 & 1 & 74.00 & 1 \\
+459 & 4 & 2 & 0 & 74.00 & 1 \\
+460 & 10 & 21 & 1 & 74.00 & 1 \\
+461 & 13 & 27 & 1 & 74.00 & 1 \\
+462 & 14 & 22 & 1 & 74.00 & 1 \\
+463 & 3 & 21 & 0 & 74.00 & 1 \\
+464 & 4 & 23 & 0 & 74.00 & 1 \\
+465 & 3 & 3 & 0 & 74.00 & 1 \\
+466 & 14 & 3 & 1 & 74.00 & 1 \\
+467 & 0 & 26 & 0 & 74.00 & 1 \\
+468 & 7 & 8 & 0 & 74.00 & 1 \\
+469 & 5 & 23 & 0 & 74.00 & 1 \\
+470 & 5 & 29 & 0 & 74.00 & 1 \\
+471 & 12 & 7 & 1 & 74.00 & 1 \\
+472 & 5 & 7 & 0 & 74.00 & 1 \\
+473 & 13 & 21 & 1 & 74.00 & 1 \\
+474 & 10 & 25 & 1 & 74.00 & 1 \\
+475 & 7 & 24 & 0 & 74.00 & 1 \\
+476 & 9 & 29 & 1 & 74.00 & 1 \\
+477 & 3 & 23 & 0 & 74.00 & 1 \\
+478 & 10 & 16 & 1 & 74.00 & 1 \\
+479 & 12 & 6 & 1 & 74.00 & 1 \\
+\bottomrule
+\end{longtable}
+
+\clearpage
+
diff --git a/experiments/bare_metal/analysis/report/sections/appendix_amd64_seed67890.tex b/experiments/bare_metal/analysis/report/sections/appendix_amd64_seed67890.tex
new file mode 100644
index 0000000..9db2735
--- /dev/null
+++ b/experiments/bare_metal/analysis/report/sections/appendix_amd64_seed67890.tex
@@ -0,0 +1,499 @@
+\subsection{Raw data: amd64, seed 67890}
+\label{sec:appendix_amd64_seed67890}
+
+All 480 rows, execution order (\texttt{run\_id}), for cell amd64 / seed 67890.
+
+\begin{longtable}{rrrrrr}
+\toprule
+run\_id & cfg & rep & entropy=hi & infer\_dec\_q & early\_exit \\
+\midrule
+\endfirsthead
+\toprule
+run\_id & cfg & rep & entropy=hi & infer\_dec\_q & early\_exit \\
+\midrule
+\endhead
+0 & 12 & 23 & 1 & 0.00 & 0 \\
+1 & 9 & 11 & 1 & 0.00 & 1 \\
+2 & 0 & 20 & 0 & 0.00 & 1 \\
+3 & 15 & 21 & 1 & 0.00 & 1 \\
+4 & 0 & 13 & 0 & 0.00 & 1 \\
+5 & 10 & 0 & 1 & 0.00 & 1 \\
+6 & 0 & 8 & 0 & 0.00 & 1 \\
+7 & 8 & 10 & 1 & 0.00 & 1 \\
+8 & 11 & 9 & 1 & 0.00 & 1 \\
+9 & 8 & 9 & 1 & 0.00 & 1 \\
+10 & 13 & 22 & 1 & 0.00 & 1 \\
+11 & 1 & 13 & 0 & 0.00 & 1 \\
+12 & 14 & 10 & 1 & 0.00 & 1 \\
+13 & 14 & 4 & 1 & 0.00 & 1 \\
+14 & 4 & 3 & 0 & 0.00 & 1 \\
+15 & 5 & 20 & 0 & 0.00 & 1 \\
+16 & 7 & 19 & 0 & 0.00 & 1 \\
+17 & 6 & 16 & 0 & 0.00 & 1 \\
+18 & 6 & 27 & 0 & 0.00 & 1 \\
+19 & 7 & 4 & 0 & 0.00 & 1 \\
+20 & 13 & 20 & 1 & 0.00 & 1 \\
+21 & 11 & 14 & 1 & 0.00 & 1 \\
+22 & 13 & 28 & 1 & 0.00 & 1 \\
+23 & 11 & 4 & 1 & 0.00 & 1 \\
+24 & 13 & 11 & 1 & 0.00 & 1 \\
+25 & 9 & 26 & 1 & 0.00 & 1 \\
+26 & 11 & 26 & 1 & 0.00 & 1 \\
+27 & 14 & 23 & 1 & 0.00 & 1 \\
+28 & 9 & 10 & 1 & 0.00 & 1 \\
+29 & 7 & 21 & 0 & 0.00 & 1 \\
+30 & 8 & 23 & 1 & 0.00 & 1 \\
+31 & 1 & 8 & 0 & 0.00 & 1 \\
+32 & 14 & 21 & 1 & 0.00 & 1 \\
+33 & 14 & 25 & 1 & 0.00 & 1 \\
+34 & 4 & 7 & 0 & 0.00 & 1 \\
+35 & 1 & 19 & 0 & 0.00 & 1 \\
+36 & 6 & 9 & 0 & 0.00 & 1 \\
+37 & 10 & 26 & 1 & 0.00 & 1 \\
+38 & 7 & 28 & 0 & 0.00 & 1 \\
+39 & 11 & 13 & 1 & 0.00 & 1 \\
+40 & 12 & 10 & 1 & 0.00 & 1 \\
+41 & 2 & 22 & 0 & 0.00 & 1 \\
+42 & 6 & 13 & 0 & 0.00 & 1 \\
+43 & 6 & 21 & 0 & 0.00 & 1 \\
+44 & 6 & 14 & 0 & 0.00 & 1 \\
+45 & 12 & 14 & 1 & 0.00 & 1 \\
+46 & 10 & 15 & 1 & 0.00 & 1 \\
+47 & 1 & 26 & 0 & 0.00 & 1 \\
+48 & 8 & 4 & 1 & 0.00 & 1 \\
+49 & 0 & 5 & 0 & 0.00 & 1 \\
+50 & 7 & 22 & 0 & 0.00 & 1 \\
+51 & 10 & 6 & 1 & 0.00 & 1 \\
+52 & 0 & 28 & 0 & 0.00 & 1 \\
+53 & 2 & 13 & 0 & 0.00 & 1 \\
+54 & 12 & 25 & 1 & 0.00 & 1 \\
+55 & 8 & 21 & 1 & 0.00 & 1 \\
+56 & 9 & 8 & 1 & 0.00 & 1 \\
+57 & 13 & 12 & 1 & 0.00 & 1 \\
+58 & 5 & 0 & 0 & 0.00 & 1 \\
+59 & 8 & 3 & 1 & 0.00 & 1 \\
+60 & 13 & 10 & 1 & 0.00 & 1 \\
+61 & 15 & 24 & 1 & 0.00 & 1 \\
+62 & 9 & 25 & 1 & 0.00 & 1 \\
+63 & 8 & 12 & 1 & 0.00 & 1 \\
+64 & 5 & 26 & 0 & 0.00 & 1 \\
+65 & 12 & 18 & 1 & 0.00 & 1 \\
+66 & 2 & 0 & 0 & 0.00 & 1 \\
+67 & 6 & 18 & 0 & 0.00 & 1 \\
+68 & 4 & 19 & 0 & 0.00 & 1 \\
+69 & 3 & 27 & 0 & 0.00 & 1 \\
+70 & 11 & 19 & 1 & 0.00 & 1 \\
+71 & 4 & 2 & 0 & 0.00 & 1 \\
+72 & 15 & 22 & 1 & 0.00 & 1 \\
+73 & 1 & 11 & 0 & 0.00 & 1 \\
+74 & 11 & 3 & 1 & 0.00 & 1 \\
+75 & 4 & 12 & 0 & 0.00 & 1 \\
+76 & 1 & 9 & 0 & 0.00 & 1 \\
+77 & 6 & 23 & 0 & 0.00 & 1 \\
+78 & 1 & 12 & 0 & 0.00 & 1 \\
+79 & 6 & 19 & 0 & 0.00 & 1 \\
+80 & 10 & 10 & 1 & 0.00 & 1 \\
+81 & 9 & 19 & 1 & 0.00 & 1 \\
+82 & 11 & 17 & 1 & 0.00 & 1 \\
+83 & 14 & 18 & 1 & 0.00 & 1 \\
+84 & 8 & 16 & 1 & 0.00 & 1 \\
+85 & 10 & 8 & 1 & 0.00 & 1 \\
+86 & 7 & 14 & 0 & 0.00 & 1 \\
+87 & 4 & 13 & 0 & 0.00 & 1 \\
+88 & 12 & 0 & 1 & 0.00 & 1 \\
+89 & 8 & 7 & 1 & 0.00 & 1 \\
+90 & 15 & 6 & 1 & 0.00 & 1 \\
+91 & 1 & 23 & 0 & 0.00 & 1 \\
+92 & 3 & 23 & 0 & 0.00 & 1 \\
+93 & 14 & 9 & 1 & 0.00 & 1 \\
+94 & 4 & 28 & 0 & 0.00 & 1 \\
+95 & 5 & 12 & 0 & 0.00 & 1 \\
+96 & 13 & 8 & 1 & 0.00 & 1 \\
+97 & 10 & 29 & 1 & 0.00 & 1 \\
+98 & 15 & 9 & 1 & 0.00 & 1 \\
+99 & 15 & 14 & 1 & 0.00 & 1 \\
+100 & 13 & 27 & 1 & 0.00 & 1 \\
+101 & 7 & 9 & 0 & 0.00 & 1 \\
+102 & 0 & 6 & 0 & 0.00 & 1 \\
+103 & 3 & 20 & 0 & 0.00 & 1 \\
+104 & 12 & 6 & 1 & 0.00 & 1 \\
+105 & 2 & 11 & 0 & 0.00 & 1 \\
+106 & 7 & 18 & 0 & 0.00 & 1 \\
+107 & 11 & 11 & 1 & 0.00 & 1 \\
+108 & 13 & 4 & 1 & 0.00 & 1 \\
+109 & 4 & 10 & 0 & 0.00 & 1 \\
+110 & 11 & 8 & 1 & 0.00 & 1 \\
+111 & 15 & 7 & 1 & 0.00 & 1 \\
+112 & 1 & 21 & 0 & 0.00 & 1 \\
+113 & 9 & 1 & 1 & 0.00 & 1 \\
+114 & 8 & 24 & 1 & 0.00 & 1 \\
+115 & 14 & 5 & 1 & 0.00 & 1 \\
+116 & 3 & 24 & 0 & 0.00 & 1 \\
+117 & 11 & 28 & 1 & 0.00 & 1 \\
+118 & 8 & 22 & 1 & 0.00 & 1 \\
+119 & 6 & 2 & 0 & 0.00 & 1 \\
+120 & 1 & 25 & 0 & 0.00 & 1 \\
+121 & 10 & 25 & 1 & 0.00 & 1 \\
+122 & 10 & 21 & 1 & 0.00 & 1 \\
+123 & 9 & 24 & 1 & 0.00 & 1 \\
+124 & 5 & 5 & 0 & 0.00 & 1 \\
+125 & 3 & 29 & 0 & 0.00 & 1 \\
+126 & 4 & 0 & 0 & 0.00 & 1 \\
+127 & 14 & 17 & 1 & 0.00 & 1 \\
+128 & 14 & 22 & 1 & 0.00 & 1 \\
+129 & 9 & 18 & 1 & 0.00 & 1 \\
+130 & 10 & 16 & 1 & 0.00 & 1 \\
+131 & 13 & 17 & 1 & 0.00 & 1 \\
+132 & 9 & 7 & 1 & 0.00 & 1 \\
+133 & 15 & 2 & 1 & 0.00 & 1 \\
+134 & 10 & 5 & 1 & 0.00 & 1 \\
+135 & 7 & 24 & 0 & 0.00 & 1 \\
+136 & 6 & 25 & 0 & 0.00 & 1 \\
+137 & 7 & 0 & 0 & 0.00 & 1 \\
+138 & 6 & 1 & 0 & 0.00 & 1 \\
+139 & 11 & 6 & 1 & 0.00 & 1 \\
+140 & 1 & 6 & 0 & 0.00 & 1 \\
+141 & 12 & 26 & 1 & 0.00 & 1 \\
+142 & 14 & 14 & 1 & 0.00 & 1 \\
+143 & 2 & 5 & 0 & 0.00 & 1 \\
+144 & 12 & 7 & 1 & 0.00 & 1 \\
+145 & 11 & 10 & 1 & 0.00 & 1 \\
+146 & 4 & 26 & 0 & 0.00 & 1 \\
+147 & 12 & 1 & 1 & 0.00 & 1 \\
+148 & 12 & 27 & 1 & 0.00 & 1 \\
+149 & 4 & 18 & 0 & 0.00 & 1 \\
+150 & 1 & 7 & 0 & 0.00 & 1 \\
+151 & 11 & 12 & 1 & 0.00 & 1 \\
+152 & 4 & 24 & 0 & 0.00 & 1 \\
+153 & 13 & 0 & 1 & 0.00 & 1 \\
+154 & 0 & 24 & 0 & 0.00 & 1 \\
+155 & 7 & 6 & 0 & 0.00 & 1 \\
+156 & 10 & 22 & 1 & 0.00 & 1 \\
+157 & 6 & 0 & 0 & 0.00 & 1 \\
+158 & 4 & 1 & 0 & 0.00 & 1 \\
+159 & 14 & 19 & 1 & 0.00 & 1 \\
+160 & 15 & 26 & 1 & 0.00 & 1 \\
+161 & 12 & 12 & 1 & 0.00 & 1 \\
+162 & 7 & 5 & 0 & 0.00 & 1 \\
+163 & 5 & 6 & 0 & 0.00 & 1 \\
+164 & 9 & 15 & 1 & 0.00 & 1 \\
+165 & 1 & 16 & 0 & 0.00 & 1 \\
+166 & 9 & 28 & 1 & 0.00 & 1 \\
+167 & 10 & 27 & 1 & 0.00 & 1 \\
+168 & 10 & 23 & 1 & 0.00 & 1 \\
+169 & 2 & 25 & 0 & 0.00 & 1 \\
+170 & 0 & 9 & 0 & 0.00 & 1 \\
+171 & 9 & 4 & 1 & 0.00 & 1 \\
+172 & 5 & 13 & 0 & 0.00 & 1 \\
+173 & 6 & 5 & 0 & 0.00 & 1 \\
+174 & 2 & 6 & 0 & 0.00 & 1 \\
+175 & 6 & 17 & 0 & 0.00 & 1 \\
+176 & 14 & 3 & 1 & 0.00 & 1 \\
+177 & 3 & 4 & 0 & 0.00 & 1 \\
+178 & 12 & 21 & 1 & 0.00 & 1 \\
+179 & 1 & 28 & 0 & 0.00 & 1 \\
+180 & 0 & 23 & 0 & 0.00 & 1 \\
+181 & 15 & 0 & 1 & 0.00 & 1 \\
+182 & 11 & 5 & 1 & 0.00 & 1 \\
+183 & 14 & 1 & 1 & 0.00 & 1 \\
+184 & 14 & 0 & 1 & 0.00 & 1 \\
+185 & 5 & 9 & 0 & 0.00 & 1 \\
+186 & 14 & 11 & 1 & 0.00 & 1 \\
+187 & 3 & 28 & 0 & 0.00 & 1 \\
+188 & 7 & 20 & 0 & 0.00 & 1 \\
+189 & 0 & 11 & 0 & 0.00 & 1 \\
+190 & 15 & 4 & 1 & 0.00 & 1 \\
+191 & 3 & 26 & 0 & 0.00 & 1 \\
+192 & 5 & 15 & 0 & 0.00 & 1 \\
+193 & 8 & 15 & 1 & 0.00 & 1 \\
+194 & 5 & 25 & 0 & 0.00 & 1 \\
+195 & 8 & 18 & 1 & 0.00 & 1 \\
+196 & 5 & 17 & 0 & 0.00 & 1 \\
+197 & 9 & 23 & 1 & 0.00 & 1 \\
+198 & 14 & 6 & 1 & 0.00 & 1 \\
+199 & 12 & 19 & 1 & 0.00 & 1 \\
+200 & 9 & 12 & 1 & 0.00 & 1 \\
+201 & 10 & 4 & 1 & 0.00 & 1 \\
+202 & 12 & 17 & 1 & 0.00 & 1 \\
+203 & 4 & 9 & 0 & 0.00 & 1 \\
+204 & 3 & 19 & 0 & 0.00 & 1 \\
+205 & 5 & 29 & 0 & 0.00 & 1 \\
+206 & 12 & 20 & 1 & 0.00 & 1 \\
+207 & 3 & 13 & 0 & 0.00 & 1 \\
+208 & 3 & 10 & 0 & 0.00 & 1 \\
+209 & 12 & 4 & 1 & 0.00 & 1 \\
+210 & 2 & 23 & 0 & 0.00 & 1 \\
+211 & 5 & 18 & 0 & 0.00 & 1 \\
+212 & 15 & 29 & 1 & 0.00 & 1 \\
+213 & 11 & 23 & 1 & 0.00 & 1 \\
+214 & 4 & 15 & 0 & 0.00 & 1 \\
+215 & 13 & 9 & 1 & 0.00 & 1 \\
+216 & 9 & 0 & 1 & 0.00 & 1 \\
+217 & 4 & 20 & 0 & 0.00 & 1 \\
+218 & 2 & 4 & 0 & 0.00 & 1 \\
+219 & 15 & 1 & 1 & 0.00 & 1 \\
+220 & 5 & 2 & 0 & 0.00 & 1 \\
+221 & 2 & 12 & 0 & 0.00 & 1 \\
+222 & 0 & 12 & 0 & 0.00 & 1 \\
+223 & 2 & 3 & 0 & 0.00 & 1 \\
+224 & 6 & 28 & 0 & 0.00 & 1 \\
+225 & 13 & 5 & 1 & 0.00 & 1 \\
+226 & 8 & 1 & 1 & 0.00 & 1 \\
+227 & 6 & 11 & 0 & 0.00 & 1 \\
+228 & 9 & 27 & 1 & 0.00 & 1 \\
+229 & 3 & 25 & 0 & 0.00 & 1 \\
+230 & 13 & 2 & 1 & 0.00 & 1 \\
+231 & 11 & 18 & 1 & 0.00 & 1 \\
+232 & 1 & 2 & 0 & 0.00 & 1 \\
+233 & 11 & 25 & 1 & 0.00 & 1 \\
+234 & 13 & 24 & 1 & 0.00 & 1 \\
+235 & 2 & 21 & 0 & 0.00 & 1 \\
+236 & 2 & 7 & 0 & 0.00 & 1 \\
+237 & 9 & 2 & 1 & 0.00 & 1 \\
+238 & 15 & 3 & 1 & 0.00 & 1 \\
+239 & 14 & 13 & 1 & 0.00 & 1 \\
+240 & 1 & 4 & 0 & 0.00 & 1 \\
+241 & 2 & 24 & 0 & 0.00 & 1 \\
+242 & 0 & 21 & 0 & 0.00 & 1 \\
+243 & 2 & 17 & 0 & 0.00 & 1 \\
+244 & 15 & 13 & 1 & 0.00 & 1 \\
+245 & 15 & 8 & 1 & 0.00 & 1 \\
+246 & 1 & 17 & 0 & 0.00 & 1 \\
+247 & 15 & 15 & 1 & 0.00 & 1 \\
+248 & 11 & 1 & 1 & 0.00 & 1 \\
+249 & 0 & 10 & 0 & 0.00 & 1 \\
+250 & 9 & 9 & 1 & 0.00 & 1 \\
+251 & 5 & 22 & 0 & 0.00 & 1 \\
+252 & 3 & 18 & 0 & 0.00 & 1 \\
+253 & 8 & 29 & 1 & 0.00 & 1 \\
+254 & 6 & 20 & 0 & 0.00 & 1 \\
+255 & 10 & 2 & 1 & 0.00 & 1 \\
+256 & 13 & 15 & 1 & 0.00 & 1 \\
+257 & 3 & 9 & 0 & 0.00 & 1 \\
+258 & 15 & 19 & 1 & 0.00 & 1 \\
+259 & 0 & 4 & 0 & 0.00 & 1 \\
+260 & 8 & 14 & 1 & 0.00 & 1 \\
+261 & 10 & 12 & 1 & 0.00 & 1 \\
+262 & 1 & 5 & 0 & 0.00 & 1 \\
+263 & 1 & 15 & 0 & 0.00 & 1 \\
+264 & 10 & 19 & 1 & 0.00 & 1 \\
+265 & 0 & 19 & 0 & 0.00 & 1 \\
+266 & 8 & 28 & 1 & 0.00 & 1 \\
+267 & 7 & 1 & 0 & 0.00 & 1 \\
+268 & 4 & 29 & 0 & 0.00 & 1 \\
+269 & 0 & 0 & 0 & 0.00 & 1 \\
+270 & 12 & 24 & 1 & 0.00 & 1 \\
+271 & 8 & 19 & 1 & 0.00 & 1 \\
+272 & 15 & 25 & 1 & 0.00 & 1 \\
+273 & 7 & 23 & 0 & 0.00 & 1 \\
+274 & 4 & 4 & 0 & 0.00 & 1 \\
+275 & 13 & 3 & 1 & 0.00 & 1 \\
+276 & 3 & 6 & 0 & 0.00 & 1 \\
+277 & 10 & 14 & 1 & 0.00 & 1 \\
+278 & 13 & 16 & 1 & 0.00 & 1 \\
+279 & 12 & 15 & 1 & 0.00 & 1 \\
+280 & 1 & 14 & 0 & 0.00 & 1 \\
+281 & 6 & 22 & 0 & 0.00 & 1 \\
+282 & 0 & 22 & 0 & 0.00 & 1 \\
+283 & 8 & 27 & 1 & 0.00 & 1 \\
+284 & 15 & 27 & 1 & 0.00 & 1 \\
+285 & 5 & 27 & 0 & 0.00 & 1 \\
+286 & 15 & 28 & 1 & 0.00 & 1 \\
+287 & 6 & 15 & 0 & 0.00 & 1 \\
+288 & 11 & 21 & 1 & 0.00 & 1 \\
+289 & 10 & 11 & 1 & 0.00 & 1 \\
+290 & 14 & 24 & 1 & 0.00 & 1 \\
+291 & 3 & 8 & 0 & 0.00 & 1 \\
+292 & 2 & 20 & 0 & 0.00 & 1 \\
+293 & 1 & 10 & 0 & 0.00 & 1 \\
+294 & 8 & 26 & 1 & 0.00 & 1 \\
+295 & 14 & 27 & 1 & 0.00 & 1 \\
+296 & 9 & 16 & 1 & 0.00 & 1 \\
+297 & 1 & 22 & 0 & 0.00 & 1 \\
+298 & 0 & 26 & 0 & 0.00 & 1 \\
+299 & 15 & 20 & 1 & 0.00 & 1 \\
+300 & 8 & 13 & 1 & 0.00 & 1 \\
+301 & 8 & 2 & 1 & 0.00 & 1 \\
+302 & 13 & 13 & 1 & 0.00 & 1 \\
+303 & 8 & 11 & 1 & 0.00 & 1 \\
+304 & 8 & 8 & 1 & 0.00 & 1 \\
+305 & 8 & 5 & 1 & 0.00 & 1 \\
+306 & 5 & 23 & 0 & 0.00 & 1 \\
+307 & 14 & 16 & 1 & 0.00 & 1 \\
+308 & 3 & 3 & 0 & 0.00 & 1 \\
+309 & 3 & 15 & 0 & 0.00 & 1 \\
+310 & 0 & 2 & 0 & 0.00 & 1 \\
+311 & 2 & 15 & 0 & 0.00 & 1 \\
+312 & 15 & 17 & 1 & 77.00 & 0 \\
+313 & 5 & 14 & 0 & 77.00 & 1 \\
+314 & 1 & 1 & 0 & 77.00 & 1 \\
+315 & 2 & 29 & 0 & 77.00 & 1 \\
+316 & 14 & 29 & 1 & 77.00 & 1 \\
+317 & 15 & 23 & 1 & 77.00 & 1 \\
+318 & 7 & 7 & 0 & 77.00 & 1 \\
+319 & 7 & 16 & 0 & 77.00 & 1 \\
+320 & 7 & 8 & 0 & 77.00 & 1 \\
+321 & 4 & 23 & 0 & 77.00 & 1 \\
+322 & 4 & 21 & 0 & 77.00 & 1 \\
+323 & 5 & 4 & 0 & 77.00 & 1 \\
+324 & 10 & 7 & 1 & 77.00 & 1 \\
+325 & 0 & 27 & 0 & 77.00 & 1 \\
+326 & 0 & 29 & 0 & 77.00 & 1 \\
+327 & 1 & 24 & 0 & 77.00 & 1 \\
+328 & 12 & 5 & 1 & 77.00 & 1 \\
+329 & 9 & 29 & 1 & 77.00 & 1 \\
+330 & 14 & 28 & 1 & 77.00 & 1 \\
+331 & 11 & 7 & 1 & 77.00 & 1 \\
+332 & 5 & 28 & 0 & 77.00 & 1 \\
+333 & 0 & 1 & 0 & 77.00 & 1 \\
+334 & 7 & 15 & 0 & 77.00 & 1 \\
+335 & 4 & 8 & 0 & 77.00 & 1 \\
+336 & 1 & 3 & 0 & 77.00 & 1 \\
+337 & 8 & 20 & 1 & 77.00 & 1 \\
+338 & 3 & 21 & 0 & 77.00 & 1 \\
+339 & 14 & 2 & 1 & 77.00 & 1 \\
+340 & 9 & 22 & 1 & 77.00 & 1 \\
+341 & 0 & 16 & 0 & 77.00 & 1 \\
+342 & 7 & 17 & 0 & 77.00 & 1 \\
+343 & 2 & 19 & 0 & 77.00 & 1 \\
+344 & 5 & 1 & 0 & 77.00 & 1 \\
+345 & 2 & 28 & 0 & 77.00 & 1 \\
+346 & 5 & 10 & 0 & 77.00 & 1 \\
+347 & 14 & 26 & 1 & 77.00 & 1 \\
+348 & 10 & 13 & 1 & 77.00 & 1 \\
+349 & 5 & 16 & 0 & 77.00 & 1 \\
+350 & 10 & 3 & 1 & 77.00 & 1 \\
+351 & 13 & 18 & 1 & 77.00 & 1 \\
+352 & 10 & 1 & 1 & 77.00 & 1 \\
+353 & 13 & 23 & 1 & 77.00 & 1 \\
+354 & 13 & 19 & 1 & 77.00 & 1 \\
+355 & 3 & 5 & 0 & 77.00 & 1 \\
+356 & 3 & 14 & 0 & 77.00 & 1 \\
+357 & 1 & 20 & 0 & 77.00 & 1 \\
+358 & 14 & 8 & 1 & 77.00 & 1 \\
+359 & 6 & 6 & 0 & 77.00 & 1 \\
+360 & 12 & 28 & 1 & 77.00 & 1 \\
+361 & 11 & 0 & 1 & 77.00 & 1 \\
+362 & 13 & 14 & 1 & 77.00 & 1 \\
+363 & 15 & 11 & 1 & 80.00 & 0 \\
+364 & 15 & 10 & 1 & 80.00 & 1 \\
+365 & 12 & 11 & 1 & 80.00 & 1 \\
+366 & 15 & 12 & 1 & 80.00 & 1 \\
+367 & 2 & 26 & 0 & 80.00 & 1 \\
+368 & 10 & 17 & 1 & 80.00 & 1 \\
+369 & 6 & 29 & 0 & 80.00 & 1 \\
+370 & 5 & 7 & 0 & 80.00 & 1 \\
+371 & 10 & 20 & 1 & 80.00 & 1 \\
+372 & 11 & 29 & 1 & 80.00 & 1 \\
+373 & 6 & 8 & 0 & 80.00 & 1 \\
+374 & 1 & 0 & 0 & 80.00 & 1 \\
+375 & 3 & 0 & 0 & 80.00 & 1 \\
+376 & 3 & 11 & 0 & 80.00 & 1 \\
+377 & 0 & 14 & 0 & 80.00 & 1 \\
+378 & 4 & 16 & 0 & 80.00 & 1 \\
+379 & 5 & 8 & 0 & 80.00 & 1 \\
+380 & 9 & 13 & 1 & 80.00 & 1 \\
+381 & 4 & 25 & 0 & 80.00 & 1 \\
+382 & 3 & 7 & 0 & 80.00 & 1 \\
+383 & 12 & 22 & 1 & 80.00 & 1 \\
+384 & 4 & 22 & 0 & 80.00 & 1 \\
+385 & 2 & 1 & 0 & 80.00 & 1 \\
+386 & 8 & 0 & 1 & 80.00 & 1 \\
+387 & 5 & 3 & 0 & 80.00 & 1 \\
+388 & 3 & 22 & 0 & 80.00 & 1 \\
+389 & 6 & 12 & 0 & 80.00 & 1 \\
+390 & 13 & 29 & 1 & 80.00 & 1 \\
+391 & 5 & 24 & 0 & 80.00 & 1 \\
+392 & 10 & 9 & 1 & 80.00 & 1 \\
+393 & 5 & 19 & 0 & 80.00 & 1 \\
+394 & 7 & 10 & 0 & 80.00 & 1 \\
+395 & 0 & 7 & 0 & 80.00 & 1 \\
+396 & 14 & 20 & 1 & 80.00 & 1 \\
+397 & 15 & 18 & 1 & 80.00 & 1 \\
+398 & 6 & 26 & 0 & 80.00 & 1 \\
+399 & 11 & 15 & 1 & 80.00 & 1 \\
+400 & 15 & 5 & 1 & 80.00 & 1 \\
+401 & 6 & 24 & 0 & 80.00 & 1 \\
+402 & 3 & 17 & 0 & 80.00 & 1 \\
+403 & 13 & 26 & 1 & 80.00 & 1 \\
+404 & 10 & 18 & 1 & 80.00 & 1 \\
+405 & 7 & 2 & 0 & 80.00 & 1 \\
+406 & 6 & 10 & 0 & 80.00 & 1 \\
+407 & 2 & 14 & 0 & 80.00 & 1 \\
+408 & 9 & 14 & 1 & 80.00 & 1 \\
+409 & 2 & 2 & 0 & 80.00 & 1 \\
+410 & 1 & 27 & 0 & 80.00 & 1 \\
+411 & 4 & 6 & 0 & 82.00 & 0 \\
+412 & 0 & 18 & 0 & 82.00 & 1 \\
+413 & 4 & 11 & 0 & 82.00 & 1 \\
+414 & 7 & 3 & 0 & 82.00 & 1 \\
+415 & 14 & 12 & 1 & 82.00 & 1 \\
+416 & 2 & 27 & 0 & 82.00 & 1 \\
+417 & 7 & 12 & 0 & 82.00 & 1 \\
+418 & 12 & 2 & 1 & 82.00 & 1 \\
+419 & 2 & 18 & 0 & 82.00 & 1 \\
+420 & 9 & 3 & 1 & 82.00 & 1 \\
+421 & 6 & 3 & 0 & 82.00 & 1 \\
+422 & 7 & 29 & 0 & 82.00 & 1 \\
+423 & 3 & 2 & 0 & 82.00 & 1 \\
+424 & 15 & 16 & 1 & 82.00 & 1 \\
+425 & 0 & 25 & 0 & 82.00 & 1 \\
+426 & 10 & 28 & 1 & 82.00 & 1 \\
+427 & 9 & 21 & 1 & 82.00 & 1 \\
+428 & 12 & 29 & 1 & 82.00 & 1 \\
+429 & 0 & 3 & 0 & 82.00 & 1 \\
+430 & 11 & 16 & 1 & 82.00 & 1 \\
+431 & 13 & 25 & 1 & 82.00 & 1 \\
+432 & 8 & 17 & 1 & 82.00 & 1 \\
+433 & 1 & 18 & 0 & 82.00 & 1 \\
+434 & 9 & 5 & 1 & 82.00 & 1 \\
+435 & 6 & 7 & 0 & 82.00 & 1 \\
+436 & 0 & 15 & 0 & 82.00 & 1 \\
+437 & 13 & 21 & 1 & 82.00 & 1 \\
+438 & 7 & 11 & 0 & 82.00 & 1 \\
+439 & 7 & 13 & 0 & 82.00 & 1 \\
+440 & 12 & 16 & 1 & 82.00 & 1 \\
+441 & 3 & 12 & 0 & 82.00 & 1 \\
+442 & 8 & 6 & 1 & 82.00 & 1 \\
+443 & 12 & 3 & 1 & 82.00 & 1 \\
+444 & 2 & 9 & 0 & 82.00 & 1 \\
+445 & 13 & 1 & 1 & 82.00 & 1 \\
+446 & 7 & 26 & 0 & 82.00 & 1 \\
+447 & 3 & 16 & 0 & 82.00 & 1 \\
+448 & 13 & 7 & 1 & 82.00 & 1 \\
+449 & 9 & 20 & 1 & 82.00 & 1 \\
+450 & 13 & 6 & 1 & 82.00 & 1 \\
+451 & 5 & 11 & 0 & 82.00 & 1 \\
+452 & 11 & 22 & 1 & 84.00 & 0 \\
+453 & 0 & 17 & 0 & 84.00 & 1 \\
+454 & 11 & 20 & 1 & 84.00 & 1 \\
+455 & 2 & 10 & 0 & 84.00 & 1 \\
+456 & 10 & 24 & 1 & 84.00 & 1 \\
+457 & 6 & 4 & 0 & 84.00 & 1 \\
+458 & 8 & 25 & 1 & 84.00 & 1 \\
+459 & 4 & 5 & 0 & 84.00 & 1 \\
+460 & 12 & 13 & 1 & 84.00 & 1 \\
+461 & 3 & 1 & 0 & 84.00 & 1 \\
+462 & 2 & 8 & 0 & 84.00 & 1 \\
+463 & 14 & 15 & 1 & 84.00 & 1 \\
+464 & 7 & 25 & 0 & 84.00 & 1 \\
+465 & 9 & 6 & 1 & 84.00 & 1 \\
+466 & 4 & 17 & 0 & 84.00 & 1 \\
+467 & 11 & 24 & 1 & 84.00 & 1 \\
+468 & 11 & 27 & 1 & 84.00 & 1 \\
+469 & 12 & 9 & 1 & 84.00 & 1 \\
+470 & 1 & 29 & 0 & 84.00 & 1 \\
+471 & 9 & 17 & 1 & 84.00 & 1 \\
+472 & 4 & 27 & 0 & 84.00 & 1 \\
+473 & 2 & 16 & 0 & 84.00 & 1 \\
+474 & 7 & 27 & 0 & 84.00 & 1 \\
+475 & 12 & 8 & 1 & 84.00 & 1 \\
+476 & 5 & 21 & 0 & 84.00 & 1 \\
+477 & 14 & 7 & 1 & 84.00 & 1 \\
+478 & 4 & 14 & 0 & 84.00 & 1 \\
+479 & 11 & 2 & 1 & 84.00 & 1 \\
+\bottomrule
+\end{longtable}
+
+\clearpage
+
diff --git a/experiments/bare_metal/analysis/report/sections/appendix_riscv64_seed12345.tex b/experiments/bare_metal/analysis/report/sections/appendix_riscv64_seed12345.tex
new file mode 100644
index 0000000..380491b
--- /dev/null
+++ b/experiments/bare_metal/analysis/report/sections/appendix_riscv64_seed12345.tex
@@ -0,0 +1,499 @@
+\subsection{Raw data: riscv64, seed 12345}
+\label{sec:appendix_riscv64_seed12345}
+
+All 480 rows, execution order (\texttt{run\_id}), for cell riscv64 / seed 12345.
+
+\begin{longtable}{rrrrrr}
+\toprule
+run\_id & cfg & rep & entropy=hi & infer\_dec\_q & early\_exit \\
+\midrule
+\endfirsthead
+\toprule
+run\_id & cfg & rep & entropy=hi & infer\_dec\_q & early\_exit \\
+\midrule
+\endhead
+0 & 7 & 23 & 0 & 0.00 & 0 \\
+1 & 2 & 22 & 0 & 0.00 & 1 \\
+2 & 6 & 2 & 0 & 0.00 & 1 \\
+3 & 5 & 27 & 0 & 0.00 & 1 \\
+4 & 12 & 24 & 1 & 0.00 & 1 \\
+5 & 7 & 4 & 0 & 0.00 & 1 \\
+6 & 9 & 29 & 1 & 0.00 & 1 \\
+7 & 11 & 20 & 1 & 0.00 & 1 \\
+8 & 11 & 23 & 1 & 0.00 & 1 \\
+9 & 7 & 10 & 0 & 0.00 & 1 \\
+10 & 13 & 11 & 1 & 0.00 & 1 \\
+11 & 5 & 5 & 0 & 0.00 & 1 \\
+12 & 1 & 6 & 0 & 0.00 & 1 \\
+13 & 12 & 27 & 1 & 0.00 & 1 \\
+14 & 13 & 20 & 1 & 0.00 & 1 \\
+15 & 4 & 3 & 0 & 0.00 & 1 \\
+16 & 5 & 13 & 0 & 0.00 & 1 \\
+17 & 12 & 12 & 1 & 0.00 & 1 \\
+18 & 6 & 21 & 0 & 0.00 & 1 \\
+19 & 4 & 26 & 0 & 0.00 & 1 \\
+20 & 15 & 27 & 1 & 0.00 & 1 \\
+21 & 5 & 9 & 0 & 0.00 & 1 \\
+22 & 11 & 16 & 1 & 0.00 & 1 \\
+23 & 5 & 14 & 0 & 0.00 & 1 \\
+24 & 9 & 7 & 1 & 0.00 & 1 \\
+25 & 13 & 13 & 1 & 0.00 & 1 \\
+26 & 10 & 21 & 1 & 0.00 & 1 \\
+27 & 8 & 17 & 1 & 0.00 & 1 \\
+28 & 12 & 14 & 1 & 0.00 & 1 \\
+29 & 4 & 5 & 0 & 0.00 & 1 \\
+30 & 4 & 11 & 0 & 0.00 & 1 \\
+31 & 7 & 3 & 0 & 0.00 & 1 \\
+32 & 9 & 3 & 1 & 0.00 & 1 \\
+33 & 0 & 8 & 0 & 0.00 & 1 \\
+34 & 9 & 18 & 1 & 0.00 & 1 \\
+35 & 7 & 15 & 0 & 0.00 & 1 \\
+36 & 5 & 7 & 0 & 0.00 & 1 \\
+37 & 2 & 20 & 0 & 0.00 & 1 \\
+38 & 13 & 6 & 1 & 0.00 & 1 \\
+39 & 12 & 6 & 1 & 0.00 & 1 \\
+40 & 14 & 2 & 1 & 0.00 & 1 \\
+41 & 5 & 1 & 0 & 0.00 & 1 \\
+42 & 4 & 28 & 0 & 0.00 & 1 \\
+43 & 0 & 14 & 0 & 0.00 & 1 \\
+44 & 11 & 11 & 1 & 0.00 & 1 \\
+45 & 1 & 9 & 0 & 0.00 & 1 \\
+46 & 5 & 29 & 0 & 0.00 & 1 \\
+47 & 12 & 3 & 1 & 0.00 & 1 \\
+48 & 10 & 11 & 1 & 0.00 & 1 \\
+49 & 6 & 29 & 0 & 0.00 & 1 \\
+50 & 0 & 22 & 0 & 0.00 & 1 \\
+51 & 1 & 2 & 0 & 0.00 & 1 \\
+52 & 10 & 24 & 1 & 0.00 & 1 \\
+53 & 0 & 5 & 0 & 0.00 & 1 \\
+54 & 6 & 10 & 0 & 0.00 & 1 \\
+55 & 9 & 14 & 1 & 0.00 & 1 \\
+56 & 5 & 4 & 0 & 0.00 & 1 \\
+57 & 13 & 0 & 1 & 0.00 & 1 \\
+58 & 4 & 25 & 0 & 0.00 & 1 \\
+59 & 3 & 21 & 0 & 0.00 & 1 \\
+60 & 1 & 1 & 0 & 0.00 & 1 \\
+61 & 0 & 19 & 0 & 0.00 & 1 \\
+62 & 7 & 0 & 0 & 0.00 & 1 \\
+63 & 13 & 12 & 1 & 0.00 & 1 \\
+64 & 1 & 20 & 0 & 0.00 & 1 \\
+65 & 12 & 4 & 1 & 0.00 & 1 \\
+66 & 12 & 1 & 1 & 0.00 & 1 \\
+67 & 14 & 16 & 1 & 0.00 & 1 \\
+68 & 8 & 4 & 1 & 0.00 & 1 \\
+69 & 1 & 5 & 0 & 0.00 & 1 \\
+70 & 13 & 15 & 1 & 0.00 & 1 \\
+71 & 9 & 12 & 1 & 0.00 & 1 \\
+72 & 3 & 4 & 0 & 0.00 & 1 \\
+73 & 6 & 23 & 0 & 0.00 & 1 \\
+74 & 0 & 11 & 0 & 0.00 & 1 \\
+75 & 1 & 13 & 0 & 0.00 & 1 \\
+76 & 3 & 11 & 0 & 0.00 & 1 \\
+77 & 3 & 24 & 0 & 0.00 & 1 \\
+78 & 6 & 11 & 0 & 0.00 & 1 \\
+79 & 8 & 16 & 1 & 0.00 & 1 \\
+80 & 14 & 28 & 1 & 0.00 & 1 \\
+81 & 10 & 22 & 1 & 0.00 & 1 \\
+82 & 2 & 27 & 0 & 0.00 & 1 \\
+83 & 10 & 7 & 1 & 0.00 & 1 \\
+84 & 1 & 21 & 0 & 0.00 & 1 \\
+85 & 14 & 18 & 1 & 0.00 & 1 \\
+86 & 1 & 19 & 0 & 0.00 & 1 \\
+87 & 7 & 29 & 0 & 0.00 & 1 \\
+88 & 8 & 6 & 1 & 0.00 & 1 \\
+89 & 11 & 2 & 1 & 0.00 & 1 \\
+90 & 6 & 5 & 0 & 0.00 & 1 \\
+91 & 4 & 20 & 0 & 0.00 & 1 \\
+92 & 4 & 17 & 0 & 0.00 & 1 \\
+93 & 0 & 15 & 0 & 0.00 & 1 \\
+94 & 0 & 10 & 0 & 56.00 & 0 \\
+95 & 9 & 13 & 1 & 56.00 & 1 \\
+96 & 2 & 5 & 0 & 56.00 & 1 \\
+97 & 1 & 4 & 0 & 56.00 & 1 \\
+98 & 8 & 8 & 1 & 56.00 & 1 \\
+99 & 2 & 18 & 0 & 56.00 & 1 \\
+100 & 4 & 21 & 0 & 56.00 & 1 \\
+101 & 13 & 8 & 1 & 56.00 & 1 \\
+102 & 9 & 0 & 1 & 56.00 & 1 \\
+103 & 6 & 24 & 0 & 56.00 & 1 \\
+104 & 10 & 12 & 1 & 56.00 & 1 \\
+105 & 14 & 10 & 1 & 56.00 & 1 \\
+106 & 9 & 17 & 1 & 56.00 & 1 \\
+107 & 6 & 13 & 0 & 56.00 & 1 \\
+108 & 6 & 18 & 0 & 56.00 & 1 \\
+109 & 8 & 19 & 1 & 56.00 & 1 \\
+110 & 8 & 20 & 1 & 56.00 & 1 \\
+111 & 5 & 23 & 0 & 56.00 & 1 \\
+112 & 6 & 17 & 0 & 56.00 & 1 \\
+113 & 13 & 2 & 1 & 56.00 & 1 \\
+114 & 0 & 25 & 0 & 56.00 & 1 \\
+115 & 12 & 17 & 1 & 56.00 & 1 \\
+116 & 12 & 28 & 1 & 56.00 & 1 \\
+117 & 7 & 16 & 0 & 56.00 & 1 \\
+118 & 0 & 23 & 0 & 56.00 & 1 \\
+119 & 0 & 13 & 0 & 56.00 & 1 \\
+120 & 2 & 12 & 0 & 56.00 & 1 \\
+121 & 7 & 2 & 0 & 56.00 & 1 \\
+122 & 13 & 24 & 1 & 56.00 & 1 \\
+123 & 8 & 26 & 1 & 56.00 & 1 \\
+124 & 3 & 10 & 0 & 56.00 & 1 \\
+125 & 6 & 22 & 0 & 56.00 & 1 \\
+126 & 14 & 3 & 1 & 56.00 & 1 \\
+127 & 0 & 12 & 0 & 56.00 & 1 \\
+128 & 0 & 1 & 0 & 56.00 & 1 \\
+129 & 12 & 2 & 1 & 56.00 & 1 \\
+130 & 0 & 24 & 0 & 56.00 & 1 \\
+131 & 10 & 0 & 1 & 56.00 & 1 \\
+132 & 2 & 29 & 0 & 56.00 & 1 \\
+133 & 3 & 1 & 0 & 56.00 & 1 \\
+134 & 13 & 16 & 1 & 56.00 & 1 \\
+135 & 14 & 26 & 1 & 56.00 & 1 \\
+136 & 3 & 15 & 0 & 56.00 & 1 \\
+137 & 4 & 2 & 0 & 56.00 & 1 \\
+138 & 15 & 9 & 1 & 56.00 & 1 \\
+139 & 0 & 26 & 0 & 56.00 & 1 \\
+140 & 8 & 22 & 1 & 56.00 & 1 \\
+141 & 10 & 28 & 1 & 56.00 & 1 \\
+142 & 11 & 4 & 1 & 56.00 & 1 \\
+143 & 4 & 27 & 0 & 56.00 & 1 \\
+144 & 8 & 15 & 1 & 56.00 & 1 \\
+145 & 9 & 19 & 1 & 56.00 & 1 \\
+146 & 0 & 0 & 0 & 56.00 & 1 \\
+147 & 13 & 7 & 1 & 56.00 & 1 \\
+148 & 13 & 27 & 1 & 56.00 & 1 \\
+149 & 11 & 26 & 1 & 56.00 & 1 \\
+150 & 2 & 2 & 0 & 56.00 & 1 \\
+151 & 14 & 22 & 1 & 56.00 & 1 \\
+152 & 4 & 18 & 0 & 56.00 & 1 \\
+153 & 0 & 3 & 0 & 56.00 & 1 \\
+154 & 15 & 28 & 1 & 56.00 & 1 \\
+155 & 12 & 26 & 1 & 56.00 & 1 \\
+156 & 12 & 8 & 1 & 56.00 & 1 \\
+157 & 3 & 9 & 0 & 56.00 & 1 \\
+158 & 3 & 22 & 0 & 56.00 & 1 \\
+159 & 15 & 7 & 1 & 56.00 & 1 \\
+160 & 11 & 1 & 1 & 56.00 & 1 \\
+161 & 12 & 29 & 1 & 56.00 & 1 \\
+162 & 14 & 27 & 1 & 56.00 & 1 \\
+163 & 4 & 29 & 0 & 56.00 & 1 \\
+164 & 1 & 25 & 0 & 56.00 & 1 \\
+165 & 6 & 7 & 0 & 56.00 & 1 \\
+166 & 14 & 6 & 1 & 56.00 & 1 \\
+167 & 9 & 4 & 1 & 56.00 & 1 \\
+168 & 9 & 8 & 1 & 56.00 & 1 \\
+169 & 3 & 27 & 0 & 56.00 & 1 \\
+170 & 5 & 21 & 0 & 56.00 & 1 \\
+171 & 12 & 18 & 1 & 56.00 & 1 \\
+172 & 14 & 23 & 1 & 56.00 & 1 \\
+173 & 13 & 26 & 1 & 56.00 & 1 \\
+174 & 11 & 17 & 1 & 56.00 & 1 \\
+175 & 5 & 8 & 0 & 56.00 & 1 \\
+176 & 4 & 13 & 0 & 56.00 & 1 \\
+177 & 1 & 11 & 0 & 56.00 & 1 \\
+178 & 15 & 26 & 1 & 56.00 & 1 \\
+179 & 11 & 29 & 1 & 56.00 & 1 \\
+180 & 10 & 23 & 1 & 56.00 & 1 \\
+181 & 1 & 23 & 0 & 56.00 & 1 \\
+182 & 9 & 27 & 1 & 56.00 & 1 \\
+183 & 14 & 9 & 1 & 56.00 & 1 \\
+184 & 13 & 21 & 1 & 56.00 & 1 \\
+185 & 8 & 3 & 1 & 56.00 & 1 \\
+186 & 9 & 23 & 1 & 56.00 & 1 \\
+187 & 12 & 22 & 1 & 56.00 & 1 \\
+188 & 14 & 15 & 1 & 68.00 & 0 \\
+189 & 3 & 8 & 0 & 68.00 & 1 \\
+190 & 6 & 27 & 0 & 68.00 & 1 \\
+191 & 4 & 14 & 0 & 68.00 & 1 \\
+192 & 7 & 21 & 0 & 68.00 & 1 \\
+193 & 15 & 6 & 1 & 68.00 & 1 \\
+194 & 2 & 0 & 0 & 68.00 & 1 \\
+195 & 6 & 6 & 0 & 68.00 & 1 \\
+196 & 13 & 1 & 1 & 68.00 & 1 \\
+197 & 12 & 11 & 1 & 68.00 & 1 \\
+198 & 2 & 6 & 0 & 68.00 & 1 \\
+199 & 5 & 16 & 0 & 68.00 & 1 \\
+200 & 14 & 29 & 1 & 68.00 & 1 \\
+201 & 15 & 13 & 1 & 68.00 & 1 \\
+202 & 15 & 15 & 1 & 68.00 & 1 \\
+203 & 4 & 24 & 0 & 68.00 & 1 \\
+204 & 10 & 3 & 1 & 68.00 & 1 \\
+205 & 3 & 19 & 0 & 68.00 & 1 \\
+206 & 15 & 24 & 1 & 68.00 & 1 \\
+207 & 1 & 7 & 0 & 68.00 & 1 \\
+208 & 8 & 18 & 1 & 68.00 & 1 \\
+209 & 0 & 27 & 0 & 68.00 & 1 \\
+210 & 0 & 7 & 0 & 68.00 & 1 \\
+211 & 5 & 10 & 0 & 68.00 & 1 \\
+212 & 7 & 26 & 0 & 68.00 & 1 \\
+213 & 0 & 6 & 0 & 68.00 & 1 \\
+214 & 3 & 18 & 0 & 68.00 & 1 \\
+215 & 9 & 9 & 1 & 68.00 & 1 \\
+216 & 7 & 25 & 0 & 68.00 & 1 \\
+217 & 12 & 5 & 1 & 68.00 & 1 \\
+218 & 7 & 8 & 0 & 68.00 & 1 \\
+219 & 12 & 10 & 1 & 68.00 & 1 \\
+220 & 10 & 2 & 1 & 68.00 & 1 \\
+221 & 13 & 28 & 1 & 68.00 & 1 \\
+222 & 3 & 0 & 0 & 68.00 & 1 \\
+223 & 7 & 6 & 0 & 68.00 & 1 \\
+224 & 6 & 3 & 0 & 68.00 & 1 \\
+225 & 5 & 17 & 0 & 68.00 & 1 \\
+226 & 7 & 7 & 0 & 68.00 & 1 \\
+227 & 14 & 8 & 1 & 68.00 & 1 \\
+228 & 6 & 4 & 0 & 68.00 & 1 \\
+229 & 14 & 12 & 1 & 68.00 & 1 \\
+230 & 1 & 18 & 0 & 68.00 & 1 \\
+231 & 4 & 6 & 0 & 68.00 & 1 \\
+232 & 0 & 9 & 0 & 68.00 & 1 \\
+233 & 1 & 15 & 0 & 68.00 & 1 \\
+234 & 13 & 29 & 1 & 68.00 & 1 \\
+235 & 5 & 28 & 0 & 68.00 & 1 \\
+236 & 14 & 7 & 1 & 68.00 & 1 \\
+237 & 15 & 29 & 1 & 68.00 & 1 \\
+238 & 2 & 4 & 0 & 68.00 & 1 \\
+239 & 2 & 3 & 0 & 68.00 & 1 \\
+240 & 7 & 1 & 0 & 68.00 & 1 \\
+241 & 13 & 25 & 1 & 68.00 & 1 \\
+242 & 6 & 25 & 0 & 68.00 & 1 \\
+243 & 12 & 23 & 1 & 68.00 & 1 \\
+244 & 7 & 9 & 0 & 68.00 & 1 \\
+245 & 11 & 3 & 1 & 68.00 & 1 \\
+246 & 10 & 6 & 1 & 68.00 & 1 \\
+247 & 6 & 9 & 0 & 68.00 & 1 \\
+248 & 14 & 21 & 1 & 73.00 & 0 \\
+249 & 8 & 21 & 1 & 73.00 & 1 \\
+250 & 10 & 18 & 1 & 73.00 & 1 \\
+251 & 6 & 16 & 0 & 73.00 & 1 \\
+252 & 2 & 24 & 0 & 73.00 & 1 \\
+253 & 13 & 14 & 1 & 73.00 & 1 \\
+254 & 1 & 29 & 0 & 73.00 & 1 \\
+255 & 10 & 29 & 1 & 73.00 & 1 \\
+256 & 7 & 24 & 0 & 73.00 & 1 \\
+257 & 1 & 0 & 0 & 73.00 & 1 \\
+258 & 10 & 20 & 1 & 73.00 & 1 \\
+259 & 7 & 27 & 0 & 73.00 & 1 \\
+260 & 8 & 5 & 1 & 73.00 & 1 \\
+261 & 10 & 17 & 1 & 73.00 & 1 \\
+262 & 14 & 13 & 1 & 73.00 & 1 \\
+263 & 13 & 17 & 1 & 73.00 & 1 \\
+264 & 11 & 21 & 1 & 73.00 & 1 \\
+265 & 15 & 2 & 1 & 73.00 & 1 \\
+266 & 15 & 23 & 1 & 73.00 & 1 \\
+267 & 9 & 16 & 1 & 73.00 & 1 \\
+268 & 11 & 0 & 1 & 73.00 & 1 \\
+269 & 2 & 16 & 0 & 73.00 & 1 \\
+270 & 2 & 14 & 0 & 73.00 & 1 \\
+271 & 7 & 19 & 0 & 73.00 & 1 \\
+272 & 3 & 17 & 0 & 73.00 & 1 \\
+273 & 15 & 21 & 1 & 73.00 & 1 \\
+274 & 11 & 8 & 1 & 73.00 & 1 \\
+275 & 5 & 20 & 0 & 73.00 & 1 \\
+276 & 14 & 14 & 1 & 73.00 & 1 \\
+277 & 8 & 2 & 1 & 73.00 & 1 \\
+278 & 0 & 20 & 0 & 73.00 & 1 \\
+279 & 0 & 21 & 0 & 73.00 & 1 \\
+280 & 0 & 28 & 0 & 73.00 & 1 \\
+281 & 14 & 19 & 1 & 73.00 & 1 \\
+282 & 15 & 25 & 1 & 73.00 & 1 \\
+283 & 11 & 19 & 1 & 73.00 & 1 \\
+284 & 8 & 14 & 1 & 73.00 & 1 \\
+285 & 10 & 4 & 1 & 73.00 & 1 \\
+286 & 4 & 0 & 0 & 73.00 & 1 \\
+287 & 3 & 6 & 0 & 73.00 & 1 \\
+288 & 8 & 27 & 1 & 73.00 & 1 \\
+289 & 3 & 25 & 0 & 73.00 & 1 \\
+290 & 14 & 0 & 1 & 73.00 & 1 \\
+291 & 3 & 28 & 0 & 73.00 & 1 \\
+292 & 10 & 9 & 1 & 73.00 & 1 \\
+293 & 11 & 7 & 1 & 73.00 & 1 \\
+294 & 4 & 15 & 0 & 73.00 & 1 \\
+295 & 12 & 21 & 1 & 73.00 & 1 \\
+296 & 4 & 8 & 0 & 73.00 & 1 \\
+297 & 5 & 18 & 0 & 73.00 & 1 \\
+298 & 5 & 25 & 0 & 73.00 & 1 \\
+299 & 15 & 12 & 1 & 73.00 & 1 \\
+300 & 7 & 22 & 0 & 73.00 & 1 \\
+301 & 0 & 4 & 0 & 73.00 & 1 \\
+302 & 13 & 10 & 1 & 73.00 & 1 \\
+303 & 4 & 7 & 0 & 73.00 & 1 \\
+304 & 2 & 17 & 0 & 73.00 & 1 \\
+305 & 1 & 12 & 0 & 73.00 & 1 \\
+306 & 13 & 4 & 1 & 73.00 & 1 \\
+307 & 11 & 10 & 1 & 73.00 & 1 \\
+308 & 5 & 22 & 0 & 73.00 & 1 \\
+309 & 8 & 23 & 1 & 73.00 & 1 \\
+310 & 10 & 5 & 1 & 73.00 & 1 \\
+311 & 11 & 28 & 1 & 73.00 & 1 \\
+312 & 6 & 15 & 0 & 73.00 & 1 \\
+313 & 15 & 22 & 1 & 73.00 & 1 \\
+314 & 1 & 27 & 0 & 73.00 & 1 \\
+315 & 2 & 7 & 0 & 73.00 & 1 \\
+316 & 4 & 9 & 0 & 73.00 & 1 \\
+317 & 13 & 5 & 1 & 73.00 & 1 \\
+318 & 2 & 1 & 0 & 73.00 & 1 \\
+319 & 9 & 5 & 1 & 73.00 & 1 \\
+320 & 10 & 10 & 1 & 73.00 & 1 \\
+321 & 8 & 24 & 1 & 73.00 & 1 \\
+322 & 9 & 1 & 1 & 73.00 & 1 \\
+323 & 8 & 9 & 1 & 73.00 & 1 \\
+324 & 15 & 20 & 1 & 78.00 & 0 \\
+325 & 3 & 12 & 0 & 78.00 & 1 \\
+326 & 1 & 22 & 0 & 78.00 & 1 \\
+327 & 5 & 15 & 0 & 78.00 & 1 \\
+328 & 9 & 2 & 1 & 78.00 & 1 \\
+329 & 8 & 29 & 1 & 78.00 & 1 \\
+330 & 8 & 12 & 1 & 78.00 & 1 \\
+331 & 1 & 16 & 0 & 78.00 & 1 \\
+332 & 6 & 20 & 0 & 78.00 & 1 \\
+333 & 10 & 27 & 1 & 78.00 & 1 \\
+334 & 14 & 1 & 1 & 78.00 & 1 \\
+335 & 11 & 18 & 1 & 78.00 & 1 \\
+336 & 15 & 0 & 1 & 78.00 & 1 \\
+337 & 3 & 13 & 0 & 78.00 & 1 \\
+338 & 13 & 19 & 1 & 78.00 & 1 \\
+339 & 15 & 19 & 1 & 78.00 & 1 \\
+340 & 15 & 5 & 1 & 78.00 & 1 \\
+341 & 1 & 10 & 0 & 78.00 & 1 \\
+342 & 8 & 11 & 1 & 78.00 & 1 \\
+343 & 3 & 20 & 0 & 78.00 & 1 \\
+344 & 0 & 16 & 0 & 78.00 & 1 \\
+345 & 12 & 19 & 1 & 78.00 & 1 \\
+346 & 9 & 26 & 1 & 78.00 & 1 \\
+347 & 12 & 13 & 1 & 78.00 & 1 \\
+348 & 2 & 26 & 0 & 78.00 & 1 \\
+349 & 10 & 13 & 1 & 78.00 & 1 \\
+350 & 7 & 13 & 0 & 78.00 & 1 \\
+351 & 8 & 10 & 1 & 78.00 & 1 \\
+352 & 10 & 19 & 1 & 78.00 & 1 \\
+353 & 15 & 4 & 1 & 78.00 & 1 \\
+354 & 4 & 22 & 0 & 78.00 & 1 \\
+355 & 8 & 28 & 1 & 78.00 & 1 \\
+356 & 6 & 26 & 0 & 78.00 & 1 \\
+357 & 7 & 18 & 0 & 78.00 & 1 \\
+358 & 2 & 8 & 0 & 78.00 & 1 \\
+359 & 8 & 7 & 1 & 78.00 & 1 \\
+360 & 6 & 28 & 0 & 78.00 & 1 \\
+361 & 9 & 22 & 1 & 78.00 & 1 \\
+362 & 12 & 25 & 1 & 78.00 & 1 \\
+363 & 1 & 14 & 0 & 78.00 & 1 \\
+364 & 5 & 0 & 0 & 78.00 & 1 \\
+365 & 10 & 15 & 1 & 80.00 & 0 \\
+366 & 15 & 3 & 1 & 80.00 & 1 \\
+367 & 10 & 1 & 1 & 80.00 & 1 \\
+368 & 1 & 26 & 0 & 80.00 & 1 \\
+369 & 15 & 18 & 1 & 80.00 & 1 \\
+370 & 2 & 25 & 0 & 80.00 & 1 \\
+371 & 10 & 16 & 1 & 80.00 & 1 \\
+372 & 3 & 26 & 0 & 80.00 & 1 \\
+373 & 10 & 14 & 1 & 80.00 & 1 \\
+374 & 7 & 12 & 0 & 80.00 & 1 \\
+375 & 8 & 13 & 1 & 80.00 & 1 \\
+376 & 7 & 14 & 0 & 80.00 & 1 \\
+377 & 3 & 14 & 0 & 80.00 & 1 \\
+378 & 14 & 25 & 1 & 80.00 & 1 \\
+379 & 10 & 8 & 1 & 80.00 & 1 \\
+380 & 9 & 24 & 1 & 80.00 & 1 \\
+381 & 12 & 16 & 1 & 80.00 & 1 \\
+382 & 14 & 24 & 1 & 80.00 & 1 \\
+383 & 1 & 17 & 0 & 80.00 & 1 \\
+384 & 15 & 1 & 1 & 80.00 & 1 \\
+385 & 11 & 24 & 1 & 80.00 & 1 \\
+386 & 8 & 0 & 1 & 80.00 & 1 \\
+387 & 9 & 25 & 1 & 80.00 & 1 \\
+388 & 11 & 12 & 1 & 80.00 & 1 \\
+389 & 1 & 8 & 0 & 80.00 & 1 \\
+390 & 7 & 28 & 0 & 80.00 & 1 \\
+391 & 15 & 14 & 1 & 80.00 & 1 \\
+392 & 2 & 10 & 0 & 80.00 & 1 \\
+393 & 2 & 15 & 0 & 80.00 & 1 \\
+394 & 9 & 15 & 1 & 80.00 & 1 \\
+395 & 9 & 11 & 1 & 80.00 & 1 \\
+396 & 2 & 23 & 0 & 80.00 & 1 \\
+397 & 14 & 11 & 1 & 80.00 & 1 \\
+398 & 15 & 16 & 1 & 80.00 & 1 \\
+399 & 5 & 19 & 0 & 80.00 & 1 \\
+400 & 3 & 2 & 0 & 80.00 & 1 \\
+401 & 2 & 19 & 0 & 80.00 & 1 \\
+402 & 9 & 6 & 1 & 80.00 & 1 \\
+403 & 10 & 25 & 1 & 80.00 & 1 \\
+404 & 6 & 1 & 0 & 80.00 & 1 \\
+405 & 8 & 25 & 1 & 80.00 & 1 \\
+406 & 6 & 0 & 0 & 80.00 & 1 \\
+407 & 6 & 12 & 0 & 80.00 & 1 \\
+408 & 12 & 20 & 1 & 80.00 & 1 \\
+409 & 3 & 7 & 0 & 80.00 & 1 \\
+410 & 14 & 17 & 1 & 80.00 & 1 \\
+411 & 9 & 21 & 1 & 80.00 & 1 \\
+412 & 11 & 13 & 1 & 80.00 & 1 \\
+413 & 12 & 0 & 1 & 80.00 & 1 \\
+414 & 3 & 5 & 0 & 80.00 & 1 \\
+415 & 2 & 9 & 0 & 80.00 & 1 \\
+416 & 9 & 28 & 1 & 80.00 & 1 \\
+417 & 2 & 21 & 0 & 80.00 & 1 \\
+418 & 5 & 12 & 0 & 80.00 & 1 \\
+419 & 11 & 14 & 1 & 80.00 & 1 \\
+420 & 6 & 19 & 0 & 80.00 & 1 \\
+421 & 7 & 11 & 0 & 80.00 & 1 \\
+422 & 7 & 17 & 0 & 80.00 & 1 \\
+423 & 0 & 18 & 0 & 80.00 & 1 \\
+424 & 15 & 10 & 1 & 80.00 & 1 \\
+425 & 13 & 22 & 1 & 80.00 & 1 \\
+426 & 0 & 17 & 0 & 80.00 & 1 \\
+427 & 15 & 17 & 1 & 80.00 & 1 \\
+428 & 15 & 8 & 1 & 80.00 & 1 \\
+429 & 5 & 2 & 0 & 80.00 & 1 \\
+430 & 14 & 4 & 1 & 80.00 & 1 \\
+431 & 4 & 23 & 0 & 80.00 & 1 \\
+432 & 4 & 16 & 0 & 80.00 & 1 \\
+433 & 2 & 13 & 0 & 80.00 & 1 \\
+434 & 0 & 29 & 0 & 80.00 & 1 \\
+435 & 4 & 12 & 0 & 80.00 & 1 \\
+436 & 3 & 16 & 0 & 80.00 & 1 \\
+437 & 5 & 24 & 0 & 80.00 & 1 \\
+438 & 11 & 6 & 1 & 80.00 & 1 \\
+439 & 0 & 2 & 0 & 80.00 & 1 \\
+440 & 1 & 28 & 0 & 80.00 & 1 \\
+441 & 6 & 8 & 0 & 80.00 & 1 \\
+442 & 5 & 11 & 0 & 80.00 & 1 \\
+443 & 11 & 9 & 1 & 80.00 & 1 \\
+444 & 10 & 26 & 1 & 80.00 & 1 \\
+445 & 9 & 10 & 1 & 80.00 & 1 \\
+446 & 13 & 3 & 1 & 80.00 & 1 \\
+447 & 13 & 18 & 1 & 80.00 & 1 \\
+448 & 4 & 4 & 0 & 80.00 & 1 \\
+449 & 4 & 19 & 0 & 80.00 & 1 \\
+450 & 11 & 5 & 1 & 80.00 & 1 \\
+451 & 5 & 3 & 0 & 80.00 & 1 \\
+452 & 3 & 29 & 0 & 80.00 & 1 \\
+453 & 15 & 11 & 1 & 80.00 & 1 \\
+454 & 11 & 25 & 1 & 80.00 & 1 \\
+455 & 3 & 23 & 0 & 80.00 & 1 \\
+456 & 2 & 28 & 0 & 80.00 & 1 \\
+457 & 14 & 20 & 1 & 80.00 & 1 \\
+458 & 3 & 3 & 0 & 80.00 & 1 \\
+459 & 11 & 15 & 1 & 80.00 & 1 \\
+460 & 12 & 7 & 1 & 80.00 & 1 \\
+461 & 2 & 11 & 0 & 80.00 & 1 \\
+462 & 5 & 6 & 0 & 80.00 & 1 \\
+463 & 12 & 9 & 1 & 80.00 & 1 \\
+464 & 6 & 14 & 0 & 80.00 & 1 \\
+465 & 11 & 27 & 1 & 80.00 & 1 \\
+466 & 5 & 26 & 0 & 80.00 & 1 \\
+467 & 9 & 20 & 1 & 80.00 & 1 \\
+468 & 1 & 3 & 0 & 80.00 & 1 \\
+469 & 13 & 23 & 1 & 80.00 & 1 \\
+470 & 1 & 24 & 0 & 80.00 & 1 \\
+471 & 11 & 22 & 1 & 80.00 & 1 \\
+472 & 8 & 1 & 1 & 80.00 & 1 \\
+473 & 7 & 20 & 0 & 80.00 & 1 \\
+474 & 13 & 9 & 1 & 80.00 & 1 \\
+475 & 7 & 5 & 0 & 80.00 & 1 \\
+476 & 4 & 10 & 0 & 80.00 & 1 \\
+477 & 12 & 15 & 1 & 80.00 & 1 \\
+478 & 4 & 1 & 0 & 80.00 & 1 \\
+479 & 14 & 5 & 1 & 80.00 & 1 \\
+\bottomrule
+\end{longtable}
+
+\clearpage
+
diff --git a/experiments/bare_metal/analysis/report/sections/appendix_riscv64_seed13579.tex b/experiments/bare_metal/analysis/report/sections/appendix_riscv64_seed13579.tex
new file mode 100644
index 0000000..4834676
--- /dev/null
+++ b/experiments/bare_metal/analysis/report/sections/appendix_riscv64_seed13579.tex
@@ -0,0 +1,499 @@
+\subsection{Raw data: riscv64, seed 13579}
+\label{sec:appendix_riscv64_seed13579}
+
+All 480 rows, execution order (\texttt{run\_id}), for cell riscv64 / seed 13579.
+
+\begin{longtable}{rrrrrr}
+\toprule
+run\_id & cfg & rep & entropy=hi & infer\_dec\_q & early\_exit \\
+\midrule
+\endfirsthead
+\toprule
+run\_id & cfg & rep & entropy=hi & infer\_dec\_q & early\_exit \\
+\midrule
+\endhead
+0 & 5 & 18 & 0 & 0.00 & 0 \\
+1 & 11 & 14 & 1 & 0.00 & 1 \\
+2 & 10 & 1 & 1 & 0.00 & 1 \\
+3 & 13 & 13 & 1 & 0.00 & 1 \\
+4 & 3 & 7 & 0 & 0.00 & 1 \\
+5 & 1 & 9 & 0 & 0.00 & 1 \\
+6 & 14 & 19 & 1 & 0.00 & 1 \\
+7 & 6 & 29 & 0 & 0.00 & 1 \\
+8 & 14 & 5 & 1 & 0.00 & 1 \\
+9 & 7 & 9 & 0 & 0.00 & 1 \\
+10 & 8 & 2 & 1 & 0.00 & 1 \\
+11 & 5 & 2 & 0 & 0.00 & 1 \\
+12 & 2 & 21 & 0 & 0.00 & 1 \\
+13 & 12 & 28 & 1 & 0.00 & 1 \\
+14 & 14 & 29 & 1 & 0.00 & 1 \\
+15 & 6 & 27 & 0 & 0.00 & 1 \\
+16 & 11 & 16 & 1 & 0.00 & 1 \\
+17 & 9 & 27 & 1 & 0.00 & 1 \\
+18 & 6 & 17 & 0 & 0.00 & 1 \\
+19 & 2 & 22 & 0 & 0.00 & 1 \\
+20 & 1 & 17 & 0 & 0.00 & 1 \\
+21 & 1 & 10 & 0 & 0.00 & 1 \\
+22 & 13 & 29 & 1 & 0.00 & 1 \\
+23 & 5 & 20 & 0 & 0.00 & 1 \\
+24 & 11 & 3 & 1 & 0.00 & 1 \\
+25 & 2 & 11 & 0 & 0.00 & 1 \\
+26 & 3 & 25 & 0 & 0.00 & 1 \\
+27 & 7 & 1 & 0 & 0.00 & 1 \\
+28 & 3 & 28 & 0 & 0.00 & 1 \\
+29 & 2 & 17 & 0 & 0.00 & 1 \\
+30 & 4 & 14 & 0 & 0.00 & 1 \\
+31 & 10 & 3 & 1 & 0.00 & 1 \\
+32 & 10 & 0 & 1 & 0.00 & 1 \\
+33 & 14 & 25 & 1 & 0.00 & 1 \\
+34 & 7 & 5 & 0 & 0.00 & 1 \\
+35 & 6 & 1 & 0 & 0.00 & 1 \\
+36 & 13 & 25 & 1 & 0.00 & 1 \\
+37 & 14 & 1 & 1 & 0.00 & 1 \\
+38 & 1 & 24 & 0 & 0.00 & 1 \\
+39 & 12 & 18 & 1 & 0.00 & 1 \\
+40 & 6 & 20 & 0 & 0.00 & 1 \\
+41 & 8 & 10 & 1 & 0.00 & 1 \\
+42 & 2 & 0 & 0 & 0.00 & 1 \\
+43 & 8 & 27 & 1 & 0.00 & 1 \\
+44 & 6 & 19 & 0 & 0.00 & 1 \\
+45 & 7 & 14 & 0 & 0.00 & 1 \\
+46 & 15 & 9 & 1 & 0.00 & 1 \\
+47 & 13 & 7 & 1 & 0.00 & 1 \\
+48 & 6 & 6 & 0 & 0.00 & 1 \\
+49 & 4 & 20 & 0 & 0.00 & 1 \\
+50 & 12 & 1 & 1 & 0.00 & 1 \\
+51 & 14 & 2 & 1 & 0.00 & 1 \\
+52 & 8 & 8 & 1 & 0.00 & 1 \\
+53 & 15 & 19 & 1 & 0.00 & 1 \\
+54 & 8 & 6 & 1 & 0.00 & 1 \\
+55 & 5 & 11 & 0 & 0.00 & 1 \\
+56 & 2 & 26 & 0 & 0.00 & 1 \\
+57 & 6 & 8 & 0 & 0.00 & 1 \\
+58 & 14 & 23 & 1 & 0.00 & 1 \\
+59 & 8 & 0 & 1 & 0.00 & 1 \\
+60 & 3 & 10 & 0 & 0.00 & 1 \\
+61 & 2 & 5 & 0 & 0.00 & 1 \\
+62 & 13 & 20 & 1 & 0.00 & 1 \\
+63 & 6 & 24 & 0 & 0.00 & 1 \\
+64 & 11 & 25 & 1 & 0.00 & 1 \\
+65 & 8 & 1 & 1 & 0.00 & 1 \\
+66 & 3 & 5 & 0 & 0.00 & 1 \\
+67 & 9 & 26 & 1 & 0.00 & 1 \\
+68 & 7 & 18 & 0 & 0.00 & 1 \\
+69 & 2 & 7 & 0 & 0.00 & 1 \\
+70 & 3 & 22 & 0 & 0.00 & 1 \\
+71 & 5 & 19 & 0 & 0.00 & 1 \\
+72 & 1 & 27 & 0 & 0.00 & 1 \\
+73 & 7 & 22 & 0 & 0.00 & 1 \\
+74 & 6 & 4 & 0 & 0.00 & 1 \\
+75 & 7 & 20 & 0 & 0.00 & 1 \\
+76 & 1 & 6 & 0 & 0.00 & 1 \\
+77 & 14 & 14 & 1 & 0.00 & 1 \\
+78 & 2 & 9 & 0 & 0.00 & 1 \\
+79 & 6 & 22 & 0 & 0.00 & 1 \\
+80 & 4 & 10 & 0 & 0.00 & 1 \\
+81 & 3 & 4 & 0 & 0.00 & 1 \\
+82 & 7 & 29 & 0 & 0.00 & 1 \\
+83 & 8 & 5 & 1 & 0.00 & 1 \\
+84 & 6 & 21 & 0 & 0.00 & 1 \\
+85 & 13 & 24 & 1 & 0.00 & 1 \\
+86 & 11 & 29 & 1 & 0.00 & 1 \\
+87 & 15 & 28 & 1 & 0.00 & 1 \\
+88 & 13 & 18 & 1 & 0.00 & 1 \\
+89 & 9 & 6 & 1 & 0.00 & 1 \\
+90 & 15 & 7 & 1 & 0.00 & 1 \\
+91 & 10 & 27 & 1 & 0.00 & 1 \\
+92 & 2 & 18 & 0 & 0.00 & 1 \\
+93 & 1 & 13 & 0 & 0.00 & 1 \\
+94 & 4 & 1 & 0 & 0.00 & 1 \\
+95 & 0 & 29 & 0 & 0.00 & 1 \\
+96 & 12 & 13 & 1 & 0.00 & 1 \\
+97 & 2 & 12 & 0 & 0.00 & 1 \\
+98 & 5 & 24 & 0 & 0.00 & 1 \\
+99 & 2 & 2 & 0 & 0.00 & 1 \\
+100 & 6 & 23 & 0 & 0.00 & 1 \\
+101 & 8 & 22 & 1 & 0.00 & 1 \\
+102 & 12 & 25 & 1 & 0.00 & 1 \\
+103 & 12 & 15 & 1 & 0.00 & 1 \\
+104 & 11 & 4 & 1 & 0.00 & 1 \\
+105 & 0 & 11 & 0 & 0.00 & 1 \\
+106 & 9 & 24 & 1 & 0.00 & 1 \\
+107 & 9 & 13 & 1 & 0.00 & 1 \\
+108 & 7 & 23 & 0 & 0.00 & 1 \\
+109 & 5 & 10 & 0 & 0.00 & 1 \\
+110 & 14 & 13 & 1 & 0.00 & 1 \\
+111 & 2 & 14 & 0 & 0.00 & 1 \\
+112 & 10 & 29 & 1 & 0.00 & 1 \\
+113 & 1 & 14 & 0 & 0.00 & 1 \\
+114 & 11 & 15 & 1 & 0.00 & 1 \\
+115 & 2 & 20 & 0 & 0.00 & 1 \\
+116 & 5 & 12 & 0 & 0.00 & 1 \\
+117 & 15 & 22 & 1 & 0.00 & 1 \\
+118 & 3 & 26 & 0 & 0.00 & 1 \\
+119 & 1 & 1 & 0 & 0.00 & 1 \\
+120 & 3 & 17 & 0 & 0.00 & 1 \\
+121 & 15 & 4 & 1 & 0.00 & 1 \\
+122 & 6 & 9 & 0 & 0.00 & 1 \\
+123 & 6 & 25 & 0 & 0.00 & 1 \\
+124 & 5 & 1 & 0 & 0.00 & 1 \\
+125 & 4 & 18 & 0 & 0.00 & 1 \\
+126 & 5 & 5 & 0 & 0.00 & 1 \\
+127 & 9 & 2 & 1 & 0.00 & 1 \\
+128 & 1 & 12 & 0 & 0.00 & 1 \\
+129 & 8 & 14 & 1 & 0.00 & 1 \\
+130 & 15 & 5 & 1 & 0.00 & 1 \\
+131 & 4 & 4 & 0 & 0.00 & 1 \\
+132 & 15 & 11 & 1 & 0.00 & 1 \\
+133 & 3 & 18 & 0 & 0.00 & 1 \\
+134 & 5 & 27 & 0 & 0.00 & 1 \\
+135 & 12 & 11 & 1 & 0.00 & 1 \\
+136 & 7 & 19 & 0 & 0.00 & 1 \\
+137 & 1 & 26 & 0 & 0.00 & 1 \\
+138 & 12 & 20 & 1 & 0.00 & 1 \\
+139 & 0 & 14 & 0 & 0.00 & 1 \\
+140 & 3 & 8 & 0 & 0.00 & 1 \\
+141 & 9 & 8 & 1 & 0.00 & 1 \\
+142 & 1 & 7 & 0 & 0.00 & 1 \\
+143 & 4 & 0 & 0 & 0.00 & 1 \\
+144 & 9 & 10 & 1 & 0.00 & 1 \\
+145 & 7 & 21 & 0 & 0.00 & 1 \\
+146 & 1 & 22 & 0 & 0.00 & 1 \\
+147 & 14 & 4 & 1 & 0.00 & 1 \\
+148 & 15 & 14 & 1 & 0.00 & 1 \\
+149 & 11 & 11 & 1 & 0.00 & 1 \\
+150 & 14 & 15 & 1 & 0.00 & 1 \\
+151 & 10 & 26 & 1 & 0.00 & 1 \\
+152 & 0 & 19 & 0 & 0.00 & 1 \\
+153 & 0 & 23 & 0 & 0.00 & 1 \\
+154 & 8 & 4 & 1 & 0.00 & 1 \\
+155 & 10 & 8 & 1 & 0.00 & 1 \\
+156 & 11 & 22 & 1 & 0.00 & 1 \\
+157 & 0 & 22 & 0 & 0.00 & 1 \\
+158 & 10 & 22 & 1 & 0.00 & 1 \\
+159 & 3 & 14 & 0 & 0.00 & 1 \\
+160 & 2 & 3 & 0 & 0.00 & 1 \\
+161 & 15 & 15 & 1 & 0.00 & 1 \\
+162 & 6 & 11 & 0 & 0.00 & 1 \\
+163 & 7 & 2 & 0 & 0.00 & 1 \\
+164 & 7 & 26 & 0 & 0.00 & 1 \\
+165 & 9 & 19 & 1 & 0.00 & 1 \\
+166 & 7 & 4 & 0 & 0.00 & 1 \\
+167 & 4 & 19 & 0 & 0.00 & 1 \\
+168 & 10 & 5 & 1 & 0.00 & 1 \\
+169 & 0 & 28 & 0 & 0.00 & 1 \\
+170 & 7 & 27 & 0 & 0.00 & 1 \\
+171 & 0 & 6 & 0 & 0.00 & 1 \\
+172 & 2 & 23 & 0 & 0.00 & 1 \\
+173 & 15 & 6 & 1 & 0.00 & 1 \\
+174 & 14 & 16 & 1 & 0.00 & 1 \\
+175 & 4 & 26 & 0 & 0.00 & 1 \\
+176 & 4 & 16 & 0 & 0.00 & 1 \\
+177 & 15 & 27 & 1 & 0.00 & 1 \\
+178 & 3 & 13 & 0 & 0.00 & 1 \\
+179 & 8 & 26 & 1 & 0.00 & 1 \\
+180 & 15 & 12 & 1 & 0.00 & 1 \\
+181 & 5 & 13 & 0 & 0.00 & 1 \\
+182 & 11 & 1 & 1 & 0.00 & 1 \\
+183 & 15 & 18 & 1 & 0.00 & 1 \\
+184 & 3 & 6 & 0 & 0.00 & 1 \\
+185 & 10 & 6 & 1 & 0.00 & 1 \\
+186 & 0 & 12 & 0 & 68.00 & 0 \\
+187 & 9 & 4 & 1 & 68.00 & 1 \\
+188 & 1 & 4 & 0 & 68.00 & 1 \\
+189 & 8 & 13 & 1 & 68.00 & 1 \\
+190 & 0 & 18 & 0 & 68.00 & 1 \\
+191 & 12 & 2 & 1 & 68.00 & 1 \\
+192 & 12 & 24 & 1 & 68.00 & 1 \\
+193 & 11 & 9 & 1 & 68.00 & 1 \\
+194 & 14 & 9 & 1 & 68.00 & 1 \\
+195 & 13 & 10 & 1 & 68.00 & 1 \\
+196 & 2 & 16 & 0 & 68.00 & 1 \\
+197 & 9 & 20 & 1 & 68.00 & 1 \\
+198 & 13 & 1 & 1 & 68.00 & 1 \\
+199 & 8 & 24 & 1 & 68.00 & 1 \\
+200 & 10 & 14 & 1 & 68.00 & 1 \\
+201 & 2 & 15 & 0 & 68.00 & 1 \\
+202 & 4 & 15 & 0 & 68.00 & 1 \\
+203 & 12 & 26 & 1 & 68.00 & 1 \\
+204 & 10 & 23 & 1 & 68.00 & 1 \\
+205 & 5 & 17 & 0 & 68.00 & 1 \\
+206 & 12 & 8 & 1 & 68.00 & 1 \\
+207 & 2 & 28 & 0 & 68.00 & 1 \\
+208 & 1 & 11 & 0 & 68.00 & 1 \\
+209 & 9 & 7 & 1 & 68.00 & 1 \\
+210 & 14 & 6 & 1 & 68.00 & 1 \\
+211 & 7 & 15 & 0 & 68.00 & 1 \\
+212 & 0 & 15 & 0 & 68.00 & 1 \\
+213 & 6 & 3 & 0 & 68.00 & 1 \\
+214 & 15 & 2 & 1 & 68.00 & 1 \\
+215 & 6 & 10 & 0 & 68.00 & 1 \\
+216 & 14 & 0 & 1 & 68.00 & 1 \\
+217 & 8 & 20 & 1 & 68.00 & 1 \\
+218 & 1 & 23 & 0 & 68.00 & 1 \\
+219 & 13 & 6 & 1 & 68.00 & 1 \\
+220 & 14 & 17 & 1 & 68.00 & 1 \\
+221 & 11 & 17 & 1 & 68.00 & 1 \\
+222 & 7 & 7 & 0 & 68.00 & 1 \\
+223 & 6 & 12 & 0 & 68.00 & 1 \\
+224 & 6 & 26 & 0 & 68.00 & 1 \\
+225 & 11 & 0 & 1 & 68.00 & 1 \\
+226 & 5 & 3 & 0 & 68.00 & 1 \\
+227 & 4 & 25 & 0 & 68.00 & 1 \\
+228 & 9 & 16 & 1 & 68.00 & 1 \\
+229 & 11 & 24 & 1 & 68.00 & 1 \\
+230 & 8 & 23 & 1 & 68.00 & 1 \\
+231 & 15 & 17 & 1 & 68.00 & 1 \\
+232 & 4 & 13 & 0 & 68.00 & 1 \\
+233 & 1 & 5 & 0 & 68.00 & 1 \\
+234 & 12 & 12 & 1 & 68.00 & 1 \\
+235 & 6 & 14 & 0 & 68.00 & 1 \\
+236 & 2 & 6 & 0 & 68.00 & 1 \\
+237 & 3 & 29 & 0 & 68.00 & 1 \\
+238 & 11 & 19 & 1 & 68.00 & 1 \\
+239 & 12 & 9 & 1 & 68.00 & 1 \\
+240 & 11 & 21 & 1 & 68.00 & 1 \\
+241 & 12 & 5 & 1 & 68.00 & 1 \\
+242 & 1 & 3 & 0 & 68.00 & 1 \\
+243 & 3 & 11 & 0 & 68.00 & 1 \\
+244 & 13 & 9 & 1 & 68.00 & 1 \\
+245 & 15 & 29 & 1 & 68.00 & 1 \\
+246 & 4 & 12 & 0 & 68.00 & 1 \\
+247 & 12 & 21 & 1 & 68.00 & 1 \\
+248 & 12 & 29 & 1 & 68.00 & 1 \\
+249 & 2 & 19 & 0 & 73.00 & 0 \\
+250 & 8 & 18 & 1 & 73.00 & 1 \\
+251 & 5 & 16 & 0 & 73.00 & 1 \\
+252 & 4 & 29 & 0 & 73.00 & 1 \\
+253 & 5 & 21 & 0 & 73.00 & 1 \\
+254 & 15 & 21 & 1 & 73.00 & 1 \\
+255 & 15 & 10 & 1 & 73.00 & 1 \\
+256 & 9 & 21 & 1 & 73.00 & 1 \\
+257 & 2 & 1 & 0 & 73.00 & 1 \\
+258 & 6 & 13 & 0 & 73.00 & 1 \\
+259 & 6 & 18 & 0 & 73.00 & 1 \\
+260 & 12 & 14 & 1 & 73.00 & 1 \\
+261 & 5 & 28 & 0 & 73.00 & 1 \\
+262 & 5 & 14 & 0 & 73.00 & 1 \\
+263 & 10 & 18 & 1 & 73.00 & 1 \\
+264 & 0 & 7 & 0 & 73.00 & 1 \\
+265 & 8 & 3 & 1 & 73.00 & 1 \\
+266 & 1 & 8 & 0 & 73.00 & 1 \\
+267 & 12 & 4 & 1 & 74.00 & 0 \\
+268 & 12 & 16 & 1 & 74.00 & 1 \\
+269 & 7 & 17 & 0 & 74.00 & 1 \\
+270 & 13 & 23 & 1 & 74.00 & 1 \\
+271 & 0 & 8 & 0 & 74.00 & 1 \\
+272 & 0 & 25 & 0 & 74.00 & 1 \\
+273 & 3 & 19 & 0 & 74.00 & 1 \\
+274 & 13 & 0 & 1 & 74.00 & 1 \\
+275 & 15 & 24 & 1 & 74.00 & 1 \\
+276 & 5 & 9 & 0 & 74.00 & 1 \\
+277 & 0 & 4 & 0 & 74.00 & 1 \\
+278 & 14 & 8 & 1 & 74.00 & 1 \\
+279 & 4 & 6 & 0 & 74.00 & 1 \\
+280 & 11 & 13 & 1 & 74.00 & 1 \\
+281 & 4 & 21 & 0 & 74.00 & 1 \\
+282 & 7 & 25 & 0 & 74.00 & 1 \\
+283 & 9 & 22 & 1 & 74.00 & 1 \\
+284 & 14 & 11 & 1 & 74.00 & 1 \\
+285 & 0 & 16 & 0 & 74.00 & 1 \\
+286 & 13 & 19 & 1 & 74.00 & 1 \\
+287 & 14 & 21 & 1 & 74.00 & 1 \\
+288 & 5 & 15 & 0 & 74.00 & 1 \\
+289 & 7 & 10 & 0 & 74.00 & 1 \\
+290 & 12 & 27 & 1 & 74.00 & 1 \\
+291 & 15 & 3 & 1 & 74.00 & 1 \\
+292 & 8 & 25 & 1 & 74.00 & 1 \\
+293 & 13 & 16 & 1 & 74.00 & 1 \\
+294 & 10 & 4 & 1 & 74.00 & 1 \\
+295 & 9 & 18 & 1 & 74.00 & 1 \\
+296 & 13 & 8 & 1 & 74.00 & 1 \\
+297 & 4 & 5 & 0 & 74.00 & 1 \\
+298 & 14 & 20 & 1 & 74.00 & 1 \\
+299 & 4 & 8 & 0 & 74.00 & 1 \\
+300 & 13 & 15 & 1 & 74.00 & 1 \\
+301 & 15 & 0 & 1 & 74.00 & 1 \\
+302 & 9 & 17 & 1 & 74.00 & 1 \\
+303 & 11 & 23 & 1 & 74.00 & 1 \\
+304 & 1 & 2 & 0 & 74.00 & 1 \\
+305 & 12 & 10 & 1 & 74.00 & 1 \\
+306 & 2 & 27 & 0 & 74.00 & 1 \\
+307 & 14 & 7 & 1 & 74.00 & 1 \\
+308 & 7 & 28 & 0 & 74.00 & 1 \\
+309 & 7 & 11 & 0 & 74.00 & 1 \\
+310 & 5 & 22 & 0 & 74.00 & 1 \\
+311 & 8 & 7 & 1 & 74.00 & 1 \\
+312 & 0 & 27 & 0 & 74.00 & 1 \\
+313 & 4 & 9 & 0 & 74.00 & 1 \\
+314 & 11 & 10 & 1 & 74.00 & 1 \\
+315 & 1 & 20 & 0 & 74.00 & 1 \\
+316 & 10 & 13 & 1 & 74.00 & 1 \\
+317 & 6 & 28 & 0 & 74.00 & 1 \\
+318 & 11 & 6 & 1 & 74.00 & 1 \\
+319 & 9 & 5 & 1 & 74.00 & 1 \\
+320 & 10 & 17 & 1 & 74.00 & 1 \\
+321 & 7 & 13 & 0 & 74.00 & 1 \\
+322 & 0 & 5 & 0 & 74.00 & 1 \\
+323 & 5 & 25 & 0 & 74.00 & 1 \\
+324 & 15 & 8 & 1 & 74.00 & 1 \\
+325 & 3 & 24 & 0 & 74.00 & 1 \\
+326 & 12 & 23 & 1 & 74.00 & 1 \\
+327 & 14 & 28 & 1 & 74.00 & 1 \\
+328 & 0 & 20 & 0 & 74.00 & 1 \\
+329 & 6 & 5 & 0 & 74.00 & 1 \\
+330 & 2 & 24 & 0 & 74.00 & 1 \\
+331 & 13 & 3 & 1 & 74.00 & 1 \\
+332 & 6 & 16 & 0 & 74.00 & 1 \\
+333 & 2 & 13 & 0 & 74.00 & 1 \\
+334 & 15 & 20 & 1 & 74.00 & 1 \\
+335 & 10 & 10 & 1 & 74.00 & 1 \\
+336 & 4 & 27 & 0 & 74.00 & 1 \\
+337 & 4 & 11 & 0 & 74.00 & 1 \\
+338 & 8 & 12 & 1 & 74.00 & 1 \\
+339 & 2 & 4 & 0 & 74.00 & 1 \\
+340 & 10 & 12 & 1 & 74.00 & 1 \\
+341 & 0 & 0 & 0 & 74.00 & 1 \\
+342 & 3 & 16 & 0 & 74.00 & 1 \\
+343 & 9 & 3 & 1 & 74.00 & 1 \\
+344 & 1 & 21 & 0 & 74.00 & 1 \\
+345 & 11 & 28 & 1 & 74.00 & 1 \\
+346 & 12 & 22 & 1 & 74.00 & 1 \\
+347 & 1 & 18 & 0 & 74.00 & 1 \\
+348 & 6 & 7 & 0 & 74.00 & 1 \\
+349 & 5 & 0 & 0 & 74.00 & 1 \\
+350 & 9 & 25 & 1 & 74.00 & 1 \\
+351 & 14 & 12 & 1 & 74.00 & 1 \\
+352 & 13 & 26 & 1 & 74.00 & 1 \\
+353 & 9 & 12 & 1 & 74.00 & 1 \\
+354 & 0 & 3 & 0 & 74.00 & 1 \\
+355 & 4 & 7 & 0 & 74.00 & 1 \\
+356 & 5 & 4 & 0 & 74.00 & 1 \\
+357 & 10 & 7 & 1 & 74.00 & 1 \\
+358 & 9 & 0 & 1 & 74.00 & 1 \\
+359 & 11 & 7 & 1 & 74.00 & 1 \\
+360 & 10 & 2 & 1 & 74.00 & 1 \\
+361 & 13 & 5 & 1 & 74.00 & 1 \\
+362 & 6 & 2 & 0 & 74.00 & 1 \\
+363 & 4 & 28 & 0 & 74.00 & 1 \\
+364 & 0 & 24 & 0 & 74.00 & 1 \\
+365 & 13 & 2 & 1 & 74.00 & 1 \\
+366 & 0 & 13 & 0 & 74.00 & 1 \\
+367 & 1 & 25 & 0 & 74.00 & 1 \\
+368 & 12 & 0 & 1 & 74.00 & 1 \\
+369 & 8 & 28 & 1 & 74.00 & 1 \\
+370 & 3 & 12 & 0 & 74.00 & 1 \\
+371 & 13 & 17 & 1 & 74.00 & 1 \\
+372 & 13 & 22 & 1 & 74.00 & 1 \\
+373 & 10 & 9 & 1 & 74.00 & 1 \\
+374 & 14 & 26 & 1 & 74.00 & 1 \\
+375 & 2 & 8 & 0 & 74.00 & 1 \\
+376 & 8 & 15 & 1 & 74.00 & 1 \\
+377 & 0 & 2 & 0 & 74.00 & 1 \\
+378 & 8 & 11 & 1 & 74.00 & 1 \\
+379 & 14 & 10 & 1 & 74.00 & 1 \\
+380 & 8 & 19 & 1 & 74.00 & 1 \\
+381 & 0 & 9 & 0 & 74.00 & 1 \\
+382 & 2 & 10 & 0 & 74.00 & 1 \\
+383 & 9 & 9 & 1 & 74.00 & 1 \\
+384 & 6 & 15 & 0 & 74.00 & 1 \\
+385 & 11 & 26 & 1 & 74.00 & 1 \\
+386 & 7 & 3 & 0 & 74.00 & 1 \\
+387 & 14 & 27 & 1 & 74.00 & 1 \\
+388 & 13 & 14 & 1 & 74.00 & 1 \\
+389 & 10 & 19 & 1 & 74.00 & 1 \\
+390 & 10 & 20 & 1 & 74.00 & 1 \\
+391 & 0 & 10 & 0 & 74.00 & 1 \\
+392 & 3 & 9 & 0 & 74.00 & 1 \\
+393 & 11 & 12 & 1 & 74.00 & 1 \\
+394 & 3 & 20 & 0 & 74.00 & 1 \\
+395 & 4 & 24 & 0 & 74.00 & 1 \\
+396 & 5 & 6 & 0 & 74.00 & 1 \\
+397 & 15 & 25 & 1 & 74.00 & 1 \\
+398 & 4 & 3 & 0 & 74.00 & 1 \\
+399 & 11 & 18 & 1 & 74.00 & 1 \\
+400 & 13 & 28 & 1 & 74.00 & 1 \\
+401 & 12 & 17 & 1 & 74.00 & 1 \\
+402 & 11 & 8 & 1 & 74.00 & 1 \\
+403 & 8 & 17 & 1 & 74.00 & 1 \\
+404 & 1 & 29 & 0 & 74.00 & 1 \\
+405 & 11 & 2 & 1 & 74.00 & 1 \\
+406 & 14 & 24 & 1 & 74.00 & 1 \\
+407 & 8 & 16 & 1 & 74.00 & 1 \\
+408 & 1 & 28 & 0 & 74.00 & 1 \\
+409 & 10 & 11 & 1 & 74.00 & 1 \\
+410 & 3 & 2 & 0 & 74.00 & 1 \\
+411 & 6 & 0 & 0 & 74.00 & 1 \\
+412 & 9 & 14 & 1 & 74.00 & 1 \\
+413 & 1 & 19 & 0 & 74.00 & 1 \\
+414 & 5 & 26 & 0 & 74.00 & 1 \\
+415 & 7 & 0 & 0 & 74.00 & 1 \\
+416 & 9 & 11 & 1 & 74.00 & 1 \\
+417 & 8 & 29 & 1 & 74.00 & 1 \\
+418 & 4 & 22 & 0 & 74.00 & 1 \\
+419 & 5 & 8 & 0 & 74.00 & 1 \\
+420 & 0 & 17 & 0 & 74.00 & 1 \\
+421 & 8 & 21 & 1 & 74.00 & 1 \\
+422 & 15 & 16 & 1 & 74.00 & 1 \\
+423 & 7 & 16 & 0 & 74.00 & 1 \\
+424 & 1 & 15 & 0 & 74.00 & 1 \\
+425 & 9 & 23 & 1 & 74.00 & 1 \\
+426 & 11 & 20 & 1 & 74.00 & 1 \\
+427 & 4 & 17 & 0 & 74.00 & 1 \\
+428 & 15 & 23 & 1 & 74.00 & 1 \\
+429 & 14 & 18 & 1 & 74.00 & 1 \\
+430 & 3 & 27 & 0 & 74.00 & 1 \\
+431 & 13 & 11 & 1 & 74.00 & 1 \\
+432 & 10 & 24 & 1 & 74.00 & 1 \\
+433 & 3 & 0 & 0 & 74.00 & 1 \\
+434 & 10 & 15 & 1 & 74.00 & 1 \\
+435 & 7 & 6 & 0 & 74.00 & 1 \\
+436 & 2 & 25 & 0 & 74.00 & 1 \\
+437 & 13 & 12 & 1 & 74.00 & 1 \\
+438 & 12 & 3 & 1 & 74.00 & 1 \\
+439 & 15 & 26 & 1 & 74.00 & 1 \\
+440 & 1 & 16 & 0 & 74.00 & 1 \\
+441 & 3 & 15 & 0 & 74.00 & 1 \\
+442 & 8 & 9 & 1 & 74.00 & 1 \\
+443 & 7 & 12 & 0 & 74.00 & 1 \\
+444 & 11 & 27 & 1 & 74.00 & 1 \\
+445 & 9 & 15 & 1 & 74.00 & 1 \\
+446 & 13 & 4 & 1 & 74.00 & 1 \\
+447 & 15 & 1 & 1 & 74.00 & 1 \\
+448 & 10 & 28 & 1 & 74.00 & 1 \\
+449 & 2 & 29 & 0 & 74.00 & 1 \\
+450 & 12 & 19 & 1 & 74.00 & 1 \\
+451 & 3 & 1 & 0 & 74.00 & 1 \\
+452 & 9 & 28 & 1 & 74.00 & 1 \\
+453 & 0 & 21 & 0 & 74.00 & 1 \\
+454 & 9 & 1 & 1 & 74.00 & 1 \\
+455 & 0 & 1 & 0 & 74.00 & 1 \\
+456 & 1 & 0 & 0 & 74.00 & 1 \\
+457 & 15 & 13 & 1 & 74.00 & 1 \\
+458 & 11 & 5 & 1 & 74.00 & 1 \\
+459 & 4 & 2 & 0 & 74.00 & 1 \\
+460 & 10 & 21 & 1 & 74.00 & 1 \\
+461 & 13 & 27 & 1 & 74.00 & 1 \\
+462 & 14 & 22 & 1 & 74.00 & 1 \\
+463 & 3 & 21 & 0 & 74.00 & 1 \\
+464 & 4 & 23 & 0 & 74.00 & 1 \\
+465 & 3 & 3 & 0 & 74.00 & 1 \\
+466 & 14 & 3 & 1 & 74.00 & 1 \\
+467 & 0 & 26 & 0 & 74.00 & 1 \\
+468 & 7 & 8 & 0 & 74.00 & 1 \\
+469 & 5 & 23 & 0 & 74.00 & 1 \\
+470 & 5 & 29 & 0 & 74.00 & 1 \\
+471 & 12 & 7 & 1 & 74.00 & 1 \\
+472 & 5 & 7 & 0 & 74.00 & 1 \\
+473 & 13 & 21 & 1 & 74.00 & 1 \\
+474 & 10 & 25 & 1 & 74.00 & 1 \\
+475 & 7 & 24 & 0 & 74.00 & 1 \\
+476 & 9 & 29 & 1 & 74.00 & 1 \\
+477 & 3 & 23 & 0 & 74.00 & 1 \\
+478 & 10 & 16 & 1 & 74.00 & 1 \\
+479 & 12 & 6 & 1 & 74.00 & 1 \\
+\bottomrule
+\end{longtable}
+
+\clearpage
+
diff --git a/experiments/bare_metal/analysis/report/sections/appendix_riscv64_seed67890.tex b/experiments/bare_metal/analysis/report/sections/appendix_riscv64_seed67890.tex
new file mode 100644
index 0000000..191ad6a
--- /dev/null
+++ b/experiments/bare_metal/analysis/report/sections/appendix_riscv64_seed67890.tex
@@ -0,0 +1,499 @@
+\subsection{Raw data: riscv64, seed 67890}
+\label{sec:appendix_riscv64_seed67890}
+
+All 480 rows, execution order (\texttt{run\_id}), for cell riscv64 / seed 67890.
+
+\begin{longtable}{rrrrrr}
+\toprule
+run\_id & cfg & rep & entropy=hi & infer\_dec\_q & early\_exit \\
+\midrule
+\endfirsthead
+\toprule
+run\_id & cfg & rep & entropy=hi & infer\_dec\_q & early\_exit \\
+\midrule
+\endhead
+0 & 12 & 23 & 1 & 0.00 & 0 \\
+1 & 9 & 11 & 1 & 0.00 & 1 \\
+2 & 0 & 20 & 0 & 0.00 & 1 \\
+3 & 15 & 21 & 1 & 0.00 & 1 \\
+4 & 0 & 13 & 0 & 0.00 & 1 \\
+5 & 10 & 0 & 1 & 0.00 & 1 \\
+6 & 0 & 8 & 0 & 0.00 & 1 \\
+7 & 8 & 10 & 1 & 0.00 & 1 \\
+8 & 11 & 9 & 1 & 0.00 & 1 \\
+9 & 8 & 9 & 1 & 0.00 & 1 \\
+10 & 13 & 22 & 1 & 0.00 & 1 \\
+11 & 1 & 13 & 0 & 0.00 & 1 \\
+12 & 14 & 10 & 1 & 0.00 & 1 \\
+13 & 14 & 4 & 1 & 0.00 & 1 \\
+14 & 4 & 3 & 0 & 0.00 & 1 \\
+15 & 5 & 20 & 0 & 0.00 & 1 \\
+16 & 7 & 19 & 0 & 0.00 & 1 \\
+17 & 6 & 16 & 0 & 0.00 & 1 \\
+18 & 6 & 27 & 0 & 0.00 & 1 \\
+19 & 7 & 4 & 0 & 0.00 & 1 \\
+20 & 13 & 20 & 1 & 0.00 & 1 \\
+21 & 11 & 14 & 1 & 0.00 & 1 \\
+22 & 13 & 28 & 1 & 0.00 & 1 \\
+23 & 11 & 4 & 1 & 0.00 & 1 \\
+24 & 13 & 11 & 1 & 0.00 & 1 \\
+25 & 9 & 26 & 1 & 0.00 & 1 \\
+26 & 11 & 26 & 1 & 0.00 & 1 \\
+27 & 14 & 23 & 1 & 0.00 & 1 \\
+28 & 9 & 10 & 1 & 0.00 & 1 \\
+29 & 7 & 21 & 0 & 0.00 & 1 \\
+30 & 8 & 23 & 1 & 0.00 & 1 \\
+31 & 1 & 8 & 0 & 0.00 & 1 \\
+32 & 14 & 21 & 1 & 0.00 & 1 \\
+33 & 14 & 25 & 1 & 0.00 & 1 \\
+34 & 4 & 7 & 0 & 0.00 & 1 \\
+35 & 1 & 19 & 0 & 0.00 & 1 \\
+36 & 6 & 9 & 0 & 0.00 & 1 \\
+37 & 10 & 26 & 1 & 0.00 & 1 \\
+38 & 7 & 28 & 0 & 0.00 & 1 \\
+39 & 11 & 13 & 1 & 0.00 & 1 \\
+40 & 12 & 10 & 1 & 0.00 & 1 \\
+41 & 2 & 22 & 0 & 0.00 & 1 \\
+42 & 6 & 13 & 0 & 0.00 & 1 \\
+43 & 6 & 21 & 0 & 0.00 & 1 \\
+44 & 6 & 14 & 0 & 0.00 & 1 \\
+45 & 12 & 14 & 1 & 0.00 & 1 \\
+46 & 10 & 15 & 1 & 0.00 & 1 \\
+47 & 1 & 26 & 0 & 0.00 & 1 \\
+48 & 8 & 4 & 1 & 0.00 & 1 \\
+49 & 0 & 5 & 0 & 0.00 & 1 \\
+50 & 7 & 22 & 0 & 0.00 & 1 \\
+51 & 10 & 6 & 1 & 0.00 & 1 \\
+52 & 0 & 28 & 0 & 0.00 & 1 \\
+53 & 2 & 13 & 0 & 0.00 & 1 \\
+54 & 12 & 25 & 1 & 0.00 & 1 \\
+55 & 8 & 21 & 1 & 0.00 & 1 \\
+56 & 9 & 8 & 1 & 0.00 & 1 \\
+57 & 13 & 12 & 1 & 0.00 & 1 \\
+58 & 5 & 0 & 0 & 0.00 & 1 \\
+59 & 8 & 3 & 1 & 0.00 & 1 \\
+60 & 13 & 10 & 1 & 0.00 & 1 \\
+61 & 15 & 24 & 1 & 0.00 & 1 \\
+62 & 9 & 25 & 1 & 0.00 & 1 \\
+63 & 8 & 12 & 1 & 0.00 & 1 \\
+64 & 5 & 26 & 0 & 0.00 & 1 \\
+65 & 12 & 18 & 1 & 0.00 & 1 \\
+66 & 2 & 0 & 0 & 0.00 & 1 \\
+67 & 6 & 18 & 0 & 0.00 & 1 \\
+68 & 4 & 19 & 0 & 0.00 & 1 \\
+69 & 3 & 27 & 0 & 0.00 & 1 \\
+70 & 11 & 19 & 1 & 0.00 & 1 \\
+71 & 4 & 2 & 0 & 0.00 & 1 \\
+72 & 15 & 22 & 1 & 0.00 & 1 \\
+73 & 1 & 11 & 0 & 0.00 & 1 \\
+74 & 11 & 3 & 1 & 0.00 & 1 \\
+75 & 4 & 12 & 0 & 0.00 & 1 \\
+76 & 1 & 9 & 0 & 0.00 & 1 \\
+77 & 6 & 23 & 0 & 0.00 & 1 \\
+78 & 1 & 12 & 0 & 0.00 & 1 \\
+79 & 6 & 19 & 0 & 0.00 & 1 \\
+80 & 10 & 10 & 1 & 0.00 & 1 \\
+81 & 9 & 19 & 1 & 0.00 & 1 \\
+82 & 11 & 17 & 1 & 0.00 & 1 \\
+83 & 14 & 18 & 1 & 0.00 & 1 \\
+84 & 8 & 16 & 1 & 0.00 & 1 \\
+85 & 10 & 8 & 1 & 0.00 & 1 \\
+86 & 7 & 14 & 0 & 0.00 & 1 \\
+87 & 4 & 13 & 0 & 0.00 & 1 \\
+88 & 12 & 0 & 1 & 0.00 & 1 \\
+89 & 8 & 7 & 1 & 0.00 & 1 \\
+90 & 15 & 6 & 1 & 0.00 & 1 \\
+91 & 1 & 23 & 0 & 0.00 & 1 \\
+92 & 3 & 23 & 0 & 0.00 & 1 \\
+93 & 14 & 9 & 1 & 0.00 & 1 \\
+94 & 4 & 28 & 0 & 0.00 & 1 \\
+95 & 5 & 12 & 0 & 0.00 & 1 \\
+96 & 13 & 8 & 1 & 0.00 & 1 \\
+97 & 10 & 29 & 1 & 0.00 & 1 \\
+98 & 15 & 9 & 1 & 0.00 & 1 \\
+99 & 15 & 14 & 1 & 0.00 & 1 \\
+100 & 13 & 27 & 1 & 0.00 & 1 \\
+101 & 7 & 9 & 0 & 0.00 & 1 \\
+102 & 0 & 6 & 0 & 0.00 & 1 \\
+103 & 3 & 20 & 0 & 0.00 & 1 \\
+104 & 12 & 6 & 1 & 0.00 & 1 \\
+105 & 2 & 11 & 0 & 0.00 & 1 \\
+106 & 7 & 18 & 0 & 0.00 & 1 \\
+107 & 11 & 11 & 1 & 0.00 & 1 \\
+108 & 13 & 4 & 1 & 0.00 & 1 \\
+109 & 4 & 10 & 0 & 0.00 & 1 \\
+110 & 11 & 8 & 1 & 0.00 & 1 \\
+111 & 15 & 7 & 1 & 0.00 & 1 \\
+112 & 1 & 21 & 0 & 0.00 & 1 \\
+113 & 9 & 1 & 1 & 0.00 & 1 \\
+114 & 8 & 24 & 1 & 0.00 & 1 \\
+115 & 14 & 5 & 1 & 0.00 & 1 \\
+116 & 3 & 24 & 0 & 0.00 & 1 \\
+117 & 11 & 28 & 1 & 0.00 & 1 \\
+118 & 8 & 22 & 1 & 0.00 & 1 \\
+119 & 6 & 2 & 0 & 0.00 & 1 \\
+120 & 1 & 25 & 0 & 0.00 & 1 \\
+121 & 10 & 25 & 1 & 0.00 & 1 \\
+122 & 10 & 21 & 1 & 0.00 & 1 \\
+123 & 9 & 24 & 1 & 0.00 & 1 \\
+124 & 5 & 5 & 0 & 0.00 & 1 \\
+125 & 3 & 29 & 0 & 0.00 & 1 \\
+126 & 4 & 0 & 0 & 0.00 & 1 \\
+127 & 14 & 17 & 1 & 0.00 & 1 \\
+128 & 14 & 22 & 1 & 0.00 & 1 \\
+129 & 9 & 18 & 1 & 0.00 & 1 \\
+130 & 10 & 16 & 1 & 0.00 & 1 \\
+131 & 13 & 17 & 1 & 0.00 & 1 \\
+132 & 9 & 7 & 1 & 0.00 & 1 \\
+133 & 15 & 2 & 1 & 0.00 & 1 \\
+134 & 10 & 5 & 1 & 0.00 & 1 \\
+135 & 7 & 24 & 0 & 0.00 & 1 \\
+136 & 6 & 25 & 0 & 0.00 & 1 \\
+137 & 7 & 0 & 0 & 0.00 & 1 \\
+138 & 6 & 1 & 0 & 0.00 & 1 \\
+139 & 11 & 6 & 1 & 0.00 & 1 \\
+140 & 1 & 6 & 0 & 0.00 & 1 \\
+141 & 12 & 26 & 1 & 0.00 & 1 \\
+142 & 14 & 14 & 1 & 0.00 & 1 \\
+143 & 2 & 5 & 0 & 0.00 & 1 \\
+144 & 12 & 7 & 1 & 0.00 & 1 \\
+145 & 11 & 10 & 1 & 0.00 & 1 \\
+146 & 4 & 26 & 0 & 0.00 & 1 \\
+147 & 12 & 1 & 1 & 0.00 & 1 \\
+148 & 12 & 27 & 1 & 0.00 & 1 \\
+149 & 4 & 18 & 0 & 0.00 & 1 \\
+150 & 1 & 7 & 0 & 0.00 & 1 \\
+151 & 11 & 12 & 1 & 0.00 & 1 \\
+152 & 4 & 24 & 0 & 0.00 & 1 \\
+153 & 13 & 0 & 1 & 0.00 & 1 \\
+154 & 0 & 24 & 0 & 0.00 & 1 \\
+155 & 7 & 6 & 0 & 0.00 & 1 \\
+156 & 10 & 22 & 1 & 0.00 & 1 \\
+157 & 6 & 0 & 0 & 0.00 & 1 \\
+158 & 4 & 1 & 0 & 0.00 & 1 \\
+159 & 14 & 19 & 1 & 0.00 & 1 \\
+160 & 15 & 26 & 1 & 0.00 & 1 \\
+161 & 12 & 12 & 1 & 0.00 & 1 \\
+162 & 7 & 5 & 0 & 0.00 & 1 \\
+163 & 5 & 6 & 0 & 0.00 & 1 \\
+164 & 9 & 15 & 1 & 0.00 & 1 \\
+165 & 1 & 16 & 0 & 0.00 & 1 \\
+166 & 9 & 28 & 1 & 0.00 & 1 \\
+167 & 10 & 27 & 1 & 0.00 & 1 \\
+168 & 10 & 23 & 1 & 0.00 & 1 \\
+169 & 2 & 25 & 0 & 0.00 & 1 \\
+170 & 0 & 9 & 0 & 0.00 & 1 \\
+171 & 9 & 4 & 1 & 0.00 & 1 \\
+172 & 5 & 13 & 0 & 0.00 & 1 \\
+173 & 6 & 5 & 0 & 0.00 & 1 \\
+174 & 2 & 6 & 0 & 0.00 & 1 \\
+175 & 6 & 17 & 0 & 0.00 & 1 \\
+176 & 14 & 3 & 1 & 0.00 & 1 \\
+177 & 3 & 4 & 0 & 0.00 & 1 \\
+178 & 12 & 21 & 1 & 0.00 & 1 \\
+179 & 1 & 28 & 0 & 0.00 & 1 \\
+180 & 0 & 23 & 0 & 0.00 & 1 \\
+181 & 15 & 0 & 1 & 0.00 & 1 \\
+182 & 11 & 5 & 1 & 0.00 & 1 \\
+183 & 14 & 1 & 1 & 0.00 & 1 \\
+184 & 14 & 0 & 1 & 0.00 & 1 \\
+185 & 5 & 9 & 0 & 0.00 & 1 \\
+186 & 14 & 11 & 1 & 0.00 & 1 \\
+187 & 3 & 28 & 0 & 0.00 & 1 \\
+188 & 7 & 20 & 0 & 0.00 & 1 \\
+189 & 0 & 11 & 0 & 0.00 & 1 \\
+190 & 15 & 4 & 1 & 0.00 & 1 \\
+191 & 3 & 26 & 0 & 0.00 & 1 \\
+192 & 5 & 15 & 0 & 0.00 & 1 \\
+193 & 8 & 15 & 1 & 0.00 & 1 \\
+194 & 5 & 25 & 0 & 0.00 & 1 \\
+195 & 8 & 18 & 1 & 0.00 & 1 \\
+196 & 5 & 17 & 0 & 0.00 & 1 \\
+197 & 9 & 23 & 1 & 0.00 & 1 \\
+198 & 14 & 6 & 1 & 0.00 & 1 \\
+199 & 12 & 19 & 1 & 0.00 & 1 \\
+200 & 9 & 12 & 1 & 0.00 & 1 \\
+201 & 10 & 4 & 1 & 0.00 & 1 \\
+202 & 12 & 17 & 1 & 0.00 & 1 \\
+203 & 4 & 9 & 0 & 0.00 & 1 \\
+204 & 3 & 19 & 0 & 0.00 & 1 \\
+205 & 5 & 29 & 0 & 0.00 & 1 \\
+206 & 12 & 20 & 1 & 0.00 & 1 \\
+207 & 3 & 13 & 0 & 0.00 & 1 \\
+208 & 3 & 10 & 0 & 0.00 & 1 \\
+209 & 12 & 4 & 1 & 0.00 & 1 \\
+210 & 2 & 23 & 0 & 0.00 & 1 \\
+211 & 5 & 18 & 0 & 0.00 & 1 \\
+212 & 15 & 29 & 1 & 0.00 & 1 \\
+213 & 11 & 23 & 1 & 0.00 & 1 \\
+214 & 4 & 15 & 0 & 0.00 & 1 \\
+215 & 13 & 9 & 1 & 0.00 & 1 \\
+216 & 9 & 0 & 1 & 0.00 & 1 \\
+217 & 4 & 20 & 0 & 0.00 & 1 \\
+218 & 2 & 4 & 0 & 0.00 & 1 \\
+219 & 15 & 1 & 1 & 0.00 & 1 \\
+220 & 5 & 2 & 0 & 0.00 & 1 \\
+221 & 2 & 12 & 0 & 0.00 & 1 \\
+222 & 0 & 12 & 0 & 0.00 & 1 \\
+223 & 2 & 3 & 0 & 0.00 & 1 \\
+224 & 6 & 28 & 0 & 0.00 & 1 \\
+225 & 13 & 5 & 1 & 0.00 & 1 \\
+226 & 8 & 1 & 1 & 0.00 & 1 \\
+227 & 6 & 11 & 0 & 0.00 & 1 \\
+228 & 9 & 27 & 1 & 0.00 & 1 \\
+229 & 3 & 25 & 0 & 0.00 & 1 \\
+230 & 13 & 2 & 1 & 0.00 & 1 \\
+231 & 11 & 18 & 1 & 0.00 & 1 \\
+232 & 1 & 2 & 0 & 0.00 & 1 \\
+233 & 11 & 25 & 1 & 0.00 & 1 \\
+234 & 13 & 24 & 1 & 0.00 & 1 \\
+235 & 2 & 21 & 0 & 0.00 & 1 \\
+236 & 2 & 7 & 0 & 0.00 & 1 \\
+237 & 9 & 2 & 1 & 0.00 & 1 \\
+238 & 15 & 3 & 1 & 0.00 & 1 \\
+239 & 14 & 13 & 1 & 0.00 & 1 \\
+240 & 1 & 4 & 0 & 0.00 & 1 \\
+241 & 2 & 24 & 0 & 0.00 & 1 \\
+242 & 0 & 21 & 0 & 0.00 & 1 \\
+243 & 2 & 17 & 0 & 0.00 & 1 \\
+244 & 15 & 13 & 1 & 0.00 & 1 \\
+245 & 15 & 8 & 1 & 0.00 & 1 \\
+246 & 1 & 17 & 0 & 0.00 & 1 \\
+247 & 15 & 15 & 1 & 0.00 & 1 \\
+248 & 11 & 1 & 1 & 0.00 & 1 \\
+249 & 0 & 10 & 0 & 0.00 & 1 \\
+250 & 9 & 9 & 1 & 0.00 & 1 \\
+251 & 5 & 22 & 0 & 0.00 & 1 \\
+252 & 3 & 18 & 0 & 0.00 & 1 \\
+253 & 8 & 29 & 1 & 0.00 & 1 \\
+254 & 6 & 20 & 0 & 0.00 & 1 \\
+255 & 10 & 2 & 1 & 0.00 & 1 \\
+256 & 13 & 15 & 1 & 0.00 & 1 \\
+257 & 3 & 9 & 0 & 0.00 & 1 \\
+258 & 15 & 19 & 1 & 0.00 & 1 \\
+259 & 0 & 4 & 0 & 0.00 & 1 \\
+260 & 8 & 14 & 1 & 0.00 & 1 \\
+261 & 10 & 12 & 1 & 0.00 & 1 \\
+262 & 1 & 5 & 0 & 0.00 & 1 \\
+263 & 1 & 15 & 0 & 0.00 & 1 \\
+264 & 10 & 19 & 1 & 0.00 & 1 \\
+265 & 0 & 19 & 0 & 0.00 & 1 \\
+266 & 8 & 28 & 1 & 0.00 & 1 \\
+267 & 7 & 1 & 0 & 0.00 & 1 \\
+268 & 4 & 29 & 0 & 0.00 & 1 \\
+269 & 0 & 0 & 0 & 0.00 & 1 \\
+270 & 12 & 24 & 1 & 0.00 & 1 \\
+271 & 8 & 19 & 1 & 0.00 & 1 \\
+272 & 15 & 25 & 1 & 0.00 & 1 \\
+273 & 7 & 23 & 0 & 0.00 & 1 \\
+274 & 4 & 4 & 0 & 0.00 & 1 \\
+275 & 13 & 3 & 1 & 0.00 & 1 \\
+276 & 3 & 6 & 0 & 0.00 & 1 \\
+277 & 10 & 14 & 1 & 0.00 & 1 \\
+278 & 13 & 16 & 1 & 0.00 & 1 \\
+279 & 12 & 15 & 1 & 0.00 & 1 \\
+280 & 1 & 14 & 0 & 0.00 & 1 \\
+281 & 6 & 22 & 0 & 0.00 & 1 \\
+282 & 0 & 22 & 0 & 0.00 & 1 \\
+283 & 8 & 27 & 1 & 0.00 & 1 \\
+284 & 15 & 27 & 1 & 0.00 & 1 \\
+285 & 5 & 27 & 0 & 0.00 & 1 \\
+286 & 15 & 28 & 1 & 0.00 & 1 \\
+287 & 6 & 15 & 0 & 0.00 & 1 \\
+288 & 11 & 21 & 1 & 0.00 & 1 \\
+289 & 10 & 11 & 1 & 0.00 & 1 \\
+290 & 14 & 24 & 1 & 0.00 & 1 \\
+291 & 3 & 8 & 0 & 0.00 & 1 \\
+292 & 2 & 20 & 0 & 0.00 & 1 \\
+293 & 1 & 10 & 0 & 0.00 & 1 \\
+294 & 8 & 26 & 1 & 0.00 & 1 \\
+295 & 14 & 27 & 1 & 0.00 & 1 \\
+296 & 9 & 16 & 1 & 0.00 & 1 \\
+297 & 1 & 22 & 0 & 0.00 & 1 \\
+298 & 0 & 26 & 0 & 0.00 & 1 \\
+299 & 15 & 20 & 1 & 0.00 & 1 \\
+300 & 8 & 13 & 1 & 0.00 & 1 \\
+301 & 8 & 2 & 1 & 0.00 & 1 \\
+302 & 13 & 13 & 1 & 0.00 & 1 \\
+303 & 8 & 11 & 1 & 0.00 & 1 \\
+304 & 8 & 8 & 1 & 0.00 & 1 \\
+305 & 8 & 5 & 1 & 0.00 & 1 \\
+306 & 5 & 23 & 0 & 0.00 & 1 \\
+307 & 14 & 16 & 1 & 0.00 & 1 \\
+308 & 3 & 3 & 0 & 0.00 & 1 \\
+309 & 3 & 15 & 0 & 0.00 & 1 \\
+310 & 0 & 2 & 0 & 0.00 & 1 \\
+311 & 2 & 15 & 0 & 0.00 & 1 \\
+312 & 15 & 17 & 1 & 77.00 & 0 \\
+313 & 5 & 14 & 0 & 77.00 & 1 \\
+314 & 1 & 1 & 0 & 77.00 & 1 \\
+315 & 2 & 29 & 0 & 77.00 & 1 \\
+316 & 14 & 29 & 1 & 77.00 & 1 \\
+317 & 15 & 23 & 1 & 77.00 & 1 \\
+318 & 7 & 7 & 0 & 77.00 & 1 \\
+319 & 7 & 16 & 0 & 77.00 & 1 \\
+320 & 7 & 8 & 0 & 77.00 & 1 \\
+321 & 4 & 23 & 0 & 77.00 & 1 \\
+322 & 4 & 21 & 0 & 77.00 & 1 \\
+323 & 5 & 4 & 0 & 77.00 & 1 \\
+324 & 10 & 7 & 1 & 77.00 & 1 \\
+325 & 0 & 27 & 0 & 77.00 & 1 \\
+326 & 0 & 29 & 0 & 77.00 & 1 \\
+327 & 1 & 24 & 0 & 77.00 & 1 \\
+328 & 12 & 5 & 1 & 77.00 & 1 \\
+329 & 9 & 29 & 1 & 77.00 & 1 \\
+330 & 14 & 28 & 1 & 77.00 & 1 \\
+331 & 11 & 7 & 1 & 77.00 & 1 \\
+332 & 5 & 28 & 0 & 77.00 & 1 \\
+333 & 0 & 1 & 0 & 77.00 & 1 \\
+334 & 7 & 15 & 0 & 77.00 & 1 \\
+335 & 4 & 8 & 0 & 77.00 & 1 \\
+336 & 1 & 3 & 0 & 77.00 & 1 \\
+337 & 8 & 20 & 1 & 77.00 & 1 \\
+338 & 3 & 21 & 0 & 77.00 & 1 \\
+339 & 14 & 2 & 1 & 77.00 & 1 \\
+340 & 9 & 22 & 1 & 77.00 & 1 \\
+341 & 0 & 16 & 0 & 77.00 & 1 \\
+342 & 7 & 17 & 0 & 77.00 & 1 \\
+343 & 2 & 19 & 0 & 77.00 & 1 \\
+344 & 5 & 1 & 0 & 77.00 & 1 \\
+345 & 2 & 28 & 0 & 77.00 & 1 \\
+346 & 5 & 10 & 0 & 77.00 & 1 \\
+347 & 14 & 26 & 1 & 77.00 & 1 \\
+348 & 10 & 13 & 1 & 77.00 & 1 \\
+349 & 5 & 16 & 0 & 77.00 & 1 \\
+350 & 10 & 3 & 1 & 77.00 & 1 \\
+351 & 13 & 18 & 1 & 77.00 & 1 \\
+352 & 10 & 1 & 1 & 77.00 & 1 \\
+353 & 13 & 23 & 1 & 77.00 & 1 \\
+354 & 13 & 19 & 1 & 77.00 & 1 \\
+355 & 3 & 5 & 0 & 77.00 & 1 \\
+356 & 3 & 14 & 0 & 77.00 & 1 \\
+357 & 1 & 20 & 0 & 77.00 & 1 \\
+358 & 14 & 8 & 1 & 77.00 & 1 \\
+359 & 6 & 6 & 0 & 77.00 & 1 \\
+360 & 12 & 28 & 1 & 77.00 & 1 \\
+361 & 11 & 0 & 1 & 77.00 & 1 \\
+362 & 13 & 14 & 1 & 77.00 & 1 \\
+363 & 15 & 11 & 1 & 80.00 & 0 \\
+364 & 15 & 10 & 1 & 80.00 & 1 \\
+365 & 12 & 11 & 1 & 80.00 & 1 \\
+366 & 15 & 12 & 1 & 80.00 & 1 \\
+367 & 2 & 26 & 0 & 80.00 & 1 \\
+368 & 10 & 17 & 1 & 80.00 & 1 \\
+369 & 6 & 29 & 0 & 80.00 & 1 \\
+370 & 5 & 7 & 0 & 80.00 & 1 \\
+371 & 10 & 20 & 1 & 80.00 & 1 \\
+372 & 11 & 29 & 1 & 80.00 & 1 \\
+373 & 6 & 8 & 0 & 80.00 & 1 \\
+374 & 1 & 0 & 0 & 80.00 & 1 \\
+375 & 3 & 0 & 0 & 80.00 & 1 \\
+376 & 3 & 11 & 0 & 80.00 & 1 \\
+377 & 0 & 14 & 0 & 80.00 & 1 \\
+378 & 4 & 16 & 0 & 80.00 & 1 \\
+379 & 5 & 8 & 0 & 80.00 & 1 \\
+380 & 9 & 13 & 1 & 80.00 & 1 \\
+381 & 4 & 25 & 0 & 80.00 & 1 \\
+382 & 3 & 7 & 0 & 80.00 & 1 \\
+383 & 12 & 22 & 1 & 80.00 & 1 \\
+384 & 4 & 22 & 0 & 80.00 & 1 \\
+385 & 2 & 1 & 0 & 80.00 & 1 \\
+386 & 8 & 0 & 1 & 80.00 & 1 \\
+387 & 5 & 3 & 0 & 80.00 & 1 \\
+388 & 3 & 22 & 0 & 80.00 & 1 \\
+389 & 6 & 12 & 0 & 80.00 & 1 \\
+390 & 13 & 29 & 1 & 80.00 & 1 \\
+391 & 5 & 24 & 0 & 80.00 & 1 \\
+392 & 10 & 9 & 1 & 80.00 & 1 \\
+393 & 5 & 19 & 0 & 80.00 & 1 \\
+394 & 7 & 10 & 0 & 80.00 & 1 \\
+395 & 0 & 7 & 0 & 80.00 & 1 \\
+396 & 14 & 20 & 1 & 80.00 & 1 \\
+397 & 15 & 18 & 1 & 80.00 & 1 \\
+398 & 6 & 26 & 0 & 80.00 & 1 \\
+399 & 11 & 15 & 1 & 80.00 & 1 \\
+400 & 15 & 5 & 1 & 80.00 & 1 \\
+401 & 6 & 24 & 0 & 80.00 & 1 \\
+402 & 3 & 17 & 0 & 80.00 & 1 \\
+403 & 13 & 26 & 1 & 80.00 & 1 \\
+404 & 10 & 18 & 1 & 80.00 & 1 \\
+405 & 7 & 2 & 0 & 80.00 & 1 \\
+406 & 6 & 10 & 0 & 80.00 & 1 \\
+407 & 2 & 14 & 0 & 80.00 & 1 \\
+408 & 9 & 14 & 1 & 80.00 & 1 \\
+409 & 2 & 2 & 0 & 80.00 & 1 \\
+410 & 1 & 27 & 0 & 80.00 & 1 \\
+411 & 4 & 6 & 0 & 82.00 & 0 \\
+412 & 0 & 18 & 0 & 82.00 & 1 \\
+413 & 4 & 11 & 0 & 82.00 & 1 \\
+414 & 7 & 3 & 0 & 82.00 & 1 \\
+415 & 14 & 12 & 1 & 82.00 & 1 \\
+416 & 2 & 27 & 0 & 82.00 & 1 \\
+417 & 7 & 12 & 0 & 82.00 & 1 \\
+418 & 12 & 2 & 1 & 82.00 & 1 \\
+419 & 2 & 18 & 0 & 82.00 & 1 \\
+420 & 9 & 3 & 1 & 82.00 & 1 \\
+421 & 6 & 3 & 0 & 82.00 & 1 \\
+422 & 7 & 29 & 0 & 82.00 & 1 \\
+423 & 3 & 2 & 0 & 82.00 & 1 \\
+424 & 15 & 16 & 1 & 82.00 & 1 \\
+425 & 0 & 25 & 0 & 82.00 & 1 \\
+426 & 10 & 28 & 1 & 82.00 & 1 \\
+427 & 9 & 21 & 1 & 82.00 & 1 \\
+428 & 12 & 29 & 1 & 82.00 & 1 \\
+429 & 0 & 3 & 0 & 82.00 & 1 \\
+430 & 11 & 16 & 1 & 82.00 & 1 \\
+431 & 13 & 25 & 1 & 82.00 & 1 \\
+432 & 8 & 17 & 1 & 82.00 & 1 \\
+433 & 1 & 18 & 0 & 82.00 & 1 \\
+434 & 9 & 5 & 1 & 82.00 & 1 \\
+435 & 6 & 7 & 0 & 82.00 & 1 \\
+436 & 0 & 15 & 0 & 82.00 & 1 \\
+437 & 13 & 21 & 1 & 82.00 & 1 \\
+438 & 7 & 11 & 0 & 82.00 & 1 \\
+439 & 7 & 13 & 0 & 82.00 & 1 \\
+440 & 12 & 16 & 1 & 82.00 & 1 \\
+441 & 3 & 12 & 0 & 82.00 & 1 \\
+442 & 8 & 6 & 1 & 82.00 & 1 \\
+443 & 12 & 3 & 1 & 82.00 & 1 \\
+444 & 2 & 9 & 0 & 82.00 & 1 \\
+445 & 13 & 1 & 1 & 82.00 & 1 \\
+446 & 7 & 26 & 0 & 82.00 & 1 \\
+447 & 3 & 16 & 0 & 82.00 & 1 \\
+448 & 13 & 7 & 1 & 82.00 & 1 \\
+449 & 9 & 20 & 1 & 82.00 & 1 \\
+450 & 13 & 6 & 1 & 82.00 & 1 \\
+451 & 5 & 11 & 0 & 82.00 & 1 \\
+452 & 11 & 22 & 1 & 84.00 & 0 \\
+453 & 0 & 17 & 0 & 84.00 & 1 \\
+454 & 11 & 20 & 1 & 84.00 & 1 \\
+455 & 2 & 10 & 0 & 84.00 & 1 \\
+456 & 10 & 24 & 1 & 84.00 & 1 \\
+457 & 6 & 4 & 0 & 84.00 & 1 \\
+458 & 8 & 25 & 1 & 84.00 & 1 \\
+459 & 4 & 5 & 0 & 84.00 & 1 \\
+460 & 12 & 13 & 1 & 84.00 & 1 \\
+461 & 3 & 1 & 0 & 84.00 & 1 \\
+462 & 2 & 8 & 0 & 84.00 & 1 \\
+463 & 14 & 15 & 1 & 84.00 & 1 \\
+464 & 7 & 25 & 0 & 84.00 & 1 \\
+465 & 9 & 6 & 1 & 84.00 & 1 \\
+466 & 4 & 17 & 0 & 84.00 & 1 \\
+467 & 11 & 24 & 1 & 84.00 & 1 \\
+468 & 11 & 27 & 1 & 84.00 & 1 \\
+469 & 12 & 9 & 1 & 84.00 & 1 \\
+470 & 1 & 29 & 0 & 84.00 & 1 \\
+471 & 9 & 17 & 1 & 84.00 & 1 \\
+472 & 4 & 27 & 0 & 84.00 & 1 \\
+473 & 2 & 16 & 0 & 84.00 & 1 \\
+474 & 7 & 27 & 0 & 84.00 & 1 \\
+475 & 12 & 8 & 1 & 84.00 & 1 \\
+476 & 5 & 21 & 0 & 84.00 & 1 \\
+477 & 14 & 7 & 1 & 84.00 & 1 \\
+478 & 4 & 14 & 0 & 84.00 & 1 \\
+479 & 11 & 2 & 1 & 84.00 & 1 \\
+\bottomrule
+\end{longtable}
+
+\clearpage
+
diff --git a/experiments/bare_metal/analysis/report/sections/cell_aarch64_seed12345.tex b/experiments/bare_metal/analysis/report/sections/cell_aarch64_seed12345.tex
new file mode 100644
index 0000000..354e8cc
--- /dev/null
+++ b/experiments/bare_metal/analysis/report/sections/cell_aarch64_seed12345.tex
@@ -0,0 +1,51 @@
+\subsection{Cell: aarch64, seed 12345}
+\label{sec:cell_aarch64_seed12345}
+
+480 rows captured, all 16 \texttt{cfg} values represented exactly 30 times, zero errors. Overall \texttt{infer\_dec\_q}: mean 56.85, sd 29.30, median 68.0 (IQR 56.0--78.0). Early-exit rate: 0.988.
+
+\begin{figure}[h]
+\centering
+\includegraphics[width=\textwidth]{cell_aarch64_seed12345_detail_light.pdf}
+\caption{Cell aarch64/seed 12345: \texttt{infer\_dec\_q} distribution (left) and per-config breakdown (right).}
+\end{figure}
+
+\begin{table}[h]
+\centering
+\caption{Per-config summary, cell aarch64/seed 12345.}
+\begin{tabular}{rrrrr}
+\toprule
+cfg & n & mean infer\_dec\_q & sd & early-exit rate \\
+\midrule
+0 & 30 & 50.73 & 29.73 & 0.967 \\
+1 & 30 & 50.40 & 34.37 & 1.000 \\
+2 & 30 & 64.87 & 23.55 & 1.000 \\
+3 & 30 & 61.80 & 26.20 & 1.000 \\
+4 & 30 & 51.43 & 32.62 & 1.000 \\
+5 & 30 & 50.93 & 34.62 & 1.000 \\
+6 & 30 & 53.47 & 31.13 & 1.000 \\
+7 & 30 & 55.47 & 31.76 & 0.967 \\
+8 & 30 & 61.07 & 25.89 & 1.000 \\
+9 & 30 & 56.30 & 30.21 & 1.000 \\
+10 & 30 & 60.20 & 28.39 & 0.967 \\
+11 & 30 & 60.57 & 28.79 & 1.000 \\
+12 & 30 & 50.23 & 32.09 & 1.000 \\
+13 & 30 & 52.10 & 30.45 & 1.000 \\
+14 & 30 & 59.70 & 25.47 & 0.933 \\
+15 & 30 & 70.40 & 15.51 & 0.967 \\
+\bottomrule
+\end{tabular}
+\end{table}
+
+\clearpage
+\subsubsection{Execution-order trajectory}
+
+The per-config summary above pools all 30 replications of each config regardless of when they ran. Plotting \texttt{infer\_dec\_q} against \texttt{run\_id} (the sequential execution order through the shuffled 480-row matrix, not the config or replication index) shows whatever path-dependence exists in the underlying rolling-window/decay-slope estimator directly.
+
+\begin{figure}[h]
+\centering
+\includegraphics[width=\textwidth]{cell_aarch64_seed12345_trajectory_light.pdf}
+\caption{Cell aarch64/seed 12345: infer\_dec\_q by execution order, coloured by L8 config, with a loess trend.}
+\end{figure}
+
+\clearpage
+
diff --git a/experiments/bare_metal/analysis/report/sections/cell_aarch64_seed13579.tex b/experiments/bare_metal/analysis/report/sections/cell_aarch64_seed13579.tex
new file mode 100644
index 0000000..9d2553f
--- /dev/null
+++ b/experiments/bare_metal/analysis/report/sections/cell_aarch64_seed13579.tex
@@ -0,0 +1,51 @@
+\subsection{Cell: aarch64, seed 13579}
+\label{sec:cell_aarch64_seed13579}
+
+480 rows captured, all 16 \texttt{cfg} values represented exactly 30 times, zero errors. Overall \texttt{infer\_dec\_q}: mean 44.50, sd 35.48, median 68.0 (IQR 0.0--74.0). Early-exit rate: 0.992.
+
+\begin{figure}[h]
+\centering
+\includegraphics[width=\textwidth]{cell_aarch64_seed13579_detail_light.pdf}
+\caption{Cell aarch64/seed 13579: \texttt{infer\_dec\_q} distribution (left) and per-config breakdown (right).}
+\end{figure}
+
+\begin{table}[h]
+\centering
+\caption{Per-config summary, cell aarch64/seed 13579.}
+\begin{tabular}{rrrrr}
+\toprule
+cfg & n & mean infer\_dec\_q & sd & early-exit rate \\
+\midrule
+0 & 30 & 53.63 & 32.94 & 0.967 \\
+1 & 30 & 40.90 & 36.44 & 1.000 \\
+2 & 30 & 33.67 & 36.65 & 0.967 \\
+3 & 30 & 39.07 & 37.20 & 1.000 \\
+4 & 30 & 48.50 & 34.94 & 1.000 \\
+5 & 30 & 43.87 & 36.46 & 0.967 \\
+6 & 30 & 33.47 & 36.44 & 1.000 \\
+7 & 30 & 36.60 & 37.25 & 1.000 \\
+8 & 30 & 43.53 & 36.20 & 1.000 \\
+9 & 30 & 50.97 & 33.99 & 1.000 \\
+10 & 30 & 48.90 & 35.20 & 1.000 \\
+11 & 30 & 48.13 & 34.69 & 1.000 \\
+12 & 30 & 52.43 & 32.26 & 0.967 \\
+13 & 30 & 55.93 & 31.45 & 1.000 \\
+14 & 30 & 43.60 & 36.26 & 1.000 \\
+15 & 30 & 38.80 & 36.95 & 1.000 \\
+\bottomrule
+\end{tabular}
+\end{table}
+
+\clearpage
+\subsubsection{Execution-order trajectory}
+
+The per-config summary above pools all 30 replications of each config regardless of when they ran. Plotting \texttt{infer\_dec\_q} against \texttt{run\_id} (the sequential execution order through the shuffled 480-row matrix, not the config or replication index) shows whatever path-dependence exists in the underlying rolling-window/decay-slope estimator directly.
+
+\begin{figure}[h]
+\centering
+\includegraphics[width=\textwidth]{cell_aarch64_seed13579_trajectory_light.pdf}
+\caption{Cell aarch64/seed 13579: infer\_dec\_q by execution order, coloured by L8 config, with a loess trend.}
+\end{figure}
+
+\clearpage
+
diff --git a/experiments/bare_metal/analysis/report/sections/cell_aarch64_seed67890.tex b/experiments/bare_metal/analysis/report/sections/cell_aarch64_seed67890.tex
new file mode 100644
index 0000000..8588075
--- /dev/null
+++ b/experiments/bare_metal/analysis/report/sections/cell_aarch64_seed67890.tex
@@ -0,0 +1,51 @@
+\subsection{Cell: aarch64, seed 67890}
+\label{sec:cell_aarch64_seed67890}
+
+480 rows captured, all 16 \texttt{cfg} values represented exactly 30 times, zero errors. Overall \texttt{infer\_dec\_q}: mean 28.09, sd 38.34, median 0.0 (IQR 0.0--77.0). Early-exit rate: 0.990.
+
+\begin{figure}[h]
+\centering
+\includegraphics[width=\textwidth]{cell_aarch64_seed67890_detail_light.pdf}
+\caption{Cell aarch64/seed 67890: \texttt{infer\_dec\_q} distribution (left) and per-config breakdown (right).}
+\end{figure}
+
+\begin{table}[h]
+\centering
+\caption{Per-config summary, cell aarch64/seed 67890.}
+\begin{tabular}{rrrrr}
+\toprule
+cfg & n & mean infer\_dec\_q & sd & early-exit rate \\
+\midrule
+0 & 30 & 29.33 & 39.24 & 1.000 \\
+1 & 30 & 21.13 & 35.67 & 1.000 \\
+2 & 30 & 34.97 & 40.70 & 1.000 \\
+3 & 30 & 32.03 & 39.93 & 1.000 \\
+4 & 30 & 32.37 & 40.36 & 0.967 \\
+5 & 30 & 34.27 & 39.88 & 1.000 \\
+6 & 30 & 26.83 & 38.61 & 1.000 \\
+7 & 30 & 40.17 & 40.90 & 1.000 \\
+8 & 30 & 13.50 & 30.72 & 1.000 \\
+9 & 30 & 27.00 & 38.86 & 1.000 \\
+10 & 30 & 26.47 & 38.09 & 1.000 \\
+11 & 30 & 27.20 & 39.16 & 0.967 \\
+12 & 30 & 29.80 & 39.86 & 0.967 \\
+13 & 30 & 29.27 & 39.15 & 1.000 \\
+14 & 30 & 23.83 & 37.06 & 1.000 \\
+15 & 30 & 21.20 & 35.77 & 0.933 \\
+\bottomrule
+\end{tabular}
+\end{table}
+
+\clearpage
+\subsubsection{Execution-order trajectory}
+
+The per-config summary above pools all 30 replications of each config regardless of when they ran. Plotting \texttt{infer\_dec\_q} against \texttt{run\_id} (the sequential execution order through the shuffled 480-row matrix, not the config or replication index) shows whatever path-dependence exists in the underlying rolling-window/decay-slope estimator directly.
+
+\begin{figure}[h]
+\centering
+\includegraphics[width=\textwidth]{cell_aarch64_seed67890_trajectory_light.pdf}
+\caption{Cell aarch64/seed 67890: infer\_dec\_q by execution order, coloured by L8 config, with a loess trend.}
+\end{figure}
+
+\clearpage
+
diff --git a/experiments/bare_metal/analysis/report/sections/cell_amd64_seed12345.tex b/experiments/bare_metal/analysis/report/sections/cell_amd64_seed12345.tex
new file mode 100644
index 0000000..1983c3a
--- /dev/null
+++ b/experiments/bare_metal/analysis/report/sections/cell_amd64_seed12345.tex
@@ -0,0 +1,51 @@
+\subsection{Cell: amd64, seed 12345}
+\label{sec:cell_amd64_seed12345}
+
+480 rows captured, all 16 \texttt{cfg} values represented exactly 30 times, zero errors. Overall \texttt{infer\_dec\_q}: mean 56.85, sd 29.30, median 68.0 (IQR 56.0--78.0). Early-exit rate: 0.988.
+
+\begin{figure}[h]
+\centering
+\includegraphics[width=\textwidth]{cell_amd64_seed12345_detail_light.pdf}
+\caption{Cell amd64/seed 12345: \texttt{infer\_dec\_q} distribution (left) and per-config breakdown (right).}
+\end{figure}
+
+\begin{table}[h]
+\centering
+\caption{Per-config summary, cell amd64/seed 12345.}
+\begin{tabular}{rrrrr}
+\toprule
+cfg & n & mean infer\_dec\_q & sd & early-exit rate \\
+\midrule
+0 & 30 & 50.73 & 29.73 & 0.967 \\
+1 & 30 & 50.40 & 34.37 & 1.000 \\
+2 & 30 & 64.87 & 23.55 & 1.000 \\
+3 & 30 & 61.80 & 26.20 & 1.000 \\
+4 & 30 & 51.43 & 32.62 & 1.000 \\
+5 & 30 & 50.93 & 34.62 & 1.000 \\
+6 & 30 & 53.47 & 31.13 & 1.000 \\
+7 & 30 & 55.47 & 31.76 & 0.967 \\
+8 & 30 & 61.07 & 25.89 & 1.000 \\
+9 & 30 & 56.30 & 30.21 & 1.000 \\
+10 & 30 & 60.20 & 28.39 & 0.967 \\
+11 & 30 & 60.57 & 28.79 & 1.000 \\
+12 & 30 & 50.23 & 32.09 & 1.000 \\
+13 & 30 & 52.10 & 30.45 & 1.000 \\
+14 & 30 & 59.70 & 25.47 & 0.933 \\
+15 & 30 & 70.40 & 15.51 & 0.967 \\
+\bottomrule
+\end{tabular}
+\end{table}
+
+\clearpage
+\subsubsection{Execution-order trajectory}
+
+The per-config summary above pools all 30 replications of each config regardless of when they ran. Plotting \texttt{infer\_dec\_q} against \texttt{run\_id} (the sequential execution order through the shuffled 480-row matrix, not the config or replication index) shows whatever path-dependence exists in the underlying rolling-window/decay-slope estimator directly.
+
+\begin{figure}[h]
+\centering
+\includegraphics[width=\textwidth]{cell_amd64_seed12345_trajectory_light.pdf}
+\caption{Cell amd64/seed 12345: infer\_dec\_q by execution order, coloured by L8 config, with a loess trend.}
+\end{figure}
+
+\clearpage
+
diff --git a/experiments/bare_metal/analysis/report/sections/cell_amd64_seed13579.tex b/experiments/bare_metal/analysis/report/sections/cell_amd64_seed13579.tex
new file mode 100644
index 0000000..722c46e
--- /dev/null
+++ b/experiments/bare_metal/analysis/report/sections/cell_amd64_seed13579.tex
@@ -0,0 +1,51 @@
+\subsection{Cell: amd64, seed 13579}
+\label{sec:cell_amd64_seed13579}
+
+480 rows captured, all 16 \texttt{cfg} values represented exactly 30 times, zero errors. Overall \texttt{infer\_dec\_q}: mean 44.50, sd 35.48, median 68.0 (IQR 0.0--74.0). Early-exit rate: 0.992.
+
+\begin{figure}[h]
+\centering
+\includegraphics[width=\textwidth]{cell_amd64_seed13579_detail_light.pdf}
+\caption{Cell amd64/seed 13579: \texttt{infer\_dec\_q} distribution (left) and per-config breakdown (right).}
+\end{figure}
+
+\begin{table}[h]
+\centering
+\caption{Per-config summary, cell amd64/seed 13579.}
+\begin{tabular}{rrrrr}
+\toprule
+cfg & n & mean infer\_dec\_q & sd & early-exit rate \\
+\midrule
+0 & 30 & 53.63 & 32.94 & 0.967 \\
+1 & 30 & 40.90 & 36.44 & 1.000 \\
+2 & 30 & 33.67 & 36.65 & 0.967 \\
+3 & 30 & 39.07 & 37.20 & 1.000 \\
+4 & 30 & 48.50 & 34.94 & 1.000 \\
+5 & 30 & 43.87 & 36.46 & 0.967 \\
+6 & 30 & 33.47 & 36.44 & 1.000 \\
+7 & 30 & 36.60 & 37.25 & 1.000 \\
+8 & 30 & 43.53 & 36.20 & 1.000 \\
+9 & 30 & 50.97 & 33.99 & 1.000 \\
+10 & 30 & 48.90 & 35.20 & 1.000 \\
+11 & 30 & 48.13 & 34.69 & 1.000 \\
+12 & 30 & 52.43 & 32.26 & 0.967 \\
+13 & 30 & 55.93 & 31.45 & 1.000 \\
+14 & 30 & 43.60 & 36.26 & 1.000 \\
+15 & 30 & 38.80 & 36.95 & 1.000 \\
+\bottomrule
+\end{tabular}
+\end{table}
+
+\clearpage
+\subsubsection{Execution-order trajectory}
+
+The per-config summary above pools all 30 replications of each config regardless of when they ran. Plotting \texttt{infer\_dec\_q} against \texttt{run\_id} (the sequential execution order through the shuffled 480-row matrix, not the config or replication index) shows whatever path-dependence exists in the underlying rolling-window/decay-slope estimator directly.
+
+\begin{figure}[h]
+\centering
+\includegraphics[width=\textwidth]{cell_amd64_seed13579_trajectory_light.pdf}
+\caption{Cell amd64/seed 13579: infer\_dec\_q by execution order, coloured by L8 config, with a loess trend.}
+\end{figure}
+
+\clearpage
+
diff --git a/experiments/bare_metal/analysis/report/sections/cell_amd64_seed67890.tex b/experiments/bare_metal/analysis/report/sections/cell_amd64_seed67890.tex
new file mode 100644
index 0000000..1768947
--- /dev/null
+++ b/experiments/bare_metal/analysis/report/sections/cell_amd64_seed67890.tex
@@ -0,0 +1,51 @@
+\subsection{Cell: amd64, seed 67890}
+\label{sec:cell_amd64_seed67890}
+
+480 rows captured, all 16 \texttt{cfg} values represented exactly 30 times, zero errors. Overall \texttt{infer\_dec\_q}: mean 28.09, sd 38.34, median 0.0 (IQR 0.0--77.0). Early-exit rate: 0.990.
+
+\begin{figure}[h]
+\centering
+\includegraphics[width=\textwidth]{cell_amd64_seed67890_detail_light.pdf}
+\caption{Cell amd64/seed 67890: \texttt{infer\_dec\_q} distribution (left) and per-config breakdown (right).}
+\end{figure}
+
+\begin{table}[h]
+\centering
+\caption{Per-config summary, cell amd64/seed 67890.}
+\begin{tabular}{rrrrr}
+\toprule
+cfg & n & mean infer\_dec\_q & sd & early-exit rate \\
+\midrule
+0 & 30 & 29.33 & 39.24 & 1.000 \\
+1 & 30 & 21.13 & 35.67 & 1.000 \\
+2 & 30 & 34.97 & 40.70 & 1.000 \\
+3 & 30 & 32.03 & 39.93 & 1.000 \\
+4 & 30 & 32.37 & 40.36 & 0.967 \\
+5 & 30 & 34.27 & 39.88 & 1.000 \\
+6 & 30 & 26.83 & 38.61 & 1.000 \\
+7 & 30 & 40.17 & 40.90 & 1.000 \\
+8 & 30 & 13.50 & 30.72 & 1.000 \\
+9 & 30 & 27.00 & 38.86 & 1.000 \\
+10 & 30 & 26.47 & 38.09 & 1.000 \\
+11 & 30 & 27.20 & 39.16 & 0.967 \\
+12 & 30 & 29.80 & 39.86 & 0.967 \\
+13 & 30 & 29.27 & 39.15 & 1.000 \\
+14 & 30 & 23.83 & 37.06 & 1.000 \\
+15 & 30 & 21.20 & 35.77 & 0.933 \\
+\bottomrule
+\end{tabular}
+\end{table}
+
+\clearpage
+\subsubsection{Execution-order trajectory}
+
+The per-config summary above pools all 30 replications of each config regardless of when they ran. Plotting \texttt{infer\_dec\_q} against \texttt{run\_id} (the sequential execution order through the shuffled 480-row matrix, not the config or replication index) shows whatever path-dependence exists in the underlying rolling-window/decay-slope estimator directly.
+
+\begin{figure}[h]
+\centering
+\includegraphics[width=\textwidth]{cell_amd64_seed67890_trajectory_light.pdf}
+\caption{Cell amd64/seed 67890: infer\_dec\_q by execution order, coloured by L8 config, with a loess trend.}
+\end{figure}
+
+\clearpage
+
diff --git a/experiments/bare_metal/analysis/report/sections/cell_riscv64_seed12345.tex b/experiments/bare_metal/analysis/report/sections/cell_riscv64_seed12345.tex
new file mode 100644
index 0000000..db1f126
--- /dev/null
+++ b/experiments/bare_metal/analysis/report/sections/cell_riscv64_seed12345.tex
@@ -0,0 +1,51 @@
+\subsection{Cell: riscv64, seed 12345}
+\label{sec:cell_riscv64_seed12345}
+
+480 rows captured, all 16 \texttt{cfg} values represented exactly 30 times, zero errors. Overall \texttt{infer\_dec\_q}: mean 56.85, sd 29.30, median 68.0 (IQR 56.0--78.0). Early-exit rate: 0.988.
+
+\begin{figure}[h]
+\centering
+\includegraphics[width=\textwidth]{cell_riscv64_seed12345_detail_light.pdf}
+\caption{Cell riscv64/seed 12345: \texttt{infer\_dec\_q} distribution (left) and per-config breakdown (right).}
+\end{figure}
+
+\begin{table}[h]
+\centering
+\caption{Per-config summary, cell riscv64/seed 12345.}
+\begin{tabular}{rrrrr}
+\toprule
+cfg & n & mean infer\_dec\_q & sd & early-exit rate \\
+\midrule
+0 & 30 & 50.73 & 29.73 & 0.967 \\
+1 & 30 & 50.40 & 34.37 & 1.000 \\
+2 & 30 & 64.87 & 23.55 & 1.000 \\
+3 & 30 & 61.80 & 26.20 & 1.000 \\
+4 & 30 & 51.43 & 32.62 & 1.000 \\
+5 & 30 & 50.93 & 34.62 & 1.000 \\
+6 & 30 & 53.47 & 31.13 & 1.000 \\
+7 & 30 & 55.47 & 31.76 & 0.967 \\
+8 & 30 & 61.07 & 25.89 & 1.000 \\
+9 & 30 & 56.30 & 30.21 & 1.000 \\
+10 & 30 & 60.20 & 28.39 & 0.967 \\
+11 & 30 & 60.57 & 28.79 & 1.000 \\
+12 & 30 & 50.23 & 32.09 & 1.000 \\
+13 & 30 & 52.10 & 30.45 & 1.000 \\
+14 & 30 & 59.70 & 25.47 & 0.933 \\
+15 & 30 & 70.40 & 15.51 & 0.967 \\
+\bottomrule
+\end{tabular}
+\end{table}
+
+\clearpage
+\subsubsection{Execution-order trajectory}
+
+The per-config summary above pools all 30 replications of each config regardless of when they ran. Plotting \texttt{infer\_dec\_q} against \texttt{run\_id} (the sequential execution order through the shuffled 480-row matrix, not the config or replication index) shows whatever path-dependence exists in the underlying rolling-window/decay-slope estimator directly.
+
+\begin{figure}[h]
+\centering
+\includegraphics[width=\textwidth]{cell_riscv64_seed12345_trajectory_light.pdf}
+\caption{Cell riscv64/seed 12345: infer\_dec\_q by execution order, coloured by L8 config, with a loess trend.}
+\end{figure}
+
+\clearpage
+
diff --git a/experiments/bare_metal/analysis/report/sections/cell_riscv64_seed13579.tex b/experiments/bare_metal/analysis/report/sections/cell_riscv64_seed13579.tex
new file mode 100644
index 0000000..612514d
--- /dev/null
+++ b/experiments/bare_metal/analysis/report/sections/cell_riscv64_seed13579.tex
@@ -0,0 +1,51 @@
+\subsection{Cell: riscv64, seed 13579}
+\label{sec:cell_riscv64_seed13579}
+
+480 rows captured, all 16 \texttt{cfg} values represented exactly 30 times, zero errors. Overall \texttt{infer\_dec\_q}: mean 44.50, sd 35.48, median 68.0 (IQR 0.0--74.0). Early-exit rate: 0.992.
+
+\begin{figure}[h]
+\centering
+\includegraphics[width=\textwidth]{cell_riscv64_seed13579_detail_light.pdf}
+\caption{Cell riscv64/seed 13579: \texttt{infer\_dec\_q} distribution (left) and per-config breakdown (right).}
+\end{figure}
+
+\begin{table}[h]
+\centering
+\caption{Per-config summary, cell riscv64/seed 13579.}
+\begin{tabular}{rrrrr}
+\toprule
+cfg & n & mean infer\_dec\_q & sd & early-exit rate \\
+\midrule
+0 & 30 & 53.63 & 32.94 & 0.967 \\
+1 & 30 & 40.90 & 36.44 & 1.000 \\
+2 & 30 & 33.67 & 36.65 & 0.967 \\
+3 & 30 & 39.07 & 37.20 & 1.000 \\
+4 & 30 & 48.50 & 34.94 & 1.000 \\
+5 & 30 & 43.87 & 36.46 & 0.967 \\
+6 & 30 & 33.47 & 36.44 & 1.000 \\
+7 & 30 & 36.60 & 37.25 & 1.000 \\
+8 & 30 & 43.53 & 36.20 & 1.000 \\
+9 & 30 & 50.97 & 33.99 & 1.000 \\
+10 & 30 & 48.90 & 35.20 & 1.000 \\
+11 & 30 & 48.13 & 34.69 & 1.000 \\
+12 & 30 & 52.43 & 32.26 & 0.967 \\
+13 & 30 & 55.93 & 31.45 & 1.000 \\
+14 & 30 & 43.60 & 36.26 & 1.000 \\
+15 & 30 & 38.80 & 36.95 & 1.000 \\
+\bottomrule
+\end{tabular}
+\end{table}
+
+\clearpage
+\subsubsection{Execution-order trajectory}
+
+The per-config summary above pools all 30 replications of each config regardless of when they ran. Plotting \texttt{infer\_dec\_q} against \texttt{run\_id} (the sequential execution order through the shuffled 480-row matrix, not the config or replication index) shows whatever path-dependence exists in the underlying rolling-window/decay-slope estimator directly.
+
+\begin{figure}[h]
+\centering
+\includegraphics[width=\textwidth]{cell_riscv64_seed13579_trajectory_light.pdf}
+\caption{Cell riscv64/seed 13579: infer\_dec\_q by execution order, coloured by L8 config, with a loess trend.}
+\end{figure}
+
+\clearpage
+
diff --git a/experiments/bare_metal/analysis/report/sections/cell_riscv64_seed67890.tex b/experiments/bare_metal/analysis/report/sections/cell_riscv64_seed67890.tex
new file mode 100644
index 0000000..aee437c
--- /dev/null
+++ b/experiments/bare_metal/analysis/report/sections/cell_riscv64_seed67890.tex
@@ -0,0 +1,51 @@
+\subsection{Cell: riscv64, seed 67890}
+\label{sec:cell_riscv64_seed67890}
+
+480 rows captured, all 16 \texttt{cfg} values represented exactly 30 times, zero errors. Overall \texttt{infer\_dec\_q}: mean 28.09, sd 38.34, median 0.0 (IQR 0.0--77.0). Early-exit rate: 0.990.
+
+\begin{figure}[h]
+\centering
+\includegraphics[width=\textwidth]{cell_riscv64_seed67890_detail_light.pdf}
+\caption{Cell riscv64/seed 67890: \texttt{infer\_dec\_q} distribution (left) and per-config breakdown (right).}
+\end{figure}
+
+\begin{table}[h]
+\centering
+\caption{Per-config summary, cell riscv64/seed 67890.}
+\begin{tabular}{rrrrr}
+\toprule
+cfg & n & mean infer\_dec\_q & sd & early-exit rate \\
+\midrule
+0 & 30 & 29.33 & 39.24 & 1.000 \\
+1 & 30 & 21.13 & 35.67 & 1.000 \\
+2 & 30 & 34.97 & 40.70 & 1.000 \\
+3 & 30 & 32.03 & 39.93 & 1.000 \\
+4 & 30 & 32.37 & 40.36 & 0.967 \\
+5 & 30 & 34.27 & 39.88 & 1.000 \\
+6 & 30 & 26.83 & 38.61 & 1.000 \\
+7 & 30 & 40.17 & 40.90 & 1.000 \\
+8 & 30 & 13.50 & 30.72 & 1.000 \\
+9 & 30 & 27.00 & 38.86 & 1.000 \\
+10 & 30 & 26.47 & 38.09 & 1.000 \\
+11 & 30 & 27.20 & 39.16 & 0.967 \\
+12 & 30 & 29.80 & 39.86 & 0.967 \\
+13 & 30 & 29.27 & 39.15 & 1.000 \\
+14 & 30 & 23.83 & 37.06 & 1.000 \\
+15 & 30 & 21.20 & 35.77 & 0.933 \\
+\bottomrule
+\end{tabular}
+\end{table}
+
+\clearpage
+\subsubsection{Execution-order trajectory}
+
+The per-config summary above pools all 30 replications of each config regardless of when they ran. Plotting \texttt{infer\_dec\_q} against \texttt{run\_id} (the sequential execution order through the shuffled 480-row matrix, not the config or replication index) shows whatever path-dependence exists in the underlying rolling-window/decay-slope estimator directly.
+
+\begin{figure}[h]
+\centering
+\includegraphics[width=\textwidth]{cell_riscv64_seed67890_trajectory_light.pdf}
+\caption{Cell riscv64/seed 67890: infer\_dec\_q by execution order, coloured by L8 config, with a loess trend.}
+\end{figure}
+
+\clearpage
+
diff --git a/experiments/bare_metal/analysis/report/sections/interact_cv_f_stb_f.tex b/experiments/bare_metal/analysis/report/sections/interact_cv_f_stb_f.tex
new file mode 100644
index 0000000..f508a77
--- /dev/null
+++ b/experiments/bare_metal/analysis/report/sections/interact_cv_f_stb_f.tex
@@ -0,0 +1,43 @@
+\subsection{coefficient of variation $\times$ stability}
+\label{sec:interact_cv_f_stb_f}
+
+Three-way interaction term (cv\_f:stb\_f:arch) in the full model: $p=1$ -- no evidence the interaction itself depends on architecture.
+
+\begin{figure}[h]
+\centering
+\includegraphics[width=\textwidth]{interact_cv_f_stb_f_light.pdf}
+\caption{coefficient of variation $\times$ stability interaction on mean infer\_dec\_q, faceted by architecture.}
+\end{figure}
+
+\begin{table}[h]
+\centering
+\caption{Cell means, coefficient of variation x stability x architecture.}
+\begin{tabular}{lllrr}
+\toprule
+arch & cv\_f & stb\_f & mean & se \\
+\midrule
+amd64 & hi & hi & 44.08 & 1.93 \\
+amd64 & hi & lo & 42.14 & 1.92 \\
+amd64 & lo & hi & 42.96 & 1.94 \\
+amd64 & lo & lo & 43.41 & 1.92 \\
+aarch64 & hi & hi & 44.08 & 1.93 \\
+aarch64 & hi & lo & 42.14 & 1.92 \\
+aarch64 & lo & hi & 42.96 & 1.94 \\
+aarch64 & lo & lo & 43.41 & 1.92 \\
+riscv64 & hi & hi & 44.08 & 1.93 \\
+riscv64 & hi & lo & 42.14 & 1.92 \\
+riscv64 & lo & hi & 42.96 & 1.94 \\
+riscv64 & lo & lo & 43.41 & 1.92 \\
+\bottomrule
+\end{tabular}
+\end{table}
+
+\clearpage
+\begin{figure}[h]
+\centering
+\includegraphics[width=\textwidth]{interact_cv_f_stb_f_earlyexit_light.pdf}
+\caption{coefficient of variation $\times$ stability interaction on \texttt{early\_exit} rate, faceted by architecture -- same factor pair, binary-outcome response.}
+\end{figure}
+
+\clearpage
+
diff --git a/experiments/bare_metal/analysis/report/sections/interact_cv_f_tmp_f.tex b/experiments/bare_metal/analysis/report/sections/interact_cv_f_tmp_f.tex
new file mode 100644
index 0000000..6e7b312
--- /dev/null
+++ b/experiments/bare_metal/analysis/report/sections/interact_cv_f_tmp_f.tex
@@ -0,0 +1,43 @@
+\subsection{coefficient of variation $\times$ temporal decay}
+\label{sec:interact_cv_f_tmp_f}
+
+Three-way interaction term (cv\_f:tmp\_f:arch) in the full model: $p=1$ -- no evidence the interaction itself depends on architecture.
+
+\begin{figure}[h]
+\centering
+\includegraphics[width=\textwidth]{interact_cv_f_tmp_f_light.pdf}
+\caption{coefficient of variation $\times$ temporal decay interaction on mean infer\_dec\_q, faceted by architecture.}
+\end{figure}
+
+\begin{table}[h]
+\centering
+\caption{Cell means, coefficient of variation x temporal decay x architecture.}
+\begin{tabular}{lllrr}
+\toprule
+arch & cv\_f & tmp\_f & mean & se \\
+\midrule
+amd64 & hi & hi & 41.96 & 1.94 \\
+amd64 & hi & lo & 44.26 & 1.91 \\
+amd64 & lo & hi & 44.82 & 1.93 \\
+amd64 & lo & lo & 41.54 & 1.92 \\
+aarch64 & hi & hi & 41.96 & 1.94 \\
+aarch64 & hi & lo & 44.26 & 1.91 \\
+aarch64 & lo & hi & 44.82 & 1.93 \\
+aarch64 & lo & lo & 41.54 & 1.92 \\
+riscv64 & hi & hi & 41.96 & 1.94 \\
+riscv64 & hi & lo & 44.26 & 1.91 \\
+riscv64 & lo & hi & 44.82 & 1.93 \\
+riscv64 & lo & lo & 41.54 & 1.92 \\
+\bottomrule
+\end{tabular}
+\end{table}
+
+\clearpage
+\begin{figure}[h]
+\centering
+\includegraphics[width=\textwidth]{interact_cv_f_tmp_f_earlyexit_light.pdf}
+\caption{coefficient of variation $\times$ temporal decay interaction on \texttt{early\_exit} rate, faceted by architecture -- same factor pair, binary-outcome response.}
+\end{figure}
+
+\clearpage
+
diff --git a/experiments/bare_metal/analysis/report/sections/interact_ent_f_cv_f.tex b/experiments/bare_metal/analysis/report/sections/interact_ent_f_cv_f.tex
new file mode 100644
index 0000000..363c9a5
--- /dev/null
+++ b/experiments/bare_metal/analysis/report/sections/interact_ent_f_cv_f.tex
@@ -0,0 +1,43 @@
+\subsection{entropy $\times$ coefficient of variation}
+\label{sec:interact_ent_f_cv_f}
+
+Three-way interaction term (ent\_f:cv\_f:arch) in the full model: $p=1$ -- no evidence the interaction itself depends on architecture.
+
+\begin{figure}[h]
+\centering
+\includegraphics[width=\textwidth]{interact_ent_f_cv_f_light.pdf}
+\caption{entropy $\times$ coefficient of variation interaction on mean infer\_dec\_q, faceted by architecture.}
+\end{figure}
+
+\begin{table}[h]
+\centering
+\caption{Cell means, entropy x coefficient of variation x architecture.}
+\begin{tabular}{lllrr}
+\toprule
+arch & ent\_f & cv\_f & mean & se \\
+\midrule
+amd64 & hi & hi & 43.94 & 1.90 \\
+amd64 & hi & lo & 43.65 & 1.93 \\
+amd64 & lo & hi & 42.28 & 1.95 \\
+amd64 & lo & lo & 42.71 & 1.93 \\
+aarch64 & hi & hi & 43.94 & 1.90 \\
+aarch64 & hi & lo & 43.65 & 1.93 \\
+aarch64 & lo & hi & 42.28 & 1.95 \\
+aarch64 & lo & lo & 42.71 & 1.93 \\
+riscv64 & hi & hi & 43.94 & 1.90 \\
+riscv64 & hi & lo & 43.65 & 1.93 \\
+riscv64 & lo & hi & 42.28 & 1.95 \\
+riscv64 & lo & lo & 42.71 & 1.93 \\
+\bottomrule
+\end{tabular}
+\end{table}
+
+\clearpage
+\begin{figure}[h]
+\centering
+\includegraphics[width=\textwidth]{interact_ent_f_cv_f_earlyexit_light.pdf}
+\caption{entropy $\times$ coefficient of variation interaction on \texttt{early\_exit} rate, faceted by architecture -- same factor pair, binary-outcome response.}
+\end{figure}
+
+\clearpage
+
diff --git a/experiments/bare_metal/analysis/report/sections/interact_ent_f_stb_f.tex b/experiments/bare_metal/analysis/report/sections/interact_ent_f_stb_f.tex
new file mode 100644
index 0000000..d33f76a
--- /dev/null
+++ b/experiments/bare_metal/analysis/report/sections/interact_ent_f_stb_f.tex
@@ -0,0 +1,43 @@
+\subsection{entropy $\times$ stability}
+\label{sec:interact_ent_f_stb_f}
+
+Three-way interaction term (ent\_f:stb\_f:arch) in the full model: $p=1$ -- no evidence the interaction itself depends on architecture.
+
+\begin{figure}[h]
+\centering
+\includegraphics[width=\textwidth]{interact_ent_f_stb_f_light.pdf}
+\caption{entropy $\times$ stability interaction on mean infer\_dec\_q, faceted by architecture.}
+\end{figure}
+
+\begin{table}[h]
+\centering
+\caption{Cell means, entropy x stability x architecture.}
+\begin{tabular}{lllrr}
+\toprule
+arch & ent\_f & stb\_f & mean & se \\
+\midrule
+amd64 & hi & hi & 44.82 & 1.91 \\
+amd64 & hi & lo & 42.77 & 1.91 \\
+amd64 & lo & hi & 42.22 & 1.96 \\
+amd64 & lo & lo & 42.77 & 1.92 \\
+aarch64 & hi & hi & 44.82 & 1.91 \\
+aarch64 & hi & lo & 42.77 & 1.91 \\
+aarch64 & lo & hi & 42.22 & 1.96 \\
+aarch64 & lo & lo & 42.77 & 1.92 \\
+riscv64 & hi & hi & 44.82 & 1.91 \\
+riscv64 & hi & lo & 42.77 & 1.91 \\
+riscv64 & lo & hi & 42.22 & 1.96 \\
+riscv64 & lo & lo & 42.77 & 1.92 \\
+\bottomrule
+\end{tabular}
+\end{table}
+
+\clearpage
+\begin{figure}[h]
+\centering
+\includegraphics[width=\textwidth]{interact_ent_f_stb_f_earlyexit_light.pdf}
+\caption{entropy $\times$ stability interaction on \texttt{early\_exit} rate, faceted by architecture -- same factor pair, binary-outcome response.}
+\end{figure}
+
+\clearpage
+
diff --git a/experiments/bare_metal/analysis/report/sections/interact_ent_f_tmp_f.tex b/experiments/bare_metal/analysis/report/sections/interact_ent_f_tmp_f.tex
new file mode 100644
index 0000000..2155769
--- /dev/null
+++ b/experiments/bare_metal/analysis/report/sections/interact_ent_f_tmp_f.tex
@@ -0,0 +1,43 @@
+\subsection{entropy $\times$ temporal decay}
+\label{sec:interact_ent_f_tmp_f}
+
+Three-way interaction term (ent\_f:tmp\_f:arch) in the full model: $p=1$ -- no evidence the interaction itself depends on architecture.
+
+\begin{figure}[h]
+\centering
+\includegraphics[width=\textwidth]{interact_ent_f_tmp_f_light.pdf}
+\caption{entropy $\times$ temporal decay interaction on mean infer\_dec\_q, faceted by architecture.}
+\end{figure}
+
+\begin{table}[h]
+\centering
+\caption{Cell means, entropy x temporal decay x architecture.}
+\begin{tabular}{lllrr}
+\toprule
+arch & ent\_f & tmp\_f & mean & se \\
+\midrule
+amd64 & hi & hi & 44.08 & 1.92 \\
+amd64 & hi & lo & 43.51 & 1.90 \\
+amd64 & lo & hi & 42.70 & 1.95 \\
+amd64 & lo & lo & 42.29 & 1.93 \\
+aarch64 & hi & hi & 44.08 & 1.92 \\
+aarch64 & hi & lo & 43.51 & 1.90 \\
+aarch64 & lo & hi & 42.70 & 1.95 \\
+aarch64 & lo & lo & 42.29 & 1.93 \\
+riscv64 & hi & hi & 44.08 & 1.92 \\
+riscv64 & hi & lo & 43.51 & 1.90 \\
+riscv64 & lo & hi & 42.70 & 1.95 \\
+riscv64 & lo & lo & 42.29 & 1.93 \\
+\bottomrule
+\end{tabular}
+\end{table}
+
+\clearpage
+\begin{figure}[h]
+\centering
+\includegraphics[width=\textwidth]{interact_ent_f_tmp_f_earlyexit_light.pdf}
+\caption{entropy $\times$ temporal decay interaction on \texttt{early\_exit} rate, faceted by architecture -- same factor pair, binary-outcome response.}
+\end{figure}
+
+\clearpage
+
diff --git a/experiments/bare_metal/analysis/report/sections/interact_tmp_f_stb_f.tex b/experiments/bare_metal/analysis/report/sections/interact_tmp_f_stb_f.tex
new file mode 100644
index 0000000..1a10ce4
--- /dev/null
+++ b/experiments/bare_metal/analysis/report/sections/interact_tmp_f_stb_f.tex
@@ -0,0 +1,43 @@
+\subsection{temporal decay $\times$ stability}
+\label{sec:interact_tmp_f_stb_f}
+
+Three-way interaction term (tmp\_f:stb\_f:arch) in the full model: $p=1$ -- no evidence the interaction itself depends on architecture.
+
+\begin{figure}[h]
+\centering
+\includegraphics[width=\textwidth]{interact_tmp_f_stb_f_light.pdf}
+\caption{temporal decay $\times$ stability interaction on mean infer\_dec\_q, faceted by architecture.}
+\end{figure}
+
+\begin{table}[h]
+\centering
+\caption{Cell means, temporal decay x stability x architecture.}
+\begin{tabular}{lllrr}
+\toprule
+arch & tmp\_f & stb\_f & mean & se \\
+\midrule
+amd64 & hi & hi & 44.29 & 1.94 \\
+amd64 & hi & lo & 42.50 & 1.93 \\
+amd64 & lo & hi & 42.76 & 1.93 \\
+amd64 & lo & lo & 43.05 & 1.90 \\
+aarch64 & hi & hi & 44.29 & 1.94 \\
+aarch64 & hi & lo & 42.50 & 1.93 \\
+aarch64 & lo & hi & 42.76 & 1.93 \\
+aarch64 & lo & lo & 43.05 & 1.90 \\
+riscv64 & hi & hi & 44.29 & 1.94 \\
+riscv64 & hi & lo & 42.50 & 1.93 \\
+riscv64 & lo & hi & 42.76 & 1.93 \\
+riscv64 & lo & lo & 43.05 & 1.90 \\
+\bottomrule
+\end{tabular}
+\end{table}
+
+\clearpage
+\begin{figure}[h]
+\centering
+\includegraphics[width=\textwidth]{interact_tmp_f_stb_f_earlyexit_light.pdf}
+\caption{temporal decay $\times$ stability interaction on \texttt{early\_exit} rate, faceted by architecture -- same factor pair, binary-outcome response.}
+\end{figure}
+
+\clearpage
+
diff --git a/experiments/bare_metal/analysis/report/sections/isa_aarch64.tex b/experiments/bare_metal/analysis/report/sections/isa_aarch64.tex
new file mode 100644
index 0000000..f6b7c71
--- /dev/null
+++ b/experiments/bare_metal/analysis/report/sections/isa_aarch64.tex
@@ -0,0 +1,42 @@
+\subsection{Architecture: aarch64}
+\label{sec:isa_aarch64}
+
+All three seeds' cells for aarch64 combined: 1{,}440 rows, zero errors. Seed remains the dominant source of variation within this architecture alone (Kruskal-Wallis $H=50.76$, $p=9.51e-12$) -- identical in shape to the other two architectures (see \S\ref{sec:isa_amd64}--\ref{sec:isa_riscv64}).
+
+\begin{figure}[h]
+\centering
+\includegraphics[width=0.75\textwidth]{isa_aarch64_seed_violin_light.pdf}
+\caption{aarch64: infer\_dec\_q distribution by seed (violin + inner boxplot).}
+\end{figure}
+
+\begin{table}[h]
+\centering
+\caption{Per-seed summary, aarch64.}
+\begin{tabular}{lrrrr}
+\toprule
+seed & mean & sd & median & early-exit rate \\
+\midrule
+12345 & 56.85 & 29.30 & 68.0 & 0.988 \\
+67890 & 28.09 & 38.34 & 0.0 & 0.990 \\
+13579 & 44.50 & 35.48 & 68.0 & 0.992 \\
+\bottomrule
+\end{tabular}
+\end{table}
+
+\begin{table}[h]
+\centering
+\caption{Per-factor main-effect means, aarch64 (all seeds pooled).}
+\begin{tabular}{lrrrr}
+\toprule
+factor & mean (hi) & mean (lo) & difference \\
+\midrule
+entropy & 43.80 & 42.50 & 1.30 \\
+coeff.\ of variation & 43.11 & 43.18 & -0.07 \\
+temporal decay & 43.39 & 42.90 & 0.49 \\
+stability & 43.52 & 42.77 & 0.75 \\
+\bottomrule
+\end{tabular}
+\end{table}
+
+\clearpage
+
diff --git a/experiments/bare_metal/analysis/report/sections/isa_amd64.tex b/experiments/bare_metal/analysis/report/sections/isa_amd64.tex
new file mode 100644
index 0000000..ed8319a
--- /dev/null
+++ b/experiments/bare_metal/analysis/report/sections/isa_amd64.tex
@@ -0,0 +1,42 @@
+\subsection{Architecture: amd64}
+\label{sec:isa_amd64}
+
+All three seeds' cells for amd64 combined: 1{,}440 rows, zero errors. Seed remains the dominant source of variation within this architecture alone (Kruskal-Wallis $H=50.76$, $p=9.51e-12$) -- identical in shape to the other two architectures (see \S\ref{sec:isa_amd64}--\ref{sec:isa_riscv64}).
+
+\begin{figure}[h]
+\centering
+\includegraphics[width=0.75\textwidth]{isa_amd64_seed_violin_light.pdf}
+\caption{amd64: infer\_dec\_q distribution by seed (violin + inner boxplot).}
+\end{figure}
+
+\begin{table}[h]
+\centering
+\caption{Per-seed summary, amd64.}
+\begin{tabular}{lrrrr}
+\toprule
+seed & mean & sd & median & early-exit rate \\
+\midrule
+12345 & 56.85 & 29.30 & 68.0 & 0.988 \\
+67890 & 28.09 & 38.34 & 0.0 & 0.990 \\
+13579 & 44.50 & 35.48 & 68.0 & 0.992 \\
+\bottomrule
+\end{tabular}
+\end{table}
+
+\begin{table}[h]
+\centering
+\caption{Per-factor main-effect means, amd64 (all seeds pooled).}
+\begin{tabular}{lrrrr}
+\toprule
+factor & mean (hi) & mean (lo) & difference \\
+\midrule
+entropy & 43.80 & 42.50 & 1.30 \\
+coeff.\ of variation & 43.11 & 43.18 & -0.07 \\
+temporal decay & 43.39 & 42.90 & 0.49 \\
+stability & 43.52 & 42.77 & 0.75 \\
+\bottomrule
+\end{tabular}
+\end{table}
+
+\clearpage
+
diff --git a/experiments/bare_metal/analysis/report/sections/isa_riscv64.tex b/experiments/bare_metal/analysis/report/sections/isa_riscv64.tex
new file mode 100644
index 0000000..0ff0e4e
--- /dev/null
+++ b/experiments/bare_metal/analysis/report/sections/isa_riscv64.tex
@@ -0,0 +1,42 @@
+\subsection{Architecture: riscv64}
+\label{sec:isa_riscv64}
+
+All three seeds' cells for riscv64 combined: 1{,}440 rows, zero errors. Seed remains the dominant source of variation within this architecture alone (Kruskal-Wallis $H=50.76$, $p=9.51e-12$) -- identical in shape to the other two architectures (see \S\ref{sec:isa_amd64}--\ref{sec:isa_riscv64}).
+
+\begin{figure}[h]
+\centering
+\includegraphics[width=0.75\textwidth]{isa_riscv64_seed_violin_light.pdf}
+\caption{riscv64: infer\_dec\_q distribution by seed (violin + inner boxplot).}
+\end{figure}
+
+\begin{table}[h]
+\centering
+\caption{Per-seed summary, riscv64.}
+\begin{tabular}{lrrrr}
+\toprule
+seed & mean & sd & median & early-exit rate \\
+\midrule
+12345 & 56.85 & 29.30 & 68.0 & 0.988 \\
+67890 & 28.09 & 38.34 & 0.0 & 0.990 \\
+13579 & 44.50 & 35.48 & 68.0 & 0.992 \\
+\bottomrule
+\end{tabular}
+\end{table}
+
+\begin{table}[h]
+\centering
+\caption{Per-factor main-effect means, riscv64 (all seeds pooled).}
+\begin{tabular}{lrrrr}
+\toprule
+factor & mean (hi) & mean (lo) & difference \\
+\midrule
+entropy & 43.80 & 42.50 & 1.30 \\
+coeff.\ of variation & 43.11 & 43.18 & -0.07 \\
+temporal decay & 43.39 & 42.90 & 0.49 \\
+stability & 43.52 & 42.77 & 0.75 \\
+\bottomrule
+\end{tabular}
+\end{table}
+
+\clearpage
+
diff --git a/experiments/bare_metal/analysis/report/sections/quad_cv_in.tex b/experiments/bare_metal/analysis/report/sections/quad_cv_in.tex
new file mode 100644
index 0000000..49cad1b
--- /dev/null
+++ b/experiments/bare_metal/analysis/report/sections/quad_cv_in.tex
@@ -0,0 +1,13 @@
+\subsection{Response to coefficient of variation}
+\label{sec:quad_cv_in}
+
+Only two levels of coefficient of variation were sampled (hi/lo) by the L8 factorial design, so a genuine quadratic term is not identifiable from this dataset -- a third, intermediate level would be needed to separate curvature from the linear effect. Reported here as the linear main-effect model instead: linear term $p=0.949$.
+
+\begin{figure}[h]
+\centering
+\includegraphics[width=0.75\textwidth]{quad_cv_in_light.pdf}
+\caption{Mean infer\_dec\_q vs.\ coefficient of variation level, by architecture.}
+\end{figure}
+
+\clearpage
+
diff --git a/experiments/bare_metal/analysis/report/sections/quad_ent_in.tex b/experiments/bare_metal/analysis/report/sections/quad_ent_in.tex
new file mode 100644
index 0000000..467ccd9
--- /dev/null
+++ b/experiments/bare_metal/analysis/report/sections/quad_ent_in.tex
@@ -0,0 +1,13 @@
+\subsection{Response to entropy}
+\label{sec:quad_ent_in}
+
+Only two levels of entropy were sampled (hi/lo) by the L8 factorial design, so a genuine quadratic term is not identifiable from this dataset -- a third, intermediate level would be needed to separate curvature from the linear effect. Reported here as the linear main-effect model instead: linear term $p=0.242$.
+
+\begin{figure}[h]
+\centering
+\includegraphics[width=0.75\textwidth]{quad_ent_in_light.pdf}
+\caption{Mean infer\_dec\_q vs.\ entropy level, by architecture.}
+\end{figure}
+
+\clearpage
+
diff --git a/experiments/bare_metal/analysis/report/sections/quad_stb_in.tex b/experiments/bare_metal/analysis/report/sections/quad_stb_in.tex
new file mode 100644
index 0000000..cdf8e16
--- /dev/null
+++ b/experiments/bare_metal/analysis/report/sections/quad_stb_in.tex
@@ -0,0 +1,13 @@
+\subsection{Response to stability}
+\label{sec:quad_stb_in}
+
+Only two levels of stability were sampled (hi/lo) by the L8 factorial design, so a genuine quadratic term is not identifiable from this dataset -- a third, intermediate level would be needed to separate curvature from the linear effect. Reported here as the linear main-effect model instead: linear term $p=0.501$.
+
+\begin{figure}[h]
+\centering
+\includegraphics[width=0.75\textwidth]{quad_stb_in_light.pdf}
+\caption{Mean infer\_dec\_q vs.\ stability level, by architecture.}
+\end{figure}
+
+\clearpage
+
diff --git a/experiments/bare_metal/analysis/report/sections/quad_tmp_in.tex b/experiments/bare_metal/analysis/report/sections/quad_tmp_in.tex
new file mode 100644
index 0000000..7a794e5
--- /dev/null
+++ b/experiments/bare_metal/analysis/report/sections/quad_tmp_in.tex
@@ -0,0 +1,13 @@
+\subsection{Response to temporal decay}
+\label{sec:quad_tmp_in}
+
+Only two levels of temporal decay were sampled (hi/lo) by the L8 factorial design, so a genuine quadratic term is not identifiable from this dataset -- a third, intermediate level would be needed to separate curvature from the linear effect. Reported here as the linear main-effect model instead: linear term $p=0.659$.
+
+\begin{figure}[h]
+\centering
+\includegraphics[width=0.75\textwidth]{quad_tmp_in_light.pdf}
+\caption{Mean infer\_dec\_q vs.\ temporal decay level, by architecture.}
+\end{figure}
+
+\clearpage
+
diff --git a/experiments/bare_metal/analysis/report/stadium_relaunch_report.pdf b/experiments/bare_metal/analysis/report/stadium_relaunch_report.pdf
new file mode 100644
index 0000000..af85569
Binary files /dev/null and b/experiments/bare_metal/analysis/report/stadium_relaunch_report.pdf differ
diff --git a/experiments/bare_metal/analysis/report/stadium_relaunch_report.tex b/experiments/bare_metal/analysis/report/stadium_relaunch_report.tex
new file mode 100644
index 0000000..711c348
--- /dev/null
+++ b/experiments/bare_metal/analysis/report/stadium_relaunch_report.tex
@@ -0,0 +1,472 @@
+\documentclass[10pt,a4paper]{article}
+
+%% ── Packages ──────────────────────────────────────────────────────────────────
+\usepackage[T1]{fontenc}
+\usepackage[utf8]{inputenc}
+\usepackage[margin=2.5cm]{geometry}
+\usepackage{graphicx}
+\usepackage{subcaption}
+\usepackage{booktabs}
+\usepackage{siunitx}
+\usepackage{amsmath}
+\usepackage{amssymb}
+\usepackage{xcolor}
+\usepackage{microtype}
+\usepackage{parskip}
+\usepackage{enumitem}
+\usepackage[hidelinks,colorlinks=true,linkcolor=black,citecolor=black,urlcolor=blue]{hyperref}
+\usepackage{lmodern}
+\usepackage{longtable}
+
+%% ── Colour palette (matches bare_metal_doe_report.tex) ──────────────────────
+\definecolor{sfblue}{RGB}{31,119,180}
+\definecolor{sforange}{RGB}{255,127,14}
+\definecolor{sfgreen}{RGB}{44,160,44}
+\definecolor{sfgray}{RGB}{80,80,80}
+
+\graphicspath{{figures/}}
+
+\title{%
+ \textbf{LithosAnanke Stadium-Substrate Relaunch}\\[0.4em]
+ \large A 3$\times$3 Latin Square Re-Verification of the EXEC-DOE Campaign
+ Mechanism, and a Real Fisher-Yates Correctness Bug Found and Fixed Along
+ the Way
+}
+\author{%
+ R.\,A. James (Captain Bob)\\[0.2em]
+ \small StarForth Project \quad\texttt{robert.allan.james@gmail.com}
+}
+\date{%
+ 20 August 2026\\[0.2em]
+ \textnormal{(Patent Pending --- Provisional Filed December 2025)}
+}
+
+\begin{document}
+\maketitle
+\thispagestyle{empty}
+\clearpage
+\tableofcontents
+\clearpage
+
+\begin{abstract}
+\noindent
+We re-verify the \texttt{EXEC-DOE} campaign mechanism on the LithosAnanke
+UEFI microkernel's Stadium substrate, following item 4.6's Stadium-admission
+migration for Artemis (the storage-heat subsystem). A first campaign
+attempt surfaced a real, previously-unknown correctness bug: \texttt{SWAP-MTX}
+--- the word implementing the Fisher-Yates shuffle behind every historical
+\texttt{EXEC-DOE}/\texttt{DOE} run, including the original June 2026
+ACL-RWT campaign --- silently duplicated some \texttt{RUN-MATRIX} cells and
+destroyed others rather than swapping them, so no campaign ever run with
+this code was drawing from a genuine uniform permutation. We trace the bug
+to a single mistargeted store, fix it with an unambiguous four-variable
+swap, and verify the fix empirically on the hosted build and across all
+three architectures under full three-arch QEMU acceptance. We then re-run
+the full 9-cell campaign (3 seeds $\times$ \textsc{amd64}/\textsc{aarch64}/
+\textsc{riscv64}) fresh, in randomized order with an independent clean
+build per cell, against the corrected shuffle. All 9 cells now draw a
+genuine uniform permutation: every one of the 16 L8 factor configurations
+appears exactly 30 times per cell, 4{,}320/4{,}320 rows captured, zero
+runtime errors. Seven of the campaign's sixteen recorded metrics
+(\texttt{l8\_mode}, \texttt{win\_div}, \texttt{infer\_win},
+\texttt{infer\_var\_q}, \texttt{bc\_mean\_q}, \texttt{bb\_mean\_q},
+\texttt{fit\_q}) are exactly invariant across all 4{,}320 rows --- zero
+variance, not merely statistically indistinguishable. The one metric with
+real variation, \texttt{infer\_dec\_q} (Loop 6's decay-slope inference
+estimator), depends only on the run seed and is architecture-invariant to
+floating-point precision (ANOVA: architecture and every architecture
+interaction term at Sum Sq~$=0$, $p=1.000$); a within-seed, cross-architecture
+identity this strong, alongside a highly significant within-ISA seed effect
+($H=50.76$, $p=9.5\times10^{-12}$, identical across all three ISAs),
+indicates the effect is genuinely path-dependent on shuffle order rather
+than a hardware artifact. This campaign validates the mechanism, not an
+ACL overhead measurement: \texttt{ACL.4th} is not self-activated in this
+repo's default boot configuration, so every cell here ran with ACL
+inactive.
+\end{abstract}
+
+\section{Context}
+
+Item 4.6 (Section H, \texttt{FABRIC-2.md}) migrated Artemis's block-heat
+tracking onto Stadium-resident cells, fixing a quota-grant-ordering bug
+that had been causing her boot-time stress self-test to fail 100\% of the
+time on all three architectures. With that item closed, the next open
+question --- item 5.1 in the same document --- was whether a green POST
+suite and a clean stress-test pass are themselves evidence that
+determinism survives the Stadium substrate change, or whether a real DoE
+campaign is needed to say so. This report is that campaign.
+
+The original ACL-RWT DoE campaign (June 2026, documented in
+\texttt{bare\_metal\_doe\_report.tex}) used \texttt{doe.4th}'s
+\texttt{EXEC-DOE~( seed n-reps~--~)} word: 16 L8 factor configurations
+$\times$ 30 replications, Fisher-Yates shuffled into a randomized run
+order, across 3 seeds and 3 architectures --- the same 3$\times$3 Latin
+square structure this report reuses. Two mechanism-level findings preceded
+the campaign proper and are recorded in \S\ref{sec:methodology} because
+they materially shaped how the data here was collected.
+
+\section{Methodology}
+\label{sec:methodology}
+
+\subsection{Console-interleaving bug in \texttt{EXEC-DOE}'s own output}
+
+\texttt{EXEC-DOE} is not auto-run at boot (\texttt{init.4th} loads no DoE
+mechanism at all); it must be loaded via \texttt{S"~doe.4th"~EXEC} and
+invoked interactively at the live \texttt{ok>} prompt. Driving this
+required building QEMU-serial-socket injection tooling (\texttt{socat}
+against the Unix-domain socket \texttt{Makefile.starkernel}'s \texttt{qemu}
+target already exposes per architecture). The first pilot cell completed
+cleanly to \texttt{DOE: complete} with zero VM errors, but only 1 of the
+expected 480 \texttt{EMIT-ROW} lines survived in the serial log --- the
+routine per-tick \texttt{[HADES][DOE]} heartbeat export shares the same
+console as \texttt{EXEC-DOE}'s own CSV rows, and clobbers them almost
+every time. \texttt{HB-OFF} immediately before \texttt{EXEC-DOE},
+\texttt{HB-ON} once \texttt{DOE: complete} appears, recovers all 480 rows
+cleanly. This is the same interaction-with-shared-console bug class as the
+one found for the framebuffer \texttt{PLOT} word during the turtle-graphics
+verification work earlier in the same development cycle.
+
+\subsection{The \texttt{SWAP-MTX} bug}
+\label{sec:swapmtx}
+
+Building the analysis for a first full campaign attempt surfaced a
+`\texttt{cfg}' value (one of 16 L8 configurations) completely absent from
+2 of 3 seeds' output, present for the third --- reproduced identically
+across all three architectures for a given seed. Root-caused rather than
+worked around: \texttt{SWAP-MTX} (\texttt{capsules/doe.4th}, Block 2104),
+the word `\texttt{SHUFFLE-MATRIX}' calls to perform each Fisher-Yates
+swap, does not swap.
+
+\begin{verbatim}
+: SWAP-MTX ( i j -- )
+ OVER MATRIX@ >R
+ OVER MATRIX@ ROT MATRIX! \ writes mat[i] back into mat[i] -- a no-op,
+ \ NOT mat[j]!
+ R> SWAP MATRIX! ; \ writes old mat[i] into mat[j] -- only half
+ \ a swap
+\end{verbatim}
+
+A direct empirical test on the hosted build confirms the defect precisely:
+\texttt{INIT-MATRIX} gives \texttt{mat[0]=0, mat[5]=5}; after
+\texttt{0 5 SWAP-MTX}, \texttt{mat[0]=0} (unchanged --- should be
+\texttt{5}) and \texttt{mat[5]=0} (correctly received the old
+\texttt{mat[0]}, but the original value \texttt{5} is permanently
+destroyed, never written anywhere). Every Fisher-Yates shuffle this
+mechanism has ever performed silently duplicated some values and dropped
+others --- not a true permutation, for any campaign ever run with this
+code, including the original June 2026 ACL-RWT campaign this report's own
+methodology is modeled on. The bug predates this development cycle
+entirely; it was not introduced by the Stadium migration.
+
+The fix replaces the clever-but-wrong stack juggling with four explicit
+temporary variables, trivially verifiable by inspection:
+
+\begin{verbatim}
+VARIABLE SW-I VARIABLE SW-J VARIABLE SW-VI VARIABLE SW-VJ
+: SWAP-MTX ( i j -- )
+ SW-J ! SW-I !
+ SW-I @ MATRIX@ SW-VI !
+ SW-J @ MATRIX@ SW-VJ !
+ SW-VJ @ SW-I @ MATRIX!
+ SW-VI @ SW-J @ MATRIX! ;
+\end{verbatim}
+
+Verified on the hosted build for all three campaign seeds (each now
+produces all 16 \texttt{cfg} values exactly 30 times, \texttt{run\_id}
+0--479 fully distinct) and via full three-arch QEMU acceptance: identical
+\texttt{1012/0/0} POST totals and identical
+\texttt{dict\_hash=0x5935ce53526d2152} on \textsc{amd64}, \textsc{aarch64},
+and \textsc{riscv64} (expected --- \texttt{doe.4th} is capsule-level
+content, not C-registered, and is not auto-loaded at boot, so the base
+dictionary is untouched by this fix).
+
+\subsection{Campaign protocol}
+
+A first full 9-cell attempt was run as three architecture-blocked loops
+(all 3 \textsc{amd64} seeds, then all 3 \textsc{aarch64}, then all 3
+\textsc{riscv64}), reusing one build per architecture. This was caught and
+discarded before use: blocking by architecture confounds ISA with
+session/time order --- exactly the systematic drift a Latin square design
+exists to control against --- and reusing one build across seeds does not
+match ``every ISA--seed pairing occupies a unique session,'' the original
+campaign's own stated design principle. The data reported here is a
+complete re-run: all 9 (architecture, seed) cells in one continuous
+sitting, run order randomized up front (Python \texttt{random.shuffle}),
+an independent \texttt{clean} plus full rebuild immediately before every
+single cell, against the fixed \texttt{SWAP-MTX}.
+
+\section{Results}
+
+\subsection{Layer 1 --- the campaign as a conglomerate Latin square}
+
+\begin{table}[h]
+\centering
+\caption{Per-cell completeness and \texttt{infer\_dec\_q} summary, all 9 cells.}
+\begin{tabular}{llrrrrr}
+\toprule
+Arch & Seed & Rows & Distinct \texttt{cfg} & mean \texttt{infer\_dec\_q} & sd & early-exit rate \\
+\midrule
+amd64 & 12345 & 480/480 & 16/16 & 56.85 & 29.30 & 0.988 \\
+amd64 & 67890 & 480/480 & 16/16 & 28.09 & 38.34 & 0.990 \\
+amd64 & 13579 & 480/480 & 16/16 & 44.50 & 35.48 & 0.992 \\
+aarch64 & 12345 & 480/480 & 16/16 & 56.85 & 29.30 & 0.988 \\
+aarch64 & 67890 & 480/480 & 16/16 & 28.09 & 38.34 & 0.990 \\
+aarch64 & 13579 & 480/480 & 16/16 & 44.50 & 35.48 & 0.992 \\
+riscv64 & 12345 & 480/480 & 16/16 & 56.85 & 29.30 & 0.988 \\
+riscv64 & 67890 & 480/480 & 16/16 & 28.09 & 38.34 & 0.990 \\
+riscv64 & 13579 & 480/480 & 16/16 & 44.50 & 35.48 & 0.992 \\
+\bottomrule
+\end{tabular}
+\end{table}
+
+Every cell captured all 480 expected rows with zero runtime errors. The
+mean and standard deviation of \texttt{infer\_dec\_q} --- and the
+early-exit rate --- are identical to displayed precision within each seed
+across all three architectures; the only variation in this table runs
+\emph{down} the seed axis, never across the architecture axis.
+
+\begin{figure}[h]
+\centering
+\includegraphics[width=0.85\textwidth]{stadium_fixed_latin_square_light.pdf}
+\caption{Aggregate Latin-square view: mean \texttt{infer\_dec\_q} per
+ (architecture, seed) cell. Columns are visually identical within a row
+ --- the defining signature of architecture-invariance.}
+\end{figure}
+
+Seven of the sixteen recorded fields are exactly invariant across all
+4{,}320 rows in the entire campaign: \texttt{l8\_mode} (always 7),
+\texttt{win\_div} (always 246), \texttt{infer\_win} (always 256),
+\texttt{infer\_var\_q} (always $-1$), \texttt{bc\_mean\_q} and
+\texttt{bb\_mean\_q} (always 0 --- the Bayesian cache/bucket means are
+never populated over this workload's short runtime), and \texttt{fit\_q}
+(always 52429). This is a stronger invariance statement than the original
+report's ANOVA-based finding (``CV~$=0.000\%$, $p=1.000$''): here the
+variance is exactly zero, not merely statistically indistinguishable from
+zero, so no significance test is even meaningful for these seven fields.
+
+\subsection{Layer 2 --- per-ISA and per-cell breakdown}
+
+Restricting to the one field that does vary, \texttt{infer\_dec\_q}, an
+ANOVA against the four L8 binary input factors (entropy, coefficient of
+variation, temporal decay, stability), architecture, all four two-way
+factor--architecture interactions, and quadratic terms on each factor
+returns \texttt{arch} and every \texttt{arch} interaction term at exactly
+Sum Sq~$=0$, $F=0$, $p=1.000$ (Table~\ref{tab:anova}). A parallel logistic
+regression of \texttt{early\_exit} against the same factor set returns
+every architecture-related coefficient at $\sim 10^{-15}$ --- floating-point
+noise from perfect collinearity, not a real effect.
+
+\begin{table}[h]
+\centering
+\caption{ANOVA, \texttt{infer\_dec\_q} \textasciitilde{} (4 factors) $\times$ arch + quadratic terms.}
+\label{tab:anova}
+\begin{tabular}{lrrrr}
+\toprule
+Term & Df & Sum Sq & F value & $p$ \\
+\midrule
+ent\_f & 1 & 1829.10 & 1.369 & 0.242 \\
+cv\_f & 1 & 5.42 & 0.004 & 0.949 \\
+tmp\_f & 1 & 259.60 & 0.194 & 0.659 \\
+stb\_f & 1 & 605.25 & 0.453 & 0.501 \\
+arch & 2 & 0.00 & 0.000 & 1.000 \\
+ent\_f:arch & 2 & 0.00 & 0.000 & 1.000 \\
+cv\_f:arch & 2 & 0.00 & 0.000 & 1.000 \\
+tmp\_f:arch & 2 & 0.00 & 0.000 & 1.000 \\
+stb\_f:arch & 2 & 0.00 & 0.000 & 1.000 \\
+Residuals & 4305 & 5{,}752{,}465 & & \\
+\bottomrule
+\end{tabular}
+\end{table}
+
+None of the four L8 input factors reach significance either, individually
+or in interaction. What \emph{is} highly significant is the run seed
+itself, and specifically \emph{within} each architecture --- the exact
+question of subtle within-ISA interaction this report set out to check.
+
+\begin{figure}[h]
+\centering
+\includegraphics[width=\textwidth]{stadium_fixed_isa_seed_panel_light.pdf}
+\caption{Within-ISA seed consistency: \texttt{infer\_dec\_q} by seed,
+ faceted by architecture. Each panel is one ISA's own three seeds; the
+ three panels are visually identical to each other, and each shows the
+ same seed-dependent spread.}
+\end{figure}
+
+A Kruskal-Wallis test of \texttt{infer\_dec\_q} against seed, run
+independently within each architecture, returns the identical statistic
+in all three cases: $H=50.76$, $df=2$, $p=9.5\times10^{-12}$. The effect
+is real, large, and --- consistent with everything else in this report ---
+exactly reproduced regardless of which silicon it runs on.
+
+\begin{figure}[h]
+\centering
+\includegraphics[width=\textwidth]{stadium_fixed_interaction_light.pdf}
+\caption{ent\_in $\times$ tmp\_in interaction on mean \texttt{infer\_dec\_q},
+ faceted by architecture. Non-parallel lines within a panel would
+ indicate a genuine factor interaction; identical shapes across panels
+ confirm no architecture-dependent interaction exists.}
+\end{figure}
+
+\textbf{Interpretation.} \texttt{infer\_dec\_q} is Loop 6's decay-slope
+inference estimator (exponential regression over the rolling window of
+execution heat). Its dependence on seed rather than on the L8 factor
+levels themselves is consistent with path dependence: because the L8
+factor configuration is only one input to an adaptively-converging
+estimator, and the shuffle order (now genuinely uniform per seed, but
+still a distinct permutation per seed) determines the \emph{sequence} in
+which the estimator sees each configuration, different seeds can converge
+to different characteristic values even though every seed visits the same
+16 configurations the same number of times. This is a property of the
+inference engine's own statefulness, not evidence of nondeterminism ---
+the same seed, run three times on three different architectures, produces
+the identical value to the digit every time.
+
+\begin{figure}[h]
+\centering
+\includegraphics[width=0.9\textwidth]{stadium_fixed_percell_grid_light.pdf}
+\caption{Per-cell \texttt{infer\_dec\_q} distributions, full 3$\times$3
+ grid. Rows are architecture, columns are seed. Each column's three
+ panels (down a seed) are visually identical; each row's three panels
+ (across architectures, within a seed) are also visually identical to
+ each other --- the grid's redundancy is itself the finding.}
+\end{figure}
+
+\clearpage
+\section{Per-Cell Deep Dive}
+\label{sec:percell-deepdive}
+
+Layer 1 (\S\ref{sec:methodology} onward) established the campaign as a
+conglomerate: 9 cells, all structurally identical in completeness and
+error rate. This section dives into each cell's own internal data --- its
+own \texttt{infer\_dec\_q} distribution and its own per-configuration
+breakdown --- rather than only the pooled cross-cell view. The nine
+subsections that follow are ordered architecture-major, seed-minor;
+reading down a single seed column (e.g.\ \S\ref{sec:cell_amd64_seed12345},
+\S\ref{sec:cell_aarch64_seed12345}, \S\ref{sec:cell_riscv64_seed12345})
+shows the same seed reproduced identically across all three architectures,
+while reading across a single architecture's three subsections shows how
+that architecture's seeds diverge from one another.
+
+\input{sections/_include_cells}
+
+\clearpage
+\section{Per-ISA Deep Dive}
+\label{sec:perisa-deepdive}
+
+Where \S\ref{sec:percell-deepdive} isolated single cells, this section
+pools each architecture's three seeds together and asks the question
+Captain Bob posed directly: what do the subtle interactions \emph{within}
+a given ISA look like, independent of any cross-ISA comparison? Each
+subsection below covers one architecture's full 1{,}440-row pool: how its
+three seeds compare to each other (violin/box distribution, Kruskal-Wallis
+test) and how each of the four L8 factors behaves in isolation within that
+architecture alone.
+
+\input{sections/_include_isa}
+
+\clearpage
+\section{Factor Interactions}
+\label{sec:factor-interactions}
+
+The aggregate ANOVA (Table~\ref{tab:anova}) found no significant two-way
+interaction between any pair of the four L8 binary factors, pooled across
+architectures. This section reports each of the six possible factor pairs
+individually and explicitly, faceted by architecture, so that any
+architecture-specific interaction --- however small --- is visible rather
+than averaged away. Each subsection also reports the three-way
+(factor~$\times$~factor~$\times$~architecture) interaction term from the
+full model, which is the direct statistical test of whether a given
+two-factor interaction itself depends on which ISA it runs on.
+
+\input{sections/_include_interactions}
+
+\clearpage
+\section{Per-Factor Response (Linear/Quadratic)}
+\label{sec:factor-response}
+
+Captain Bob asked that quadratic terms (``sqr~x, sqr~y'') be considered
+alongside linear main effects. The L8 factorial design samples only two
+levels (hi/lo) per factor, which does not identify a true quadratic
+response --- curvature requires a third, intermediate level not present in
+this design. Each subsection below reports the linear response instead,
+by architecture, with that limitation stated explicitly rather than
+fitting a quadratic term the data cannot actually support.
+
+\input{sections/_include_quad}
+
+\clearpage
+\section{Discussion}
+
+\subsection{What this campaign validates}
+
+Item 5.1's own framing was that a green POST suite is not evidence
+determinism survives a substrate change of this size. This campaign
+answers that directly: the \texttt{EXEC-DOE} mechanism runs cleanly,
+completely, and reproducibly on the post-item-4.6 Stadium substrate, under
+proper randomized-order and independent-build discipline, across all
+three supported architectures. Architecture-invariance --- the central
+finding of the original ACL-RWT campaign --- is not merely preserved but
+reinforced: where the original report found statistical indistinguishability
+(ANOVA $p=1.000$ on execution rate), this campaign finds exact,
+bit-identical invariance on seven of sixteen recorded fields and an ANOVA
+Sum Sq of precisely zero on the one field that does vary.
+
+\subsection{What this campaign does \emph{not} do}
+
+\texttt{ACL.4th} is not self-activated in this repository's default
+\texttt{init.4th} (\verb|\ S" ACL.4th" EXEC|, commented out); every cell in
+this campaign, like every other boot recorded in \texttt{FABRIC-2.md}, ran
+with ACL inactive. This report validates the campaign mechanism and its
+determinism properties; it does not produce an ACL-RWT overhead number.
+Reproducing the original campaign's \texttt{+0.0054\%--+0.0088\%} overhead
+measurement would need a paired run (ACL enabled vs.\ disabled) using this
+now-validated mechanism and tooling --- explicitly scoped, not attempted
+here.
+
+\subsection{A retroactive caveat on prior data}
+
+Because the \texttt{SWAP-MTX} bug (\S\ref{sec:swapmtx}) predates this
+development cycle, its correctness implications extend backward: any
+historical campaign that relied on \texttt{SHUFFLE-MATRIX} for a genuine
+random run order --- including the original June 2026 ACL-RWT campaign ---
+was not actually drawing from a uniform permutation. Whether this affects
+the original campaign's own conclusions is not assessed here; that
+campaign's total run counts and per-architecture tick totals do not depend
+on shuffle correctness (a non-bijective permutation still visits 480 slots
+exactly once each, just not with every value represented), and its central
+finding --- cross-architecture invariance --- is exactly the property this
+report independently reconfirms under the corrected shuffle. A first
+attempt at this report's own campaign, run against the buggy shuffle
+before the fix was found, is preserved as an audit artifact
+(\texttt{runs/acl-rwt-20260820/}) but is not the dataset used above.
+
+\section{Conclusion}
+
+The Stadium substrate change (item 4.6) does not disturb the
+compudynamic-invariance property this project's DoE methodology exists to
+verify. A real, previously-unknown Fisher-Yates correctness bug was found
+and fixed in the process --- not introduced by, and not specific to, the
+substrate change being verified --- improving the campaign infrastructure
+itself for every future DoE run built on \texttt{doe.4th}. The one
+metric with genuine variation in this dataset is fully explained by
+seed-dependent path history in an adaptively-converging estimator, not by
+any architecture-dependent effect; every architecture-related term in
+every model fit in this report resolves to exactly zero.
+
+\clearpage
+\appendix
+\section{Raw Data, All 9 Cells}
+\label{sec:raw-appendix}
+
+Full \texttt{run\_id}-ordered listing for every cell, 480 rows each,
+4{,}320 rows total. \texttt{entropy=hi} is 1 when the entropy factor was
+set high for that run, 0 when low; the other three binary factors
+(coefficient of variation, temporal decay, stability) are omitted from
+this listing for width but are fully recoverable from \texttt{cfg} (see
+\S\ref{sec:methodology}'s factor-decoding scheme, \texttt{CFG-ENT} etc.\
+in \texttt{capsules/doe.4th}). This appendix is the primary-source backing
+for every aggregate and per-cell statistic reported above.
+
+\input{sections/_include_appendix}
+
+\end{document}
diff --git a/experiments/bare_metal/analysis/tables/stadium_fixed_anova_full.txt b/experiments/bare_metal/analysis/tables/stadium_fixed_anova_full.txt
new file mode 100644
index 0000000..9766bb8
--- /dev/null
+++ b/experiments/bare_metal/analysis/tables/stadium_fixed_anova_full.txt
@@ -0,0 +1,14 @@
+Analysis of Variance Table
+
+Response: infer_dec_q
+ Df Sum Sq Mean Sq F value Pr(>F)
+ent_f 1 1829 1829.10 1.3689 0.2421
+cv_f 1 5 5.42 0.0041 0.9492
+tmp_f 1 260 259.60 0.1943 0.6594
+stb_f 1 605 605.25 0.4530 0.5010
+arch 2 0 0.00 0.0000 1.0000
+ent_f:arch 2 0 0.00 0.0000 1.0000
+cv_f:arch 2 0 0.00 0.0000 1.0000
+tmp_f:arch 2 0 0.00 0.0000 1.0000
+stb_f:arch 2 0 0.00 0.0000 1.0000
+Residuals 4305 5752465 1336.23
diff --git a/experiments/bare_metal/analysis/tables/stadium_fixed_cell_summary.csv b/experiments/bare_metal/analysis/tables/stadium_fixed_cell_summary.csv
new file mode 100644
index 0000000..d8fc06a
--- /dev/null
+++ b/experiments/bare_metal/analysis/tables/stadium_fixed_cell_summary.csv
@@ -0,0 +1,10 @@
+"arch","seed","n_rows","n_cfg","n_run_id","mean_infer_dec_q","sd_infer_dec_q","early_exit_rate","l8_mode_const","win_div_const","fit_q_const"
+"amd64","12345",480,16,480,56.8541666666667,29.2966182458014,0.9875,TRUE,TRUE,TRUE
+"amd64","67890",480,16,480,28.0854166666667,38.3427977824838,0.989583333333333,TRUE,TRUE,TRUE
+"amd64","13579",480,16,480,44.5,35.4835961394778,0.991666666666667,TRUE,TRUE,TRUE
+"aarch64","12345",480,16,480,56.8541666666667,29.2966182458014,0.9875,TRUE,TRUE,TRUE
+"aarch64","67890",480,16,480,28.0854166666667,38.3427977824838,0.989583333333333,TRUE,TRUE,TRUE
+"aarch64","13579",480,16,480,44.5,35.4835961394778,0.991666666666667,TRUE,TRUE,TRUE
+"riscv64","12345",480,16,480,56.8541666666667,29.2966182458014,0.9875,TRUE,TRUE,TRUE
+"riscv64","67890",480,16,480,28.0854166666667,38.3427977824838,0.989583333333333,TRUE,TRUE,TRUE
+"riscv64","13579",480,16,480,44.5,35.4835961394778,0.991666666666667,TRUE,TRUE,TRUE
diff --git a/experiments/bare_metal/analysis/tables/stadium_fixed_kw_within_isa.csv b/experiments/bare_metal/analysis/tables/stadium_fixed_kw_within_isa.csv
new file mode 100644
index 0000000..2180bcf
--- /dev/null
+++ b/experiments/bare_metal/analysis/tables/stadium_fixed_kw_within_isa.csv
@@ -0,0 +1,4 @@
+"arch","H","df","p"
+"amd64",50.7569110985713,2,9.51210850642286e-12
+"aarch64",50.7569110985713,2,9.51210850642286e-12
+"riscv64",50.7569110985713,2,9.51210850642286e-12
diff --git a/experiments/bare_metal/analysis/tables/stadium_fixed_logit_early_exit.txt b/experiments/bare_metal/analysis/tables/stadium_fixed_logit_early_exit.txt
new file mode 100644
index 0000000..2704eba
--- /dev/null
+++ b/experiments/bare_metal/analysis/tables/stadium_fixed_logit_early_exit.txt
@@ -0,0 +1,33 @@
+
+Call:
+glm(formula = early_exit ~ (ent_f + cv_f + tmp_f + stb_f) * arch,
+ family = binomial(), data = all_data)
+
+Coefficients:
+ Estimate Std. Error z value Pr(>|z|)
+(Intercept) 4.118e+00 5.411e-01 7.612 2.71e-14 ***
+ent_flo 4.105e-01 5.302e-01 0.774 0.439
+cv_flo 7.011e-01 5.505e-01 1.273 0.203
+tmp_flo 4.105e-01 5.302e-01 0.774 0.439
+stb_flo -4.105e-01 5.302e-01 -0.774 0.439
+archaarch64 -7.403e-15 7.652e-01 0.000 1.000
+archriscv64 -7.626e-15 7.652e-01 0.000 1.000
+ent_flo:archaarch64 1.672e-14 7.498e-01 0.000 1.000
+ent_flo:archriscv64 1.472e-14 7.498e-01 0.000 1.000
+cv_flo:archaarch64 6.210e-15 7.786e-01 0.000 1.000
+cv_flo:archriscv64 7.805e-15 7.786e-01 0.000 1.000
+tmp_flo:archaarch64 3.743e-15 7.498e-01 0.000 1.000
+tmp_flo:archriscv64 5.025e-15 7.498e-01 0.000 1.000
+stb_flo:archaarch64 -1.461e-15 7.498e-01 0.000 1.000
+stb_flo:archriscv64 1.453e-16 7.498e-01 0.000 1.000
+---
+Signif. codes: 0 ‘***’ 0.001 ‘**’ 0.01 ‘*’ 0.05 ‘.’ 0.1 ‘ ’ 1
+
+(Dispersion parameter for binomial family taken to be 1)
+
+ Null deviance: 500.32 on 4319 degrees of freedom
+Residual deviance: 489.67 on 4305 degrees of freedom
+AIC: 519.67
+
+Number of Fisher Scoring iterations: 7
+