diff --git a/task3/~$03_allocation.xlsx b/task3/~$03_allocation.xlsx
deleted file mode 100644
index 5ffdaf9..0000000
Binary files a/task3/~$03_allocation.xlsx and /dev/null differ
diff --git a/vscode/.Rhistory b/vscode/.Rhistory
deleted file mode 100755
index 4d2e445..0000000
--- a/vscode/.Rhistory
+++ /dev/null
@@ -1,512 +0,0 @@
-df = tibble(
-a = c(1,4,3,7),
-b = a + rnorm(4)
-)
-df
-df %>%
-pivot_longer(1:2, names_to = "var", values_to = "val")
-df %>%
-pivot_longer(1:2, names_to = "var", values_to = "val") %>%
-ggplot(aes(y = val, color = var)) +
-geom_point()
-df %>%
-pivot_longer(1:2, names_to = "var", values_to = "val") %>%
-ggplot(aes(x = 1:4, y = val, color = var)) +
-geom_point()
-df %>%
-pivot_longer(1:2, names_to = "var", values_to = "val") %>%
-mutate(x = 1:n()) %>%
-ggplot(aes(x = x, y = val, color = var)) +
-geom_point()
-set.seed(1)
-df = tibble(
-x = 1:4,
-a = c(1,4,3,7),
-b = a + rnorm(4)
-)
-df %>%
-pivot_longer(-x, names_to = "var", values_to = "val") %>%
-mutate(x = 1:n()) %>%
-ggplot(aes(x = x, y = val, color = var)) +
-geom_point()
-df %>%
-pivot_longer(-x, names_to = "var", values_to = "val") %>%
-ggplot(aes(x = x, y = val, color = var)) +
-geom_point()
-?geom_ribbon
-df %>%
-pivot_longer(-x, names_to = "var", values_to = "val")
-df %>%
-pivot_longer(-x, names_to = "var", values_to = "val") %>%
-ggplot(aes(x = x, y = val, color = var)) +
-geom_point() +
-geom_ribbon(ymin = min(val), ymax = max(val))
-df %>%
-pivot_longer(-x, names_to = "var", values_to = "val") %>%
-ggplot(aes(x = x, y = val, color = var)) +
-geom_point() +
-geom_ribbon(aes(ymin = min(val), ymax = max(val)))
-df %>%
-pivot_longer(-x, names_to = "var", values_to = "val") %>%
-ggplot(aes(x = x, y = val, color = var)) +
-geom_point() +
-geom_ribbon(aes(ymin = val, ymax = val))
-df
-df %>%
-ggplot(aes(x = x)) +
-geom_ribbon(aes(ymin = a, ymax = b))
-df %>%
-ggplot(aes(x = x)) +
-geom_errorbar(aes(ymin = a, ymax = b))
-df %>%
-pivot_longer(-x, names_to = "var", values_to = "val")
-df %>%
-pivot_longer(-x, names_to = "var", values_to = "val") %>%
-ggplot(aes(x = x, y = val)) +
-geom_line()
-df %>%
-pivot_longer(-x, names_to = "var", values_to = "val") %>%
-ggplot(aes(x = x, y = val, color = var)) +
-geom_line()
-df %>%
-pivot_longer(-x, names_to = "var", values_to = "val") %>%
-ggplot(aes(x = x, y = val, color = var)) +
-geom_vline()
-?kmeans
-36170/1228
-36170/1338
-library(tidyverse)
-install.packages("D:/gurobi950/win64/R/gurobi_9.5-0.zip", repos = NULL, type = "win.binary")
-install.packages("slam")
-library(gurobi)
-library(gurobi)
-model = list()
-model$A = matrix(c(1,1,0,0,1,1), nrow = 2, byrow = TRUE)
-model$obj = c(1,2,3)
-model$modelsense = "max"
-model$rhs = c(1,1)
-model$sense = c("<=", "<=")
-result = gurobi(model)
-result$objval
-?c_across
-library(tidyverse)
-?c_across
-library(mlr3verse)
-library(mlr3proba)
-library(survival)
-task = tsk("rats")
-learner = lrn("surv.coxh")
-learner = lrn("surv.coxph")
-measure = msr("surv.hung_auc")
-install.packages("survAUC")
-measure = msr("surv.hung_auc")
-pred = learner$train(task)$predict(task)
-pred$score(measure)
-measure = msr("surv.cindex")
-pred$score(measure)
-measure = msr("surv.hung_auc", times = 60)
-pred$score(measure, task)
-task$data()
-pred$score(measure, task, row_ids = 1:270)
-pred = learner$train(task, row_ids = 1:270)$predict(task, row_ids = 271:300)
-pred$score(measure, task)
-pred$score(measure, task, train_set = 1:270)
-pred = learner$train(task)$predict(task)
-pred$score(measure, task, train_set = 1:270)
-?survAUC::AUC.hc()
-learner = lrn("surv.coxph")
-measure = msr("surv.hung_auc", times = 60)
-pred = learner$train(task, row_ids = 1:270)$predict(task, row_ids = 271:300)
-pred$score(measure, task, train_set = 1:270)
-library(tidyverse)
-?mean
-df = tibble(
-x = c(2,NA,5,7),
-y = LETTERS[1:4],
-z = c(5,6,NA,NA)
-)
-df
-df %>%
-mutate(across(where(is.numeric), ~ .x[is.na(.x)] = mean(.x, na.rm = TRUE)))
-?replace_na
-starwars %>%
-mutate(across(where(is.numeric)), ~ replace_na(.x, mean(.x, na.rm = TRUE)))
-starwars %>%
-mutate(across(where(is.numeric), ~ replace_na(.x, mean(.x, na.rm = TRUE))))
-library(tinytex)
-pdflatex("mcmthesis.tex")
-pdflatex("mcmthesis-demo.tex")
-library(tinytex)
-pdflatex(mcmthesis-demo.tex)
-pdflatex("mcmthesis-demo.tex")
-pdflatex("mcmthesis-demo.tex")
-pdflatex("mcmthesis-demo.tex")
-pdflatex("mcmthesis-demo.tex")
-pdflatex("mcmthesis-demo.tex")
-pdflatex("mcmthesis-demo.tex")
-pdflatex("mcmthesis-demo.tex")
-pdflatex("mcmthesis-demo.tex")
-library(tinytex)
-pdflatex("mcmthesis-demo.tex")
-library(timetk)
-holidays <- tk_make_holiday_sequence(
-start_date = "2013-01-01",
-end_date = "2013-12-31",
-calendar = "NYSE")
-holidays
-idx <- tk_make_weekday_sequence("2012",
-remove_weekends = TRUE,
-remove_holidays = TRUE, calendar = "NYSE")
-idx
-tk_get_timeseries_summary(idx)
-idx <- tk_make_weekday_sequence("2012",
-remove_weekends = TRUE,
-remove_holidays = TRUE, calendar = "NYSE")
-tk_get_timeseries_summary(idx)
-tk_make_holiday_sequence("2012", calendar = "NYSE")
-?tk_make_weekday_sequence
-?slidify
-FB <- FANG %>% filter(symbol == "FB")
-library(tidyverse)
-library(tidyquant)
-FB <- FANG %>% filter(symbol == "FB")
-mean_roll_5 <- slidify(mean, .period = 5, .align = "right")
-FB %>%
-mutate(rolling_mean_5 = mean_roll_5(adjusted))
-as_mapper(~ .x ^ 2 + 1)
-?roll_toslide
-?roll_tos_lide
-?roll_to_slide
-?pslide
-remove.packages("timetk")
-install.packages("timetk")
-install.packages("timetk")
-idx <- tk_make_weekday_sequence("2012",
-remove_weekends = TRUE,
-remove_holidays = TRUE, calendar = "NYSE")
-tk_get_timeseries_summary(idx)
-library(timetk)
-idx <- tk_make_weekday_sequence("2012",
-remove_weekends = TRUE,
-remove_holidays = TRUE, calendar = "NYSE")
-tk_get_timeseries_summary(idx)
-?tk_make_weekday_sequence
-holidays <- tk_make_holiday_sequence(
-start_date = "2016",
-end_date = "2017",
-calendar = "NYSE")
-weekends <- tk_make_weekend_sequence(
-start_date = "2016",
-end_date = "2017")
-holidays
-weekends
-weekends <- tk_make_weekend_sequence(
-start_date = "2016-01-01",
-end_date = "2017-12-31")
-weekends
-weekends <- tk_make_weekdays_sequence(
-start_date = "2016-01-01",
-end_date = "2017-12-31")
-weekends <- tk_make_weekday_sequence(
-start_date = "2016-01-01",
-end_date = "2017-12-31")
-weekends
-library(tinytex)
-pdflatex("mcmthesis-demo.tex")
-pdflatex("mcmthesis-demo.tex")
-pdflatex("mcmthesis-demo.tex")
-library(tinytex)
-pdflatex("mcmthesis-demo.tex")
-pdflatex("mcmthesis-demo.tex")
-pdflatex("mcmthesis-demo.tex")
-pdflatex("mcmthesis-demo.tex")
-pdflatex("mcmthesis-demo.tex")
-library(lubridate)
-begin = ymd_hm("2019-08-10 14:00")
-end = ymd_hm("2020-03-05 18:15")
-interval(begin, end)
-begin %--% end
-library(tinytex)
-xelatex("mcmthesis-demo.tex")
-library(tinytex)
-pdflatex("mcmthesis-demo.tex")
-library(tinytex)
-pdflatex("mcmthesis-demo.tex")
-pdflatex("mcmthesis-demo.tex")
-library(tinytex)
-pdflatex("mcmthesis-demo.tex")
-library(tinytex)
-pdflatex("MCM-ICM_Summary.tex")
-pdflatex("MCM-ICM_Summary.tex")
-library(tinytex)
-pdflatex("mcmthesis-demo.tex")
-pdflatex("mcmthesis-demo.tex")
-pdflatex("mcmthesis-demo.tex")
-pdflatex("mcmthesis-demo.tex")
-pdflatex("mcmthesis-demo.tex")
-pdflatex("mcmthesis-demo.tex")
-pdflatex("mcmthesis-demo.tex")
-pdflatex("mcmthesis-demo.tex")
-pdflatex("mcmthesis-demo.tex")
-pdflatex("mcmthesis-demo.tex")
-library(tinytex)
-pdflatex("mcmthesis-demo.tex")
-pdflatex("mcmthesis-demo.tex")
-pdflatex("mcmthesis-demo.tex")
-pdflatex("mcmthesis-demo.tex")
-pdflatex("mcmthesis-demo.tex")
-library(tidyverse)
-df = tribble(
-~A, ~B
-北京, 上海
-df = tribble(
-~A, ~B,
-北京, 上海
-南京, 西安
-df = tribble(
-~A, ~B,
-北京, 上海,
-南京, 西安,
-上海, 南京,
-合肥, 沈阳,
-上海, 北京,
-上海, 南京,
-西安, 南京,
-天津, 广州)
-?tribble
-df = tribble(
-~A, ~B,
-北京, 上海,
-南京, 西安,
-上海, 南京,
-合肥, 沈阳,
-上海, 北京,
-上海, 南京,
-西安, 南京,
-天津, 广州)
-df = tribble(
-~A, ~B,
-"北京", "上海",
-"南京", "西安",
-"上海", "南京",
-"合肥", "沈阳",
-"上海", "北京",
-"上海", "南京",
-"西安", "南京",
-"天津", "广州")
-df
-?distinct
-library(sets)
-install.packages("sets")
-library(sets)
-df %>%
-mutate(C = set(A, B))
-df = tibble(x = c(1:3,3:1,4), y = c(2,4,4,2,1,2,1))
-library(tidyverse)
-df = tibble(x = c(1:3,3:1,4), y = c(2,4,4,2,1,2,1))
-df
-library(tidyverse)
-df = tibble(x = c(1:3,3:1,4), y = c(2,4,4,2,1,2,1))
-df
-f = function(...) {
-dummy = rep(0, 4)
-dummy[c(...)] = 1
-dummy
-}
-df = tibble(x = c(1:3,3:1,NA), y = c(2,4,4,2,1,2,1))
-df
-f = function(...) {
-dummy = rep(NA, 4)
-dummy[c(...)] = 1
-dummy
-}
-df %>%
-mutate(z = pmap(., f)) %>%
-unnest_wider(z, names_sep = "")
-f = function(...) {
-v = c(...)
-dummy = ifelse(any(is.na(v)), rep(NA, 4), rep(0,4))
-dummy[v] = 1
-dummy
-}
-df %>%
-mutate(z = pmap(., f)) %>%
-unnest_wider(z, names_sep = "")
-df
-f = function(...) {
-v = c(...)
-dummy = ifelse(any(is.na(v)), rep(NA,4), rep(0,4))
-dummy[v] = 1
-dummy
-}
-df %>%
-mutate(z = pmap(., f)) %>%
-unnest_wider(z, names_sep = "")
-v = c(NA, 1)
-any(is.na(v))
-dummy = rep(NA, 4)
-dummy[v]
-dummy[!is.na(v)]
-vv
-v
-dummy[v] = 1
-dummy
-v = c(2,4)
-any(is.na(v))
-dummy = rep(0,4)
-dummy
-dummy[v] = 1
-dummy
-df
-f(1,2)
-f(1,NA)
-f(c(1,2))
-df
-v = c(2,4)
-dummy = ifelse(any(is.na(v)), rep(NA,4), rep(0,4))
-dummy
-any(is.na(v))
-rep(0,4)
-rep(NA,4)
-is.na(v)
-v = c(2.4)
-v = c(2,4)
-dummy = ifelse(any(is.na(v)), rep(NA,4), rep(0,4))
-any(is.na(v))
-ifelse(any(is.na(v)), rep(NA,4), rep(0,4))
-ifelse(any(is.na(v)), rep(NA,4), rep(0,4))
-if(any(is.na(v)) rep(NA,4)
-if(any(is.na(v))) rep(NA,4)
-else rep(0,4)
-if(any(is.na(v))) dummy = rep(NA,4)
-else dummy = rep(0,4)
-if(any(is.na(v))) {
-dummy = rep(NA,4)
-} else {
-dummy = rep(0,4)
-}
-f = function(...) {
-v = c(...)
-if(any(is.na(v))) {
-dummy = rep(NA,4)
-} else {
-dummy = rep(0,4)
-}
-dummy[v] = 1
-dummy
-}
-f(2,4)
-f(1,2)
-f(1,NA)
-f(NA,4)
-f = function(...) {
-v = c(...)
-if(any(is.na(v))) {
-dummy = rep(NA,4)
-} else {
-dummy = rep(0,4)
-}
-dummy[v] = 1
-dummy
-}
-df %>%
-mutate(z = pmap(., f)) %>%
-unnest_wider(z, names_sep = "")
-f = function(...) {
-v = c(...)
-dummy = ifelse(any(is.na(v)), rep(NA,4), rep(0,4))
-dummy[v] = 1
-dummy
-}
-df %>%
-mutate(z = pmap(., f)) %>%
-unnest_wider(z, names_sep = "")
-f = function(...) {
-v = c(...)
-dummy = ifelse(all(!is.na(v)), rep(0,4), rep(NA,4))
-dummy[v] = 1
-dummy
-}
-df %>%
-mutate(z = pmap(., f)) %>%
-unnest_wider(z, names_sep = "")
-v = c(2,4)
-ifelse(all(!is.na(v)), rep(0,4), rep(NA,4))
-rep(0,4)
-3827.64 / 600
-(3827.64 - 800) * 0.2 * 0.7
-(3827.64 - 423.87) / 600
-5103.51 * 0.8 * 0.2 * 0.7
-(5103.51 - 571.59) / 800
-12758.78 * 0.8 * 0.2 * 0.7
-(12758.78 - 1428.98) / 2000
-df = tibble(x = c(1:3,3:1,NA), y = c(2,4,NA,2,1,2,1))
-df
-f = function(...) {
-v = c(...)
-if(any(is.na(v))) {
-dummy = rep(NA,4)
-} else {
-dummy = rep(0,4)
-}
-dummy[v] = 1
-dummy
-}
-df %>%
-mutate(z = pmap(., f)) %>%
-unnest_wider(z, names_sep = "")
-df = tibble(x = c(1:3,3:1,NA), y = c(2,4,NA,2,1,2,NA))
-df
-f = function(...) {
-v = c(...)
-if(any(is.na(v))) {
-dummy = rep(NA,4)
-} else {
-dummy = rep(0,4)
-}
-dummy[v] = 1
-dummy
-}
-df %>%
-mutate(z = pmap(., f)) %>%
-unnest_wider(z, names_sep = "")
-df
-df %>%
-mutate(z = pmap(., f)) %>%
-unnest_wider(z, names_sep = "")
-library(tinytex)
-pdflatex("mcmthesis-demo.tex")
-pdflatex("mcmthesis-demo.tex")
-3827.63 / 600
-5.67 / 6.38
-80000 * 0.8887147
-library(tinytex)
-pdflatex("mcmthesis-demo.tex")
-pdflatex("mcmthesis-demo.tex")
-pdflatex("mcmthesis-demo.tex")
-pdflatex("mcmthesis-demo.tex")
-pdflatex("mcmthesis-demo.tex")
-pdflatex("mcmthesis-demo.tex")
-library(tinytex)
-pdflatex("mcmthesis-demo.tex")
-pdflatex("mcmthesis-demo.tex")
-pdflatex("mcmthesis-demo.tex")
-library(tinytex)
-pdflatex("mcmthesis-demo.tex")
-library(tinytex)
-pdflatex("mcmthesis-demo.tex")
-library(tinytex)
-pdflatex("mcmthesis-demo.tex")
-library(tinytex)
-pdflatex("mcmthesis-demo.tex")
-pdflatex("mcmthesis-demo.tex")
-pdflatex("mcmthesis-demo.tex", bib_engine = "biber")
-pdflatex("mcmthesis-demo.tex", bib_engine = "biber")
-library(tinytex)
-pdflatex("mcmthesis-demo.tex", bib_engine = "biber")
-pdflatex("mcmthesis-demo.tex", bib_engine = "biber")
-pdflatex("mcmthesis-demo.tex", bib_engine = "biber")
-pdflatex("mcmthesis-demo.tex", bib_engine = "biber")
-pdflatex("mcmthesis-demo.tex", bib_engine = "biber")
-library(tinytex)
-pdflatex("mcmthesis-demo.tex", bib_engine = "biber")
diff --git a/vscode/figures/fig2.jpg b/vscode/figures/fig2.jpg
deleted file mode 100755
index e54dc2e..0000000
Binary files a/vscode/figures/fig2.jpg and /dev/null differ
diff --git a/vscode/figures/fig24.JPG b/vscode/figures/fig24.JPG
deleted file mode 100755
index 67cdb4d..0000000
Binary files a/vscode/figures/fig24.JPG and /dev/null differ
diff --git a/vscode/figures/mcmthesis-aaa-eps-converted-to.pdf b/vscode/figures/mcmthesis-aaa-eps-converted-to.pdf
deleted file mode 100755
index 1c9e65c..0000000
Binary files a/vscode/figures/mcmthesis-aaa-eps-converted-to.pdf and /dev/null differ
diff --git a/vscode/figures/mcmthesis-logo.pdf b/vscode/figures/mcmthesis-logo.pdf
deleted file mode 100755
index 48e5b43..0000000
Binary files a/vscode/figures/mcmthesis-logo.pdf and /dev/null differ
diff --git a/vscode/mcmthesis-demo.aux b/vscode/mcmthesis-demo.aux
deleted file mode 100755
index 9075002..0000000
--- a/vscode/mcmthesis-demo.aux
+++ /dev/null
@@ -1,172 +0,0 @@
-\relax
-\providecommand\hyper@newdestlabel[2]{}
-\providecommand\HyField@AuxAddToFields[1]{}
-\providecommand\HyField@AuxAddToCoFields[2]{}
-\abx@aux@refcontext{nty/global//global/global/global}
-\nicematrix@redefine@check@rerun
-\abx@aux@cite{0}{FAN2021100501}
-\abx@aux@segm{0}{0}{FAN2021100501}
-\@writefile{toc}{\contentsline {section}{\numberline {1}Introduction}{3}{section.1}\protected@file@percent }
-\@writefile{toc}{\contentsline {subsection}{\numberline {1.1}Background}{3}{subsection.1.1}\protected@file@percent }
-\@writefile{toc}{\contentsline {subsection}{\numberline {1.2}Restatement of the Problem}{3}{subsection.1.2}\protected@file@percent }
-\@writefile{toc}{\contentsline {subsection}{\numberline {1.3}Our Work}{3}{subsection.1.3}\protected@file@percent }
-\@writefile{lof}{\contentsline {figure}{\numberline {1}{\ignorespaces the flow chart of our work}}{4}{figure.1}\protected@file@percent }
-\newlabel{Site Distribution Map}{{1}{4}{the flow chart of our work}{figure.1}{}}
-\@writefile{toc}{\contentsline {section}{\numberline {2}Assumptions and Justifications}{4}{section.2}\protected@file@percent }
-\@writefile{toc}{\contentsline {section}{\numberline {3}Notations}{5}{section.3}\protected@file@percent }
-\@writefile{toc}{\contentsline {section}{\numberline {4}Probability-Corrected Proportional Allocation and Spatio-Temporal Scheduling Model}{5}{section.4}\protected@file@percent }
-\@writefile{toc}{\contentsline {subsection}{\numberline {4.1}Model Overview}{5}{subsection.4.1}\protected@file@percent }
-\@writefile{lof}{\contentsline {figure}{\numberline {2}{\ignorespaces flow chart of Model I}}{5}{figure.2}\protected@file@percent }
-\newlabel{Flow chart of Model I}{{2}{5}{flow chart of Model I}{figure.2}{}}
-\@writefile{toc}{\contentsline {subsection}{\numberline {4.2}Model Building}{6}{subsection.4.2}\protected@file@percent }
-\@writefile{toc}{\contentsline {subsubsection}{\numberline {4.2.1}Stochastic Demand Correction Mechanism}{6}{subsubsection.4.2.1}\protected@file@percent }
-\@writefile{toc}{\contentsline {subsubsection}{\numberline {4.2.2}Visit Frequency Allocation Based on the Hamilton Method}{6}{subsubsection.4.2.2}\protected@file@percent }
-\@writefile{toc}{\contentsline {subsubsection}{\numberline {4.2.3}Multi-dimensional Evaluation Indicator System}{7}{subsubsection.4.2.3}\protected@file@percent }
-\@writefile{toc}{\contentsline {subsubsection}{\numberline {4.2.4}Spatio-Temporal Scheduling Combinatorial Optimization Model}{7}{subsubsection.4.2.4}\protected@file@percent }
-\@writefile{lof}{\contentsline {figure}{\numberline {3}{\ignorespaces Algorithm and Formula Flow Diagram of Model I}}{8}{figure.3}\protected@file@percent }
-\newlabel{Algorithm & Formula Flow Diagram of Model I}{{3}{8}{Algorithm and Formula Flow Diagram of Model I}{figure.3}{}}
-\@writefile{toc}{\contentsline {subsection}{\numberline {4.3}Model Solution}{9}{subsection.4.3}\protected@file@percent }
-\@writefile{toc}{\contentsline {subsubsection}{\numberline {4.3.1}Results for Stochastic Demand Correction Mechanism}{9}{subsubsection.4.3.1}\protected@file@percent }
-\@writefile{lot}{\contentsline {table}{\numberline {1}{\ignorespaces Truncation Correction for Key High-Demand Sites}}{9}{table.1}\protected@file@percent }
-\newlabel{tab:truncation_correction}{{1}{9}{Truncation Correction for Key High-Demand Sites}{table.1}{}}
-\@writefile{lof}{\contentsline {figure}{\numberline {4}{\ignorespaces Truncation Correction for High-Demand Sites}}{9}{figure.4}\protected@file@percent }
-\newlabel{Truncation Correction for High-Demand Sites}{{4}{9}{Truncation Correction for High-Demand Sites}{figure.4}{}}
-\@writefile{lof}{\contentsline {figure}{\numberline {5}{\ignorespaces Visit Frequency Allocation Analysis}}{10}{figure.5}\protected@file@percent }
-\newlabel{Visit Frequency Allocation Analysis}{{5}{10}{Visit Frequency Allocation Analysis}{figure.5}{}}
-\@writefile{toc}{\contentsline {subsubsection}{\numberline {4.3.2}Solution for Spatio-Temporal Scheduling Combinatorial Optimization Model}{10}{subsubsection.4.3.2}\protected@file@percent }
-\@writefile{toc}{\contentsline {subsection}{\numberline {4.4}Results of Task 1}{10}{subsection.4.4}\protected@file@percent }
-\@writefile{lot}{\contentsline {table}{\numberline {2}{\ignorespaces Daily Paired Scheduling of Service Sites}}{10}{table.2}\protected@file@percent }
-\newlabel{tab:daily_site_schedule}{{2}{10}{Daily Paired Scheduling of Service Sites}{table.2}{}}
-\@writefile{lof}{\contentsline {figure}{\numberline {6}{\ignorespaces Site Distribution Map}}{11}{figure.6}\protected@file@percent }
-\newlabel{Site Distribution Map}{{6}{11}{Site Distribution Map}{figure.6}{}}
-\@writefile{lot}{\contentsline {table}{\numberline {3}{\ignorespaces Performance Comparison of Different Allocation Schemes }}{11}{table.3}\protected@file@percent }
-\newlabel{tab:allocation_performance}{{3}{11}{Performance Comparison of Different Allocation Schemes}{table.3}{}}
-\@writefile{lof}{\contentsline {figure}{\numberline {7}{\ignorespaces Efficiency Fairness Plot}}{12}{figure.7}\protected@file@percent }
-\newlabel{efficiency fairness plot}{{7}{12}{Efficiency Fairness Plot}{figure.7}{}}
-\@writefile{toc}{\contentsline {section}{\numberline {5}Dual-Site Collaborative Scheduling Optimization Model Based on the Spatio-Temporal Symbiosis Mechanism}{12}{section.5}\protected@file@percent }
-\@writefile{toc}{\contentsline {subsection}{\numberline {5.1}Model Overview}{12}{subsection.5.1}\protected@file@percent }
-\@writefile{lof}{\contentsline {figure}{\numberline {8}{\ignorespaces flow chart of Model II}}{13}{figure.8}\protected@file@percent }
-\newlabel{flow chart of Model II}{{8}{13}{flow chart of Model II}{figure.8}{}}
-\@writefile{toc}{\contentsline {subsection}{\numberline {5.2}Model Building}{13}{subsection.5.2}\protected@file@percent }
-\@writefile{toc}{\contentsline {subsubsection}{\numberline {5.2.1}Selection Criteria for Symbiotic Sites}{13}{subsubsection.5.2.1}\protected@file@percent }
-\@writefile{lof}{\contentsline {figure}{\numberline {9}{\ignorespaces Schematic Diagram of Manhattan Distance Calculation}}{14}{figure.9}\protected@file@percent }
-\newlabel{Schematic Diagram of Manhattan Distance Calculation}{{9}{14}{Schematic Diagram of Manhattan Distance Calculation}{figure.9}{}}
-\@writefile{toc}{\contentsline {subsubsection}{\numberline {5.2.2}Internal Resource Allocation Model for Symbiotic Pairs}{14}{subsubsection.5.2.2}\protected@file@percent }
-\ExplSyntaxOn \cs_if_free:NT \pgfsyspdfmark {\cs_set_eq:NN \pgfsyspdfmark \@gobblethree }\ExplSyntaxOff
-\ExplSyntaxOn
-\char_set_catcode_space:n {32}
-\tl_gset:cn {c__nicematrix_1_tl}{\bool_set_true:N \l__nicematrix_X_columns_aux_bool \dim_set:Nn \l__nicematrix_X_columns_dim {122.78177pt}\seq_gset_from_clist:Nn \g__nicematrix_size_seq {1,7,7,1,4,4}\seq_gset_from_clist:Nn \g__nicematrix_pos_of_blocks_seq {{6}{1}{7}{1}{},{4}{1}{5}{1}{},{2}{1}{3}{1}{}}}
-\ExplSyntaxOff
-\@writefile{toc}{\contentsline {subsubsection}{\numberline {5.2.3}Global Scheduling Model Adapted for Symbiotic Sites}{15}{subsubsection.5.2.3}\protected@file@percent }
-\@writefile{toc}{\contentsline {subsubsection}{\numberline {5.2.4}Evaluation Indicator System for Symbiotic Strategy}{15}{subsubsection.5.2.4}\protected@file@percent }
-\@writefile{lot}{\contentsline {table}{\numberline {4}{\ignorespaces Comparison of Evaluation Indicators between Model I and Model II}}{15}{table.4}\protected@file@percent }
-\newlabel{tab:comparison}{{4}{15}{Comparison of Evaluation Indicators between Model I and Model II}{table.4}{}}
-\pgfsyspdfmark {nm-1-position}{4736286}{11185825}
-\pgfsyspdfmark {pgfid2}{4736286}{11185825}
-\pgfsyspdfmark {pgfid3}{4736286}{11185825}
-\pgfsyspdfmark {nm-1-row-1}{4736286}{17753093}
-\pgfsyspdfmark {pgfid6}{4736286}{17766200}
-\pgfsyspdfmark {nm-1-row-1}{4736286}{17753093}
-\pgfsyspdfmark {pgfid7}{4736286}{17766200}
-\pgfsyspdfmark {pgfid8}{5129502}{16548657}
-\pgfsyspdfmark {pgfid9}{6764235}{16548657}
-\pgfsyspdfmark {pgfid10}{13099469}{16548657}
-\pgfsyspdfmark {pgfid11}{21172403}{16548657}
-\pgfsyspdfmark {pgfid12}{30005461}{16548657}
-\pgfsyspdfmark {nm-1-row-2}{4736286}{16134467}
-\pgfsyspdfmark {pgfid13}{4736286}{16147574}
-\pgfsyspdfmark {nm-1-row-2}{4736286}{15999028}
-\pgfsyspdfmark {pgfid14}{4736286}{16012135}
-\pgfsyspdfmark {pgfid15}{5129502}{14817692}
-\pgfsyspdfmark {pgfid16}{7089675}{14817692}
-\pgfsyspdfmark {pgfid17}{13099469}{14817692}
-\pgfsyspdfmark {pgfid18}{21172403}{14817692}
-\pgfsyspdfmark {pgfid19}{30005461}{14817692}
-\pgfsyspdfmark {nm-1-row-3}{4736286}{14403502}
-\pgfsyspdfmark {pgfid20}{4736286}{14416609}
-\pgfsyspdfmark {pgfid21}{5129502}{13480759}
-\pgfsyspdfmark {pgfid22}{13099469}{13480759}
-\pgfsyspdfmark {pgfid23}{21172403}{13480759}
-\pgfsyspdfmark {pgfid24}{30005461}{13480759}
-\pgfsyspdfmark {nm-1-row-4}{4736286}{12175280}
-\pgfsyspdfmark {pgfid25}{4736286}{12188387}
-\pgfsyspdfmark {nm-1-row-4}{4736286}{12039841}
-\pgfsyspdfmark {pgfid26}{4736286}{12052948}
-\pgfsyspdfmark {pgfid27}{5129502}{10858505}
-\pgfsyspdfmark {pgfid28}{6407220}{10858505}
-\pgfsyspdfmark {pgfid29}{13099469}{10858505}
-\pgfsyspdfmark {pgfid30}{21172403}{10858505}
-\pgfsyspdfmark {pgfid31}{30005461}{10858505}
-\pgfsyspdfmark {nm-1-row-5}{4736286}{10444315}
-\pgfsyspdfmark {pgfid32}{4736286}{10457422}
-\pgfsyspdfmark {pgfid33}{5129502}{9521572}
-\pgfsyspdfmark {pgfid34}{13099469}{9521572}
-\pgfsyspdfmark {pgfid35}{21172403}{9521572}
-\pgfsyspdfmark {pgfid36}{30005461}{9521572}
-\pgfsyspdfmark {nm-1-row-6}{4736286}{8216093}
-\pgfsyspdfmark {pgfid37}{4736286}{8229200}
-\pgfsyspdfmark {nm-1-row-6}{4736286}{8080654}
-\pgfsyspdfmark {pgfid38}{4736286}{8093761}
-\pgfsyspdfmark {pgfid39}{5129502}{6899318}
-\pgfsyspdfmark {pgfid40}{6485081}{6899318}
-\pgfsyspdfmark {pgfid41}{13099469}{6899318}
-\pgfsyspdfmark {pgfid42}{21172403}{6899318}
-\pgfsyspdfmark {pgfid43}{30005461}{6899318}
-\pgfsyspdfmark {nm-1-row-7}{4736286}{6485128}
-\pgfsyspdfmark {pgfid44}{4736286}{6498235}
-\pgfsyspdfmark {pgfid45}{5129502}{5562385}
-\pgfsyspdfmark {pgfid46}{13099469}{5562385}
-\pgfsyspdfmark {pgfid47}{21172403}{5562385}
-\pgfsyspdfmark {pgfid48}{30005461}{5562385}
-\pgfsyspdfmark {nm-1-row-8}{4736286}{5148195}
-\pgfsyspdfmark {pgfid49}{4736286}{5161302}
-\pgfsyspdfmark {nm-1-row-8}{4736286}{5012756}
-\pgfsyspdfmark {pgfid50}{4736286}{5025863}
-\pgfsyspdfmark {nm-1-col-1}{4749393}{4964259}
-\pgfsyspdfmark {pgfid51}{4736286}{4964259}
-\pgfsyspdfmark {nm-1-col-2}{9429957}{4964259}
-\pgfsyspdfmark {pgfid52}{9443064}{4964259}
-\pgfsyspdfmark {nm-1-col-3}{16742767}{4964259}
-\pgfsyspdfmark {pgfid53}{16755874}{4964259}
-\pgfsyspdfmark {nm-1-col-4}{25575825}{4964259}
-\pgfsyspdfmark {pgfid54}{25588932}{4964259}
-\pgfsyspdfmark {nm-1-col-5}{34408883}{4964259}
-\pgfsyspdfmark {pgfid55}{34421990}{4964259}
-\pgfsyspdfmark {pgfid56}{34421990}{11185825}
-\pgfsyspdfmark {pgfid57}{34421990}{11185825}
-\pgfsyspdfmark {pgfid58}{34421990}{11185825}
-\pgfsyspdfmark {pgfid59}{34421990}{11185825}
-\pgfsyspdfmark {pgfid60}{34421990}{11185825}
-\pgfsyspdfmark {pgfid61}{34421990}{11185825}
-\pgfsyspdfmark {pgfid62}{34421990}{11185825}
-\pgfsyspdfmark {pgfid64}{34421990}{11185825}
-\@writefile{toc}{\contentsline {subsection}{\numberline {5.3}Model Solution}{16}{subsection.5.3}\protected@file@percent }
-\@writefile{toc}{\contentsline {subsubsection}{\numberline {5.3.1}Solving for Symbiotic Site Screening}{16}{subsubsection.5.3.1}\protected@file@percent }
-\@writefile{lof}{\contentsline {figure}{\numberline {10}{\ignorespaces Allocation Strategy Scatter}}{16}{figure.10}\protected@file@percent }
-\newlabel{Allocation Strategy Scatter}{{10}{16}{Allocation Strategy Scatter}{figure.10}{}}
-\@writefile{toc}{\contentsline {subsection}{\numberline {5.4}Results of Task 3}{16}{subsection.5.4}\protected@file@percent }
-\@writefile{lot}{\contentsline {table}{\numberline {5}{\ignorespaces Key Parameters of Paired Service Sites}}{16}{table.5}\protected@file@percent }
-\newlabel{tab:paired_site_params}{{5}{16}{Key Parameters of Paired Service Sites}{table.5}{}}
-\@writefile{lof}{\contentsline {figure}{\numberline {11}{\ignorespaces Paired Service Site Map}}{17}{figure.11}\protected@file@percent }
-\newlabel{Paired Service Site Map}{{11}{17}{Paired Service Site Map}{figure.11}{}}
-\@writefile{lot}{\contentsline {table}{\numberline {6}{\ignorespaces Performance Comparison}}{17}{table.6}\protected@file@percent }
-\newlabel{tab:task3_effectiveness}{{6}{17}{Performance Comparison}{table.6}{}}
-\@writefile{lof}{\contentsline {figure}{\numberline {12}{\ignorespaces Fairness diagnostics}}{18}{figure.12}\protected@file@percent }
-\newlabel{Fairness diagnostics}{{12}{18}{Fairness diagnostics}{figure.12}{}}
-\@writefile{toc}{\contentsline {section}{\numberline {6}Sensitivity Analysis}{18}{section.6}\protected@file@percent }
-\@writefile{toc}{\contentsline {subsection}{\numberline {6.1}Sensitivity Analysis for Task 1}{18}{subsection.6.1}\protected@file@percent }
-\@writefile{lof}{\contentsline {figure}{\numberline {13}{\ignorespaces Sensitivity Analysis for Task 1}}{18}{figure.13}\protected@file@percent }
-\@writefile{toc}{\contentsline {subsection}{\numberline {6.2}Sensitivity Analysis for Task 3}{19}{subsection.6.2}\protected@file@percent }
-\@writefile{lof}{\contentsline {figure}{\numberline {14}{\ignorespaces Sensitivity Analysis for Task 3}}{19}{figure.14}\protected@file@percent }
-\@writefile{toc}{\contentsline {section}{\numberline {7}Strengths and Weaknesses}{20}{section.7}\protected@file@percent }
-\@writefile{toc}{\contentsline {subsection}{\numberline {7.1}Strengths}{20}{subsection.7.1}\protected@file@percent }
-\@writefile{toc}{\contentsline {subsection}{\numberline {7.2}Weaknesses and Possible Improvement}{20}{subsection.7.2}\protected@file@percent }
-\@writefile{toc}{\contentsline {section}{\numberline {8}Conclusion}{20}{section.8}\protected@file@percent }
-\@writefile{toc}{\contentsline {section}{References}{23}{section*.1}\protected@file@percent }
-\newlabel{LastPage}{{8}{23}{Conclusion}{page.23}{}}
-\gdef\lastpage@lastpage{23}
-\gdef\lastpage@lastpageHy{23}
-\abx@aux@read@bbl@mdfivesum{C5B9632E62BB7161390E7E7B03C0E51B}
-\abx@aux@defaultrefcontext{0}{FAN2021100501}{nty/global//global/global/global}
-\abx@aux@defaultrefcontext{0}{Liu02}{nty/global//global/global/global}
-\gdef \@abspage@last{23}
diff --git a/vscode/mcmthesis-demo.bcf b/vscode/mcmthesis-demo.bcf
deleted file mode 100755
index da2a0a5..0000000
--- a/vscode/mcmthesis-demo.bcf
+++ /dev/null
@@ -1,2418 +0,0 @@
-
-
-
-
-
- output_encoding
- utf8
-
-
- input_encoding
- utf8
-
-
- debug
- 0
-
-
- mincrossrefs
- 2
-
-
- minxrefs
- 2
-
-
- sortcase
- 1
-
-
- sortupper
- 1
-
-
-
-
-
-
- alphaothers
- +
-
-
- extradatecontext
- labelname
- labeltitle
-
-
- labelalpha
- 0
-
-
- labelnamespec
- shortauthor
- author
- shorteditor
- editor
- translator
-
-
- labeltitle
- 0
-
-
- labeltitlespec
- shorttitle
- title
- maintitle
-
-
- labeltitleyear
- 0
-
-
- labeldateparts
- 0
-
-
- labeldatespec
- date
- year
- eventdate
- origdate
- urldate
- nodate
-
-
- julian
- 0
-
-
- gregorianstart
- 1582-10-15
-
-
- maxalphanames
- 3
-
-
- maxbibnames
- 3
-
-
- maxcitenames
- 3
-
-
- maxsortnames
- 3
-
-
- maxitems
- 3
-
-
- minalphanames
- 1
-
-
- minbibnames
- 1
-
-
- mincitenames
- 1
-
-
- minsortnames
- 1
-
-
- minitems
- 1
-
-
- nohashothers
- 0
-
-
- noroman
- 0
-
-
- nosortothers
- 0
-
-
- pluralothers
- 0
-
-
- singletitle
- 0
-
-
- skipbib
- 0
-
-
- skipbiblist
- 0
-
-
- skiplab
- 0
-
-
- sortalphaothers
- +
-
-
- sortlocale
- english
-
-
- sortingtemplatename
- nty
-
-
- sortsets
- 0
-
-
- uniquelist
- false
-
-
- uniquename
- false
-
-
- uniqueprimaryauthor
- 0
-
-
- uniquetitle
- 0
-
-
- uniquebaretitle
- 0
-
-
- uniquework
- 0
-
-
- useprefix
- 0
-
-
- useafterword
- 1
-
-
- useannotator
- 1
-
-
- useauthor
- 1
-
-
- usebookauthor
- 1
-
-
- usecommentator
- 1
-
-
- useeditor
- 1
-
-
- useeditora
- 1
-
-
- useeditorb
- 1
-
-
- useeditorc
- 1
-
-
- useforeword
- 1
-
-
- useholder
- 1
-
-
- useintroduction
- 1
-
-
- usenamea
- 1
-
-
- usenameb
- 1
-
-
- usenamec
- 1
-
-
- usetranslator
- 0
-
-
- useshortauthor
- 1
-
-
- useshorteditor
- 1
-
-
-
-
-
- extradatecontext
- labelname
- labeltitle
-
-
- labelalpha
- 0
-
-
- labelnamespec
- shortauthor
- author
- shorteditor
- editor
- translator
-
-
- labeltitle
- 0
-
-
- labeltitlespec
- shorttitle
- title
- maintitle
-
-
- labeltitleyear
- 0
-
-
- labeldateparts
- 0
-
-
- labeldatespec
- date
- year
- eventdate
- origdate
- urldate
- nodate
-
-
- maxalphanames
- 3
-
-
- maxbibnames
- 3
-
-
- maxcitenames
- 3
-
-
- maxsortnames
- 3
-
-
- maxitems
- 3
-
-
- minalphanames
- 1
-
-
- minbibnames
- 1
-
-
- mincitenames
- 1
-
-
- minsortnames
- 1
-
-
- minitems
- 1
-
-
- nohashothers
- 0
-
-
- noroman
- 0
-
-
- nosortothers
- 0
-
-
- singletitle
- 0
-
-
- skipbib
- 0
-
-
- skipbiblist
- 0
-
-
- skiplab
- 0
-
-
- uniquelist
- false
-
-
- uniquename
- false
-
-
- uniqueprimaryauthor
- 0
-
-
- uniquetitle
- 0
-
-
- uniquebaretitle
- 0
-
-
- uniquework
- 0
-
-
- useprefix
- 0
-
-
- useafterword
- 1
-
-
- useannotator
- 1
-
-
- useauthor
- 1
-
-
- usebookauthor
- 1
-
-
- usecommentator
- 1
-
-
- useeditor
- 1
-
-
- useeditora
- 1
-
-
- useeditorb
- 1
-
-
- useeditorc
- 1
-
-
- useforeword
- 1
-
-
- useholder
- 1
-
-
- useintroduction
- 1
-
-
- usenamea
- 1
-
-
- usenameb
- 1
-
-
- usenamec
- 1
-
-
- usetranslator
- 0
-
-
- useshortauthor
- 1
-
-
- useshorteditor
- 1
-
-
-
-
- datamodel
- labelalphanametemplate
- labelalphatemplate
- inheritance
- translit
- uniquenametemplate
- namehashtemplate
- sortingnamekeytemplate
- sortingtemplate
- extradatespec
- extradatecontext
- labelnamespec
- labeltitlespec
- labeldatespec
- controlversion
- alphaothers
- sortalphaothers
- presort
- texencoding
- bibencoding
- sortingtemplatename
- sortlocale
- language
- autolang
- langhook
- indexing
- hyperref
- backrefsetstyle
- block
- pagetracker
- citecounter
- citetracker
- ibidtracker
- idemtracker
- opcittracker
- loccittracker
- labeldate
- labeltime
- dateera
- date
- time
- eventdate
- eventtime
- origdate
- origtime
- urldate
- urltime
- alldatesusetime
- alldates
- alltimes
- gregorianstart
- autocite
- notetype
- uniquelist
- uniquename
- refsection
- refsegment
- citereset
- sortlos
- babel
- datelabel
- backrefstyle
- arxiv
- familyinits
- giveninits
- prefixinits
- suffixinits
- useafterword
- useannotator
- useauthor
- usebookauthor
- usecommentator
- useeditor
- useeditora
- useeditorb
- useeditorc
- useforeword
- useholder
- useintroduction
- usenamea
- usenameb
- usenamec
- usetranslator
- useshortauthor
- useshorteditor
- debug
- loadfiles
- safeinputenc
- sortcase
- sortupper
- terseinits
- abbreviate
- dateabbrev
- clearlang
- sortcites
- sortsets
- backref
- backreffloats
- trackfloats
- parentracker
- labeldateusetime
- datecirca
- dateuncertain
- dateusetime
- eventdateusetime
- origdateusetime
- urldateusetime
- julian
- datezeros
- timezeros
- timezones
- seconds
- autopunct
- punctfont
- labelnumber
- labelalpha
- labeltitle
- labeltitleyear
- labeldateparts
- pluralothers
- nohashothers
- nosortothers
- noroman
- singletitle
- uniquetitle
- uniquebaretitle
- uniquework
- uniqueprimaryauthor
- defernumbers
- locallabelwidth
- bibwarn
- useprefix
- skipbib
- skipbiblist
- skiplab
- dataonly
- defernums
- firstinits
- sortfirstinits
- sortgiveninits
- labelyear
- isbn
- url
- doi
- eprint
- related
- subentry
- bibtexcaseprotection
- mincrossrefs
- minxrefs
- maxnames
- minnames
- maxbibnames
- minbibnames
- maxcitenames
- mincitenames
- maxsortnames
- minsortnames
- maxitems
- minitems
- maxalphanames
- minalphanames
- maxparens
- dateeraauto
-
-
- alphaothers
- sortalphaothers
- presort
- indexing
- citetracker
- ibidtracker
- idemtracker
- opcittracker
- loccittracker
- uniquelist
- uniquename
- familyinits
- giveninits
- prefixinits
- suffixinits
- useafterword
- useannotator
- useauthor
- usebookauthor
- usecommentator
- useeditor
- useeditora
- useeditorb
- useeditorc
- useforeword
- useholder
- useintroduction
- usenamea
- usenameb
- usenamec
- usetranslator
- useshortauthor
- useshorteditor
- terseinits
- abbreviate
- dateabbrev
- clearlang
- labelnumber
- labelalpha
- labeltitle
- labeltitleyear
- labeldateparts
- nohashothers
- nosortothers
- noroman
- singletitle
- uniquetitle
- uniquebaretitle
- uniquework
- uniqueprimaryauthor
- useprefix
- skipbib
- skipbiblist
- skiplab
- dataonly
- skiplos
- labelyear
- isbn
- url
- doi
- eprint
- related
- subentry
- bibtexcaseprotection
- labelalphatemplate
- translit
- sortexclusion
- sortinclusion
- extradatecontext
- labelnamespec
- labeltitlespec
- labeldatespec
- maxnames
- minnames
- maxbibnames
- minbibnames
- maxcitenames
- mincitenames
- maxsortnames
- minsortnames
- maxitems
- minitems
- maxalphanames
- minalphanames
-
-
- noinherit
- nametemplates
- labelalphanametemplatename
- uniquenametemplatename
- namehashtemplatename
- sortingnamekeytemplatename
- presort
- indexing
- citetracker
- ibidtracker
- idemtracker
- opcittracker
- loccittracker
- uniquelist
- uniquename
- familyinits
- giveninits
- prefixinits
- suffixinits
- useafterword
- useannotator
- useauthor
- usebookauthor
- usecommentator
- useeditor
- useeditora
- useeditorb
- useeditorc
- useforeword
- useholder
- useintroduction
- usenamea
- usenameb
- usenamec
- usetranslator
- useshortauthor
- useshorteditor
- terseinits
- abbreviate
- dateabbrev
- clearlang
- labelnumber
- labelalpha
- labeltitle
- labeltitleyear
- labeldateparts
- nohashothers
- nosortothers
- noroman
- singletitle
- uniquetitle
- uniquebaretitle
- uniquework
- uniqueprimaryauthor
- useprefix
- skipbib
- skipbiblist
- skiplab
- dataonly
- skiplos
- isbn
- url
- doi
- eprint
- related
- subentry
- bibtexcaseprotection
- maxnames
- minnames
- maxbibnames
- minbibnames
- maxcitenames
- mincitenames
- maxsortnames
- minsortnames
- maxitems
- minitems
- maxalphanames
- minalphanames
-
-
- nametemplates
- labelalphanametemplatename
- uniquenametemplatename
- namehashtemplatename
- sortingnamekeytemplatename
- uniquelist
- uniquename
- familyinits
- giveninits
- prefixinits
- suffixinits
- terseinits
- nohashothers
- nosortothers
- useprefix
-
-
- nametemplates
- labelalphanametemplatename
- uniquenametemplatename
- namehashtemplatename
- sortingnamekeytemplatename
- uniquename
- familyinits
- giveninits
- prefixinits
- suffixinits
- terseinits
- useprefix
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- prefix
- family
-
-
-
-
- shorthand
- label
- labelname
- labelname
-
-
- year
-
-
-
-
-
- labelyear
- year
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- prefix
- family
- given
-
-
-
- family
- given
- prefix
- suffix
-
-
-
-
- prefix
- family
-
-
- given
-
-
- suffix
-
-
- prefix
-
-
- mm
-
-
-
- sf,sm,sn,pf,pm,pn,pp
- family,given,prefix,suffix
- boolean,integer,string,xml
- default,transliteration,transcription,translation
-
-
- article
- artwork
- audio
- bibnote
- book
- bookinbook
- booklet
- collection
- commentary
- customa
- customb
- customc
- customd
- custome
- customf
- dataset
- inbook
- incollection
- inproceedings
- inreference
- image
- jurisdiction
- legal
- legislation
- letter
- manual
- misc
- movie
- music
- mvcollection
- mvreference
- mvproceedings
- mvbook
- online
- patent
- performance
- periodical
- proceedings
- reference
- report
- review
- set
- software
- standard
- suppbook
- suppcollection
- suppperiodical
- thesis
- unpublished
- video
- xdata
-
-
- sortyear
- volume
- volumes
- abstract
- addendum
- annotation
- booksubtitle
- booktitle
- booktitleaddon
- chapter
- edition
- eid
- entrysubtype
- eprintclass
- eprinttype
- eventtitle
- eventtitleaddon
- gender
- howpublished
- indexsorttitle
- indextitle
- isan
- isbn
- ismn
- isrn
- issn
- issue
- issuesubtitle
- issuetitle
- issuetitleaddon
- iswc
- journalsubtitle
- journaltitle
- journaltitleaddon
- label
- langid
- langidopts
- library
- mainsubtitle
- maintitle
- maintitleaddon
- nameaddon
- note
- number
- origtitle
- pagetotal
- part
- relatedstring
- relatedtype
- reprinttitle
- series
- shorthandintro
- subtitle
- title
- titleaddon
- usera
- userb
- userc
- userd
- usere
- userf
- venue
- version
- shorthand
- shortjournal
- shortseries
- shorttitle
- sorttitle
- sortshorthand
- sortkey
- presort
- institution
- lista
- listb
- listc
- listd
- liste
- listf
- location
- organization
- origlocation
- origpublisher
- publisher
- afterword
- annotator
- author
- bookauthor
- commentator
- editor
- editora
- editorb
- editorc
- foreword
- holder
- introduction
- namea
- nameb
- namec
- translator
- shortauthor
- shorteditor
- sortname
- authortype
- editoratype
- editorbtype
- editorctype
- editortype
- bookpagination
- nameatype
- namebtype
- namectype
- pagination
- pubstate
- type
- language
- origlanguage
- crossref
- xref
- date
- endyear
- year
- month
- day
- hour
- minute
- second
- timezone
- yeardivision
- endmonth
- endday
- endhour
- endminute
- endsecond
- endtimezone
- endyeardivision
- eventdate
- eventendyear
- eventyear
- eventmonth
- eventday
- eventhour
- eventminute
- eventsecond
- eventtimezone
- eventyeardivision
- eventendmonth
- eventendday
- eventendhour
- eventendminute
- eventendsecond
- eventendtimezone
- eventendyeardivision
- origdate
- origendyear
- origyear
- origmonth
- origday
- orighour
- origminute
- origsecond
- origtimezone
- origyeardivision
- origendmonth
- origendday
- origendhour
- origendminute
- origendsecond
- origendtimezone
- origendyeardivision
- urldate
- urlendyear
- urlyear
- urlmonth
- urlday
- urlhour
- urlminute
- urlsecond
- urltimezone
- urlyeardivision
- urlendmonth
- urlendday
- urlendhour
- urlendminute
- urlendsecond
- urlendtimezone
- urlendyeardivision
- doi
- eprint
- file
- verba
- verbb
- verbc
- url
- xdata
- ids
- entryset
- related
- keywords
- options
- relatedoptions
- pages
- execute
-
-
- abstract
- annotation
- authortype
- bookpagination
- crossref
- day
- doi
- eprint
- eprintclass
- eprinttype
- endday
- endhour
- endminute
- endmonth
- endsecond
- endtimezone
- endyear
- endyeardivision
- entryset
- entrysubtype
- execute
- file
- gender
- hour
- ids
- indextitle
- indexsorttitle
- isan
- ismn
- iswc
- keywords
- label
- langid
- langidopts
- library
- lista
- listb
- listc
- listd
- liste
- listf
- minute
- month
- namea
- nameb
- namec
- nameatype
- namebtype
- namectype
- nameaddon
- options
- origday
- origendday
- origendhour
- origendminute
- origendmonth
- origendsecond
- origendtimezone
- origendyear
- origendyeardivision
- orighour
- origminute
- origmonth
- origsecond
- origtimezone
- origyear
- origyeardivision
- origlocation
- origpublisher
- origtitle
- pagination
- presort
- related
- relatedoptions
- relatedstring
- relatedtype
- second
- shortauthor
- shorteditor
- shorthand
- shorthandintro
- shortjournal
- shortseries
- shorttitle
- sortkey
- sortname
- sortshorthand
- sorttitle
- sortyear
- timezone
- url
- urlday
- urlendday
- urlendhour
- urlendminute
- urlendmonth
- urlendsecond
- urlendtimezone
- urlendyear
- urlhour
- urlminute
- urlmonth
- urlsecond
- urltimezone
- urlyear
- usera
- userb
- userc
- userd
- usere
- userf
- verba
- verbb
- verbc
- xdata
- xref
- year
- yeardivision
-
-
- set
- entryset
-
-
- article
- addendum
- annotator
- author
- commentator
- editor
- editora
- editorb
- editorc
- editortype
- editoratype
- editorbtype
- editorctype
- eid
- issn
- issue
- issuetitle
- issuesubtitle
- issuetitleaddon
- journalsubtitle
- journaltitle
- journaltitleaddon
- language
- note
- number
- origlanguage
- pages
- pubstate
- series
- subtitle
- title
- titleaddon
- translator
- version
- volume
-
-
- bibnote
- note
-
-
- book
- author
- addendum
- afterword
- annotator
- chapter
- commentator
- edition
- editor
- editora
- editorb
- editorc
- editortype
- editoratype
- editorbtype
- editorctype
- eid
- foreword
- introduction
- isbn
- language
- location
- maintitle
- maintitleaddon
- mainsubtitle
- note
- number
- origlanguage
- pages
- pagetotal
- part
- publisher
- pubstate
- series
- subtitle
- title
- titleaddon
- translator
- volume
- volumes
-
-
- mvbook
- addendum
- afterword
- annotator
- author
- commentator
- edition
- editor
- editora
- editorb
- editorc
- editortype
- editoratype
- editorbtype
- editorctype
- foreword
- introduction
- isbn
- language
- location
- note
- number
- origlanguage
- pagetotal
- publisher
- pubstate
- series
- subtitle
- title
- titleaddon
- translator
- volume
- volumes
-
-
- inbook
- bookinbook
- suppbook
- addendum
- afterword
- annotator
- author
- booktitle
- bookauthor
- booksubtitle
- booktitleaddon
- chapter
- commentator
- edition
- editor
- editora
- editorb
- editorc
- editortype
- editoratype
- editorbtype
- editorctype
- eid
- foreword
- introduction
- isbn
- language
- location
- mainsubtitle
- maintitle
- maintitleaddon
- note
- number
- origlanguage
- part
- publisher
- pages
- pubstate
- series
- subtitle
- title
- titleaddon
- translator
- volume
- volumes
-
-
- booklet
- addendum
- author
- chapter
- editor
- editortype
- eid
- howpublished
- language
- location
- note
- pages
- pagetotal
- pubstate
- subtitle
- title
- titleaddon
- type
-
-
- collection
- reference
- addendum
- afterword
- annotator
- chapter
- commentator
- edition
- editor
- editora
- editorb
- editorc
- editortype
- editoratype
- editorbtype
- editorctype
- eid
- foreword
- introduction
- isbn
- language
- location
- mainsubtitle
- maintitle
- maintitleaddon
- note
- number
- origlanguage
- pages
- pagetotal
- part
- publisher
- pubstate
- series
- subtitle
- title
- titleaddon
- translator
- volume
- volumes
-
-
- mvcollection
- mvreference
- addendum
- afterword
- annotator
- author
- commentator
- edition
- editor
- editora
- editorb
- editorc
- editortype
- editoratype
- editorbtype
- editorctype
- foreword
- introduction
- isbn
- language
- location
- note
- number
- origlanguage
- publisher
- pubstate
- subtitle
- title
- titleaddon
- translator
- volume
- volumes
-
-
- incollection
- suppcollection
- inreference
- addendum
- afterword
- annotator
- author
- booksubtitle
- booktitle
- booktitleaddon
- chapter
- commentator
- edition
- editor
- editora
- editorb
- editorc
- editortype
- editoratype
- editorbtype
- editorctype
- eid
- foreword
- introduction
- isbn
- language
- location
- mainsubtitle
- maintitle
- maintitleaddon
- note
- number
- origlanguage
- pages
- part
- publisher
- pubstate
- series
- subtitle
- title
- titleaddon
- translator
- volume
- volumes
-
-
- dataset
- addendum
- author
- edition
- editor
- editortype
- language
- location
- note
- number
- organization
- publisher
- pubstate
- series
- subtitle
- title
- titleaddon
- type
- version
-
-
- manual
- addendum
- author
- chapter
- edition
- editor
- editortype
- eid
- isbn
- language
- location
- note
- number
- organization
- pages
- pagetotal
- publisher
- pubstate
- series
- subtitle
- title
- titleaddon
- type
- version
-
-
- misc
- software
- addendum
- author
- editor
- editortype
- howpublished
- language
- location
- note
- organization
- pubstate
- subtitle
- title
- titleaddon
- type
- version
-
-
- online
- addendum
- author
- editor
- editortype
- language
- note
- organization
- pubstate
- subtitle
- title
- titleaddon
- version
-
-
- patent
- addendum
- author
- holder
- location
- note
- number
- pubstate
- subtitle
- title
- titleaddon
- type
- version
-
-
- periodical
- addendum
- editor
- editora
- editorb
- editorc
- editortype
- editoratype
- editorbtype
- editorctype
- issn
- issue
- issuesubtitle
- issuetitle
- issuetitleaddon
- language
- note
- number
- pubstate
- series
- subtitle
- title
- titleaddon
- volume
- yeardivision
-
-
- mvproceedings
- addendum
- editor
- editortype
- eventday
- eventendday
- eventendhour
- eventendminute
- eventendmonth
- eventendsecond
- eventendtimezone
- eventendyear
- eventendyeardivision
- eventhour
- eventminute
- eventmonth
- eventsecond
- eventtimezone
- eventyear
- eventyeardivision
- eventtitle
- eventtitleaddon
- isbn
- language
- location
- note
- number
- organization
- pagetotal
- publisher
- pubstate
- series
- subtitle
- title
- titleaddon
- venue
- volumes
-
-
- proceedings
- addendum
- chapter
- editor
- editortype
- eid
- eventday
- eventendday
- eventendhour
- eventendminute
- eventendmonth
- eventendsecond
- eventendtimezone
- eventendyear
- eventendyeardivision
- eventhour
- eventminute
- eventmonth
- eventsecond
- eventtimezone
- eventyear
- eventyeardivision
- eventtitle
- eventtitleaddon
- isbn
- language
- location
- mainsubtitle
- maintitle
- maintitleaddon
- note
- number
- organization
- pages
- pagetotal
- part
- publisher
- pubstate
- series
- subtitle
- title
- titleaddon
- venue
- volume
- volumes
-
-
- inproceedings
- addendum
- author
- booksubtitle
- booktitle
- booktitleaddon
- chapter
- editor
- editortype
- eid
- eventday
- eventendday
- eventendhour
- eventendminute
- eventendmonth
- eventendsecond
- eventendtimezone
- eventendyear
- eventendyeardivision
- eventhour
- eventminute
- eventmonth
- eventsecond
- eventtimezone
- eventyear
- eventyeardivision
- eventtitle
- eventtitleaddon
- isbn
- language
- location
- mainsubtitle
- maintitle
- maintitleaddon
- note
- number
- organization
- pages
- part
- publisher
- pubstate
- series
- subtitle
- title
- titleaddon
- venue
- volume
- volumes
-
-
- report
- addendum
- author
- chapter
- eid
- institution
- isrn
- language
- location
- note
- number
- pages
- pagetotal
- pubstate
- subtitle
- title
- titleaddon
- type
- version
-
-
- thesis
- addendum
- author
- chapter
- eid
- institution
- language
- location
- note
- pages
- pagetotal
- pubstate
- subtitle
- title
- titleaddon
- type
-
-
- unpublished
- addendum
- author
- eventday
- eventendday
- eventendhour
- eventendminute
- eventendmonth
- eventendsecond
- eventendtimezone
- eventendyear
- eventendyeardivision
- eventhour
- eventminute
- eventmonth
- eventsecond
- eventtimezone
- eventyear
- eventyeardivision
- eventtitle
- eventtitleaddon
- howpublished
- language
- location
- note
- pubstate
- subtitle
- title
- titleaddon
- type
- venue
-
-
- abstract
- addendum
- afterword
- annotator
- author
- bookauthor
- booksubtitle
- booktitle
- booktitleaddon
- chapter
- commentator
- editor
- editora
- editorb
- editorc
- foreword
- holder
- institution
- introduction
- issuesubtitle
- issuetitle
- issuetitleaddon
- journalsubtitle
- journaltitle
- journaltitleaddon
- location
- mainsubtitle
- maintitle
- maintitleaddon
- nameaddon
- note
- organization
- origlanguage
- origlocation
- origpublisher
- origtitle
- part
- publisher
- relatedstring
- series
- shortauthor
- shorteditor
- shorthand
- shortjournal
- shortseries
- shorttitle
- sortname
- sortshorthand
- sorttitle
- subtitle
- title
- titleaddon
- translator
- venue
-
-
- article
- book
- inbook
- bookinbook
- suppbook
- booklet
- collection
- incollection
- suppcollection
- manual
- misc
- mvbook
- mvcollection
- online
- patent
- periodical
- suppperiodical
- proceedings
- inproceedings
- reference
- inreference
- report
- set
- thesis
- unpublished
-
-
- date
- year
-
-
-
-
- set
-
- entryset
-
-
-
- article
-
- author
- journaltitle
- title
-
-
-
- book
- mvbook
-
- author
- title
-
-
-
- inbook
- bookinbook
- suppbook
-
- author
- title
- booktitle
-
-
-
- booklet
-
-
- author
- editor
-
- title
-
-
-
- collection
- reference
- mvcollection
- mvreference
-
- editor
- title
-
-
-
- incollection
- suppcollection
- inreference
-
- author
- editor
- title
- booktitle
-
-
-
- dataset
-
- title
-
-
-
- manual
-
- title
-
-
-
- misc
- software
-
- title
-
-
-
- online
-
- title
-
- url
- doi
- eprint
-
-
-
-
- patent
-
- author
- title
- number
-
-
-
- periodical
-
- editor
- title
-
-
-
- proceedings
- mvproceedings
-
- title
-
-
-
- inproceedings
-
- author
- title
- booktitle
-
-
-
- report
-
- author
- title
- type
- institution
-
-
-
- thesis
-
- author
- title
- type
- institution
-
-
-
- unpublished
-
- author
- title
-
-
-
-
- isbn
-
-
- issn
-
-
- ismn
-
-
- gender
-
-
-
-
-
-
- reference.bib
- reference.bib
-
-
- FAN2021100501
-
-
-
-
- presort
-
-
- sortkey
-
-
- sortname
- author
- editor
- translator
- sorttitle
- title
-
-
- sorttitle
- title
-
-
- sortyear
- year
-
-
- volume
- 0
-
-
-
-
-
-
diff --git a/vscode/mcmthesis-demo.fdb_latexmk b/vscode/mcmthesis-demo.fdb_latexmk
deleted file mode 100755
index b589fbf..0000000
--- a/vscode/mcmthesis-demo.fdb_latexmk
+++ /dev/null
@@ -1,346 +0,0 @@
-# Fdb version 4
-["biber mcmthesis-demo"] 1768849918.6194 "mcmthesis-demo.bcf" "mcmthesis-demo.bbl" "mcmthesis-demo" 1768851270.91503 0
- "mcmthesis-demo.bcf" 1768851270 108651 27c4bba429047680b5662021b53479ea "pdflatex"
- "reference.bib" 1768723291 4255 b7ffb5eec8faeb42df6def929d3299f3 ""
- (generated)
- "mcmthesis-demo.bbl"
- "mcmthesis-demo.blg"
- (rewritten before read)
-["pdflatex"] 1768851261.1581 "d:/XHJ/mathmo/MCM2026/20260116/vscode/mcmthesis-demo.tex" "mcmthesis-demo.pdf" "mcmthesis-demo" 1768851270.91606 0
- "c:/texlive/texlive/2025/texmf-dist/fonts/enc/dvips/base/8r.enc" 1753231362 4850 80dc9bab7f31fb78a000ccfed0e27cab ""
- "c:/texlive/texlive/2025/texmf-dist/fonts/enc/dvips/cm-super/cm-super-ts1.enc" 1753230335 2900 1537cc8184ad1792082cd229ecc269f4 ""
- "c:/texlive/texlive/2025/texmf-dist/fonts/enc/dvips/newtx/ntx-ec-tlf-pc.enc" 1753235340 3136 bbe665bd0bb471a2da1e8fd326cff9fa ""
- "c:/texlive/texlive/2025/texmf-dist/fonts/enc/dvips/newtx/ntx-ec-tlf.enc" 1753235340 2914 fdbc4a54b9bc76f4551b5303f2737d33 ""
- "c:/texlive/texlive/2025/texmf-dist/fonts/enc/dvips/tex-gyre/q-ts1.enc" 1753238212 3124 3813fd4c981d99822890a2861b0d274c ""
- "c:/texlive/texlive/2025/texmf-dist/fonts/map/fontname/texfonts.map" 1753232233 3524 cb3e574dea2d1052e39280babc910dc8 ""
- "c:/texlive/texlive/2025/texmf-dist/fonts/tfm/adobe/symbol/psyr.tfm" 1753237999 1408 5937f58aa508ea2cea4901c07d10f5fe ""
- "c:/texlive/texlive/2025/texmf-dist/fonts/tfm/adobe/zapfding/pzdr.tfm" 1753239913 1528 7e12f4c0fcf5a072cebdcfbfc610f54c ""
- "c:/texlive/texlive/2025/texmf-dist/fonts/tfm/jknappen/ec/ecrm1200.tfm" 1753231424 3584 f80ddd985bd00e29e9a6047ebd9d4781 ""
- "c:/texlive/texlive/2025/texmf-dist/fonts/tfm/jknappen/ec/tcrm1200.tfm" 1753231424 1536 74b7293ec3713bb7fdca8dd1bd1f469c ""
- "c:/texlive/texlive/2025/texmf-dist/fonts/tfm/public/amsfonts/cmextra/cmbsy5.tfm" 1753227864 1120 1e8878807317373affa7f7bba4cf2f6a ""
- "c:/texlive/texlive/2025/texmf-dist/fonts/tfm/public/amsfonts/cmextra/cmbsy6.tfm" 1753227864 1124 14ccf5552bc7f77ca02a8a402bea8bfb ""
- "c:/texlive/texlive/2025/texmf-dist/fonts/tfm/public/amsfonts/cmextra/cmbsy7.tfm" 1753227864 1120 7f9f170e8aa57527ad6c49feafd45d54 ""
- "c:/texlive/texlive/2025/texmf-dist/fonts/tfm/public/amsfonts/cmextra/cmbsy8.tfm" 1753227864 1120 200be8b775682cdf80acad4be5ef57e4 ""
- "c:/texlive/texlive/2025/texmf-dist/fonts/tfm/public/amsfonts/cmextra/cmex7.tfm" 1753227864 1004 54797486969f23fa377b128694d548df ""
- "c:/texlive/texlive/2025/texmf-dist/fonts/tfm/public/amsfonts/cmextra/cmex8.tfm" 1753227864 988 bdf658c3bfc2d96d3c8b02cfc1c94c20 ""
- "c:/texlive/texlive/2025/texmf-dist/fonts/tfm/public/amsfonts/cmextra/cmmib5.tfm" 1753227864 1496 c79f6914c6d39ffb3759967363d1be79 ""
- "c:/texlive/texlive/2025/texmf-dist/fonts/tfm/public/amsfonts/cmextra/cmmib6.tfm" 1753227864 1516 a3bf6a5e7ec4401b1f52092dfaaed242 ""
- "c:/texlive/texlive/2025/texmf-dist/fonts/tfm/public/amsfonts/cmextra/cmmib7.tfm" 1753227864 1508 6e807ff901c35a5f1fde0ca275533df8 ""
- "c:/texlive/texlive/2025/texmf-dist/fonts/tfm/public/amsfonts/cmextra/cmmib8.tfm" 1753227864 1528 dab402b9d3774ca98baa037071cee7ae ""
- "c:/texlive/texlive/2025/texmf-dist/fonts/tfm/public/amsfonts/symbols/msam10.tfm" 1753227864 916 f87d7c45f9c908e672703b83b72241a3 ""
- "c:/texlive/texlive/2025/texmf-dist/fonts/tfm/public/amsfonts/symbols/msam5.tfm" 1753227864 924 9904cf1d39e9767e7a3622f2a125a565 ""
- "c:/texlive/texlive/2025/texmf-dist/fonts/tfm/public/amsfonts/symbols/msam7.tfm" 1753227864 928 2dc8d444221b7a635bb58038579b861a ""
- "c:/texlive/texlive/2025/texmf-dist/fonts/tfm/public/amsfonts/symbols/msbm10.tfm" 1753227864 908 2921f8a10601f252058503cc6570e581 ""
- "c:/texlive/texlive/2025/texmf-dist/fonts/tfm/public/amsfonts/symbols/msbm5.tfm" 1753227864 940 75ac932a52f80982a9f8ea75d03a34cf ""
- "c:/texlive/texlive/2025/texmf-dist/fonts/tfm/public/amsfonts/symbols/msbm7.tfm" 1753227864 940 228d6584342e91276bf566bcf9716b83 ""
- "c:/texlive/texlive/2025/texmf-dist/fonts/tfm/public/bera/fvsr8r.tfm" 1753229074 8656 df6af7b16ac5712f6f56eb38777fa52c ""
- "c:/texlive/texlive/2025/texmf-dist/fonts/tfm/public/bera/fvsr8t.tfm" 1753229074 15816 62f63ba771836a3d028f64df493f2cd1 ""
- "c:/texlive/texlive/2025/texmf-dist/fonts/tfm/public/cm/cmbsy10.tfm" 1753230324 1116 4e6ba9d7914baa6482fd69f67d126380 ""
- "c:/texlive/texlive/2025/texmf-dist/fonts/tfm/public/cm/cmbx10.tfm" 1753230324 1328 c834bbb027764024c09d3d2bf908b5f0 ""
- "c:/texlive/texlive/2025/texmf-dist/fonts/tfm/public/cm/cmbx12.tfm" 1753230324 1324 c910af8c371558dc20f2d7822f66fe64 ""
- "c:/texlive/texlive/2025/texmf-dist/fonts/tfm/public/cm/cmbx5.tfm" 1753230324 1332 f817c21a1ba54560425663374f1b651a ""
- "c:/texlive/texlive/2025/texmf-dist/fonts/tfm/public/cm/cmbx6.tfm" 1753230324 1344 8a0be4fe4d376203000810ad4dc81558 ""
- "c:/texlive/texlive/2025/texmf-dist/fonts/tfm/public/cm/cmbx7.tfm" 1753230324 1336 3125ccb448c1a09074e3aa4a9832f130 ""
- "c:/texlive/texlive/2025/texmf-dist/fonts/tfm/public/cm/cmbx8.tfm" 1753230324 1332 1fde11373e221473104d6cc5993f046e ""
- "c:/texlive/texlive/2025/texmf-dist/fonts/tfm/public/cm/cmex10.tfm" 1753230324 992 662f679a0b3d2d53c1b94050fdaa3f50 ""
- "c:/texlive/texlive/2025/texmf-dist/fonts/tfm/public/cm/cmmi10.tfm" 1753230324 1528 abec98dbc43e172678c11b3b9031252a ""
- "c:/texlive/texlive/2025/texmf-dist/fonts/tfm/public/cm/cmmi12.tfm" 1753230324 1524 4414a8315f39513458b80dfc63bff03a ""
- "c:/texlive/texlive/2025/texmf-dist/fonts/tfm/public/cm/cmmi6.tfm" 1753230324 1512 f21f83efb36853c0b70002322c1ab3ad ""
- "c:/texlive/texlive/2025/texmf-dist/fonts/tfm/public/cm/cmmi8.tfm" 1753230324 1520 eccf95517727cb11801f4f1aee3a21b4 ""
- "c:/texlive/texlive/2025/texmf-dist/fonts/tfm/public/cm/cmmib10.tfm" 1753230324 1524 554068197b70979a55370e6c6495f441 ""
- "c:/texlive/texlive/2025/texmf-dist/fonts/tfm/public/cm/cmr10.tfm" 1753230324 1296 45809c5a464d5f32c8f98ba97c1bb47f ""
- "c:/texlive/texlive/2025/texmf-dist/fonts/tfm/public/cm/cmr12.tfm" 1753230324 1288 655e228510b4c2a1abe905c368440826 ""
- "c:/texlive/texlive/2025/texmf-dist/fonts/tfm/public/cm/cmr6.tfm" 1753230324 1300 b62933e007d01cfd073f79b963c01526 ""
- "c:/texlive/texlive/2025/texmf-dist/fonts/tfm/public/cm/cmr8.tfm" 1753230324 1292 21c1c5bfeaebccffdb478fd231a0997d ""
- "c:/texlive/texlive/2025/texmf-dist/fonts/tfm/public/cm/cmsy10.tfm" 1753230324 1124 6c73e740cf17375f03eec0ee63599741 ""
- "c:/texlive/texlive/2025/texmf-dist/fonts/tfm/public/cm/cmsy6.tfm" 1753230324 1116 933a60c408fc0a863a92debe84b2d294 ""
- "c:/texlive/texlive/2025/texmf-dist/fonts/tfm/public/cm/cmsy8.tfm" 1753230324 1120 8b7d695260f3cff42e636090a8002094 ""
- "c:/texlive/texlive/2025/texmf-dist/fonts/tfm/public/latex-fonts/lasy10.tfm" 1753233845 520 82a3d37183f34b6eb363a161dfc002c2 ""
- "c:/texlive/texlive/2025/texmf-dist/fonts/tfm/public/latex-fonts/lasy5.tfm" 1753233845 520 d082ac03a1087bc1ec2a06e24a9f68c0 ""
- "c:/texlive/texlive/2025/texmf-dist/fonts/tfm/public/latex-fonts/lasy6.tfm" 1753233845 520 4889cce2180234b97cad636b6039c722 ""
- "c:/texlive/texlive/2025/texmf-dist/fonts/tfm/public/latex-fonts/lasy7.tfm" 1753233845 520 a74c6ed8cb48679fdc3ea874d9d34a7e ""
- "c:/texlive/texlive/2025/texmf-dist/fonts/tfm/public/latex-fonts/lasy8.tfm" 1753233845 520 7bb3abb160b19e0ed6ac404bb59052b7 ""
- "c:/texlive/texlive/2025/texmf-dist/fonts/tfm/public/newtx/ntx-Bold-tlf-t1.tfm" 1753235340 11564 696f16cb350c2e296a6df5198a20c96a ""
- "c:/texlive/texlive/2025/texmf-dist/fonts/tfm/public/newtx/ntx-Italic-tlf-t1.tfm" 1753235340 11524 8ba2f557ba7dc63d1e9e4c8cc65c9b60 ""
- "c:/texlive/texlive/2025/texmf-dist/fonts/tfm/public/newtx/ntx-Regular-tlf-sc-t1.tfm" 1753235340 12276 8de6ae5fb2f9bd3a12436b80d518726e ""
- "c:/texlive/texlive/2025/texmf-dist/fonts/tfm/public/newtx/ntx-Regular-tlf-t1.tfm" 1753235340 11580 86fb9f1fbe830bcc3e5ca9d9fb704e6b ""
- "c:/texlive/texlive/2025/texmf-dist/fonts/tfm/public/rsfs/rsfs10.tfm" 1753237154 688 37338d6ab346c2f1466b29e195316aa4 ""
- "c:/texlive/texlive/2025/texmf-dist/fonts/tfm/public/rsfs/rsfs5.tfm" 1753237154 684 3a51bd4fd9600428d5264cf25f04bb9a ""
- "c:/texlive/texlive/2025/texmf-dist/fonts/tfm/public/rsfs/rsfs7.tfm" 1753237154 692 1b6510779f0f05e9cbf03e0f6c8361e6 ""
- "c:/texlive/texlive/2025/texmf-dist/fonts/tfm/public/tex-gyre/ts1-qtmr.tfm" 1753238212 1600 20cdf11dab97d5d39e847571f9314407 ""
- "c:/texlive/texlive/2025/texmf-dist/fonts/type1/public/amsfonts/cm/cmex10.pfb" 1753227864 30251 6afa5cb1d0204815a708a080681d4674 ""
- "c:/texlive/texlive/2025/texmf-dist/fonts/type1/public/amsfonts/cm/cmmi10.pfb" 1753227864 36299 5f9df58c2139e7edcf37c8fca4bd384d ""
- "c:/texlive/texlive/2025/texmf-dist/fonts/type1/public/amsfonts/cm/cmmi12.pfb" 1753227864 36741 0ee9e374ec3e30da87cdfb0ea3575226 ""
- "c:/texlive/texlive/2025/texmf-dist/fonts/type1/public/amsfonts/cm/cmmi6.pfb" 1753227864 37166 8ab3487cbe3ab49ebce74c29ea2418db ""
- "c:/texlive/texlive/2025/texmf-dist/fonts/type1/public/amsfonts/cm/cmmi8.pfb" 1753227864 35469 dcf3a5f2fc1862f5952e3ee5eb1d98c4 ""
- "c:/texlive/texlive/2025/texmf-dist/fonts/type1/public/amsfonts/cm/cmr10.pfb" 1753227864 35752 024fb6c41858982481f6968b5fc26508 ""
- "c:/texlive/texlive/2025/texmf-dist/fonts/type1/public/amsfonts/cm/cmr12.pfb" 1753227864 32722 d7379af29a190c3f453aba36302ff5a9 ""
- "c:/texlive/texlive/2025/texmf-dist/fonts/type1/public/amsfonts/cm/cmr6.pfb" 1753227864 32734 69e00a6b65cedb993666e42eedb3d48f ""
- "c:/texlive/texlive/2025/texmf-dist/fonts/type1/public/amsfonts/cm/cmr8.pfb" 1753227864 32726 39f0f9e62e84beb801509898a605dbd5 ""
- "c:/texlive/texlive/2025/texmf-dist/fonts/type1/public/amsfonts/cm/cmsy10.pfb" 1753227864 32569 5e5ddc8df908dea60932f3c484a54c0d ""
- "c:/texlive/texlive/2025/texmf-dist/fonts/type1/public/amsfonts/cm/cmsy8.pfb" 1753227864 32626 5abc8bb2f28aa647d4c70f8ea38cc0d3 ""
- "c:/texlive/texlive/2025/texmf-dist/fonts/type1/public/amsfonts/cmextra/cmex8.pfb" 1753227864 30273 87a352d78b6810ae5cfdc68d2fb827b2 ""
- "c:/texlive/texlive/2025/texmf-dist/fonts/type1/public/bera/fvsr8a.pfb" 1753229074 29095 ec98afab39d3605adbf4b9a6b800b398 ""
- "c:/texlive/texlive/2025/texmf-dist/fonts/type1/public/cm-super/sfrm1200.pfb" 1753230336 136101 b18d10b3436f8cb0cd04046deb340fe7 ""
- "c:/texlive/texlive/2025/texmf-dist/fonts/type1/public/newtx/ztmb.pfb" 1753235341 255251 ff86dd5a515ecd222fc60cb2612549c9 ""
- "c:/texlive/texlive/2025/texmf-dist/fonts/type1/public/newtx/ztmr.pfb" 1753235341 286816 c3d030d8c7fd436565d9670f5ca64aa0 ""
- "c:/texlive/texlive/2025/texmf-dist/fonts/type1/public/newtx/ztmri.pfb" 1753235341 248316 ea891a047af89fa529ebd24643780319 ""
- "c:/texlive/texlive/2025/texmf-dist/fonts/type1/public/tex-gyre/qtmr.pfb" 1753238212 133302 c4942f65edfb6dde8dac434e6a2388b0 ""
- "c:/texlive/texlive/2025/texmf-dist/fonts/vf/public/bera/fvsr8t.vf" 1753229074 2348 554256f00316724706591f68cf9767a3 ""
- "c:/texlive/texlive/2025/texmf-dist/tex/context/base/mkii/supp-pdf.mkii" 1753235121 71627 94eb9990bed73c364d7f53f960cc8c5b ""
- "c:/texlive/texlive/2025/texmf-dist/tex/generic/atbegshi/atbegshi.sty" 1753228358 24708 5584a51a7101caf7e6bbf1fc27d8f7b1 ""
- "c:/texlive/texlive/2025/texmf-dist/tex/generic/bigintcalc/bigintcalc.sty" 1753229542 40635 c40361e206be584d448876bba8a64a3b ""
- "c:/texlive/texlive/2025/texmf-dist/tex/generic/bitset/bitset.sty" 1753229589 33961 6b5c75130e435b2bfdb9f480a09a39f9 ""
- "c:/texlive/texlive/2025/texmf-dist/tex/generic/gettitlestring/gettitlestring.sty" 1753232494 8371 9d55b8bd010bc717624922fb3477d92e ""
- "c:/texlive/texlive/2025/texmf-dist/tex/generic/iftex/ifpdf.sty" 1753233249 480 5778104efadad304ced77548ca2184b1 ""
- "c:/texlive/texlive/2025/texmf-dist/tex/generic/iftex/iftex.sty" 1753233249 7984 7dbb9280f03c0a315425f1b4f35d43ee ""
- "c:/texlive/texlive/2025/texmf-dist/tex/generic/iftex/ifvtex.sty" 1753233249 1057 525c2192b5febbd8c1f662c9468335bb ""
- "c:/texlive/texlive/2025/texmf-dist/tex/generic/iftex/ifxetex.sty" 1753233249 488 4565444a3e75e59cb2702dc42e18f482 ""
- "c:/texlive/texlive/2025/texmf-dist/tex/generic/infwarerr/infwarerr.sty" 1753233312 8356 7bbb2c2373aa810be568c29e333da8ed ""
- "c:/texlive/texlive/2025/texmf-dist/tex/generic/intcalc/intcalc.sty" 1753233353 31769 002a487f55041f8e805cfbf6385ffd97 ""
- "c:/texlive/texlive/2025/texmf-dist/tex/generic/kastrup/binhex.tex" 1753233593 2553 4b99aa9667b708dd355926023d705446 ""
- "c:/texlive/texlive/2025/texmf-dist/tex/generic/kvdefinekeys/kvdefinekeys.sty" 1753233716 5412 d5a2436094cd7be85769db90f29250a6 ""
- "c:/texlive/texlive/2025/texmf-dist/tex/generic/ltxcmds/ltxcmds.sty" 1753234334 17865 1a9bd36b4f98178fa551aca822290953 ""
- "c:/texlive/texlive/2025/texmf-dist/tex/generic/pdfescape/pdfescape.sty" 1753235915 19007 15924f7228aca6c6d184b115f4baa231 ""
- "c:/texlive/texlive/2025/texmf-dist/tex/generic/pdftexcmds/pdftexcmds.sty" 1753235975 20089 80423eac55aa175305d35b49e04fe23b ""
- "c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/basiclayer/pgfcore.code.tex" 1753236032 1016 1c2b89187d12a2768764b83b4945667c ""
- "c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/basiclayer/pgfcorearrows.code.tex" 1753236032 43820 1fef971b75380574ab35a0d37fd92608 ""
- "c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreexternal.code.tex" 1753236032 19324 f4e4c6403dd0f1605fd20ed22fa79dea ""
- "c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/basiclayer/pgfcoregraphicstate.code.tex" 1753236032 6038 ccb406740cc3f03bbfb58ad504fe8c27 ""
- "c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreimage.code.tex" 1753236032 6911 f6d4cf5a3fef5cc879d668b810e82868 ""
- "c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/basiclayer/pgfcorelayers.code.tex" 1753236032 4883 42daaf41e27c3735286e23e48d2d7af9 ""
- "c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreobjects.code.tex" 1753236032 2544 8c06d2a7f0f469616ac9e13db6d2f842 ""
- "c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathconstruct.code.tex" 1753236032 44195 5e390c414de027626ca5e2df888fa68d ""
- "c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathprocessing.code.tex" 1753236032 17311 2ef6b2e29e2fc6a2fc8d6d652176e257 ""
- "c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathusage.code.tex" 1753236032 21302 788a79944eb22192a4929e46963a3067 ""
- "c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepatterns.code.tex" 1753236032 9691 3d42d89522f4650c2f3dc616ca2b925e ""
- "c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepoints.code.tex" 1753236032 33335 dd1fa4814d4e51f18be97d88bf0da60c ""
- "c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/basiclayer/pgfcorequick.code.tex" 1753236032 2965 4c2b1f4e0826925746439038172e5d6f ""
- "c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/basiclayer/pgfcorerdf.code.tex" 1753236032 5196 2cc249e0ee7e03da5f5f6589257b1e5b ""
- "c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/basiclayer/pgfcorescopes.code.tex" 1753236032 20821 7579108c1e9363e61a0b1584778804aa ""
- "c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreshade.code.tex" 1753236032 35249 abd4adf948f960299a4b3d27c5dddf46 ""
- "c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/basiclayer/pgfcoretransformations.code.tex" 1753236032 22012 81b34a0aa8fa1a6158cc6220b00e4f10 ""
- "c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/basiclayer/pgfcoretransparency.code.tex" 1753236032 8893 e851de2175338fdf7c17f3e091d94618 ""
- "c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryfadings.code.tex" 1753236032 1179 5483d86c1582c569e665c74efab6281f ""
- "c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarytopaths.code.tex" 1753236032 11518 738408f795261b70ce8dd47459171309 ""
- "c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/frontendlayer/tikz/tikz.code.tex" 1753236032 186782 af500404a9edec4d362912fe762ded92 ""
- "c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/libraries/pgflibraryfadings.code.tex" 1753236032 2563 d5b174eb7709fd6bdcc2f70953dbdf8e ""
- "c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/libraries/pgflibraryplothandlers.code.tex" 1753236032 32995 ac577023e12c0e4bd8aa420b2e852d1a ""
- "c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/math/pgfint.code.tex" 1753236032 3063 8c415c68a0f3394e45cfeca0b65f6ee6 ""
- "c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/math/pgfmath.code.tex" 1753236032 949 cea70942e7b7eddabfb3186befada2e6 ""
- "c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/math/pgfmathcalc.code.tex" 1753236032 13270 2e54f2ce7622437bf37e013d399743e3 ""
- "c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/math/pgfmathfloat.code.tex" 1753236032 104717 9b2393fbf004a0ce7fa688dbce423848 ""
- "c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.base.code.tex" 1753236032 10165 cec5fa73d49da442e56efc2d605ef154 ""
- "c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.basic.code.tex" 1753236032 28178 41c17713108e0795aac6fef3d275fbca ""
- "c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.code.tex" 1753236032 9649 85779d3d8d573bfd2cd4137ba8202e60 ""
- "c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.comparison.code.tex" 1753236032 3865 ac538ab80c5cf82b345016e474786549 ""
- "c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.integerarithmetics.code.tex" 1753236032 3177 27d85c44fbfe09ff3b2cf2879e3ea434 ""
- "c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.misc.code.tex" 1753236032 11024 0179538121bc2dba172013a3ef89519f ""
- "c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.random.code.tex" 1753236032 7890 0a86dbf4edfd88d022e0d889ec78cc03 ""
- "c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.round.code.tex" 1753236032 3379 781797a101f647bab82741a99944a229 ""
- "c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.trigonometric.code.tex" 1753236032 92405 f515f31275db273f97b9d8f52e1b0736 ""
- "c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/math/pgfmathparser.code.tex" 1753236032 37466 97b0a1ba732e306a1a2034f5a73e239f ""
- "c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/math/pgfmathutil.code.tex" 1753236032 8471 c2883569d03f69e8e1cabfef4999cfd7 ""
- "c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/modules/pgfmodulematrix.code.tex" 1753236032 21211 1e73ec76bd73964d84197cc3d2685b01 ""
- "c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/modules/pgfmoduleplot.code.tex" 1753236032 16121 346f9013d34804439f7436ff6786cef7 ""
- "c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/modules/pgfmoduleshapes.code.tex" 1753236032 44792 271e2e1934f34c759f4dedb1e14a5015 ""
- "c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/pgf.revision.tex" 1753236032 114 e6d443369d0673933b38834bf99e422d ""
- "c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/systemlayer/pgf.cfg" 1753236032 926 2963ea0dcf6cc6c0a770b69ec46a477b ""
- "c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/systemlayer/pgfsys-common-pdf.def" 1753236032 5542 32f75a31ea6c3a7e1148cd6d5e93dbb7 ""
- "c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/systemlayer/pgfsys-pdftex.def" 1753236032 12612 7774ba67bfd72e593c4436c2de6201e3 ""
- "c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/systemlayer/pgfsys.code.tex" 1753236033 61351 bc5f86e0355834391e736e97a61abced ""
- "c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/systemlayer/pgfsysprotocol.code.tex" 1753236033 1896 b8e0ca0ac371d74c0ca05583f6313c91 ""
- "c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/systemlayer/pgfsyssoftpath.code.tex" 1753236033 7778 53c8b5623d80238f6a20aa1df1868e63 ""
- "c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/utilities/pgffor.code.tex" 1753236033 24033 d8893a1ec4d1bfa101b172754743d340 ""
- "c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/utilities/pgfkeys.code.tex" 1753236033 39784 414c54e866ebab4b801e2ad81d9b21d8 ""
- "c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/utilities/pgfkeyslibraryfiltered.code.tex" 1753236033 37433 940bc6d409f1ffd298adfdcaf125dd86 ""
- "c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/utilities/pgfrcs.code.tex" 1753236033 4385 510565c2f07998c8a0e14f0ec07ff23c ""
- "c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/utilities/pgfutil-common.tex" 1753236033 29239 22e8c7516012992a49873eff0d868fed ""
- "c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/utilities/pgfutil-latex.def" 1753236033 6950 8524a062d82b7afdc4a88a57cb377784 ""
- "c:/texlive/texlive/2025/texmf-dist/tex/generic/stringenc/stringenc.sty" 1753237874 21514 b7557edcee22835ef6b03ede1802dad4 ""
- "c:/texlive/texlive/2025/texmf-dist/tex/generic/uniquecounter/uniquecounter.sty" 1753239209 7008 f92eaa0a3872ed622bbf538217cd2ab7 ""
- "c:/texlive/texlive/2025/texmf-dist/tex/generic/xkeyval/keyval.tex" 1753239747 2725 1a42bd9e7e57e25fc7763c445f4b785b ""
- "c:/texlive/texlive/2025/texmf-dist/tex/generic/xkeyval/xkeyval.tex" 1753239747 19231 27205ee17aaa2902aea3e0c07a3cfc65 ""
- "c:/texlive/texlive/2025/texmf-dist/tex/generic/xkeyval/xkvutils.tex" 1753239747 7677 9cb1a74d945bc9331f2181c0a59ff34a ""
- "c:/texlive/texlive/2025/texmf-dist/tex/generic/xstring/xstring.sty" 1753239814 123 a302f2c651a95033260db60e51527ae8 ""
- "c:/texlive/texlive/2025/texmf-dist/tex/generic/xstring/xstring.tex" 1753239814 49397 a8071cbd06dd0bb15ae8acf876c73f20 ""
- "c:/texlive/texlive/2025/texmf-dist/tex/latex/amscls/amsthm.sty" 1753427156 12595 80c5f0ae5e399fa62d8c542a5270203b ""
- "c:/texlive/texlive/2025/texmf-dist/tex/latex/amsfonts/amsfonts.sty" 1753227864 5949 3f3fd50a8cc94c3d4cbf4fc66cd3df1c ""
- "c:/texlive/texlive/2025/texmf-dist/tex/latex/amsfonts/amssymb.sty" 1753227864 13829 94730e64147574077f8ecfea9bb69af4 ""
- "c:/texlive/texlive/2025/texmf-dist/tex/latex/amsfonts/umsa.fd" 1753227864 961 6518c6525a34feb5e8250ffa91731cff ""
- "c:/texlive/texlive/2025/texmf-dist/tex/latex/amsfonts/umsb.fd" 1753227864 961 d02606146ba5601b5645f987c92e6193 ""
- "c:/texlive/texlive/2025/texmf-dist/tex/latex/amsmath/amsbsy.sty" 1753227879 2222 2166a1f7827be30ddc30434e5efcee1b ""
- "c:/texlive/texlive/2025/texmf-dist/tex/latex/amsmath/amsgen.sty" 1753227879 4173 d22509bc0c91281d991b2de7c88720dd ""
- "c:/texlive/texlive/2025/texmf-dist/tex/latex/amsmath/amsmath.sty" 1753227879 88370 c780f23aea0ece6add91e09b44dca2cd ""
- "c:/texlive/texlive/2025/texmf-dist/tex/latex/amsmath/amsopn.sty" 1753227879 4474 23ca1d3a79a57b405388059456d0a8df ""
- "c:/texlive/texlive/2025/texmf-dist/tex/latex/amsmath/amstext.sty" 1753227879 2444 71618ea5f2377e33b04fb97afdd0eac2 ""
- "c:/texlive/texlive/2025/texmf-dist/tex/latex/appendix/appendix.sty" 1753228011 8878 d9f65b39ca82f1d70030390eca653b1c ""
- "c:/texlive/texlive/2025/texmf-dist/tex/latex/atveryend/atveryend.sty" 1753228390 1695 be6b4d13b33db697fd3fd30b24716c1a ""
- "c:/texlive/texlive/2025/texmf-dist/tex/latex/base/article.cls" 1753233813 20144 63d8bacaf52e5abf4db3bc322373e1d4 ""
- "c:/texlive/texlive/2025/texmf-dist/tex/latex/base/atbegshi-ltx.sty" 1753233813 2963 d8ec5a1b4e0a106c5c737900202763e4 ""
- "c:/texlive/texlive/2025/texmf-dist/tex/latex/base/atveryend-ltx.sty" 1753233813 2378 14b657ee5031da98cf91648f19642694 ""
- "c:/texlive/texlive/2025/texmf-dist/tex/latex/base/flafter.sty" 1753233813 9829 29f8c3c70ca2f57c991ba32a5239ec3f ""
- "c:/texlive/texlive/2025/texmf-dist/tex/latex/base/fontenc.sty" 1753233813 5275 0d62fb62162c7ab056e941ef18c5076d ""
- "c:/texlive/texlive/2025/texmf-dist/tex/latex/base/ifthen.sty" 1753233813 5525 9dced5929f36b19fa837947f5175b331 ""
- "c:/texlive/texlive/2025/texmf-dist/tex/latex/base/inputenc.sty" 1753233813 5048 0270515b828149155424600fd2d58ac5 ""
- "c:/texlive/texlive/2025/texmf-dist/tex/latex/base/latexsym.sty" 1753233813 2853 45a98f589f86476fadff19a8edda5ea9 ""
- "c:/texlive/texlive/2025/texmf-dist/tex/latex/base/size12.clo" 1753233813 8449 ffe4ba2166a344827c3a832d1d5e0a91 ""
- "c:/texlive/texlive/2025/texmf-dist/tex/latex/base/textcomp.sty" 1753233813 2846 e26604d3d895e65d874c07f30c291f3f ""
- "c:/texlive/texlive/2025/texmf-dist/tex/latex/base/ulasy.fd" 1753233813 2233 b5d3114ec3e0616e658a8e7b74e810f1 ""
- "c:/texlive/texlive/2025/texmf-dist/tex/latex/bera/berasans.sty" 1753229074 767 8025312eed21a75a78d69ea407fe9dc9 ""
- "c:/texlive/texlive/2025/texmf-dist/tex/latex/bera/t1fvs.fd" 1753229074 799 1c7179255c87737defa8c9bc9da9d025 ""
- "c:/texlive/texlive/2025/texmf-dist/tex/latex/biblatex/bbx/numeric.bbx" 1753229185 1818 9ed166ac0a9204a8ebe450ca09db5dde ""
- "c:/texlive/texlive/2025/texmf-dist/tex/latex/biblatex/bbx/standard.bbx" 1753229185 25680 409c3f3d570418bc545e8065bebd0688 ""
- "c:/texlive/texlive/2025/texmf-dist/tex/latex/biblatex/biblatex.cfg" 1753229185 69 249fa6df04d948e51b6d5c67bea30c42 ""
- "c:/texlive/texlive/2025/texmf-dist/tex/latex/biblatex/biblatex.def" 1753229185 96838 228f189cb4020ea9f6d467af8aa859c2 ""
- "c:/texlive/texlive/2025/texmf-dist/tex/latex/biblatex/biblatex.sty" 1753229185 533961 a8d65602d822bf3d3c823e6dc4922bbc ""
- "c:/texlive/texlive/2025/texmf-dist/tex/latex/biblatex/blx-case-expl3.sty" 1753229185 9961 107fdb78f652fccae7bce0d23bdc19cd ""
- "c:/texlive/texlive/2025/texmf-dist/tex/latex/biblatex/blx-compat.def" 1753229185 13919 5426dbe90e723f089052b4e908b56ef9 ""
- "c:/texlive/texlive/2025/texmf-dist/tex/latex/biblatex/blx-dm.def" 1753229185 32761 18d14e3b502c120f79b2184de4e21d14 ""
- "c:/texlive/texlive/2025/texmf-dist/tex/latex/biblatex/cbx/numeric.cbx" 1753229185 4629 cda468e8a0b1cfa0f61872e171037a4b ""
- "c:/texlive/texlive/2025/texmf-dist/tex/latex/biblatex/lbx/english.lbx" 1753229185 40021 daa5a82ed0967f3ac4b77cb8384cac55 ""
- "c:/texlive/texlive/2025/texmf-dist/tex/latex/booktabs/booktabs.sty" 1753229723 6078 f1cb470c9199e7110a27851508ed7a5c ""
- "c:/texlive/texlive/2025/texmf-dist/tex/latex/carlisle/scalefnt.sty" 1753229963 1360 df2086bf924b14b72d6121fe9502fcdb ""
- "c:/texlive/texlive/2025/texmf-dist/tex/latex/colortbl/colortbl.sty" 1753230499 12726 67708fc852a887b2ba598148f60c3756 ""
- "c:/texlive/texlive/2025/texmf-dist/tex/latex/enumitem/enumitem.sty" 1753231604 52272 63d293bc0d496619edb57585740861a2 ""
- "c:/texlive/texlive/2025/texmf-dist/tex/latex/environ/environ.sty" 1753231613 4378 f429f0da968c278653359293040a8f52 ""
- "c:/texlive/texlive/2025/texmf-dist/tex/latex/epstopdf-pkg/epstopdf-base.sty" 1753231655 13886 d1306dcf79a944f6988e688c1785f9ce ""
- "c:/texlive/texlive/2025/texmf-dist/tex/latex/epstopdf-pkg/epstopdf.sty" 1753231655 4393 47f27fd4d95928d20b1885ba77de11d2 ""
- "c:/texlive/texlive/2025/texmf-dist/tex/latex/etoolbox/etoolbox.sty" 1753231760 46850 d87daedc2abdc653769a6f1067849fe0 ""
- "c:/texlive/texlive/2025/texmf-dist/tex/latex/fancybox/fancybox.sty" 1753231927 27261 5ae6156674330dc345adb79b6e5d8966 ""
- "c:/texlive/texlive/2025/texmf-dist/tex/latex/fancyhdr/fancyhdr.sty" 1753231930 31715 19e60610b63819fe670dfa1cd84a4e94 ""
- "c:/texlive/texlive/2025/texmf-dist/tex/latex/float/float.sty" 1753232159 6749 16d2656a1984957e674b149555f1ea1d ""
- "c:/texlive/texlive/2025/texmf-dist/tex/latex/fontaxes/fontaxes.sty" 1753232220 14310 41fdb35c51be792ddf00696848d0cfef ""
- "c:/texlive/texlive/2025/texmf-dist/tex/latex/geometry/geometry.sty" 1753232470 41601 9cf6c5257b1bc7af01a58859749dd37a ""
- "c:/texlive/texlive/2025/texmf-dist/tex/latex/graphics-cfg/color.cfg" 1753232684 1213 620bba36b25224fa9b7e1ccb4ecb76fd ""
- "c:/texlive/texlive/2025/texmf-dist/tex/latex/graphics-cfg/graphics.cfg" 1753232684 1224 978390e9c2234eab29404bc21b268d1e ""
- "c:/texlive/texlive/2025/texmf-dist/tex/latex/graphics-def/pdftex.def" 1753232686 19440 9da9dcbb27470349a580fca7372d454b ""
- "c:/texlive/texlive/2025/texmf-dist/tex/latex/graphics/color.sty" 1753232682 7245 57f7defed4fb41562dc4b6ca13958ca9 ""
- "c:/texlive/texlive/2025/texmf-dist/tex/latex/graphics/graphics.sty" 1753232682 18363 dee506cb8d56825d8a4d020f5d5f8704 ""
- "c:/texlive/texlive/2025/texmf-dist/tex/latex/graphics/graphicx.sty" 1753232682 8010 6f2ad8c2b2ffbd607af6475441c7b5e4 ""
- "c:/texlive/texlive/2025/texmf-dist/tex/latex/graphics/keyval.sty" 1753232682 2671 70891d50dac933918b827d326687c6e8 ""
- "c:/texlive/texlive/2025/texmf-dist/tex/latex/graphics/mathcolor.ltx" 1753232682 2885 9c645d672ae17285bba324998918efd8 ""
- "c:/texlive/texlive/2025/texmf-dist/tex/latex/graphics/trig.sty" 1753232682 4023 2c9f39712cf7b43d3eb93a8bbd5c8f67 ""
- "c:/texlive/texlive/2025/texmf-dist/tex/latex/grfext/grfext.sty" 1753232728 7133 b94bbacbee6e4fdccdc7f810b2aec370 ""
- "c:/texlive/texlive/2025/texmf-dist/tex/latex/hycolor/hycolor.sty" 1753233053 17914 4c28a13fc3d975e6e81c9bea1d697276 ""
- "c:/texlive/texlive/2025/texmf-dist/tex/latex/hyperref/hpdftex.def" 1753233073 48154 82da9991b9f0390b3a9d3af6c8618af4 ""
- "c:/texlive/texlive/2025/texmf-dist/tex/latex/hyperref/hyperref.sty" 1753233073 222112 c22dbd2288f89f7ba942ac22f7d00f11 ""
- "c:/texlive/texlive/2025/texmf-dist/tex/latex/hyperref/nameref.sty" 1753233073 11026 182c63f139a71afd30a28e5f1ed2cd1c ""
- "c:/texlive/texlive/2025/texmf-dist/tex/latex/hyperref/pd1enc.def" 1753233073 14249 ff700eb13ce975a424b2dd99b1a83044 ""
- "c:/texlive/texlive/2025/texmf-dist/tex/latex/hyperref/puenc.def" 1753233073 117112 7533bff456301d32e6d6356fad15f543 ""
- "c:/texlive/texlive/2025/texmf-dist/tex/latex/jknapltx/mathrsfs.sty" 1753233488 300 12fa6f636b617656f2810ee82cb05015 ""
- "c:/texlive/texlive/2025/texmf-dist/tex/latex/jknapltx/ursfs.fd" 1753233488 548 cc4e3557704bfed27c7002773fad6c90 ""
- "c:/texlive/texlive/2025/texmf-dist/tex/latex/kvoptions/kvoptions.sty" 1753233722 22555 6d8e155cfef6d82c3d5c742fea7c992e ""
- "c:/texlive/texlive/2025/texmf-dist/tex/latex/kvsetkeys/kvsetkeys.sty" 1753233725 13815 760b0c02f691ea230f5359c4e1de23a7 ""
- "c:/texlive/texlive/2025/texmf-dist/tex/latex/l3backend/l3backend-pdftex.def" 1753233742 29785 9f93ab201fe5dd053afcc6c1bcf7d266 ""
- "c:/texlive/texlive/2025/texmf-dist/tex/latex/l3kernel/expl3.sty" 1753233754 6565 f51d809db6193fae7b06c1bc26ca8f75 ""
- "c:/texlive/texlive/2025/texmf-dist/tex/latex/l3packages/l3keys2e/l3keys2e.sty" 1753233762 4674 22943918cc84173478a588d6efbc800b ""
- "c:/texlive/texlive/2025/texmf-dist/tex/latex/l3packages/xparse/xparse.sty" 1753233762 9783 ab4bee47700c04aadedb8da27591b0ab ""
- "c:/texlive/texlive/2025/texmf-dist/tex/latex/lastpage/lastpage.sty" 1753233810 2865 e1ad4181fc95487720e03eafe579b4f4 ""
- "c:/texlive/texlive/2025/texmf-dist/tex/latex/lastpage/lastpage2e.sty" 1753233810 2716 70bb44a7e59e4fbed7e7eb88bcb91598 ""
- "c:/texlive/texlive/2025/texmf-dist/tex/latex/lastpage/lastpagemodern.sty" 1753233810 9115 fd1b3e63899fc1f95826155a1cc342ca ""
- "c:/texlive/texlive/2025/texmf-dist/tex/latex/latexconfig/epstopdf-sys.cfg" 1753233924 678 4792914a8f45be57bb98413425e4c7af ""
- "c:/texlive/texlive/2025/texmf-dist/tex/latex/listings/listings.cfg" 1753234147 1865 301ae3c26fb8c0243307b619a6aa2dd3 ""
- "c:/texlive/texlive/2025/texmf-dist/tex/latex/listings/listings.sty" 1753234147 81640 997090b6c021dc4af9ee00a97b85c5b4 ""
- "c:/texlive/texlive/2025/texmf-dist/tex/latex/listings/lstlang1.sty" 1753234147 206518 4eb59a801ad842a713fa168c34227290 ""
- "c:/texlive/texlive/2025/texmf-dist/tex/latex/listings/lstmisc.sty" 1753234147 77051 be68720e5402397a830abb9eed5a2cb4 ""
- "c:/texlive/texlive/2025/texmf-dist/tex/latex/listings/lstpatch.sty" 1753234147 353 9024412f43e92cd5b21fe9ded82d0610 ""
- "c:/texlive/texlive/2025/texmf-dist/tex/latex/listingsutf8/listingsutf8.sty" 1753234153 5148 1baf596b2560b44d9ff1889dc1d7564e ""
- "c:/texlive/texlive/2025/texmf-dist/tex/latex/logreq/logreq.def" 1753234220 1620 fb1c32b818f2058eca187e5c41dfae77 ""
- "c:/texlive/texlive/2025/texmf-dist/tex/latex/logreq/logreq.sty" 1753234220 6187 b27afc771af565d3a9ff1ca7d16d0d46 ""
- "c:/texlive/texlive/2025/texmf-dist/tex/latex/makecell/makecell.sty" 1753234568 15773 2dd7dde1ec1c2a3d0c85bc3b273e04d8 ""
- "c:/texlive/texlive/2025/texmf-dist/tex/latex/multirow/multirow.sty" 1753235189 6696 886c9f3087d0b973ed2c19aa79cb3023 ""
- "c:/texlive/texlive/2025/texmf-dist/tex/latex/mweights/mweights.sty" 1753235228 4953 67f29a12ea26221103fce6bae3433e60 ""
- "c:/texlive/texlive/2025/texmf-dist/tex/latex/newtx/newtxtext.sty" 1753235341 30156 0a19c9edb32312a6fb89020d05f0976d ""
- "c:/texlive/texlive/2025/texmf-dist/tex/latex/newtx/t1ntxtlf.fd" 1753235341 2211 2794559346df5bbb0dbf1a757c3cc21f ""
- "c:/texlive/texlive/2025/texmf-dist/tex/latex/newtx/ts1ntxtlf.fd" 1753235341 1219 06811c362a6c86c10e17f80577d8ceee ""
- "c:/texlive/texlive/2025/texmf-dist/tex/latex/nicematrix/nicematrix.sty" 1753235367 403700 b392b1675aed7fc914022d52517c501d ""
- "c:/texlive/texlive/2025/texmf-dist/tex/latex/paralist/paralist.sty" 1753235797 14857 82c76ebe8f06becf69ab309565b2a0cb ""
- "c:/texlive/texlive/2025/texmf-dist/tex/latex/pdfcol/pdfcol.sty" 1753235898 8086 ac143843b6ea88d172677dc3ed532925 ""
- "c:/texlive/texlive/2025/texmf-dist/tex/latex/pgf/basiclayer/pgf.sty" 1753236033 1090 bae35ef70b3168089ef166db3e66f5b2 ""
- "c:/texlive/texlive/2025/texmf-dist/tex/latex/pgf/basiclayer/pgfcore.sty" 1753236033 373 00b204b1d7d095b892ad31a7494b0373 ""
- "c:/texlive/texlive/2025/texmf-dist/tex/latex/pgf/compatibility/pgfcomp-version-0-65.sty" 1753236033 21013 f4ff83d25bb56552493b030f27c075ae ""
- "c:/texlive/texlive/2025/texmf-dist/tex/latex/pgf/compatibility/pgfcomp-version-1-18.sty" 1753236033 989 c49c8ae06d96f8b15869da7428047b1e ""
- "c:/texlive/texlive/2025/texmf-dist/tex/latex/pgf/frontendlayer/tikz.sty" 1753236033 339 c2e180022e3afdb99c7d0ea5ce469b7d ""
- "c:/texlive/texlive/2025/texmf-dist/tex/latex/pgf/math/pgfmath.sty" 1753236033 306 c56a323ca5bf9242f54474ced10fca71 ""
- "c:/texlive/texlive/2025/texmf-dist/tex/latex/pgf/systemlayer/pgfsys.sty" 1753236033 443 8c872229db56122037e86bcda49e14f3 ""
- "c:/texlive/texlive/2025/texmf-dist/tex/latex/pgf/utilities/pgffor.sty" 1753236033 348 ee405e64380c11319f0e249fed57e6c5 ""
- "c:/texlive/texlive/2025/texmf-dist/tex/latex/pgf/utilities/pgfkeys.sty" 1753236033 274 5ae372b7df79135d240456a1c6f2cf9a ""
- "c:/texlive/texlive/2025/texmf-dist/tex/latex/pgf/utilities/pgfrcs.sty" 1753236033 325 f9f16d12354225b7dd52a3321f085955 ""
- "c:/texlive/texlive/2025/texmf-dist/tex/latex/psnfss/pifont.sty" 1753236458 2283 62e73848f29fd8cd37fb7974c7cf2221 ""
- "c:/texlive/texlive/2025/texmf-dist/tex/latex/psnfss/upsy.fd" 1753236458 148 2da0acd77cba348f34823f44cabf0058 ""
- "c:/texlive/texlive/2025/texmf-dist/tex/latex/psnfss/upzd.fd" 1753236458 148 b2a94082cb802f90d3daf6dd0c7188a0 ""
- "c:/texlive/texlive/2025/texmf-dist/tex/latex/refcount/refcount.sty" 1753236974 9878 9e94e8fa600d95f9c7731bb21dfb67a4 ""
- "c:/texlive/texlive/2025/texmf-dist/tex/latex/rerunfilecheck/rerunfilecheck.sty" 1753237023 9714 ba3194bd52c8499b3f1e3eb91d409670 ""
- "c:/texlive/texlive/2025/texmf-dist/tex/latex/siunitx/siunitx.sty" 1753237583 340829 1b2c1d1f1f03e683fab4091869acffd3 ""
- "c:/texlive/texlive/2025/texmf-dist/tex/latex/tcolorbox/tcbbreakable.code.tex" 1753238131 34681 5ad5619477798e0585ce97e92ba075bc ""
- "c:/texlive/texlive/2025/texmf-dist/tex/latex/tcolorbox/tcbexternal.code.tex" 1753238131 9105 5a50b7066ed23d09205aa37fe69e951c ""
- "c:/texlive/texlive/2025/texmf-dist/tex/latex/tcolorbox/tcbfitting.code.tex" 1753238131 17164 002bdbaf09e605e895c644057c268091 ""
- "c:/texlive/texlive/2025/texmf-dist/tex/latex/tcolorbox/tcbhooks.code.tex" 1753238131 10373 24c63e0637d2172d23a50c61238bcc41 ""
- "c:/texlive/texlive/2025/texmf-dist/tex/latex/tcolorbox/tcblistings.code.tex" 1753238131 3414 a8758eb0339def475b3e375fe7335593 ""
- "c:/texlive/texlive/2025/texmf-dist/tex/latex/tcolorbox/tcblistingscore.code.tex" 1753238131 16147 2a7437ae9362c29025ce183991034565 ""
- "c:/texlive/texlive/2025/texmf-dist/tex/latex/tcolorbox/tcblistingsutf8.code.tex" 1753238131 1414 3fc2bfc308b8836fb8873071647d1e16 ""
- "c:/texlive/texlive/2025/texmf-dist/tex/latex/tcolorbox/tcbmagazine.code.tex" 1753238131 5636 42acbec9b01b769d4ce0f204522d04cc ""
- "c:/texlive/texlive/2025/texmf-dist/tex/latex/tcolorbox/tcbposter.code.tex" 1753238131 12459 57c45692fee879446df2f871fdc3cb2c ""
- "c:/texlive/texlive/2025/texmf-dist/tex/latex/tcolorbox/tcbprocessing.code.tex" 1753238131 2349 2e9f0fbe0a111b50863d27c97793e439 ""
- "c:/texlive/texlive/2025/texmf-dist/tex/latex/tcolorbox/tcbraster.code.tex" 1753238131 9373 adb4c84606f9c1f78be1266d37bd8578 ""
- "c:/texlive/texlive/2025/texmf-dist/tex/latex/tcolorbox/tcbskins.code.tex" 1753238131 83599 50e7ac6ad41eaf61a7736beda9e3416b ""
- "c:/texlive/texlive/2025/texmf-dist/tex/latex/tcolorbox/tcbskinsjigsaw.code.tex" 1753238131 10040 cd3f87486a5ead1213ec367836f72332 ""
- "c:/texlive/texlive/2025/texmf-dist/tex/latex/tcolorbox/tcbtheorems.code.tex" 1753238131 13125 46ca7b1b209d14b980b66450466ae92d ""
- "c:/texlive/texlive/2025/texmf-dist/tex/latex/tcolorbox/tcbvignette.code.tex" 1753238131 12747 cd7c5d326d905561160a07ad889812b5 ""
- "c:/texlive/texlive/2025/texmf-dist/tex/latex/tcolorbox/tcolorbox.sty" 1753238131 105823 554671f5b2d97c7efbbaf6dae11c29a8 ""
- "c:/texlive/texlive/2025/texmf-dist/tex/latex/threeparttable/threeparttable.sty" 1753238489 13506 a4e71a27db1a69b6fabada5beebf0844 ""
- "c:/texlive/texlive/2025/texmf-dist/tex/latex/tikzfill/tikzfill-common.sty" 1753238633 2573 42712c9e0a2df004e43df5b3c95f0c1e ""
- "c:/texlive/texlive/2025/texmf-dist/tex/latex/tikzfill/tikzfill.image.sty" 1753238633 1120 ba535da48caa03bf1fd3f03ea87779f8 ""
- "c:/texlive/texlive/2025/texmf-dist/tex/latex/tikzfill/tikzlibraryfill.image.code.tex" 1753238633 10931 717eb52299f416934beb8b2b7cd8cee6 ""
- "c:/texlive/texlive/2025/texmf-dist/tex/latex/tocloft/tocloft.sty" 1753238806 36103 3e78d14f0f4b1a30560fea5e04de805d ""
- "c:/texlive/texlive/2025/texmf-dist/tex/latex/tools/array.sty" 1753238828 14552 27664839421e418b87f56fa4c6f66b1a ""
- "c:/texlive/texlive/2025/texmf-dist/tex/latex/tools/bm.sty" 1753238828 13236 1aba485b47e3c79a47dc0906cc971820 ""
- "c:/texlive/texlive/2025/texmf-dist/tex/latex/tools/calc.sty" 1753238828 10214 61188260d324e94bc2f66825d7d3fdf4 ""
- "c:/texlive/texlive/2025/texmf-dist/tex/latex/tools/hhline.sty" 1753238828 3831 65e4e98007e15ec862d6c137b7dde598 ""
- "c:/texlive/texlive/2025/texmf-dist/tex/latex/tools/longtable.sty" 1753238828 15900 3cb191e576c7a313634d2813c55d4bf1 ""
- "c:/texlive/texlive/2025/texmf-dist/tex/latex/tools/tabularx.sty" 1753238828 7243 e5dac1240636811edb77568b81818372 ""
- "c:/texlive/texlive/2025/texmf-dist/tex/latex/tools/verbatim.sty" 1753238828 7532 d2e1111e17bfebb1607d8ffa779705ec ""
- "c:/texlive/texlive/2025/texmf-dist/tex/latex/translations/translations-basic-dictionary-english.trsl" 1753238896 5588 0c1628daf15f4411ff1f463114c634a3 ""
- "c:/texlive/texlive/2025/texmf-dist/tex/latex/translations/translations.sty" 1753238896 44247 2188b95d0ee74e31eca4d316263c58a7 ""
- "c:/texlive/texlive/2025/texmf-dist/tex/latex/trimspaces/trimspaces.sty" 1753238917 1380 971a51b00a14503ddf754cab24c3f209 ""
- "c:/texlive/texlive/2025/texmf-dist/tex/latex/url/url.sty" 1753239292 12796 8edb7d69a20b857904dd0ea757c14ec9 ""
- "c:/texlive/texlive/2025/texmf-dist/tex/latex/xcolor/svgnam.def" 1753239606 4705 34614fec2d4cfd7794c82198c9076871 ""
- "c:/texlive/texlive/2025/texmf-dist/tex/latex/xcolor/xcolor.sty" 1753239606 55384 b454dec21c2d9f45ec0b793f0995b992 ""
- "c:/texlive/texlive/2025/texmf-dist/tex/latex/xkeyval/xkeyval.sty" 1753239747 4937 4ce600ce9bd4ec84d0250eb6892fcf4f ""
- "c:/texlive/texlive/2025/texmf-dist/tex/latex/xpatch/xpatch.sty" 1753239777 8314 7803f78066c4f9d008405191a4b43073 ""
- "c:/texlive/texlive/2025/texmf-dist/web2c/texmf.cnf" 1753227301 42148 61becc7c670cd061bb319c643c27fdd4 ""
- "c:/texlive/texlive/2025/texmf-var/fonts/map/pdftex/updmap/pdftex.map" 1753240015 5512729 3bbea1d3d753d4741e4f8ebc3edd0e55 ""
- "c:/texlive/texlive/2025/texmf-var/web2c/pdftex/pdflatex.fmt" 1753240348 3346109 90db271a247a6d6dff0f46e7836022f8 ""
- "c:/texlive/texlive/2025/texmf.cnf" 1753239986 713 e69b156964470283e0530f5060668171 ""
- "d:/XHJ/mathmo/MCM2026/20260116/vscode/mcmthesis-demo.tex" 1768851260 54698 964271d531ad614b4961f229bb5b3a02 ""
- "figures/Algorithm&Formula.png" 1768804985 369488 3789bafe02fc065d1ae73a5cc709399f ""
- "figures/distance.png" 1768814725 605939 f32ba82fc2734ff0c1e4bac6a16c9109 ""
- "figures/flow.png" 1768839580 378573 a50c745932c2d1e0dc3e8fc19d6cf11c ""
- "figures/flowchartmodel1.png" 1768808297 2328777 adfb505036e590e5d662f59377b5f647 ""
- "figures/flowchartmodel2.png" 1768821794 452177 05606daaf1359329922288d8b9706712 ""
- "figures/model1.1.png" 1768824828 1798857 426cbbb128a39b1b56d3ac9f73db6084 ""
- "figures/model1.3.png" 1768826169 84025 73b0fdb9b5f1c127f822561143c5a6ba ""
- "figures/model1.4.png" 1768826471 113032 ca84841cb2af60a2b0e94fa04fe6fa85 ""
- "figures/model1.5.png" 1768840386 99921 33f1e75c490171cf33951ea367bbf0ff ""
- "figures/model2.1.png" 1768841596 112923 99210d07af80a0377a0bbe013c1d61ba ""
- "figures/model2.2.png" 1768844066 1682555 294c194cfff7b0e66b299c3160ae242e ""
- "figures/model2.3.png" 1768846131 114142 2c0a3232f96d7cdd6e8f6569a4d233aa ""
- "figures/task1.png" 1768846583 189273 513a0916f1fc861a91a412d979169799 ""
- "figures/task3.png" 1768846607 743868 5821676402a8bb4ec825542f89c0c7bb ""
- "mcmthesis-demo.aux" 1768851270 14180 e8a10bcb9642bf6df897e8788ffec51d "pdflatex"
- "mcmthesis-demo.bbl" 1768849932 5058 371bca58270e09da6067bce58f579d79 "biber mcmthesis-demo"
- "mcmthesis-demo.out" 1768851270 7884 f415354b61a311ce130877a63be5eda9 "pdflatex"
- "mcmthesis-demo.run.xml" 1768851270 2374 8acd9fdd18767407ba97d7e3f74e5dd4 "pdflatex"
- "mcmthesis-demo.tex" 1768851260 54698 964271d531ad614b4961f229bb5b3a02 ""
- "mcmthesis-demo.toc" 1768851270 3451 1b30893726b08c3c92ad131d5d4c74f0 "pdflatex"
- "mcmthesis.cls" 1768658136 10728 7c295ddb7cdb782babec75696585fe9f ""
- (generated)
- "mcmthesis-demo.aux"
- "mcmthesis-demo.bcf"
- "mcmthesis-demo.log"
- "mcmthesis-demo.out"
- "mcmthesis-demo.pdf"
- "mcmthesis-demo.run.xml"
- "mcmthesis-demo.toc"
- (rewritten before read)
diff --git a/vscode/mcmthesis-demo.fls b/vscode/mcmthesis-demo.fls
deleted file mode 100755
index 360cd5d..0000000
--- a/vscode/mcmthesis-demo.fls
+++ /dev/null
@@ -1,644 +0,0 @@
-PWD d:/XHJ/mathmo/MCM2026/20260116/vscode
-INPUT c:/texlive/texlive/2025/texmf.cnf
-INPUT c:/texlive/texlive/2025/texmf-dist/web2c/texmf.cnf
-INPUT c:/texlive/texlive/2025/texmf-var/web2c/pdftex/pdflatex.fmt
-INPUT d:/XHJ/mathmo/MCM2026/20260116/vscode/mcmthesis-demo.tex
-OUTPUT mcmthesis-demo.log
-INPUT ./mcmthesis.cls
-INPUT mcmthesis.cls
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/xkeyval/xkeyval.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/xkeyval/xkeyval.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/generic/xkeyval/xkeyval.tex
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/generic/xkeyval/xkvutils.tex
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/generic/xkeyval/keyval.tex
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/etoolbox/etoolbox.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/etoolbox/etoolbox.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/base/article.cls
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/base/article.cls
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/base/size12.clo
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/base/size12.clo
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/base/size12.clo
-INPUT c:/texlive/texlive/2025/texmf-dist/fonts/map/fontname/texfonts.map
-INPUT c:/texlive/texlive/2025/texmf-dist/fonts/tfm/public/cm/cmr12.tfm
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/fancyhdr/fancyhdr.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/fancyhdr/fancyhdr.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/fancybox/fancybox.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/fancybox/fancybox.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/base/ifthen.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/base/ifthen.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/lastpage/lastpage.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/lastpage/lastpage.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/lastpage/lastpage2e.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/lastpage/lastpage2e.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/lastpage/lastpagemodern.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/lastpage/lastpagemodern.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/listings/listings.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/listings/listings.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/graphics/keyval.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/listings/lstpatch.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/listings/lstpatch.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/listings/lstpatch.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/listings/lstmisc.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/listings/lstmisc.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/listings/lstmisc.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/listings/listings.cfg
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/listings/listings.cfg
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/listings/listings.cfg
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/appendix/appendix.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/appendix/appendix.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/paralist/paralist.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/paralist/paralist.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/amscls/amsthm.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/amscls/amsthm.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/amsfonts/amsfonts.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/amsfonts/amsfonts.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/amsmath/amsmath.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/amsmath/amsmath.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/amsmath/amsopn.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/amsmath/amstext.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/amsmath/amstext.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/amsmath/amsgen.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/amsmath/amsgen.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/amsmath/amsbsy.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/amsmath/amsbsy.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/amsmath/amsopn.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/tools/bm.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/tools/bm.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/amsfonts/amssymb.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/amsfonts/amssymb.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/jknapltx/mathrsfs.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/jknapltx/mathrsfs.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/base/latexsym.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/base/latexsym.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/tools/longtable.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/tools/longtable.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/multirow/multirow.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/multirow/multirow.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/tools/hhline.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/tools/hhline.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/tools/tabularx.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/tools/tabularx.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/tools/array.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/tools/array.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/base/flafter.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/base/flafter.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/psnfss/pifont.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/psnfss/pifont.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/psnfss/upzd.fd
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/psnfss/upzd.fd
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/psnfss/upzd.fd
-INPUT c:/texlive/texlive/2025/texmf-dist/fonts/tfm/adobe/zapfding/pzdr.tfm
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/psnfss/upsy.fd
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/psnfss/upsy.fd
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/psnfss/upsy.fd
-INPUT c:/texlive/texlive/2025/texmf-dist/fonts/tfm/adobe/symbol/psyr.tfm
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/tools/calc.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/tools/calc.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/colortbl/colortbl.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/colortbl/colortbl.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/graphics/color.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/graphics/color.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/graphics-cfg/color.cfg
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/graphics-cfg/color.cfg
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/graphics-cfg/color.cfg
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/graphics-def/pdftex.def
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/graphics-def/pdftex.def
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/graphics-def/pdftex.def
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/graphics/mathcolor.ltx
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/graphics/mathcolor.ltx
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/graphics/mathcolor.ltx
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/booktabs/booktabs.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/booktabs/booktabs.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/geometry/geometry.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/geometry/geometry.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/generic/iftex/ifvtex.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/generic/iftex/ifvtex.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/generic/iftex/iftex.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/generic/iftex/iftex.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/base/fontenc.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/base/fontenc.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/fonts/tfm/jknappen/ec/ecrm1200.tfm
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/bera/berasans.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/bera/berasans.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/hyperref/hyperref.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/hyperref/hyperref.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/kvsetkeys/kvsetkeys.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/kvsetkeys/kvsetkeys.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/generic/kvdefinekeys/kvdefinekeys.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/generic/kvdefinekeys/kvdefinekeys.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/generic/pdfescape/pdfescape.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/generic/pdfescape/pdfescape.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/generic/ltxcmds/ltxcmds.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/generic/ltxcmds/ltxcmds.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/generic/pdftexcmds/pdftexcmds.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/generic/pdftexcmds/pdftexcmds.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/generic/infwarerr/infwarerr.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/generic/infwarerr/infwarerr.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/hycolor/hycolor.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/hycolor/hycolor.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/hyperref/nameref.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/hyperref/nameref.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/refcount/refcount.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/refcount/refcount.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/generic/gettitlestring/gettitlestring.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/generic/gettitlestring/gettitlestring.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/kvoptions/kvoptions.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/kvoptions/kvoptions.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/generic/stringenc/stringenc.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/generic/stringenc/stringenc.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/hyperref/pd1enc.def
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/hyperref/pd1enc.def
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/hyperref/pd1enc.def
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/generic/intcalc/intcalc.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/generic/intcalc/intcalc.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/hyperref/puenc.def
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/hyperref/puenc.def
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/hyperref/puenc.def
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/url/url.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/url/url.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/generic/bitset/bitset.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/generic/bitset/bitset.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/generic/bigintcalc/bigintcalc.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/generic/bigintcalc/bigintcalc.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/generic/atbegshi/atbegshi.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/base/atbegshi-ltx.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/base/atbegshi-ltx.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/hyperref/hpdftex.def
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/hyperref/hpdftex.def
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/hyperref/hpdftex.def
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/atveryend/atveryend.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/base/atveryend-ltx.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/base/atveryend-ltx.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/rerunfilecheck/rerunfilecheck.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/rerunfilecheck/rerunfilecheck.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/generic/uniquecounter/uniquecounter.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/generic/uniquecounter/uniquecounter.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/generic/iftex/ifpdf.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/generic/iftex/ifpdf.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/generic/iftex/ifxetex.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/generic/iftex/ifxetex.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/environ/environ.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/environ/environ.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/trimspaces/trimspaces.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/trimspaces/trimspaces.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/graphics/graphicx.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/graphics/graphicx.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/graphics/graphics.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/graphics/graphics.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/graphics/trig.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/graphics/trig.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/graphics-cfg/graphics.cfg
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/graphics-cfg/graphics.cfg
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/graphics-cfg/graphics.cfg
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/epstopdf-pkg/epstopdf.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/epstopdf-pkg/epstopdf.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/grfext/grfext.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/grfext/grfext.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/epstopdf-pkg/epstopdf-base.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/epstopdf-pkg/epstopdf-base.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/latexconfig/epstopdf-sys.cfg
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/latexconfig/epstopdf-sys.cfg
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/latexconfig/epstopdf-sys.cfg
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/xcolor/xcolor.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/xcolor/xcolor.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/graphics-cfg/color.cfg
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/graphics/mathcolor.ltx
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/xcolor/svgnam.def
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/xcolor/svgnam.def
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/xcolor/svgnam.def
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/listings/lstlang1.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/listings/lstlang1.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/listings/lstlang1.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/listings/lstmisc.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/listings/lstmisc.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/listings/lstmisc.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/newtx/newtxtext.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/newtx/newtxtext.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/xpatch/xpatch.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/xpatch/xpatch.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/l3kernel/expl3.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/l3kernel/expl3.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/l3backend/l3backend-pdftex.def
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/l3backend/l3backend-pdftex.def
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/l3packages/xparse/xparse.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/l3packages/xparse/xparse.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/base/textcomp.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/base/textcomp.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/generic/xstring/xstring.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/generic/xstring/xstring.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/generic/xstring/xstring.tex
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/carlisle/scalefnt.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/carlisle/scalefnt.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/mweights/mweights.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/generic/kastrup/binhex.tex
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/generic/kastrup/binhex.tex
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/generic/kastrup/binhex.tex
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/generic/kastrup/binhex.tex
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/generic/kastrup/binhex.tex
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/fontaxes/fontaxes.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/fontaxes/fontaxes.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/biblatex/biblatex.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/biblatex/biblatex.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/logreq/logreq.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/logreq/logreq.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/logreq/logreq.def
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/logreq/logreq.def
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/logreq/logreq.def
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/biblatex/blx-dm.def
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/biblatex/blx-dm.def
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/biblatex/blx-dm.def
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/biblatex/blx-compat.def
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/biblatex/blx-compat.def
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/biblatex/blx-compat.def
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/biblatex/biblatex.def
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/biblatex/biblatex.def
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/biblatex/biblatex.def
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/biblatex/bbx/numeric.bbx
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/biblatex/bbx/numeric.bbx
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/biblatex/bbx/numeric.bbx
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/biblatex/bbx/standard.bbx
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/biblatex/bbx/standard.bbx
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/biblatex/bbx/standard.bbx
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/biblatex/cbx/numeric.cbx
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/biblatex/cbx/numeric.cbx
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/biblatex/cbx/numeric.cbx
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/biblatex/biblatex.cfg
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/biblatex/biblatex.cfg
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/biblatex/biblatex.cfg
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/biblatex/blx-case-expl3.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/biblatex/blx-case-expl3.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/tocloft/tocloft.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/tocloft/tocloft.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/float/float.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/float/float.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/nicematrix/nicematrix.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/nicematrix/nicematrix.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/pgf/basiclayer/pgfcore.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/pgf/basiclayer/pgfcore.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/pgf/systemlayer/pgfsys.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/pgf/systemlayer/pgfsys.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/pgf/utilities/pgfrcs.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/pgf/utilities/pgfrcs.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/utilities/pgfutil-common.tex
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/utilities/pgfutil-latex.def
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/utilities/pgfrcs.code.tex
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/utilities/pgfrcs.code.tex
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/utilities/pgfrcs.code.tex
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/pgf.revision.tex
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/pgf.revision.tex
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/systemlayer/pgfsys.code.tex
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/systemlayer/pgfsys.code.tex
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/systemlayer/pgfsys.code.tex
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/utilities/pgfkeys.code.tex
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/utilities/pgfkeyslibraryfiltered.code.tex
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/systemlayer/pgf.cfg
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/systemlayer/pgfsys-pdftex.def
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/systemlayer/pgfsys-pdftex.def
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/systemlayer/pgfsys-common-pdf.def
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/systemlayer/pgfsyssoftpath.code.tex
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/systemlayer/pgfsyssoftpath.code.tex
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/systemlayer/pgfsyssoftpath.code.tex
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/systemlayer/pgfsysprotocol.code.tex
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/systemlayer/pgfsysprotocol.code.tex
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/systemlayer/pgfsysprotocol.code.tex
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/basiclayer/pgfcore.code.tex
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/basiclayer/pgfcore.code.tex
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/basiclayer/pgfcore.code.tex
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/math/pgfmath.code.tex
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/math/pgfmathutil.code.tex
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/math/pgfmathparser.code.tex
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.code.tex
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.basic.code.tex
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.trigonometric.code.tex
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.random.code.tex
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.comparison.code.tex
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.base.code.tex
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.round.code.tex
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.misc.code.tex
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.integerarithmetics.code.tex
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/math/pgfmathcalc.code.tex
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/math/pgfmathfloat.code.tex
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/math/pgfint.code.tex
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepoints.code.tex
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathconstruct.code.tex
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathusage.code.tex
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/basiclayer/pgfcorescopes.code.tex
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/basiclayer/pgfcoregraphicstate.code.tex
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/basiclayer/pgfcoretransformations.code.tex
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/basiclayer/pgfcorequick.code.tex
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreobjects.code.tex
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathprocessing.code.tex
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/basiclayer/pgfcorearrows.code.tex
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreshade.code.tex
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreimage.code.tex
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreexternal.code.tex
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/basiclayer/pgfcorelayers.code.tex
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/basiclayer/pgfcoretransparency.code.tex
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepatterns.code.tex
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/basiclayer/pgfcorerdf.code.tex
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/modules/pgfmoduleshapes.code.tex
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/l3packages/l3keys2e/l3keys2e.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/l3packages/l3keys2e/l3keys2e.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/threeparttable/threeparttable.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/threeparttable/threeparttable.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/makecell/makecell.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/makecell/makecell.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/tcolorbox/tcolorbox.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/tcolorbox/tcolorbox.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/pgf/frontendlayer/tikz.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/pgf/frontendlayer/tikz.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/pgf/basiclayer/pgf.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/pgf/basiclayer/pgf.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/modules/pgfmoduleplot.code.tex
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/pgf/compatibility/pgfcomp-version-0-65.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/pgf/compatibility/pgfcomp-version-0-65.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/pgf/compatibility/pgfcomp-version-1-18.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/pgf/compatibility/pgfcomp-version-1-18.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/pgf/utilities/pgffor.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/pgf/utilities/pgffor.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/pgf/utilities/pgfkeys.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/pgf/utilities/pgfkeys.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/utilities/pgfkeys.code.tex
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/utilities/pgfkeys.code.tex
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/utilities/pgfkeys.code.tex
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/pgf/math/pgfmath.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/pgf/math/pgfmath.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/math/pgfmath.code.tex
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/math/pgfmath.code.tex
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/math/pgfmath.code.tex
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/utilities/pgffor.code.tex
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/utilities/pgffor.code.tex
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/utilities/pgffor.code.tex
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/frontendlayer/tikz/tikz.code.tex
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/frontendlayer/tikz/tikz.code.tex
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/frontendlayer/tikz/tikz.code.tex
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/libraries/pgflibraryplothandlers.code.tex
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/libraries/pgflibraryplothandlers.code.tex
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/modules/pgfmodulematrix.code.tex
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarytopaths.code.tex
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarytopaths.code.tex
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/tools/verbatim.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/tools/verbatim.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/tcolorbox/tcbraster.code.tex
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/tcolorbox/tcbskins.code.tex
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/tikzfill/tikzfill.image.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/tikzfill/tikzfill.image.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/tikzfill/tikzfill-common.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/tikzfill/tikzfill-common.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/tikzfill/tikzlibraryfill.image.code.tex
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/tikzfill/tikzlibraryfill.image.code.tex
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/tcolorbox/tcbskinsjigsaw.code.tex
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/tcolorbox/tcbbreakable.code.tex
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/pdfcol/pdfcol.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/pdfcol/pdfcol.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/tcolorbox/tcbhooks.code.tex
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/tcolorbox/tcbtheorems.code.tex
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/tcolorbox/tcbfitting.code.tex
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/tcolorbox/tcblistingsutf8.code.tex
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/tcolorbox/tcblistings.code.tex
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/tcolorbox/tcblistingscore.code.tex
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/tcolorbox/tcbprocessing.code.tex
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/listingsutf8/listingsutf8.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/listingsutf8/listingsutf8.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/tcolorbox/tcbexternal.code.tex
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/tcolorbox/tcbmagazine.code.tex
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/tcolorbox/tcbvignette.code.tex
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryfadings.code.tex
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryfadings.code.tex
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/libraries/pgflibraryfadings.code.tex
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/libraries/pgflibraryfadings.code.tex
-OUTPUT mcmthesis-demo.pdf
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/tcolorbox/tcbposter.code.tex
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/siunitx/siunitx.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/siunitx/siunitx.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/translations/translations.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/translations/translations.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/enumitem/enumitem.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/enumitem/enumitem.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/newtx/t1ntxtlf.fd
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/newtx/t1ntxtlf.fd
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/newtx/t1ntxtlf.fd
-INPUT c:/texlive/texlive/2025/texmf-dist/fonts/tfm/public/newtx/ntx-Regular-tlf-t1.tfm
-INPUT ./mcmthesis-demo.aux
-INPUT ./mcmthesis-demo.aux
-INPUT mcmthesis-demo.aux
-OUTPUT mcmthesis-demo.aux
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/context/base/mkii/supp-pdf.mkii
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/context/base/mkii/supp-pdf.mkii
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/context/base/mkii/supp-pdf.mkii
-INPUT ./mcmthesis-demo.out
-INPUT ./mcmthesis-demo.out
-INPUT mcmthesis-demo.out
-INPUT mcmthesis-demo.out
-INPUT ./mcmthesis-demo.out
-INPUT ./mcmthesis-demo.out
-OUTPUT mcmthesis-demo.out
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/biblatex/lbx/english.lbx
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/biblatex/lbx/english.lbx
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/biblatex/lbx/english.lbx
-OUTPUT mcmthesis-demo.bcf
-INPUT mcmthesis-demo.bbl
-INPUT ./mcmthesis-demo.bbl
-INPUT ./mcmthesis-demo.bbl
-INPUT ./mcmthesis-demo.bbl
-INPUT mcmthesis-demo.bbl
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/base/inputenc.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/base/inputenc.sty
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/translations/translations-basic-dictionary-english.trsl
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/translations/translations-basic-dictionary-english.trsl
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/translations/translations-basic-dictionary-english.trsl
-INPUT c:/texlive/texlive/2025/texmf-dist/fonts/tfm/public/newtx/ntx-Bold-tlf-t1.tfm
-INPUT c:/texlive/texlive/2025/texmf-dist/fonts/tfm/public/newtx/ntx-Bold-tlf-t1.tfm
-INPUT c:/texlive/texlive/2025/texmf-dist/fonts/tfm/public/newtx/ntx-Regular-tlf-t1.tfm
-INPUT c:/texlive/texlive/2025/texmf-dist/fonts/tfm/public/newtx/ntx-Bold-tlf-t1.tfm
-INPUT c:/texlive/texlive/2025/texmf-dist/fonts/tfm/jknappen/ec/tcrm1200.tfm
-INPUT c:/texlive/texlive/2025/texmf-var/fonts/map/pdftex/updmap/pdftex.map
-INPUT c:/texlive/texlive/2025/texmf-dist/fonts/enc/dvips/newtx/ntx-ec-tlf.enc
-INPUT c:/texlive/texlive/2025/texmf-dist/fonts/enc/dvips/cm-super/cm-super-ts1.enc
-INPUT c:/texlive/texlive/2025/texmf-dist/fonts/tfm/public/newtx/ntx-Regular-tlf-t1.tfm
-INPUT c:/texlive/texlive/2025/texmf-dist/fonts/tfm/public/newtx/ntx-Bold-tlf-t1.tfm
-INPUT ./mcmthesis-demo.toc
-INPUT ./mcmthesis-demo.toc
-INPUT mcmthesis-demo.toc
-INPUT c:/texlive/texlive/2025/texmf-dist/fonts/tfm/public/cm/cmr8.tfm
-INPUT c:/texlive/texlive/2025/texmf-dist/fonts/tfm/public/cm/cmr6.tfm
-INPUT c:/texlive/texlive/2025/texmf-dist/fonts/tfm/public/cm/cmmi12.tfm
-INPUT c:/texlive/texlive/2025/texmf-dist/fonts/tfm/public/cm/cmmi8.tfm
-INPUT c:/texlive/texlive/2025/texmf-dist/fonts/tfm/public/cm/cmmi6.tfm
-INPUT c:/texlive/texlive/2025/texmf-dist/fonts/tfm/public/cm/cmsy10.tfm
-INPUT c:/texlive/texlive/2025/texmf-dist/fonts/tfm/public/cm/cmsy8.tfm
-INPUT c:/texlive/texlive/2025/texmf-dist/fonts/tfm/public/cm/cmsy6.tfm
-INPUT c:/texlive/texlive/2025/texmf-dist/fonts/tfm/public/cm/cmex10.tfm
-INPUT c:/texlive/texlive/2025/texmf-dist/fonts/tfm/public/amsfonts/cmextra/cmex8.tfm
-INPUT c:/texlive/texlive/2025/texmf-dist/fonts/tfm/public/amsfonts/cmextra/cmex7.tfm
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/amsfonts/umsa.fd
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/amsfonts/umsa.fd
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/amsfonts/umsa.fd
-INPUT c:/texlive/texlive/2025/texmf-dist/fonts/tfm/public/amsfonts/symbols/msam10.tfm
-INPUT c:/texlive/texlive/2025/texmf-dist/fonts/tfm/public/amsfonts/symbols/msam10.tfm
-INPUT c:/texlive/texlive/2025/texmf-dist/fonts/tfm/public/amsfonts/symbols/msam7.tfm
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/amsfonts/umsb.fd
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/amsfonts/umsb.fd
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/amsfonts/umsb.fd
-INPUT c:/texlive/texlive/2025/texmf-dist/fonts/tfm/public/amsfonts/symbols/msbm10.tfm
-INPUT c:/texlive/texlive/2025/texmf-dist/fonts/tfm/public/amsfonts/symbols/msbm10.tfm
-INPUT c:/texlive/texlive/2025/texmf-dist/fonts/tfm/public/amsfonts/symbols/msbm7.tfm
-INPUT c:/texlive/texlive/2025/texmf-dist/fonts/tfm/public/cm/cmbx12.tfm
-INPUT c:/texlive/texlive/2025/texmf-dist/fonts/tfm/public/cm/cmbx8.tfm
-INPUT c:/texlive/texlive/2025/texmf-dist/fonts/tfm/public/cm/cmbx6.tfm
-INPUT c:/texlive/texlive/2025/texmf-dist/fonts/tfm/public/cm/cmmib10.tfm
-INPUT c:/texlive/texlive/2025/texmf-dist/fonts/tfm/public/amsfonts/cmextra/cmmib8.tfm
-INPUT c:/texlive/texlive/2025/texmf-dist/fonts/tfm/public/amsfonts/cmextra/cmmib6.tfm
-INPUT c:/texlive/texlive/2025/texmf-dist/fonts/tfm/public/cm/cmbsy10.tfm
-INPUT c:/texlive/texlive/2025/texmf-dist/fonts/tfm/public/amsfonts/cmextra/cmbsy8.tfm
-INPUT c:/texlive/texlive/2025/texmf-dist/fonts/tfm/public/amsfonts/cmextra/cmbsy6.tfm
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/jknapltx/ursfs.fd
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/jknapltx/ursfs.fd
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/jknapltx/ursfs.fd
-INPUT c:/texlive/texlive/2025/texmf-dist/fonts/tfm/public/rsfs/rsfs10.tfm
-INPUT c:/texlive/texlive/2025/texmf-dist/fonts/tfm/public/rsfs/rsfs10.tfm
-INPUT c:/texlive/texlive/2025/texmf-dist/fonts/tfm/public/rsfs/rsfs5.tfm
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/base/ulasy.fd
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/base/ulasy.fd
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/base/ulasy.fd
-INPUT c:/texlive/texlive/2025/texmf-dist/fonts/tfm/public/latex-fonts/lasy10.tfm
-INPUT c:/texlive/texlive/2025/texmf-dist/fonts/tfm/public/latex-fonts/lasy8.tfm
-INPUT c:/texlive/texlive/2025/texmf-dist/fonts/tfm/public/latex-fonts/lasy6.tfm
-OUTPUT mcmthesis-demo.toc
-INPUT c:/texlive/texlive/2025/texmf-dist/fonts/tfm/public/newtx/ntx-Regular-tlf-t1.tfm
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/newtx/ts1ntxtlf.fd
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/newtx/ts1ntxtlf.fd
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/newtx/ts1ntxtlf.fd
-INPUT c:/texlive/texlive/2025/texmf-dist/fonts/tfm/public/tex-gyre/ts1-qtmr.tfm
-INPUT c:/texlive/texlive/2025/texmf-dist/fonts/tfm/public/newtx/ntx-Regular-tlf-t1.tfm
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/bera/t1fvs.fd
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/bera/t1fvs.fd
-INPUT c:/texlive/texlive/2025/texmf-dist/tex/latex/bera/t1fvs.fd
-INPUT c:/texlive/texlive/2025/texmf-dist/fonts/tfm/public/bera/fvsr8t.tfm
-INPUT c:/texlive/texlive/2025/texmf-dist/fonts/vf/public/bera/fvsr8t.vf
-INPUT c:/texlive/texlive/2025/texmf-dist/fonts/tfm/public/bera/fvsr8r.tfm
-INPUT c:/texlive/texlive/2025/texmf-dist/fonts/enc/dvips/base/8r.enc
-INPUT c:/texlive/texlive/2025/texmf-dist/fonts/enc/dvips/tex-gyre/q-ts1.enc
-INPUT ./figures/flow.png
-INPUT ./figures/flow.png
-INPUT ./figures/flow.png
-INPUT ./figures/flow.png
-INPUT ./figures/flowchartmodel1.png
-INPUT ./figures/flowchartmodel1.png
-INPUT ./figures/flowchartmodel1.png
-INPUT ./figures/flowchartmodel1.png
-INPUT ./figures/Algorithm&Formula.png
-INPUT ./figures/Algorithm&Formula.png
-INPUT ./figures/Algorithm&Formula.png
-INPUT ./figures/Algorithm&Formula.png
-INPUT c:/texlive/texlive/2025/texmf-dist/fonts/tfm/public/cm/cmr10.tfm
-INPUT c:/texlive/texlive/2025/texmf-dist/fonts/tfm/public/cm/cmmi10.tfm
-INPUT c:/texlive/texlive/2025/texmf-dist/fonts/tfm/public/cm/cmsy10.tfm
-INPUT c:/texlive/texlive/2025/texmf-dist/fonts/tfm/public/cm/cmex10.tfm
-INPUT c:/texlive/texlive/2025/texmf-dist/fonts/tfm/public/amsfonts/symbols/msam10.tfm
-INPUT c:/texlive/texlive/2025/texmf-dist/fonts/tfm/public/amsfonts/symbols/msbm10.tfm
-INPUT c:/texlive/texlive/2025/texmf-dist/fonts/tfm/public/cm/cmbx10.tfm
-INPUT c:/texlive/texlive/2025/texmf-dist/fonts/tfm/public/cm/cmmib10.tfm
-INPUT c:/texlive/texlive/2025/texmf-dist/fonts/tfm/public/cm/cmbsy10.tfm
-INPUT c:/texlive/texlive/2025/texmf-dist/fonts/tfm/public/rsfs/rsfs10.tfm
-INPUT c:/texlive/texlive/2025/texmf-dist/fonts/tfm/public/latex-fonts/lasy10.tfm
-INPUT ./figures/model1.3.png
-INPUT ./figures/model1.3.png
-INPUT ./figures/model1.3.png
-INPUT ./figures/model1.3.png
-INPUT ./figures/model1.4.png
-INPUT ./figures/model1.4.png
-INPUT ./figures/model1.4.png
-INPUT ./figures/model1.4.png
-INPUT ./figures/model1.1.png
-INPUT ./figures/model1.1.png
-INPUT ./figures/model1.1.png
-INPUT ./figures/model1.1.png
-INPUT c:/texlive/texlive/2025/texmf-dist/fonts/tfm/public/newtx/ntx-Regular-tlf-t1.tfm
-INPUT c:/texlive/texlive/2025/texmf-dist/fonts/tfm/public/newtx/ntx-Regular-tlf-t1.tfm
-INPUT ./figures/model1.5.png
-INPUT ./figures/model1.5.png
-INPUT ./figures/model1.5.png
-INPUT ./figures/model1.5.png
-INPUT ./figures/flowchartmodel2.png
-INPUT ./figures/flowchartmodel2.png
-INPUT ./figures/flowchartmodel2.png
-INPUT ./figures/flowchartmodel2.png
-INPUT ./figures/distance.png
-INPUT ./figures/distance.png
-INPUT ./figures/distance.png
-INPUT ./figures/distance.png
-INPUT c:/texlive/texlive/2025/texmf-dist/fonts/tfm/public/newtx/ntx-Bold-tlf-t1.tfm
-INPUT ./figures/model2.1.png
-INPUT ./figures/model2.1.png
-INPUT ./figures/model2.1.png
-INPUT ./figures/model2.1.png
-INPUT c:/texlive/texlive/2025/texmf-dist/fonts/tfm/public/newtx/ntx-Regular-tlf-t1.tfm
-INPUT c:/texlive/texlive/2025/texmf-dist/fonts/tfm/public/amsfonts/cmextra/cmex7.tfm
-INPUT c:/texlive/texlive/2025/texmf-dist/fonts/tfm/public/amsfonts/cmextra/cmex7.tfm
-INPUT c:/texlive/texlive/2025/texmf-dist/fonts/tfm/public/amsfonts/symbols/msam10.tfm
-INPUT c:/texlive/texlive/2025/texmf-dist/fonts/tfm/public/amsfonts/symbols/msam7.tfm
-INPUT c:/texlive/texlive/2025/texmf-dist/fonts/tfm/public/amsfonts/symbols/msam5.tfm
-INPUT c:/texlive/texlive/2025/texmf-dist/fonts/tfm/public/amsfonts/symbols/msbm10.tfm
-INPUT c:/texlive/texlive/2025/texmf-dist/fonts/tfm/public/amsfonts/symbols/msbm7.tfm
-INPUT c:/texlive/texlive/2025/texmf-dist/fonts/tfm/public/amsfonts/symbols/msbm5.tfm
-INPUT c:/texlive/texlive/2025/texmf-dist/fonts/tfm/public/cm/cmbx10.tfm
-INPUT c:/texlive/texlive/2025/texmf-dist/fonts/tfm/public/cm/cmbx7.tfm
-INPUT c:/texlive/texlive/2025/texmf-dist/fonts/tfm/public/cm/cmbx5.tfm
-INPUT c:/texlive/texlive/2025/texmf-dist/fonts/tfm/public/cm/cmmib10.tfm
-INPUT c:/texlive/texlive/2025/texmf-dist/fonts/tfm/public/amsfonts/cmextra/cmmib7.tfm
-INPUT c:/texlive/texlive/2025/texmf-dist/fonts/tfm/public/amsfonts/cmextra/cmmib5.tfm
-INPUT c:/texlive/texlive/2025/texmf-dist/fonts/tfm/public/cm/cmbsy10.tfm
-INPUT c:/texlive/texlive/2025/texmf-dist/fonts/tfm/public/amsfonts/cmextra/cmbsy7.tfm
-INPUT c:/texlive/texlive/2025/texmf-dist/fonts/tfm/public/amsfonts/cmextra/cmbsy5.tfm
-INPUT c:/texlive/texlive/2025/texmf-dist/fonts/tfm/public/rsfs/rsfs10.tfm
-INPUT c:/texlive/texlive/2025/texmf-dist/fonts/tfm/public/rsfs/rsfs7.tfm
-INPUT c:/texlive/texlive/2025/texmf-dist/fonts/tfm/public/rsfs/rsfs5.tfm
-INPUT c:/texlive/texlive/2025/texmf-dist/fonts/tfm/public/latex-fonts/lasy10.tfm
-INPUT c:/texlive/texlive/2025/texmf-dist/fonts/tfm/public/latex-fonts/lasy7.tfm
-INPUT c:/texlive/texlive/2025/texmf-dist/fonts/tfm/public/latex-fonts/lasy5.tfm
-INPUT c:/texlive/texlive/2025/texmf-dist/fonts/tfm/public/newtx/ntx-Regular-tlf-t1.tfm
-INPUT c:/texlive/texlive/2025/texmf-dist/fonts/tfm/public/newtx/ntx-Regular-tlf-t1.tfm
-INPUT ./figures/model2.2.png
-INPUT ./figures/model2.2.png
-INPUT ./figures/model2.2.png
-INPUT ./figures/model2.2.png
-INPUT ./figures/model2.3.png
-INPUT ./figures/model2.3.png
-INPUT ./figures/model2.3.png
-INPUT ./figures/model2.3.png
-INPUT ./figures/task1.png
-INPUT ./figures/task1.png
-INPUT ./figures/task1.png
-INPUT ./figures/task1.png
-INPUT ./figures/task3.png
-INPUT ./figures/task3.png
-INPUT ./figures/task3.png
-INPUT ./figures/task3.png
-INPUT c:/texlive/texlive/2025/texmf-dist/fonts/tfm/public/newtx/ntx-Italic-tlf-t1.tfm
-INPUT c:/texlive/texlive/2025/texmf-dist/fonts/tfm/public/newtx/ntx-Bold-tlf-t1.tfm
-INPUT c:/texlive/texlive/2025/texmf-dist/fonts/tfm/public/newtx/ntx-Regular-tlf-sc-t1.tfm
-INPUT c:/texlive/texlive/2025/texmf-dist/fonts/enc/dvips/newtx/ntx-ec-tlf-pc.enc
-INPUT mcmthesis-demo.aux
-INPUT ./mcmthesis-demo.out
-INPUT ./mcmthesis-demo.out
-INPUT mcmthesis-demo.run.xml
-OUTPUT mcmthesis-demo.run.xml
-INPUT c:/texlive/texlive/2025/texmf-dist/fonts/type1/public/amsfonts/cm/cmex10.pfb
-INPUT c:/texlive/texlive/2025/texmf-dist/fonts/type1/public/amsfonts/cmextra/cmex8.pfb
-INPUT c:/texlive/texlive/2025/texmf-dist/fonts/type1/public/amsfonts/cm/cmmi10.pfb
-INPUT c:/texlive/texlive/2025/texmf-dist/fonts/type1/public/amsfonts/cm/cmmi12.pfb
-INPUT c:/texlive/texlive/2025/texmf-dist/fonts/type1/public/amsfonts/cm/cmmi6.pfb
-INPUT c:/texlive/texlive/2025/texmf-dist/fonts/type1/public/amsfonts/cm/cmmi8.pfb
-INPUT c:/texlive/texlive/2025/texmf-dist/fonts/type1/public/amsfonts/cm/cmr10.pfb
-INPUT c:/texlive/texlive/2025/texmf-dist/fonts/type1/public/amsfonts/cm/cmr12.pfb
-INPUT c:/texlive/texlive/2025/texmf-dist/fonts/type1/public/amsfonts/cm/cmr6.pfb
-INPUT c:/texlive/texlive/2025/texmf-dist/fonts/type1/public/amsfonts/cm/cmr8.pfb
-INPUT c:/texlive/texlive/2025/texmf-dist/fonts/type1/public/amsfonts/cm/cmsy10.pfb
-INPUT c:/texlive/texlive/2025/texmf-dist/fonts/type1/public/amsfonts/cm/cmsy8.pfb
-INPUT c:/texlive/texlive/2025/texmf-dist/fonts/type1/public/bera/fvsr8a.pfb
-INPUT c:/texlive/texlive/2025/texmf-dist/fonts/type1/public/tex-gyre/qtmr.pfb
-INPUT c:/texlive/texlive/2025/texmf-dist/fonts/type1/public/cm-super/sfrm1200.pfb
-INPUT c:/texlive/texlive/2025/texmf-dist/fonts/type1/public/newtx/ztmb.pfb
-INPUT c:/texlive/texlive/2025/texmf-dist/fonts/type1/public/newtx/ztmr.pfb
-INPUT c:/texlive/texlive/2025/texmf-dist/fonts/type1/public/newtx/ztmri.pfb
diff --git a/vscode/mcmthesis-demo.log b/vscode/mcmthesis-demo.log
deleted file mode 100755
index ccfa0a7..0000000
--- a/vscode/mcmthesis-demo.log
+++ /dev/null
@@ -1,1854 +0,0 @@
-This is pdfTeX, Version 3.141592653-2.6-1.40.27 (TeX Live 2025) (preloaded format=pdflatex 2025.7.23) 20 JAN 2026 03:34
-entering extended mode
- restricted \write18 enabled.
- file:line:error style messages enabled.
- %&-line parsing enabled.
-**d:/XHJ/mathmo/MCM2026/20260116/vscode/mcmthesis-demo.tex
-(d:/XHJ/mathmo/MCM2026/20260116/vscode/mcmthesis-demo.tex
-LaTeX2e <2024-11-01> patch level 2
-L3 programming layer <2025-01-18>
-(./mcmthesis.cls
-Document Class: mcmthesis 2020/01/18 v6.3 The Thesis Template Designed For MCM/ICM
-The Thesis Template Designed For MCM/ICM
-(c:/texlive/texlive/2025/texmf-dist/tex/latex/xkeyval/xkeyval.sty
-Package: xkeyval 2022/06/16 v2.9 package option processing (HA)
- (c:/texlive/texlive/2025/texmf-dist/tex/generic/xkeyval/xkeyval.tex (c:/texlive/texlive/2025/texmf-dist/tex/generic/xkeyval/xkvutils.tex
-\XKV@toks=\toks17
-\XKV@tempa@toks=\toks18
- (c:/texlive/texlive/2025/texmf-dist/tex/generic/xkeyval/keyval.tex))
-\XKV@depth=\count196
-File: xkeyval.tex 2014/12/03 v2.7a key=value parser (HA)
-)) (c:/texlive/texlive/2025/texmf-dist/tex/latex/etoolbox/etoolbox.sty
-Package: etoolbox 2025/02/11 v2.5l e-TeX tools for LaTeX (JAW)
-\etb@tempcnta=\count197
-) (c:/texlive/texlive/2025/texmf-dist/tex/latex/base/article.cls
-Document Class: article 2024/06/29 v1.4n Standard LaTeX document class
-(c:/texlive/texlive/2025/texmf-dist/tex/latex/base/size12.clo
-File: size12.clo 2024/06/29 v1.4n Standard LaTeX file (size option)
-)
-\c@part=\count198
-\c@section=\count199
-\c@subsection=\count266
-\c@subsubsection=\count267
-\c@paragraph=\count268
-\c@subparagraph=\count269
-\c@figure=\count270
-\c@table=\count271
-\abovecaptionskip=\skip49
-\belowcaptionskip=\skip50
-\bibindent=\dimen141
-) (c:/texlive/texlive/2025/texmf-dist/tex/latex/fancyhdr/fancyhdr.sty
-Package: fancyhdr 2025/02/07 v5.2 Extensive control of page headers and footers
-\f@nch@headwidth=\skip51
-\f@nch@offset@elh=\skip52
-\f@nch@offset@erh=\skip53
-\f@nch@offset@olh=\skip54
-\f@nch@offset@orh=\skip55
-\f@nch@offset@elf=\skip56
-\f@nch@offset@erf=\skip57
-\f@nch@offset@olf=\skip58
-\f@nch@offset@orf=\skip59
-\f@nch@height=\skip60
-\f@nch@footalignment=\skip61
-\f@nch@widthL=\skip62
-\f@nch@widthC=\skip63
-\f@nch@widthR=\skip64
-\@temptokenb=\toks19
-) (c:/texlive/texlive/2025/texmf-dist/tex/latex/fancybox/fancybox.sty
-Package: fancybox 2010/05/15 1.4
-
-Style option: `fancybox' v1.4 <2010/05/15> (tvz)
-\@fancybox=\box52
-\shadowsize=\dimen142
-\@Sbox=\box53
-\do@VerbBox=\toks20
-\the@fancyput=\toks21
-\this@fancyput=\toks22
-\EndVerbatimTokens=\toks23
-\Verbatim@Outfile=\write3
-\Verbatim@Infile=\read2
-) (c:/texlive/texlive/2025/texmf-dist/tex/latex/base/ifthen.sty
-Package: ifthen 2024/03/16 v1.1e Standard LaTeX ifthen package (DPC)
-) (c:/texlive/texlive/2025/texmf-dist/tex/latex/lastpage/lastpage.sty
-Package: lastpage 2025/01/27 v2.1e lastpage: 2.09 or 2e? (HMM)
- (c:/texlive/texlive/2025/texmf-dist/tex/latex/lastpage/lastpage2e.sty
-Package: lastpage2e 2025/01/27 v2.1e Decide which 2e lastpage version to use (HMM)
- (c:/texlive/texlive/2025/texmf-dist/tex/latex/lastpage/lastpagemodern.sty
-Package: lastpagemodern 2025-01-27 v2.1e Refers to last page's name (HMM; JPG)
-\c@lastpagecount=\count272
-)
-)) (c:/texlive/texlive/2025/texmf-dist/tex/latex/listings/listings.sty
-\lst@mode=\count273
-\lst@gtempboxa=\box54
-\lst@token=\toks24
-\lst@length=\count274
-\lst@currlwidth=\dimen143
-\lst@column=\count275
-\lst@pos=\count276
-\lst@lostspace=\dimen144
-\lst@width=\dimen145
-\lst@newlines=\count277
-\lst@lineno=\count278
-\lst@maxwidth=\dimen146
- (c:/texlive/texlive/2025/texmf-dist/tex/latex/listings/lstpatch.sty
-File: lstpatch.sty 2024/09/23 1.10c (Carsten Heinz)
-) (c:/texlive/texlive/2025/texmf-dist/tex/latex/listings/lstmisc.sty
-File: lstmisc.sty 2024/09/23 1.10c (Carsten Heinz)
-\c@lstnumber=\count279
-\lst@skipnumbers=\count280
-\lst@framebox=\box55
-) (c:/texlive/texlive/2025/texmf-dist/tex/latex/listings/listings.cfg
-File: listings.cfg 2024/09/23 1.10c listings configuration
-))
-Package: listings 2024/09/23 1.10c (Carsten Heinz)
- (c:/texlive/texlive/2025/texmf-dist/tex/latex/appendix/appendix.sty
-Package: appendix 2020/02/08 v1.2c extra appendix facilities
-\c@@pps=\count281
-\c@@ppsavesec=\count282
-\c@@ppsaveapp=\count283
-) (c:/texlive/texlive/2025/texmf-dist/tex/latex/paralist/paralist.sty
-Package: paralist 2017/01/22 v2.7 Extended list environments
-\pltopsep=\skip65
-\plpartopsep=\skip66
-\plitemsep=\skip67
-\plparsep=\skip68
-\pl@lab=\toks25
-) (c:/texlive/texlive/2025/texmf-dist/tex/latex/amscls/amsthm.sty
-Package: amsthm 2020/05/29 v2.20.6
-\thm@style=\toks26
-\thm@bodyfont=\toks27
-\thm@headfont=\toks28
-\thm@notefont=\toks29
-\thm@headpunct=\toks30
-\thm@preskip=\skip69
-\thm@postskip=\skip70
-\thm@headsep=\skip71
-\dth@everypar=\toks31
-) (c:/texlive/texlive/2025/texmf-dist/tex/latex/amsfonts/amsfonts.sty
-Package: amsfonts 2013/01/14 v3.01 Basic AMSFonts support
-\@emptytoks=\toks32
-\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.
-) (c:/texlive/texlive/2025/texmf-dist/tex/latex/amsmath/amsmath.sty
-Package: amsmath 2024/11/05 v2.17t AMS math features
-\@mathmargin=\skip72
-
-For additional information on amsmath, use the `?' option.
-(c:/texlive/texlive/2025/texmf-dist/tex/latex/amsmath/amstext.sty
-Package: amstext 2021/08/26 v2.01 AMS text
- (c:/texlive/texlive/2025/texmf-dist/tex/latex/amsmath/amsgen.sty
-File: amsgen.sty 1999/11/30 v2.0 generic functions
-\@emptytoks=\toks33
-\ex@=\dimen147
-)) (c:/texlive/texlive/2025/texmf-dist/tex/latex/amsmath/amsbsy.sty
-Package: amsbsy 1999/11/29 v1.2d Bold Symbols
-\pmbraise@=\dimen148
-) (c:/texlive/texlive/2025/texmf-dist/tex/latex/amsmath/amsopn.sty
-Package: amsopn 2022/04/08 v2.04 operator names
-)
-\inf@bad=\count284
-LaTeX Info: Redefining \frac on input line 233.
-\uproot@=\count285
-\leftroot@=\count286
-LaTeX Info: Redefining \overline on input line 398.
-LaTeX Info: Redefining \colon on input line 409.
-\classnum@=\count287
-\DOTSCASE@=\count288
-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@=\box56
-\strutbox@=\box57
-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=\dimen149
-LaTeX Font Info: Redeclaring font encoding OML on input line 742.
-LaTeX Font Info: Redeclaring font encoding OMS on input line 743.
-\macc@depth=\count289
-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=\count290
-\dotsspace@=\muskip17
-\c@parentequation=\count291
-\dspbrk@lvl=\count292
-\tag@help=\toks34
-\row@=\count293
-\column@=\count294
-\maxfields@=\count295
-\andhelp@=\toks35
-\eqnshift@=\dimen150
-\alignsep@=\dimen151
-\tagshift@=\dimen152
-\tagwidth@=\dimen153
-\totwidth@=\dimen154
-\lineht@=\dimen155
-\@envbody=\toks36
-\multlinegap=\skip73
-\multlinetaggap=\skip74
-\mathdisplay@stack=\toks37
-LaTeX Info: Redefining \[ on input line 2953.
-LaTeX Info: Redefining \] on input line 2954.
-) (c:/texlive/texlive/2025/texmf-dist/tex/latex/tools/bm.sty
-Package: bm 2023/12/19 v1.2f Bold Symbol Support (DPC/FMi)
-\symboldoperators=\mathgroup6
-\symboldletters=\mathgroup7
-\symboldsymbols=\mathgroup8
-Package bm Info: No bold for \OMX/cmex/m/n, using \pmb.
-Package bm Info: No bold for \U/msa/m/n, using \pmb.
-Package bm Info: No bold for \U/msb/m/n, using \pmb.
-LaTeX Font Info: Redeclaring math alphabet \mathbf on input line 149.
-) (c:/texlive/texlive/2025/texmf-dist/tex/latex/amsfonts/amssymb.sty
-Package: amssymb 2013/01/14 v3.01 AMS font symbols
-) (c:/texlive/texlive/2025/texmf-dist/tex/latex/jknapltx/mathrsfs.sty
-Package: mathrsfs 1996/01/01 Math RSFS package v1.0 (jk)
-\symrsfs=\mathgroup9
-) (c:/texlive/texlive/2025/texmf-dist/tex/latex/base/latexsym.sty
-Package: latexsym 1998/08/17 v2.2e Standard LaTeX package (lasy symbols)
-\symlasy=\mathgroup10
-LaTeX Font Info: Overwriting symbol font `lasy' in version `bold'
-(Font) U/lasy/m/n --> U/lasy/b/n on input line 52.
-) (c:/texlive/texlive/2025/texmf-dist/tex/latex/tools/longtable.sty
-Package: longtable 2024-10-27 v4.22 Multi-page Table package (DPC)
-\LTleft=\skip75
-\LTright=\skip76
-\LTpre=\skip77
-\LTpost=\skip78
-\LTchunksize=\count296
-\LTcapwidth=\dimen156
-\LT@head=\box58
-\LT@firsthead=\box59
-\LT@foot=\box60
-\LT@lastfoot=\box61
-\LT@gbox=\box62
-\LT@cols=\count297
-\LT@rows=\count298
-\c@LT@tables=\count299
-\c@LT@chunks=\count300
-\LT@p@ftn=\toks38
-) (c:/texlive/texlive/2025/texmf-dist/tex/latex/multirow/multirow.sty
-Package: multirow 2024/11/12 v2.9 Span multiple rows of a table
-\multirow@colwidth=\skip79
-\multirow@cntb=\count301
-\multirow@dima=\skip80
-\bigstrutjot=\dimen157
-) (c:/texlive/texlive/2025/texmf-dist/tex/latex/tools/hhline.sty
-Package: hhline 2020/01/04 v2.04 Table rule package (DPC)
-) (c:/texlive/texlive/2025/texmf-dist/tex/latex/tools/tabularx.sty
-Package: tabularx 2023/12/11 v2.12a `tabularx' package (DPC)
- (c:/texlive/texlive/2025/texmf-dist/tex/latex/tools/array.sty
-Package: array 2024/10/17 v2.6g Tabular extension package (FMi)
-\col@sep=\dimen158
-\ar@mcellbox=\box63
-\extrarowheight=\dimen159
-\NC@list=\toks39
-\extratabsurround=\skip81
-\backup@length=\skip82
-\ar@cellbox=\box64
-)
-\TX@col@width=\dimen160
-\TX@old@table=\dimen161
-\TX@old@col=\dimen162
-\TX@target=\dimen163
-\TX@delta=\dimen164
-\TX@cols=\count302
-\TX@ftn=\toks40
-) (c:/texlive/texlive/2025/texmf-dist/tex/latex/base/flafter.sty
-Package: flafter 2021/07/31 v1.4e Standard LaTeX floats after reference (FMi)
-Applying: [2015/01/01] float order in 2-column on input line 49.
-Already applied: [0000/00/00] float order in 2-column on input line 151.
-) (c:/texlive/texlive/2025/texmf-dist/tex/latex/psnfss/pifont.sty
-Package: pifont 2020/03/25 PSNFSS-v9.3 Pi font support (SPQR)
-LaTeX Font Info: Trying to load font information for U+pzd on input line 63.
- (c:/texlive/texlive/2025/texmf-dist/tex/latex/psnfss/upzd.fd
-File: upzd.fd 2001/06/04 font definitions for U/pzd.
-)
-LaTeX Font Info: Trying to load font information for U+psy on input line 64.
- (c:/texlive/texlive/2025/texmf-dist/tex/latex/psnfss/upsy.fd
-File: upsy.fd 2001/06/04 font definitions for U/psy.
-)) (c:/texlive/texlive/2025/texmf-dist/tex/latex/tools/calc.sty
-Package: calc 2023/07/08 v4.3 Infix arithmetic (KKT,FJ)
-\calc@Acount=\count303
-\calc@Bcount=\count304
-\calc@Adimen=\dimen165
-\calc@Bdimen=\dimen166
-\calc@Askip=\skip83
-\calc@Bskip=\skip84
-LaTeX Info: Redefining \setlength on input line 80.
-LaTeX Info: Redefining \addtolength on input line 81.
-\calc@Ccount=\count305
-\calc@Cskip=\skip85
-) (c:/texlive/texlive/2025/texmf-dist/tex/latex/colortbl/colortbl.sty
-Package: colortbl 2024/07/06 v1.0i Color table columns (DPC)
- (c:/texlive/texlive/2025/texmf-dist/tex/latex/graphics/color.sty
-Package: color 2024/06/23 v1.3e Standard LaTeX Color (DPC)
- (c:/texlive/texlive/2025/texmf-dist/tex/latex/graphics-cfg/color.cfg
-File: color.cfg 2016/01/02 v1.6 sample color configuration
-)
-Package color Info: Driver file: pdftex.def on input line 149.
- (c:/texlive/texlive/2025/texmf-dist/tex/latex/graphics-def/pdftex.def
-File: pdftex.def 2024/04/13 v1.2c Graphics/color driver for pdftex
-) (c:/texlive/texlive/2025/texmf-dist/tex/latex/graphics/mathcolor.ltx))
-\everycr=\toks41
-\minrowclearance=\skip86
-\rownum=\count306
-) (c:/texlive/texlive/2025/texmf-dist/tex/latex/booktabs/booktabs.sty
-Package: booktabs 2020/01/12 v1.61803398 Publication quality tables
-\heavyrulewidth=\dimen167
-\lightrulewidth=\dimen168
-\cmidrulewidth=\dimen169
-\belowrulesep=\dimen170
-\belowbottomsep=\dimen171
-\aboverulesep=\dimen172
-\abovetopsep=\dimen173
-\cmidrulesep=\dimen174
-\cmidrulekern=\dimen175
-\defaultaddspace=\dimen176
-\@cmidla=\count307
-\@cmidlb=\count308
-\@aboverulesep=\dimen177
-\@belowrulesep=\dimen178
-\@thisruleclass=\count309
-\@lastruleclass=\count310
-\@thisrulewidth=\dimen179
-) (c:/texlive/texlive/2025/texmf-dist/tex/latex/geometry/geometry.sty
-Package: geometry 2020/01/02 v5.9 Page Geometry
- (c:/texlive/texlive/2025/texmf-dist/tex/generic/iftex/ifvtex.sty
-Package: ifvtex 2019/10/25 v1.7 ifvtex legacy package. Use iftex instead.
- (c:/texlive/texlive/2025/texmf-dist/tex/generic/iftex/iftex.sty
-Package: iftex 2024/12/12 v1.0g TeX engine tests
-))
-\Gm@cnth=\count311
-\Gm@cntv=\count312
-\c@Gm@tempcnt=\count313
-\Gm@bindingoffset=\dimen180
-\Gm@wd@mp=\dimen181
-\Gm@odd@mp=\dimen182
-\Gm@even@mp=\dimen183
-\Gm@layoutwidth=\dimen184
-\Gm@layoutheight=\dimen185
-\Gm@layouthoffset=\dimen186
-\Gm@layoutvoffset=\dimen187
-\Gm@dimlist=\toks42
-) (c:/texlive/texlive/2025/texmf-dist/tex/latex/base/fontenc.sty
-Package: fontenc 2021/04/29 v2.0v Standard LaTeX package
-) (c:/texlive/texlive/2025/texmf-dist/tex/latex/bera/berasans.sty
-Package: berasans 2004/01/30 (WaS)
-) (c:/texlive/texlive/2025/texmf-dist/tex/latex/hyperref/hyperref.sty
-Package: hyperref 2024-11-05 v7.01l Hypertext links for LaTeX
- (c:/texlive/texlive/2025/texmf-dist/tex/latex/kvsetkeys/kvsetkeys.sty
-Package: kvsetkeys 2022-10-05 v1.19 Key value parser (HO)
-) (c:/texlive/texlive/2025/texmf-dist/tex/generic/kvdefinekeys/kvdefinekeys.sty
-Package: kvdefinekeys 2019-12-19 v1.6 Define keys (HO)
-) (c:/texlive/texlive/2025/texmf-dist/tex/generic/pdfescape/pdfescape.sty
-Package: pdfescape 2019/12/09 v1.15 Implements pdfTeX's escape features (HO)
- (c:/texlive/texlive/2025/texmf-dist/tex/generic/ltxcmds/ltxcmds.sty
-Package: ltxcmds 2023-12-04 v1.26 LaTeX kernel commands for general use (HO)
-) (c:/texlive/texlive/2025/texmf-dist/tex/generic/pdftexcmds/pdftexcmds.sty
-Package: pdftexcmds 2020-06-27 v0.33 Utility functions of pdfTeX for LuaTeX (HO)
- (c:/texlive/texlive/2025/texmf-dist/tex/generic/infwarerr/infwarerr.sty
-Package: infwarerr 2019/12/03 v1.5 Providing info/warning/error messages (HO)
-)
-Package pdftexcmds Info: \pdf@primitive is available.
-Package pdftexcmds Info: \pdf@ifprimitive is available.
-Package pdftexcmds Info: \pdfdraftmode found.
-)) (c:/texlive/texlive/2025/texmf-dist/tex/latex/hycolor/hycolor.sty
-Package: hycolor 2020-01-27 v1.10 Color options for hyperref/bookmark (HO)
-) (c:/texlive/texlive/2025/texmf-dist/tex/latex/hyperref/nameref.sty
-Package: nameref 2023-11-26 v2.56 Cross-referencing by name of section
- (c:/texlive/texlive/2025/texmf-dist/tex/latex/refcount/refcount.sty
-Package: refcount 2019/12/15 v3.6 Data extraction from label references (HO)
-) (c:/texlive/texlive/2025/texmf-dist/tex/generic/gettitlestring/gettitlestring.sty
-Package: gettitlestring 2019/12/15 v1.6 Cleanup title references (HO)
- (c:/texlive/texlive/2025/texmf-dist/tex/latex/kvoptions/kvoptions.sty
-Package: kvoptions 2022-06-15 v3.15 Key value format for package options (HO)
-))
-\c@section@level=\count314
-) (c:/texlive/texlive/2025/texmf-dist/tex/generic/stringenc/stringenc.sty
-Package: stringenc 2019/11/29 v1.12 Convert strings between diff. encodings (HO)
-)
-\@linkdim=\dimen188
-\Hy@linkcounter=\count315
-\Hy@pagecounter=\count316
- (c:/texlive/texlive/2025/texmf-dist/tex/latex/hyperref/pd1enc.def
-File: pd1enc.def 2024-11-05 v7.01l Hyperref: PDFDocEncoding definition (HO)
-Now handling font encoding PD1 ...
-... no UTF-8 mapping file for font encoding PD1
-) (c:/texlive/texlive/2025/texmf-dist/tex/generic/intcalc/intcalc.sty
-Package: intcalc 2019/12/15 v1.3 Expandable calculations with integers (HO)
-)
-\Hy@SavedSpaceFactor=\count317
- (c:/texlive/texlive/2025/texmf-dist/tex/latex/hyperref/puenc.def
-File: puenc.def 2024-11-05 v7.01l Hyperref: PDF Unicode definition (HO)
-Now handling font encoding PU ...
-... no UTF-8 mapping file for font encoding PU
-)
-Package hyperref Info: Hyper figures OFF on input line 4157.
-Package hyperref Info: Link nesting OFF on input line 4162.
-Package hyperref Info: Hyper index ON on input line 4165.
-Package hyperref Info: Plain pages OFF on input line 4172.
-Package hyperref Info: Backreferencing OFF on input line 4177.
-Package hyperref Info: Implicit mode ON; LaTeX internals redefined.
-Package hyperref Info: Bookmarks ON on input line 4424.
-\c@Hy@tempcnt=\count318
- (c:/texlive/texlive/2025/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 4763.
-\XeTeXLinkMargin=\dimen189
- (c:/texlive/texlive/2025/texmf-dist/tex/generic/bitset/bitset.sty
-Package: bitset 2019/12/09 v1.3 Handle bit-vector datatype (HO)
- (c:/texlive/texlive/2025/texmf-dist/tex/generic/bigintcalc/bigintcalc.sty
-Package: bigintcalc 2019/12/15 v1.5 Expandable calculations on big integers (HO)
-))
-\Fld@menulength=\count319
-\Field@Width=\dimen190
-\Fld@charsize=\dimen191
-Package hyperref Info: Hyper figures OFF on input line 6042.
-Package hyperref Info: Link nesting OFF on input line 6047.
-Package hyperref Info: Hyper index ON on input line 6050.
-Package hyperref Info: backreferencing OFF on input line 6057.
-Package hyperref Info: Link coloring OFF on input line 6062.
-Package hyperref Info: Link coloring with OCG OFF on input line 6067.
-Package hyperref Info: PDF/A mode OFF on input line 6072.
- (c:/texlive/texlive/2025/texmf-dist/tex/latex/base/atbegshi-ltx.sty
-Package: atbegshi-ltx 2021/01/10 v1.0c Emulation of the original atbegshi
-package with kernel methods
-)
-\Hy@abspage=\count320
-\c@Item=\count321
-\c@Hfootnote=\count322
-)
-Package hyperref Info: Driver (autodetected): hpdftex.
- (c:/texlive/texlive/2025/texmf-dist/tex/latex/hyperref/hpdftex.def
-File: hpdftex.def 2024-11-05 v7.01l Hyperref driver for pdfTeX
- (c:/texlive/texlive/2025/texmf-dist/tex/latex/base/atveryend-ltx.sty
-Package: atveryend-ltx 2020/08/19 v1.0a Emulation of the original atveryend package
-with kernel methods
-)
-\Fld@listcount=\count323
-\c@bookmark@seq@number=\count324
- (c:/texlive/texlive/2025/texmf-dist/tex/latex/rerunfilecheck/rerunfilecheck.sty
-Package: rerunfilecheck 2022-07-10 v1.10 Rerun checks for auxiliary files (HO)
- (c:/texlive/texlive/2025/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 285.
-)
-\Hy@SectionHShift=\skip87
-) (c:/texlive/texlive/2025/texmf-dist/tex/generic/iftex/ifpdf.sty
-Package: ifpdf 2019/10/25 v3.4 ifpdf legacy package. Use iftex instead.
-) (c:/texlive/texlive/2025/texmf-dist/tex/generic/iftex/ifxetex.sty
-Package: ifxetex 2019/10/25 v0.7 ifxetex legacy package. Use iftex instead.
-) (c:/texlive/texlive/2025/texmf-dist/tex/latex/environ/environ.sty
-Package: environ 2014/05/04 v0.3 A new way to define environments
- (c:/texlive/texlive/2025/texmf-dist/tex/latex/trimspaces/trimspaces.sty
-Package: trimspaces 2009/09/17 v1.1 Trim spaces around a token list
-)) (c:/texlive/texlive/2025/texmf-dist/tex/latex/graphics/graphicx.sty
-Package: graphicx 2021/09/16 v1.2d Enhanced LaTeX Graphics (DPC,SPQR)
- (c:/texlive/texlive/2025/texmf-dist/tex/latex/graphics/graphics.sty
-Package: graphics 2024/08/06 v1.4g Standard LaTeX Graphics (DPC,SPQR)
- (c:/texlive/texlive/2025/texmf-dist/tex/latex/graphics/trig.sty
-Package: trig 2023/12/02 v1.11 sin cos tan (DPC)
-) (c:/texlive/texlive/2025/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.
-)
-\Gin@req@height=\dimen192
-\Gin@req@width=\dimen193
-) (c:/texlive/texlive/2025/texmf-dist/tex/latex/epstopdf-pkg/epstopdf.sty
-Package: epstopdf 2020-01-24 v2.11 Conversion with epstopdf on the fly (HO)
- (c:/texlive/texlive/2025/texmf-dist/tex/latex/grfext/grfext.sty
-Package: grfext 2019/12/03 v1.3 Manage graphics extensions (HO)
-) (c:/texlive/texlive/2025/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 485.
-Package grfext Info: Graphics extension search list:
-(grfext) [.pdf,.png,.jpg,.mps,.jpeg,.jbig2,.jb2,.PDF,.PNG,.JPG,.JPEG,.JBIG2,.JB2,.eps]
-(grfext) \AppendGraphicsExtensions on input line 504.
- (c:/texlive/texlive/2025/texmf-dist/tex/latex/latexconfig/epstopdf-sys.cfg
-File: epstopdf-sys.cfg 2010/07/13 v1.3 Configuration of (r)epstopdf for TeX Live
-))) (c:/texlive/texlive/2025/texmf-dist/tex/latex/xcolor/xcolor.sty
-Package: xcolor 2024/09/29 v3.02 LaTeX color extensions (UK)
- (c:/texlive/texlive/2025/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.
-LaTeX Info: Redefining \color on input line 762.
- (c:/texlive/texlive/2025/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.
-) (c:/texlive/texlive/2025/texmf-dist/tex/latex/xcolor/svgnam.def
-File: svgnam.def 2024/09/29 v3.02 Predefined colors according to SVG 1.1 (UK)
-)
-\c@Theorem=\count325
- (c:/texlive/texlive/2025/texmf-dist/tex/latex/listings/lstlang1.sty
-File: lstlang1.sty 2024/09/23 1.10c listings language file
-) (c:/texlive/texlive/2025/texmf-dist/tex/latex/listings/lstmisc.sty
-File: lstmisc.sty 2024/09/23 1.10c (Carsten Heinz)
-)) (c:/texlive/texlive/2025/texmf-dist/tex/latex/newtx/newtxtext.sty
-Package: newtxtext 2024/04/01 v1.744(Michael Sharpe) latex and unicode latex support for TeXGyreTermesX
- `newtxtext' v1.744, 2024/04/01 Text macros taking advantage of TeXGyre Termes and its extensions (msharpe) (c:/texlive/texlive/2025/texmf-dist/tex/latex/xpatch/xpatch.sty (c:/texlive/texlive/2025/texmf-dist/tex/latex/l3kernel/expl3.sty
-Package: expl3 2025-01-18 L3 programming layer (loader)
- (c:/texlive/texlive/2025/texmf-dist/tex/latex/l3backend/l3backend-pdftex.def
-File: l3backend-pdftex.def 2024-05-08 L3 backend support: PDF output (pdfTeX)
-\l__color_backend_stack_int=\count326
-\l__pdf_internal_box=\box65
-))
-Package: xpatch 2020/03/25 v0.3a Extending etoolbox patching commands
- (c:/texlive/texlive/2025/texmf-dist/tex/latex/l3packages/xparse/xparse.sty
-Package: xparse 2024-08-16 L3 Experimental document command parser
-)) (c:/texlive/texlive/2025/texmf-dist/tex/latex/base/textcomp.sty
-Package: textcomp 2024/04/24 v2.1b Standard LaTeX package
-) (c:/texlive/texlive/2025/texmf-dist/tex/generic/xstring/xstring.sty (c:/texlive/texlive/2025/texmf-dist/tex/generic/xstring/xstring.tex
-\xs_counta=\count327
-\xs_countb=\count328
-)
-Package: xstring 2023/08/22 v1.86 String manipulations (CT)
-) (c:/texlive/texlive/2025/texmf-dist/tex/latex/carlisle/scalefnt.sty)
-LaTeX Font Info: Setting ntxLF sub-encoding to TS1/0 on input line 24.
-LaTeX Font Info: Setting ntxTLF sub-encoding to TS1/0 on input line 24.
-LaTeX Font Info: Setting ntxOsF sub-encoding to TS1/0 on input line 24.
-LaTeX Font Info: Setting ntxTOsF sub-encoding to TS1/0 on input line 24.
- (c:/texlive/texlive/2025/texmf-dist/tex/generic/kastrup/binhex.tex)
-\ntx@tmpcnta=\count329
-\ntx@cnt=\count330
- (c:/texlive/texlive/2025/texmf-dist/tex/latex/fontaxes/fontaxes.sty
-Package: fontaxes 2020/07/21 v1.0e Font selection axes
-LaTeX Info: Redefining \upshape on input line 29.
-LaTeX Info: Redefining \itshape on input line 31.
-LaTeX Info: Redefining \slshape on input line 33.
-LaTeX Info: Redefining \swshape on input line 35.
-LaTeX Info: Redefining \scshape on input line 37.
-LaTeX Info: Redefining \sscshape on input line 39.
-LaTeX Info: Redefining \ulcshape on input line 41.
-LaTeX Info: Redefining \textsw on input line 47.
-LaTeX Info: Redefining \textssc on input line 48.
-LaTeX Info: Redefining \textulc on input line 49.
-)
-\tx@sixem=\dimen194
-\tx@y=\dimen195
-\tx@x=\dimen196
-\tx@tmpdima=\dimen197
-\tx@tmpdimb=\dimen198
-\tx@tmpdimc=\dimen199
-\tx@tmpdimd=\dimen256
-\tx@tmpdime=\dimen257
-\tx@tmpdimf=\dimen258
-\tx@dimA=\dimen259
-\tx@dimAA=\dimen260
-\tx@dimB=\dimen261
-\tx@dimBB=\dimen262
-\tx@dimC=\dimen263
-LaTeX Info: Redefining \oldstylenums on input line 902.
-) (c:/texlive/texlive/2025/texmf-dist/tex/latex/biblatex/biblatex.sty
-Package: biblatex 2024/03/21 v3.20 programmable bibliographies (PK/MW)
- (c:/texlive/texlive/2025/texmf-dist/tex/latex/logreq/logreq.sty
-Package: logreq 2010/08/04 v1.0 xml request logger
-\lrq@indent=\count331
- (c:/texlive/texlive/2025/texmf-dist/tex/latex/logreq/logreq.def
-File: logreq.def 2010/08/04 v1.0 logreq spec v1.0
-))
-\c@tabx@nest=\count332
-\c@listtotal=\count333
-\c@listcount=\count334
-\c@liststart=\count335
-\c@liststop=\count336
-\c@citecount=\count337
-\c@citetotal=\count338
-\c@multicitecount=\count339
-\c@multicitetotal=\count340
-\c@instcount=\count341
-\c@maxnames=\count342
-\c@minnames=\count343
-\c@maxitems=\count344
-\c@minitems=\count345
-\c@citecounter=\count346
-\c@maxcitecounter=\count347
-\c@savedcitecounter=\count348
-\c@uniquelist=\count349
-\c@uniquename=\count350
-\c@refsection=\count351
-\c@refsegment=\count352
-\c@maxextratitle=\count353
-\c@maxextratitleyear=\count354
-\c@maxextraname=\count355
-\c@maxextradate=\count356
-\c@maxextraalpha=\count357
-\c@abbrvpenalty=\count358
-\c@highnamepenalty=\count359
-\c@lownamepenalty=\count360
-\c@maxparens=\count361
-\c@parenlevel=\count362
-\blx@tempcnta=\count363
-\blx@tempcntb=\count364
-\blx@tempcntc=\count365
-\c@blx@maxsection=\count366
-\blx@maxsegment@0=\count367
-\blx@notetype=\count368
-\blx@parenlevel@text=\count369
-\blx@parenlevel@foot=\count370
-\blx@sectionciteorder@0=\count371
-\blx@sectionciteorderinternal@0=\count372
-\blx@entrysetcounter=\count373
-\blx@biblioinstance=\count374
-\labelnumberwidth=\skip88
-\labelalphawidth=\skip89
-\biblabelsep=\skip90
-\bibitemsep=\skip91
-\bibnamesep=\skip92
-\bibinitsep=\skip93
-\bibparsep=\skip94
-\bibhang=\skip95
-\blx@bcfin=\read3
-\blx@bcfout=\write4
-\blx@langwohyphens=\language90
-\c@mincomprange=\count375
-\c@maxcomprange=\count376
-\c@mincompwidth=\count377
-Package biblatex Info: Trying to load biblatex default data model...
-Package biblatex Info: ... file 'blx-dm.def' found.
- (c:/texlive/texlive/2025/texmf-dist/tex/latex/biblatex/blx-dm.def
-File: blx-dm.def 2024/03/21 v3.20 biblatex datamodel (PK/MW)
-)
-Package biblatex Info: Trying to load biblatex style data model...
-Package biblatex Info: ... file 'numeric.dbx' not found.
-Package biblatex Info: Trying to load biblatex custom data model...
-Package biblatex Info: ... file 'biblatex-dm.cfg' not found.
-\c@afterword=\count378
-\c@savedafterword=\count379
-\c@annotator=\count380
-\c@savedannotator=\count381
-\c@author=\count382
-\c@savedauthor=\count383
-\c@bookauthor=\count384
-\c@savedbookauthor=\count385
-\c@commentator=\count386
-\c@savedcommentator=\count387
-\c@editor=\count388
-\c@savededitor=\count389
-\c@editora=\count390
-\c@savededitora=\count391
-\c@editorb=\count392
-\c@savededitorb=\count393
-\c@editorc=\count394
-\c@savededitorc=\count395
-\c@foreword=\count396
-\c@savedforeword=\count397
-\c@holder=\count398
-\c@savedholder=\count399
-\c@introduction=\count400
-\c@savedintroduction=\count401
-\c@namea=\count402
-\c@savednamea=\count403
-\c@nameb=\count404
-\c@savednameb=\count405
-\c@namec=\count406
-\c@savednamec=\count407
-\c@translator=\count408
-\c@savedtranslator=\count409
-\c@shortauthor=\count410
-\c@savedshortauthor=\count411
-\c@shorteditor=\count412
-\c@savedshorteditor=\count413
-\c@labelname=\count414
-\c@savedlabelname=\count415
-\c@institution=\count416
-\c@savedinstitution=\count417
-\c@lista=\count418
-\c@savedlista=\count419
-\c@listb=\count420
-\c@savedlistb=\count421
-\c@listc=\count422
-\c@savedlistc=\count423
-\c@listd=\count424
-\c@savedlistd=\count425
-\c@liste=\count426
-\c@savedliste=\count427
-\c@listf=\count428
-\c@savedlistf=\count429
-\c@location=\count430
-\c@savedlocation=\count431
-\c@organization=\count432
-\c@savedorganization=\count433
-\c@origlocation=\count434
-\c@savedoriglocation=\count435
-\c@origpublisher=\count436
-\c@savedorigpublisher=\count437
-\c@publisher=\count438
-\c@savedpublisher=\count439
-\c@language=\count440
-\c@savedlanguage=\count441
-\c@origlanguage=\count442
-\c@savedoriglanguage=\count443
-\c@pageref=\count444
-\c@savedpageref=\count445
-\shorthandwidth=\skip96
-\shortjournalwidth=\skip97
-\shortserieswidth=\skip98
-\shorttitlewidth=\skip99
-\shortauthorwidth=\skip100
-\shorteditorwidth=\skip101
-\locallabelnumberwidth=\skip102
-\locallabelalphawidth=\skip103
-\localshorthandwidth=\skip104
-\localshortjournalwidth=\skip105
-\localshortserieswidth=\skip106
-\localshorttitlewidth=\skip107
-\localshortauthorwidth=\skip108
-\localshorteditorwidth=\skip109
-Package biblatex Info: Trying to load compatibility code...
-Package biblatex Info: ... file 'blx-compat.def' found.
- (c:/texlive/texlive/2025/texmf-dist/tex/latex/biblatex/blx-compat.def
-File: blx-compat.def 2024/03/21 v3.20 biblatex compatibility (PK/MW)
-)
-Package biblatex Info: Trying to load generic definitions...
-Package biblatex Info: ... file 'biblatex.def' found.
- (c:/texlive/texlive/2025/texmf-dist/tex/latex/biblatex/biblatex.def
-File: biblatex.def 2024/03/21 v3.20 biblatex compatibility (PK/MW)
-\c@textcitecount=\count446
-\c@textcitetotal=\count447
-\c@textcitemaxnames=\count448
-\c@biburlbigbreakpenalty=\count449
-\c@biburlbreakpenalty=\count450
-\c@biburlnumpenalty=\count451
-\c@biburlucpenalty=\count452
-\c@biburllcpenalty=\count453
-\biburlbigskip=\muskip19
-\biburlnumskip=\muskip20
-\biburlucskip=\muskip21
-\biburllcskip=\muskip22
-\c@smartand=\count454
-)
-Package biblatex Info: Trying to load bibliography style 'numeric'...
-Package biblatex Info: ... file 'numeric.bbx' found.
- (c:/texlive/texlive/2025/texmf-dist/tex/latex/biblatex/bbx/numeric.bbx
-File: numeric.bbx 2024/03/21 v3.20 biblatex bibliography style (PK/MW)
-Package biblatex Info: Trying to load bibliography style 'standard'...
-Package biblatex Info: ... file 'standard.bbx' found.
- (c:/texlive/texlive/2025/texmf-dist/tex/latex/biblatex/bbx/standard.bbx
-File: standard.bbx 2024/03/21 v3.20 biblatex bibliography style (PK/MW)
-\c@bbx:relatedcount=\count455
-\c@bbx:relatedtotal=\count456
-))
-Package biblatex Info: Trying to load citation style 'numeric'...
-Package biblatex Info: ... file 'numeric.cbx' found.
- (c:/texlive/texlive/2025/texmf-dist/tex/latex/biblatex/cbx/numeric.cbx
-File: numeric.cbx 2024/03/21 v3.20 biblatex citation style (PK/MW)
-Package biblatex Info: Redefining '\cite'.
-Package biblatex Info: Redefining '\parencite'.
-Package biblatex Info: Redefining '\footcite'.
-Package biblatex Info: Redefining '\footcitetext'.
-Package biblatex Info: Redefining '\smartcite'.
-Package biblatex Info: Redefining '\supercite'.
-Package biblatex Info: Redefining '\textcite'.
-Package biblatex Info: Redefining '\textcites'.
-Package biblatex Info: Redefining '\cites'.
-Package biblatex Info: Redefining '\parencites'.
-Package biblatex Info: Redefining '\smartcites'.
-)
-Package biblatex Info: Trying to load configuration file...
-Package biblatex Info: ... file 'biblatex.cfg' found.
- (c:/texlive/texlive/2025/texmf-dist/tex/latex/biblatex/biblatex.cfg
-File: biblatex.cfg
-)
-Package biblatex Info: Input encoding 'utf8' detected.
-Package biblatex Info: Document encoding is UTF8 ....
-Package biblatex Info: ... and expl3
-(biblatex) 2025-01-18 L3 programming layer (loader)
-(biblatex) is new enough (at least 2020/04/06),
-(biblatex) setting 'casechanger=expl3'.
- (c:/texlive/texlive/2025/texmf-dist/tex/latex/biblatex/blx-case-expl3.sty
-Package: blx-case-expl3 2024/03/21 v3.20 expl3 case changing code for biblatex
-)) (c:/texlive/texlive/2025/texmf-dist/tex/latex/tocloft/tocloft.sty
-Package: tocloft 2017/08/31 v2.3i parameterised ToC, etc., typesetting
-Package tocloft Info: The document has section divisions on input line 51.
-\cftparskip=\skip110
-\cftbeforetoctitleskip=\skip111
-\cftaftertoctitleskip=\skip112
-\cftbeforepartskip=\skip113
-\cftpartnumwidth=\skip114
-\cftpartindent=\skip115
-\cftbeforesecskip=\skip116
-\cftsecindent=\skip117
-\cftsecnumwidth=\skip118
-\cftbeforesubsecskip=\skip119
-\cftsubsecindent=\skip120
-\cftsubsecnumwidth=\skip121
-\cftbeforesubsubsecskip=\skip122
-\cftsubsubsecindent=\skip123
-\cftsubsubsecnumwidth=\skip124
-\cftbeforeparaskip=\skip125
-\cftparaindent=\skip126
-\cftparanumwidth=\skip127
-\cftbeforesubparaskip=\skip128
-\cftsubparaindent=\skip129
-\cftsubparanumwidth=\skip130
-\cftbeforeloftitleskip=\skip131
-\cftafterloftitleskip=\skip132
-\cftbeforefigskip=\skip133
-\cftfigindent=\skip134
-\cftfignumwidth=\skip135
-\c@lofdepth=\count457
-\c@lotdepth=\count458
-\cftbeforelottitleskip=\skip136
-\cftafterlottitleskip=\skip137
-\cftbeforetabskip=\skip138
-\cfttabindent=\skip139
-\cfttabnumwidth=\skip140
-) (c:/texlive/texlive/2025/texmf-dist/tex/latex/float/float.sty
-Package: float 2001/11/08 v1.3d Float enhancements (AL)
-\c@float@type=\count459
-\float@exts=\toks43
-\float@box=\box66
-\@float@everytoks=\toks44
-\@floatcapt=\box67
-) (c:/texlive/texlive/2025/texmf-dist/tex/latex/nicematrix/nicematrix.sty (c:/texlive/texlive/2025/texmf-dist/tex/latex/pgf/basiclayer/pgfcore.sty (c:/texlive/texlive/2025/texmf-dist/tex/latex/pgf/systemlayer/pgfsys.sty (c:/texlive/texlive/2025/texmf-dist/tex/latex/pgf/utilities/pgfrcs.sty (c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/utilities/pgfutil-common.tex
-\pgfutil@everybye=\toks45
-\pgfutil@tempdima=\dimen264
-\pgfutil@tempdimb=\dimen265
-) (c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/utilities/pgfutil-latex.def
-\pgfutil@abb=\box68
-) (c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/utilities/pgfrcs.code.tex (c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/pgf.revision.tex)
-Package: pgfrcs 2023-01-15 v3.1.10 (3.1.10)
-)) (c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/systemlayer/pgfsys.code.tex
-Package: pgfsys 2023-01-15 v3.1.10 (3.1.10)
- (c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/utilities/pgfkeys.code.tex
-\pgfkeys@pathtoks=\toks46
-\pgfkeys@temptoks=\toks47
- (c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/utilities/pgfkeyslibraryfiltered.code.tex
-\pgfkeys@tmptoks=\toks48
-))
-\pgf@x=\dimen266
-\pgf@y=\dimen267
-\pgf@xa=\dimen268
-\pgf@ya=\dimen269
-\pgf@xb=\dimen270
-\pgf@yb=\dimen271
-\pgf@xc=\dimen272
-\pgf@yc=\dimen273
-\pgf@xd=\dimen274
-\pgf@yd=\dimen275
-\w@pgf@writea=\write5
-\r@pgf@reada=\read4
-\c@pgf@counta=\count460
-\c@pgf@countb=\count461
-\c@pgf@countc=\count462
-\c@pgf@countd=\count463
-\t@pgf@toka=\toks49
-\t@pgf@tokb=\toks50
-\t@pgf@tokc=\toks51
-\pgf@sys@id@count=\count464
- (c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/systemlayer/pgf.cfg
-File: pgf.cfg 2023-01-15 v3.1.10 (3.1.10)
-)
-Driver file for pgf: pgfsys-pdftex.def
- (c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/systemlayer/pgfsys-pdftex.def
-File: pgfsys-pdftex.def 2023-01-15 v3.1.10 (3.1.10)
- (c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/systemlayer/pgfsys-common-pdf.def
-File: pgfsys-common-pdf.def 2023-01-15 v3.1.10 (3.1.10)
-))) (c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/systemlayer/pgfsyssoftpath.code.tex
-File: pgfsyssoftpath.code.tex 2023-01-15 v3.1.10 (3.1.10)
-\pgfsyssoftpath@smallbuffer@items=\count465
-\pgfsyssoftpath@bigbuffer@items=\count466
-) (c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/systemlayer/pgfsysprotocol.code.tex
-File: pgfsysprotocol.code.tex 2023-01-15 v3.1.10 (3.1.10)
-)) (c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/basiclayer/pgfcore.code.tex
-Package: pgfcore 2023-01-15 v3.1.10 (3.1.10)
- (c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/math/pgfmath.code.tex (c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/math/pgfmathutil.code.tex) (c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/math/pgfmathparser.code.tex
-\pgfmath@dimen=\dimen276
-\pgfmath@count=\count467
-\pgfmath@box=\box69
-\pgfmath@toks=\toks52
-\pgfmath@stack@operand=\toks53
-\pgfmath@stack@operation=\toks54
-) (c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.code.tex) (c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.basic.code.tex) (c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.trigonometric.code.tex) (c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.random.code.tex) (c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.comparison.code.tex) (c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.base.code.tex) (c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.round.code.tex) (c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.misc.code.tex) (c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.integerarithmetics.code.tex) (c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/math/pgfmathcalc.code.tex) (c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/math/pgfmathfloat.code.tex
-\c@pgfmathroundto@lastzeros=\count468
-)) (c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/math/pgfint.code.tex) (c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepoints.code.tex
-File: pgfcorepoints.code.tex 2023-01-15 v3.1.10 (3.1.10)
-\pgf@picminx=\dimen277
-\pgf@picmaxx=\dimen278
-\pgf@picminy=\dimen279
-\pgf@picmaxy=\dimen280
-\pgf@pathminx=\dimen281
-\pgf@pathmaxx=\dimen282
-\pgf@pathminy=\dimen283
-\pgf@pathmaxy=\dimen284
-\pgf@xx=\dimen285
-\pgf@xy=\dimen286
-\pgf@yx=\dimen287
-\pgf@yy=\dimen288
-\pgf@zx=\dimen289
-\pgf@zy=\dimen290
-) (c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathconstruct.code.tex
-File: pgfcorepathconstruct.code.tex 2023-01-15 v3.1.10 (3.1.10)
-\pgf@path@lastx=\dimen291
-\pgf@path@lasty=\dimen292
-) (c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathusage.code.tex
-File: pgfcorepathusage.code.tex 2023-01-15 v3.1.10 (3.1.10)
-\pgf@shorten@end@additional=\dimen293
-\pgf@shorten@start@additional=\dimen294
-) (c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/basiclayer/pgfcorescopes.code.tex
-File: pgfcorescopes.code.tex 2023-01-15 v3.1.10 (3.1.10)
-\pgfpic=\box70
-\pgf@hbox=\box71
-\pgf@layerbox@main=\box72
-\pgf@picture@serial@count=\count469
-) (c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/basiclayer/pgfcoregraphicstate.code.tex
-File: pgfcoregraphicstate.code.tex 2023-01-15 v3.1.10 (3.1.10)
-\pgflinewidth=\dimen295
-) (c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/basiclayer/pgfcoretransformations.code.tex
-File: pgfcoretransformations.code.tex 2023-01-15 v3.1.10 (3.1.10)
-\pgf@pt@x=\dimen296
-\pgf@pt@y=\dimen297
-\pgf@pt@temp=\dimen298
-) (c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/basiclayer/pgfcorequick.code.tex
-File: pgfcorequick.code.tex 2023-01-15 v3.1.10 (3.1.10)
-)
-(c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreobjects.code.tex
-File: pgfcoreobjects.code.tex 2023-01-15 v3.1.10 (3.1.10)
-) (c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathprocessing.code.tex
-File: pgfcorepathprocessing.code.tex 2023-01-15 v3.1.10 (3.1.10)
-) (c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/basiclayer/pgfcorearrows.code.tex
-File: pgfcorearrows.code.tex 2023-01-15 v3.1.10 (3.1.10)
-\pgfarrowsep=\dimen299
-) (c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreshade.code.tex
-File: pgfcoreshade.code.tex 2023-01-15 v3.1.10 (3.1.10)
-\pgf@max=\dimen300
-\pgf@sys@shading@range@num=\count470
-\pgf@shadingcount=\count471
-) (c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreimage.code.tex
-File: pgfcoreimage.code.tex 2023-01-15 v3.1.10 (3.1.10)
-) (c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreexternal.code.tex
-File: pgfcoreexternal.code.tex 2023-01-15 v3.1.10 (3.1.10)
-\pgfexternal@startupbox=\box73
-) (c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/basiclayer/pgfcorelayers.code.tex
-File: pgfcorelayers.code.tex 2023-01-15 v3.1.10 (3.1.10)
-) (c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/basiclayer/pgfcoretransparency.code.tex
-File: pgfcoretransparency.code.tex 2023-01-15 v3.1.10 (3.1.10)
-) (c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepatterns.code.tex
-File: pgfcorepatterns.code.tex 2023-01-15 v3.1.10 (3.1.10)
-) (c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/basiclayer/pgfcorerdf.code.tex
-File: pgfcorerdf.code.tex 2023-01-15 v3.1.10 (3.1.10)
-))) (c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/modules/pgfmoduleshapes.code.tex
-File: pgfmoduleshapes.code.tex 2023-01-15 v3.1.10 (3.1.10)
-\pgfnodeparttextbox=\box74
-) (c:/texlive/texlive/2025/texmf-dist/tex/latex/l3packages/l3keys2e/l3keys2e.sty
-Package: l3keys2e 2024-08-16 LaTeX2e option processing using LaTeX3 keys
-)
-Package: nicematrix 2025/03/04 v7.1a Enhanced arrays with the help of PGF/TikZ
-\g__nicematrix_env_int=\count472
-\g__nicematrix_NiceMatrixBlock_int=\count473
-\g__nicematrix_notes_caption_int=\count474
-\l__nicematrix_columns_width_dim=\dimen301
-\l__nicematrix_col_width_dim=\dimen302
-\g__nicematrix_row_total_int=\count475
-\g__nicematrix_col_total_int=\count476
-\g__nicematrix_last_row_node_int=\count477
-\l__nicematrix_key_nb_rows_int=\count478
-\g__nicematrix_blocks_wd_dim=\dimen303
-\g__nicematrix_blocks_ht_dim=\dimen304
-\g__nicematrix_blocks_dp_dim=\dimen305
-\l__nicematrix_width_dim=\dimen306
-\l__nicematrix_tabular_width_dim=\dimen307
-\l__nicematrix_rule_width_dim=\dimen308
-\l__nicematrix_old_iRow_int=\count479
-\l__nicematrix_old_jCol_int=\count480
-\g__nicematrix_total_X_weight_int=\count481
-\l__nicematrix_X_columns_dim=\dimen309
-\l__nicematrix_x_initial_dim=\dimen310
-\l__nicematrix_y_initial_dim=\dimen311
-\l__nicematrix_x_final_dim=\dimen312
-\l__nicematrix_y_final_dim=\dimen313
-\l__nicematrix_tmpc_dim=\dimen314
-\l__nicematrix_tmpd_dim=\dimen315
-\l__nicematrix_tmpe_dim=\dimen316
-\l__nicematrix_tmpf_dim=\dimen317
-\g__nicematrix_dp_row_zero_dim=\dimen318
-\g__nicematrix_ht_row_zero_dim=\dimen319
-\g__nicematrix_ht_row_one_dim=\dimen320
-\g__nicematrix_dp_ante_last_row_dim=\dimen321
-\g__nicematrix_ht_last_row_dim=\dimen322
-\g__nicematrix_dp_last_row_dim=\dimen323
-\g__nicematrix_width_last_col_dim=\dimen324
-\g__nicematrix_width_first_col_dim=\dimen325
-\l__nicematrix_row_min_int=\count482
-\l__nicematrix_row_max_int=\count483
-\l__nicematrix_col_min_int=\count484
-\l__nicematrix_col_max_int=\count485
-\l__nicematrix_start_int=\count486
-\l__nicematrix_end_int=\count487
-\l__nicematrix_local_start_int=\count488
-\l__nicematrix_local_end_int=\count489
-\g__nicematrix_static_num_of_col_int=\count490
-\l__nicematrix_rounded_corners_dim=\dimen326
-\l__nicematrix_tab_rounded_corners_dim=\dimen327
-\l__nicematrix_offset_dim=\dimen328
-\l__nicematrix_line_width_dim=\dimen329
-\g__nicematrix_block_box_int=\count491
-\l__nicematrix_submatrix_extra_height_dim=\dimen330
-\l__nicematrix_submatrix_left_xshift_dim=\dimen331
-\l__nicematrix_submatrix_right_xshift_dim=\dimen332
-\l__nicematrix_first_row_int=\count492
-\l__nicematrix_first_col_int=\count493
-\l__nicematrix_last_row_int=\count494
-\l__nicematrix_last_col_int=\count495
-\c@tabularnote=\count496
-\g__nicematrix_tabularnote_int=\count497
-\c@nicematrix_draft=\count498
-\l__nicematrix_cell_space_top_limit_dim=\dimen333
-\l__nicematrix_cell_space_bottom_limit_dim=\dimen334
-\l__nicematrix_xdots_inter_dim=\dimen335
-\l__nicematrix_xdots_shorten_start_dim=\dimen336
-\l__nicematrix_xdots_shorten_end_dim=\dimen337
-\l__nicematrix_xdots_radius_dim=\dimen338
-\l__nicematrix_notes_above_space_dim=\dimen339
-\l__nicematrix_left_margin_dim=\dimen340
-\l__nicematrix_right_margin_dim=\dimen341
-\l__nicematrix_extra_left_margin_dim=\dimen342
-\l__nicematrix_extra_right_margin_dim=\dimen343
-\c__nicematrix_max_l_dim=\dimen344
-\l__nicematrix_position_int=\count499
-\l__nicematrix_multiplicity_int=\count500
-\l__nicematrix_brace_yshift_dim=\dimen345
-) (c:/texlive/texlive/2025/texmf-dist/tex/latex/threeparttable/threeparttable.sty
-Package: threeparttable 2003/06/13 v 3.0
-\@tempboxb=\box75
-) (c:/texlive/texlive/2025/texmf-dist/tex/latex/makecell/makecell.sty
-Package: makecell 2009/08/03 V0.1e Managing of Tab Column Heads and Cells
-\rotheadsize=\dimen346
-\c@nlinenum=\count501
-\TeXr@lab=\toks55
-) (c:/texlive/texlive/2025/texmf-dist/tex/latex/tcolorbox/tcolorbox.sty
-Package: tcolorbox 2024/10/22 version 6.4.1 text color boxes
- (c:/texlive/texlive/2025/texmf-dist/tex/latex/pgf/frontendlayer/tikz.sty (c:/texlive/texlive/2025/texmf-dist/tex/latex/pgf/basiclayer/pgf.sty
-Package: pgf 2023-01-15 v3.1.10 (3.1.10)
- (c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/modules/pgfmoduleplot.code.tex
-File: pgfmoduleplot.code.tex 2023-01-15 v3.1.10 (3.1.10)
-) (c:/texlive/texlive/2025/texmf-dist/tex/latex/pgf/compatibility/pgfcomp-version-0-65.sty
-Package: pgfcomp-version-0-65 2023-01-15 v3.1.10 (3.1.10)
-\pgf@nodesepstart=\dimen347
-\pgf@nodesepend=\dimen348
-) (c:/texlive/texlive/2025/texmf-dist/tex/latex/pgf/compatibility/pgfcomp-version-1-18.sty
-Package: pgfcomp-version-1-18 2023-01-15 v3.1.10 (3.1.10)
-)) (c:/texlive/texlive/2025/texmf-dist/tex/latex/pgf/utilities/pgffor.sty (c:/texlive/texlive/2025/texmf-dist/tex/latex/pgf/utilities/pgfkeys.sty (c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/utilities/pgfkeys.code.tex)) (c:/texlive/texlive/2025/texmf-dist/tex/latex/pgf/math/pgfmath.sty (c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/math/pgfmath.code.tex)) (c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/utilities/pgffor.code.tex
-Package: pgffor 2023-01-15 v3.1.10 (3.1.10)
-\pgffor@iter=\dimen349
-\pgffor@skip=\dimen350
-\pgffor@stack=\toks56
-\pgffor@toks=\toks57
-)) (c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/frontendlayer/tikz/tikz.code.tex
-Package: tikz 2023-01-15 v3.1.10 (3.1.10)
- (c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/libraries/pgflibraryplothandlers.code.tex
-File: pgflibraryplothandlers.code.tex 2023-01-15 v3.1.10 (3.1.10)
-\pgf@plot@mark@count=\count502
-\pgfplotmarksize=\dimen351
-)
-\tikz@lastx=\dimen352
-\tikz@lasty=\dimen353
-\tikz@lastxsaved=\dimen354
-\tikz@lastysaved=\dimen355
-\tikz@lastmovetox=\dimen356
-\tikz@lastmovetoy=\dimen357
-\tikzleveldistance=\dimen358
-\tikzsiblingdistance=\dimen359
-\tikz@figbox=\box76
-\tikz@figbox@bg=\box77
-\tikz@tempbox=\box78
-\tikz@tempbox@bg=\box79
-\tikztreelevel=\count503
-\tikznumberofchildren=\count504
-\tikznumberofcurrentchild=\count505
-\tikz@fig@count=\count506
- (c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/modules/pgfmodulematrix.code.tex
-File: pgfmodulematrix.code.tex 2023-01-15 v3.1.10 (3.1.10)
-\pgfmatrixcurrentrow=\count507
-\pgfmatrixcurrentcolumn=\count508
-\pgf@matrix@numberofcolumns=\count509
-)
-\tikz@expandcount=\count510
- (c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarytopaths.code.tex
-File: tikzlibrarytopaths.code.tex 2023-01-15 v3.1.10 (3.1.10)
-))) (c:/texlive/texlive/2025/texmf-dist/tex/latex/tools/verbatim.sty
-Package: verbatim 2024-01-22 v1.5x LaTeX2e package for verbatim enhancements
-\every@verbatim=\toks58
-\verbatim@line=\toks59
-\verbatim@in@stream=\read5
-)
-\tcb@titlebox=\box80
-\tcb@upperbox=\box81
-\tcb@lowerbox=\box82
-\tcb@phantombox=\box83
-\c@tcbbreakpart=\count511
-\c@tcblayer=\count512
-\c@tcolorbox@number=\count513
-\l__tcobox_tmpa_box=\box84
-\l__tcobox_tmpa_dim=\dimen360
-\tcb@temp=\box85
-\tcb@temp=\box86
-\tcb@temp=\box87
-\tcb@temp=\box88
- (c:/texlive/texlive/2025/texmf-dist/tex/latex/tcolorbox/tcbraster.code.tex
-Library (tcolorbox): 'tcbraster.code.tex' version '6.4.1'
-\c@tcbrastercolumn=\count514
-\c@tcbrasterrow=\count515
-\c@tcbrasternum=\count516
-\c@tcbraster=\count517
-) (c:/texlive/texlive/2025/texmf-dist/tex/latex/tcolorbox/tcbskins.code.tex
-Library (tcolorbox): 'tcbskins.code.tex' version '6.4.1'
-(c:/texlive/texlive/2025/texmf-dist/tex/latex/tikzfill/tikzfill.image.sty
-Package: tikzfill.image 2023/08/08 v1.0.1 Image filling library for TikZ
- (c:/texlive/texlive/2025/texmf-dist/tex/latex/tikzfill/tikzfill-common.sty
-Package: tikzfill-common 2023/08/08 v1.0.1 Auxiliary code for tikzfill
-) (c:/texlive/texlive/2025/texmf-dist/tex/latex/tikzfill/tikzlibraryfill.image.code.tex
-File: tikzlibraryfill.image.code.tex 2023/08/08 v1.0.1 Image filling library
-\l__tikzfill_img_box=\box89
-)) (c:/texlive/texlive/2025/texmf-dist/tex/latex/tcolorbox/tcbskinsjigsaw.code.tex
-Library (tcolorbox): 'tcbskinsjigsaw.code.tex' version '6.4.1'
-)) (c:/texlive/texlive/2025/texmf-dist/tex/latex/tcolorbox/tcbbreakable.code.tex
-Library (tcolorbox): 'tcbbreakable.code.tex' version '6.4.1'
-(c:/texlive/texlive/2025/texmf-dist/tex/latex/pdfcol/pdfcol.sty
-Package: pdfcol 2022-09-21 v1.7 Handle new color stacks for pdfTeX (HO)
-)
-Package pdfcol Info: New color stack `tcb@breakable' = 1 on input line 23.
-\tcb@testbox=\box90
-\tcb@totalupperbox=\box91
-\tcb@totallowerbox=\box92
-) (c:/texlive/texlive/2025/texmf-dist/tex/latex/tcolorbox/tcbhooks.code.tex
-Library (tcolorbox): 'tcbhooks.code.tex' version '6.4.1'
-) (c:/texlive/texlive/2025/texmf-dist/tex/latex/tcolorbox/tcbtheorems.code.tex
-Library (tcolorbox): 'tcbtheorems.code.tex' version '6.4.1'
-) (c:/texlive/texlive/2025/texmf-dist/tex/latex/tcolorbox/tcbfitting.code.tex
-Library (tcolorbox): 'tcbfitting.code.tex' version '6.4.1'
-\tcbfitdim=\dimen361
-\tcb@lowerfitdim=\dimen362
-\tcb@upperfitdim=\dimen363
-\tcb@cur@hbadness=\count518
-) (c:/texlive/texlive/2025/texmf-dist/tex/latex/tcolorbox/tcblistingsutf8.code.tex
-Library (tcolorbox): 'tcblistingsutf8.code.tex' version '6.4.1'
-(c:/texlive/texlive/2025/texmf-dist/tex/latex/tcolorbox/tcblistings.code.tex
-Library (tcolorbox): 'tcblistings.code.tex' version '6.4.1'
-(c:/texlive/texlive/2025/texmf-dist/tex/latex/tcolorbox/tcblistingscore.code.tex
-Library (tcolorbox): 'tcblistingscore.code.tex' version '6.4.1'
-(c:/texlive/texlive/2025/texmf-dist/tex/latex/tcolorbox/tcbprocessing.code.tex
-Library (tcolorbox): 'tcbprocessing.code.tex' version '6.4.1'
-)
-\c@tcblisting=\count519
-)) (c:/texlive/texlive/2025/texmf-dist/tex/latex/listingsutf8/listingsutf8.sty
-Package: listingsutf8 2019-12-10 v1.5 Allow UTF-8 in listings input (HO)
-)) (c:/texlive/texlive/2025/texmf-dist/tex/latex/tcolorbox/tcbexternal.code.tex
-Library (tcolorbox): 'tcbexternal.code.tex' version '6.4.1'
-) (c:/texlive/texlive/2025/texmf-dist/tex/latex/tcolorbox/tcbmagazine.code.tex
-Library (tcolorbox): 'tcbmagazine.code.tex' version '6.4.1'
-) (c:/texlive/texlive/2025/texmf-dist/tex/latex/tcolorbox/tcbvignette.code.tex
-Library (tcolorbox): 'tcbvignette.code.tex' version '6.4.1'
-(c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryfadings.code.tex
-File: tikzlibraryfadings.code.tex 2023-01-15 v3.1.10 (3.1.10)
- (c:/texlive/texlive/2025/texmf-dist/tex/generic/pgf/libraries/pgflibraryfadings.code.tex
-File: pgflibraryfadings.code.tex 2023-01-15 v3.1.10 (3.1.10)
-))) (c:/texlive/texlive/2025/texmf-dist/tex/latex/tcolorbox/tcbposter.code.tex
-Library (tcolorbox): 'tcbposter.code.tex' version '6.4.1'
-)) (c:/texlive/texlive/2025/texmf-dist/tex/latex/siunitx/siunitx.sty
-Package: siunitx 2025-02-27 v3.4.6 A comprehensive (SI) units package
-\l__siunitx_number_uncert_offset_int=\count520
-\l__siunitx_number_exponent_fixed_int=\count521
-\l__siunitx_number_min_decimal_int=\count522
-\l__siunitx_number_min_integer_int=\count523
-\l__siunitx_number_round_precision_int=\count524
-\l__siunitx_number_lower_threshold_int=\count525
-\l__siunitx_number_upper_threshold_int=\count526
-\l__siunitx_number_group_first_int=\count527
-\l__siunitx_number_group_size_int=\count528
-\l__siunitx_number_group_minimum_int=\count529
-\l__siunitx_angle_tmp_dim=\dimen364
-\l__siunitx_angle_marker_box=\box93
-\l__siunitx_angle_unit_box=\box94
-\l__siunitx_compound_count_int=\count530
- (c:/texlive/texlive/2025/texmf-dist/tex/latex/translations/translations.sty
-Package: translations 2022/02/05 v1.12 internationalization of LaTeX2e packages (CN)
-)
-\l__siunitx_table_tmp_box=\box95
-\l__siunitx_table_tmp_dim=\dimen365
-\l__siunitx_table_column_width_dim=\dimen366
-\l__siunitx_table_integer_box=\box96
-\l__siunitx_table_decimal_box=\box97
-\l__siunitx_table_uncert_box=\box98
-\l__siunitx_table_before_box=\box99
-\l__siunitx_table_after_box=\box100
-\l__siunitx_table_before_dim=\dimen367
-\l__siunitx_table_carry_dim=\dimen368
-\l__siunitx_unit_tmp_int=\count531
-\l__siunitx_unit_position_int=\count532
-\l__siunitx_unit_total_int=\count533
-) (c:/texlive/texlive/2025/texmf-dist/tex/latex/enumitem/enumitem.sty
-Package: enumitem 2025/02/06 v3.11 Customized lists
-\enitkv@toks@=\toks60
-\labelindent=\skip141
-\enit@outerparindent=\dimen369
-\enit@toks=\toks61
-\enit@inbox=\box101
-\enit@count@id=\count534
-\enitdp@description=\count535
-)
-LaTeX Font Info: Trying to load font information for T1+ntxtlf on input line 112.
- (c:/texlive/texlive/2025/texmf-dist/tex/latex/newtx/t1ntxtlf.fd
-File: t1ntxtlf.fd 2021/05/24 v1.1 font definition file for T1/ntx/tlf
-)
-LaTeX Font Info: Font shape `T1/ntxtlf/m/n' will be
-(Font) scaled to size 12.0pt on input line 112.
-\@quotelevel=\count536
-\@quotereset=\count537
-Package translations Info: No language package found. I am going to use `english' as default language. on input line 112.
- (./mcmthesis-demo.aux
-
-LaTeX Warning: Label `Site Distribution Map' multiply defined.
-
-)
-\openout1 = `mcmthesis-demo.aux'.
-
-LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 112.
-LaTeX Font Info: ... okay on input line 112.
-LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 112.
-LaTeX Font Info: ... okay on input line 112.
-LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 112.
-LaTeX Font Info: ... okay on input line 112.
-LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 112.
-LaTeX Font Info: ... okay on input line 112.
-LaTeX Font Info: Checking defaults for TS1/cmr/m/n on input line 112.
-LaTeX Font Info: ... okay on input line 112.
-LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 112.
-LaTeX Font Info: ... okay on input line 112.
-LaTeX Font Info: Checking defaults for U/cmr/m/n on input line 112.
-LaTeX Font Info: ... okay on input line 112.
-LaTeX Font Info: Checking defaults for PD1/pdf/m/n on input line 112.
-LaTeX Font Info: ... okay on input line 112.
-LaTeX Font Info: Checking defaults for PU/pdf/m/n on input line 112.
-LaTeX Font Info: ... okay on input line 112.
-\c@lstlisting=\count538
- (c:/texlive/texlive/2025/texmf-dist/tex/context/base/mkii/supp-pdf.mkii
-[Loading MPS to PDF converter (version 2006.09.02).]
-\scratchcounter=\count539
-\scratchdimen=\dimen370
-\scratchbox=\box102
-\nofMPsegments=\count540
-\nofMParguments=\count541
-\everyMPshowfont=\toks62
-\MPscratchCnt=\count542
-\MPscratchDim=\dimen371
-\MPnumerator=\count543
-\makeMPintoPDFobject=\count544
-\everyMPtoPDFconversion=\toks63
-)
-*geometry* driver: auto-detecting
-*geometry* detected driver: pdftex
-*geometry* verbose mode - [ preamble ] result:
-* driver: pdftex
-* paper: a4paper
-* layout:
-* layoutoffset:(h,v)=(0.0pt,0.0pt)
-* modes:
-* h-part:(L,W,R)=(72.26999pt, 452.9679pt, 72.26999pt)
-* v-part:(T,H,B)=(72.26999pt, 700.50687pt, 72.26999pt)
-* \paperwidth=597.50787pt
-* \paperheight=845.04684pt
-* \textwidth=452.9679pt
-* \textheight=700.50687pt
-* \oddsidemargin=0.0pt
-* \evensidemargin=0.0pt
-* \topmargin=-37.0pt
-* \headheight=12.0pt
-* \headsep=25.0pt
-* \topskip=12.0pt
-* \footskip=30.0pt
-* \marginparwidth=35.0pt
-* \marginparsep=10.0pt
-* \columnsep=10.0pt
-* \skip\footins=10.8pt plus 4.0pt minus 2.0pt
-* \hoffset=0.0pt
-* \voffset=0.0pt
-* \mag=1000
-* \@twocolumnfalse
-* \@twosidefalse
-* \@mparswitchfalse
-* \@reversemarginfalse
-* (1in=72.27pt=25.4mm, 1cm=28.453pt)
-
-Package hyperref Info: Link coloring OFF on input line 112.
-(./mcmthesis-demo.out) (./mcmthesis-demo.out)
-\@outlinefile=\write6
-\openout6 = `mcmthesis-demo.out'.
-
-\c@mv@tabular=\count545
-\c@mv@boldtabular=\count546
-Package biblatex Info: Trying to load language 'english'...
-Package biblatex Info: ... file 'english.lbx' found.
- (c:/texlive/texlive/2025/texmf-dist/tex/latex/biblatex/lbx/english.lbx
-File: english.lbx 2024/03/21 v3.20 biblatex localization (PK/MW)
-)
-Package biblatex Info: Input encoding 'utf8' detected.
-Package biblatex Info: Automatic encoding selection.
-(biblatex) Assuming data encoding 'utf8'.
-\openout4 = `mcmthesis-demo.bcf'.
-
-Package biblatex Info: Trying to load bibliographic data...
-Package biblatex Info: ... file 'mcmthesis-demo.bbl' found.
- (./mcmthesis-demo.bbl)
-Package biblatex Info: Reference section=0 on input line 112.
-Package biblatex Info: Reference segment=0 on input line 112.
-\c__nicematrix_shift_Ldots_last_row_dim=\dimen372
-\c__nicematrix_shift_exterior_Vdots_dim=\dimen373
-\c__nicematrix_innersep_middle_dim=\dimen374
-\c@tabularnotesi=\count547
-\enitdp@tabularnotes=\count548
-\c@tabularnotes*i=\count549
-\enitdp@tabularnotes*=\count550
- (c:/texlive/texlive/2025/texmf-dist/tex/latex/base/inputenc.sty
-Package: inputenc 2024/02/08 v1.3d Input encoding file
-\inpenc@prehook=\toks64
-\inpenc@posthook=\toks65
-) (c:/texlive/texlive/2025/texmf-dist/tex/latex/translations/translations-basic-dictionary-english.trsl
-File: translations-basic-dictionary-english.trsl (english translation file `translations-basic-dictionary')
-)
-Package translations Info: loading dictionary `translations-basic-dictionary' for `english'. on input line 112.
-LaTeX Font Info: Font shape `T1/ntxtlf/b/n' will be
-(Font) scaled to size 12.0pt on input line 127.
-LaTeX Font Info: Font shape `T1/ntxtlf/b/n' will be
-(Font) scaled to size 24.88pt on input line 127.
-LaTeX Font Info: Font shape `T1/ntxtlf/m/n' will be
-(Font) scaled to size 20.74pt on input line 127.
-LaTeX Font Info: Font shape `T1/ntxtlf/b/n' will be
-(Font) scaled to size 14.4pt on input line 127.
-LaTeX Info: Symbol \textrightarrow not provided by
- font family ntxtlf in TS1 encoding.
- Default family used instead on input line 127.
-LaTeX Info: Symbol \textrightarrow not provided by
- font family ntxtlf in TS1 encoding.
- Default family used instead on input line 127.
-LaTeX Info: Symbol \textrightarrow not provided by
- font family ntxtlf in TS1 encoding.
- Default family used instead on input line 127.
-LaTeX Info: Symbol \textrightarrow not provided by
- font family ntxtlf in TS1 encoding.
- Default family used instead on input line 127.
-
-
-[1
-
-{c:/texlive/texlive/2025/texmf-var/fonts/map/pdftex/updmap/pdftex.map}{c:/texlive/texlive/2025/texmf-dist/fonts/enc/dvips/newtx/ntx-ec-tlf.enc}{c:/texlive/texlive/2025/texmf-dist/fonts/enc/dvips/cm-super/cm-super-ts1.enc}]
-LaTeX Font Info: Font shape `T1/ntxtlf/m/n' will be
-(Font) scaled to size 17.28pt on input line 131.
-LaTeX Font Info: Font shape `T1/ntxtlf/b/n' will be
-(Font) scaled to size 17.28pt on input line 131.
- (./mcmthesis-demo.toc
-LaTeX Font Info: Trying to load font information for U+msa on input line 1.
- (c:/texlive/texlive/2025/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 1.
- (c:/texlive/texlive/2025/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+rsfs on input line 1.
- (c:/texlive/texlive/2025/texmf-dist/tex/latex/jknapltx/ursfs.fd
-File: ursfs.fd 1998/03/24 rsfs font definition file (jk)
-)
-LaTeX Font Info: Trying to load font information for U+lasy on input line 1.
- (c:/texlive/texlive/2025/texmf-dist/tex/latex/base/ulasy.fd
-File: ulasy.fd 1998/08/17 v2.2e LaTeX symbol font definitions
-))
-\tf@toc=\write7
-\openout7 = `mcmthesis-demo.toc'.
-
-
-
-[2]
-LaTeX Font Info: Font shape `T1/ntxtlf/m/n' will be
-(Font) scaled to size 14.4pt on input line 138.
-LaTeX Font Info: Trying to load font information for TS1+ntxtlf on input line 148.
- (c:/texlive/texlive/2025/texmf-dist/tex/latex/newtx/ts1ntxtlf.fd
-File: ts1ntxtlf.fd 2015/01/18 v1.0 fd file for TS1/ntxtlf
-)
-LaTeX Font Info: Font shape `TS1/ntxtlf/m/n' will be
-(Font) scaled to size 12.0pt on input line 148.
-
-
-LaTeX Font Info: Font shape `T1/ntxtlf/m/n' will be
-(Font) scaled to size 10.95pt on input line 169.
-LaTeX Font Info: Trying to load font information for T1+fvs on input line 169.
-(c:/texlive/texlive/2025/texmf-dist/tex/latex/bera/t1fvs.fd
-File: t1fvs.fd 2004/09/07 scalable font definitions for T1/fvs.
-)
-LaTeX Font Info: Font shape `T1/fvs/m/n' will be
-(Font) scaled to size 9.85492pt on input line 169.
-
-
-Package fancyhdr Warning: \headheight is too small (12.0pt):
-(fancyhdr) Make it at least 13.59999pt, for example:
-(fancyhdr) \setlength{\headheight}{13.59999pt}.
-(fancyhdr) You might also make \topmargin smaller:
-(fancyhdr) \addtolength{\topmargin}{-1.59999pt}.
-
-[3{c:/texlive/texlive/2025/texmf-dist/fonts/enc/dvips/base/8r.enc}{c:/texlive/texlive/2025/texmf-dist/fonts/enc/dvips/tex-gyre/q-ts1.enc}]
-<./figures/flow.png, id=244, 598.089pt x 369.234pt>
-File: ./figures/flow.png Graphic file (type png)
-