diff --git a/.env.example b/.env.example index f10f523..36f30d8 100644 --- a/.env.example +++ b/.env.example @@ -1,9 +1,19 @@ # Copy this file to .env and fill in the values. # .env is gitignored — never commit it. # -# Used by `make deploy` to push to GitHub before rsyncing to the VPS. -# If either variable is unset, the push step is skipped (rsync still runs). +# `make deploy` rsyncs the built _site/ to the VPS, then pushes the +# repository to GitHub. The Makefile aborts with a clear error if any +# of VPS_USER / VPS_HOST / VPS_PATH is unset. +# --- VPS deployment target ------------------------------------------------- +# SSH user on the deployment VPS. +VPS_USER= +# Hostname or IP of the deployment VPS. +VPS_HOST= +# Absolute path to the document root on the VPS (e.g. /var/www/levineuwirth.org). +VPS_PATH= + +# --- GitHub mirror push ---------------------------------------------------- # A GitHub fine-grained personal access token with Contents: read+write # on the levineuwirth.org repository. # Generate at: https://github.com/settings/tokens diff --git a/.gitignore b/.gitignore index f038a4b..b5d53f0 100644 --- a/.gitignore +++ b/.gitignore @@ -9,6 +9,38 @@ _cache/ *.swp *.swo +# Python bytecode caches +**/__pycache__/ +*.pyc +*.pyo + +# LaTeX build artifacts (sitewide — covers paper/, any future TeX sources) +*.aux +*.bbl +*.blg +*.brf +*.fdb_latexmk +*.fls +*.glo +*.gls +*.idx +*.ilg +*.ind +*.lof +*.lot +*.nav +*.out +*.snm +*.synctex.gz +*.toc +*.vrb +# PGF/TikZ scratch outputs +pgftest*.pdf +pgftest*.log +pgftest*.aux +# LaTeX run logs (scoped to paper/ — bare *.log would be too broad sitewide) +paper/*.log + # Data files that are generated at build time (not version-controlled) data/embeddings.json data/similar-links.json diff --git a/Makefile b/Makefile index 23c19bb..9b95bc2 100644 --- a/Makefile +++ b/Makefile @@ -6,6 +6,12 @@ export build: + # Auto-snapshot any uncommitted content/ changes BEFORE the build + # so the stability heuristic in build/Stability.hs sees a stable + # git history. If a subsequent step fails, the snapshot remains in + # the history — that's intentional. The next successful build + # either reuses it (no new content/ changes) or appends another + # snapshot on top, so failures don't disappear from the log. @git add content/ @git diff --cached --quiet || git commit -m "auto: $$(date -u +%Y-%m-%dT%H:%M:%SZ)" @date +%s > data/build-start.txt @@ -54,15 +60,23 @@ pdf-thumbs: fi deploy: clean build sign - git push -u origin main + @test -n "$(VPS_USER)" || (echo "deploy: VPS_USER not set in .env" >&2; exit 1) + @test -n "$(VPS_HOST)" || (echo "deploy: VPS_HOST not set in .env" >&2; exit 1) + @test -n "$(VPS_PATH)" || (echo "deploy: VPS_PATH not set in .env" >&2; exit 1) rsync -avz --delete _site/ $(VPS_USER)@$(VPS_HOST):$(VPS_PATH)/ + git push -u origin main +watch: export SITE_ENV = dev watch: cabal run site -- watch clean: cabal run site -- clean +# Dev build includes any in-progress drafts under content/drafts/essays/. +# SITE_ENV=dev is read by build/Site.hs; drafts are otherwise invisible to +# every build (make build / make deploy / cabal run site -- build directly). +dev: export SITE_ENV = dev dev: cabal run site -- clean cabal run site -- build diff --git a/README.md b/README.md index 90c2195..f6857bc 100644 --- a/README.md +++ b/README.md @@ -1 +1,86 @@ -# levineuwirth.org \ No newline at end of file +# levineuwirth.org + +Personal site of Levi Neuwirth — essays, blog posts, poetry, fiction, and music. +Built with [Hakyll](https://jaspervdj.be/hakyll/) and [Pandoc](https://pandoc.org/), +with a custom build system in `build/` and a Haskell + JS + Python toolchain. + +## Quickstart + +```sh +make build # one-shot production build into _site/ +make dev # dev build (drafts visible) + local server on :8000 +make watch # cabal-watch rebuild (drafts visible) +make clean # cabal run site -- clean +make deploy # clean → build → sign → push → rsync to VPS +``` + +`make build` always runs `make clean` implicitly when invoked from `make deploy`. +For day-to-day work, prefer `make dev` (which serves the site on +`http://localhost:8000`) or `make watch` (rebuilds on save without a server). + +**Run `make build` any time you add or replace binary assets** (JPEG/PNG +figures, PDFs, music assets). `make dev` and `make watch` skip the +`convert-images.sh` / `pdf-thumbs` preprocessing steps, so a fresh JPEG +will have no `.webp` companion and a fresh PDF will have no thumbnail +until a full `make build` regenerates them. Once the companions exist +they survive subsequent `make dev` runs. + +## Optional features + +- **Similar-links and embeddings.** `tools/embed.py` precomputes + page-level embeddings for the "Related" block. To enable: + + ```sh + uv sync # creates .venv with sentence-transformers, faiss-cpu + ``` + + The build silently skips embedding when `.venv` is absent. + +- **Client-side semantic search.** Downloads a quantized ONNX model + used by `static/js/semantic-search.js` (run once; files are gitignored): + + ```sh + make download-model + ``` + +- **Image conversion.** `make build` calls `tools/convert-images.sh` to + produce `.webp` companions next to every JPEG/PNG. Requires `cwebp` + (`libwebp` on Arch, `webp` on Debian/Ubuntu). + +- **PDF thumbnails.** `make pdf-thumbs` generates first-page thumbnails + for PDFs in `static/papers/` using `pdftoppm` (`poppler` on Arch, + `poppler-utils` on Debian/Ubuntu). Skipped silently when missing. + +## Configuration + +`.env` (gitignored, copy from `.env.example`) holds the GitHub PAT and +the VPS rsync target consumed by `make deploy`. Never commit it. + +## Repository layout + +- `build/` — Haskell build system (Hakyll rules, Pandoc filters, contexts). + See `build/Filters/` for the Pandoc AST transforms (sidenotes, + wikilinks, transclusion, score embedding, viz, …). +- `content/` — authored Markdown (essays, blog, poetry, fiction, music). +- `templates/` — Hakyll/Pandoc HTML templates. +- `static/` — CSS, JS, fonts, images, vendored PDF.js. +- `tools/` — Python tooling (embeddings, importers) and shell scripts. +- `data/` — generated and source data (commonplace.yaml, annotations.json, + bibliographies, similar-links.json). +- `paper/` — LaTeX source for in-progress academic papers. +- `spec.md` — full architectural notes and design intent. + +## Architecture pointers + +- `build/Site.hs` is the Hakyll rules entry point. +- `build/Patterns.hs` defines canonical content patterns shared by + Backlinks, Authors, Tags, and Site. +- `build/Compilers.hs` wires the Pandoc filter chain into Hakyll. +- `build/Filters/Images.hs` does WebP `` wrapping; requires + the `.webp` companions produced by `tools/convert-images.sh`. + +For deeper architectural detail, see `spec.md`. + +## License + +See `LICENSE`. diff --git a/paper/main.aux b/paper/main.aux deleted file mode 100644 index 3cb891d..0000000 --- a/paper/main.aux +++ /dev/null @@ -1,173 +0,0 @@ -\relax -\providecommand\hyper@newdestlabel[2]{} -\providecommand\HyField@AuxAddToFields[1]{} -\providecommand\HyField@AuxAddToCoFields[2]{} -\citation{fips203,fips204,fips205} -\citation{bettini2024} -\citation{kyber-avx2} -\citation{fips203} -\citation{ntt-survey} -\@writefile{toc}{\contentsline {section}{Abstract}{1}{section*.1}\protected@file@percent } -\@writefile{toc}{\contentsline {section}{\numberline {1}Introduction}{1}{section.1}\protected@file@percent } -\newlabel{sec:intro}{{1}{1}{Introduction}{section.1}{}} -\@writefile{toc}{\contentsline {section}{\numberline {2}Background}{1}{section.2}\protected@file@percent } -\newlabel{sec:background}{{2}{1}{Background}{section.2}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {2.1}ML-KEM and the Number Theoretic Transform}{1}{subsection.2.1}\protected@file@percent } -\citation{kyber-avx2} -\citation{papi} -\citation{rapl} -\citation{kyber-avx2} -\@writefile{toc}{\contentsline {subsection}{\numberline {2.2}AVX2 SIMD on x86-64}{2}{subsection.2.2}\protected@file@percent } -\@writefile{toc}{\contentsline {subsection}{\numberline {2.3}Compilation Variants}{2}{subsection.2.3}\protected@file@percent } -\@writefile{toc}{\contentsline {subsection}{\numberline {2.4}Hardware Performance Counters and Energy}{2}{subsection.2.4}\protected@file@percent } -\newlabel{sec:bg:papi}{{2.4}{2}{Hardware Performance Counters and Energy}{subsection.2.4}{}} -\@writefile{tdo}{\contentsline {todo}{Phase 2: Expand with PAPI and RAPL background once data is collected.}{2}{section*.6}\protected@file@percent } -\pgfsyspdfmark {pgfid1}{20915651}{45096352} -\pgfsyspdfmark {pgfid4}{38210436}{45099302} -\pgfsyspdfmark {pgfid5}{38980483}{44906577} -\@writefile{toc}{\contentsline {section}{\numberline {3}Methodology}{2}{section.3}\protected@file@percent } -\newlabel{sec:methodology}{{3}{2}{Methodology}{section.3}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {3.1}Implementation Source}{2}{subsection.3.1}\protected@file@percent } -\@writefile{toc}{\contentsline {subsection}{\numberline {3.2}Compilation Variants}{2}{subsection.3.2}\protected@file@percent } -\newlabel{sec:meth:variants}{{3.2}{2}{Compilation Variants}{subsection.3.2}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {3.3}Benchmark Harness}{2}{subsection.3.3}\protected@file@percent } -\@writefile{toc}{\contentsline {subsection}{\numberline {3.4}Hardware Platform}{2}{subsection.3.4}\protected@file@percent } -\@writefile{tdo}{\contentsline {todo}{Phase 2: Hardware counter collection via PAPI.}{3}{section*.7}\protected@file@percent } -\pgfsyspdfmark {pgfid6}{12703613}{37681124} -\pgfsyspdfmark {pgfid7}{2015231}{37684074} -\pgfsyspdfmark {pgfid8}{2785278}{37491349} -\@writefile{toc}{\contentsline {subsection}{\numberline {3.5}Statistical Methodology}{3}{subsection.3.5}\protected@file@percent } -\newlabel{sec:meth:stats}{{3.5}{3}{Statistical Methodology}{subsection.3.5}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {3.6}Energy Measurement}{3}{subsection.3.6}\protected@file@percent } -\newlabel{sec:meth:energy}{{3.6}{3}{Energy Measurement}{subsection.3.6}{}} -\@writefile{tdo}{\contentsline {todo}{Phase 2: Intel RAPL (pkg + DRAM domains), EDP computation, per-operation joules.}{3}{section*.8}\protected@file@percent } -\pgfsyspdfmark {pgfid11}{3538944}{24335452} -\pgfsyspdfmark {pgfid12}{2015231}{24338402} -\pgfsyspdfmark {pgfid13}{2785278}{24145677} -\@writefile{toc}{\contentsline {section}{\numberline {4}Results}{3}{section.4}\protected@file@percent } -\newlabel{sec:results}{{4}{3}{Results}{section.4}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {4.1}Cycle Count Distributions}{3}{subsection.4.1}\protected@file@percent } -\newlabel{sec:results:distributions}{{4.1}{3}{Cycle Count Distributions}{subsection.4.1}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {4.2}Speedup Decomposition}{3}{subsection.4.2}\protected@file@percent } -\newlabel{sec:results:decomp}{{4.2}{3}{Speedup Decomposition}{subsection.4.2}{}} -\@writefile{lof}{\contentsline {figure}{\numberline {1}{\ignorespaces Cycle count distributions for three representative ML-KEM-512 operations. Log $x$-axis. Dashed lines mark medians. Right-skew and outlier structure motivate nonparametric statistics.}}{3}{figure.caption.9}\protected@file@percent } -\providecommand*\caption@xref[2]{\@setref\relax\@undefined{#1}} -\newlabel{fig:distributions}{{1}{3}{Cycle count distributions for three representative \mlkemk {512} operations. Log $x$-axis. Dashed lines mark medians. Right-skew and outlier structure motivate nonparametric statistics}{figure.caption.9}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {4.3}Hand-Written SIMD Speedup}{3}{subsection.4.3}\protected@file@percent } -\newlabel{sec:results:simd}{{4.3}{3}{Hand-Written SIMD Speedup}{subsection.4.3}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {4.4}Statistical Significance}{3}{subsection.4.4}\protected@file@percent } -\newlabel{sec:results:stats}{{4.4}{3}{Statistical Significance}{subsection.4.4}{}} -\@writefile{lof}{\contentsline {figure}{\numberline {2}{\ignorespaces Cumulative speedup at each optimization stage, normalized to \texttt {refo0}{} (1×). Three bars per operation: \textcolor {colRefnv}{$\blacksquare $}\nonbreakingspace O3 no auto-vec, \textcolor {colRef}{$\blacksquare $}\nonbreakingspace O3 + auto-vec, \textcolor {colAvx}{$\blacksquare $}\nonbreakingspace O3 + hand SIMD (AVX2). Log $y$-axis; 95\% bootstrap CI shown on \texttt {avx2}{} bars. Sorted by \texttt {avx2}{} speedup.}}{4}{figure.caption.10}\protected@file@percent } -\newlabel{fig:decomp}{{2}{4}{Cumulative speedup at each optimization stage, normalized to \varrefo {} (1×). Three bars per operation: \textcolor {colRefnv}{$\blacksquare $}~O3 no auto-vec, \textcolor {colRef}{$\blacksquare $}~O3 + auto-vec, \textcolor {colAvx}{$\blacksquare $}~O3 + hand SIMD (AVX2). Log $y$-axis; 95\% bootstrap CI shown on \varavx {} bars. Sorted by \varavx {} speedup}{figure.caption.10}{}} -\@writefile{lof}{\contentsline {figure}{\numberline {3}{\ignorespaces Hand-written SIMD speedup (\texttt {ref}{} $\to $ \texttt {avx2}{}) per operation, across all three ML-KEM{} parameter sets. Log $y$-axis. 95\% bootstrap CI error bars (often sub-pixel). Sorted by ML-KEM-512 speedup.}}{4}{figure.caption.11}\protected@file@percent } -\newlabel{fig:handsimd}{{3}{4}{Hand-written SIMD speedup (\varref {} $\to $ \varavx {}) per operation, across all three \mlkem {} parameter sets. Log $y$-axis. 95\% bootstrap CI error bars (often sub-pixel). Sorted by \mlkemk {512} speedup}{figure.caption.11}{}} -\@writefile{lot}{\contentsline {table}{\numberline {1}{\ignorespaces Hand-written SIMD speedup (\texttt {ref}{} $\to $ \texttt {avx2}{}), median ratio with 95\% bootstrap CI. All Cliff's $\delta = +1.000$, $p < 10^{-300}$.}}{4}{table.caption.12}\protected@file@percent } -\newlabel{tab:simd}{{1}{4}{Hand-written SIMD speedup (\varref {} $\to $ \varavx {}), median ratio with 95\% bootstrap CI. All Cliff's $\delta = +1.000$, $p < 10^{-300}$}{table.caption.12}{}} -\@writefile{lof}{\contentsline {figure}{\numberline {4}{\ignorespaces Cliff's $\delta $ (\texttt {ref}{} vs.\ \texttt {avx2}{}) for all operations and parameter sets. $\delta = +1$: AVX2 is faster in every observation pair. Nearly all cells are at $+1.000$.}}{4}{figure.caption.13}\protected@file@percent } -\newlabel{fig:cliffs}{{4}{4}{Cliff's $\delta $ (\varref {} vs.\ \varavx {}) for all operations and parameter sets. $\delta = +1$: AVX2 is faster in every observation pair. Nearly all cells are at $+1.000$}{figure.caption.13}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {4.5}Cross-Parameter Consistency}{4}{subsection.4.5}\protected@file@percent } -\newlabel{sec:results:crossparams}{{4.5}{4}{Cross-Parameter Consistency}{subsection.4.5}{}} -\@writefile{lof}{\contentsline {figure}{\numberline {5}{\ignorespaces Per-polynomial operation speedup (\texttt {ref}{} $\to $ \texttt {avx2}{}) across security parameters. Polynomial dimension is 256 for all; variation reflects cache-state differences in the calling context.}}{5}{figure.caption.14}\protected@file@percent } -\newlabel{fig:crossparams}{{5}{5}{Per-polynomial operation speedup (\varref {} $\to $ \varavx {}) across security parameters. Polynomial dimension is 256 for all; variation reflects cache-state differences in the calling context}{figure.caption.14}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {4.6}Hardware Counter Breakdown}{5}{subsection.4.6}\protected@file@percent } -\newlabel{sec:results:papi}{{4.6}{5}{Hardware Counter Breakdown}{subsection.4.6}{}} -\@writefile{tdo}{\contentsline {todo}{Phase 2: IPC, L1/L2/L3 cache miss rates, branch mispredictions via PAPI. This section will contain bar charts of per-counter values comparing ref and avx2 for each operation, explaining the mechanistic origins of the speedup.}{5}{section*.15}\protected@file@percent } -\pgfsyspdfmark {pgfid264}{3538944}{21389118} -\pgfsyspdfmark {pgfid265}{2015231}{21392068} -\pgfsyspdfmark {pgfid266}{2785278}{21199343} -\@writefile{toc}{\contentsline {subsection}{\numberline {4.7}Energy Efficiency}{5}{subsection.4.7}\protected@file@percent } -\newlabel{sec:results:energy}{{4.7}{5}{Energy Efficiency}{subsection.4.7}{}} -\@writefile{tdo}{\contentsline {todo}{Phase 2: Intel RAPL pkg + DRAM energy readings per operation. EDP (energy-delay product) comparison. Energy per KEM operation.}{5}{section*.16}\protected@file@percent } -\pgfsyspdfmark {pgfid269}{3538944}{19496559} -\pgfsyspdfmark {pgfid270}{2015231}{-14840343} -\pgfsyspdfmark {pgfid271}{2785278}{-15033068} -\@writefile{toc}{\contentsline {section}{\numberline {5}Discussion}{5}{section.5}\protected@file@percent } -\newlabel{sec:discussion}{{5}{5}{Discussion}{section.5}{}} -\@writefile{toc}{\contentsline {subsection}{\numberline {5.1}Why Arithmetic Operations Benefit Most}{5}{subsection.5.1}\protected@file@percent } -\@writefile{tdo}{\contentsline {todo}{Phase 2: Confirm with IPC and port utilisation counters.}{5}{section*.17}\protected@file@percent } -\pgfsyspdfmark {pgfid274}{13184317}{5758368} -\pgfsyspdfmark {pgfid275}{2015231}{-36522418} -\pgfsyspdfmark {pgfid276}{2785278}{-36715143} -\@writefile{toc}{\contentsline {subsection}{\numberline {5.2}Why the Compiler Cannot Auto-Vectorise NTT}{5}{subsection.5.2}\protected@file@percent } -\@writefile{toc}{\contentsline {subsection}{\numberline {5.3}Why SHAKE Operations Benefit Less}{5}{subsection.5.3}\protected@file@percent } -\@writefile{toc}{\contentsline {subsection}{\numberline {5.4}Why Noise Sampling Barely Benefits}{5}{subsection.5.4}\protected@file@percent } -\@writefile{toc}{\contentsline {subsection}{\numberline {5.5}NTT Cache-State Variation Across Parameter Sets}{5}{subsection.5.5}\protected@file@percent } -\@writefile{tdo}{\contentsline {todo}{Phase 2: Verify with L1/L2 miss counters split by scalar vs AVX2.}{5}{section*.18}\protected@file@percent } -\pgfsyspdfmark {pgfid279}{25927376}{9612704} -\pgfsyspdfmark {pgfid282}{38210436}{9615654} -\pgfsyspdfmark {pgfid283}{38980483}{9422929} -\@writefile{toc}{\contentsline {subsection}{\numberline {5.6}Implications for Deployment}{5}{subsection.5.6}\protected@file@percent } -\citation{kyber-avx2} -\citation{pqclean} -\citation{kyber2018} -\citation{fips203} -\citation{pqm4} -\citation{supercop} -\citation{pqm4} -\citation{gueron2014} -\citation{bernstein2006} -\citation{ntt-survey} -\citation{cachetime} -\citation{papi} -\bibstyle{ACM-Reference-Format} -\bibdata{refs} -\bibcite{bernstein2006}{{1}{2006}{{Bernstein}}{{}}} -\bibcite{supercop}{{2}{[n.\,d.]}{{Bernstein and Lange}}{{}}} -\bibcite{cachetime}{{3}{2008}{{Bernstein and Schwabe}}{{}}} -\bibcite{kyber2018}{{4}{2018}{{Bos et~al\mbox {.}}}{{}}} -\bibcite{rapl}{{5}{2010}{{David et~al\mbox {.}}}{{}}} -\bibcite{bettini2024}{{6}{2023}{{Google Security Blog}}{{}}} -\@writefile{toc}{\contentsline {subsection}{\numberline {5.7}Limitations}{6}{subsection.5.7}\protected@file@percent } -\@writefile{toc}{\contentsline {paragraph}{No hardware counter data (Phase\nonbreakingspace 1).}{6}{section*.19}\protected@file@percent } -\@writefile{tdo}{\contentsline {todo}{Phase 2: PAPI counters: IPC, cache miss rates.}{6}{section*.20}\protected@file@percent } -\pgfsyspdfmark {pgfid284}{16379392}{38731168} -\pgfsyspdfmark {pgfid285}{2015231}{38734118} -\pgfsyspdfmark {pgfid286}{2785278}{38541393} -\@writefile{toc}{\contentsline {paragraph}{Single microarchitecture.}{6}{section*.21}\protected@file@percent } -\@writefile{tdo}{\contentsline {todo}{Phase 3: Repeat on AMD Zen, ARM Graviton3, RISC-V.}{6}{section*.22}\protected@file@percent } -\pgfsyspdfmark {pgfid289}{6791818}{34708896} -\pgfsyspdfmark {pgfid290}{2015231}{32453210} -\pgfsyspdfmark {pgfid291}{2785278}{32260485} -\@writefile{toc}{\contentsline {paragraph}{Frequency scaling.}{6}{section*.23}\protected@file@percent } -\@writefile{tdo}{\contentsline {todo}{Phase 2: Characterize frequency during benchmarks; consider RAPL-normalized cycle counts.}{6}{section*.24}\protected@file@percent } -\pgfsyspdfmark {pgfid294}{6161296}{30686624} -\pgfsyspdfmark {pgfid295}{2015231}{24009614} -\pgfsyspdfmark {pgfid296}{2785278}{23816889} -\@writefile{toc}{\contentsline {section}{\numberline {6}Related Work}{6}{section.6}\protected@file@percent } -\newlabel{sec:related}{{6}{6}{Related Work}{section.6}{}} -\@writefile{toc}{\contentsline {paragraph}{ML-KEM / Kyber implementations.}{6}{section*.25}\protected@file@percent } -\@writefile{toc}{\contentsline {paragraph}{PQC benchmarking.}{6}{section*.26}\protected@file@percent } -\@writefile{toc}{\contentsline {paragraph}{SIMD in cryptography.}{6}{section*.27}\protected@file@percent } -\@writefile{toc}{\contentsline {paragraph}{NTT optimization.}{6}{section*.28}\protected@file@percent } -\@writefile{toc}{\contentsline {paragraph}{Hardware counter profiling.}{6}{section*.29}\protected@file@percent } -\@writefile{toc}{\contentsline {section}{\numberline {7}Conclusion}{6}{section.7}\protected@file@percent } -\newlabel{sec:conclusion}{{7}{6}{Conclusion}{section.7}{}} -\@writefile{toc}{\contentsline {paragraph}{Future work.}{6}{section*.30}\protected@file@percent } -\@writefile{toc}{\contentsline {paragraph}{Artifact.}{6}{section*.31}\protected@file@percent } -\@writefile{toc}{\contentsline {section}{References}{6}{section*.33}\protected@file@percent } -\bibcite{gueron2014}{{7}{2013}{{Gueron and Krasnov}}{{}}} -\bibcite{papi}{{8}{[n.\,d.]}{{Innovative Computing Laboratory, University of Tennessee}}{{}}} -\bibcite{pqm4}{{9}{[n.\,d.]}{{Kannwischer et~al\mbox {.}}}{{}}} -\bibcite{ntt-survey}{{10}{2016}{{Longa and Naehrig}}{{}}} -\bibcite{fips204}{{11}{2024a}{{National Institute of Standards and Technology}}{{}}} -\bibcite{fips203}{{12}{2024b}{{National Institute of Standards and Technology}}{{}}} -\bibcite{fips205}{{13}{2024c}{{National Institute of Standards and Technology}}{{}}} -\bibcite{pqclean}{{14}{[n.\,d.]}{{PQClean Contributors}}{{}}} -\bibcite{kyber-avx2}{{15}{[n.\,d.]}{{Schwabe and Seiler}}{{}}} -\newlabel{tocindent-1}{0pt} -\newlabel{tocindent0}{0pt} -\newlabel{tocindent1}{6.25499pt} -\newlabel{tocindent2}{10.34999pt} -\newlabel{tocindent3}{0pt} -\newlabel{tocindent4}{0pt} -\newlabel{tocindent5}{0pt} -\@writefile{toc}{\contentsline {section}{\numberline {A}End-to-End KEM Speedup}{7}{appendix.A}\protected@file@percent } -\newlabel{sec:supp:kem}{{A}{7}{End-to-End KEM Speedup}{appendix.A}{}} -\@writefile{lof}{\contentsline {figure}{\numberline {6}{\ignorespaces End-to-end KEM speedup (\texttt {ref}{} $\to $ \texttt {avx2}{}) for \texttt {kyber\_keypair}, \texttt {kyber\_encaps}, and \texttt {kyber\_decaps}. Intel Xeon Platinum 8268; 95\% bootstrap CI.}}{7}{figure.caption.34}\protected@file@percent } -\newlabel{fig:kemlevel}{{6}{7}{End-to-end KEM speedup (\varref {} $\to $ \varavx {}) for \op {kyber\_keypair}, \op {kyber\_encaps}, and \op {kyber\_decaps}. Intel Xeon Platinum 8268; 95\% bootstrap CI}{figure.caption.34}{}} -\@writefile{toc}{\contentsline {section}{\numberline {B}Full Operation Set}{7}{appendix.B}\protected@file@percent } -\newlabel{sec:supp:fullops}{{B}{7}{Full Operation Set}{appendix.B}{}} -\@writefile{tdo}{\contentsline {todo}{Full operation speedup table for all 20 benchmarked operations, including \texttt {poly\_compress}, \texttt {poly\_decompress}, \texttt {polyvec\_compress}, \texttt {poly\_tomsg}, and the \texttt {*\_derand} KEM variants.}{7}{section*.35}\protected@file@percent } -\pgfsyspdfmark {pgfid319}{28801187}{27830541} -\newlabel{TotPages}{{7}{7}{}{page.7}{}} -\gdef \@abspage@last{7} diff --git a/paper/main.bbl b/paper/main.bbl deleted file mode 100644 index d418b18..0000000 --- a/paper/main.bbl +++ /dev/null @@ -1,237 +0,0 @@ -%%% -*-BibTeX-*- -%%% Do NOT edit. File created by BibTeX with style -%%% ACM-Reference-Format-Journals [18-Jan-2012]. - -\begin{thebibliography}{15} - -%%% ==================================================================== -%%% NOTE TO THE USER: you can override these defaults by providing -%%% customized versions of any of these macros before the \bibliography -%%% command. Each of them MUST provide its own final punctuation, -%%% except for \shownote{} and \showURL{}. The latter two -%%% do not use final punctuation, in order to avoid confusing it with -%%% the Web address. -%%% -%%% To suppress output of a particular field, define its macro to expand -%%% to an empty string, or better, \unskip, like this: -%%% -%%% \newcommand{\showURL}[1]{\unskip} % LaTeX syntax -%%% -%%% \def \showURL #1{\unskip} % plain TeX syntax -%%% -%%% ==================================================================== - -\ifx \showCODEN \undefined \def \showCODEN #1{\unskip} \fi -\ifx \showISBNx \undefined \def \showISBNx #1{\unskip} \fi -\ifx \showISBNxiii \undefined \def \showISBNxiii #1{\unskip} \fi -\ifx \showISSN \undefined \def \showISSN #1{\unskip} \fi -\ifx \showLCCN \undefined \def \showLCCN #1{\unskip} \fi -\ifx \shownote \undefined \def \shownote #1{#1} \fi -\ifx \showarticletitle \undefined \def \showarticletitle #1{#1} \fi -\ifx \showURL \undefined \def \showURL {\relax} \fi -% The following commands are used for tagged output and should be -% invisible to TeX -\providecommand\bibfield[2]{#2} -\providecommand\bibinfo[2]{#2} -\providecommand\natexlab[1]{#1} -\providecommand\showeprint[2][]{arXiv:#2} - -\bibitem[Bernstein(2006)]% - {bernstein2006} -\bibfield{author}{\bibinfo{person}{Daniel~J. Bernstein}.} - \bibinfo{year}{2006}\natexlab{}. -\newblock \bibinfo{title}{{Curve25519: new Diffie-Hellman speed records}}. -\newblock -\urldef\tempurl% -\url{https://cr.yp.to/ecdh.html} -\showURL{% -\tempurl} - - -\bibitem[Bernstein and Lange({[n.\,d.]})]% - {supercop} -\bibfield{author}{\bibinfo{person}{Daniel~J. Bernstein} {and} - \bibinfo{person}{Tanja Lange}.} \bibinfo{year}{[n.\,d.]}\natexlab{}. -\newblock \bibinfo{title}{{SUPERCOP: System for Unified Performance Evaluation - Related to Cryptographic Operations and Primitives}}. -\newblock -\urldef\tempurl% -\url{https://bench.cr.yp.to/supercop.html} -\showURL{% -\tempurl} - - -\bibitem[Bernstein and Schwabe(2008)]% - {cachetime} -\bibfield{author}{\bibinfo{person}{Daniel~J. Bernstein} {and} - \bibinfo{person}{Peter Schwabe}.} \bibinfo{year}{2008}\natexlab{}. -\newblock \bibinfo{title}{{New AES Software Speed Records}}. -\newblock -\urldef\tempurl% -\url{https://cr.yp.to/aes-speed.html} -\showURL{% -\tempurl} - - -\bibitem[Bos et~al\mbox{.}(2018)]% - {kyber2018} -\bibfield{author}{\bibinfo{person}{Joppe~W. Bos}, \bibinfo{person}{Léo Ducas}, - \bibinfo{person}{Eike Kiltz}, \bibinfo{person}{Tancrède Lepoint}, - \bibinfo{person}{Vadim Lyubashevsky}, \bibinfo{person}{John~M. Schanck}, - \bibinfo{person}{Peter Schwabe}, \bibinfo{person}{Gregor Seiler}, {and} - \bibinfo{person}{Damien Stehlé}.} \bibinfo{year}{2018}\natexlab{}. -\newblock \showarticletitle{{CRYSTALS -- Kyber: A CCA-Secure - Module-Lattice-Based KEM}}. In \bibinfo{booktitle}{\emph{IEEE European - Symposium on Security and Privacy (EuroS\&P)}}. \bibinfo{pages}{353--367}. -\newblock -\href{https://doi.org/10.1109/EuroSP.2018.00032}{doi:\nolinkurl{10.1109/EuroSP.2018.00032}} - - -\bibitem[David et~al\mbox{.}(2010)]% - {rapl} -\bibfield{author}{\bibinfo{person}{Howard David}, \bibinfo{person}{Eugene - Gorbatov}, \bibinfo{person}{Ulf~R. Hanebutte}, \bibinfo{person}{Rahul - Khanna}, {and} \bibinfo{person}{Christian Le}.} - \bibinfo{year}{2010}\natexlab{}. -\newblock \showarticletitle{{RAPL: Memory Power Estimation and Capping}}. In - \bibinfo{booktitle}{\emph{ISLPED}}. -\newblock -\href{https://doi.org/10.1145/1840845.1840883}{doi:\nolinkurl{10.1145/1840845.1840883}} - - -\bibitem[{Google Security Blog}(2023)]% - {bettini2024} -\bibfield{author}{\bibinfo{person}{{Google Security Blog}}.} - \bibinfo{year}{2023}\natexlab{}. -\newblock \bibinfo{title}{{Protecting Chrome Traffic with Hybrid Kyber KEM}}. -\newblock -\urldef\tempurl% -\url{https://security.googleblog.com/2023/08/protecting-chrome-traffic-with-hybrid.html} -\showURL{% -\tempurl} - - -\bibitem[Gueron and Krasnov(2013)]% - {gueron2014} -\bibfield{author}{\bibinfo{person}{Shay Gueron} {and} \bibinfo{person}{Vlad - Krasnov}.} \bibinfo{year}{2013}\natexlab{}. -\newblock \showarticletitle{{Fast Garbling of Circuits Under Standard - Assumptions}}. In \bibinfo{booktitle}{\emph{ACM CCS}}. -\newblock -\newblock -\shownote{See also: Intel white paper on AES-GCM with AVX2}. - - -\bibitem[{Innovative Computing Laboratory, University of - Tennessee}({[n.\,d.]})]% - {papi} -\bibfield{author}{\bibinfo{person}{{Innovative Computing Laboratory, University - of Tennessee}}.} \bibinfo{year}{[n.\,d.]}\natexlab{}. -\newblock \bibinfo{title}{{PAPI: Performance Application Programming - Interface}}. -\newblock -\urldef\tempurl% -\url{https://icl.utk.edu/papi/} -\showURL{% -\tempurl} - - -\bibitem[Kannwischer et~al\mbox{.}({[n.\,d.]})]% - {pqm4} -\bibfield{author}{\bibinfo{person}{Matthias~J. Kannwischer}, - \bibinfo{person}{Joost Rijneveld}, \bibinfo{person}{Peter Schwabe}, {and} - \bibinfo{person}{Ko Stoffelen}.} \bibinfo{year}{[n.\,d.]}\natexlab{}. -\newblock \bibinfo{title}{{pqm4: Post-quantum crypto library for the ARM - Cortex-M4}}. -\newblock -\urldef\tempurl% -\url{https://github.com/mupq/pqm4} -\showURL{% -\tempurl} - - -\bibitem[Longa and Naehrig(2016)]% - {ntt-survey} -\bibfield{author}{\bibinfo{person}{Patrick Longa} {and} - \bibinfo{person}{Michael Naehrig}.} \bibinfo{year}{2016}\natexlab{}. -\newblock \showarticletitle{{Speeding Up the Number Theoretic Transform for - Faster Ideal Lattice-Based Cryptography}}. In - \bibinfo{booktitle}{\emph{CANS}}. -\newblock -\href{https://doi.org/10.1007/978-3-319-48965-0_8}{doi:\nolinkurl{10.1007/978-3-319-48965-0_8}} - - -\bibitem[{National Institute of Standards and Technology}(2024a)]% - {fips204} -\bibfield{author}{\bibinfo{person}{{National Institute of Standards and - Technology}}.} \bibinfo{year}{2024}\natexlab{a}. -\newblock \bibinfo{booktitle}{\emph{{Module-Lattice-Based Digital Signature - Standard}}}. -\newblock \bibinfo{type}{{T}echnical {R}eport} FIPS 204. - \bibinfo{institution}{NIST}. -\newblock -\urldef\tempurl% -\url{https://doi.org/10.6028/NIST.FIPS.204} -\showURL{% -\tempurl} - - -\bibitem[{National Institute of Standards and Technology}(2024b)]% - {fips203} -\bibfield{author}{\bibinfo{person}{{National Institute of Standards and - Technology}}.} \bibinfo{year}{2024}\natexlab{b}. -\newblock \bibinfo{booktitle}{\emph{{Module-Lattice-Based Key-Encapsulation - Mechanism Standard}}}. -\newblock \bibinfo{type}{{T}echnical {R}eport} FIPS 203. - \bibinfo{institution}{NIST}. -\newblock -\urldef\tempurl% -\url{https://doi.org/10.6028/NIST.FIPS.203} -\showURL{% -\tempurl} - - -\bibitem[{National Institute of Standards and Technology}(2024c)]% - {fips205} -\bibfield{author}{\bibinfo{person}{{National Institute of Standards and - Technology}}.} \bibinfo{year}{2024}\natexlab{c}. -\newblock \bibinfo{booktitle}{\emph{{Stateless Hash-Based Digital Signature - Standard}}}. -\newblock \bibinfo{type}{{T}echnical {R}eport} FIPS 205. - \bibinfo{institution}{NIST}. -\newblock -\urldef\tempurl% -\url{https://doi.org/10.6028/NIST.FIPS.205} -\showURL{% -\tempurl} - - -\bibitem[{PQClean Contributors}({[n.\,d.]})]% - {pqclean} -\bibfield{author}{\bibinfo{person}{{PQClean Contributors}}.} - \bibinfo{year}{[n.\,d.]}\natexlab{}. -\newblock \bibinfo{title}{{PQClean: Clean, portable, tested implementations of - post-quantum cryptography}}. -\newblock -\urldef\tempurl% -\url{https://github.com/PQClean/PQClean} -\showURL{% -\tempurl} - - -\bibitem[Schwabe and Seiler({[n.\,d.]})]% - {kyber-avx2} -\bibfield{author}{\bibinfo{person}{Peter Schwabe} {and} \bibinfo{person}{Gregor - Seiler}.} \bibinfo{year}{[n.\,d.]}\natexlab{}. -\newblock \bibinfo{title}{{Better Bootstrapping in Fully Homomorphic - Encryption}}. -\newblock -\urldef\tempurl% -\url{https://github.com/pq-crystals/kyber} -\showURL{% -\tempurl} -\newblock -\shownote{AVX2 implementation in the pqclean project}. - - -\end{thebibliography} diff --git a/paper/main.blg b/paper/main.blg deleted file mode 100644 index f22a4d0..0000000 --- a/paper/main.blg +++ /dev/null @@ -1,77 +0,0 @@ -This is BibTeX, Version 0.99e (TeX Live 2026/Arch Linux) -Capacity: max_strings=200000, hash_size=200000, hash_prime=170003 -The top-level auxiliary file: main.aux -The style file: ACM-Reference-Format.bst -Reallocated singl_function (elt_size=8) to 100 items from 50. -Reallocated singl_function (elt_size=8) to 100 items from 50. -Reallocated wiz_functions (elt_size=8) to 6000 items from 3000. -Database file #1: refs.bib -Reallocated singl_function (elt_size=8) to 100 items from 50. -Reallocated wiz_functions (elt_size=8) to 9000 items from 6000. -Reallocated glb_str_ptr (elt_size=8) to 20 items from 10. -Reallocated global_strs (elt_size=200001) to 20 items from 10. -Reallocated glb_str_end (elt_size=8) to 20 items from 10. -Reallocated singl_function (elt_size=8) to 100 items from 50. -Warning--empty year in supercop -Warning--using n.d. in supercop -Warning--empty publisher in kyber2018 -Warning--empty address in kyber2018 -Warning--empty publisher in rapl -Warning--empty address in rapl -Warning--page numbers missing in both pages and numpages fields in rapl -Warning--empty publisher in gueron2014 -Warning--empty address in gueron2014 -Warning--page numbers missing in both pages and numpages fields in gueron2014 -Warning--empty year in papi -Warning--using n.d. in papi -Warning--empty year in pqm4 -Warning--using n.d. in pqm4 -Warning--empty publisher in ntt-survey -Warning--empty address in ntt-survey -Warning--page numbers missing in both pages and numpages fields in ntt-survey -Warning--empty year in pqclean -Warning--using n.d. in pqclean -Warning--empty year in kyber-avx2 -Warning--using n.d. in kyber-avx2 -You've used 15 entries, - 6273 wiz_defined-function locations, - 1592 strings with 20522 characters, -and the built_in function-call counts, 12963 in all, are: -= -- 1307 -> -- 435 -< -- 3 -+ -- 142 -- -- 171 -* -- 881 -:= -- 1393 -add.period$ -- 69 -call.type$ -- 15 -change.case$ -- 95 -chr.to.int$ -- 13 -cite$ -- 36 -duplicate$ -- 1181 -empty$ -- 859 -format.name$ -- 203 -if$ -- 2909 -int.to.chr$ -- 4 -int.to.str$ -- 1 -missing$ -- 20 -newline$ -- 198 -num.names$ -- 103 -pop$ -- 587 -preamble$ -- 1 -purify$ -- 186 -quote$ -- 0 -skip$ -- 444 -stack$ -- 0 -substring$ -- 727 -swap$ -- 81 -text.length$ -- 3 -text.prefix$ -- 0 -top$ -- 0 -type$ -- 438 -warning$ -- 21 -while$ -- 94 -width$ -- 0 -write$ -- 343 -(There were 21 warnings) diff --git a/paper/main.log b/paper/main.log deleted file mode 100644 index 332a310..0000000 --- a/paper/main.log +++ /dev/null @@ -1,2416 +0,0 @@ -This is pdfTeX, Version 3.141592653-2.6-1.40.29 (TeX Live 2026/Arch Linux) (preloaded format=pdflatex 2026.3.6) 4 APR 2026 14:11 -entering extended mode - restricted \write18 enabled. - %&-line parsing enabled. -**main.tex -(./main.tex -LaTeX2e <2025-11-01> -L3 programming layer <2026-01-19> -(/usr/share/texmf-dist/tex/latex/acmart/acmart.cls -Document Class: acmart 2025/08/27 v2.16 Typesetting articles for the Associatio -n for Computing Machinery -(/usr/share/texmf-dist/tex/latex/xkeyval/xkeyval.sty -Package: xkeyval 2025/11/04 v2.10 package option processing (HA) - -(/usr/share/texmf-dist/tex/generic/xkeyval/xkeyval.tex -(/usr/share/texmf-dist/tex/generic/xkeyval/xkvutils.tex -\XKV@toks=\toks17 -\XKV@tempa@toks=\toks18 -\XKV@tempb@toks=\toks19 - -(/usr/share/texmf-dist/tex/generic/xkeyval/keyval.tex)) -\XKV@depth=\count275 -File: xkeyval.tex 2014/12/03 v2.7a key=value parser (HA) -)) -(/usr/share/texmf-dist/tex/generic/xstring/xstring.sty -(/usr/share/texmf-dist/tex/generic/xstring/xstring.tex -\xs_counta=\count276 -\xs_countb=\count277 -) -Package: xstring 2023/08/22 v1.86 String manipulations (CT) -) -(/usr/share/texmf-dist/tex/generic/iftex/iftex.sty -Package: iftex 2024/12/12 v1.0g TeX engine tests -) -Package acmart Info: Not using screen mode on input line 77. -Package acmart Info: Using breaking urls on hyphens on input line 85. -Package acmart Info: Requiring acmthm on input line 93. -Package acmart Info: Not using review mode on input line 102. -Package acmart Info: Not using authorversion mode on input line 110. -Package acmart Info: Not using nonacm mode on input line 122. -Package acmart Info: Explicitly selecting natbib mode on input line 138. -Package acmart Info: Not using anonymous mode on input line 146. -Package acmart Info: Not using timestamp mode on input line 154. -Package acmart Info: Not using authordraft mode on input line 164. -Package acmart Info: Using nonacm mode on input line 179. -Class acmart Info: Using format sigconf, number 4 on input line 179. -Class acmart Info: Using fontsize 9pt on input line 281. - -(/usr/share/texmf-dist/tex/latex/amscls/amsart.cls -Document Class: amsart 2020/05/29 v2.20.6 -\linespacing=\dimen148 -\normalparindent=\dimen149 -\normaltopskip=\skip49 -(/usr/share/texmf-dist/tex/latex/amsmath/amsmath.sty -Package: amsmath 2025/07/09 v2.17z AMS math features -\@mathmargin=\skip50 - -For additional information on amsmath, use the `?' option. -(/usr/share/texmf-dist/tex/latex/amsmath/amstext.sty -Package: amstext 2024/11/17 v2.01 AMS text - -(/usr/share/texmf-dist/tex/latex/amsmath/amsgen.sty -File: amsgen.sty 1999/11/30 v2.0 generic functions -\@emptytoks=\toks20 -\ex@=\dimen150 -)) -(/usr/share/texmf-dist/tex/latex/amsmath/amsbsy.sty -Package: amsbsy 1999/11/29 v1.2d Bold Symbols -\pmbraise@=\dimen151 -) -(/usr/share/texmf-dist/tex/latex/amsmath/amsopn.sty -Package: amsopn 2022/04/08 v2.04 operator names -) -\inf@bad=\count278 -LaTeX Info: Redefining \frac on input line 233. -\uproot@=\count279 -\leftroot@=\count280 -LaTeX Info: Redefining \overline on input line 398. -LaTeX Info: Redefining \colon on input line 409. -\classnum@=\count281 -\DOTSCASE@=\count282 -LaTeX Info: Redefining \ldots on input line 495. -LaTeX Info: Redefining \dots on input line 498. -LaTeX Info: Redefining \cdots on input line 619. -\Mathstrutbox@=\box53 -\strutbox@=\box54 -LaTeX Info: Redefining \big on input line 721. -LaTeX Info: Redefining \Big on input line 722. -LaTeX Info: Redefining \bigg on input line 723. -LaTeX Info: Redefining \Bigg on input line 724. -\big@size=\dimen152 -LaTeX Font Info: Redeclaring font encoding OML on input line 742. -LaTeX Font Info: Redeclaring font encoding OMS on input line 743. -\macc@depth=\count283 -LaTeX Info: Redefining \bmod on input line 904. -LaTeX Info: Redefining \pmod on input line 909. -LaTeX Info: Redefining \smash on input line 939. -LaTeX Info: Redefining \relbar on input line 969. -LaTeX Info: Redefining \Relbar on input line 970. -\c@MaxMatrixCols=\count284 -\dotsspace@=\muskip17 -\c@parentequation=\count285 -\dspbrk@lvl=\count286 -\tag@help=\toks21 -\row@=\count287 -\column@=\count288 -\maxfields@=\count289 -\andhelp@=\toks22 -\eqnshift@=\dimen153 -\alignsep@=\dimen154 -\tagshift@=\dimen155 -\tagwidth@=\dimen156 -\totwidth@=\dimen157 -\lineht@=\dimen158 -\@envbody=\toks23 -\multlinegap=\skip51 -\multlinetaggap=\skip52 -\mathdisplay@stack=\toks24 -LaTeX Info: Redefining \[ on input line 2950. -LaTeX Info: Redefining \] on input line 2951. -) -LaTeX Font Info: Trying to load font information for U+msa on input line 397 -. - -(/usr/share/texmf-dist/tex/latex/amsfonts/umsa.fd -File: umsa.fd 2013/01/14 v3.01 AMS symbols A -) -(/usr/share/texmf-dist/tex/latex/amsfonts/amsfonts.sty -Package: amsfonts 2013/01/14 v3.01 Basic AMSFonts support -\symAMSa=\mathgroup4 -\symAMSb=\mathgroup5 -LaTeX Font Info: Redeclaring math symbol \hbar on input line 98. -LaTeX Font Info: Overwriting math alphabet `\mathfrak' in version `bold' -(Font) U/euf/m/n --> U/euf/b/n on input line 106. -) -\copyins=\insert252 -\abstractbox=\box55 -\listisep=\skip53 -\c@part=\count290 -\c@section=\count291 -\c@subsection=\count292 -\c@subsubsection=\count293 -\c@paragraph=\count294 -\c@subparagraph=\count295 -\c@figure=\count296 -\c@table=\count297 -\abovecaptionskip=\skip54 -\belowcaptionskip=\skip55 -\captionindent=\dimen159 -\thm@style=\toks25 -\thm@bodyfont=\toks26 -\thm@headfont=\toks27 -\thm@notefont=\toks28 -\thm@headpunct=\toks29 -\thm@preskip=\skip56 -\thm@postskip=\skip57 -\thm@headsep=\skip58 -\dth@everypar=\toks30 -) -LaTeX Info: Redefining \markboth on input line 283. - -(/usr/share/texmf-dist/tex/latex/microtype/microtype.sty -Package: microtype 2026/03/01 v3.2d Micro-typographical refinements (RS) - -(/usr/share/texmf-dist/tex/latex/etoolbox/etoolbox.sty -Package: etoolbox 2025/10/02 v2.5m e-TeX tools for LaTeX (JAW) -\etb@tempcnta=\count298 -) -\MT@toks=\toks31 -\MT@tempbox=\box56 -\MT@count=\count299 -LaTeX Info: Redefining \noprotrusionifhmode on input line 1084. -LaTeX Info: Redefining \leftprotrusion on input line 1085. -\MT@prot@toks=\toks32 -LaTeX Info: Redefining \rightprotrusion on input line 1104. -LaTeX Info: Redefining \textls on input line 1449. -\MT@outer@kern=\dimen160 -LaTeX Info: Redefining \microtypecontext on input line 2053. -LaTeX Info: Redefining \textmicrotypecontext on input line 2070. -\MT@listname@count=\count300 - -(/usr/share/texmf-dist/tex/latex/microtype/microtype-pdftex.def -File: microtype-pdftex.def 2026/03/01 v3.2d Definitions specific to pdftex (RS) - -LaTeX Info: Redefining \lsstyle on input line 944. -LaTeX Info: Redefining \lslig on input line 944. -\MT@outer@space=\skip59 -) -Package microtype Info: Loading configuration file microtype.cfg. - -(/usr/share/texmf-dist/tex/latex/microtype/microtype.cfg -File: microtype.cfg 2026/03/01 v3.2d microtype main configuration file (RS) -) -LaTeX Info: Redefining \microtypesetup on input line 3065. -) -(/usr/share/texmf-dist/tex/latex/booktabs/booktabs.sty -Package: booktabs 2020/01/12 v1.61803398 Publication quality tables -\heavyrulewidth=\dimen161 -\lightrulewidth=\dimen162 -\cmidrulewidth=\dimen163 -\belowrulesep=\dimen164 -\belowbottomsep=\dimen165 -\aboverulesep=\dimen166 -\abovetopsep=\dimen167 -\cmidrulesep=\dimen168 -\cmidrulekern=\dimen169 -\defaultaddspace=\dimen170 -\@cmidla=\count301 -\@cmidlb=\count302 -\@aboverulesep=\dimen171 -\@belowrulesep=\dimen172 -\@thisruleclass=\count303 -\@lastruleclass=\count304 -\@thisrulewidth=\dimen173 -) -(/usr/share/texmf-dist/tex/latex/refcount/refcount.sty -Package: refcount 2019/12/15 v3.6 Data extraction from label references (HO) - -(/usr/share/texmf-dist/tex/generic/ltxcmds/ltxcmds.sty -Package: ltxcmds 2023-12-04 v1.26 LaTeX kernel commands for general use (HO) -) -(/usr/share/texmf-dist/tex/generic/infwarerr/infwarerr.sty -Package: infwarerr 2019/12/03 v1.5 Providing info/warning/error messages (HO) -)) -(/usr/share/texmf-dist/tex/latex/totpages/totpages.sty -Package: totpages 2005/09/19 v2.00 Totpages Package (muewi) - -(/usr/share/texmf-dist/tex/latex/everyshi/everyshi.sty -Package: everyshi 2020/11/18 v4.00 EveryShipout Package -)) -(/usr/share/texmf-dist/tex/latex/environ/environ.sty -Package: environ 2014/05/04 v0.3 A new way to define environments - -(/usr/share/texmf-dist/tex/latex/trimspaces/trimspaces.sty -Package: trimspaces 2009/09/17 v1.1 Trim spaces around a token list -)) -\@ACM@acmcp@delta=\dimen174 - -(/usr/share/texmf-dist/tex/latex/natbib/natbib.sty -Package: natbib 2010/09/13 8.31b (PWD, AO) -\bibhang=\skip60 -\bibsep=\skip61 -LaTeX Info: Redefining \cite on input line 694. -\c@NAT@ctr=\count305 -) -(/usr/share/texmf-dist/tex/latex/hyperref/hyperref.sty -Package: hyperref 2026-01-29 v7.01p Hypertext links for LaTeX - -(/usr/share/texmf-dist/tex/latex/kvsetkeys/kvsetkeys.sty -Package: kvsetkeys 2022-10-05 v1.19 Key value parser (HO) -) -(/usr/share/texmf-dist/tex/generic/kvdefinekeys/kvdefinekeys.sty -Package: kvdefinekeys 2019-12-19 v1.6 Define keys (HO) -) -(/usr/share/texmf-dist/tex/generic/pdfescape/pdfescape.sty -Package: pdfescape 2019/12/09 v1.15 Implements pdfTeX's escape features (HO) - -(/usr/share/texmf-dist/tex/generic/pdftexcmds/pdftexcmds.sty -Package: pdftexcmds 2020-06-27 v0.33 Utility functions of pdfTeX for LuaTeX (HO -) -Package pdftexcmds Info: \pdf@primitive is available. -Package pdftexcmds Info: \pdf@ifprimitive is available. -Package pdftexcmds Info: \pdfdraftmode found. -)) -(/usr/share/texmf-dist/tex/latex/hycolor/hycolor.sty -Package: hycolor 2020-01-27 v1.10 Color options for hyperref/bookmark (HO) -) -(/usr/share/texmf-dist/tex/latex/hyperref/nameref.sty -Package: nameref 2026-01-29 v2.58 Cross-referencing by name of section - -(/usr/share/texmf-dist/tex/generic/gettitlestring/gettitlestring.sty -Package: gettitlestring 2019/12/15 v1.6 Cleanup title references (HO) - -(/usr/share/texmf-dist/tex/latex/kvoptions/kvoptions.sty -Package: kvoptions 2022-06-15 v3.15 Key value format for package options (HO) -)) -\c@section@level=\count306 -) -(/usr/share/texmf-dist/tex/generic/stringenc/stringenc.sty -Package: stringenc 2019/11/29 v1.12 Convert strings between diff. encodings (HO -) -) -\@linkdim=\dimen175 -\Hy@linkcounter=\count307 -\Hy@pagecounter=\count308 - -(/usr/share/texmf-dist/tex/latex/hyperref/pd1enc.def -File: pd1enc.def 2026-01-29 v7.01p Hyperref: PDFDocEncoding definition (HO) -Now handling font encoding PD1 ... -... no UTF-8 mapping file for font encoding PD1 -) -(/usr/share/texmf-dist/tex/generic/intcalc/intcalc.sty -Package: intcalc 2019/12/15 v1.3 Expandable calculations with integers (HO) -) -\Hy@SavedSpaceFactor=\count309 - -(/usr/share/texmf-dist/tex/latex/hyperref/puenc.def -File: puenc.def 2026-01-29 v7.01p Hyperref: PDF Unicode definition (HO) -Now handling font encoding PU ... -... no UTF-8 mapping file for font encoding PU -) -Package hyperref Info: Option `bookmarksnumbered' set `true' on input line 4072 -. -Package hyperref Info: Option `unicode' set `true' on input line 4072. -Package hyperref Info: Hyper figures OFF on input line 4201. -Package hyperref Info: Link nesting OFF on input line 4206. -Package hyperref Info: Hyper index ON on input line 4209. -Package hyperref Info: Plain pages OFF on input line 4216. -Package hyperref Info: Backreferencing OFF on input line 4221. -Package hyperref Info: Implicit mode ON; LaTeX internals redefined. -Package hyperref Info: Bookmarks ON on input line 4468. -\c@Hy@tempcnt=\count310 - -(/usr/share/texmf-dist/tex/latex/url/url.sty -\Urlmuskip=\muskip18 -Package: url 2013/09/16 ver 3.4 Verb mode for urls, etc. -) -LaTeX Info: Redefining \url on input line 4807. -\XeTeXLinkMargin=\dimen176 - -(/usr/share/texmf-dist/tex/generic/bitset/bitset.sty -Package: bitset 2019/12/09 v1.3 Handle bit-vector datatype (HO) - -(/usr/share/texmf-dist/tex/generic/bigintcalc/bigintcalc.sty -Package: bigintcalc 2019/12/15 v1.5 Expandable calculations on big integers (HO -) -)) -\Fld@menulength=\count311 -\Field@Width=\dimen177 -\Fld@charsize=\dimen178 -Package hyperref Info: Hyper figures OFF on input line 6084. -Package hyperref Info: Link nesting OFF on input line 6089. -Package hyperref Info: Hyper index ON on input line 6092. -Package hyperref Info: backreferencing OFF on input line 6099. -Package hyperref Info: Link coloring OFF on input line 6104. -Package hyperref Info: Link coloring with OCG OFF on input line 6109. -Package hyperref Info: PDF/A mode OFF on input line 6114. -\Hy@abspage=\count312 -\c@Item=\count313 -\c@Hfootnote=\count314 -) -Package hyperref Info: Driver (autodetected): hpdftex. - -(/usr/share/texmf-dist/tex/latex/hyperref/hpdftex.def -File: hpdftex.def 2026-01-29 v7.01p Hyperref driver for pdfTeX -\Fld@listcount=\count315 -\c@bookmark@seq@number=\count316 - -(/usr/share/texmf-dist/tex/latex/rerunfilecheck/rerunfilecheck.sty -Package: rerunfilecheck 2025-06-21 v1.11 Rerun checks for auxiliary files (HO) - -(/usr/share/texmf-dist/tex/generic/uniquecounter/uniquecounter.sty -Package: uniquecounter 2019/12/15 v1.4 Provide unlimited unique counter (HO) -) -Package uniquecounter Info: New unique counter `rerunfilecheck' on input line 2 -84. -) -\Hy@SectionHShift=\skip62 -) -(/usr/share/texmf-dist/tex/latex/hyperxmp/hyperxmp.sty -Package: hyperxmp 2024/03/17 v5.13 Store hyperref metadata in XMP format -\hyxmp@aep@toks=\toks33 - -(/usr/share/texmf-dist/tex/latex/ifmtarg/ifmtarg.sty -Package: ifmtarg 2018/04/16 v1.2b check for an empty argument -) -(/usr/share/texmf-dist/tex/latex/base/ifthen.sty -Package: ifthen 2024/03/16 v1.1e Standard LaTeX ifthen package (DPC) -) -\@hyxmp@count=\count317 - -(/usr/share/texmf-dist/tex/latex/oberdiek/ifdraft.sty -Package: ifdraft 2016/05/16 v1.4 Detect class options draft and final (HO) -) -(/usr/share/texmf-dist/tex/generic/iftex/ifluatex.sty -Package: ifluatex 2019/10/25 v1.5 ifluatex legacy package. Use iftex instead. -)) -(/usr/share/texmf-dist/tex/latex/graphics/graphicx.sty -Package: graphicx 2024/12/31 v1.2e Enhanced LaTeX Graphics (DPC,SPQR) - -(/usr/share/texmf-dist/tex/latex/graphics/graphics.sty -Package: graphics 2024/08/06 v1.4g Standard LaTeX Graphics (DPC,SPQR) - -(/usr/share/texmf-dist/tex/latex/graphics/trig.sty -Package: trig 2023/12/02 v1.11 sin cos tan (DPC) -) -(/usr/share/texmf-dist/tex/latex/graphics-cfg/graphics.cfg -File: graphics.cfg 2016/06/04 v1.11 sample graphics configuration -) -Package graphics Info: Driver file: pdftex.def on input line 106. - -(/usr/share/texmf-dist/tex/latex/graphics-def/pdftex.def -File: pdftex.def 2025/09/29 v1.2d Graphics/color driver for pdftex -)) -\Gin@req@height=\dimen179 -\Gin@req@width=\dimen180 -) -(/usr/share/texmf-dist/tex/latex/xcolor/xcolor.sty -Package: xcolor 2024/09/29 v3.02 LaTeX color extensions (UK) - -(/usr/share/texmf-dist/tex/latex/graphics-cfg/color.cfg -File: color.cfg 2016/01/02 v1.6 sample color configuration -) -Package xcolor Info: Driver file: pdftex.def on input line 274. - -(/usr/share/texmf-dist/tex/latex/graphics/mathcolor.ltx) -Package xcolor Info: Model `cmy' substituted by `cmy0' on input line 1349. -Package xcolor Info: Model `hsb' substituted by `rgb' on input line 1353. -Package xcolor Info: Model `RGB' extended on input line 1365. -Package xcolor Info: Model `HTML' substituted by `rgb' on input line 1367. -Package xcolor Info: Model `Hsb' substituted by `hsb' on input line 1368. -Package xcolor Info: Model `tHsb' substituted by `hsb' on input line 1369. -Package xcolor Info: Model `HSB' substituted by `hsb' on input line 1370. -Package xcolor Info: Model `Gray' substituted by `gray' on input line 1371. -Package xcolor Info: Model `wave' substituted by `hsb' on input line 1372. -) -(/usr/share/texmf-dist/tex/latex/geometry/geometry.sty -Package: geometry 2020/01/02 v5.9 Page Geometry - -(/usr/share/texmf-dist/tex/generic/iftex/ifvtex.sty -Package: ifvtex 2019/10/25 v1.7 ifvtex legacy package. Use iftex instead. -) -\Gm@cnth=\count318 -\Gm@cntv=\count319 -\c@Gm@tempcnt=\count320 -\Gm@bindingoffset=\dimen181 -\Gm@wd@mp=\dimen182 -\Gm@odd@mp=\dimen183 -\Gm@even@mp=\dimen184 -\Gm@layoutwidth=\dimen185 -\Gm@layoutheight=\dimen186 -\Gm@layouthoffset=\dimen187 -\Gm@layoutvoffset=\dimen188 -\Gm@dimlist=\toks34 -) -(/usr/share/texmf-dist/tex/latex/ncctools/manyfoot.sty -Package: manyfoot 2019/08/03 v1.11 Many Footnote Levels Package (NCC) - -(/usr/share/texmf-dist/tex/latex/ncctools/nccfoots.sty -Package: nccfoots 2005/02/03 v1.2 NCC Footnotes Package (NCC) -) -\MFL@columnwidth=\dimen189 -) -\footinsauthorsaddresses=\insert251 -\c@footnoteauthorsaddresses=\count321 -\footinscopyrightpermission=\insert250 -\c@footnotecopyrightpermission=\count322 - -(/usr/share/texmf-dist/tex/generic/pdftex/glyphtounicode.tex) -(/usr/share/texmf-dist/tex/latex/cmap/cmap.sty -Package: cmap 2021/02/06 v1.0j CMap support: searchable PDF -) -(/usr/share/texmf-dist/tex/latex/base/fontenc.sty -Package: fontenc 2025/07/18 v2.1d Standard LaTeX package -<>) -(/usr/share/texmf-dist/tex/latex/libertine/libertine.sty -Package: libertine 2024/04/23 (Bob Tennent) Supports Libertine and Biolinum fon -ts for all LaTeX engines. - -(/usr/share/texmf-dist/tex/generic/iftex/ifxetex.sty -Package: ifxetex 2019/10/25 v0.7 ifxetex legacy package. Use iftex instead. -) -(/usr/share/texmf-dist/tex/latex/base/textcomp.sty -Package: textcomp 2024/04/24 v2.1b Standard LaTeX package -) -(/usr/share/texmf-dist/tex/latex/base/fontenc.sty -Package: fontenc 2025/07/18 v2.1d Standard LaTeX package -) -(/usr/share/texmf-dist/tex/latex/fontaxes/fontaxes.sty -Package: fontaxes 2026-01-02 v2.0.2 Font selection axes (deprecated) -Applying: [2024-11-01] Use figureversions if present on input line 74. - -(/usr/share/texmf-dist/tex/latex/figureversions/figureversions.sty -Package: figureversions 2025-04-29 v1.0.1 Figure versions -) -Already applied: [0000-00-00] Fall back to v1 on input line 76. -) -LaTeX Info: Redefining \oldstylenums on input line 485. - -(/usr/share/texmf-dist/tex/latex/libertine/LinLibertine_I.tex)) -(/usr/share/texmf-dist/tex/latex/inconsolata/zi4.sty -Package: zi4 2019/05/17 v1.12 - -`inconsolata-zi4' v1.12, 2019/05/17 Text macros for Inconsolata (msharpe) -\zifour@ocount=\count323 -) -(/usr/share/texmf-dist/tex/latex/newtx/newtxmath.sty -Package: newtxmath 2024/09/22 v1.754 - -`newtxmath' v1.754, 2024/09/22 Math macros based originally on txfonts (msharpe -) (/usr/share/texmf-dist/tex/latex/oberdiek/centernot.sty -Package: centernot 2016/05/16 v1.4 Centers the not symbol horizontally (HO) -) -\tx@cntz=\count324 - -(/usr/share/texmf-dist/tex/generic/kastrup/binhex.tex) -\tx@Isdigit=\count325 -\tx@IsAlNum=\count326 -\tx@tA=\toks35 -\tx@tB=\toks36 -\tx@su=\read2 - -amsthm NOT loaded -LaTeX Font Info: Redeclaring symbol font `operators' on input line 402. -LaTeX Font Info: Overwriting symbol font `operators' in version `normal' -(Font) OT1/cmr/m/n --> OT1/LinuxLibertineT-TLF/m/n on input li -ne 402. -LaTeX Font Info: Overwriting symbol font `operators' in version `bold' -(Font) OT1/cmr/bx/n --> OT1/LinuxLibertineT-TLF/m/n on input l -ine 402. -LaTeX Font Info: Overwriting symbol font `operators' in version `bold' -(Font) OT1/LinuxLibertineT-TLF/m/n --> OT1/LinuxLibertineT-TLF -/sb/n on input line 403. -LaTeX Font Info: Redeclaring math alphabet \mathsf on input line 410. -LaTeX Font Info: Overwriting math alphabet `\mathsf' in version `normal' -(Font) OT1/cmss/m/n --> OT1/LinuxBiolinumT-TLF/m/n on input li -ne 410. -LaTeX Font Info: Overwriting math alphabet `\mathsf' in version `bold' -(Font) OT1/cmss/bx/n --> OT1/LinuxBiolinumT-TLF/m/n on input l -ine 410. -LaTeX Font Info: Overwriting math alphabet `\mathsf' in version `bold' -(Font) OT1/LinuxBiolinumT-TLF/m/n --> OT1/LinuxBiolinumT-TLF/b -/n on input line 412. -LaTeX Font Info: Redeclaring math alphabet \mathit on input line 419. -LaTeX Font Info: Overwriting math alphabet `\mathit' in version `normal' -(Font) OT1/cmr/m/it --> OT1/LinuxLibertineT-TLF/m/it on input -line 419. -LaTeX Font Info: Overwriting math alphabet `\mathit' in version `bold' -(Font) OT1/cmr/bx/it --> OT1/LinuxLibertineT-TLF/m/it on input - line 419. -LaTeX Font Info: Redeclaring math alphabet \mathtt on input line 420. -LaTeX Font Info: Overwriting math alphabet `\mathtt' in version `normal' -(Font) OT1/cmtt/m/n --> T1/zi4/m/n on input line 420. -LaTeX Font Info: Overwriting math alphabet `\mathtt' in version `bold' -(Font) OT1/cmtt/m/n --> T1/zi4/m/n on input line 420. -LaTeX Font Info: Redeclaring math alphabet \mathbf on input line 422. -LaTeX Font Info: Overwriting math alphabet `\mathbf' in version `normal' -(Font) OT1/cmr/bx/n --> OT1/LinuxLibertineT-TLF/sb/n on input -line 422. -LaTeX Font Info: Overwriting math alphabet `\mathbf' in version `bold' -(Font) OT1/cmr/bx/n --> OT1/LinuxLibertineT-TLF/sb/n on input -line 422. -LaTeX Font Info: Overwriting math alphabet `\mathit' in version `bold' -(Font) OT1/LinuxLibertineT-TLF/m/it --> OT1/LinuxLibertineT-TL -F/sb/it on input line 423. -LaTeX Font Info: Overwriting math alphabet `\mathtt' in version `bold' -(Font) T1/zi4/m/n --> T1/zi4/b/n on input line 426. -LaTeX Font Info: Redeclaring symbol font `letters' on input line 444. -LaTeX Font Info: Overwriting symbol font `letters' in version `normal' -(Font) OML/cmm/m/it --> OML/nxlmi/m/it on input line 444. -LaTeX Font Info: Overwriting symbol font `letters' in version `bold' -(Font) OML/cmm/b/it --> OML/nxlmi/m/it on input line 444. -LaTeX Font Info: Overwriting symbol font `letters' in version `bold' -(Font) OML/nxlmi/m/it --> OML/nxlmi/b/it on input line 445. -\symlettersA=\mathgroup6 -LaTeX Font Info: Overwriting symbol font `lettersA' in version `bold' -(Font) U/ntxmia/m/it --> U/ntxmia/b/it on input line 582. -LaTeX Font Info: Redeclaring math alphabet \mathfrak on input line 584. -Now handling font encoding LMS ... -... no UTF-8 mapping file for font encoding LMS -LaTeX Font Info: Redeclaring symbol font `symbols' on input line 604. -LaTeX Font Info: Encoding `OMS' has changed to `LMS' for symbol font -(Font) `symbols' in the math version `normal' on input line 604. -LaTeX Font Info: Overwriting symbol font `symbols' in version `normal' -(Font) OMS/cmsy/m/n --> LMS/ntxsy/m/n on input line 604. -LaTeX Font Info: Encoding `OMS' has changed to `LMS' for symbol font -(Font) `symbols' in the math version `bold' on input line 604. -LaTeX Font Info: Overwriting symbol font `symbols' in version `bold' -(Font) OMS/cmsy/b/n --> LMS/ntxsy/m/n on input line 604. -LaTeX Font Info: Overwriting symbol font `symbols' in version `bold' -(Font) LMS/ntxsy/m/n --> LMS/ntxsy/b/n on input line 605. -\symAMSm=\mathgroup7 -LaTeX Font Info: Overwriting symbol font `AMSm' in version `bold' -(Font) U/ntxsym/m/n --> U/ntxsym/b/n on input line 630. -\symsymbolsC=\mathgroup8 -LaTeX Font Info: Overwriting symbol font `symbolsC' in version `bold' -(Font) U/ntxsyc/m/n --> U/ntxsyc/b/n on input line 651. -Now handling font encoding LMX ... -... no UTF-8 mapping file for font encoding LMX -LaTeX Font Info: Redeclaring symbol font `largesymbols' on input line 664. -LaTeX Font Info: Encoding `OMX' has changed to `LMX' for symbol font -(Font) `largesymbols' in the math version `normal' on input line 6 -64. -LaTeX Font Info: Overwriting symbol font `largesymbols' in version `normal' -(Font) OMX/cmex/m/n --> LMX/ntxexx/m/n on input line 664. -LaTeX Font Info: Encoding `OMX' has changed to `LMX' for symbol font -(Font) `largesymbols' in the math version `bold' on input line 664 -. -LaTeX Font Info: Overwriting symbol font `largesymbols' in version `bold' -(Font) OMX/cmex/m/n --> LMX/ntxexx/m/n on input line 664. -LaTeX Font Info: Overwriting symbol font `largesymbols' in version `bold' -(Font) LMX/ntxexx/m/n --> LMX/ntxexx/b/n on input line 665. -\symlargesymbolsTXA=\mathgroup9 -LaTeX Font Info: Overwriting symbol font `largesymbolsTXA' in version `bold' - -(Font) U/ntxexa/m/n --> U/ntxexa/b/n on input line 679. -\tx@sbptoks=\toks37 -LaTeX Font Info: Redeclaring math delimiter \lfloor on input line 902. -LaTeX Font Info: Redeclaring math delimiter \rfloor on input line 903. -LaTeX Font Info: Redeclaring math delimiter \lceil on input line 904. -LaTeX Font Info: Redeclaring math delimiter \rceil on input line 905. -LaTeX Font Info: Redeclaring math delimiter \lbrace on input line 910. -LaTeX Font Info: Redeclaring math delimiter \rbrace on input line 911. -LaTeX Font Info: Redeclaring math delimiter \langle on input line 913. -LaTeX Font Info: Redeclaring math delimiter \rangle on input line 915. -LaTeX Font Info: Redeclaring math delimiter \arrowvert on input line 919. -LaTeX Font Info: Redeclaring math delimiter \vert on input line 920. -LaTeX Font Info: Redeclaring math accent \dot on input line 991. -LaTeX Font Info: Redeclaring math accent \ddot on input line 992. -LaTeX Font Info: Redeclaring math accent \vec on input line 2057. -LaTeX Info: Redefining \Bbbk on input line 2847. -LaTeX Info: Redefining \not on input line 2995. -LaTeX Info: Redefining \textsquare on input line 3025. -LaTeX Info: Redefining \openbox on input line 3027. -) (/usr/share/texmf-dist/tex/latex/caption/caption.sty -Package: caption 2023/08/05 v3.6o Customizing captions (AR) - -(/usr/share/texmf-dist/tex/latex/caption/caption3.sty -Package: caption3 2023/07/31 v2.4d caption3 kernel (AR) -\caption@tempdima=\dimen190 -\captionmargin=\dimen191 -\caption@leftmargin=\dimen192 -\caption@rightmargin=\dimen193 -\caption@width=\dimen194 -\caption@indent=\dimen195 -\caption@parindent=\dimen196 -\caption@hangindent=\dimen197 -Package caption Info: AMS or SMF document class detected. - -(/usr/share/texmf-dist/tex/latex/caption/caption-ams-smf.sto -File: caption-ams-smf.sto 2020/08/22 v2.0 Adaption of the caption package to th -e AMS and SMF document classes (AR) -)) -\c@caption@flags=\count327 -\c@continuedfloat=\count328 -Package caption Info: hyperref package is loaded. -) -(/usr/share/texmf-dist/tex/latex/float/float.sty -Package: float 2001/11/08 v1.3d Float enhancements (AL) -\c@float@type=\count329 -\float@exts=\toks38 -\float@box=\box57 -\@float@everytoks=\toks39 -\@floatcapt=\box58 -) -\@float@every@sidebar=\toks40 -\c@sidebar=\count330 -\fulltextwidth=\dimen198 -\@ACM@labelwidth=\dimen199 -\listisep=\skip63 -\num@authorgroups=\count331 -\num@authors=\count332 -\@ACM@badge@width=\skip64 -\@ACM@title@width=\skip65 -\@ACM@badge@skip=\skip66 -Class acmart Info: Printing CCS on input line 1848. -Class acmart Info: Printing bibformat on input line 1848. -Class acmart Info: Suppressing folios on input line 1855. -Class acmart Info: Setting authorsperrow to 0 on input line 1858. - -(/usr/share/texmf-dist/tex/latex/comment/comment.sty -\CommentStream=\write3 - -Excluding comment 'comment') Excluding comment 'CCSXML' -\c@@concepts=\count333 -\mktitle@bx=\box59 -\@ACM@acmcpbox=\box60 -\@ACM@commabox=\box61 -\author@bx=\box62 -\author@bx@wd=\dimen256 -\author@bx@sep=\skip67 - -(/usr/share/texmf-dist/tex/latex/fancyhdr/fancyhdr.sty -Package: fancyhdr 2025/02/07 v5.2 Extensive control of page headers and footers - -\f@nch@headwidth=\skip68 -\f@nch@offset@elh=\skip69 -\f@nch@offset@erh=\skip70 -\f@nch@offset@olh=\skip71 -\f@nch@offset@orh=\skip72 -\f@nch@offset@elf=\skip73 -\f@nch@offset@erf=\skip74 -\f@nch@offset@olf=\skip75 -\f@nch@offset@orf=\skip76 -\f@nch@height=\skip77 -\f@nch@footalignment=\skip78 -\f@nch@widthL=\skip79 -\f@nch@widthC=\skip80 -\f@nch@widthR=\skip81 -\@temptokenb=\toks41 -) Special comment 'acks' -LaTeX Font Info: Trying to load font information for T1+LinuxLibertineT-TLF -on input line 3652. - -(/usr/share/texmf-dist/tex/latex/libertine/T1LinuxLibertineT-TLF.fd -File: T1LinuxLibertineT-TLF.fd 2017/03/20 (autoinst) Font definitions for T1/Li -nuxLibertineT-TLF. -) -LaTeX Font Info: Font shape `T1/LinuxLibertineT-TLF/m/n' will be -(Font) scaled to size 9.0pt on input line 3652. -) -(/usr/share/texmf-dist/tex/latex/caption/subcaption.sty -Package: subcaption 2023/07/28 v1.6b Sub-captions (AR) -Package caption Info: New subtype `subfigure' on input line 238. -\c@subfigure=\count334 -Package caption Info: New subtype `subtable' on input line 238. -\c@subtable=\count335 -) -(/usr/share/texmf-dist/tex/latex/todonotes/todonotes.sty -Package: todonotes 2024/01/05 v1.1.7 Todonotes source and documentation. -Package: todonotes 2024/01/05 - -(/usr/share/texmf-dist/tex/latex/pgf/frontendlayer/tikz.sty -(/usr/share/texmf-dist/tex/latex/pgf/basiclayer/pgf.sty -(/usr/share/texmf-dist/tex/latex/pgf/utilities/pgfrcs.sty -(/usr/share/texmf-dist/tex/generic/pgf/utilities/pgfutil-common.tex -\pgfutil@everybye=\toks42 -\pgfutil@tempdima=\dimen257 -\pgfutil@tempdimb=\dimen258 -) -(/usr/share/texmf-dist/tex/generic/pgf/utilities/pgfutil-latex.def -\pgfutil@abb=\box63 -) -(/usr/share/texmf-dist/tex/generic/pgf/utilities/pgfrcs.code.tex -(/usr/share/texmf-dist/tex/generic/pgf/pgf.revision.tex) -Package: pgfrcs 2025-08-29 v3.1.11a (3.1.11a) -)) -Package: pgf 2025-08-29 v3.1.11a (3.1.11a) - -(/usr/share/texmf-dist/tex/latex/pgf/basiclayer/pgfcore.sty -(/usr/share/texmf-dist/tex/latex/pgf/systemlayer/pgfsys.sty -(/usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgfsys.code.tex -Package: pgfsys 2025-08-29 v3.1.11a (3.1.11a) - -(/usr/share/texmf-dist/tex/generic/pgf/utilities/pgfkeys.code.tex -\pgfkeys@pathtoks=\toks43 -\pgfkeys@temptoks=\toks44 - -(/usr/share/texmf-dist/tex/generic/pgf/utilities/pgfkeyslibraryfiltered.code.te -x -\pgfkeys@tmptoks=\toks45 -)) -\pgf@x=\dimen259 -\pgf@y=\dimen260 -\pgf@xa=\dimen261 -\pgf@ya=\dimen262 -\pgf@xb=\dimen263 -\pgf@yb=\dimen264 -\pgf@xc=\dimen265 -\pgf@yc=\dimen266 -\pgf@xd=\dimen267 -\pgf@yd=\dimen268 -\w@pgf@writea=\write4 -\r@pgf@reada=\read3 -\c@pgf@counta=\count336 -\c@pgf@countb=\count337 -\c@pgf@countc=\count338 -\c@pgf@countd=\count339 -\t@pgf@toka=\toks46 -\t@pgf@tokb=\toks47 -\t@pgf@tokc=\toks48 -\pgf@sys@id@count=\count340 - (/usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgf.cfg -File: pgf.cfg 2025-08-29 v3.1.11a (3.1.11a) -) -Driver file for pgf: pgfsys-pdftex.def - -(/usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgfsys-pdftex.def -File: pgfsys-pdftex.def 2025-08-29 v3.1.11a (3.1.11a) - -(/usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgfsys-common-pdf.def -File: pgfsys-common-pdf.def 2025-08-29 v3.1.11a (3.1.11a) -))) -(/usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgfsyssoftpath.code.tex -File: pgfsyssoftpath.code.tex 2025-08-29 v3.1.11a (3.1.11a) -\pgfsyssoftpath@smallbuffer@items=\count341 -\pgfsyssoftpath@bigbuffer@items=\count342 -) -(/usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgfsysprotocol.code.tex -File: pgfsysprotocol.code.tex 2025-08-29 v3.1.11a (3.1.11a) -)) -(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcore.code.tex -Package: pgfcore 2025-08-29 v3.1.11a (3.1.11a) - -(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmath.code.tex -(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathutil.code.tex) -(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathparser.code.tex -\pgfmath@dimen=\dimen269 -\pgfmath@count=\count343 -\pgfmath@box=\box64 -\pgfmath@toks=\toks49 -\pgfmath@stack@operand=\toks50 -\pgfmath@stack@operation=\toks51 -) -(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.code.tex) -(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.basic.code.tex) -(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.trigonometric.code -.tex) -(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.random.code.tex) -(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.comparison.code.te -x) (/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.base.code.tex) -(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.round.code.tex) -(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.misc.code.tex) -(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.integerarithmetics -.code.tex) (/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathcalc.code.tex) -(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfloat.code.tex -\c@pgfmathroundto@lastzeros=\count344 -)) -(/usr/share/texmf-dist/tex/generic/pgf/math/pgfint.code.tex) -(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepoints.code.tex -File: pgfcorepoints.code.tex 2025-08-29 v3.1.11a (3.1.11a) -\pgf@picminx=\dimen270 -\pgf@picmaxx=\dimen271 -\pgf@picminy=\dimen272 -\pgf@picmaxy=\dimen273 -\pgf@pathminx=\dimen274 -\pgf@pathmaxx=\dimen275 -\pgf@pathminy=\dimen276 -\pgf@pathmaxy=\dimen277 -\pgf@xx=\dimen278 -\pgf@xy=\dimen279 -\pgf@yx=\dimen280 -\pgf@yy=\dimen281 -\pgf@zx=\dimen282 -\pgf@zy=\dimen283 -) -(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathconstruct.code.tex -File: pgfcorepathconstruct.code.tex 2025-08-29 v3.1.11a (3.1.11a) -\pgf@path@lastx=\dimen284 -\pgf@path@lasty=\dimen285 -) (/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathusage.code.tex -File: pgfcorepathusage.code.tex 2025-08-29 v3.1.11a (3.1.11a) -\pgf@shorten@end@additional=\dimen286 -\pgf@shorten@start@additional=\dimen287 -) -(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorescopes.code.tex -File: pgfcorescopes.code.tex 2025-08-29 v3.1.11a (3.1.11a) -\pgfpic=\box65 -\pgf@hbox=\box66 -\pgf@layerbox@main=\box67 -\pgf@picture@serial@count=\count345 -) -(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoregraphicstate.code.tex -File: pgfcoregraphicstate.code.tex 2025-08-29 v3.1.11a (3.1.11a) -\pgflinewidth=\dimen288 -) -(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoretransformations.code.t -ex -File: pgfcoretransformations.code.tex 2025-08-29 v3.1.11a (3.1.11a) -\pgf@pt@x=\dimen289 -\pgf@pt@y=\dimen290 -\pgf@pt@temp=\dimen291 -) (/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorequick.code.tex -File: pgfcorequick.code.tex 2025-08-29 v3.1.11a (3.1.11a) -) -(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreobjects.code.tex -File: pgfcoreobjects.code.tex 2025-08-29 v3.1.11a (3.1.11a) -) -(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathprocessing.code.te -x -File: pgfcorepathprocessing.code.tex 2025-08-29 v3.1.11a (3.1.11a) -) (/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorearrows.code.tex -File: pgfcorearrows.code.tex 2025-08-29 v3.1.11a (3.1.11a) -\pgfarrowsep=\dimen292 -) -(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreshade.code.tex -File: pgfcoreshade.code.tex 2025-08-29 v3.1.11a (3.1.11a) -\pgf@max=\dimen293 -\pgf@sys@shading@range@num=\count346 -\pgf@shadingcount=\count347 -) -(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreimage.code.tex -File: pgfcoreimage.code.tex 2025-08-29 v3.1.11a (3.1.11a) -) -(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreexternal.code.tex -File: pgfcoreexternal.code.tex 2025-08-29 v3.1.11a (3.1.11a) -\pgfexternal@startupbox=\box68 -) -(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorelayers.code.tex -File: pgfcorelayers.code.tex 2025-08-29 v3.1.11a (3.1.11a) -) -(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoretransparency.code.tex -File: pgfcoretransparency.code.tex 2025-08-29 v3.1.11a (3.1.11a) -) (/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepatterns.code.tex -File: pgfcorepatterns.code.tex 2025-08-29 v3.1.11a (3.1.11a) -) -(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorerdf.code.tex -File: pgfcorerdf.code.tex 2025-08-29 v3.1.11a (3.1.11a) -))) -(/usr/share/texmf-dist/tex/generic/pgf/modules/pgfmoduleshapes.code.tex -File: pgfmoduleshapes.code.tex 2025-08-29 v3.1.11a (3.1.11a) -\pgfnodeparttextbox=\box69 -) -(/usr/share/texmf-dist/tex/generic/pgf/modules/pgfmoduleplot.code.tex -File: pgfmoduleplot.code.tex 2025-08-29 v3.1.11a (3.1.11a) -) -(/usr/share/texmf-dist/tex/latex/pgf/compatibility/pgfcomp-version-0-65.sty -Package: pgfcomp-version-0-65 2025-08-29 v3.1.11a (3.1.11a) -\pgf@nodesepstart=\dimen294 -\pgf@nodesepend=\dimen295 -) -(/usr/share/texmf-dist/tex/latex/pgf/compatibility/pgfcomp-version-1-18.sty -Package: pgfcomp-version-1-18 2025-08-29 v3.1.11a (3.1.11a) -)) -(/usr/share/texmf-dist/tex/latex/pgf/utilities/pgffor.sty -(/usr/share/texmf-dist/tex/latex/pgf/utilities/pgfkeys.sty -(/usr/share/texmf-dist/tex/generic/pgf/utilities/pgfkeys.code.tex)) -(/usr/share/texmf-dist/tex/latex/pgf/math/pgfmath.sty -(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmath.code.tex)) -(/usr/share/texmf-dist/tex/generic/pgf/utilities/pgffor.code.tex -Package: pgffor 2025-08-29 v3.1.11a (3.1.11a) -\pgffor@iter=\dimen296 -\pgffor@skip=\dimen297 -\pgffor@stack=\toks52 -\pgffor@toks=\toks53 -)) -(/usr/share/texmf-dist/tex/generic/pgf/frontendlayer/tikz/tikz.code.tex -Package: tikz 2025-08-29 v3.1.11a (3.1.11a) - -(/usr/share/texmf-dist/tex/generic/pgf/libraries/pgflibraryplothandlers.code.te -x -File: pgflibraryplothandlers.code.tex 2025-08-29 v3.1.11a (3.1.11a) -\pgf@plot@mark@count=\count348 -\pgfplotmarksize=\dimen298 -) -\tikz@lastx=\dimen299 -\tikz@lasty=\dimen300 -\tikz@lastxsaved=\dimen301 -\tikz@lastysaved=\dimen302 -\tikz@lastmovetox=\dimen303 -\tikz@lastmovetoy=\dimen304 -\tikzleveldistance=\dimen305 -\tikzsiblingdistance=\dimen306 -\tikz@figbox=\box70 -\tikz@figbox@bg=\box71 -\tikz@tempbox=\box72 -\tikz@tempbox@bg=\box73 -\tikztreelevel=\count349 -\tikznumberofchildren=\count350 -\tikznumberofcurrentchild=\count351 -\tikz@fig@count=\count352 - (/usr/share/texmf-dist/tex/generic/pgf/modules/pgfmodulematrix.code.tex -File: pgfmodulematrix.code.tex 2025-08-29 v3.1.11a (3.1.11a) -\pgfmatrixcurrentrow=\count353 -\pgfmatrixcurrentcolumn=\count354 -\pgf@matrix@numberofcolumns=\count355 -) -\tikz@expandcount=\count356 - -(/usr/share/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrary -topaths.code.tex -File: tikzlibrarytopaths.code.tex 2025-08-29 v3.1.11a (3.1.11a) -))) -(/usr/share/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrary -positioning.code.tex -File: tikzlibrarypositioning.code.tex 2025-08-29 v3.1.11a (3.1.11a) -) (/usr/share/texmf-dist/tex/latex/tools/calc.sty -Package: calc 2025/03/01 v4.3b Infix arithmetic (KKT,FJ) -\calc@Acount=\count357 -\calc@Bcount=\count358 -\calc@Adimen=\dimen307 -\calc@Bdimen=\dimen308 -\calc@Askip=\skip82 -\calc@Bskip=\skip83 -LaTeX Info: Redefining \setlength on input line 86. -LaTeX Info: Redefining \addtolength on input line 87. -\calc@Ccount=\count359 -\calc@Cskip=\skip84 -) -\c@@todonotes@numberoftodonotes=\count360 -) -(/usr/share/texmf-dist/tex/latex/pgfplots/pgfplots.sty -(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplots.revision.tex) -Package: pgfplots 2025/08/14 v1.18.2 Data Visualization (1.18.2) - -(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplots.code.tex -(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplotscore.code.tex -\t@pgfplots@toka=\toks54 -\t@pgfplots@tokb=\toks55 -\t@pgfplots@tokc=\toks56 -\pgfplots@tmpa=\dimen309 -\c@pgfplots@coordindex=\count361 -\c@pgfplots@scanlineindex=\count362 - -(/usr/share/texmf-dist/tex/generic/pgfplots/sys/pgfplotssysgeneric.code.tex)) -(/usr/share/texmf-dist/tex/generic/pgfplots/libs/pgfplotslibrary.code.tex) -(/usr/share/texmf-dist/tex/generic/pgfplots/oldpgfcompatib/pgfplotsoldpgfsupp_l -oader.code.tex -(/usr/share/texmf-dist/tex/generic/pgf/libraries/pgflibraryfpu.code.tex) -(/usr/share/texmf-dist/tex/generic/pgfplots/oldpgfcompatib/pgfplotsoldpgfsupp_p -gfutil-common-lists.tex)) -(/usr/share/texmf-dist/tex/generic/pgfplots/util/pgfplotsutil.code.tex -(/usr/share/texmf-dist/tex/generic/pgfplots/liststructure/pgfplotsliststructure -.code.tex) -(/usr/share/texmf-dist/tex/generic/pgfplots/liststructure/pgfplotsliststructure -ext.code.tex) -(/usr/share/texmf-dist/tex/generic/pgfplots/liststructure/pgfplotsarray.code.te -x -\c@pgfplotsarray@tmp=\count363 -) -(/usr/share/texmf-dist/tex/generic/pgfplots/liststructure/pgfplotsmatrix.code.t -ex) -(/usr/share/texmf-dist/tex/generic/pgfplots/numtable/pgfplotstableshared.code.t -ex -\c@pgfplotstable@counta=\count364 -\t@pgfplotstable@a=\toks57 -) -(/usr/share/texmf-dist/tex/generic/pgfplots/liststructure/pgfplotsdeque.code.te -x) (/usr/share/texmf-dist/tex/generic/pgfplots/util/pgfplotsbinary.code.tex -(/usr/share/texmf-dist/tex/generic/pgfplots/util/pgfplotsbinary.data.code.tex)) -(/usr/share/texmf-dist/tex/generic/pgfplots/util/pgfplotsutil.verb.code.tex) -(/usr/share/texmf-dist/tex/generic/pgfplots/libs/pgflibrarypgfplots.surfshading -.code.tex -\c@pgfplotslibrarysurf@no=\count365 - -(/usr/share/texmf-dist/tex/generic/pgfplots/sys/pgflibrarypgfplots.surfshading. -pgfsys-pdftex.def))) -(/usr/share/texmf-dist/tex/generic/pgfplots/util/pgfplotscolormap.code.tex -(/usr/share/texmf-dist/tex/generic/pgfplots/util/pgfplotscolor.code.tex)) -(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplotsstackedplots.code.tex) -(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplotsplothandlers.code.tex -(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplotsmeshplothandler.code.tex -(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplotsmeshplotimage.code.tex))) -(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplots.scaling.code.tex) -(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplotscoordprocessing.code.tex) -(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplots.errorbars.code.tex) -(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplots.markers.code.tex) -(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplotsticks.code.tex) -(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplots.paths.code.tex) -(/usr/share/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrary -decorations.code.tex -(/usr/share/texmf-dist/tex/generic/pgf/modules/pgfmoduledecorations.code.tex -\pgfdecoratedcompleteddistance=\dimen310 -\pgfdecoratedremainingdistance=\dimen311 -\pgfdecoratedinputsegmentcompleteddistance=\dimen312 -\pgfdecoratedinputsegmentremainingdistance=\dimen313 -\pgf@decorate@distancetomove=\dimen314 -\pgf@decorate@repeatstate=\count366 -\pgfdecorationsegmentamplitude=\dimen315 -\pgfdecorationsegmentlength=\dimen316 -) -\tikz@lib@dec@box=\box74 -) -(/usr/share/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrary -decorations.pathmorphing.code.tex -(/usr/share/texmf-dist/tex/generic/pgf/libraries/decorations/pgflibrarydecorati -ons.pathmorphing.code.tex)) -(/usr/share/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrary -decorations.pathreplacing.code.tex -(/usr/share/texmf-dist/tex/generic/pgf/libraries/decorations/pgflibrarydecorati -ons.pathreplacing.code.tex)) -(/usr/share/texmf-dist/tex/generic/pgfplots/libs/tikzlibrarypgfplots.contourlua -.code.tex) -\pgfplots@numplots=\count367 -\pgfplots@xmin@reg=\dimen317 -\pgfplots@xmax@reg=\dimen318 -\pgfplots@ymin@reg=\dimen319 -\pgfplots@ymax@reg=\dimen320 -\pgfplots@zmin@reg=\dimen321 -\pgfplots@zmax@reg=\dimen322 -) -(/usr/share/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrary -plotmarks.code.tex -File: tikzlibraryplotmarks.code.tex 2025-08-29 v3.1.11a (3.1.11a) - -(/usr/share/texmf-dist/tex/generic/pgf/libraries/pgflibraryplotmarks.code.tex -File: pgflibraryplotmarks.code.tex 2025-08-29 v3.1.11a (3.1.11a) -))) (/usr/share/texmf-dist/tex/latex/pgfplots/pgfplotstable.sty -(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplots.revision.tex) -Package: pgfplotstable 2025/08/14 v1.18.2 Table typesetting and Pretty-printing - (1.18.2) - -(/usr/share/texmf-dist/tex/generic/pgfplots/numtable/pgfplotstable.code.tex -(/usr/share/texmf-dist/tex/generic/pgfplots/numtable/pgfplotstable.coltype.code -.tex)) (/usr/share/texmf-dist/tex/latex/tools/array.sty -Package: array 2025/09/25 v2.6n Tabular extension package (FMi) -\col@sep=\dimen323 -\ar@mcellbox=\box75 -\extrarowheight=\dimen324 -\NC@list=\toks58 -\extratabsurround=\skip85 -\backup@length=\skip86 -\ar@cellbox=\box76 -)) -(/usr/share/texmf-dist/tex/generic/pgfplots/libs/tikzlibrarypgfplots.groupplots -.code.tex -\pgfplots@group@current@plot=\count368 -\pgfplots@group@current@row=\count369 -\pgfplots@group@current@column=\count370 - -(/usr/share/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrary -calc.code.tex -File: tikzlibrarycalc.code.tex 2025-08-29 v3.1.11a (3.1.11a) -)) (./macros.tex) - -Package hyperref Warning: Token not allowed in a PDF string (Unicode): -(hyperref) removing `\\' on input line 39. - -Package hyperref Info: Option `pdfdisplaydoctitle' set `true' on input line 39. - -\c@theorem=\count371 -(/usr/share/texmf-dist/tex/latex/preprint/balance.sty -Package: balance 1999/02/23 4.3 (PWD) -\oldvsize=\dimen325 -) -Excluding comment 'screenonly' Include comment 'printonly' -Include comment 'anonsuppress' -(/usr/share/texmf-dist/tex/latex/l3backend/l3backend-pdftex.def -File: l3backend-pdftex.def 2025-10-09 L3 backend support: PDF output (pdfTeX) -\l__color_backend_stack_int=\count372 -) (./main.aux) -\openout1 = `main.aux'. - -LaTeX Font Info: Checking defaults for OML/nxlmi/m/it on input line 39. -LaTeX Font Info: Trying to load font information for OML+nxlmi on input line - 39. - -(/usr/share/texmf-dist/tex/latex/newtx/omlnxlmi.fd -File: omlnxlmi.fd 2013/11/19 Fontinst v1.933 font definitions for OML/nxlmi. -) -LaTeX Font Info: ... okay on input line 39. -LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 39. -LaTeX Font Info: ... okay on input line 39. -LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 39. -LaTeX Font Info: ... okay on input line 39. -LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 39. -LaTeX Font Info: ... okay on input line 39. -LaTeX Font Info: Checking defaults for TS1/cmr/m/n on input line 39. -LaTeX Font Info: ... okay on input line 39. -LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 39. -LaTeX Font Info: ... okay on input line 39. -LaTeX Font Info: Checking defaults for U/ntxexa/m/n on input line 39. -LaTeX Font Info: Trying to load font information for U+ntxexa on input line -39. - -(/usr/share/texmf-dist/tex/latex/newtx/untxexa.fd -File: untxexa.fd 2012/04/16 Fontinst v1.933 font definitions for U/ntxexa. -) -LaTeX Font Info: ... okay on input line 39. -LaTeX Font Info: Checking defaults for PD1/pdf/m/n on input line 39. -LaTeX Font Info: ... okay on input line 39. -LaTeX Font Info: Checking defaults for PU/pdf/m/n on input line 39. -LaTeX Font Info: ... okay on input line 39. -LaTeX Font Info: Checking defaults for LMS/ntxsy/m/n on input line 39. -LaTeX Font Info: Trying to load font information for LMS+ntxsy on input line - 39. - -(/usr/share/texmf-dist/tex/latex/newtx/lmsntxsy.fd -File: lmsntxsy.fd 2016/07/02 Fontinst v1.933 font definitions for LMS/ntxsy. -) -LaTeX Font Info: ... okay on input line 39. -LaTeX Font Info: Checking defaults for LMX/ntxexx/m/n on input line 39. -LaTeX Font Info: Trying to load font information for LMX+ntxexx on input lin -e 39. - -(/usr/share/texmf-dist/tex/latex/newtx/lmxntxexx.fd -File: lmxntxexx.fd 2016/07/03 Fontinst v1.933 font definitions for LMX/ntxexx. -) -LaTeX Font Info: ... okay on input line 39. -LaTeX Font Info: Font shape `T1/LinuxLibertineT-TLF/m/n' will be -(Font) scaled to size 7.0pt on input line 39. -LaTeX Font Info: Trying to load font information for OT1+LinuxLibertineT-TLF - on input line 39. - -(/usr/share/texmf-dist/tex/latex/libertine/OT1LinuxLibertineT-TLF.fd -File: OT1LinuxLibertineT-TLF.fd 2017/03/20 (autoinst) Font definitions for OT1/ -LinuxLibertineT-TLF. -) -LaTeX Font Info: Font shape `OT1/LinuxLibertineT-TLF/m/n' will be -(Font) scaled to size 7.3pt on input line 39. -<> -LaTeX Font Info: Font shape `OT1/LinuxLibertineT-TLF/m/n' will be -(Font) scaled to size 5.5pt on input line 39. -LaTeX Font Info: Font shape `OML/nxlmi/m/it' will be -(Font) scaled to size 7.3pt on input line 39. -<> -LaTeX Font Info: Font shape `OML/nxlmi/m/it' will be -(Font) scaled to size 5.5pt on input line 39. -LaTeX Font Info: Font shape `LMS/ntxsy/m/n' will be -(Font) scaled to size 7.3pt on input line 39. -LaTeX Font Info: Font shape `LMS/ntxsy/m/n' will be -(Font) scaled to size 5.5pt on input line 39. -LaTeX Font Info: Font shape `LMX/ntxexx/m/n' will be -(Font) scaled to size 7.3pt on input line 39. -LaTeX Font Info: Font shape `LMX/ntxexx/m/n' will be -(Font) scaled to size 5.5pt on input line 39. -LaTeX Font Info: Trying to load font information for U+msa on input line 39. - - (/usr/share/texmf-dist/tex/latex/amsfonts/umsa.fd -File: umsa.fd 2013/01/14 v3.01 AMS symbols A -) -LaTeX Font Info: Trying to load font information for U+msb on input line 39. - - -(/usr/share/texmf-dist/tex/latex/amsfonts/umsb.fd -File: umsb.fd 2013/01/14 v3.01 AMS symbols B -) -LaTeX Font Info: Trying to load font information for U+ntxmia on input line -39. - -(/usr/share/texmf-dist/tex/latex/newtx/untxmia.fd -File: untxmia.fd 2024/04/09 Fontinst v1.933 font definitions for U/ntxmia. -) -LaTeX Font Info: Font shape `U/ntxmia/m/it' will be -(Font) scaled to size 7.3pt on input line 39. -LaTeX Font Info: Font shape `U/ntxmia/m/it' will be -(Font) scaled to size 5.5pt on input line 39. -LaTeX Font Info: Trying to load font information for U+ntxsym on input line -39. - -(/usr/share/texmf-dist/tex/latex/newtx/untxsym.fd -File: untxsym.fd 2023/08/16 Fontinst v1.933 font definitions for U/ntxsym. -) -LaTeX Font Info: Font shape `U/ntxsym/m/n' will be -(Font) scaled to size 7.3pt on input line 39. -LaTeX Font Info: Font shape `U/ntxsym/m/n' will be -(Font) scaled to size 5.5pt on input line 39. -LaTeX Font Info: Trying to load font information for U+ntxsyc on input line -39. - -(/usr/share/texmf-dist/tex/latex/newtx/untxsyc.fd -File: untxsyc.fd 2012/04/12 Fontinst v1.933 font definitions for U/ntxsyc. -) -LaTeX Font Info: Font shape `U/ntxsyc/m/n' will be -(Font) scaled to size 7.3pt on input line 39. -LaTeX Font Info: Font shape `U/ntxsyc/m/n' will be -(Font) scaled to size 5.5pt on input line 39. -LaTeX Font Info: Font shape `U/ntxexa/m/n' will be -(Font) scaled to size 7.3pt on input line 39. -LaTeX Font Info: Font shape `U/ntxexa/m/n' will be -(Font) scaled to size 5.5pt on input line 39. -LaTeX Info: Command `\dddot' is already robust on input line 39. -LaTeX Info: Command `\ddddot' is already robust on input line 39. -LaTeX Info: Redefining \microtypecontext on input line 39. -Package microtype Info: Applying patch `item' on input line 39. -Package microtype Info: Applying patch `toc' on input line 39. -Package microtype Info: Applying patch `eqnum' on input line 39. -Package microtype Info: Applying patch `footnote' on input line 39. -Package microtype Info: Applying patch `verbatim' on input line 39. -LaTeX Info: Redefining \microtypesetup on input line 39. -Package microtype Info: Generating PDF output. -Package microtype Info: Character protrusion enabled (level 2). -Package microtype Info: Using default protrusion set `alltext'. -Package microtype Info: Automatic font expansion enabled (level 2), -(microtype) stretch: 20, shrink: 20, step: 1, non-selected. -Package microtype Info: Using default expansion set `alltext-nott'. -Package microtype Info: Patching command `\showhyphens'. -Package microtype Info: No adjustment of tracking. -Package microtype Info: No adjustment of interword spacing. -Package microtype Info: No adjustment of character kerning. -Package microtype Info: Loading generic protrusion settings for font family -(microtype) `LinuxLibertineT-TLF' (encoding: T1). -(microtype) For optimal results, create family-specific settings. -(microtype) See the microtype manual for details. -Package hyperref Info: Link coloring OFF on input line 39. - (./main.out) (./main.out) -\@outlinefile=\write5 -\openout5 = `main.out'. - - -(/usr/share/texmf-dist/tex/context/base/mkii/supp-pdf.mkii -[Loading MPS to PDF converter (version 2006.09.02).] -\scratchcounter=\count373 -\scratchdimen=\dimen326 -\scratchbox=\box77 -\nofMPsegments=\count374 -\nofMParguments=\count375 -\everyMPshowfont=\toks59 -\MPscratchCnt=\count376 -\MPscratchDim=\dimen327 -\MPnumerator=\count377 -\makeMPintoPDFobject=\count378 -\everyMPtoPDFconversion=\toks60 -) (/usr/share/texmf-dist/tex/latex/epstopdf-pkg/epstopdf-base.sty -Package: epstopdf-base 2020-01-24 v2.11 Base part for package epstopdf -Package epstopdf-base Info: Redefining graphics rule for `.eps' on input line 4 -85. - -(/usr/share/texmf-dist/tex/latex/latexconfig/epstopdf-sys.cfg -File: epstopdf-sys.cfg 2010/07/13 v1.3 Configuration of (r)epstopdf for TeX Liv -e -)) -*geometry* driver: auto-detecting -*geometry* detected driver: pdftex -*geometry* verbose mode - [ preamble ] result: -* driver: pdftex -* paper: custom -* layout: -* layoutoffset:(h,v)=(0.0pt,0.0pt) -* modes: includehead includefoot twoside heightrounded -* h-part:(L,W,R)=(54.0pt, 506.295pt, 54.0pt) -* v-part:(T,H,B)=(57.0pt, 664.96999pt, 73.0pt) -* \paperwidth=614.295pt -* \paperheight=794.96999pt -* \textwidth=506.295pt -* \textheight=626.0pt -* \oddsidemargin=-18.26999pt -* \evensidemargin=-18.26999pt -* \topmargin=-15.26999pt -* \headheight=13.0pt -* \headsep=14.0pt -* \topskip=10.0pt -* \footskip=12.0pt -* \marginparwidth=24.0pt -* \marginparsep=11.0pt -* \columnsep=24.0pt -* \skip\footins=7.0pt plus 11.0pt -* \hoffset=0.0pt -* \voffset=0.0pt -* \mag=1000 -* \@twocolumnfalse -* \@twosidetrue -* \@mparswitchtrue -* \@reversemarginfalse -* (1in=72.27pt=25.4mm, 1cm=28.453pt) - -\c@mv@tabular=\count379 -\c@mv@boldtabular=\count380 -(/usr/share/texmf-dist/tex/latex/upquote/upquote.sty -Package: upquote 2012/04/19 v1.3 upright-quote and grave-accent glyphs in verba -tim -) -Package caption Info: Begin \AtBeginDocument code. -Package caption Info: float package is loaded. -Package caption Info: End \AtBeginDocument code. - - -Package todonotes Warning: The length marginparwidth is less than 2cm and will -most likely cause issues with the appearance of inserted todonotes. The issue c -an be solved by adding a line like \setlength {\marginparwidth }{2cm} prior to -loading the todonotes package. on input line 39. - -Package pgfplots notification 'compat/show suggested version=true': document ha -s been generated with the most recent feature set (\pgfplotsset{compat=1.18}). - -LaTeX Font Info: Font shape `T1/LinuxLibertineT-TLF/m/n' will be -(Font) scaled to size 17.28pt on input line 40. -LaTeX Font Info: Trying to load font information for T1+LinuxBiolinumT-TLF o -n input line 40. -(/usr/share/texmf-dist/tex/latex/libertine/T1LinuxBiolinumT-TLF.fd -File: T1LinuxBiolinumT-TLF.fd 2017/03/20 (autoinst) Font definitions for T1/Lin -uxBiolinumT-TLF. -) -LaTeX Font Info: Font shape `T1/LinuxBiolinumT-TLF/m/n' will be -(Font) scaled to size 17.28pt on input line 40. -Package microtype Info: Loading generic protrusion settings for font family -(microtype) `LinuxBiolinumT-TLF' (encoding: T1). -(microtype) For optimal results, create family-specific settings. -(microtype) See the microtype manual for details. -LaTeX Font Info: Font shape `T1/LinuxBiolinumT-TLF/b/n' will be -(Font) scaled to size 17.28pt on input line 40. -LaTeX Font Info: Font shape `T1/LinuxLibertineT-TLF/m/n' will be -(Font) scaled to size 12.0pt on input line 40. -LaTeX Font Info: Font shape `T1/LinuxLibertineT-TLF/m/n' will be -(Font) scaled to size 10.0pt on input line 40. -LaTeX Font Info: Font shape `OT1/LinuxLibertineT-TLF/m/n' will be -(Font) scaled to size 10.0pt on input line 40. -Package microtype Info: Loading generic protrusion settings for font family -(microtype) `LinuxLibertineT-TLF' (encoding: OT1). -(microtype) For optimal results, create family-specific settings. -(microtype) See the microtype manual for details. -LaTeX Font Info: Font shape `OML/nxlmi/m/it' will be -(Font) scaled to size 10.0pt on input line 40. -LaTeX Font Info: Font shape `LMS/ntxsy/m/n' will be -(Font) scaled to size 10.0pt on input line 40. -LaTeX Font Info: Font shape `LMX/ntxexx/m/n' will be -(Font) scaled to size 10.0pt on input line 40. - -(/usr/share/texmf-dist/tex/latex/microtype/mt-msa.cfg -File: mt-msa.cfg 2006/02/04 v1.1 microtype config. file: AMS symbols (a) (RS) -) -(/usr/share/texmf-dist/tex/latex/microtype/mt-msb.cfg -File: mt-msb.cfg 2005/06/01 v1.0 microtype config. file: AMS symbols (b) (RS) -) -LaTeX Font Info: Font shape `U/ntxmia/m/it' will be -(Font) scaled to size 10.0pt on input line 40. -LaTeX Font Info: Font shape `U/ntxsym/m/n' will be -(Font) scaled to size 10.0pt on input line 40. -LaTeX Font Info: Font shape `U/ntxsyc/m/n' will be -(Font) scaled to size 10.0pt on input line 40. -LaTeX Font Info: Font shape `U/ntxexa/m/n' will be -(Font) scaled to size 10.0pt on input line 40. -LaTeX Font Info: Font shape `T1/LinuxLibertineT-TLF/b/n' will be -(Font) scaled to size 9.0pt on input line 40. -LaTeX Font Info: Font shape `T1/LinuxLibertineT-TLF/b/n' will be -(Font) scaled to size 10.95pt on input line 40. - (./sections/abstract.tex -LaTeX Font Info: Trying to load font information for T1+zi4 on input line 9. - -(/usr/share/texmf-dist/tex/latex/inconsolata/t1zi4.fd -File: t1zi4.fd 2018/01/14 T1/zi4 (Inconsolata) -) -LaTeX Font Info: Font shape `T1/zi4/m/n' will be -(Font) scaled to size 9.0pt on input line 9. -Package microtype Info: Loading generic protrusion settings for font family -(microtype) `zi4' (encoding: T1). -(microtype) For optimal results, create family-specific settings. -(microtype) See the microtype manual for details. -LaTeX Font Info: Font shape `OT1/LinuxLibertineT-TLF/m/n' will be -(Font) scaled to size 9.0pt on input line 16. -LaTeX Font Info: Font shape `OT1/LinuxLibertineT-TLF/m/n' will be -(Font) scaled to size 6.6pt on input line 16. -LaTeX Font Info: Font shape `OML/nxlmi/m/it' will be -(Font) scaled to size 9.0pt on input line 16. -LaTeX Font Info: Font shape `OML/nxlmi/m/it' will be -(Font) scaled to size 6.6pt on input line 16. -LaTeX Font Info: Font shape `LMS/ntxsy/m/n' will be -(Font) scaled to size 9.0pt on input line 16. -LaTeX Font Info: Font shape `LMS/ntxsy/m/n' will be -(Font) scaled to size 6.6pt on input line 16. -LaTeX Font Info: Font shape `LMX/ntxexx/m/n' will be -(Font) scaled to size 9.0pt on input line 16. -LaTeX Font Info: Font shape `LMX/ntxexx/m/n' will be -(Font) scaled to size 6.6pt on input line 16. -LaTeX Font Info: Font shape `U/ntxmia/m/it' will be -(Font) scaled to size 9.0pt on input line 16. -LaTeX Font Info: Font shape `U/ntxmia/m/it' will be -(Font) scaled to size 6.6pt on input line 16. -LaTeX Font Info: Font shape `U/ntxsym/m/n' will be -(Font) scaled to size 9.0pt on input line 16. -LaTeX Font Info: Font shape `U/ntxsym/m/n' will be -(Font) scaled to size 6.6pt on input line 16. -LaTeX Font Info: Font shape `U/ntxsyc/m/n' will be -(Font) scaled to size 9.0pt on input line 16. -LaTeX Font Info: Font shape `U/ntxsyc/m/n' will be -(Font) scaled to size 6.6pt on input line 16. -LaTeX Font Info: Font shape `U/ntxexa/m/n' will be -(Font) scaled to size 9.0pt on input line 16. -LaTeX Font Info: Font shape `U/ntxexa/m/n' will be -(Font) scaled to size 6.6pt on input line 16. -LaTeX Font Info: Font shape `T1/LinuxLibertineT-TLF/m/it' will be -(Font) scaled to size 9.0pt on input line 23. -) - -Package hyperref Warning: Token not allowed in a PDF string (Unicode): -(hyperref) removing `\\' on input line 40. - -(./sections/intro.tex -Overfull \hbox (2.43668pt too wide) in paragraph at lines 13--20 -[]\T1/LinuxLibertineT-TLF/m/n/9 (-20) Reference im-ple-men-ta-tions of ML-KEM s -hip with hand-optimized - [] - - -Underfull \vbox (badness 1496) has occurred while \output is active [] - -) -(./sections/background.tex -Overfull \hbox (1.39063pt too wide) in paragraph at lines 7--12 -\T1/LinuxLibertineT-TLF/m/n/9 (-20) ML-KEM [[]] is a key en-cap-su-la-tion mech --a-nism built on the Module- - [] - -[1.1{/var/lib/texmf/fonts/map/pdftex/updmap/pdftex.map}{/usr/share/texmf-dist/f -onts/enc/dvips/libertine/lbtn_25tcsq.enc}{/usr/share/texmf-dist/fonts/enc/dvips -/libertine/lbtn_76gpa5.enc} - -{/usr/share/texmf-dist/fonts/enc/dvips/libertine/lbtn_nh77jq.enc}{/usr/share/te -xmf-dist/fonts/enc/dvips/inconsolata/i4-t1-4.enc}{/usr/share/texmf-dist/fonts/e -nc/dvips/libertine/lbtn_oexx6f.enc}{/usr/share/texmf-dist/fonts/enc/dvips/liber -tine/lbtn_7grukw.enc}] -LaTeX Font Info: Font shape `OT1/LinuxLibertineT-TLF/sb/n' will be -(Font) scaled to size 9.0pt on input line 28. -LaTeX Font Info: Font shape `OT1/LinuxLibertineT-TLF/sb/n' will be -(Font) scaled to size 6.6pt on input line 28. -LaTeX Font Info: Font shape `OT1/LinuxLibertineT-TLF/sb/n' will be -(Font) scaled to size 5.5pt on input line 28. -LaTeX Font Info: Font shape `T1/zi4/b/n' will be -(Font) scaled to size 9.0pt on input line 66. -Package hyperref Info: bookmark level for unknown todo defaults to 0 on input l -ine 81. - - -Class acmart Warning: \vspace should only be used to provide space above/below -surrounding objects on input line 81. - - -Overfull \hbox (12.33592pt too wide) in paragraph at lines 81--81 -[][][]\T1/LinuxLibertineT-TLF/m/n/9 (-20) Phase 2: - [] - - -Overfull \hbox (1.02924pt too wide) in paragraph at lines 81--81 -\T1/LinuxLibertineT-TLF/m/n/9 (-20) pand - [] - - -Overfull \hbox (3.67938pt too wide) in paragraph at lines 81--81 -\T1/LinuxLibertineT-TLF/m/n/9 (-20) RAPL - [] - - -Overfull \hbox (1.30751pt too wide) in paragraph at lines 81--81 -\T1/LinuxLibertineT-TLF/m/n/9 (-20) back- - [] - - -Overfull \hbox (9.16866pt too wide) in paragraph at lines 81--81 -\T1/LinuxLibertineT-TLF/m/n/9 (-20) ground - [] - - -Overfull \hbox (5.09648pt too wide) in paragraph at lines 81--81 -\T1/LinuxLibertineT-TLF/m/n/9 (-20) lected.[] - [] - - -Overfull \hbox (12.33592pt too wide) in paragraph at lines 81--81 -[][][]\T1/LinuxLibertineT-TLF/m/n/9 (-20) Phase 2: - [] - - -Overfull \hbox (1.02924pt too wide) in paragraph at lines 81--81 -\T1/LinuxLibertineT-TLF/m/n/9 (-20) pand - [] - - -Overfull \hbox (3.67938pt too wide) in paragraph at lines 81--81 -\T1/LinuxLibertineT-TLF/m/n/9 (-20) RAPL - [] - - -Overfull \hbox (1.30751pt too wide) in paragraph at lines 81--81 -\T1/LinuxLibertineT-TLF/m/n/9 (-20) back- - [] - - -Overfull \hbox (9.16866pt too wide) in paragraph at lines 81--81 -\T1/LinuxLibertineT-TLF/m/n/9 (-20) ground - [] - - -Overfull \hbox (5.09648pt too wide) in paragraph at lines 81--81 -\T1/LinuxLibertineT-TLF/m/n/9 (-20) lected.[] - [] - - -Underfull \vbox (badness 2096) has occurred while \output is active [] - -) -(./sections/methodology.tex -Overfull \hbox (34.2443pt too wide) in paragraph at lines 7--12 -\T1/LinuxLibertineT-TLF/m/n/9 (-20) We use the ML-KEM ref-er-ence im-ple-men-ta --tion from the \T1/zi4/m/n/9 pq-crystals/kyber - [] - - -Overfull \hbox (12.75487pt too wide) in paragraph at lines 19--22 -[]\T1/zi4/m/n/9 -O0\T1/LinuxLibertineT-TLF/m/n/9 (-20) : un-op-ti-mized. Ev-ery - op-er-a-tion is loaded/stored through - [] - - -Overfull \hbox (1.1187pt too wide) in paragraph at lines 22--25 -[]\T1/zi4/m/n/9 -O3 -fno-tree-vectorize\T1/LinuxLibertineT-TLF/m/n/9 (-20) : ag --gres-sive scalar op-ti-miza- - [] - -LaTeX Font Info: Font shape `T1/LinuxLibertineT-TLF/m/n' will be -(Font) scaled to size 8.0pt on input line 56. -LaTeX Font Info: Font shape `OT1/LinuxLibertineT-TLF/m/n' will be -(Font) scaled to size 8.0pt on input line 56. -LaTeX Font Info: Font shape `OT1/LinuxLibertineT-TLF/m/n' will be -(Font) scaled to size 6.0pt on input line 56. -LaTeX Font Info: Font shape `OML/nxlmi/m/it' will be -(Font) scaled to size 8.0pt on input line 56. -LaTeX Font Info: Font shape `OML/nxlmi/m/it' will be -(Font) scaled to size 6.0pt on input line 56. -LaTeX Font Info: Font shape `LMS/ntxsy/m/n' will be -(Font) scaled to size 8.0pt on input line 56. -LaTeX Font Info: Font shape `LMS/ntxsy/m/n' will be -(Font) scaled to size 6.0pt on input line 56. -LaTeX Font Info: Font shape `LMX/ntxexx/m/n' will be -(Font) scaled to size 8.0pt on input line 56. -LaTeX Font Info: Font shape `LMX/ntxexx/m/n' will be -(Font) scaled to size 6.0pt on input line 56. -LaTeX Font Info: Font shape `OT1/LinuxLibertineT-TLF/sb/n' will be -(Font) scaled to size 8.0pt on input line 56. -LaTeX Font Info: Font shape `OT1/LinuxLibertineT-TLF/sb/n' will be -(Font) scaled to size 6.0pt on input line 56. -LaTeX Font Info: Font shape `U/ntxmia/m/it' will be -(Font) scaled to size 8.0pt on input line 56. -LaTeX Font Info: Font shape `U/ntxmia/m/it' will be -(Font) scaled to size 6.0pt on input line 56. -LaTeX Font Info: Font shape `U/ntxsym/m/n' will be -(Font) scaled to size 8.0pt on input line 56. -LaTeX Font Info: Font shape `U/ntxsym/m/n' will be -(Font) scaled to size 6.0pt on input line 56. -LaTeX Font Info: Font shape `U/ntxsyc/m/n' will be -(Font) scaled to size 8.0pt on input line 56. -LaTeX Font Info: Font shape `U/ntxsyc/m/n' will be -(Font) scaled to size 6.0pt on input line 56. -LaTeX Font Info: Font shape `U/ntxexa/m/n' will be -(Font) scaled to size 8.0pt on input line 56. -LaTeX Font Info: Font shape `U/ntxexa/m/n' will be -(Font) scaled to size 6.0pt on input line 56. -LaTeX Font Info: Font shape `T1/LinuxBiolinumT-TLF/m/n' will be -(Font) scaled to size 9.0pt on input line 68. -LaTeX Font Info: Font shape `T1/LinuxBiolinumT-TLF/m/n' will be -(Font) scaled to size 7.0pt on input line 68. -[2.2{/usr/share/texmf-dist/fonts/enc/dvips/libertine/lbtn_fygcup.enc}] -Overfull \hbox (12.33592pt too wide) in paragraph at lines 74--74 -[][][]\T1/LinuxLibertineT-TLF/m/n/9 (-20) Phase 2: - [] - - -Overfull \hbox (2.77902pt too wide) in paragraph at lines 74--74 -\T1/LinuxLibertineT-TLF/m/n/9 (-20) Hard- - [] - - -Overfull \hbox (10.70134pt too wide) in paragraph at lines 74--74 -\T1/LinuxLibertineT-TLF/m/n/9 (-20) counter - [] - - -Overfull \hbox (1.49364pt too wide) in paragraph at lines 74--74 -\T1/LinuxLibertineT-TLF/m/n/9 (-20) PAPI.[] - [] - - -Overfull \hbox (12.33592pt too wide) in paragraph at lines 74--74 -[][][]\T1/LinuxLibertineT-TLF/m/n/9 (-20) Phase 2: - [] - - -Overfull \hbox (2.77902pt too wide) in paragraph at lines 74--74 -\T1/LinuxLibertineT-TLF/m/n/9 (-20) Hard- - [] - - -Overfull \hbox (10.70134pt too wide) in paragraph at lines 74--74 -\T1/LinuxLibertineT-TLF/m/n/9 (-20) counter - [] - - -Overfull \hbox (1.49364pt too wide) in paragraph at lines 74--74 -\T1/LinuxLibertineT-TLF/m/n/9 (-20) PAPI.[] - [] - -LaTeX Font Info: Font shape `T1/LinuxLibertineT-TLF/m/n' will be -(Font) scaled to size 6.6pt on input line 85. -LaTeX Font Info: Font shape `T1/LinuxLibertineT-TLF/m/n' will be -(Font) scaled to size 5.5pt on input line 85. - -Overfull \hbox (49.16818pt too wide) in paragraph at lines 84--86 -[]\T1/LinuxLibertineT-TLF/b/n/9 (-20) Speedup\T1/LinuxLibertineT-TLF/m/n/9 (-20 -) : ra-tio of group me-di-ans, $[] \U/ntxmia/m/it/9 = []\LMS/ntxsy/m/n/9 \OML/ -nxlmi/m/it/9 X[]\LMS/ntxsy/m/n/9 []\OML/nxlmi/m/it/9 X[]\LMS/ntxsy/m/n/9 $\ -T1/LinuxLibertineT-TLF/m/n/9 (-20) . - [] - - -Class acmart Warning: \vspace should only be used to provide space above/below -surrounding objects on input line 102. - - -Overfull \hbox (12.33592pt too wide) in paragraph at lines 102--102 -[][][]\T1/LinuxLibertineT-TLF/m/n/9 (-20) Phase 2: - [] - - -Overfull \hbox (3.67938pt too wide) in paragraph at lines 102--102 -\T1/LinuxLibertineT-TLF/m/n/9 (-20) RAPL - [] - - -Overfull \hbox (8.0676pt too wide) in paragraph at lines 102--102 -\T1/LinuxLibertineT-TLF/m/n/9 (-20) DRAM - [] - - -Overfull \hbox (8.3653pt too wide) in paragraph at lines 102--102 -\T1/LinuxLibertineT-TLF/m/n/9 (-20) mains), - [] - - -Overfull \hbox (17.92078pt too wide) in paragraph at lines 102--102 -\T1/LinuxLibertineT-TLF/m/n/9 (-20) operation - [] - - -Overfull \hbox (4.97052pt too wide) in paragraph at lines 102--102 -\T1/LinuxLibertineT-TLF/m/n/9 (-20) joules.[] - [] - - -Overfull \hbox (12.33592pt too wide) in paragraph at lines 102--102 -[][][]\T1/LinuxLibertineT-TLF/m/n/9 (-20) Phase 2: - [] - - -Overfull \hbox (3.67938pt too wide) in paragraph at lines 102--102 -\T1/LinuxLibertineT-TLF/m/n/9 (-20) RAPL - [] - - -Overfull \hbox (8.0676pt too wide) in paragraph at lines 102--102 -\T1/LinuxLibertineT-TLF/m/n/9 (-20) DRAM - [] - - -Overfull \hbox (8.3653pt too wide) in paragraph at lines 102--102 -\T1/LinuxLibertineT-TLF/m/n/9 (-20) mains), - [] - - -Overfull \hbox (17.92078pt too wide) in paragraph at lines 102--102 -\T1/LinuxLibertineT-TLF/m/n/9 (-20) operation - [] - - -Overfull \hbox (4.97052pt too wide) in paragraph at lines 102--102 -\T1/LinuxLibertineT-TLF/m/n/9 (-20) joules.[] - [] - -) (./sections/results.tex - -File: figures/distributions.pdf Graphic file (type pdf) - -Package pdftex.def Info: figures/distributions.pdf used on input line 22. -(pdftex.def) Requested size: 241.14749pt x 63.64691pt. - - -Class acmart Warning: A possible image without description on input line 27. - -(./figures/fig_decomp.tex -Package pgfplots info on input line 18: Using 'lua backend=false' for axis: ymo -de=log unsupported (yet). -Package pgfplots info on input line 18: Using 'lua backend=false' for axis: x c -oord trafo unsupported. -PGFPlots: reading {figures/data/decomp_mlkem512.csv} -PGFPlots: reading {figures/data/decomp_mlkem512.csv} -PGFPlots: reading {figures/data/decomp_mlkem512.csv} -Package pgfplots info on input line 36: Using 'lua backend=false' for axis: ymo -de=log unsupported (yet). -Package pgfplots info on input line 36: Using 'lua backend=false' for axis: x c -oord trafo unsupported. -PGFPlots: reading {figures/data/decomp_mlkem768.csv} -PGFPlots: reading {figures/data/decomp_mlkem768.csv} -PGFPlots: reading {figures/data/decomp_mlkem768.csv} -Package pgfplots info on input line 56: Using 'lua backend=false' for axis: ymo -de=log unsupported (yet). -Package pgfplots info on input line 56: Using 'lua backend=false' for axis: x c -oord trafo unsupported. -PGFPlots: reading {figures/data/decomp_mlkem1024.csv} -PGFPlots: reading {figures/data/decomp_mlkem1024.csv} -PGFPlots: reading {figures/data/decomp_mlkem1024.csv} -LaTeX Font Info: Font shape `T1/LinuxLibertineT-TLF/m/n' will be -(Font) scaled to size 6.0pt on input line 73. -) -LaTeX Font Info: Trying to load font information for TS1+LinuxLibertineT-TLF - on input line 62. - -(/usr/share/texmf-dist/tex/latex/libertine/TS1LinuxLibertineT-TLF.fd -File: TS1LinuxLibertineT-TLF.fd 2017/03/20 (autoinst) Font definitions for TS1/ -LinuxLibertineT-TLF. -) -LaTeX Font Info: Font shape `TS1/LinuxLibertineT-TLF/b/n' will be -(Font) scaled to size 9.0pt on input line 62. -Package microtype Info: Loading generic protrusion settings for font family -(microtype) `LinuxLibertineT-TLF' (encoding: TS1). -(microtype) For optimal results, create family-specific settings. -(microtype) See the microtype manual for details. - - -Class acmart Warning: A possible image without description on input line 64. - - -Overfull \hbox (1.39633pt too wide) in paragraph at lines 75--80 -[]\T1/LinuxLibertineT-TLF/b/n/9 (-20) Arithmetic op-er-a-tions \T1/LinuxLiberti -neT-TLF/m/n/9 (-20) achieve the largest speedups: $\OT1/LinuxLibertineT-TLF/m/n -/9 (-20) 56\OML/nxlmi/m/it/9 :\OT1/LinuxLibertineT-TLF/m/n/9 (-20) 3\LMS/ntxsy/ -m/n/9 ^^B$ - [] - - -Overfull \hbox (1.97356pt too wide) in paragraph at lines 80--83 -\T1/LinuxLibertineT-TLF/m/n/9 (-20) metic op-er-a-tions be-cause SHAKE-128 gen- -er-a-tion is memory- - [] - - -Overfull \hbox (2.1837pt too wide) in paragraph at lines 83--87 -\T1/LinuxLibertineT-TLF/m/n/9 (-20) sam-pler is bit-manipulation-heavy with se- -quen-tial bit-stream - [] - -(./figures/fig_hand_simd.tex -Package pgfplots info on input line 16: Using 'lua backend=false' for axis: ymo -de=log unsupported (yet). -Package pgfplots info on input line 16: Using 'lua backend=false' for axis: x c -oord trafo unsupported. -PGFPlots: reading {figures/data/hand_simd.csv} -PGFPlots: reading {figures/data/hand_simd.csv} -PGFPlots: reading {figures/data/hand_simd.csv} -) - -Class acmart Warning: A possible image without description on input line 99. - -LaTeX Font Info: Font shape `T1/zi4/m/n' will be -(Font) scaled to size 8.0pt on input line 110. - -File: figures/cliffs_delta_heatmap.pdf Graphic file (type pdf) - -Package pdftex.def Info: figures/cliffs_delta_heatmap.pdf used on input line 1 -37. -(pdftex.def) Requested size: 241.14749pt x 44.61235pt. - -Class acmart Warning: A possible image without description on input line 142. - - -Package fancyhdr Warning: \headheight is too small (13.0pt): -(fancyhdr) Make it at least 16.3575pt, for example: -(fancyhdr) \setlength{\headheight}{16.3575pt}. -(fancyhdr) You might also make \topmargin smaller: -(fancyhdr) \addtolength{\topmargin}{-3.3575pt}. - -[3.3 <./figures/distributions.pdf>] - -LaTeX Warning: Text page 4 contains only floats. - - -Underfull \vbox (badness 10000) has occurred while \output is active [] - - [4.4{/usr/share/texmf-dist/fonts/enc/dvips/libertine/lbtn_7f4ce4.enc} <./figur -es/cliffs_delta_heatmap.pdf>] (./figures/fig_cross_param.tex -Package pgfplots info on input line 12: Using 'lua backend=false' for axis: x c -oord trafo unsupported. -PGFPlots: reading {figures/data/cross_param.csv} -PGFPlots: reading {figures/data/cross_param.csv} -PGFPlots: reading {figures/data/cross_param.csv} -) - -Class acmart Warning: A possible image without description on input line 170. - - -Class acmart Warning: \vspace should only be used to provide space above/below -surrounding objects on input line 176. - - -Overfull \hbox (12.33592pt too wide) in paragraph at lines 176--176 -[][][]\T1/LinuxLibertineT-TLF/m/n/9 (-20) Phase 2: - [] - - -Overfull \hbox (15.15009pt too wide) in paragraph at lines 176--176 -\T1/LinuxLibertineT-TLF/m/n/9 (-20) L1/L2/L3 - [] - - -Overfull \hbox (3.44592pt too wide) in paragraph at lines 176--176 -\T1/LinuxLibertineT-TLF/m/n/9 (-20) cache - [] - - -Overfull \hbox (1.60919pt too wide) in paragraph at lines 176--176 -\T1/LinuxLibertineT-TLF/m/n/9 (-20) rates, - [] - - -Overfull \hbox (8.13815pt too wide) in paragraph at lines 176--176 -\T1/LinuxLibertineT-TLF/m/n/9 (-20) branch - [] - - -Overfull \hbox (1.02042pt too wide) in paragraph at lines 176--176 -\T1/LinuxLibertineT-TLF/m/n/9 (-20) tions - [] - - -Overfull \hbox (1.49364pt too wide) in paragraph at lines 176--176 -\T1/LinuxLibertineT-TLF/m/n/9 (-20) PAPI. - [] - - -Overfull \hbox (5.23637pt too wide) in paragraph at lines 176--176 -\T1/LinuxLibertineT-TLF/m/n/9 (-20) charts - [] - - -Overfull \hbox (10.70134pt too wide) in paragraph at lines 176--176 -\T1/LinuxLibertineT-TLF/m/n/9 (-20) counter - [] - - -Overfull \hbox (2.74518pt too wide) in paragraph at lines 176--176 -\T1/LinuxLibertineT-TLF/m/n/9 (-20) plain- - [] - - -Overfull \hbox (4.13118pt too wide) in paragraph at lines 176--176 -\T1/LinuxLibertineT-TLF/m/n/9 (-20) mech- - [] - - -Overfull \hbox (13.45728pt too wide) in paragraph at lines 176--176 -\T1/LinuxLibertineT-TLF/m/n/9 (-20) speedup.[] - [] - - -Overfull \hbox (12.33592pt too wide) in paragraph at lines 176--176 -[][][]\T1/LinuxLibertineT-TLF/m/n/9 (-20) Phase 2: - [] - - -Overfull \hbox (15.15009pt too wide) in paragraph at lines 176--176 -\T1/LinuxLibertineT-TLF/m/n/9 (-20) L1/L2/L3 - [] - - -Overfull \hbox (3.44592pt too wide) in paragraph at lines 176--176 -\T1/LinuxLibertineT-TLF/m/n/9 (-20) cache - [] - - -Overfull \hbox (1.60919pt too wide) in paragraph at lines 176--176 -\T1/LinuxLibertineT-TLF/m/n/9 (-20) rates, - [] - - -Overfull \hbox (8.13815pt too wide) in paragraph at lines 176--176 -\T1/LinuxLibertineT-TLF/m/n/9 (-20) branch - [] - - -Overfull \hbox (1.02042pt too wide) in paragraph at lines 176--176 -\T1/LinuxLibertineT-TLF/m/n/9 (-20) tions - [] - - -Overfull \hbox (1.49364pt too wide) in paragraph at lines 176--176 -\T1/LinuxLibertineT-TLF/m/n/9 (-20) PAPI. - [] - - -Overfull \hbox (5.23637pt too wide) in paragraph at lines 176--176 -\T1/LinuxLibertineT-TLF/m/n/9 (-20) charts - [] - - -Overfull \hbox (10.70134pt too wide) in paragraph at lines 176--176 -\T1/LinuxLibertineT-TLF/m/n/9 (-20) counter - [] - - -Overfull \hbox (2.74518pt too wide) in paragraph at lines 176--176 -\T1/LinuxLibertineT-TLF/m/n/9 (-20) plain- - [] - - -Overfull \hbox (4.13118pt too wide) in paragraph at lines 176--176 -\T1/LinuxLibertineT-TLF/m/n/9 (-20) mech- - [] - - -Overfull \hbox (13.45728pt too wide) in paragraph at lines 176--176 -\T1/LinuxLibertineT-TLF/m/n/9 (-20) speedup.[] - [] - - -Class acmart Warning: \vspace should only be used to provide space above/below -surrounding objects on input line 181. - - -Overfull \hbox (12.33592pt too wide) in paragraph at lines 181--181 -[][][]\T1/LinuxLibertineT-TLF/m/n/9 (-20) Phase 2: - [] - - -Overfull \hbox (3.67938pt too wide) in paragraph at lines 181--181 -\T1/LinuxLibertineT-TLF/m/n/9 (-20) RAPL - [] - - -Overfull \hbox (8.0676pt too wide) in paragraph at lines 181--181 -\T1/LinuxLibertineT-TLF/m/n/9 (-20) DRAM - [] - - -Overfull \hbox (11.74193pt too wide) in paragraph at lines 181--181 -\T1/LinuxLibertineT-TLF/m/n/9 (-20) (energy- - [] - - -Overfull \hbox (2.25055pt too wide) in paragraph at lines 181--181 -\T1/LinuxLibertineT-TLF/m/n/9 (-20) delay - [] - - -Overfull \hbox (1.39554pt too wide) in paragraph at lines 181--181 -\T1/LinuxLibertineT-TLF/m/n/9 (-20) prod- - [] - - -Overfull \hbox (1.10864pt too wide) in paragraph at lines 181--181 -\T1/LinuxLibertineT-TLF/m/n/9 (-20) KEM - [] - - -Overfull \hbox (12.33592pt too wide) in paragraph at lines 181--181 -[][][]\T1/LinuxLibertineT-TLF/m/n/9 (-20) Phase 2: - [] - - -Overfull \hbox (3.67938pt too wide) in paragraph at lines 181--181 -\T1/LinuxLibertineT-TLF/m/n/9 (-20) RAPL - [] - - -Overfull \hbox (8.0676pt too wide) in paragraph at lines 181--181 -\T1/LinuxLibertineT-TLF/m/n/9 (-20) DRAM - [] - - -Overfull \hbox (11.74193pt too wide) in paragraph at lines 181--181 -\T1/LinuxLibertineT-TLF/m/n/9 (-20) (energy- - [] - - -Overfull \hbox (2.25055pt too wide) in paragraph at lines 181--181 -\T1/LinuxLibertineT-TLF/m/n/9 (-20) delay - [] - - -Overfull \hbox (1.39554pt too wide) in paragraph at lines 181--181 -\T1/LinuxLibertineT-TLF/m/n/9 (-20) prod- - [] - - -Overfull \hbox (1.10864pt too wide) in paragraph at lines 181--181 -\T1/LinuxLibertineT-TLF/m/n/9 (-20) KEM - [] - - -LaTeX Warning: Marginpar on page 5 moved. - -) (./sections/discussion.tex -Overfull \hbox (12.33592pt too wide) in paragraph at lines 22--22 -[][][]\T1/LinuxLibertineT-TLF/m/n/9 (-20) Phase 2: - [] - - -Overfull \hbox (2.32182pt too wide) in paragraph at lines 22--22 -\T1/LinuxLibertineT-TLF/m/n/9 (-20) coun- - [] - - -Overfull \hbox (12.33592pt too wide) in paragraph at lines 22--22 -[][][]\T1/LinuxLibertineT-TLF/m/n/9 (-20) Phase 2: - [] - - -Overfull \hbox (2.32182pt too wide) in paragraph at lines 22--22 -\T1/LinuxLibertineT-TLF/m/n/9 (-20) coun- - [] - - -LaTeX Warning: Marginpar on page 5 moved. - - -Underfull \vbox (badness 1448) has occurred while \output is active [] - - -Overfull \hbox (12.33592pt too wide) in paragraph at lines 73--73 -[][][]\T1/LinuxLibertineT-TLF/m/n/9 (-20) Phase 2: - [] - - -Overfull \hbox (3.54297pt too wide) in paragraph at lines 73--73 -\T1/LinuxLibertineT-TLF/m/n/9 (-20) L1/L2 - [] - - -Overfull \hbox (2.32182pt too wide) in paragraph at lines 73--73 -\T1/LinuxLibertineT-TLF/m/n/9 (-20) coun- - [] - - -Overfull \hbox (3.8923pt too wide) in paragraph at lines 73--73 -\T1/LinuxLibertineT-TLF/m/n/9 (-20) scalar - [] - - -Overfull \hbox (4.21199pt too wide) in paragraph at lines 73--73 -\T1/LinuxLibertineT-TLF/m/n/9 (-20) AVX2.[] - [] - - -Overfull \hbox (12.33592pt too wide) in paragraph at lines 73--73 -[][][]\T1/LinuxLibertineT-TLF/m/n/9 (-20) Phase 2: - [] - - -Overfull \hbox (3.54297pt too wide) in paragraph at lines 73--73 -\T1/LinuxLibertineT-TLF/m/n/9 (-20) L1/L2 - [] - - -Overfull \hbox (2.32182pt too wide) in paragraph at lines 73--73 -\T1/LinuxLibertineT-TLF/m/n/9 (-20) coun- - [] - - -Overfull \hbox (3.8923pt too wide) in paragraph at lines 73--73 -\T1/LinuxLibertineT-TLF/m/n/9 (-20) scalar - [] - - -Overfull \hbox (4.21199pt too wide) in paragraph at lines 73--73 -\T1/LinuxLibertineT-TLF/m/n/9 (-20) AVX2.[] - [] - - -Package fancyhdr Warning: \headheight is too small (13.0pt): -(fancyhdr) Make it at least 16.3575pt, for example: -(fancyhdr) \setlength{\headheight}{16.3575pt}. -(fancyhdr) You might also make \topmargin smaller: -(fancyhdr) \addtolength{\topmargin}{-3.3575pt}. - -[5.5] -Overfull \hbox (12.33592pt too wide) in paragraph at lines 91--91 -[][][]\T1/LinuxLibertineT-TLF/m/n/9 (-20) Phase 2: - [] - - -Overfull \hbox (2.32182pt too wide) in paragraph at lines 91--91 -\T1/LinuxLibertineT-TLF/m/n/9 (-20) coun- - [] - - -Overfull \hbox (3.44592pt too wide) in paragraph at lines 91--91 -\T1/LinuxLibertineT-TLF/m/n/9 (-20) cache - [] - - -Overfull \hbox (1.2132pt too wide) in paragraph at lines 91--91 -\T1/LinuxLibertineT-TLF/m/n/9 (-20) rates.[] - [] - - -Overfull \hbox (12.33592pt too wide) in paragraph at lines 91--91 -[][][]\T1/LinuxLibertineT-TLF/m/n/9 (-20) Phase 2: - [] - - -Overfull \hbox (2.32182pt too wide) in paragraph at lines 91--91 -\T1/LinuxLibertineT-TLF/m/n/9 (-20) coun- - [] - - -Overfull \hbox (3.44592pt too wide) in paragraph at lines 91--91 -\T1/LinuxLibertineT-TLF/m/n/9 (-20) cache - [] - - -Overfull \hbox (1.2132pt too wide) in paragraph at lines 91--91 -\T1/LinuxLibertineT-TLF/m/n/9 (-20) rates.[] - [] - - -Overfull \hbox (12.33592pt too wide) in paragraph at lines 97--97 -[][][]\T1/LinuxLibertineT-TLF/m/n/9 (-20) Phase 3: - [] - - -Overfull \hbox (2.57527pt too wide) in paragraph at lines 97--97 -\T1/LinuxLibertineT-TLF/m/n/9 (-20) AMD - [] - - -Overfull \hbox (1.56978pt too wide) in paragraph at lines 97--97 -\T1/LinuxLibertineT-TLF/m/n/9 (-20) ARM - [] - - -Overfull \hbox (4.76495pt too wide) in paragraph at lines 97--97 -\T1/LinuxLibertineT-TLF/m/n/9 (-20) Gravi- - [] - - -Overfull \hbox (2.41pt too wide) in paragraph at lines 97--97 -\T1/LinuxLibertineT-TLF/m/n/9 (-20) RISC- - [] - - -Overfull \hbox (12.33592pt too wide) in paragraph at lines 97--97 -[][][]\T1/LinuxLibertineT-TLF/m/n/9 (-20) Phase 3: - [] - - -Overfull \hbox (2.57527pt too wide) in paragraph at lines 97--97 -\T1/LinuxLibertineT-TLF/m/n/9 (-20) AMD - [] - - -Overfull \hbox (1.56978pt too wide) in paragraph at lines 97--97 -\T1/LinuxLibertineT-TLF/m/n/9 (-20) ARM - [] - - -Overfull \hbox (4.76495pt too wide) in paragraph at lines 97--97 -\T1/LinuxLibertineT-TLF/m/n/9 (-20) Gravi- - [] - - -Overfull \hbox (2.41pt too wide) in paragraph at lines 97--97 -\T1/LinuxLibertineT-TLF/m/n/9 (-20) RISC- - [] - - -LaTeX Warning: Marginpar on page 6 moved. - - -Overfull \hbox (12.33592pt too wide) in paragraph at lines 104--104 -[][][]\T1/LinuxLibertineT-TLF/m/n/9 (-20) Phase 2: - [] - - -Overfull \hbox (2.3924pt too wide) in paragraph at lines 104--104 -\T1/LinuxLibertineT-TLF/m/n/9 (-20) Char- - [] - - -Overfull \hbox (9.10367pt too wide) in paragraph at lines 104--104 -\T1/LinuxLibertineT-TLF/m/n/9 (-20) quency - [] - - -Overfull \hbox (6.31908pt too wide) in paragraph at lines 104--104 -\T1/LinuxLibertineT-TLF/m/n/9 (-20) bench- - [] - - -Overfull \hbox (6.85527pt too wide) in paragraph at lines 104--104 -\T1/LinuxLibertineT-TLF/m/n/9 (-20) marks; - [] - - -Overfull \hbox (5.37354pt too wide) in paragraph at lines 104--104 -\T1/LinuxLibertineT-TLF/m/n/9 (-20) RAPL- - [] - - -Overfull \hbox (23.60965pt too wide) in paragraph at lines 104--104 -\T1/LinuxLibertineT-TLF/m/n/9 (-20) normalized - [] - - -Overfull \hbox (7.64296pt too wide) in paragraph at lines 104--104 -\T1/LinuxLibertineT-TLF/m/n/9 (-20) counts.[] - [] - - -Overfull \hbox (12.33592pt too wide) in paragraph at lines 104--104 -[][][]\T1/LinuxLibertineT-TLF/m/n/9 (-20) Phase 2: - [] - - -Overfull \hbox (2.3924pt too wide) in paragraph at lines 104--104 -\T1/LinuxLibertineT-TLF/m/n/9 (-20) Char- - [] - - -Overfull \hbox (9.10367pt too wide) in paragraph at lines 104--104 -\T1/LinuxLibertineT-TLF/m/n/9 (-20) quency - [] - - -Overfull \hbox (6.31908pt too wide) in paragraph at lines 104--104 -\T1/LinuxLibertineT-TLF/m/n/9 (-20) bench- - [] - - -Overfull \hbox (6.85527pt too wide) in paragraph at lines 104--104 -\T1/LinuxLibertineT-TLF/m/n/9 (-20) marks; - [] - - -Overfull \hbox (5.37354pt too wide) in paragraph at lines 104--104 -\T1/LinuxLibertineT-TLF/m/n/9 (-20) RAPL- - [] - - -Overfull \hbox (23.60965pt too wide) in paragraph at lines 104--104 -\T1/LinuxLibertineT-TLF/m/n/9 (-20) normalized - [] - - -Overfull \hbox (7.64296pt too wide) in paragraph at lines 104--104 -\T1/LinuxLibertineT-TLF/m/n/9 (-20) counts.[] - [] - -) (./sections/related.tex - -LaTeX Warning: Marginpar on page 6 moved. - - -Overfull \hbox (2.93585pt too wide) in paragraph at lines 15--21 - []\T1/LinuxLibertineT-TLF/m/it/9 (-20) PQC bench-mark-ing.[] \T1/LinuxLibertin -eT-TLF/m/n/9 (-20) eBACS/SUPERCOP pro-vides a cross-platform - [] - -) (./sections/conclusion.tex -Overfull \hbox (2.2138pt too wide) in paragraph at lines 23--27 -[]\T1/LinuxLibertineT-TLF/b/n/9 (-20) The sta-tis-ti-cal sig-nal is over-whelm- -ing. \T1/LinuxLibertineT-TLF/m/n/9 (-20) Cliff's $\OML/nxlmi/m/it/9 ^^N \U/ntxm -ia/m/it/9 = \LMS/ntxsy/m/n/9 \OT1/LinuxLibertineT-TLF/m/n/9 (-20) 1\OML/nxlmi/ -m/it/9 :\OT1/LinuxLibertineT-TLF/m/n/9 (-20) 000$ - [] - - -Overfull \hbox (14.29701pt too wide) in paragraph at lines 35--42 -\T1/LinuxLibertineT-TLF/m/n/9 (-20) with the same har-ness; and cross-ISA com-p -ar-i-son with ARM NEON/SVE - [] - -) (./main.bbl -LaTeX Font Info: Font shape `OT1/LinuxLibertineT-TLF/sb/n' will be -(Font) scaled to size 7.3pt on input line 48. -LaTeX Info: Redefining \tempurl on input line 59. -LaTeX Info: Redefining \tempurl on input line 71. -LaTeX Font Info: Font shape `T1/LinuxLibertineT-TLF/m/it' will be -(Font) scaled to size 7.0pt on input line 85. -LaTeX Info: Redefining \tempurl on input line 109. - [6.6] -LaTeX Info: Redefining \tempurl on input line 134. -LaTeX Info: Redefining \tempurl on input line 148. -LaTeX Info: Redefining \tempurl on input line 174. -LaTeX Info: Redefining \tempurl on input line 189. -LaTeX Info: Redefining \tempurl on input line 204. -LaTeX Info: Redefining \tempurl on input line 217. -LaTeX Info: Redefining \tempurl on input line 230. -) (./sections/supplementary.tex (./figures/fig_kem_level.tex -Package pgfplots info on input line 12: Using 'lua backend=false' for axis: x c -oord trafo unsupported. -PGFPlots: reading {figures/data/kem_level.csv} -PGFPlots: reading {figures/data/kem_level.csv} -PGFPlots: reading {figures/data/kem_level.csv} -) -Underfull \hbox (badness 3291) in paragraph at lines 22--22 -[]\T1/LinuxLibertineT-TLF/b/n/9 (+20) Figure 6: |End-to-end KEM speedup (\T1/zi -4/b/n/9 ref $\LMS/ntxsy/m/n/9 !$ \T1/zi4/b/n/9 avx2\T1/LinuxLibertineT-TLF/b/n/ -9 (+20) ) for - [] - - -Class acmart Warning: A possible image without description on input line 24. - -) - -Class acmart Warning: Some images may lack descriptions. -(acmart) ACM is committed to complying with the upcoming US ADA ht -tps://accessiblyapp.com/accessibility-compliance/ada/ and European Accessibilit -y Act (EAA) https://accessiblyapp.com/accessibility-compliance/eaa/ regulations - by actively working to ensure our publications and application services are ac -cessible to individuals with disabilities, adhering to the WCAG guidelines to p -rovide a seamless experience for all users, and regularly reviewing our accessi -bility practices to maintain compliance with evolving standards. -(acmart) To this end, we strongly encourage our authors to provide - alternative text and captions for images and multimedia content. It is also im -portant to optimize color contrast for the visually impaired. Taking these impo -rtant steps when creating your papers will ensure that the widest possible audi -ence can ingest your work.. - - -Overfull \vbox (1.47816pt too high) has occurred while \output is active [] - - - -Package fancyhdr Warning: \headheight is too small (13.0pt): -(fancyhdr) Make it at least 16.3575pt, for example: -(fancyhdr) \setlength{\headheight}{16.3575pt}. -(fancyhdr) You might also make \topmargin smaller: -(fancyhdr) \addtolength{\topmargin}{-3.3575pt}. - -(/usr/share/texmf-dist/tex/generic/stringenc/se-pdfdoc.def -File: se-pdfdoc.def 2019/11/29 v1.12 stringenc: PDFDocEncoding -) -(/usr/share/texmf-dist/tex/generic/stringenc/se-utf8.def -File: se-utf8.def 2019/11/29 v1.12 stringenc: UTF-8 -) [7.7] (./main.aux) - *********** -LaTeX2e <2025-11-01> -L3 programming layer <2026-01-19> - *********** -Package rerunfilecheck Info: File `main.out' has not changed. -(rerunfilecheck) Checksum: FD3BDD0F0C80EDC2D1148A0E1D123901;6530. - ) -Here is how much of TeX's memory you used: - 43676 strings out of 469515 - 964424 string characters out of 5470808 - 1702690 words of memory out of 5000000 - 70813 multiletter control sequences out of 15000+600000 - 807087 words of font info for 427 fonts, out of 8000000 for 9000 - 175 hyphenation exceptions out of 8191 - 99i,19n,131p,1001b,3051s stack positions out of 10000i,1000n,20000p,200000b,200000s - - -Output written on main.pdf (7 pages, 645770 bytes). -PDF statistics: - 544 PDF objects out of 1000 (max. 8388607) - 383 compressed objects within 4 object streams - 99 named destinations out of 1000 (max. 500000) - 102207 words of extra memory for PDF output out of 106986 (max. 10000000) - diff --git a/paper/main.out b/paper/main.out deleted file mode 100644 index efc465c..0000000 --- a/paper/main.out +++ /dev/null @@ -1,35 +0,0 @@ -\BOOKMARK [1][-]{section*.1}{\376\377\000A\000b\000s\000t\000r\000a\000c\000t}{}% 1 -\BOOKMARK [1][-]{section.1}{\376\377\0001\000\040\000I\000n\000t\000r\000o\000d\000u\000c\000t\000i\000o\000n}{}% 2 -\BOOKMARK [1][-]{section.2}{\376\377\0002\000\040\000B\000a\000c\000k\000g\000r\000o\000u\000n\000d}{}% 3 -\BOOKMARK [2][-]{subsection.2.1}{\376\377\0002\000.\0001\000\040\000M\000L\000-\000K\000E\000M\000\040\000a\000n\000d\000\040\000t\000h\000e\000\040\000N\000u\000m\000b\000e\000r\000\040\000T\000h\000e\000o\000r\000e\000t\000i\000c\000\040\000T\000r\000a\000n\000s\000f\000o\000r\000m}{section.2}% 4 -\BOOKMARK [2][-]{subsection.2.2}{\376\377\0002\000.\0002\000\040\000A\000V\000X\0002\000\040\000S\000I\000M\000D\000\040\000o\000n\000\040\000x\0008\0006\000-\0006\0004}{section.2}% 5 -\BOOKMARK [2][-]{subsection.2.3}{\376\377\0002\000.\0003\000\040\000C\000o\000m\000p\000i\000l\000a\000t\000i\000o\000n\000\040\000V\000a\000r\000i\000a\000n\000t\000s}{section.2}% 6 -\BOOKMARK [2][-]{subsection.2.4}{\376\377\0002\000.\0004\000\040\000H\000a\000r\000d\000w\000a\000r\000e\000\040\000P\000e\000r\000f\000o\000r\000m\000a\000n\000c\000e\000\040\000C\000o\000u\000n\000t\000e\000r\000s\000\040\000a\000n\000d\000\040\000E\000n\000e\000r\000g\000y}{section.2}% 7 -\BOOKMARK [1][-]{section.3}{\376\377\0003\000\040\000M\000e\000t\000h\000o\000d\000o\000l\000o\000g\000y}{}% 8 -\BOOKMARK [2][-]{subsection.3.1}{\376\377\0003\000.\0001\000\040\000I\000m\000p\000l\000e\000m\000e\000n\000t\000a\000t\000i\000o\000n\000\040\000S\000o\000u\000r\000c\000e}{section.3}% 9 -\BOOKMARK [2][-]{subsection.3.2}{\376\377\0003\000.\0002\000\040\000C\000o\000m\000p\000i\000l\000a\000t\000i\000o\000n\000\040\000V\000a\000r\000i\000a\000n\000t\000s}{section.3}% 10 -\BOOKMARK [2][-]{subsection.3.3}{\376\377\0003\000.\0003\000\040\000B\000e\000n\000c\000h\000m\000a\000r\000k\000\040\000H\000a\000r\000n\000e\000s\000s}{section.3}% 11 -\BOOKMARK [2][-]{subsection.3.4}{\376\377\0003\000.\0004\000\040\000H\000a\000r\000d\000w\000a\000r\000e\000\040\000P\000l\000a\000t\000f\000o\000r\000m}{section.3}% 12 -\BOOKMARK [2][-]{subsection.3.5}{\376\377\0003\000.\0005\000\040\000S\000t\000a\000t\000i\000s\000t\000i\000c\000a\000l\000\040\000M\000e\000t\000h\000o\000d\000o\000l\000o\000g\000y}{section.3}% 13 -\BOOKMARK [2][-]{subsection.3.6}{\376\377\0003\000.\0006\000\040\000E\000n\000e\000r\000g\000y\000\040\000M\000e\000a\000s\000u\000r\000e\000m\000e\000n\000t}{section.3}% 14 -\BOOKMARK [1][-]{section.4}{\376\377\0004\000\040\000R\000e\000s\000u\000l\000t\000s}{}% 15 -\BOOKMARK [2][-]{subsection.4.1}{\376\377\0004\000.\0001\000\040\000C\000y\000c\000l\000e\000\040\000C\000o\000u\000n\000t\000\040\000D\000i\000s\000t\000r\000i\000b\000u\000t\000i\000o\000n\000s}{section.4}% 16 -\BOOKMARK [2][-]{subsection.4.2}{\376\377\0004\000.\0002\000\040\000S\000p\000e\000e\000d\000u\000p\000\040\000D\000e\000c\000o\000m\000p\000o\000s\000i\000t\000i\000o\000n}{section.4}% 17 -\BOOKMARK [2][-]{subsection.4.3}{\376\377\0004\000.\0003\000\040\000H\000a\000n\000d\000-\000W\000r\000i\000t\000t\000e\000n\000\040\000S\000I\000M\000D\000\040\000S\000p\000e\000e\000d\000u\000p}{section.4}% 18 -\BOOKMARK [2][-]{subsection.4.4}{\376\377\0004\000.\0004\000\040\000S\000t\000a\000t\000i\000s\000t\000i\000c\000a\000l\000\040\000S\000i\000g\000n\000i\000f\000i\000c\000a\000n\000c\000e}{section.4}% 19 -\BOOKMARK [2][-]{subsection.4.5}{\376\377\0004\000.\0005\000\040\000C\000r\000o\000s\000s\000-\000P\000a\000r\000a\000m\000e\000t\000e\000r\000\040\000C\000o\000n\000s\000i\000s\000t\000e\000n\000c\000y}{section.4}% 20 -\BOOKMARK [2][-]{subsection.4.6}{\376\377\0004\000.\0006\000\040\000H\000a\000r\000d\000w\000a\000r\000e\000\040\000C\000o\000u\000n\000t\000e\000r\000\040\000B\000r\000e\000a\000k\000d\000o\000w\000n}{section.4}% 21 -\BOOKMARK [2][-]{subsection.4.7}{\376\377\0004\000.\0007\000\040\000E\000n\000e\000r\000g\000y\000\040\000E\000f\000f\000i\000c\000i\000e\000n\000c\000y}{section.4}% 22 -\BOOKMARK [1][-]{section.5}{\376\377\0005\000\040\000D\000i\000s\000c\000u\000s\000s\000i\000o\000n}{}% 23 -\BOOKMARK [2][-]{subsection.5.1}{\376\377\0005\000.\0001\000\040\000W\000h\000y\000\040\000A\000r\000i\000t\000h\000m\000e\000t\000i\000c\000\040\000O\000p\000e\000r\000a\000t\000i\000o\000n\000s\000\040\000B\000e\000n\000e\000f\000i\000t\000\040\000M\000o\000s\000t}{section.5}% 24 -\BOOKMARK [2][-]{subsection.5.2}{\376\377\0005\000.\0002\000\040\000W\000h\000y\000\040\000t\000h\000e\000\040\000C\000o\000m\000p\000i\000l\000e\000r\000\040\000C\000a\000n\000n\000o\000t\000\040\000A\000u\000t\000o\000-\000V\000e\000c\000t\000o\000r\000i\000s\000e\000\040\000N\000T\000T}{section.5}% 25 -\BOOKMARK [2][-]{subsection.5.3}{\376\377\0005\000.\0003\000\040\000W\000h\000y\000\040\000S\000H\000A\000K\000E\000\040\000O\000p\000e\000r\000a\000t\000i\000o\000n\000s\000\040\000B\000e\000n\000e\000f\000i\000t\000\040\000L\000e\000s\000s}{section.5}% 26 -\BOOKMARK [2][-]{subsection.5.4}{\376\377\0005\000.\0004\000\040\000W\000h\000y\000\040\000N\000o\000i\000s\000e\000\040\000S\000a\000m\000p\000l\000i\000n\000g\000\040\000B\000a\000r\000e\000l\000y\000\040\000B\000e\000n\000e\000f\000i\000t\000s}{section.5}% 27 -\BOOKMARK [2][-]{subsection.5.5}{\376\377\0005\000.\0005\000\040\000N\000T\000T\000\040\000C\000a\000c\000h\000e\000-\000S\000t\000a\000t\000e\000\040\000V\000a\000r\000i\000a\000t\000i\000o\000n\000\040\000A\000c\000r\000o\000s\000s\000\040\000P\000a\000r\000a\000m\000e\000t\000e\000r\000\040\000S\000e\000t\000s}{section.5}% 28 -\BOOKMARK [2][-]{subsection.5.6}{\376\377\0005\000.\0006\000\040\000I\000m\000p\000l\000i\000c\000a\000t\000i\000o\000n\000s\000\040\000f\000o\000r\000\040\000D\000e\000p\000l\000o\000y\000m\000e\000n\000t}{section.5}% 29 -\BOOKMARK [2][-]{subsection.5.7}{\376\377\0005\000.\0007\000\040\000L\000i\000m\000i\000t\000a\000t\000i\000o\000n\000s}{section.5}% 30 -\BOOKMARK [1][-]{section.6}{\376\377\0006\000\040\000R\000e\000l\000a\000t\000e\000d\000\040\000W\000o\000r\000k}{}% 31 -\BOOKMARK [1][-]{section.7}{\376\377\0007\000\040\000C\000o\000n\000c\000l\000u\000s\000i\000o\000n}{}% 32 -\BOOKMARK [1][-]{section*.33}{\376\377\000R\000e\000f\000e\000r\000e\000n\000c\000e\000s}{}% 33 -\BOOKMARK [1][-]{appendix.A}{\376\377\000A\000\040\000E\000n\000d\000-\000t\000o\000-\000E\000n\000d\000\040\000K\000E\000M\000\040\000S\000p\000e\000e\000d\000u\000p}{}% 34 -\BOOKMARK [1][-]{appendix.B}{\376\377\000B\000\040\000F\000u\000l\000l\000\040\000O\000p\000e\000r\000a\000t\000i\000o\000n\000\040\000S\000e\000t}{}% 35 diff --git a/paper/pgftest.aux b/paper/pgftest.aux deleted file mode 100644 index b640121..0000000 --- a/paper/pgftest.aux +++ /dev/null @@ -1,2 +0,0 @@ -\relax -\gdef \@abspage@last{1} diff --git a/paper/pgftest.log b/paper/pgftest.log deleted file mode 100644 index 0a3a098..0000000 --- a/paper/pgftest.log +++ /dev/null @@ -1,494 +0,0 @@ -This is pdfTeX, Version 3.141592653-2.6-1.40.29 (TeX Live 2026/Arch Linux) (preloaded format=pdflatex 2026.3.6) 4 APR 2026 13:31 -entering extended mode - restricted \write18 enabled. - %&-line parsing enabled. -**/tmp/pgftest.tex -(/tmp/pgftest.tex -LaTeX2e <2025-11-01> -L3 programming layer <2026-01-19> -(/usr/share/texmf-dist/tex/latex/base/article.cls -Document Class: article 2025/01/22 v1.4n Standard LaTeX document class -(/usr/share/texmf-dist/tex/latex/base/size10.clo -File: size10.clo 2025/01/22 v1.4n Standard LaTeX file (size option) -) -\c@part=\count275 -\c@section=\count276 -\c@subsection=\count277 -\c@subsubsection=\count278 -\c@paragraph=\count279 -\c@subparagraph=\count280 -\c@figure=\count281 -\c@table=\count282 -\abovecaptionskip=\skip49 -\belowcaptionskip=\skip50 -\bibindent=\dimen148 -) -(/usr/share/texmf-dist/tex/latex/pgfplots/pgfplots.sty -(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplots.revision.tex) -Package: pgfplots 2025/08/14 v1.18.2 Data Visualization (1.18.2) - -(/usr/share/texmf-dist/tex/latex/graphics/graphicx.sty -Package: graphicx 2024/12/31 v1.2e Enhanced LaTeX Graphics (DPC,SPQR) - -(/usr/share/texmf-dist/tex/latex/graphics/keyval.sty -Package: keyval 2022/05/29 v1.15 key=value parser (DPC) -\KV@toks@=\toks17 -) -(/usr/share/texmf-dist/tex/latex/graphics/graphics.sty -Package: graphics 2024/08/06 v1.4g Standard LaTeX Graphics (DPC,SPQR) - -(/usr/share/texmf-dist/tex/latex/graphics/trig.sty -Package: trig 2023/12/02 v1.11 sin cos tan (DPC) -) -(/usr/share/texmf-dist/tex/latex/graphics-cfg/graphics.cfg -File: graphics.cfg 2016/06/04 v1.11 sample graphics configuration -) -Package graphics Info: Driver file: pdftex.def on input line 106. - -(/usr/share/texmf-dist/tex/latex/graphics-def/pdftex.def -File: pdftex.def 2025/09/29 v1.2d Graphics/color driver for pdftex -)) -\Gin@req@height=\dimen149 -\Gin@req@width=\dimen150 -) -(/usr/share/texmf-dist/tex/latex/pgf/frontendlayer/tikz.sty -(/usr/share/texmf-dist/tex/latex/pgf/basiclayer/pgf.sty -(/usr/share/texmf-dist/tex/latex/pgf/utilities/pgfrcs.sty -(/usr/share/texmf-dist/tex/generic/pgf/utilities/pgfutil-common.tex -\pgfutil@everybye=\toks18 -\pgfutil@tempdima=\dimen151 -\pgfutil@tempdimb=\dimen152 -) -(/usr/share/texmf-dist/tex/generic/pgf/utilities/pgfutil-latex.def -\pgfutil@abb=\box53 -) -(/usr/share/texmf-dist/tex/generic/pgf/utilities/pgfrcs.code.tex -(/usr/share/texmf-dist/tex/generic/pgf/pgf.revision.tex) -Package: pgfrcs 2025-08-29 v3.1.11a (3.1.11a) -)) -Package: pgf 2025-08-29 v3.1.11a (3.1.11a) - -(/usr/share/texmf-dist/tex/latex/pgf/basiclayer/pgfcore.sty -(/usr/share/texmf-dist/tex/latex/pgf/systemlayer/pgfsys.sty -(/usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgfsys.code.tex -Package: pgfsys 2025-08-29 v3.1.11a (3.1.11a) - -(/usr/share/texmf-dist/tex/generic/pgf/utilities/pgfkeys.code.tex -\pgfkeys@pathtoks=\toks19 -\pgfkeys@temptoks=\toks20 - -(/usr/share/texmf-dist/tex/generic/pgf/utilities/pgfkeyslibraryfiltered.code.te -x -\pgfkeys@tmptoks=\toks21 -)) -\pgf@x=\dimen153 -\pgf@y=\dimen154 -\pgf@xa=\dimen155 -\pgf@ya=\dimen156 -\pgf@xb=\dimen157 -\pgf@yb=\dimen158 -\pgf@xc=\dimen159 -\pgf@yc=\dimen160 -\pgf@xd=\dimen161 -\pgf@yd=\dimen162 -\w@pgf@writea=\write3 -\r@pgf@reada=\read2 -\c@pgf@counta=\count283 -\c@pgf@countb=\count284 -\c@pgf@countc=\count285 -\c@pgf@countd=\count286 -\t@pgf@toka=\toks22 -\t@pgf@tokb=\toks23 -\t@pgf@tokc=\toks24 -\pgf@sys@id@count=\count287 - (/usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgf.cfg -File: pgf.cfg 2025-08-29 v3.1.11a (3.1.11a) -) -Driver file for pgf: pgfsys-pdftex.def - -(/usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgfsys-pdftex.def -File: pgfsys-pdftex.def 2025-08-29 v3.1.11a (3.1.11a) - -(/usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgfsys-common-pdf.def -File: pgfsys-common-pdf.def 2025-08-29 v3.1.11a (3.1.11a) -))) -(/usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgfsyssoftpath.code.tex -File: pgfsyssoftpath.code.tex 2025-08-29 v3.1.11a (3.1.11a) -\pgfsyssoftpath@smallbuffer@items=\count288 -\pgfsyssoftpath@bigbuffer@items=\count289 -) -(/usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgfsysprotocol.code.tex -File: pgfsysprotocol.code.tex 2025-08-29 v3.1.11a (3.1.11a) -)) -(/usr/share/texmf-dist/tex/latex/xcolor/xcolor.sty -Package: xcolor 2024/09/29 v3.02 LaTeX color extensions (UK) - -(/usr/share/texmf-dist/tex/latex/graphics-cfg/color.cfg -File: color.cfg 2016/01/02 v1.6 sample color configuration -) -Package xcolor Info: Driver file: pdftex.def on input line 274. - -(/usr/share/texmf-dist/tex/latex/graphics/mathcolor.ltx) -Package xcolor Info: Model `cmy' substituted by `cmy0' on input line 1349. -Package xcolor Info: Model `hsb' substituted by `rgb' on input line 1353. -Package xcolor Info: Model `RGB' extended on input line 1365. -Package xcolor Info: Model `HTML' substituted by `rgb' on input line 1367. -Package xcolor Info: Model `Hsb' substituted by `hsb' on input line 1368. -Package xcolor Info: Model `tHsb' substituted by `hsb' on input line 1369. -Package xcolor Info: Model `HSB' substituted by `hsb' on input line 1370. -Package xcolor Info: Model `Gray' substituted by `gray' on input line 1371. -Package xcolor Info: Model `wave' substituted by `hsb' on input line 1372. -) -(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcore.code.tex -Package: pgfcore 2025-08-29 v3.1.11a (3.1.11a) - -(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmath.code.tex -(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathutil.code.tex) -(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathparser.code.tex -\pgfmath@dimen=\dimen163 -\pgfmath@count=\count290 -\pgfmath@box=\box54 -\pgfmath@toks=\toks25 -\pgfmath@stack@operand=\toks26 -\pgfmath@stack@operation=\toks27 -) -(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.code.tex) -(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.basic.code.tex) -(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.trigonometric.code -.tex) -(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.random.code.tex) -(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.comparison.code.te -x) (/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.base.code.tex) -(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.round.code.tex) -(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.misc.code.tex) -(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.integerarithmetics -.code.tex) (/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathcalc.code.tex) -(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfloat.code.tex -\c@pgfmathroundto@lastzeros=\count291 -)) -(/usr/share/texmf-dist/tex/generic/pgf/math/pgfint.code.tex) -(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepoints.code.tex -File: pgfcorepoints.code.tex 2025-08-29 v3.1.11a (3.1.11a) -\pgf@picminx=\dimen164 -\pgf@picmaxx=\dimen165 -\pgf@picminy=\dimen166 -\pgf@picmaxy=\dimen167 -\pgf@pathminx=\dimen168 -\pgf@pathmaxx=\dimen169 -\pgf@pathminy=\dimen170 -\pgf@pathmaxy=\dimen171 -\pgf@xx=\dimen172 -\pgf@xy=\dimen173 -\pgf@yx=\dimen174 -\pgf@yy=\dimen175 -\pgf@zx=\dimen176 -\pgf@zy=\dimen177 -) -(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathconstruct.code.tex -File: pgfcorepathconstruct.code.tex 2025-08-29 v3.1.11a (3.1.11a) -\pgf@path@lastx=\dimen178 -\pgf@path@lasty=\dimen179 -) (/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathusage.code.tex -File: pgfcorepathusage.code.tex 2025-08-29 v3.1.11a (3.1.11a) -\pgf@shorten@end@additional=\dimen180 -\pgf@shorten@start@additional=\dimen181 -) -(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorescopes.code.tex -File: pgfcorescopes.code.tex 2025-08-29 v3.1.11a (3.1.11a) -\pgfpic=\box55 -\pgf@hbox=\box56 -\pgf@layerbox@main=\box57 -\pgf@picture@serial@count=\count292 -) -(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoregraphicstate.code.tex -File: pgfcoregraphicstate.code.tex 2025-08-29 v3.1.11a (3.1.11a) -\pgflinewidth=\dimen182 -) -(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoretransformations.code.t -ex -File: pgfcoretransformations.code.tex 2025-08-29 v3.1.11a (3.1.11a) -\pgf@pt@x=\dimen183 -\pgf@pt@y=\dimen184 -\pgf@pt@temp=\dimen185 -) (/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorequick.code.tex -File: pgfcorequick.code.tex 2025-08-29 v3.1.11a (3.1.11a) -) -(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreobjects.code.tex -File: pgfcoreobjects.code.tex 2025-08-29 v3.1.11a (3.1.11a) -) -(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathprocessing.code.te -x -File: pgfcorepathprocessing.code.tex 2025-08-29 v3.1.11a (3.1.11a) -) (/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorearrows.code.tex -File: pgfcorearrows.code.tex 2025-08-29 v3.1.11a (3.1.11a) -\pgfarrowsep=\dimen186 -) -(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreshade.code.tex -File: pgfcoreshade.code.tex 2025-08-29 v3.1.11a (3.1.11a) -\pgf@max=\dimen187 -\pgf@sys@shading@range@num=\count293 -\pgf@shadingcount=\count294 -) -(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreimage.code.tex -File: pgfcoreimage.code.tex 2025-08-29 v3.1.11a (3.1.11a) -) -(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreexternal.code.tex -File: pgfcoreexternal.code.tex 2025-08-29 v3.1.11a (3.1.11a) -\pgfexternal@startupbox=\box58 -) -(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorelayers.code.tex -File: pgfcorelayers.code.tex 2025-08-29 v3.1.11a (3.1.11a) -) -(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoretransparency.code.tex -File: pgfcoretransparency.code.tex 2025-08-29 v3.1.11a (3.1.11a) -) (/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepatterns.code.tex -File: pgfcorepatterns.code.tex 2025-08-29 v3.1.11a (3.1.11a) -) -(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorerdf.code.tex -File: pgfcorerdf.code.tex 2025-08-29 v3.1.11a (3.1.11a) -))) -(/usr/share/texmf-dist/tex/generic/pgf/modules/pgfmoduleshapes.code.tex -File: pgfmoduleshapes.code.tex 2025-08-29 v3.1.11a (3.1.11a) -\pgfnodeparttextbox=\box59 -) -(/usr/share/texmf-dist/tex/generic/pgf/modules/pgfmoduleplot.code.tex -File: pgfmoduleplot.code.tex 2025-08-29 v3.1.11a (3.1.11a) -) -(/usr/share/texmf-dist/tex/latex/pgf/compatibility/pgfcomp-version-0-65.sty -Package: pgfcomp-version-0-65 2025-08-29 v3.1.11a (3.1.11a) -\pgf@nodesepstart=\dimen188 -\pgf@nodesepend=\dimen189 -) -(/usr/share/texmf-dist/tex/latex/pgf/compatibility/pgfcomp-version-1-18.sty -Package: pgfcomp-version-1-18 2025-08-29 v3.1.11a (3.1.11a) -)) -(/usr/share/texmf-dist/tex/latex/pgf/utilities/pgffor.sty -(/usr/share/texmf-dist/tex/latex/pgf/utilities/pgfkeys.sty -(/usr/share/texmf-dist/tex/generic/pgf/utilities/pgfkeys.code.tex)) -(/usr/share/texmf-dist/tex/latex/pgf/math/pgfmath.sty -(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmath.code.tex)) -(/usr/share/texmf-dist/tex/generic/pgf/utilities/pgffor.code.tex -Package: pgffor 2025-08-29 v3.1.11a (3.1.11a) -\pgffor@iter=\dimen190 -\pgffor@skip=\dimen191 -\pgffor@stack=\toks28 -\pgffor@toks=\toks29 -)) -(/usr/share/texmf-dist/tex/generic/pgf/frontendlayer/tikz/tikz.code.tex -Package: tikz 2025-08-29 v3.1.11a (3.1.11a) - -(/usr/share/texmf-dist/tex/generic/pgf/libraries/pgflibraryplothandlers.code.te -x -File: pgflibraryplothandlers.code.tex 2025-08-29 v3.1.11a (3.1.11a) -\pgf@plot@mark@count=\count295 -\pgfplotmarksize=\dimen192 -) -\tikz@lastx=\dimen193 -\tikz@lasty=\dimen194 -\tikz@lastxsaved=\dimen195 -\tikz@lastysaved=\dimen196 -\tikz@lastmovetox=\dimen197 -\tikz@lastmovetoy=\dimen198 -\tikzleveldistance=\dimen199 -\tikzsiblingdistance=\dimen256 -\tikz@figbox=\box60 -\tikz@figbox@bg=\box61 -\tikz@tempbox=\box62 -\tikz@tempbox@bg=\box63 -\tikztreelevel=\count296 -\tikznumberofchildren=\count297 -\tikznumberofcurrentchild=\count298 -\tikz@fig@count=\count299 - (/usr/share/texmf-dist/tex/generic/pgf/modules/pgfmodulematrix.code.tex -File: pgfmodulematrix.code.tex 2025-08-29 v3.1.11a (3.1.11a) -\pgfmatrixcurrentrow=\count300 -\pgfmatrixcurrentcolumn=\count301 -\pgf@matrix@numberofcolumns=\count302 -) -\tikz@expandcount=\count303 - -(/usr/share/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrary -topaths.code.tex -File: tikzlibrarytopaths.code.tex 2025-08-29 v3.1.11a (3.1.11a) -))) -(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplots.code.tex -(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplotscore.code.tex -\t@pgfplots@toka=\toks30 -\t@pgfplots@tokb=\toks31 -\t@pgfplots@tokc=\toks32 -\pgfplots@tmpa=\dimen257 -\c@pgfplots@coordindex=\count304 -\c@pgfplots@scanlineindex=\count305 - -(/usr/share/texmf-dist/tex/generic/pgfplots/sys/pgfplotssysgeneric.code.tex)) -(/usr/share/texmf-dist/tex/generic/pgfplots/libs/pgfplotslibrary.code.tex) -(/usr/share/texmf-dist/tex/generic/pgfplots/oldpgfcompatib/pgfplotsoldpgfsupp_l -oader.code.tex -(/usr/share/texmf-dist/tex/generic/pgf/libraries/pgflibraryfpu.code.tex) -(/usr/share/texmf-dist/tex/generic/pgfplots/oldpgfcompatib/pgfplotsoldpgfsupp_p -gfutil-common-lists.tex)) -(/usr/share/texmf-dist/tex/generic/pgfplots/util/pgfplotsutil.code.tex -(/usr/share/texmf-dist/tex/generic/pgfplots/liststructure/pgfplotsliststructure -.code.tex) -(/usr/share/texmf-dist/tex/generic/pgfplots/liststructure/pgfplotsliststructure -ext.code.tex) -(/usr/share/texmf-dist/tex/generic/pgfplots/liststructure/pgfplotsarray.code.te -x -\c@pgfplotsarray@tmp=\count306 -) -(/usr/share/texmf-dist/tex/generic/pgfplots/liststructure/pgfplotsmatrix.code.t -ex) -(/usr/share/texmf-dist/tex/generic/pgfplots/numtable/pgfplotstableshared.code.t -ex -\c@pgfplotstable@counta=\count307 -\t@pgfplotstable@a=\toks33 -) -(/usr/share/texmf-dist/tex/generic/pgfplots/liststructure/pgfplotsdeque.code.te -x) (/usr/share/texmf-dist/tex/generic/pgfplots/util/pgfplotsbinary.code.tex -(/usr/share/texmf-dist/tex/generic/pgfplots/util/pgfplotsbinary.data.code.tex)) -(/usr/share/texmf-dist/tex/generic/pgfplots/util/pgfplotsutil.verb.code.tex) -(/usr/share/texmf-dist/tex/generic/pgfplots/libs/pgflibrarypgfplots.surfshading -.code.tex -\c@pgfplotslibrarysurf@no=\count308 - -(/usr/share/texmf-dist/tex/generic/pgfplots/sys/pgflibrarypgfplots.surfshading. -pgfsys-pdftex.def))) -(/usr/share/texmf-dist/tex/generic/pgfplots/util/pgfplotscolormap.code.tex -(/usr/share/texmf-dist/tex/generic/pgfplots/util/pgfplotscolor.code.tex)) -(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplotsstackedplots.code.tex) -(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplotsplothandlers.code.tex -(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplotsmeshplothandler.code.tex -(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplotsmeshplotimage.code.tex))) -(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplots.scaling.code.tex) -(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplotscoordprocessing.code.tex) -(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplots.errorbars.code.tex) -(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplots.markers.code.tex) -(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplotsticks.code.tex) -(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplots.paths.code.tex) -(/usr/share/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrary -decorations.code.tex -(/usr/share/texmf-dist/tex/generic/pgf/modules/pgfmoduledecorations.code.tex -\pgfdecoratedcompleteddistance=\dimen258 -\pgfdecoratedremainingdistance=\dimen259 -\pgfdecoratedinputsegmentcompleteddistance=\dimen260 -\pgfdecoratedinputsegmentremainingdistance=\dimen261 -\pgf@decorate@distancetomove=\dimen262 -\pgf@decorate@repeatstate=\count309 -\pgfdecorationsegmentamplitude=\dimen263 -\pgfdecorationsegmentlength=\dimen264 -) -\tikz@lib@dec@box=\box64 -) -(/usr/share/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrary -decorations.pathmorphing.code.tex -(/usr/share/texmf-dist/tex/generic/pgf/libraries/decorations/pgflibrarydecorati -ons.pathmorphing.code.tex)) -(/usr/share/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrary -decorations.pathreplacing.code.tex -(/usr/share/texmf-dist/tex/generic/pgf/libraries/decorations/pgflibrarydecorati -ons.pathreplacing.code.tex)) -(/usr/share/texmf-dist/tex/generic/pgfplots/libs/tikzlibrarypgfplots.contourlua -.code.tex) -\pgfplots@numplots=\count310 -\pgfplots@xmin@reg=\dimen265 -\pgfplots@xmax@reg=\dimen266 -\pgfplots@ymin@reg=\dimen267 -\pgfplots@ymax@reg=\dimen268 -\pgfplots@zmin@reg=\dimen269 -\pgfplots@zmax@reg=\dimen270 -) -(/usr/share/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrary -plotmarks.code.tex -File: tikzlibraryplotmarks.code.tex 2025-08-29 v3.1.11a (3.1.11a) - -(/usr/share/texmf-dist/tex/generic/pgf/libraries/pgflibraryplotmarks.code.tex -File: pgflibraryplotmarks.code.tex 2025-08-29 v3.1.11a (3.1.11a) -))) -(/usr/share/texmf-dist/tex/generic/pgfplots/libs/tikzlibrarypgfplots.groupplots -.code.tex -\pgfplots@group@current@plot=\count311 -\pgfplots@group@current@row=\count312 -\pgfplots@group@current@column=\count313 - -(/usr/share/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrary -calc.code.tex -File: tikzlibrarycalc.code.tex 2025-08-29 v3.1.11a (3.1.11a) -)) (/usr/share/texmf-dist/tex/latex/l3backend/l3backend-pdftex.def -File: l3backend-pdftex.def 2025-10-09 L3 backend support: PDF output (pdfTeX) -\l__color_backend_stack_int=\count314 -) -No file pgftest.aux. -\openout1 = `pgftest.aux'. - -LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 5. -LaTeX Font Info: ... okay on input line 5. -LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 5. -LaTeX Font Info: ... okay on input line 5. -LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 5. -LaTeX Font Info: ... okay on input line 5. -LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 5. -LaTeX Font Info: ... okay on input line 5. -LaTeX Font Info: Checking defaults for TS1/cmr/m/n on input line 5. -LaTeX Font Info: ... okay on input line 5. -LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 5. -LaTeX Font Info: ... okay on input line 5. -LaTeX Font Info: Checking defaults for U/cmr/m/n on input line 5. -LaTeX Font Info: ... okay on input line 5. -(/usr/share/texmf-dist/tex/context/base/mkii/supp-pdf.mkii -[Loading MPS to PDF converter (version 2006.09.02).] -\scratchcounter=\count315 -\scratchdimen=\dimen271 -\scratchbox=\box65 -\nofMPsegments=\count316 -\nofMParguments=\count317 -\everyMPshowfont=\toks34 -\MPscratchCnt=\count318 -\MPscratchDim=\dimen272 -\MPnumerator=\count319 -\makeMPintoPDFobject=\count320 -\everyMPtoPDFconversion=\toks35 -) (/usr/share/texmf-dist/tex/latex/epstopdf-pkg/epstopdf-base.sty -Package: epstopdf-base 2020-01-24 v2.11 Base part for package epstopdf -Package epstopdf-base Info: Redefining graphics rule for `.eps' on input line 4 -85. - -(/usr/share/texmf-dist/tex/latex/latexconfig/epstopdf-sys.cfg -File: epstopdf-sys.cfg 2010/07/13 v1.3 Configuration of (r)epstopdf for TeX Liv -e -)) -Package pgfplots notification 'compat/show suggested version=true': document ha -s been generated with the most recent feature set (\pgfplotsset{compat=1.18}). - -Package pgfplots info on input line 7: Using 'lua backend=false' for axis: ymod -e=log unsupported (yet). -Package pgfplots info on input line 7: Using 'lua backend=false' for axis: x co -ord trafo unsupported. -LaTeX Font Info: External font `cmex10' loaded for size -(Font) <7> on input line 9. -LaTeX Font Info: External font `cmex10' loaded for size -(Font) <5> on input line 9. -[1 - -{/var/lib/texmf/fonts/map/pdftex/updmap/pdftex.map}] (./pgftest.aux) - *********** -LaTeX2e <2025-11-01> -L3 programming layer <2026-01-19> - *********** - ) -Here is how much of TeX's memory you used: - 22374 strings out of 469515 - 603098 string characters out of 5470808 - 1118991 words of memory out of 5000000 - 50722 multiletter control sequences out of 15000+600000 - 627721 words of font info for 40 fonts, out of 8000000 for 9000 - 14 hyphenation exceptions out of 8191 - 99i,9n,118p,739b,2054s stack positions out of 10000i,1000n,20000p,200000b,200000s - -Output written on pgftest.pdf (1 page, 20045 bytes). -PDF statistics: - 21 PDF objects out of 1000 (max. 8388607) - 13 compressed objects within 1 object stream - 0 named destinations out of 1000 (max. 500000) - 13 words of extra memory for PDF output out of 10000 (max. 10000000) - diff --git a/paper/pgftest2.aux b/paper/pgftest2.aux deleted file mode 100644 index b640121..0000000 --- a/paper/pgftest2.aux +++ /dev/null @@ -1,2 +0,0 @@ -\relax -\gdef \@abspage@last{1} diff --git a/paper/pgftest2.log b/paper/pgftest2.log deleted file mode 100644 index f4aa8ea..0000000 --- a/paper/pgftest2.log +++ /dev/null @@ -1,513 +0,0 @@ -This is pdfTeX, Version 3.141592653-2.6-1.40.29 (TeX Live 2026/Arch Linux) (preloaded format=pdflatex 2026.3.6) 4 APR 2026 13:31 -entering extended mode - restricted \write18 enabled. - %&-line parsing enabled. -**/tmp/pgftest2.tex -(/tmp/pgftest2.tex -LaTeX2e <2025-11-01> -L3 programming layer <2026-01-19> -(/usr/share/texmf-dist/tex/latex/base/article.cls -Document Class: article 2025/01/22 v1.4n Standard LaTeX document class -(/usr/share/texmf-dist/tex/latex/base/size10.clo -File: size10.clo 2025/01/22 v1.4n Standard LaTeX file (size option) -) -\c@part=\count275 -\c@section=\count276 -\c@subsection=\count277 -\c@subsubsection=\count278 -\c@paragraph=\count279 -\c@subparagraph=\count280 -\c@figure=\count281 -\c@table=\count282 -\abovecaptionskip=\skip49 -\belowcaptionskip=\skip50 -\bibindent=\dimen148 -) -(/usr/share/texmf-dist/tex/latex/pgfplots/pgfplots.sty -(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplots.revision.tex) -Package: pgfplots 2025/08/14 v1.18.2 Data Visualization (1.18.2) - -(/usr/share/texmf-dist/tex/latex/graphics/graphicx.sty -Package: graphicx 2024/12/31 v1.2e Enhanced LaTeX Graphics (DPC,SPQR) - -(/usr/share/texmf-dist/tex/latex/graphics/keyval.sty -Package: keyval 2022/05/29 v1.15 key=value parser (DPC) -\KV@toks@=\toks17 -) -(/usr/share/texmf-dist/tex/latex/graphics/graphics.sty -Package: graphics 2024/08/06 v1.4g Standard LaTeX Graphics (DPC,SPQR) - -(/usr/share/texmf-dist/tex/latex/graphics/trig.sty -Package: trig 2023/12/02 v1.11 sin cos tan (DPC) -) -(/usr/share/texmf-dist/tex/latex/graphics-cfg/graphics.cfg -File: graphics.cfg 2016/06/04 v1.11 sample graphics configuration -) -Package graphics Info: Driver file: pdftex.def on input line 106. - -(/usr/share/texmf-dist/tex/latex/graphics-def/pdftex.def -File: pdftex.def 2025/09/29 v1.2d Graphics/color driver for pdftex -)) -\Gin@req@height=\dimen149 -\Gin@req@width=\dimen150 -) -(/usr/share/texmf-dist/tex/latex/pgf/frontendlayer/tikz.sty -(/usr/share/texmf-dist/tex/latex/pgf/basiclayer/pgf.sty -(/usr/share/texmf-dist/tex/latex/pgf/utilities/pgfrcs.sty -(/usr/share/texmf-dist/tex/generic/pgf/utilities/pgfutil-common.tex -\pgfutil@everybye=\toks18 -\pgfutil@tempdima=\dimen151 -\pgfutil@tempdimb=\dimen152 -) -(/usr/share/texmf-dist/tex/generic/pgf/utilities/pgfutil-latex.def -\pgfutil@abb=\box53 -) -(/usr/share/texmf-dist/tex/generic/pgf/utilities/pgfrcs.code.tex -(/usr/share/texmf-dist/tex/generic/pgf/pgf.revision.tex) -Package: pgfrcs 2025-08-29 v3.1.11a (3.1.11a) -)) -Package: pgf 2025-08-29 v3.1.11a (3.1.11a) - -(/usr/share/texmf-dist/tex/latex/pgf/basiclayer/pgfcore.sty -(/usr/share/texmf-dist/tex/latex/pgf/systemlayer/pgfsys.sty -(/usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgfsys.code.tex -Package: pgfsys 2025-08-29 v3.1.11a (3.1.11a) - -(/usr/share/texmf-dist/tex/generic/pgf/utilities/pgfkeys.code.tex -\pgfkeys@pathtoks=\toks19 -\pgfkeys@temptoks=\toks20 - -(/usr/share/texmf-dist/tex/generic/pgf/utilities/pgfkeyslibraryfiltered.code.te -x -\pgfkeys@tmptoks=\toks21 -)) -\pgf@x=\dimen153 -\pgf@y=\dimen154 -\pgf@xa=\dimen155 -\pgf@ya=\dimen156 -\pgf@xb=\dimen157 -\pgf@yb=\dimen158 -\pgf@xc=\dimen159 -\pgf@yc=\dimen160 -\pgf@xd=\dimen161 -\pgf@yd=\dimen162 -\w@pgf@writea=\write3 -\r@pgf@reada=\read2 -\c@pgf@counta=\count283 -\c@pgf@countb=\count284 -\c@pgf@countc=\count285 -\c@pgf@countd=\count286 -\t@pgf@toka=\toks22 -\t@pgf@tokb=\toks23 -\t@pgf@tokc=\toks24 -\pgf@sys@id@count=\count287 - (/usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgf.cfg -File: pgf.cfg 2025-08-29 v3.1.11a (3.1.11a) -) -Driver file for pgf: pgfsys-pdftex.def - -(/usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgfsys-pdftex.def -File: pgfsys-pdftex.def 2025-08-29 v3.1.11a (3.1.11a) - -(/usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgfsys-common-pdf.def -File: pgfsys-common-pdf.def 2025-08-29 v3.1.11a (3.1.11a) -))) -(/usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgfsyssoftpath.code.tex -File: pgfsyssoftpath.code.tex 2025-08-29 v3.1.11a (3.1.11a) -\pgfsyssoftpath@smallbuffer@items=\count288 -\pgfsyssoftpath@bigbuffer@items=\count289 -) -(/usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgfsysprotocol.code.tex -File: pgfsysprotocol.code.tex 2025-08-29 v3.1.11a (3.1.11a) -)) -(/usr/share/texmf-dist/tex/latex/xcolor/xcolor.sty -Package: xcolor 2024/09/29 v3.02 LaTeX color extensions (UK) - -(/usr/share/texmf-dist/tex/latex/graphics-cfg/color.cfg -File: color.cfg 2016/01/02 v1.6 sample color configuration -) -Package xcolor Info: Driver file: pdftex.def on input line 274. - -(/usr/share/texmf-dist/tex/latex/graphics/mathcolor.ltx) -Package xcolor Info: Model `cmy' substituted by `cmy0' on input line 1349. -Package xcolor Info: Model `hsb' substituted by `rgb' on input line 1353. -Package xcolor Info: Model `RGB' extended on input line 1365. -Package xcolor Info: Model `HTML' substituted by `rgb' on input line 1367. -Package xcolor Info: Model `Hsb' substituted by `hsb' on input line 1368. -Package xcolor Info: Model `tHsb' substituted by `hsb' on input line 1369. -Package xcolor Info: Model `HSB' substituted by `hsb' on input line 1370. -Package xcolor Info: Model `Gray' substituted by `gray' on input line 1371. -Package xcolor Info: Model `wave' substituted by `hsb' on input line 1372. -) -(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcore.code.tex -Package: pgfcore 2025-08-29 v3.1.11a (3.1.11a) - -(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmath.code.tex -(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathutil.code.tex) -(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathparser.code.tex -\pgfmath@dimen=\dimen163 -\pgfmath@count=\count290 -\pgfmath@box=\box54 -\pgfmath@toks=\toks25 -\pgfmath@stack@operand=\toks26 -\pgfmath@stack@operation=\toks27 -) -(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.code.tex) -(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.basic.code.tex) -(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.trigonometric.code -.tex) -(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.random.code.tex) -(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.comparison.code.te -x) (/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.base.code.tex) -(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.round.code.tex) -(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.misc.code.tex) -(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.integerarithmetics -.code.tex) (/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathcalc.code.tex) -(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfloat.code.tex -\c@pgfmathroundto@lastzeros=\count291 -)) -(/usr/share/texmf-dist/tex/generic/pgf/math/pgfint.code.tex) -(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepoints.code.tex -File: pgfcorepoints.code.tex 2025-08-29 v3.1.11a (3.1.11a) -\pgf@picminx=\dimen164 -\pgf@picmaxx=\dimen165 -\pgf@picminy=\dimen166 -\pgf@picmaxy=\dimen167 -\pgf@pathminx=\dimen168 -\pgf@pathmaxx=\dimen169 -\pgf@pathminy=\dimen170 -\pgf@pathmaxy=\dimen171 -\pgf@xx=\dimen172 -\pgf@xy=\dimen173 -\pgf@yx=\dimen174 -\pgf@yy=\dimen175 -\pgf@zx=\dimen176 -\pgf@zy=\dimen177 -) -(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathconstruct.code.tex -File: pgfcorepathconstruct.code.tex 2025-08-29 v3.1.11a (3.1.11a) -\pgf@path@lastx=\dimen178 -\pgf@path@lasty=\dimen179 -) (/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathusage.code.tex -File: pgfcorepathusage.code.tex 2025-08-29 v3.1.11a (3.1.11a) -\pgf@shorten@end@additional=\dimen180 -\pgf@shorten@start@additional=\dimen181 -) -(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorescopes.code.tex -File: pgfcorescopes.code.tex 2025-08-29 v3.1.11a (3.1.11a) -\pgfpic=\box55 -\pgf@hbox=\box56 -\pgf@layerbox@main=\box57 -\pgf@picture@serial@count=\count292 -) -(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoregraphicstate.code.tex -File: pgfcoregraphicstate.code.tex 2025-08-29 v3.1.11a (3.1.11a) -\pgflinewidth=\dimen182 -) -(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoretransformations.code.t -ex -File: pgfcoretransformations.code.tex 2025-08-29 v3.1.11a (3.1.11a) -\pgf@pt@x=\dimen183 -\pgf@pt@y=\dimen184 -\pgf@pt@temp=\dimen185 -) (/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorequick.code.tex -File: pgfcorequick.code.tex 2025-08-29 v3.1.11a (3.1.11a) -) -(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreobjects.code.tex -File: pgfcoreobjects.code.tex 2025-08-29 v3.1.11a (3.1.11a) -) -(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathprocessing.code.te -x -File: pgfcorepathprocessing.code.tex 2025-08-29 v3.1.11a (3.1.11a) -) (/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorearrows.code.tex -File: pgfcorearrows.code.tex 2025-08-29 v3.1.11a (3.1.11a) -\pgfarrowsep=\dimen186 -) -(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreshade.code.tex -File: pgfcoreshade.code.tex 2025-08-29 v3.1.11a (3.1.11a) -\pgf@max=\dimen187 -\pgf@sys@shading@range@num=\count293 -\pgf@shadingcount=\count294 -) -(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreimage.code.tex -File: pgfcoreimage.code.tex 2025-08-29 v3.1.11a (3.1.11a) -) -(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreexternal.code.tex -File: pgfcoreexternal.code.tex 2025-08-29 v3.1.11a (3.1.11a) -\pgfexternal@startupbox=\box58 -) -(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorelayers.code.tex -File: pgfcorelayers.code.tex 2025-08-29 v3.1.11a (3.1.11a) -) -(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoretransparency.code.tex -File: pgfcoretransparency.code.tex 2025-08-29 v3.1.11a (3.1.11a) -) (/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepatterns.code.tex -File: pgfcorepatterns.code.tex 2025-08-29 v3.1.11a (3.1.11a) -) -(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorerdf.code.tex -File: pgfcorerdf.code.tex 2025-08-29 v3.1.11a (3.1.11a) -))) -(/usr/share/texmf-dist/tex/generic/pgf/modules/pgfmoduleshapes.code.tex -File: pgfmoduleshapes.code.tex 2025-08-29 v3.1.11a (3.1.11a) -\pgfnodeparttextbox=\box59 -) -(/usr/share/texmf-dist/tex/generic/pgf/modules/pgfmoduleplot.code.tex -File: pgfmoduleplot.code.tex 2025-08-29 v3.1.11a (3.1.11a) -) -(/usr/share/texmf-dist/tex/latex/pgf/compatibility/pgfcomp-version-0-65.sty -Package: pgfcomp-version-0-65 2025-08-29 v3.1.11a (3.1.11a) -\pgf@nodesepstart=\dimen188 -\pgf@nodesepend=\dimen189 -) -(/usr/share/texmf-dist/tex/latex/pgf/compatibility/pgfcomp-version-1-18.sty -Package: pgfcomp-version-1-18 2025-08-29 v3.1.11a (3.1.11a) -)) -(/usr/share/texmf-dist/tex/latex/pgf/utilities/pgffor.sty -(/usr/share/texmf-dist/tex/latex/pgf/utilities/pgfkeys.sty -(/usr/share/texmf-dist/tex/generic/pgf/utilities/pgfkeys.code.tex)) -(/usr/share/texmf-dist/tex/latex/pgf/math/pgfmath.sty -(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmath.code.tex)) -(/usr/share/texmf-dist/tex/generic/pgf/utilities/pgffor.code.tex -Package: pgffor 2025-08-29 v3.1.11a (3.1.11a) -\pgffor@iter=\dimen190 -\pgffor@skip=\dimen191 -\pgffor@stack=\toks28 -\pgffor@toks=\toks29 -)) -(/usr/share/texmf-dist/tex/generic/pgf/frontendlayer/tikz/tikz.code.tex -Package: tikz 2025-08-29 v3.1.11a (3.1.11a) - -(/usr/share/texmf-dist/tex/generic/pgf/libraries/pgflibraryplothandlers.code.te -x -File: pgflibraryplothandlers.code.tex 2025-08-29 v3.1.11a (3.1.11a) -\pgf@plot@mark@count=\count295 -\pgfplotmarksize=\dimen192 -) -\tikz@lastx=\dimen193 -\tikz@lasty=\dimen194 -\tikz@lastxsaved=\dimen195 -\tikz@lastysaved=\dimen196 -\tikz@lastmovetox=\dimen197 -\tikz@lastmovetoy=\dimen198 -\tikzleveldistance=\dimen199 -\tikzsiblingdistance=\dimen256 -\tikz@figbox=\box60 -\tikz@figbox@bg=\box61 -\tikz@tempbox=\box62 -\tikz@tempbox@bg=\box63 -\tikztreelevel=\count296 -\tikznumberofchildren=\count297 -\tikznumberofcurrentchild=\count298 -\tikz@fig@count=\count299 - (/usr/share/texmf-dist/tex/generic/pgf/modules/pgfmodulematrix.code.tex -File: pgfmodulematrix.code.tex 2025-08-29 v3.1.11a (3.1.11a) -\pgfmatrixcurrentrow=\count300 -\pgfmatrixcurrentcolumn=\count301 -\pgf@matrix@numberofcolumns=\count302 -) -\tikz@expandcount=\count303 - -(/usr/share/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrary -topaths.code.tex -File: tikzlibrarytopaths.code.tex 2025-08-29 v3.1.11a (3.1.11a) -))) -(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplots.code.tex -(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplotscore.code.tex -\t@pgfplots@toka=\toks30 -\t@pgfplots@tokb=\toks31 -\t@pgfplots@tokc=\toks32 -\pgfplots@tmpa=\dimen257 -\c@pgfplots@coordindex=\count304 -\c@pgfplots@scanlineindex=\count305 - -(/usr/share/texmf-dist/tex/generic/pgfplots/sys/pgfplotssysgeneric.code.tex)) -(/usr/share/texmf-dist/tex/generic/pgfplots/libs/pgfplotslibrary.code.tex) -(/usr/share/texmf-dist/tex/generic/pgfplots/oldpgfcompatib/pgfplotsoldpgfsupp_l -oader.code.tex -(/usr/share/texmf-dist/tex/generic/pgf/libraries/pgflibraryfpu.code.tex) -(/usr/share/texmf-dist/tex/generic/pgfplots/oldpgfcompatib/pgfplotsoldpgfsupp_p -gfutil-common-lists.tex)) -(/usr/share/texmf-dist/tex/generic/pgfplots/util/pgfplotsutil.code.tex -(/usr/share/texmf-dist/tex/generic/pgfplots/liststructure/pgfplotsliststructure -.code.tex) -(/usr/share/texmf-dist/tex/generic/pgfplots/liststructure/pgfplotsliststructure -ext.code.tex) -(/usr/share/texmf-dist/tex/generic/pgfplots/liststructure/pgfplotsarray.code.te -x -\c@pgfplotsarray@tmp=\count306 -) -(/usr/share/texmf-dist/tex/generic/pgfplots/liststructure/pgfplotsmatrix.code.t -ex) -(/usr/share/texmf-dist/tex/generic/pgfplots/numtable/pgfplotstableshared.code.t -ex -\c@pgfplotstable@counta=\count307 -\t@pgfplotstable@a=\toks33 -) -(/usr/share/texmf-dist/tex/generic/pgfplots/liststructure/pgfplotsdeque.code.te -x) (/usr/share/texmf-dist/tex/generic/pgfplots/util/pgfplotsbinary.code.tex -(/usr/share/texmf-dist/tex/generic/pgfplots/util/pgfplotsbinary.data.code.tex)) -(/usr/share/texmf-dist/tex/generic/pgfplots/util/pgfplotsutil.verb.code.tex) -(/usr/share/texmf-dist/tex/generic/pgfplots/libs/pgflibrarypgfplots.surfshading -.code.tex -\c@pgfplotslibrarysurf@no=\count308 - -(/usr/share/texmf-dist/tex/generic/pgfplots/sys/pgflibrarypgfplots.surfshading. -pgfsys-pdftex.def))) -(/usr/share/texmf-dist/tex/generic/pgfplots/util/pgfplotscolormap.code.tex -(/usr/share/texmf-dist/tex/generic/pgfplots/util/pgfplotscolor.code.tex)) -(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplotsstackedplots.code.tex) -(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplotsplothandlers.code.tex -(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplotsmeshplothandler.code.tex -(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplotsmeshplotimage.code.tex))) -(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplots.scaling.code.tex) -(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplotscoordprocessing.code.tex) -(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplots.errorbars.code.tex) -(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplots.markers.code.tex) -(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplotsticks.code.tex) -(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplots.paths.code.tex) -(/usr/share/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrary -decorations.code.tex -(/usr/share/texmf-dist/tex/generic/pgf/modules/pgfmoduledecorations.code.tex -\pgfdecoratedcompleteddistance=\dimen258 -\pgfdecoratedremainingdistance=\dimen259 -\pgfdecoratedinputsegmentcompleteddistance=\dimen260 -\pgfdecoratedinputsegmentremainingdistance=\dimen261 -\pgf@decorate@distancetomove=\dimen262 -\pgf@decorate@repeatstate=\count309 -\pgfdecorationsegmentamplitude=\dimen263 -\pgfdecorationsegmentlength=\dimen264 -) -\tikz@lib@dec@box=\box64 -) -(/usr/share/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrary -decorations.pathmorphing.code.tex -(/usr/share/texmf-dist/tex/generic/pgf/libraries/decorations/pgflibrarydecorati -ons.pathmorphing.code.tex)) -(/usr/share/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrary -decorations.pathreplacing.code.tex -(/usr/share/texmf-dist/tex/generic/pgf/libraries/decorations/pgflibrarydecorati -ons.pathreplacing.code.tex)) -(/usr/share/texmf-dist/tex/generic/pgfplots/libs/tikzlibrarypgfplots.contourlua -.code.tex) -\pgfplots@numplots=\count310 -\pgfplots@xmin@reg=\dimen265 -\pgfplots@xmax@reg=\dimen266 -\pgfplots@ymin@reg=\dimen267 -\pgfplots@ymax@reg=\dimen268 -\pgfplots@zmin@reg=\dimen269 -\pgfplots@zmax@reg=\dimen270 -) -(/usr/share/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrary -plotmarks.code.tex -File: tikzlibraryplotmarks.code.tex 2025-08-29 v3.1.11a (3.1.11a) - -(/usr/share/texmf-dist/tex/generic/pgf/libraries/pgflibraryplotmarks.code.tex -File: pgflibraryplotmarks.code.tex 2025-08-29 v3.1.11a (3.1.11a) -))) -(/usr/share/texmf-dist/tex/generic/pgfplots/libs/tikzlibrarypgfplots.groupplots -.code.tex -\pgfplots@group@current@plot=\count311 -\pgfplots@group@current@row=\count312 -\pgfplots@group@current@column=\count313 - -(/usr/share/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrary -calc.code.tex -File: tikzlibrarycalc.code.tex 2025-08-29 v3.1.11a (3.1.11a) -)) (/usr/share/texmf-dist/tex/latex/l3backend/l3backend-pdftex.def -File: l3backend-pdftex.def 2025-10-09 L3 backend support: PDF output (pdfTeX) -\l__color_backend_stack_int=\count314 -) -No file pgftest2.aux. -\openout1 = `pgftest2.aux'. - -LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 11. -LaTeX Font Info: ... okay on input line 11. -LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 11. -LaTeX Font Info: ... okay on input line 11. -LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 11. -LaTeX Font Info: ... okay on input line 11. -LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 11. -LaTeX Font Info: ... okay on input line 11. -LaTeX Font Info: Checking defaults for TS1/cmr/m/n on input line 11. -LaTeX Font Info: ... okay on input line 11. -LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 11. -LaTeX Font Info: ... okay on input line 11. -LaTeX Font Info: Checking defaults for U/cmr/m/n on input line 11. -LaTeX Font Info: ... okay on input line 11. -(/usr/share/texmf-dist/tex/context/base/mkii/supp-pdf.mkii -[Loading MPS to PDF converter (version 2006.09.02).] -\scratchcounter=\count315 -\scratchdimen=\dimen271 -\scratchbox=\box65 -\nofMPsegments=\count316 -\nofMParguments=\count317 -\everyMPshowfont=\toks34 -\MPscratchCnt=\count318 -\MPscratchDim=\dimen272 -\MPnumerator=\count319 -\makeMPintoPDFobject=\count320 -\everyMPtoPDFconversion=\toks35 -) (/usr/share/texmf-dist/tex/latex/epstopdf-pkg/epstopdf-base.sty -Package: epstopdf-base 2020-01-24 v2.11 Base part for package epstopdf -Package epstopdf-base Info: Redefining graphics rule for `.eps' on input line 4 -85. - -(/usr/share/texmf-dist/tex/latex/latexconfig/epstopdf-sys.cfg -File: epstopdf-sys.cfg 2010/07/13 v1.3 Configuration of (r)epstopdf for TeX Liv -e -)) -Package pgfplots notification 'compat/show suggested version=true': document ha -s been generated with the most recent feature set (\pgfplotsset{compat=1.18}). - - -! Package pgfkeys Error: I do not know the key '/pgfplots/bar width', to which -you passed '5pt', and I am going to ignore it. Perhaps you misspelled it. - -See the pgfkeys package documentation for explanation. -Type H for immediate help. - ... - -l.13 ...bar, bar width=5pt, width=5cm, height=4cm] - -This error message was generated by an \errmessage -command, so I can't give any explicit help. -Pretend that you're Hercule Poirot: Examine all clues, -and deduce the truth by order and method. - -Package pgfplots info on input line 15: Using 'lua backend=false' for axis: ymo -de=log unsupported (yet). -Package pgfplots info on input line 15: Using 'lua backend=false' for axis: x c -oord trafo unsupported. -LaTeX Font Info: External font `cmex10' loaded for size -(Font) <7> on input line 17. -LaTeX Font Info: External font `cmex10' loaded for size -(Font) <5> on input line 17. -Package pgfplots info on input line 17: Using 'lua backend=false' for axis: ymo -de=log unsupported (yet). -Package pgfplots info on input line 17: Using 'lua backend=false' for axis: x c -oord trafo unsupported. -[1 - -{/var/lib/texmf/fonts/map/pdftex/updmap/pdftex.map}] (./pgftest2.aux) - *********** -LaTeX2e <2025-11-01> -L3 programming layer <2026-01-19> - *********** - ) -Here is how much of TeX's memory you used: - 22386 strings out of 469515 - 603412 string characters out of 5470808 - 1122992 words of memory out of 5000000 - 50734 multiletter control sequences out of 15000+600000 - 627721 words of font info for 40 fonts, out of 8000000 for 9000 - 14 hyphenation exceptions out of 8191 - 99i,9n,118p,740b,2308s stack positions out of 10000i,1000n,20000p,200000b,200000s - -Output written on pgftest2.pdf (1 page, 20631 bytes). -PDF statistics: - 21 PDF objects out of 1000 (max. 8388607) - 13 compressed objects within 1 object stream - 0 named destinations out of 1000 (max. 500000) - 13 words of extra memory for PDF output out of 10000 (max. 10000000) - diff --git a/paper/pgftest3.aux b/paper/pgftest3.aux deleted file mode 100644 index b640121..0000000 --- a/paper/pgftest3.aux +++ /dev/null @@ -1,2 +0,0 @@ -\relax -\gdef \@abspage@last{1} diff --git a/paper/pgftest3.log b/paper/pgftest3.log deleted file mode 100644 index 93c5151..0000000 --- a/paper/pgftest3.log +++ /dev/null @@ -1,498 +0,0 @@ -This is pdfTeX, Version 3.141592653-2.6-1.40.29 (TeX Live 2026/Arch Linux) (preloaded format=pdflatex 2026.3.6) 4 APR 2026 13:32 -entering extended mode - restricted \write18 enabled. - %&-line parsing enabled. -**/tmp/pgftest3.tex -(/tmp/pgftest3.tex -LaTeX2e <2025-11-01> -L3 programming layer <2026-01-19> -(/usr/share/texmf-dist/tex/latex/base/article.cls -Document Class: article 2025/01/22 v1.4n Standard LaTeX document class -(/usr/share/texmf-dist/tex/latex/base/size10.clo -File: size10.clo 2025/01/22 v1.4n Standard LaTeX file (size option) -) -\c@part=\count275 -\c@section=\count276 -\c@subsection=\count277 -\c@subsubsection=\count278 -\c@paragraph=\count279 -\c@subparagraph=\count280 -\c@figure=\count281 -\c@table=\count282 -\abovecaptionskip=\skip49 -\belowcaptionskip=\skip50 -\bibindent=\dimen148 -) -(/usr/share/texmf-dist/tex/latex/pgfplots/pgfplots.sty -(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplots.revision.tex) -Package: pgfplots 2025/08/14 v1.18.2 Data Visualization (1.18.2) - -(/usr/share/texmf-dist/tex/latex/graphics/graphicx.sty -Package: graphicx 2024/12/31 v1.2e Enhanced LaTeX Graphics (DPC,SPQR) - -(/usr/share/texmf-dist/tex/latex/graphics/keyval.sty -Package: keyval 2022/05/29 v1.15 key=value parser (DPC) -\KV@toks@=\toks17 -) -(/usr/share/texmf-dist/tex/latex/graphics/graphics.sty -Package: graphics 2024/08/06 v1.4g Standard LaTeX Graphics (DPC,SPQR) - -(/usr/share/texmf-dist/tex/latex/graphics/trig.sty -Package: trig 2023/12/02 v1.11 sin cos tan (DPC) -) -(/usr/share/texmf-dist/tex/latex/graphics-cfg/graphics.cfg -File: graphics.cfg 2016/06/04 v1.11 sample graphics configuration -) -Package graphics Info: Driver file: pdftex.def on input line 106. - -(/usr/share/texmf-dist/tex/latex/graphics-def/pdftex.def -File: pdftex.def 2025/09/29 v1.2d Graphics/color driver for pdftex -)) -\Gin@req@height=\dimen149 -\Gin@req@width=\dimen150 -) -(/usr/share/texmf-dist/tex/latex/pgf/frontendlayer/tikz.sty -(/usr/share/texmf-dist/tex/latex/pgf/basiclayer/pgf.sty -(/usr/share/texmf-dist/tex/latex/pgf/utilities/pgfrcs.sty -(/usr/share/texmf-dist/tex/generic/pgf/utilities/pgfutil-common.tex -\pgfutil@everybye=\toks18 -\pgfutil@tempdima=\dimen151 -\pgfutil@tempdimb=\dimen152 -) -(/usr/share/texmf-dist/tex/generic/pgf/utilities/pgfutil-latex.def -\pgfutil@abb=\box53 -) -(/usr/share/texmf-dist/tex/generic/pgf/utilities/pgfrcs.code.tex -(/usr/share/texmf-dist/tex/generic/pgf/pgf.revision.tex) -Package: pgfrcs 2025-08-29 v3.1.11a (3.1.11a) -)) -Package: pgf 2025-08-29 v3.1.11a (3.1.11a) - -(/usr/share/texmf-dist/tex/latex/pgf/basiclayer/pgfcore.sty -(/usr/share/texmf-dist/tex/latex/pgf/systemlayer/pgfsys.sty -(/usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgfsys.code.tex -Package: pgfsys 2025-08-29 v3.1.11a (3.1.11a) - -(/usr/share/texmf-dist/tex/generic/pgf/utilities/pgfkeys.code.tex -\pgfkeys@pathtoks=\toks19 -\pgfkeys@temptoks=\toks20 - -(/usr/share/texmf-dist/tex/generic/pgf/utilities/pgfkeyslibraryfiltered.code.te -x -\pgfkeys@tmptoks=\toks21 -)) -\pgf@x=\dimen153 -\pgf@y=\dimen154 -\pgf@xa=\dimen155 -\pgf@ya=\dimen156 -\pgf@xb=\dimen157 -\pgf@yb=\dimen158 -\pgf@xc=\dimen159 -\pgf@yc=\dimen160 -\pgf@xd=\dimen161 -\pgf@yd=\dimen162 -\w@pgf@writea=\write3 -\r@pgf@reada=\read2 -\c@pgf@counta=\count283 -\c@pgf@countb=\count284 -\c@pgf@countc=\count285 -\c@pgf@countd=\count286 -\t@pgf@toka=\toks22 -\t@pgf@tokb=\toks23 -\t@pgf@tokc=\toks24 -\pgf@sys@id@count=\count287 - (/usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgf.cfg -File: pgf.cfg 2025-08-29 v3.1.11a (3.1.11a) -) -Driver file for pgf: pgfsys-pdftex.def - -(/usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgfsys-pdftex.def -File: pgfsys-pdftex.def 2025-08-29 v3.1.11a (3.1.11a) - -(/usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgfsys-common-pdf.def -File: pgfsys-common-pdf.def 2025-08-29 v3.1.11a (3.1.11a) -))) -(/usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgfsyssoftpath.code.tex -File: pgfsyssoftpath.code.tex 2025-08-29 v3.1.11a (3.1.11a) -\pgfsyssoftpath@smallbuffer@items=\count288 -\pgfsyssoftpath@bigbuffer@items=\count289 -) -(/usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgfsysprotocol.code.tex -File: pgfsysprotocol.code.tex 2025-08-29 v3.1.11a (3.1.11a) -)) -(/usr/share/texmf-dist/tex/latex/xcolor/xcolor.sty -Package: xcolor 2024/09/29 v3.02 LaTeX color extensions (UK) - -(/usr/share/texmf-dist/tex/latex/graphics-cfg/color.cfg -File: color.cfg 2016/01/02 v1.6 sample color configuration -) -Package xcolor Info: Driver file: pdftex.def on input line 274. - -(/usr/share/texmf-dist/tex/latex/graphics/mathcolor.ltx) -Package xcolor Info: Model `cmy' substituted by `cmy0' on input line 1349. -Package xcolor Info: Model `hsb' substituted by `rgb' on input line 1353. -Package xcolor Info: Model `RGB' extended on input line 1365. -Package xcolor Info: Model `HTML' substituted by `rgb' on input line 1367. -Package xcolor Info: Model `Hsb' substituted by `hsb' on input line 1368. -Package xcolor Info: Model `tHsb' substituted by `hsb' on input line 1369. -Package xcolor Info: Model `HSB' substituted by `hsb' on input line 1370. -Package xcolor Info: Model `Gray' substituted by `gray' on input line 1371. -Package xcolor Info: Model `wave' substituted by `hsb' on input line 1372. -) -(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcore.code.tex -Package: pgfcore 2025-08-29 v3.1.11a (3.1.11a) - -(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmath.code.tex -(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathutil.code.tex) -(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathparser.code.tex -\pgfmath@dimen=\dimen163 -\pgfmath@count=\count290 -\pgfmath@box=\box54 -\pgfmath@toks=\toks25 -\pgfmath@stack@operand=\toks26 -\pgfmath@stack@operation=\toks27 -) -(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.code.tex) -(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.basic.code.tex) -(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.trigonometric.code -.tex) -(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.random.code.tex) -(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.comparison.code.te -x) (/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.base.code.tex) -(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.round.code.tex) -(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.misc.code.tex) -(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.integerarithmetics -.code.tex) (/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathcalc.code.tex) -(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfloat.code.tex -\c@pgfmathroundto@lastzeros=\count291 -)) -(/usr/share/texmf-dist/tex/generic/pgf/math/pgfint.code.tex) -(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepoints.code.tex -File: pgfcorepoints.code.tex 2025-08-29 v3.1.11a (3.1.11a) -\pgf@picminx=\dimen164 -\pgf@picmaxx=\dimen165 -\pgf@picminy=\dimen166 -\pgf@picmaxy=\dimen167 -\pgf@pathminx=\dimen168 -\pgf@pathmaxx=\dimen169 -\pgf@pathminy=\dimen170 -\pgf@pathmaxy=\dimen171 -\pgf@xx=\dimen172 -\pgf@xy=\dimen173 -\pgf@yx=\dimen174 -\pgf@yy=\dimen175 -\pgf@zx=\dimen176 -\pgf@zy=\dimen177 -) -(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathconstruct.code.tex -File: pgfcorepathconstruct.code.tex 2025-08-29 v3.1.11a (3.1.11a) -\pgf@path@lastx=\dimen178 -\pgf@path@lasty=\dimen179 -) (/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathusage.code.tex -File: pgfcorepathusage.code.tex 2025-08-29 v3.1.11a (3.1.11a) -\pgf@shorten@end@additional=\dimen180 -\pgf@shorten@start@additional=\dimen181 -) -(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorescopes.code.tex -File: pgfcorescopes.code.tex 2025-08-29 v3.1.11a (3.1.11a) -\pgfpic=\box55 -\pgf@hbox=\box56 -\pgf@layerbox@main=\box57 -\pgf@picture@serial@count=\count292 -) -(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoregraphicstate.code.tex -File: pgfcoregraphicstate.code.tex 2025-08-29 v3.1.11a (3.1.11a) -\pgflinewidth=\dimen182 -) -(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoretransformations.code.t -ex -File: pgfcoretransformations.code.tex 2025-08-29 v3.1.11a (3.1.11a) -\pgf@pt@x=\dimen183 -\pgf@pt@y=\dimen184 -\pgf@pt@temp=\dimen185 -) (/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorequick.code.tex -File: pgfcorequick.code.tex 2025-08-29 v3.1.11a (3.1.11a) -) -(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreobjects.code.tex -File: pgfcoreobjects.code.tex 2025-08-29 v3.1.11a (3.1.11a) -) -(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathprocessing.code.te -x -File: pgfcorepathprocessing.code.tex 2025-08-29 v3.1.11a (3.1.11a) -) (/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorearrows.code.tex -File: pgfcorearrows.code.tex 2025-08-29 v3.1.11a (3.1.11a) -\pgfarrowsep=\dimen186 -) -(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreshade.code.tex -File: pgfcoreshade.code.tex 2025-08-29 v3.1.11a (3.1.11a) -\pgf@max=\dimen187 -\pgf@sys@shading@range@num=\count293 -\pgf@shadingcount=\count294 -) -(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreimage.code.tex -File: pgfcoreimage.code.tex 2025-08-29 v3.1.11a (3.1.11a) -) -(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreexternal.code.tex -File: pgfcoreexternal.code.tex 2025-08-29 v3.1.11a (3.1.11a) -\pgfexternal@startupbox=\box58 -) -(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorelayers.code.tex -File: pgfcorelayers.code.tex 2025-08-29 v3.1.11a (3.1.11a) -) -(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoretransparency.code.tex -File: pgfcoretransparency.code.tex 2025-08-29 v3.1.11a (3.1.11a) -) (/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepatterns.code.tex -File: pgfcorepatterns.code.tex 2025-08-29 v3.1.11a (3.1.11a) -) -(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorerdf.code.tex -File: pgfcorerdf.code.tex 2025-08-29 v3.1.11a (3.1.11a) -))) -(/usr/share/texmf-dist/tex/generic/pgf/modules/pgfmoduleshapes.code.tex -File: pgfmoduleshapes.code.tex 2025-08-29 v3.1.11a (3.1.11a) -\pgfnodeparttextbox=\box59 -) -(/usr/share/texmf-dist/tex/generic/pgf/modules/pgfmoduleplot.code.tex -File: pgfmoduleplot.code.tex 2025-08-29 v3.1.11a (3.1.11a) -) -(/usr/share/texmf-dist/tex/latex/pgf/compatibility/pgfcomp-version-0-65.sty -Package: pgfcomp-version-0-65 2025-08-29 v3.1.11a (3.1.11a) -\pgf@nodesepstart=\dimen188 -\pgf@nodesepend=\dimen189 -) -(/usr/share/texmf-dist/tex/latex/pgf/compatibility/pgfcomp-version-1-18.sty -Package: pgfcomp-version-1-18 2025-08-29 v3.1.11a (3.1.11a) -)) -(/usr/share/texmf-dist/tex/latex/pgf/utilities/pgffor.sty -(/usr/share/texmf-dist/tex/latex/pgf/utilities/pgfkeys.sty -(/usr/share/texmf-dist/tex/generic/pgf/utilities/pgfkeys.code.tex)) -(/usr/share/texmf-dist/tex/latex/pgf/math/pgfmath.sty -(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmath.code.tex)) -(/usr/share/texmf-dist/tex/generic/pgf/utilities/pgffor.code.tex -Package: pgffor 2025-08-29 v3.1.11a (3.1.11a) -\pgffor@iter=\dimen190 -\pgffor@skip=\dimen191 -\pgffor@stack=\toks28 -\pgffor@toks=\toks29 -)) -(/usr/share/texmf-dist/tex/generic/pgf/frontendlayer/tikz/tikz.code.tex -Package: tikz 2025-08-29 v3.1.11a (3.1.11a) - -(/usr/share/texmf-dist/tex/generic/pgf/libraries/pgflibraryplothandlers.code.te -x -File: pgflibraryplothandlers.code.tex 2025-08-29 v3.1.11a (3.1.11a) -\pgf@plot@mark@count=\count295 -\pgfplotmarksize=\dimen192 -) -\tikz@lastx=\dimen193 -\tikz@lasty=\dimen194 -\tikz@lastxsaved=\dimen195 -\tikz@lastysaved=\dimen196 -\tikz@lastmovetox=\dimen197 -\tikz@lastmovetoy=\dimen198 -\tikzleveldistance=\dimen199 -\tikzsiblingdistance=\dimen256 -\tikz@figbox=\box60 -\tikz@figbox@bg=\box61 -\tikz@tempbox=\box62 -\tikz@tempbox@bg=\box63 -\tikztreelevel=\count296 -\tikznumberofchildren=\count297 -\tikznumberofcurrentchild=\count298 -\tikz@fig@count=\count299 - (/usr/share/texmf-dist/tex/generic/pgf/modules/pgfmodulematrix.code.tex -File: pgfmodulematrix.code.tex 2025-08-29 v3.1.11a (3.1.11a) -\pgfmatrixcurrentrow=\count300 -\pgfmatrixcurrentcolumn=\count301 -\pgf@matrix@numberofcolumns=\count302 -) -\tikz@expandcount=\count303 - -(/usr/share/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrary -topaths.code.tex -File: tikzlibrarytopaths.code.tex 2025-08-29 v3.1.11a (3.1.11a) -))) -(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplots.code.tex -(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplotscore.code.tex -\t@pgfplots@toka=\toks30 -\t@pgfplots@tokb=\toks31 -\t@pgfplots@tokc=\toks32 -\pgfplots@tmpa=\dimen257 -\c@pgfplots@coordindex=\count304 -\c@pgfplots@scanlineindex=\count305 - -(/usr/share/texmf-dist/tex/generic/pgfplots/sys/pgfplotssysgeneric.code.tex)) -(/usr/share/texmf-dist/tex/generic/pgfplots/libs/pgfplotslibrary.code.tex) -(/usr/share/texmf-dist/tex/generic/pgfplots/oldpgfcompatib/pgfplotsoldpgfsupp_l -oader.code.tex -(/usr/share/texmf-dist/tex/generic/pgf/libraries/pgflibraryfpu.code.tex) -(/usr/share/texmf-dist/tex/generic/pgfplots/oldpgfcompatib/pgfplotsoldpgfsupp_p -gfutil-common-lists.tex)) -(/usr/share/texmf-dist/tex/generic/pgfplots/util/pgfplotsutil.code.tex -(/usr/share/texmf-dist/tex/generic/pgfplots/liststructure/pgfplotsliststructure -.code.tex) -(/usr/share/texmf-dist/tex/generic/pgfplots/liststructure/pgfplotsliststructure -ext.code.tex) -(/usr/share/texmf-dist/tex/generic/pgfplots/liststructure/pgfplotsarray.code.te -x -\c@pgfplotsarray@tmp=\count306 -) -(/usr/share/texmf-dist/tex/generic/pgfplots/liststructure/pgfplotsmatrix.code.t -ex) -(/usr/share/texmf-dist/tex/generic/pgfplots/numtable/pgfplotstableshared.code.t -ex -\c@pgfplotstable@counta=\count307 -\t@pgfplotstable@a=\toks33 -) -(/usr/share/texmf-dist/tex/generic/pgfplots/liststructure/pgfplotsdeque.code.te -x) (/usr/share/texmf-dist/tex/generic/pgfplots/util/pgfplotsbinary.code.tex -(/usr/share/texmf-dist/tex/generic/pgfplots/util/pgfplotsbinary.data.code.tex)) -(/usr/share/texmf-dist/tex/generic/pgfplots/util/pgfplotsutil.verb.code.tex) -(/usr/share/texmf-dist/tex/generic/pgfplots/libs/pgflibrarypgfplots.surfshading -.code.tex -\c@pgfplotslibrarysurf@no=\count308 - -(/usr/share/texmf-dist/tex/generic/pgfplots/sys/pgflibrarypgfplots.surfshading. -pgfsys-pdftex.def))) -(/usr/share/texmf-dist/tex/generic/pgfplots/util/pgfplotscolormap.code.tex -(/usr/share/texmf-dist/tex/generic/pgfplots/util/pgfplotscolor.code.tex)) -(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplotsstackedplots.code.tex) -(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplotsplothandlers.code.tex -(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplotsmeshplothandler.code.tex -(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplotsmeshplotimage.code.tex))) -(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplots.scaling.code.tex) -(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplotscoordprocessing.code.tex) -(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplots.errorbars.code.tex) -(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplots.markers.code.tex) -(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplotsticks.code.tex) -(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplots.paths.code.tex) -(/usr/share/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrary -decorations.code.tex -(/usr/share/texmf-dist/tex/generic/pgf/modules/pgfmoduledecorations.code.tex -\pgfdecoratedcompleteddistance=\dimen258 -\pgfdecoratedremainingdistance=\dimen259 -\pgfdecoratedinputsegmentcompleteddistance=\dimen260 -\pgfdecoratedinputsegmentremainingdistance=\dimen261 -\pgf@decorate@distancetomove=\dimen262 -\pgf@decorate@repeatstate=\count309 -\pgfdecorationsegmentamplitude=\dimen263 -\pgfdecorationsegmentlength=\dimen264 -) -\tikz@lib@dec@box=\box64 -) -(/usr/share/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrary -decorations.pathmorphing.code.tex -(/usr/share/texmf-dist/tex/generic/pgf/libraries/decorations/pgflibrarydecorati -ons.pathmorphing.code.tex)) -(/usr/share/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrary -decorations.pathreplacing.code.tex -(/usr/share/texmf-dist/tex/generic/pgf/libraries/decorations/pgflibrarydecorati -ons.pathreplacing.code.tex)) -(/usr/share/texmf-dist/tex/generic/pgfplots/libs/tikzlibrarypgfplots.contourlua -.code.tex) -\pgfplots@numplots=\count310 -\pgfplots@xmin@reg=\dimen265 -\pgfplots@xmax@reg=\dimen266 -\pgfplots@ymin@reg=\dimen267 -\pgfplots@ymax@reg=\dimen268 -\pgfplots@zmin@reg=\dimen269 -\pgfplots@zmax@reg=\dimen270 -) -(/usr/share/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrary -plotmarks.code.tex -File: tikzlibraryplotmarks.code.tex 2025-08-29 v3.1.11a (3.1.11a) - -(/usr/share/texmf-dist/tex/generic/pgf/libraries/pgflibraryplotmarks.code.tex -File: pgflibraryplotmarks.code.tex 2025-08-29 v3.1.11a (3.1.11a) -))) -(/usr/share/texmf-dist/tex/generic/pgfplots/libs/tikzlibrarypgfplots.groupplots -.code.tex -\pgfplots@group@current@plot=\count311 -\pgfplots@group@current@row=\count312 -\pgfplots@group@current@column=\count313 - -(/usr/share/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrary -calc.code.tex -File: tikzlibrarycalc.code.tex 2025-08-29 v3.1.11a (3.1.11a) -)) (/usr/share/texmf-dist/tex/latex/l3backend/l3backend-pdftex.def -File: l3backend-pdftex.def 2025-10-09 L3 backend support: PDF output (pdfTeX) -\l__color_backend_stack_int=\count314 -) -No file pgftest3.aux. -\openout1 = `pgftest3.aux'. - -LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 8. -LaTeX Font Info: ... okay on input line 8. -LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 8. -LaTeX Font Info: ... okay on input line 8. -LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 8. -LaTeX Font Info: ... okay on input line 8. -LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 8. -LaTeX Font Info: ... okay on input line 8. -LaTeX Font Info: Checking defaults for TS1/cmr/m/n on input line 8. -LaTeX Font Info: ... okay on input line 8. -LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 8. -LaTeX Font Info: ... okay on input line 8. -LaTeX Font Info: Checking defaults for U/cmr/m/n on input line 8. -LaTeX Font Info: ... okay on input line 8. -(/usr/share/texmf-dist/tex/context/base/mkii/supp-pdf.mkii -[Loading MPS to PDF converter (version 2006.09.02).] -\scratchcounter=\count315 -\scratchdimen=\dimen271 -\scratchbox=\box65 -\nofMPsegments=\count316 -\nofMParguments=\count317 -\everyMPshowfont=\toks34 -\MPscratchCnt=\count318 -\MPscratchDim=\dimen272 -\MPnumerator=\count319 -\makeMPintoPDFobject=\count320 -\everyMPtoPDFconversion=\toks35 -) (/usr/share/texmf-dist/tex/latex/epstopdf-pkg/epstopdf-base.sty -Package: epstopdf-base 2020-01-24 v2.11 Base part for package epstopdf -Package epstopdf-base Info: Redefining graphics rule for `.eps' on input line 4 -85. - -(/usr/share/texmf-dist/tex/latex/latexconfig/epstopdf-sys.cfg -File: epstopdf-sys.cfg 2010/07/13 v1.3 Configuration of (r)epstopdf for TeX Liv -e -)) -Package pgfplots notification 'compat/show suggested version=true': document ha -s been generated with the most recent feature set (\pgfplotsset{compat=1.18}). - -Package pgfplots info on input line 11: Using 'lua backend=false' for axis: ymo -de=log unsupported (yet). -Package pgfplots info on input line 11: Using 'lua backend=false' for axis: x c -oord trafo unsupported. -LaTeX Font Info: External font `cmex10' loaded for size -(Font) <7> on input line 13. -LaTeX Font Info: External font `cmex10' loaded for size -(Font) <5> on input line 13. -Package pgfplots info on input line 13: Using 'lua backend=false' for axis: ymo -de=log unsupported (yet). -Package pgfplots info on input line 13: Using 'lua backend=false' for axis: x c -oord trafo unsupported. -[1 - -{/var/lib/texmf/fonts/map/pdftex/updmap/pdftex.map}] (./pgftest3.aux) - *********** -LaTeX2e <2025-11-01> -L3 programming layer <2026-01-19> - *********** - ) -Here is how much of TeX's memory you used: - 22386 strings out of 469515 - 603412 string characters out of 5470808 - 1122992 words of memory out of 5000000 - 50734 multiletter control sequences out of 15000+600000 - 627721 words of font info for 40 fonts, out of 8000000 for 9000 - 14 hyphenation exceptions out of 8191 - 99i,9n,118p,740b,2310s stack positions out of 10000i,1000n,20000p,200000b,200000s - -Output written on pgftest3.pdf (1 page, 20634 bytes). -PDF statistics: - 21 PDF objects out of 1000 (max. 8388607) - 13 compressed objects within 1 object stream - 0 named destinations out of 1000 (max. 500000) - 13 words of extra memory for PDF output out of 10000 (max. 10000000) - diff --git a/paper/pgftest4.aux b/paper/pgftest4.aux deleted file mode 100644 index b640121..0000000 --- a/paper/pgftest4.aux +++ /dev/null @@ -1,2 +0,0 @@ -\relax -\gdef \@abspage@last{1} diff --git a/paper/pgftest4.log b/paper/pgftest4.log deleted file mode 100644 index 2e1b4f6..0000000 --- a/paper/pgftest4.log +++ /dev/null @@ -1,496 +0,0 @@ -This is pdfTeX, Version 3.141592653-2.6-1.40.29 (TeX Live 2026/Arch Linux) (preloaded format=pdflatex 2026.3.6) 4 APR 2026 13:45 -entering extended mode - restricted \write18 enabled. - %&-line parsing enabled. -**/tmp/pgftest4.tex -(/tmp/pgftest4.tex -LaTeX2e <2025-11-01> -L3 programming layer <2026-01-19> -(/usr/share/texmf-dist/tex/latex/base/article.cls -Document Class: article 2025/01/22 v1.4n Standard LaTeX document class -(/usr/share/texmf-dist/tex/latex/base/size10.clo -File: size10.clo 2025/01/22 v1.4n Standard LaTeX file (size option) -) -\c@part=\count275 -\c@section=\count276 -\c@subsection=\count277 -\c@subsubsection=\count278 -\c@paragraph=\count279 -\c@subparagraph=\count280 -\c@figure=\count281 -\c@table=\count282 -\abovecaptionskip=\skip49 -\belowcaptionskip=\skip50 -\bibindent=\dimen148 -) -(/usr/share/texmf-dist/tex/latex/pgfplots/pgfplots.sty -(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplots.revision.tex) -Package: pgfplots 2025/08/14 v1.18.2 Data Visualization (1.18.2) - -(/usr/share/texmf-dist/tex/latex/graphics/graphicx.sty -Package: graphicx 2024/12/31 v1.2e Enhanced LaTeX Graphics (DPC,SPQR) - -(/usr/share/texmf-dist/tex/latex/graphics/keyval.sty -Package: keyval 2022/05/29 v1.15 key=value parser (DPC) -\KV@toks@=\toks17 -) -(/usr/share/texmf-dist/tex/latex/graphics/graphics.sty -Package: graphics 2024/08/06 v1.4g Standard LaTeX Graphics (DPC,SPQR) - -(/usr/share/texmf-dist/tex/latex/graphics/trig.sty -Package: trig 2023/12/02 v1.11 sin cos tan (DPC) -) -(/usr/share/texmf-dist/tex/latex/graphics-cfg/graphics.cfg -File: graphics.cfg 2016/06/04 v1.11 sample graphics configuration -) -Package graphics Info: Driver file: pdftex.def on input line 106. - -(/usr/share/texmf-dist/tex/latex/graphics-def/pdftex.def -File: pdftex.def 2025/09/29 v1.2d Graphics/color driver for pdftex -)) -\Gin@req@height=\dimen149 -\Gin@req@width=\dimen150 -) -(/usr/share/texmf-dist/tex/latex/pgf/frontendlayer/tikz.sty -(/usr/share/texmf-dist/tex/latex/pgf/basiclayer/pgf.sty -(/usr/share/texmf-dist/tex/latex/pgf/utilities/pgfrcs.sty -(/usr/share/texmf-dist/tex/generic/pgf/utilities/pgfutil-common.tex -\pgfutil@everybye=\toks18 -\pgfutil@tempdima=\dimen151 -\pgfutil@tempdimb=\dimen152 -) -(/usr/share/texmf-dist/tex/generic/pgf/utilities/pgfutil-latex.def -\pgfutil@abb=\box53 -) -(/usr/share/texmf-dist/tex/generic/pgf/utilities/pgfrcs.code.tex -(/usr/share/texmf-dist/tex/generic/pgf/pgf.revision.tex) -Package: pgfrcs 2025-08-29 v3.1.11a (3.1.11a) -)) -Package: pgf 2025-08-29 v3.1.11a (3.1.11a) - -(/usr/share/texmf-dist/tex/latex/pgf/basiclayer/pgfcore.sty -(/usr/share/texmf-dist/tex/latex/pgf/systemlayer/pgfsys.sty -(/usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgfsys.code.tex -Package: pgfsys 2025-08-29 v3.1.11a (3.1.11a) - -(/usr/share/texmf-dist/tex/generic/pgf/utilities/pgfkeys.code.tex -\pgfkeys@pathtoks=\toks19 -\pgfkeys@temptoks=\toks20 - -(/usr/share/texmf-dist/tex/generic/pgf/utilities/pgfkeyslibraryfiltered.code.te -x -\pgfkeys@tmptoks=\toks21 -)) -\pgf@x=\dimen153 -\pgf@y=\dimen154 -\pgf@xa=\dimen155 -\pgf@ya=\dimen156 -\pgf@xb=\dimen157 -\pgf@yb=\dimen158 -\pgf@xc=\dimen159 -\pgf@yc=\dimen160 -\pgf@xd=\dimen161 -\pgf@yd=\dimen162 -\w@pgf@writea=\write3 -\r@pgf@reada=\read2 -\c@pgf@counta=\count283 -\c@pgf@countb=\count284 -\c@pgf@countc=\count285 -\c@pgf@countd=\count286 -\t@pgf@toka=\toks22 -\t@pgf@tokb=\toks23 -\t@pgf@tokc=\toks24 -\pgf@sys@id@count=\count287 - (/usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgf.cfg -File: pgf.cfg 2025-08-29 v3.1.11a (3.1.11a) -) -Driver file for pgf: pgfsys-pdftex.def - -(/usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgfsys-pdftex.def -File: pgfsys-pdftex.def 2025-08-29 v3.1.11a (3.1.11a) - -(/usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgfsys-common-pdf.def -File: pgfsys-common-pdf.def 2025-08-29 v3.1.11a (3.1.11a) -))) -(/usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgfsyssoftpath.code.tex -File: pgfsyssoftpath.code.tex 2025-08-29 v3.1.11a (3.1.11a) -\pgfsyssoftpath@smallbuffer@items=\count288 -\pgfsyssoftpath@bigbuffer@items=\count289 -) -(/usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgfsysprotocol.code.tex -File: pgfsysprotocol.code.tex 2025-08-29 v3.1.11a (3.1.11a) -)) -(/usr/share/texmf-dist/tex/latex/xcolor/xcolor.sty -Package: xcolor 2024/09/29 v3.02 LaTeX color extensions (UK) - -(/usr/share/texmf-dist/tex/latex/graphics-cfg/color.cfg -File: color.cfg 2016/01/02 v1.6 sample color configuration -) -Package xcolor Info: Driver file: pdftex.def on input line 274. - -(/usr/share/texmf-dist/tex/latex/graphics/mathcolor.ltx) -Package xcolor Info: Model `cmy' substituted by `cmy0' on input line 1349. -Package xcolor Info: Model `hsb' substituted by `rgb' on input line 1353. -Package xcolor Info: Model `RGB' extended on input line 1365. -Package xcolor Info: Model `HTML' substituted by `rgb' on input line 1367. -Package xcolor Info: Model `Hsb' substituted by `hsb' on input line 1368. -Package xcolor Info: Model `tHsb' substituted by `hsb' on input line 1369. -Package xcolor Info: Model `HSB' substituted by `hsb' on input line 1370. -Package xcolor Info: Model `Gray' substituted by `gray' on input line 1371. -Package xcolor Info: Model `wave' substituted by `hsb' on input line 1372. -) -(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcore.code.tex -Package: pgfcore 2025-08-29 v3.1.11a (3.1.11a) - -(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmath.code.tex -(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathutil.code.tex) -(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathparser.code.tex -\pgfmath@dimen=\dimen163 -\pgfmath@count=\count290 -\pgfmath@box=\box54 -\pgfmath@toks=\toks25 -\pgfmath@stack@operand=\toks26 -\pgfmath@stack@operation=\toks27 -) -(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.code.tex) -(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.basic.code.tex) -(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.trigonometric.code -.tex) -(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.random.code.tex) -(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.comparison.code.te -x) (/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.base.code.tex) -(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.round.code.tex) -(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.misc.code.tex) -(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.integerarithmetics -.code.tex) (/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathcalc.code.tex) -(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfloat.code.tex -\c@pgfmathroundto@lastzeros=\count291 -)) -(/usr/share/texmf-dist/tex/generic/pgf/math/pgfint.code.tex) -(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepoints.code.tex -File: pgfcorepoints.code.tex 2025-08-29 v3.1.11a (3.1.11a) -\pgf@picminx=\dimen164 -\pgf@picmaxx=\dimen165 -\pgf@picminy=\dimen166 -\pgf@picmaxy=\dimen167 -\pgf@pathminx=\dimen168 -\pgf@pathmaxx=\dimen169 -\pgf@pathminy=\dimen170 -\pgf@pathmaxy=\dimen171 -\pgf@xx=\dimen172 -\pgf@xy=\dimen173 -\pgf@yx=\dimen174 -\pgf@yy=\dimen175 -\pgf@zx=\dimen176 -\pgf@zy=\dimen177 -) -(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathconstruct.code.tex -File: pgfcorepathconstruct.code.tex 2025-08-29 v3.1.11a (3.1.11a) -\pgf@path@lastx=\dimen178 -\pgf@path@lasty=\dimen179 -) (/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathusage.code.tex -File: pgfcorepathusage.code.tex 2025-08-29 v3.1.11a (3.1.11a) -\pgf@shorten@end@additional=\dimen180 -\pgf@shorten@start@additional=\dimen181 -) -(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorescopes.code.tex -File: pgfcorescopes.code.tex 2025-08-29 v3.1.11a (3.1.11a) -\pgfpic=\box55 -\pgf@hbox=\box56 -\pgf@layerbox@main=\box57 -\pgf@picture@serial@count=\count292 -) -(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoregraphicstate.code.tex -File: pgfcoregraphicstate.code.tex 2025-08-29 v3.1.11a (3.1.11a) -\pgflinewidth=\dimen182 -) -(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoretransformations.code.t -ex -File: pgfcoretransformations.code.tex 2025-08-29 v3.1.11a (3.1.11a) -\pgf@pt@x=\dimen183 -\pgf@pt@y=\dimen184 -\pgf@pt@temp=\dimen185 -) (/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorequick.code.tex -File: pgfcorequick.code.tex 2025-08-29 v3.1.11a (3.1.11a) -) -(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreobjects.code.tex -File: pgfcoreobjects.code.tex 2025-08-29 v3.1.11a (3.1.11a) -) -(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathprocessing.code.te -x -File: pgfcorepathprocessing.code.tex 2025-08-29 v3.1.11a (3.1.11a) -) (/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorearrows.code.tex -File: pgfcorearrows.code.tex 2025-08-29 v3.1.11a (3.1.11a) -\pgfarrowsep=\dimen186 -) -(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreshade.code.tex -File: pgfcoreshade.code.tex 2025-08-29 v3.1.11a (3.1.11a) -\pgf@max=\dimen187 -\pgf@sys@shading@range@num=\count293 -\pgf@shadingcount=\count294 -) -(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreimage.code.tex -File: pgfcoreimage.code.tex 2025-08-29 v3.1.11a (3.1.11a) -) -(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreexternal.code.tex -File: pgfcoreexternal.code.tex 2025-08-29 v3.1.11a (3.1.11a) -\pgfexternal@startupbox=\box58 -) -(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorelayers.code.tex -File: pgfcorelayers.code.tex 2025-08-29 v3.1.11a (3.1.11a) -) -(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoretransparency.code.tex -File: pgfcoretransparency.code.tex 2025-08-29 v3.1.11a (3.1.11a) -) (/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepatterns.code.tex -File: pgfcorepatterns.code.tex 2025-08-29 v3.1.11a (3.1.11a) -) -(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorerdf.code.tex -File: pgfcorerdf.code.tex 2025-08-29 v3.1.11a (3.1.11a) -))) -(/usr/share/texmf-dist/tex/generic/pgf/modules/pgfmoduleshapes.code.tex -File: pgfmoduleshapes.code.tex 2025-08-29 v3.1.11a (3.1.11a) -\pgfnodeparttextbox=\box59 -) -(/usr/share/texmf-dist/tex/generic/pgf/modules/pgfmoduleplot.code.tex -File: pgfmoduleplot.code.tex 2025-08-29 v3.1.11a (3.1.11a) -) -(/usr/share/texmf-dist/tex/latex/pgf/compatibility/pgfcomp-version-0-65.sty -Package: pgfcomp-version-0-65 2025-08-29 v3.1.11a (3.1.11a) -\pgf@nodesepstart=\dimen188 -\pgf@nodesepend=\dimen189 -) -(/usr/share/texmf-dist/tex/latex/pgf/compatibility/pgfcomp-version-1-18.sty -Package: pgfcomp-version-1-18 2025-08-29 v3.1.11a (3.1.11a) -)) -(/usr/share/texmf-dist/tex/latex/pgf/utilities/pgffor.sty -(/usr/share/texmf-dist/tex/latex/pgf/utilities/pgfkeys.sty -(/usr/share/texmf-dist/tex/generic/pgf/utilities/pgfkeys.code.tex)) -(/usr/share/texmf-dist/tex/latex/pgf/math/pgfmath.sty -(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmath.code.tex)) -(/usr/share/texmf-dist/tex/generic/pgf/utilities/pgffor.code.tex -Package: pgffor 2025-08-29 v3.1.11a (3.1.11a) -\pgffor@iter=\dimen190 -\pgffor@skip=\dimen191 -\pgffor@stack=\toks28 -\pgffor@toks=\toks29 -)) -(/usr/share/texmf-dist/tex/generic/pgf/frontendlayer/tikz/tikz.code.tex -Package: tikz 2025-08-29 v3.1.11a (3.1.11a) - -(/usr/share/texmf-dist/tex/generic/pgf/libraries/pgflibraryplothandlers.code.te -x -File: pgflibraryplothandlers.code.tex 2025-08-29 v3.1.11a (3.1.11a) -\pgf@plot@mark@count=\count295 -\pgfplotmarksize=\dimen192 -) -\tikz@lastx=\dimen193 -\tikz@lasty=\dimen194 -\tikz@lastxsaved=\dimen195 -\tikz@lastysaved=\dimen196 -\tikz@lastmovetox=\dimen197 -\tikz@lastmovetoy=\dimen198 -\tikzleveldistance=\dimen199 -\tikzsiblingdistance=\dimen256 -\tikz@figbox=\box60 -\tikz@figbox@bg=\box61 -\tikz@tempbox=\box62 -\tikz@tempbox@bg=\box63 -\tikztreelevel=\count296 -\tikznumberofchildren=\count297 -\tikznumberofcurrentchild=\count298 -\tikz@fig@count=\count299 - (/usr/share/texmf-dist/tex/generic/pgf/modules/pgfmodulematrix.code.tex -File: pgfmodulematrix.code.tex 2025-08-29 v3.1.11a (3.1.11a) -\pgfmatrixcurrentrow=\count300 -\pgfmatrixcurrentcolumn=\count301 -\pgf@matrix@numberofcolumns=\count302 -) -\tikz@expandcount=\count303 - -(/usr/share/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrary -topaths.code.tex -File: tikzlibrarytopaths.code.tex 2025-08-29 v3.1.11a (3.1.11a) -))) -(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplots.code.tex -(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplotscore.code.tex -\t@pgfplots@toka=\toks30 -\t@pgfplots@tokb=\toks31 -\t@pgfplots@tokc=\toks32 -\pgfplots@tmpa=\dimen257 -\c@pgfplots@coordindex=\count304 -\c@pgfplots@scanlineindex=\count305 - -(/usr/share/texmf-dist/tex/generic/pgfplots/sys/pgfplotssysgeneric.code.tex)) -(/usr/share/texmf-dist/tex/generic/pgfplots/libs/pgfplotslibrary.code.tex) -(/usr/share/texmf-dist/tex/generic/pgfplots/oldpgfcompatib/pgfplotsoldpgfsupp_l -oader.code.tex -(/usr/share/texmf-dist/tex/generic/pgf/libraries/pgflibraryfpu.code.tex) -(/usr/share/texmf-dist/tex/generic/pgfplots/oldpgfcompatib/pgfplotsoldpgfsupp_p -gfutil-common-lists.tex)) -(/usr/share/texmf-dist/tex/generic/pgfplots/util/pgfplotsutil.code.tex -(/usr/share/texmf-dist/tex/generic/pgfplots/liststructure/pgfplotsliststructure -.code.tex) -(/usr/share/texmf-dist/tex/generic/pgfplots/liststructure/pgfplotsliststructure -ext.code.tex) -(/usr/share/texmf-dist/tex/generic/pgfplots/liststructure/pgfplotsarray.code.te -x -\c@pgfplotsarray@tmp=\count306 -) -(/usr/share/texmf-dist/tex/generic/pgfplots/liststructure/pgfplotsmatrix.code.t -ex) -(/usr/share/texmf-dist/tex/generic/pgfplots/numtable/pgfplotstableshared.code.t -ex -\c@pgfplotstable@counta=\count307 -\t@pgfplotstable@a=\toks33 -) -(/usr/share/texmf-dist/tex/generic/pgfplots/liststructure/pgfplotsdeque.code.te -x) (/usr/share/texmf-dist/tex/generic/pgfplots/util/pgfplotsbinary.code.tex -(/usr/share/texmf-dist/tex/generic/pgfplots/util/pgfplotsbinary.data.code.tex)) -(/usr/share/texmf-dist/tex/generic/pgfplots/util/pgfplotsutil.verb.code.tex) -(/usr/share/texmf-dist/tex/generic/pgfplots/libs/pgflibrarypgfplots.surfshading -.code.tex -\c@pgfplotslibrarysurf@no=\count308 - -(/usr/share/texmf-dist/tex/generic/pgfplots/sys/pgflibrarypgfplots.surfshading. -pgfsys-pdftex.def))) -(/usr/share/texmf-dist/tex/generic/pgfplots/util/pgfplotscolormap.code.tex -(/usr/share/texmf-dist/tex/generic/pgfplots/util/pgfplotscolor.code.tex)) -(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplotsstackedplots.code.tex) -(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplotsplothandlers.code.tex -(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplotsmeshplothandler.code.tex -(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplotsmeshplotimage.code.tex))) -(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplots.scaling.code.tex) -(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplotscoordprocessing.code.tex) -(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplots.errorbars.code.tex) -(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplots.markers.code.tex) -(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplotsticks.code.tex) -(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplots.paths.code.tex) -(/usr/share/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrary -decorations.code.tex -(/usr/share/texmf-dist/tex/generic/pgf/modules/pgfmoduledecorations.code.tex -\pgfdecoratedcompleteddistance=\dimen258 -\pgfdecoratedremainingdistance=\dimen259 -\pgfdecoratedinputsegmentcompleteddistance=\dimen260 -\pgfdecoratedinputsegmentremainingdistance=\dimen261 -\pgf@decorate@distancetomove=\dimen262 -\pgf@decorate@repeatstate=\count309 -\pgfdecorationsegmentamplitude=\dimen263 -\pgfdecorationsegmentlength=\dimen264 -) -\tikz@lib@dec@box=\box64 -) -(/usr/share/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrary -decorations.pathmorphing.code.tex -(/usr/share/texmf-dist/tex/generic/pgf/libraries/decorations/pgflibrarydecorati -ons.pathmorphing.code.tex)) -(/usr/share/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrary -decorations.pathreplacing.code.tex -(/usr/share/texmf-dist/tex/generic/pgf/libraries/decorations/pgflibrarydecorati -ons.pathreplacing.code.tex)) -(/usr/share/texmf-dist/tex/generic/pgfplots/libs/tikzlibrarypgfplots.contourlua -.code.tex) -\pgfplots@numplots=\count310 -\pgfplots@xmin@reg=\dimen265 -\pgfplots@xmax@reg=\dimen266 -\pgfplots@ymin@reg=\dimen267 -\pgfplots@ymax@reg=\dimen268 -\pgfplots@zmin@reg=\dimen269 -\pgfplots@zmax@reg=\dimen270 -) -(/usr/share/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrary -plotmarks.code.tex -File: tikzlibraryplotmarks.code.tex 2025-08-29 v3.1.11a (3.1.11a) - -(/usr/share/texmf-dist/tex/generic/pgf/libraries/pgflibraryplotmarks.code.tex -File: pgflibraryplotmarks.code.tex 2025-08-29 v3.1.11a (3.1.11a) -))) (/usr/share/texmf-dist/tex/latex/l3backend/l3backend-pdftex.def -File: l3backend-pdftex.def 2025-10-09 L3 backend support: PDF output (pdfTeX) -\l__color_backend_stack_int=\count311 -) -No file pgftest4.aux. -\openout1 = `pgftest4.aux'. - -LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 8. -LaTeX Font Info: ... okay on input line 8. -LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 8. -LaTeX Font Info: ... okay on input line 8. -LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 8. -LaTeX Font Info: ... okay on input line 8. -LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 8. -LaTeX Font Info: ... okay on input line 8. -LaTeX Font Info: Checking defaults for TS1/cmr/m/n on input line 8. -LaTeX Font Info: ... okay on input line 8. -LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 8. -LaTeX Font Info: ... okay on input line 8. -LaTeX Font Info: Checking defaults for U/cmr/m/n on input line 8. -LaTeX Font Info: ... okay on input line 8. -(/usr/share/texmf-dist/tex/context/base/mkii/supp-pdf.mkii -[Loading MPS to PDF converter (version 2006.09.02).] -\scratchcounter=\count312 -\scratchdimen=\dimen271 -\scratchbox=\box65 -\nofMPsegments=\count313 -\nofMParguments=\count314 -\everyMPshowfont=\toks34 -\MPscratchCnt=\count315 -\MPscratchDim=\dimen272 -\MPnumerator=\count316 -\makeMPintoPDFobject=\count317 -\everyMPtoPDFconversion=\toks35 -) (/usr/share/texmf-dist/tex/latex/epstopdf-pkg/epstopdf-base.sty -Package: epstopdf-base 2020-01-24 v2.11 Base part for package epstopdf -Package epstopdf-base Info: Redefining graphics rule for `.eps' on input line 4 -85. - -(/usr/share/texmf-dist/tex/latex/latexconfig/epstopdf-sys.cfg -File: epstopdf-sys.cfg 2010/07/13 v1.3 Configuration of (r)epstopdf for TeX Liv -e -)) -Package pgfplots notification 'compat/show suggested version=true': document ha -s been generated with the most recent feature set (\pgfplotsset{compat=1.18}). - -Package pgfplots info on input line 11: Using 'lua backend=false' for axis: x c -oord trafo unsupported. - -! Package pgfkeys Error: I do not know the key '/tikz/ymode', to which you pass -ed 'log', and I am going to ignore it. Perhaps you misspelled it. - -See the pgfkeys package documentation for explanation. -Type H for immediate help. - ... - -l.13 \end{axis} - -This error message was generated by an \errmessage -command, so I can't give any explicit help. -Pretend that you're Hercule Poirot: Examine all clues, -and deduce the truth by order and method. - -LaTeX Font Info: External font `cmex10' loaded for size -(Font) <7> on input line 13. -LaTeX Font Info: External font `cmex10' loaded for size -(Font) <5> on input line 13. -[1 - -{/var/lib/texmf/fonts/map/pdftex/updmap/pdftex.map}] (./pgftest4.aux) - *********** -LaTeX2e <2025-11-01> -L3 programming layer <2026-01-19> - *********** - ) -Here is how much of TeX's memory you used: - 22165 strings out of 469515 - 595598 string characters out of 5470808 - 1118992 words of memory out of 5000000 - 50519 multiletter control sequences out of 15000+600000 - 627721 words of font info for 40 fonts, out of 8000000 for 9000 - 14 hyphenation exceptions out of 8191 - 99i,9n,118p,734b,2073s stack positions out of 10000i,1000n,20000p,200000b,200000s - -Output written on pgftest4.pdf (1 page, 11971 bytes). -PDF statistics: - 16 PDF objects out of 1000 (max. 8388607) - 10 compressed objects within 1 object stream - 0 named destinations out of 1000 (max. 500000) - 13 words of extra memory for PDF output out of 10000 (max. 10000000) - diff --git a/paper/pgftest5.aux b/paper/pgftest5.aux deleted file mode 100644 index b640121..0000000 --- a/paper/pgftest5.aux +++ /dev/null @@ -1,2 +0,0 @@ -\relax -\gdef \@abspage@last{1} diff --git a/paper/pgftest5.log b/paper/pgftest5.log deleted file mode 100644 index 6f29213..0000000 --- a/paper/pgftest5.log +++ /dev/null @@ -1,497 +0,0 @@ -This is pdfTeX, Version 3.141592653-2.6-1.40.29 (TeX Live 2026/Arch Linux) (preloaded format=pdflatex 2026.3.6) 4 APR 2026 13:45 -entering extended mode - restricted \write18 enabled. - %&-line parsing enabled. -**/tmp/pgftest5.tex -(/tmp/pgftest5.tex -LaTeX2e <2025-11-01> -L3 programming layer <2026-01-19> -(/usr/share/texmf-dist/tex/latex/base/article.cls -Document Class: article 2025/01/22 v1.4n Standard LaTeX document class -(/usr/share/texmf-dist/tex/latex/base/size10.clo -File: size10.clo 2025/01/22 v1.4n Standard LaTeX file (size option) -) -\c@part=\count275 -\c@section=\count276 -\c@subsection=\count277 -\c@subsubsection=\count278 -\c@paragraph=\count279 -\c@subparagraph=\count280 -\c@figure=\count281 -\c@table=\count282 -\abovecaptionskip=\skip49 -\belowcaptionskip=\skip50 -\bibindent=\dimen148 -) -(/usr/share/texmf-dist/tex/latex/pgfplots/pgfplots.sty -(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplots.revision.tex) -Package: pgfplots 2025/08/14 v1.18.2 Data Visualization (1.18.2) - -(/usr/share/texmf-dist/tex/latex/graphics/graphicx.sty -Package: graphicx 2024/12/31 v1.2e Enhanced LaTeX Graphics (DPC,SPQR) - -(/usr/share/texmf-dist/tex/latex/graphics/keyval.sty -Package: keyval 2022/05/29 v1.15 key=value parser (DPC) -\KV@toks@=\toks17 -) -(/usr/share/texmf-dist/tex/latex/graphics/graphics.sty -Package: graphics 2024/08/06 v1.4g Standard LaTeX Graphics (DPC,SPQR) - -(/usr/share/texmf-dist/tex/latex/graphics/trig.sty -Package: trig 2023/12/02 v1.11 sin cos tan (DPC) -) -(/usr/share/texmf-dist/tex/latex/graphics-cfg/graphics.cfg -File: graphics.cfg 2016/06/04 v1.11 sample graphics configuration -) -Package graphics Info: Driver file: pdftex.def on input line 106. - -(/usr/share/texmf-dist/tex/latex/graphics-def/pdftex.def -File: pdftex.def 2025/09/29 v1.2d Graphics/color driver for pdftex -)) -\Gin@req@height=\dimen149 -\Gin@req@width=\dimen150 -) -(/usr/share/texmf-dist/tex/latex/pgf/frontendlayer/tikz.sty -(/usr/share/texmf-dist/tex/latex/pgf/basiclayer/pgf.sty -(/usr/share/texmf-dist/tex/latex/pgf/utilities/pgfrcs.sty -(/usr/share/texmf-dist/tex/generic/pgf/utilities/pgfutil-common.tex -\pgfutil@everybye=\toks18 -\pgfutil@tempdima=\dimen151 -\pgfutil@tempdimb=\dimen152 -) -(/usr/share/texmf-dist/tex/generic/pgf/utilities/pgfutil-latex.def -\pgfutil@abb=\box53 -) -(/usr/share/texmf-dist/tex/generic/pgf/utilities/pgfrcs.code.tex -(/usr/share/texmf-dist/tex/generic/pgf/pgf.revision.tex) -Package: pgfrcs 2025-08-29 v3.1.11a (3.1.11a) -)) -Package: pgf 2025-08-29 v3.1.11a (3.1.11a) - -(/usr/share/texmf-dist/tex/latex/pgf/basiclayer/pgfcore.sty -(/usr/share/texmf-dist/tex/latex/pgf/systemlayer/pgfsys.sty -(/usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgfsys.code.tex -Package: pgfsys 2025-08-29 v3.1.11a (3.1.11a) - -(/usr/share/texmf-dist/tex/generic/pgf/utilities/pgfkeys.code.tex -\pgfkeys@pathtoks=\toks19 -\pgfkeys@temptoks=\toks20 - -(/usr/share/texmf-dist/tex/generic/pgf/utilities/pgfkeyslibraryfiltered.code.te -x -\pgfkeys@tmptoks=\toks21 -)) -\pgf@x=\dimen153 -\pgf@y=\dimen154 -\pgf@xa=\dimen155 -\pgf@ya=\dimen156 -\pgf@xb=\dimen157 -\pgf@yb=\dimen158 -\pgf@xc=\dimen159 -\pgf@yc=\dimen160 -\pgf@xd=\dimen161 -\pgf@yd=\dimen162 -\w@pgf@writea=\write3 -\r@pgf@reada=\read2 -\c@pgf@counta=\count283 -\c@pgf@countb=\count284 -\c@pgf@countc=\count285 -\c@pgf@countd=\count286 -\t@pgf@toka=\toks22 -\t@pgf@tokb=\toks23 -\t@pgf@tokc=\toks24 -\pgf@sys@id@count=\count287 - (/usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgf.cfg -File: pgf.cfg 2025-08-29 v3.1.11a (3.1.11a) -) -Driver file for pgf: pgfsys-pdftex.def - -(/usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgfsys-pdftex.def -File: pgfsys-pdftex.def 2025-08-29 v3.1.11a (3.1.11a) - -(/usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgfsys-common-pdf.def -File: pgfsys-common-pdf.def 2025-08-29 v3.1.11a (3.1.11a) -))) -(/usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgfsyssoftpath.code.tex -File: pgfsyssoftpath.code.tex 2025-08-29 v3.1.11a (3.1.11a) -\pgfsyssoftpath@smallbuffer@items=\count288 -\pgfsyssoftpath@bigbuffer@items=\count289 -) -(/usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgfsysprotocol.code.tex -File: pgfsysprotocol.code.tex 2025-08-29 v3.1.11a (3.1.11a) -)) -(/usr/share/texmf-dist/tex/latex/xcolor/xcolor.sty -Package: xcolor 2024/09/29 v3.02 LaTeX color extensions (UK) - -(/usr/share/texmf-dist/tex/latex/graphics-cfg/color.cfg -File: color.cfg 2016/01/02 v1.6 sample color configuration -) -Package xcolor Info: Driver file: pdftex.def on input line 274. - -(/usr/share/texmf-dist/tex/latex/graphics/mathcolor.ltx) -Package xcolor Info: Model `cmy' substituted by `cmy0' on input line 1349. -Package xcolor Info: Model `hsb' substituted by `rgb' on input line 1353. -Package xcolor Info: Model `RGB' extended on input line 1365. -Package xcolor Info: Model `HTML' substituted by `rgb' on input line 1367. -Package xcolor Info: Model `Hsb' substituted by `hsb' on input line 1368. -Package xcolor Info: Model `tHsb' substituted by `hsb' on input line 1369. -Package xcolor Info: Model `HSB' substituted by `hsb' on input line 1370. -Package xcolor Info: Model `Gray' substituted by `gray' on input line 1371. -Package xcolor Info: Model `wave' substituted by `hsb' on input line 1372. -) -(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcore.code.tex -Package: pgfcore 2025-08-29 v3.1.11a (3.1.11a) - -(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmath.code.tex -(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathutil.code.tex) -(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathparser.code.tex -\pgfmath@dimen=\dimen163 -\pgfmath@count=\count290 -\pgfmath@box=\box54 -\pgfmath@toks=\toks25 -\pgfmath@stack@operand=\toks26 -\pgfmath@stack@operation=\toks27 -) -(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.code.tex) -(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.basic.code.tex) -(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.trigonometric.code -.tex) -(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.random.code.tex) -(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.comparison.code.te -x) (/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.base.code.tex) -(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.round.code.tex) -(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.misc.code.tex) -(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.integerarithmetics -.code.tex) (/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathcalc.code.tex) -(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfloat.code.tex -\c@pgfmathroundto@lastzeros=\count291 -)) -(/usr/share/texmf-dist/tex/generic/pgf/math/pgfint.code.tex) -(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepoints.code.tex -File: pgfcorepoints.code.tex 2025-08-29 v3.1.11a (3.1.11a) -\pgf@picminx=\dimen164 -\pgf@picmaxx=\dimen165 -\pgf@picminy=\dimen166 -\pgf@picmaxy=\dimen167 -\pgf@pathminx=\dimen168 -\pgf@pathmaxx=\dimen169 -\pgf@pathminy=\dimen170 -\pgf@pathmaxy=\dimen171 -\pgf@xx=\dimen172 -\pgf@xy=\dimen173 -\pgf@yx=\dimen174 -\pgf@yy=\dimen175 -\pgf@zx=\dimen176 -\pgf@zy=\dimen177 -) -(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathconstruct.code.tex -File: pgfcorepathconstruct.code.tex 2025-08-29 v3.1.11a (3.1.11a) -\pgf@path@lastx=\dimen178 -\pgf@path@lasty=\dimen179 -) (/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathusage.code.tex -File: pgfcorepathusage.code.tex 2025-08-29 v3.1.11a (3.1.11a) -\pgf@shorten@end@additional=\dimen180 -\pgf@shorten@start@additional=\dimen181 -) -(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorescopes.code.tex -File: pgfcorescopes.code.tex 2025-08-29 v3.1.11a (3.1.11a) -\pgfpic=\box55 -\pgf@hbox=\box56 -\pgf@layerbox@main=\box57 -\pgf@picture@serial@count=\count292 -) -(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoregraphicstate.code.tex -File: pgfcoregraphicstate.code.tex 2025-08-29 v3.1.11a (3.1.11a) -\pgflinewidth=\dimen182 -) -(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoretransformations.code.t -ex -File: pgfcoretransformations.code.tex 2025-08-29 v3.1.11a (3.1.11a) -\pgf@pt@x=\dimen183 -\pgf@pt@y=\dimen184 -\pgf@pt@temp=\dimen185 -) (/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorequick.code.tex -File: pgfcorequick.code.tex 2025-08-29 v3.1.11a (3.1.11a) -) -(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreobjects.code.tex -File: pgfcoreobjects.code.tex 2025-08-29 v3.1.11a (3.1.11a) -) -(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathprocessing.code.te -x -File: pgfcorepathprocessing.code.tex 2025-08-29 v3.1.11a (3.1.11a) -) (/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorearrows.code.tex -File: pgfcorearrows.code.tex 2025-08-29 v3.1.11a (3.1.11a) -\pgfarrowsep=\dimen186 -) -(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreshade.code.tex -File: pgfcoreshade.code.tex 2025-08-29 v3.1.11a (3.1.11a) -\pgf@max=\dimen187 -\pgf@sys@shading@range@num=\count293 -\pgf@shadingcount=\count294 -) -(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreimage.code.tex -File: pgfcoreimage.code.tex 2025-08-29 v3.1.11a (3.1.11a) -) -(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreexternal.code.tex -File: pgfcoreexternal.code.tex 2025-08-29 v3.1.11a (3.1.11a) -\pgfexternal@startupbox=\box58 -) -(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorelayers.code.tex -File: pgfcorelayers.code.tex 2025-08-29 v3.1.11a (3.1.11a) -) -(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoretransparency.code.tex -File: pgfcoretransparency.code.tex 2025-08-29 v3.1.11a (3.1.11a) -) (/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepatterns.code.tex -File: pgfcorepatterns.code.tex 2025-08-29 v3.1.11a (3.1.11a) -) -(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorerdf.code.tex -File: pgfcorerdf.code.tex 2025-08-29 v3.1.11a (3.1.11a) -))) -(/usr/share/texmf-dist/tex/generic/pgf/modules/pgfmoduleshapes.code.tex -File: pgfmoduleshapes.code.tex 2025-08-29 v3.1.11a (3.1.11a) -\pgfnodeparttextbox=\box59 -) -(/usr/share/texmf-dist/tex/generic/pgf/modules/pgfmoduleplot.code.tex -File: pgfmoduleplot.code.tex 2025-08-29 v3.1.11a (3.1.11a) -) -(/usr/share/texmf-dist/tex/latex/pgf/compatibility/pgfcomp-version-0-65.sty -Package: pgfcomp-version-0-65 2025-08-29 v3.1.11a (3.1.11a) -\pgf@nodesepstart=\dimen188 -\pgf@nodesepend=\dimen189 -) -(/usr/share/texmf-dist/tex/latex/pgf/compatibility/pgfcomp-version-1-18.sty -Package: pgfcomp-version-1-18 2025-08-29 v3.1.11a (3.1.11a) -)) -(/usr/share/texmf-dist/tex/latex/pgf/utilities/pgffor.sty -(/usr/share/texmf-dist/tex/latex/pgf/utilities/pgfkeys.sty -(/usr/share/texmf-dist/tex/generic/pgf/utilities/pgfkeys.code.tex)) -(/usr/share/texmf-dist/tex/latex/pgf/math/pgfmath.sty -(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmath.code.tex)) -(/usr/share/texmf-dist/tex/generic/pgf/utilities/pgffor.code.tex -Package: pgffor 2025-08-29 v3.1.11a (3.1.11a) -\pgffor@iter=\dimen190 -\pgffor@skip=\dimen191 -\pgffor@stack=\toks28 -\pgffor@toks=\toks29 -)) -(/usr/share/texmf-dist/tex/generic/pgf/frontendlayer/tikz/tikz.code.tex -Package: tikz 2025-08-29 v3.1.11a (3.1.11a) - -(/usr/share/texmf-dist/tex/generic/pgf/libraries/pgflibraryplothandlers.code.te -x -File: pgflibraryplothandlers.code.tex 2025-08-29 v3.1.11a (3.1.11a) -\pgf@plot@mark@count=\count295 -\pgfplotmarksize=\dimen192 -) -\tikz@lastx=\dimen193 -\tikz@lasty=\dimen194 -\tikz@lastxsaved=\dimen195 -\tikz@lastysaved=\dimen196 -\tikz@lastmovetox=\dimen197 -\tikz@lastmovetoy=\dimen198 -\tikzleveldistance=\dimen199 -\tikzsiblingdistance=\dimen256 -\tikz@figbox=\box60 -\tikz@figbox@bg=\box61 -\tikz@tempbox=\box62 -\tikz@tempbox@bg=\box63 -\tikztreelevel=\count296 -\tikznumberofchildren=\count297 -\tikznumberofcurrentchild=\count298 -\tikz@fig@count=\count299 - (/usr/share/texmf-dist/tex/generic/pgf/modules/pgfmodulematrix.code.tex -File: pgfmodulematrix.code.tex 2025-08-29 v3.1.11a (3.1.11a) -\pgfmatrixcurrentrow=\count300 -\pgfmatrixcurrentcolumn=\count301 -\pgf@matrix@numberofcolumns=\count302 -) -\tikz@expandcount=\count303 - -(/usr/share/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrary -topaths.code.tex -File: tikzlibrarytopaths.code.tex 2025-08-29 v3.1.11a (3.1.11a) -))) -(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplots.code.tex -(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplotscore.code.tex -\t@pgfplots@toka=\toks30 -\t@pgfplots@tokb=\toks31 -\t@pgfplots@tokc=\toks32 -\pgfplots@tmpa=\dimen257 -\c@pgfplots@coordindex=\count304 -\c@pgfplots@scanlineindex=\count305 - -(/usr/share/texmf-dist/tex/generic/pgfplots/sys/pgfplotssysgeneric.code.tex)) -(/usr/share/texmf-dist/tex/generic/pgfplots/libs/pgfplotslibrary.code.tex) -(/usr/share/texmf-dist/tex/generic/pgfplots/oldpgfcompatib/pgfplotsoldpgfsupp_l -oader.code.tex -(/usr/share/texmf-dist/tex/generic/pgf/libraries/pgflibraryfpu.code.tex) -(/usr/share/texmf-dist/tex/generic/pgfplots/oldpgfcompatib/pgfplotsoldpgfsupp_p -gfutil-common-lists.tex)) -(/usr/share/texmf-dist/tex/generic/pgfplots/util/pgfplotsutil.code.tex -(/usr/share/texmf-dist/tex/generic/pgfplots/liststructure/pgfplotsliststructure -.code.tex) -(/usr/share/texmf-dist/tex/generic/pgfplots/liststructure/pgfplotsliststructure -ext.code.tex) -(/usr/share/texmf-dist/tex/generic/pgfplots/liststructure/pgfplotsarray.code.te -x -\c@pgfplotsarray@tmp=\count306 -) -(/usr/share/texmf-dist/tex/generic/pgfplots/liststructure/pgfplotsmatrix.code.t -ex) -(/usr/share/texmf-dist/tex/generic/pgfplots/numtable/pgfplotstableshared.code.t -ex -\c@pgfplotstable@counta=\count307 -\t@pgfplotstable@a=\toks33 -) -(/usr/share/texmf-dist/tex/generic/pgfplots/liststructure/pgfplotsdeque.code.te -x) (/usr/share/texmf-dist/tex/generic/pgfplots/util/pgfplotsbinary.code.tex -(/usr/share/texmf-dist/tex/generic/pgfplots/util/pgfplotsbinary.data.code.tex)) -(/usr/share/texmf-dist/tex/generic/pgfplots/util/pgfplotsutil.verb.code.tex) -(/usr/share/texmf-dist/tex/generic/pgfplots/libs/pgflibrarypgfplots.surfshading -.code.tex -\c@pgfplotslibrarysurf@no=\count308 - -(/usr/share/texmf-dist/tex/generic/pgfplots/sys/pgflibrarypgfplots.surfshading. -pgfsys-pdftex.def))) -(/usr/share/texmf-dist/tex/generic/pgfplots/util/pgfplotscolormap.code.tex -(/usr/share/texmf-dist/tex/generic/pgfplots/util/pgfplotscolor.code.tex)) -(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplotsstackedplots.code.tex) -(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplotsplothandlers.code.tex -(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplotsmeshplothandler.code.tex -(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplotsmeshplotimage.code.tex))) -(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplots.scaling.code.tex) -(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplotscoordprocessing.code.tex) -(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplots.errorbars.code.tex) -(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplots.markers.code.tex) -(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplotsticks.code.tex) -(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplots.paths.code.tex) -(/usr/share/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrary -decorations.code.tex -(/usr/share/texmf-dist/tex/generic/pgf/modules/pgfmoduledecorations.code.tex -\pgfdecoratedcompleteddistance=\dimen258 -\pgfdecoratedremainingdistance=\dimen259 -\pgfdecoratedinputsegmentcompleteddistance=\dimen260 -\pgfdecoratedinputsegmentremainingdistance=\dimen261 -\pgf@decorate@distancetomove=\dimen262 -\pgf@decorate@repeatstate=\count309 -\pgfdecorationsegmentamplitude=\dimen263 -\pgfdecorationsegmentlength=\dimen264 -) -\tikz@lib@dec@box=\box64 -) -(/usr/share/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrary -decorations.pathmorphing.code.tex -(/usr/share/texmf-dist/tex/generic/pgf/libraries/decorations/pgflibrarydecorati -ons.pathmorphing.code.tex)) -(/usr/share/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrary -decorations.pathreplacing.code.tex -(/usr/share/texmf-dist/tex/generic/pgf/libraries/decorations/pgflibrarydecorati -ons.pathreplacing.code.tex)) -(/usr/share/texmf-dist/tex/generic/pgfplots/libs/tikzlibrarypgfplots.contourlua -.code.tex) -\pgfplots@numplots=\count310 -\pgfplots@xmin@reg=\dimen265 -\pgfplots@xmax@reg=\dimen266 -\pgfplots@ymin@reg=\dimen267 -\pgfplots@ymax@reg=\dimen268 -\pgfplots@zmin@reg=\dimen269 -\pgfplots@zmax@reg=\dimen270 -) -(/usr/share/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrary -plotmarks.code.tex -File: tikzlibraryplotmarks.code.tex 2025-08-29 v3.1.11a (3.1.11a) - -(/usr/share/texmf-dist/tex/generic/pgf/libraries/pgflibraryplotmarks.code.tex -File: pgflibraryplotmarks.code.tex 2025-08-29 v3.1.11a (3.1.11a) -))) (/usr/share/texmf-dist/tex/latex/l3backend/l3backend-pdftex.def -File: l3backend-pdftex.def 2025-10-09 L3 backend support: PDF output (pdfTeX) -\l__color_backend_stack_int=\count311 -) -No file pgftest5.aux. -\openout1 = `pgftest5.aux'. - -LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 13. -LaTeX Font Info: ... okay on input line 13. -LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 13. -LaTeX Font Info: ... okay on input line 13. -LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 13. -LaTeX Font Info: ... okay on input line 13. -LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 13. -LaTeX Font Info: ... okay on input line 13. -LaTeX Font Info: Checking defaults for TS1/cmr/m/n on input line 13. -LaTeX Font Info: ... okay on input line 13. -LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 13. -LaTeX Font Info: ... okay on input line 13. -LaTeX Font Info: Checking defaults for U/cmr/m/n on input line 13. -LaTeX Font Info: ... okay on input line 13. -(/usr/share/texmf-dist/tex/context/base/mkii/supp-pdf.mkii -[Loading MPS to PDF converter (version 2006.09.02).] -\scratchcounter=\count312 -\scratchdimen=\dimen271 -\scratchbox=\box65 -\nofMPsegments=\count313 -\nofMParguments=\count314 -\everyMPshowfont=\toks34 -\MPscratchCnt=\count315 -\MPscratchDim=\dimen272 -\MPnumerator=\count316 -\makeMPintoPDFobject=\count317 -\everyMPtoPDFconversion=\toks35 -) (/usr/share/texmf-dist/tex/latex/epstopdf-pkg/epstopdf-base.sty -Package: epstopdf-base 2020-01-24 v2.11 Base part for package epstopdf -Package epstopdf-base Info: Redefining graphics rule for `.eps' on input line 4 -85. - -(/usr/share/texmf-dist/tex/latex/latexconfig/epstopdf-sys.cfg -File: epstopdf-sys.cfg 2010/07/13 v1.3 Configuration of (r)epstopdf for TeX Liv -e -)) -Package pgfplots notification 'compat/show suggested version=true': document ha -s been generated with the most recent feature set (\pgfplotsset{compat=1.18}). - -Package pgfplots info on input line 16: Using 'lua backend=false' for axis: x c -oord trafo unsupported. - -! Package pgfkeys Error: I do not know the key '/tikz/ymode', to which you pass -ed 'log', and I am going to ignore it. Perhaps you misspelled it. - -See the pgfkeys package documentation for explanation. -Type H for immediate help. - ... - -l.18 \end{axis} - -This error message was generated by an \errmessage -command, so I can't give any explicit help. -Pretend that you're Hercule Poirot: Examine all clues, -and deduce the truth by order and method. - -LaTeX Font Info: External font `cmex10' loaded for size -(Font) <7> on input line 18. -LaTeX Font Info: External font `cmex10' loaded for size -(Font) <5> on input line 18. -[1 - -{/var/lib/texmf/fonts/map/pdftex/updmap/pdftex.map}] (./pgftest5.aux) - *********** -LaTeX2e <2025-11-01> -L3 programming layer <2026-01-19> - *********** - ) -Here is how much of TeX's memory you used: - 22168 strings out of 469515 - 595556 string characters out of 5470808 - 1118992 words of memory out of 5000000 - 50521 multiletter control sequences out of 15000+600000 - 628020 words of font info for 41 fonts, out of 8000000 for 9000 - 14 hyphenation exceptions out of 8191 - 99i,9n,118p,734b,2077s stack positions out of 10000i,1000n,20000p,200000b,200000s - -Output written on pgftest5.pdf (1 page, 19832 bytes). -PDF statistics: - 21 PDF objects out of 1000 (max. 8388607) - 13 compressed objects within 1 object stream - 0 named destinations out of 1000 (max. 500000) - 13 words of extra memory for PDF output out of 10000 (max. 10000000) - diff --git a/paper/pgftest6.aux b/paper/pgftest6.aux deleted file mode 100644 index b640121..0000000 --- a/paper/pgftest6.aux +++ /dev/null @@ -1,2 +0,0 @@ -\relax -\gdef \@abspage@last{1} diff --git a/paper/pgftest6.log b/paper/pgftest6.log deleted file mode 100644 index 3308417..0000000 --- a/paper/pgftest6.log +++ /dev/null @@ -1,496 +0,0 @@ -This is pdfTeX, Version 3.141592653-2.6-1.40.29 (TeX Live 2026/Arch Linux) (preloaded format=pdflatex 2026.3.6) 4 APR 2026 13:46 -entering extended mode - restricted \write18 enabled. - %&-line parsing enabled. -**/tmp/pgftest6.tex -(/tmp/pgftest6.tex -LaTeX2e <2025-11-01> -L3 programming layer <2026-01-19> -(/usr/share/texmf-dist/tex/latex/base/article.cls -Document Class: article 2025/01/22 v1.4n Standard LaTeX document class -(/usr/share/texmf-dist/tex/latex/base/size10.clo -File: size10.clo 2025/01/22 v1.4n Standard LaTeX file (size option) -) -\c@part=\count275 -\c@section=\count276 -\c@subsection=\count277 -\c@subsubsection=\count278 -\c@paragraph=\count279 -\c@subparagraph=\count280 -\c@figure=\count281 -\c@table=\count282 -\abovecaptionskip=\skip49 -\belowcaptionskip=\skip50 -\bibindent=\dimen148 -) -(/usr/share/texmf-dist/tex/latex/pgfplots/pgfplots.sty -(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplots.revision.tex) -Package: pgfplots 2025/08/14 v1.18.2 Data Visualization (1.18.2) - -(/usr/share/texmf-dist/tex/latex/graphics/graphicx.sty -Package: graphicx 2024/12/31 v1.2e Enhanced LaTeX Graphics (DPC,SPQR) - -(/usr/share/texmf-dist/tex/latex/graphics/keyval.sty -Package: keyval 2022/05/29 v1.15 key=value parser (DPC) -\KV@toks@=\toks17 -) -(/usr/share/texmf-dist/tex/latex/graphics/graphics.sty -Package: graphics 2024/08/06 v1.4g Standard LaTeX Graphics (DPC,SPQR) - -(/usr/share/texmf-dist/tex/latex/graphics/trig.sty -Package: trig 2023/12/02 v1.11 sin cos tan (DPC) -) -(/usr/share/texmf-dist/tex/latex/graphics-cfg/graphics.cfg -File: graphics.cfg 2016/06/04 v1.11 sample graphics configuration -) -Package graphics Info: Driver file: pdftex.def on input line 106. - -(/usr/share/texmf-dist/tex/latex/graphics-def/pdftex.def -File: pdftex.def 2025/09/29 v1.2d Graphics/color driver for pdftex -)) -\Gin@req@height=\dimen149 -\Gin@req@width=\dimen150 -) -(/usr/share/texmf-dist/tex/latex/pgf/frontendlayer/tikz.sty -(/usr/share/texmf-dist/tex/latex/pgf/basiclayer/pgf.sty -(/usr/share/texmf-dist/tex/latex/pgf/utilities/pgfrcs.sty -(/usr/share/texmf-dist/tex/generic/pgf/utilities/pgfutil-common.tex -\pgfutil@everybye=\toks18 -\pgfutil@tempdima=\dimen151 -\pgfutil@tempdimb=\dimen152 -) -(/usr/share/texmf-dist/tex/generic/pgf/utilities/pgfutil-latex.def -\pgfutil@abb=\box53 -) -(/usr/share/texmf-dist/tex/generic/pgf/utilities/pgfrcs.code.tex -(/usr/share/texmf-dist/tex/generic/pgf/pgf.revision.tex) -Package: pgfrcs 2025-08-29 v3.1.11a (3.1.11a) -)) -Package: pgf 2025-08-29 v3.1.11a (3.1.11a) - -(/usr/share/texmf-dist/tex/latex/pgf/basiclayer/pgfcore.sty -(/usr/share/texmf-dist/tex/latex/pgf/systemlayer/pgfsys.sty -(/usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgfsys.code.tex -Package: pgfsys 2025-08-29 v3.1.11a (3.1.11a) - -(/usr/share/texmf-dist/tex/generic/pgf/utilities/pgfkeys.code.tex -\pgfkeys@pathtoks=\toks19 -\pgfkeys@temptoks=\toks20 - -(/usr/share/texmf-dist/tex/generic/pgf/utilities/pgfkeyslibraryfiltered.code.te -x -\pgfkeys@tmptoks=\toks21 -)) -\pgf@x=\dimen153 -\pgf@y=\dimen154 -\pgf@xa=\dimen155 -\pgf@ya=\dimen156 -\pgf@xb=\dimen157 -\pgf@yb=\dimen158 -\pgf@xc=\dimen159 -\pgf@yc=\dimen160 -\pgf@xd=\dimen161 -\pgf@yd=\dimen162 -\w@pgf@writea=\write3 -\r@pgf@reada=\read2 -\c@pgf@counta=\count283 -\c@pgf@countb=\count284 -\c@pgf@countc=\count285 -\c@pgf@countd=\count286 -\t@pgf@toka=\toks22 -\t@pgf@tokb=\toks23 -\t@pgf@tokc=\toks24 -\pgf@sys@id@count=\count287 - (/usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgf.cfg -File: pgf.cfg 2025-08-29 v3.1.11a (3.1.11a) -) -Driver file for pgf: pgfsys-pdftex.def - -(/usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgfsys-pdftex.def -File: pgfsys-pdftex.def 2025-08-29 v3.1.11a (3.1.11a) - -(/usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgfsys-common-pdf.def -File: pgfsys-common-pdf.def 2025-08-29 v3.1.11a (3.1.11a) -))) -(/usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgfsyssoftpath.code.tex -File: pgfsyssoftpath.code.tex 2025-08-29 v3.1.11a (3.1.11a) -\pgfsyssoftpath@smallbuffer@items=\count288 -\pgfsyssoftpath@bigbuffer@items=\count289 -) -(/usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgfsysprotocol.code.tex -File: pgfsysprotocol.code.tex 2025-08-29 v3.1.11a (3.1.11a) -)) -(/usr/share/texmf-dist/tex/latex/xcolor/xcolor.sty -Package: xcolor 2024/09/29 v3.02 LaTeX color extensions (UK) - -(/usr/share/texmf-dist/tex/latex/graphics-cfg/color.cfg -File: color.cfg 2016/01/02 v1.6 sample color configuration -) -Package xcolor Info: Driver file: pdftex.def on input line 274. - -(/usr/share/texmf-dist/tex/latex/graphics/mathcolor.ltx) -Package xcolor Info: Model `cmy' substituted by `cmy0' on input line 1349. -Package xcolor Info: Model `hsb' substituted by `rgb' on input line 1353. -Package xcolor Info: Model `RGB' extended on input line 1365. -Package xcolor Info: Model `HTML' substituted by `rgb' on input line 1367. -Package xcolor Info: Model `Hsb' substituted by `hsb' on input line 1368. -Package xcolor Info: Model `tHsb' substituted by `hsb' on input line 1369. -Package xcolor Info: Model `HSB' substituted by `hsb' on input line 1370. -Package xcolor Info: Model `Gray' substituted by `gray' on input line 1371. -Package xcolor Info: Model `wave' substituted by `hsb' on input line 1372. -) -(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcore.code.tex -Package: pgfcore 2025-08-29 v3.1.11a (3.1.11a) - -(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmath.code.tex -(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathutil.code.tex) -(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathparser.code.tex -\pgfmath@dimen=\dimen163 -\pgfmath@count=\count290 -\pgfmath@box=\box54 -\pgfmath@toks=\toks25 -\pgfmath@stack@operand=\toks26 -\pgfmath@stack@operation=\toks27 -) -(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.code.tex) -(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.basic.code.tex) -(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.trigonometric.code -.tex) -(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.random.code.tex) -(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.comparison.code.te -x) (/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.base.code.tex) -(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.round.code.tex) -(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.misc.code.tex) -(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.integerarithmetics -.code.tex) (/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathcalc.code.tex) -(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfloat.code.tex -\c@pgfmathroundto@lastzeros=\count291 -)) -(/usr/share/texmf-dist/tex/generic/pgf/math/pgfint.code.tex) -(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepoints.code.tex -File: pgfcorepoints.code.tex 2025-08-29 v3.1.11a (3.1.11a) -\pgf@picminx=\dimen164 -\pgf@picmaxx=\dimen165 -\pgf@picminy=\dimen166 -\pgf@picmaxy=\dimen167 -\pgf@pathminx=\dimen168 -\pgf@pathmaxx=\dimen169 -\pgf@pathminy=\dimen170 -\pgf@pathmaxy=\dimen171 -\pgf@xx=\dimen172 -\pgf@xy=\dimen173 -\pgf@yx=\dimen174 -\pgf@yy=\dimen175 -\pgf@zx=\dimen176 -\pgf@zy=\dimen177 -) -(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathconstruct.code.tex -File: pgfcorepathconstruct.code.tex 2025-08-29 v3.1.11a (3.1.11a) -\pgf@path@lastx=\dimen178 -\pgf@path@lasty=\dimen179 -) (/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathusage.code.tex -File: pgfcorepathusage.code.tex 2025-08-29 v3.1.11a (3.1.11a) -\pgf@shorten@end@additional=\dimen180 -\pgf@shorten@start@additional=\dimen181 -) -(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorescopes.code.tex -File: pgfcorescopes.code.tex 2025-08-29 v3.1.11a (3.1.11a) -\pgfpic=\box55 -\pgf@hbox=\box56 -\pgf@layerbox@main=\box57 -\pgf@picture@serial@count=\count292 -) -(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoregraphicstate.code.tex -File: pgfcoregraphicstate.code.tex 2025-08-29 v3.1.11a (3.1.11a) -\pgflinewidth=\dimen182 -) -(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoretransformations.code.t -ex -File: pgfcoretransformations.code.tex 2025-08-29 v3.1.11a (3.1.11a) -\pgf@pt@x=\dimen183 -\pgf@pt@y=\dimen184 -\pgf@pt@temp=\dimen185 -) (/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorequick.code.tex -File: pgfcorequick.code.tex 2025-08-29 v3.1.11a (3.1.11a) -) -(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreobjects.code.tex -File: pgfcoreobjects.code.tex 2025-08-29 v3.1.11a (3.1.11a) -) -(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathprocessing.code.te -x -File: pgfcorepathprocessing.code.tex 2025-08-29 v3.1.11a (3.1.11a) -) (/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorearrows.code.tex -File: pgfcorearrows.code.tex 2025-08-29 v3.1.11a (3.1.11a) -\pgfarrowsep=\dimen186 -) -(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreshade.code.tex -File: pgfcoreshade.code.tex 2025-08-29 v3.1.11a (3.1.11a) -\pgf@max=\dimen187 -\pgf@sys@shading@range@num=\count293 -\pgf@shadingcount=\count294 -) -(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreimage.code.tex -File: pgfcoreimage.code.tex 2025-08-29 v3.1.11a (3.1.11a) -) -(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreexternal.code.tex -File: pgfcoreexternal.code.tex 2025-08-29 v3.1.11a (3.1.11a) -\pgfexternal@startupbox=\box58 -) -(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorelayers.code.tex -File: pgfcorelayers.code.tex 2025-08-29 v3.1.11a (3.1.11a) -) -(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoretransparency.code.tex -File: pgfcoretransparency.code.tex 2025-08-29 v3.1.11a (3.1.11a) -) (/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepatterns.code.tex -File: pgfcorepatterns.code.tex 2025-08-29 v3.1.11a (3.1.11a) -) -(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorerdf.code.tex -File: pgfcorerdf.code.tex 2025-08-29 v3.1.11a (3.1.11a) -))) -(/usr/share/texmf-dist/tex/generic/pgf/modules/pgfmoduleshapes.code.tex -File: pgfmoduleshapes.code.tex 2025-08-29 v3.1.11a (3.1.11a) -\pgfnodeparttextbox=\box59 -) -(/usr/share/texmf-dist/tex/generic/pgf/modules/pgfmoduleplot.code.tex -File: pgfmoduleplot.code.tex 2025-08-29 v3.1.11a (3.1.11a) -) -(/usr/share/texmf-dist/tex/latex/pgf/compatibility/pgfcomp-version-0-65.sty -Package: pgfcomp-version-0-65 2025-08-29 v3.1.11a (3.1.11a) -\pgf@nodesepstart=\dimen188 -\pgf@nodesepend=\dimen189 -) -(/usr/share/texmf-dist/tex/latex/pgf/compatibility/pgfcomp-version-1-18.sty -Package: pgfcomp-version-1-18 2025-08-29 v3.1.11a (3.1.11a) -)) -(/usr/share/texmf-dist/tex/latex/pgf/utilities/pgffor.sty -(/usr/share/texmf-dist/tex/latex/pgf/utilities/pgfkeys.sty -(/usr/share/texmf-dist/tex/generic/pgf/utilities/pgfkeys.code.tex)) -(/usr/share/texmf-dist/tex/latex/pgf/math/pgfmath.sty -(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmath.code.tex)) -(/usr/share/texmf-dist/tex/generic/pgf/utilities/pgffor.code.tex -Package: pgffor 2025-08-29 v3.1.11a (3.1.11a) -\pgffor@iter=\dimen190 -\pgffor@skip=\dimen191 -\pgffor@stack=\toks28 -\pgffor@toks=\toks29 -)) -(/usr/share/texmf-dist/tex/generic/pgf/frontendlayer/tikz/tikz.code.tex -Package: tikz 2025-08-29 v3.1.11a (3.1.11a) - -(/usr/share/texmf-dist/tex/generic/pgf/libraries/pgflibraryplothandlers.code.te -x -File: pgflibraryplothandlers.code.tex 2025-08-29 v3.1.11a (3.1.11a) -\pgf@plot@mark@count=\count295 -\pgfplotmarksize=\dimen192 -) -\tikz@lastx=\dimen193 -\tikz@lasty=\dimen194 -\tikz@lastxsaved=\dimen195 -\tikz@lastysaved=\dimen196 -\tikz@lastmovetox=\dimen197 -\tikz@lastmovetoy=\dimen198 -\tikzleveldistance=\dimen199 -\tikzsiblingdistance=\dimen256 -\tikz@figbox=\box60 -\tikz@figbox@bg=\box61 -\tikz@tempbox=\box62 -\tikz@tempbox@bg=\box63 -\tikztreelevel=\count296 -\tikznumberofchildren=\count297 -\tikznumberofcurrentchild=\count298 -\tikz@fig@count=\count299 - (/usr/share/texmf-dist/tex/generic/pgf/modules/pgfmodulematrix.code.tex -File: pgfmodulematrix.code.tex 2025-08-29 v3.1.11a (3.1.11a) -\pgfmatrixcurrentrow=\count300 -\pgfmatrixcurrentcolumn=\count301 -\pgf@matrix@numberofcolumns=\count302 -) -\tikz@expandcount=\count303 - -(/usr/share/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrary -topaths.code.tex -File: tikzlibrarytopaths.code.tex 2025-08-29 v3.1.11a (3.1.11a) -))) -(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplots.code.tex -(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplotscore.code.tex -\t@pgfplots@toka=\toks30 -\t@pgfplots@tokb=\toks31 -\t@pgfplots@tokc=\toks32 -\pgfplots@tmpa=\dimen257 -\c@pgfplots@coordindex=\count304 -\c@pgfplots@scanlineindex=\count305 - -(/usr/share/texmf-dist/tex/generic/pgfplots/sys/pgfplotssysgeneric.code.tex)) -(/usr/share/texmf-dist/tex/generic/pgfplots/libs/pgfplotslibrary.code.tex) -(/usr/share/texmf-dist/tex/generic/pgfplots/oldpgfcompatib/pgfplotsoldpgfsupp_l -oader.code.tex -(/usr/share/texmf-dist/tex/generic/pgf/libraries/pgflibraryfpu.code.tex) -(/usr/share/texmf-dist/tex/generic/pgfplots/oldpgfcompatib/pgfplotsoldpgfsupp_p -gfutil-common-lists.tex)) -(/usr/share/texmf-dist/tex/generic/pgfplots/util/pgfplotsutil.code.tex -(/usr/share/texmf-dist/tex/generic/pgfplots/liststructure/pgfplotsliststructure -.code.tex) -(/usr/share/texmf-dist/tex/generic/pgfplots/liststructure/pgfplotsliststructure -ext.code.tex) -(/usr/share/texmf-dist/tex/generic/pgfplots/liststructure/pgfplotsarray.code.te -x -\c@pgfplotsarray@tmp=\count306 -) -(/usr/share/texmf-dist/tex/generic/pgfplots/liststructure/pgfplotsmatrix.code.t -ex) -(/usr/share/texmf-dist/tex/generic/pgfplots/numtable/pgfplotstableshared.code.t -ex -\c@pgfplotstable@counta=\count307 -\t@pgfplotstable@a=\toks33 -) -(/usr/share/texmf-dist/tex/generic/pgfplots/liststructure/pgfplotsdeque.code.te -x) (/usr/share/texmf-dist/tex/generic/pgfplots/util/pgfplotsbinary.code.tex -(/usr/share/texmf-dist/tex/generic/pgfplots/util/pgfplotsbinary.data.code.tex)) -(/usr/share/texmf-dist/tex/generic/pgfplots/util/pgfplotsutil.verb.code.tex) -(/usr/share/texmf-dist/tex/generic/pgfplots/libs/pgflibrarypgfplots.surfshading -.code.tex -\c@pgfplotslibrarysurf@no=\count308 - -(/usr/share/texmf-dist/tex/generic/pgfplots/sys/pgflibrarypgfplots.surfshading. -pgfsys-pdftex.def))) -(/usr/share/texmf-dist/tex/generic/pgfplots/util/pgfplotscolormap.code.tex -(/usr/share/texmf-dist/tex/generic/pgfplots/util/pgfplotscolor.code.tex)) -(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplotsstackedplots.code.tex) -(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplotsplothandlers.code.tex -(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplotsmeshplothandler.code.tex -(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplotsmeshplotimage.code.tex))) -(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplots.scaling.code.tex) -(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplotscoordprocessing.code.tex) -(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplots.errorbars.code.tex) -(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplots.markers.code.tex) -(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplotsticks.code.tex) -(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplots.paths.code.tex) -(/usr/share/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrary -decorations.code.tex -(/usr/share/texmf-dist/tex/generic/pgf/modules/pgfmoduledecorations.code.tex -\pgfdecoratedcompleteddistance=\dimen258 -\pgfdecoratedremainingdistance=\dimen259 -\pgfdecoratedinputsegmentcompleteddistance=\dimen260 -\pgfdecoratedinputsegmentremainingdistance=\dimen261 -\pgf@decorate@distancetomove=\dimen262 -\pgf@decorate@repeatstate=\count309 -\pgfdecorationsegmentamplitude=\dimen263 -\pgfdecorationsegmentlength=\dimen264 -) -\tikz@lib@dec@box=\box64 -) -(/usr/share/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrary -decorations.pathmorphing.code.tex -(/usr/share/texmf-dist/tex/generic/pgf/libraries/decorations/pgflibrarydecorati -ons.pathmorphing.code.tex)) -(/usr/share/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrary -decorations.pathreplacing.code.tex -(/usr/share/texmf-dist/tex/generic/pgf/libraries/decorations/pgflibrarydecorati -ons.pathreplacing.code.tex)) -(/usr/share/texmf-dist/tex/generic/pgfplots/libs/tikzlibrarypgfplots.contourlua -.code.tex) -\pgfplots@numplots=\count310 -\pgfplots@xmin@reg=\dimen265 -\pgfplots@xmax@reg=\dimen266 -\pgfplots@ymin@reg=\dimen267 -\pgfplots@ymax@reg=\dimen268 -\pgfplots@zmin@reg=\dimen269 -\pgfplots@zmax@reg=\dimen270 -) -(/usr/share/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrary -plotmarks.code.tex -File: tikzlibraryplotmarks.code.tex 2025-08-29 v3.1.11a (3.1.11a) - -(/usr/share/texmf-dist/tex/generic/pgf/libraries/pgflibraryplotmarks.code.tex -File: pgflibraryplotmarks.code.tex 2025-08-29 v3.1.11a (3.1.11a) -))) (/usr/share/texmf-dist/tex/latex/l3backend/l3backend-pdftex.def -File: l3backend-pdftex.def 2025-10-09 L3 backend support: PDF output (pdfTeX) -\l__color_backend_stack_int=\count311 -) -No file pgftest6.aux. -\openout1 = `pgftest6.aux'. - -LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 7. -LaTeX Font Info: ... okay on input line 7. -LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 7. -LaTeX Font Info: ... okay on input line 7. -LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 7. -LaTeX Font Info: ... okay on input line 7. -LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 7. -LaTeX Font Info: ... okay on input line 7. -LaTeX Font Info: Checking defaults for TS1/cmr/m/n on input line 7. -LaTeX Font Info: ... okay on input line 7. -LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 7. -LaTeX Font Info: ... okay on input line 7. -LaTeX Font Info: Checking defaults for U/cmr/m/n on input line 7. -LaTeX Font Info: ... okay on input line 7. -(/usr/share/texmf-dist/tex/context/base/mkii/supp-pdf.mkii -[Loading MPS to PDF converter (version 2006.09.02).] -\scratchcounter=\count312 -\scratchdimen=\dimen271 -\scratchbox=\box65 -\nofMPsegments=\count313 -\nofMParguments=\count314 -\everyMPshowfont=\toks34 -\MPscratchCnt=\count315 -\MPscratchDim=\dimen272 -\MPnumerator=\count316 -\makeMPintoPDFobject=\count317 -\everyMPtoPDFconversion=\toks35 -) (/usr/share/texmf-dist/tex/latex/epstopdf-pkg/epstopdf-base.sty -Package: epstopdf-base 2020-01-24 v2.11 Base part for package epstopdf -Package epstopdf-base Info: Redefining graphics rule for `.eps' on input line 4 -85. - -(/usr/share/texmf-dist/tex/latex/latexconfig/epstopdf-sys.cfg -File: epstopdf-sys.cfg 2010/07/13 v1.3 Configuration of (r)epstopdf for TeX Liv -e -)) -Package pgfplots notification 'compat/show suggested version=true': document ha -s been generated with the most recent feature set (\pgfplotsset{compat=1.18}). - -Package pgfplots info on input line 10: Using 'lua backend=false' for axis: x c -oord trafo unsupported. - -! Package pgfkeys Error: I do not know the key '/tikz/ymode', to which you pass -ed 'log', and I am going to ignore it. Perhaps you misspelled it. - -See the pgfkeys package documentation for explanation. -Type H for immediate help. - ... - -l.12 \end{axis} - -This error message was generated by an \errmessage -command, so I can't give any explicit help. -Pretend that you're Hercule Poirot: Examine all clues, -and deduce the truth by order and method. - -LaTeX Font Info: External font `cmex10' loaded for size -(Font) <7> on input line 12. -LaTeX Font Info: External font `cmex10' loaded for size -(Font) <5> on input line 12. -[1 - -{/var/lib/texmf/fonts/map/pdftex/updmap/pdftex.map}] (./pgftest6.aux) - *********** -LaTeX2e <2025-11-01> -L3 programming layer <2026-01-19> - *********** - ) -Here is how much of TeX's memory you used: - 22165 strings out of 469515 - 595570 string characters out of 5470808 - 1119992 words of memory out of 5000000 - 50519 multiletter control sequences out of 15000+600000 - 627721 words of font info for 40 fonts, out of 8000000 for 9000 - 14 hyphenation exceptions out of 8191 - 99i,9n,118p,734b,2075s stack positions out of 10000i,1000n,20000p,200000b,200000s - -Output written on pgftest6.pdf (1 page, 11993 bytes). -PDF statistics: - 16 PDF objects out of 1000 (max. 8388607) - 10 compressed objects within 1 object stream - 0 named destinations out of 1000 (max. 500000) - 13 words of extra memory for PDF output out of 10000 (max. 10000000) - diff --git a/paper/pgftest7.aux b/paper/pgftest7.aux deleted file mode 100644 index b640121..0000000 --- a/paper/pgftest7.aux +++ /dev/null @@ -1,2 +0,0 @@ -\relax -\gdef \@abspage@last{1} diff --git a/paper/pgftest7.log b/paper/pgftest7.log deleted file mode 100644 index 029bbda..0000000 --- a/paper/pgftest7.log +++ /dev/null @@ -1,484 +0,0 @@ -This is pdfTeX, Version 3.141592653-2.6-1.40.29 (TeX Live 2026/Arch Linux) (preloaded format=pdflatex 2026.3.6) 4 APR 2026 13:46 -entering extended mode - restricted \write18 enabled. - %&-line parsing enabled. -**/tmp/pgftest7.tex -(/tmp/pgftest7.tex -LaTeX2e <2025-11-01> -L3 programming layer <2026-01-19> -(/usr/share/texmf-dist/tex/latex/base/article.cls -Document Class: article 2025/01/22 v1.4n Standard LaTeX document class -(/usr/share/texmf-dist/tex/latex/base/size10.clo -File: size10.clo 2025/01/22 v1.4n Standard LaTeX file (size option) -) -\c@part=\count275 -\c@section=\count276 -\c@subsection=\count277 -\c@subsubsection=\count278 -\c@paragraph=\count279 -\c@subparagraph=\count280 -\c@figure=\count281 -\c@table=\count282 -\abovecaptionskip=\skip49 -\belowcaptionskip=\skip50 -\bibindent=\dimen148 -) -(/usr/share/texmf-dist/tex/latex/pgfplots/pgfplots.sty -(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplots.revision.tex) -Package: pgfplots 2025/08/14 v1.18.2 Data Visualization (1.18.2) - -(/usr/share/texmf-dist/tex/latex/graphics/graphicx.sty -Package: graphicx 2024/12/31 v1.2e Enhanced LaTeX Graphics (DPC,SPQR) - -(/usr/share/texmf-dist/tex/latex/graphics/keyval.sty -Package: keyval 2022/05/29 v1.15 key=value parser (DPC) -\KV@toks@=\toks17 -) -(/usr/share/texmf-dist/tex/latex/graphics/graphics.sty -Package: graphics 2024/08/06 v1.4g Standard LaTeX Graphics (DPC,SPQR) - -(/usr/share/texmf-dist/tex/latex/graphics/trig.sty -Package: trig 2023/12/02 v1.11 sin cos tan (DPC) -) -(/usr/share/texmf-dist/tex/latex/graphics-cfg/graphics.cfg -File: graphics.cfg 2016/06/04 v1.11 sample graphics configuration -) -Package graphics Info: Driver file: pdftex.def on input line 106. - -(/usr/share/texmf-dist/tex/latex/graphics-def/pdftex.def -File: pdftex.def 2025/09/29 v1.2d Graphics/color driver for pdftex -)) -\Gin@req@height=\dimen149 -\Gin@req@width=\dimen150 -) -(/usr/share/texmf-dist/tex/latex/pgf/frontendlayer/tikz.sty -(/usr/share/texmf-dist/tex/latex/pgf/basiclayer/pgf.sty -(/usr/share/texmf-dist/tex/latex/pgf/utilities/pgfrcs.sty -(/usr/share/texmf-dist/tex/generic/pgf/utilities/pgfutil-common.tex -\pgfutil@everybye=\toks18 -\pgfutil@tempdima=\dimen151 -\pgfutil@tempdimb=\dimen152 -) -(/usr/share/texmf-dist/tex/generic/pgf/utilities/pgfutil-latex.def -\pgfutil@abb=\box53 -) -(/usr/share/texmf-dist/tex/generic/pgf/utilities/pgfrcs.code.tex -(/usr/share/texmf-dist/tex/generic/pgf/pgf.revision.tex) -Package: pgfrcs 2025-08-29 v3.1.11a (3.1.11a) -)) -Package: pgf 2025-08-29 v3.1.11a (3.1.11a) - -(/usr/share/texmf-dist/tex/latex/pgf/basiclayer/pgfcore.sty -(/usr/share/texmf-dist/tex/latex/pgf/systemlayer/pgfsys.sty -(/usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgfsys.code.tex -Package: pgfsys 2025-08-29 v3.1.11a (3.1.11a) - -(/usr/share/texmf-dist/tex/generic/pgf/utilities/pgfkeys.code.tex -\pgfkeys@pathtoks=\toks19 -\pgfkeys@temptoks=\toks20 - -(/usr/share/texmf-dist/tex/generic/pgf/utilities/pgfkeyslibraryfiltered.code.te -x -\pgfkeys@tmptoks=\toks21 -)) -\pgf@x=\dimen153 -\pgf@y=\dimen154 -\pgf@xa=\dimen155 -\pgf@ya=\dimen156 -\pgf@xb=\dimen157 -\pgf@yb=\dimen158 -\pgf@xc=\dimen159 -\pgf@yc=\dimen160 -\pgf@xd=\dimen161 -\pgf@yd=\dimen162 -\w@pgf@writea=\write3 -\r@pgf@reada=\read2 -\c@pgf@counta=\count283 -\c@pgf@countb=\count284 -\c@pgf@countc=\count285 -\c@pgf@countd=\count286 -\t@pgf@toka=\toks22 -\t@pgf@tokb=\toks23 -\t@pgf@tokc=\toks24 -\pgf@sys@id@count=\count287 - (/usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgf.cfg -File: pgf.cfg 2025-08-29 v3.1.11a (3.1.11a) -) -Driver file for pgf: pgfsys-pdftex.def - -(/usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgfsys-pdftex.def -File: pgfsys-pdftex.def 2025-08-29 v3.1.11a (3.1.11a) - -(/usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgfsys-common-pdf.def -File: pgfsys-common-pdf.def 2025-08-29 v3.1.11a (3.1.11a) -))) -(/usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgfsyssoftpath.code.tex -File: pgfsyssoftpath.code.tex 2025-08-29 v3.1.11a (3.1.11a) -\pgfsyssoftpath@smallbuffer@items=\count288 -\pgfsyssoftpath@bigbuffer@items=\count289 -) -(/usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgfsysprotocol.code.tex -File: pgfsysprotocol.code.tex 2025-08-29 v3.1.11a (3.1.11a) -)) -(/usr/share/texmf-dist/tex/latex/xcolor/xcolor.sty -Package: xcolor 2024/09/29 v3.02 LaTeX color extensions (UK) - -(/usr/share/texmf-dist/tex/latex/graphics-cfg/color.cfg -File: color.cfg 2016/01/02 v1.6 sample color configuration -) -Package xcolor Info: Driver file: pdftex.def on input line 274. - -(/usr/share/texmf-dist/tex/latex/graphics/mathcolor.ltx) -Package xcolor Info: Model `cmy' substituted by `cmy0' on input line 1349. -Package xcolor Info: Model `hsb' substituted by `rgb' on input line 1353. -Package xcolor Info: Model `RGB' extended on input line 1365. -Package xcolor Info: Model `HTML' substituted by `rgb' on input line 1367. -Package xcolor Info: Model `Hsb' substituted by `hsb' on input line 1368. -Package xcolor Info: Model `tHsb' substituted by `hsb' on input line 1369. -Package xcolor Info: Model `HSB' substituted by `hsb' on input line 1370. -Package xcolor Info: Model `Gray' substituted by `gray' on input line 1371. -Package xcolor Info: Model `wave' substituted by `hsb' on input line 1372. -) -(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcore.code.tex -Package: pgfcore 2025-08-29 v3.1.11a (3.1.11a) - -(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmath.code.tex -(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathutil.code.tex) -(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathparser.code.tex -\pgfmath@dimen=\dimen163 -\pgfmath@count=\count290 -\pgfmath@box=\box54 -\pgfmath@toks=\toks25 -\pgfmath@stack@operand=\toks26 -\pgfmath@stack@operation=\toks27 -) -(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.code.tex) -(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.basic.code.tex) -(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.trigonometric.code -.tex) -(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.random.code.tex) -(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.comparison.code.te -x) (/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.base.code.tex) -(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.round.code.tex) -(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.misc.code.tex) -(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.integerarithmetics -.code.tex) (/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathcalc.code.tex) -(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfloat.code.tex -\c@pgfmathroundto@lastzeros=\count291 -)) -(/usr/share/texmf-dist/tex/generic/pgf/math/pgfint.code.tex) -(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepoints.code.tex -File: pgfcorepoints.code.tex 2025-08-29 v3.1.11a (3.1.11a) -\pgf@picminx=\dimen164 -\pgf@picmaxx=\dimen165 -\pgf@picminy=\dimen166 -\pgf@picmaxy=\dimen167 -\pgf@pathminx=\dimen168 -\pgf@pathmaxx=\dimen169 -\pgf@pathminy=\dimen170 -\pgf@pathmaxy=\dimen171 -\pgf@xx=\dimen172 -\pgf@xy=\dimen173 -\pgf@yx=\dimen174 -\pgf@yy=\dimen175 -\pgf@zx=\dimen176 -\pgf@zy=\dimen177 -) -(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathconstruct.code.tex -File: pgfcorepathconstruct.code.tex 2025-08-29 v3.1.11a (3.1.11a) -\pgf@path@lastx=\dimen178 -\pgf@path@lasty=\dimen179 -) (/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathusage.code.tex -File: pgfcorepathusage.code.tex 2025-08-29 v3.1.11a (3.1.11a) -\pgf@shorten@end@additional=\dimen180 -\pgf@shorten@start@additional=\dimen181 -) -(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorescopes.code.tex -File: pgfcorescopes.code.tex 2025-08-29 v3.1.11a (3.1.11a) -\pgfpic=\box55 -\pgf@hbox=\box56 -\pgf@layerbox@main=\box57 -\pgf@picture@serial@count=\count292 -) -(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoregraphicstate.code.tex -File: pgfcoregraphicstate.code.tex 2025-08-29 v3.1.11a (3.1.11a) -\pgflinewidth=\dimen182 -) -(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoretransformations.code.t -ex -File: pgfcoretransformations.code.tex 2025-08-29 v3.1.11a (3.1.11a) -\pgf@pt@x=\dimen183 -\pgf@pt@y=\dimen184 -\pgf@pt@temp=\dimen185 -) (/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorequick.code.tex -File: pgfcorequick.code.tex 2025-08-29 v3.1.11a (3.1.11a) -) -(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreobjects.code.tex -File: pgfcoreobjects.code.tex 2025-08-29 v3.1.11a (3.1.11a) -) -(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathprocessing.code.te -x -File: pgfcorepathprocessing.code.tex 2025-08-29 v3.1.11a (3.1.11a) -) (/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorearrows.code.tex -File: pgfcorearrows.code.tex 2025-08-29 v3.1.11a (3.1.11a) -\pgfarrowsep=\dimen186 -) -(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreshade.code.tex -File: pgfcoreshade.code.tex 2025-08-29 v3.1.11a (3.1.11a) -\pgf@max=\dimen187 -\pgf@sys@shading@range@num=\count293 -\pgf@shadingcount=\count294 -) -(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreimage.code.tex -File: pgfcoreimage.code.tex 2025-08-29 v3.1.11a (3.1.11a) -) -(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreexternal.code.tex -File: pgfcoreexternal.code.tex 2025-08-29 v3.1.11a (3.1.11a) -\pgfexternal@startupbox=\box58 -) -(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorelayers.code.tex -File: pgfcorelayers.code.tex 2025-08-29 v3.1.11a (3.1.11a) -) -(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoretransparency.code.tex -File: pgfcoretransparency.code.tex 2025-08-29 v3.1.11a (3.1.11a) -) (/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepatterns.code.tex -File: pgfcorepatterns.code.tex 2025-08-29 v3.1.11a (3.1.11a) -) -(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorerdf.code.tex -File: pgfcorerdf.code.tex 2025-08-29 v3.1.11a (3.1.11a) -))) -(/usr/share/texmf-dist/tex/generic/pgf/modules/pgfmoduleshapes.code.tex -File: pgfmoduleshapes.code.tex 2025-08-29 v3.1.11a (3.1.11a) -\pgfnodeparttextbox=\box59 -) -(/usr/share/texmf-dist/tex/generic/pgf/modules/pgfmoduleplot.code.tex -File: pgfmoduleplot.code.tex 2025-08-29 v3.1.11a (3.1.11a) -) -(/usr/share/texmf-dist/tex/latex/pgf/compatibility/pgfcomp-version-0-65.sty -Package: pgfcomp-version-0-65 2025-08-29 v3.1.11a (3.1.11a) -\pgf@nodesepstart=\dimen188 -\pgf@nodesepend=\dimen189 -) -(/usr/share/texmf-dist/tex/latex/pgf/compatibility/pgfcomp-version-1-18.sty -Package: pgfcomp-version-1-18 2025-08-29 v3.1.11a (3.1.11a) -)) -(/usr/share/texmf-dist/tex/latex/pgf/utilities/pgffor.sty -(/usr/share/texmf-dist/tex/latex/pgf/utilities/pgfkeys.sty -(/usr/share/texmf-dist/tex/generic/pgf/utilities/pgfkeys.code.tex)) -(/usr/share/texmf-dist/tex/latex/pgf/math/pgfmath.sty -(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmath.code.tex)) -(/usr/share/texmf-dist/tex/generic/pgf/utilities/pgffor.code.tex -Package: pgffor 2025-08-29 v3.1.11a (3.1.11a) -\pgffor@iter=\dimen190 -\pgffor@skip=\dimen191 -\pgffor@stack=\toks28 -\pgffor@toks=\toks29 -)) -(/usr/share/texmf-dist/tex/generic/pgf/frontendlayer/tikz/tikz.code.tex -Package: tikz 2025-08-29 v3.1.11a (3.1.11a) - -(/usr/share/texmf-dist/tex/generic/pgf/libraries/pgflibraryplothandlers.code.te -x -File: pgflibraryplothandlers.code.tex 2025-08-29 v3.1.11a (3.1.11a) -\pgf@plot@mark@count=\count295 -\pgfplotmarksize=\dimen192 -) -\tikz@lastx=\dimen193 -\tikz@lasty=\dimen194 -\tikz@lastxsaved=\dimen195 -\tikz@lastysaved=\dimen196 -\tikz@lastmovetox=\dimen197 -\tikz@lastmovetoy=\dimen198 -\tikzleveldistance=\dimen199 -\tikzsiblingdistance=\dimen256 -\tikz@figbox=\box60 -\tikz@figbox@bg=\box61 -\tikz@tempbox=\box62 -\tikz@tempbox@bg=\box63 -\tikztreelevel=\count296 -\tikznumberofchildren=\count297 -\tikznumberofcurrentchild=\count298 -\tikz@fig@count=\count299 - (/usr/share/texmf-dist/tex/generic/pgf/modules/pgfmodulematrix.code.tex -File: pgfmodulematrix.code.tex 2025-08-29 v3.1.11a (3.1.11a) -\pgfmatrixcurrentrow=\count300 -\pgfmatrixcurrentcolumn=\count301 -\pgf@matrix@numberofcolumns=\count302 -) -\tikz@expandcount=\count303 - -(/usr/share/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrary -topaths.code.tex -File: tikzlibrarytopaths.code.tex 2025-08-29 v3.1.11a (3.1.11a) -))) -(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplots.code.tex -(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplotscore.code.tex -\t@pgfplots@toka=\toks30 -\t@pgfplots@tokb=\toks31 -\t@pgfplots@tokc=\toks32 -\pgfplots@tmpa=\dimen257 -\c@pgfplots@coordindex=\count304 -\c@pgfplots@scanlineindex=\count305 - -(/usr/share/texmf-dist/tex/generic/pgfplots/sys/pgfplotssysgeneric.code.tex)) -(/usr/share/texmf-dist/tex/generic/pgfplots/libs/pgfplotslibrary.code.tex) -(/usr/share/texmf-dist/tex/generic/pgfplots/oldpgfcompatib/pgfplotsoldpgfsupp_l -oader.code.tex -(/usr/share/texmf-dist/tex/generic/pgf/libraries/pgflibraryfpu.code.tex) -(/usr/share/texmf-dist/tex/generic/pgfplots/oldpgfcompatib/pgfplotsoldpgfsupp_p -gfutil-common-lists.tex)) -(/usr/share/texmf-dist/tex/generic/pgfplots/util/pgfplotsutil.code.tex -(/usr/share/texmf-dist/tex/generic/pgfplots/liststructure/pgfplotsliststructure -.code.tex) -(/usr/share/texmf-dist/tex/generic/pgfplots/liststructure/pgfplotsliststructure -ext.code.tex) -(/usr/share/texmf-dist/tex/generic/pgfplots/liststructure/pgfplotsarray.code.te -x -\c@pgfplotsarray@tmp=\count306 -) -(/usr/share/texmf-dist/tex/generic/pgfplots/liststructure/pgfplotsmatrix.code.t -ex) -(/usr/share/texmf-dist/tex/generic/pgfplots/numtable/pgfplotstableshared.code.t -ex -\c@pgfplotstable@counta=\count307 -\t@pgfplotstable@a=\toks33 -) -(/usr/share/texmf-dist/tex/generic/pgfplots/liststructure/pgfplotsdeque.code.te -x) (/usr/share/texmf-dist/tex/generic/pgfplots/util/pgfplotsbinary.code.tex -(/usr/share/texmf-dist/tex/generic/pgfplots/util/pgfplotsbinary.data.code.tex)) -(/usr/share/texmf-dist/tex/generic/pgfplots/util/pgfplotsutil.verb.code.tex) -(/usr/share/texmf-dist/tex/generic/pgfplots/libs/pgflibrarypgfplots.surfshading -.code.tex -\c@pgfplotslibrarysurf@no=\count308 - -(/usr/share/texmf-dist/tex/generic/pgfplots/sys/pgflibrarypgfplots.surfshading. -pgfsys-pdftex.def))) -(/usr/share/texmf-dist/tex/generic/pgfplots/util/pgfplotscolormap.code.tex -(/usr/share/texmf-dist/tex/generic/pgfplots/util/pgfplotscolor.code.tex)) -(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplotsstackedplots.code.tex) -(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplotsplothandlers.code.tex -(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplotsmeshplothandler.code.tex -(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplotsmeshplotimage.code.tex))) -(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplots.scaling.code.tex) -(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplotscoordprocessing.code.tex) -(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplots.errorbars.code.tex) -(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplots.markers.code.tex) -(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplotsticks.code.tex) -(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplots.paths.code.tex) -(/usr/share/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrary -decorations.code.tex -(/usr/share/texmf-dist/tex/generic/pgf/modules/pgfmoduledecorations.code.tex -\pgfdecoratedcompleteddistance=\dimen258 -\pgfdecoratedremainingdistance=\dimen259 -\pgfdecoratedinputsegmentcompleteddistance=\dimen260 -\pgfdecoratedinputsegmentremainingdistance=\dimen261 -\pgf@decorate@distancetomove=\dimen262 -\pgf@decorate@repeatstate=\count309 -\pgfdecorationsegmentamplitude=\dimen263 -\pgfdecorationsegmentlength=\dimen264 -) -\tikz@lib@dec@box=\box64 -) -(/usr/share/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrary -decorations.pathmorphing.code.tex -(/usr/share/texmf-dist/tex/generic/pgf/libraries/decorations/pgflibrarydecorati -ons.pathmorphing.code.tex)) -(/usr/share/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrary -decorations.pathreplacing.code.tex -(/usr/share/texmf-dist/tex/generic/pgf/libraries/decorations/pgflibrarydecorati -ons.pathreplacing.code.tex)) -(/usr/share/texmf-dist/tex/generic/pgfplots/libs/tikzlibrarypgfplots.contourlua -.code.tex) -\pgfplots@numplots=\count310 -\pgfplots@xmin@reg=\dimen265 -\pgfplots@xmax@reg=\dimen266 -\pgfplots@ymin@reg=\dimen267 -\pgfplots@ymax@reg=\dimen268 -\pgfplots@zmin@reg=\dimen269 -\pgfplots@zmax@reg=\dimen270 -) -(/usr/share/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrary -plotmarks.code.tex -File: tikzlibraryplotmarks.code.tex 2025-08-29 v3.1.11a (3.1.11a) - -(/usr/share/texmf-dist/tex/generic/pgf/libraries/pgflibraryplotmarks.code.tex -File: pgflibraryplotmarks.code.tex 2025-08-29 v3.1.11a (3.1.11a) -))) (/usr/share/texmf-dist/tex/latex/l3backend/l3backend-pdftex.def -File: l3backend-pdftex.def 2025-10-09 L3 backend support: PDF output (pdfTeX) -\l__color_backend_stack_int=\count311 -) -No file pgftest7.aux. -\openout1 = `pgftest7.aux'. - -LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 4. -LaTeX Font Info: ... okay on input line 4. -LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 4. -LaTeX Font Info: ... okay on input line 4. -LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 4. -LaTeX Font Info: ... okay on input line 4. -LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 4. -LaTeX Font Info: ... okay on input line 4. -LaTeX Font Info: Checking defaults for TS1/cmr/m/n on input line 4. -LaTeX Font Info: ... okay on input line 4. -LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 4. -LaTeX Font Info: ... okay on input line 4. -LaTeX Font Info: Checking defaults for U/cmr/m/n on input line 4. -LaTeX Font Info: ... okay on input line 4. -(/usr/share/texmf-dist/tex/context/base/mkii/supp-pdf.mkii -[Loading MPS to PDF converter (version 2006.09.02).] -\scratchcounter=\count312 -\scratchdimen=\dimen271 -\scratchbox=\box65 -\nofMPsegments=\count313 -\nofMParguments=\count314 -\everyMPshowfont=\toks34 -\MPscratchCnt=\count315 -\MPscratchDim=\dimen272 -\MPnumerator=\count316 -\makeMPintoPDFobject=\count317 -\everyMPtoPDFconversion=\toks35 -) (/usr/share/texmf-dist/tex/latex/epstopdf-pkg/epstopdf-base.sty -Package: epstopdf-base 2020-01-24 v2.11 Base part for package epstopdf -Package epstopdf-base Info: Redefining graphics rule for `.eps' on input line 4 -85. - -(/usr/share/texmf-dist/tex/latex/latexconfig/epstopdf-sys.cfg -File: epstopdf-sys.cfg 2010/07/13 v1.3 Configuration of (r)epstopdf for TeX Liv -e -)) -Package pgfplots notification 'compat/show suggested version=true': document ha -s been generated with the most recent feature set (\pgfplotsset{compat=1.18}). - -Package pgfplots info on input line 7: Using 'lua backend=false' for axis: ymod -e=log unsupported (yet). -Package pgfplots info on input line 7: Using 'lua backend=false' for axis: x co -ord trafo unsupported. -LaTeX Font Info: External font `cmex10' loaded for size -(Font) <7> on input line 9. -LaTeX Font Info: External font `cmex10' loaded for size -(Font) <5> on input line 9. -[1 - -{/var/lib/texmf/fonts/map/pdftex/updmap/pdftex.map}] (./pgftest7.aux) - *********** -LaTeX2e <2025-11-01> -L3 programming layer <2026-01-19> - *********** - ) -Here is how much of TeX's memory you used: - 22155 strings out of 469515 - 595347 string characters out of 5470808 - 1118992 words of memory out of 5000000 - 50509 multiletter control sequences out of 15000+600000 - 627721 words of font info for 40 fonts, out of 8000000 for 9000 - 14 hyphenation exceptions out of 8191 - 99i,9n,118p,734b,2054s stack positions out of 10000i,1000n,20000p,200000b,200000s - -Output written on pgftest7.pdf (1 page, 20071 bytes). -PDF statistics: - 21 PDF objects out of 1000 (max. 8388607) - 13 compressed objects within 1 object stream - 0 named destinations out of 1000 (max. 500000) - 13 words of extra memory for PDF output out of 10000 (max. 10000000) - diff --git a/paper/pgfver.aux b/paper/pgfver.aux deleted file mode 100644 index b640121..0000000 --- a/paper/pgfver.aux +++ /dev/null @@ -1,2 +0,0 @@ -\relax -\gdef \@abspage@last{1} diff --git a/paper/pgfver.log b/paper/pgfver.log deleted file mode 100644 index e49f9f0..0000000 --- a/paper/pgfver.log +++ /dev/null @@ -1,478 +0,0 @@ -This is pdfTeX, Version 3.141592653-2.6-1.40.29 (TeX Live 2026/Arch Linux) (preloaded format=pdflatex 2026.3.6) 4 APR 2026 13:30 -entering extended mode - restricted \write18 enabled. - %&-line parsing enabled. -**/tmp/pgfver.tex -(/tmp/pgfver.tex -LaTeX2e <2025-11-01> -L3 programming layer <2026-01-19> -(/usr/share/texmf-dist/tex/latex/base/article.cls -Document Class: article 2025/01/22 v1.4n Standard LaTeX document class -(/usr/share/texmf-dist/tex/latex/base/size10.clo -File: size10.clo 2025/01/22 v1.4n Standard LaTeX file (size option) -) -\c@part=\count275 -\c@section=\count276 -\c@subsection=\count277 -\c@subsubsection=\count278 -\c@paragraph=\count279 -\c@subparagraph=\count280 -\c@figure=\count281 -\c@table=\count282 -\abovecaptionskip=\skip49 -\belowcaptionskip=\skip50 -\bibindent=\dimen148 -) -(/usr/share/texmf-dist/tex/latex/pgfplots/pgfplots.sty -(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplots.revision.tex) -Package: pgfplots 2025/08/14 v1.18.2 Data Visualization (1.18.2) - -(/usr/share/texmf-dist/tex/latex/graphics/graphicx.sty -Package: graphicx 2024/12/31 v1.2e Enhanced LaTeX Graphics (DPC,SPQR) - -(/usr/share/texmf-dist/tex/latex/graphics/keyval.sty -Package: keyval 2022/05/29 v1.15 key=value parser (DPC) -\KV@toks@=\toks17 -) -(/usr/share/texmf-dist/tex/latex/graphics/graphics.sty -Package: graphics 2024/08/06 v1.4g Standard LaTeX Graphics (DPC,SPQR) - -(/usr/share/texmf-dist/tex/latex/graphics/trig.sty -Package: trig 2023/12/02 v1.11 sin cos tan (DPC) -) -(/usr/share/texmf-dist/tex/latex/graphics-cfg/graphics.cfg -File: graphics.cfg 2016/06/04 v1.11 sample graphics configuration -) -Package graphics Info: Driver file: pdftex.def on input line 106. - -(/usr/share/texmf-dist/tex/latex/graphics-def/pdftex.def -File: pdftex.def 2025/09/29 v1.2d Graphics/color driver for pdftex -)) -\Gin@req@height=\dimen149 -\Gin@req@width=\dimen150 -) -(/usr/share/texmf-dist/tex/latex/pgf/frontendlayer/tikz.sty -(/usr/share/texmf-dist/tex/latex/pgf/basiclayer/pgf.sty -(/usr/share/texmf-dist/tex/latex/pgf/utilities/pgfrcs.sty -(/usr/share/texmf-dist/tex/generic/pgf/utilities/pgfutil-common.tex -\pgfutil@everybye=\toks18 -\pgfutil@tempdima=\dimen151 -\pgfutil@tempdimb=\dimen152 -) -(/usr/share/texmf-dist/tex/generic/pgf/utilities/pgfutil-latex.def -\pgfutil@abb=\box53 -) -(/usr/share/texmf-dist/tex/generic/pgf/utilities/pgfrcs.code.tex -(/usr/share/texmf-dist/tex/generic/pgf/pgf.revision.tex) -Package: pgfrcs 2025-08-29 v3.1.11a (3.1.11a) -)) -Package: pgf 2025-08-29 v3.1.11a (3.1.11a) - -(/usr/share/texmf-dist/tex/latex/pgf/basiclayer/pgfcore.sty -(/usr/share/texmf-dist/tex/latex/pgf/systemlayer/pgfsys.sty -(/usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgfsys.code.tex -Package: pgfsys 2025-08-29 v3.1.11a (3.1.11a) - -(/usr/share/texmf-dist/tex/generic/pgf/utilities/pgfkeys.code.tex -\pgfkeys@pathtoks=\toks19 -\pgfkeys@temptoks=\toks20 - -(/usr/share/texmf-dist/tex/generic/pgf/utilities/pgfkeyslibraryfiltered.code.te -x -\pgfkeys@tmptoks=\toks21 -)) -\pgf@x=\dimen153 -\pgf@y=\dimen154 -\pgf@xa=\dimen155 -\pgf@ya=\dimen156 -\pgf@xb=\dimen157 -\pgf@yb=\dimen158 -\pgf@xc=\dimen159 -\pgf@yc=\dimen160 -\pgf@xd=\dimen161 -\pgf@yd=\dimen162 -\w@pgf@writea=\write3 -\r@pgf@reada=\read2 -\c@pgf@counta=\count283 -\c@pgf@countb=\count284 -\c@pgf@countc=\count285 -\c@pgf@countd=\count286 -\t@pgf@toka=\toks22 -\t@pgf@tokb=\toks23 -\t@pgf@tokc=\toks24 -\pgf@sys@id@count=\count287 - (/usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgf.cfg -File: pgf.cfg 2025-08-29 v3.1.11a (3.1.11a) -) -Driver file for pgf: pgfsys-pdftex.def - -(/usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgfsys-pdftex.def -File: pgfsys-pdftex.def 2025-08-29 v3.1.11a (3.1.11a) - -(/usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgfsys-common-pdf.def -File: pgfsys-common-pdf.def 2025-08-29 v3.1.11a (3.1.11a) -))) -(/usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgfsyssoftpath.code.tex -File: pgfsyssoftpath.code.tex 2025-08-29 v3.1.11a (3.1.11a) -\pgfsyssoftpath@smallbuffer@items=\count288 -\pgfsyssoftpath@bigbuffer@items=\count289 -) -(/usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgfsysprotocol.code.tex -File: pgfsysprotocol.code.tex 2025-08-29 v3.1.11a (3.1.11a) -)) -(/usr/share/texmf-dist/tex/latex/xcolor/xcolor.sty -Package: xcolor 2024/09/29 v3.02 LaTeX color extensions (UK) - -(/usr/share/texmf-dist/tex/latex/graphics-cfg/color.cfg -File: color.cfg 2016/01/02 v1.6 sample color configuration -) -Package xcolor Info: Driver file: pdftex.def on input line 274. - -(/usr/share/texmf-dist/tex/latex/graphics/mathcolor.ltx) -Package xcolor Info: Model `cmy' substituted by `cmy0' on input line 1349. -Package xcolor Info: Model `hsb' substituted by `rgb' on input line 1353. -Package xcolor Info: Model `RGB' extended on input line 1365. -Package xcolor Info: Model `HTML' substituted by `rgb' on input line 1367. -Package xcolor Info: Model `Hsb' substituted by `hsb' on input line 1368. -Package xcolor Info: Model `tHsb' substituted by `hsb' on input line 1369. -Package xcolor Info: Model `HSB' substituted by `hsb' on input line 1370. -Package xcolor Info: Model `Gray' substituted by `gray' on input line 1371. -Package xcolor Info: Model `wave' substituted by `hsb' on input line 1372. -) -(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcore.code.tex -Package: pgfcore 2025-08-29 v3.1.11a (3.1.11a) - -(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmath.code.tex -(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathutil.code.tex) -(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathparser.code.tex -\pgfmath@dimen=\dimen163 -\pgfmath@count=\count290 -\pgfmath@box=\box54 -\pgfmath@toks=\toks25 -\pgfmath@stack@operand=\toks26 -\pgfmath@stack@operation=\toks27 -) -(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.code.tex) -(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.basic.code.tex) -(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.trigonometric.code -.tex) -(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.random.code.tex) -(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.comparison.code.te -x) (/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.base.code.tex) -(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.round.code.tex) -(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.misc.code.tex) -(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.integerarithmetics -.code.tex) (/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathcalc.code.tex) -(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfloat.code.tex -\c@pgfmathroundto@lastzeros=\count291 -)) -(/usr/share/texmf-dist/tex/generic/pgf/math/pgfint.code.tex) -(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepoints.code.tex -File: pgfcorepoints.code.tex 2025-08-29 v3.1.11a (3.1.11a) -\pgf@picminx=\dimen164 -\pgf@picmaxx=\dimen165 -\pgf@picminy=\dimen166 -\pgf@picmaxy=\dimen167 -\pgf@pathminx=\dimen168 -\pgf@pathmaxx=\dimen169 -\pgf@pathminy=\dimen170 -\pgf@pathmaxy=\dimen171 -\pgf@xx=\dimen172 -\pgf@xy=\dimen173 -\pgf@yx=\dimen174 -\pgf@yy=\dimen175 -\pgf@zx=\dimen176 -\pgf@zy=\dimen177 -) -(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathconstruct.code.tex -File: pgfcorepathconstruct.code.tex 2025-08-29 v3.1.11a (3.1.11a) -\pgf@path@lastx=\dimen178 -\pgf@path@lasty=\dimen179 -) (/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathusage.code.tex -File: pgfcorepathusage.code.tex 2025-08-29 v3.1.11a (3.1.11a) -\pgf@shorten@end@additional=\dimen180 -\pgf@shorten@start@additional=\dimen181 -) -(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorescopes.code.tex -File: pgfcorescopes.code.tex 2025-08-29 v3.1.11a (3.1.11a) -\pgfpic=\box55 -\pgf@hbox=\box56 -\pgf@layerbox@main=\box57 -\pgf@picture@serial@count=\count292 -) -(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoregraphicstate.code.tex -File: pgfcoregraphicstate.code.tex 2025-08-29 v3.1.11a (3.1.11a) -\pgflinewidth=\dimen182 -) -(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoretransformations.code.t -ex -File: pgfcoretransformations.code.tex 2025-08-29 v3.1.11a (3.1.11a) -\pgf@pt@x=\dimen183 -\pgf@pt@y=\dimen184 -\pgf@pt@temp=\dimen185 -) (/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorequick.code.tex -File: pgfcorequick.code.tex 2025-08-29 v3.1.11a (3.1.11a) -) -(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreobjects.code.tex -File: pgfcoreobjects.code.tex 2025-08-29 v3.1.11a (3.1.11a) -) -(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathprocessing.code.te -x -File: pgfcorepathprocessing.code.tex 2025-08-29 v3.1.11a (3.1.11a) -) (/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorearrows.code.tex -File: pgfcorearrows.code.tex 2025-08-29 v3.1.11a (3.1.11a) -\pgfarrowsep=\dimen186 -) -(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreshade.code.tex -File: pgfcoreshade.code.tex 2025-08-29 v3.1.11a (3.1.11a) -\pgf@max=\dimen187 -\pgf@sys@shading@range@num=\count293 -\pgf@shadingcount=\count294 -) -(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreimage.code.tex -File: pgfcoreimage.code.tex 2025-08-29 v3.1.11a (3.1.11a) -) -(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreexternal.code.tex -File: pgfcoreexternal.code.tex 2025-08-29 v3.1.11a (3.1.11a) -\pgfexternal@startupbox=\box58 -) -(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorelayers.code.tex -File: pgfcorelayers.code.tex 2025-08-29 v3.1.11a (3.1.11a) -) -(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoretransparency.code.tex -File: pgfcoretransparency.code.tex 2025-08-29 v3.1.11a (3.1.11a) -) (/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepatterns.code.tex -File: pgfcorepatterns.code.tex 2025-08-29 v3.1.11a (3.1.11a) -) -(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorerdf.code.tex -File: pgfcorerdf.code.tex 2025-08-29 v3.1.11a (3.1.11a) -))) -(/usr/share/texmf-dist/tex/generic/pgf/modules/pgfmoduleshapes.code.tex -File: pgfmoduleshapes.code.tex 2025-08-29 v3.1.11a (3.1.11a) -\pgfnodeparttextbox=\box59 -) -(/usr/share/texmf-dist/tex/generic/pgf/modules/pgfmoduleplot.code.tex -File: pgfmoduleplot.code.tex 2025-08-29 v3.1.11a (3.1.11a) -) -(/usr/share/texmf-dist/tex/latex/pgf/compatibility/pgfcomp-version-0-65.sty -Package: pgfcomp-version-0-65 2025-08-29 v3.1.11a (3.1.11a) -\pgf@nodesepstart=\dimen188 -\pgf@nodesepend=\dimen189 -) -(/usr/share/texmf-dist/tex/latex/pgf/compatibility/pgfcomp-version-1-18.sty -Package: pgfcomp-version-1-18 2025-08-29 v3.1.11a (3.1.11a) -)) -(/usr/share/texmf-dist/tex/latex/pgf/utilities/pgffor.sty -(/usr/share/texmf-dist/tex/latex/pgf/utilities/pgfkeys.sty -(/usr/share/texmf-dist/tex/generic/pgf/utilities/pgfkeys.code.tex)) -(/usr/share/texmf-dist/tex/latex/pgf/math/pgfmath.sty -(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmath.code.tex)) -(/usr/share/texmf-dist/tex/generic/pgf/utilities/pgffor.code.tex -Package: pgffor 2025-08-29 v3.1.11a (3.1.11a) -\pgffor@iter=\dimen190 -\pgffor@skip=\dimen191 -\pgffor@stack=\toks28 -\pgffor@toks=\toks29 -)) -(/usr/share/texmf-dist/tex/generic/pgf/frontendlayer/tikz/tikz.code.tex -Package: tikz 2025-08-29 v3.1.11a (3.1.11a) - -(/usr/share/texmf-dist/tex/generic/pgf/libraries/pgflibraryplothandlers.code.te -x -File: pgflibraryplothandlers.code.tex 2025-08-29 v3.1.11a (3.1.11a) -\pgf@plot@mark@count=\count295 -\pgfplotmarksize=\dimen192 -) -\tikz@lastx=\dimen193 -\tikz@lasty=\dimen194 -\tikz@lastxsaved=\dimen195 -\tikz@lastysaved=\dimen196 -\tikz@lastmovetox=\dimen197 -\tikz@lastmovetoy=\dimen198 -\tikzleveldistance=\dimen199 -\tikzsiblingdistance=\dimen256 -\tikz@figbox=\box60 -\tikz@figbox@bg=\box61 -\tikz@tempbox=\box62 -\tikz@tempbox@bg=\box63 -\tikztreelevel=\count296 -\tikznumberofchildren=\count297 -\tikznumberofcurrentchild=\count298 -\tikz@fig@count=\count299 - (/usr/share/texmf-dist/tex/generic/pgf/modules/pgfmodulematrix.code.tex -File: pgfmodulematrix.code.tex 2025-08-29 v3.1.11a (3.1.11a) -\pgfmatrixcurrentrow=\count300 -\pgfmatrixcurrentcolumn=\count301 -\pgf@matrix@numberofcolumns=\count302 -) -\tikz@expandcount=\count303 - -(/usr/share/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrary -topaths.code.tex -File: tikzlibrarytopaths.code.tex 2025-08-29 v3.1.11a (3.1.11a) -))) -(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplots.code.tex -(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplotscore.code.tex -\t@pgfplots@toka=\toks30 -\t@pgfplots@tokb=\toks31 -\t@pgfplots@tokc=\toks32 -\pgfplots@tmpa=\dimen257 -\c@pgfplots@coordindex=\count304 -\c@pgfplots@scanlineindex=\count305 - -(/usr/share/texmf-dist/tex/generic/pgfplots/sys/pgfplotssysgeneric.code.tex)) -(/usr/share/texmf-dist/tex/generic/pgfplots/libs/pgfplotslibrary.code.tex) -(/usr/share/texmf-dist/tex/generic/pgfplots/oldpgfcompatib/pgfplotsoldpgfsupp_l -oader.code.tex -(/usr/share/texmf-dist/tex/generic/pgf/libraries/pgflibraryfpu.code.tex) -(/usr/share/texmf-dist/tex/generic/pgfplots/oldpgfcompatib/pgfplotsoldpgfsupp_p -gfutil-common-lists.tex)) -(/usr/share/texmf-dist/tex/generic/pgfplots/util/pgfplotsutil.code.tex -(/usr/share/texmf-dist/tex/generic/pgfplots/liststructure/pgfplotsliststructure -.code.tex) -(/usr/share/texmf-dist/tex/generic/pgfplots/liststructure/pgfplotsliststructure -ext.code.tex) -(/usr/share/texmf-dist/tex/generic/pgfplots/liststructure/pgfplotsarray.code.te -x -\c@pgfplotsarray@tmp=\count306 -) -(/usr/share/texmf-dist/tex/generic/pgfplots/liststructure/pgfplotsmatrix.code.t -ex) -(/usr/share/texmf-dist/tex/generic/pgfplots/numtable/pgfplotstableshared.code.t -ex -\c@pgfplotstable@counta=\count307 -\t@pgfplotstable@a=\toks33 -) -(/usr/share/texmf-dist/tex/generic/pgfplots/liststructure/pgfplotsdeque.code.te -x) (/usr/share/texmf-dist/tex/generic/pgfplots/util/pgfplotsbinary.code.tex -(/usr/share/texmf-dist/tex/generic/pgfplots/util/pgfplotsbinary.data.code.tex)) -(/usr/share/texmf-dist/tex/generic/pgfplots/util/pgfplotsutil.verb.code.tex) -(/usr/share/texmf-dist/tex/generic/pgfplots/libs/pgflibrarypgfplots.surfshading -.code.tex -\c@pgfplotslibrarysurf@no=\count308 - -(/usr/share/texmf-dist/tex/generic/pgfplots/sys/pgflibrarypgfplots.surfshading. -pgfsys-pdftex.def))) -(/usr/share/texmf-dist/tex/generic/pgfplots/util/pgfplotscolormap.code.tex -(/usr/share/texmf-dist/tex/generic/pgfplots/util/pgfplotscolor.code.tex)) -(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplotsstackedplots.code.tex) -(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplotsplothandlers.code.tex -(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplotsmeshplothandler.code.tex -(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplotsmeshplotimage.code.tex))) -(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplots.scaling.code.tex) -(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplotscoordprocessing.code.tex) -(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplots.errorbars.code.tex) -(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplots.markers.code.tex) -(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplotsticks.code.tex) -(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplots.paths.code.tex) -(/usr/share/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrary -decorations.code.tex -(/usr/share/texmf-dist/tex/generic/pgf/modules/pgfmoduledecorations.code.tex -\pgfdecoratedcompleteddistance=\dimen258 -\pgfdecoratedremainingdistance=\dimen259 -\pgfdecoratedinputsegmentcompleteddistance=\dimen260 -\pgfdecoratedinputsegmentremainingdistance=\dimen261 -\pgf@decorate@distancetomove=\dimen262 -\pgf@decorate@repeatstate=\count309 -\pgfdecorationsegmentamplitude=\dimen263 -\pgfdecorationsegmentlength=\dimen264 -) -\tikz@lib@dec@box=\box64 -) -(/usr/share/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrary -decorations.pathmorphing.code.tex -(/usr/share/texmf-dist/tex/generic/pgf/libraries/decorations/pgflibrarydecorati -ons.pathmorphing.code.tex)) -(/usr/share/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrary -decorations.pathreplacing.code.tex -(/usr/share/texmf-dist/tex/generic/pgf/libraries/decorations/pgflibrarydecorati -ons.pathreplacing.code.tex)) -(/usr/share/texmf-dist/tex/generic/pgfplots/libs/tikzlibrarypgfplots.contourlua -.code.tex) -\pgfplots@numplots=\count310 -\pgfplots@xmin@reg=\dimen265 -\pgfplots@xmax@reg=\dimen266 -\pgfplots@ymin@reg=\dimen267 -\pgfplots@ymax@reg=\dimen268 -\pgfplots@zmin@reg=\dimen269 -\pgfplots@zmax@reg=\dimen270 -) -(/usr/share/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrary -plotmarks.code.tex -File: tikzlibraryplotmarks.code.tex 2025-08-29 v3.1.11a (3.1.11a) - -(/usr/share/texmf-dist/tex/generic/pgf/libraries/pgflibraryplotmarks.code.tex -File: pgflibraryplotmarks.code.tex 2025-08-29 v3.1.11a (3.1.11a) -))) (/usr/share/texmf-dist/tex/latex/l3backend/l3backend-pdftex.def -File: l3backend-pdftex.def 2025-10-09 L3 backend support: PDF output (pdfTeX) -\l__color_backend_stack_int=\count311 -) -No file pgfver.aux. -\openout1 = `pgfver.aux'. - -LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 3. -LaTeX Font Info: ... okay on input line 3. -LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 3. -LaTeX Font Info: ... okay on input line 3. -LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 3. -LaTeX Font Info: ... okay on input line 3. -LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 3. -LaTeX Font Info: ... okay on input line 3. -LaTeX Font Info: Checking defaults for TS1/cmr/m/n on input line 3. -LaTeX Font Info: ... okay on input line 3. -LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 3. -LaTeX Font Info: ... okay on input line 3. -LaTeX Font Info: Checking defaults for U/cmr/m/n on input line 3. -LaTeX Font Info: ... okay on input line 3. -(/usr/share/texmf-dist/tex/context/base/mkii/supp-pdf.mkii -[Loading MPS to PDF converter (version 2006.09.02).] -\scratchcounter=\count312 -\scratchdimen=\dimen271 -\scratchbox=\box65 -\nofMPsegments=\count313 -\nofMParguments=\count314 -\everyMPshowfont=\toks34 -\MPscratchCnt=\count315 -\MPscratchDim=\dimen272 -\MPnumerator=\count316 -\makeMPintoPDFobject=\count317 -\everyMPtoPDFconversion=\toks35 -) (/usr/share/texmf-dist/tex/latex/epstopdf-pkg/epstopdf-base.sty -Package: epstopdf-base 2020-01-24 v2.11 Base part for package epstopdf -Package epstopdf-base Info: Redefining graphics rule for `.eps' on input line 4 -85. - -(/usr/share/texmf-dist/tex/latex/latexconfig/epstopdf-sys.cfg -File: epstopdf-sys.cfg 2010/07/13 v1.3 Configuration of (r)epstopdf for TeX Liv -e -)) - -Package pgfplots Warning: running in backwards compatibility mode (unsuitable t -ick labels; missing features). Consider writing \pgfplotsset{compat=1.18} into -your preamble. - on input line 3. - -[1 - -{/var/lib/texmf/fonts/map/pdftex/updmap/pdftex.map}] (./pgfver.aux) - *********** -LaTeX2e <2025-11-01> -L3 programming layer <2026-01-19> - *********** - ) -Here is how much of TeX's memory you used: - 21675 strings out of 469515 - 581684 string characters out of 5470808 - 1115990 words of memory out of 5000000 - 50029 multiletter control sequences out of 15000+600000 - 627721 words of font info for 40 fonts, out of 8000000 for 9000 - 14 hyphenation exceptions out of 8191 - 99i,5n,118p,723b,273s stack positions out of 10000i,1000n,20000p,200000b,200000s - -Output written on pgfver.pdf (1 page, 14227 bytes). -PDF statistics: - 16 PDF objects out of 1000 (max. 8388607) - 10 compressed objects within 1 object stream - 0 named destinations out of 1000 (max. 500000) - 13 words of extra memory for PDF output out of 10000 (max. 10000000) - diff --git a/pyproject.toml b/pyproject.toml index 28ffa24..ce26259 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,16 +5,19 @@ description = "Build-time tooling for levineuwirth.org" requires-python = ">=3.12" dependencies = [ # Visualization - "matplotlib>=3.9", - "altair>=5.4", + "matplotlib>=3.9,<4", + "altair>=5.4,<6", # Embedding pipeline - "sentence-transformers>=3.4", - "faiss-cpu>=1.9", - "numpy>=2.0", - "beautifulsoup4>=4.12", + # Upper bounds are intentionally generous (next major) but always + # present so that an unrelated `uv sync` upgrade can't silently pull + # an API-breaking 4.x release. Bump deliberately when validating. + "sentence-transformers>=3.4,<4", + "faiss-cpu>=1.9,<2", + "numpy>=2.0,<3", + "beautifulsoup4>=4.12,<5", # CPU-only torch — avoids pulling ~3 GB of CUDA libraries - "torch>=2.5", + "torch>=2.5,<3", ] [[tool.uv.index]] diff --git a/tools/__pycache__/embed.cpython-314.pyc b/tools/__pycache__/embed.cpython-314.pyc deleted file mode 100644 index eedd5a0..0000000 Binary files a/tools/__pycache__/embed.cpython-314.pyc and /dev/null differ diff --git a/tools/__pycache__/viz_theme.cpython-314.pyc b/tools/__pycache__/viz_theme.cpython-314.pyc deleted file mode 100644 index 7ddfd13..0000000 Binary files a/tools/__pycache__/viz_theme.cpython-314.pyc and /dev/null differ diff --git a/tools/convert-images.sh b/tools/convert-images.sh index 03def5c..6c8b629 100755 --- a/tools/convert-images.sh +++ b/tools/convert-images.sh @@ -25,7 +25,7 @@ skipped=0 while IFS= read -r -d '' img; do webp="${img%.*}.webp" - if [ -f "$webp" ]; then + if [ -f "$webp" ] && [ ! "$img" -nt "$webp" ]; then skipped=$((skipped + 1)) else echo " webp ${img#"$REPO_ROOT/"}" diff --git a/tools/download-model.sh b/tools/download-model.sh index 8215510..eaed8e8 100755 --- a/tools/download-model.sh +++ b/tools/download-model.sh @@ -7,25 +7,76 @@ # # Run once before deploying. Files are gitignored (binary artifacts). # Re-running is safe — existing files are skipped. +# +# Supply chain hardening: each downloaded file is verified against +# tools/model-checksums.sha256 if that file is present. The checksums +# file is committed to git so a HuggingFace compromise (or a +# transparently rebuilt model) cannot silently land in the deployed +# site. To pin a new model version, run `tools/download-model.sh`, +# verify the model out-of-band, then commit the generated checksums: +# +# (cd static/models/all-MiniLM-L6-v2 && \ +# sha256sum config.json tokenizer.json tokenizer_config.json \ +# special_tokens_map.json onnx/model_quantized.onnx) \ +# > tools/model-checksums.sha256 set -euo pipefail REPO_ROOT="$(cd "$(dirname "$0")/.." && pwd)" MODEL_DIR="$REPO_ROOT/static/models/all-MiniLM-L6-v2" BASE_URL="https://huggingface.co/Xenova/all-MiniLM-L6-v2/resolve/main" +CHECKSUMS="$REPO_ROOT/tools/model-checksums.sha256" mkdir -p "$MODEL_DIR/onnx" +# Look up the expected SHA-256 for a relative path, or empty string if +# no checksums file is present (or the path isn't pinned yet). +expected_sha() { + local rel="$1" + if [ ! -f "$CHECKSUMS" ]; then + echo "" + return + fi + # Match lines of the form " " + awk -v p="$rel" '$2 == p { print $1; exit }' "$CHECKSUMS" +} + +verify_sha() { + local rel="$1" dst="$2" + local want + want=$(expected_sha "$rel") + if [ -z "$want" ]; then + return + fi + local got + got=$(sha256sum "$dst" | awk '{ print $1 }') + if [ "$got" != "$want" ]; then + echo " ERROR sha256 mismatch for $rel" >&2 + echo " expected $want" >&2 + echo " got $got" >&2 + rm -f "$dst" + exit 1 + fi + echo " ok sha256 verified for $rel" +} + fetch() { local src="$1" dst="$2" if [ -f "$dst" ]; then echo " skip $src (already present)" + verify_sha "$src" "$dst" return fi echo " fetch $src" curl -fsSL --progress-bar "$BASE_URL/$src" -o "$dst" + verify_sha "$src" "$dst" } +if [ ! -f "$CHECKSUMS" ]; then + echo "Note: $CHECKSUMS not found — downloads will not be SHA-verified." >&2 + echo " See the comment in tools/download-model.sh to pin checksums." >&2 +fi + echo "Downloading all-MiniLM-L6-v2 to $MODEL_DIR ..." fetch "config.json" "$MODEL_DIR/config.json" diff --git a/tools/embed.py b/tools/embed.py index 6cbe70b..4c79cb4 100644 --- a/tools/embed.py +++ b/tools/embed.py @@ -68,8 +68,10 @@ def needs_update() -> bool: def _url_from_path(html_path: Path) -> str: rel = html_path.relative_to(SITE_DIR) if rel.name == "index.html": - url = "/" + str(rel.parent) + "/" - return url.replace("//", "/") + parent = str(rel.parent) + if parent in (".", ""): + return "/" + return "/" + parent + "/" return "/" + str(rel) def _clean_soup(soup: BeautifulSoup) -> None: diff --git a/tools/import-poetry.py b/tools/import-poetry.py index c2d2853..91f92a5 100644 --- a/tools/import-poetry.py +++ b/tools/import-poetry.py @@ -44,9 +44,11 @@ _ROMAN_VALS = [ def roman_to_int(s: str) -> Optional[int]: s = s.upper().strip() + if not s: + return None i, result = 0, 0 for numeral, value in _ROMAN_VALS: - while s[i : i + len(numeral)] == numeral: + while i < len(s) and s[i : i + len(numeral)] == numeral: result += value i += len(numeral) return result if i == len(s) and result > 0 else None @@ -191,15 +193,28 @@ def first_content_line(lines: list[str]) -> str: # --------------------------------------------------------------------------- def yaml_str(s: str) -> str: - """Quote a string for YAML if it needs it.""" + """Quote a string for YAML if it needs it. + + Always quote (and escape) when the string contains characters that + can break YAML parsing — including newlines, carriage returns, and + YAML's reserved indicators. Newlines and carriage returns are escaped + using YAML's double-quoted backslash escapes. + """ needs_quote = ( not s or s[0] in " \t" or s[-1] in " \t" - or any(c in s for c in ':{}[]|>&*!,#?@`\'"') + or any(c in s for c in ':{}[]|>&*!,#?@`\'"\n\r\t') ) if needs_quote: - return '"' + s.replace("\\", "\\\\").replace('"', '\\"') + '"' + escaped = ( + s.replace("\\", "\\\\") + .replace('"', '\\"') + .replace("\n", "\\n") + .replace("\r", "\\r") + .replace("\t", "\\t") + ) + return '"' + escaped + '"' return s # --------------------------------------------------------------------------- @@ -324,9 +339,39 @@ def main() -> None: print(f"error: file not found: {source}", file=sys.stderr) sys.exit(1) + # Validate publication year — flows into YAML unchanged so it must be + # well-formed and within a sane range. + try: + year = int(args.date) + except ValueError: + print( + f"error: --date must be an integer year, got {args.date!r}", + file=sys.stderr, + ) + sys.exit(1) + if not (1 <= year <= 2100): + print( + f"error: --date {year} out of plausible range (1..2100)", + file=sys.stderr, + ) + sys.exit(1) + # Defaults title_prefix = args.title_prefix or args.collection.rstrip("s") + if not title_prefix.strip(): + print( + "error: title prefix is empty (check --title-prefix or --collection)", + file=sys.stderr, + ) + sys.exit(1) collection_slug = args.slug or slugify(f"{args.poet}-{args.collection}") + if not collection_slug or collection_slug == "-": + print( + f"error: collection slug is empty " + f"(check --slug, --collection={args.collection!r}, --poet={args.poet!r})", + file=sys.stderr, + ) + sys.exit(1) tags = [t.strip() for t in args.tags.split(",")] out_dir = POETRY_DIR / collection_slug @@ -389,7 +434,7 @@ def main() -> None: print(f" skip {path.name}") skipped += 1 else: - path.write_text(content, encoding="utf-8") + path.write_text(content, encoding="utf-8", errors="strict") print(f" write {path.name}") written += 1 diff --git a/tools/sign-site.sh b/tools/sign-site.sh index e6e3703..4160768 100755 --- a/tools/sign-site.sh +++ b/tools/sign-site.sh @@ -40,18 +40,15 @@ if ! GNUPGHOME="$GNUPGHOME" gpg \ fi echo "sign-site: pre-flight OK — signing $SITE_DIR..." >&2 -count=0 -while IFS= read -r -d '' html; do - GNUPGHOME="$GNUPGHOME" gpg \ - --homedir "$GNUPGHOME" \ +find "$SITE_DIR" -name "*.html" -print0 | xargs -0 -I {} -P $(nproc) \ + gpg --homedir "$GNUPGHOME" \ --batch \ --yes \ --detach-sign \ --armor \ --local-user "$SIGNING_KEY" \ - --output "${html}.sig" \ - "$html" - count=$((count + 1)) -done < <(find "$SITE_DIR" -name "*.html" -print0) + --output "{}.sig" \ + "{}" +count=$(find "$SITE_DIR" -name "*.html" -printf '.' | wc -c) echo "Signed $count HTML files in $SITE_DIR." diff --git a/uv.lock b/uv.lock index ed4fa54..329e341 100644 --- a/uv.lock +++ b/uv.lock @@ -8,40 +8,18 @@ resolution-markers = [ [[package]] name = "altair" -version = "6.0.0" +version = "5.5.0" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "jinja2" }, { name = "jsonschema" }, { name = "narwhals" }, { name = "packaging" }, - { name = "typing-extensions", marker = "python_full_version < '3.15'" }, + { name = "typing-extensions", marker = "python_full_version < '3.14'" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/f7/c0/184a89bd5feba14ff3c41cfaf1dd8a82c05f5ceedbc92145e17042eb08a4/altair-6.0.0.tar.gz", hash = "sha256:614bf5ecbe2337347b590afb111929aa9c16c9527c4887d96c9bc7f6640756b4", size = 763834, upload-time = "2025-11-12T08:59:11.519Z" } +sdist = { url = "https://files.pythonhosted.org/packages/16/b1/f2969c7bdb8ad8bbdda031687defdce2c19afba2aa2c8e1d2a17f78376d8/altair-5.5.0.tar.gz", hash = "sha256:d960ebe6178c56de3855a68c47b516be38640b73fb3b5111c2a9ca90546dd73d", size = 705305, upload-time = "2024-11-23T23:39:58.542Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/db/33/ef2f2409450ef6daa61459d5de5c08128e7d3edb773fefd0a324d1310238/altair-6.0.0-py3-none-any.whl", hash = "sha256:09ae95b53d5fe5b16987dccc785a7af8588f2dca50de1e7a156efa8a461515f8", size = 795410, upload-time = "2025-11-12T08:59:09.804Z" }, -] - -[[package]] -name = "annotated-doc" -version = "0.0.4" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/57/ba/046ceea27344560984e26a590f90bc7f4a75b06701f653222458922b558c/annotated_doc-0.0.4.tar.gz", hash = "sha256:fbcda96e87e9c92ad167c2e53839e57503ecfda18804ea28102353485033faa4", size = 7288, upload-time = "2025-11-10T22:07:42.062Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/1e/d3/26bf1008eb3d2daa8ef4cacc7f3bfdc11818d111f7e2d0201bc6e3b49d45/annotated_doc-0.0.4-py3-none-any.whl", hash = "sha256:571ac1dc6991c450b25a9c2d84a3705e2ae7a53467b5d111c24fa8baabbed320", size = 5303, upload-time = "2025-11-10T22:07:40.673Z" }, -] - -[[package]] -name = "anyio" -version = "4.12.1" -source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "idna" }, - { name = "typing-extensions", marker = "python_full_version < '3.13'" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/96/f0/5eb65b2bb0d09ac6776f2eb54adee6abe8228ea05b20a5ad0e4945de8aac/anyio-4.12.1.tar.gz", hash = "sha256:41cfcc3a4c85d3f05c932da7c26d0201ac36f72abd4435ba90d0464a3ffed703", size = 228685, upload-time = "2026-01-06T11:45:21.246Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/38/0e/27be9fdef66e72d64c0cdc3cc2823101b80585f8119b5c112c2e8f5f7dab/anyio-4.12.1-py3-none-any.whl", hash = "sha256:d405828884fc140aa80a3c667b8beed277f1dfedec42ba031bd6ac3db606ab6c", size = 113592, upload-time = "2026-01-06T11:45:19.497Z" }, + { url = "https://files.pythonhosted.org/packages/aa/f3/0b6ced594e51cc95d8c1fc1640d3623770d01e4969d29c0bd09945fafefa/altair-5.5.0-py3-none-any.whl", hash = "sha256:91a310b926508d560fe0148d02a194f38b824122641ef528113d029fcd129f8c", size = 731200, upload-time = "2024-11-23T23:39:56.4Z" }, ] [[package]] @@ -76,15 +54,76 @@ wheels = [ ] [[package]] -name = "click" -version = "8.3.1" +name = "charset-normalizer" +version = "3.4.7" source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "colorama", marker = "sys_platform == 'win32'" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/3d/fa/656b739db8587d7b5dfa22e22ed02566950fbfbcdc20311993483657a5c0/click-8.3.1.tar.gz", hash = "sha256:12ff4785d337a1bb490bb7e9c2b1ee5da3112e94a8622f26a6c77f5d2fc6842a", size = 295065, upload-time = "2025-11-15T20:45:42.706Z" } +sdist = { url = "https://files.pythonhosted.org/packages/e7/a1/67fe25fac3c7642725500a3f6cfe5821ad557c3abb11c9d20d12c7008d3e/charset_normalizer-3.4.7.tar.gz", hash = "sha256:ae89db9e5f98a11a4bf50407d4363e7b09b31e55bc117b4f7d80aab97ba009e5", size = 144271, upload-time = "2026-04-02T09:28:39.342Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/98/78/01c019cdb5d6498122777c1a43056ebb3ebfeef2076d9d026bfe15583b2b/click-8.3.1-py3-none-any.whl", hash = "sha256:981153a64e25f12d547d3426c367a4857371575ee7ad18df2a6183ab0545b2a6", size = 108274, upload-time = "2025-11-15T20:45:41.139Z" }, + { url = "https://files.pythonhosted.org/packages/0c/eb/4fc8d0a7110eb5fc9cc161723a34a8a6c200ce3b4fbf681bc86feee22308/charset_normalizer-3.4.7-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:eca9705049ad3c7345d574e3510665cb2cf844c2f2dcfe675332677f081cbd46", size = 311328, upload-time = "2026-04-02T09:26:24.331Z" }, + { url = "https://files.pythonhosted.org/packages/f8/e3/0fadc706008ac9d7b9b5be6dc767c05f9d3e5df51744ce4cc9605de7b9f4/charset_normalizer-3.4.7-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:6178f72c5508bfc5fd446a5905e698c6212932f25bcdd4b47a757a50605a90e2", size = 208061, upload-time = "2026-04-02T09:26:25.568Z" }, + { url = "https://files.pythonhosted.org/packages/42/f0/3dd1045c47f4a4604df85ec18ad093912ae1344ac706993aff91d38773a2/charset_normalizer-3.4.7-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:e1421b502d83040e6d7fb2fb18dff63957f720da3d77b2fbd3187ceb63755d7b", size = 229031, upload-time = "2026-04-02T09:26:26.865Z" }, + { url = "https://files.pythonhosted.org/packages/dc/67/675a46eb016118a2fbde5a277a5d15f4f69d5f3f5f338e5ee2f8948fcf43/charset_normalizer-3.4.7-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:edac0f1ab77644605be2cbba52e6b7f630731fc42b34cb0f634be1a6eface56a", size = 225239, upload-time = "2026-04-02T09:26:28.044Z" }, + { url = "https://files.pythonhosted.org/packages/4b/f8/d0118a2f5f23b02cd166fa385c60f9b0d4f9194f574e2b31cef350ad7223/charset_normalizer-3.4.7-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:5649fd1c7bade02f320a462fdefd0b4bd3ce036065836d4f42e0de958038e116", size = 216589, upload-time = "2026-04-02T09:26:29.239Z" }, + { url = "https://files.pythonhosted.org/packages/b1/f1/6d2b0b261b6c4ceef0fcb0d17a01cc5bc53586c2d4796fa04b5c540bc13d/charset_normalizer-3.4.7-cp312-cp312-manylinux_2_31_armv7l.whl", hash = "sha256:203104ed3e428044fd943bc4bf45fa73c0730391f9621e37fe39ecf477b128cb", size = 202733, upload-time = "2026-04-02T09:26:30.5Z" }, + { url = "https://files.pythonhosted.org/packages/6f/c0/7b1f943f7e87cc3db9626ba17807d042c38645f0a1d4415c7a14afb5591f/charset_normalizer-3.4.7-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:298930cec56029e05497a76988377cbd7457ba864beeea92ad7e844fe74cd1f1", size = 212652, upload-time = "2026-04-02T09:26:31.709Z" }, + { url = "https://files.pythonhosted.org/packages/38/dd/5a9ab159fe45c6e72079398f277b7d2b523e7f716acc489726115a910097/charset_normalizer-3.4.7-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:708838739abf24b2ceb208d0e22403dd018faeef86ddac04319a62ae884c4f15", size = 211229, upload-time = "2026-04-02T09:26:33.282Z" }, + { url = "https://files.pythonhosted.org/packages/d5/ff/531a1cad5ca855d1c1a8b69cb71abfd6d85c0291580146fda7c82857caa1/charset_normalizer-3.4.7-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:0f7eb884681e3938906ed0434f20c63046eacd0111c4ba96f27b76084cd679f5", size = 203552, upload-time = "2026-04-02T09:26:34.845Z" }, + { url = "https://files.pythonhosted.org/packages/c1/4c/a5fb52d528a8ca41f7598cb619409ece30a169fbdf9cdce592e53b46c3a6/charset_normalizer-3.4.7-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:4dc1e73c36828f982bfe79fadf5919923f8a6f4df2860804db9a98c48824ce8d", size = 230806, upload-time = "2026-04-02T09:26:36.152Z" }, + { url = "https://files.pythonhosted.org/packages/59/7a/071feed8124111a32b316b33ae4de83d36923039ef8cf48120266844285b/charset_normalizer-3.4.7-cp312-cp312-musllinux_1_2_riscv64.whl", hash = "sha256:aed52fea0513bac0ccde438c188c8a471c4e0f457c2dd20cdbf6ea7a450046c7", size = 212316, upload-time = "2026-04-02T09:26:37.672Z" }, + { url = "https://files.pythonhosted.org/packages/fd/35/f7dba3994312d7ba508e041eaac39a36b120f32d4c8662b8814dab876431/charset_normalizer-3.4.7-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:fea24543955a6a729c45a73fe90e08c743f0b3334bbf3201e6c4bc1b0c7fa464", size = 227274, upload-time = "2026-04-02T09:26:38.93Z" }, + { url = "https://files.pythonhosted.org/packages/8a/2d/a572df5c9204ab7688ec1edc895a73ebded3b023bb07364710b05dd1c9be/charset_normalizer-3.4.7-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:bb6d88045545b26da47aa879dd4a89a71d1dce0f0e549b1abcb31dfe4a8eac49", size = 218468, upload-time = "2026-04-02T09:26:40.17Z" }, + { url = "https://files.pythonhosted.org/packages/86/eb/890922a8b03a568ca2f336c36585a4713c55d4d67bf0f0c78924be6315ca/charset_normalizer-3.4.7-cp312-cp312-win32.whl", hash = "sha256:2257141f39fe65a3fdf38aeccae4b953e5f3b3324f4ff0daf9f15b8518666a2c", size = 148460, upload-time = "2026-04-02T09:26:41.416Z" }, + { url = "https://files.pythonhosted.org/packages/35/d9/0e7dffa06c5ab081f75b1b786f0aefc88365825dfcd0ac544bdb7b2b6853/charset_normalizer-3.4.7-cp312-cp312-win_amd64.whl", hash = "sha256:5ed6ab538499c8644b8a3e18debabcd7ce684f3fa91cf867521a7a0279cab2d6", size = 159330, upload-time = "2026-04-02T09:26:42.554Z" }, + { url = "https://files.pythonhosted.org/packages/9e/5d/481bcc2a7c88ea6b0878c299547843b2521ccbc40980cb406267088bc701/charset_normalizer-3.4.7-cp312-cp312-win_arm64.whl", hash = "sha256:56be790f86bfb2c98fb742ce566dfb4816e5a83384616ab59c49e0604d49c51d", size = 147828, upload-time = "2026-04-02T09:26:44.075Z" }, + { url = "https://files.pythonhosted.org/packages/c1/3b/66777e39d3ae1ddc77ee606be4ec6d8cbd4c801f65e5a1b6f2b11b8346dd/charset_normalizer-3.4.7-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:f496c9c3cc02230093d8330875c4c3cdfc3b73612a5fd921c65d39cbcef08063", size = 309627, upload-time = "2026-04-02T09:26:45.198Z" }, + { url = "https://files.pythonhosted.org/packages/2e/4e/b7f84e617b4854ade48a1b7915c8ccfadeba444d2a18c291f696e37f0d3b/charset_normalizer-3.4.7-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:0ea948db76d31190bf08bd371623927ee1339d5f2a0b4b1b4a4439a65298703c", size = 207008, upload-time = "2026-04-02T09:26:46.824Z" }, + { url = "https://files.pythonhosted.org/packages/c4/bb/ec73c0257c9e11b268f018f068f5d00aa0ef8c8b09f7753ebd5f2880e248/charset_normalizer-3.4.7-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:a277ab8928b9f299723bc1a2dabb1265911b1a76341f90a510368ca44ad9ab66", size = 228303, upload-time = "2026-04-02T09:26:48.397Z" }, + { url = "https://files.pythonhosted.org/packages/85/fb/32d1f5033484494619f701e719429c69b766bfc4dbc61aa9e9c8c166528b/charset_normalizer-3.4.7-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:3bec022aec2c514d9cf199522a802bd007cd588ab17ab2525f20f9c34d067c18", size = 224282, upload-time = "2026-04-02T09:26:49.684Z" }, + { url = "https://files.pythonhosted.org/packages/fa/07/330e3a0dda4c404d6da83b327270906e9654a24f6c546dc886a0eb0ffb23/charset_normalizer-3.4.7-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:e044c39e41b92c845bc815e5ae4230804e8e7bc29e399b0437d64222d92809dd", size = 215595, upload-time = "2026-04-02T09:26:50.915Z" }, + { url = "https://files.pythonhosted.org/packages/e3/7c/fc890655786e423f02556e0216d4b8c6bcb6bdfa890160dc66bf52dee468/charset_normalizer-3.4.7-cp313-cp313-manylinux_2_31_armv7l.whl", hash = "sha256:f495a1652cf3fbab2eb0639776dad966c2fb874d79d87ca07f9d5f059b8bd215", size = 201986, upload-time = "2026-04-02T09:26:52.197Z" }, + { url = "https://files.pythonhosted.org/packages/d8/97/bfb18b3db2aed3b90cf54dc292ad79fdd5ad65c4eae454099475cbeadd0d/charset_normalizer-3.4.7-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:e712b419df8ba5e42b226c510472b37bd57b38e897d3eca5e8cfd410a29fa859", size = 211711, upload-time = "2026-04-02T09:26:53.49Z" }, + { url = "https://files.pythonhosted.org/packages/6f/a5/a581c13798546a7fd557c82614a5c65a13df2157e9ad6373166d2a3e645d/charset_normalizer-3.4.7-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:7804338df6fcc08105c7745f1502ba68d900f45fd770d5bdd5288ddccb8a42d8", size = 210036, upload-time = "2026-04-02T09:26:54.975Z" }, + { url = "https://files.pythonhosted.org/packages/8c/bf/b3ab5bcb478e4193d517644b0fb2bf5497fbceeaa7a1bc0f4d5b50953861/charset_normalizer-3.4.7-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:481551899c856c704d58119b5025793fa6730adda3571971af568f66d2424bb5", size = 202998, upload-time = "2026-04-02T09:26:56.303Z" }, + { url = "https://files.pythonhosted.org/packages/e7/4e/23efd79b65d314fa320ec6017b4b5834d5c12a58ba4610aa353af2e2f577/charset_normalizer-3.4.7-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:f59099f9b66f0d7145115e6f80dd8b1d847176df89b234a5a6b3f00437aa0832", size = 230056, upload-time = "2026-04-02T09:26:57.554Z" }, + { url = "https://files.pythonhosted.org/packages/b9/9f/1e1941bc3f0e01df116e68dc37a55c4d249df5e6fa77f008841aef68264f/charset_normalizer-3.4.7-cp313-cp313-musllinux_1_2_riscv64.whl", hash = "sha256:f59ad4c0e8f6bba240a9bb85504faa1ab438237199d4cce5f622761507b8f6a6", size = 211537, upload-time = "2026-04-02T09:26:58.843Z" }, + { url = "https://files.pythonhosted.org/packages/80/0f/088cbb3020d44428964a6c97fe1edfb1b9550396bf6d278330281e8b709c/charset_normalizer-3.4.7-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:3dedcc22d73ec993f42055eff4fcfed9318d1eeb9a6606c55892a26964964e48", size = 226176, upload-time = "2026-04-02T09:27:00.437Z" }, + { url = "https://files.pythonhosted.org/packages/6a/9f/130394f9bbe06f4f63e22641d32fc9b202b7e251c9aef4db044324dac493/charset_normalizer-3.4.7-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:64f02c6841d7d83f832cd97ccf8eb8a906d06eb95d5276069175c696b024b60a", size = 217723, upload-time = "2026-04-02T09:27:02.021Z" }, + { url = "https://files.pythonhosted.org/packages/73/55/c469897448a06e49f8fa03f6caae97074fde823f432a98f979cc42b90e69/charset_normalizer-3.4.7-cp313-cp313-win32.whl", hash = "sha256:4042d5c8f957e15221d423ba781e85d553722fc4113f523f2feb7b188cc34c5e", size = 148085, upload-time = "2026-04-02T09:27:03.192Z" }, + { url = "https://files.pythonhosted.org/packages/5d/78/1b74c5bbb3f99b77a1715c91b3e0b5bdb6fe302d95ace4f5b1bec37b0167/charset_normalizer-3.4.7-cp313-cp313-win_amd64.whl", hash = "sha256:3946fa46a0cf3e4c8cb1cc52f56bb536310d34f25f01ca9b6c16afa767dab110", size = 158819, upload-time = "2026-04-02T09:27:04.454Z" }, + { url = "https://files.pythonhosted.org/packages/68/86/46bd42279d323deb8687c4a5a811fd548cb7d1de10cf6535d099877a9a9f/charset_normalizer-3.4.7-cp313-cp313-win_arm64.whl", hash = "sha256:80d04837f55fc81da168b98de4f4b797ef007fc8a79ab71c6ec9bc4dd662b15b", size = 147915, upload-time = "2026-04-02T09:27:05.971Z" }, + { url = "https://files.pythonhosted.org/packages/97/c8/c67cb8c70e19ef1960b97b22ed2a1567711de46c4ddf19799923adc836c2/charset_normalizer-3.4.7-cp314-cp314-macosx_10_15_universal2.whl", hash = "sha256:c36c333c39be2dbca264d7803333c896ab8fa7d4d6f0ab7edb7dfd7aea6e98c0", size = 309234, upload-time = "2026-04-02T09:27:07.194Z" }, + { url = "https://files.pythonhosted.org/packages/99/85/c091fdee33f20de70d6c8b522743b6f831a2f1cd3ff86de4c6a827c48a76/charset_normalizer-3.4.7-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:1c2aed2e5e41f24ea8ef1590b8e848a79b56f3a5564a65ceec43c9d692dc7d8a", size = 208042, upload-time = "2026-04-02T09:27:08.749Z" }, + { url = "https://files.pythonhosted.org/packages/87/1c/ab2ce611b984d2fd5d86a5a8a19c1ae26acac6bad967da4967562c75114d/charset_normalizer-3.4.7-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:54523e136b8948060c0fa0bc7b1b50c32c186f2fceee897a495406bb6e311d2b", size = 228706, upload-time = "2026-04-02T09:27:09.951Z" }, + { url = "https://files.pythonhosted.org/packages/a8/29/2b1d2cb00bf085f59d29eb773ce58ec2d325430f8c216804a0a5cd83cbca/charset_normalizer-3.4.7-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:715479b9a2802ecac752a3b0efa2b0b60285cf962ee38414211abdfccc233b41", size = 224727, upload-time = "2026-04-02T09:27:11.175Z" }, + { url = "https://files.pythonhosted.org/packages/47/5c/032c2d5a07fe4d4855fea851209cca2b6f03ebeb6d4e3afdb3358386a684/charset_normalizer-3.4.7-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:bd6c2a1c7573c64738d716488d2cdd3c00e340e4835707d8fdb8dc1a66ef164e", size = 215882, upload-time = "2026-04-02T09:27:12.446Z" }, + { url = "https://files.pythonhosted.org/packages/2c/c2/356065d5a8b78ed04499cae5f339f091946a6a74f91e03476c33f0ab7100/charset_normalizer-3.4.7-cp314-cp314-manylinux_2_31_armv7l.whl", hash = "sha256:c45e9440fb78f8ddabcf714b68f936737a121355bf59f3907f4e17721b9d1aae", size = 200860, upload-time = "2026-04-02T09:27:13.721Z" }, + { url = "https://files.pythonhosted.org/packages/0c/cd/a32a84217ced5039f53b29f460962abb2d4420def55afabe45b1c3c7483d/charset_normalizer-3.4.7-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:3534e7dcbdcf757da6b85a0bbf5b6868786d5982dd959b065e65481644817a18", size = 211564, upload-time = "2026-04-02T09:27:15.272Z" }, + { url = "https://files.pythonhosted.org/packages/44/86/58e6f13ce26cc3b8f4a36b94a0f22ae2f00a72534520f4ae6857c4b81f89/charset_normalizer-3.4.7-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:e8ac484bf18ce6975760921bb6148041faa8fef0547200386ea0b52b5d27bf7b", size = 211276, upload-time = "2026-04-02T09:27:16.834Z" }, + { url = "https://files.pythonhosted.org/packages/8f/fe/d17c32dc72e17e155e06883efa84514ca375f8a528ba2546bee73fc4df81/charset_normalizer-3.4.7-cp314-cp314-musllinux_1_2_armv7l.whl", hash = "sha256:a5fe03b42827c13cdccd08e6c0247b6a6d4b5e3cdc53fd1749f5896adcdc2356", size = 201238, upload-time = "2026-04-02T09:27:18.229Z" }, + { url = "https://files.pythonhosted.org/packages/6a/29/f33daa50b06525a237451cdb6c69da366c381a3dadcd833fa5676bc468b3/charset_normalizer-3.4.7-cp314-cp314-musllinux_1_2_ppc64le.whl", hash = "sha256:2d6eb928e13016cea4f1f21d1e10c1cebd5a421bc57ddf5b1142ae3f86824fab", size = 230189, upload-time = "2026-04-02T09:27:19.445Z" }, + { url = "https://files.pythonhosted.org/packages/b6/6e/52c84015394a6a0bdcd435210a7e944c5f94ea1055f5cc5d56c5fe368e7b/charset_normalizer-3.4.7-cp314-cp314-musllinux_1_2_riscv64.whl", hash = "sha256:e74327fb75de8986940def6e8dee4f127cc9752bee7355bb323cc5b2659b6d46", size = 211352, upload-time = "2026-04-02T09:27:20.79Z" }, + { url = "https://files.pythonhosted.org/packages/8c/d7/4353be581b373033fb9198bf1da3cf8f09c1082561e8e922aa7b39bf9fe8/charset_normalizer-3.4.7-cp314-cp314-musllinux_1_2_s390x.whl", hash = "sha256:d6038d37043bced98a66e68d3aa2b6a35505dc01328cd65217cefe82f25def44", size = 227024, upload-time = "2026-04-02T09:27:22.063Z" }, + { url = "https://files.pythonhosted.org/packages/30/45/99d18aa925bd1740098ccd3060e238e21115fffbfdcb8f3ece837d0ace6c/charset_normalizer-3.4.7-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:7579e913a5339fb8fa133f6bbcfd8e6749696206cf05acdbdca71a1b436d8e72", size = 217869, upload-time = "2026-04-02T09:27:23.486Z" }, + { url = "https://files.pythonhosted.org/packages/5c/05/5ee478aa53f4bb7996482153d4bfe1b89e0f087f0ab6b294fcf92d595873/charset_normalizer-3.4.7-cp314-cp314-win32.whl", hash = "sha256:5b77459df20e08151cd6f8b9ef8ef1f961ef73d85c21a555c7eed5b79410ec10", size = 148541, upload-time = "2026-04-02T09:27:25.146Z" }, + { url = "https://files.pythonhosted.org/packages/48/77/72dcb0921b2ce86420b2d79d454c7022bf5be40202a2a07906b9f2a35c97/charset_normalizer-3.4.7-cp314-cp314-win_amd64.whl", hash = "sha256:92a0a01ead5e668468e952e4238cccd7c537364eb7d851ab144ab6627dbbe12f", size = 159634, upload-time = "2026-04-02T09:27:26.642Z" }, + { url = "https://files.pythonhosted.org/packages/c6/a3/c2369911cd72f02386e4e340770f6e158c7980267da16af8f668217abaa0/charset_normalizer-3.4.7-cp314-cp314-win_arm64.whl", hash = "sha256:67f6279d125ca0046a7fd386d01b311c6363844deac3e5b069b514ba3e63c246", size = 148384, upload-time = "2026-04-02T09:27:28.271Z" }, + { url = "https://files.pythonhosted.org/packages/94/09/7e8a7f73d24dba1f0035fbbf014d2c36828fc1bf9c88f84093e57d315935/charset_normalizer-3.4.7-cp314-cp314t-macosx_10_15_universal2.whl", hash = "sha256:effc3f449787117233702311a1b7d8f59cba9ced946ba727bdc329ec69028e24", size = 330133, upload-time = "2026-04-02T09:27:29.474Z" }, + { url = "https://files.pythonhosted.org/packages/8d/da/96975ddb11f8e977f706f45cddd8540fd8242f71ecdb5d18a80723dcf62c/charset_normalizer-3.4.7-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:fbccdc05410c9ee21bbf16a35f4c1d16123dcdeb8a1d38f33654fa21d0234f79", size = 216257, upload-time = "2026-04-02T09:27:30.793Z" }, + { url = "https://files.pythonhosted.org/packages/e5/e8/1d63bf8ef2d388e95c64b2098f45f84758f6d102a087552da1485912637b/charset_normalizer-3.4.7-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:733784b6d6def852c814bce5f318d25da2ee65dd4839a0718641c696e09a2960", size = 234851, upload-time = "2026-04-02T09:27:32.44Z" }, + { url = "https://files.pythonhosted.org/packages/9b/40/e5ff04233e70da2681fa43969ad6f66ca5611d7e669be0246c4c7aaf6dc8/charset_normalizer-3.4.7-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:a89c23ef8d2c6b27fd200a42aa4ac72786e7c60d40efdc76e6011260b6e949c4", size = 233393, upload-time = "2026-04-02T09:27:34.03Z" }, + { url = "https://files.pythonhosted.org/packages/be/c1/06c6c49d5a5450f76899992f1ee40b41d076aee9279b49cf9974d2f313d5/charset_normalizer-3.4.7-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:6c114670c45346afedc0d947faf3c7f701051d2518b943679c8ff88befe14f8e", size = 223251, upload-time = "2026-04-02T09:27:35.369Z" }, + { url = "https://files.pythonhosted.org/packages/2b/9f/f2ff16fb050946169e3e1f82134d107e5d4ae72647ec8a1b1446c148480f/charset_normalizer-3.4.7-cp314-cp314t-manylinux_2_31_armv7l.whl", hash = "sha256:a180c5e59792af262bf263b21a3c49353f25945d8d9f70628e73de370d55e1e1", size = 206609, upload-time = "2026-04-02T09:27:36.661Z" }, + { url = "https://files.pythonhosted.org/packages/69/d5/a527c0cd8d64d2eab7459784fb4169a0ac76e5a6fc5237337982fd61347e/charset_normalizer-3.4.7-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:3c9a494bc5ec77d43cea229c4f6db1e4d8fe7e1bbffa8b6f0f0032430ff8ab44", size = 220014, upload-time = "2026-04-02T09:27:38.019Z" }, + { url = "https://files.pythonhosted.org/packages/7e/80/8a7b8104a3e203074dc9aa2c613d4b726c0e136bad1cc734594b02867972/charset_normalizer-3.4.7-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:8d828b6667a32a728a1ad1d93957cdf37489c57b97ae6c4de2860fa749b8fc1e", size = 218979, upload-time = "2026-04-02T09:27:39.37Z" }, + { url = "https://files.pythonhosted.org/packages/02/9a/b759b503d507f375b2b5c153e4d2ee0a75aa215b7f2489cf314f4541f2c0/charset_normalizer-3.4.7-cp314-cp314t-musllinux_1_2_armv7l.whl", hash = "sha256:cf1493cd8607bec4d8a7b9b004e699fcf8f9103a9284cc94962cb73d20f9d4a3", size = 209238, upload-time = "2026-04-02T09:27:40.722Z" }, + { url = "https://files.pythonhosted.org/packages/c2/4e/0f3f5d47b86bdb79256e7290b26ac847a2832d9a4033f7eb2cd4bcf4bb5b/charset_normalizer-3.4.7-cp314-cp314t-musllinux_1_2_ppc64le.whl", hash = "sha256:0c96c3b819b5c3e9e165495db84d41914d6894d55181d2d108cc1a69bfc9cce0", size = 236110, upload-time = "2026-04-02T09:27:42.33Z" }, + { url = "https://files.pythonhosted.org/packages/96/23/bce28734eb3ed2c91dcf93abeb8a5cf393a7b2749725030bb630e554fdd8/charset_normalizer-3.4.7-cp314-cp314t-musllinux_1_2_riscv64.whl", hash = "sha256:752a45dc4a6934060b3b0dab47e04edc3326575f82be64bc4fc293914566503e", size = 219824, upload-time = "2026-04-02T09:27:43.924Z" }, + { url = "https://files.pythonhosted.org/packages/2c/6f/6e897c6984cc4d41af319b077f2f600fc8214eb2fe2d6bcb79141b882400/charset_normalizer-3.4.7-cp314-cp314t-musllinux_1_2_s390x.whl", hash = "sha256:8778f0c7a52e56f75d12dae53ae320fae900a8b9b4164b981b9c5ce059cd1fcb", size = 233103, upload-time = "2026-04-02T09:27:45.348Z" }, + { url = "https://files.pythonhosted.org/packages/76/22/ef7bd0fe480a0ae9b656189ec00744b60933f68b4f42a7bb06589f6f576a/charset_normalizer-3.4.7-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:ce3412fbe1e31eb81ea42f4169ed94861c56e643189e1e75f0041f3fe7020abe", size = 225194, upload-time = "2026-04-02T09:27:46.706Z" }, + { url = "https://files.pythonhosted.org/packages/c5/a7/0e0ab3e0b5bc1219bd80a6a0d4d72ca74d9250cb2382b7c699c147e06017/charset_normalizer-3.4.7-cp314-cp314t-win32.whl", hash = "sha256:c03a41a8784091e67a39648f70c5f97b5b6a37f216896d44d2cdcb82615339a0", size = 159827, upload-time = "2026-04-02T09:27:48.053Z" }, + { url = "https://files.pythonhosted.org/packages/7a/1d/29d32e0fb40864b1f878c7f5a0b343ae676c6e2b271a2d55cc3a152391da/charset_normalizer-3.4.7-cp314-cp314t-win_amd64.whl", hash = "sha256:03853ed82eeebbce3c2abfdbc98c96dc205f32a79627688ac9a27370ea61a49c", size = 174168, upload-time = "2026-04-02T09:27:49.795Z" }, + { url = "https://files.pythonhosted.org/packages/de/32/d92444ad05c7a6e41fb2036749777c163baf7a0301a040cb672d6b2b1ae9/charset_normalizer-3.4.7-cp314-cp314t-win_arm64.whl", hash = "sha256:c35abb8bfff0185efac5878da64c45dafd2b37fb0383add1be155a763c1f083d", size = 153018, upload-time = "2026-04-02T09:27:51.116Z" }, + { url = "https://files.pythonhosted.org/packages/db/8f/61959034484a4a7c527811f4721e75d02d653a35afb0b6054474d8185d4c/charset_normalizer-3.4.7-py3-none-any.whl", hash = "sha256:3dce51d0f5e7951f8bb4900c257dad282f49190fdbebecd4ba99bcc41fef404d", size = 61958, upload-time = "2026-04-02T09:28:37.794Z" }, ] [[package]] @@ -253,15 +292,6 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/e6/ab/fb21f4c939bb440104cc2b396d3be1d9b7a9fd3c6c2a53d98c45b3d7c954/fsspec-2026.2.0-py3-none-any.whl", hash = "sha256:98de475b5cb3bd66bedd5c4679e87b4fdfe1a3bf4d707b151b3c07e58c9a2437", size = 202505, upload-time = "2026-02-05T21:50:51.819Z" }, ] -[[package]] -name = "h11" -version = "0.16.0" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/01/ee/02a2c011bdab74c6fb3c75474d40b3052059d95df7e73351460c8588d963/h11-0.16.0.tar.gz", hash = "sha256:4e35b956cf45792e4caa5885e69fba00bdbc6ffafbfa020300e549b208ee5ff1", size = 101250, upload-time = "2025-04-24T03:35:25.427Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/04/4b/29cac41a4d98d144bf5f6d33995617b185d14b22401f75ca86f384e87ff1/h11-0.16.0-py3-none-any.whl", hash = "sha256:63cf8bbe7522de3bf65932fda1d9c2772064ffb3dae62d55932da54b31cb6c86", size = 37515, upload-time = "2025-04-24T03:35:24.344Z" }, -] - [[package]] name = "hf-xet" version = "1.4.2" @@ -294,52 +324,23 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/b4/7e/ccf239da366b37ba7f0b36095450efae4a64980bdc7ec2f51354205fdf39/hf_xet-1.4.2-cp37-abi3-win_arm64.whl", hash = "sha256:32c012286b581f783653e718c1862aea5b9eb140631685bb0c5e7012c8719a87", size = 3533426, upload-time = "2026-03-13T06:58:55.46Z" }, ] -[[package]] -name = "httpcore" -version = "1.0.9" -source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "certifi" }, - { name = "h11" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/06/94/82699a10bca87a5556c9c59b5963f2d039dbd239f25bc2a63907a05a14cb/httpcore-1.0.9.tar.gz", hash = "sha256:6e34463af53fd2ab5d807f399a9b45ea31c3dfa2276f15a2c3f00afff6e176e8", size = 85484, upload-time = "2025-04-24T22:06:22.219Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/7e/f5/f66802a942d491edb555dd61e3a9961140fd64c90bce1eafd741609d334d/httpcore-1.0.9-py3-none-any.whl", hash = "sha256:2d400746a40668fc9dec9810239072b40b4484b640a8c38fd654a024c7a1bf55", size = 78784, upload-time = "2025-04-24T22:06:20.566Z" }, -] - -[[package]] -name = "httpx" -version = "0.28.1" -source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "anyio" }, - { name = "certifi" }, - { name = "httpcore" }, - { name = "idna" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/b1/df/48c586a5fe32a0f01324ee087459e112ebb7224f646c0b5023f5e79e9956/httpx-0.28.1.tar.gz", hash = "sha256:75e98c5f16b0f35b567856f597f06ff2270a374470a5c2392242528e3e3e42fc", size = 141406, upload-time = "2024-12-06T15:37:23.222Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/2a/39/e50c7c3a983047577ee07d2a9e53faf5a69493943ec3f6a384bdc792deb2/httpx-0.28.1-py3-none-any.whl", hash = "sha256:d909fcccc110f8c7faf814ca82a9a4d816bc5a6dbfea25d6591d6985b8ba59ad", size = 73517, upload-time = "2024-12-06T15:37:21.509Z" }, -] - [[package]] name = "huggingface-hub" -version = "1.7.2" +version = "0.36.2" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "filelock" }, { name = "fsspec" }, - { name = "hf-xet", marker = "platform_machine == 'AMD64' or platform_machine == 'aarch64' or platform_machine == 'amd64' or platform_machine == 'arm64' or platform_machine == 'x86_64'" }, - { name = "httpx" }, + { name = "hf-xet", marker = "platform_machine == 'aarch64' or platform_machine == 'amd64' or platform_machine == 'arm64' or platform_machine == 'x86_64'" }, { name = "packaging" }, { name = "pyyaml" }, + { name = "requests" }, { name = "tqdm" }, - { name = "typer" }, { name = "typing-extensions" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/19/15/eafc1c57bf0f8afffb243dcd4c0cceb785e956acc17bba4d9bf2ae21fc9c/huggingface_hub-1.7.2.tar.gz", hash = "sha256:7f7e294e9bbb822e025bdb2ada025fa4344d978175a7f78e824d86e35f7ab43b", size = 724684, upload-time = "2026-03-20T10:36:08.767Z" } +sdist = { url = "https://files.pythonhosted.org/packages/7c/b7/8cb61d2eece5fb05a83271da168186721c450eb74e3c31f7ef3169fa475b/huggingface_hub-0.36.2.tar.gz", hash = "sha256:1934304d2fb224f8afa3b87007d58501acfda9215b334eed53072dd5e815ff7a", size = 649782, upload-time = "2026-02-06T09:24:13.098Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/08/de/3ad061a05f74728927ded48c90b73521b9a9328c85d841bdefb30e01fb85/huggingface_hub-1.7.2-py3-none-any.whl", hash = "sha256:288f33a0a17b2a73a1359e2a5fd28d1becb2c121748c6173ab8643fb342c850e", size = 618036, upload-time = "2026-03-20T10:36:06.824Z" }, + { url = "https://files.pythonhosted.org/packages/a8/af/48ac8483240de756d2438c380746e7130d1c6f75802ef22f3c6d49982787/huggingface_hub-0.36.2-py3-none-any.whl", hash = "sha256:48f0c8eac16145dfce371e9d2d7772854a4f591bcb56c9cf548accf531d54270", size = 566395, upload-time = "2026-02-06T09:24:11.133Z" }, ] [[package]] @@ -502,25 +503,13 @@ dependencies = [ [package.metadata] requires-dist = [ - { name = "altair", specifier = ">=5.4" }, - { name = "beautifulsoup4", specifier = ">=4.12" }, - { name = "faiss-cpu", specifier = ">=1.9" }, - { name = "matplotlib", specifier = ">=3.9" }, - { name = "numpy", specifier = ">=2.0" }, - { name = "sentence-transformers", specifier = ">=3.4" }, - { name = "torch", specifier = ">=2.5", index = "https://download.pytorch.org/whl/cpu" }, -] - -[[package]] -name = "markdown-it-py" -version = "4.0.0" -source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "mdurl" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/5b/f5/4ec618ed16cc4f8fb3b701563655a69816155e79e24a17b651541804721d/markdown_it_py-4.0.0.tar.gz", hash = "sha256:cb0a2b4aa34f932c007117b194e945bd74e0ec24133ceb5bac59009cda1cb9f3", size = 73070, upload-time = "2025-08-11T12:57:52.854Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/94/54/e7d793b573f298e1c9013b8c4dade17d481164aa517d1d7148619c2cedbf/markdown_it_py-4.0.0-py3-none-any.whl", hash = "sha256:87327c59b172c5011896038353a81343b6754500a08cd7a4973bb48c6d578147", size = 87321, upload-time = "2025-08-11T12:57:51.923Z" }, + { name = "altair", specifier = ">=5.4,<6" }, + { name = "beautifulsoup4", specifier = ">=4.12,<5" }, + { name = "faiss-cpu", specifier = ">=1.9,<2" }, + { name = "matplotlib", specifier = ">=3.9,<4" }, + { name = "numpy", specifier = ">=2.0,<3" }, + { name = "sentence-transformers", specifier = ">=3.4,<4" }, + { name = "torch", specifier = ">=2.5,<3", index = "https://download.pytorch.org/whl/cpu" }, ] [[package]] @@ -640,15 +629,6 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/5d/49/d651878698a0b67f23aa28e17f45a6d6dd3d3f933fa29087fa4ce5947b5a/matplotlib-3.10.8-cp314-cp314t-win_arm64.whl", hash = "sha256:113bb52413ea508ce954a02c10ffd0d565f9c3bc7f2eddc27dfe1731e71c7b5f", size = 8192560, upload-time = "2025-12-10T22:56:38.008Z" }, ] -[[package]] -name = "mdurl" -version = "0.1.2" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/d6/54/cfe61301667036ec958cb99bd3efefba235e65cdeb9c84d24a8293ba1d90/mdurl-0.1.2.tar.gz", hash = "sha256:bb413d29f5eea38f31dd4754dd7377d4465116fb207585f97bf925588687c1ba", size = 8729, upload-time = "2022-08-14T12:40:10.846Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/b3/38/89ba8ad64ae25be8de66a6d463314cf1eb366222074cfda9ee839c56a4b4/mdurl-0.1.2-py3-none-any.whl", hash = "sha256:84008a41e51615a49fc9966191ff91509e3c40b939176e643fd50a5c2196b8f8", size = 9979, upload-time = "2022-08-14T12:40:09.779Z" }, -] - [[package]] name = "mpmath" version = "1.3.0" @@ -815,15 +795,6 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/ec/d2/de599c95ba0a973b94410477f8bf0b6f0b5e67360eb89bcb1ad365258beb/pillow-12.1.1-cp314-cp314t-win_arm64.whl", hash = "sha256:7b03048319bfc6170e93bd60728a1af51d3dd7704935feb228c4d4faab35d334", size = 2546446, upload-time = "2026-02-11T04:22:50.342Z" }, ] -[[package]] -name = "pygments" -version = "2.19.2" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/b0/77/a5b8c569bf593b0140bde72ea885a803b82086995367bf2037de0159d924/pygments-2.19.2.tar.gz", hash = "sha256:636cb2477cec7f8952536970bc533bc43743542f70392ae026374600add5b887", size = 4968631, upload-time = "2025-06-21T13:39:12.283Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/c7/21/705964c7812476f378728bdf590ca4b771ec72385c533964653c68e86bdc/pygments-2.19.2-py3-none-any.whl", hash = "sha256:86540386c03d588bb81d44bc3928634ff26449851e99741617ecb9037ee5ec0b", size = 1225217, upload-time = "2025-06-21T13:39:07.939Z" }, -] - [[package]] name = "pyparsing" version = "3.3.2" @@ -994,16 +965,18 @@ wheels = [ ] [[package]] -name = "rich" -version = "14.3.3" +name = "requests" +version = "2.33.1" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "markdown-it-py" }, - { name = "pygments" }, + { name = "certifi" }, + { name = "charset-normalizer" }, + { name = "idna" }, + { name = "urllib3" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/b3/c6/f3b320c27991c46f43ee9d856302c70dc2d0fb2dba4842ff739d5f46b393/rich-14.3.3.tar.gz", hash = "sha256:b8daa0b9e4eef54dd8cf7c86c03713f53241884e814f4e2f5fb342fe520f639b", size = 230582, upload-time = "2026-02-19T17:23:12.474Z" } +sdist = { url = "https://files.pythonhosted.org/packages/5f/a4/98b9c7c6428a668bf7e42ebb7c79d576a1c3c1e3ae2d47e674b468388871/requests-2.33.1.tar.gz", hash = "sha256:18817f8c57c6263968bc123d237e3b8b08ac046f5456bd1e307ee8f4250d3517", size = 134120, upload-time = "2026-03-30T16:09:15.531Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/14/25/b208c5683343959b670dc001595f2f3737e051da617f66c31f7c4fa93abc/rich-14.3.3-py3-none-any.whl", hash = "sha256:793431c1f8619afa7d3b52b2cdec859562b950ea0d4b6b505397612db8d5362d", size = 310458, upload-time = "2026-02-19T17:23:13.732Z" }, + { url = "https://files.pythonhosted.org/packages/d7/8e/7540e8a2036f79a125c1d2ebadf69ed7901608859186c856fa0388ef4197/requests-2.33.1-py3-none-any.whl", hash = "sha256:4e6d1ef462f3626a1f0a0a9c42dd93c63bad33f9f1c1937509b8c5c8718ab56a", size = 64947, upload-time = "2026-03-30T16:09:13.83Z" }, ] [[package]] @@ -1216,22 +1189,21 @@ wheels = [ [[package]] name = "sentence-transformers" -version = "5.3.0" +version = "3.4.1" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "huggingface-hub" }, - { name = "numpy" }, + { name = "pillow" }, { name = "scikit-learn" }, { name = "scipy" }, { name = "torch", version = "2.10.0", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "sys_platform == 'darwin'" }, { name = "torch", version = "2.10.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "sys_platform != 'darwin'" }, { name = "tqdm" }, { name = "transformers" }, - { name = "typing-extensions" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/fe/26/448453925b6ce0c29d8b54327caa71ee4835511aef02070467402273079c/sentence_transformers-5.3.0.tar.gz", hash = "sha256:414a0a881f53a4df0e6cbace75f823bfcb6b94d674c42a384b498959b7c065e2", size = 403330, upload-time = "2026-03-12T14:53:40.778Z" } +sdist = { url = "https://files.pythonhosted.org/packages/16/74/aca6f8a2b8d62b4daf8c9a0c49d2aa573381caf47dc35cbb343389229376/sentence_transformers-3.4.1.tar.gz", hash = "sha256:68daa57504ff548340e54ff117bd86c1d2f784b21e0fb2689cf3272b8937b24b", size = 223898, upload-time = "2025-01-29T14:25:55.982Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/e2/9c/2fa7224058cad8df68d84bafee21716f30892cecc7ad1ad73bde61d23754/sentence_transformers-5.3.0-py3-none-any.whl", hash = "sha256:dca6b98db790274a68185d27a65801b58b4caf653a4e556b5f62827509347c7d", size = 512390, upload-time = "2026-03-12T14:53:39.035Z" }, + { url = "https://files.pythonhosted.org/packages/05/89/7eb147a37b7f31d3c815543df539d8b8d0425e93296c875cc87719d65232/sentence_transformers-3.4.1-py3-none-any.whl", hash = "sha256:e026dc6d56801fd83f74ad29a30263f401b4b522165c19386d8bc10dcca805da", size = 275896, upload-time = "2025-01-29T14:25:53.614Z" }, ] [[package]] @@ -1243,15 +1215,6 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/9d/76/f789f7a86709c6b087c5a2f52f911838cad707cc613162401badc665acfe/setuptools-82.0.1-py3-none-any.whl", hash = "sha256:a59e362652f08dcd477c78bb6e7bd9d80a7995bc73ce773050228a348ce2e5bb", size = 1006223, upload-time = "2026-03-09T12:47:15.026Z" }, ] -[[package]] -name = "shellingham" -version = "1.5.4" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/58/15/8b3609fd3830ef7b27b655beb4b4e9c62313a4e8da8c676e142cc210d58e/shellingham-1.5.4.tar.gz", hash = "sha256:8dbca0739d487e5bd35ab3ca4b36e11c4078f3a234bfce294b0a0291363404de", size = 10310, upload-time = "2023-10-24T04:13:40.426Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/e0/f9/0595336914c5619e5f28a1fb793285925a8cd4b432c9da0a987836c7f822/shellingham-1.5.4-py2.py3-none-any.whl", hash = "sha256:7ecfff8f2fd72616f7481040475a65b2bf8af90a56c89140852d1120324e8686", size = 9755, upload-time = "2023-10-24T04:13:38.866Z" }, -] - [[package]] name = "six" version = "1.17.0" @@ -1334,15 +1297,15 @@ dependencies = [ { name = "typing-extensions", marker = "sys_platform == 'darwin'" }, ] wheels = [ - { url = "https://download.pytorch.org/whl/cpu/torch-2.10.0-1-cp312-none-macosx_11_0_arm64.whl", hash = "sha256:7fbbf409143a4fe0812a40c0b46a436030a7e1d14fe8c5234dfbe44df47f617e" }, - { url = "https://download.pytorch.org/whl/cpu/torch-2.10.0-1-cp313-none-macosx_11_0_arm64.whl", hash = "sha256:b39cafff7229699f9d6e172cac74d85fd71b568268e439e08d9c540e54732a3e" }, - { url = "https://download.pytorch.org/whl/cpu/torch-2.10.0-2-cp312-none-macosx_11_0_arm64.whl", hash = "sha256:358bd7125cbec6e692d60618a5eec7f55a51b29e3652a849fd42af021d818023" }, - { url = "https://download.pytorch.org/whl/cpu/torch-2.10.0-2-cp313-none-macosx_11_0_arm64.whl", hash = "sha256:470de4176007c2700735e003a830828a88d27129032a3add07291da07e2a94e8" }, - { url = "https://download.pytorch.org/whl/cpu/torch-2.10.0-cp312-none-macosx_11_0_arm64.whl", hash = "sha256:45a1c5057629444aeb1c452c18298fa7f30f2f7aeadd4dc41f9d340980294407" }, - { url = "https://download.pytorch.org/whl/cpu/torch-2.10.0-cp313-cp313t-macosx_14_0_arm64.whl", hash = "sha256:339e05502b6c839db40e88720cb700f5a3b50cda332284873e851772d41b2c1e" }, - { url = "https://download.pytorch.org/whl/cpu/torch-2.10.0-cp313-none-macosx_11_0_arm64.whl", hash = "sha256:840351da59cedb7bcbc51981880050813c19ef6b898a7fecf73a3afc71aff3fe" }, - { url = "https://download.pytorch.org/whl/cpu/torch-2.10.0-cp314-cp314-macosx_14_0_arm64.whl", hash = "sha256:c88b1129fd4e14f0f882963c6728315caae35d2f47374d17edeed1edc7697497" }, - { url = "https://download.pytorch.org/whl/cpu/torch-2.10.0-cp314-cp314t-macosx_14_0_arm64.whl", hash = "sha256:f4bea7dc451267c028593751612ad559299589304e68df54ae7672427893ff2c" }, + { url = "https://download-r2.pytorch.org/whl/cpu/torch-2.10.0-1-cp312-none-macosx_11_0_arm64.whl", hash = "sha256:7fbbf409143a4fe0812a40c0b46a436030a7e1d14fe8c5234dfbe44df47f617e" }, + { url = "https://download-r2.pytorch.org/whl/cpu/torch-2.10.0-1-cp313-none-macosx_11_0_arm64.whl", hash = "sha256:b39cafff7229699f9d6e172cac74d85fd71b568268e439e08d9c540e54732a3e" }, + { url = "https://download-r2.pytorch.org/whl/cpu/torch-2.10.0-2-cp312-none-macosx_11_0_arm64.whl", hash = "sha256:358bd7125cbec6e692d60618a5eec7f55a51b29e3652a849fd42af021d818023" }, + { url = "https://download-r2.pytorch.org/whl/cpu/torch-2.10.0-2-cp313-none-macosx_11_0_arm64.whl", hash = "sha256:470de4176007c2700735e003a830828a88d27129032a3add07291da07e2a94e8" }, + { url = "https://download-r2.pytorch.org/whl/cpu/torch-2.10.0-cp312-none-macosx_11_0_arm64.whl", hash = "sha256:45a1c5057629444aeb1c452c18298fa7f30f2f7aeadd4dc41f9d340980294407" }, + { url = "https://download-r2.pytorch.org/whl/cpu/torch-2.10.0-cp313-cp313t-macosx_14_0_arm64.whl", hash = "sha256:339e05502b6c839db40e88720cb700f5a3b50cda332284873e851772d41b2c1e" }, + { url = "https://download-r2.pytorch.org/whl/cpu/torch-2.10.0-cp313-none-macosx_11_0_arm64.whl", hash = "sha256:840351da59cedb7bcbc51981880050813c19ef6b898a7fecf73a3afc71aff3fe" }, + { url = "https://download-r2.pytorch.org/whl/cpu/torch-2.10.0-cp314-cp314-macosx_14_0_arm64.whl", hash = "sha256:c88b1129fd4e14f0f882963c6728315caae35d2f47374d17edeed1edc7697497" }, + { url = "https://download-r2.pytorch.org/whl/cpu/torch-2.10.0-cp314-cp314t-macosx_14_0_arm64.whl", hash = "sha256:f4bea7dc451267c028593751612ad559299589304e68df54ae7672427893ff2c" }, ] [[package]] @@ -1362,33 +1325,33 @@ dependencies = [ { name = "typing-extensions", marker = "sys_platform != 'darwin'" }, ] wheels = [ - { url = "https://download.pytorch.org/whl/cpu/torch-2.10.0%2Bcpu-cp312-cp312-linux_aarch64.whl", hash = "sha256:8de5a36371b775e2d4881ed12cc7f2de400b1ad3d728aa74a281f649f87c9b8c" }, - { url = "https://download.pytorch.org/whl/cpu/torch-2.10.0%2Bcpu-cp312-cp312-linux_s390x.whl", hash = "sha256:9accc30b56cb6756d4a9d04fcb8ebc0bb68c7d55c1ed31a8657397d316d31596" }, - { url = "https://download.pytorch.org/whl/cpu/torch-2.10.0%2Bcpu-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:179451716487f8cb09b56459667fa1f5c4c0946c1e75fbeae77cfc40a5768d87" }, - { url = "https://download.pytorch.org/whl/cpu/torch-2.10.0%2Bcpu-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:ee40b8a4b4b2cf0670c6fd4f35a7ef23871af956fecb238fbf5da15a72650b1d" }, - { url = "https://download.pytorch.org/whl/cpu/torch-2.10.0%2Bcpu-cp312-cp312-win_amd64.whl", hash = "sha256:21cb5436978ef47c823b7a813ff0f8c2892e266cfe0f1d944879b5fba81bf4e1" }, - { url = "https://download.pytorch.org/whl/cpu/torch-2.10.0%2Bcpu-cp312-cp312-win_arm64.whl", hash = "sha256:3eaa727e6a73affa61564d86b9d03191df45c8650d0666bd3d57c8597ef61e78" }, - { url = "https://download.pytorch.org/whl/cpu/torch-2.10.0%2Bcpu-cp313-cp313-linux_aarch64.whl", hash = "sha256:fd215f3d0f681905c5b56b0630a3d666900a37fcc3ca5b937f95275c66f9fd9c" }, - { url = "https://download.pytorch.org/whl/cpu/torch-2.10.0%2Bcpu-cp313-cp313-linux_s390x.whl", hash = "sha256:170a0623108055be5199370335cf9b41ba6875b3cb6f086db4aee583331a4899" }, - { url = "https://download.pytorch.org/whl/cpu/torch-2.10.0%2Bcpu-cp313-cp313-manylinux_2_28_aarch64.whl", hash = "sha256:e51994492cdb76edce29da88de3672a3022f9ef0ffd90345436948d4992be2c7" }, - { url = "https://download.pytorch.org/whl/cpu/torch-2.10.0%2Bcpu-cp313-cp313-manylinux_2_28_x86_64.whl", hash = "sha256:8d316e5bf121f1eab1147e49ad0511a9d92e4c45cc357d1ab0bee440da71a095" }, - { url = "https://download.pytorch.org/whl/cpu/torch-2.10.0%2Bcpu-cp313-cp313-win_amd64.whl", hash = "sha256:b719da5af01b59126ac13eefd6ba3dd12d002dc0e8e79b8b365e55267a8189d3" }, - { url = "https://download.pytorch.org/whl/cpu/torch-2.10.0%2Bcpu-cp313-cp313-win_arm64.whl", hash = "sha256:b67d91326e4ed9eccbd6b7d84ed7ffa43f93103aa3f0b24145f3001f3b11b714" }, - { url = "https://download.pytorch.org/whl/cpu/torch-2.10.0%2Bcpu-cp313-cp313t-linux_aarch64.whl", hash = "sha256:5af75e5f49de21b0bdf7672bc27139bd285f9e8dbcabe2d617a2eb656514ac36" }, - { url = "https://download.pytorch.org/whl/cpu/torch-2.10.0%2Bcpu-cp313-cp313t-linux_s390x.whl", hash = "sha256:ba51ef01a510baf8fff576174f702c47e1aa54389a9f1fba323bb1a5003ff0bf" }, - { url = "https://download.pytorch.org/whl/cpu/torch-2.10.0%2Bcpu-cp313-cp313t-manylinux_2_28_aarch64.whl", hash = "sha256:0fedcb1a77e8f2aaf7bfd21591bf6d1e0b207473268c9be16b17cb7783253969" }, - { url = "https://download.pytorch.org/whl/cpu/torch-2.10.0%2Bcpu-cp313-cp313t-manylinux_2_28_x86_64.whl", hash = "sha256:106dd1930cb30a4a337366ba3f9b25318ebf940f51fd46f789281dd9e736bdc4" }, - { url = "https://download.pytorch.org/whl/cpu/torch-2.10.0%2Bcpu-cp313-cp313t-win_amd64.whl", hash = "sha256:eb1bde1ce198f05c8770017de27e001d404499cf552aaaa014569eff56ca25c0" }, - { url = "https://download.pytorch.org/whl/cpu/torch-2.10.0%2Bcpu-cp314-cp314-linux_aarch64.whl", hash = "sha256:ea2bcc9d1fca66974a71d4bf9a502539283f35d61fcab5a799b4e120846f1e02" }, - { url = "https://download.pytorch.org/whl/cpu/torch-2.10.0%2Bcpu-cp314-cp314-linux_s390x.whl", hash = "sha256:f8294fd2fc6dd8f4435a891a0122307a043b14b21f0dac1bca63c85bfb59e586" }, - { url = "https://download.pytorch.org/whl/cpu/torch-2.10.0%2Bcpu-cp314-cp314-manylinux_2_28_aarch64.whl", hash = "sha256:a28fdbcfa2fbacffec81300f24dd1bed2b0ccfdbed107a823cff12bc1db070f6" }, - { url = "https://download.pytorch.org/whl/cpu/torch-2.10.0%2Bcpu-cp314-cp314-manylinux_2_28_x86_64.whl", hash = "sha256:aada8afc068add586464b2a55adb7cc9091eec55caf5320447204741cb6a0604" }, - { url = "https://download.pytorch.org/whl/cpu/torch-2.10.0%2Bcpu-cp314-cp314-win_amd64.whl", hash = "sha256:2adc71fe471e98a608723bfc837f7e1929885ebb912c693597711e139c1cda41" }, - { url = "https://download.pytorch.org/whl/cpu/torch-2.10.0%2Bcpu-cp314-cp314t-linux_aarch64.whl", hash = "sha256:9412bd37b70f5ebd1205242c4ba4cabae35a605947f2b30806d5c9b467936db9" }, - { url = "https://download.pytorch.org/whl/cpu/torch-2.10.0%2Bcpu-cp314-cp314t-linux_s390x.whl", hash = "sha256:e71c476517c33e7db69825a9ff46c7f47a723ec4dac5b2481cff4246d1c632be" }, - { url = "https://download.pytorch.org/whl/cpu/torch-2.10.0%2Bcpu-cp314-cp314t-manylinux_2_28_aarch64.whl", hash = "sha256:23882f8d882460aca809882fc42f5e343bf07585274f929ced00177d1be1eb67" }, - { url = "https://download.pytorch.org/whl/cpu/torch-2.10.0%2Bcpu-cp314-cp314t-manylinux_2_28_x86_64.whl", hash = "sha256:4fcd8b4cc2ae20f2b7749fb275349c55432393868778c2d50a08e81d5ee5591e" }, - { url = "https://download.pytorch.org/whl/cpu/torch-2.10.0%2Bcpu-cp314-cp314t-win_amd64.whl", hash = "sha256:ffc8da9a1341092d6a90cb5b1c1a33cd61abf0fb43f0cd88443c27fa372c26ae" }, + { url = "https://download-r2.pytorch.org/whl/cpu/torch-2.10.0%2Bcpu-cp312-cp312-linux_aarch64.whl", hash = "sha256:8de5a36371b775e2d4881ed12cc7f2de400b1ad3d728aa74a281f649f87c9b8c" }, + { url = "https://download-r2.pytorch.org/whl/cpu/torch-2.10.0%2Bcpu-cp312-cp312-linux_s390x.whl", hash = "sha256:9accc30b56cb6756d4a9d04fcb8ebc0bb68c7d55c1ed31a8657397d316d31596" }, + { url = "https://download-r2.pytorch.org/whl/cpu/torch-2.10.0%2Bcpu-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:179451716487f8cb09b56459667fa1f5c4c0946c1e75fbeae77cfc40a5768d87" }, + { url = "https://download-r2.pytorch.org/whl/cpu/torch-2.10.0%2Bcpu-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:ee40b8a4b4b2cf0670c6fd4f35a7ef23871af956fecb238fbf5da15a72650b1d" }, + { url = "https://download-r2.pytorch.org/whl/cpu/torch-2.10.0%2Bcpu-cp312-cp312-win_amd64.whl", hash = "sha256:21cb5436978ef47c823b7a813ff0f8c2892e266cfe0f1d944879b5fba81bf4e1" }, + { url = "https://download-r2.pytorch.org/whl/cpu/torch-2.10.0%2Bcpu-cp312-cp312-win_arm64.whl", hash = "sha256:3eaa727e6a73affa61564d86b9d03191df45c8650d0666bd3d57c8597ef61e78" }, + { url = "https://download-r2.pytorch.org/whl/cpu/torch-2.10.0%2Bcpu-cp313-cp313-linux_aarch64.whl", hash = "sha256:fd215f3d0f681905c5b56b0630a3d666900a37fcc3ca5b937f95275c66f9fd9c" }, + { url = "https://download-r2.pytorch.org/whl/cpu/torch-2.10.0%2Bcpu-cp313-cp313-linux_s390x.whl", hash = "sha256:170a0623108055be5199370335cf9b41ba6875b3cb6f086db4aee583331a4899" }, + { url = "https://download-r2.pytorch.org/whl/cpu/torch-2.10.0%2Bcpu-cp313-cp313-manylinux_2_28_aarch64.whl", hash = "sha256:e51994492cdb76edce29da88de3672a3022f9ef0ffd90345436948d4992be2c7" }, + { url = "https://download-r2.pytorch.org/whl/cpu/torch-2.10.0%2Bcpu-cp313-cp313-manylinux_2_28_x86_64.whl", hash = "sha256:8d316e5bf121f1eab1147e49ad0511a9d92e4c45cc357d1ab0bee440da71a095" }, + { url = "https://download-r2.pytorch.org/whl/cpu/torch-2.10.0%2Bcpu-cp313-cp313-win_amd64.whl", hash = "sha256:b719da5af01b59126ac13eefd6ba3dd12d002dc0e8e79b8b365e55267a8189d3" }, + { url = "https://download-r2.pytorch.org/whl/cpu/torch-2.10.0%2Bcpu-cp313-cp313-win_arm64.whl", hash = "sha256:b67d91326e4ed9eccbd6b7d84ed7ffa43f93103aa3f0b24145f3001f3b11b714" }, + { url = "https://download-r2.pytorch.org/whl/cpu/torch-2.10.0%2Bcpu-cp313-cp313t-linux_aarch64.whl", hash = "sha256:5af75e5f49de21b0bdf7672bc27139bd285f9e8dbcabe2d617a2eb656514ac36" }, + { url = "https://download-r2.pytorch.org/whl/cpu/torch-2.10.0%2Bcpu-cp313-cp313t-linux_s390x.whl", hash = "sha256:ba51ef01a510baf8fff576174f702c47e1aa54389a9f1fba323bb1a5003ff0bf" }, + { url = "https://download-r2.pytorch.org/whl/cpu/torch-2.10.0%2Bcpu-cp313-cp313t-manylinux_2_28_aarch64.whl", hash = "sha256:0fedcb1a77e8f2aaf7bfd21591bf6d1e0b207473268c9be16b17cb7783253969" }, + { url = "https://download-r2.pytorch.org/whl/cpu/torch-2.10.0%2Bcpu-cp313-cp313t-manylinux_2_28_x86_64.whl", hash = "sha256:106dd1930cb30a4a337366ba3f9b25318ebf940f51fd46f789281dd9e736bdc4" }, + { url = "https://download-r2.pytorch.org/whl/cpu/torch-2.10.0%2Bcpu-cp313-cp313t-win_amd64.whl", hash = "sha256:eb1bde1ce198f05c8770017de27e001d404499cf552aaaa014569eff56ca25c0" }, + { url = "https://download-r2.pytorch.org/whl/cpu/torch-2.10.0%2Bcpu-cp314-cp314-linux_aarch64.whl", hash = "sha256:ea2bcc9d1fca66974a71d4bf9a502539283f35d61fcab5a799b4e120846f1e02" }, + { url = "https://download-r2.pytorch.org/whl/cpu/torch-2.10.0%2Bcpu-cp314-cp314-linux_s390x.whl", hash = "sha256:f8294fd2fc6dd8f4435a891a0122307a043b14b21f0dac1bca63c85bfb59e586" }, + { url = "https://download-r2.pytorch.org/whl/cpu/torch-2.10.0%2Bcpu-cp314-cp314-manylinux_2_28_aarch64.whl", hash = "sha256:a28fdbcfa2fbacffec81300f24dd1bed2b0ccfdbed107a823cff12bc1db070f6" }, + { url = "https://download-r2.pytorch.org/whl/cpu/torch-2.10.0%2Bcpu-cp314-cp314-manylinux_2_28_x86_64.whl", hash = "sha256:aada8afc068add586464b2a55adb7cc9091eec55caf5320447204741cb6a0604" }, + { url = "https://download-r2.pytorch.org/whl/cpu/torch-2.10.0%2Bcpu-cp314-cp314-win_amd64.whl", hash = "sha256:2adc71fe471e98a608723bfc837f7e1929885ebb912c693597711e139c1cda41" }, + { url = "https://download-r2.pytorch.org/whl/cpu/torch-2.10.0%2Bcpu-cp314-cp314t-linux_aarch64.whl", hash = "sha256:9412bd37b70f5ebd1205242c4ba4cabae35a605947f2b30806d5c9b467936db9" }, + { url = "https://download-r2.pytorch.org/whl/cpu/torch-2.10.0%2Bcpu-cp314-cp314t-linux_s390x.whl", hash = "sha256:e71c476517c33e7db69825a9ff46c7f47a723ec4dac5b2481cff4246d1c632be" }, + { url = "https://download-r2.pytorch.org/whl/cpu/torch-2.10.0%2Bcpu-cp314-cp314t-manylinux_2_28_aarch64.whl", hash = "sha256:23882f8d882460aca809882fc42f5e343bf07585274f929ced00177d1be1eb67" }, + { url = "https://download-r2.pytorch.org/whl/cpu/torch-2.10.0%2Bcpu-cp314-cp314t-manylinux_2_28_x86_64.whl", hash = "sha256:4fcd8b4cc2ae20f2b7749fb275349c55432393868778c2d50a08e81d5ee5591e" }, + { url = "https://download-r2.pytorch.org/whl/cpu/torch-2.10.0%2Bcpu-cp314-cp314t-win_amd64.whl", hash = "sha256:ffc8da9a1341092d6a90cb5b1c1a33cd61abf0fb43f0cd88443c27fa372c26ae" }, ] [[package]] @@ -1405,37 +1368,23 @@ wheels = [ [[package]] name = "transformers" -version = "5.3.0" +version = "4.57.6" source = { registry = "https://pypi.org/simple" } dependencies = [ + { name = "filelock" }, { name = "huggingface-hub" }, { name = "numpy" }, { name = "packaging" }, { name = "pyyaml" }, { name = "regex" }, + { name = "requests" }, { name = "safetensors" }, { name = "tokenizers" }, { name = "tqdm" }, - { name = "typer" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/fc/1a/70e830d53ecc96ce69cfa8de38f163712d2b43ac52fbd743f39f56025c31/transformers-5.3.0.tar.gz", hash = "sha256:009555b364029da9e2946d41f1c5de9f15e6b1df46b189b7293f33a161b9c557", size = 8830831, upload-time = "2026-03-04T17:41:46.119Z" } +sdist = { url = "https://files.pythonhosted.org/packages/c4/35/67252acc1b929dc88b6602e8c4a982e64f31e733b804c14bc24b47da35e6/transformers-4.57.6.tar.gz", hash = "sha256:55e44126ece9dc0a291521b7e5492b572e6ef2766338a610b9ab5afbb70689d3", size = 10134912, upload-time = "2026-01-16T10:38:39.284Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/b8/88/ae8320064e32679a5429a2c9ebbc05c2bf32cefb6e076f9b07f6d685a9b4/transformers-5.3.0-py3-none-any.whl", hash = "sha256:50ac8c89c3c7033444fb3f9f53138096b997ebb70d4b5e50a2e810bf12d3d29a", size = 10661827, upload-time = "2026-03-04T17:41:42.722Z" }, -] - -[[package]] -name = "typer" -version = "0.24.1" -source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "annotated-doc" }, - { name = "click" }, - { name = "rich" }, - { name = "shellingham" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/f5/24/cb09efec5cc954f7f9b930bf8279447d24618bb6758d4f6adf2574c41780/typer-0.24.1.tar.gz", hash = "sha256:e39b4732d65fbdcde189ae76cf7cd48aeae72919dea1fdfc16593be016256b45", size = 118613, upload-time = "2026-02-21T16:54:40.609Z" } -wheels = [ - { url = "https://files.pythonhosted.org/packages/4a/91/48db081e7a63bb37284f9fbcefda7c44c277b18b0e13fbc36ea2335b71e6/typer-0.24.1-py3-none-any.whl", hash = "sha256:112c1f0ce578bfb4cab9ffdabc68f031416ebcc216536611ba21f04e9aa84c9e", size = 56085, upload-time = "2026-02-21T16:54:41.616Z" }, + { url = "https://files.pythonhosted.org/packages/03/b8/e484ef633af3887baeeb4b6ad12743363af7cce68ae51e938e00aaa0529d/transformers-4.57.6-py3-none-any.whl", hash = "sha256:4c9e9de11333ddfe5114bc872c9f370509198acf0b87a832a0ab9458e2bd0550", size = 11993498, upload-time = "2026-01-16T10:38:31.289Z" }, ] [[package]] @@ -1446,3 +1395,12 @@ sdist = { url = "https://files.pythonhosted.org/packages/72/94/1a15dd82efb362ac8 wheels = [ { url = "https://files.pythonhosted.org/packages/18/67/36e9267722cc04a6b9f15c7f3441c2363321a3ea07da7ae0c0707beb2a9c/typing_extensions-4.15.0-py3-none-any.whl", hash = "sha256:f0fa19c6845758ab08074a0cfa8b7aecb71c999ca73d62883bc25cc018c4e548", size = 44614, upload-time = "2025-08-25T13:49:24.86Z" }, ] + +[[package]] +name = "urllib3" +version = "2.6.3" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/c7/24/5f1b3bdffd70275f6661c76461e25f024d5a38a46f04aaca912426a2b1d3/urllib3-2.6.3.tar.gz", hash = "sha256:1b62b6884944a57dbe321509ab94fd4d3b307075e0c2eae991ac71ee15ad38ed", size = 435556, upload-time = "2026-01-07T16:24:43.925Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/39/08/aaaad47bc4e9dc8c725e68f9d04865dbcb2052843ff09c97b08904852d84/urllib3-2.6.3-py3-none-any.whl", hash = "sha256:bf272323e553dfb2e87d9bfd225ca7b0f467b919d7bbd355436d3fd37cb0acd4", size = 131584, upload-time = "2026-01-07T16:24:42.685Z" }, +]