summaryrefslogtreecommitdiff
path: root/support
diff options
context:
space:
mode:
authorNorbert Preining <norbert@preining.info>2023-04-03 03:04:19 +0000
committerNorbert Preining <norbert@preining.info>2023-04-03 03:04:19 +0000
commit3b4a242af88203c2f3f551d46161bdd037c0d127 (patch)
treed0f11425ac288e446783f8da0c4808d9f6b58df0 /support
parenta9dc5b575ce3fc6956336d6fc6ab7247995defc1 (diff)
CTAN sync 202304030304
Diffstat (limited to 'support')
-rw-r--r--support/findpkg/README.md28
-rw-r--r--support/findpkg/findpkg.json.gzbin0 -> 892907 bytes
-rw-r--r--support/findpkg/findpkg.lua (renamed from support/texuse/texuse.lua)78
-rw-r--r--support/texuse/README.md28
-rw-r--r--support/texuse/texuse.json8095
5 files changed, 68 insertions, 8161 deletions
diff --git a/support/findpkg/README.md b/support/findpkg/README.md
new file mode 100644
index 0000000000..3f3522f529
--- /dev/null
+++ b/support/findpkg/README.md
@@ -0,0 +1,28 @@
+# FindPkg tool for installing TeX packages
+
+```
+Description: Install TeX packages and their dependencies
+Copyright: 2023 (c) Jianrui Lyu <tolvjr@163.com>
+Repository: https://github.com/lvjr/findpkg
+License: GNU General Public License v3.0
+```
+
+## Introduction
+
+FindPkg makes it easy to install TeX packages and their dependencies by file names, command names or environment names.
+
+- To install a package by its file name you can run `texlua findpkg.lua install array.sty`;
+- To install a package by some command name you can run `texlua findpkg.lua install \fakeverb`;
+- To install a package by some environment name you can run `texlua findpkg.lua install {frame}`.
+
+FindPkg supports both TeXLive and MiKTeX distributions. At present it focuses mainly on LaTeX packages, but may extend to ConTeXt packages if anyone would like to contribute.
+
+## Building
+
+FindPkg uses completion files of TeXstudio editor which are in `completion` folder of TeXstudio [repository](https://github.com/texstudio-org/texstudio).
+
+After putting `completion` folder into current folder, you can run `texlua findpkg.lua generate` to generate `findpkg.json` file.
+
+## Contributing
+
+Any updates of dependencies, commands or environments for packages should be contributed directly to TeXstudio project.
diff --git a/support/findpkg/findpkg.json.gz b/support/findpkg/findpkg.json.gz
new file mode 100644
index 0000000000..aec9bb158e
--- /dev/null
+++ b/support/findpkg/findpkg.json.gz
Binary files differ
diff --git a/support/texuse/texuse.lua b/support/findpkg/findpkg.lua
index 924c6514a3..eb7b54f5ec 100644
--- a/support/texuse/texuse.lua
+++ b/support/findpkg/findpkg.lua
@@ -2,11 +2,11 @@
-- Description: Install TeX packages and their dependencies
-- Copyright: 2023 (c) Jianrui Lyu <tolvjr@163.com>
--- Repository: https://github.com/lvjr/texuse
+-- Repository: https://github.com/lvjr/findpkg
-- License: GNU General Public License v3.0
-local tuversion = "2023B"
-local tudate = "2023-04-01"
+local fpversion = "2023C"
+local fpdate = "2023-04-02"
------------------------------------------------------------
--> \section{Some variables and functions}
@@ -19,12 +19,12 @@ local match = string.match
local lookup = kpse.lookup
kpse.set_program_name("kpsewhich")
--- we need utilities.json.tostring and utilities.json.tolua
require(lookup("lualibs.lua"))
-local json = utilities.json
+local json = utilities.json -- for json.tostring and json.tolua
+local gzip = gzip -- for gzip.compress and gzip.decompress
-local function tuPrint(msg)
- print("[texuse] " .. msg)
+local function fpPrint(msg)
+ print("[findpkg] " .. msg)
end
local showdbg = false
@@ -91,18 +91,18 @@ local function tlReadPackageDB()
if tlroot then
tlroot = tlroot .. "/tlpkg"
else
- tuPrint("error in finding texmf root!")
+ fpPrint("error in finding texmf root!")
end
local list = getFiles(tlroot, "^texlive%.tlpdb%.main")
if #list > 0 then
tlpkgtext = fileRead(tlroot .. "/" .. list[1])
if not tlpkgtext then
- tuPrint("error in reading texlive package database!")
+ fpPrint("error in reading texlive package database!")
end
else
-- no texlive.tlpdb.main file in a fresh TeX live
- tuPrint("error in finding texlive package database!")
- tuPrint("please run 'tlmgr update --self' first.")
+ fpPrint("error in finding texlive package database!")
+ fpPrint("please run 'tlmgr update --self' first.")
end
end
@@ -140,11 +140,11 @@ local function mtReadPackageDB()
if mtvar then
mtpdb = mtvar .. "/miktex/cache/packages/miktex-zzdb3-2.9/package-manifests.ini"
else
- tuPrint("error in finding texmf root!")
+ fpPrint("error in finding texmf root!")
end
mtpkgtext = fileRead(mtpdb)
if not mtpkgtext then
- tuPrint("error in reading miktex package database!")
+ fpPrint("error in reading miktex package database!")
end
end
@@ -182,13 +182,13 @@ local function compareDistributions()
if tlpkgtext then
tlParsePackageDB()
else
- tuPrint("error in reading texlive package database!")
+ fpPrint("error in reading texlive package database!")
end
mtpkgtext = fileRead(mtpkgname)
if mtpkgtext then
mtParsePackageDB()
else
- tuPrint("error in reading miktex package database!")
+ fpPrint("error in reading miktex package database!")
end
local tlmissing, mkmissing = {}, {}
for k, vt in pairs(tlpkgdata) do
@@ -253,7 +253,7 @@ local function extractFileData(cwl)
end
local function writeJson(cwldata)
- tuPrint("writing json database to file...")
+ fpPrint("writing json database to file...")
local tbl1 = {}
for k, v in pairs(cwldata) do
table.insert(tbl1, {k, v})
@@ -267,7 +267,8 @@ local function writeJson(cwldata)
table.insert(tbl2, item)
end
local text = "{\n" .. table.concat(tbl2, "\n,\n") .. "\n}"
- fileWrite(text, "texuse.json")
+ fileWrite(text, "findpkg.json")
+ fileWrite(gzip.compress(text), "findpkg.json.gz")
end
local cwlpath = "completion"
@@ -292,7 +293,7 @@ local function generateJsonData()
dbgPrint(item)
cwldata[fname] = item
else
- tuPrint("error in reading " .. v)
+ fpPrint("error in reading " .. v)
end
end
writeJson(cwldata)
@@ -306,7 +307,7 @@ local dist -- name of current tex distribution
local function initPackageDB()
dist = testDistribution()
- tuPrint("you are using " .. dist)
+ fpPrint("you are using " .. dist)
if dist == "texlive" then
tlReadPackageDB()
tlParsePackageDB()
@@ -327,11 +328,11 @@ end
local function installSomePackages(list)
if dist == "texlive" then
local p = table.concat(list, " ")
- tuPrint("installing package " .. p)
+ fpPrint("installing package " .. p)
os.execute("tlmgr install " .. p)
else
for _, p in ipairs(list) do
- tuPrint("installing package " .. p)
+ fpPrint("installing package " .. p)
os.execute("miktex packages install " .. p)
end
end
@@ -341,19 +342,19 @@ end
--> \section{Find dependencies of package files}
------------------------------------------------------------
-local tutext = "" -- the json tutext
-local tudata = {} -- the lua object
+local fptext = "" -- the json text
+local fpdata = {} -- the lua object
local fnlist = {} -- file name list
local function findDependencies(fname)
--print(fname)
if valueExists(fnlist, fname) then return end
- local item = tudata[fname]
+ local item = fpdata[fname]
if not item then
- tuPrint("could not find package file " .. fname)
+ fpPrint("could not find package file " .. fname)
return
end
- tuPrint("finding dependencies for " .. fname)
+ fpPrint("finding dependencies for " .. fname)
table.insert(fnlist, fname)
local deps = item.deps
if deps then
@@ -367,7 +368,7 @@ local function installByFileName(fname)
fnlist = {} -- reset the list
findDependencies(fname)
if #fnlist == 0 then
- tuPrint("error in finding package file")
+ fpPrint("error in finding package file")
return
end
local pkglist = {}
@@ -379,7 +380,7 @@ local function installByFileName(fname)
end
end
if not pkglist then
- tuPrint("error in finding package in " .. dist)
+ fpPrint("error in finding package in " .. dist)
return
end
installSomePackages(pkglist)
@@ -387,19 +388,19 @@ end
local function getFileNameFromCmdEnvName(cmdenv, name)
--print(name)
- for line in tutext:gmatch("(.-)\n[,}]") do
+ for line in fptext:gmatch("(.-)\n[,}]") do
if line:find('"' .. name .. '"') then
--print(line)
local fname, fspec = line:match('"(.-)":(.+)')
--print(fname, fspec)
local item = json.tolua(fspec)
if valueExists(item[cmdenv], name) then
- tuPrint("found package file " .. fname)
+ fpPrint("found package file " .. fname)
return fname
end
end
end
- tuPrint("could not find any package file with " .. name)
+ fpPrint("could not find any package file with " .. name)
end
local function installByCommandName(cname)
@@ -428,7 +429,7 @@ local function install(name)
local b = name:sub(2,-2)
installByEnvironmentName(b)
else
- tuPrint("invalid input " .. name)
+ fpPrint("invalid input " .. name)
end
else
installByFileName(name)
@@ -443,20 +444,21 @@ local function main()
if arg[1] == nil then return end
initPackageDB()
if arg[1] == "install" then
- tutext = fileRead(lookup("texuse.json"))
- if tutext then
- --print(tutext)
- tudata = json.tolua(tutext)
+ local ziptext = fileRead(lookup("findpkg.json.gz"))
+ fptext = gzip.decompress(ziptext)
+ if fptext then
+ --print(fptext)
+ fpdata = json.tolua(fptext)
install(arg[2])
else
- tuPrint("error in reading texuse.json!")
+ fpPrint("error in reading findpkg.json!")
end
elseif arg[1] == "generate" then
generateJsonData()
elseif arg[1] == "compare" then
compareDistributions()
else
- tuPrint("unknown option " .. arg[1])
+ fpPrint("unknown option " .. arg[1])
end
end
diff --git a/support/texuse/README.md b/support/texuse/README.md
deleted file mode 100644
index c9bd0a3fb9..0000000000
--- a/support/texuse/README.md
+++ /dev/null
@@ -1,28 +0,0 @@
-# TeXUse tool for installing TeX packages
-
-```
-Description: Install TeX packages and their dependencies
-Copyright: 2023 (c) Jianrui Lyu <tolvjr@163.com>
-Repository: https://github.com/lvjr/texuse
-License: GNU General Public License v3.0
-```
-
-## Introduction
-
-TeXUse makes it easy to install TeX packages and their dependencies by file names, command names or environment names.
-
-- To install a package by its file name you can run `texlua texuse.lua install array.sty`;
-- To install a package by some command name you can run `texlua texuse.lua install \fakeverb`;
-- To install a package by some environment name you can run `texlua texuse.lua install {frame}`.
-
-TeXUse supports both TeXLive and MiKTeX distributions. At present it focuses mainly on LaTeX packages, but may extend to ConTeXt packages if anyone would like to contribute.
-
-## Building
-
-TeXUse uses completion files of TeXstudio editor which are in `completion` folder of TeXstudio [repository](https://github.com/texstudio-org/texstudio).
-
-After putting `completion` folder into current folder, you can run `texlua texuse.lua generate` to generate `texuse.json` file.
-
-## Contributing
-
-Any updates of dependencies, commands or environments for packages should be contributed directly to TeXstudio project.
diff --git a/support/texuse/texuse.json b/support/texuse/texuse.json
deleted file mode 100644
index 908ebc228d..0000000000
--- a/support/texuse/texuse.json
+++ /dev/null
@@ -1,8095 +0,0 @@
-{
-"12many.sty":{"envs":{},"deps":["calc.sty","keyval.sty"],"cmds":["nto","ito","oto","setOTMstyle","newOTMstyle","getOTMparameter","renewOTMstyle","newOTMparameter"]}
-,
-"2up.sty":{"envs":{},"deps":{},"cmds":["source","target","magstep","magstepminus","targetlayout","pagesepwidth","pageseplength","pagesepoffset","twoupemptypage","twoupclearpage","twoupeject","twouparticle","twoupplain","twouplegaltarget","twouplandscape","bookletpage","leftpagenumber","rightpagenumber","TheAtCode","TwoUpLoaded","filedate","fileversion"]}
-,
-"Acorn.sty":{"envs":{},"deps":{},"cmds":["Acornfamily","acorn"]}
-,
-"Alegreya.sty":{"envs":{},"deps":["ifxetex.sty","ifluatex.sty","textcomp.sty","fontenc.sty","fontaxes.sty","mweights.sty","xkeyval.sty"],"cmds":["Alegreya","AlegreyaExtraBold","AlegreyaBlack","AlegreyaMedium","AlegreyaLF","AlegreyaOsF","AlegreyaTLF","AlegreyaTOsF","sufigures","infigures","textsu","textin","useosf","Alegreyafamily"]}
-,
-"AlegreyaSans.sty":{"envs":{},"deps":["ifxetex.sty","ifluatex.sty","textcomp.sty","fontenc.sty","fontaxes.sty","mweights.sty","xkeyval.sty"],"cmds":["AlegreyaSans","AlegreyaSansThin","AlegreyaSansLight","AlegreyaSansExtraBold","AlegreyaSansBlack","AlegreyaSansMedium","AlegreyaSansLF","AlegreyaSansOsF","AlegreyaSansTLF","AlegreyaSansTOsF","sufigures","infigures","textsu","textin","useosf","AlegreyaSansfamily"]}
-,
-"AnnSton.sty":{"envs":{},"deps":{},"cmds":["AnnStonfamily","astone"]}
-,
-"AnonymousPro.sty":{"envs":{},"deps":["kvoptions.sty"],"cmds":["ANPapplelogo","ANPappleopen","ANPapproxequal","ANPback","ANPblackdiamond","ANPcheckmark","ANPcopy","ANPellipsis","ANPendtab","ANPerasetotheright","ANPgreaterequal","ANPHbar","ANPhbar","ANPinfinity","ANPinsert","ANPintegral","ANPlessequal","ANPlozenge","ANPnotequal","ANPoptionkey","ANPpartialdiff","ANPPi","ANPpi","ANPproduct","ANPshift","ANPshiftlock","ANPSigma","ANPsigma","ANPsigmaone","ANPsummation","ANPtab","ANPReturnSign","ANPShoulderedOpenBox","ANPUpArrowHead","ANPInsertSign","ANPUpArrowHeadBars","ANPHelm","ANPOpenBox","ANPDelta","ANPverticaltab","ANPNumeroSign"]}
-,
-"Archivo.sty":{"envs":{},"deps":["fontenc.sty","textcomp.sty","ifthen.sty","mweights.sty","fontaxes.sty"],"cmds":["sufigures","supfigures","textsu","textsup","textsuperior"]}
-,
-"ArtNouv.sty":{"envs":{},"deps":{},"cmds":["ArtNouvfamily","artnouv"]}
-,
-"ArtNouvc.sty":{"envs":{},"deps":{},"cmds":["ArtNouvcfamily","artnouvc"]}
-,
-"Arvo.sty":{"envs":{},"deps":["xkeyval.sty","fontenc.sty","textcomp.sty","ifthen.sty","mweights.sty","fontaxes.sty"],"cmds":["Arvotabular","Arvoproportional"]}
-,
-"BHCexam.cls":{"envs":["groups","questions","solution","subquestions"],"deps":["ctex.sty","tabularx.sty","ifthen.sty","xcolor.sty","graphicx.sty","caption.sty","geometry.sty","fancyhdr.sty","etoolbox.sty","amsmath.sty","amssymb.sty","unicode-math.sty","pifont.sty","bbding.sty","romannum.sty","enumitem.sty"],"cmds":["abs","build","choicelengtha","choicelengthb","choicelengthc","choicelengthd","choicelengthe","example","exercise","filedate","fileversion","fivechoices","fourchoices","group","gt","hint","key","keylength","lt","maxlength","method","methodonly","myvertspace","notice","question","score","sixchoices","subquestion","subtitle","theExample","theExercise","theGroup","theMethod","theQuestion","threechoices"]}
-,
-"BOONDOX-cal.sty":{"envs":{},"deps":["xkeyval.sty"],"cmds":["mathcal","mathbcal"]}
-,
-"BOONDOX-calo.sty":{"envs":{},"deps":["xkeyval.sty"],"cmds":["mathcal","mathbcal"]}
-,
-"BOONDOX-ds.sty":{"envs":{},"deps":["xkeyval.sty"],"cmds":["mathbb","mathbbb"]}
-,
-"BOONDOX-frak.sty":{"envs":{},"deps":["xkeyval.sty"],"cmds":["mathfrak","mathbfrak"]}
-,
-"BOONDOX-uprscr.sty":{"envs":{},"deps":["xkeyval.sty"],"cmds":["mathscr","mathbscr"]}
-,
-"Baskervaldx.sty":{"envs":{},"deps":["fontenc.sty","textcomp.sty","mweights.sty","etoolbox.sty","scalefnt.sty","fontaxes.sty","xkeyval.sty"],"cmds":["lfstyle","osfstyle","sufigures","swshape","textlf","textosf","textsu","textsuperior","texttlf","texttosf","tlfstyle","tosfstyle","useosf","DH","NG","dj","ng","k","guillemotleft","guillemotright","guilsinglleft","guilsinglright","quotedblbase","quotesinglbase","textquotedbl","DJ","th","TH","dh","Hwithstroke","hwithstroke","textogonekcentered","guillemetleft","guillemetright"]}
-,
-"CJK.sty":{"envs":["CJK","CJK*"],"deps":["MULEenc.sty"],"cmds":["CJKbold","CJKnormal","CJKboldshift","CJKsymbol","CJKpunctsymbol","CJKsymbols","CJKchar","Unicode","CJKCJKchar","CJKhangulchar","CJKlatinchar","CJKhwkatakana","CJKnohwkatakana","CJKenc","CJKfontenc","CJKfamily","CJKencfamily","CJKshape","CJKencshape","CJKaddEncHook","CJKhanja","CJKhangul","CJKkern","CJKglue","CJKtolerance","nbs","CJKtilde","standardtilde","CJKspace","CJKnospace","CJKindent","CJKcaption","CJKhdef","CJKhlet","CJKvdef","CJKvlet"]}
-,
-"CJKfntef.sty":{"envs":["CJKfilltwosides"],"deps":["CJK.sty","CJKulem.sty"],"cmds":["CJKunderdot","CJKunderline","CJKunderdblline","CJKunderwave","CJKsout","CJKxout","varCJKunderline","CJKunderanyline","CJKunderanysymbol","CJKsoutcolor","CJKsoutheight","CJKulineleftskip","CJKulinerightskip","CJKunderdbllinebasesep","CJKunderdbllinecolor","CJKunderdbllinesep","CJKunderdotbasesep","CJKunderdotcolor","CJKunderdotsep","CJKunderlinebasesep","CJKunderlinecolor","CJKunderlinesep","CJKunderwavebasesep","CJKunderwavecolor","CJKunderwavesep","CJKxoutcolor"]}
-,
-"CJKnumb.sty":{"envs":{},"deps":["CJK.sty"],"cmds":["CJKnumber","CJKdigits","CJKnullspace"]}
-,
-"CJKutf8.sty":{"envs":{},"deps":["ifpdf.sty","inputenc.sty","CJK.sty","fontenc.sty"],"cmds":["pdfstringdefPreHook"]}
-,
-"CJKvert.sty":{"envs":{},"deps":["graphicx.sty"],"cmds":["CJKvert","CJKhorz","CJKsymbol","CJKsymbolsimple","CJKbaselinestretch","fileversion","filedate"]}
-,
-"Carrickc.sty":{"envs":{},"deps":{},"cmds":["Carrickcfamily","carr"]}
-,
-"CharisSIL.sty":{"envs":{},"deps":["ifxetex.sty","ifluatex.sty","xkeyval.sty","textcomp.sty","fontenc.sty","fontaxes.sty","mweights.sty"],"cmds":["CharisSIL"]}
-,
-"Chivo.sty":{"envs":{},"deps":["iftex.sty","fontaxes.sty","kvoptions.sty"],"cmds":["textsuperior","sufigures","textinferior","infigures","textnumerator","nufigures","textdenominator","defigures"]}
-,
-"ClearSans.sty":{"envs":{},"deps":["ifxetex.sty","ifluatex.sty","xkeyval.sty","textcomp.sty","fontenc.sty","fontaxes.sty","mweights.sty"],"cmds":["clear","clearlight","clearthin","textsfl","textsft","clearfamily"]}
-,
-"CooperHewitt.sty":{"envs":{},"deps":["ifxetex.sty","ifluatex.sty","xkeyval.sty","textcomp.sty","fontaxes.sty","fontenc.sty","mweights.sty"],"cmds":["sufigures","supfigures","textsu","textsup","textsuperior","cphwtfamily","cooperhewitt"]}
-,
-"CormorantGaramond.sty":{"envs":{},"deps":["ifxetex.sty","ifluatex.sty","xkeyval.sty","textcomp.sty","fontenc.sty","fontaxes.sty","mweights.sty"],"cmds":["oldstylenums","liningnums","tabularnums","proportionalnums","sufigures","infigures","textsu","textinf"]}
-,
-"CoverPage.sty":{"envs":{},"deps":["keyval.sty","textcomp.sty","url.sty","verbatim.sty"],"cmds":["CoverPageSetup","BibTeX","CPTitleFont","CPAuthorFont","CPInstituteFont","CPInSourceFont","CPCopyrightFont","CoverPageHeader","CoverPageBody","CoverPageFooter","CoverPageFooterLogo","CPProcessBibEntry","CPPublisherCheck","CoverPageFooterInfo"]}
-,
-"CrimsonPro.sty":{"envs":{},"deps":["ifxetex.sty","ifluatex.sty","xkeyval.sty","textcomp.sty","fontaxes.sty","fontenc.sty","mweights.sty"],"cmds":["crimsonpro","crimsonproOsF","crimsonproLF","crimsonprotabular","crimsonproproportional","tabularnums","proportionalnums","oldstylenums","liningnums","textsu","sufigures","textinf","infigures"]}
-,
-"CronosPro-FontDef.sty":{"envs":{},"deps":["otfontdef.sty","fltpoint.sty"],"cmds":{}}
-,
-"CronosPro.sty":{"envs":{},"deps":["kvoptions.sty","CronosPro-FontDef.sty","textcomp.sty","microtype.sty","fontaxes.sty"],"cmds":["smallfrac","slantfrac"]}
-,
-"DPcircling.sty":{"envs":{},"deps":["tikz.sty"],"cmds":["DPcircling","DPrectangle","DPjagged","DPfanshape","DPcircle","DPcirc","DPrect","DPcirclingDefault"]}
-,
-"DejaVuSans.sty":{"envs":{},"deps":["keyval.sty"],"cmds":["ProcessOptionsWithKV"]}
-,
-"DejaVuSansCondensed.sty":{"envs":{},"deps":["keyval.sty"],"cmds":["ProcessOptionsWithKV"]}
-,
-"DejaVuSansMono.sty":{"envs":{},"deps":["keyval.sty"],"cmds":["ProcessOptionsWithKV"]}
-,
-"DejaVuSerif.sty":{"envs":{},"deps":["keyval.sty"],"cmds":["ProcessOptionsWithKV"]}
-,
-"DejaVuSerifCondensed.sty":{"envs":{},"deps":["keyval.sty"],"cmds":["ProcessOptionsWithKV"]}
-,
-"ETbb.sty":{"envs":{},"deps":["fontenc.sty","textcomp.sty","ifetex.sty","etoolbox.sty","xstring.sty","ifthen.sty","scalefnt.sty","mweights.sty","fontaxes.sty","xkeyval.sty"],"cmds":["swshape","lfstyle","textlf","tlfstyle","texttlf","osfstyle","textosf","tosfstyle","texttosf","sufigures","supfigures","nustyle","textsu","textsup","textsuperior","infigures","inffigures","textfrac","textin","textinf","textinferior","defigures","destyle","denomfigures","textde","textdenom","textdenominator","Qswash","useosf","useproportional","Qnoswash","DH","NG","dj","ng","k","guillemotleft","guillemotright","guilsinglleft","guilsinglright","quotedblbase","quotesinglbase","textquotedbl","DJ","th","TH","dh","Hwithstroke","hwithstroke","textogonekcentered","guillemetleft","guillemetright"]}
-,
-"Eichenla.sty":{"envs":{},"deps":{},"cmds":["Eichenlafamily","eichen"]}
-,
-"Eileen.sty":{"envs":{},"deps":{},"cmds":["Eileenfamily","eileen"]}
-,
-"EileenBl.sty":{"envs":{},"deps":{},"cmds":["EileenBlfamily","eileenbl"]}
-,
-"Elzevier.sty":{"envs":{},"deps":{},"cmds":["Elzevier","elz"]}
-,
-"FUbeamer.cls":{"envs":{},"deps":["s-beamer.cls","fontenc.sty","babel.sty","graphicx.sty","tabularx.sty","helvet.sty","colortbl.sty"],"cmds":["titlevsep","titlegraphic","fachbereich","insertfachbereich","captionsngerman","datengerman","extrasngerman","noextrasngerman","dq","ntosstrue","ntossfalse","prefacename","bibname","chaptername","enclname","ccname","headtoname","pagename","seename","alsoname","proofname","glossaryname","mdqon","mdqoff","DH","NG","dj","ng","k","guillemotleft","guillemotright","guilsinglleft","guilsinglright","quotedblbase","quotesinglbase","textquotedbl","DJ","th","TH","dh","Hwithstroke","hwithstroke","textogonekcentered","guillemetleft","guillemetright"]}
-,
-"FUpowerdot.cls":{"envs":["titleslide","basic","wideslide","slide","sectionslide","sectionwideslide","LaTeXflushleft","LaTeXcenter"],"deps":["s-powerdot.cls","fontenc.sty","babel.sty","pifont.sty","breakurl.sty","graphicx.sty","calc.sty","tabularx.sty","helvet.sty","ragged2e.sty","pdfbase.sty","colortbl.sty"],"cmds":["inst","framelogo","insertframelogo","titlelogo","inserttitlelogo","fachbereich","insertfachbereich","subtitle","insertsubtitle","institute","insertinstitute","titlegraphic","inserttitlegraphic","DH","dh","dj","DJ","guillemetleft","guillemetright","guillemotleft","guillemotright","guilsinglleft","guilsinglright","Hwithstroke","hwithstroke","k","NG","ng","quotedblbase","quotesinglbase","textogonekcentered","textquotedbl","th","TH","captionsngerman","datengerman","extrasngerman","noextrasngerman","dq","ntosstrue","ntossfalse","prefacename","bibname","chaptername","enclname","ccname","headtoname","pagename","seename","alsoname","proofname","glossaryname","mdqon","mdqoff","LaTeXcentering","LaTeXraggedleft","LaTeXraggedright"]}
-,
-"FenetreCas.sty":{"envs":["CalculFormelGeogebra","CalculFormelXcas"],"deps":["tikz.sty","xstring.sty","xintexpr.sty","simplekv.sty","settobox.sty","tikzlibrarycalc.sty","tikzlibrarypositioning.sty"],"cmds":["LigneCalculsGeogebra","LigneCalculsXcas","GEOCFcoulentete","GEOCFcoulnum","GEOCFelargirauto","GEOCFfontenete","GEOCFhauteur","GEOCFlarg","GEOCFlargnum","GEOCFoffset","GEOCFoffseth","GEOCFpolnum","GEOCFtaillecmd","GEOCFtailleres","GEOCFtitre","hauteurboitecmdxcas","hauteurboiteggbcmd","hauteurboiteggbres","hauteurboiteggbtitre","hauteurboiteresxcas","maboitecmdxcas","maboiteggbcmd","maboiteggbres","maboiteggbtitre","maboiteresxcas","offsetcfgeogebra","offsetcfxcas","thegeogebracfnum","thexcascfnum","XCCFcoulcmd","XCCFcouleur","XCCFcoulres","XCCFelargirauto","XCCFesplg","XCCFfontenete","XCCFlarg","XCCFoffset","XCCFoffseth","XCCFposres","XCCFtaillecmd","XCCFtailleres","XCCFtxtopts"]}
-,
-"FiraMono.sty":{"envs":{},"deps":["ifxetex.sty","ifluatex.sty","xkeyval.sty","textcomp.sty","fontenc.sty","fontaxes.sty","mweights.sty"],"cmds":["firamonooldstyle","firamonolining","firamonomedium","sufigures","firamonolgr","firamonofamily"]}
-,
-"FiraSans.sty":{"envs":{},"deps":["ifxetex.sty","ifluatex.sty","xkeyval.sty","textcomp.sty","fontaxes.sty","mweights.sty"],"cmds":["firaoldstyle","firalining","firatabular","firaproportional","firathin","firalight","firamedium","firasemibold","firaextrabold","firaheavy","firabook","firaextralight","firaultralight","sufigures","firalgr","firafamily"]}
-,
-"GS1.sty":{"envs":{},"deps":["rule-D.sty","xparse.sty"],"cmds":["EANControlDigit","EANBarcode","GSSetup"]}
-,
-"GoMono.sty":{"envs":{},"deps":["ifxetex.sty","ifluatex.sty","xkeyval.sty","textcomp.sty","fontenc.sty","mweights.sty"],"cmds":["gomonofamily","gomonolgr"]}
-,
-"GoSans.sty":{"envs":{},"deps":["ifxetex.sty","ifluatex.sty","xkeyval.sty","textcomp.sty","fontenc.sty","fontaxes.sty","mweights.sty"],"cmds":["gomedium","gobold","gofamily","golgr"]}
-,
-"GotIn.sty":{"envs":{},"deps":{},"cmds":["GotInfamily","gotin"]}
-,
-"GoudyIn.sty":{"envs":{},"deps":{},"cmds":["GoudyInfamily","goudyin"]}
-,
-"Gudea.sty":{"envs":{},"deps":["xkeyval.sty","fontenc.sty","textcomp.sty","ifthen.sty","mweights.sty","fontaxes.sty"],"cmds":{}}
-,
-"HindMadurai.sty":{"envs":{},"deps":["xkeyval.sty","fontenc.sty","textcomp.sty","ifthen.sty","mweights.sty","fontaxes.sty"],"cmds":{}}
-,
-"IEEEconf.cls":{"envs":["affiliation"],"deps":["geometry.sty","mathptmx.sty","helvet.sty","courier.sty","array.sty","titlesec.sty"],"cmds":["email","callout","dobeforekey","extrareflistcode"]}
-,
-"IEEEtran.cls":{"envs":["IEEEkeywords","IEEEbiography","IEEEbiographynophoto","IEEEproof","IEEEitemize","IEEEdescription","LaTeXenumerate","LaTeXitemize","LaTeXdescription","IEEEeqnarray","IEEEeqnarray*","IEEEeqnarraybox","IEEEeqnarraybox*","IEEEeqnarrayboxm","IEEEeqnarrayboxm*","IEEEeqnarrayboxt","IEEEeqnarrayboxt*"],"deps":["newtxmath.sty"],"cmds":["ifCLASSOPTIONonecolumn","CLASSOPTIONonecolumntrue","CLASSOPTIONonecolumnfalse","ifCLASSOPTIONtwocolumn","CLASSOPTIONtwocolumntrue","CLASSOPTIONtwocolumnfalse","ifCLASSOPTIONoneside","CLASSOPTIONonesidetrue","CLASSOPTIONonesidefalse","ifCLASSOPTIONtwoside","CLASSOPTIONtwosidetrue","CLASSOPTIONtwosidefalse","ifCLASSOPTIONfinal","CLASSOPTIONfinaltrue","CLASSOPTIONfinalfalse","ifCLASSOPTIONdraft","CLASSOPTIONdrafttrue","CLASSOPTIONdraftfalse","ifCLASSOPTIONdraftcls","CLASSOPTIONdraftclstrue","CLASSOPTIONdraftclsfalse","ifCLASSOPTIONdraftclsnofoot","CLASSOPTIONdraftclsnofoottrue","CLASSOPTIONdraftclsnofootfalse","ifCLASSOPTIONpeerreview","CLASSOPTIONpeerreviewtrue","CLASSOPTIONpeerreviewfalse","ifCLASSOPTIONpeerreviewca","CLASSOPTIONpeerreviewcatrue","CLASSOPTIONpeerreviewcafalse","ifCLASSOPTIONjournal","CLASSOPTIONjournaltrue","CLASSOPTIONjournalfalse","ifCLASSOPTIONconference","CLASSOPTIONconferencetrue","CLASSOPTIONconferencefalse","ifCLASSOPTIONtechnote","CLASSOPTIONtechnotetrue","CLASSOPTIONtechnotefalse","ifCLASSOPTIONnofonttune","CLASSOPTIONnofonttunetrue","CLASSOPTIONnofonttunefalse","ifCLASSOPTIONcaptionsoff","CLASSOPTIONcaptionsofftrue","CLASSOPTIONcaptionsofffalse","ifCLASSOPTIONcomsoc","CLASSOPTIONcomsoctrue","CLASSOPTIONcomsocfalse","ifCLASSOPTIONcompsoc","CLASSOPTIONcompsoctrue","CLASSOPTIONcompsocfalse","ifCLASSOPTIONtransmag","CLASSOPTIONtransmagtrue","CLASSOPTIONtransmagfalse","ifCLASSOPTIONromanappendices","CLASSOPTIONromanappendicestrue","CLASSOPTIONromanappendicesfalse","ifCLASSINFOpdf","CLASSINFOpdftrue","CLASSINFOpdffalse","CLASSINPUTbaselinestretch","CLASSINPUTinnersidemargin","CLASSINPUToutersidemargin","CLASSINPUTtoptextmargin","CLASSINPUTbottomtextmargin","CLASSINFOnormalsizebaselineskip","CLASSINFOnormalsizeunitybaselineskip","CLASSINFOpaperwidth","CLASSINFOpaperheight","CLASSOPTIONpaper","CLASSOPTIONpt","IEEEoverridecommandlockouts","IEEEmembership","IEEEauthorblockN","IEEEauthorblockA","IEEEcompsocitemizethanks","IEEEcompsocthanksitem","IEEEpubid","IEEEpubidadjcol","IEEEspecialpapernotice","IEEEaftertitletext","IEEEkeywordsname","IEEEtitleabstractindextext","IEEEdisplaynontitleabstractindextext","IEEEpeerreviewmaketitle","IEEEraisesectionheading","appendix","appendices","IEEEtriggeratref","IEEEtriggercmd","citedash","citepunct","IEEEbibitemsep","IEEEcompsocdiamondline","IEEEdisplayinfolinespercolumn","IEEEquantizedisableglobal","IEEEquantizedisabletitlecmds","IEEEquantizevspace","IEEEtitletopspace","IEEEtitletopspaceextra","IEEEtransversionmajor","IEEEtransversionminor","ivIEEEquantizevspace","pdfstringdefPreHook","sublargesize","theHsection","theIEEEbiography","theparagraphdis","thesectiondis","thesubsectiondis","thesubsubsectiondis","IEEEauthorrefmark","IEEEPARstart","IEEEPARstartCAPSTYLE","IEEEPARstartDROPDEPTH","IEEEPARstartDROPLINES","IEEEPARstartFONTSTYLE","IEEEPARstartHEIGHTTEXT","IEEEPARstartHOFFSET","IEEEPARstartITLCORRECT","IEEEPARstartMINPAGELINES","IEEEPARstartSEP","IEEEPARstartWORDCAPSTYLE","IEEEPARstartWORDFONTSTYLE","IEEEproofindentspace","IEEEproofname","IEEEQED","IEEEQEDhere","IEEEQEDhereeqn","IEEEQEDclosed","IEEEQEDopen","IEEEQEDoff","IEEEsetlabelwidth","IEEEilabelindentA","IEEEilabelindentB","IEEEilabelindent","IEEEelabelindent","IEEEdlabelindent","IEEElabelindent","IEEElabelindentfactori","IEEElabelindentfactorii","IEEElabelindentfactoriii","IEEElabelindentfactoriv","IEEElabelindentfactorv","IEEElabelindentfactorvi","IEEElabelindentfactor","IEEEiednormlabelsep","IEEEiedmathlabelsep","IEEEiedtopsep","IEEEiedlistdecl","ifIEEEnolabelindentfactor","IEEEnolabelindentfactortrue","IEEEnolabelindentfactorfalse","ifIEEEnocalcleftmargin","IEEEnocalcleftmargintrue","IEEEnocalcleftmarginfalse","IEEEusemathlabelsep","IEEEiedlabeljustifyl","IEEEiedlabeljustifyc","IEEEiedlabeljustifyr","IEEEeqnarraynumspace","IEEEeqnarraydefcol","IEEEeqnarraydefcolsep","yesnumber","IEEEyesnumber","IEEEyessubnumber","IEEEnonumber","IEEEnosubnumber","theIEEEsubequation","theIEEEsubequationdis","theequationdis","theHequation","IEEEeqnarraymathstyle","IEEEeqnarraytextstyle","IEEEeqnarraydecl","IEEEeqnarrayboxdecl","IEEEnormaljot","IEEEeqnarraystrutsize","IEEEeqnarraystrutsizeadd","IEEEstrut","ifIEEEvisiblestruts","IEEEvisiblestrutstrue","IEEEvisiblestrutsfalse","IEEEeqnarraystrutmode","IEEEeqnarraymulticol","IEEEeqnarrayomit","IEEEeqnarrayvrule","IEEEeqnarrayseprow","IEEEeqnarrayseprowcut","IEEEeqnarrayrulerow","IEEEeqnarraydblrulerow","IEEEeqnarraydblrulerowcut","bstctlcite","IEEEnoauxwrite","IEEEcalcleftmargin","IEEEdefaultfootersampletext","IEEEdefaultheadersampletext","IEEEdefaultsampletext","IEEEnormalcatcodes","IEEEnormalcatcodesnum","IEEEnormalcatcodespunct","IEEEPARstartletwidth","IEEEquantizedlength","IEEEquantizedlengthdiff","IEEEquantizedlengthint","IEEEquantizedtextheightdiff","IEEEquantizedtextheightlpc","IEEEquantizelength","IEEEquantizetextheight","IEEEsetfootermargin","IEEEsetheadermargin","IEEEsetsidemargin","IEEEsettextheight","IEEEsettextwidth","IEEEsettopmargin"]}
-,
-"IEEEtrantools.sty":{"envs":["IEEEproof","IEEEitemize","IEEEdescription","LaTeXenumerate","LaTeXitemize","LaTeXdescription","IEEEeqnarray","IEEEeqnarray*","IEEEeqnarraybox","IEEEeqnarraybox*","IEEEeqnarrayboxm","IEEEeqnarrayboxm*","IEEEeqnarrayboxt","IEEEeqnarrayboxt*"],"deps":{},"cmds":["IEEEauthorrefmark","IEEEPARstart","IEEEPARstartCAPSTYLE","IEEEPARstartDROPDEPTH","IEEEPARstartDROPLINES","IEEEPARstartFONTSTYLE","IEEEPARstartHEIGHTTEXT","IEEEPARstartHOFFSET","IEEEPARstartITLCORRECT","IEEEPARstartMINPAGELINES","IEEEPARstartSEP","IEEEPARstartWORDCAPSTYLE","IEEEPARstartWORDFONTSTYLE","IEEEproofindentspace","IEEEproofname","IEEEQED","IEEEQEDhere","IEEEQEDhereeqn","IEEEQEDclosed","IEEEQEDopen","IEEEQEDoff","IEEEsetlabelwidth","IEEEilabelindentA","IEEEilabelindentB","IEEEilabelindent","IEEEelabelindent","IEEEdlabelindent","IEEElabelindent","IEEElabelindentfactori","IEEElabelindentfactorii","IEEElabelindentfactoriii","IEEElabelindentfactoriv","IEEElabelindentfactorv","IEEElabelindentfactorvi","IEEElabelindentfactor","IEEEiednormlabelsep","IEEEiedmathlabelsep","IEEEiedtopsep","IEEEiedlistdecl","ifIEEEnolabelindentfactor","IEEEnolabelindentfactortrue","IEEEnolabelindentfactorfalse","ifIEEEnocalcleftmargin","IEEEnocalcleftmargintrue","IEEEnocalcleftmarginfalse","IEEEusemathlabelsep","IEEEiedlabeljustifyl","IEEEiedlabeljustifyc","IEEEiedlabeljustifyr","IEEEeqnarraynumspace","IEEEeqnarraydefcol","IEEEeqnarraydefcolsep","yesnumber","IEEEyesnumber","IEEEyessubnumber","IEEEnonumber","IEEEnosubnumber","theIEEEsubequation","theIEEEsubequationdis","theequationdis","theHequation","IEEEeqnarraymathstyle","IEEEeqnarraytextstyle","IEEEeqnarraydecl","IEEEeqnarrayboxdecl","IEEEnormaljot","IEEEeqnarraystrutsize","IEEEeqnarraystrutsizeadd","IEEEstrut","ifIEEEvisiblestruts","IEEEvisiblestrutstrue","IEEEvisiblestrutsfalse","IEEEeqnarraystrutmode","IEEEeqnarraymulticol","IEEEeqnarrayomit","IEEEeqnarrayvrule","IEEEeqnarrayseprow","IEEEeqnarrayseprowcut","IEEEeqnarrayrulerow","IEEEeqnarraydblrulerow","IEEEeqnarraydblrulerowcut","bstctlcite","IEEEnoauxwrite","IEEEcalcleftmargin","IEEEdefaultfootersampletext","IEEEdefaultheadersampletext","IEEEdefaultsampletext","IEEEnormalcatcodes","IEEEnormalcatcodesnum","IEEEnormalcatcodespunct","IEEEPARstartletwidth","IEEEquantizedlength","IEEEquantizedlengthdiff","IEEEquantizedlengthint","IEEEquantizedtextheightdiff","IEEEquantizedtextheightlpc","IEEEquantizelength","IEEEquantizetextheight","IEEEsetfootermargin","IEEEsetheadermargin","IEEEsetsidemargin","IEEEsettextheight","IEEEsettextwidth","IEEEsettopmargin"]}
-,
-"InriaSans.sty":{"envs":{},"deps":["fontaxes.sty","fontenc.sty","mweights.sty","textcomp.sty","xkeyval.sty"],"cmds":["tlshape","texttl","sufigures","textsu","textsuperior","DH","NG","dj","ng","k","guillemotleft","guillemotright","guilsinglleft","guilsinglright","quotedblbase","quotesinglbase","textquotedbl","DJ","th","TH","dh","Hwithstroke","hwithstroke","textogonekcentered","guillemetleft","guillemetright"]}
-,
-"InriaSerif.sty":{"envs":{},"deps":["fontaxes.sty","fontenc.sty","mweights.sty","textcomp.sty","xkeyval.sty"],"cmds":["tlshape","texttl","texttitling","sufigures","textsu","textsuperior","tldefault","DH","NG","dj","ng","k","guillemotleft","guillemotright","guilsinglleft","guilsinglright","quotedblbase","quotesinglbase","textquotedbl","DJ","th","TH","dh","Hwithstroke","hwithstroke","textogonekcentered","guillemetleft","guillemetright"]}
-,
-"JeuxCartes.sty":{"envs":{},"deps":["graphicx.sty","xcolor.sty","tikz.sty","tikzlibrarycalc.sty","pgffor.sty","xfp.sty","listofitems.sty","xstring.sty","xparse.sty","simplekv.sty","xinttools.sty","randomlist.sty","pifont.sty","colortbl.sty"],"cmds":["AffCarteJeu","AffCartesJeu","MainCartesJeu","MainCartesJeuAleatoire","AffMiniCarteJeu","MainMiniCartesJeu","MainMiniCartesJeuAleatoire","AffCarteJeuAlignementV","AffCarteJeuDecalageX","AffCarteJeuDecalageY","AffCarteJeuHauteur","AffCarteJeuRotation","AffCarteJeuType","CarteDebutRand","CarteMain","CarteMainChoisie","CarteMainPrefixe","CarteMainType","CartePrefixe","CartesJeuBataille","CartesJeuBelote","CartesJeuPoker","CartesJeuRami","CartesJeuTarot","CartesJeuUno","csCoul","csCplt","csFond","csSymb","csVal","DecAngleMain","EchelleCarteDecalage","HauteurGenerique","ListeCartesMain","ListeCartesMainlen","MainAlignementV","MainDecalH","MainDecalV","MainHauteur","MainJeuType","MainOffset","MainRotation","MainSimpleHauteur","MainSimpleJeuType","MiniCarteFondAtout","MiniCarteLargeur","MiniCarteMainChoisie","MiniCartesJeuBataille","MiniCartesJeuBelote","MiniCartesJeuPoker","MiniCartesJeuRami","MiniCartesJeuTarot","MiniCartesMain","MiniMainAleaFondAtout","MiniMainAleaLargeur","MiniMainAleaType","MiniMainFondAtout","MiniMainLargeur","NbCartesMain","OptionTikzCBB","SecondOffset"]}
-,
-"Kinigcap.sty":{"envs":{},"deps":{},"cmds":["Kinigcapfamily","kinig"]}
-,
-"Konanur.sty":{"envs":{},"deps":{},"cmds":["Konanurfamily","konanur"]}
-,
-"Kramer.sty":{"envs":{},"deps":{},"cmds":["Kramerfamily","kramer"]}
-,
-"LibreBodoni.sty":{"envs":{},"deps":["ifxetex.sty","ifluatex.sty","xkeyval.sty","textcomp.sty","fontenc.sty","fontaxes.sty"],"cmds":["librebodoni","textsu","sufigures","textin","infigures","librebodonifamily"]}
-,
-"LibreBskvl.sty":{"envs":{},"deps":["xkeyval.sty","fontenc.sty","textcomp.sty","ifthen.sty","mweights.sty","fontaxes.sty"],"cmds":["supfigures","sufigures","textsup","textsu","textsuperior"]}
-,
-"LobsterTwo.sty":{"envs":{},"deps":["ifxetex.sty","ifluatex.sty","xkeyval.sty","textcomp.sty","fontenc.sty","fontaxes.sty"],"cmds":["LobsterTwo","LobsterTwofamily"]}
-,
-"MULEenc.sty":{"envs":{},"deps":{},"cmds":["CJKbibliography","CJKinclude","CJKinput","CJKverbatim","I","textcommercialat","Thaibreak","Thaiglue","Thainospace","Thaispace","filedate","fileversion"]}
-,
-"Magra.sty":{"envs":{},"deps":["xkeyval.sty","fontenc.sty","textcomp.sty","ifthen.sty","mweights.sty","fontaxes.sty"],"cmds":{}}
-,
-"MinionPro.sty":{"envs":{},"deps":["textcomp.sty","MnSymbol.sty","fontaxes.sty"],"cmds":["figureversion","digamma","varkappa","varbeta","backepsilon","varbackepsilon","lambdabar","lambdaslash","slashedzero","openg","eth","Bbbk","mathbb","uphbar","uppartial","upell","upimath","upjmath","varsmallint","varint","variint","variiint","variiiint","varidotsint","varlandupint","varlanddownint","varstrokedint","varoint","varoiint","varrcirclerightint","varlcirclerightint","varrcircleleftint","varlcircleleftint","varsumint","smallfrac","slantfrac","ibycusdefault"]}
-,
-"MnSymbol.sty":{"envs":{},"deps":["amsmath.sty","eufrak.sty"],"cmds":["circledR","circledS","yen","dagger","ddagger","mathparagraph","mathsection","mathdollar","mathsterling","approxeq","backapprox","backapproxeq","backcong","backeqsim","backneg","backprime","backsim","backsimeq","backslashdiv","backtriplesim","barwedge","because","beth","between","bigcapdot","bigcapplus","bigcircle","bigcupdot","bigcupplus","bigcurlyvee","bigcurlyveedot","bigcurlywedge","bigcurlywedgedot","bigdoublecurlyvee","bigdoublecurlywedge","bigdoublevee","bigdoublewedge","bigoast","bigobackslash","bigocirc","bigominus","bigoslash","bigostar","bigotriangle","bigovert","bigplus","bigsqcap","bigsqcapdot","bigsqcapplus","bigsqcupdot","bigsqcupplus","bigstar","bigtimes","bigveedot","bigwedgedot","blacklozenge","blacksquare","blacktriangle","blacktriangledown","blacktriangleleft","blacktriangleright","Box","boxbackslash","boxbox","boxdot","boxminus","boxplus","boxslash","boxtimes","boxvert","bracemd","bracemid","bracemu","Bumpeq","bumpeq","Cap","capdot","capplus","centerdot","checkmark","circeq","circlearrowleft","circlearrowright","circledast","circledcirc","circleddash","closedcurlyvee","closedcurlywedge","closedequal","closedprec","closedsucc","coloneq","complement","Cup","cupdot","cupplus","curlyeqprec","curlyeqsucc","curlyvee","curlyveedot","curlywedge","curlywedgedot","curvearrowdownup","curvearrowleft","curvearrowleftright","curvearrownesw","curvearrownwse","curvearrowright","curvearrowrightleft","curvearrowsenw","curvearrowswne","curvearrowupdown","daleth","dasharrow","dasheddownarrow","dashedleftarrow","dashednearrow","dashednwarrow","dashedrightarrow","dashedsearrow","dashedswarrow","dasheduparrow","dashleftarrow","dashrightarrow","dbigcap","dbigcapdot","dbigcapplus","dbigcircle","dbigcup","dbigcupdot","dbigcupplus","dbigcurlyvee","dbigcurlyveedot","dbigcurlywedge","dbigcurlywedgedot","dbigdoublecurlyvee","dbigdoublecurlywedge","dbigdoublevee","dbigdoublewedge","dbigoast","dbigobackslash","dbigocirc","dbigodot","dbigominus","dbigoplus","dbigoslash","dbigostar","dbigotimes","dbigotriangle","dbigovert","dbigplus","dbigsqcap","dbigsqcapdot","dbigsqcapplus","dbigsqcup","dbigsqcupdot","dbigsqcupplus","dbigtimes","dbigvee","dbigveedot","dbigwedge","dbigwedgedot","dcomplement","dcoprod","ddotdot","diagdown","diagup","diameter","Diamond","diamondbackslash","diamonddiamond","diamonddot","diamonddots","diamondminus","diamondplus","diamondslash","diamondtimes","diamondvert","didotsint","diiiint","diiint","diint","dint","divideontimes","divides","dlanddownint","dlandupint","dlcircleleftint","dlcirclerightint","doiint","doint","Doteq","doteqdot","dotmedvert","dotminus","dotplus","doublebarwedge","doublecap","doublecup","doublecurlyvee","doublecurlywedge","doublefrown","doublefrowneq","doublesmile","doublesmileeq","doublesqcap","doublesqcup","doublevee","doublewedge","downarrowtail","downbrace","downbraceg","downbracegg","downbraceggg","downbracegggg","downdownarrows","downfilledspoon","downfootline","downfree","downharpoonccw","downharpooncw","downharpoonleft","downharpoonright","downlsquigarrow","downmapsto","downModels","downmodels","downpitchfork","downpropto","downrsquigarrow","downslice","downspoon","downtherefore","downuparrows","downupharpoons","downVdash","downvdash","downY","dprod","drcircleleftint","drcirclerightint","dstrokedint","dsum","dsumint","dtimes","emptyfilledspoon","eqbump","eqcirc","eqdot","eqfrown","eqsim","eqslantgtr","eqslantless","eqsmile","equal","equalclosed","equivclosed","fallingdotseq","filleddiamond","filledemptyspoon","filledlargestar","filledlozenge","filledmedlozenge","filledmedsquare","filledmedtriangledown","filledmedtriangleleft","filledmedtriangleright","filledmedtriangleup","filledsquare","filledstar","filledtriangledown","filledtriangleleft","filledtriangleright","filledtriangleup","fivedots","frowneq","frowneqsmile","frownsmile","frownsmileeq","geqclosed","geqdot","geqq","geqslant","geqslantdot","ggg","gggtr","gimel","gnapprox","gneqq","gnsim","gtr","gtrapprox","gtrclosed","gtrdot","gtreqless","gtreqlessslant","gtreqqless","gtrless","gtrneqqless","gtrsim","gvertneqq","hateq","hbipropto","hcrossing","hdotdot","hdots","hookdownminus","hookupminus","hslash","intercal","invbackneg","invneg","Join","landdownint","landupint","langlebar","largecircle","largediamond","largeemptyfilledspoon","largefilledemptyspoon","largelozenge","largepentagram","largesquare","largestar","largestarofdavid","largetriangledown","largetriangleleft","largetriangleright","largetriangleup","lcirclearrowdown","lcirclearrowleft","lcirclearrowright","lcirclearrowup","lcircleleftint","lcirclerightint","lcurvearrowdown","lcurvearrowleft","lcurvearrowne","lcurvearrownw","lcurvearrowright","lcurvearrowse","lcurvearrowsw","lcurvearrowup","leadsto","leftarrowtail","leftfilledspoon","leftfootline","leftfree","lefthalfcap","lefthalfcup","leftharpoonccw","leftharpooncw","leftleftarrows","leftlsquigarrow","leftmapsto","leftModels","leftmodels","leftpitchfork","leftpropto","leftrightarrows","leftrightharpoondownup","leftrightharpoons","leftrightharpoonupdown","Leftrightline","leftrightline","leftrightsquigarrow","leftrsquigarrow","leftslice","leftspoon","lefttherefore","leftthreetimes","leftVdash","leftvdash","leftY","leqclosed","leqdot","leqq","leqslant","leqslantdot","less","lessapprox","lessclosed","lessdot","lesseqgtr","lesseqgtrslant","lesseqqgtr","lessgtr","lessneqqgtr","lesssim","lhd","lhookdownarrow","lhookleftarrow","lhooknearrow","lhooknwarrow","lhookrightarrow","lhooksearrow","lhookswarrow","lhookuparrow","lightning","llangle","llcorner","Lleftarrow","lll","llless","lnapprox","lneqq","lnsim","looparrowleft","looparrowright","lozenge","lrcorner","lsem","Lsh","ltimes","lvertneqq","lWavy","lwavy","maltese","measuredangle","medbackslash","medcircle","meddiamond","medlozenge","medslash","medsquare","medstar","medstarofdavid","medtriangledown","medtriangleleft","medtriangleright","medtriangleup","medvert","medvertdot","middlebar","middleslash","minus","minusdot","minushookdown","minushookup","multimap","mVert","mvert","napprox","napproxeq","nasymp","nbackapprox","nbackapproxeq","nbackcong","nbackeqsim","nbacksim","nbacksimeq","nbacktriplesim","nBumpeq","nbumpeq","ncirceq","ncirclearrowleft","ncirclearrowright","nclosedequal","ncong","ncurlyeqprec","ncurlyeqsucc","ncurvearrowdownup","ncurvearrowleft","ncurvearrowleftright","ncurvearrownesw","ncurvearrownwse","ncurvearrowright","ncurvearrowrightleft","ncurvearrowsenw","ncurvearrowswne","ncurvearrowupdown","ndasharrow","ndasheddownarrow","ndashedleftarrow","ndashednearrow","ndashednwarrow","ndashedrightarrow","ndashedsearrow","ndashedswarrow","ndasheduparrow","ndashleftarrow","ndashrightarrow","ndashv","ndiagdown","ndiagup","ndivides","nDoteq","ndoteq","ndoublefrown","ndoublefrowneq","ndoublesmile","ndoublesmileeq","nDownarrow","ndownarrow","ndownarrowtail","ndowndownarrows","ndownfilledspoon","ndownfootline","ndownfree","ndownharpoonccw","ndownharpooncw","ndownharpoonleft","ndownharpoonright","ndownlsquigarrow","ndownmapsto","ndownModels","ndownmodels","ndownpitchfork","ndownrsquigarrow","ndownspoon","ndownuparrows","ndownupharpoons","ndownVdash","ndownvdash","Nearrow","nearrowtail","nefilledspoon","nefootline","nefree","neharpoonccw","neharpooncw","nelsquigarrow","nemapsto","neModels","nemodels","nenearrows","nepitchfork","neqbump","neqcirc","neqdot","neqfrown","neqsim","neqslantgtr","neqslantless","neqsmile","nequal","nequalclosed","nequiv","nequivclosed","nersquigarrow","nespoon","Neswarrow","neswarrow","neswarrows","neswbipropto","neswcrossing","neswharpoonnwse","neswharpoons","neswharpoonsenw","Neswline","neswline","neVdash","nevdash","nexists","nfallingdotseq","nfrown","nfrowneq","nfrowneqsmile","nfrownsmile","nfrownsmileeq","ngeq","ngeqclosed","ngeqdot","ngeqq","ngeqslant","ngeqslantdot","ngets","ngg","nggg","ngtr","ngtrclosed","ngtrdot","ngtreqless","ngtreqlessslant","ngtreqqless","ngtrless","nhateq","nhookleftarrow","nhookrightarrow","nin","nlcirclearrowdown","nlcirclearrowleft","nlcirclearrowright","nlcirclearrowup","nlcurvearrowdown","nlcurvearrowleft","nlcurvearrowne","nlcurvearrownw","nlcurvearrowright","nlcurvearrowse","nlcurvearrowsw","nlcurvearrowup","nleadsto","nLeftarrow","nleftarrow","nleftarrowtail","nleftfilledspoon","nleftfootline","nleftfree","nleftharpoonccw","nleftharpooncw","nleftharpoondown","nleftharpoonup","nleftleftarrows","nleftlsquigarrow","nleftmapsto","nleftModels","nleftmodels","nleftpitchfork","nLeftrightarrow","nleftrightarrow","nleftrightarrows","nleftrightharpoondownup","nleftrightharpoons","nleftrightharpoonupdown","nLeftrightline","nleftrightline","nleftrightsquigarrow","nleftrsquigarrow","nleftspoon","nleftVdash","nleftvdash","nleq","nleqclosed","nleqdot","nleqq","nleqslant","nleqslantdot","nless","nlessclosed","nlessdot","nlesseqgtr","nlesseqgtrslant","nlesseqqgtr","nlessgtr","nlhookdownarrow","nlhookleftarrow","nlhooknearrow","nlhooknwarrow","nlhookrightarrow","nlhooksearrow","nlhookswarrow","nlhookuparrow","nll","nLleftarrow","nlll","nmapsto","nmid","nmodels","nmultimap","nNearrow","nnearrow","nnearrowtail","nnefilledspoon","nnefootline","nnefree","nneharpoonccw","nneharpooncw","nnelsquigarrow","nnemapsto","nneModels","nnemodels","nnenearrows","nnepitchfork","nnersquigarrow","nnespoon","nNeswarrow","nneswarrow","nneswarrows","nneswharpoonnwse","nneswharpoons","nneswharpoonsenw","nNeswline","nneswline","nneVdash","nnevdash","nNwarrow","nnwarrow","nnwarrowtail","nnwfilledspoon","nnwfootline","nnwfree","nnwharpoonccw","nnwharpooncw","nnwlsquigarrow","nnwmapsto","nnwModels","nnwmodels","nnwnwarrows","nnwpitchfork","nnwrsquigarrow","nNwsearrow","nnwsearrow","nnwsearrows","nnwseharpoonnesw","nnwseharpoons","nnwseharpoonswne","nNwseline","nnwseline","nnwspoon","nnwVdash","nnwvdash","nowns","nparallel","nperp","npitchfork","nprec","nprecapprox","npreccurlyeq","npreceq","nprecsim","nrcirclearrowdown","nrcirclearrowleft","nrcirclearrowright","nrcirclearrowup","nrcurvearrowdown","nrcurvearrowleft","nrcurvearrowne","nrcurvearrownw","nrcurvearrowright","nrcurvearrowse","nrcurvearrowsw","nrcurvearrowup","nRelbar","nrelbar","nrestriction","nrhookdownarrow","nrhookleftarrow","nrhooknearrow","nrhooknwarrow","nrhookrightarrow","nrhooksearrow","nrhookswarrow","nrhookuparrow","nRightarrow","nrightarrow","nrightarrowtail","nrightfilledspoon","nrightfootline","nrightfree","nrightharpoonccw","nrightharpooncw","nrightharpoondown","nrightharpoonup","nrightleftarrows","nrightleftharpoons","nrightlsquigarrow","nrightmapsto","nrightModels","nrightmodels","nrightpitchfork","nrightrightarrows","nrightrsquigarrow","nrightspoon","nrightsquigarrow","nrightVdash","nrightvdash","nrisingdotseq","nRrightarrow","nSearrow","nsearrow","nsearrowtail","nsefilledspoon","nsefootline","nsefree","nseharpoonccw","nseharpooncw","nselsquigarrow","nsemapsto","nseModels","nsemodels","nsenwarrows","nsenwharpoons","nsepitchfork","nsersquigarrow","nsesearrows","nsespoon","nseVdash","nsevdash","nshortmid","nshortparallel","nsim","nsimeq","nsmile","nsmileeq","nsmileeqfrown","nsmilefrown","nsmilefrowneq","nsqdoublefrown","nsqdoublefrowneq","nsqdoublesmile","nsqdoublesmileeq","nsqeqfrown","nsqeqsmile","nsqfrown","nsqfrowneq","nsqfrowneqsmile","nsqfrownsmile","nsqsmile","nsqsmileeq","nsqsmileeqfrown","nsqsmilefrown","nSqsubset","nsqsubset","nsqsubseteq","nsqsubseteqq","nSqsupset","nsqsupset","nsqsupseteq","nsqsupseteqq","nsqtriplefrown","nsqtriplesmile","nsquigarrowdownup","nsquigarrowleftright","nsquigarrownesw","nsquigarrownwse","nsquigarrowrightleft","nsquigarrowsenw","nsquigarrowswne","nsquigarrowupdown","nSubset","nsubset","nsubseteq","nsubseteqq","nsucc","nsuccapprox","nsucccurlyeq","nsucceq","nsuccsim","nSupset","nsupset","nsupseteq","nsupseteqq","nSwarrow","nswarrow","nswarrowtail","nswfilledspoon","nswfootline","nswfree","nswharpoonccw","nswharpooncw","nswlsquigarrow","nswmapsto","nswModels","nswmodels","nswnearrows","nswneharpoons","nswpitchfork","nswrsquigarrow","nswspoon","nswswarrows","nswVdash","nswvdash","nto","ntriangleeq","ntriangleleft","ntrianglelefteq","ntriangleright","ntrianglerighteq","ntriplefrown","ntriplesim","ntriplesmile","ntwoheaddownarrow","ntwoheadleftarrow","ntwoheadnearrow","ntwoheadnwarrow","ntwoheadrightarrow","ntwoheadsearrow","ntwoheadswarrow","ntwoheaduparrow","nUparrow","nuparrow","nuparrowtail","nUpdownarrow","nupdownarrow","nupdownarrows","nupdownharpoonleftright","nupdownharpoonrightleft","nupdownharpoons","nUpdownline","nupdownline","nupfilledspoon","nupfootline","nupfree","nupharpoonccw","nupharpooncw","nupharpoonleft","nupharpoonright","nuplsquigarrow","nupmapsto","nupModels","nupmodels","nuppitchfork","nuprsquigarrow","nupspoon","nupuparrows","nupVdash","nupvdash","nVDash","nVdash","nvDash","nvdash","Nwarrow","nwarrowtail","nwfilledspoon","nwfootline","nwfree","nwharpoonccw","nwharpooncw","nwlsquigarrow","nwmapsto","nwModels","nwmodels","nwnwarrows","nwpitchfork","nwrsquigarrow","Nwsearrow","nwsearrow","nwsearrows","nwsebipropto","nwsecrossing","nwseharpoonnesw","nwseharpoons","nwseharpoonswne","Nwseline","nwseline","nwspoon","nwVdash","nwvdash","oast","obackslash","ocirc","oiint","ostar","otriangle","overgroup","overleftharpoon","overlinesegment","overrightharpoon","overt","partialvardint","partialvardlanddownint","partialvardlandupint","partialvardlcircleleftint","partialvardlcirclerightint","partialvardoiint","partialvardoint","partialvardrcircleleftint","partialvardrcirclerightint","partialvardstrokedint","partialvardsumint","partialvartint","partialvartlanddownint","partialvartlandupint","partialvartlcircleleftint","partialvartlcirclerightint","partialvartoiint","partialvartoint","partialvartrcircleleftint","partialvartrcirclerightint","partialvartstrokedint","partialvartsumint","pentagram","pitchfork","powerset","precapprox","preccurlyeq","precnapprox","precnsim","precsim","ranglebar","rcirclearrowdown","rcirclearrowleft","rcirclearrowright","rcirclearrowup","rcircleleftint","rcirclerightint","rcurvearrowdown","rcurvearrowleft","rcurvearrowne","rcurvearrownw","rcurvearrowright","rcurvearrowse","rcurvearrowsw","rcurvearrowup","restriction","rhd","rhookdownarrow","rhookleftarrow","rhooknearrow","rhooknwarrow","rhookrightarrow","rhooksearrow","rhookswarrow","rhookuparrow","rightarrowtail","rightfilledspoon","rightfootline","rightfree","righthalfcap","righthalfcup","rightharpoonccw","rightharpooncw","rightleftarrows","rightlsquigarrow","rightmapsto","rightModels","rightmodels","rightpitchfork","rightpropto","rightrightarrows","rightrsquigarrow","rightslice","rightspoon","rightsquigarrow","righttherefore","rightthreetimes","rightVdash","rightvdash","rightY","risingdotseq","rrangle","Rrightarrow","rsem","Rsh","rtimes","rWavy","rwavy","Searrow","searrowtail","sefilledspoon","sefootline","sefree","seharpoonccw","seharpooncw","selsquigarrow","semapsto","seModels","semodels","senwarrows","senwharpoons","separated","sepitchfork","sersquigarrow","sesearrows","sespoon","seVdash","sevdash","shortmid","shortparallel","slashdiv","smalldiamond","smallfrown","smalllozenge","smallprod","smallsetminus","smallsmile","smallsquare","smallstar","smalltriangledown","smalltriangleleft","smalltriangleright","smalltriangleup","smileeq","smileeqfrown","smilefrown","smilefrowneq","sphericalangle","sqcapdot","sqcapplus","sqcupdot","sqcupplus","sqdoublefrown","sqdoublefrowneq","sqdoublesmile","sqdoublesmileeq","sqeqfrown","sqeqsmile","sqfrown","sqfrowneq","sqfrowneqsmile","sqfrownsmile","sqsmile","sqsmileeq","sqsmileeqfrown","sqsmilefrown","Sqsubset","sqsubset","sqsubseteqq","sqsubsetneq","sqsubsetneqq","Sqsupset","sqsupset","sqsupseteqq","sqsupsetneq","sqsupsetneqq","sqtriplefrown","sqtriplesmile","square","squaredots","squigarrowdownup","squigarrowleftright","squigarrownesw","squigarrownwse","squigarrowrightleft","squigarrowsenw","squigarrowswne","squigarrowupdown","strokedint","strokethrough","Subset","subseteqq","subsetneq","subsetneqq","succapprox","succcurlyeq","succnapprox","succnsim","succsim","sumint","Supset","supseteqq","supsetneq","supsetneqq","Swarrow","swarrowtail","swfilledspoon","swfootline","swfree","swharpoonccw","swharpooncw","swlsquigarrow","swmapsto","swModels","swmodels","swnearrows","swneharpoons","swpitchfork","swrsquigarrow","swspoon","swswarrows","swVdash","swvdash","tbigcap","tbigcapdot","tbigcapplus","tbigcircle","tbigcup","tbigcupdot","tbigcupplus","tbigcurlyvee","tbigcurlyveedot","tbigcurlywedge","tbigcurlywedgedot","tbigdoublecurlyvee","tbigdoublecurlywedge","tbigdoublevee","tbigdoublewedge","tbigoast","tbigobackslash","tbigocirc","tbigodot","tbigominus","tbigoplus","tbigoslash","tbigostar","tbigotimes","tbigotriangle","tbigovert","tbigplus","tbigsqcap","tbigsqcapdot","tbigsqcapplus","tbigsqcup","tbigsqcupdot","tbigsqcupplus","tbigtimes","tbigvee","tbigveedot","tbigwedge","tbigwedgedot","tcomplement","tcoprod","therefore","thickapprox","thicksim","thinstar","tidotsint","tiiiint","tiiint","tiint","tint","tlanddownint","tlandupint","tlcircleleftint","tlcirclerightint","toiint","toint","tprod","trcircleleftint","trcirclerightint","triangledown","triangleeq","trianglelefteq","triangleq","trianglerighteq","triplefrown","triplesim","triplesmile","tstrokedint","tsum","tsumint","twoheaddownarrow","twoheadleftarrow","twoheadnearrow","twoheadnwarrow","twoheadrightarrow","twoheadsearrow","twoheadswarrow","twoheaduparrow","udotdot","udots","ulcorner","ullcorner","ulrcorner","undergroup","underlinesegment","unlhd","unrhd","uparrowtail","upbrace","upbraceg","upbracegg","upbraceggg","upbracegggg","updownarrows","updownharpoonleftright","updownharpoonrightleft","updownharpoons","Updownline","updownline","upfilledspoon","upfootline","upfree","upharpoonccw","upharpooncw","upharpoonleft","upharpoonright","uplsquigarrow","upmapsto","upModels","upmodels","uppitchfork","uppropto","uprsquigarrow","upslice","upspoon","uptherefore","upuparrows","upVdash","upvdash","upY","urcorner","utimes","varnothing","varpropto","varsubsetneq","varsubsetneqq","varsupsetneq","varsupsetneqq","vartriangle","vartriangleleft","vartriangleright","vbipropto","vcrossing","VDash","vDash","Vdash","vdotdot","veebar","veedot","vertbowtie","vertdiv","Vvdash","wedgedot","wideparen","wreath","filedate","fileversion"]}
-,
-"MorrisIn.sty":{"envs":{},"deps":{},"cmds":["MorrisInfamily","morrisin"]}
-,
-"MyriadPro-FontDef.sty":{"envs":{},"deps":["otfontdef.sty","fltpoint.sty"],"cmds":{}}
-,
-"MyriadPro.sty":{"envs":{},"deps":["kvoptions.sty","fltpoint.sty","ifthen.sty","MyriadPro-FontDef.sty","textcomp.sty","microtype.sty","fontaxes.sty","mdsymbol.sty"],"cmds":["backepsilon","Bbbk","digamma","eth","italpha","itbackepsilon","itbeta","itchi","itDelta","itdelta","itdigamma","itepsilon","iteta","iteth","itGamma","itgamma","itiota","itkappa","itLambda","itlambda","itmu","itnu","itOmega","itomega","itPhi","itphi","itPi","itpi","itPsi","itpsi","itrho","itSigma","itsigma","ittau","itTheta","ittheta","itUpsilon","itupsilon","itvarbackepsilon","itvarbeta","itvarepsilon","itvarkappa","itvarphi","itvarpi","itvarrho","itvarsigma","itvartheta","itXi","itxi","itzeta","mathbb","mathfrak","slashedzero","tstrokedint","upalpha","upbackepsilon","upbeta","upchi","upDelta","updelta","updigamma","upell","upepsilon","upeta","upeth","upGamma","upgamma","uphbar","upimath","upiota","upjmath","upkappa","upLambda","uplambda","upmu","upnu","upOmega","upomega","uppartial","upPhi","upphi","upPi","uppi","upPsi","uppsi","uprho","upSigma","upsigma","uptau","upTheta","uptheta","upUpsilon","upupsilon","upvarbackepsilon","upvarbeta","upvarepsilon","upvarkappa","upvarphi","upvarpi","upvarrho","upvarsigma","upvartheta","upXi","upxi","upzeta","varbackepsilon","varbeta","varidotsint","variiiint","variiint","variint","varint","varkappa","varlanddownint","varlandupint","varlcircleleftint","varlcirclerightint","varoiint","varoint","varrcircleleftint","varrcirclerightint","varsmallint","varstrokedint","varsumint","IfSymbolFont","ibycusdefault","MdSlantfracSpacingAfterSlash","MdSlantfracSpacingBeforeSlash","slantfrac","smallfrac"]}
-,
-"Nouveaud.sty":{"envs":{},"deps":{},"cmds":["Nouveaudfamily","nouvd"]}
-,
-"NumericPlots.sty":{"envs":["NumericDataPlot"],"deps":["calc.sty","fp.sty","ifthen.sty","pstricks.sty","pst-node.sty","pst-plot.sty","pstricks-add.sty","xcolor.sty","xkeyval.sty","xkvview.sty"],"cmds":["setxAxis","setyAxis","plotxAxis","plotyAxis","LegendDefinition","LegLine","LegDot","putN","putS","putW","putE","putNW","putNE","putSW","putSE","NDPput","putExpX","putExpY","NDPhline","NDPvline","NDPline","NDPhbox","NDPvbox","NDPbox","plotxGrid","plotyGrid","multilistplot","PutTickLabelXaxis","PutTickLabelYaxis","CheckIfColumntypeDefined","CPicHeight","CPicWidth","ifLegendOrientationCenter","ifLegendOrientationLeft","ifLegendOrientationRight","iSubb","LegLineOld","LegLineWidth","LogxAxis","LogxAxisLabel","LogyAxis","LogyAxisLabel","makeXLabel","makeXTickLabel","makeYLabel","makeYTickLabel","NDPputRotation","NDPputXcoord","NDPputXcoordOne","NDPputYcoord","NDPRefPoint","nrAxisStyle","nrLegendCols","nrLegOrient","nrPutAxis","NumDataPlotBaseline","NumDataPlotBuffer","NumDataPlotBufferI","NumDataPlotDDx","NumDataPlotDDy","NumDataPlotDistance","NumDataPlotDx","NumDataPlotdx","NumDataPlotdxLabels","NumDataPlotDy","NumDataPlotdy","NumDataPlotdyLabels","NumDataPlotGxPicMax","NumDataPlotGxPicMin","NumDataPlotGyPicMax","NumDataPlotGyPicMin","NumDataPlotLnTen","NumDataPlotTickPos","NumDataPlotxCoordMax","NumDataPlotxCoordMin","NumDataPlotxCoordRange","NumDataPlotxDataCoordRatio","NumDataPlotxLabelOption","NumDataPlotxLabelOrientation","NumDataPlotxLabelPos","NumDataPlotxMax","NumDataPlotxMin","NumDataPlotxO","NumDataPlotxRange","NumDataPlotxTickBaseline","NumDataPlotxTickDistance","NumDataPlotxTickLabelOption","NumDataPlotxTickLabelRot","NumDataPlotyCoordMax","NumDataPlotyCoordMin","NumDataPlotyCoordRange","NumDataPlotyDataCoordRatio","NumDataPlotyLabelOption","NumDataPlotyLabelOrientation","NumDataPlotyLabelPos","NumDataPlotyMax","NumDataPlotyMin","NumDataPlotyO","NumDataPlotyRange","NumDataPlotyTickBaseline","NumDataPlotyTickDistance","NumDataPlotyTickLabelOption","NumDataPlotyTickLabelRot","OffsetHeight","OffsetWidth","origXLabelSep","origXTickLabelSep","origYLabelSep","origYTickLabelSep","plotxGridLine","plotxSubGridLine","plotxTickLabels","plotyGridBoxed","plotyGridLine","plotySubGridLine","plotyTickLabels","PutLabelXaxis","PutLabelYaxis","repeatxAxis","ScaleAxes","StdLabelOption","StdLLX","StdLLY","StdTickLabelOption","StdURX","StdURY","TempLengthA","TempLengthB","testframe","theBufferCounter","TickLabelsXLeft","TickLabelsXRight","TickLabelsYLeft","TickLabelsYRight","TicksXLeft","TicksXRight","TicksYLeft","TicksYRight","val","xCoordOrig","xLabelRefPt","xLabelRot","xLabelSep","xLogSubGrid","xNrTickLabels","xNrTicks","xScaling","xTickLabelRefPt","xTickLabelSep","xTickLength","yCoordOrig","yLabelRefPt","yLabelRot","yLabelSep","yLogSubGrid","yNrTickLabels","yNrTicks","yScaling","yTickLabelRefPt","yTickLabelSep","yTickLength"]}
-,
-"OldStandard.sty":{"envs":{},"deps":["ifxetex.sty","ifluatex.sty","xkeyval.sty","textcomp.sty","fontaxes.sty","fontenc.sty"],"cmds":["textsu","sufigures","oldstandard","oldstandardlgr"]}
-,
-"Oswald.sty":{"envs":{},"deps":["xkeyval.sty","fontenc.sty","textcomp.sty","ifthen.sty","mweights.sty","fontaxes.sty"],"cmds":["sufigures","supfigures","textsu","textsup","textsuperior"]}
-,
-"OutilsGeomTikz.sty":{"envs":{},"deps":["tikz.sty","pgffor.sty","simplekv.sty","xstring.sty","nicefrac.sty","tikzlibrarycalc.sty","tikzlibrarypositioning.sty"],"cmds":["tkzCrayon","tkzRegle","tkzEquerre","tkzRapporteur","tkzRequerre","tkzRappEquerre","tkzCompas","tkzMiniEquerre","tkzMiniRegle","COMPAScouleur","COMPAScouleurcrayon","COMPASechelle","COMPASechellecrayon","COMPASLLB","COMPASLLC","COMPASunittikz","EQangle","EQcouleur","EQcouleurfond","EQechelle","EQlargeur","EQlongueur","EQopac","EQposOrigin","MiniEQangle","MiniEQcouleur","MiniEQechelle","MiniEQposOrigin","MiniREGLangle","MiniREGLcouleur","MiniREGLechelle","MiniREGLposOrigin","NodeTmpAngle","NodeTmpDist","PENangle","PENcouleur","PENechelle","PENlongueur","PENposOrigin","RAPPangle","RAPPcouleur","RAPPcouleurfond","RAPPechangle","RAPPechelle","RAPPEQangle","RAPPEQcouleur","RAPPEQcouleurfond","RAPPEQechangle","RAPPEQechelle","RAPPEQlargeur","RAPPEQopac","RAPPEQposOrigin","RAPPopac","RAPPposOrigin","recupunitexencm","REGLangle","REGLcouleur","REGLcouleurfond","REGLechelle","REGLlargeur","REGLlongueur","REGLopac","REGLposOrigin","REGLposval","REQangle","REQcouleur","REQcouleurfond","REQechelle","REQlargeur","REQlongueur","REQopac","REQposOrigin","TmpUniteX"]}
-,
-"PTMono.sty":{"envs":{},"deps":["keyval.sty"],"cmds":["ProcessOptionsWithKV"]}
-,
-"PTSans.sty":{"envs":{},"deps":["keyval.sty"],"cmds":["ProcessOptionsWithKV"]}
-,
-"PTSansCaption.sty":{"envs":{},"deps":["keyval.sty"],"cmds":["ProcessOptionsWithKV"]}
-,
-"PTSansNarrow.sty":{"envs":{},"deps":["keyval.sty"],"cmds":["ProcessOptionsWithKV"]}
-,
-"PTSerif.sty":{"envs":{},"deps":["keyval.sty"],"cmds":["ProcessOptionsWithKV"]}
-,
-"PTSerifCaption.sty":{"envs":{},"deps":["keyval.sty"],"cmds":["ProcessOptionsWithKV"]}
-,
-"PixelArtTikz.sty":{"envs":["EnvPixelArtTikz","EnvPixlArtTikz"],"deps":["tikz.sty","simplekv.sty","xintexpr.sty","xinttools.sty","xstring.sty","listofitems.sty","csvsimple-l3.sty"],"cmds":["PixelArtTikz","PixlArtTikz","PATchiffres","PATcouleurs","PATlettres","PATtaille","PATunit","pixchf","pixcnt","pixcol","pixpos"]}
-,
-"Play.sty":{"envs":{},"deps":["xkeyval.sty","fontenc.sty","textcomp.sty","ifthen.sty","mweights.sty","fontaxes.sty"],"cmds":["sufigures","supfigures","textsu","textsup","textsuperior"]}
-,
-"PlayfairDisplay.sty":{"envs":{},"deps":["ifxetex.sty","ifluatex.sty","textcomp.sty","xkeyval.sty","fontenc.sty","fontaxes.sty","mweights.sty"],"cmds":["playfair","playfairblack","playfairOsF","playfairLF","sufigures","textsu","textsuperior","playfairfamily"]}
-,
-"PoiretOne.sty":{"envs":{},"deps":["ifxetex.sty","ifluatex.sty","textcomp.sty","xkeyval.sty","fontenc.sty","fontaxes.sty","mweights.sty"],"cmds":["poiretone","poiretonefamily"]}
-,
-"ProfCollege.sty":{"envs":["Geometrie","Tableur","Scratch","Mind","Bulle","Twitter","Facebook","Snapchat","Instagram","CadreNombre","MyboxJQAr"],"deps":["verbatim.sty","mathtools.sty","amssymb.sty","siunitx.sty","xcolor.sty","xstring.sty","simplekv.sty","ifthen.sty","modulus.sty","xinttools.sty","iftex.sty","luamplib.sty","luacas.sty","gmp.sty","xintexpr.sty","listofitems.sty","datatool.sty","multido.sty","xlop.sty","xfp.sty","tcolorbox.sty","tcolorboxlibrarymost.sty","tikz.sty","tikzlibrarycalc.sty","tikzlibraryshapes.sty","tikzlibrarytikzmark.sty","tikzlibrarychains.sty","tikzlibrarypositioning.sty","tikzlibraryshapes.symbols.sty","tikzlibrarybabel.sty","tikzlibraryfit.sty","tikzlibrarybackgrounds.sty","suffix.sty","multicol.sty","hhline.sty","stackengine.sty","cancel.sty","fontawesome5.sty","pifont.sty","nicematrix.sty","fmtcount.sty","environ.sty","longtable.sty","printlen.sty","ifoddpage.sty","colortbl.sty"],"cmds":["Lg","Aire","Vol","Masse","Capa","Temps","MasseVol","Vitesse","Octet","Conso","Prix","Temp","RepresenterEntier","Ecriture","Frise","Tables","Papiers","Tableau","Relie","QCM","QFlash","BoiteFlash","Rapido","BoiteRapido","Mentalo","CourseNombre","ChoixAlea","VariableAlea","MathAlea","CourseNombreTotalQuestions","Autonomie","FicheMemo","BonSortie","Solide","ProprieteDroites","Reperage","ReperageMulti","SommeAngles","ResultatAngle","Pythagore","ResultatPytha","Thales","ResultatThalesx","ResultatThalesy","ResultatThalesz","Trigo","ResultatTrigo","Cartographie","Formule","VueCubes","Addition","Soustraction","Multiplication","Division","DivisionD","PyramideNombre","ProgCalcul","Decomposition","Engrenages","Fraction","FractionDecimale","Simplification","Rangement","Puissances","Propor","FlechesPH","FlechesPB","FlechesPG","FlechesPD","FlecheCoef","FlecheCoefDebut","FlecheLineaireH","FlecheLineaireB","FlecheLineaireG","FlecheLineaireD","FlecheRatio","FlecheInvRatio","Pourcentage","ResultatPourcentage","Ratio","Stat","EffectifTotal","Etendue","Moyenne","Mediane","QuartileUn","QuartileTrois","Proba","FonctionAffine","Fonction","Distri","Resultat","ModeleBarre","ResolEquation","leftcomment","rightcomment","Calculatrice","CodageRLE","Tortue","RoseMul","DefiTable","DefiTableTexte","Billard","Labyrinthe","LabyNombre","Triomino","DessinGradue","Colorilude","ColoriludeEnonce","ColoriludeListeCouleur","PixelArt","Quisuisje","QuisuisjeEnonce","QuisuisjeTableau","QuisuisjeCodePerso","MotsEmpiles","MotsCroises","MotsCodes","MotsCodesTableau","Mosaique","DessineMosaique","Cartes","SolutionCarte","Dominos","Enquete","ListePersonnages","ListeObjets","ListeLieux","ListeQuestions","AffichageQuestions","AffichageTableau","PQuatre","Yohaku","PfCYHKpremier","KenKen","Kakuro","Shikaku","CalculsCroises","NombreAstral","CompteBon","BarresCalculs","EnigmeAire","Tectonic","Calisson","PuzzlePyramide","MessageCache","RondeInfernale","Futoshiki","Garam","SquarO","Grades","MidPoint","Kakurasu","Radar","Jauge","Demain","pointilles","Lignespointilles","MultiCol","addtotok","Affichage","AffichageCoord","AffichageEchange","AffichageEqua","AffichageGrad","AffichageNom","AfficheCoord","AfficheGrad","AfficheNom","AjoutListEEaa","AjoutListEEab","AjoutListEEb","AjoutListEEx","AjoutListEEy","Alea","annee","anp","anpdc","anpl","anpmv","anpT","anpv","anpvv","are","barre","barrewidth","bla","bnp","bnpdc","bnpl","bnpmv","bnpT","bnpv","bnpvv","BonSortieBandeau","BonSortieSmiley","Brouillon","buildarbreproba","BuildCalisson","builddemidroitenew","buildechelleproba","BuildEngrenages","buildespace","buildgraph","buildgraphbarhor","buildgraphcq","buildgraphq","BuildNombreAstral","BuildPixelArt","buildreperenew","BuildRLE","BuildRondeInfernale","buildtabfonction","buildtabpropor","Buildtabpropor","buildtabratio","buildtabrelie","buildtabrelieold","BuildtabStat","buildtabt","BuildVueCubes","BuildVueCubesSolution","CalculAngle","CalculECC","CalculFrequence","CalculNombreComposants","CalculSemiAngle","CANNew","CANSGFoo","ChiffreAAjouter","ChiffrePartieDecimale","cmptEE","cmxa","cmya","cmza","CNfoo","CNFOO","CNfooListe","CNFOOListePerso","CNFOOSSDossiers","cnp","cnpdc","cnpl","cnpmv","cnpT","cnpv","cnpvv","CNReponse","cntcol","CNTheme","cntlin","Coeffa","Coeffb","Coeffc","Coeffd","ColonneDomino","ColorFill","colorfill","Compteur","CompteurCalcul","compteurcnt","CompteurECC","CompteurECCTotal","CouleurBarre","CouleurDomino","CouleurF","CouleurFond","CouleurGrad","CouleurI","CouleurM","CouleurS","CouleurTrace","CountcolDeux","CountcolUn","dashblank","DecalageLigne","DecompositionFracDeciComplete","DefinirListeFichiers","DefiTableNombreLettreduCode","demibarre","denominateur","DenominateurDiv","DenomSimp","DenomSimpa","DenomSimpaa","DessineMosaiqueComplet","DessinePyramideNombre","DessinePyramideNombreMul","DessineRoseMul","DessineRoseMulSol","dispogpfc","DistriEchange","DistriTableau","DivCom","DiviseurCommun","DiviseurNumero","DivMax","dnp","dnpdc","dnpmv","dnpT","dnpvv","DonneeMax","DonneeMin","Dotfill","DrawArrow","DrawArrowSimple","DrawArrowSimpleRenverse","EcartLargeur","EchelleLogo","EcrireSolutionEquation","EcritureCalculs","EcritureDecimale","EcriturePluriel","EcritureQuotients","EffectifMax","ElementsMelanges","emoticon","EpaisseurLigne","Eqalign","EquaBase","EquaBaseL","EquaBaseLaurent","EquaBaseSymbole","EquaDeuxComposition","EquaDeuxL","EquaDeuxLaurent","EquaDeuxSoustraction","EquaDeuxSymbole","EquaDeuxTerme","EquaTroisComposition","EquaTroisL","EquaTroisLaurent","EquaTroisSoustraction","EquaTroisSymbole","EquaTroisTerme","Etape","EuRo","exposant","ExposantDivMax","ExtraitElements","ExtraitFruit","ExtraitNom","ExtraitObjets","ExtraitSommet","ExtraitSymboles","faa","fahrenheit","FaireFigure","Fdash","fdash","fdashlength","fdashsep","fdashwidth","fii","FlecheCoefInv","foo","FooListeEntier","FooStat","FooStatCases","FractionDeciDeno","FractionDeciNum","FruitsMelanges","fuu","fuuu","getstrut","GrandCote","hauteurcards","hauteurcarte","HauteurFlash","hauteurtitre","hdash","Intermed","jour","k","kmh","KN","KY","KYm","LabyHaut","LabyLong","LabySlop","largeurcards","largeurcarte","LargeurQCM","largeurtitre","Leftcomment","LETTRE","LigneDomino","Liste","Listea","ListeAutoEn","ListeAutoQ","ListeAvantCouleurs","ListeAvantNombres","Listeb","ListeCalc","ListeCalculs","ListeCalculslen","ListeCaracteresUniques","ListeCards","ListeCasesAVider","ListeCasesCroises","ListeCasesKK","ListeCasesSKK","ListeCNQuestions","ListeColonnesAVider","ListeColorilude","ListeColoriludeCouleurs","ListeColoriludelen","ListeColoriludeMax","ListeComplete","ListeCompleteDiagHor","ListeCompletelen","ListeComposantStatCAN","ListeContenuCol","ListeCouleur","ListeCouleurEntier","ListeDefiTableCode","ListeDefiTableMax","ListeDefiTablePhrase","ListeDefiTableTableau","ListeDefLigne","ListeDesCaracteresAUtiliser","ListeDesCaracteresFoo","ListeDesChiffres","ListeDesLettres","ListeDesLettresUniques","ListeDesLettresUniqueslen","ListeDesProduits","ListeDesProduitsFoo","ListeDesSSDossiersPerso","Listedesvaleursaplacersurlademidroite","ListeDiviseur","ListeDiviseurT","ListeDominos","listEE","listEEa","listEEb","ListeEcriture","ListeEcriturelen","ListeEtapes","ListeFichiers","ListeFichierslen","ListeFinaleDesCaracteres","ListeFlash","ListeFlashlen","ListeFonction","ListeFonctionlen","ListeFraction","ListeFractionDecimale","ListeFruitsCAN","ListefuuLieux","ListefuuObjets","ListefuuPerso","ListeInitiale","ListeInter","ListeInterlen","ListeKakuroNombres","ListeKakuroNombreslen","ListeLaby","ListeLabylen","ListeLabySol","ListeLegendesAEffacer","Listelen","ListeLettres","ListeLettreslen","ListeLieuxObjetsCAN","ListeMelangeeLieux","ListeMelangeeObjets","ListeMelangeePersonnages","ListeMelangeeQuestions","ListeModelBarreInf","ListeModelBarreSup","ListeMosaique","ListeMotsCAN","ListeMotsCodes","ListeMotsCodesMax","ListeMotsCodesPas","ListeMotsCodesPhrase","ListeMotsCodesTableau","ListeMotsEmpiles","ListeMotsEmpilesMax","ListeMulAstucieuxCAN","ListeNom","ListeNombreAPlacer","ListeNombreAPlacerlen","ListeNombreCol","ListeNombreCollen","ListeNomsCAN","ListeNomsMul","ListeNomSommet","ListeObjetsCAN","ListeObjetsSymbolesCAN","ListePANombre","ListePfCEngrenages","ListePG","ListePointDroite","ListePointEspace","ListePointRepere","ListePoints","ListePointsPlaces","ListeProba","ListeProg","ListePyramide","ListePyramidelen","ListeQCM","ListeQCMlen","ListeQuestionColonneDeux","ListeQuestionColonneDeuxlen","ListeQuestionColonneUn","ListeQuestionColonneUnlen","ListeQuisuisje","ListeQuisuisjeCode","ListeQuisuisjelen","ListeQuisuisjeLettres","ListeQuisuisjeLettreslen","ListeRadar","ListeRapido","ListeRapidolen","ListeRatio","ListeRatiolen","ListeRelie","ListeRelielen","ListeRestante","ListeRgt","ListeSansDoublonsEE","ListeSommetsCAN","ListeSSDossiers","ListeTempo","ListeTotale","ListeTotaleDesCaracteres","ListeTraces","ListeTriominos","ListeValeur","ListeValeurlen","Logo","logobox","LogoTW","longbarre","longbarredepth","longbarreheight","LongListe","LongueSimplification","LongueurDecimale","LongueurFracDeciDeno","LongueurFracDeciNum","LongueurMot","LongueurNombreEntier","LongueurPartieDecimale","LongueurPartieEntiere","margeh","margev","mathunderline","med","meda","MelangeListe","MelangeListeNew","mois","MotifTexte","MotsCodesMaLettre","MoyenCote","MPAfficheur","MPArbre","MPArbreComplet","MPArbreDessine","MPArbreProba","MPArbreVide","MPBillard","MPBillardSolution","MPCalculatrice","MPCatmull","MPCinq","MPCourbe","MPCourbeNew","MPDessineFrise","MPEchelleProbaUn","MPEnigmeAireA","MPEnigmeAireB","MPEnigmeAireC","MPEnigmeAireD","MPEnigmeAireE","MPEnigmeAireF","MPEspacePave","MPEspaceSphere","MPFigReciThales","MPFigReciThalesCroisee","MPFigThales","MPFigThalesCroisee","MPFigTrigo","MPFigTrigoAngle","MPFigureCarre","MPFigureCercle","MPFigureCone","MPFigureCube","MPFigureCylindre","MPFigureDisque","MPFigureDroite","MPFigureLosange","MPFigureLosangeAire","MPFigureParallelogramme","MPFigureParallelogrammeAire","MPFigurePave","MPFigurePolygone","MPFigurePrisme","MPFigurePyramide","MPFigurePytha","MPFigurePythaSansMots","MPFigureReciPytha","MPFigureRectangle","MPFigureSommeAngle","MPFigureSphere","MPFigureTriangle","MPFigureTriangleAire","MPFonctionAffine","MPFractionDisque","MPFractionDisqueH","MPFractionRectangle","MPFractionRectangleH","MPFractionRegulier","MPFractionRegulierH","MPFractionSegment","MPFractionSegmentH","MPFractionTriangle","MPFractionTriangleH","MPGrille","MPGrillePointe","MPHorloge","MPIsometrique","MPIsometriquePointe","MPMillimetre","MPNewDEMIGraduee","MPNewDROITEGraduee","MPNewDROITEGradueeMulti","MPPlacePoint","MPPlannew","MPPlanTrace","MPRadar","MPSeyes","MPSolideCone","MPSolideCylindre","MPSolidePave","MPSolidePyramide","MPSolideSphere","MPStat","MPStatCirculaireQ","MPStatNew","MPStatQ","MPTest","MPTestCours","MPThermo","MPTraceFonction","MPTriangulaire","Multi","Multij","Multijo","Multik","Multiko","Multil","Multilo","Multim","Multimo","Multio","myoldmulticolumn","NBcases","NbColTabMul","NbDepart","NbDonnees","nbdonnees","NbHeures","NbMinutes","NbSecondes","NbTrois","NewMPDiagBarreHor","NewMPStatCirculaireQ","nil","NomA","NomAngleDroit","NomB","NombreCentaines","NombreDizaines","NombreMilliers","NombrePremier","NombrePremierExposant","NombrePremierImpose","NombrePremierPotence","NombrePremierVertical","NombrePremierVerticalVide","NombreUnites","NomC","NomComp","NomCouleurTab","NomFin","NomFonction","NomFonctionA","NomLargeurTab","NomLettre","NomM","NomN","NomNode","NomPointA","NomPointB","NomPointC","NomPointM","NomPointN","NomsMelanges","NomSommetA","NomSommetB","NomSommetC","NomStyle","NomTriangle","NomVariable","Nomx","Nomy","Nomz","NumA","NumB","NumC","NumD","numerateur","NumerateurDiv","Numerodelaquestionaposer","numeroDonnee","NumeroReponse","NumSimp","NumSimpa","ObjetsMelanges","octet","OrdOrigine","PapierBottom","PapierCouleur","PapierGrille","PapierGrillePointe","PapierHauteur","PapierLargeur","PapierLeft","PapierLeftCurrent","PartieDecimaleFractionDeci","PartieEntiereFractionDeci","PasNumEE","PetitCote","PfCAutreMoitieCase","PfCBstrut","PfCCalculsCroises","PfCCBAffiche","PfCCBAlea","PfCCBDecompositionEtapes","PfCCBListeCartes","PfCCBListeEntiers","PfCCBListeEntiersChoisis","PfCCBListeFinaleCartes","PfCCBListeMultiples","PfCCBListeMultiplesChoisis","PfCCBListeRappels","PfCCBListeTirage","PfCCBListeTirageAffiche","PfCCBListeTirageIntermediaire","PfCCBListeToutesCartes","PfCCBNbPlaqueEntiers","PfCCBNbPlaqueMultiples","PfCCBResultat","PfCCBResultatFinal","PfCCBTest","PfCCCFoo","PfCCCfoo","PfCchiffre","PfCCoefConversion","PfCCompteBonOriginal","PfCCompteurMelange","PfCCountCutDeux","PfCCountCutUn","PfCDerniereColonne","PfCDerniereColonneEntiere","PfCdotover","PfCentoure","PfCfiledate","PfCfileversion","PfCFooArrivee","PfCFooDepart","PfCFooRelatifYohaku","PfCfooStat","PfCfrac","PfCGraineAlea","PfCHiddenHeight","PfCHiddenWidth","PfCKakuro","PfCKenKen","PfCLargeurJury","PfCLargeurQCM","PfCLargeurQuestion","PfCLargeurReponse","PfCListeATrier","PfCListeBarresCalculs","PfCListeCalculsBarre","PfCListeCCAide","PfCListeCCAidelen","PfCListeCCNb","PfCListeCCOp","PfCListeCmdTortue","PfCListeHauteursCubes","PfCListeResultats","PfCListeResultatsBarre","PfCListeRLE","PfCListeSymbolTrivial","PfCLongInter","PfCMentaloDeuxiemeTerme","PfCMentaloEtages","PfCMentaloListeOperations","PfCMentaloListeOperationslen","PfCMentaloPremierTerme","PfCMoitieCase","PfCMPDessineModelBarre","PfCMPDessineModelBarreNonHomogene","PfCNACible","PfCNAListeAEffacer","PfCNAListeMelange","PfCNAListeNombres","PfCNAListeNombresBase","PfCNbRep","PfCNomLabyrinthe","PfCNomRose","PfCNomShikaku","PfCNum","PfCPCfaa","PfCPCfoo","PfCPremiereColonneDecimale","PfCPuzzleP","PfCPythaUnit","PfCQtroisk","PfCQuartileTrois","PfCQuartileUn","PfCQunk","PfCRappelImposeAll","PfCShikakuh","PfCShikakuv","PfCTabCouleur","PfCTableauDepart","PfCTableauIncline","PfCTableauPuissances","PfCTableauUnite","PfCTableurLargeur","PfCTableurLargeurUn","PfCTBstrut","PfCTectonic","PfCTestBlack","PfCTestEtoile","PfCTestMP","PfCThalesUnit","PfCTotal","PfCTrigoUnit","PfCTstrut","PfCVueCubeNom","PfCYHKimpair","PfCYHKlast","PfCYHKListe","PfCYHKListeFoo","PfCYHKListeNA","PfCYHKListeP","PfCYHKListeProduit","PfCYHKnegatif","PfCYHKnombre","PfCYHKpair","PfCYHKTampon","PfCYohaku","PfCYohakuAlea","PfCYohakuInter","pgcd","PGCD","pileb","Pointilles","PointillesClesProg","PotenceCases","ppcm","PPCM","PQuatreGrille","PQuatreListe","PQuatreListeH","PQuatreListes","PQuatreListeV","premier","premierdeux","PremierDiviseurVide","PremierEtape","PremierExposant","PremierLong","PremierMultipleVide","premierun","PtAlea","pupils","PuzzlePyramideListeLettres","QCMPfC","QFDaily","QFDecimal","QFExpression","QFHeure","QFMental","QFMesure","QFNumeration","QFVide","quintal","ratiodomino","RayonCoin","Recapk","Recapmed","Recapmeda","ReciproqueThales","ReciThales","ReciThalesCalculs","RecupererFichierTeXAllDossier","RecupererFichierTeXAllSSDossier","RecupererFichierTeXComplet","RecupererFichierTeXDossier","RecupererFichierTeXSSDossier","RecupererFichierTeXSSDossierPerso","RecupererSousDossiers","Recupk","Recupmed","Recupmeda","RecupNbFichiers","RecupSSDossiers","Redaction","RedactionCalculsPythagore","RedactionCalculsReciPythagore","RedactionConclusionReciPythagore","RedactionPythagore","RedactionReciPythagore","RedactionSom","RedactionSomme","RedactionThales","RedactionTrigo","ResolEquationCarre","ResolEquationComposition","ResolEquationL","ResolEquationLaurent","ResolEquationProduit","ResolEquationSoustraction","ResolEquationSymbole","ResolEquationTerme","RetiensListeLieux","RetiensListeLieuxlen","RetiensListeObjets","RetiensListeObjetslen","RetiensListePersonnages","RetiensListePersonnageslen","RetiensListeQuestions","RetiensListeQuestionslen","Rightcomment","RKalmostcrying","RKangry","RKbigsmile","RKblush","RKconfused","RKdevilish","RKlookdown","RKlookleft","RKlookright","RKlookup","RKmartian","RKneutral","RKsad","RKsexy","RKsmallsmile","RKsmile","RoundedBoxWidth","ShikakuCreation","ShikakuCreationSolution","SommeA","sommeangle","SommeB","SommeC","SommeDonnees","SommetsMelanges","Speed","speed","SSimpli","SSimplifie","SSimpliTest","SymbolesMelanges","TableAdditionComplete","TableAdditionSeule","TableMultiplicationComplete","TableMultiplicationCompleteColore","TableMultiplicationSeule","TabLongueurNombre","tabtoksa","tabtoksb","tabtoksc","tabtoksEE","tabtoksEEa","tabtoksEEb","TailleFonte","Test","Testa","Testb","TestNombrePremier","TexteOrigine","TexteReference","theaddxlop","theCNNumQ","theCompteurMotEmpile","thedivxlop","themulxlop","theNbCalculDistri","theNbDistri","theNbequa","theNbFrac","theNBprog","theNbPropor","theNbProporD","theNbProporG","theNbRelie","thePfCCompteLignes","thePfCnexo","thePfCPuzzlePavcpt","thePfCPuzzlePcpt","thePfCShikakuNom","thePfCTortue","theQuestionQCM","thesubxlop","theTitreQCM","Tikzmark","TikzPB","TikzPBD","TikzPD","TikzPG","TikzPH","TikzPHD","TikzRB","TikzRH","tokcalissonlistetracesd","tokcalissonlistetracesg","toklisteaffhor","toklistecaseM","toklistecaseP","toklistecouleur","toklistedefligne","toklistedonhor","toklistefrise","toklistelegende","toklistemodelbarreinf","toklistemodelbarresup","toklisteNAMelange","toklisteNANombres","toklistenomhor","toklistenompointdemidroite","toklistePANombre","toklistepoint","toklistepointdemidroite","toklistepointdroite","toklistepointespace","toklistepointproba","toklistepointq","toklistepointrepere","toklistePQuatreh","toklistePQuatrev","toklistePtsFn","toklisteptsgrad","toklisteradara","toklisteradarb","toklisteradarc","toklisteratio","toklisteremplissage","toklisterle","toklistetracesgrad","toklisteTriomino","toklisteVueCube","tokPfCCBRappels","tokPfCEngrenages","toksolidelistepointssections","toksolidelistesommets","TortueCreationFichier","TortueDessinFinal","totalangle","TotalECC","TotalLaby","TotalP","toto","TraceDessinGradueComplet","TraceDoubleSolution","TraceEchiquierColoreColorilude","TraceEchiquierColorilude","TraceGraphique","TraceLabyFacto","TraceLabyFactoSolution","TraceLabyNombreDouble","TraceTriomino","TraceTriominoHexa","TrigoCalculs","TSimp","TThales","TThalesCalculsD","TThalesCalculsE","TTThales","Tuile","untest","UpdateCoul","UpdateDefLignes","UpdateLegende","UpdateLignes","UpdateListeModelBarreInf","UpdateListeModelBarreSup","UpdatePtsFN","UpdatePtsFn","UpdateRadara","UpdateRadarb","UpdateRadarc","UpdateRatio","updateratiotoks","UpdateRemplissage","Updatetoks","updatetoks","UpdatetoksCalissond","UpdatetoksCalissondDepart","UpdatetoksCalissong","UpdatetoksCalissongDepart","UpdatetoksCB","Updatetoksdemidroite","Updatetoksdroite","UpdatetoksEngrenages","Updatetoksespace","UpdatetoksFrise","UpdatetoksHor","Updatetoksmath","UpdatetoksMosaique","UpdatetoksNAMelange","UpdatetoksNANombres","UpdatetoksPANombre","UpdatetoksPQuatreh","UpdatetoksPQuatrev","Updatetoksproba","Updatetoksprobaechelle","Updatetoksprobapdf","updatetokspropor","UpdatetoksPyramide","UpdatetoksPyramideMul","Updatetoksq","Updatetoksrepere","UpdatetoksRLE","UpdatetoksSolide","UpdatetoksTriomino","UpdatetoksVueCube","UpdateTraces","valabsdeno","valabsnum","ValeurEchange","ValeurTest","Verification","WidthRapido","xcnt","xxx","yyy","zzpar","zzz","BuildKakurasu","BuildMidPoint","BuildGrades","BuildSquaro","PfCSquaroNom","BuildSquaroSolution","PfCGaramHeight","PfCListeGaram","PfCListeGaramlen","PfCFutoHeight","PfCTailleFuto","ListeFuto","PfCFutoStyleTexte","PfCLongueurP","LabyLongCM"]}
-,
-"ProfLabo.sty":{"envs":{},"deps":["pgf.sty","tikz.sty","listofitems.sty","simplekv.sty","ifthen.sty"],"cmds":["TubeAEssai","EchelleTube","Becher","FioleJaugee","Erlen","Dosage","CouleurActuelle","CouleurBecher","CouleurBecherd","CouleurErlen","CouleurFiole","CouleurTitrant","CouleurTitre","CouleurTube","EchelleActuelle","erlenpartielfalse","erlenpartieltrue","erlenpleinfalse","erlenpleintrue","erlenvidefalse","erlenvidetrue","fiolepleinefalse","fiolepleinetrue","fiolevidefalse","fiolevidetrue","gendeerlenfalsefalse","gendeerlenfalsetrue","hauteurerlen","hauteurfiole","hauteurmaxtube","HauteurTube","iferlenpartiel","iferlenplein","iferlenvide","iffiolepleine","iffiolevide","iflegende","iflegendeerlen","iflegendefiole","iflegendesouserlen","iflegendetube","iftrait","iftraitnoirbecher","iftraitnoirerlen","LegendeActuelle","LegendeActuelleB","LegendeActuelleD","LegendeActuelleF","LegendeActuelleT","legendeerlenfalse","legendeerlentrue","legendefalse","legendefiolefalse","legendefioletrue","legendesouserlenfalse","legendesouserlentrue","legendetrue","legendetubefalse","legendetubetrue","ListeAvantCouleurs","ListeAvantLegendes","ListeCouleurs","ListeLegendes","nombretube","traitfalse","traitnoirbecherfalse","traitnoirbechertrue","traitnoirerlenfalse","traitnoirerlentrue","traittrue"]}
-,
-"ProfLycee.sty":{"envs":["CodePythonLst","CodePiton","CodePythonMinted","PseudoCode","TerminalWin","TerminalUnix","TerminalOSX","PresentationCode","EnvArbreProbasTikz","EnvSudoMaths","CodePythontex","ConsolePythontex","pythont"],"deps":["mathtools.sty","xcolor.sty","tikz.sty","tkz-tab.sty","pgf.sty","pgffor.sty","ifthen.sty","xkeyval.sty","xstring.sty","xintexpr.sty","xintbinhex.sty","xinttools.sty","randomlist.sty","simplekv.sty","listofitems.sty","tabularray.sty","hologo.sty","fancyvrb.sty","nicefrac.sty","siunitx.sty","fontawesome5.sty","tikzlibrarycalc.sty","tikzlibrarydecorations.sty","tikzlibrarydecorations.pathreplacing.sty","tikzlibrarydecorations.markings.sty","tikzlibrarybabel.sty","tikzlibraryshapes.geometric.sty","tikzlibrarydecorations.pathmorphing.sty","tcolorbox.sty","tcolorboxlibrarymost.sty","tcolorboxlibraryminted.sty","iftex.sty","piton.sty","pythontex.sty","colortbl.sty"],"cmds":["useproflyclib","ResolutionApprochee","SolutionTVI","CalculTermeRecurrence","SolutionSeuil","CompteurSeuil","CalculFormelParametres","CalculFormelLigne","CFchap","CFpremcol","CFhpremcol","CodePythonLstFichier","CartoucheCapytale","PaveTikz","TetraedreTikz","CercleTrigo","CalculsRegLin","LX","LY","LNB","LXSomme","LYSomme","LXmoy","LYmoy","LXvar","LYvar","LXYvar","PointsRegLin","GrilleTikz","AxesTikz","AxexTikz","AxeyTikz","FenetreTikz","FenetreSimpleTikz","OrigineTikz","NuagePointsTikz","PointMoyenTikz","CourbeTikz","axexOx","axeyOy","xmin","xmax","ymin","ymax","xgrille","xgrilles","ygrille","ygrilles","xunit","yunit","SplineTikz","TangenteTikz","BoiteMoustaches","BoiteMoustachesAxe","CalcBinomP","CalcBinomC","CalcPoissP","CalcPoissC","CalcGeomP","CalcGeomC","CalcHypergeomP","CalcHypergeomC","CalcNormC","CalcExpoC","BinomP","BinomC","PoissonP","PoissonC","GeomP","GeomC","HypergeomP","HypergeomC","NormaleC","ExpoC","ArbreProbasTikz","LoiNormaleGraphe","LoiExpoGraphe","NbAlea","VarNbAlea","TirageAleatoireEntiers","Arrangement","Combinaison","CalculAnp","CalculCnp","ConversionDecBin","ConversionBinHex","ConversionVersDec","ConversionBaseDix","ConversionDepuisBaseDix","PresentationPGCD","ConversionFraction","EcritureEnsemble","MiniSchemaSignes","MiniSchemaSignesTkzTab","ToileRecurrence","EcritureTrinome","SimplificationRacine","MesurePrincipale","SudoMaths","CODPYfonte","CODPYlargeur","CODPYstretch","CSPYfonte","CSPYlargeur","CSPYstretch","hookcenterpost","hookcenterpre","AleaSigneA","algomathttPL","axesafflabel","axesechellefleche","axeselargx","axeselargy","axesenlargxD","axesenlargxG","axesenlargyD","axesenlargyG","axesfont","axeslabelx","axeslabely","axesordecal","axesorfont","axesorpos","axesorval","axesposlabelx","axesposlabely","axestypefleche","axeswidth","axexfont","axexposlabel","axextickwidth","axextickwidthA","axextickwidthB","axexwidth","axeyfont","axeyposlabel","axeytickwidth","axeytickwidthA","axeytickwidthB","axeywidth","BaMAxeElarg","BaMAxeEpaisseur","BaMaxelargeur","BaMAxeMax","BaMAxeMin","BaMAxeValeurs","BaMaxexmax","BaMaxexmin","BaMCouleur","BaMElevation","BaMEpaisseur","BaMHauteur","BaMListeparams","BaMmax","BaMmed","BaMmin","BaMMoyenne","BaMqt","BaMqu","BaMRemplissage","basedepart","BorneInf","BorneSup","calculargument","CalculInterneTermeRecurrence","CalculSeuil","CFcoulcmd","CFcouleur","CFcoulres","CFesplg","CFhle","CFhlr","CFL","CFLA","CFlabeltitre","CFlarg","CFposcmd","CFposres","CFtaille","CFtailletitre","chbrut","chiffre","CODPITalign","CODPITfonte","CODPITlargeur","COEFF","COEFFA","Coeffa","COEFFB","Coeffc","convertbasedixtobase","convertbasetobasedix","cpt","denominateur","densexpo","densnorm","DHTnomfct","DHTnomsol","DHTprec","DHTstretch","DHTva","DHTvb","DICHOTOinterv","DICHOTOstep","DICHOTOvar","extractcoeff","fctdecx","fprimea","fprimeb","GRPHPROBcoulcbe","GRPHPROBcoulsurf","GRPHPROBhauteur","GRPHPROBlarg","ifinal","iinit","indice","larcolinter","larliginter","LCNA","lcoeffs","LCPA","listepointsaffiches","MOYENNE","nbblocs","nbchiffres","nbdepart","NBdepart","nbgrp","numerateur","PaveA","PaveB","PaveC","PaveD","PaveE","PaveF","PaveG","PaveH","PFListeSommets","PFPaveAngl","PFPaveFuite","PFPaveHt","PFPaveLg","PFPavePf","PFPaveSommets","PFPaveThick","PFTetraAlpha","PFTetraBeta","PFTetraHt","PFTetraLg","PFTetraPf","PFTetraSommets","PFTetraThick","PLAPeptrait","PLAPespfeuille","PLAPespniv","PLAPfont","PLAPfontproba","PLAPtype","PLAPtypetrait","PLAPunite","PLARBREDONNES","PLcercleangles","PLcerclecoleq","PLcercledecal","PLcerclefond","PLcerclemarge","PLcerclerayon","PLcerclesolthick","PLcerclethick","PLcerclevalcos","PLcerclevaleurs","PLcerclevalsin","PLcommandeswin","PLConvCouleur","PLConvDecalH","PLConvDecalV","PLConvNoeud","PLDm","PLDM","PLdomaine","PLensopt","PLenssep","PLnoeud","PLnuagepoints","PLOSXGreen","PLOSXLG","PLOSXOrange","PLOSXRed","PLpgcd","PLPGCDCouleur","PLPGCDDecal","PLPGCDNoeud","PLRecurfct","PLRecurlabelsize","PLRecurnb","PLRecurno","PLRecurnom","PLRecuroffset","PLRecurposlab","PLRecuruno","PLSMcoulcase","PLSMcoultexte","PLSMdecalleg","PLSMepf","PLSMepg","PLSMfonte","PLSMfonteleg","PLSMlistelegh","PLSMlistelegv","PLSMnbcol","PLSMnblig","PLSMnbsubcol","PLSMnbsublig","PLSMunite","PLstrzeros","PLUbuntuClose","PLUbuntuMax","PLUbuntuMin","PLUbuntuWhite","ptmoycouleur","ptmoycouleurA","ptmoycouleurB","ptmoydecal","ptmoyfont","ptmoynom","ptmoypos","ptmoystyle","ptmoytaille","ptmoyx","ptmoyy","ptscouleur","ptscouleurA","ptscouleurB","ptsstyle","ptstaille","puiss","RegLinCoeffa","RegLinCoeffb","RegLinCoeffr","RegLinCoeffrd","RegLinCoeffXmax","RegLinCoeffXmin","RegLinNuageCouleur","RegLinNuageOx","RegLinNuageOy","RegLinNuageTaille","resbrut","resinter","respgcd","schematdsaff","schematdsparab","SensDeb","SEUILindiceinit","SEUILn","SEUILnmu","SEUILnomsuite","SEUILprec","SEUILsens","SEUILstretch","SEUILtermeinit","SMcase","SMcaseb","SPGrilleSudoMaths","SPLcoeffs","SPLcouleur","SPLcouleurpoints","SPLepaisseur","SPLlistepoints","SPLlistepointslen","SPLnbsplines","SPLstyle","SPLtaillepoints","SRnfinal","SRninit","SRprec","SRuninit","TAEEmax","TAEEmin","TAEEnb","TAEEsep","TAEEtri","tdscouleur","tdshaut","tdslarg","tdsparam","tdsracine","termnuxtitre","termosxtitre","termwintitre","TetraA","TetraB","TetraC","TetraD","TGTcouleur","TGTDEB","TGTepaisseur","TGTFIN","TGTlistepoints","TGTnumpt","TGTstyle","TGTXL","TGTXR","theCFnum","TriListeCroiss","TriListeDecroiss","TriPartieA","TriPartieB","TriPartieC","TriSigneA","UNITEX","UNITEY","ValA","ValB","ValMU","ValQ","ValR","ValRes","ValTMP","verbcenterpost","verbcenterpre","xa","xb","xliste","XPT","ya","yb","yliste","YPT"]}
-,
-"ProjLib.sty":{"envs":{},"deps":["projlib-language.sty","projlib-datetime.sty","projlib-draft.sty","projlib-font.sty","projlib-logo.sty","projlib-math.sty","projlib-paper.sty","projlib-text.sty","projlib-theorem.sty","projlib-author.sty","scontents.sty","projlib-titlepage.sty","amssymb.sty","lmodern.sty","mathpazo.sty","newpxtext.sty","newtxtext.sty","newtxmath.sty","ebgaramond-maths.sty","ebgaramond.sty","anyfontsize.sty","notomath.sty","eulervm.sty","biolinum.sty","mathastext.sty"],"cmds":["keywords","dedicatory","subjclass","captionsjapanese","datejapanese","extrasjapanese","noextrasjapanese","cyrdash","asbuk","Asbuk","Russian","sh","ch","tg","ctg","arctg","arcctg","th","cth","cosec","Prob","Variance","NOD","nod","NOK","nok","Proj","cyrillicencoding","cyrillictext","cyr","textcyrillic","dq","captionsrussian","daterussian","extrasrussian","noextrasrussian","CYRA","CYRB","CYRV","CYRG","CYRGUP","CYRD","CYRE","CYRIE","CYRZH","CYRZ","CYRI","CYRII","CYRYI","CYRISHRT","CYRK","CYRL","CYRM","CYRN","CYRO","CYRP","CYRR","CYRS","CYRT","CYRU","CYRF","CYRH","CYRC","CYRCH","CYRSH","CYRSHCH","CYRYU","CYRYA","CYRSFTSN","CYRERY","cyra","cyrb","cyrv","cyrg","cyrgup","cyrd","cyre","cyrie","cyrzh","cyrz","cyri","cyrii","cyryi","cyrishrt","cyrk","cyrl","cyrm","cyrn","cyro","cyrp","cyrr","cyrs","cyrt","cyru","cyrf","cyrh","cyrc","cyrch","cyrsh","cyrshch","cyryu","cyrya","cyrsftsn","cyrery","cdash","tocname","authorname","acronymname","lstlistingname","lstlistlistingname","notesname","nomname"]}
-,
-"ReadableCV.cls":{"envs":{},"deps":["s-memoir.cls","hyperref.sty","datetime.sty","multicol.sty","marvosym.sty","graphicx.sty","xcolor.sty","roboto.sty","fontenc.sty","etoolbox.sty","xstring.sty"],"cmds":["setPageColour","setHeaderAlignment","setHeadingColours","setContactLocation","setYourName","setYourJobTitle","setYourMobileNo","setYourHomeNo","setYourEmailAddr","setYourWebAddr","showHeader","setSectionAlignment","newHeading","addSkills","setJobCompanyOrder","newRole","roleAchievements","roleResponsibilities","newCourse","setRecpName","setRecpJobTitle","setRecpRoad","setRecpTown","setRecpCity","setRecpPostcode","makeLetter","closeletter","HeaderAlignment","HeaderLeftContact","HeaderLeftImage","HeaderRightContact","HeaderRightImage","HeaderText","HeaderTextOppo","HeadingColour","PageColour","SectionAlignment","contactloc","setImage","rcvemailaddr","rcvhomeno","rcvimageloc","rcvjobtitle","rcvmobileno","rcvname","rcvwebaddr","recpcity","recpjobtitle","recpname","recppostcode","recproad","recptown","ClassDate","ClassVersion","afive","afour","aone","asix","athree","atwo","rfive","rfour","rone","rthree","rtwo","seight","sfive","sfour","snine","sone","sseven","ssix","sthree","stwo","DH","NG","dj","ng","k","guillemotleft","guillemotright","guilsinglleft","guilsinglright","quotedblbase","quotesinglbase","textquotedbl","DJ","th","TH","dh","Hwithstroke","hwithstroke","textogonekcentered","guillemetleft","guillemetright"]}
-,
-"ResolSysteme.sty":{"envs":{},"deps":["nicematrix.sty","ifthen.sty","xintexpr.sty","xinttools.sty","listofitems.sty","siunitx.sty","nicefrac.sty","xstring.sty"],"cmds":["ProduitMatricesPY","MatricePuissancePY","DetMatricePY","MatriceInversePY","EtatProbPY","SolutionSystemePY","EtatStablePY","ConvVersFrac","AffMatrice","ProduitMatrices","CarreMatrice","DetMatrice","MatriceInverse","AffEtatProb","SolutionSysteme","EtatStable"]}
-,
-"Romantik.sty":{"envs":{},"deps":{},"cmds":["Romantik","romantik"]}
-,
-"Rothdn.sty":{"envs":{},"deps":{},"cmds":["Rothdnfamily","roth"]}
-,
-"Royal.sty":{"envs":{},"deps":{},"cmds":["Royal","royal"]}
-,
-"SASnRdisplay.sty":{"envs":["SAScode","SAScode*","SASoutput","SASoutput*","Rcode","Rcode*","Routput","Routput*"],"deps":["listings.sty","xkeyval.sty","xcolor.sty","etoolbox.sty","caption.sty","needspace.sty"],"cmds":["inputSAScode","inputSASoutput","inputRcode","inputRoutput","SASinline","Rinline","lstlgrindeffile","lstdefineformat","lstformatfiles","SnRRcodename","SnRSAScodename","SnRRoutputname","SnRSASoutputname","SnRversion"]}
-,
-"Sanremo.sty":{"envs":{},"deps":{},"cmds":["Sanremofamily","sanremo"]}
-,
-"Scrabble.sty":{"envs":["EnvScrabble","EnvScrabbleFR"],"deps":["tikz.sty","pgf.sty","pgffor.sty","xstring.sty","simplekv.sty","listofitems.sty","tikzlibrarycalc.sty","tikzlibraryshapes.geometric.sty"],"cmds":["ScrabbleBoard","PlateauScrabble","ScrabblePutWord","ScrabblePlaceMot","AlphabetMajuscule","AlphabetMinuscule","PLSCRBBLEechelle","PLSCRBBLEechelleLabel","PLSCRBBLElangue","PointsScrabbleDE","PointsScrabbleEN","PointsScrabbleES","PointsScrabbleFR","PtsScrbDE","PtsScrbEN","PtsScrbES","PtsScrbFR","scrabblescorelettre","SCRBLCD","SCRBLCT","SCRBMCD","SCRBMCT"]}
-,
-"Starburst.sty":{"envs":{},"deps":{},"cmds":["Starburstfamily","starburst"]}
-,
-"Tabbing.sty":{"envs":["Tabbing"],"deps":{},"cmds":["TAB","Tabbing","endTabbing"]}
-,
-"TangramTikz.sty":{"envs":["EnvTangramTikz"],"deps":["tikz.sty","simplekv.sty","xstring.sty","listofitems.sty","tikzlibrarycalc.sty","tikzlibraryshapes.geometric.sty"],"cmds":["TangramTikz","PieceTangram","TangramSquare","TangramPinguin","TangramBoat","TangramHome","TangramFirTree","TangramCat","TangramSwan","TangramDuck","TangramPyramid","TangramRocket","TangramCandle","TangramShirt","TangramFish","TangramSailboat","TangramKangaroo","TangramDog","TangramRabbit","TangramPlane","TangramRooster","TangramJogger","TangramDancer","TangramCamel","TangramFlamingo","TangramHeart","TangramGiraffe","TangramHorse","TangramGoat","TangramLion","TangramFactory","TangramAngel","TangramTower","TangramUfo","TangramChicken","TangramTurtle","TangramCrab","TangramSnail","TangramTikzCreateEN","TangramTikzCreateFR","TangCouleurs","TangColors","TangCouleur","TangColor","TangBorder"]}
-,
-"TheanoDidot.sty":{"envs":{},"deps":["ifxetex.sty","ifluatex.sty","textcomp.sty","xkeyval.sty","fontenc.sty","fontaxes.sty"],"cmds":["theanodidot","theanodidotosf","theanodidotlf","theanodidotlgr"]}
-,
-"TheanoModern.sty":{"envs":{},"deps":["ifxetex.sty","ifluatex.sty","textcomp.sty","xkeyval.sty","fontenc.sty","fontaxes.sty"],"cmds":["theanomodern","theanomodernosf","theanomodernlf","theanomodernlgr"]}
-,
-"TheanoOldStyle.sty":{"envs":{},"deps":["ifxetex.sty","ifluatex.sty","textcomp.sty","xkeyval.sty","fontenc.sty","fontaxes.sty"],"cmds":["theanooldstyle","theanooldstyleosf","theanooldstylelf","theanooldstylelgr"]}
-,
-"Typocaps.sty":{"envs":{},"deps":{},"cmds":["Typocapsfamily","typocap"]}
-,
-"UniversalisADFStd.sty":{"envs":{},"deps":["fontenc.sty","textcomp.sty","mweights.sty","fontaxes.sty","xkeyval.sty"],"cmds":{}}
-,
-"WriteOnGrid.sty":{"envs":["EnvGrid","EnvQuadrillage","PleinePageSeyes","PleinePageCinqCinq","PleinePageRuled"],"deps":["xcolor.sty","tikz.sty","simplekv.sty","xstring.sty","tikzlibrarycalc.sty","tikzlibrarypositioning.sty","colortbl.sty"],"cmds":["ColSeyes","ColRuled","WriteLine","PassLine","CoulSeyes","CoulRuled","EcrireLigne","PasseLigne","LignePapierSeyes","CadreNoteSeyes","ParagraphePapierSeyes","LignePapierCinqCinq","CadreNoteCinqCinq","ParagraphePapierCinqCinq","LignePapierRuled","CadreNoteRuled","ParagraphePapierRuled","CCFullCoul","CCFullCoulM","CCLigne","CCLigneCouleur","CCLigneEchelle","CCLigneLarg","CCPar","CCParBase","CCParCouleur","CCParEchelle","CCParLarg","QuadCoulA","QuadCoulB","QuadCoulSeyes","QuadEchelle","QuadElar","QuadElarD","QuadElarG","QuadNbCar","QuadNbLig","QuadType","RuledFullCoul","RuledFullCoulMarge","RuledLigne","RuledLigneCouleur","RuledLigneEchelle","RuledLigneLarg","RuledPar","RuledParBase","RuledParCouleur","RuledParEchelle","RuledParLarg","SeyesFullCoulM","SeyesFullCoulP","SeyesFullCoulS","SeyesLigne","SeyesLigneCouleur","SeyesLigneEchelle","SeyesLigneLarg","SeyesPar","SeyesParBase","SeyesParCouleur","SeyesParEchelle","SeyesParLarg","thelgquadri","ValeurCarreau"]}
-,
-"XCharter.sty":{"envs":{},"deps":["iftex.sty","xkeyval.sty","etoolbox.sty","textcomp.sty","xstring.sty","ifthen.sty","scalefnt.sty","mweights.sty","fontenc.sty","fontaxes.sty","fontspec.sty","xcharter-otf.sty"],"cmds":["circledtxt","defigures","destyle","infigures","lfstyle","liningnums","nufigures","nustyle","oldstylenums","osfstyle","proportionalnums","sufigures","tabularnums","textde","textdenominator","textfrac","textinf","textinferior","textlf","textosf","textosfI","textnu","textnum","textnumerator","textruble","textsu","textsuperior","textth","textthit","thdefault","thfamily","tlfstyle","tosfstyle","useosf","useosfI","useproportional","DH","NG","dj","ng","k","guillemotleft","guillemotright","guilsinglleft","guilsinglright","quotedblbase","quotesinglbase","textquotedbl","DJ","th","TH","dh","Hwithstroke","hwithstroke","textogonekcentered","guillemetleft","guillemetright"]}
-,
-"Zallman.sty":{"envs":{},"deps":{},"cmds":["Zallmanfamily","zall"]}
-,
-"a0poster.cls":{"envs":{},"deps":{},"cmds":["ifportrait","portraittrue","portraitfalse","ifanullb","anullbtrue","anullbfalse","ifanull","anulltrue","anullfalse","ifaeins","aeinstrue","aeinsfalse","ifazwei","azweitrue","azweifalse","ifadrei","adreitrue","adreifalse","ifposterdraft","posterdrafttrue","posterdraftfalse","xkoord","ykoord","xscale","yscale","tausch","Ausgabe","veryHuge","VeryHuge","VERYHuge"]}
-,
-"a4.sty":{"envs":{},"deps":{},"cmds":["WideMargins"]}
-,
-"a4wide.sty":{"envs":{},"deps":{},"cmds":{}}
-,
-"aalok.cls":{"envs":{},"deps":["s-memoir.cls","expl3.sty","expex.sty","xcolor.sty","marathi.sty","microtype.sty","fontawesome5.sty","diagbox.sty","fancyhdr.sty","float.sty","paracol.sty","tcolorbox.sty","tcolorboxlibrarymost.sty","tikz.sty","graphicx.sty","mdframed.sty","etoolbox.sty","hyperref.sty","biblatex.sty","tocloft.sty","minitoc.sty"],"cmds":["orcid","aalokDate","aalokName","aalokVersion","citetitleyear","endparsecomma","if","orcidlogo","orcidno","parsecomma"]}
-,
-"abbrevs.sty":{"envs":{},"deps":["moredefs.sty","slemph.sty"],"cmds":["nospacelist","newabbrev","newname","newbook","newwork","PM","AM","BC","AD","acromake","ACRcnta","ACRcntb","AcromakePageref","ResetAbbrevs","NewAbbrevCategory","TMFontAll","TMHookAll","TMResetAll","TMFontGeneric","TMFontName","TMFontBook","TMFontWork","TMHookGeneric","TMHookName","TMHookBook","TMHookWork","TMResetGeneric","TMResetName","TMResetBook","TMResetWork","NewUserAbbrevDefiner","TMDefineAbbrevStandard","TMInitialSuffix","TMSubsequentSuffix","DateMark","ifTMInhibitSwitching","TMInhibitSwitchingtrue","TMInhibitSwitchingfalse","ifTMAlwaysLong","TMAlwaysLongtrue","TMAlwaysLongfalse","DateMarkSize","TMAcromakeDefiner","TMAcromakeSecondarySuffix","TMCurrentMacro","TMCurrentMacroRootname","TMHookAcromake","TMHookAcromakeHook","TMNewAbbrevAcromake","TMNewAbbrevPlain","TMNewAbbrevSwitcher","TMNewAbbrevSwitcherAcromake"]}
-,
-"abc.sty":{"envs":["abc","mup"],"deps":["ifluatex.sty","verbatim.sty","keyval.sty","graphicx.sty","ifpdf.sty","shellesc.sty"],"cmds":["abcinput","abcwidth","normalabcoutputfile","normalmupoutputfile","mupinput","mupwidth"]}
-,
-"abntcite.sty":{"envs":{},"deps":{},"cmds":["bibliographystyle","cite","citeonline","citeyear","citeauthor","citeauthoronline","leftovercite","rightovercite","citeoptions","bibtextitlecommand"]}
-,
-"abntex2.cls":{"envs":["capa","fichacatalografica","errata","folhadeaprovacao","dedicatoria","agradecimentos","epigrafe","resumo","resumoumacoluna","siglas","simbolos","citacao","alineas","subalineas","incisos","apendicesenv","anexosenv","folhaderosto*"],"deps":["ifthen.sty","s-memoir.cls","textcase.sty","hyperref.sty","bookmark.sty","babel.sty","enumitem.sty","calc.sty"],"cmds":["ABNTEXfontereduzida","pretextualchapter","titulo","imprimirtitulo","tituloestrangeiro","imprimirtituloestrangeiro","autor","imprimirautor","data","imprimirdata","instituicao","imprimirinstituicao","local","imprimirlocal","preambulo","imprimirpreambulo","tipotrabalho","imprimirtipotrabalho","orientador","imprimirorientador","imprimirorientadorRotulo","coorientador","imprimircoorientador","imprimircoorientadorRotulo","phantompart","pretextual","imprimircapa","imprimirfolhaderosto","folhaderostoname","folhaderostocontent","errataname","folhadeaprovacaoname","assinatura","ABNTEXsignwidth","ABNTEXsignthickness","ABNTEXsignskip","dedicatorianame","agradecimentosname","epigraphname","resumoname","listadesiglasname","listadesimbolosname","subsubsubsection","textual","ABNTEXchapterfont","ABNTEXchapterfontsize","ABNTEXpartfont","ABNTEXpartfontsize","ABNTEXsectionfont","ABNTEXsectionfontsize","ABNTEXsubsectionfont","ABNTEXsubsectionfontsize","ABNTEXsubsubsectionfont","ABNTEXsubsubsectionfontsize","ABNTEXsubsubsubsectionfont","ABNTEXsubsubsubsectionfontsize","ABNTEXcitacaorecuo","ABNTEXcaptiondelim","IBGEtab","ibgetab","fonte","nota","IBGEtabfontsize","postextual","apendices","apendicename","apendicesname","partpage","partapendices","anexos","anexoname","anexosname","partanexos","abnTeX","coorientadorname","fontename","notaname","orientadorname","captionsbrazil","datebrazil","extrasbrazil","noextrasbrazil","prefacename","bibname","chaptername","enclname","ccname","headtoname","pagename","seename","alsoname","proofname","glossaryname","ord","orda","ro","ra","ABNTEXcaptionfontedelim","ABNTEXchapterupperifneeded","ABNTEXcsign","ABNTEXisarticle","ABNTEXistwocolumn","ABNTEXsectionupperifneeded","ABNTEXsign","ABNTEXsubsectionupperifneeded","ABNTEXsubsubsectionupperifneeded","ABNTEXsubsubsubsectionupperifneeded","cftbeforesubsubsubsectionskip","cftlastnumwidth","cftsubsubsubsectionfont","chapternamenumlength","configurecaptions","configureseparator","imprimirfolhaderostonostar","imprimirfolhaderostostar","myptabbox","myptabboxwidth","olddate","PRIVATEapendiceconfig","PRIVATEbookmarkthis","PRIVATEclearpageifneeded","setsubsubsubsecheadstyle","switchchapname","theforeigntitle","tocinnonumchapter","tocpartanexos","tocpartapendices","tocprintchapter","tocprintchapternonum"]}
-,
-"abntex2abrev.sty":{"envs":{},"deps":["ifthen.sty"],"cmds":["NoAbrevending","Capitalize","TESTabrev","abrevending","Abrevending","abrev","Abrev","ABNTEXabrev","ABNTEXabrevp"]}
-,
-"abntex2cite.sty":{"envs":{},"deps":["ifthen.sty","calc.sty","abntex2abrev.sty","setspace.sty","url.sty","ifpdf.sty","ifxetex.sty","breakurl.sty","relsize.sty"],"cmds":["citeonline","apud","apudonline","footciteref","Idem","Ibidem","opcit","passim","loccit","cfcite","etseq","citeauthoronline","citeauthor","citeyear","citetext","authorcapstyle","authorstyle","yearstyle","citebrackets","bibtextitlecommand","citeoption","ABCIaddtocitelist","ABCIaftercitex","ABCIaux","ABCIauxlen","ABCIccomma","ABCIcitation","ABCIcitecolondefault","ABCIcitecomma","ABCIcitecommadefault","ABCIcitelist","ABCIcomma","ABCIdemand","ABCIfirst","ABCIgetcitetext","ABCIgetcitetextecho","ABCIinitcitecomma","ABCIlast","ABCIlistwithoutmaximum","ABCInewblock","ABCIoutputgroupedcitelist","ABCIprocesscitetext","ABCIscriptfont","ABCIsortlist","ABCItemplist","ABCItempslist","ABCIthebibliformat","ABCIthebiblihook","ABCItoken","AbntCitetype","AbntCitetypeALF","abntnextkey","abntrefinfo","addtociteoptionlist","AfterTheBibliography","apudname","bibciteEXPL","bibciteIMPL","bibciteYEAR","biblabelsep","biblabeltext","cfcitename","citeclose","citeifnotcited","citen","citenum","citenumstyle","citeonlineifnotcited","citeopen","citeoptionlist","etseqname","grabseven","grabsix","hiddenbibitem","Ibidemname","Idemname","ifcited","ifconsecutive","IfSubStringInString","loccitname","maximuminlist","minimumbiblabelwidth","opcitname","optionaltextstyle","passimname","setcitebrackets","texforht","theABCIaux","theABCImax","thebibliographyBkUp"]}
-,
-"abntexto.cls":{"envs":["topics"],"deps":["keyval.sty"],"cmds":["setfontsize","definefontsize","sizedef","spacing","singlesp","onehalfsp","doublesp","setlayout","pretextual","textual","tocifont","tociifont","tociiifont","tocivfont","tocvfont","sectionfont","subsectionfont","subsubsectionfont","paragraphfont","subparagraphfont","abovesection","abovesubsection","abovesubsubsection","aboveparagraph","abovesubparagraph","belowsection","belowsubsection","belowsubsubsection","belowparagraph","belowsubparagraph","maketoc","place","legend","src","aboveplace","belowplace","definelegendplace","enquote","Enquote","annex","appendixlabelwidth","annexlabelwidth","corrprinton","corrprintoff","addtotoc","advcount","annexlabelbox","appendixlabelbox","cfparagraph","cfsection","cfsubparagraph","cfsubsection","cfsubsubsection","countannex","countappendix","countparagraph","countseclevel","countsection","countsubparagraph","countsubsection","countsubsubsection","counttopics","counttopicsdepth","currspacing","Enter","extlabelwidth","extleaders","extline","extpagenumwidth","extrightmargin","hangfrom","heading","hreftocline","identifyparagraph","identifysection","identifysubparagraph","identifysubsection","identifysubsubsection","indexcard","indexcardA","indexcardbar","judgeline","legendlabel","legendmaxwidth","legendname","makeext","marksection","marksubsection","nbpar","noindentfirst","recountseci","recountsecii","recountseciii","recountseciv","setcurrlabel","setnormalsize","setsmall","srclabel","startparagraph","startsection","startsubparagraph","startsubsection","startsubsubsection","theannex","theappendix","thelegend","toclabelbox","toclabelwidth","tocname","topicsitem","topicslabeli","topicslabelii","topicslabelwidth","topicsmakelabel","tryindentfirst","twonewpage","xindexcardbar"]}
-,
-"aboensis.sty":{"envs":{},"deps":["fontspec.sty","xcolor.sty"],"cmds":["ifFibonacciNumbers","FibonacciNumberstrue","FibonacciNumbersfalse","abtildes","abrubricred","abrubricgreen","abrubricblue","abotherrubricred","abotherrubricgreen","abotherrubricblue","absetrubriccolor","absetotherrubriccolor","absettextcolor","abrubric","abtorubric","abotherrubric","abtootherrubric","abtext","abcursivefamily","aboensis","Aboensis","absetcolormixpercentage","absetothercolormixpercentage","abcapital","abcapitalother","abinitial","abinitialother","abinitialtwo","abinitialothertwo","abinitwpos","abinitowpos","abinittwowpos","abinitotwowpos","abindent","abcursiveinitial","abcursiveinitialwithpos","abstartchapter","abstartchaptertwo","abstartchapterother","abstartchapterothertwo","abstartchapterwithpos","abstartchaptertwowithpos","abstartchapterotherwithpos","abstartchapterothertwowithpos","ableftindex","abrightindex","abupindex","abdownindex","abl","abb","abpara","abparaother","ablibra","abmark","abmarc","abmk","absolidus","abdenarius","ablod","abquintin","abore","abortug","abpenning","ablispund","ablispundtwo","ablispundthree","ablispundfour","abskeppund","abskeppundtwo","abbesmanspund","abpund","abpundtwo","abpundthree","abpundfour","abskaalpund","abmarkpund","abmarkpundtwo","abtunna","abtunnor","abspann","abfjarding","abfjardingtwo","absattung","abskappa","abskole","abkappa","abkappatwo","abthyn","abkolmannes","abkylmitta","ablast","abvakka","abmodius","absoll","abkarpio","abkarpiotwo","abparmas","abdragu","abaam","ablass","absommarlass","abvinterlass","absommardragu","abvinterdragu","abfangh","abkarve","abambar","abstop","abkanna","abkannatwo","abotting","abbaat","abquarter","abfat","abstang","abaln","abhalvaln","abfot","abmil","abrast","abvika","abvecka","abfamn","abtum","abspannland","abtunnland","abpundland","abpundlandtwo","abmarksland","abmarkslandtwo","aboresland","abortugsland","abpenningsland","abskattemark","abhalvbol","abbol","abstycke","abdacker","abtimber","abtimmer","abothernum","abroman","abthousand","abhundred","abromanother","abthird","abfourth","absixth","abitem"]}
-,
-"abraces.sty":{"envs":{},"deps":["xparse.sty"],"cmds":["aoverbrace","aunderbrace","newbracespec","bracecolor","overbrace","underbrace","bracebox","bracescript","bracefil","aupbracefill","adownbracefill","downbracketend","upbracketend","genbrace","TrimArgSpaces"]}
-,
-"abspos.sty":{"envs":{},"deps":["expl3.sty","atbegshi.sty"],"cmds":["absposset","absput","absputcoffin"]}
-,
-"abstract.sty":{"envs":["onecolabstract"],"deps":{},"cmds":["saythanks","abstractnamefont","abstracttextfont","abstitlestyle","absleftindent","absrightindent","absparindent","absparsep","abslabeldelim","absnamepos","abstitleskip","appendiargdef"]}
-,
-"academicons.sty":{"envs":{},"deps":{},"cmds":["aiicon","aiAcademia","aiAcademiaSquare","aiAcclaim","aiAcclaimSquare","aiACM","aiACMSquare","aiACMDL","aiACMDLSquare","aiADS","aiADSSquare","aiAfricArXiv","aiAfricArXivSquare","aiArchive","aiArchiveSquare","aiarXiv","aiarXivSquare","aibioRxiv","aibioRxivSquare","aiCEUR","aiCEURSquare","aiCIENCIAVITAE","aiCIENCIAVITAESquare","aiConversation","aiConversationSquare","aiCoursera","aiCourseraSquare","aiCrossref","aiCrossrefSquare","aiCV","aiCVSquare","aiDataCite","aiDataCiteSquare","aiDataverse","aiDataverseSquare","aidblp","aidblpSquare","aiDepsy","aiDepsySquare","aiDoi","aiDoiSquare","aiDryad","aiDryadSquare","aiElsevier","aiElsevierSquare","aiIDEASRePEc","aiIDEASRePEcSquare","aiFigshare","aiFigshareSquare","aiGoogleScholar","aiGoogleScholarSquare","aiHAL","aiHALSquare","aiHypothesis","aiHypothesisSquare","aiIEEE","aiIEEESquare","aiImpactstory","aiImpactstorySquare","aiiNaturalist","aiiNaturalistSquare","aiINPN","aiINPNSquare","aiInspire","aiInspireSquare","aiISIDORE","aiISIDORESquare","aiJSTOR","aiJSTORSquare","aiLattes","aiLattesSquare","aiMathOverflow","aiMathOverflowSquare","aiMendeley","aiMendeleySquare","aiMoodle","aiMoodleSquare","aiMTMT","aiMTMTSquare","aiNAKALA","aiNAKALASquare","aiClosedAccess","aiClosedAccessSquare","aiOBP","aiOBPSquare","aiOpenAccess","aiOpenAccessSquare","aiOpenData","aiOpenDataSquare","aiOpenMaterials","aiOpenMaterialsSquare","aiOpenEdition","aiOpenEditionSquare","aiOrcid","aiOrcidSquare","aiOSF","aiOSFSquare","aiOverleaf","aiOverleafSquare","aiPhilPapers","aiPhilPapersSquare","aiPiazza","aiPiazzaSquare","aiPreregistered","aiPreregisteredSquare","aiProtocols","aiProtocolsSquare","aiPsyArXiv","aiPsyArXivSquare","aiPublons","aiPublonsSquare","aiPubMed","aiPubMedSquare","aiPubPeer","aiPubPeerSquare","aiResearcherID","aiResearcherIDSquare","aiResearchGate","aiResearchGateSquare","aiROR","aiRORSquare","aiSciHub","aiSciHubSquare","aiSciRate","aiSciRateSquare","aiScopus","aiScopusSquare","aiSemanticScholar","aiSemanticScholarSquare","aiSpringer","aiSpringerSquare","aiSSRN","aiSSRNSquare","aiStackOverflow","aiStackOverflowSquare","aiZenodo","aiZenodoSquare","aiZotero","aiZoteroSquare","AI"]}
-,
-"accanthis.sty":{"envs":{},"deps":["ifxetex.sty","ifluatex.sty","textcomp.sty","xkeyval.sty","fontenc.sty","fontaxes.sty"],"cmds":["accanthis","accanthisfamily"]}
-,
-"accents.sty":{"envs":{},"deps":{},"cmds":["ring","accentset","dddot","ddddot","underaccent","undertilde","mathaccentV"]}
-,
-"accsupp.sty":{"envs":{},"deps":["pdfescape.sty","iftex.sty","kvoptions.sty"],"cmds":["BeginAccSupp","AccSuppSetup","EndAccSupp","ActualTextDriverDefault"]}
-,
-"achemso.cls":{"envs":["scheme","chart","graph","acknowledgement","suppinfo","tocentry"],"deps":["xkeyval.sty","geometry.sty","caption.sty","float.sty","graphicx.sty","setspace.sty","url.sty","natbib.sty","mciteplus.sty","natmove.sty","xcolor.sty"],"cmds":["affiliation","alsoaffiliation","altaffiliation","email","fax","phone","title","SectionNumbersOff","SectionNumbersOn","SectionsOff","SectionsOn","AbstractOff","AbstractOn","latin","bibnote","bibnotemark","bibnotetext","abbreviations","acknowledgementname","acksize","affilfont","affilsize","authorfont","authorsize","capsize","chartname","emailfont","emailsize","graphname","keywords","printbibnotes","refsize","schemename","suppinfoname","suppsize","thebibnote","thechart","thegraph","thescheme","titlefont","titlesize","tocentryname","tocsize","plainref"]}
-,
-"achemso.sty":{"envs":{},"deps":["xkeyval.sty","natbib.sty","mciteplus.sty","natmove.sty","xcolor.sty"],"cmds":["latin","bibnote","bibnotemark","bibnotetext","printbibnotes","thebibnote"]}
-,
-"acm-book.cls":{"envs":["sidebar"],"deps":["url.sty","s-book.cls","times.sty","mathptm.sty","natbib.sty","mathtime.sty"],"cmds":["balancecolumns","centeroncapheight","chapterauthor","euro","mono","monster","nocaptionrule","nut","setpagenumber","setvspace","softraggedright","standardtextwidth","standardvspace","stringeql","thesidebarnumber","trimheight","trimwidth"]}
-,
-"acmart.cls":{"envs":["CCSXML","teaserfigure","theorem","conjecture","proposition","lemma","corollary","example","definition","printonly","screenonly","anonsuppress","acks","sidebar","marginfigure","margintable","translatedabstract","translatedabstract","descriptionFB","translatedabstract","translatedabstract"],"deps":["xkeyval.sty","xstring.sty","iftex.sty","s-amsart.cls","microtype.sty","etoolbox.sty","booktabs.sty","refcount.sty","totpages.sty","environ.sty","setspace.sty","textcase.sty","natbib.sty","hyperxmp.sty","hyperref.sty","graphicx.sty","xcolor.sty","geometry.sty","manyfoot.sty","cmap.sty","fontenc.sty","newtxmath.sty","libertine.sty","zi4.sty","caption.sty","float.sty","comment.sty","fancyhdr.sty","draftwatermark.sty","balance.sty","framed.sty","pbalance.sty","babel.sty"],"cmds":["acmJournal","acmConference","acmBooktitle","editor","subtitle","orcid","affiliation","additionalaffiliation","position","institution","department","streetaddress","city","state","postcode","country","authorsaddresses","titlenote","subtitlenote","authornote","authornotemark","acmVolume","acmNumber","acmArticle","acmYear","acmMonth","acmArticleSeq","acmSubmissionID","acmPrice","acmISBN","acmDOI","acmBadgeR","acmBadgeL","startPage","ccsdesc","setcopyright","setcctype","copyrightyear","settopmatter","received","setengagemetadata","acmArticleType","acmCodeLink","acmDataLink","Description","anon","grantsponsor","grantnum","AtBeginMaketitle","shortcite","citeA","citeANP","citeN","citeNN","citeNP","citeyearNP","Sectionformat","realSectionformat","acksname","copyrightpermissionfootnoterule","noindentparagraph","showeprint","DH","NG","dj","ng","k","guillemotleft","guillemotright","guilsinglleft","guilsinglright","quotedblbase","quotesinglbase","textquotedbl","DJ","th","TH","dh","Hwithstroke","hwithstroke","textogonekcentered","guillemetleft","guillemetright","translatedtitle","translatedsubtitle","translatedkeywords","captionsenglish","dateenglish","extrasenglish","noextrasenglish","englishhyphenmins","britishhyphenmins","americanhyphenmins","prefacename","bibname","chaptername","enclname","ccname","headtoname","pagename","seename","alsoname","proofname","glossaryname","frenchsetup","frenchbsetup","AddThinSpaceBeforeFootnotes","at","AutoSpaceBeforeFDP","boi","bname","bsc","CaptionSeparator","captionsfrench","circonflexe","dateacadian","datefrench","DecimalMathComma","degre","degres","descindentFB","dotFFN","extrasfrench","FBcolonspace","FBdatebox","FBdatespace","FBeverylineguill","FBfigtabshape","FBfnindent","FBFrenchFootnotesfalse","FBFrenchFootnotestrue","FBFrenchSuperscriptstrue","FBGlobalLayoutFrenchtrue","FBgspchar","FBguillopen","FBguillspace","FBInnerGuillSinglefalse","FBInnerGuillSingletrue","FBListItemsAsParfalse","FBListItemsAsPartrue","FBLowercaseSuperscriptstrue","FBmedkern","FBPartNameFulltrue","FBsetspaces","FBSmallCapsFigTabCaptionstrue","FBStandardEnumerateEnvtrue","FBStandardItemizeEnvtrue","FBStandardItemLabelstrue","FBStandardLayouttrue","FBStandardListSpacingtrue","FBStandardListstrue","FBsupR","FBsupS","FBtextellipsis","FBthickkern","FBthinspace","FBthousandsep","FBWarning","fg","fgi","fgii","fprimo","frenchdate","FrenchEnumerate","FrenchFootnotes","FrenchLabelItem","frenchpartfirst","frenchpartsecond","FrenchPopularEnumerate","frenchtoday","Frlabelitemi","Frlabelitemii","Frlabelitemiii","Frlabelitemiv","frquote","fup","ieme","iemes","ier","iere","ieres","iers","ifFBAutoSpaceFootnotes","ifFBCompactItemize","ifFBCustomiseFigTabCaptions","ifFBfrench","ifFBFrenchFootnotes","ifFBFrenchSuperscripts","ifFBGlobalLayoutFrench","ifFBIndentFirst","ifFBINGuillSpace","ifFBListItemsAsPar","ifFBListOldLayout","ifFBLowercaseSuperscripts","ifFBLuaTeX","ifFBOldFigTabCaptions","ifFBOriginalTypewriter","ifFBPartNameFull","ifFBReduceListSpacing","ifFBShowOptions","ifFBSmallCapsFigTabCaptions","ifFBStandardEnumerateEnv","ifFBStandardItemizeEnv","ifFBStandardItemLabels","ifFBStandardLayout","ifFBStandardLists","ifFBStandardListSpacing","ifFBSuppressWarning","ifFBThinColonSpace","ifFBThinSpaceInFrenchNumbers","ifFBunicode","ifFBXeTeX","ifLaTeXe","kernFFN","labelindentFB","labelwidthFB","leftmarginFB","listfigurename","listindentFB","No","no","NoAutoSpaceBeforeFDP","NoAutoSpacing","NoEveryParQuote","noextrasfrench","nombre","nos","Nos","og","ogi","ogii","parindentFFN","partfirst","partnameord","partsecond","primo","quarto","rmfamilyFB","secundo","sffamilyFB","StandardFootnotes","StandardMathComma","tertio","tild","ttfamilyFB","up","xspace","captionsgerman","dategerman","extrasgerman","noextrasgerman","dq","tosstrue","tossfalse","mdqon","mdqoff","ck"]}
-,
-"acro.sty":{"envs":{},"deps":["l3keys2e.sty","translations.sty","etoolbox.sty"],"cmds":["DeclareAcronym","NewAcroPreset","RenewAcroPreset","DeclareAcroPreset","ac","Ac","acp","Acp","iac","Iac","acs","Acs","acsp","Acsp","iacs","Iacs","acl","Acl","aclp","Aclp","iacl","Iacl","aca","Aca","acap","Acap","iaca","Iaca","acf","Acf","acfp","Acfp","iacf","Iacf","printacronyms","acsetup","acrodotfill","acbarrier","acdot","acspace","abbrdot","aciftrailing","acuse","acuseall","acreset","acresetall","acrotranslate","acswitchoff","acswitchon","NewAcroTemplate","RenewAcroTemplate","SetupAcroTemplate","SetupNextAcroTemplate","AcroTemplateType","AcroTemplateName","acrolistname","acrowrite","acroformat","acroshow","acroifTF","acroifT","acroifF","acroifbooleanTF","acroifbooleanT","acroifbooleanF","acroifallTF","acroifallT","acroifallF","acroifanyTF","acroifanyT","acroifanyF","acroiftagTF","acroiftagT","acroiftagF","acroifstarredTF","acroifstarredT","acroifstarredF","AcroPropertiesMap","AcroAcronymsMap","AcronymID","AcroMapBreak","AcroPropertiesSet","acroifusedTF","acroifusedT","acroifusedF","acroiffirstTF","acroiffirstT","acroiffirstF","acroifsingleTF","acroifsingleT","acroifsingleF","acrogroupcite","acroifchapterTF","acroifchapterT","acroifchapterF","acroifpagesTF","acroifpagesT","acroifpagesF","acropages","acronopagerange","acroneedpages","acropagefill","acronymsmap","acronymsmapTF","acronymsmapT","acronymsmapF","AcronymTable","AcroAddRow","AcroNeedPackage","AcroRerun","DeclareAcroEnding","DeclareAcroArticle","DeclareAcroTranslation","AddAcroTranslations","DeclareAcroProperty","DeclareAcroPropertyAlias","MakeAcroPropertyAlias","NewAcroCommand","RenewAcroCommand","DeclareAcroCommand","ProvideAcroCommand","UseAcroTemplate","acrocite","acrodonotuse","acroplural","acroindefinite","acroupper","acrofull","nospace","AcroModule","AcroModuleEnd","AcroStyle","AcroMap","acroloadstyle","acsimple","acfootnote","acgobbletrail","acroheading","acropreamble","acropostamble","acrofield","acroprintfield","acroiffieldTF","acroifanyfieldTF","acroifallfieldsTF","acroifpagefieldTF","acroifpropertyTF","acroifpropertyT","acroifpropertyF","acshow","acroendfootnote"]}
-,
-"acromemory.sty":{"envs":{},"deps":["xkeyval.sty","eforms.sty","aeb-comment.sty","icon-appr.sty","multido.sty","graphicx.sty"],"cmds":["isPackage","amEmbedTiles","insertTiles","messageBox","playItAgain","insertTilesL","insertTilesR","tryItAgain","helpImage","rolloverHelpButton","initFirstiMsg","initFirstiiMsg","acromemoryifalse","acromemoryitrue","amIconObjs","amIconPic","amImageHt","amImageWd","AMIndxList","amNumImages","amTileHt","amtileKVs","amTileWd","bDebug","iconPresets","ifacromemoryi","ifincludehelp","imageImportPath","includehelpfalse","includehelptrue","insertTilesii","memDebug","muAction","nTotalTiles","RanIdentifier","theHelpCaption"]}
-,
-"acronym.sty":{"envs":["acronym"],"deps":["suffix.sty","xstring.sty","relsize.sty"],"cmds":["ac","Ac","acf","Acf","acfa","Acfa","acffont","acfi","Acfi","acfia","Acfia","acfp","Acfp","acfpa","Acfpa","acfsfont","acl","Acl","aclabelfont","aclp","Aclp","aclu","Aclu","aclua","Aclua","acp","Acp","acresetall","acro","acrodef","acrodefindefinite","acrodefplural","acroextra","acroindefinite","acroplural","acs","acsfont","acsp","acspa","acsu","acsua","acused","iac","Iac","newacro","newacroindefinite","newacroplural"]}
-,
-"acrosort.sty":{"envs":{},"deps":["eforms.sty","icon-appr.sty","multido.sty","graphicx.sty"],"cmds":["isPackage","asEmbedTiles","insertTiles","StartSort","StopSort","ClearSort","customStartJS","customFinishJS","appendStartSortJS","appendStopSortJS","appendClearSortJS","asGrphWd","asIconObjs","asIconPic","asNumSideShowPics","asTileHt","asTileWd","asTtlGrphHt","astileKVs","iconPresets","sortCustomFinishJS","sortCustomStartJS"]}
-,
-"actcodes.sty":{"envs":{},"deps":{},"cmds":["MakeActiveAss","MakeActive","MakeActiveDef","MakeActiveLet","MakeOther","MakeActiveOther","withcsname","ifltx","PushCatMakeLetter","PopLetterCat","PushCatMakeLetterAt","PopLetterCatAt","plainpkginfo"]}
-,
-"actuarialangle.sty":{"envs":{},"deps":["pict2e.sty"],"cmds":["actuarialangle","angl","angln","anglr","anglk","overanglebracket","group"]}
-,
-"actuarialsymbol.sty":{"envs":{},"deps":["amsmath.sty","actuarialangle.sty"],"cmds":["actsymb","twoletsymb","twoletkern","nthtop","nthbottom","nthtopsep","nthtopskip","nthbottomsep","nthbottomskip","lx","Lx","dx","Dx","px","qx","eringx","Ax","Ex","ax","sx","aringx","Px","Vx","Wx","premium","reserve","paidup","term","termxn","pureendow","pureendowxn","endow","endowxn","joint","IA","DA","IbA","DbA","ImA","DmA","Ia","Da","Is","Ds","firsttop","itop","secondtop","iitop","thirdtop","iiitop","firstbottom","ibottom","secondbottom","iibottom","thirdbottom","iiibottom"]}
-,
-"add2.sty":{"envs":{},"deps":{},"cmds":{}}
-,
-"addfont.sty":{"envs":{},"deps":["ifthen.sty","twoopt.sty"],"cmds":["addfont","addshape"]}
-,
-"addlines.sty":{"envs":{},"deps":["afterpage.sty","changepage.sty"],"cmds":["addlines","addline","squeezepage","removelines","removeline"]}
-,
-"addrset.sty":{"envs":{},"deps":{},"cmds":["addr","addrfr","addrfrom","addrto","byline","cclist","city","closeline","closeln","dateset","degree","dept","email","emailb","emailbfr","emailbto","emailc","emailcfr","emailcto","emailfr","emailfrom","emailto","encllist","fax","faxfr","faxfrom","faxmssg","faxto","fixadr","fname","fnamefr","fnameto","greet","greetfr","greetto","headline","initials","institute","jtitle","lname","lnamefr","lnameto","makeaddress","makeadr","makeletterhead","makelth","makesig","makesignature","mname","mnamefr","mnameto","name","namefr","namefrom","nameto","organization","pager","pagerfr","pagerfrom","pagerto","phone","phonea","phoneafr","phoneafrom","phoneato","phoneb","phonebfr","phonebfrom","phonebto","phonec","phonecfr","phonecfrom","phonecto","phoned","phonedfr","phonedfrom","phonedto","phonefr","phonefrom","phoneh","phonehfr","phonehto","phoneo","phoneofr","phoneoto","phoneto","plngadj","position","pppsitem","ppsitem","printaddrfrom","printaddrto","printemailbfrom","printemailbto","printemailcfrom","printemailcto","printemailfrom","printemailto","printfaxfrom","printfaxto","printfnamefrom","printfnameto","printgreetfrom","printgreetto","printlnamefrom","printlnameto","printnamefrom","printnameto","printpagerfrom","printpagerto","printphoneafrom","printphoneato","printphonebfrom","printphonebto","printphonecfrom","printphonecto","printphonedfrom","printphonedto","printphonefrom","printphonehfrom","printphonehto","printphoneofrom","printphoneoto","printphoneto","psitem","re","regarding","release","role","sender","setadrfr","setadrto","shorthead","sigacross","siglist","signame","signature","socsec","SSnumto","staddr","state","subdept","subre","zip"]}
-,
-"adfarrows.sty":{"envs":{},"deps":["pifont.sty","fp.sty"],"cmds":["adfarrow","adfhalfarrowright","adfhalfarrowleft","adfhalfarrowrightsolid","adfhalfarrowleftsolid","adfarrown","adfarrowne","adfarrowe","adfarrowse","adfarrows","adfarrowsw","adfarroww","adfarrownw"]}
-,
-"adfbullets.sty":{"envs":{},"deps":["pifont.sty"],"cmds":["adfbullet"]}
-,
-"adforn.sty":{"envs":{},"deps":["pifont.sty"],"cmds":["adforn","adfast","adfbullet","adfclosedflourishleft","adfclosedflourishright","adfdiamond","adfdoubleflourishleft","adfdoubleflourishright","adfdoublesharpflourishleft","adfdoublesharpflourishright","adfdownhalfleafleft","adfdownhalfleafright","adfdownleafleft","adfdownleafright","adfflatdownhalfleafleft","adfflatdownhalfleafright","adfflatdownoutlineleafleft","adfflatdownoutlineleafright","adfflatleafleft","adfflatleafoutlineleft","adfflatleafoutlineright","adfflatleafright","adfflatleafsolidleft","adfflatleafsolidright","adfflourishleft","adfflourishleftdouble","adfflourishright","adfflourishrightdouble","adfflowerleft","adfflowerright","adfgee","adfhalfleafleft","adfhalfleafright","adfhalfleftarrow","adfhalfleftarrowhead","adfhalfrightarrow","adfhalfrightarrowhead","adfhangingflatleafleft","adfhangingflatleafright","adfhangingleafleft","adfhangingleafright","adfleafleft","adfleafright","adfleftarrowhead","adfopenflourishleft","adfopenflourishright","adfoutlineleafleft","adfoutlineleafright","adfrightarrowhead","adfS","adfsharpflourishleft","adfsharpflourishright","adfsickleflourishleft","adfsickleflourishright","adfsingleflourishleft","adfsingleflourishright","adfsmallhangingleafleft","adfsmallhangingleafright","adfsmallleafleft","adfsmallleafright","adfsolidleafleft","adfsolidleafright","adfsquare","adftripleflourishleft","adftripleflourishright","adfwavesleft","adfwavesright"]}
-,
-"adigraph.sty":{"envs":{},"deps":["etoolbox.sty","fp.sty","xparse.sty","xstring.sty","tikz.sty","tikzlibrarycalc.sty"],"cmds":["NewAdigraph","RenewAdigraph","EnableAdigraphs","DisableAdigraphs","AdigraphApplyKleenePlusEdgeBuilder","AdigraphBackwardPathColor","AdigraphBackwardPathWidth","AdigraphBuildEdge","AdigraphBuildEdgeWrapper","AdigraphBuildNode","AdigraphBuildNodeWrapper","AdigraphBuildPath","AdigraphCalculateInclination","AdigraphCalculateOrientation","AdigraphCountPaths","AdigraphCurrentElaboratingEdge","AdigraphCurrentNode","AdigraphCutBuilder","AdigraphCyan","AdigraphDefaultColor","AdigraphDefaultWidth","AdigraphDrawEdge","AdigraphDrawNode","AdigraphEdgeBuilder","AdigraphEdgeDrawer","AdigraphEdgeList","AdigraphElaboratePathColors","AdigraphElaboratePathWidth","AdigraphElaboratePath","AdigraphExecuteCutBuilder","AdigraphFirstEdgeRenormalizer","AdigraphFirstNode","AdigraphForwardPathColor","AdigraphForwardPathWidth","AdigraphGenerateNodeName","AdigraphKleenePlusEdgeBuilder","AdigraphKleeneStarEdgeBuilder","AdigraphLastParsedNode","AdigraphMemorizeEdge","AdigraphMemorizeNode","AdigraphNodeBuilder","AdigraphNodeCounterSecondWrapper","AdigraphNodeCounterWrapper","AdigraphNodeCounter","AdigraphNodeList","AdigraphNodeName","AdigraphNodesCounter","AdigraphPathBuilder","AdigraphProcessAugmentingPathsList","AdigraphProcessAugmentingPaths","AdigraphProcessCuts","AdigraphProcessEdges","AdigraphProcessNodes","AdigraphProcessPaths","AdigraphRed","AdigraphRom","AdigraphSecondEdgeRenormalizer","AdigraphSecondNode","AdigraphSimpleSum","AdigraphTempList","AdigraphTextualZero","AdigraphTwinEdgeWeight","AdigraphVersionNumber","AdigraphWeightA","AdigraphWeightB","AdigraphZero","Adigraph","myCosSum","mySinSum","sumOfOrientations","theAdigraphAdjacentNodes","theAdigraphCurrentNodeCounter","theAdigraphCurrentPathNumber","theAdigraphNumberOfPaths","theAdigraphTotalNodeCounter"]}
-,
-"adjcalc.sty":{"envs":{},"deps":["calc.sty","pgf.sty"],"cmds":["adjcalcset","adjsetlength","adjaddtolength","adjsetcounter","adjaddtocounter","adjsetlengthdefault"]}
-,
-"adjmulticol.sty":{"envs":["adjmulticols","adjmulticols*"],"deps":["multicol.sty"],"cmds":["adjmulticols","endadjmulticols"]}
-,
-"adjustbox.sty":{"envs":["adjustbox","bgimagebox","bgimagebox*","fgimagebox","fgimagebox*","backgroundbox","backgroundbox*","foregroundbox","foregroundbox*","centerbox","leftalignbox","rightalignbox","innersidebox","outersidebox","centerpagebox","pagecenterbox","pageleftalignbox","pagerightalignbox","pageinnerbox","pageouterbox","textareacenterbox","textarealeftalignbox","textarearightalignbox","textareainnerbox","textareaouterbox","bgcolorbox","bgcolorbox*","stackbox","adjnofloat"],"deps":["trimclip.sty","ifoddpage.sty","varwidth.sty","pgf.sty","calc.sty"],"cmds":["adjustbox","adjustimage","adjincludegraphics","newadjustboxenv","renewadjustboxenv","provideadjustboxenv","declareadjustboxenv","newadjustboxcmd","renewadjustboxcmd","provideadjustboxcmd","declareadjustboxcmd","newadjustimage","renewadjustimage","provideadjustimage","declareadjustimage","NewAdjustImage","RenewAdjustImage","ProvideAdjustImage","DeclareAdjustImage","adjustboxset","bgimagebox","fgimagebox","backgroundbox","foregroundbox","Width","Height","Depth","Totalheight","smallestside","largestside","Smallestside","Largestside","minsizebox","maxsizebox","rndcornersbox","rndframebox","rndfbox","adjboxvtop","adjboxvbottom","adjboxvcenter","centerbox","leftalignbox","rightalignbox","innersidebox","outersidebox","centerpagebox","pagecenterbox","pageleftalignbox","pagerightalignbox","pageinnerbox","pageouterbox","textareacenterbox","textarealeftalignbox","textarearightalignbox","textareainnerbox","textareaouterbox","lapbox","bgcolorbox","pwidth","pheight","pdepth","ptotalheight","pdfpxdimen","stackbox","adjnofloat","endadjnofloat","phantombox","newadjustboxkey","renewadjustboxkey","provideadjustboxkey","defadjustboxkey"]}
-,
-"adobecaslon.sty":{"envs":{},"deps":["kvoptions.sty","ifthen.sty"],"cmds":["adobecaslonfamily","textadobecaslon","sbseries","textsb","adobecaslonexpert","adobecaslonosf","adobecaslonalternate","adobecaslonlongs","adobecasloneighteenth","adobecaslonswashit","adobecaslonswashcaps","adobecaslonornaments"]}
-,
-"adrlist.sty":{"envs":{},"deps":["ifthen.sty"],"cmds":["ForEachAddress","Title","Opening","Sex","Firstname","Name","Address","Telephone","Telefax","EMail","PrivateNumber","ifstringcompare","concat","keyword","contents","ReadNextAddress","Delimiter","Emptystring","KeyW","KeyWEMail","KeyWTelefax","KeyWTelephone","theCommunication"]}
-,
-"adtrees.sty":{"envs":["pathlikeadtree","ATtabulardisplay","ATtabular"],"deps":["cancel.sty","epic.sty"],"cmds":["ATm","ATl","ATr","ATb","ATs","ATle","ATre","ATbe","ATrc","ATlc","ATbc","ATxl","ATxr","ATlmu","ATrmu","ATbmu","ATvcentre","AThcentre","ATcentre","ATlL","ATrL","ATbL","ATlA","ATrA","ATbA","ATlLA","ATrLA","ATbLA","ATxlL","ATxrL","ATxlA","ATxrA","ATxlLA","ATxrLA","ATleL","ATlcL","ATlmuL","ATleA","ATlcA","ATlmuA","ATleLA","ATlcLA","ATlmuLA","ATreL","ATrcL","ATrmuL","ATreA","ATrcA","ATrmuA","ATreLA","ATrcLA","ATrmuLA","ATbeL","ATbcL","ATbmuL","ATbeA","ATbcA","ATbmuA","ATbeLA","ATbcLA","ATbmuLA","ATnormalangle","ATwideangle","ATextrawideangle","ATpreadpositionskip","ATfirstinteradpositionskip","ATsecondinteradpositionskip","ATpostadpositionskip","ATfirstattrskip","ATinterattrskip","ATpremorphemeskip","ATintermorphemeskip","ATpostmorphemeskip","ATMorphemeBox","ATGrammarCharacterBox","ATAttributeBox","ATSummarySymbol","ATleftbranch","ATrightbranch","ATcircle","ATpathinterskip","ATpathunitlength","ATpicskip","ATpathlinethickness","ATpathlabelhspace","ATpathlabelvspace","ATnGCBox","ATlGCBox","ATpathpichook","ATtabskip","ATtabindent","ATTabular","ATtabularadpositionblock","ATtabularmorphemeblock","ATtabularsummaryblock","ATtabularfirstattribute","ATtabularnextattribute","ATtabularsubtrees","ATlinearise","ATLinear","ATNormal","ATlinearadpositionblock","ATlinearfirstattribute","ATlinearnextattribute","ATlinearsubtrees","ATlinearmorphemeblock","ATlinearsummaryblock","endpathlikeadtree","pathlikeadtree"]}
-,
-"advdate.sty":{"envs":{},"deps":{},"cmds":["AdvanceDate","DayAfter","SaveDate","SetDate","ThisDay","ThisMonth","ThisYear","AdvMonth","AdvYear","FixMonth","FixDate"]}
-,
-"ae.sty":{"envs":{},"deps":["fontenc.sty"],"cmds":["DH","NG","dj","ng","k","guillemotleft","guillemotright","guilsinglleft","guilsinglright","quotedblbase","quotesinglbase","textquotedbl","DJ","th","TH","dh","Hwithstroke","hwithstroke","textogonekcentered","guillemetleft","guillemetright","fileversion","filedate"]}
-,
-"aeb-comment.sty":{"envs":{},"deps":{},"cmds":{}}
-,
-"aeb-minitoc.sty":{"envs":["minitocfmt"],"deps":{},"cmds":["TOPLevel","BTMLevel","TOCLevels","insertminitoc","mtoclabel","declaretocfmt","mtocgobble","miniorfulltoc","FmtTOCEntry","NoFmtTOCEntry","mtocCL","mtocref","ifMiniTocListings","MiniTocListingsfalse","MiniTocListingstrue","BTMLevelNum","csarg","insertminitocNOT","numBoxWidth","NUMLevel","SECNUM","TOCEntryNum","TOPLevelNum"]}
-,
-"aeb_dad.sty":{"envs":{},"deps":["annot_pro.sty","xkeyval.sty","calc.sty","refcount.sty"],"cmds":["initDDGame","ddDimens","ddGameIcon","ddTargetOfIcon","ddTargetCaption","ddTargetFmt","ddReset","ddRightMsg","ddWrongMsg","ddDragOnlyOne","ddExternalMsg","ddBadAppMsg","ddBtnAppr","ddGameIconArgs","ddTrueName","theaebdadcnt","thisDDNAME","thisDDName"]}
-,
-"aeb_envelope.sty":{"envs":{},"deps":["xkeyval.sty","graphicx.sty","aeb_pro.sty"],"cmds":["mailTo","assembleEnvelope","aebenvDimensions","addressEnv","inputEnvExecJS","setEnvDimensions","setAddressEnv","toggleAttachmentsPanel","mailtoName","mailtoFrom","mailtoMessageEnvelope","mailtoBCC","mailtoCC","mailtoEmail","mailtoMessageBody","mailtoSubject","mailtoUI","displayAddr","addressEnvAdobei","addressEnvAdobeii","addressEnvAebi","addressEnvAebii","aebEnvPath","mailitNow","pathtoEnv"]}
-,
-"aeb_mlink.sty":{"envs":{},"deps":["xkeyval.sty","ifpdf.sty","ifxetex.sty","hyperref.sty","eforms.sty","refcount.sty","soul.sty"],"cmds":["ui","mlhypertext","mlsetLink","mlhyperlink","mlhyperref","mlnameref","mlNameref","mlhref","mlurl","mlfixOn","mlfixOff","mlfix","mlcs","OldStyleBoxesOn","OldStyleBoxesOff","mlMarksOn","mlMarksOff","turnSyllbCntOn","turnSyllbCntOff","aebnameref","atPage","bWebCustomize","CMT","CurrentBorderColor","eWebCustomize","FixupProc","iffixmlinks","iflinknotformed","ifmllinktotalchanged","ifmlmarks","ifoldstylequads","ifSmallRect","isWindow","itsunderline","labelRef","linknotformedfalse","linknotformedtrue","mlcsarg","mldb","mldblevel","mldbModeOff","mldbModeOn","mlDict","mlinkstotal","mllinktotalchangedfalse","mllinktotalchangedtrue","mllnkcontainer","mlmarksfalse","mlmarkstrue","mlMaxNSylls","mlpgMsg","MrkLnkLtr","oldstylequadsfalse","oldstylequadstrue","pboxRect","pgmonitoring","removelastspace","revCrackAt","setQuadBox","SmallRectfalse","smallRectTF","SmallRecttrue","syllableCnt","theView"]}
-,
-"aeb_mobile.sty":{"envs":{},"deps":["web.sty","eforms.sty"],"cmds":["scalefiguresOn","scalefiguresOff","mobPrint","mobPrintTip","mobToggleCols","mobToggleColsTip","mobFormPresets","ifsmartphone","smartphonetrue","smartphonefalse","ifmobscalefigures","mobscalefigurestrue","mobscalefiguresfalse","generateEvenPage","mobPrintIt","mobTwoCols"]}
-,
-"aeb_pro.sty":{"envs":["attachmentNames","rollover","printRollover","ocgAnime","rollover","printRollover","willClose","willSave","didSave","willPrint","didPrint","addJSToPageOpen","addJSToPageClose","addJSToPageOpenAt","addJSToPageCloseAt","everyPageOpen","everyPageClose","docassembly"],"deps":["ifpdf.sty","ifxetex.sty","xkeyval.sty","insdljs.sty","forms16be.sty","aeb-comment.sty","calc.sty","eso-pic.sty","web.sty","eforms.sty","exerquiz.sty","dljslib.sty","eq2db.sty","aebxmp.sty","graphicxsp.sty","pifont.sty"],"cmds":["autolabelNum","labelName","ahyperref","ahyperlink","ahyperextract","ahypercolor","attachmentNamesEnv","getdscrptCont","getdscrptStrCont","HandleDblQuotesfalse","HandleDblQuotestrue","ifHandleDblQuotes","resetahyperDefaults","setahyperDefaults","targetDictionary","btnAnime","placeAnimeCtrlBtnFaces","btnanimebtnsep","btnanimerowsep","btnAnimePresets","btnAnimeCtrlPresets","animeSetup","insertCtrlButtons","ctrlButtonsWrapper","btnAnimeCtrlW","btnAnimeCtrlH","btnAnimeGoToFirst","btnAnimeStepBack","btnAnimePlayBack","btnAnimePause","btnAnimePlayForward","btnAnimeStepForward","btnAnimeGoToLast","btnAnimePlus","btnAnimeMinus","btnAnimeFirstAction","btnAnimeSBAction","btnAnimePBAction","btnAnimePauseAction","btnAnimePFAction","btnAnimeSFAction","btnAnimeLastAction","btnAnimePlusAction","btnAnimeMinusAction","widthFirstRow","setspaceBtwnPMBtns","addSpaceBtwnPMBtns","aepnumWidgetsFirstRow","animeBtnBaseName","animeBtnFieldName","animeBtnSpeed","animeSetupPresets","btnAnimeSkini","btnAnimeSkinii","btnAnimeSkiniii","btnAnimeSkiniv","nFrames","numWidgetsFirstRow","numWidgetsFirstRowV","numWidgetsFirstRowVI","vspacectrlsep","xBld","eBld","DeclareAnime","animeBld","backAnimeBtn","clearAnimeBtn","forwardAnimeBtn","defineRC","insertRC","definePR","insertPR","animBaseName","animSpeed","addJStexHelpEnter","addJStexHelpExit","texHelp","resetaddJStexHelp","proofRollovers","turnProofingOn","turnProofingOff","animBldName","animeName","iftexhelptoggleOff","texHelpIndicator","texHelpIndicatorColor","texhelptoggleOfffalse","texhelptoggleOfftrue","theocSeq","DeclareInitView","additionalOpenAction","requiredVersionMsg","alternateDocumentURL","requiredVersionMsgRedirect","afterRequirementPassedJS","requiresVersion","atPage","canceleveryPageOpen","canceleveryPageClose","setDefaultFS","setPageTransition","setPageTransitionAt","addtoOptAttachments","prjinput","prjinclude","prjInputUser","prjIncludeUser","addWatermarkFromFile","importIcon","importSound","appopenDoc","insertPages","importDataObject","executeSave","sigInfo","sigFieldObj","signatureSign","certifyInvisibleSign","signatureSetSeedValue","declareImageAndPlacement","declareMultiImages","insertPreDocAssembly","placeImage","embedMultiPageImages","makePDFPackage","chngDocObjectTo","docSaveAs","addWatermarkFromText","aebAlternateDocumentURL","aebPageAction","aebpFAP","aebpopentoksP","ahrefexafter","attachFile","browseForDoc","createTemplate","DeclareJSHelper","earlyAttachForPkgs","extractPages","getcNameFromFileName","iconNameI","ifisPDFPackage","importAndSetImages","isPDFPackagefalse","isPDFPackagetrue","jsstrdotsp","jsstrsps","mailDoc","makePDFPortfolio","placeImageToBtn","pubAddToDocOpen","requiredVersionNumber","requiredVersionResult","retnAbsPathAs","setLayoutMag","setUIOptions","setWindowOptions","theDocObject","ifoptattachments","optattachmentstrue","optattachmentsfalse","ifoptattachmentsTaken","optattachmentsTakentrue","optattachmentsTakenfalse","pdfHelp","pdfPrintHelp","texPrintHelp","rollormargstring","pdfPHProof","texPHProof","aebsavehelp","ExecuteOptionsXSAVE","inputAttachmentRelatedFiles","inputBtnAnimeCode","inputCommonAnimeCode","inputOcgAnimeCode","pathToBtnCtrlIcons","pdfHelpCnt","pdfHelpi","pdfHelpIndicator","pdfHelpIndicatorColor","pdfPrintHelpi","DeclareDocInfo","DeclarePageLayout","universityLayout","titleLayout","authorLayout","topTitlePageProportion","DesignTitlePageTrailer","selectTocDings","selectColors","noSectionNumbers","tocLayout","sectionLayout","subsectionLayout","subsubsectionLayout","shadowhoffset","shadowvoffset","customSecHead","customSubsecHead","customSubsubsecHead","preparedLabel","prepared","talkdate","webtalkdate","talkdateLabel","talksite","customUniversity","customTitle","customAuthor","customToc","halignuniversity","haligntitle","halignauthor","halignsection","halignsubsection","halignsubsubsection","haligntoc","subsubDefaultDing","sectionTitle","sectionAuthor","sectionUniversity","sectionToc","ifShadow","Shadowtrue","Shadowfalse","useSectionNumbers","dDingToc","ddDingToc","dddDingToc","dDingTocColor","ddDingTocColor","dddDingTocColor"]}
-,
-"aeb_tilebg.sty":{"envs":{},"deps":["graphicx.sty","multido.sty"],"cmds":["setTileBgGraphic","disableTiling","enableTiling","maxiterations","autosetScreensizeWithMargins","placeTilesinLayers","theReqHeight","theReqWidth","tileboxheight","tileboxwidth","tileheight","tilewidth","turnOffTiling"]}
-,
-"aebxmp.sty":{"envs":{},"deps":["xkeyval.sty","insdljs.sty"],"cmds":["Authors","Keywords","xmpDoNotInsKWScript","copyrightStatus","copyrightNotice","copyrightInfoURL","authortitle","descriptionwriter","sourceFile","Title","Subject","metaLang","customProperties","aKeywords","arrayOfAuthors","arrayOfKeywords","arrayOfLangs","arrayOfRights","arrayOfSubjects","arrayOfTitles","authorTitle","descriptionWriter","insBagItem","insSeqItem","insertAuthorTitle","insertAuthors","insertCopyrightNotice","insertCreateDate","insertCusProps","insertDescriptionWriter","insertKWJS","insertKeywords","insertLangs","insertMarked","insertSource","insertSubjects","insertTitles","insertWebStatement","tabiv","xAdbNS","xNNS","xWiiiNS","xmpAuthors","xmpGetNextArg","xmpInsScript","xmpKeywords","xmpLang","xmpLangAndArg","xmpSubject","xmpTitle","xmpauthortitle","xmpcopyrightInfoURL","xmpcopyrightNotice","xmpcopyrightStatus","xmpdescriptionwriter","xmplangOfDoc","xmpnEOL"]}
-,
-"aecompl.sty":{"envs":{},"deps":{},"cmds":["DH","dh","DJ","dj","guillemotleft","guillemotright","guilsinglleft","guilsinglright","NG","ng","textpertenthousand","textperthousand","TH","th","filedate","fileversion"]}
-,
-"aeguill.sty":{"envs":{},"deps":["ae.sty"],"cmds":["guillemotleft","guillemotright","aeguillfrenchdefault","ecguills","selectguillfont","aeguills"]}
-,
-"aesupp.sty":{"envs":{},"deps":["ifthen.sty"],"cmds":{}}
-,
-"afterpackage.sty":{"envs":{},"deps":{},"cmds":["AfterPackage"]}
-,
-"afterpage.sty":{"envs":{},"deps":{},"cmds":["afterpage","addboxcontents"]}
-,
-"ajmacros.sty":{"envs":{},"deps":["otf.sty"],"cmds":["ajTsumesuji","ajTumesuji","ajMaru","ajKuroMaru","ajKaku","ajKuroKaku","ajMaruKaku","ajKuroMaruKaku","ajKakko","ajRoman","ajroman","ajPeriod","ajKakkoalph","ajKakkoYobi","ajKakkoroman","ajKakkoRoman","ajKakkoAlph","ajKakkoHira","ajKakkoKata","ajKakkoKansuji","ajMaruKansuji","ajNijuMaru","ajRecycle","ajHasenKakuAlph","ajCross","ajSlanted","ajApostrophe","ajYear","ajSquareMark","ajHishi","offsetalph","offsetAlph","offsetHira","offsetKata","offsetYobi","offsetMaru","offsetKuroMaru","offsetKaku","offsetKuroKaku","offsetMaruKaku","offsetKuroMaruKaku","ajMaruYobi","ajTsumekakko","ajTumekakko","ajNenrei","ajnenrei","ajKosu","ajLabel","ajFrac","aj","ajLig","ajPICT","ajPICTClub","ajPICTHeart","ajPICTSpade","ajPICTDiamond","ajArrow","ajArrowLeftTriangle","ajArrowRightTriangle","ajArrowDOWN","ajArrowUP","ajArrowLEFT","ajArrowRIGHT","ajArrowRightHand","ajArrowLeftHand","ajArrowUpHand","ajArrowDownHand","ajArrowLeftScissors","ajArrowRightScissors","ajArrowUpScissors","ajArrowDownScissors","ajArrowLeft","ajArrowRight","ajArrowUp","ajArrowDown","ajArrowLeftDouble","ajArrowRightDown","ajArrowLeftDown","ajArrowLeftUp","ajArrowRightUp","ajArrowLeftAngle","ajArrowRightAngle","ajArrowUpAngle","ajArrowDownAngle","ajArrowRightDouble","ajArrowLeftRightDouble","ajKunten","DeclareOriginalKundokuStyle","kokana","retenform","reten","retenkana","kaeriten","kundokusize","DeclareAJKundokuStyle","ajCIDVarDef","ajUTFVarDef","ajCIDVarList","ajUTFVarList","ajVar","ajHashigoTaka","ajTsuchiYoshi","ajTatsuSaki","ajMayuHama","ajLeader","ajQuotedef","ajQuote"]}
-,
-"akshar.sty":{"envs":{},"deps":["fontspec.sty"],"cmds":["aksharStrLen","aksharStrHead","aksharStrTail","aksharStrChar","aksharStrReplace","aksharStrRemove","aksharPackageDate","aksharPackageDescription","aksharPackageName","aksharPackageVersion"]}
-,
-"alchemist.sty":{"envs":{},"deps":{},"cmds":["AlchemistQuintessence","AlchemistAir","AlchemistFire","AlchemistSoil","AlchemistWater","AlchemistSpirit","AlchemistPhilosophersSulphur","AlchemistMateriaPrima","AlchemistAquaFortis","AlchemistAquaRegiaA","AlchemistAquaRegiaB","AlchemistAquaVitaeA","AlchemistAquaVitaeB","AlchemistVinegar","AlchemistDistilledVinegarA","AlchemistDistilledVinegarB","AlchemistSublimateOfMercuryA","AlchemistSublimateOfMercuryB","AlchemistSublimateOfMercuryC","AlchemistCinnabar","AlchemistSalt","AlchemistNitre","AlchemistVitriolA","AlchemistVitriolB","AlchemistRockSaltA","AlchemistRockSaltB","AlchemistIronOreA","AlchemistIronOreB","AlchemistCrocusOfIron","AlchemistCopperOre","AlchemistCrocusOfCopperA","AlchemistCrocusOfCopperB","AlchemistIronCopperOre","AlchemistSublimateOfCopperA","AlchemistSublimateOfCopperB","AlchemistCopperAntimonateA","AlchemistCopperAntimonateB","AlchemistVerdigris","AlchemistTinOre","AlchemistLeadOre","AlchemistAntimonyOre","AlchemistSublimateOfAntimony","AlchemistSaltOfAntimony","AlchemistSublimateOfSaltOfAntimony","AlchemistVinegarOfAntimony","AlchemistRegulusA","AlchemistRegulusB","AlchemistRegulusC","AlchemistRegulusD","AlchemistAlkaliA","AlchemistAlkaliB","AlchemistMarcasite","AlchemistSalAmmoniak","AlchemistRealgarA","AlchemistRealgarB","AlchemistAuripigment","AlchemistBismuthOre","AlchemistTartarA","AlchemistTartarB","AlchemistQuicklime","AlchemistBoraxA","AlchemistBoraxB","AlchemistBoraxC","AlchemistAlum","AlchemistLodestone","AlchemistSoap","AlchemistPotashes","AlchemistStratumSuperStratumA","AlchemistStratumSuperStratumB","AlchemistBlackSulphur","AlchemistUrine","AlchemistHorseDung","AlchemistAshes","AlchemistBrick","AlchemistPowderedBrick","AlchemistAmalgam","AlchemistCaputMortuum","AlchemistOil","AlchemistTincture","AlchemistGum","AlchemistWax","AlchemistPowder","AlchemistCalx","AlchemistTutty","AlchemistSulphur","AlchemistGoldA","AlchemistGoldB","AlchemistSilverA","AlchemistSilverB","AlchemistSilverC","AlchemistRegulusOfAntimonyA","AlchemistRegulusOfAntimonyB","AlchemistRegulusOfIron","AlchemistArsenic","AlchemistMercury","AlchemistCopper","AlchemistIron","AlchemistTin","AlchemistLead","AlchemistBismuth","AlchemistAlembicA","AlchemistAlembicB","AlchemistAsclepius","AlchemistCaduceusA","AlchemistCaduceusB","AlchemistCrucibleA","AlchemistCrucibleB","AlchemistCrucibleC","AlchemistCrucibleD","AlchemistCrucibleE","AlchemistBalneumMariae","AlchemistRetort","AlchemistScepterOfJove","AlchemistTrident","AlchemistStarredTrident","AlchemistVapourBath","AlchemistCalcination","AlchemistCeration","AlchemistCongelation","AlchemistDigestion","AlchemistDistillationA","AlchemistDistillationB","AlchemistDissolveA","AlchemistDissolveB","AlchemistFermentation","AlchemistFixation","AlchemistMultiplication","AlchemistPrecipitation","AlchemistProjection","AlchemistPurify","AlchemistPutrefaction","AlchemistSeparation","AlchemistSolution","AlchemistSublimationA","AlchemistSublimationB","AlchemistHourA","AlchemistHourB","AlchemistHourC","AlchemistNight","AlchemistDayNight","AlchemistMonth","AlchemistHalfDram","AlchemistHalfOunce","AlchemistAscendingNode","AlchemistDescendingNode","AlchemistConjunction","AlchemistOpposition","AlchemistSextile","AlchemistSemisextile","AlchemistQuincunx","AlchemistSesquiquadrate","AlchemistLotOfFortune","AlchemistOccultation","AlchemistLunarEclipse","AlchemistSun","AlchemistFirstQuarterMoon","AlchemistLastQuarterMoon","AlchemistBlackMoonLilith","AlchemistVenus","AlchemistEarth","AlchemistMars","AlchemistJupiter","AlchemistSaturn","AlchemistUranus","AlchemistNeptune","AlchemistPlutoA","AlchemistPlutoB","AlchemistAries","AlchemistTaurus","AlchemistGemini","AlchemistCancer","AlchemistLeo","AlchemistVirgo","AlchemistLibra","AlchemistScorpio","AlchemistSagittarius","AlchemistCapricorn","AlchemistAquarius","AlchemistPisces","AlchemistCeres","AlchemistPallas","AlchemistJuno","AlchemistVesta","AlchemistChiron","AlchemistErisA","AlchemistErisB","AlchemistSedna","AlchemistHaumea","AlchemistMakemake","AlchemistGonggong","AlchemistQuaoar","AlchemistOrcus","AlchemistPentagram","AlchemistA","AlchemistB"]}
-,
-"alertmessage.sty":{"envs":{},"deps":["picture.sty","xcolor.sty","calc.sty","graphicx.sty","tikz.sty"],"cmds":["alertinfo","alertsuccess","alertwarning","alerterror"]}
-,
-"alfaslabone.sty":{"envs":{},"deps":["fontenc.sty","textcomp.sty","ifthen.sty","mweights.sty","fontaxes.sty"],"cmds":["sufigures","supfigures","textsu","textsup","textsuperior","alfaslabonetabular"]}
-,
-"algc.sty":{"envs":{},"deps":["algorithmicx.sty"],"cmds":["For","If","Else","While","Do","Function","Return","algorithmicbegin","algorithmicend","textkeyword"]}
-,
-"algcompatible.sty":{"envs":{},"deps":["algorithmicx.sty"],"cmds":["ALG","COMMENT","ELSE","ELSIF","ENDFOR","ENDIF","ENDLOOP","ENDWHILE","ENSURE","FOR","FORALL","IF","LOOP","REPEAT","REQUIRE","STATE","STATEx","UNTIL","WHILE","algorithmicdo","algorithmicelse","algorithmicend","algorithmicensure","algorithmicfor","algorithmicforall","algorithmicif","algorithmicloop","algorithmicrepeat","algorithmicrequire","algorithmicthen","algorithmicuntil","algorithmicwhile","equal","isodd","isundefined"]}
-,
-"algmatlab.sty":{"envs":{},"deps":["algorithmicx.sty"],"cmds":["While","End","For","If","ElseIf","Function","Switch","Case","Otherwise","Line","Scatter","Plot","Zeros","Ones","Load","Size","Disp","Min","Max","Break","Return","Global","Hold","algnewfunction","textkeyword","textfunc"]}
-,
-"algobox.sty":{"envs":["algobox"],"deps":["expl3.sty","xparse.sty","environ.sty","tikz.sty","tikzlibrarycalc.sty","xcolor.sty"],"cmds":["A","AFFICHER","AFFICHERCALCUL","ALLANTDE","ALORS","DEBUTALGORITHME","DEBUTPOUR","DEBUTSI","DEBUTSINON","DEBUTTANTQUE","ESTDUTYPE","FINALGORITHME","FINPOUR","FINSI","FINSINON","FINTANTQUE","FONCTION","LINE","LIRE","NODE","POUR","PRENDLAVALEUR","SI","SINON","TANTQUE","VARIABLES","smalgobox"]}
-,
-"algolrevived.sty":{"envs":{},"deps":["fontenc.sty","textcomp.sty","xstring.sty","ifthen.sty","scalefnt.sty","mweights.sty","fontaxes.sty","xkeyval.sty"],"cmds":["textsu","textsuperior","sufigures","textinf","textinferior","infigures","textlf","lfstyle","texttlf","tlfstyle","textosf","osfstyle","texttosf","tosfstyle","textfrac","textprime","textdprime","textleftrightarrow","textupdownarrow","textLeftarrow","textUparrow","textRightarrow","textDownarrow","textLeftrightarrow","textUpdownarrow","textforall","textcomplement","textpartial","textexists","textnexists","textvarnothing","textincrement","textnabla","textin","textnotin","textsmallin","textni","textnni","textsmallni","textsmallsetminus","textlargebullet","textland","textlor","textcap","textcup","textcoloneq","texteqcolon","textneq","textequiv","textneqiv","textleq","textgeq","textsubset","textsupset","textnsubset","textnsupset","textsubseteq","textsupseteq","textnsubseteq","textnsupseteq","textsqsubset","textsqsupset","textsqsubseteq","textsqcap","textsqcup","DH","NG","dj","ng","k","guillemotleft","guillemotright","guilsinglleft","guilsinglright","quotedblbase","quotesinglbase","textquotedbl","DJ","th","TH","dh","Hwithstroke","hwithstroke","textogonekcentered","guillemetleft","guillemetright"]}
-,
-"algorithm.sty":{"envs":["algorithm"],"deps":["float.sty"],"cmds":["listalgorithmname","listofalgorithms"]}
-,
-"algorithm2e.sty":{"envs":["algorithm2e","algorithm2e*","algorithm","algorithm*","function","function*","procedure","procedure*","algomathdisplay","algocf*"],"deps":["ifthen.sty","xspace.sty","tocbibind.sty","endfloat.sty","color.sty"],"cmds":["listofalgorithmes","thepostalgo","SetNoLine","SetNoline","SetVline","SetLine","dontprintsemicolon","printsemicolon","incmargin","decmargin","Setnlskip","setnlskip","setalcapskip","setalcaphskip","nlSty","Setnlsty","linesnumbered","linesnumberedhidden","linesnotnumbered","showln","showlnlabel","nocaptionofalgo","restorecaptionofalgo","restylealgo","Titleofalgo","SetKwIf","gSi","gSinonSi","gSinon","gIf","gElsIf","gElse","gElseIf","gWenn","gSonstWenn","gSonst","gSe","gSenaoSe","gSenao","gSea","gAltSe","gAltrimenti","Ret","Data","Result","SetAlgorithmName","SetAlgoProcName","SetAlgoFuncName","DontPrintSemicolon","PrintSemicolon","BlankLine","Indp","Indm","SetStartEndCondition","AlgoDisplayBlockMarkers","AlgoDontDisplayBlockMarkers","AlgoDisplayGroupMarkers","AlgoDontDisplayGroupMarkers","SetAlgoBlockMarkers","listofalgorithms","TitleOfAlgo","SetAlgoRefName","SetAlgoRefRelativeSize","SetAlgoCaptionSeparator","SetCustomAlgoRuledWidth","AlCapSkip","SetAlCapSkip","SetAlCapHSkip","SetTitleSty","TitleSty","NoCaptionOfAlgo","RestoreCaptionOfAlgo","SetAlgoCaptionLayout","theAlgoLine","LinesNumbered","LinesNumberedHidden","LinesNotNumbered","nllabel","nl","lnl","nlset","lnlset","ShowLn","ShowLnLabel","SetNlSty","SetNlSkip","SetAlgoNlRelativeSize","AlFnt","KwSty","FuncSty","FuncArgSty","ProgSty","ArgSty","DataSty","CommentSty","NlSty","ProcNameSty","ProcFnt","ProcArgSty","ProcArgFnt","BlockMarkersSty","AlCapSty","AlCapNameSty","AlCapFnt","AlCapNameFnt","ProcSty","ProcNameFnt","AlTitleSty","AlTitleFnt","SetAlFnt","SetKwSty","SetFuncSty","SetFuncArgSty","SetProgSty","SetArgSty","SetDataSty","SetCommentSty","SetProcNameSty","SetProcArgSty","SetBlockMarkersSty","SetAlCapFnt","SetAlCapNameFnt","SetAlTitleFnt","SetAlCapSty","SetAlCapNameSty","SetAlTitleSty","SetProcFnt","SetProcNameFnt","SetProcSty","SetProcArgFnt","RestyleAlgo","SetAlgoVlined","SetAlgoNoLine","SetAlgoLined","SetAlgoLongEnd","SetAlgoShortEnd","SetAlgoNoEnd","SetInd","SetAlgoHangIndent","SetVlineSkip","SetAlgoSkip","SetAlgoInsideSkip","algomargin","IncMargin","DecMargin","interspacetitleruled","interspacealgoruled","interspacetitleboxruled","SetSideCommentLeft","SetSideCommentRight","SetFillComment","SetNoFillComment","KwIn","KwOut","KwData","KwHData","KwResult","KwTo","KwRet","Return","Begin","tcc","tcp","If","uIf","lIf","ElseIf","uElseIf","lElseIf","lElseif","Else","uElse","lElse","eIf","leIf","Switch","Case","uCase","lCase","Other","uOther","lOther","For","lFor","While","lWhile","ForPar","ForEach","lForEach","ForAll","lForAll","Repeat","lRepeat","SetKwInput","SetKwInOut","ResetInOut","SetKw","SetKwHangingKw","SetKwData","SetKwArray","SetKwBlock","SetKwProg","SetKwFunction","SetKwComment","SetKwIF","SetKwSwitch","SetKwFor","SetKwRepeat","HDonnees","Donnees","Res","Entree","Sortie","KwA","Retour","Deb","Repeter","Si","eSi","uSi","lSi","SinonSi","uSinonSi","lSinonSi","Sinon","uSinon","lSinon","Suivant","Cas","uCas","lCas","Autre","lAutre","Pour","lPour","PourPar","lPourPar","PourCh","lPourCh","PourTous","lPourTous","Tq","lTq","Ein","Aus","Daten","Ergebnis","Bis","KwZurueck","Zurueck","Beginn","Wiederh","lWiederh","eWenn","Wenn","uWenn","lWenn","SonstWenn","uSonstWenn","lSonstWenn","Sonst","uSonst","lSonst","Unterscheide","Fall","uFall","lFall","Anderes","lAnderes","Fuer","lFuer","FuerPar","lFuerPar","FuerJedes","lFuerJedes","FuerAlle","lFuerAlle","Solange","lSolange","Vst","Vyst","Vysl","Entrada","Saida","Dados","Resultado","Ate","KwRetorna","Retorna","Inicio","Repita","lRepita","eSe","Se","uSe","lSe","Senao","uSenao","lSenao","SenaoSe","uSenaoSe","lSenaoSe","Selec","Caso","uCaso","lCaso","Outro","lOutro","Para","lPara","ParaPar","lParaPar","ParaCada","lParaCada","ParaTodo","lParaTodo","Enqto","lEnqto","KwIng","KwUsc","KwDati","KwRisult","KwRitorna","Ritorna","Inizio","Ripeti","lRipeti","eSea","Sea","uSea","lSea","AltSe","uAltSe","lAltSe","Altrimenti","uAltrimenti","lAltrimenti","Per","lPer","PerPar","lPerPar","PerCiascun","lPerCiascun","PerTutti","lPerTutti","Finche","lFinche","Datos","Salida","KwDevolver","Devolver","eSSi","SSi","uSSi","lSSi","EnOtroCasoSi","uEnOtroCasoSi","lEnOtroCasoSi","EnOtroCaso","uEnOtroCaso","lEnOtroCaso","Seleccionar","uSeleccionar","Otro","lOtro","ParaPara","lParaPara","EnParalelo","lEnParalelo","Mientras","lMientras","Repetir","lRepetir","KwUlaz","KwIzlaz","KwPodatci","KwRezultat","KwDo","KwVrati","Vrati","Pocetak","Ponavljaj","lPonavljaj","eAko","Ako","uAko","lAko","InaceAko","uInaceAko","lInaceAko","Inace","uInace","lInace","Granaj","uGranaj","Slucaj","uSlucaj","lSlucaj","OstaliSlucajevi","lOstaliSlucajevi","uOstaliSlucajevi","Za","lZa","ZaPar","lZaPar","ZaSvaki","lZaSvaki","ZaSvaku","lZaSvaku","ZaSvako","lZaSvako","ZaSve","lZaSve","Dok","lDok","algocfautorefname","algocffuncautorefname","algocfprocautorefname","algoendfloat","algoheightrule","algoheightruledefault","AlgoLineautorefname","algoplace","algorithmautorefname","algorithmcflinename","algorithmcfname","algotitleheightrule","algotitleheightruledefault","algowidth","enl","functionautorefname","Hlne","Indentp","Indmm","Indpp","inoutindent","inoutsize","InOutSizeDefined","listalgorithmcfname","listofalgocfs","next","procedureautorefname","SetEndCharOfAlgoLine","setLeftLinesNumbers","SetNothing","setRightLinesNumbers","skipalgocfslide","skiphlne","skiplength","skiplinenumber","skiprule","skiptext","skiptotal","test","thealgocf","thealgocfline","thealgocfproc","theHalgocf","theHalgocffunc","theHalgocfproc","theHAlgoLine","vespace"]}
-,
-"algorithmic.sty":{"envs":["algorithmic"],"deps":["ifthen.sty","keyval.sty"],"cmds":["STATE","IF","ENDIF","ELSE","ELSIF","FOR","ENDFOR","FORALL","TO","WHILE","ENDWHILE","REPEAT","UNTIL","LOOP","ENDLOOP","AND","OR","XOR","NOT","REQUIRE","ENSURE","RETURN","TRUE","FALSE","PRINT","COMMENT","algsetup","STMT","INPUTS","ENDINPUTS","OUTPUTS","ENDOUTPUTS","GLOBALS","BODY","ENDBODY","algorithmicrequire","algorithmicensure","algorithmiccomment","algorithmicend","algorithmicif","algorithmicthen","algorithmicelse","algorithmicelsif","algorithmicendif","algorithmicfor","algorithmicforall","algorithmicdo","algorithmicendfor","algorithmicwhile","algorithmicendwhile","algorithmicloop","algorithmicendloop","algorithmicrepeat","algorithmicuntil","algorithmicprint","algorithmicreturn","algorithmicand","algorithmicor","algorithmicxor","algorithmicnot","algorithmicto","algorithmicinputs","algorithmicoutputs","algorithmicglobals","algorithmicbody","algorithmictrue","algorithmicfalse"]}
-,
-"algorithmicx.sty":{"envs":["algorithmic"],"deps":["ifthen.sty"],"cmds":["State","Statex","BState","Comment","algref","algstore","algrestore","alglanguage","algnewcommand","algrenewcommand","algorithmiccomment","algorithmicindent","alglinenumber","algsetlanguage","algdeflanguage","algnewlanguage","algrenewcomment","algbreak","algblock","algblockdefx","algblockx","algloop","algloopdefx","algcblock","algcblockdefx","algcblockx","algcloop","algcloopdefx","algcloopx","algsetblock","algsetblockdefx","algsetblockx","algsetcblock","algsetcblockdefx","algsetcblockx","algnotext","algdefaulttext","algrenewtext","algtext","algdef"]}
-,
-"algpascal.sty":{"envs":{},"deps":["algorithmicx.sty"],"cmds":["Begin","End","For","While","Repeat","Until","If","Else","Procedure","Function","textkeyword"]}
-,
-"algpseudocode.sty":{"envs":{},"deps":["ifthen.sty","algcompatible.sty"],"cmds":["For","EndFor","ForAll","While","EndWhile","Repeat","Until","If","ElsIf","Else","EndIf","Procedure","EndProcedure","Function","EndFunction","Loop","EndLoop","Require","Ensure","Call","Return","algorithmicend","algorithmicdo","algorithmicwhile","algorithmicfor","algorithmicforall","algorithmicloop","algorithmicrepeat","algorithmicuntil","algorithmicprocedure","algorithmicfunction","algorithmicif","algorithmicthen","algorithmicelse","algorithmicrequire","algorithmicensure","algorithmicreturn","textproc"]}
-,
-"algpseudocodex.sty":{"envs":{},"deps":["kvoptions.sty","algorithmicx.sty","etoolbox.sty","fifo-stack.sty","varwidth.sty","tabto.sty","totcount.sty","tikz.sty","tikzlibrarycalc.sty","tikzlibraryfit.sty","tikzlibrarytikzmark.sty"],"cmds":["Call","Output","Return","While","EndWhile","For","ForAll","EndFor","Loop","EndLoop","Repeat","Until","If","ElsIf","Else","EndIf","Procedure","EndProcedure","Function","EndFunction","Require","Ensure","LComment","BeginBox","EndBox","BoxedString","algorithmicend","algorithmicdo","algorithmicwhile","algorithmicfor","algorithmicforall","algorithmicloop","algorithmicrepeat","algorithmicuntil","algorithmicprocedure","algorithmicfunction","algorithmicif","algorithmicthen","algorithmicelse","algorithmicrequire","algorithmicensure","algorithmicreturn","algorithmicoutput"]}
-,
-"algxpar.sty":{"envs":["DefineCode"],"deps":["algorithmicx.sty","algpseudocode.sty","ragged2e.sty","listings.sty","amsmath.sty","amssymb.sty","xcolor.sty","tcolorbox.sty","fancyvrb.sty"],"cmds":["Description","Input","Output","Commentl","CommentIn","Statep","If","ElsIf","Switch","EndSwitch","Case","EndCase","Otherwise","EndOtherwise","While","Until","For","ForAll","ForEach","True","False","Nil","Id","TextString","VisibleSpace","Read","Write","Set","Setl","Range","To","DownTo","Step","NewLine","UseCode","ShowCode"]}
-,
-"aliascnt.sty":{"envs":{},"deps":{},"cmds":["newaliascnt","aliascntresetthe"]}
-,
-"aliphat.sty":{"envs":{},"deps":["chemstr.sty"],"cmds":["DtetrahedralS","Dtrigonal","Ethylene","Ethyleneh","Ethylenev","LtetrahedralS","Ltrigonal","RtetrahedralS","Rtrigonal","UtetrahedralS","Utrigonal","divalenth","dtetrahedralS","dtetrastereo","dtrigonal","dtrigpyramid","ethanestereo","ethylene","ethyleneh","ethylenev","htetrahedralS","ltetrahedralS","ltrigonal","rtetrahedralS","rtrigonal","squareplanar","tetrahedral","tetrastereo","utetrahedralS","utrigonal","utrigpyramid","centralatomcheck","Eastbond","NEBOND","NEBond","NEbond","Northbond","NWBOND","NWBond","NWbond","SEBOND","SEBond","SEbond","Southbond","square","squarecomplex","SWBOND","SWBond","SWbond","Westbond","yldivalenthposition","ylDtetrahedralSposition","yldtetrahedralSposition","ylDtrigonalposition","yldtrigonalposition","yldtrigpyramidposition","ylethylenepositiona","ylethylenepositionb","ylethylenevpositiona","ylethylenevpositionb","ylhtetrahedralSposition","ylLtetrahedralSposition","ylltetrahedralSposition","ylLtrigonalposition","ylltrigonalposition","ylRtetrahedralSposition","ylrtetrahedralSposition","ylRtrigonalposition","ylrtrigonalposition","ylsquareposition","yltetrahedralposition","ylUtetrahedralSposition","ylutetrahedralSposition","ylUtrigonalposition","ylutrigonalposition","ylutrigpyramidposition"]}
-,
-"allauncl.sty":{"envs":{},"deps":["auncial.sty"],"cmds":["cmrfamily","textcmr","cmssfamily","textcmss","cmttfamily","textcmtt"]}
-,
-"allcmin.sty":{"envs":{},"deps":["carolmin.sty"],"cmds":["cmrfamily","cmssfamily","cmttfamily","textcmr","textcmss","textcmtt"]}
-,
-"allegoth.sty":{"envs":{},"deps":["egothic.sty"],"cmds":["cmrfamily","cmssfamily","cmttfamily","textcmr","textcmss","textcmtt"]}
-,
-"allhmin.sty":{"envs":{},"deps":["humanist.sty"],"cmds":["cmrfamily","textcmr","cmssfamily","textcmss","cmttfamily","textcmtt"]}
-,
-"allhuncl.sty":{"envs":{},"deps":["huncial.sty"],"cmds":["cmrfamily","textcmr","cmssfamily","textcmss","cmttfamily","textcmtt"]}
-,
-"allimaj.sty":{"envs":{},"deps":["inslrmaj.sty"],"cmds":["cmrfamily","cmssfamily","cmttfamily","textcmr","textcmss","textcmtt"]}
-,
-"allimin.sty":{"envs":{},"deps":["inslrmin.sty"],"cmds":["cmrfamily","cmssfamily","cmttfamily","textcmr","textcmss","textcmtt"]}
-,
-"allpgoth.sty":{"envs":{},"deps":["pgothic.sty"],"cmds":["cmrfamily","cmssfamily","cmttfamily","textcmr","textcmss","textcmtt"]}
-,
-"allrtnd.sty":{"envs":{},"deps":["rotunda.sty"],"cmds":["cmrfamily","cmssfamily","cmttfamily","textcmr","textcmss","textcmtt"]}
-,
-"allrunes.sty":{"envs":{},"deps":["ifthen.sty"],"cmds":["bar","cross","dot","doublebar","doublecross","doubledot","doubleeye","doubleplus","eye","pentdot","penteye","plus","quaddot","quadeye","star","triplebar","triplecross","tripledot","tripleeye","tripleplus","a","A","adot","arlaug","belgthor","d","D","dh","DH","e","ea","ey","g","G","h","i","ING","ing","Ing","j","k","K","lbar","ldot","lflag","lring","m","M","n","N","ndot","NG","ng","oo","oO","p","Pdots","q","Q","R","rdot","rex","RR","s","seight","sfive","sfour","sseven","ssix","stan","STAN","sthree","T","tbar","tdot","textsection","tflag","th","TH","thth","tring","tvimadur","V","x","X","y","Y","z","textarc","arcfamily","textara","arafamily","textarn","arnfamily","textart","artfamily","textarl","arlfamily","textarm","armfamily","textbf","bfseries","textmd","mdseries","textlf","lfseries","textwil","withlines","textwol","withoutlines","textst","straighttwigs","textcu","curvedtwigs","textro","roundedtwigs","texthi","hightwigs","textlo","lowtwigs","hflip","vflip","turn","DeclareFontShapeWithSizes","lfdefault","bldefault","mldefault","lldefault","stdefault","rodefault","cwdefault","rwdefault","DeclareRuneSeparators","artdefault","arndefault","armdefault","arldefault","arcdefault","aradefault"]}
-,
-"allrust.sty":{"envs":{},"deps":["rustic.sty"],"cmds":["cmrfamily","cmssfamily","cmttfamily","textcmr","textcmss","textcmtt"]}
-,
-"allsqrc.sty":{"envs":{},"deps":["sqrcaps.sty"],"cmds":["cmrfamily","cmssfamily","cmttfamily","textcmr","textcmss","textcmtt"]}
-,
-"alltgoth.sty":{"envs":{},"deps":["tgothic.sty"],"cmds":["cmrfamily","cmssfamily","cmttfamily","textcmr","textcmss","textcmtt"]}
-,
-"alltt.sty":{"envs":["alltt"],"deps":{},"cmds":{}}
-,
-"almendra.sty":{"envs":{},"deps":["ifxetex.sty","ifluatex.sty","textcomp.sty","xkeyval.sty","fontenc.sty","fontaxes.sty","mweights.sty"],"cmds":["almendra","almendrafamily"]}
-,
-"alnumsec.sty":{"envs":{},"deps":["ifthen.sty"],"cmds":["alnumsecstyle","alnumsectionlevels","otherseparators","surroundRoman","surroundroman","surroundarabic","surroundLetter","surroundletter","surroundgreek","surrounddoubleletter","surrounddoublegreek","ifusepreviouslevels","usepreviouslevelstrue","usepreviouslevelsfalse"]}
-,
-"alphabeta.sty":{"envs":{},"deps":["textalpha.sty"],"cmds":["mathGamma","mathDelta","mathTheta","mathLambda","mathXi","mathPi","mathSigma","mathUpsilon","mathPhi","mathPsi","mathOmega","mathalpha","mathbeta","mathgamma","mathdelta","mathepsilon","mathvarepsilon","mathzeta","matheta","maththeta","mathvartheta","mathiota","mathkappa","mathlambda","mathmu","mathnu","mathxi","mathpi","mathvarpi","mathrho","mathvarrho","mathsigma","mathvarsigma","mathfinalsigma","mathtau","mathupsilon","mathphi","mathvarphi","mathchi","mathpsi","mathomega","mathdigamma","mathvarbeta","mathvarkappa","Alpha","Beta","Gamma","Delta","Epsilon","Zeta","Eta","Theta","Iota","Kappa","Lambda","Mu","Nu","Xi","Omicron","Pi","Rho","Sigma","Tau","Upsilon","Phi","Chi","Psi","Omega","alpha","beta","gamma","delta","epsilon","zeta","eta","theta","iota","kappa","lambda","mu","nu","xi","omicron","pi","rho","sigma","varsigma","finalsigma","tau","upsilon","phi","chi","psi","omega","digamma","Digamma","stigma","varstigma","koppa","Koppa","qoppa","Qoppa","Stigma","Sampi","sampi","varepsilon","varphi","varbeta","varkappa","varpi","varrho","vartheta","betasymbol","epsilonsymbol","phisymbol","kappasymbol","pisymbol","rhosymbol","thetasymbol","Thetasymbol"]}
-,
-"alphalph.sty":{"envs":{},"deps":{},"cmds":["AlphAlph","alphalph","newalphalph"]}
-,
-"altacv.cls":{"envs":["LaTeXflushleft","LaTeXcenter","cvcolumn","fullwidth","enumerate*","itemize*","description*"],"deps":["s-extarticle.cls","pdfx.sty","geometry.sty","ifxetex.sty","scrlfile.sty","xcolor.sty","tcolorbox.sty","enumitem.sty","graphicx.sty","dashrule.sty","tabularx.sty","afterpage.sty","biblatex.sty","ragged2e.sty"],"cmds":["LaTeXcentering","LaTeXraggedleft","LaTeXraggedright","itemmarker","ratingmarker","divider","emailsymbol","mailaddresssymbol","phonesymbol","homepagesymbol","twittersymbol","linkedinsymbol","githubsymbol","orcidsymbol","locationsymbol","printinfo","name","tagline","photo","photoR","photoL","email","mailaddress","phone","homepage","twitter","linkedin","github","orcid","location","personalinfo","makecvheader","cvsection","cvsubsection","cvachievement","cvevent","cvtag","cvskill","wheelchart","cvref","addsidebar","addnextpagesidebar","ifxetexorluatex","xetexorluatextrue","xetexorluatexfalse","mynames","utffriendlydetokenize","NewInfoField","namefont","taglinefont","personalinfofont","cvsectionfont","cvsubsectionfont"]}
-,
-"alterqcm.sty":{"envs":["alterqcm"],"deps":["xkeyval.sty","ifthen.sty","multirow.sty"],"cmds":["AQquestion","AQmessage","AQms","InputQuestionList","AQannexe","AQpoints","dingsquare","dingchecksquare","aqlabelforquest","aqlabelforrep","aqfoottext","nextrandom","setrannum","points","aqheightadvance","aqdepthadvance","aqpretxt","aqpretxtVF","aqtextfortrue","aqtextforfalse","addtotoks","to"]}
-,
-"altfont.sty":{"envs":{},"deps":["fontenc.sty"],"cmds":["AvailableRMFont","AvailableSFFont","AvailableTTFont","AvailableFont","DefaultRMFont","DefaultSFFont","DefaultTTFont","altfontenc","filedate","fileversion"]}
-,
-"altsubsup.sty":{"envs":{},"deps":["amstext.sty","spbmark.sty"],"cmds":["SetAltSubscriptCommand","SetAltSuperscriptCommand","SetAltSubSupCommands"]}
-,
-"altverse.sty":{"envs":["Verse","VERSE","Verse*"],"deps":["array.sty","xtab.sty"],"cmds":["Vbreak","Vindent","Vhead","VCtitle","Vctitle","VLtitle","Vstars","Vsub","Vto","Vat","VheadFormat","VheadSize","VtoFormat","VatFormat"]}
-,
-"ams-mdbch.sty":{"envs":{},"deps":["amssymb.sty","amsfonts.sty"],"cmds":["udtimes","utimes","dtimes","digammaup","varkappaup","digammait","varkappait"]}
-,
-"amsaddr.sty":{"envs":{},"deps":{},"cmds":["author","emails","filedate","filename","fileversion"]}
-,
-"amsart.cls":{"envs":["proof","pf","pf*"],"deps":["amsmath.sty","amsfonts.sty"],"cmds":["abstractbox","address","addresses","alsoname","altucnm","andify","author","authors","bibliofont","bibname","bibsetup","bysame","calclayout","captionindent","citeform","commby","contentsnamefont","contrib","contribs","copyins","copyrightholder","copyrightinfo","copyrightyear","curraddr","curraddrname","currentissue","currentmonth","currentvolume","currentyear","datename","dateposted","dedicatory","dh","DH","DJ","dj","email","emailaddrname","except","for","forany","fullwidthdisplay","ifresetcontrib","indentlabel","ISSN","issueinfo","keywords","keywordsname","larger","linespacing","listisep","markleft","mathqed","Mc","MR","MRhref","newswitch","newtheorem","newtheoremstyle","nonbreakingspace","nonslanted","nopunct","normalparindent","normaltopskip","nxandlist","openbox","pageinfo","pagespan","paragraphname","PII","popQED","printindex","proofname","publname","pushQED","qed","qedhere","qedsymbol","resetcontribfalse","resetcontribtrue","revertcopyright","rom","sectionname","see","seealso","seename","seeonly","seeonlyname","setFalse","setTrue","shortauthors","shorttitle","SMALL","Small","smaller","specialsection","subjclass","subjclassname","subparagraphname","subsectionname","subsubsectionname","swapnumbers","swappedhead","textprime","textsquare","thankses","theoremstyle","thmhead","thmheadnl","thmname","thmnote","thmnumber","Tiny","title","tocappendix","tocchapter","toccontribs","tocparagraph","tocpart","tocsection","tocsubparagraph","tocsubsection","tocsubsubsection","translator","translname","upn","uppercasenonmath","URL","urladdr","urladdrname","URLhref","volinfo","wraptoccontribs","xandlist","xcontribs","defaultfont"]}
-,
-"amsbib.sty":{"envs":{},"deps":["graphicx.sty","color.sty","hyperref.sty"],"cmds":["RBibitem","Bibitem","adsnasa","arxiv","book","bookinfo","bookvol","bookvols","by","byy","crossref","ed","edition","eds","elink","eprint","eprintinfo","finalbookinfo","finalinfo","hrarxiv","inbook","isbn","isi","issue","issueinfo","jour","journalname","lang","mathnet","mathscinet","miscnote","monthissue","moreref","morerref","No","nofrills","page","pages","paper","paperinfo","papernumber","preprint","preprintinfo","proc","procinfo","ptype","publ","publaddr","publaddrr","publaddrrr","publl","publll","rtransl","scopus","serial","serissue","thesis","thesisinfo","toappear","totalpages","transl","vol","volinfo","voltitle","yr","zmath","bibID","breakcheck","byfont","bysame","citnum","citnumelib","citnumisi","citnummsn","citnumscopus","defaultreftexts","defaultrusreftexts","edtext","elib","finalpunct","from","holdoverbox","Hrefs","issn","issuetext","main","makerefbox","manyby","miscrtransl","misctransl","nofrillscheck","pagestext","pagetext","pstatus","refbreaks","sortdate","voltext","with","withfont","withtext"]}
-,
-"amsbkrev.cls":{"envs":["bookinfo","review","revinfo"],"deps":["s-amsart.cls"],"cmds":["reviewer","publisher","publaddr","yr","pages","binding","price","isbn","revtransl","msc","editor","bktransl","bkcontrib","edition","series","serieseditor","volume","journal","cmheight","note","lang","altpages","brtitle","cpubl","ctitle","ednote","loosen","num","originfo","Review","reviewersep","Reviews","reviewsep","subtitle","theauthor","thebookinfo","therevcount","tocauthors","tocbkcontribs"]}
-,
-"amsbook.cls":{"envs":["proof","pf","pf*"],"deps":["amsmath.sty","amsfonts.sty"],"cmds":["abstractbox","address","addresses","alsoname","altucnm","andify","aufm","author","authors","backmatter","bibliofont","bibname","bibsetup","bysame","calclayout","captionindent","chapter","chaptermark","chaptername","chapterrunhead","citeform","contentsnamefont","copyins","copyrightholder","copyrightinfo","copyrightyear","curraddr","curraddrname","datename","dateposted","dedicatory","dh","DH","DJ","dj","email","emailaddrname","except","for","forany","frontmatter","fullwidthdisplay","indentlabel","indexchap","issueinfo","keywords","keywordsname","larger","linespacing","listisep","mainmatter","markleft","mathqed","Mc","MR","MRhref","newswitch","newtheorem","newtheoremstyle","nonbreakingspace","nonslanted","nopunct","normalparindent","normaltopskip","nxandlist","openbox","paragraphname","partmark","partrunhead","popQED","printindex","proofname","pushQED","qed","qedhere","qedsymbol","rom","secdef","sectionname","sectionrunhead","see","seealso","seename","seeonly","seeonlyname","setFalse","setTrue","shortauthors","shorttitle","SMALL","Small","smaller","specialsection","subjclass","subjclassname","subparagraphname","subsectionname","subsubsectionname","swapnumbers","swappedhead","textprime","textsquare","thankses","thechapter","theoremstyle","thmhead","thmheadnl","thmname","thmnote","thmnumber","Tiny","title","tocappendix","tocchapter","tocparagraph","tocpart","tocsection","tocsubparagraph","tocsubsection","tocsubsubsection","translator","translname","upn","uppercasenonmath","URL","urladdr","urladdrname","URLhref","xandlist","defaultfont"]}
-,
-"amsbooka.sty":{"envs":["inchapterbibliography"],"deps":{},"cmds":["barefootnote","partauthor"]}
-,
-"amsbsy.sty":{"envs":{},"deps":["amsgen.sty"],"cmds":["boldsymbol","pmb"]}
-,
-"amscd.sty":{"envs":["CD"],"deps":["amsgen.sty"],"cmds":["minCDarrowwidth","CDat","Iat"]}
-,
-"amscdx.sty":{"envs":["CD"],"deps":["amsgen.sty","xcolor.sty","graphicx.sty"],"cmds":["CDlor","minCDarrowwidth","CDat","Iat","iflyx","lyxtrue","lyxfalse","ifCDfat","CDfattrue","CDfatfalse","ifCDash","CDashtrue","CDashfalse"]}
-,
-"amsfonts.sty":{"envs":{},"deps":{},"cmds":["mathbb","mathfrak","angle","Box","dasharrow","dashleftarrow","dashrightarrow","Diamond","hbar","Join","leadsto","lhd","llcorner","lozenge","lrcorner","mho","rhd","rightleftharpoons","rightsquigarrow","sqsubset","sqsupset","square","trianglelefteq","trianglerighteq","ulcorner","unlhd","unrhd","urcorner","vartriangleleft","vartriangleright","widehat","widetilde","yen","checkmark","circledR","maltese","frak","Bbb","bold"]}
-,
-"amsldoc.cls":{"envs":["ctab","error","histnote"],"deps":["s-book.cls","url.sty"],"cmds":["activevert","actualchar","addbslash","allowtthyphens","AmS","amslatex","amstex","arg","arrayargpatch","autoindex","bibtex","bslchar","bst","cls","cn","cnat","cnbang","cnbreak","cnm","cnmm","cnmsm","cnom","cnt","cs","embrace","encapchar","env","errexa","errexpl","errora","errorbullet","fn","fnt","gloss","indexcs","latex","lbracechar","levelchar","mail","makeindx","mdash","ncn","ndash","nobslash","ntt","ommitude","openbox","opt","pkg","qc","qcamp","qcat","qcbang","qedsymbol","qq","quotechar","rbracechar","secref","tex","Textures","verbatimchar","xypic"]}
-,
-"amsmath.sty":{"envs":["align"],"deps":["amstext.sty","amsopn.sty"],"cmds":["allowdisplaybreaks","AmS","AmSfont","And","binom","boxed","cfrac","dbinom","ddddot","dddot","dfrac","displaybreak","DOTSB","DOTSI","DOTSX","dotsb","dotsc","dotsi","dotsm","dotso","endmathdisplay","eqref","genfrac","hdots","hdotsfor","idotsint","iiiint","iiint","iint","impliedby","implies","intertext","leftroot","lvert","lVert","mathaccentV","mathdisplay","mintagsep","minalignsep","mod","mspace","MultiIntegral","multlinegap","multlinetaggap","nobreakdash","notag","numberwithin","overleftrightarrow","overset","overunderset","pod","raisetag","rvert","rVert","shoveright","shoveleft","sideset","smash","substack","tag","tbinom","tfrac","theparentequation","thetag","underleftarrow","underleftrightarrow","underrightarrow","underset","uproot","varDelta","varGamma","varLambda","varOmega","varPhi","varPi","varPsi","varSigma","varTheta","varUpsilon","varXi","veqno","xleftarrow","xrightarrow","Hat","Check","Tilde","Acute","Grave","Dot","Ddot","Breve","Bar","Vec"]}
-,
-"amsmidx.sty":{"envs":{},"deps":{},"cmds":["makeindex","printindex","Printindex","indexcomment","theindexcomment"]}
-,
-"amsopn.sty":{"envs":{},"deps":["amsgen.sty"],"cmds":["operatorname","operatornamewithlimits","qopname","DeclareMathOperator","operatorfont","arccos","arcsin","arctan","arg","cos","cosh","cot","coth","csc","deg","det","dim","exp","gcd","hom","inf","injlim","ker","lg","lim","liminf","limsup","ln","log","max","min","Pr","projlim","sec","sin","sinh","sup","tan","tanh","varinjlim","varprojlim","varliminf","varlimsup"]}
-,
-"amsproc.cls":{"envs":["proof","pf","pf*"],"deps":["amsmath.sty","amsfonts.sty"],"cmds":["abstractbox","address","addresses","alsoname","altucnm","andify","aufm","author","authors","bibliofont","bibname","bibsetup","bysame","calclayout","captionindent","citeform","contentsnamefont","contrib","contribs","copyins","copyrightholder","copyrightinfo","copyrightyear","curraddr","curraddrname","currentissue","currentmonth","currentvolume","currentyear","datename","dateposted","dedicatory","dh","DH","DJ","dj","email","emailaddrname","except","for","forany","fullwidthdisplay","ifresetcontrib","indentlabel","issueinfo","keywords","keywordsname","larger","linespacing","listisep","markleft","mathqed","Mc","MR","MRhref","newswitch","newtheorem","newtheoremstyle","nonbreakingspace","nonslanted","nopunct","normalparindent","normaltopskip","nxandlist","openbox","pagespan","paragraphname","popQED","printindex","proofname","publname","pushQED","qed","qedhere","qedsymbol","resetcontribfalse","resetcontribtrue","rom","sectionname","see","seealso","seename","seeonly","seeonlyname","setFalse","setTrue","shortauthors","shorttitle","SMALL","Small","smaller","specialsection","subjclass","subjclassname","subparagraphname","subsectionname","subsubsectionname","swapnumbers","swappedhead","textprime","textsquare","thankses","theoremstyle","thmhead","thmheadnl","thmname","thmnote","thmnumber","Tiny","title","tocappendix","tocchapter","toccontribs","tocparagraph","tocpart","tocsection","tocsubparagraph","tocsubsection","tocsubsubsection","translator","translname","upn","uppercasenonmath","URL","urladdr","urladdrname","URLhref","volinfo","wraptoccontribs","xandlist","xcontribs","defaultfont"]}
-,
-"amsrefs.sty":{"envs":["bibchapter","bibdiv","biblist","bibsection"],"deps":["url.sty","pcatcode.sty","ifoption.sty","rkeyval.sty","textcmds.sty","mathscinet.sty","backref.sty","hyperref.sty","amsbst.sty"],"cmds":["bib","bibselect","resetbiblist","bibname","MR","cite","citelist","cites","ycite","ycites","ocite","ocites","citeauthor","citeauthory","citeyear","fullcite","fullocite","DefineName","DefineJournal","DefinePublisher","parenthesize","bibquotes","voltext","issuetext","editiontext","DashPages","nopunct","PrintPrimary","PrintAuthors","PrintEditorsA","PrintEditorsB","PrintEditorsC","PrintTranslatorsA","PrintTranslatorsB","PrintTranslatorsC","sameauthors","bysame","Plural","SingularPlural","PrintReviews","BibField","IfEmptyBibField","PrintEdition","CardinalNumeric","PrintDate","PrintYear","BackCite","bblname","BibAbbrevWarning","bibcite","BibItem","BibLabel","biblanguagedefault","biblanguageEnglish","biblistfont","BibSelect","BibSpec","BibSpecAlias","citeAltPunct","citedest","citeform","citeleft","citemid","citen","CiteNames","CiteNamesFull","CitePrintUndefined","citepunct","citeright","citesel","CloseBBLFile","CurrentBib","CurrentBibType","DeclareNameAccent","DeclareNameSymbol","deferredquotes","deferredquoteslogical","DuplicateBibKeyWarning","DuplicateBibLabelWarning","EmptyNameWarning","EmptyPrimaryWarning","eprint","eprintpages","etalchar","etaltext","InnerCite","macrotext","MessageBreakNS","ModifyBibLabel","MRhref","MultipleBibSelectWarning","MultipleCiteKeyWarning","NoBibDBFile","NonNumericCiteWarning","ObsoleteCiteOptionWarning","OpenBBLFile","OtherCite","othercitelist","othercites","PrintBackRefs","PrintBook","PrintCiteNames","PrintCNY","PrintConference","PrintConferenceDetails","PrintContributions","PrintDateB","PrintDateField","PrintDatePosted","PrintDatePV","PrintDOI","PrintISBNs","PrintNameList","PrintNames","PrintPartials","PrintReprint","PrintSeries","PrintThesisType","PrintTranslation","ReadBibData","ReadBibLoop","ResetCapSFCodes","SentenceSpace","SubEtal","SwapBreak","thebib","TrailingHyphenWarning","UndefinedCiteWarning","upn","vdef","XRefWarning"]}
-,
-"amssymb.sty":{"envs":{},"deps":["amsfonts.sty"],"cmds":["approxeq","backepsilon","backprime","backsim","backsimeq","barwedge","Bbbk","because","beth","between","bigstar","blacklozenge","blacksquare","blacktriangle","blacktriangledown","blacktriangleleft","blacktriangleright","boxdot","boxminus","boxplus","boxtimes","bumpeq","Bumpeq","Cap","centerdot","circeq","circlearrowleft","circlearrowright","circledast","circledcirc","circleddash","circledS","complement","Cup","curlyeqprec","curlyeqsucc","curlyvee","curlywedge","curvearrowleft","curvearrowright","daleth","diagdown","diagup","digamma","divideontimes","Doteq","doteqdot","dotplus","doublebarwedge","doublecap","doublecup","downdownarrows","downharpoonleft","downharpoonright","eqcirc","eqsim","eqslantgtr","eqslantless","eth","fallingdotseq","Finv","Game","geqq","geqslant","ggg","gggtr","gimel","gnapprox","gneq","gneqq","gnsim","gtrapprox","gtrdot","gtreqless","gtreqqless","gtrless","gtrsim","gvertneqq","hslash","intercal","leftarrowtail","leftleftarrows","leftrightarrows","leftrightharpoons","leftrightsquigarrow","leftthreetimes","leqq","leqslant","lessapprox","lessdot","lesseqgtr","lesseqqgtr","lessgtr","lesssim","Lleftarrow","lll","llless","lnapprox","lneq","lneqq","lnsim","looparrowleft","looparrowright","Lsh","ltimes","lvertneqq","measuredangle","multimap","ncong","nexists","ngeq","ngeqq","ngeqslant","ngtr","nleftarrow","nLeftarrow","nleftrightarrow","nLeftrightarrow","nleq","nleqq","nleqslant","nless","nmid","nparallel","nprec","npreceq","nrightarrow","nRightarrow","nshortmid","nshortparallel","nsim","nsubseteq","nsubseteqq","nsucc","nsucceq","nsupseteq","nsupseteqq","ntriangleleft","ntrianglelefteq","ntriangleright","ntrianglerighteq","nvdash","nvDash","nVdash","nVDash","pitchfork","precapprox","preccurlyeq","precnapprox","precneqq","precnsim","precsim","restriction","rightarrowtail","rightleftarrows","rightrightarrows","rightthreetimes","risingdotseq","Rrightarrow","Rsh","rtimes","shortmid","shortparallel","smallfrown","smallsetminus","smallsmile","sphericalangle","Subset","subseteqq","subsetneq","subsetneqq","succapprox","succcurlyeq","succnapprox","succneqq","succnsim","succsim","Supset","supseteqq","supsetneq","supsetneqq","therefore","thickapprox","thicksim","triangledown","triangleq","twoheadleftarrow","twoheadrightarrow","upharpoonleft","upharpoonright","upuparrows","varkappa","varnothing","varpropto","varsubsetneq","varsubsetneqq","varsupsetneq","varsupsetneqq","vartriangle","vDash","Vdash","veebar","Vvdash"]}
-,
-"amstext-l.cls":{"envs":["framedthm","inclusion","inchapterbibliography"],"deps":["s-amsbook.cls"],"cmds":["indexintro","indexfont","xcbtitlefont","xcbdigits","longxcbtoprule","shortxcbendrule","xqed","setmathstrut","inclusionfont","inclusionindent","bibintro"]}
-,
-"amstext.sty":{"envs":{},"deps":["amsgen.sty"],"cmds":["text"]}
-,
-"amsthm.sty":{"envs":["proof"],"deps":{},"cmds":["newtheorem","theoremstyle","swapnumbers","newtheoremstyle","thmname","thmnumber","thmnote","qedsymbol","qedhere","qed","proofname","nopunct","thmhead","swappedhead","mathqed","pushQED","popQED","openbox","textsquare","thmheadnl"]}
-,
-"amsxtra.sty":{"envs":{},"deps":["amsmath.sty"],"cmds":["sphat","sptilde","spbreve","spcheck","spdddot","spddot","spdot","accentedsymbol","fracwithdelims"]}
-,
-"analogclock.sty":{"envs":{},"deps":["hyperref.sty","xcolor.sty","xkeyval.sty","tikz.sty"],"cmds":["initclock","analogclock","clocksizefactor","faceclock","kk","sizebox","uu","colocafield","facebg","faceframe","face","clockskin","startclock"]}
-,
-"andika.sty":{"envs":{},"deps":["xkeyval.sty","iftex.sty","fontenc.sty","fontaxes.sty","mweights.sty"],"cmds":["andikafamily","andika"]}
-,
-"animate.sty":{"envs":["animateinline"],"deps":["ifthen.sty","ifdraft.sty","pdfbase.sty","zref-abspage.sty"],"cmds":["animategraphics","newframe","multiframe","multiframebreak"]}
-,
-"annee-scolaire.sty":{"envs":{},"deps":["xparse.sty","l3keys2e.sty"],"cmds":["anneescolaire","debutanneescolaire","finanneescolaire","AnneeScolairePresentation"]}
-,
-"annot_pro.sty":{"envs":["textboxpara"],"deps":["xkeyval.sty","trig.sty","hyperref.sty","calc.sty","aeb_mlink.sty","taborder.sty","richtext.sty"],"cmds":["annotpro","setAnnotOptions","margintextformat","apmargintextformat","apContText","currentAnnotName","apmargintext","defaultStampHeight","defaultStampWidth","getargsiii","ifpreview","ifuseAAXdim","isrichtextkey","isstrikeout","makeStamp","mldblevel","mlignore","previewfalse","previewtrue","pStamp","QuadPoints","stampHeight","stampWidth","standardStampHeight","standardStampWidth","useAAXdimfalse","useAAXdimtrue"]}
-,
-"annotate-equations.sty":{"envs":{},"deps":["ifluatex.sty","tikz.sty","tikzlibrarybackgrounds.sty","tikzlibraryshapes.sty","tikzlibrarytikzmark.sty","tikzlibrarycalc.sty","xcolor.sty","expl3.sty","l3keys2e.sty","xparse.sty"],"cmds":["eqnmarkbox","eqnmark","annotate","annotatetwo","addvalue","EAlabelanchor","EAmarkanchor","EAwesteast","EAxshift","eqnannotateCurrentNode","eqnannotationfont","eqnannotationstrut","eqncolor","eqnhighlight","eqnhighlightcolorbox","eqnhighlightfbox","eqnhighlightheight","eqnhighlightshade","extractfirst","myEAcolor","myEAmarkOn","myEAmarks","myEAmarkTwo","myEAtext","myEAxshift","swapNorthSouth","swapWestEast","theeqnannotatenode","usevalue"]}
-,
-"anonchap.sty":{"envs":{},"deps":{},"cmds":["simplechapter","restorechapter","simplechapterdelim"]}
-,
-"anonymous-acm.sty":{"envs":{},"deps":{},"cmds":["authoranon","textanon","linkanon","textlinkanon","citeanon","ifAnonCondition","AnonConditiontrue","AnonConditionfalse"]}
-,
-"answers.sty":{"envs":["Filesave"],"deps":["verbatim.sty"],"cmds":["Newassociation","solutionextension","Opensolutionfile","Closesolutionfile","Writetofile","Readsolutionfile","Currentlabel","Ifanswerfiles","Iffileundefined","Ifopen","Tmp","newsolution","solutionpoint","solutionstyle","ifanswerfiles","answerfilestrue","answerfilesfalse"]}
-,
-"antanilipsum.sty":{"envs":{},"deps":["expl3.sty","xparse.sty"],"cmds":["antani","antanidef"]}
-,
-"antpolt.sty":{"envs":{},"deps":{},"cmds":{}}
-,
-"anttor.sty":{"envs":{},"deps":{},"cmds":["minusleft","equalleft","equalright","equalc","Rightarrow","Leftarrowj","minusright","minusc","rightarrow","leftarrow","Longrightarrow","Longleftarrow","longrightarrow","longleftarrow","rightarrowfill","leftarrowfill"]}
-,
-"aobs-tikz.sty":{"envs":{},"deps":["tikz.sty","tikzlibraryoverlay-beamer-styles.sty"],"cmds":{}}
-,
-"aomart.cls":{"envs":{},"deps":["s-amsart.cls","fancyhdr.sty","lastpage.sty","ifpdf.sty","environ.sty","yhmath.sty","cmtiup.sty","hyperref.sty","color.sty"],"cmds":["orcid","givenname","surname","fulladdress","contrib","contribs","copyrightnote","keyword","subject","formatdate","received","revised","accepted","published","publishedonline","proposed","seconded","corresponding","editor","version","volumenumber","issuenumber","publicationyear","papernumber","startpage","endpage","doinumber","mrnumber","zblnumber","arxivnumber","oldsubsections","widebar","EditorialComment","fullref","pfullref","bfullref","eqfullref","fullpageref","newtheorem","funding","doi","mr","zbl","jfm","arxiv","annalsurl","specialdigits","sishape","textsi"]}
-,
-"apa7.cls":{"envs":["seriate","APAenumerate","APAitemize"],"deps":["etoolbox.sty","lmodern.sty","fontenc.sty","txfonts.sty","geometry.sty","graphicx.sty","scalerel.sty","tikz.sty","tikzlibrarysvg.path.sty","hyperref.sty","booktabs.sty","threeparttable.sty","caption.sty","bm.sty","fancyhdr.sty","flushend.sty","ftnright.sty","apacite.sty","babel.sty","biblatex.sty","draftwatermark.sty","float.sty","array.sty","longtable.sty","endfloat.sty","substr.sty","pslatex.sty","mathptm.sty"],"cmds":["footmark","ifnextchar","shorttitle","leftheader","journal","volume","ccoppy","copnum","affiliation","authorsnames","authorsaffiliations","course","professor","duedate","abstract","keywords","authornote","addORCIDlink","note","figurenote","tablenote","fitfigure","fitbitmap","tabfnm","tabfnt","apaSevenvector","apaSevenmatrix","maskcite","maskCite","maskparencite","maskParencite","masktextcite","maskTextcite","maskciteauthor","maskCiteauthor","maskciteyear","maskfootcite","maskfootcitetext","acksname","addperi","apaSevenappeq","apaSevenappfig","apaSevenapptab","apaSevensmash","authorsep","displayaffiliations","displayauthors","ifapamodedoc","ifapamodejou","ifapamodeman","ifapamode","keywordname","lastauthor","lastauthorseparator","listaffiliations","listauthors","listsuperscripts","mspart","notelabel","notesname","prelastauthor","prelastauthorsep","processfigures","processtables","rightheader","stiny","theAPAenum","theAffiliationNumber","theNumberOfAffiliations","theNumberOfAuthors","theNumberOfSuperscripts","theappendix","themaskedRefs","thickline","typesectitle","uprightlowercasegreek","TPToverlap","bibsection","dotwo","eatarg","ignore","looptwo","savefootnoterule","xtwo","DH","dh","dj","DJ","guillemetleft","guillemetright","guillemotleft","guillemotright","guilsinglleft","guilsinglright","Hwithstroke","hwithstroke","k","NG","ng","quotedblbase","quotesinglbase","textogonekcentered","textquotedbl","th","TH"]}
-,
-"apacite.sty":{"envs":["APACrefauthors","APACrefURL","APACrefDOI","APACrefURLmsg","APACrefannotation"],"deps":["natbib.sty","index.sty","multicol.sty"],"cmds":["citeauthorp","citeauthort","Citeauthorp","Citeauthort","Citefullauthor","citefullauthort","citefullauthorp","Citefullauthort","Citefullauthorp","maskcitep","maskcitet","maskciteyearpar","maskcitealp","maskcitealt","maskcitenum","maskcitetalias","maskcitepalias","maskCitep","maskCitet","maskCiteauthor","maskCitealp","maskCitealt","maskciteauthorp","maskciteauthort","maskCiteauthorp","maskCiteauthort","maskcitefullauthor","maskCitefullauthor","Cite","fullciteauthorA","shortCitealp","shortCitealt","shortCiteauthor","shortCiteauthorp","shortCiteauthort","shortCitep","shortCitet","shortcitealp","shortcitealt","shortciteauthorA","shortciteauthorp","shortciteauthort","shortcitep","shortcitet","cite","citeA","citeauthor","citeyear","citeyearNP","citeauthorNP","citeNP","nocitemeta","fullcite","fullciteA","fullciteNP","fullciteauthor","fullciteauthorNP","shortcite","shortciteA","shortciteNP","shortciteauthor","shortciteauthorNP","maskcite","maskciteA","maskciteNP","maskciteauthor","maskciteauthorNP","maskciteyear","maskciteyearNP","maskfullcite","maskfullciteA","maskfullciteNP","maskfullciteauthor","maskfullciteauthorNP","maskshortcite","maskshortciteA","maskshortciteNP","maskshortciteauthor","maskshortciteauthorNP","masknocite","masktext","PrintOrdinal","APACSortNoop","BAstyle","BAastyle","APACrefauthstyle","BBA","BBAA","BBAB","BAnd","BBOP","BBCP","BAP","BBAY","BBYY","BBN","BBC","BBOQ","BBCQ","BPBI","BHBI","BCBT","BCBL","BDBL","theBibCnt","BCnt","BCntIP","BCntND","APACciteatitle","APACcitebtitle","APACmetastar","bibnewpage","bibliographytypesize","bibleftmargin","bibindent","bibitemsep","bibparsep","biblabelsep","onemaskedcitationmsg","maskedcitationsmsg","bibmessage","bibcomputerprogram","bibcomputerprogrammanual","bibcomputerprogramandmanual","bibcomputersoftware","bibcomputersoftwaremanual","bibcomputersoftwareandmanual","bibprogramminglanguage","bibnotype","bibnodate","BOthers","BOthersPeriod","bibcorporate","BIP","BIn","BCHAP","BCHAPS","BED","BEDS","BTRANS","BTRANSS","BTRANSL","BCHAIR","BCHAIRS","BVOL","BVOLS","BNUM","BNUMS","BEd","BPG","BPGS","BTR","BPhD","BUPhD","BMTh","BUMTh","BAuthor","BOWP","BREPR","Bby","BAvailFrom","BRetrieved","BRetrievedFrom","BMsgPostedTo","bibname","bibliographyprenote","APACmetaprenote","authorindexname","doiprefix","APACmonth","APACrefYear","APACrefYearMonthDay","APACrefatitle","APACrefbtitle","APACrefaetitle","APACrefbetitle","APACjournalVolNumPages","APACaddressPublisher","APACaddressInstitution","APACaddressPublisherEqAuth","APACaddressInstitutionEqAuth","APACaddressSchool","APACtypeAddressSchool","APAChowpublished","APACorigED","APACorigEDS","APACrefnote","APACorigyearnote","APACorigjournalnote","APACorigbooknote","APACbVolEdTR","APACbVolEdTRpgs","doi","APACstdindex","APACtocindex","APACemindex","APACltxemindex","AX","corporateAX","APACbibcite","APACexlab","APACinsertmetastar","APACrestorebibitem","APACurlBreaks","APACyear","Bem","bibphant","CardinalNumeric","CurrentBib","currentindexname","definemetaflag","makehashmacropar","makehashother","maskcitations","PrintAX","PrintBackRefs","themaskedRefs","unmaskcitations","url","usespanishe","BCA","BCAY"]}
-,
-"appendix.sty":{"envs":["appendices","subappendices"],"deps":{},"cmds":["appendix","appendixpage","addappheadtotoc","noappendicestocpagenum","appendicestocpagenum","appendixtocname","appendixpagename","appendixtocon","appendixtocoff","appendixpageon","appendixpageoff","appendixtitleon","appendixtitleoff","appendixtitletocon","appendixtitletocoff","appendixheaderon","appendixheaderoff","restoreapp","setthesection","setthesubsection"]}
-,
-"appendixnumberbeamer.sty":{"envs":{},"deps":{},"cmds":["appendixtotalframenumber","mainend","appendixorig","pageatend","appendixend"]}
-,
-"apptools.sty":{"envs":{},"deps":{},"cmds":["AtAppendix","IfAppendix","ifappendix","appendixtrue","appendixfalse"]}
-,
-"apxproof.sty":{"envs":["toappendix","appendixproof","proofsketch","inlineproof","nestedproof"],"deps":["environ.sty","etoolbox.sty","fancyvrb.sty","ifthen.sty","kvoptions.sty","catchfile.sty","amsthm.sty","bibunits.sty"],"cmds":["newtheoremrep","mainbodyrepeatedtheorem","appendixsectionformat","appendixrefname","appendixbibliographystyle","appendixbibliographyprelim","appendixprelim","noproofinappendix","nosectionappendix"]}
-,
-"ar.sty":{"envs":{},"deps":{},"cmds":["ifCM","CMtrue","CMfalse","ifTM","TMtrue","TMfalse","ifPA","PAtrue","PAfalse","AR","ARb","ARss","ARssb","ARtt","ARm","ARmb"]}
-,
-"arabic-book.cls":{"envs":["appendixfigure","appendixtable"],"deps":["s-book.cls","polyglossia.sty","hyperref.sty","geometry.sty","amsmath.sty","enumitem.sty","tikz.sty","tikzlibrarymatrix.sty","tikzlibrarydecorations.pathmorphing.sty","setspace.sty","titling.sty","ifthen.sty","titlesec.sty","indentfirst.sty","tocloft.sty","etoolbox.sty","totalcount.sty","tocbibind.sty","newfloat.sty","caption.sty","collcell.sty","float.sty","xwatermark.sty"],"cmds":["arabicfont","arabicfonttt","theappendixfigure","listofappendixfigures","theappendixtable","listofappendixtables","abstract","makeabstract","namedappendix","SepMark"]}
-,
-"arabluatex.sty":{"envs":["arab","arabverse","txarab","arabexport","txarabtr"],"deps":["iftex.sty","xkeyval.sty","xcolor.sty","luacolor.sty","etoolbox.sty","arabluatex-patch.sty","fontspec.sty","luacode.sty","xparse.sty","adjustbox.sty","xstring.sty","lua-ul.sty"],"cmds":["arabicfont","SetArbEasy","SetArbDflt","arb","arbnull","abjad","aemph","aoline","auline","SetHemistichDelim","bayt","StretchBayt","abraces","arbmark","newarbmark","ayah","arbcolor","SetTranslitConvention","SetTranslitStyle","SetTranslitFont","uc","prname","arbup","NoArbUp","ArbUpDflt","SetArbUp","SetInputScheme","txarb","LR","RL","LRfootnote","RLfootnote","FixArbFtnmk","LRmarginpar","setRL","setLR","MkArbBreak","SetArbOutSuffix","arbpardir","ArbOutFile","SetDefaultIndex","SetIndexMode","Uc","arind","txtrans"]}
-,
-"arabxetex.sty":{"envs":["arab","farsi","urdu","sindhi","pashto","ottoman","kurdish","kashmiri","malay","uighur","maghribi","Arabic","jawi","persion","turk"],"deps":["xetex.sty","amsmath.sty","fontspec.sty","bidi.sty"],"cmds":["textarab","textfarsi","texturdu","textsindhi","textpashto","textottoman","textkurdish","textkashmiri","textmalay","textuighur","textmaghribi","textLR","aemph","arabicfont","SetTranslitConvention","SetTranslitStyle","UC","textarabic","textjawi","textpersian","textturk","SetAllahWithAlif","SetAllahWithoutAlif"]}
-,
-"aramaic.sty":{"envs":{},"deps":{},"cmds":["aramfamily","textaram","Arq","Ab","Ag","Ad","Ah","Aw","Az","Ahd","Atd","Ay","Ak","Al","Am","An","As","Alq","Ap","Asd","Aq","Ar","Asv","At","Aa","Aaleph","Abeth","Agimel","Adaleth","Ahe","Avav","Azayin","Aheth","Ateth","Ayod","Akaph","Alamed","Amem","Anun","Asamekh","Ao","Aayin","Ape","Asade","Aqoph","Aresh","Ashin","Atav","translitaram","translitaramfont"]}
-,
-"arev.sty":{"envs":{},"deps":["arevtext.sty","arevmath.sty"],"cmds":{}}
-,
-"arevmath.sty":{"envs":{},"deps":["amssymb.sty","ams-mdbch.sty","ifthen.sty"],"cmds":["mathscr","mathbm","widetriangle","wideparen","varGamma","varXi","varPi","varSigma","varPhi","origIota","varIota","origI","origa","origf","origi","origl","origu","origv","origw","origx","origimath","varimath","varbeta","varI","vara","vari","varl","varu","varv","varw","varx","varf","Qoppa","qoppa","Koppa","koppa","Sampi","sampi","Stigma","stigma","varspade","varheart","vardiamond","varclub","steaming","quarternote","eighthnote","sixteenthnote","origGamma","origXi","origPi","origSigma","origPhi","yinyang","sadface","smileface","invsmileface","westcross","eastcross","skull","radiation","biohazard","recycle","anchor","swords","warning","pointright","pencil","ballotcheck","ballotx","heavyqtleft","heavyqtright","arrowbullet"]}
-,
-"arevtext.sty":{"envs":{},"deps":["fontenc.sty","textcomp.sty"],"cmds":["DH","NG","dj","ng","k","guillemotleft","guillemotright","guilsinglleft","guilsinglright","quotedblbase","quotesinglbase","textquotedbl","DJ","th","TH","dh","Hwithstroke","hwithstroke","textogonekcentered","guillemetleft","guillemetright"]}
-,
-"argetabelle.cls":{"envs":{},"deps":["s-scrartcl.cls","marvosym.sty","geometry.sty","datatool.sty","eurosym.sty","xspace.sty","multicol.sty","pdfpages.sty","comment.sty","xparse.sty","longtable.sty","booktabs.sty","array.sty","ragged2e.sty"],"cmds":{}}
-,
-"arimo.sty":{"envs":{},"deps":["ifxetex.sty","ifluatex.sty","textcomp.sty","xkeyval.sty","fontenc.sty","fontaxes.sty"],"cmds":["arimo","arimofamily"]}
-,
-"armtex.sty":{"envs":{},"deps":["kvoptions.sty"],"cmds":["artmfamily","arssfamily","arbfseries","armdseries","arupshape","aritshape","arslshape","armtm","armss","armbf","armmd","armup","armit","armsl","artm","arss","artmbf","arssbf","artmit","artmsl","arsssl","artmbfit","artmbfsl","arssbfsl","armdate","armdateoff","armhyph","armhyphoff","aroff","armnames","armnamesoff","latArmTeX","ArmTeX","alsoname","bibname","ccname","chaptername","ddots","enclname","glossaryname","headtoname","pagename","prefacename","proofname","seename","armprime","armprimeoff","mtArmayb","mtArmben","mtArmgim","mtArmda","mtArmyech","mtArmza","mtArme","mtArmat","mtArmto","mtArmzhe","mtArmini","mtArmlyun","mtArmkhe","mtArmtsa","mtArmken","mtArmho","mtArmdza","mtArmghat","mtArmtche","mtArmmen","mtArmhi","mtArmnu","mtArmsha","mtArmvo","mtArmcha","mtArmpe","mtArmje","mtArmra","mtArmse","mtArmvev","mtArmtyun","mtArmre","mtArmtso","mtArmvyun","mtArmvovyun","mtArmpyur","mtArmke","mtArmo","mtArmfe","mtarmayb","mtarmben","mtarmgim","mtarmda","mtarmyech","mtarmza","mtarme","mtarmat","mtarmto","mtarmzhe","mtarmini","mtarmlyun","mtarmkhe","mtarmtsa","mtarmken","mtarmho","mtarmdza","mtarmghat","mtarmtche","mtarmmen","mtarmhi","mtarmnu","mtarmsha","mtarmvo","mtarmcha","mtarmpe","mtarmje","mtarmra","mtarmse","mtarmvev","mtarmtyun","mtarmre","mtarmtso","mtarmvyun","mtarmvovyun","mtarmpyur","mtarmke","mtarmew","mtarmo","mtarmfe","mathartm","mathartmbf","mathartmit","mathartmbfit","mathardefault","armnumeral","unarmnumeral","armnumeralcount","armnumber","unarmnumber","armalph","Armalph","armalphs","armalphsoff","armfontsdefault","armfontsdefaultoff","armtoday","armabbrev","armabr","armaccent","armapostrophe","Armat","armat","Armayb","armayb","Armben","armben","armbl","Armcha","armcha","armcomma","Armda","armda","armdot","armdram","Armdza","armdza","Arme","arme","armellipsis","armemdash","armendash","armeternity","armew","armexclam","Armfe","armfe","armfullstop","Armghat","armghat","Armgim","armgim","Armhi","armhi","Armho","armho","Armini","armini","Armje","armje","Armke","armke","Armken","armken","Armkhe","armkhe","Armlyun","armlyun","Armmen","armmen","Armnu","armnu","armnum","Armo","armo","armparenleft","armparenright","Armpe","armpe","Armpyur","armpyur","armquestion","armquotleft","armquotright","Armra","armra","Armre","armre","Armse","armse","armsection","armsep","Armsha","armsha","Armtche","armtche","Armto","armto","Armtsa","armtsa","Armtso","armtso","Armtyun","armtyun","armuh","Armvev","armvev","Armvo","armvo","Armvovyun","armvovyun","Armvyun","armvyun","Armyech","armyech","armyentamna","Armza","armza","Armzhe","armzhe","textand","textanjgic","textbreaklig","textexclam","texthash","textpercent","textquestion"]}
-,
-"array.sty":{"envs":{},"deps":{},"cmds":["arraybackslash","extrarowheight","extratabsurround","firsthline","lasthline","newcolumntype","showcols"]}
-,
-"arraycols.sty":{"envs":{},"deps":["array.sty","cellspace.sty","tabularx.sty","makecell.sty","amsmath.sty"],"cmds":["savedwidth","whline"]}
-,
-"arrayjobx.sty":{"envs":{},"deps":{},"cmds":["newarray","delarray","readarray","cachedata","ifemptydata","emptydatatrue","emptydatafalse","ifnormalindex","normalindextrue","normalindexfalse","dataheight","ifexpandarrayelement","expandarrayelementtrue","expandarrayelementfalse","arrayx","clrarray","testarray","EntryArrayJob"]}
-,
-"arraysort.sty":{"envs":{},"deps":["arrayjobx.sty","calc.sty","ifthen.sty","etoolbox.sty","xargs.sty","macroswap.sty","pdftexcmds.sty","lcg.sty"],"cmds":["sortArray","arraysortcomparestr","arraysortcomparenum","sortArrayPartitionRand","sortArrayPartitionMed","sortArrayPartitionMid","sortArrayPartitionFirst"]}
-,
-"arsclassica.sty":{"envs":{},"deps":["sicthesis.cls","caption.sty","soul.sty","titlesec.sty"],"cmds":["formatchapter","allcapsspacing","lowsmallcapsspacing"]}
-,
-"artikel1.cls":{"envs":{},"deps":{},"cmds":["andname","CaptionFonts","CaptionLabelFont","CaptionTextFont","HeadingFonts","MarkFont","othermargin","PageFont","ParaFont","PartFont","RunningFonts","SectFont","seename","SParaFont","SSectFont","SSSectFont","Thispagestyle","TitleFont","unitindent"]}
-,
-"artikel2.cls":{"envs":{},"deps":{},"cmds":["andname","CaptionFonts","CaptionLabelFont","CaptionTextFont","HeadingFonts","MarkFont","othermargin","PageFont","ParaFont","PartFont","RunningFonts","SectFont","seename","SParaFont","SSectFont","SSSectFont","Thispagestyle","TitleFont","unitindent"]}
-,
-"artikel3.cls":{"envs":{},"deps":{},"cmds":["andname","CaptionFonts","CaptionLabelFont","CaptionTextFont","HeadingFonts","MarkFont","othermargin","PageFont","ParaFont","PartFont","RunningFonts","SectFont","seename","SParaFont","SSectFont","SSSectFont","Thispagestyle","TitleFont","unitindent"]}
-,
-"artthreads.sty":{"envs":{},"deps":["xkeyval.sty","fitr.sty"],"cmds":["setThreadInfo","bArticle","cArticle","setAddToBorder","shArticlesPaneActn","sArticlesPaneActn","shArticlesPaneReadActn","sArticlesPaneReadActn","Thread","toggleArticlePane","toggleArticlePaneRead","showArticlePane","showArticlePaneRead","readArticle","threadTitle","threadAuthor","threadKeywords","threadSubject","tooltipTogglePaneRead","tooltipShowPaneRead","bArtErrMsg","chkThreadName","CntArt","CntArtInfo","ifnewarticle","isThrTtl","newarticlefalse","newarticletrue","readArtPresets","readThreadMsg"]}
-,
-"arydshln.sty":{"envs":["Array","Tabular","Tabular*","Longtable"],"deps":{},"cmds":["hdashline","cdashline","firsthdashline","lasthdashline","dashlinedash","dashlinegap","ADLnullwide","ADLsomewide","ADLdrawingmode","ADLinactivate","ADLactivate","ADLnoshorthanded","ADLnullwidehline","ADLsomewidehline","dashgapcolor","nodashgapcolor"]}
-,
-"asapsym.sty":{"envs":{},"deps":["fontspec.sty"],"cmds":["asapArrowLeft","asapArrowUpLeft","asapArrowUp","asapArrowUpRight","asapArrowRight","asapArrowDownRight","asapArrowDown","asapArrowDownLeft","asapArrowCircleOpenLeft","asapArrowCircleOpenUpLeft","asapArrowCircleOpenUp","asapArrowCircleOpenUpRight","asapArrowCircleOpenRight","asapArrowCircleOpenDownRight","asapArrowCircleOpenDown","asapArrowCircleOpenDownLeft","asapArrowCircleFillLeft","asapArrowCircleFillUpLeft","asapArrowCircleFillUp","asapArrowCircleFillUpRight","asapArrowCircleFillRight","asapArrowCircleFillDownRight","asapArrowCircleFillDown","asapArrowCircleFillDownLeft","asapElevator","asapStair","asapStairDown","asapStairUp","asapEscalator","asapEscalatorDown","asapEscalatorUp","asapBook","asapEnvelope","asapGift","asapLocker","asapLostAndFound","asapMicroscope","asapCross","asapPhone","asapMobilePhone","asapTablet","asapMonitor","asapUtensils","asapMug","asapHanger","asapCigarette","asapFemaleWithServiceAnimal","asapMaleWithServiceAnimal","asapFemaleWalkingDog","asapMaleWalkingDog","asapFemaleWalking","asapMaleWalking","asapFemaleWithLuggageWaving","asapMaleWithLuggageWaving","asapFemaleWithLuggageWaiting","asapMaleWithLuggageWaiting","asapFemaleDiscardingTrash","asapMaleDiscardingTrash","asapFemaleAtHelpDesk","asapMaleAtHelpDesk","asapFemaleHoldingInfant","asapMaleHoldingInfant","asapFemaleWalkingStroller","asapMaleWalkingStroller","asapFemaleWithChild","asapMaleWithChild","asapWalkingCane","asapWaitingSeated","asapFemaleAtDrinkingFountain","asapMaleAtDrinkingFountain","asapFemaleAdult","asapMaleAdult","asapFemaleChild","asapMaleChild","asapWheelchairStationary","asapWheelchairInMotion","asapPregnant","asapGroupMeeting","asapCycling","asapDog","asapInfant","asapInformationSign","asapHospitalSign","asapHelpSign","asapDollarSign","asapEmergencySign","asapParkingSign","asapWalkSign","asapDogSign","asapMobilePhoneSign","asapCigaretteSign","asapNotSign","asapNotInformationSign","asapNotHospitalSign","asapNotHelpSign","asapNotDollarSign","asapNotEmergencySign","asapNotParkingSign","asapNotWalkSign","asapNotDogSign","asapNotMobilePhoneSign","asapNotCigaretteSign","asapBoat","asapHelicopter","asapAirplaneOverhead","asapAirplaneTakeoff","asapAirplaneLanding","asapBicycle","asapAutomobile","asapTaxi","asapAutomobileWithKey","asapBus","asapTrain","asapsym"]}
-,
-"ascii.sty":{"envs":{},"deps":["xspace.sty"],"cmds":["textascii","asciifamily","asciispace","asciiquotedbl","asciihash","asciidollar","asciipercent","asciiampersand","asciiquoteacute","asciibackslash","asciicircum","asciiunderscore","asciiquotegrave","asciilbrace","asciivert","asciirbrace","asciitilde","splitvert","isosplitvert","NUL","SOH","STX","ETX","EOT","ENQ","ACK","BEL","BS","HT","LF","VT","FF","CR","SO","SI","DLE","DCa","DCb","DCc","DCd","NAK","SYN","ETB","CAN","EM","SUB","ESC","FS","GS","RS","US","DEL","NBSP"]}
-,
-"asciilist.sty":{"envs":["AsciiList","AsciiDocList"],"deps":["etoolbox.sty"],"cmds":["AsciiListFromFile","AsciiListFromFiles","AsciiListSetAutochars","UP","UPTO","AsciiDocListFromFile","AsciiDocListFromFiles","AsciiListRegisterEnv","AsciiListRegisterDescEnv","AsciiListEndArg","AsciiListEndOArg","AsciiListSetEnvironments","NewAsciiListEnv","AsciiDocListSetEnvironments","NewAsciiDocListEnv"]}
-,
-"ascmac.sty":{"envs":{},"deps":{},"cmds":{}}
-,
-"askinclude.sty":{"envs":{},"deps":["makematch.sty"],"cmds":{}}
-,
-"askincv1.sty":{"envs":{},"deps":{},"cmds":["infile","readinclude","endread","myincludeonly","stripspace","nextspace","incfiles"]}
-,
-"askmaps.sty":{"envs":{},"deps":["pict2e.sty"],"cmds":["askmapi","askmapii","askmapiii","askmapiiialt","askmapiv","askmapv","askmap","askmapunitlength","askmapsversion","askmapsdate","askmapindexsize","askmapcontentsize","askmapbitcombinationsize","askmapvarsep","askmapargumentstring","askmapgetchar","askmapgetonechar"]}
-,
-"asmeconf.cls":{"envs":["descriptionFB","abstract*"],"deps":["etoolbox.sty","ifthen.sty","iftex.sty","kvoptions.sty","geometry.sty","natbib.sty","graphicx.sty","xcolor.sty","booktabs.sty","array.sty","dcolumn.sty","fontenc.sty","inputenc.sty","textcase.sty","caption.sty","subcaption.sty","mathtools.sty","babel.sty","newtxtext.sty","inconsolata.sty","newtxmath.sty","mathalfa.sty","bm.sty","metalogo.sty","hologo.sty","fancyhdr.sty","fnpos.sty","titlesec.sty","hyperxmp.sty","hyperref.sty","doi.sty","bookmark.sty","xcoffins.sty","fontspec.sty","lineno.sty","flushend.sty","bidi.sty","hyphsubst.sty","amsthm.sty","dsserif.sty","bboldx.sty"],"cmds":["MonoNotMono","ssztwo","AfterBabelLanguage","captionsbelarusian","datebelarusian","extrasbelarusian","noextrasbelarusian","cyrdash","asbuk","Asbuk","Belarusian","sh","ch","tg","ctg","arctg","arcctg","th","cth","cosec","Prob","Variance","NOD","nod","NOK","nok","Proj","NAD","nad","NAK","nak","cyrillicencoding","cyrillictext","cyr","textcyrillic","dq","CYRA","CYRB","CYRV","CYRG","CYRGUP","CYRD","CYRE","CYRIE","CYRZH","CYRZ","CYRI","CYRII","CYRYI","CYRISHRT","CYRK","CYRL","CYRM","CYRN","CYRO","CYRP","CYRR","CYRS","CYRT","CYRU","CYRF","CYRH","CYRC","CYRCH","CYRSH","CYRSHCH","CYRYU","CYRYA","CYRSFTSN","CYRERY","cyra","cyrb","cyrv","cyrg","cyrgup","cyrd","cyre","cyrie","cyrzh","cyrz","cyri","cyrii","cyryi","cyrishrt","cyrk","cyrl","cyrm","cyrn","cyro","cyrp","cyrr","cyrs","cyrt","cyru","cyrf","cyrh","cyrc","cyrch","cyrsh","cyrshch","cyryu","cyrya","cyrsftsn","cyrery","cdash","prefacename","bibname","chaptername","tocname","authorname","enclname","ccname","headtoname","pagename","seename","alsoname","proofname","glossaryname","acronymname","lstlistingname","lstlistlistingname","notesname","nomname","captionsbulgarian","datebulgarian","extrasbulgarian","noextrasbulgarian","Bulgarian","English","Bul","Bg","selectbglanguage","Eng","selectenglanguage","lat","todayRoman","weekdaynamebulgarian","abvon","abvoff","cyrxtounicode","Romannumeral","lastJulianDatebulgarian","firstGregorianDatebulgarian","abbgyear","No","frenchsetup","frenchbsetup","AddThinSpaceBeforeFootnotes","at","AutoSpaceBeforeFDP","boi","bsc","CaptionSeparator","captionsfrench","circonflexe","dateacadian","datefrench","DecimalMathComma","degre","degres","descindentFB","dotFFN","extrasfrench","FBcolonspace","FBdatebox","FBdatespace","FBeverylineguill","FBfigtabshape","FBfnindent","FBFrenchFootnotesfalse","FBFrenchFootnotestrue","FBFrenchSuperscriptstrue","FBGlobalLayoutFrenchtrue","FBgspchar","FBguillopen","FBguillspace","FBInnerGuillSinglefalse","FBInnerGuillSingletrue","FBListItemsAsParfalse","FBListItemsAsPartrue","FBLowercaseSuperscriptstrue","FBmedkern","FBPartNameFulltrue","FBsetspaces","FBSmallCapsFigTabCaptionstrue","FBStandardEnumerateEnvtrue","FBStandardItemizeEnvtrue","FBStandardItemLabelstrue","FBStandardLayouttrue","FBStandardListSpacingtrue","FBStandardListstrue","FBsupR","FBsupS","FBtextellipsis","FBthickkern","FBthinspace","FBthousandsep","FBWarning","fg","fgi","fgii","fprimo","frenchdate","FrenchEnumerate","FrenchFootnotes","FrenchLabelItem","frenchpartfirst","frenchpartsecond","FrenchPopularEnumerate","frenchtoday","Frlabelitemi","Frlabelitemii","Frlabelitemiii","Frlabelitemiv","frquote","fup","ieme","iemes","ier","iere","ieres","iers","ifFBAutoSpaceFootnotes","ifFBCompactItemize","ifFBCustomiseFigTabCaptions","ifFBfrench","ifFBFrenchFootnotes","ifFBFrenchSuperscripts","ifFBGlobalLayoutFrench","ifFBIndentFirst","ifFBINGuillSpace","ifFBListItemsAsPar","ifFBListOldLayout","ifFBLowercaseSuperscripts","ifFBLuaTeX","ifFBOldFigTabCaptions","ifFBOriginalTypewriter","ifFBPartNameFull","ifFBReduceListSpacing","ifFBShowOptions","ifFBSmallCapsFigTabCaptions","ifFBStandardEnumerateEnv","ifFBStandardItemizeEnv","ifFBStandardItemLabels","ifFBStandardLayout","ifFBStandardLists","ifFBStandardListSpacing","ifFBSuppressWarning","ifFBThinColonSpace","ifFBThinSpaceInFrenchNumbers","ifFBunicode","ifFBXeTeX","ifLaTeXe","kernFFN","labelindentFB","labelwidthFB","leftmarginFB","listfigurename","listindentFB","no","NoAutoSpaceBeforeFDP","NoAutoSpacing","NoEveryParQuote","noextrasfrench","nombre","nos","Nos","og","ogi","ogii","parindentFFN","partfirst","partnameord","partsecond","primo","quarto","rmfamilyFB","secundo","sffamilyFB","StandardFootnotes","StandardMathComma","tertio","tild","ttfamilyFB","up","xspace","captionsgerman","dategerman","extrasgerman","noextrasgerman","tosstrue","tossfalse","mdqon","mdqoff","ck","captionsgreek","dategreek","extrasgreek","noextrasgreek","greekscript","greektext","ensuregreek","textgreek","greeknumeral","Greeknumeral","greekfontencoding","textol","outlfamily","greekhyphenmins","Grtoday","anwtonos","katwtonos","qoppa","varqoppa","stigma","sampi","Digamma","ddigamma","euro","permill","textAlpha","textBeta","textGamma","textDelta","textEpsilon","textZeta","textEta","textTheta","textIota","textKappa","textLambda","textMu","textNu","textXi","textOmicron","textPi","textRho","textSigma","textTau","textUpsilon","textPhi","textChi","textPsi","textOmega","textalpha","textbeta","textgamma","textdelta","textepsilon","textzeta","texteta","texttheta","textiota","textkappa","textlambda","textmu","textnu","textxi","textomicron","textpi","textrho","textsigma","textfinalsigma","textautosigma","texttau","textupsilon","textphi","textchi","textpsi","textomega","textpentedeka","textpentehekaton","textpenteqilioi","textstigma","textvarstigma","textKoppa","textkoppa","textqoppa","textQoppa","textStigma","textSampi","textsampi","textanoteleia","texterotimatiko","textdigamma","textDigamma","textdexiakeraia","textaristerikeraia","textvarsigma","textstigmagreek","textkoppagreek","textStigmagreek","textSampigreek","textsampigreek","textdigammagreek","textDigammagreek","textnumeralsigngreek","textnumeralsignlowergreek","textpentemuria","textpercent","textmicro","textschwa","textampersand","accdialytika","acctonos","accdasia","accpsili","accvaria","accperispomeni","prosgegrammeni","ypogegrammeni","accdialytikaperispomeni","accdialytikatonos","accdialytikavaria","accdasiaperispomeni","accdasiavaria","accdasiaoxia","accpsiliperispomeni","accpsilioxia","accpsilivaria","accinvertedbrevebelow","textsubarch","accbrevebelow","captionsindonesian","dateindonesian","extrasindonesian","noextrasindonesian","indonesianhyphenmins","captionsitalian","dateitalian","extrasitalian","noextrasitalian","italianhyphenmins","setactivedoublequote","setISOcompliance","IntelligentComma","NoIntelligentComma","XXIletters","XXVIletters","ap","ped","unit","virgola","virgoladecimale","LtxSymbCaporali","CaporaliFrom","captionsjapanese","datejapanese","extrasjapanese","noextrasjapanese","prechaptername","postchaptername","presectionname","postsectionname","prepartname","postpartname","localfootnote","mainfootnote","localfootnotetext","mainfootnotetext","captionsmacedonian","datemacedonian","extrasmacedonian","noextrasmacedonian","Macedonian","englishhyphenmins","Mkd","Mk","theoremname","corollaryname","lemmaname","overbar","textoverline","overbarshort","textoverlineshort","IfItalic","tbar","captionspolish","datepolish","extraspolish","noextraspolish","aob","Aob","eob","Eob","lpb","Lpb","zkb","Zkb","sob","spb","skb","textpl","telepl","polishrz","polishzx","Russian","captionsrussian","daterussian","extrasrussian","noextrasrussian","captionsserbianc","dateserbianc","extrasserbianc","noextrasserbianc","Serbianc","arsh","arch","arth","arcth","arcsec","arccosec","sech","cosech","arsech","arcosech","Expect","nzs","nzd","NZS","NZD","enumCyr","enumLat","enumEng","captionsturkish","dateturkish","extrasturkish","noextrasturkish","subjectname","Ukrainian","captionsukrainian","dateukrainian","extrasukrainian","noextrasukrainian","viettext","viet","textviet","captionsvietnamese","datevietnamese","extrasvietnamese","noextrasvietnamese","textquotedbl","OHORN","ohorn","UHORN","uhorn","abreve","Abreve","acircumflex","Acircumflex","ecircumflex","Ecircumflex","ocircumflex","Ocircumflex","Ohorn","Uhorn","ABREVE","ACIRCUMFLEX","ECIRCUMFLEX","OCIRCUMFLEX","h","headpagename","BIA","BIB","BIC","BID","BIE","BIF","BIG","BIH","BII","BIJ","BIK","BIL","BIM","BIN","BIO","BIP","BIQ","BIR","BIS","BIT","BIU","BIV","BIW","BIX","BIY","BIZ","BIa","BIb","BIc","BId","BIe","BIf","BIg","BIh","BIi","BIj","BIk","BIl","BIm","BIn","BIo","BIp","BIq","BIr","BIs","BIt","BIu","BIv","BIw","BIx","BIy","BIz","fAlt","rhoAlt","highbar","slashbar","midbar","mathbbb","mathbcal","mathbscr","mathbfrak","mathscr","mathbfscr","mathcal","mathbfcal","mathfrak","mathbffrak","mathbb","mathbfbb","txtbbGamma","txtbbgamma","txtbbPi","txtbbpi","txtbbdotlessi","txtbbdotlessj","txtbbzero","txtbbone","txtbbtwo","txtbbthree","txtbbfour","txtbbfive","txtbbsix","txtbbseven","txtbbeight","txtbbnine","mathbbi","mathbfbbi","imathbb","jmathbb","bbdotlessi","bbdotlessj","bbGamma","bbDelta","bbTheta","bbLambda","bbXi","bbPi","bbSigma","bbUpsilon","bbPhi","bbPsi","bbOmega","bbalpha","bbbeta","bbgamma","bbdelta","bbepsilon","bbzeta","bbeta","bbtheta","bbiota","bbkappa","bblambda","bbmu","bbnu","bbxi","bbpi","bbrho","bbsigma","bbtau","bbupsilon","bbphi","bbchi","bbpsi","bbomega","bbLbrack","bbRbrack","bbLangle","bbRangle","bbLparen","bbRparen","affil","AffiliationBlock","AffiliationsBlock","appendicesname","arabicabstractname","authorblock","AuthorBlock","CAwords","coffinsep","ConfAcronym","ConfCity","ConfDate","ConfName","ConstructAuthorBlock","CorrespondingAuthor","entry","EntryHeading","fifthrowauthorblock","firstrowauthorblock","fontspecloadedfalse","fontspecloadedtrue","fourthrowauthorblock","HeaderConfName","hrefurl","iffontspecloaded","isOtherfnote","isOthernote","JAwords","JointFirstAuthor","keywordname","keywords","LogNote","MakeTitlePage","MyColorOption","nextToken","nomenwidth","oldaffil","oldCorrespondingAuthor","oldfootnote","oldJointFirstAuthor","paperno","PaperNo","papertitle","savemakefnmark","savethefootnote","savitemsep","scaption","secondrowauthorblock","SetAffiliation","SetAuthorBlock","SetAuthors","sfalpha","sfbeta","sfchi","sfDelta","sfdelta","sfepsilon","sfeta","sfGamma","sfgamma","sfhbar","sfhslash","sfiota","sfitnabla","sfitvarkappa","sfkappa","sfLambda","sflambda","sfmu","sfnabla","sfnu","sfOmega","sfomega","sfPhi","sfphi","sfPi","sfpi","sfPsi","sfpsi","sfrho","sfSigma","sfsigma","sftau","sfTheta","sftheta","sfUpsilon","sfupsilon","sfvarepsilon","sfvarkappa","sfvarphi","sfvarpi","sfvarrho","sfvarsigma","sfvartheta","sfXi","sfxi","sfzeta","shortcaption","svsection","theauthorcnt","theauthorno","thirdrowauthorblock","versiondate","versionfootnote","versionno","DH","dh","dj","DJ","guillemetleft","guillemetright","guillemotleft","guillemotright","guilsinglleft","guilsinglright","Hwithstroke","hwithstroke","k","NG","ng","quotedblbase","quotesinglbase","textogonekcentered","TH"]}
-,
-"asmejour.cls":{"envs":["descriptionFB","nomenclature"],"deps":["s-extarticle.cls","etoolbox.sty","ifthen.sty","iftex.sty","kvoptions.sty","geometry.sty","natbib.sty","graphicx.sty","xcolor.sty","booktabs.sty","array.sty","dcolumn.sty","fontenc.sty","inputenc.sty","caption.sty","subcaption.sty","mathtools.sty","babel.sty","newtxtext.sty","inconsolata.sty","newtxmath.sty","mathalfa.sty","bm.sty","metalogo.sty","hologo.sty","fancyhdr.sty","fnpos.sty","titlesec.sty","enumitem.sty","hyperxmp.sty","hyperref.sty","doi.sty","bookmark.sty","totcount.sty","xcoffins.sty","lineno.sty","flushend.sty","fontspec.sty","bidi.sty","amsthm.sty","dsserif.sty","bboldx.sty"],"cmds":["AfterBabelLanguage","captionsbelarusian","datebelarusian","extrasbelarusian","noextrasbelarusian","cyrdash","asbuk","Asbuk","Belarusian","sh","ch","tg","ctg","arctg","arcctg","th","cth","cosec","Prob","Variance","NOD","nod","NOK","nok","Proj","NAD","nad","NAK","nak","cyrillicencoding","cyrillictext","cyr","textcyrillic","dq","CYRA","CYRB","CYRV","CYRG","CYRGUP","CYRD","CYRE","CYRIE","CYRZH","CYRZ","CYRI","CYRII","CYRYI","CYRISHRT","CYRK","CYRL","CYRM","CYRN","CYRO","CYRP","CYRR","CYRS","CYRT","CYRU","CYRF","CYRH","CYRC","CYRCH","CYRSH","CYRSHCH","CYRYU","CYRYA","CYRSFTSN","CYRERY","cyra","cyrb","cyrv","cyrg","cyrgup","cyrd","cyre","cyrie","cyrzh","cyrz","cyri","cyrii","cyryi","cyrishrt","cyrk","cyrl","cyrm","cyrn","cyro","cyrp","cyrr","cyrs","cyrt","cyru","cyrf","cyrh","cyrc","cyrch","cyrsh","cyrshch","cyryu","cyrya","cyrsftsn","cyrery","cdash","prefacename","bibname","chaptername","tocname","authorname","enclname","ccname","headtoname","pagename","seename","alsoname","proofname","glossaryname","acronymname","lstlistingname","lstlistlistingname","notesname","nomname","captionsbulgarian","datebulgarian","extrasbulgarian","noextrasbulgarian","Bulgarian","English","Bul","Bg","selectbglanguage","Eng","selectenglanguage","lat","todayRoman","weekdaynamebulgarian","abvon","abvoff","cyrxtounicode","Romannumeral","lastJulianDatebulgarian","firstGregorianDatebulgarian","abbgyear","No","frenchsetup","frenchbsetup","AddThinSpaceBeforeFootnotes","at","AutoSpaceBeforeFDP","boi","bsc","CaptionSeparator","captionsfrench","circonflexe","dateacadian","datefrench","DecimalMathComma","degre","degres","descindentFB","dotFFN","extrasfrench","FBcolonspace","FBdatebox","FBdatespace","FBeverylineguill","FBfigtabshape","FBfnindent","FBFrenchFootnotesfalse","FBFrenchFootnotestrue","FBFrenchSuperscriptstrue","FBGlobalLayoutFrenchtrue","FBgspchar","FBguillopen","FBguillspace","FBInnerGuillSinglefalse","FBInnerGuillSingletrue","FBListItemsAsParfalse","FBListItemsAsPartrue","FBLowercaseSuperscriptstrue","FBmedkern","FBPartNameFulltrue","FBsetspaces","FBSmallCapsFigTabCaptionstrue","FBStandardEnumerateEnvtrue","FBStandardItemizeEnvtrue","FBStandardItemLabelstrue","FBStandardLayouttrue","FBStandardListSpacingtrue","FBStandardListstrue","FBsupR","FBsupS","FBtextellipsis","FBthickkern","FBthinspace","FBthousandsep","FBWarning","fg","fgi","fgii","fprimo","frenchdate","FrenchEnumerate","FrenchFootnotes","FrenchLabelItem","frenchpartfirst","frenchpartsecond","FrenchPopularEnumerate","frenchtoday","Frlabelitemi","Frlabelitemii","Frlabelitemiii","Frlabelitemiv","frquote","fup","ieme","iemes","ier","iere","ieres","iers","ifFBAutoSpaceFootnotes","ifFBCompactItemize","ifFBCustomiseFigTabCaptions","ifFBfrench","ifFBFrenchFootnotes","ifFBFrenchSuperscripts","ifFBGlobalLayoutFrench","ifFBIndentFirst","ifFBINGuillSpace","ifFBListItemsAsPar","ifFBListOldLayout","ifFBLowercaseSuperscripts","ifFBLuaTeX","ifFBOldFigTabCaptions","ifFBOriginalTypewriter","ifFBPartNameFull","ifFBReduceListSpacing","ifFBShowOptions","ifFBSmallCapsFigTabCaptions","ifFBStandardEnumerateEnv","ifFBStandardItemizeEnv","ifFBStandardItemLabels","ifFBStandardLayout","ifFBStandardLists","ifFBStandardListSpacing","ifFBSuppressWarning","ifFBThinColonSpace","ifFBThinSpaceInFrenchNumbers","ifFBunicode","ifFBXeTeX","ifLaTeXe","kernFFN","labelindentFB","labelwidthFB","leftmarginFB","listfigurename","listindentFB","no","NoAutoSpaceBeforeFDP","NoAutoSpacing","NoEveryParQuote","noextrasfrench","nombre","nos","Nos","og","ogi","ogii","parindentFFN","partfirst","partnameord","partsecond","primo","quarto","rmfamilyFB","secundo","sffamilyFB","StandardFootnotes","StandardMathComma","tertio","tild","ttfamilyFB","up","xspace","captionsgerman","dategerman","extrasgerman","noextrasgerman","tosstrue","tossfalse","mdqon","mdqoff","ck","captionsgreek","dategreek","extrasgreek","noextrasgreek","greekscript","greektext","ensuregreek","textgreek","greeknumeral","Greeknumeral","greekfontencoding","textol","outlfamily","greekhyphenmins","Grtoday","anwtonos","katwtonos","qoppa","varqoppa","stigma","sampi","Digamma","ddigamma","euro","permill","textAlpha","textBeta","textGamma","textDelta","textEpsilon","textZeta","textEta","textTheta","textIota","textKappa","textLambda","textMu","textNu","textXi","textOmicron","textPi","textRho","textSigma","textTau","textUpsilon","textPhi","textChi","textPsi","textOmega","textalpha","textbeta","textgamma","textdelta","textepsilon","textzeta","texteta","texttheta","textiota","textkappa","textlambda","textmu","textnu","textxi","textomicron","textpi","textrho","textsigma","textfinalsigma","textautosigma","texttau","textupsilon","textphi","textchi","textpsi","textomega","textpentedeka","textpentehekaton","textpenteqilioi","textstigma","textvarstigma","textKoppa","textkoppa","textqoppa","textQoppa","textStigma","textSampi","textsampi","textanoteleia","texterotimatiko","textdigamma","textDigamma","textdexiakeraia","textaristerikeraia","textvarsigma","textstigmagreek","textkoppagreek","textStigmagreek","textSampigreek","textsampigreek","textdigammagreek","textDigammagreek","textnumeralsigngreek","textnumeralsignlowergreek","textpentemuria","textpercent","textmicro","textschwa","textampersand","accdialytika","acctonos","accdasia","accpsili","accvaria","accperispomeni","prosgegrammeni","ypogegrammeni","accdialytikaperispomeni","accdialytikatonos","accdialytikavaria","accdasiaperispomeni","accdasiavaria","accdasiaoxia","accpsiliperispomeni","accpsilioxia","accpsilivaria","accinvertedbrevebelow","textsubarch","accbrevebelow","captionsindonesian","dateindonesian","extrasindonesian","noextrasindonesian","indonesianhyphenmins","captionsitalian","dateitalian","extrasitalian","noextrasitalian","italianhyphenmins","setactivedoublequote","setISOcompliance","IntelligentComma","NoIntelligentComma","XXIletters","XXVIletters","ap","ped","unit","virgola","virgoladecimale","LtxSymbCaporali","CaporaliFrom","captionsjapanese","datejapanese","extrasjapanese","noextrasjapanese","prechaptername","postchaptername","presectionname","postsectionname","prepartname","postpartname","localfootnote","mainfootnote","localfootnotetext","mainfootnotetext","captionsmacedonian","datemacedonian","extrasmacedonian","noextrasmacedonian","Macedonian","englishhyphenmins","Mkd","Mk","theoremname","corollaryname","lemmaname","overbar","textoverline","overbarshort","textoverlineshort","IfItalic","tbar","captionspolish","datepolish","extraspolish","noextraspolish","aob","Aob","eob","Eob","lpb","Lpb","zkb","Zkb","sob","spb","skb","textpl","telepl","polishrz","polishzx","Russian","captionsrussian","daterussian","extrasrussian","noextrasrussian","captionsserbianc","dateserbianc","extrasserbianc","noextrasserbianc","Serbianc","arsh","arch","arth","arcth","arcsec","arccosec","sech","cosech","arsech","arcosech","Expect","nzs","nzd","NZS","NZD","enumCyr","enumLat","enumEng","captionsturkish","dateturkish","extrasturkish","noextrasturkish","subjectname","Ukrainian","captionsukrainian","dateukrainian","extrasukrainian","noextrasukrainian","viettext","viet","textviet","captionsvietnamese","datevietnamese","extrasvietnamese","noextrasvietnamese","textquotedbl","OHORN","ohorn","UHORN","uhorn","abreve","Abreve","acircumflex","Acircumflex","ecircumflex","Ecircumflex","ocircumflex","Ocircumflex","Ohorn","Uhorn","ABREVE","ACIRCUMFLEX","ECIRCUMFLEX","OCIRCUMFLEX","h","headpagename","BIA","BIB","BIC","BID","BIE","BIF","BIG","BIH","BII","BIJ","BIK","BIL","BIM","BIN","BIO","BIP","BIQ","BIR","BIS","BIT","BIU","BIV","BIW","BIX","BIY","BIZ","BIa","BIb","BIc","BId","BIe","BIf","BIg","BIh","BIi","BIj","BIk","BIl","BIm","BIn","BIo","BIp","BIq","BIr","BIs","BIt","BIu","BIv","BIw","BIx","BIy","BIz","fAlt","rhoAlt","highbar","slashbar","midbar","mathbbb","mathbcal","mathbscr","mathbfrak","mathscr","mathbfscr","mathcal","mathbfcal","mathfrak","mathbffrak","mathbb","mathbfbb","txtbbGamma","txtbbgamma","txtbbPi","txtbbpi","txtbbdotlessi","txtbbdotlessj","txtbbzero","txtbbone","txtbbtwo","txtbbthree","txtbbfour","txtbbfive","txtbbsix","txtbbseven","txtbbeight","txtbbnine","mathbbi","mathbfbbi","imathbb","jmathbb","bbdotlessi","bbdotlessj","bbGamma","bbDelta","bbTheta","bbLambda","bbXi","bbPi","bbSigma","bbUpsilon","bbPhi","bbPsi","bbOmega","bbalpha","bbbeta","bbgamma","bbdelta","bbepsilon","bbzeta","bbeta","bbtheta","bbiota","bbkappa","bblambda","bbmu","bbnu","bbxi","bbpi","bbrho","bbsigma","bbtau","bbupsilon","bbphi","bbchi","bbpsi","bbomega","bbLbrack","bbRbrack","bbLangle","bbRangle","bbLparen","bbRparen","AbstractSep","appendicesname","CAwords","coffinsep","CondSans","CondSansBold","CorrespondingAuthor","entry","EntryHeading","firstrowauthorblock","hrefurl","isOtherfnote","keywordname","keywords","LogNote","MakeTitlePage","MyColorOption","nextToken","nomenwidth","oldfootnote","PaperYear","PreprintString","rulecofheight","savitemsep","SetAuthorBlock","SetTitle","sfalpha","sfbeta","sfchi","sfDelta","sfdelta","sfepsilon","sfeta","sfGamma","sfgamma","sfhbar","sfhslash","sfiota","sfitnabla","sfitvarkappa","sfkappa","sfLambda","sflambda","sfmu","sfnabla","sfnu","sfOmega","sfomega","sfPhi","sfphi","sfPi","sfpi","sfPsi","sfpsi","sfrho","sfSigma","sfsigma","sftau","sfTheta","sftheta","sfUpsilon","sfupsilon","sfvarepsilon","sfvarkappa","sfvarphi","sfvarpi","sfvarrho","sfvarsigma","sfvartheta","sfXi","sfxi","sfzeta","svsection","theauthorno","Titleheight","versiondate","versionno","JourName","widest","authorblock","ruleblock","Abstract","Title","CAemail","PaperNumber","revfootnote","thesavedlength","DH","dh","dj","DJ","guillemetleft","guillemetright","guillemotleft","guillemotright","guilsinglleft","guilsinglright","Hwithstroke","hwithstroke","k","NG","ng","quotedblbase","quotesinglbase","textogonekcentered","TH"]}
-,
-"asmewide.sty":{"envs":["widetext"],"deps":["etoolbox.sty","cuted.sty","flushend.sty"],"cmds":["savparskip"]}
-,
-"assoccnt.sty":{"envs":{},"deps":["xcolor.sty","etoolbox.sty","xkeyval.sty","xstring.sty"],"cmds":["setcounter","DeclareAssociatedCounters","AddAssociatedCounters","RemoveAssociatedCounter","RemoveAssociatedCounters","ClearAssociatedCounters","AddDriverCounter","ClearDriverCounter","IsAssociatedToCounter","GetDriverCounter","IsAssociatedCounter","IsDriverCounter","IsSuspendedCounter","AssociatedDriverCounterInfo","LastAddedToCounter","LastSteppedCounter","LastRefSteppedCounter","LastSetCounter","PrettyPrintCounterName","GeneralCounterInfoColor","DriverCounterInfoColor","AssociatedCounterInfoColor","SuspendCounters","ResumeSuspendedCounters","AssociationStatistics","ClearAssociatedCountersList","ClearDriverCountersList","IsInResetList","assoccntpackageversion"]}
-,
-"association-matrix.sty":{"envs":{},"deps":["etoolbox.sty","forloop.sty","ifthen.sty","textcomp.sty","xparse.sty"],"cmds":["amxrow","amxcol","amxassociate","amxrows","amxcols","amxrowtext","amxcoltext","amxgenerate","amxsetTopCorner","amxsetColumnHeading","amxsetRowFormat","amxsetRowFormatHighlighted","amxsetIndicator","amxsetIndicatorHighlighted","amxReset","amxDate","amxVersion"]}
-,
-"assurelatexmode.sty":{"envs":{},"deps":["chemstr.sty"],"cmds":["HashWedgeAsSubst","HashWedgeAsSubstTeXLaTeX","HashWedgeAsSubstX","HashWedgeAsSubstXTeXLaTeX","PutBondLine","PutDashedBond","PutTeXLaTeXLine","PutTeXLaTeXdashed","WedgeAsSubst","WedgeAsSubstTeXLaTeX","WedgeAsSubstX","WedgeAsSubstXTeXLaTeX","dashhasheddash","putRoundArrow","putRoundArrowTeXLaTeX","thickLineWidth","thicklines","thinLineWidth","thinlines","wedgehasheddash","wedgehashedwedge","ifmolfront","molfrontfalse","molfronttrue"]}
-,
-"asternote.sty":{"envs":{},"deps":["luatex.sty"],"cmds":["setasternotenoindent","setasternoteindent","setasternotetext","setasternotesuperscript","setasterreftext","setasterrefsuperscript","setasternumbertext","asternumbersetsuperscript","asternotereset","asternote","asternotetext","asternotesuperscript","asterref","asterreftext","asterrefsuperscript","asternumber","asternumbertext","asternumbersuperscript","theasternotecounter"]}
-,
-"asyalign.sty":{"envs":{},"deps":["ifpdf.sty"],"cmds":["ASYbox","ASYdimen","ASYbase","ASYaligned","ASYalignT","ASYalign","ASYraw"]}
-,
-"asycolors.sty":{"envs":{},"deps":["color.sty"],"cmds":{}}
-,
-"asyfig.sty":{"envs":{},"deps":["asyalign.sty","color.sty","ifmtarg.sty","ifpdf.sty","ifplatform.sty","import.sty","graphicx.sty","pdftexcmds.sty","suffix.sty","xkeyval.sty","asyprocess.sty"],"cmds":["asyfig","asypath"]}
-,
-"asymptote.sty":{"envs":["asy","asydef"],"deps":["keyval.sty","ifthen.sty","color.sty","graphicx.sty","ifpdf.sty","ifxetex.sty","catchfile.sty"],"cmds":["asyinclude","asysetup","ASYanimategraphics","Asymptote","ASYbox","ASYdimen","theasy","AsyStream","AsyPreStream","ifASYinline","ASYinlinetrue","ASYinlinefalse","ifASYattach","ASYattachtrue","ASYattachfalse","ifASYkeepAspect","ASYkeepAspecttrue","ASYkeepAspectfalse","asylatexdir","asydir","ASYasydir","ASYlatexdir","ASYprefix","ifASYPDF","ASYPDFtrue","ASYPDFfalse","AsyExtension","WriteAsyLine","globalASYdefs","WriteGlobalAsyLine","ProcessAsymptote","CurrentAsymptote","xAsymptote","ProcessAsymptoteLine","ThisAsymptote","AsyFile","ASYwidth","ASYheight","ASYviewportwidth","ASYviewportheight","csarg","unquoteJobname","rawJobname","fixstar","argtwo","asy","endasy","asydef","Jobname"]}
-,
-"asypictureB.sty":{"envs":["asypicture","asyheader"],"deps":["fancyvrb.sty","graphicx.sty","pgfkeys.sty","ifplatform.sty"],"cmds":["asyset","getfontsize","asylistingfile","RequireAsyRecompile","AsyCompileIfNecessary","ASYPICcomparefiles","copyfile","deletefile","numlinesout","oldnum","unknownkey"]}
-,
-"asyprocess.sty":{"envs":{},"deps":["ifmtarg.sty","ifpdf.sty","catchfile.sty","ifplatform.sty","color.sty","graphicx.sty","preview.sty"],"cmds":["ProcessAsy","ShowAsy"]}
-,
-"at.sty":{"envs":{},"deps":{},"cmds":["atallowdigits","atdisallowdigits","newatcommand","renewatcommand","provideatcommand","atdef","atshow","atlet","at","atoff","aton"]}
-,
-"atendofenv.sty":{"envs":{},"deps":["amsthm.sty","letltxmacro.sty"],"cmds":["AtEndOfEnv"]}
-,
-"athnum.sty":{"envs":{},"deps":{},"cmds":["athnum","greekfontencoding","ensuregreek"]}
-,
-"atkinson.sty":{"envs":{},"deps":["ifxetex.sty","ifluatex.sty","xkeyval.sty","textcomp.sty","fontenc.sty","fontaxes.sty","mweights.sty"],"cmds":["atkinsonfamily","atkinson","atkinsonlf","atkinsontlf","atkinsonLF","atkinsonTLF","DH","NG","dj","ng","k","guillemotleft","guillemotright","guilsinglleft","guilsinglright","quotedblbase","quotesinglbase","textquotedbl","DJ","th","TH","dh","Hwithstroke","hwithstroke","textogonekcentered","guillemetleft","guillemetright"]}
-,
-"attachfile.sty":{"envs":{},"deps":["ifpdf.sty","calc.sty","hyperref.sty"],"cmds":["attachfile","noattachfile","notextattachfile","textattachfile","attachfilesetup"]}
-,
-"attachfile2.sty":{"envs":{},"deps":["iftex.sty","keyval.sty","color.sty","infwaerr.sty","ltxcmds.sty","kvoptions.sty","pdftexcmds.sty","pdfescape.sty","hyperref.sty","hycolor.sty"],"cmds":["attachfile","noattachfile","notextattachfile","textattachfile","attachfilesetup"]}
-,
-"attrib.sty":{"envs":{},"deps":["moredefs.sty"],"cmds":["attrib","normalcitations","attribcitations","AttribMinSkip","PreTrib","PostTrib","AttribInit","attribstar","PostCite","PostCiteWork","PreCite","PreCiteWork"]}
-,
-"atveryend.sty":{"envs":{},"deps":{},"cmds":["BeforeClearDocument","AfterLastShipout","AtVeryEndDocument","AtEndAfterFileList","AtVeryVeryEnd"]}
-,
-"aucklandthesis.cls":{"envs":{},"deps":["s-memoir.cls"],"cmds":["subtitle","degreesought","degreediscipline","degreecompletionyear","thesisdedication"]}
-,
-"auncial.sty":{"envs":{},"deps":{},"cmds":["aunclfamily","textauncl"]}
-,
-"aurical.sty":{"envs":{},"deps":{},"cmds":["Fontauri","Fontskrivan","Fontlukas","Fontamici"]}
-,
-"aurl.sty":{"envs":{},"deps":["hyperref.sty"],"cmds":["daurl","aurl"]}
-,
-"authblk.sty":{"envs":{},"deps":{},"cmds":["author","affil","authorcr","Authfont","Affilfont","affilsep","Authsep","Authand","Authands","theMaxaffil","theaffil","theauthors","ifnewaffil","newaffiltrue","newaffilfalse"]}
-,
-"authoraftertitle.sty":{"envs":{},"deps":{},"cmds":["MyAuthor","MyTitle","MyDate","Originalauthor","Originaltitle","Originaldate"]}
-,
-"authorarchive.sty":{"envs":["enumerate*","itemize*","description*"],"deps":["ifthen.sty","enumitem.sty","orcidlink.sty","eso-pic.sty","intopdf.sty","kvoptions.sty","hyperref.sty","calc.sty","qrcode.sty","etoolbox.sty","lastpage.sty"],"cmds":["authorsetup","authorcrfont","authorat","authorwidth","BibTeX"]}
-,
-"authorindex.sty":{"envs":["theauthorindex"],"deps":{},"cmds":["aialso","aialsostrings","aibibcite","aibibindex","aibibpage","aicite","aiexplicit","aifilename","aifirst","aifirstpage","aiinbibflag","aimaxauthors","aimention","ainame","ainamefmt","ainocite","ainocompressflag","aionly","aioptions","aipages","aipagetypeorder","airep","aisee","aiseestring","aisize","aistyle","aitop","aitwostring","aitwosuffix","authorindexstyle","bibindex","bibpage","citationpage","pagetypeorder","printauthorindex","theaipage"]}
-,
-"auto-pst-pdf-lua.sty":{"envs":{},"deps":["luatex.sty","ifpdf.sty","xkeyval.sty","ifplatform.sty","ifluatex.sty","pst-pdf.sty","pst-calculate.sty"],"cmds":["OnlyIfFileExists","NotIfFileExists","matlabfig","mathfig","psfragfig"]}
-,
-"auto-pst-pdf.sty":{"envs":{},"deps":["ifpdf.sty","xkeyval.sty","ifplatform.sty","pst-pdf.sty","pst-calculate.sty","pdfcolmk.sty"],"cmds":["OnlyIfFileExists","NotIfFileExists","matlabfig","mathfig","psfragfig"]}
-,
-"autoaligne.sty":{"envs":{},"deps":["listofitems.sty"],"cmds":["autoaligne","egaldevantmembrevide","aavcoeff","definirseparateurs","definirespacements","aanom","aaversion","aadate"]}
-,
-"autobreak.sty":{"envs":["autobreak"],"deps":["amsmath.sty","catchfile.sty"],"cmds":["MoveEqLeft","everybeforeautobreak","everyaftereautobreak"]}
-,
-"autofancyhdr.sty":{"envs":{},"deps":["biditools.sty","fancyhdr.sty"],"cmds":["eheadfootlength","headfootlength","newheadheight"]}
-,
-"autolist.sty":{"envs":["Sublist","Subnum","Lautolist","Rautolist","Lpolylist","Rpolylist","characters"],"deps":["calc.sty"],"cmds":["Subleftmargini","Subleftmarginii","Subleftmarginiii","Subleftmarginiv","Subleftmarginv","Subleftmarginvi","Subleftmarginvii","Subleftmarginviii","Subleftmarginix","Subleftmarginx","theSubnumi","theSubnumii","theSubnumiii","theSubnumiv","theSubnumv","theSubnumvi","theSubnumvii","theSubnumviii","theSubnumix","theSubnumx","labelSubnumi","labelSubnumii","labelSubnumiii","labelSubnumiv","labelSubnumv","labelSubnumvi","labelSubnumvii","labelSubnumviii","labelSubnumix","labelSubnumx","Lplabel","Rplabel"]}
-,
-"automultiplechoice.sty":{"envs":["auto","choices","choicescustom","choiceshoriz","examcopy","question","questionmult","questionmultx","amcxyfile"],"deps":["xcolor.sty","fancyhdr.sty","bophook.sty","xkeyval.sty","rotating.sty","fancybox.sty","expl3.sty","csvsimple.sty","environ.sty","geometry.sty","storebox.sty","hyperref.sty","tikz .sty","tikzlibrarypositioning.sty","tikzlibraryshapes.sty","tikzlibrarytikzmark.sty","tikzlibrarydecorations.pathreplacing.sty"],"cmds":["answer","alafin","AMCaddpagesto","AMCanswer","AMCassociation","AMCbeginAnswer","AMCbeginQuestion","AMCbloc","AMCBoxedAnswers","AMCBoxOnly","AMCboxStyle","AMCchoiceLabel","AMCchoiceLabelFormat","AMCcleardoublepage","AMCcodeGrid","AMCcodeGridInt","AMCcodeHspace","AMCcodeVspace","AMCcompleteMulti","AMCdecimalPoint","AMCdontAnnotate","AMCendAnswer","AMCexponent","AMCform","AMCformAnswer","AMCformBeforeQuestion","AMCformBegin","AMCformFilter","AMCformHSpace","AMCformQuestion","AMCformS","AMCformVSpace","AMChorizAnswerSep","AMChorizBoxSep","AMCidsPosition","AMCifcategory","AMCinterBquest","AMCinterBrep","AMCinterIquest","AMCinterIrep","AMCIntervalFormat","AMCIntervals","AMClabel","AMCnobloc","AMCnoCompleteMulti","AMCntextGoto","AMCntextSign","AMCntextVHead","AMCnumericChoices","AMCnumericOpts","AMCnumero","AMCOpen","AMCopenOpts","AMCotextGoto","AMCotextReserved","AMCoutsideLabelFormat","AMCpageref","AMCpostNquest","AMCpostOquest","AMCquestionNumberfalse","AMCquestionNumbertrue","AMCrandomseed","AMCref","AMCsection","AMCsectionNumbered","AMCsectionStar","AMCsetFoot","AMCsetScoreZone","AMCsetScoreZoneAnswerSheet","AMCstudentlabel","AMCStudentNumber","AMCstudentslistfile","AMCsubjectPageTag","AMCsubsection","AMCsubsectionNumbered","AMCsubsectionStar","AMCtext","bareme","baremeDefautM","baremeDefautS","bonne","champnom","choixIntervalles","cleargroup","copygroup","copygroupfrom","correctchoice","element","exemplaire","exemplairepair","explain","formulaire","insertgroup","insertgroupfrom","lastchoices","mauvaise","melangegroupe","multiSymbole","namefield","namefielddots","onecopy","QuestionIndicative","restituegroupe","scoring","scoringDefaultM","scoringDefaultS","setdefaultgroupmode","setgroupmode","shufflegroup","theAMCquestionaff","wrongchoice","AMCbeforeQuestion","AMCboHide","AMCboOpts","AMCboShow","AMCbotextGoto","AMCboxColor","AMCboxOutsideLetter","AMCcercle","AMCcodeID","AMCcurrentenv","AMCdebutFormulaire","AMCdontScan","AMCdump","AMCemptybox","AMCformAfterQuestion","AMCformAnswerA","AMCformatChoices","AMCformQuestionA","AMCformQuestionN","AMCIDBoxesA","AMCIDBoxesABC","AMCIDBoxesB","AMCIDBoxesC","AMCload","AMClocalized","AMCmarginNote","AMCmessage","AMCnoScoreZone","AMCnumericChoicesPlain","AMCnumericHide","AMCnumericShow","AMCopenHide","AMCopenShow","AMCqlabel","AMCscoreZone","AMCshowSignificantDigits","AMCsignificantDigits","ifAMCquestionNumber","nouveaugroupe","shufflegroupslice","AMCboxDimensions"]}
-,
-"autonum.sty":{"envs":["equation+"],"deps":["etoolbox.sty","etextools.sty","amsmath.sty","textpos.sty","letltxmacro.sty"],"cmds":["csxdefall","csxdefaux","ifcsedef","meaningx","newcommandsequence","renewcommandsequence","skipInPDFTOC","vanishprotect","CsLetLtxMacro","LetCsLtxMacro","CsLetCsLtxMacro","GlobalCsLetLtxMacro","GlobalLetCsLtxMacro","GlobalCsLetCsLtxMacro"]}
-,
-"autopdf.sty":{"envs":{},"deps":["keyval.sty","ifthen.sty","ifpdf.sty","ifplatform.sty","graphicx.sty"],"cmds":["autopdfoptions","autopdfinclude","autopdfendinclude","autopdfpsfrag","autopdfpsfoptions","DELETE","LEFT","REDIRTO","RIGHT","SILENT"]}
-,
-"autopuncitems.sty":{"envs":["AutoPuncItems","AutoPuncItemsO","AutoPuncItemsE","AutoPuncTabular"],"deps":["luacode.sty","enumitem.sty"],"cmds":["APomit","APpass","setAPeach","setAPall","setAPdef","setAPseclast","setAPlast","enableAPautopassnest","disableAPautopassnest","enableAPprotectnest","disableAPprotectnest"]}
-,
-"auxhook.sty":{"envs":{},"deps":{},"cmds":["AddLineBeginMainAux","AddLineBeginPartAux","AddLineBeginAux"]}
-,
-"avremu.sty":{"envs":{},"deps":["etoolbox.sty","tabularx.sty","kvoptions.sty"],"cmds":["useavremulibrary","avrloadc","avrcompile","avrloadihex","ifavrbreak","avrbreaktrue","avrbreakfalse","avrstep","avrrun","avrsinglestep","avrinstrcount","avrUDR","avrUDRclear","avrdrawiter","avrdrawSize","avrdrawppm"]}
-,
-"awesomebox.sty":{"envs":["noteblock","tipblock","warningblock","cautionblock","importantblock","awesomeblock"],"deps":["array.sty","fontawesome5.sty","xcolor.sty","xparse.sty","ifthen.sty"],"cmds":["notebox","tipbox","warningbox","cautionbox","importantbox","awesomebox","abShortLine","abLongLine","aweboxleftmargin","aweboxcontentwidth","aweboxvskip","aweboxsignraise","aweboxrulewidth","aweboxlinewidthvar","aweboxlinewidthref","awesomeboxadjustcontentwidth","awesomeboxrestorecontentwidth","aweboxdebug","abIconCheck","abIconInfoCircle","abIconFire","abIconExclamationCircle","abIconExclamationTriangle","abIconCogs","abIconThumbsUp","abIconThumbsDown","abIconCertificate","abIconLightBulb","abIconTwitter","abIconGithub"]}
-,
-"axessibility.sty":{"envs":["tempenv"],"deps":["amsmath.sty","amssymb.sty","xstring.sty","tagpdf.sty","accsupp.sty"],"cmds":["iftagpdfopt","tagpdfopttrue","tagpdfoptfalse","doreplacement","auxiliaryspace","wrap","wrapml","wrapmlstar","wrapmlalt"]}
-,
-"axodraw2.sty":{"envs":["axopicture","OLDpicture"],"deps":["color.sty","graphicx.sty","ifthen.sty","ifxetex.sty","keyval.sty"],"cmds":["B","G","C","AxoGrid","Line","DoubleLine","DashLine","DashDoubleLine","Arc","CArc","DoubleArc","DoubleCArc","DashArc","DashCArc","DashDoubleArc","DashDoubleCArc","Bezier","DoubleBezier","DashBezier","DashDoubleBezier","Curve","DashCurve","Gluon","DoubleGluon","DashGluon","DashDoubleGluon","GluonArc","GlueArc","GluonArcn","GlueArcn","DoubleGluonArc","DoubleGlueArc","DoubleGluonArcn","DoubleGlueArcn","DashGluonArc","DashGlueArc","DashGluonArcn","DashGlueArcn","DashDoubleGluonArc","DashDoubleGlueArc","DashDoubleGluonArcn","DashDoubleGlueArcn","GluonCirc","DoubleGluonCirc","DashGluonCirc","DashDoubleGluonCirc","Photon","DoublePhoton","DashPhoton","DashDoublePhoton","PhotonArc","DoublePhotonArc","DashPhotonArc","DashDoublePhotonArc","ZigZag","DoubleZigZag","DashZigZag","DashDoubleZigZag","ZigZagArc","DoubleZigZagArc","DashZigZagArc","DashDoubleZigZagArc","Vertex","FCirc","ECirc","BCirc","GCirc","CCirc","Oval","FOval","GOval","COval","EBox","FBox","BBox","GBox","CBox","EBoxc","Boxc","FBoxc","BBoxc","GBoxc","CBoxc","RotatedBox","FilledRotatedBox","ETri","FTri","BTri","GTri","CTri","Polygon","FilledPolygon","LinAxis","LogAxis","Text","rText","RText","SetPFont","PText","BText","GText","CText","BTwoText","GTwoText","CTwoText","ArrowLine","LongArrow","ArrowDoubleLine","DashArrowLine","ArrowDashLine","DashArrowDoubleLine","ArrowDashDoubleLine","DashLongArrowLine","LongArrowDashLine","LongArrowDash","DashLongArrow","LongArrowArcn","ArrowArcn","LongArrowArc","ArrowArc","ArrowCArc","DashArrowArcn","ArrowDashArcn","DashArrowArc","DashArrowCArc","ArrowDashArc","ArrowDashCArc","LongDashArrowArc","LongDashArrowCArc","LongArrowDashArc","LongArrowDashCArc","ArrowDoubleArc","ArrowDoubleCArc","ArrowDashDoubleArc","ArrowDashDoubleCArc","DashArrowDoubleArc","DashArrowDoubleCArc","SetDashSize","SetLineSep","SetSep","SetWidth","SetArrowAspect","SetArrowInset","SetArrowPosition","SetArrowScale","DefaultArrowScale","SetArrowStroke","SetArrowSize","canvasScaleOnept","canvasScaleObjectScale","canvasScaleUnitLength","SetScale","SetTextScale","SetCanvasScale","ifPSTextScalesLikeGraphics","PSTextScalesLikeGraphicsfalse","PSTextScalesLikeGraphicstrue","SetOffset","SetScaledOffset","SetColor","SetObjectScale","textGreenYellow","textYellow","textGoldenrod","textDandelion","textApricot","textPeach","textMelon","textYellowOrange","textOrange","textBurntOrange","textBittersweet","textRedOrange","textMahogany","textMaroon","textBrickRed","textRed","textOrangeRed","textRubineRed","textWildStrawberry","textSalmon","textCarnationPink","textMagenta","textVioletRed","textRhodamine","textMulberry","textRedViolet","textFuchsia","textLavender","textThistle","textOrchid","textDarkOrchid","textPurple","textPlum","textViolet","textRoyalPurple","textBlueViolet","textPeriwinkle","textCadetBlue","textCornflowerBlue","textMidnightBlue","textNavyBlue","textRoyalBlue","textBlue","textCerulean","textCyan","textProcessBlue","textSkyBlue","textTurquoise","textTealBlue","textAquamarine","textBlueGreen","textEmerald","textJungleGreen","textSeaGreen","textGreen","textForestGreen","textPineGreen","textLimeGreen","textYellowGreen","textSpringGreen","textOliveGreen","textRawSienna","textSepia","textBrown","textTan","textGray","textBlack","textWhite","textLightYellow","textLightRed","textLightBlue","textLightGray","textVeryLightBlue","GreenYellow","Yellow","Goldenrod","Dandelion","Apricot","Peach","Melon","YellowOrange","Orange","BurntOrange","Bittersweet","RedOrange","Mahogany","Maroon","BrickRed","Red","OrangeRed","RubineRed","WildStrawberry","Salmon","CarnationPink","Magenta","VioletRed","Rhodamine","Mulberry","RedViolet","Fuchsia","Lavender","Thistle","Orchid","DarkOrchid","Purple","Plum","Violet","RoyalPurple","BlueViolet","Periwinkle","CadetBlue","CornflowerBlue","MidnightBlue","NavyBlue","RoyalBlue","Blue","Cerulean","Cyan","ProcessBlue","SkyBlue","Turquoise","TealBlue","Aquamarine","BlueGreen","Emerald","JungleGreen","SeaGreen","Green","ForestGreen","PineGreen","LimeGreen","YellowGreen","SpringGreen","OliveGreen","RawSienna","Sepia","Brown","Tan","Gray","Black","White","LightYellow","LightRed","LightBlue","LightGray","VeryLightBlue","AXOputPDF","AXOputPS","AXOspecial","AssignDecDiv","AxoPut","IfColor","SetPoint","SetTmpBoxTwo","SetTmpBox","UseCurrentPSFont","axoarrowsize","axocanvas","axofontsize","axohelp","axominusone","axoone","axoparray","axoscale","axoscalePT","axoscaleTT","axotextscale","axounitlength","axowidth","axoxo","axoxoff","axoyo","axoyoff","axozero","contentspdf","contentspdfNoOffset","defWithOption","defineaxofont","eind","getaxohelp","getoneline","newcolor","pfontC","pfontN","putLen","tmpfh","useX","useY","ifAXONotImplemented","AXONotImplementedtrue","AXONotImplementedfalse","tmpX","tmpY","bpinsp","ptinsp"]}
-,
-"babel.sty":{"envs":["selectlanguage","otherlanguage","otherlanguage*","hyphenrules","descriptionFB","descriptionFB","quoting","quoting"],"deps":["fontspec.sty"],"cmds":["selectlanguage","foreignlanguage","babeltags","babelensure","shorthandon","shorthandoff","useshorthands","defineshorthand","languageshorthands","babelshorthand","ifbabelshorthand","aliasshorthand","textormath","AfterBabelLanguage","babelfont","setlocalecaption","babelprovide","localenumeral","localecounter","localedate","babelcalendar","languagename","iflanguage","localeinfo","getlocaleproperty","LocaleForEach","BabelEnsureInfo","localeid","babelhyphen","babelnullhyphen","babelhyphenation","babelpatterns","babelposthyphenation","babelprehyphenation","enablelocaletransform","disablelocaletransform","ensureascii","localfootnote","mainfootnote","localfootnotetext","mainfootnotetext","babelsublr","localerestoredirs","BabelPatchSection","BabelFootnote","languageattribute","AddBabelHook","EnableBabelHook","DisableBabelHook","BabelContentsFiles","babelcharproperty","babeladjust","fmtname","glqq","grqq","glq","grq","flqq","frqq","flq","frq","quotedblbase","quotesinglbase","guillemetleft","guillemetright","guillemotleft","guillemotright","guilsinglleft","guilsinglright","dj","DJ","umlauthigh","umlautlow","umlautelow","latinencoding","latintext","textlatin","adddialect","addlanguage","AfterBabelCommands","allowhyphens","BabelDated","BabelDatedd","BabelDateDot","BabelDateM","BabelDateMM","BabelDateMMMM","BabelDateSpace","BabelDatey","BabelDateyy","BabelDateyyyy","BabelLanguages","BabelLower","BabelLowerMM","BabelLowerMO","BabelModifiers","BabelNonASCII","BabelNonText","BabelString","BabelStringsDefault","BabelText","BCPdata","EndBabelCommands","IfBabelLayout","IfBabelSelectorTF","LdfInit","loadlocalcfg","localename","ProvidesLanguage","SetCase","SetHyphenMap","SetString","SetStringLoop","StartBabelCommands","captionsalbanian","datealbanian","extrasalbanian","noextrasalbanian","prefacename","bibname","chaptername","enclname","ccname","headtoname","pagename","seename","alsoname","proofname","glossaryname","sh","ch","th","cth","arsh","arch","arth","arcth","tg","ctg","arctg","arcctg","Prob","Expect","Variance","captionsazerbaijani","dateazerbaijani","extrasazerbaijani","noextrasazerbaijani","azerbaijanischwa","Azerbaijanischwa","captionsbasque","datebasque","extrasbasque","noextrasbasque","basquehyphenmins","dieresia","texttilde","captionsbelarusian","datebelarusian","extrasbelarusian","noextrasbelarusian","cyrdash","asbuk","Asbuk","Belarusian","cosec","NOD","nod","NOK","nok","Proj","NAD","nad","NAK","nak","cyrillicencoding","cyrillictext","cyr","textcyrillic","dq","CYRA","CYRB","CYRV","CYRG","CYRGUP","CYRD","CYRE","CYRIE","CYRZH","CYRZ","CYRI","CYRII","CYRYI","CYRISHRT","CYRK","CYRL","CYRM","CYRN","CYRO","CYRP","CYRR","CYRS","CYRT","CYRU","CYRF","CYRH","CYRC","CYRCH","CYRSH","CYRSHCH","CYRYU","CYRYA","CYRSFTSN","CYRERY","cyra","cyrb","cyrv","cyrg","cyrgup","cyrd","cyre","cyrie","cyrzh","cyrz","cyri","cyrii","cyryi","cyrishrt","cyrk","cyrl","cyrm","cyrn","cyro","cyrp","cyrr","cyrs","cyrt","cyru","cyrf","cyrh","cyrc","cyrch","cyrsh","cyrshch","cyryu","cyrya","cyrsftsn","cyrery","cdash","tocname","authorname","acronymname","lstlistingname","lstlistlistingname","notesname","nomname","captionsbosnian","datebosnian","extrasbosnian","noextrasbosnian","atcctg","captionsbreton","datebreton","extrasbreton","noextrasbreton","at","boi","circonflexe","tild","degre","kentan","eil","re","trede","pevare","vet","pempvet","captionsbulgarian","datebulgarian","extrasbulgarian","noextrasbulgarian","Bulgarian","English","Bul","Bg","selectbglanguage","Eng","selectenglanguage","lat","todayRoman","weekdaynamebulgarian","abvon","abvoff","cyrxtounicode","Romannumeral","lastJulianDatebulgarian","firstGregorianDatebulgarian","abbgyear","No","captionscatalan","datecatalan","extrascatalan","noextrascatalan","catalanhyphenmins","lgem","Lgem","up","dieresis","captionscroatian","datecroatian","extrascroatian","noextrascroatian","captionsczech","dateczech","extrasczech","noextrasczech","q","w","uv","csprimeson","csprimesoff","sq","lcaron","Lcaron","clqq","crqq","clq","crq","captionsdanish","datedanish","extrasdanish","noextrasdanish","captionsdutch","datedutch","extrasdutch","noextrasdutch","dutchhyphenmins","captionsafrikaans","dateafrikaans","extrasafrikaans","noextrasafrikaans","afrikaanshyphenmins","captionsenglish","dateenglish","extrasenglish","noextrasenglish","englishhyphenmins","britishhyphenmins","americanhyphenmins","captionsamerican","dateamerican","extrasamerican","noextrasamerican","captionsaustralian","dateaustralian","extrasaustralian","noextrasaustralian","australianhyphenmins","captionsbritish","datebritish","extrasbritish","noextrasbritish","captionscanadian","datecanadian","extrascanadian","noextrascanadian","canadianhyphenmins","captionsnewzealand","datenewzealand","extrasnewzealand","noextrasnewzealand","newzealandhyphenmins","captionsUKenglish","dateUKenglish","extrasUKenglish","noextrasUKenglish","captionsUSenglish","dateUSenglish","extrasUSenglish","noextrasUSenglish","captionsesperanto","dateesperanto","extrasesperanto","noextrasesperanto","Esper","esper","hodiau","hodiaun","captionsestonian","dateestonian","extrasestonian","noextrasestonian","estonianhyphenmins","captionsfinnish","datefinnish","extrasfinnish","noextrasfinnish","finnishhyphenmins","frenchsetup","frenchbsetup","AddThinSpaceBeforeFootnotes","AutoSpaceBeforeFDP","bname","bsc","CaptionSeparator","captionsfrench","dateacadian","datefrench","DecimalMathComma","degres","descindentFB","dotFFN","extrasfrench","FBcolonspace","FBdatebox","FBdatespace","FBeverylineguill","FBfigtabshape","FBfnindent","FBFrenchFootnotesfalse","FBFrenchFootnotestrue","FBFrenchSuperscriptstrue","FBGlobalLayoutFrenchtrue","FBgspchar","FBguillopen","FBguillspace","FBInnerGuillSinglefalse","FBInnerGuillSingletrue","FBListItemsAsParfalse","FBListItemsAsPartrue","FBLowercaseSuperscriptstrue","FBmedkern","FBPartNameFulltrue","FBsetspaces","FBSmallCapsFigTabCaptionstrue","FBStandardEnumerateEnvtrue","FBStandardItemizeEnvtrue","FBStandardItemLabelstrue","FBStandardLayouttrue","FBStandardListSpacingtrue","FBStandardListstrue","FBsupR","FBsupS","FBtextellipsis","FBthickkern","FBthinspace","FBthousandsep","FBWarning","fg","fgi","fgii","fprimo","frenchdate","FrenchEnumerate","FrenchFootnotes","FrenchLabelItem","frenchpartfirst","frenchpartsecond","FrenchPopularEnumerate","frenchtoday","Frlabelitemi","Frlabelitemii","Frlabelitemiii","Frlabelitemiv","frquote","fup","ieme","iemes","ier","iere","ieres","iers","ifFBAutoSpaceFootnotes","ifFBCompactItemize","ifFBCustomiseFigTabCaptions","ifFBfrench","ifFBFrenchFootnotes","ifFBFrenchSuperscripts","ifFBGlobalLayoutFrench","ifFBIndentFirst","ifFBINGuillSpace","ifFBListItemsAsPar","ifFBListOldLayout","ifFBLowercaseSuperscripts","ifFBLuaTeX","ifFBOldFigTabCaptions","ifFBOriginalTypewriter","ifFBPartNameFull","ifFBReduceListSpacing","ifFBShowOptions","ifFBSmallCapsFigTabCaptions","ifFBStandardEnumerateEnv","ifFBStandardItemizeEnv","ifFBStandardItemLabels","ifFBStandardLayout","ifFBStandardLists","ifFBStandardListSpacing","ifFBSuppressWarning","ifFBThinColonSpace","ifFBThinSpaceInFrenchNumbers","ifFBunicode","ifFBXeTeX","ifLaTeXe","kernFFN","labelindentFB","labelwidthFB","leftmarginFB","listfigurename","listindentFB","no","NoAutoSpaceBeforeFDP","NoAutoSpacing","NoEveryParQuote","noextrasfrench","nombre","nos","Nos","og","ogi","ogii","parindentFFN","partfirst","partnameord","partsecond","primo","quarto","rmfamilyFB","secundo","sffamilyFB","StandardFootnotes","StandardMathComma","tertio","ttfamilyFB","xspace","acadiandate","acadiantoday","captionsacadian","extrasacadian","noextrasacadian","captionsfriulan","datefriulan","extrasfriulan","noextrasfriulan","friulanhyphenmins","captionsgalician","dategalician","extrasgalician","noextrasgalician","selectgalician","layoutgalician","textgalician","shorthandsgalician","mathgalician","galiciandatedo","galiciandatede","deactivatetilden","galiciandeactivate","decimalcomma","decimalpoint","galiciandecimal","sptext","sptextfont","accentedoperators","unaccentedoperators","spacedoperators","unspacedoperators","lquoti","rquoti","lquotii","rquotii","lquotiii","rquotiii","activatequoting","deactivatequoting","lsc","msc","captionsgerman","dategerman","extrasgerman","noextrasgerman","tosstrue","tossfalse","mdqon","mdqoff","ck","captionsaustrian","dateaustrian","extrasaustrian","noextrasaustrian","captionsswissgerman","dateswissgerman","extrasswissgerman","noextrasswissgerman","captionsngerman","datengerman","extrasngerman","noextrasngerman","ntosstrue","ntossfalse","captionsnaustrian","datenaustrian","extrasnaustrian","noextrasnaustrian","captionsnswissgerman","datenswissgerman","extrasnswissgerman","noextrasnswissgerman","captionsgreek","dategreek","extrasgreek","noextrasgreek","greekscript","greektext","ensuregreek","lgrfont","textgreek","greeknumeral","Greeknumeral","greeknumeralsix","greeknumeralSix","greeknumeralninety","greeknumeralNinety","greekfontencoding","BabelGreekRestoreFontEncoding","BabelGreekPreviousFontEncoding","EnsureStandardFontEncoding","textol","outlfamily","greekhyphenmins","Grtoday","anwtonos","katwtonos","qoppa","varqoppa","stigma","sampi","Digamma","ddigamma","euro","permill","textAlpha","textBeta","textGamma","textDelta","textEpsilon","textZeta","textEta","textTheta","textIota","textKappa","textLambda","textMu","textNu","textXi","textOmicron","textPi","textRho","textSigma","textTau","textUpsilon","textPhi","textChi","textPsi","textOmega","textalpha","textbeta","textgamma","textdelta","textepsilon","textzeta","texteta","texttheta","textiota","textkappa","textlambda","textmu","textnu","textxi","textomicron","textpi","textrho","textsigma","textfinalsigma","textautosigma","texttau","textupsilon","textphi","textchi","textpsi","textomega","textpentedeka","textpentehekaton","textpenteqilioi","textstigma","textvarstigma","textKoppa","textkoppa","textqoppa","textQoppa","textStigma","textSampi","textsampi","textanoteleia","texterotimatiko","textdigamma","textDigamma","textdexiakeraia","textaristerikeraia","textvarsigma","textstigmagreek","textkoppagreek","textStigmagreek","textSampigreek","textsampigreek","textdigammagreek","textDigammagreek","textnumeralsigngreek","textnumeralsignlowergreek","textpentemuria","textpercent","textmicro","textschwa","textampersand","accdialytika","acctonos","accdasia","accpsili","accvaria","accperispomeni","prosgegrammeni","ypogegrammeni","accdialytikaperispomeni","accdialytikatonos","accdialytikavaria","accdasiaperispomeni","accdasiavaria","accdasiaoxia","accpsiliperispomeni","accpsilioxia","accpsilivaria","accinvertedbrevebelow","textsubarch","accbrevebelow","captionspolutonikogreek","datepolutonikogreek","extraspolutonikogreek","noextraspolutonikogreek","captionsancientgreek","extrasancientgreek","captionsicelandic","dateicelandic","extrasicelandic","noextrasicelandic","tala","grada","gradur","upp","ilqq","irqq","ilq","irq","iflqq","ifrqq","ifrq","iflq","oob","Oob","ooob","OOob","eob","Eob","eeob","EEob","captionsindonesian","dateindonesian","extrasindonesian","noextrasindonesian","indonesianhyphenmins","captionsbahasa","datebahasa","extrasbahasa","noextrasbahasa","bahasahyphenmins","captionsindon","dateindon","extrasindon","noextrasindon","indonhyphenmins","captionsbahasai","datebahasai","extrasbahasai","noextrasbahasai","bahasaihyphenmins","captionsinterlingua","dateinterlingua","extrasinterlingua","noextrasinterlingua","interlinguahyphenmins","captionsirish","dateirish","extrasirish","noextrasirish","irishhyphenmins","captionsitalian","dateitalian","extrasitalian","noextrasitalian","italianhyphenmins","setactivedoublequote","setISOcompliance","IntelligentComma","NoIntelligentComma","XXIletters","XXVIletters","ap","ped","unit","virgola","virgoladecimale","LtxSymbCaporali","CaporaliFrom","captionsjapanese","datejapanese","extrasjapanese","noextrasjapanese","prechaptername","postchaptername","presectionname","postsectionname","prepartname","postpartname","captionskurmanji","datekurmanji","extraskurmanji","noextraskurmanji","datekurmanjialternate","kurmanjihyphenmins","ontoday","datesymd","datesdmy","dategdmy","januaryname","februaryname","marchname","aprilname","mayname","junename","julyname","augustname","septembername","octobername","novembername","decembername","captionslatin","datelatin","extraslatin","noextraslatin","ProsodicMarksOn","ProsodicMarksOff","captionsclassiclatin","dateclassiclatin","extrasclassiclatin","noextrasclassiclatin","captionsecclesiasticlatin","dateecclesiasticlatin","extrasecclesiasticlatin","noextrasecclesiasticlatin","captionsmedievallatin","datemedievallatin","extrasmedievallatin","noextrasmedievallatin","captionslatvian","datelatvian","extraslatvian","noextraslatvian","latvianhyphenmins","datumaa","datums","latviangada","latviantoday","captionslithuanian","datelithuanian","extraslithuanian","noextraslithuanian","lithuanianhyphenmins","captionsmacedonian","datemacedonian","extrasmacedonian","noextrasmacedonian","Macedonian","Mkd","Mk","theoremname","corollaryname","lemmaname","overbar","textoverline","overbarshort","textoverlineshort","IfItalic","tbar","captionsmagyar","datemagyar","extrasmagyar","noextrasmagyar","ondatemagyar","acite","Acite","apageref","Apageref","aref","Aref","atold","Atold","az","Az","azc","Azc","azp","Azp","azr","Azr","captionlabeldelim","dMf","editorfootnote","emitdate","factorial","footnotestyle","hang","headingfootnote","HuComma","hunnewlabel","Hunumeral","hunumeral","huordinal","Huordinal","magyarDumpHuMin","makeFootnotable","MathBrk","MathBrkAll","MathReal","mond","refstruc","refstrucparen","SafeToday","textqq","told","captionshungarian","datehungarian","extrashungarian","noextrashungarian","ondatehungarian","captionsmalay","datemalay","extrasmalay","noextrasmalay","malayhyphenmins","captionsbahasam","datebahasam","extrasbahasam","noextrasbahasam","bahasamhyphenmins","captionsmelayu","datemelayu","extrasmelayu","noextrasmelayu","melayuhyphenmins","captionsmeyalu","datemeyalu","extrasmeyalu","noextrasmeyalu","meyaluhyphenmins","captionsmongolian","datemongolian","extrasmongolian","noextrasmongolian","Mongolian","Mon","Useg","useg","nsd","nsk","NSD","NSK","C","CYRAE","cyrae","CYRCHRDSC","cyrchrdsc","CYRCHVCRS","cyrchvcrs","CYRDJE","cyrdje","CYRDZE","cyrdze","CYRDZHE","cyrdzhe","CYREREV","cyrerev","CYRGHCRS","cyrghcrs","CYRHDSC","cyrhdsc","CYRHRDSN","cyrhrdsn","CYRJE","cyrje","CYRKBEAK","cyrkbeak","CYRKDSC","cyrkdsc","CYRKVCRS","cyrkvcrs","cyrlangle","CYRLJE","cyrlje","CYRNDSC","cyrndsc","CYRNG","cyrng","CYRNJE","cyrnje","CYROTLD","cyrotld","CYRpalochka","CYRQ","cyrq","cyrrangle","CYRSCHWA","cyrschwa","CYRSDSC","cyrsdsc","CYRSHHA","cyrshha","CYRTSHE","cyrtshe","CYRUSHRT","cyrushrt","CYRW","cyrw","CYRY","cyry","CYRYHCRS","cyryhcrs","CYRYO","cyryo","CYRZDSC","cyrzdsc","CYRZHDSC","cyrzhdsc","f","k","textquotedbl","U","captionsnorsk","datenorsk","extrasnorsk","noextrasnorsk","captionspiedmontese","datepiedmontese","extraspiedmontese","noextraspiedmontese","piedmontesehyphenmins","captionspinyin","datepinyin","extraspinyin","noextraspinyin","captionspolish","datepolish","extraspolish","noextraspolish","aob","Aob","lpb","Lpb","zkb","Zkb","sob","spb","skb","textpl","telepl","polishrz","polishzx","captionsportuges","dateportuges","extrasportuges","noextrasportuges","ord","orda","ro","ra","captionsportuguese","dateportuguese","extrasportuguese","noextrasportuguese","captionsbrazil","datebrazil","extrasbrazil","noextrasbrazil","captionsbrazilian","datebrazilian","extrasbrazilian","noextrasbrazilian","captionsromanian","dateromanian","extrasromanian","noextrasromanian","captionsromansh","dateromansh","extrasromansh","noextrasromansh","romanshhyphenmins","Russian","captionsrussian","daterussian","extrasrussian","noextrasrussian","captionsspanish","datespanish","extrasspanish","noextrasspanish","spanishrefname","spanishabstractname","spanishbibname","spanishchaptername","spanishappendixname","spanishcontentsname","spanishlistfigurename","spanishlisttablename","spanishindexname","spanishfigurename","spanishtablename","spanishpartname","spanishenclname","spanishccname","spanishheadtoname","spanishpagename","spanishseename","spanishalsoname","spanishproofname","spanishprefacename","spanishglossaryname","spanishdashitems","spanishsignitems","spanishsymbitems","spanishindexchars","spanishscroman","spanishlcroman","spanishucroman","Today","spanishdate","spanishDate","spanishdatedel","spanishdatede","spanishreverseddate","spanishdatefirst","spanishdeactivate","spanishdecimal","spanishplainpercent","percentsign","sen","arcsen","spanishoperators","dotlessi","selectspanish","spanishoptions","textspanish","notextspanish","mathspanish","shorthandsspanish","captionssamin","datesamin","extrassamin","noextrassamin","saminhyphenmins","captionsscottish","datescottish","extrasscottish","noextrasscottish","captionsserbian","dateserbian","extrasserbian","noextrasserbian","today","enumCyr","enumLat","enumEng","arcsec","arccosec","sech","cosech","arsech","arcosech","NZD","nzd","NZS","nzs","captionsserbianc","dateserbianc","extrasserbianc","noextrasserbianc","Serbianc","captionsslovak","dateslovak","extrasslovak","noextrasslovak","standardhyphens","splithyphens","captionsslovene","dateslovene","extrasslovene","noextrasslovene","captionslsorbian","datelsorbian","extraslsorbian","noextraslsorbian","newdatelsorbian","olddatelsorbian","captionslowersorbian","datelowersorbian","extraslowersorbian","noextraslowersorbian","newdatelowersorbian","olddatelowersorbian","captionsusorbian","dateusorbian","extrasusorbian","noextrasusorbian","newdateusorbian","olddateusorbian","captionsuppersorbian","dateuppersorbian","extrasuppersorbian","noextrasuppersorbian","newdateuppersorbian","olddateuppersorbian","captionsswedish","dateswedish","extrasswedish","noextrasswedish","swedishhyphenmins","captionsthai","datethai","extrasthai","noextrasthai","thaihyphenmins","thaitext","textthai","textpali","wbr","thainum","thaibracenum","thaialph","thaiAlph","textyamakkan","textfongmun","textangkhankhu","textkhomut","textYoYingPali","textThoThanPali","thaiKoKai","thaiKhoKhai","thaiKhoKhuat","thaiKhoKhwai","thaiKhoKhon","thaiKhoRakhang","thaiNgoNgu","thaiChoChan","thaiChoChing","thaiChoChang","thaiSoSo","thaiChoChoe","thaiYoYing","thaiDoChada","thaiToPatak","thaiThoThan","thaiThoNangmontho","thaiThoPhuthao","thaiNoNen","thaiDoDek","thaiToTao","thaiThoThung","thaiThoThahan","thaiThoThong","thaiNoNu","thaiBoBaimai","thaiPoPla","thaiPhoPhung","thaiFoFa","thaiPhoPhan","thaiFoFan","thaiPhoSamphao","thaiMoMa","thaiYoYak","thaiRoRua","thaiRu","thaiLoLing","thaiLu","thaiWoWaen","thaiSoSala","thaiSoRusi","thaiSoSua","thaiHoHip","thaiLoChula","thaiOAng","thaiHoNokhuk","thaiPaiyannoi","thaiSaraA","thaiMaiHanakat","thaiSaraAa","thaiSaraAm","thaiSaraI","thaiSaraIi","thaiSaraUe","thaiSaraUee","thaiSaraU","thaiSaraUu","thaiPhinthu","thaiSaraE","thaiSaraAe","thaiSaraO","thaiSaraAiMaimuan","thaiSaraAiMaimalai","thaiLakkhangyao","thaiMaiyamok","thaiMaitaikhu","thaiMaiEk","thaiMaiTho","thaiMaiTri","thaiMaiChattawa","thaiThanthakhat","thaiNikhahit","thaiYamakkan","thaiFongman","thaizero","thaione","thaitwo","thaithree","thaifour","thaifive","thaisix","thaiseven","thaieight","thainine","thaiAngkhankhu","thaiKhomut","captionsthaicjk","datethaicjk","extrasthaicjk","noextrasthaicjk","textbaht","captionsturkish","dateturkish","extrasturkish","noextrasturkish","subjectname","Ukrainian","captionsukrainian","dateukrainian","extrasukrainian","noextrasukrainian","viettext","viet","textviet","captionsvietnamese","datevietnamese","extrasvietnamese","noextrasvietnamese","OHORN","ohorn","UHORN","uhorn","abreve","Abreve","acircumflex","Acircumflex","ecircumflex","Ecircumflex","ocircumflex","Ocircumflex","Ohorn","Uhorn","ABREVE","ACIRCUMFLEX","ECIRCUMFLEX","OCIRCUMFLEX","h","headpagename","captionswelsh","datewelsh","extraswelsh","noextraswelsh","welshhyphenmins"]}
-,
-"babelbib.sty":{"envs":{},"deps":["babel.sty"],"cmds":["btxlanguagenameafrikaans","btxlanguagenameamerican","btxlanguagenameaustrian","btxlanguagenamebrazil","btxlanguagenamebrazilian","btxlanguagenamebritish","btxlanguagenamebulgarian","btxlanguagenamecanadian","btxlanguagenamecanadien","btxlanguagenamecatalan","btxlanguagenamecroatian","btxlanguagenameczech","btxlanguagenamedanish","btxlanguagenamedutch","btxlanguagenameenglish","btxlanguagenameesperanto","btxlanguagenamefinnish","btxlanguagenamefrancais","btxlanguagenamefranceis","btxlanguagenamefrench","btxlanguagenamefrenchb","btxlanguagenamegerman","btxlanguagenamegermanb","btxlanguagenamegreek","btxlanguagenamehebrew","btxlanguagenamehungarian","btxlanguagenameicelandic","btxlanguagenameirish","btxlanguagenameitalian","btxlanguagenamelatin","btxlanguagenamenaustrian","btxlanguagenamengerman","btxlanguagenamenhungarian","btxlanguagenamenicelandic","btxlanguagenamenirish","btxlanguagenamenitalian","btxlanguagenamenlatin","btxlanguagenamennorsk","btxlanguagenamennynorsk","btxlanguagenamenorsk","btxlanguagenamenpolish","btxlanguagenamenportuges","btxlanguagenamenportuguese","btxlanguagenamenrussian","btxlanguagenamenscottish","btxlanguagenamenserbian","btxlanguagenamenspanish","btxlanguagenamenswedish","btxlanguagenamenturkish","btxlanguagenamenynorsk","btxlanguagenamepolish","btxlanguagenameportuges","btxlanguagenameportuguese","btxlanguagenamerussian","btxlanguagenamescottish","btxlanguagenameserbian","btxlanguagenamespanish","btxlanguagenameswedish","btxlanguagenameturkish","btxlanguagenameUKenglish","btxlanguagenameukrainian","btxlanguagenameUSenglish","selectbiblanguage","declarebtxcommands","setbtxfallbacklanguage","btxannotation","biblanguage","setbibliographyfont","btxauthorcolon","btxurldatecomment","btxISBN","btxISSN","btxprintISBN","btxprintISSN","btxfnamespaceshort","btxfnamespacelong","btxprintmonthyearnum","bbbbaddto","bbbbannotationsfalse","bbbbannotationstrue","bbbbfixlanguagefalse","bbbbfixlanguagetrue","bbbbifpackageloaded","bbbbifundefined","bbbblanguagenamesfalse","bbbblanguagenamestrue","biblanguagename","bibsafrikaans","bibsamerican","bibsaustrian","bibsbahasa","bibsbrazil","bibsbrazilian","bibsbritish","bibscanadian","bibscanadien","bibscatalan","bibscroatian","bibsczech","bibsdanish","bibsdutch","bibsenglish","bibsesperanto","bibsfinnish","bibsfrancais","bibsfrench","bibsfrenchb","bibsgalician","bibsgerman","bibsgermanb","bibsgreek","bibsitalian","bibsmexican","bibsnaustrian","bibsngerman","bibsnorsk","bibsnorwegian","bibsportuges","bibsportuguese","bibsromanian","bibsrussian","bibsrussianb","bibsserbian","bibsspanish","bibsswedish","bibsturkish","bibsUKenglish","bibsUSenglish","btxandcomma","btxandlong","btxandshort","Btxchapterlong","btxchapterlong","Btxchaptershort","btxchaptershort","Btxeditionlong","btxeditionlong","Btxeditionnumlong","btxeditionnumlong","Btxeditionnumshort","btxeditionnumshort","Btxeditionshort","btxeditionshort","Btxeditorlong","btxeditorlong","Btxeditorshort","btxeditorshort","Btxeditorslong","btxeditorslong","Btxeditorsshort","btxeditorsshort","btxetalfont","btxetallong","btxetalshort","btxfallbacklanguage","btxifchangecase","btxifchangecaseoff","btxifchangecaseon","Btxinlong","btxinlong","btxinserieslong","btxinseriesshort","Btxinshort","btxinshort","btxISBNfont","btxISSNfont","btxjournalfont","btxjtitlefont","Btxjvolumelong","btxjvolumelong","Btxjvolumeshort","btxjvolumeshort","btxkeywordlanguage","btxlanguagename","btxlastnamefont","btxmastthesis","btxmonaprlong","btxmonaprshort","btxmonauglong","btxmonaugshort","btxmondeclong","btxmondecshort","btxmonfeblong","btxmonfebshort","btxmonjanlong","btxmonjanshort","btxmonjullong","btxmonjulshort","btxmonjunlong","btxmonjunshort","btxmonmarlong","btxmonmarshort","btxmonmaylong","btxmonmayshort","btxmonnovlong","btxmonnovshort","btxmonoctlong","btxmonoctshort","btxmonseplong","btxmonsepshort","btxnamefont","Btxnumberlong","btxnumberlong","Btxnumbershort","btxnumbershort","btxnumeraldot","btxnumeralenglish","btxnumeralfallback","btxnumeralfont","btxnumeralfrench","btxnumerallong","btxnumeralromanian","btxnumeralshort","btxnumeralswedish","btxofserieslong","btxofseriesshort","Btxpagelong","btxpagelong","Btxpageshort","btxpageshort","Btxpageslong","btxpageslong","Btxpagesshort","btxpagesshort","btxphdthesis","btxprintmonthyear","btxpublisherfont","btxselectlanguage","Btxtechreplong","btxtechreplong","Btxtechrepshort","btxtechrepshort","btxtitlefont","btxurldatefont","btxurlfont","btxvolumefont","Btxvolumelong","btxvolumelong","Btxvolumeshort","btxvolumeshort","ifbbbbannotations","ifbbbbfixlanguage","ifbbbblanguagenames","ifbtxprintISBN","ifbtxprintISSN","ifnumber","inputbdf","providebibliographyfont","thebtxromaniannumeral"]}
-,
-"babyloniannum.sty":{"envs":{},"deps":["fontspec.sty","xunicode.sty","numname.sty"],"cmds":["babyloniannum","babylonian","babylonianfont","unicodedisp","babylonianglyph"]}
-,
-"background.sty":{"envs":{},"deps":["tikz.sty","everypage.sty","afterpage.sty"],"cmds":["backgroundsetup","BgThispage","NoBgThispage","BgMaterial","SetBgContents","SetBgColor","SetBgAngle","SetBgOpacity","SetBgScale","SetBgPosition","SetBgAnchor","SetBgHshift","SetBgVshift"]}
-,
-"backnaur.sty":{"envs":["bnf","bnf*"],"deps":{},"cmds":["bnfprod","bnfmore","bnfpn","bnfts","bnftd","bnfes","bnfsk","bnfor","bnfsp","bnfpo"]}
-,
-"backref.sty":{"envs":{},"deps":["kvoptions.sty","kvsetkeys.sty","ltxcmds.sty","rerunfilecheck.sty"],"cmds":["backrefsetup","ifbackrefparscan","backrefparscanfalse","backrefparscantrue","backrefprint","backcite","backref","backrefalt","backrefpagesname","backrefsectionsname","backrefsep","backreftwosep","backreflastsep","backrefentrycount","backrefenglish","backrefgerman","backreffrench","backrefspanish","backrefbrazil","backrefafrikaans"]}
-,
-"balance.sty":{"envs":{},"deps":{},"cmds":["balance","nobalance","oldvsize"]}
-,
-"bangla.sty":{"envs":["isoindictranse"],"deps":["fontspec.sty","etoolbox.sty","polyglossia.sty","CharisSIL.sty"],"cmds":["banglatext","banglabold","banglaitalic","banglatranslit","banglaipa","banglapage","banglasection","banglaenumerate","banglaequation","banglatable","banglafigure","banglaallcounters","bengalinum","bengalialpha","banglaipafont","bdnhbold","bdnhitalic","bdnhtext","bdnhtranslitfont","doindictrans","fooA","indictrans","translitfont","xgenerateTransliteration","xxgenerateTransliteration","xxxgenerateTransliteration","zzrow","zztable"]}
-,
-"bangorcsthesis.cls":{"envs":{},"deps":["fifo-stack.sty","ifthen.sty","xkeyval.sty","xcolor.sty","fontenc.sty","babel.sty","isodate.sty","inputenc.sty","xparse.sty","s-report.cls","tocloft.sty","parskip.sty","indentfirst.sty","berasans.sty","graphicx.sty","url.sty","csquotes.sty","microtype.sty","setspace.sty","fancyhdr.sty","enumitem.sty","amsmath.sty","hyperref.sty","cleveref.sty","geometry.sty","draftwatermark.sty","biblatex.sty","caption.sty","titlesec.sty","tikz.sty","forloop.sty","framed.sty","totalcount.sty","newtxtext.sty","newtxmath.sty"],"cmds":["degreeScheme","supervisor","bibliographySetup","acknowledgements","statements","tables","thesisContent","references","chapterquote","bangorlogo","book","ctSetFont","degree","helv","hugequote","pgcert","phd","sig","tgherosfont","tgherosfontfoot","thel","thesischapterfont","thesisparagraphfont","thesispartfont","thesispartlabelfont","thesissectionfont","thesissubsectionfont","version","DH","dh","dj","DJ","guillemetleft","guillemetright","guillemotleft","guillemotright","guilsinglleft","guilsinglright","Hwithstroke","hwithstroke","k","NG","ng","quotedblbase","quotesinglbase","textogonekcentered","textquotedbl","th","TH","captionsUKenglish","dateUKenglish","extrasUKenglish","noextrasUKenglish","englishhyphenmins","britishhyphenmins","americanhyphenmins","prefacename","bibname","chaptername","enclname","ccname","headtoname","pagename","seename","alsoname","proofname","glossaryname","citet","citep","citealt","citealp","citeauthor","citeyearpar","Citet","Citep","Citealt","Citealp","citefullauthor","Citefullauthor","citetext","defcitealias","citetalias","citepalias","mkpagegrouped","mkonepagegrouped","totalfigures","iftotalfigures","totaltables","iftotaltables"]}
-,
-"bankstatement.cls":{"envs":{},"deps":["xkeyval.sty","xkvltxp.sty","geometry.sty","longtable.sty","tabularx.sty","xcolor.sty","graphicx.sty","booktabs.sty","datatool.sty","calc.sty","ifthen.sty","siunitx.sty"],"cmds":["bankstatement"]}
-,
-"bargraph-js.sty":{"envs":["bargraphenv","bargraph"],"deps":["xkeyval.sty","xcolor.sty","eforms.sty"],"cmds":["nbars","bargap","bardimen","presetsbarfor","barfor","presetinputfor","inputFor","populateCommaData","hs","vs","barLabelsTU","barLabelsNoTU","isdynamic","scaleFactorDef","displaysfFor","manualsfFor","labelFld","barDefColor","barforCommon","barLabelsNoTUJS","barLabelsNoTUJSDef","barNum","bgtoks","cntbars","dybarforCommon","expbarfor","getBarName","hmrk","horizontalbarsfalse","horizontalbarstrue","ifhorizontalbars","ifisbgenv","isbgenvfalse","isbgenvtrue","oBgEnvs","priorpresetinputfor","simpleBarLabels","txtBgValues","usebarlabel"]}
-,
-"barracuda.sty":{"envs":{},"deps":["luatex.sty"],"cmds":["barracuda","barracudabox"]}
-,
-"bashful.sty":{"envs":{},"deps":["catchfile.sty","listings.sty","textcomp.sty","xcolor.sty","xkeyval.sty"],"cmds":["bash","END","bashStdout","bashStderr","splice","bashI","bashII","bashIII","bashIV","bashV","logBL","eoln","firstErrorLine"]}
-,
-"basicarith.sty":{"envs":{},"deps":{},"cmds":["probline","nextpline","opline","soluline","noopline","longdiv","ldsoluline","nextldline","linestyle","clearlinestyles","digstyle","cleardigitstyles","carryline","strike","problembox","showdivwork","noshowdivwork","fractionsymbol","ifshowdivisionwork","showdivisionworktrue","showdivisionworkfalse","specialdigitstyle","speciallinestyle","gobblechar","assignthencheck","countunlessnil","auxcountchar","countchar"]}
-,
-"baskervald.sty":{"envs":{},"deps":["xkeyval.sty","fontenc.sty","textcomp.sty","nfssext-cfr.sty"],"cmds":["ebweight","texteb","swashstyle","textswash","zeroslash","DH","NG","dj","ng","k","guillemotleft","guillemotright","guilsinglleft","guilsinglright","quotedblbase","quotesinglbase","textquotedbl","DJ","th","TH","dh","Hwithstroke","hwithstroke","textogonekcentered","guillemetleft","guillemetright"]}
-,
-"baskervillef.sty":{"envs":{},"deps":["fontenc.sty","textcomp.sty","mweights.sty","etoolbox.sty","xstring.sty","ifthen.sty","fontaxes.sty","xkeyval.sty"],"cmds":["lfstyle","osfstyle","sufigures","textfrac","textlf","textosf","textsu","textsuperior","textde","textdenominators","defigures","texttlf","texttosf","tlfstyle","tosfstyle","useosf","useproportional","DH","NG","dj","ng","k","guillemotleft","guillemotright","guilsinglleft","guilsinglright","quotedblbase","quotesinglbase","textquotedbl","DJ","th","TH","dh","Hwithstroke","hwithstroke","textogonekcentered","guillemetleft","guillemetright"]}
-,
-"basque-book.cls":{"envs":{},"deps":["basque-date.sty"],"cmds":["frontmatter","mainmatter","backmatter","thechapter","chaptername","bibname","captionwidth","chapter","chaptermark"]}
-,
-"basque-date.sty":{"envs":{},"deps":{},"cmds":["eusdata","eusdatainesibo","theurtea"]}
-,
-"bbding.sty":{"envs":{},"deps":{},"cmds":["ArrowBoldDownRight","ArrowBoldRightCircled","ArrowBoldRightShort","ArrowBoldRightStrobe","ArrowBoldUpRight","Asterisk","AsteriskBold","AsteriskCenterOpen","AsteriskRoundedEnds","AsteriskThin","AsteriskThinCenterOpen","Checkmark","CheckmarkBold","CircleShadow","CircleSolid","Cross","CrossBoldOutline","CrossClowerTips","CrossMaltese","CrossOpenShadow","CrossOutline","DavidStar","DavidStarSolid","DiamondSolid","EightAsterisk","EightFlowerPetal","EightFlowerPetalRemoved","EightStar","EightStarBold","EightStarConvex","EightStarTaper","Ellipse","EllipseShadow","EllipseSolid","Envelope","FiveFlowerOpen","FiveFlowerPetal","FiveStar","FiveStarCenterOpen","FiveStarConvex","FiveStarLines","FiveStarOpen","FiveStarOpenCircled","FiveStarOpenDotted","FiveStarOutline","FiveStarOutlineHeavy","FiveStarShadow","FourAsterisk","FourClowerOpen","FourClowerSolid","FourStarOpen","HalfCircleLeft","HalfCircleRight","HandCuffLeft","HandCuffLeftUp","HandCuffRight","HandCuffRightUp","HandLeft","HandLeftUp","HandPencilLeft","HandRight","HandRightUp","JackStar","JackStarBold","NibLeft","NibRight","NibSolidLeft","NibSolidRight","OrnamentDiamondSolid","Peace","PencilLeft","PencilLeftDown","PencilLeftUp","PencilRight","PencilRightDown","PencilRightUp","Phone","PhoneHandset","Plane","Plus","PlusCenterOpen","PlusOutline","PlusThinCenterOpen","Rectangle","RectangleBold","RectangleThin","ScissorHollowLeft","ScissorHollowRight","ScissorLeft","ScissorLeftBrokenBottom","ScissorLeftBrokenTop","ScissorRight","ScissorRightBrokenBottom","ScissorRightBrokenTop","SixFlowerAlternate","SixFlowerAltPetal","SixFlowerOpenCenter","SixFlowerPetalDotted","SixFlowerPetalRemoved","SixFlowerRemovedOpenPetal","SixStar","SixteenStarLight","Snowflake","SnowflakeChevron","SnowflakeChevronBold","Sparkle","SparkleBold","Square","SquareCastShadowBottomRight","SquareCastShadowTopLeft","SquareCastShadowTopRight","SquareShadowBottomRight","SquareShadowTopLeft","SquareShadowTopRight","SquareSolid","SunshineOpenCircled","Tape","TriangleDown","TriangleUp","TwelweStar","XSolid","XSolidBold","XSolidBrush"]}
-,
-"bbm.sty":{"envs":{},"deps":{},"cmds":["mathbbm","mathbbmss","mathbbmtt"]}
-,
-"bbold.sty":{"envs":{},"deps":{},"cmds":["mathbb","textbb","bbfamily"]}
-,
-"bboldx.sty":{"envs":{},"deps":["xkeyval.sty"],"cmds":["bbxfamily","bbbxfamily","textbb","textbfbb","mathbb","mathbfbb","imathbb","jmathbb","bbdotlessi","bbdotlessj","bbGamma","bbDelta","bbTheta","bbLambda","bbXi","bbPi","bbSigma","bbUpsilon","bbPhi","bbPsi","bbOmega","bbalpha","bbbeta","bbgamma","bbdelta","bbepsilon","bbzeta","bbeta","bbtheta","bbiota","bbkappa","bblambda","bbmu","bbnu","bbxi","bbpi","bbrho","bbsigma","bbtau","bbupsilon","bbphi","bbchi","bbpsi","bbomega","bbLbrack","bbRbrack","bbLangle","bbRangle","bbLparen","bbRparen","txtbbdotlessi","txtbbdotlessj","txtbbGamma","txtbbDelta","txtbbTheta","txtbbLambda","txtbbXi","txtbbPi","txtbbSigma","txtbbUpsilon","txtbbPhi","txtbbPsi","txtbbOmega","txtbbalpha","txtbbbeta","txtbbgamma","txtbbdelta","txtbbepsilon","txtbbzeta","txtbbeta","txtbbtheta","txtbbiota","txtbbkappa","txtbblambda","txtbbmu","txtbbnu","txtbbxi","txtbbpi","txtbbrho","txtbbsigma","txtbbtau","txtbbupsilon","txtbbphi","txtbbchi","txtbbpsi","txtbbomega","txtbbLbrack","txtbbRbrack","txtbbLangle","txtbbRangle","txtbbLparen","txtbbRparen","txtbfbbdotlessi","txtbfbbdotlessj","txtbfbbGamma","txtbfbbDelta","txtbfbbTheta","txtbfbbLambda","txtbfbbXi","txtbfbbPi","txtbfbbSigma","txtbfbbUpsilon","txtbfbbPhi","txtbfbbPsi","txtbfbbOmega","txtbfbbalpha","txtbfbbbeta","txtbfbbgamma","txtbfbbdelta","txtbfbbepsilon","txtbfbbzeta","txtbfbbeta","txtbfbbtheta","txtbfbbiota","txtbfbbkappa","txtbfbblambda","txtbfbbmu","txtbfbbnu","txtbfbbxi","txtbfbbpi","txtbfbbrho","txtbfbbsigma","txtbfbbtau","txtbfbbupsilon","txtbfbbphi","txtbfbbchi","txtbfbbpsi","txtbfbbomega","txtbfbbLbrack","txtbfbbRbrack","txtbfbbLangle","txtbfbbRangle","txtbfbbLparen","txtbfbbRparen"]}
-,
-"bchart.sty":{"envs":["bchart"],"deps":["ifthen.sty","tikz.sty","tikzlibrarycalc.sty"],"cmds":["bcbar","bcskip","bcxlabel","bclabel","bcfontstyle","bcpos","bcwidth","bcunit","bcmin","bcmax","bcstep","bcsteps","bcscale","bcplainchart","bcbarcolor","bcbartext","bcbarlabel","bcbarvalue","bcplainbar","bcskiplabel","bcstripunit"]}
-,
-"bclogo.sty":{"envs":["bclogo"],"deps":["xkeyval.sty","ifthen.sty","graphicx.sty","mdframed.sty","ifpdf.sty","etoolbox.sty","tikz.sty","tikzlibraryshadows.sty","tikzlibrarydecorations.pathmorphing.sty","pstricks.sty","pst-grad.sty","pst-coil.sty","pst-blur.sty"],"cmds":["pagecolorOLD","bcStyleTitre","bcStyleSousTitre","bcfleur","bcpanchant","bcnote","bcetoile","bcours","bcattention","bccoeur","bcorne","bcdanger","bcsmbh","bcsmmh","bctakecare","bclampe","bcbook","bctrefle","bcquestion","bccrayon","bcspadesuit","bcinfo","bcplume","bcbombe","bccube","bcdodecaedre","bcicosaedre","bcoctaedre","bctetraedre","bcdallemagne","bcdautriche","bcdbelgique","bcdbulgarie","bcdfrance","bcditalie","bcdluxembourg","bcdpaysbas","bcsoleil","bceclaircie","bcpluie","bcneige","bcinterdit","bcpoisson","bchorloge","bccalendrier","bcrosevents","bcyin","bcdz","bcvelo","bcpeaceandlove","bcoeil","bcnucleaire","bcfemme","bchomme","bcloupe","bcrecyclage","bcvaletcoeur","bccle","bcclefa","bcclesol","bcfeuvert","bcfeujaune","bcfeurouge","bcfeutricolore","bcoutil","bctrombone","bcstop","logowidth","listofbclogo","titrebclogo","bccaption","bclogotitre","styleSousTitre","thebclogocompteur","ifbclogotikz","bclogotikztrue","bclogotikzfalse","ifbclogoblur","bclogoblurtrue","bclogoblurfalse","PackageName","filedate","fileversion"]}
-,
-"beamer-rl.cls":{"envs":["oldpgfpicture"],"deps":["luatex.sty","ifluatex.sty","s-beamer.cls","babel.sty","fontspec.sty"],"cmds":["localfootnote","mainfootnote","localfootnotetext","mainfootnotetext","blacktriangleright","blacktriangleleft","redefbeamertemplate","oldpgfpicture","endoldpgfpicture","oldpgfuseshading"]}
-,
-"beamer.cls":{"envs":{},"deps":["beamerbasemodes.sty","beamerbaseoptions.sty","pgfcore.sty","atbegshi.sty","beamerbaserequires.sty","ucs.sty","inputenc.sty"],"cmds":["headdp","footheight","sidebarheight","mathfamilydefault"]}
-,
-"beamerappendixnote.sty":{"envs":{},"deps":["expl3.sty","l3keys2e.sty","xparse.sty"],"cmds":["appxnote","printappxnotes","options"]}
-,
-"beamerarticle.sty":{"envs":{},"deps":["beamerbasemodes.sty","beamerbasearticle.sty","inputenc.sty","hyperref.sty"],"cmds":{}}
-,
-"beameraudience.sty":{"envs":{},"deps":["kvoptions .sty","cprotect .sty","ifthen.sty"],"cmds":["ifinclude","ifshow","framefor","justfor","showcontentfor","fileversion","filedate"]}
-,
-"beamerbasearticle.sty":{"envs":{},"deps":["beamerbaseoptions.sty","beamerbaserequires.sty","xcolor.sty","inputenc.sty","hyperref.sty"],"cmds":{}}
-,
-"beamerbaseauxtemplates.sty":{"envs":{},"deps":{},"cmds":{}}
-,
-"beamerbaseboxes.sty":{"envs":["beamerboxesrounded"],"deps":{},"cmds":["beamerboxesdeclarecolorscheme","beamerboxesrounded","endbeamerboxesrounded"]}
-,
-"beamerbasecolor.sty":{"envs":["beamercolorbox"],"deps":{},"cmds":["setbeamercolor","ifbeamercolorempty","usebeamercolor","donotcoloroutermaths","donotcolorouterdisplaymaths"]}
-,
-"beamerbasecompatibility.sty":{"envs":["pauses","columnsonlytextwidth"],"deps":{},"cmds":["WriteBookmarks","textlatin","defverbatim","tableofcontentscurrent","plainframe","pgfonly","nameslide","newoverlaycommand","newoverlayenvironment","untitledsubsection","noteitems","unpause","tinyline","tinycolouredline","colouredline","beamerline","insertvrule","usetitlepagetemplate","usepartpagetemplate","useframetitletemplate","useitemizeitemtemplate","usesubitemizeitemtemplate","usesubsubitemizeitemtemplate","useenumerateitemtemplate","usesubenumerateitemtemplate","usesubsubenumerateitemtemplate","useitemizetemplate","usesubitemizetemplate","usesubsubitemizetemplate","useenumerateitemminitemplate","useenumeratetemplate","usesubenumeratetemplate","usesubsubenumeratetemplate","useleftsidebartemplate","userightsidebartemplate","useleftsidebarbackgroundtemplate","userightsidebarbackgroundtemplate","useleftsidebarcolortemplate","userightsidebarcolortemplate","useleftsidebarverticalshadingtemplate","userightsidebarverticalshadingtemplate","useleftsidebarhorizontalshadingtemplate","userightsidebarhorizontalshadingtemplate","usedescriptionitemtemplate","usedescriptionitemofwidthas","usetemplatetocsection","usebibitemtemplate","usebibliographyblocktemplate","usebuttontemplate","usetemplateabstract","usetemplateverse","usetemplatenote","useheadtemplate","addtoheadtemplate","addtofoottemplate","usefoottemplate","usecaptiontemplate","insertblockname","usesectionheadtemplate","usesubsectionheadtemplate","usesectionsidetemplate","usesubsectionsidetemplate","usetheoremtemplate","useprooftemplate","useqedsymboltemplate","BeispielInline","ExampleInline","usenavigationsymbolstemplate","insertnavigationsymbols","beamersetaveragebackground","useminislidetemplate","usesidebarbackgroundtemplate","usefootnotetemplate","beamertemplatedefaulttoc","beamertemplatenumberedsubsectiontoc","beamertemplatenumberedsectiontoc","beamertemplatenumberedcirclesectiontoc","beamertemplatenumberedsquaresectiontoc","beamertemplatenumberedballsectiontoc","beamertemplateballtoc","beamertemplatedotitem","beamertemplatetriangleitem","beamertemplatesquareitem","beamertemplateballitem","beamertemplateenumeratealpha","beamertemplateenumeratecircle","beamertemplateenumeratesquare","beamertemplatelargepartpage","beamertemplateboldpartpage","beamertemplatelargetitlepage","beamertemplateboldtitlepage","beamertemplateboldcenterframetitle","beamertemplateboldframetitle","beamertemplatelargeframetitle","beamertemplateboldblocks","beamertemplatelargeblocks","beamertemplateshadowblocks","beamertemplateplaintoc","beamertemplatecircleminiframeinverted","beamertemplatesphereminiframe","beamertemplatesphereminiframeinverted","beamertemplatelightsectionheads","beamertemplatedarksectionheads","usecontinuationtemplate","beamertemplatecontinuationroman","beamertemplatecontinuationtext","beamertemplateroundedbuttons","beamertemplateoutlinebuttons","beamertemplatesolidbuttons","usetemplatequotation","beamertemplateheadempty","beamertemplatefootempty","beamertemplatefootpagenumber","beamertemplatecaptionownline","beamertemplatecaptionnwithnumber","beamertemplateroundedblocks","beamertemplatetheoremsunnumbered","beamertemplatetheoremsnumbered","beamertemplatetheoremsamslike","beamertemplatetheoremssimple","beamertemplatenavigationsymbolsempty","beamertemplatenavigationsymbolsframe","beamertemplatenavigationsymbolsvertical","beamertemplatenavigationsymbolshorizontal","beamertemplatedefaultsectionheads","beamertemplatecircleminiframe","beamertemplateticksminiframe","beamertemplateboxminiframe","usesidebartemplate","beamertemplatesidebarcolor","beamertemplaterightsidebarlogonavigation","beamertemplatesidebarverticalshading","beamertemplatesidebarhorizontalshading","beamersetleftmargin","beamersetrightmargin","useframetemplate","usebackgroundtemplate","beamertemplatesolidbackgroundcolor","useblocktemplate","usealertblocktemplate","useexampleblocktemplate","beamertemplategridbackground","beamertemplateshadingbackground","usealerttemplate","usestructuretemplate","beamertemplatebookbibitems","beamertemplatearticlebibitems","beamertemplatetextbibitems","beamertemplatearrowbibitems","beamertemplateonlinebibitems","beamertemplatetransparentcovereddynamic","beamertemplatetransparentcovereddynamicmedium","beamertemplatetransparentcovered","beamertemplatetransparentcoveredmedium","beamertemplatetransparentcoveredhigh","beamertemplatetransparentcoveredhighest","beamersetuncovermixins"]}
-,
-"beamerbasefont.sty":{"envs":{},"deps":["amssymb.sty","sansmathaccent.sty"],"cmds":["setbeamerfont","usebeamerfont","Tiny","TINY"]}
-,
-"beamerbaseframe.sty":{"envs":["frame"],"deps":{},"cmds":["framelatex","refcounter","thesubsectionslide","insertframetitle","insertframesubtitle","resetcounteronoverlays","resetcountonoverlays","endframe","framewidth","beamerclosesubstitutedenvironement","includeonlyframes","theframenumber","insertframenumber","insertslidenumber","insertoverlaynumber","pagebreak","nopagebreak","framebreak","noframebreak","againframe"]}
-,
-"beamerbaseframecomponents.sty":{"envs":["columns","column"],"deps":{},"cmds":["setbeamersize","insertpagenumber","column","insertfootnotetext","insertfootnotemark","footnote"]}
-,
-"beamerbaseframesize.sty":{"envs":{},"deps":{},"cmds":["framezoom","insertcontinuationcount","insertcontinuationcountroman","insertcontinuationtext"]}
-,
-"beamerbaselocalstructure.sty":{"envs":["alertenv","structureenv","block","alertblock","exampleblock"],"deps":["enumerate.sty"],"cmds":["frametitle","insertframetitle","insertshortframetitle","framesubtitle","insertframesubtitle","alert","structure","insertblocktitle","insertenumlabel","insertsubenumlabel","insertsubsubenumlabel","insertdescriptionitem","bibitem","insertbiblabel","insertcaptionname","insertcaptionnumber","insertcaption"]}
-,
-"beamerbasemisc.sty":{"envs":{},"deps":{},"cmds":["headcommand","dohead","inserttotalframenumber","insertmainframenumber","partentry","slideentry","sectionentry","bibname","algorithmname","chaptername","includegraphics","pgfuseimage","pgfimage"]}
-,
-"beamerbasemodes.sty":{"envs":{},"deps":["etoolbox.sty","beamerbasedecode.sty"],"cmds":["mode","includeslide","setjobnamebeamerversion","thebeamerpauses","jobnamebeamerversion"]}
-,
-"beamerbasenavigation.sty":{"envs":{},"deps":{},"cmds":["hyperlinkslideprev","hyperlinkslidenext","hyperlinkframestart","hyperlinkframeend","hyperlinkframestartnext","hyperlinkframeendprev","hyperlinkpresentationstart","hyperlinkpresentationend","hyperlinkappendixstart","hyperlinkappendixend","hyperlinkdocumentstart","hyperlinkdocumentend","hyperlinksubsectionstart","hyperlinksubsectionend","hyperlinksubsectionstartnext","hyperlinksubsectionendprev","hyperlinksectionstart","hyperlinksectionend","hyperlinksectionstartnext","hyperlinksectionendprev","hyperlinkpartstart","hyperlinkpartend","hyperlinkpartstartnext","hyperlinkpartendprev","insertframestartpage","insertframeendpage","insertsubsectionstartpage","insertsubsectionendpage","insertsectionstartpage","insertsectionendpage","insertpartstartpage","insertpartendpage","insertpresentationstartpage","insertpresentationendpage","insertappendixstartpage","insertappendixendpage","insertdocumentstartpage","insertdocumentendpage","insertslidenavigationsymbol","insertframenavigationsymbol","insertsubsectionnavigationsymbol","insertsectionnavigationsymbol","insertdocnavigationsymbol","insertbackfindforwardnavigationsymbol","insertgotosymbol","insertskipsymbol","insertreturnsymbol","beamerbutton","insertbuttontext","beamergotobutton","beamerskipbutton","beamerreturnbutton","insertnavigation","insertverticalnavigation","insertsubsubsectionheadnumber","insertsubsectionheadnumber","insertsectionheadnumber","insertpartheadnumber","insertsectionnavigation","insertsectionnavigationhorizontal","insertsubsectionnavigation","insertsubsectionnavigationhorizontal"]}
-,
-"beamerbasenotes.sty":{"envs":{},"deps":{},"cmds":["note","insertnote","AtBeginNote","AtEndNote","insertslideintonotes"]}
-,
-"beamerbaseoptions.sty":{"envs":{},"deps":["keyval.sty"],"cmds":["ProcessOptionsBeamer","ExecuteOptionsBeamer","DeclareOptionBeamer","defbeameroption","setbeameroption"]}
-,
-"beamerbaseoverlay.sty":{"envs":["altenv","actionenv","visibleenv","invisibleenv","uncoverenv","onlyenv","overlayarea","overprint"],"deps":{},"cmds":["only","alt","altenv","endaltenv","action","actionenv","endactionenv","temporal","beameroriginal","newenvironment","renewenvironment","newcommand","renewcommand","opaqueness","setbeamercovered","pause","music","beamerpause","onslide","item","beamerdefaultoverlayspecification","uncover","visible","invisible","color","textbf","textit","textmd","textnormal","textrm","textsc","textsf","textsl","texttt","textup","hypertarget","hyperlink","emph","transblindshorizontal","transblindsvertical","transboxin","transboxout","transcover","transdissolve","transfade","transglitter","transpush","transreplace","transsplitverticalin","transsplitverticalout","transsplithorizontalin","transsplithorizontalout","transuncover","transwipe","transfly","transduration","animate","animatevalue","label"]}
-,
-"beamerbaserequires.sty":{"envs":{},"deps":["beamerbasecompatibility.sty","beamerbasefont.sty","beamerbasetranslator.sty","beamerbasemisc.sty","beamerbasetwoscreens.sty","beamerbaseoverlay.sty","beamerbasetitle.sty","beamerbasesection.sty","beamerbaseframe.sty","beamerbaseverbatim.sty","beamerbaseframesize.sty","beamerbaseframecomponents.sty","beamerbasecolor.sty","beamerbasenotes.sty","beamerbasetoc.sty","beamerbasetemplates.sty","beamerbaselocalstructure.sty","beamerbasenavigation.sty","beamerbasetheorems.sty"],"cmds":{}}
-,
-"beamerbasesection.sty":{"envs":{},"deps":{},"cmds":["thelecture","lecture","AtBeginLecture","includeonlylecture","insertlecture","insertlecturenumber","insertshortlecture","part","partlink","partlinkshort","insertpart","insertromanpartnumber","insertpartnumber","insertshortpart","AtBeginPart","sectionname","section","secname","lastsection","sectionlink","insertsection","insertsectionhead","insertsectionnumber","AtBeginSection","breakhere","subsectionname","subsection","subsecname","lastsubsection","subsectionlink","insertsubsection","insertsubsectionhead","insertsubsectionnumber","AtBeginSubsection","subsubsection","subsubsecname","lastsubsubsection","subsubsectionlink","insertsubsubsection","insertsubsubsectionhead","insertsubsubsectionnumber","AtBeginSubsubsection","appendix","insertappendixframenumber","insertframenumberinappendix"]}
-,
-"beamerbasetemplates.sty":{"envs":{},"deps":["beamerbaseauxtemplates.sty"],"cmds":["usebeamertemplate","expandbeamertemplate","ifbeamertemplateempty","defbeamertemplate","defbeamertemplatealias","defbeamertemplateparent","setbeamertemplate","addtobeamertemplate"]}
-,
-"beamerbasethemes.sty":{"envs":{},"deps":{},"cmds":["usetheme","usecolortheme","usefonttheme","useoutertheme","useinnertheme","beamersidebarwidth","beamerheadheight","inserttitleindicator","insertauthorindicator","insertinstituteindicator","insertdateindicator"]}
-,
-"beamerbasetheorems.sty":{"envs":["corollary","fact","lemma","problem","solution","definition","definitions","example","examples","Beispiel","Beispiele","Loesung","Satz","Folgerung","Fakt","Beweis","Lemma","Proof","Theorem","Problem","Corollary","Example","Examples","Definition"],"deps":["amsmath.sty","amsthm.sty"],"cmds":["inserttheoremname","inserttheorempunctuation","inserttheoremnumber","inserttheoremheadfont","inserttheoremblockenv","inserttheoremaddition","insertproofname"]}
-,
-"beamerbasetitle.sty":{"envs":{},"deps":{},"cmds":["maketitle","titlepage","partpage","sectionpage","subsectionpage","title","inserttitle","insertshorttitle","subtitle","insertsubtitle","insertshortsubtitle","date","insertdate","insertshortdate","author","insertauthor","insertshortauthor","titlegraphic","inserttitlegraphic","subject","keywords","institute","insertinstitute","insertshortinstitute","inst","logo","insertlogo"]}
-,
-"beamerbasetoc.sty":{"envs":{},"deps":{},"cmds":["tableofcontents","sectionintoc","inserttocsectionnumber","inserttocsection","subsectionintoc","inserttocsubsectionnumber","inserttocsubsection","subsubsectionintoc","inserttocsubsubsectionnumber","inserttocsubsubsection"]}
-,
-"beamerbasetranslator.sty":{"envs":{},"deps":{},"cmds":{}}
-,
-"beamerbasetwoscreens.sty":{"envs":{},"deps":{},"cmds":{}}
-,
-"beamerbaseverbatim.sty":{"envs":["semiverbatim"],"deps":{},"cmds":{}}
-,
-"beamerfoils.sty":{"envs":["boldequation","boldequation*","Theorem*","Lemma*","Corollary*","Proposition*","Definition*"],"deps":{},"cmds":["MyLogo","LogoOn","LogoOff","foilhead","rotatefoilhead","endfoil","FoilTeX","bm","bmstyle"]}
-,
-"beamerposter.sty":{"envs":{},"deps":["xkeyval.sty","type1cm.sty","fp.sty"],"cmds":["veryHuge","VeryHuge","VERYHuge","paperwidthValue","paperheightValue","textwidthValue","textheightValue","fontscale","myfontscale","printerToUse","customwidth","customheight","tmp","resulttextwidth","resultmaxwidth","fontSizeX","fontSizeY","resulttinyX","resulttinyY","resultscriptsizeX","resultscriptsizeY","resultfootnotesizeX","resultfootnotesizeY","resultsmallX","resultsmallY","resultnormalsizeX","resultnormalsizeY","resultlargeX","resultlargeY","resultLargeX","resultLargeY","resultLARGEX","resultLARGEY","resulthugeX","resulthugeY","resultHugeX","resultHugeY","resultveryHugeX","resultveryHugeY","resultVeryHugeX","resultVeryHugeY","resultVERYHugeX","resultVERYHugeY","labelWidthValue","labelSepValue","indentionLevelValuei","indentionLevelValueii","indentionLevelValueiii","bibIconScaleValue"]}
-,
-"beamerprosper.sty":{"envs":["slide","Itemize","itemstep","enumstep","notes","wideslide"],"deps":{},"cmds":["email","institution","Logo","overlays","fromSlide","onlySlide","untilSlide","FromSlide","OnlySlide","UntilSlide","slideCaption","fontTitle","fontText","PDFtransition","hiddenitem","prosperpart","tsection","tsectionandpart","dualslide","PDForPS","onlyInPDF","onlyInPS","myitem","FontTitle","FontText","ColorFoot","DefaultTransition","NoFrenchBabelItemize","TitleSlideNav","NormalSlideNav","HAPsetup","LeftFoot","RightFoot"]}
-,
-"beamerseminar.sty":{"envs":["slide","slide*"],"deps":{},"cmds":["overlay","newslide","red","blue","green","ifarticle","articletrue","articlefalse","ifslidesonly","slidesonlytrue","slidesonlyfalse","ifslide","slidetrue","slidefalse","ifportrait","portraittrue","portraitfalse","ifcenterslides","centerslidestrue","centerslidesfalse","semin","semcm","ptsize"]}
-,
-"beamersubframe.sty":{"envs":["subframe","lastframe"],"deps":["verbatim.sty"],"cmds":["appendsubframes","ifappend","inserttotalframenumberwithsub","ifsubframe","subslideentry","bsfrestorepart","bsfrestoresection","bsfrestoresubsection","bsfrestore","bsfsubframepages","filedate","fileversion"]}
-,
-"beamerswitch.cls":{"envs":{},"deps":["xkeyval.sty","xkvltxp.sty","etoolbox.sty","xstring.sty","shellesc.sty","iftex.sty","expl3.sty","xparse.sty","s-beamer.cls","s-book.cls","s-report.cls","s-memoir.cls","beamerarticle.sty","pgfpages.sty"],"cmds":["ArticleSuffix","BeamerSuffix","HandoutSuffix","TransSuffix","BeamerswitchSpawn","SpawnedCompiler","SpawnedPDFTeX","SpawnedLuaTeX","SpawnedXeTeX","SpawnedTeX","handoutlayout","articlelayout","JobName","handoutpnobaseline","pgfpageoptionborder","pgfpageoptionfirstshipout","pgfpageoptionheight","pgfpageoptionwidth","thehandoutpno"]}
-,
-"beamertexpower.sty":{"envs":{},"deps":{},"cmds":["stepwise","parstepwise","liststepwise","step","steponce","switch","bstep","dstep","vstep","restep","reswitch","rebstep","redstep","revstep","boxedsteps","nonboxedsteps","code","codeswitch"]}
-,
-"beamertheme-light.sty":{"envs":{},"deps":{},"cmds":["wordcolor","strbg","thankframe"]}
-,
-"beamerthemeAmurmaple.sty":{"envs":["information","boxalertenv"],"deps":["multicol.sty","xparse.sty","xfp.sty","expl3.sty","iftex.sty","pgfpages.sty","luamesh.sty","tcolorbox.sty","tcolorboxlibraryskins.sty","tikzlibrarybackgrounds.sty","tikzlibraryquotes.sty","tikzlibraryangles.sty","tikzlibraryautomata.sty","tikzlibrarycalc.sty"],"cmds":["boxalert","collaboration","framesection","mail","sepframe","thanksframe","webpage","pourc","theamurmapletoc","xj"]}
-,
-"beamerthemeArguelles.sty":{"envs":{},"deps":["inputenc.sty","fontenc.sty","Alegreya.sty","AlegreyaSans.sty","eulervm.sty","mathalpha.sty","microtype.sty","fontawesome5.sty","opencolor.sty","enumitem.sty","parskip.sty","tikz.sty","ulem.sty","booktabs.sty","dcolumn.sty","makecell.sty","colortbl.sty","cancel.sty","pgfplots.sty","csvsimple.sty","tikzlibrarycalc.sty","pgfplotslibrarystatistics.sty","pgfplotslibraryfillbetween.sty"],"cmds":["mediumfont","Section","End","insertevent","event","insertemail","email","fillpicture","DH","dh","dj","DJ","guillemetleft","guillemetright","guillemotleft","guillemotright","guilsinglleft","guilsinglright","Hwithstroke","hwithstroke","k","NG","ng","quotedblbase","quotesinglbase","textogonekcentered","textquotedbl","th","TH","mathbb","mathbbb"]}
-,
-"beamerthemeBFH.sty":{"envs":{},"deps":["bfhfonts.sty","l3keys2e.sty","trimclip.sty","bfhlogo.sty","bfhcolors.sty"],"cmds":["version","insertversion","versionformat","partnerlogo","insertpartnerlogo","titlegraphic","inserttitleVcenter","lecturepage","separatorpage"]}
-,
-"beamerthemeBergen.sty":{"envs":{},"deps":{},"cmds":["inserttitleindicator","insertauthorindicator","insertinstituteindicator","insertdateindicator"]}
-,
-"beamerthemeBerkeley.sty":{"envs":{},"deps":{},"cmds":["beamersidebarwidth","beamerheadheight"]}
-,
-"beamerthemeBerlin.sty":{"envs":{},"deps":{},"cmds":{}}
-,
-"beamerthemeBerlinFU.sty":{"envs":{},"deps":["colortbl.sty"],"cmds":["titlevsep","titlegraphic","fachbereich","insertfachbereich"]}
-,
-"beamerthemeBoadilla.sty":{"envs":{},"deps":{},"cmds":{}}
-,
-"beamerthemeCambridgeUS.sty":{"envs":{},"deps":{},"cmds":{}}
-,
-"beamerthemeCuerna.sty":{"envs":{},"deps":["tikz.sty","graphicx.sty","amssymb.sty","xcolor.sty","lmodern.sty","textpos.sty"],"cmds":{}}
-,
-"beamerthemeDetlevCM.sty":{"envs":{},"deps":{},"cmds":["titlevsep","fachbereich","insertfachbereich"]}
-,
-"beamerthemeDresden.sty":{"envs":{},"deps":{},"cmds":{}}
-,
-"beamerthemeEastLansing.sty":{"envs":{},"deps":{},"cmds":{}}
-,
-"beamerthemeFhG.sty":{"envs":{},"deps":["euler.sty","graphicx.sty","textcomp.sty"],"cmds":["boxitem","cdotitem","endtitleframe","fhgpaperwidth","fhgtextwidth","insertframepart","insertframesection","insertframesubsection","questionitem","setinstitute","splitvnext","splitvvnext","titleframe","triangledownitem","triangleleftitem","trianglerightitem","triangleupitem","vdotsitem"]}
-,
-"beamerthemeGoettingen.sty":{"envs":{},"deps":{},"cmds":["beamersidebarwidth","beamerheadheight"]}
-,
-"beamerthemeHannover.sty":{"envs":{},"deps":{},"cmds":["beamersidebarwidth","beamerheadheight"]}
-,
-"beamerthemeHeavenlyClouds.sty":{"envs":{},"deps":["cncolours.sty","pgfornament-han.sty","tikz.sty","tikzlibrarydecorations.sty","tikzlibrarydecorations.markings.sty","calc.sty","pgfmath.sty"],"cmds":["alttitlecircle","simpleprogressmarker","shenmaprogressmarker","randorn","myscale","myintensity","mychoice","myflip","myx","myy"]}
-,
-"beamerthemeIlmenau.sty":{"envs":{},"deps":{},"cmds":{}}
-,
-"beamerthemeMadrid.sty":{"envs":{},"deps":{},"cmds":{}}
-,
-"beamerthemeMarburg.sty":{"envs":{},"deps":{},"cmds":["beamersidebarwidth","beamerheadheight"]}
-,
-"beamerthemeNord.sty":{"envs":{},"deps":["ifthen.sty"],"cmds":{}}
-,
-"beamerthemePaloAlto.sty":{"envs":{},"deps":{},"cmds":["beamersidebarwidth","beamerheadheight"]}
-,
-"beamerthemeRochester.sty":{"envs":{},"deps":{},"cmds":["beamersidebarwidth","beamerheadheight"]}
-,
-"beamerthemeSaintPetersburg.sty":{"envs":{},"deps":["graphicx.sty","tikz.sty","FiraMono.sty","opensans.sty","ifxetex.sty"],"cmds":["spbuInsertField","othergraphic","insertothergraphic","leftcolumnwidth","insertleftcolumnwidth","rightcolumnwidth","insertrightcolumnwidth","middlecolumnwidth","insertmiddlecolumnwidth","cyrillicfont","cyrillicfontrm","cyrillicfontsf","cyrillicfonttt"]}
-,
-"beamerthemeSimpleDarkBlue.sty":{"envs":{},"deps":["beamerthemeMadrid.sty"],"cmds":{}}
-,
-"beamerthemeSimplePlus.sty":{"envs":{},"deps":{},"cmds":{}}
-,
-"beamerthemeSingapore.sty":{"envs":{},"deps":{},"cmds":{}}
-,
-"beamerthemeSzeged.sty":{"envs":{},"deps":{},"cmds":{}}
-,
-"beamerthemeTUDa.sty":{"envs":{},"deps":["expl3.sty","l3keys2e.sty","tudafonts.sty","tudarules.sty","graphicx.sty","trimclip.sty"],"cmds":["filedate","fileversion","insertsmalllogo","logo","setupTUDaFrame","titlegraphic"]}
-,
-"beamerthemeTorinoTh.sty":{"envs":["tframe","adv","disadv"],"deps":["ifxetex.sty","pifont.sty","fontspec.sty","xunicode.sty","xltxtra.sty","metalogo.sty","xkeyval.sty","polyglossia.sty"],"cmds":["titlepageframe","highlight","highlightbf","setsubject","headerheight","ateneo","insertateneo","rel","options","optiond","optiont","optionc"]}
-,
-"beamerthemeVerona.sty":{"envs":["citazione"],"deps":["tikz.sty","tcolorbox.sty","tcolorboxlibraryskins.sty"],"cmds":["lecturename","autorecitazione","structureA","structureB","oldtitlegraphic","titlegraphic","sidegraphics","lectureinfoot","frametitlesidebar","mail","datelecture"]}
-,
-"beamerthemeXiaoshan.sty":{"envs":{},"deps":["beamerthememetropolis.sty","pgfornament-han.sty","tikz.sty","tikzlibrarydecorations.sty","tikzlibrarydecorations.markings.sty","cncolours.sty","needspace.sty"],"cmds":["orn"]}
-,
-"beamerthemeboxes.sty":{"envs":{},"deps":{},"cmds":["addheadboxtemplate","addheadbox","addfootboxtemplate","addfootbox"]}
-,
-"beamerthemeepyt.sty":{"envs":{},"deps":["arev.sty","xkeyval.sty"],"cmds":["epytsetup"]}
-,
-"beamerthemefocus.sty":{"envs":{},"deps":["fontenc.sty","FiraSans.sty","FiraMono.sty","firamath-otf.sty","appendixnumberbeamer.sty","bookmark.sty","etoolbox.sty","tikz.sty"],"cmds":["bkmtranslateto","bkmtranslate","therealframenumber","no","footlineinfo","DH","NG","dj","ng","k","guillemotleft","guillemotright","guilsinglleft","guilsinglright","quotedblbase","quotesinglbase","textquotedbl","DJ","th","TH","dh","Hwithstroke","hwithstroke","textogonekcentered","guillemetleft","guillemetright"]}
-,
-"beamerthemehitszbeamer.sty":{"envs":{},"deps":["tikz.sty","pgf.sty","multicol.sty","multimedia.sty","calc.sty","ctex.sty","natbib.sty"],"cmds":["hitszbeamer","varparallel","frameofframes","setframeofframes"]}
-,
-"beamerthemehohenheim.sty":{"envs":{},"deps":{},"cmds":{}}
-,
-"beamerthemelalic.sty":{"envs":{},"deps":["calculator.sty","xcolor.sty","tikz.sty","tikzlibrarypositioning.sty","tikzlibrarycalc.sty","tikzlibraryshapes.misc.sty","tikzlibrarymath.sty"],"cmds":["lalicemail","email","dataapresentacao","agendaautomatica","segundacoluna","progressbar"]}
-,
-"beamerthememetropolis.sty":{"envs":{},"deps":["etoolbox.sty","pgfopts.sty","ifxetex.sty","ifluatex.sty","fontspec.sty","keyval.sty","calc.sty","tikz.sty"],"cmds":["metroset","plain","mreducelistspacing","thefontsnotfound","checkfont","iffontsavailable"]}
-,
-"beamerthemepureminimalistic.sty":{"envs":["vfilleditems"],"deps":["ifthen.sty","etoolbox.sty","calc.sty","silence.sty","fontenc.sty","noto.sty","FiraSans.sty","FiraMono.sty"],"cmds":["beamertitlecolor","beamertextcolor","beamerbgcolor","beamerfootertextcolor","itemsymbol","svitem","olditem","headerpath","institutepath","logoheader","logotitle","logofooter","pageword","showpagenum","myleftmargin","myrightmargin","mytextlength","myfooterheight","basicfooter","DH","NG","dj","ng","k","guillemotleft","guillemotright","guilsinglleft","guilsinglright","quotedblbase","quotesinglbase","textquotedbl","DJ","th","TH","dh","Hwithstroke","hwithstroke","textogonekcentered","guillemetleft","guillemetright"]}
-,
-"beamerthemesidebar.sty":{"envs":{},"deps":{},"cmds":["beamersidebarwidth","beamerheadheight"]}
-,
-"beamerthemetamu.sty":{"envs":{},"deps":{},"cmds":{}}
-,
-"beamerthemethubeamer.sty":{"envs":{},"deps":["tikz.sty","tikzlibraryexternal.sty","pgf.sty","multicol.sty","multimedia.sty","calc.sty","amsmath.sty","amsthm.sty","amssymb.sty","bm.sty","graphicx.sty","tabularx.sty","booktabs.sty","multirow.sty","enumerate.sty","hyperref.sty","algorithm.sty","algorithmic.sty","fontenc.sty","latexsym.sty","xcolor.sty","calligra.sty","pstricks.sty","listings.sty","stackengine.sty","natbib.sty","ctex.sty"],"cmds":["thubeamer","varparallel","frameofframes","setframeofframes","DH","NG","dj","ng","k","guillemotleft","guillemotright","guilsinglleft","guilsinglright","quotedblbase","quotesinglbase","textquotedbl","DJ","th","TH","dh","Hwithstroke","hwithstroke","textogonekcentered","guillemetleft","guillemetright"]}
-,
-"beamerthemetree.sty":{"envs":{},"deps":{},"cmds":{}}
-,
-"beamerthemetrigon.sty":{"envs":{},"deps":["pgfopts.sty","tikz.sty","tikzlibrarycalc.sty","tikzlibrary3d.sty","sourcesanspro.sty"],"cmds":["trigonset","headcol","txtcol","logbig","biglogo","slidestyle","titlestyle","sectionstyle","leftTriangle","rightTriangle","topTriangle","leftColorTriangle","rightColorTriangle","topColorTriangle","titleframe","sectionframe","logsmall","smalllogo"]}
-,
-"bearwear.sty":{"envs":{},"deps":["tikzlings-bears.sty"],"cmds":["bearwear","bearwearsetup"]}
-,
-"beaulivre.cls":{"envs":{},"deps":["s-book.cls","silence.sty","geometry.sty","indentfirst.sty","colorist.sty","projlib-font.sty","fontspec.sty","ctex.sty","amssymb.sty","unicode-math.sty","tikz-cd.sty","nowidow.sty","regexpatch.sty","embrac.sty","graphicx.sty","wrapfig.sty","float.sty","caption.sty","draftwatermark.sty","mathpazo.sty"],"cmds":["captionsjapanese","datejapanese","extrasjapanese","noextrasjapanese","cyrdash","asbuk","Asbuk","Russian","sh","ch","tg","ctg","arctg","arcctg","th","cth","cosec","Prob","Variance","NOD","nod","NOK","nok","Proj","cyrillicencoding","cyrillictext","cyr","textcyrillic","dq","captionsrussian","daterussian","extrasrussian","noextrasrussian","CYRA","CYRB","CYRV","CYRG","CYRGUP","CYRD","CYRE","CYRIE","CYRZH","CYRZ","CYRI","CYRII","CYRYI","CYRISHRT","CYRK","CYRL","CYRM","CYRN","CYRO","CYRP","CYRR","CYRS","CYRT","CYRU","CYRF","CYRH","CYRC","CYRCH","CYRSH","CYRSHCH","CYRYU","CYRYA","CYRSFTSN","CYRERY","cyra","cyrb","cyrv","cyrg","cyrgup","cyrd","cyre","cyrie","cyrzh","cyrz","cyri","cyrii","cyryi","cyrishrt","cyrk","cyrl","cyrm","cyrn","cyro","cyrp","cyrr","cyrs","cyrt","cyru","cyrf","cyrh","cyrc","cyrch","cyrsh","cyrshch","cyryu","cyrya","cyrsftsn","cyrery","cdash","tocname","authorname","acronymname","lstlistingname","lstlistlistingname","notesname","nomname","xlongequal","xtwoheadrightarrow","xtwoheadleftarrow","IfPrintModeTF","IfPrintModeT","IfPrintModeF","loweredvdots","mdwhtsquare","unicodevdots"]}
-,
-"begingreek.sty":{"envs":["greek"],"deps":["iftex.sty"],"cmds":["greekfontfamily","greektxt","CBverifyandselectfont","Greekfontfamily"]}
-,
-"begriff.sty":{"envs":{},"deps":{},"cmds":["BGassert","BGcontent","BGnot","BGquant","BGconditional","BGterm","BGstem","BGbracket","BGthickness","BGbeforelen","BGafterlen","BGspace","BGlinewidth"]}
-,
-"beilstein.cls":{"envs":["acknowledgements","funding","suppinfo","scheme","sglcoltabular","sglcoltabularx","dblcoltabular","dblcoltabularx","widetext"],"deps":["xkeyval.sty","ifthen.sty","babel.sty","inputenc.sty","fontenc.sty","textcomp.sty","tgheros.sty","amsmath.sty","amssymb.sty","newtxtext.sty","newtxtt.sty","newtxmath.sty","geometry.sty","setspace.sty","ragged2e.sty","lineno.sty","multicol.sty","float.sty","flafter.sty","graphicx.sty","array.sty","tabularx.sty","longtable.sty","etoolbox.sty","cleveref.sty","natbib.sty","url.sty"],"cmds":["captionsbritish","datebritish","extrasbritish","noextrasbritish","title","sititle","author","affiliation","keywords","sifile","sglcolfigure","sglcolscheme","dblcolfigure","dblcolscheme","fnpara","fnnormal","chem","unit","CN","IUPAC","BreakHyph","DoIUPAC","FloatBarrier","MultiBreak","Prep","Updelta","Upgamma","Uplambda","Upomega","Upphi","Uppi","Uppsi","Upsigma","Uptheta","Upupsilon","Upxi","affiliations","allowhyphens","angstrom","authors","authorsep","background","beilstein","celsius","conclusion","degree","emails","emailsep","errorfootnote","firstoptarg","floatcites","fudgefactor","longtablefootnote","makefootnoteparagraph","makehboxofhboxes","mpmakefootnoteparagraph","mynobreakdash","oneORnone","patchAmsMathEnvironmentForLineno","patchAmsMathEnvironmentForOnecolumn","patchBothAmsMathEnvironmentsForLineno","patchBothAmsMathEnvironmentsForOnecolumn","percent","permil","removehboxes","results","setdisplaywidth","testbx","testfnpara","themyfootnote","thesuppinfo","captionsamerican","dateamerican","extrasamerican","noextrasamerican","captionsenglish","dateenglish","extrasenglish","noextrasenglish","englishhyphenmins","britishhyphenmins","americanhyphenmins","prefacename","bibname","chaptername","enclname","ccname","headtoname","pagename","seename","alsoname","proofname","glossaryname","DH","dh","dj","DJ","guillemetleft","guillemetright","guillemotleft","guillemotright","guilsinglleft","guilsinglright","Hwithstroke","hwithstroke","k","NG","ng","quotedblbase","quotesinglbase","textogonekcentered","textquotedbl","th","TH"]}
-,
-"bera.sty":{"envs":{},"deps":["fontenc.sty","textcomp.sty","beraserif.sty","berasans.sty","beramono.sty"],"cmds":["fveTeX","fveLaTeX","DH","NG","dj","ng","k","guillemotleft","guillemotright","guilsinglleft","guilsinglright","quotedblbase","quotesinglbase","textquotedbl","DJ","th","TH","dh","Hwithstroke","hwithstroke","textogonekcentered","guillemetleft","guillemetright"]}
-,
-"beramono.sty":{"envs":{},"deps":["keyval.sty"],"cmds":["ProcessOptionsWithKV"]}
-,
-"berasans.sty":{"envs":{},"deps":["keyval.sty"],"cmds":["ProcessOptionsWithKV"]}
-,
-"beraserif.sty":{"envs":{},"deps":["keyval.sty"],"cmds":["ProcessOptionsWithKV"]}
-,
-"berenis.sty":{"envs":{},"deps":["xkeyval.sty","textcomp.sty","fontenc.sty","nfssext-cfr.sty"],"cmds":["sishape","textsi","swashstyle","textswash","lstyle","textl","zeroslash","ostyle","texto","tstyle","textt","pstyle","textp","tlstyle","texttl","tostyle","textto","plstyle","textpl","postyle","textpo","instyle","textin","sustyle","textsu","DH","NG","dj","ng","k","guillemotleft","guillemotright","guilsinglleft","guilsinglright","quotedblbase","quotesinglbase","textquotedbl","DJ","th","TH","dh","Hwithstroke","hwithstroke","textogonekcentered","guillemetleft","guillemetright"]}
-,
-"betababel.sty":{"envs":["betacode"],"deps":["babel.sty","teubner.sty"],"cmds":["bcode","betaskip","captionsgreek","dategreek","extrasgreek","noextrasgreek","greekscript","greektext","ensuregreek","textgreek","greeknumeral","Greeknumeral","greekfontencoding","textol","outlfamily","greekhyphenmins","Grtoday","anwtonos","katwtonos","qoppa","varqoppa","stigma","sampi","Digamma","ddigamma","euro","permill","textAlpha","textBeta","textGamma","textDelta","textEpsilon","textZeta","textEta","textTheta","textIota","textKappa","textLambda","textMu","textNu","textXi","textOmicron","textPi","textRho","textSigma","textTau","textUpsilon","textPhi","textChi","textPsi","textOmega","textalpha","textbeta","textgamma","textdelta","textepsilon","textzeta","texteta","texttheta","textiota","textkappa","textlambda","textmu","textnu","textxi","textomicron","textpi","textrho","textsigma","textfinalsigma","textautosigma","texttau","textupsilon","textphi","textchi","textpsi","textomega","textpentedeka","textpentehekaton","textpenteqilioi","textstigma","textvarstigma","textKoppa","textkoppa","textqoppa","textQoppa","textStigma","textSampi","textsampi","textanoteleia","texterotimatiko","textdigamma","textDigamma","textdexiakeraia","textaristerikeraia","textvarsigma","textstigmagreek","textkoppagreek","textStigmagreek","textSampigreek","textsampigreek","textdigammagreek","textDigammagreek","textnumeralsigngreek","textnumeralsignlowergreek","textpentemuria","textpercent","textmicro","textschwa","textampersand","accdialytika","acctonos","accdasia","accpsili","accvaria","accperispomeni","prosgegrammeni","ypogegrammeni","accdialytikaperispomeni","accdialytikatonos","accdialytikavaria","accdasiaperispomeni","accdasiavaria","accdasiaoxia","accpsiliperispomeni","accpsilioxia","accpsilivaria","accinvertedbrevebelow","textsubarch","accbrevebelow","prefacename","bibname","chaptername","enclname","ccname","headtoname","pagename","seename","alsoname","proofname","glossaryname"]}
-,
-"beton.sty":{"envs":{},"deps":{},"cmds":["oldstylenums","TextOldstyle","MathOldstyle","dash","qback","filedate","fileversion"]}
-,
-"beuron.sty":{"envs":{},"deps":{},"cmds":["textbeuron","textbeuronc","textbeuronx","beuronOmega"]}
-,
-"bewerbung-cv.sty":{"envs":["compactdesc"],"deps":["xcolor.sty","lastpage.sty"],"cmds":["acadtitle","addresscity","addressstreet","cvdoubleitem","cventry","cvitem","cvitemwithcomment","cvlanguage","cvlistdoubleitem","cvlistitem","cvquote","email","emaillink","extrainfo","familyname","faxnr","firstname","homepage","httplink","link","mobile","phonenr","photo","totalpagemark","acadtitlestyle","address","addressstyle","addresssymbol","afterelementsvspace","afterquotevspace","aftersecvspace","aftersubsecvspace","aftertitlevspace","allbordercolors","beforesecvspace","beforesubsecvspace","citebordercolor","dbitemmaincolwidth","emailsymbol","familynamestyle","faxsymbol","filebordercolor","firstnamestyle","footerwidth","fsymbol","hintscolwidth","hintstyle","homepagesymbol","infocolwidth","komacvinfocolextrawidth","linkbordercolor","listdbitemmaincolwidth","listitemmaincolwidth","listitemsymbol","listitemsymbolwidth","maincolwidth","menubordercolor","mframepicshift","mobilesymbol","mycolor","origsection","origsubsection","pdfauthor","pdfkeywords","pdfsubject","pdftitle","phonesymbol","quotestyle","quotewidth","runbordercolor","sectionstyle","sepcolwidth","sepinfocolwidth","subsectionstyle","titlesepwidth","titlestyle","urlbordercolor"]}
-,
-"bewerbung.cls":{"envs":{},"deps":["ifthen.sty","kvoptions.sty","calc.sty","s-scrlttr2.cls","etoolbox.sty","ifpdf.sty","ifluatex.sty","ifxetex.sty","marvosym.sty","scrlayer-scrpage.sty","array.sty","graphicx.sty","microtype.sty","enumitem.sty","hyperref.sty","bewerbung-cv.sty","csquotes.sty","geometry.sty","datatool.sty","eurosym.sty","xspace.sty","multicol.sty","pdfpages.sty","comment.sty","xparse.sty","bewerbung.sty","colortbl.sty","pdfcolmk.sty"],"cmds":["addtofooter"]}
-,
-"bewerbung.sty":{"envs":["anschreiben","lebenslauf"],"deps":["datatool.sty"],"cmds":["Vorname","Name","fullname","Street","Plz","Stadt","anschrift","MeinBeruf","Tel","Mobile","EMail","Sta","GebDatum","LebenslaufTitel","ID","Anhang","TodayOrt","TodayTime","makePerson","argetabelle","anhang","anhangTmpFlat","anhangTmpList","beruf","bewerbungDatum","BewerbungDatum","bewerbungFirma","BewerbungFirma","bewerbungFirmaAnrede","BewerbungFirmaAnrede","bewerbungFirmaName","BewerbungFirmaName","bewerbungFirmaOrt","BewerbungFirmaOrt","bewerbungFirmaPlz","BewerbungFirmaPlz","bewerbungFirmaStr","BewerbungFirmaStr","bewerbungKW","BewerbungKW","bewerbungRueckmeldung","BewerbungRueckmeldung","bewerbungSonstiges","BewerbungSonstiges","bewerbungStelle","BewerbungStelle","email","firma","firmaAnrede","firmaName","firmaPlz","firmaStadt","firmaStreet","gebDatum","geehrt","getBewerbung","id","lebenslaufTitel","meinBeruf","meinberuf","mobile","name","plz","runKomaVar","setzekomma","sta","stadt","street","tel","todayOrt","todayTime","vorname"]}
-,
-"bez123.sty":{"envs":{},"deps":["multiply.sty"],"cmds":["lbezier","cbezier","rqbezier","setweightscale","resetweightscale","botscale","theweightscale"]}
-,
-"bezierplot.sty":{"envs":{},"deps":["iftex.sty","xparse.sty"],"cmds":["bezierplot","xbezierplot","xpandblinpt"]}
-,
-"bfhbeamer.cls":{"envs":["bfhTabular","bfhTblr"],"deps":["l3keys2e.sty","s-beamer.cls","beamerthemeBFH.sty","bfhmodule.sty","bfhpub.sty","beamerarticle.sty","handoutWithNotes.sty","colortbl.sty"],"cmds":["BFHarraystretch","BFHarrayrulewidth","setupBfhTabular"]}
-,
-"bfhcolors.sty":{"envs":{},"deps":["expl3.sty","l3keys2e.sty","xcolor.sty"],"cmds":{}}
-,
-"bfhfonts.sty":{"envs":{},"deps":["iftex.sty","anyfontsize.sty","amssymb.sty","nunito.sty","sourceserifpro.sty","fontenc.sty"],"cmds":["ltseries","DH","NG","dj","ng","k","guillemotleft","guillemotright","guilsinglleft","guilsinglright","quotedblbase","quotesinglbase","textquotedbl","DJ","th","TH","dh","Hwithstroke","hwithstroke","textogonekcentered","guillemetleft","guillemetright"]}
-,
-"bfhlayout.sty":{"envs":["bfhTabular","bfhTblr"],"deps":["l3keys2e.sty","geometry.sty","bfhcolors.sty","zref.sty","zref-lastpage.sty","zref-user.sty","translations.sty","scrlayer-scrpage.sty","amsmath.sty","bfhfonts.sty","graphicx.sty","bfhlogo.sty","trimclip.sty","xparse.sty","bfhmodule.sty","colortbl.sty","tikz.sty"],"cmds":["backmatter","bfhitemlabel","coverpagebottommargin","coverpageleftmargin","coverpagerightmargin","coverpagetopmargin","department","frontmatter","institute","institution","Logo","Logoplain","mainmatter","partnerlogo","titlefooterleft","titlefooterright","titlegraphic","version","versionformat","BFHarraystretch","BFHarrayrulewidth","setupBfhTabular","bfhRule"]}
-,
-"bfhletter.sty":{"envs":{},"deps":["l3keys2e.sty","scrletter.sty","graphicx.sty","bfhcolors.sty","translations.sty","geometry.sty","bfhfonts.sty"],"cmds":["raggedsignature"]}
-,
-"bfhmodule.sty":{"envs":{},"deps":{},"cmds":["LoadBFHModule"]}
-,
-"bfhpub.cls":{"envs":["ProjectDescription"],"deps":["expl3.sty","l3keys2e.sty","s-scrartcl.cls","bfhlayout.sty"],"cmds":["enableHeadLineLogo","disableHeadlineLogo","coadvisorname","advisorname","projectpartnername","expertname","projectstartdatename","studysubmissiondatename","reportsubmissiondatename","presentationdatename","advisor","coadvisor","projectpartner","expert","projectstartdate","studysubmissiondate","reportsubmissiondate","presentationdate","DisplayCompetenceRatingChart"]}
-,
-"bfhsciposter.cls":{"envs":["bfhTabular","bfhTblr"],"deps":["expl3.sty","l3keys2e.sty","s-scrartcl.cls","bfhfonts.sty","bfhlogo.sty","graphicx.sty","tikz.sty","tikzlibrarycalc.sty","tcolorbox.sty","tcolorboxlibraryposter.sty","geometry.sty","xparse.sty","bfhcolors.sty","qrcode.sty","bfhmodule.sty"],"cmds":["authorandname","contentheight","contentwidth","footer","footergraphics","footerhsep","footerqrcode","inst","institute","raggedfooter","raggedtitle","titlegraphic","BFHarraystretch","BFHarrayrulewidth","setupBfhTabular"]}
-,
-"bfhthesis.cls":{"envs":{},"deps":["expl3.sty","l3keys2e.sty","s-scrbook.cls","bfhlayout.sty"],"cmds":["advisor","coadvisor","projectpartner","expert","degreeprogram","doade","doafr","doaen","setupSignature","SignatureBox","declarationOfAuthorship"]}
-,
-"bguq.sty":{"envs":{},"deps":{},"cmds":["bguq","bguqwidth"]}
-,
-"bibcop.sty":{"envs":{},"deps":["iexec.sty","pgfopts.sty"],"cmds":{}}
-,
-"bibentry.sty":{"envs":{},"deps":{},"cmds":["nobibliography","bibentry","urlprefix","url","doi"]}
-,
-"biblatex-archaeology.sty":{"envs":["tabbedlabeldate"],"deps":["xpatch.sty","xstring.sty","array.sty","calc.sty","tabulary.sty"],"cmds":["citeissue","fciteissue","pciteissue","citeissues","fciteissues","pciteissues","posscite","Posscite","posscites","Posscites","shortformcite","shortformcites","sfcite","sfcites","reviewcite","previewcite","textreviewcite","Reviewcite","Previewcite","Textreviewcite","reviewcites","previewcites","textreviewcites","Reviewcites","Previewcites","Textreviewcites","DefineGenitiveApostropheChars","DeclareGenitiveApostropheChars","SuppressAdditiveLbxSuffixes","labelnamedatewidth","ifselfcontained","mkbibletterspacing","textls","mkbibrepeatgiven","mkbibrepeatfamily","mkbibrepeatprefix","mkbibrepeatsuffix","mkbibbooknamegiven","mkbibbooknamefamily","mkbibbooknameprefix","mkbibbooknamesuffix","mkbibsourcenamegiven","mkbibsourcenamefamily","mkbibsourcenameprefix","mkbibsourcenamesuffix","mkbiblistnamegiven","mkbiblistnamefamily","mkbiblistnameprefix","mkbiblistnamesuffix","mkbibreviewnamefamily","mkbibreviewnamegiven","mkbibreviewnameprefix","mkbibreviewnamesuffix","ifshortform","nameshortformdelim","ifrepeatlabel","repeatlabeldash","repeatlabeldelim","mkbibfestschriftnamegiven","mkbibfestschriftnamefamily","mkbibfestschriftnameprefix","mkbibfestschriftnamesuffix","multivenuedelim","eventtypepunct","titleseriesdelim","articletitlepunct","inbookbookdelim","ifnothesistitlepunct","articlesubtitlepunct","ifsourceeditor","multisourceeditordelim","finalsourceeditordelim","booklabelnamepunct","volumedatedelim","journalvolumedelim","volumenumberdelim","multireviewdelim","finalreviewdelim","multireviewnamedelim","finalreviewnamedelim","reviewofnamedelim","ifeditionsuperscript","mkbiblocationaddon","finallistdelim","ifuselocation","ifpagesfirst","locationpublisherdelim","iforigfields","ifuseinstitution","institutionlocationdelim","typeinstitutiondelim","ifpositionlabeldate","ifnewspaper","ifbibextrayear","daterealdatedelim","bibdatesubseqesep","bibdaterangesepx","ifidemincitation","seenotedelim","mkbibandothers","finalnameellipsis","posscitealias","strongcitedelim","ifseenote","iftabbedlabeldate","tabbedlabeldatewidth","seriespunct","noseriespunct","seriesnumberdelim","subnumberseriesdelim","printgiveninitligatureslist","NewValue"]}
-,
-"biblatex-chicago.sty":{"envs":{},"deps":["etoolbox.sty","nameref.sty","xstring.sty","biblatex.sty"],"cmds":["suppressbibfield","lositemsep","cmsunspecified","cmscompressyears","cmscompcenturies","cmsformatextra","cmsformatendextra","cmsdateeraprintpre","cmsdateeraprint","ifrelatedloop","citeincite","citeincites","citejournal","citetitles","fullciteincite","fullciteincites","gentextcite","gentextcites","Gentextcite","Gentextcites","headlesscite","headlesscites","Headlesscite","Headlesscites","headlessfullcite","headlessfullcites","shortcite","Shortcite","shorthandcite","shorthandrefcite","shortrefcite","Shortrefcite","surnamecite","surnamecites","runcite","headlessparencite","headlessparencites","headlessparenshortcite","headlessparenshortcites","foottextcite","foottextcites","cmsnoopcite","bibxrefcite","bookbibxrefcite","origfullcite","origpublcite","citeincitef","citeincitefs","reprint","partcomp","partedit","parteditandcomp","parteditandtrans","partedittransandcomp","parttransandcomp","parttrans","begrelateddelimreviewof","bibannotesep","citeannotesep","classicpunct","cmsfwrap","cmshyper","cmsintrosection","cmsnrpart","cmspens","cmspref","cmsrelhyper","cmsrelnamehyper","cmsshhyper","cmswrap","cmswrapf","ctitleaddonpunct","docmslist","editordelim","encypunct","forcmslist","iffieldstart","journalpagespunct","jtitleaddonpunct","letterdatelong","mkbibcurdinal","mkbibethgiven","mkbibethpap","mkbibethpat","mkibid","mkjuridprefix","multilangdelim","multilocsdelim","multipubsdelim","nameaddonpunct","nameadelim","newcunit","newcunitpunct","postnotewrapper","postvolpunct","ptitleaddonpunct","relateddelimshort","reprintpunct","shorthandpunct","splitfootnoterule","pagefootnoterule","introductionname","sectionname","subsectionname","forewordname","notesname","mkjuridordinal","mkbibyeardivisiondateshort","mkbibyeardivisiondatelong","cmsmkdecade","cmsmkcentury","mkcmscentury","atcite","atpcite","parenfullcite","cmshypercite","cmswraphy","cbytypeeditor","begrelateddelimmaintitle","begrelateddelimmaintitlenc","citet","citep","citealt","citealp","citeauthor","citeyearpar","Citet","Citep","Citealt","Citealp","citefullauthor","Citefullauthor","citetext","defcitealias","citetalias","citepalias"]}
-,
-"biblatex-cv.sty":{"envs":{},"deps":["biblatex.sty","expl3.sty","xparse.sty","totcount.sty","xpatch.sty","datenumber.sty","fp.sty"],"cmds":["highlightname","NewValue","mkbibdown","addpar"]}
-,
-"biblatex-ext-oa-doapi.sty":{"envs":{},"deps":["etoolbox.sty"],"cmds":["SetDOIAPIMail","SetDOIAPICacheExpiration","IsOpenaccess","GetOpenaccessURLWrapped","OpenaccessURLisDOI"]}
-,
-"biblatex-ext-oa.sty":{"envs":{},"deps":["etoolbox.sty","biblatex-ext-oasymb-pict2e.sty","biblatex-ext-oasymb-l3draw.sty","biblatex-ext-oasymb-tikz.sty","biblatex-ext-oa-doiapi.sty"],"cmds":["LoadOASymbolPackage","DeclareOpenAccessFieldUrl","UndeclareOpenAccessFieldUrl","DeclareOpenAccessEprintUrl","DeclareOpenAccessEprintAlias","UndeclareOpenAccessEprintUrl","DeclareOpenAccessUrlFieldPriority"]}
-,
-"biblatex-ext-oasymb-l3draw.sty":{"envs":{},"deps":["expl3.sty","xparse.sty","l3keys2e.sty","l3draw.sty"],"cmds":["oasymbol","DefineOASymbol"]}
-,
-"biblatex-ext-oasymb-pict2e.sty":{"envs":{},"deps":["etoolbox.sty","kvoptions.sty","pict2e.sty","xcolor.sty"],"cmds":["oasymbol","DefineOASymbol"]}
-,
-"biblatex-ext-oasymb-tikz.sty":{"envs":{},"deps":["etoolbox.sty","kvoptions.sty","tikz.sty"],"cmds":["oasymbol","DefineOASymbol"]}
-,
-"biblatex-ext-tabular.sty":{"envs":{},"deps":{},"cmds":["printbibtabular","defbibtabular","plain","plainlang","anchor","anchorlang","driver","defbibtabulartwocolumn"]}
-,
-"biblatex-license.sty":{"envs":{},"deps":["biblatex.sty","kvoptions.sty","hyperref.sty"],"cmds":["biblicenseintrotext"]}
-,
-"biblatex-ms.sty":{"envs":["fullexpotherlanguage","theshorthands"],"deps":["biblatex.sty","xpatch.sty","xurl.sty","ulem.sty","biblatex-archaeology.sty","csquotes.sty","xstring.sty","ragged2e.sty","mfirstuc.sty","graphicx.sty","xcolor.sty"],"cmds":["alternate","citefield","citelist","citename","csfield","currentmsform","currentmsforms","currentmslang","currentmslangs","DeclareExtradateContext","DeclareMsselect","docsvfield","fieldhascomputableequivalent","fieldmsforms","fieldmslangs","forcsvfield","getfieldannotation","getitemannotation","getpartannotation","hasfieldannotation","hasitemannotation","haspartannotation","ifentryfieldundef","iffieldannotation","iffieldbibstring","iffieldequalcs","iffieldequals","iffieldequalstr","iffieldint","iffieldiscomputable","iffieldnum","iffieldnums","iffieldpages","iffieldplusstringbibstring","iffieldsequal","iffieldundef","iffieldxref","ifitemannotation","iflistequalcs","iflistequals","iflistsequal","iflistundef","iflistxref","ifmsentryfield","ifnameequalcs","ifnameequals","ifnamesequal","ifnameundef","ifnamexref","ifpartannotation","indexfield","indexlist","indexnames","maplangtag","mslang","printfield","printlist","printnames","restorefield","restorelist","restorename","savefield","savefieldcs","savelist","savelistcs","savename","savenamecs","strfield","strfirstlistitem","strlist","strname","thefield","thefirstlistitem","thelist","thename","uniquepart","usefield","usefirstlistitem","citet","citep","citealt","citealp","citeauthor","citeyearpar","Citet","Citep","Citealt","Citealp","citefullauthor","Citefullauthor","citetext","defcitealias","citetalias","citepalias","mcite","Mcite","mparencite","Mparencite","mfootcite","mfootcitetext","mtextcite","Mtextcite","msupercite","mautocite","Mautocite","origbibsetup","FirstWordUpper","FirstWordSC","FirstWordLCSC","traceparam","paramL","traceparamA","traceparamB","traceparamS","traceparamC","traceparamD","traceparamE","smartuppercase","smartlowercase","smartlcsc","smartsc","UpperOrSC","NormalOrSC","iffieldregex","iffieldendswithpunct","IfGivenIsInitial","multinamedelimorig","finalnamedelimorig","abntnum","bibnameunderscore","nopunctdash","UpperOrSCCite","NormalOrSCCite","IfGivenIsInit","origmkbibnamefamily","origmkbibnamegiven","origmkbibnameprefix","origmkbibnamesuffix","FirstWord","addapud","apud","plaincite","citelastname","textapud","citeyearorsh","IfInitial","mkidem","mkibid","mkopcit","mkloccit","newcommaunit","newcommaunitStar","newcommaunitNoStar","volumenumberdelim","archDate","archVersion","archaeologieversion","archaeologiedate","labwidthsameline","labwidthsamelineVALUE","archaeologieoptions","seperator","maintitlepunct","locationdelim","relateddelimmultivolume","volnumdelim","yearnumdelim","jourvoldelim","bibdatesubseqesep","bibdaterangesepx","labelyeardelim","citeauthorformatVALUE","citetranslator","archaeobibstyletitle","archaeocitestyletitle","ifuselabeltitle","foreverunspace","printtexte","maxprtauth","apanum","mkdaterangeapalong","mkdaterangeapalongextra","begrelateddelimcommenton","begrelateddelimreviewof","begrelateddelimreprintfrom","urldatecomma","apashortdash","citeresetapa","fullcitebib","nptextcite","nptextcites","arthistoryversion","arthistorydate","titleaddondelim","volissuedelim","exhibbibdaterangesep","Version","dononameyeardelim","mknoyeardaterangefull","mknoyeardaterangetrunc","ifrelatedloop","mkbibnocomma","mkbibsuperbracket","mkgroupeddigits","AddBiblatexClavis","multiclavesseparator","clavisseparator","clavisformat","citeallclaves","clavesadddashinset","shorthandsep","jourvolstring","jourvolnumsep","journumstring","seriespunct","sernumstring","shorthandpunct","shorthandinbibpunct","titleaddonpunct","locationdatepunct","locationpublisherpunct","publisherdatepunct","origfieldspunct","bibleftpseudo","bibrightpseudo","bibrevsdnamedelim","bibmultinamedelim","bibfinalnamedelim","annotationfont","libraryfont","citenamepunct","citerevsdnamedelim","citemultinamedelim","citefinalnamedelim","textcitesdelim","titleyeardelim","mkfootnotecite","mkparencite","footnotecheck","thebibitem","thelositem","mkoutercitedelims","mkinnercitedelims","mkouterparencitedelims","mkinnerparencitedelims","mkoutertextcitedelims","mkinnertextcitedelims","mkouterfootcitedelims","mkinnerfootcitedelims","mkoutersupercitedelims","namenumberdelim","nonamenumberdelim","innametitledelim","extradateonlycompcitedelim","extradateonlycompciterangedelim","extranameonlycompcitedelim","extranameonlycompciterangedelim","DeclareOuterCiteDelims","DeclareInnerCiteDelims","UndeclareOuterCiteDelims","UndeclareInnerCiteDelims","UndeclareCiteDelims","DeclareOuterCiteDelimsAlias","DeclareInnerCiteDelimsAlias","RegisterCiteDelims","mkextblxsupercite","mkextblxfootcite","mkextblxfootcitetext","mksmartcite","introcitepunct","introcitebreak","introcitewidth","introcitesep","AtIntrocite","AtXrefcite","titlemaintitledelim","maintitletitledelim","voltitledelim","jourserdelim","servoldelim","volnumdatedelim","sernumdelim","locdatedelim","locpubdelim","publocdelim","pubdatedelim","filmruntime","nopublisher","noseries","nociteprefix","ignoreaddendumtrue","ignoreaddendumfalse","ignoreforewordtrue","ignoreforewordfalse","ignoreafterwordtrue","ignoreafterwordfalse","ignoreintroductiontrue","ignoreintroductionfalse","ignorepublisherfalse","ignorepublishertrue","ignoreaddresstrue","ignoreaddressfalse","ignorelocationtrue","ignorelocationfalse","ifpseudo","mkfinalnamedelimfirst","film","fullcitefilm","completecitefilm","sortentry","xindy","citets","Citets","citealts","Citealts","mkbibindextruename","inparencite","citealtnoibidem","citetnoibidem","citeepisode","citefilm","citecfilm","citefullfilm","citefilmnoindex","versionofgbtstyle","versionofbiblatex","defversion","switchversion","testCJKfirst","multivolparser","multinumberparser","BracketLift","gbleftparen","gbrightparen","gbleftbracket","gbrightbracket","execgbfootbibfmt","SlashFont","footbibmargin","footbiblabelsep","execgbfootbib","thegbnamefmtcase","mkgbnumlabel","thegbalignlabel","thegbcitelocalcase","thegbbiblocalcase","lancnorder","lanjporder","lankrorder","lanenorder","lanfrorder","lanruorder","execlanodeah","thelanordernum","execlanodudf","setlocalbibstring","setlocalbiblstring","dealsortlan","bibitemindent","biblabelextend","setaligngbstyle","lengthid","lengthlw","itemcmd","setaligngbstyleay","publocpunct","bibtitlefont","bibauthorfont","bibpubfont","execgbfdfmtstd","aftertransdelim","gbcaselocalset","gbpinyinlocalset","gbquanpinlocalset","defdoublelangentry","entrykeya","entrykeyb","userfieldabcde","mkbibleftborder","mkbibrightborder","mkbibsuperscriptusp","upcite","pagescite","yearpagescite","yearcite","authornumcite","citetns","citepns","inlinecite","citec","citecs","authornumcites","dealnoathor","therefnumeric","setaligngbnumeric","compextradelim","localsetchinesecode","setaystylesection","gbpunctdot","gbpunctdotlanen","gbpunctmark","gbpunctcomma","gbpunctcommalanen","gbpunctcolon","gbpunctcolonlanen","gbpunctsemicolon","gbpunctsemicolonlanen","gbpunctparenl","gbpunctparenr","execpuncten","nwafubibfont","gbpunctttl","gbpunctttr","execerjpuncten","thenumberwithoutzero","erjpunctmarkcite","erjpunctsemicoloncite","erjpunctparenlcite","erjpunctparenrcite","execerjpunctencite","mkpagegrouped","mkonepagegrouped","stdidentifierspunct","dateaddonpunct","numerationpunct","addspacecolon","familynameformat","mainlangbibstring","mainlangbiblstring","mainlangbibsstring","mkmlpagetotal","mkmlpageprefix","addspcolon","mkopenendeddaterange","ifdatehasyearonly","qverweis","oldpostnotedelim","mkpostnote","footcite","LNIversion","LNIdate","aftertitledelim","shcite","detailscite","detailscites","collectionshelfmarkpunct","datingpagespunct","librarycollectionpunct","mkcolumns","mklayer","mkcolumnslayer","mklocation","mkmanuscriptdescriptionlabel","mkmanuscriptdescriptionlabelparagraphed","mkshcite","locationlibrarypunct","manuscriptdescriptionlabelpunct","moreinterpunct","pagetotalpagespunct","columnslayerpunct","multidetailscitedelim","recto","verso","manuscriptaddshortened","openrangeformat","openrangemark","mlanamedash","splitfootnoterule","pagefootnoterule","mlasymbolfootnote","themladraftnote","headlesscite","headlessfullcite","titleandsubtitle","biblatexnejmversionbbx","biblatexnejmpackagenamebbx","biblatexnejmsvnbbx","oldbibnamedelima","oldbibnamedelimb","oldbibnamedelimc","oldbibnamedelimd","oldbibnamedelimi","bbxinitsep","bibyearwatershed","nameaddonpseud","subtypemag","subtypenewsp","subtypeclassic","subtypebiblical","subtypeearlybook","subtypevideo","entrytypearchive","subtypevolume","subtypeonline","subtypedatabase","subtypeblog","subtypelistmessage","subtypebooklike","subtypepublicdocument","authortypeanon","authortypeunsure","authortyperedundant","authortypealternate","authortypejournal","subtypeintro","subtypeexcerpt","subtypenone","edtypecorp","entrytypeper","entrytypemanual","entrytypecoll","entrytypebook","subtypeprimarylegislation","subtypesecondarylegislation","subtypecourtrules","entrytyperef","entrytypeproc","entrytypereport","entrytypebooklet","entrytypemisc","entrytypeonline","entrytypevideo","entrytypeaudio","entrytypebookinbook","entrytypearticle","entrytypelegislation","entrytypeletter","entrytypeperformance","optionaddoriginal","optionnoreprints","optionorigfirst","optiontransfromorig","optionorigtransas","optiondoubledate","noplace","officialjournaltitle","ojspecedtitle","ecrreporttitle","commission","Commission","pcijrep","explanatorynote","eudirective","euregulation","eudecision","treatysubtype","comdocsubtype","jurisechr","eutreaty","casenote","pagemarkings","paragraphmarkings","paragraphtext","seriesa","echrreports","decisionsandreports","collectionofdecisions","parliamentarytype","houseofcommons","houseoflords","undoctype","extracitedelim","casenotetext","firstpublishedstr","legalstarturl","legalendurl","paratextformatted","csusebibmacro","forbbxrange","rangesplit","formatpostnote","ifnumeralfirst","ifnumeralsfirst","numeraljustfirst","siganddate","treatypartysep","SetStandardIndices","DeclareIndexAssociation","ShowIndexAssociation","legislationindex","iflistcontains","printindexearly","DNI","reponly","footciteref","dopipedlist","setuppostnotes","postnotefirst","postnotesecond","citeinindex","citeinindexnum","indexonly","ifabbrev","legreport","mkbibnametitle","mkrawpageprefix","oxrefand","oxrefanon","recordseriespunct","relatedtypepunct","thelocpubpairs","thenamepairs","titlebyauthordelim","mkusbibordinal","iflabeldateisanydate","iflabeldateispubstate","sdcite","footcitet","volnumpunct","editorstrgdelim","ccite","plauthorname","plnameomission","plmarginyear","plauthorhl","extralabelnumberwidth","shiftbplnum","publistbasestyle","plisbnlink","plissnlink","mkbibdesc","mkbibsecstart","printprinfo","thenonplauthors","thenonpleditors","theplauthor","thepleditor","theplauthors","thepleditors","therealliststop","thenonplauthor","thenonpleditor","citeitem","shiftciteitem","mkrefdesc","mkbibrealauthor","mkrealauthor","realauthorequalsign","mkbibrealeditor","mkrealeditor","realeditorequalsign","printsblversion","printsbldate","xprintsbldateiso","xprintsbldateau","ifciteidemsbl","namedashpunct","lexiconfinalnamedelim","volpostnotedelim","addskipentry","addincludeentry","abbrevwidth","setmaxlength","iffirstcharsec","iffirstcharnum","thecurrentpublisher","thecurrentlocation","thecurrentorganization","thecurrentinstitution","thepublishertotal","thelocationtotal","theorganizationtotal","theinstitutiontotal","savepostnotes","postnotelast","splitpostnote","volsplitpostnote","volvol","citejournal","citeseries","citeshorthand","bibentrycite","biblistcite","DeclareNestableCiteCommand","socialscienceshuberlinversion","socialscienceshuberlindate","mkbibdateunified","iflinkparens","pgcitep","pgcitealt","pgcitet","pgposscitet","seccitealt","seccitep","seccitet","secposscitet","posscitet","posscitealt","possciteauthor","idemcite","idemcites","footidemcite","footidemcites","parenauth","parenauths","mkmonthrange","mkmonthdayrange","mkmonthdayyearrange","anona","anonb","crossreflist","pluga","plugb","xtitle","xeditor","yeditor","edtypes","transtypes","AtBeginLists","AtEveryItem","authtypes","iffieldstart"]}
-,
-"biblatex-multiple-dm.sty":{"envs":{},"deps":["kvoptions.sty","etoolbox.sty"],"cmds":{}}
-,
-"biblatex-readbbl.sty":{"envs":{},"deps":["xkeyval.sty"],"cmds":{}}
-,
-"biblatex-shortfields.sty":{"envs":{},"deps":{},"cmds":["printbibshortfields","shortfieldswidth"]}
-,
-"biblatex-source-division.sty":{"envs":{},"deps":["xpatch.sty","kvoptions.sty"],"cmds":{}}
-,
-"biblatex.sty":{"envs":["refsection","refsegment","refcontext","fullexpotherlanguage","theshorthands","plnumgroup"],"deps":["pdftexcmds.sty","keyval.sty","logreq.sty","url.sty","xpatch.sty","xurl.sty","ulem.sty","biblatex-archaeology.sty","csquotes.sty","ragged2e.sty","xstring.sty","mfirstuc.sty","graphicx.sty","xcolor.sty"],"cmds":["bibname","biblistname","BiblatexManualHyperrefOn","BiblatexManualHyperrefOff","ExecuteBibliographyOptions","iffieldannotation","ifitemannotation","ifpartannotation","ifdateannotation","hasfieldannotation","hasitemannotation","haspartannotation","hasdateannotation","getfieldannotation","getitemannotation","getpartannotation","getdateannotation","addbibresource","addglobalbib","addsectionbib","bibliography","printbibliography","bibbysection","bibbysegment","bibbycategory","printbibheading","DeclarePrintbibliographyDefaults","printbiblist","printshorthands","newrefsection","endrefsection","newrefsegment","endrefsegment","therefsection","therefsegment","DeclareBibliographyCategory","addtocategory","defbibenvironment","defbibheading","defbibnote","defbibfilter","defbibcheck","skipentry","segment","type","subtype","keyword","category","DeclareRefcontext","newrefcontext","localrefcontext","endrefcontext","assignrefcontextkeyws","assignrefcontextcats","assignrefcontextentries","GenRefcontextData","defbibentryset","cite","Cite","parencite","Parencite","footcite","footcitetext","textcite","Textcite","smartcite","Smartcite","supercite","cites","Cites","parencites","Parencites","footcites","footcitetexts","smartcites","Smartcites","textcites","Textcites","supercites","autocite","Autocite","autocites","Autocites","citeauthor","Citeauthor","citetitle","Citetitle","citeyear","citedate","citeurl","parentext","brackettext","nocite","fullcite","footfullcite","volcite","Volcite","volcites","Volcites","pvolcite","Pvolcite","pvolcites","Pvolcites","fvolcite","Fvolcite","fvolcites","Fvolcites","ftvolcite","Ftvolcite","ftvolcites","Ftvolcites","svolcite","Svolcite","svolcites","Svolcites","tvolcite","Tvolcite","tvolcites","Tvolcites","avolcite","Avolcite","avolcites","Avolcites","notecite","Notecite","pnotecite","Pnotecite","fnotecite","citename","citelist","citefield","citereset","mancite","pno","ppno","nopp","psq","psqq","sqspace","ppspace","pnfmt","RN","RNfont","Rn","Rnfont","citet","citep","citealt","citealp","citeyearpar","Citet","Citep","Citealt","Citealp","citefullauthor","Citefullauthor","citetext","defcitealias","citetalias","citepalias","mcite","Mcite","mparencite","Mparencite","mfootcite","mfootcitetext","mtextcite","Mtextcite","msupercite","mautocite","Mautocite","DefineBibliographyStrings","DefineBibliographyExtras","UndefineBibliographyExtras","DefineHyphenationExceptions","NewBibliographyString","ifentryseen","ifentryinbib","ifentrycategory","ifentrykeyword","bibsetup","bibfont","citesetup","newblockpunct","newunitpunct","finentrypunct","entrysetpunct","bibnamedelima","bibnamedelimb","bibnamedelimc","bibnamedelimd","bibnamedelimi","bibinitperiod","bibinitdelim","bibinithyphendelim","bibindexnamedelima","bibindexnamedelimb","bibindexnamedelimc","bibindexnamedelimd","bibindexnamedelimi","bibindexinitperiod","bibindexinitdelim","bibindexinithyphendelim","revsdnamepunct","bibnamedash","labelnamepunct","subtitlepunct","intitlepunct","bibpagespunct","bibpagerefpunct","bibeidpunct","multinamedelim","finalnamedelim","revsdnamedelim","andothersdelim","multilistdelim","finallistdelim","andmoredelim","multicitedelim","multiciterangedelim","multicitesubentrydelim","multicitesubentryrangedelim","supercitedelim","superciterangedelim","supercitesubentrydelim","supercitesubentryrangedelim","compcitedelim","textcitedelim","nametitledelim","nameyeardelim","namelabeldelim","nonameyeardelim","authortypedelim","editortypedelim","translatortypedelim","labelalphaothers","sortalphaothers","volcitedelim","mkvolcitenote","prenotedelim","postnotedelim","extpostnotedelim","multiprenotedelim","multipostnotedelim","mkbibnamefamily","mkbibnamegiven","mkbibnameprefix","mkbibnamesuffix","mkbibcompletenamefamily","mkbibcompletenamefamilygiven","mkbibcompletenamegivenfamily","mkbibcompletename","datecircadelim","dateeradelim","dateuncertainprint","enddateuncertainprint","datecircaprint","enddatecircaprint","datecircaprintiso","enddatecircaprintiso","dateeraprint","dateeraprintpre","relatedpunct","relateddelim","begrelateddelim","bibleftparen","bibrightparen","bibleftbracket","bibrightbracket","DeclareDelimFormat","DeclareDelimAlias","printdelim","delimcontext","DeclareDelimcontextAlias","UndeclareDelimcontextAlias","bibrangedash","bibrangessep","bibdatesep","bibdaterangesep","mkbibdatelong","mkbibdateshort","mkbibtimezone","bibdateuncertain","bibdateeraprefix","bibdateeraendprefix","bibtimesep","bibutctimezone","bibtimezonesep","bibtzminsep","bibdatetimesep","finalandcomma","finalandsemicolon","mkbibordinal","mkbibmascord","mkbibfemord","mkbibneutord","mkbibordedition","mkbibordseries","bibhang","biblabelsep","bibitemsep","bibnamesep","bibinitsep","bibparsep","theabbrvpenalty","thehighnamepenalty","thelownamepenalty","thebiburlbigbreakpenalty","thebiburlbreakpenalty","thebiburlnumpenalty","thebiburlucpenalty","thebiburllcpenalty","biburlbigskip","biburlnumskip","biburlucskip","biburllcskip","bibellipsis","noligature","hyphenate","hyphen","nbhyphen","nohyphenation","textnohyphenation","mknumalph","mkbibacro","autocap","thesmartand","forceE","forceY","smartof","forceD","forceDE","bibabstractprefix","bibannotationprefix","ifkomabibtotoc","ifkomabibtotocnumbered","ifmemoirbibintoc","RequireBibliographyStyle","InitializeBibliographyStyle","DeclareBibliographyDriver","DeclareBibliographyAlias","DeclareBibliographyOption","DeclareTypeOption","DeclareEntryOption","DeclareBiblatexOption","RequireCitationStyle","InitializeCitationStyle","OnManualCitation","DeclareCiteCommand","DeclareMultiCiteCommand","DeclareAutoCiteCommand","DeclareCitePunctuationPosition","DeprecateField","DeprecateList","DeprecateName","DeprecateFieldWithReplacement","DeprecateListWithReplacement","DeprecateNameWithReplacement","printfield","printlist","printnames","printtext","printfile","printdate","printdateextra","printlabeldate","printlabeldateextra","printlabeltime","printorigdate","printeventdate","printurldate","printtime","printorigtime","printeventtime","printurltime","indexfield","indexlist","indexnames","entrydata","entryset","DeclareFieldInputHandler","DeclareListInputHandler","DeclareNameInputHandler","NewCount","NewOption","NewValue","DeclareFieldFormat","DeclareListFormat","DeclareNameFormat","namepartprefix","namepartprefixi","namepartfamily","namepartfamilyi","namepartsuffix","namepartsuffixi","namepartgiven","namepartgiveni","DeclareListWrapperFormat","DeclareNameWrapperFormat","DeclareIndexFieldFormat","DeclareIndexListFormat","DeclareIndexNameFormat","DeclareFieldAlias","DeclareListAlias","DeclareNameAlias","DeclareListWrapperAlias","DeclareNameWrapperAlias","DeclareIndexFieldAlias","DeclareIndexListAlias","DeclareIndexNameAlias","DeprecateFieldFormatWithReplacement","DeprecateListFormatWithReplacement","DeprecateNameFormatWithReplacement","DeprecateListWrapperFormatWithReplacement","DeprecateNameWrapperFormatWithReplacement","DeprecateIndexFieldFormatWithReplacement","DeprecateIndexListFormatWithReplacement","DeprecateIndexNameFormatWithReplacement","DeclareDatafieldSet","member","DeclareSourcemap","maps","map","regexp","perdatasource","pertype","pernottype","step","DeclareStyleSourcemap","DeclareDriverSourcemap","DeclareDatamodelConstant","DeclareDatamodelEntrytypes","DeclareDatamodelFields","DeclareDatamodelEntryfields","DeclareDatamodelConstraints","constraint","constraintfieldsor","constraintfieldsxor","antecedent","consequent","constraintfield","ResetDatamodelEntrytypes","ResetDatamodelFields","ResetDatamodelEntryfields","ResetDatamodelConstraints","DeclareLabelalphaTemplate","labelelement","field","literal","DeclareLabelalphaNameTemplate","namepart","DeclareNolabel","nolabel","DeclareNolabelwidthcount","nolabelwidthcount","DeclareSortingTemplate","sort","citecount","citeorder","intciteorder","DeclareSortingNamekeyTemplate","visibility","keypart","DeclareSortExclusion","DeclareSortInclusion","DeclarePresort","DeclareSortTranslit","translit","DeclareBiblistFilter","filter","filteror","DeclareNoinit","noinit","DeclareNosort","nosort","DeclareNonamestring","nonamestring","DeclareLabelname","DeclareLabeldate","DeclareExtradate","scope","DeclareExtradateContext","DeclareLabeltitle","DefaultInheritance","except","DeclareDataInheritance","inherit","noinherit","ResetDataInheritance","thefield","strfield","csfield","usefield","thelist","strlist","thefirstlistitem","strfirstlistitem","usefirstlistitem","thename","strname","savefield","savelist","savename","savefieldcs","savelistcs","savenamecs","restorefield","restorelist","restorename","clearfield","clearlist","clearname","ifdatejulian","ifenddatejulian","ifdateera","ifenddateera","ifdatecirca","ifenddatecirca","ifdateuncertain","ifenddateuncertain","ifdateunknown","ifenddateunknown","iflabeldateisdate","ifdatehasyearonlyprecision","ifdatehastime","ifdateshavedifferentprecision","ifdateyearsequal","ifdatesequal","ifdaterangesequal","ifcaselang","ifsortingnamekeytemplatename","ifuniquenametemplatename","iflabelalphanametemplatename","iffieldundef","iflistundef","ifnameundef","iffieldsequal","iflistsequal","ifnamesequal","iffieldequals","iflistequals","ifnameequals","iffieldequalcs","iflistequalcs","ifnameequalcs","iffieldequalstr","iffieldxref","iflistxref","ifnamexref","ifcurrentfield","ifcurrentlist","ifcurrentname","ifuseprefix","ifuseauthor","ifuseeditor","ifusetranslator","ifcrossrefsource","ifxrefsource","ifsingletitle","ifnocite","ifuniquetitle","ifuniquebaretitle","ifuniquework","ifuniqueprimaryauthor","ifandothers","ifmorenames","ifmoreitems","ifterseinits","ifentrytype","ifkeyword","ifcategory","ifciteseen","iffirstcitekey","iflastcitekey","ifciteibid","ifciteidem","ifopcit","ifloccit","iffirstonpage","ifsamepage","ifinteger","hascomputableequivalent","ifiscomputable","getcomputableequivalent","ifnumeral","ifnumerals","ifpages","iffieldint","fieldhascomputableequivalent","iffieldiscomputable","iffieldnum","iffieldnums","iffieldpages","ifbibstring","ifbibxstring","iffieldbibstring","iffieldplusstringbibstring","ifdriver","ifcapital","ifcitation","ifvolcite","ifbibliography","ifnatbibmode","ifciteindex","ifbibindex","iffootnote","thecitecounter","themaxcitecounter","thesavedcitecounter","theuniquename","theuniquelist","theparenlevel","themaxparens","ifboolexpr","ifthenelse","newbibmacro","renewbibmacro","providebibmacro","letbibmacro","usebibmacro","savecommand","restorecommand","savebibmacro","restorebibmacro","savefieldformat","restorefieldformat","savelistformat","restorelistformat","savenameformat","restorenameformat","savelistwrapperformat","restorelistwrapperformat","savenamewrapperformat","restorenamewrapperformat","ifbibmacroundef","iffieldformatundef","iflistformatundef","ifnameformatundef","iflistwrapperformatundef","ifnamewrapperformatundef","usedriver","bibhypertarget","bibhyperlink","bibhyperref","ifhyperref","docsvfield","forcsvfield","MakeCapital","MakeSentenceCase","mkpageprefix","mkpagetotal","themincomprange","themaxcomprange","themincompwidth","mkcomprange","mknormrange","mkfirstpage","rangelen","DeclareNumChars","DeclareRangeChars","DeclareRangeCommands","DeclarePageCommands","NumCheckSetup","NumcheckSetup","NumsCheckSetup","PagesCheckSetup","DeclareBabelToExplLanguageMapping","UndeclareBabelToExplLanguageMapping","DeclareCaseLangs","BibliographyWarning","pagetrackertrue","pagetrackerfalse","citetrackertrue","citetrackerfalse","backtrackertrue","backtrackerfalse","newblock","newunit","finentry","setunit","printunit","setpunctfont","resetpunctfont","ifpunct","ifterm","ifpunctmark","ifprefchar","adddot","addcomma","addsemicolon","addcolon","addperiod","addexclam","addquestion","isdot","nopunct","unspace","addspace","addnbspace","addthinspace","addnbthinspace","addlowpenspace","addhighpenspace","addlpthinspace","addhpthinspace","addabbrvspace","addabthinspace","adddotspace","addslash","DeclarePrefChars","DeclareAutoPunctuation","DeclareCapitalPunctuation","DeclarePunctuationPairs","DeclareQuotePunctuation","uspunctuation","stdpunctuation","bibsentence","midsentence","bibstring","biblstring","bibsstring","bibcpstring","bibcplstring","bibcpsstring","bibucstring","bibuclstring","bibucsstring","biblcstring","biblclstring","biblcsstring","bibxstring","bibxlstring","bibxsstring","mainlang","textmainlang","texouterlang","DeclareBibstringSet","UndeclareBibstringSet","UndeclareBibstringSets","DeclareBibstringSetFormat","UneclareBibstringSetFormat","DeclareLanguageMapping","DeclareLanguageMappingSuffix","mkbibemph","mkbibitalic","mkbibbold","mkbibquote","mkbibparens","mkbibbrackets","bibopenparen","bibcloseparen","bibopenbracket","bibclosebracket","mkbibfootnote","mkbibfootnotetext","mkbibendnote","mkbibendnotetext","bibfootnotewrapper","bibendnotewrapper","mkbibsuperscript","mkbibmonth","mkbibseason","mkyearzeros","mkmonthzeros","mkdayzeros","mktimezeros","forcezerosy","forcezerosmdt","stripzeros","labelnumberwidth","labelalphawidth","themaxextraalpha","themaxextradate","themaxextraname","themaxextratitle","themaxextratitleyear","themaxnames","theminnames","themaxitems","theminitems","theinstcount","thecitetotal","thecitecount","themulticitetotal","themulticitecount","thelisttotal","thelistcount","theliststart","theliststop","currentlang","currentfield","currentlist","currentname","AtBeginRefsection","AtNextRefsection","AtBeginBibliography","AtBeginShorthands","AtBeginBiblist","AtEveryBibitem","AtEveryLositem","AtEveryBiblistitem","AtNextBibliography","AtUsedriver","AtEveryCite","AtEveryCitekey","AtEveryMultiCite","AtNextCite","AtEachCitekey","AtNextCitekey","AtNextMultiCite","AtVolcite","AtDataInput","UseBibitemHook","UseUsedriverHook","UseEveryCiteHook","UseEveryCitekeyHook","UseEveryMultiCiteHook","UseNextCiteHook","UseNextCitekeyHook","UseNextMultiCiteHook","UseVolciteHook","DeferNextCitekeyHook","AtEveryEntrykey","DeclareUniquenameTemplate","actualoperator","begrelateddelimmultivolume","BiblatexHungarianWarningOff","BiblatexLatvianWarningOff","BiblatexSplitbibDefernumbersWarningOff","biburlsetup","blxcitecmd","blxciteicmd","blxendmcites","blxmciteicmd","blxmcites","iffinalcitedelim","iftextcitepunct","mkbibindexentry","mkbibindexfield","mkbibindexname","mkbibindexsubentry","mkdaterangecomp","mkdaterangecompextra","mkdaterangefull","mkdaterangefullextra","mkdaterangeiso","mkdaterangeisoextra","mkdaterangelong","mkdaterangelongextra","mkdaterangeshort","mkdaterangeshortextra","mkdaterangeterse","mkdaterangeterseextra","mkdaterangetrunc","mkdaterangetruncextra","mkdaterangeyear","mkdaterangeyearextra","mkdaterangeymd","mkdaterangeymdextra","mkrelatedstringtext","mktimehh","multivolcitecmd","shorthandwidth","shortjournalwidth","shortserieswidth","subentryoperator","thetextcitecount","thetextcitemaxnames","thetextcitetotal","volcitecmd","Fnotecite","Footcite","Footcites","Footcitetext","Footcitetexts","origbibsetup","FirstWordUpper","FirstWordSC","FirstWordLCSC","traceparam","paramL","traceparamA","traceparamB","traceparamS","traceparamC","traceparamD","traceparamE","smartuppercase","smartlowercase","smartlcsc","smartsc","UpperOrSC","NormalOrSC","iffieldregex","iffieldendswithpunct","IfGivenIsInitial","multinamedelimorig","finalnamedelimorig","abntnum","bibnameunderscore","nopunctdash","UpperOrSCCite","NormalOrSCCite","IfGivenIsInit","origmkbibnamefamily","origmkbibnamegiven","origmkbibnameprefix","origmkbibnamesuffix","FirstWord","addapud","apud","plaincite","citelastname","textapud","citeyearorsh","IfInitial","mkidem","mkibid","mkopcit","mkloccit","newcommaunit","newcommaunitStar","newcommaunitNoStar","volumenumberdelim","archDate","archVersion","archaeologieversion","archaeologiedate","labwidthsameline","labwidthsamelineVALUE","archaeologieoptions","seperator","maintitlepunct","locationdelim","relateddelimmultivolume","volnumdelim","yearnumdelim","jourvoldelim","bibdatesubseqesep","bibdaterangesepx","labelyeardelim","citeauthorformatVALUE","citetranslator","archaeobibstyletitle","archaeocitestyletitle","ifuselabeltitle","foreverunspace","printtexte","maxprtauth","apanum","mkdaterangeapalong","mkdaterangeapalongextra","begrelateddelimcommenton","begrelateddelimreviewof","begrelateddelimreprintfrom","urldatecomma","apashortdash","citeresetapa","fullcitebib","nptextcite","nptextcites","arthistoryversion","arthistorydate","titleaddondelim","volissuedelim","exhibbibdaterangesep","Version","dononameyeardelim","mknoyeardaterangefull","mknoyeardaterangetrunc","ifrelatedloop","mkbibnocomma","mkbibsuperbracket","mkgroupeddigits","AddBiblatexClavis","multiclavesseparator","clavisseparator","clavisformat","citeallclaves","clavesadddashinset","shorthandsep","jourvolstring","jourvolnumsep","journumstring","seriespunct","sernumstring","shorthandpunct","shorthandinbibpunct","titleaddonpunct","locationdatepunct","locationpublisherpunct","publisherdatepunct","origfieldspunct","bibleftpseudo","bibrightpseudo","bibrevsdnamedelim","bibmultinamedelim","bibfinalnamedelim","annotationfont","libraryfont","citenamepunct","citerevsdnamedelim","citemultinamedelim","citefinalnamedelim","textcitesdelim","titleyeardelim","mkfootnotecite","mkparencite","footnotecheck","thebibitem","thelositem","mkoutercitedelims","mkinnercitedelims","mkouterparencitedelims","mkinnerparencitedelims","mkoutertextcitedelims","mkinnertextcitedelims","mkouterfootcitedelims","mkinnerfootcitedelims","mkoutersupercitedelims","namenumberdelim","nonamenumberdelim","innametitledelim","extradateonlycompcitedelim","extradateonlycompciterangedelim","extranameonlycompcitedelim","extranameonlycompciterangedelim","DeclareOuterCiteDelims","DeclareInnerCiteDelims","UndeclareOuterCiteDelims","UndeclareInnerCiteDelims","UndeclareCiteDelims","DeclareOuterCiteDelimsAlias","DeclareInnerCiteDelimsAlias","RegisterCiteDelims","mkextblxsupercite","mkextblxfootcite","mkextblxfootcitetext","mksmartcite","introcitepunct","introcitebreak","introcitewidth","introcitesep","AtIntrocite","AtXrefcite","titlemaintitledelim","maintitletitledelim","voltitledelim","jourserdelim","servoldelim","volnumdatedelim","sernumdelim","locdatedelim","locpubdelim","publocdelim","pubdatedelim","filmruntime","nopublisher","noseries","nociteprefix","ignoreaddendumtrue","ignoreaddendumfalse","ignoreforewordtrue","ignoreforewordfalse","ignoreafterwordtrue","ignoreafterwordfalse","ignoreintroductiontrue","ignoreintroductionfalse","ignorepublisherfalse","ignorepublishertrue","ignoreaddresstrue","ignoreaddressfalse","ignorelocationtrue","ignorelocationfalse","ifpseudo","mkfinalnamedelimfirst","film","fullcitefilm","completecitefilm","sortentry","xindy","citets","Citets","citealts","Citealts","mkbibindextruename","inparencite","citealtnoibidem","citetnoibidem","citeepisode","citefilm","citecfilm","citefullfilm","citefilmnoindex","versionofgbtstyle","versionofbiblatex","defversion","switchversion","testCJKfirst","multivolparser","multinumberparser","BracketLift","gbleftparen","gbrightparen","gbleftbracket","gbrightbracket","execgbfootbibfmt","SlashFont","footbibmargin","footbiblabelsep","execgbfootbib","thegbnamefmtcase","mkgbnumlabel","thegbalignlabel","thegbcitelocalcase","thegbbiblocalcase","lancnorder","lanjporder","lankrorder","lanenorder","lanfrorder","lanruorder","execlanodeah","thelanordernum","execlanodudf","setlocalbibstring","setlocalbiblstring","dealsortlan","bibitemindent","biblabelextend","setaligngbstyle","lengthid","lengthlw","itemcmd","setaligngbstyleay","publocpunct","bibtitlefont","bibauthorfont","bibpubfont","execgbfdfmtstd","aftertransdelim","gbcaselocalset","gbpinyinlocalset","gbquanpinlocalset","defdoublelangentry","entrykeya","entrykeyb","userfieldabcde","mkbibleftborder","mkbibrightborder","mkbibsuperscriptusp","upcite","pagescite","yearpagescite","yearcite","authornumcite","citetns","citepns","inlinecite","citec","citecs","authornumcites","dealnoathor","therefnumeric","biblabelbox","setaligngbnumeric","compextradelim","localsetchinesecode","setaystylesection","gbpunctdot","gbpunctdotlanen","gbpunctmark","gbpunctcomma","gbpunctcommalanen","gbpunctcolon","gbpunctcolonlanen","gbpunctsemicolon","gbpunctsemicolonlanen","gbpunctparenl","gbpunctparenr","execpuncten","nwafubibfont","gbpunctttl","gbpunctttr","execerjpuncten","thenumberwithoutzero","erjpunctmarkcite","erjpunctsemicoloncite","erjpunctparenlcite","erjpunctparenrcite","execerjpunctencite","commentator","mkpagegrouped","mkonepagegrouped","stdidentifierspunct","dateaddonpunct","numerationpunct","addspacecolon","familynameformat","mainlangbibstring","mainlangbiblstring","mainlangbibsstring","mkmlpagetotal","mkmlpageprefix","addspcolon","mkopenendeddaterange","ifdatehasyearonly","qverweis","oldpostnotedelim","mkpostnote","LNIversion","LNIdate","aftertitledelim","shcite","detailscite","detailscites","collectionshelfmarkpunct","datingpagespunct","librarycollectionpunct","mkcolumns","mklayer","mkcolumnslayer","mklocation","mkmanuscriptdescriptionlabel","mkmanuscriptdescriptionlabelparagraphed","mkshcite","locationlibrarypunct","manuscriptdescriptionlabelpunct","moreinterpunct","pagetotalpagespunct","columnslayerpunct","multidetailscitedelim","recto","verso","manuscriptaddshortened","openrangeformat","openrangemark","mlanamedash","splitfootnoterule","pagefootnoterule","mlasymbolfootnote","themladraftnote","headlesscite","headlessfullcite","titleandsubtitle","biblatexnejmversionbbx","biblatexnejmpackagenamebbx","biblatexnejmsvnbbx","oldbibnamedelima","oldbibnamedelimb","oldbibnamedelimc","oldbibnamedelimd","oldbibnamedelimi","bbxinitsep","bibyearwatershed","nameaddonpseud","subtypemag","subtypenewsp","subtypeclassic","subtypebiblical","subtypeearlybook","subtypevideo","entrytypearchive","subtypevolume","subtypeonline","subtypedatabase","subtypeblog","subtypelistmessage","subtypebooklike","subtypepublicdocument","authortypeanon","authortypeunsure","authortyperedundant","authortypealternate","authortypejournal","subtypeintro","subtypeexcerpt","subtypenone","edtypecorp","entrytypeper","entrytypemanual","entrytypecoll","entrytypebook","subtypeprimarylegislation","subtypesecondarylegislation","subtypecourtrules","entrytyperef","entrytypeproc","entrytypereport","entrytypebooklet","entrytypemisc","entrytypeonline","entrytypevideo","entrytypeaudio","entrytypebookinbook","entrytypearticle","entrytypelegislation","entrytypeletter","entrytypeperformance","optionaddoriginal","optionnoreprints","optionorigfirst","optiontransfromorig","optionorigtransas","optiondoubledate","noplace","officialjournaltitle","ojspecedtitle","ecrreporttitle","commission","Commission","pcijrep","explanatorynote","eudirective","euregulation","eudecision","treatysubtype","comdocsubtype","jurisechr","eutreaty","casenote","pagemarkings","paragraphmarkings","paragraphtext","seriesa","echrreports","decisionsandreports","collectionofdecisions","parliamentarytype","houseofcommons","houseoflords","undoctype","extracitedelim","casenotetext","firstpublishedstr","legalstarturl","legalendurl","paratextformatted","csusebibmacro","forbbxrange","rangesplit","formatpostnote","ifnumeralfirst","ifnumeralsfirst","numeraljustfirst","siganddate","treatypartysep","SetStandardIndices","DeclareIndexAssociation","ShowIndexAssociation","legislationindex","iflistcontains","printindexearly","DNI","reponly","footciteref","dopipedlist","setuppostnotes","postnotefirst","postnotesecond","citeinindex","citeinindexnum","indexonly","cacasetitlepunct","ifabbrev","legreport","mkbibnametitle","mkrawpageprefix","mkusbibordinal","oxrefand","oxrefanon","recordseriespunct","thelocpubpairs","thenamepairs","titlebyauthordelim","uscasetitlepunct","iflabeldateisanydate","iflabeldateispubstate","sdcite","footcitet","volnumpunct","editorstrgdelim","ccite","ExecutePublistOptions","setplnum","plauthorname","plnameomission","plmarginyear","plyearhl","plauthorhl","plextrainfosep","extralabelnumberwidth","shiftplnum","publistbasestyle","plisbnlink","plissnlink","mkbibdesc","mkbibsecstart","thenonplauthors","thenonpleditors","theplauthor","thepleditor","theplauthors","thepleditors","therealliststop","thenonplauthor","thenonpleditor","ExecuteDepPublistOptions","thebplitems","thebplsecitems","thebplbgitems","theplnumgroup","resetplnumgroup","citeitem","shiftciteitem","mkrefdesc","theprevcrefsection","shiftbplnum","printprinfo","mkbibrealauthor","mkrealauthor","realauthorequalsign","mkbibrealeditor","mkrealeditor","realeditorequalsign","printsblversion","printsbldate","xprintsbldateiso","xprintsbldateau","ifciteidemsbl","namedashpunct","lexiconfinalnamedelim","volpostnotedelim","addskipentry","addincludeentry","abbrevwidth","setmaxlength","iffirstcharsec","iffirstcharnum","thecurrentpublisher","thecurrentlocation","thecurrentorganization","thecurrentinstitution","thepublishertotal","thelocationtotal","theorganizationtotal","theinstitutiontotal","savepostnotes","postnotelast","splitpostnote","volsplitpostnote","volvol","citejournal","citeseries","citeshorthand","bibentrycite","biblistcite","DeclareNestableCiteCommand","socialscienceshuberlinversion","socialscienceshuberlindate","mkbibdateunified","iflinkparens","pgcitep","pgcitealt","pgcitet","pgposscitet","seccitealt","seccitep","seccitet","secposscitet","posscitet","posscitealt","possciteauthor","idemcite","idemcites","footidemcite","footidemcites","parenauth","parenauths","mkmonthrange","mkmonthdayrange","mkmonthdayyearrange","anona","anonb","crossreflist","pluga","plugb","xtitle","xeditor","yeditor","edtypes","transtypes","AtBeginLists","AtEveryItem","authtypes","iffieldstart"]}
-,
-"biblatex2bibitem.sty":{"envs":{},"deps":["biblatex.sty"],"cmds":["printbibitembibliography","printgeneratedbibitemseparator","ignorespacesaftertitlecase","nolinkurl","utffriendlydetokenize"]}
-,
-"bibleref-french.sty":{"envs":{},"deps":["bibleref.sty","etoolbox.sty"],"cmds":["BRallowhypbch","BRforbidhypbch","Torah","Nebiim","Ketouvim","AT","NT","BRbookofp","BRbookofm","BRbookofme","BRbookoff","BRbookoffe","BRbookofpl","BRbookofe","BRFfileversion","BRFfiledate","BRFfileinfo"]}
-,
-"bibleref-german.sty":{"envs":{},"deps":["bibleref.sty","etoolbox.sty"],"cmds":["biblerefformat","BRbook","BRbooksuffix","BRprophet","BRepistle","BRPaulustothe","BRPaulusto","BRdas","BRder","BRdie","BRHoheslied","BROffbJoh","BRApgLuk","BRKlgl","BRJeremias","BRSalomo","BRSalomos","BRprimus","BRsecundus","BRtertius","BRquartus"]}
-,
-"bibleref-lds.sty":{"envs":{},"deps":["bibleref-mouth.sty","ifthen.sty","hyperref.sty"],"cmds":["provideldsdotorgstyle"]}
-,
-"bibleref-mouth.sty":{"envs":{},"deps":["fmtcount.sty","hyperref.sty"],"cmds":["bibleref","setbiblestyle","thebook","thechapter","theverse","bookchapterseparator","chapterverseseparator","ifsamebook","ifsamechapter","ifsameverse","ifhasbook","ifhaschapter","ifhasverse","thebookname","providebiblestyle","providebiblebookalias","providebiblebook","standardbiblestyle","providebiblegatewayurl","providebiblegatewaystyle"]}
-,
-"bibleref-parse.sty":{"envs":{},"deps":["etoolbox.sty","scrlfile.sty","bibleref.sty"],"cmds":["biblerefparseset","pbibleverse","BRbksep","pibibleverse","pibiblechvs","pibiblevs","brpDefineBookPrefix","brpDefineBook","brpUndefBookPrefix","brpUndefBook","BRadditionsto"]}
-,
-"bibleref-xidx.sty":{"envs":{},"deps":["bibleref.sty"],"cmds":{}}
-,
-"bibleref.sty":{"envs":{},"deps":["ifthen.sty","fmtcount.sty","amsgen.sty","ifxetex.sty"],"cmds":["bibleverse","BRvrsep","BRvsep","BRchsep","BRchvsep","BRperiod","biblerefstyle","setbooktitle","setindexbooktitle","addbiblebook","brthreeabbrvname","newbiblerefstyle","ibibleverse","bvidxpgformat","ibiblechvs","ibiblevs","ibible","biblerefcategory","biblerefindex","biblerefmap","brabbrvname","braltabbrvname","BRbkchsep","BRbooknumberstyle","BRbookof","BRbooktitlestyle","BRchapterstyle","BRepistlenumberstyle","BRepistleof","BRepistleto","BRepistletothe","brfullname","BRgospel","BRotherchapterstyle","BRversestyle","BRversesuffixstyle"]}
-,
-"bibletext.sty":{"envs":{},"deps":["pgfkeys.sty","pdftexcmds.sty"],"cmds":["bibletext"]}
-,
-"bibnames.sty":{"envs":{},"deps":["texnames.sty"],"cmds":["ifundefined","CMR","CWEB","emdash","FWEB","ndash","noopsort","PLOT","POSTSCRIPT","PS","singleletter","tubissue","TUB","WEB"]}
-,
-"bibpes.sty":{"envs":{},"deps":["xkeyval.sty"],"cmds":["reportOnBibPes","readbackDefFile","bibpesBody","ifreadOK","readOKtrue","readOKfalse","inbiblepassage","outbiblepassage","iwo","FN","CO","CF"]}
-,
-"bibtopic.sty":{"envs":["btSect","btUnit"],"deps":["ifthen.sty"],"cmds":["btPrintCited","btPrintNotCited","btPrintAll","thebtauxfile","btBegThbCmd","btCiteSect","btGetVal","btRef","btretval"]}
-,
-"bibtopicprefix.sty":{"envs":{},"deps":["scrlfile.sty","bibtopic.sty"],"cmds":["bibprefix"]}
-,
-"bibunits.sty":{"envs":["bibunit"],"deps":{},"cmds":["bibliographyunit","cite","nocite","putbib","defaultbibliography","defaultbibliographystyle","bibliography","bibliographystyle","iflabelstoglobalaux","labelstoglobalauxtrue","labelstoglobalauxfalse","ifglobalcitecopy","globalcitecopytrue","globalcitecopyfalse","stdthebibliography","remequivalent","from","given","plugh","hgulp"]}
-,
-"bicaption.sty":{"envs":{},"deps":["caption.sty","setspace.sty","sansmath.sty","ragged2e.sty"],"cmds":["captionsetup","bicaptionsetup","DeclareBiCaptionSeparator","bicaption","bicaptionbox","bisubcaption","bisubcaptionbox","captionmainlanguage","selectcaptionlanguage","DeclareCaptionLangOption","DeclareCaptionLanguageOption","subbicaptionbox"]}
-,
-"bickham.sty":{"envs":{},"deps":["xkeyval.sty"],"cmds":["mathscr","mathbscr","mathcal","mathbcal"]}
-,
-"bidi-atbegshi.sty":{"envs":{},"deps":["atbegshi.sty"],"cmds":["LengthToUnit","AtBeginShipoutUpperRight","AtBeginShipoutUpperRightForeground","AtBeginShipoutLowerLeft","AtBeginShipoutLowerLeftForeground","AtBeginShipoutLowerRight","AtBeginShipoutLowerRightForeground"]}
-,
-"bidi-perpage.sty":{"envs":{},"deps":{},"cmds":["ResetCounterPerPage"]}
-,
-"bidi.sty":{"envs":["LTR","RTL","LTRitems","RTLitems","LTRbibitems","RTLbibitems","LTR*","RTL*"],"deps":["xetex.sty","biditools.sty","auxhook.sty","xkeyval.sty","bidi-perpage.sty"],"cmds":["normalfootnotes","twocolumnfootnotes","threecolumnfootnotes","fourcolumnfootnotes","fivecolumnfootnotes","sixcolumnfootnotes","sevencolumnfootnotes","eightcolumnfootnotes","ninecolumnfootnotes","tencolumnfootnotes","RTLcolumnfootnotes","LTRcolumnfootnotes","paragraphfootnotes","setLTRparagraphfootnotes","setRTLparagraphfootnotes","TwoColumnFootnotes","ThreeColumnFootnotes","FourColumnFootnotes","FiveColumnFootnotes","SixColumnFootnotes","SevenColumnFootnotes","EightColumnFootnotes","NineColumnFootnotes","TenColumnFootnotes","ParagraphFootnotes","NormalRTLParaLTRFootnotes","AddExtraParaSkip","extrafeetendmini","extrafeetendminihook","extrafeetins","extrafeetinshook","FeetAboveFloat","FeetAtBottom","FeetBelowFloat","FeetBelowRagged","footfootmark","footfudgefactor","footinsdim","footmarkstyle","footmarkwidth","footscript","foottextfont","LTRfootfootmark","LTRfootmarkstyle","LTRfootscript","LTRfoottextfont","multiplefootnotemarker","normalRTLparaLTRfootnotes","RTLfootfootmark","RTLfootmarkstyle","RTLfootscript","RTLfoottextfont","setSingleSpace","DetectColumn","bidiversion","bididate","bidireleasename","TeXXeTOn","TeXXeTOff","setLTR","setLR","unsetRL","unsetRTL","setRTL","setRL","unsetLTR","LRE","LR","RLE","RL","LTRfootnote","RTLfootnote","setfootnoteRL","setfootnoteLR","unsetfootnoteRL","LTRthanks","RTLthanks","LTRfootnotetext","RTLfootnotetext","autofootnoterule","rightfootnoterule","leftfootnoterule","LRfootnoterule","textwidthfootnoterule","SplitFootnoteRule","debugfootnotedirection","RTLdblcol","LTRdblcol","RTLcases","XeTeX","XeLaTeX","SepMark","hboxR","hboxL","vboxR","vboxL","bidillap","bidirlap","setLTRbibitems","setRTLbibitems","setdefaultbibitems","setRTLmarginpar","setLTRmarginpar","setdefaultmarginpar","LTRmarginpar","RTLmarginpar","RTLdfnmakecol","LTRdfnmakecol","RTLmulticolcolumns","LTRmulticolcolumns","bracetext","DigitsDotDashInterCharToks","IfbidiPackageVersion","IfbidiPackageVersionBefore","IfbidiPackageVersionLater","pdfencryptsetup","pLRE","pRLE","setlatin","setLTRtable","setnonlatin","setRTLtable","moreLRE","moreRLE"]}
-,
-"bidicode.sty":{"envs":["BCmd","BCmd*","BDef","BDef*"],"deps":["xcolor.sty","showexpl.sty"],"cmds":["BDefaboveskip","BDefbelowskip","BDefinlineskip","boxdef","bs","CAny","cAny","CIIIAny","ciiiAny","Coord","coord","CoordIII","coordiii","Coordn","coordn","Coordx","coordx","Coordy","coordy","Coordz","coordz","HLOFF","HLON","Larg","Larga","Largb","Largr","Largs","LBEG","lcb","Lcs","LcsStar","LEND","lrb","lsb","nxLcs","OptArg","OptArgs","rcb","rrb","rsb"]}
-,
-"bidicontour.sty":{"envs":{},"deps":["color.sty","trig.sty"],"cmds":["bidicontourlength","bidicontournumber","bidicontour"]}
-,
-"bidihl.sty":{"envs":{},"deps":["color.sty"],"cmds":["bidihl","bidihlspace","bidihlnewline"]}
-,
-"bidipagegrid.sty":{"envs":{},"deps":["tikz.sty","atbegshi.sty","kvoptions.sty"],"cmds":["bidipagegridsetup","setLTRpagegrid","setRTLpagegrid","bidipagegridShipoutDoubleBegin","bidipagegridShipoutDoubleEnd"]}
-,
-"bidipoem.sty":{"envs":["modernpoem","modernpoem*","traditionalpoem","traditionalpoem*"],"deps":{},"cmds":["poemblocksep","poemcolsepskip","poemextrabaselineskip","poemmarginskip","poemskip","Setversedim","traditionalconnverses","traditionalhalfverses","versewidth"]}
-,
-"bidishadowtext.sty":{"envs":{},"deps":["color.sty"],"cmds":["bidishadowoffset","bidishadowoffsetx","bidishadowoffsety","bidishadowcolor","bidishadowrgb","bidishadowtext"]}
-,
-"biditools.sty":{"envs":{},"deps":{},"cmds":["AppendToTokenList","bidics","breaklooprepeat","bystep","currentposxwidth","currentposyheight","DefNewDummy","doloopbody","downtovalue","EmptyTokenList","endlooprepeat","eqnewif","noteqnewif","forvariable","fromvalue","GlobalSetatBoolean","GlobalSetBoolean","iflatin","ifLtoR","ifLtoRhboxconstruct","ifLtoRtable","ifnonlatin","ifRtoL","ifRtoLhboxconstruct","ifRtoLtable","looprepeat","NewTokenList","PrependToTokenList","SetatBoolean","setbaselineskip","SetBoolean","TheTokenList","tovalue","untilcondition","whilecondition","WriteEndXPostoaux","WriteEndXYPostoaux","WriteEndYPostoaux","WriteStartXPostoaux","WriteStartXYPostoaux","WriteStartYPostoaux"]}
-,
-"biditufte-book.cls":{"envs":{},"deps":["s-book.cls","bidituftefloat.sty","bidituftesidenote.sty","bidituftetoc.sty","bidituftegeneralstructure.sty","bidituftehyperref.sty","bidituftetitle.sty"],"cmds":{}}
-,
-"biditufte-handout.cls":{"envs":{},"deps":["bidituftefloat.sty","bidituftesidenote.sty","bidituftetoc.sty","bidituftegeneralstructure.sty","bidituftehyperref.sty","bidituftetitle.sty"],"cmds":{}}
-,
-"bidituftefloat.sty":{"envs":["fullwidth","marginfigure","margintable"],"deps":["xifthen.sty","ragged2e.sty","geometry.sty","changepage.sty","optparams.sty","placeins.sty","fancyhdr.sty"],"cmds":["floatalignment","forcerectofloat","forceversofloat","gsetlength","morefloats","newlinetospace","setcaptionfont","setfloatalignment","bidituftefloatDebugInfoNL","bidituftefloatError","bidituftefloatInfoNL","bidituftefloatRecalculate"]}
-,
-"bidituftegeneralstructure.sty":{"envs":{},"deps":["ragged2e.sty","paralist.sty","multicol.sty"],"cmds":["lettergroup","newthought"]}
-,
-"bidituftehyperref.sty":{"envs":{},"deps":["xcolor.sty","hyperref.sty"],"cmds":["bidituftehyperrefLoadHyperref"]}
-,
-"bidituftesidenote.sty":{"envs":{},"deps":["xifthen.sty","ragged2e.sty","setspace.sty","biditools.sty","natbib.sty","bibentry.sty","optparams.sty"],"cmds":["bidituftesidenotemarginpar","footnotelayout","gsetlength","LTRbidituftesidenotemarginpar","LTRcite","LTRmarginnote","LTRsidenote","marginnote","multfootsep","multiplefootnotemarker","RTLbidituftesidenotemarginpar","RTLcite","RTLmarginnote","RTLsidenote","setcitationfont","setLTRcitationfont","setLTRmarginnotefont","setLTRsidenotefont","setmarginnotefont","setRTLcitationfont","setRTLmarginnotefont","setRTLsidenotefont","setsidenotefont","sidenote"]}
-,
-"bidituftetitle.sty":{"envs":{},"deps":["biditools.sty"],"cmds":["maketitlepage","plainauthor","plainpublisher","plaintitle","publisher","thanklessauthor","thanklesspublisher","thanklesstitle","thedate"]}
-,
-"bidituftetoc.sty":{"envs":{},"deps":["titlesec.sty","titletoc.sty","xifthen.sty","biditools.sty"],"cmds":["bidituftetocError"]}
-,
-"bigdelim.sty":{"envs":{},"deps":{},"cmds":["ldelim","rdelim"]}
-,
-"bigfoot.sty":{"envs":{},"deps":["manyfoot.sty","suffix.sty","perpage.sty"],"cmds":["RestyleFootnote","FootnoteSpecific","DefineFootnoteStack","PushFootnoteMark","PopFootnoteMark","hfootfraction","vtypefraction","FootnoteMinimum","FootnoteMainMinimum","bigfoottolerance","footnotecarryratio"]}
-,
-"bigintcalc.sty":{"envs":{},"deps":{},"cmds":["bigintcalcNum","bigintcalcInv","bigintcalcAbs","bigintcalcSgn","bigintcalcMin","bigintcalcMax","bigintcalcCmp","bigintcalcOdd","bigintcalcInc","bigintcalcDec","bigintcalcAdd","bigintcalcSub","bigintcalcShl","bigintcalcShr","bigintcalcMul","bigintcalcSqr","bigintcalcFac","bigintcalcPow","bigintcalcDiv","bigintcalcMod","BigIntCalcOdd","BigIntCalcInc","BigIntCalcDec","BigIntCalcAdd","BigIntCalcSub","BigIntCalcShl","BigIntCalcShr","BigIntCalcMul","BigIntCalcDiv","BigIntCalcMod"]}
-,
-"bigints.sty":{"envs":{},"deps":["amsmath.sty"],"cmds":["bigint","bigints","bigintss","bigintsss","bigintssss","bigoint","bigoints","bigointss","bigointsss","bigointssss"]}
-,
-"bigstrut.sty":{"envs":{},"deps":{},"cmds":["bigstrut","bigstrutjot"]}
-,
-"bilingualpages.sty":{"envs":["bilingualpages"],"deps":["paracol.sty"],"cmds":["leftpage","rightpage"]}
-,
-"binarytree.sty":{"envs":{},"deps":["tikz.sty"],"cmds":["BinaryTree","btreeset","btreesetexternal"]}
-,
-"biochemistry-colors.sty":{"envs":{},"deps":["xcolor.sty"],"cmds":{}}
-,
-"biocon.sty":{"envs":{},"deps":["keyval.sty","ifthen.sty"],"cmds":["plantlike","funguslike","animallike","bactlike","newplant","newfungus","newanimal","newbact","plant","fungus","animal","bact","defaultplante","defaultfunguse","defaultanimale","defaultbacte","defaultfull","defaultabbr","newtaxon","newtaxastyle","taxon","taxonfirst","taxit","taxitalics"]}
-,
-"biokey.sty":{"envs":["biokey","SDVIG","LE"],"deps":{},"cmds":["AAAN","AAN","AN","Ap","DD","FK","KOM","N","NN","NNN","OTSTUP","SameDecl","SE","SHRIFTN","SHRIFTZ","SS","SSYLKA","STEZA","T","TE","TEZA","TT","TTT","TTTT","VPRAVO","VT","Z","ZZ","ZZZ"]}
-,
-"biolinum.sty":{"envs":{},"deps":["ifxetex.sty","ifluatex.sty","xkeyval.sty","textcomp.sty","fontenc.sty","fontaxes.sty"],"cmds":["biolinum","biolinumOsF","biolinumLF","biolinumkey","sufigures","textsu","textsuperior","oldstylenums","liningnums","oldstylenumsf","liningnumsf","tabularnums","proportionalnums","tabularnumsf","proportionalnumsf","DeclareTextGlyphY","biolinumGlyph","biolinumKeyGlyph","LKey","LKeyPad","LKeyF","LKeyAltF","LKeyStrgAltF","LKeyCtrlAltF","LKeyStrgX","LKeyCtrlX","LKeyShiftX","LKeyAltX","LKeyAltGrX","LKeyShiftStrgX","LKeyShiftCtrlX","LKeyShiftAltX","LKeyShiftAltGrX","LKeyStrgAltX","LKeyCtrlAltX","LKeyStrgAltEnt","LKeyCtrlAltEnt","LKeyReset","LKeyTux","LKeyWin","LKeyMenu","LKeyStrg","LKeyCtrl","LKeyAlt","LKeyAltGr","LKeyShift","LKeyTab","LKeyEnter","LKeyCapsLock","LKeyPos","LKeyEntf","LKeyEinf","LKeyLeer","LKeyEsc","LKeyEnde","LKeyCommand","LKeyOptionKey","LKeyBack","LKeyUp","LKeyDown","LKeyLeft","LKeyRight","LKeyPgUp","LKeyPgDown","LKeyAt","LKeyFn","LKeyHome","LKeyDel","LKeySpace","LKeyScreenUp","LKeyScreenDown","LKeyIns","LKeyEnd","LKeyGNU","LKeyPageUp","LKeyPageDown","LMouseEmpty","LMouseN","LMouseL","LMouseM","LMouseR","LMouseLR","LMouseIIEmpty","LMouseIIN","LMouseIIL","LMouseIIR","LMouseIILR"]}
-,
-"biolist.sty":{"envs":{},"deps":{},"cmds":["SEM","VID","VK","VKOMM","DOUBLE","VDVID","theSEMEYSTVO","theSEMVID","theVID"]}
-,
-"biotex.sty":{"envs":{},"deps":["textopo.sty","texshade.sty"],"cmds":["BioTeX"]}
-,
-"bitart.cls":{"envs":{},"deps":["s-ctexart.cls","xeCJK.sty","geometry.sty","fontspec.sty","setspace.sty","graphicx.sty","fancyhdr.sty","pdfpages.sty","booktabs.sty","multirow.sty","caption.sty","titlesec.sty","float.sty","etoolbox.sty","biblatex.sty","xstring.sty"],"cmds":["versionofgbtstyle","versionofbiblatex","defversion","switchversion","testCJKfirst","multivolparser","multinumberparser","BracketLift","gbleftparen","gbrightparen","gbleftbracket","gbrightbracket","execgbfootbibfmt","SlashFont","footbibmargin","footbiblabelsep","execgbfootbib","thegbnamefmtcase","mkgbnumlabel","thegbalignlabel","thegbcitelocalcase","thegbbiblocalcase","lancnorder","lanjporder","lankrorder","lanenorder","lanfrorder","lanruorder","execlanodeah","thelanordernum","execlanodudf","setlocalbibstring","setlocalbiblstring","dealsortlan","bibitemindent","biblabelextend","setaligngbstyle","lengthid","lengthlw","itemcmd","setaligngbstyleay","publocpunct","bibtitlefont","bibauthorfont","bibpubfont","execgbfdfmtstd","aftertransdelim","gbcaselocalset","gbpinyinlocalset","gbquanpinlocalset","defdoublelangentry","entrykeya","entrykeyb","userfieldabcde","mkbibleftborder","mkbibrightborder","mkbibsuperbracket","mkbibsuperscriptusp","upcite","pagescite","yearpagescite","yearcite","authornumcite","citet","citep","citetns","citepns","inlinecite","citec","citecs","authornumcites"]}
-,
-"bitbeamer.cls":{"envs":{},"deps":["expl3.sty","l3keys2e.sty","s-ctexbeamer.cls","xeCJKfntef.sty","tikz.sty"],"cmds":["CJKhl"]}
-,
-"bitbook.cls":{"envs":{},"deps":["kvoptions.sty","s-ctexbook.cls","geometry.sty","xeCJK.sty","titletoc.sty","setspace.sty","graphicx.sty","fancyhdr.sty","pdfpages.sty","booktabs.sty","multirow.sty","tikz.sty","etoolbox.sty","hyperref.sty","xcolor.sty","caption.sty","array.sty","amsmath.sty","amssymb.sty","listings.sty","biblatex.sty","xstring.sty"],"cmds":["xihei","arabicHeiti","unnumchapter","versionofgbtstyle","versionofbiblatex","defversion","switchversion","testCJKfirst","multivolparser","multinumberparser","BracketLift","gbleftparen","gbrightparen","gbleftbracket","gbrightbracket","execgbfootbibfmt","SlashFont","footbibmargin","footbiblabelsep","execgbfootbib","thegbnamefmtcase","mkgbnumlabel","thegbalignlabel","thegbcitelocalcase","thegbbiblocalcase","lancnorder","lanjporder","lankrorder","lanenorder","lanfrorder","lanruorder","execlanodeah","thelanordernum","execlanodudf","setlocalbibstring","setlocalbiblstring","dealsortlan","bibitemindent","biblabelextend","setaligngbstyle","lengthid","lengthlw","itemcmd","setaligngbstyleay","publocpunct","bibtitlefont","bibauthorfont","bibpubfont","execgbfdfmtstd","aftertransdelim","gbcaselocalset","gbpinyinlocalset","gbquanpinlocalset","defdoublelangentry","entrykeya","entrykeyb","userfieldabcde","mkbibleftborder","mkbibrightborder","mkbibsuperbracket","mkbibsuperscriptusp","upcite","pagescite","yearpagescite","yearcite","authornumcite","citet","citep","citetns","citepns","inlinecite","citec","citecs","authornumcites"]}
-,
-"bitelist.sty":{"envs":{},"deps":{},"cmds":["BiteMake","BiteFindByIn","BiteSep","BiteStop","BiteCrit","BiteMakeIfOnly","BiteIfCrit","BiteMakeIf","BiteFindByInIn","BiteIfSpace","BiteGetNextWord","BiteFindByInBraces","BiteMakeIfBraces","BiteTidyI","BiteTidyII","BiteTidied","fileinfo","filename","filedate","fileversion"]}
-,
-"bithesis.cls":{"envs":["abstractEn","acknowledgements","algo","appendices","axi","bibprint","case","conclusion","conj","cor","defn","exmp","lem","prop","publications","rem","resume","symbols","them","blindPeerReview"],"deps":["l3keys2e.sty","s-ctexbook.cls","geometry.sty","xeCJK.sty","titletoc.sty","setspace.sty","graphicx.sty","fancyhdr.sty","pdfpages.sty","booktabs.sty","multirow.sty","tikz.sty","etoolbox.sty","hyperref.sty","xcolor.sty","caption.sty","array.sty","amsmath.sty","amssymb.sty","pifont.sty","amsthm.sty","unicode-math.sty","listings.sty","enumitem.sty","fmtcount.sty","environ.sty","datetime2.sty","indentfirst.sty"],"cmds":["BITSetup","addpub","addpubs","Author","AuthorEn","MakeCover","MakeOriginality","MakePaperBack","MakeTitle","MakeTOC","pubsection","arabicHeiti","arialfamily","BigStar","circled","dunderline","thepub"]}
-,
-"bitpattern.sty":{"envs":{},"deps":["keyval.sty","calc.sty","multido.sty"],"cmds":["bitpattern","bpLittleEndian","bpBigEndian","bpNumberBitsAbove","bpNumberBitsBelow","bpNoBitNumbers","bpNumberFieldsOnce","bpNumberFieldsTwice","bpNumberAllBits","bpStartAtBit","bpSetBitWidth","bpSetTickHeight","bpFormatField","bpFormatBitNumber"]}
-,
-"bitreport.cls":{"envs":{},"deps":["expl3.sty","l3keys2e.sty","s-ctexart.cls","xeCJK.sty","geometry.sty","fancyhdr.sty","setspace.sty","caption.sty","booktabs.sty","pdfpages.sty"],"cmds":["BITSetup","MakeCover","MakeReviewTable"]}
-,
-"bitset.sty":{"envs":{},"deps":["infwarerr.sty","intcalc.sty","bigintcalc.sty"],"cmds":["bitsetReset","bitsetLet","bitsetSetBin","bitsetSetOct","bitsetSetHex","bitsetSetDec","bitsetGetBin","bitsetGetOct","bitsetGetHex","bitsetGetDec","bitsetAnd","bitsetAndNot","bitsetOr","bitsetXor","bitsetShiftLeft","bitsetShiftRight","bitsetClear","bitsetSet","bitsetFlip","bitsetSetValue","bitsetGet","bitsetNextClearBit","bitsetNextSetBit","bitsetGetSetBitList","bitsetSize","bitsetCardinality","bitsetIsDefined","bitsetIsEmpty","bitsetEquals","bitsetIntersects","bitsetQuery"]}
-,
-"bitter.sty":{"envs":{},"deps":["ifxetex.sty","ifluatex.sty","textcomp.sty","xkeyval.sty","fontenc.sty","fontaxes.sty","mweights.sty"],"cmds":["bitter","Bitterfamily"]}
-,
-"bizcard.sty":{"envs":["bizcard"],"deps":["ifthen.sty","geometry.sty"],"cmds":["filedate","fileversion"]}
-,
-"bjfuthesis.cls":{"envs":{},"deps":["iftex.sty","s-ctexbook.cls","pdfpages.sty","graphicx.sty","biblatex.sty","silence.sty","bicaption.sty","amsmath.sty","etoolbox.sty","amssymb.sty","fancyhdr.sty","titlesec.sty","booktabs.sty","titletoc.sty","hyperref.sty","xstring.sty"],"cmds":["chartnote","kaiti","keywordscn","keywordsen","oldbackmatter","oldfrontmatter","oldmainmatter","oldprintbibliography","versionofgbtstyle","versionofbiblatex","defversion","switchversion","testCJKfirst","multivolparser","multinumberparser","BracketLift","gbleftparen","gbrightparen","gbleftbracket","gbrightbracket","execgbfootbibfmt","SlashFont","footbibmargin","footbiblabelsep","execgbfootbib","thegbnamefmtcase","mkgbnumlabel","thegbalignlabel","thegbcitelocalcase","thegbbiblocalcase","lancnorder","lanjporder","lankrorder","lanenorder","lanfrorder","lanruorder","execlanodeah","thelanordernum","execlanodudf","setlocalbibstring","setlocalbiblstring","dealsortlan","bibitemindent","biblabelextend","setaligngbstyle","lengthid","lengthlw","itemcmd","setaligngbstyleay","publocpunct","bibtitlefont","bibauthorfont","bibpubfont","execgbfdfmtstd","aftertransdelim","gbcaselocalset","gbpinyinlocalset","gbquanpinlocalset","defdoublelangentry","entrykeya","entrykeyb","userfieldabcde","mkbibleftborder","mkbibrightborder","mkbibsuperbracket","mkbibsuperscriptusp","upcite","pagescite","yearpagescite","yearcite","authornumcite","citet","citep","citetns","citepns","inlinecite","citec","citecs","authornumcites"]}
-,
-"bkltprnt.sty":{"envs":{},"deps":{},"cmds":["bookletpage","leftpagenumber","rightpagenumber","target","source","setpdftargetpages","setdvipstargetpages","targetBooklet","targettopbottom","twoupemptypage","twoupclearpage","TwoupWrites","twouparticle","twoupplain","twouplandscape","twouponetoone"]}
-,
-"blindtext.sty":{"envs":{},"deps":["xspace.sty"],"cmds":["blinddocument","Blinddocument","blindtext","Blindtext","blindlist","Blindlist","blindlistlist","blindlistoptional","Blindlistoptional","blindlistlistoptional","blinditemize","blindenumerate","blinddescription","Blinditemize","Blindenumerate","Blinddescription","blindmathpaper","blindmarkup","parstart","parend","ifblindmath","blindmathtrue","blindmathfalse","ifblindtoc","blindtoctrue","blindtocfalse","ifblindbible","blindbibletrue","blindbiblefalse","ifblindrandom","blindrandomtrue","blindrandomfalse","ifblindpangram","blindpangramtrue","blindpangramfalse","theblindtext","theBlindtext","theblindlist","theblindlistlevel"]}
-,
-"blkarray.sty":{"envs":["blockarray","block","block*"],"deps":{},"cmds":["BAnewcolumntype","BAmulticolumn","Left","Right","BAenum","theBAenumi","testBAtablenotes","BAtablenotestrue","BAtablenotesfalse","BAparfootnotes","BAnoalign","BAmultirow","BAhline","BAhhline","BAextraheightafterhline","BAextrarowheight","BAtracing","BAarrayrulewidth","BAdoublerulesep","plain"]}
-,
-"blkcntrl.sty":{"envs":{},"deps":["moredefs.sty","relsize.sty"],"cmds":["smallblocks","normalblocks","PreChunk","PreFootnote","PreQuotation","PreQuote","PreVerse"]}
-,
-"blochsphere.sty":{"envs":["blochsphere"],"deps":["tikz.sty","tikzlibrarydecorations.pathreplacing.sty","tikzlibrarydecorations.markings.sty","tikzlibrarycalc.sty","tikzlibraryfadings.sty","etoolbox.sty","environ.sty","ifthen.sty","kvsetkeys.sty","kvoptions.sty"],"cmds":["drawBall","drawBallGrid","setDrawingPlane","setLatitudinalDrawingPlane","setLongitudinalDrawingPlane","drawCircle","drawGreatCircle","drawSmallCircle","drawLatitudeCircle","drawLongitudeCircle","drawRotationLeft","drawRotationRight","drawAxis","labelPolar","labelLatLon","drawStatePolar","drawStateLatLon","computeOffset","computeVisibility","tmp","aphi","atheta","dot","norm","xx","xy","yx","yy","xshift","yshift","zshift","behind","newphi","newtheta","myval","tatheta","domaintest","domaintesttwo","domaintestthree","agamma","aalpha","aalphatest","abeta"]}
-,
-"bloques.sty":{"envs":{},"deps":["tikz.sty","tikzlibraryshapes.misc.sty","tikzlibrarydecorations.pathmorphing.sty","tikzlibrarybackgrounds.sty","tikzlibrarypositioning.sty","tikzlibraryfit.sty","tikzlibraryshadows.sty"],"cmds":["bStart","bPlusDown","bPlusUp","bMinusDown","bMinusUp","bEnd","bGain","bGainPlus","bGainMinus","bMinusF","bPlusF","bFeedBack","bCrossGain","bNewStart","bMarkNode","bMarkNodeUp","bMarkNodeDown","bShadow","bColorB","bColorT","bColorL","ydistance","xdistancia","ydistancia","minaltura","tamano","colorfondo","colortexto","colorlinea","sombra","ancholinea"]}
-,
-"blowup.sty":{"envs":{},"deps":["atbegshi.sty","keyval.sty","graphics.sty","typearea.sty","iftex.sty"],"cmds":["blowUp","tPaperWidth","tPaperHeight","oPaperWidth"]}
-,
-"blox.sty":{"envs":{},"deps":["ifthen.sty","pgffor.sty","tikz.sty","tikzlibraryshapes.sty"],"cmds":["bXInput","bXOutput","bXLinkName","bXBloc","bXBlocL","bXBlocr","bXBlocrL","bXBlocPotato","bXonlyOneBloc","bXComp","bXSum","bXCompa","bXSuma","bXCompb","bXSumb","bXCompSum","bXLink","bXLinkxy","bXLinkyx","bXLinktyx","bXLinktb","bXReturn","bXChain","bXChainReturn","bXLoop","lastx","bXBranchx","bXNodeShiftx","bXBranchy","bXNodeShifty","bXDefaultLineStyle","bXLineStyle","bXStyleBlocDefault","bXStyleBloc","bXStyleSumDefault","bXStyleSum","bXLabelStyleDefault","bXLabelStyle","bXStylePotatoDefault","bXStylePotato"]}
-,
-"bm.sty":{"envs":{},"deps":{},"cmds":["bm","hm","bmdefine","hmdefine","boldsymbol","heavysymbol","DeclareBoldMathCommand","bmmax","hmmax"]}
-,
-"bmpsize-base.sty":{"envs":{},"deps":["fp-basic.sty","fp-snap.sty"],"cmds":{}}
-,
-"bmpsize.sty":{"envs":{},"deps":["iftex.sty","pdftexcmds.sty","infwarerr.sty","graphics.sty","keyval.sty","bmpsize-base.sty"],"cmds":["bmpsizesetup"]}
-,
-"bnumexpr.sty":{"envs":{},"deps":["xintbinhex.sty","xintcore.sty"],"cmds":["thebnumexpr","bnethe","bnumexpr","bnumeval","evaltohex","bnumsetup","bnumexprsetup","bnumhextodec","bnumprintone","bnumprintonetohex","bnumprintonesep","bnumdefinfix","bnumdefpostfix","BNErestorecatcodes","bnumexpro","bnebareeval","XINTfstop"]}
-,
-"bodegraph.sty":{"envs":{},"deps":["ifsym.sty","ifthen.sty","tikz.sty","tikzlibraryshapes.sty","tikzlibrarybackgrounds.sty","tikzlibrarydecorations.markings.sty"],"cmds":["semilog","semilogNG","UnitedB","UniteDegre","OrdBode","Unitx","Unity","BodeGraph","BodePoint","POAmp","POAmpAsymp","POArg","POArgAsymp","SOAmp","SOAmpAsymp","SOArg","SOArgAsymp","IntAmp","IntArg","KAmp","KArg","RetAmp","RetArg","POgAmp","POgArg","POgAmpAsymp","POgArgAsymp","PIAmp","PIArg","PIAmpAsymp","PIArgAsymp","PDAmp","PDArg","PDAmpAsymp","PDArgAsymp","APAmp","APArg","APAmpAsymp","APArgAsymp","RPAmp","RPArg","RPAmpAsymp","RPArgAsymp","PIDAmp","PIDArg","PIDAmpAsymp","PIDArgAsymp","BlackGraph","BlackPoint","BlackText","BlackGrid","valgridBx","valgridBy","AbaqueBlack","IsoModule","IsoArgument","StyleIsoM","StyleIsoA","NyquistGraph","NyquistPoint","NyquistText","NyquistGrid","valgridNx","valgridNy","RepTemp","TempGrid","AbaqueTRsecond","AbaqueDepassement","CorpsPol","LW","POAmpReel","POAmpng","POArgReel","POBlack","SOAmpReel","SOArgReel","SOBlack","SOncArg","UnitS","ValK","ValW","ValZ","Valsuivante","Xmax","puce","theidGnuplo","valgridx","valgridy","valmaxBf","valmaxx","valmaxy","valpas","valpi","AbaqueBlackNoStar","AbaqueBlackStar","BlackGraphNoText","BlackGraphText","BlackGridNoStar","BlackGridStar","BlackPointNoPos","BlackPointPos","BlackTextNoPoint","BlackTextPoint","BodeAmp","BodeAmpPointA","BodeArg","BodeGraphNoText","BodeGraphText","NyquistGraphNoText","NyquistGraphText","NyquistGridNoStar","NyquistGridStar","NyquistPointNoPos","NyquistPointPos","NyquistTextNoPoint","NyquistTextPoint","RepTempNoText","RepTempText","TempGridNoStar","TempGridStar","semilogNS","semilogS"]}
-,
-"bodeplot.sty":{"envs":["BodePlot","NyquistPlot","NicholsChart"],"deps":["tikz.sty","pdftexcmds.sty","ifplatform.sty","environ.sty","pgfplots.sty","pgfplotslibrarygroupplots.sty"],"cmds":["BodeZPK","BodeTF","addBodeZPKPlots","addBodeTFPlot","addBodeComponentPlot","MagK","MagKAsymp","MagKLin","PhK","PhKAsymp","PhKLin","MagDel","PhDel","MagPole","MagPoleLin","MagPoleAsymp","PhPole","PhPoleLin","PhPoleAsymp","MagZero","MagZeroLin","MagZeroAsymp","PhZero","PhZeroLin","PhZeroAsymp","MagCSPoles","MagCSPolesLin","MagCSPolesAsymp","PhCSPoles","PhCSPolesLin","PhCSPolesAsymp","MagCSZeros","MagCSZerosLin","MagCSZerosAsymp","PhCSZeros","PhCSZerosLin","PhCSZerosAsymp","MagCSPolesPeak","MagCSZerosPeak","MagSOPoles","MagSOPolesLin","MagSOPolesAsymp","PhSOPoles","PhSOPolesLin","PhSOPolesAsymp","MagSOZeros","MagSOZerosLin","MagSOZerosAsymp","PhSOZeros","PhSOZerosLin","PhSOZerosAsymp","MagSOPolesPeak","MagSOZerosPeak","NyquistZPK","NyquistTF","addNyquistZPKPlot","addNyquistTFPlot","NicholsZPK","NicholsTF","addNicholsZPKChart","addNicholsTFChart"]}
-,
-"boek.cls":{"envs":{},"deps":{},"cmds":["andname","backmatter","bibname","CaptionFonts","CaptionLabelFont","CaptionTextFont","ChapFont","chapter","chaptermark","chaptername","frontmatter","HeadingFonts","mainmatter","MarkFont","othermargin","PageFont","ParaFont","PartFont","RunningFonts","SectFont","seename","SParaFont","SSectFont","SSSectFont","thechapter","Thispagestyle","TitleFont","unitindent"]}
-,
-"boek3.cls":{"envs":{},"deps":{},"cmds":["andname","backmatter","bibname","CaptionFonts","CaptionLabelFont","CaptionTextFont","ChapFont","chapter","chaptermark","chaptername","frontmatter","HeadingFonts","mainmatter","MarkFont","othermargin","PageFont","ParaFont","PartFont","RunningFonts","SectFont","seename","SParaFont","SSectFont","SSSectFont","thechapter","Thispagestyle","TitleFont","unitindent"]}
-,
-"bohr.sty":{"envs":{},"deps":["tikz.sty","pgfopts.sty","elements.sty"],"cmds":["bohr","setbohr"]}
-,
-"boisik.sty":{"envs":{},"deps":{},"cmds":["ifboisikarrows","boisikarrowstrue","boisikarrowsfalse","maltese","checkmark","ac","approxeq","arceq","backepsilon","backprime","backsim","backsimeq","bagmember","baro","barwedge","Bbbk","bbslash","because","beth","between","bigstar","binampersand","bindnasrepma","blackbowtie","blacklozenge","blacksquare","blacktriangle","blacktriangledown","blacktriangleleft","blacktriangleright","boxast","boxbar","boxbot","boxbox","boxbslash","boxcircle","boxdivision","boxdot","boxleft","boxminus","boxplus","boxright","boxslash","boxtimes","boxtop","boxtriangle","bumpeq","Bumpeq","Cap","centerdot","circeq","circlearrowleft","circlearrowright","circledast","circledcirc","circleddash","CircledEq","circplus","coAsterisk","complement","convolution","corresponds","Cup","cupleftarrow","curlyeqprec","curlyeqsucc","curlyvee","curlywedge","curvearrowleft","curvearrowright","dalambert","daleth","dasharrow","dashleftarrow","dashrightarrow","DashV","dashV","dashVv","dfourier","Dfourier","diagdown","diagup","diamondbar","diamondcircle","diamondminus","diamondop","diamondplus","diamondtimes","diamondtriangle","digamma","Digamma","disin","divideontimes","Doteq","doteqdot","dotminus","dotplus","dotsim","dottimes","doublebarwedge","doublecap","doublecup","downdownarrows","downharpoonleft","downharpoonright","eqbumped","eqcirc","eqsim","eqslantgtr","eqslantless","equalparallel","fallingdotseq","fatbslash","fatsemi","fatslash","Finv","forkv","Game","geqq","geqslant","ggcurly","ggg","gggtr","gimel","glj","gnapprox","gneq","gneqq","gnsim","Gt","gtcir","gtrapprox","gtrdot","gtreqless","gtreqqless","gtrless","gtrsim","gvertneqq","hash","hermitmatrix","heta","Heta","hslash","iinfin","inplus","intercal","intup","invnot","kernelcontraction","lambdabar","lambdaslash","lbag","lblackbowtie","leftarrowtail","leftleftarrows","leftrightarrows","leftrightharpoons","leftrightsquigarrow","leftslice","leftthreetimes","leqq","leqslant","lessapprox","lessdot","lesseqgtr","lesseqqgtr","lessgtr","lesssim","llcorner","llcurly","Lleftarrow","lll","llless","lnapprox","lneq","lneqq","lnsim","looparrowleft","looparrowright","lozenge","lozengedot","lrcorner","Lsh","Lt","ltcir","ltimes","ltimesblack","lvertneqq","mathbb","measuredangle","measuredrightangle","merge","minuso","moo","multimap","multimapboth","multimapbothvert","multimapdot","multimapdotboth","multimapdotbothA","multimapdotbothAvert","multimapdotbothB","multimapdotbothBvert","multimapdotbothvert","multimapdotinv","multimapinv","ncong","nequiv","nexists","ngeq","ngeqq","ngeqslant","ngtr","niplus","nisd","nleftarrow","nLeftarrow","nleftrightarrow","nLeftrightarrow","nLeftrightarroW","nleq","nleqq","nleqslant","nless","nmid","notbot","nottop","nparallel","nplus","nprec","npreceq","nrightarrow","nRightarrow","nshortmid","nshortparallel","nsim","nsubset","nsubseteq","nsubseteqq","nsucc","nsucceq","nsupset","nsupseteq","nsupseteqq","ntriangleleft","ntrianglelefteq","ntriangleright","ntrianglerighteq","nvdash","nVdash","nvDash","nVDash","obar","oblong","obot","obslash","ogreaterthan","oleft","olessthan","oright","otop","otriangle","ovee","owedge","Perp","pitchfork","pluscirc","plustrif","precapprox","preccurlyeq","precnapprox","precneqq","precnsim","precsim","prurel","qoppa","Qoppa","rbag","rblackbowtie","rightangle","rightanglemdot","rightanglesqr","rightarrowtail","rightleftarrows","rightrightarrows","rightslice","rightsquigarrow","rightthreetimes","riota","risingdotseq","Rrightarrow","Rsh","rtimes","rtimesblack","sampi","Sampi","scurel","shortmid","shortparallel","simrdots","sinewave","smallfrown","smallsetminus","smallsmile","smashtimes","sphericalangle","sqsubset","sqSubset","sqsupset","sqSupset","square","squplus","sslash","stigma","Stigma","strictfi","strictif","Subset","subseteqq","subsetneq","subsetneqq","subsetplus","subsetpluseq","succapprox","succcurlyeq","succnapprox","succneqq","succnsim","succsim","Supset","supseteqq","supsetneq","supsetneqq","supsetplus","supsetpluseq","talloblong","therefore","thickapprox","thicksim","topfork","triangledown","trianglelefteq","trianglelefteqslant","triangleq","trianglerighteq","trianglerighteqslant","twoheadleftarrow","twoheadrightarrow","ulcorner","upharpoonleft","upharpoonright","upuparrows","urcorner","varbeta","varcap","varcup","vardigamma","varg","varhash","varintercal","varisins","varkappa","varlrttriangle","varnis","varnothing","varpropto","varsampi","Varsampi","varsqcap","varsqcup","varsubsetneq","varsubsetneqq","varsupsetneq","varsupsetneqq","vartimes","vartriangle","vartriangleleft","vartriangleright","Vdash","VDash","vDash","Vee","veebar","veeeq","veeonvee","Vvdash","Wedge","Ydown","Yleft","Yright","Yup","ztransf","Ztransf","barleftarrow","barleftarrowrightarrowbar","barovernorthwestarrow","carriagereturn","curlyveedownarrow","curlyveeuparrow","curlywedgedownarrow","curlywedgeuparrow","curvearrowbotleft","curvearrowbotleftright","curvearrowbotright","curvearrowleftright","dlsh","downblackarrow","downdasharrow","downtouparrow","downwhitearrow","downzigzagarrow","drsh","eqleftrightarrow","hookleftarrow","hookrightarrow","leftarrowTriangle","leftarrowtriangle","leftblackarrow","leftdasharrow","leftrightarroweq","leftrightarrowTriangle","leftrightarrowtriangle","leftrightblackarrow","leftsquigarrow","lefttorightarrow","leftwhitearrow","leftwhiteroundarrow","leftzigzagarrow","linefeed","looparrowdownleft","looparrowdownright","mapsdown","mapsfrom","Mapsfrom","Mapsto","mapsup","Nearrow","nearrowcorner","nHdownarrow","nHuparrow","nnearrow","nnwarrow","nVleftarrow","nVrightarrow","Nwarrow","nwarrowcorner","rightarrowbar","rightarrowcircle","rightarrowTriangle","rightarrowtriangle","rightblackarrow","rightdasharrow","rightthreearrows","righttoleftarrow","rightwhitearrow","rightwhiteroundarrow","Searrow","ssearrow","sswarrow","Swarrow","twoheaddownarrow","twoheaduparrow","twoheadwhiteuparrow","twoheadwhiteuparrowpedestal","upblackarrow","updasharrow","updownarrowbar","updownblackarrow","updownwhitearrow","uptodownarrow","upwhitearrow","whitearrowupfrombar","whitearrowuppedestal","whitearrowuppedestalhbar","whitearrowuppedestalvbar"]}
-,
-"boites.sty":{"envs":["breakbox"],"deps":{},"cmds":["bkcounttrue","bkcountfalse","breakboxskip","breakboxparindent","breakbox","endbreakbox"]}
-,
-"boites_exemples.sty":{"envs":["boiteepaisseavecuntitre","boitenumeroteeavecunedoublebarre","boiteavecunelignequiondulesurlecote","boitecoloriee"],"deps":{},"cmds":{}}
-,
-"bold-extra.sty":{"envs":{},"deps":{},"cmds":{}}
-,
-"boldline.sty":{"envs":{},"deps":["array.sty"],"cmds":["hlineB","clineB","hlxB"]}
-,
-"boldtensors.sty":{"envs":{},"deps":{},"cmds":["btensor","boperator","bsymbols","bboard","boldtensor"]}
-,
-"bondcolor.sty":{"envs":{},"deps":["chemstr.sty","hetarom.sty","hetaromh.sty","methylen.sty"],"cmds":["adddbcolor","addskbcolor","black","blackx","blue","bluex","cyan","cyanx","green","greenx","magenta","magentax","red","redx","replaceSKbond","thinLineWidth","white","whitex","xymcolor","yellow","yellowx","addhbonda","addhbondb","addhbondc","addhbondd","addhbonde","addhbondf","addhibonda","addhibondb","addhibondc","addhibondd","addhibonde","addhibondf","addvbonda","addvbondb","addvbondc","addvbondd","addvbonde","addvbondf","addvhbonda","addvhbondb","addvhbondc","addvhbondd","addvhbonde","addvhibonda","addvhibondb","addvhibondc","addvhibondd","addvhibonde","addvibonda","addvibondb","addvibondc","addvibondd","addvibonde","addvibondf","addvvbonda","addvvbondb","addvvbondc","addvvbondd","addvvbonde","addvvibonda","addvvibondb","addvvibondc","addvvibondd","addvvibonde","colorBLswfalse","colorBLswtrue","ifcolorBLsw","LeftAtomBond","MethyleneBondA","MethyleneBonda","MethyleneBondB","MethyleneBondb","MethyleneBondC","MethyleneBondc","MethyleneBondD","MethyleneBondd","MethyleneBondE","MethyleneBonde","MethyleneBondF","MethyleneBondf","MethyleneBondG","MethyleneBondg","MethyleneBondH","MethyleneBondh","MethyleneBondI","MethyleneBondi","MethyleneiBondA","MethyleneiBonda","MethyleneiBondB","MethyleneiBondb","MethyleneiBondC","MethyleneiBondc","MethyleneiBondD","MethyleneiBondd","MethyleneiBondE","MethyleneiBonde","MethyleneiBondF","MethyleneiBondf","MethyleneiBondG","MethyleneiBondg","MethyleneiBondH","MethyleneiBondh","MethyleneiBondI","MethyleneiBondi","RightAtomBond"]}
-,
-"bondgraph.sty":{"envs":{},"deps":["tikz.sty","tikzlibrarypositioning.sty","ifthen.sty"],"cmds":["bondleft","bondright","bondrighte","bondrightf","bondlefte","bondleftf","bgComponentNoBond","bgComponent","bgComponentWithBondLabel","bgComponentWithPosBondLabel","bgComponentWithBondMarkup","bgComponentWithBondMarkupTagged"]}
-,
-"bondgraphs.sty":{"envs":["bondgraph"],"deps":["amsfonts.sty","bm.sty","kvoptions.sty","tikz.sty","tikzlibrarydecorations.pathreplacing.sty","tikzlibrarypositioning.sty","tikzlibraryshapes.sty"],"cmds":["bond","bgelement"]}
-,
-"book-of-common-prayer.sty":{"envs":["responses","vresponses","vresponsesdouble","prayer","twocolprayer","threecolprayer","responsesex","vresponsesex","vresponsesdoubleex"],"deps":["fontspec.sty","geometry.sty","titlesec.sty","graphicx.sty","titling.sty","alltt.sty","paracol.sty","framed.sty","makecell.sty","xtab.sty","tocloft.sty","xcolor.sty","pgfornament.sty","enumitem.sty","pgf.sty","pgfopts.sty","bilingualpages.sty","changepage.sty"],"cmds":["versicle","response","cross","scross","gl","gr","blankline","deleteline","tab","spacer","instruct","instructsmall","bibleref","bibleverse","monarch","boxaround","priest","deacon","subdeacon","officiant","lector","epistoler","people","servers","contd","pretre","diacre","peuple","servants","V","R","rlong","VR","psalmverse","continued","sabon","betweenLilyPondSystem","boxit","crossfont","header","hist","makesectionline","munepsfig","sectionline","smallcapsheader","textjuni","textuni","versiclefont"]}
-,
-"book.cls":{"envs":{},"deps":{},"cmds":["frontmatter","mainmatter","backmatter","thechapter","chaptername","bibname","chapter","chaptermark"]}
-,
-"bookcover.cls":{"envs":["bookcover","bookcoverelement","bookcoverdescription"],"deps":["kvoptions.sty","geometry.sty","graphicx.sty","calc.sty","tikz.sty","xparse.sty","etoolbox.sty","fgruler.sty"],"cmds":["bookcovercomponent","partheight","partwidth","coverheight","coverwidth","spinewidth","flapwidth","wrapwidth","bleedwidth","marklength","markthick","bookcoverdescgeometry","bookcovertrimmedpart","setbookcover","newbookcoverpart","renewbookcoverpart","setpartposx","setpartposy","setpartwidth","setpartheight","settrimmedpart","newnamebookcoverpart","letnamebookcoverpart","newbookcovercomponenttype","renewbookcovercomponenttype","newnamebookcovercomponenttype","letnamebookcovercomponenttype","makebookcover","bookcover","endbookcover"]}
-,
-"booklet.sty":{"envs":{},"deps":["bkltprnt.sty"],"cmds":["checkforlandscape","magstepminus","pagespersignature","thesigcount","thesignature","ifprintoption","printoptiontrue","printoptionfalse","ifuselandscape","uselandscapetrue","uselandscapefalse","ifsidebyside","sidebysidetrue","sidebysidefalse","pageseplength","pagesepoffset","pagesepwidth"]}
-,
-"bookmark.sty":{"envs":{},"deps":["hyperref.sty"],"cmds":["bookmarksetup","bookmarksetupnext","bookmark","bookmarkdefinestyle","bookmarkget","BookmarkAtEnd","BookmarkDriverDefault","calc"]}
-,
-"bookshelf.cls":{"envs":{},"deps":["fix-cm.sty","s-report.cls","fontspec.sty","calc.sty","fp.sty","graphicx.sty","xcolor.sty","eso-pic.sty","geometry.sty","biblatex.sty"],"cmds":["makebook","citeA","titleref","emdash","heightval","titleval","citefullauthor","randomi","nextrandom","setrannum","setrandim","pointless","PoinTless","ranval"]}
-,
-"booktabs.sty":{"envs":{},"deps":{},"cmds":["toprule","midrule","bottomrule","cmidrule","morecmidrules","specialrule","addlinespace","heavyrulewidth","lightrulewidth","cmidrulewidth","belowrulesep","belowbottomsep","aboverulesep","abovetopsep","cmidrulesep","cmidrulekern","defaultaddspace"]}
-,
-"boolexpr.sty":{"envs":{},"deps":{},"cmds":["boolexpr","AND","OR","ifswitch","ifboolexpr","switch","case","otherwise","endswitch"]}
-,
-"bophook.sty":{"envs":{},"deps":{},"cmds":["PageLayout","AtBeginPage"]}
-,
-"boustr.sty":{"envs":["boustrophedon","rtl","sidewaysflip"],"deps":["graphicx.sty"],"cmds":["ifboustright","boustrighttrue","boustrightfalse"]}
-,
-"boxdims.sty":{"envs":{},"deps":{},"cmds":["dimbox","boxdimfile","boxdims","defboxdim"]}
-,
-"boxedminipage.sty":{"envs":["boxedminipage"],"deps":{},"cmds":{}}
-,
-"boxhandler.sty":{"envs":{},"deps":["ifthen.sty","pbox.sty"],"cmds":["bxtable","bxfigure","relaxCaptionWidth","limitCaptionWidth","constrainCaptionWidth","captionStyle","hyperactive","captionGap","TableDeadMargin","FigureDeadMargin","theabovecaptionskipterm","thebelowcaptionskipterm","CaptionFontSize","TableFontSize","LRTablePlacement","LRFigurePlacement","CaptionJustification","WrapperOn","WrapperOff","Wrapper","WrapperTextStyle","holdTables","holdFigures","clearTables","clearFigures","killlistoftables","killlistoffigures","killtableofcontents","holdlistoftables","holdlistoffigures","clearlistoftables","clearlistoffigures","nextTable","nextFigure","DeadMargin","CaptionBoxWidth","theTableIndex","theFigureIndex","theTableClearedIndex","theFigureClearedIndex","thepromptTablesFlag","thepromptFiguresFlag","StoreTable","StoreFigure","SaveCBox","ReciteTable","ReciteFigure","theClearedTable","theClearedFigure","thelofInvocations","thelofPrints","thelotInvocations","thelotPrints","wrapper","FigCaptionWidthLabel","FigureBoxLabel","FigureCaptionLabel","FigureWrapper","TableBoxLabel","TableCaptionLabel","TableWrapper","TblCaptionWidthLabel","WrapperStatus","WrapperText","WrapperTextDefault","oldlistoffigures","oldlistoftables","oldabovecaptionskip","oldbelowcaptionskip","arltable","arlfigure"]}
-,
-"boxit.sty":{"envs":["boxit","boxit*"],"deps":{},"cmds":["Beginboxit","Endboxit"]}
-,
-"bpchem.sty":{"envs":{},"deps":["xspace.sty"],"cmds":["BPChem","IUPAC","CNlabel","CNlabelnoref","CNref","CNlabelsub","CNlabelsubnoref","CNrefsub","HNMR","CNMR","cis","trans","bpalpha","bpbeta","bpDelta","hapto","allowhyphens","BPCadjustsub","BPCadjustsuper","BPCdelta","BPClensub","BPClensuper","BPCSetup","BPCSetupCat","BPCsub","BPCsubbs","BPCsuper","BPCsuperbs","BreakHyph","DoBPChem","DoIUPAC","dreh","ifusecbgreek","lookforsub","lookforsuper","MB","MultiBreak","next","Prep","talpha","tbeta","theBPCno","theBPCnoa","usecbgreekfalse","usecbgreektrue"]}
-,
-"br-lex.cls":{"envs":{},"deps":["s-mwbk.cls","ulem.sty","ifxetex.sty","fontspec.sty","polyglossia.sty","inputenc.sty","babel.sty","textcase.sty"],"cmds":["titulo","descricao","cortado","artigo","paragrafo","paragrafounico","inciso","alinea","itens","theartigo","theparagrafo","theinciso","thealinea","theitens","captionsbrazil","datebrazil","extrasbrazil","noextrasbrazil","prefacename","bibname","chaptername","enclname","ccname","headtoname","pagename","seename","alsoname","proofname","glossaryname","ord","orda","ro","ra"]}
-,
-"bracketkey.sty":{"envs":["key"],"deps":["calc.sty","xifthen.sty","coolstr.sty","hyperref.sty"],"cmds":["leadONE","leadTWO","name","hang","theindex","thebackindex","thekey","gprefix","altindent","keylabelwidth","oldparindent","keytitle"]}
-,
-"braille.sty":{"envs":{},"deps":{},"cmds":["braille","braillebox","brailleunit","brailledot","ifbrailleputtinydots","brailleputtinydotstrue","brailleputtinydotsfalse","ifbrailleeightdots","brailleeightdotstrue","brailleeightdotsfalse","ifbraillecompact","braillecompacttrue","braillecompactfalse","ifbrailleuseemptybox","brailleuseemptyboxtrue","brailleuseemptyboxfalse","ifbraillemirror","braillemirrortrue","braillemirrorfalse"]}
-,
-"braket.sty":{"envs":{},"deps":{},"cmds":["Bra","ket","Ket","braket","Braket","set","Set","SavedDoubleVert","BraDoubleVert","BraVert","SetDoubleVert","SetVert","midvert"]}
-,
-"brandeis-thesis.cls":{"envs":["thesis-abstract"],"deps":["s-book.cls","silence.sty","sectsty.sty","geometry.sty","setspace.sty","titlesec.sty","inputenc.sty","babel.sty","csquotes.sty","mathptmx.sty","tocloft.sty"],"cmds":["graduationmonth","graduationyear","program","advisor","degreetype","maketitlepage","makecopyright","startbody","captionsenglish","dateenglish","extrasenglish","noextrasenglish","englishhyphenmins","britishhyphenmins","americanhyphenmins","prefacename","bibname","chaptername","enclname","ccname","headtoname","pagename","seename","alsoname","proofname","glossaryname"]}
-,
-"breakurl.sty":{"envs":{},"deps":["xkeyval.sty","ifpdf.sty"],"cmds":["burl","burlalt","urlalt","UrlRight","UrlLeft"]}
-,
-"bredzenie.sty":{"envs":{},"deps":{},"cmds":["bredzenie","BredzenieSep","BredzenieHyphen","BredzenieDash","BredzenieNbsp"]}
-,
-"breqn.sty":{"envs":["dmath","dmath*","dseries","dseries*","dgroup","dgroup*","darray","darray*","dsuspend"],"deps":["amsmath.sty","graphicx.sty","flexisym.sty","keyval.sty","calc.sty"],"cmds":["breqnsetup","condition","hiderel","intertext","breqnpopcats","conditionpunct","conditionsep","darraycolsep","debugwr","DeclareTwang","discretionarytimes","Dmedmuskip","dquad","Dthickmuskip","eqbinoffset","eqbreakdepth","eqcolor","eqdelimoffset","eqfontsize","eqframe","eqindent","eqindentstep","eqinfo","eqinterlinepenalty","eqleftskip","eqlineskip","eqlineskiplimit","eqlinespacing","eqmargin","eqnumcolor","eqnumfont","eqnumform","eqnumplace","eqnumsep","eqnumside","eqnumsize","eqpunct","eqrightskip","eqstyle","intereqpenalty","intereqskip","listwidth","mathaxis","maxint","nref","postmath","prebinoppenalty","premath","prerelpenalty","replicate","theparentequation"]}
-,
-"brief.cls":{"envs":["brief","letter"],"deps":{},"cmds":["address","afsluiting","antwoordadres","betreft","bijlagen","cc","datum","en","location","maakbriefhoofd","makelabels","name","ondertekening","onskenmerk","opening","ps","telephone","uwbriefvan","uwkenmerk","vandaag","voetitem","adresveld","adresveldbreedte","americanbrief","betrefttekst","bijlage","bijlagentekst","bijlagetekst","bladnummertekst","briefhoofd","ccname","closing","datumtekst","dutchbrief","encl","englishbrief","footitem","footsep","frenchbrief","fromlocation","fromname","fromsig","geadresseerdetekst","germanbrief","kleinvet","labelcount","makeheader","mlabel","onderwerp","onskenmerktekst","perfstreepje","re","referentieregel","refkopfont","refveldbreedte","replyaddress","returnaddress","signature","startbreaks","startlabels","stopbreaks","stopletter","streepje","streepjes","subject","telefoontekst","telephonenum","toaddress","toname","uwbrieftekst","uwkenmerktekst","vensterskip","vervolghoofd","vervolgreferentieregel","voetregel","vouwstreepjes","yourletterof","yourreference"]}
-,
-"bropd.sty":{"envs":{},"deps":{},"cmds":["br","od","pd"]}
-,
-"btxdockit.sty":{"envs":["fieldlist","typelist"],"deps":["etoolbox.sty","ltxdockit.sty"],"cmds":["fielditem","listitem","typeitem","reqitem","optitem","bibfield","bibtype"]}
-,
-"bubblesort.sty":{"envs":{},"deps":["etoolbox.sty"],"cmds":["bubblesort","doublebubblesort","bubblesortflag","realSort","alphSort","ta","tb","leftappendItem","to"]}
-,
-"buctcover.cls":{"envs":{},"deps":["ifxetex.sty","kvoptions.sty","s-ctexbook.cls","xeCJK.sty","geometry.sty","xeCJKfntef.sty","array.sty","graphicx.sty","calc.sty","tikz.sty","xifthen.sty","hyperref.sty","textpos.sty"],"cmds":["coversetup","makecover","xingkai","zhkai","xbsong","dbsong"]}
-,
-"buctthesis.cls":{"envs":["cabstract","eabstract","taskbook","bibenumerate","denotation","foreword","dfigure","conclusion","translation","acknowledgement","achievements","resume","axiom","theorem","corollary","remark","assumption","definition","property","proposition","lemma","proof","oldlongtable"],"deps":["ifxetex.sty","kvoptions.sty","s-ctexbook.cls","xeCJK.sty","geometry.sty","fancyhdr.sty","titletoc.sty","amsmath.sty","amsthm.sty","amssymb.sty","unicode-math.sty","pifont.sty","enumitem.sty","siunitx.sty","mhchem.sty","float.sty","longtable.sty","threeparttable.sty","tabularx.sty","multirow.sty","booktabs.sty","graphicx.sty","subcaption.sty","caption.sty","bicaption.sty","tikz.sty","listings.sty","gbt7714.sty","xcolor.sty","pdfpages.sty","footmisc.sty","xpatch.sty","hyperref.sty","fgruler.sty","lineno.sty"],"cmds":["buctsetup","ctitle","etitle","cauthor","class","studentid","school","major","supervisor","msupervisor","ckeywords","ekeywords","makedeclare","taskinfo","taskitem","tableofcontentsEN","listofdesignfigures","echapter","esection","esubsection","esubsubsection","bichapter","bisection","bisubsection","bisubsubsection","dcaption","inlinecite","bfhei","bfsong","econtentsname","equationname","thetaskitemcnt"]}
-,
-"bull-l.cls":{"envs":{},"deps":["s-amsart.cls"],"cmds":["SuperTitle","STintro","bullPerspective"]}
-,
-"bullcntr.sty":{"envs":{},"deps":{},"cmds":["bullcntr","counterlargebullet","countersmallbullet","largectrbull","smallctrbull","smartctrbull","heartctrbull"]}
-,
-"bullenum.sty":{"envs":["bullenum"],"deps":["bullcntr.sty"],"cmds":{}}
-,
-"businesscard-qrcode.cls":{"envs":{},"deps":["kvoptions.sty","s-extarticle.cls","marvosym.sty","fontawesome.sty","qrcode.sty","etoolbox.sty","DejaVuSans.sty","fontenc.sty","wrapfig.sty","geometry.sty","varwidth.sty","calc.sty","crop.sty"],"cmds":["content","papersize","padding","border","cutlen","textpercents","imagepercents","lang","protdisplay","protprefix","printaddress","registerData","type","givennames","familynames","honoricprefix","honoricsuffix","additionalnames","pobox","extaddr","street","city","region","zip","country","phone","email","jabber","matrixorg","cloud","homepage","wordpress","drupal","joomla","wikipedia","link","world","git","gitea","github","facebook","twitter","youtube","google","pgpurl","pgpfingerprint","enforceright","exec","insa","ifexists","ifboth","ifany","cond","heightscale","name","vcard","address","inserttext","insertqrcode","insertname","drawcard","tl","tr","bl","br","DH","NG","dj","ng","k","guillemotleft","guillemotright","guilsinglleft","guilsinglright","quotedblbase","quotesinglbase","textquotedbl","DJ","th","TH","dh","Hwithstroke","hwithstroke","textogonekcentered","guillemetleft","guillemetright"]}
-,
-"bussproofs-extra.sty":{"envs":{},"deps":["bussproofs.sty","tikz.sty"],"cmds":["DeduceC","Deduce","straightDeduce","branchDeduce","ddotsDeduce","dotsdDeduce","shortDeduce","alwaysDeduce","LeftLineLabel","RightLineLabel","LeftSubproofLabel","RightSubproofLabel"]}
-,
-"bussproofs.sty":{"envs":["prooftree"],"deps":{},"cmds":["AxiomC","UnaryInfC","BinaryInfC","TrinaryInfC","QuaternaryInfC","QuinaryInfC","DisplayProof","Axiom","UnaryInf","BinaryInf","TrinaryInf","QuaternaryInf","QuinaryInf","fCenter","LeftLabel","RightLabel","noLine","singleLine","doubleLine","solidLine","dottedLine","dashedLine","alwaysNoLine","alwaysSingleLine","alwaysDoubleLine","alwaysSolidLine","alwaysDottedLine","alwaysDashedLine","rootAtTop","alwaysRootAtTop","rootAtBottom","alwaysRootAtBottom","proofSkipAmount","ScoreOverhang","extraVskip","labelSpacing","defaultHypSeparation","insertBetweenHyps","kernHyps","ruleScoreFiller","dottedScoreFiller","dashedBuildScore","EnableBpAbbreviations","AX","AXC","UI","UIC","BI","BIC","TI","TIC","LL","RL","DP","centerAlignProof","bottomAlignProof","normalAlignProof"]}
-,
-"bxbase.sty":{"envs":["withnohyph"],"deps":["bxtoolbox.sty"],"cmds":["Ux","UI","AJ","JI","KI","bxHex","bxRes","bxUcv","bxCheckMA","bxEndCheckMA","bxCheckCounterpart","bxEngineTypeX","bxEngineTypeY","bxETTeX","bxETpTeX","bxETXeTeX","bxETOmega","bxETeTeX","bxETpdfTeX","bxETLuaTeX","bxBDHookBabel","bxAtBeginDocumentBabel","fixcaptionlanguage","bxFixCaptionLanguage","bxProvideCaptionLanguage","setmainlanguage","bxTrivLangDef","bxBDHookUnicode","bxBDHookJisInput","bxFallbackSym","bxCodeValueSeq","bxCodeValueSeqD","bxUx","bxUI","bxAJ","bxJI","bxKI","bxUHex","bxUInt","setUIdriver","setAJdriver","safecaret","bxEnableSafeCaret","bxBDHookSafeCaret","bxBDHookUcsFastErrors","usejapanesepdfstring","recordpapersize","dvipdfmxmapline","dvipdfmxmapfile","pxUpScale"]}
-,
-"bxcalc.sty":{"envs":{},"deps":["calc.sty","bxcalcux.sty"],"cmds":["usepTeXunits"]}
-,
-"bxcalcux.sty":{"envs":{},"deps":["calc.sty","etoolbox.sty"],"cmds":["newcalcunit","DeclareCalcUnit"]}
-,
-"bxcjkjatype.sty":{"envs":["uCJK","uCJK*"],"deps":["keyval.sty","CJK.sty","CJKutf8.sty","CJKspace.sty","CJKpunct.sty","etoolbox.sty","CJKvert.sty"],"cmds":["setminchofont","setgothicfont","setmarugothicfont","setmediumminchofont","setboldminchofont","setmediumgothicfont","setboldgothicfont","setxboldgothicfont","setoneweightgothicfont","setCJKfamilydefault","CJKecglue","UTF","CJKforce","CJKunforce","mcdefault","gtdefault","mgdefault","mcfamily","gtfamily","mgfamily","CJKboldbyembolden","CJKnoboldbyembolden","setlightminchofont","bxcjkjatypeHyperrefPatchDone","CJKforced","ebdefault","ebseries","Entry","EveryCJKUse","FirstCJKUse","FONT","unicode","usecmapforalphabet"]}
-,
-"bxdvidriver.sty":{"envs":{},"deps":["ifluatex.sty","ifpdf.sty","ifvtex.sty","ifxetex.sty","pdftexcmds.sty"],"cmds":["bxDebug"]}
-,
-"bxeepic.sty":{"envs":["dottedjoin","dashjoin","drawjoin"],"deps":["pict2e.sty"],"cmds":["bxGridLabelForm","dashlines","dottedlines","drawlines","eepicdottedlines","epicbottomgridlabelsep","epicsidegridlabelsep","epictopgridlabelsep","flushjoin","noeepicdottedlines","spacewidth","multiputlist","matrixput","grid","dottedline","dashline","dashlinestretch","drawline","drawlinestretch","jput","picsquare","putfile","dashjoin","dottedjoin","drawjoin","enddashjoin","enddottedjoin","enddrawjoin","line","circle","oval","maxovaldiam","allinethickness","Thicklines","path","spline","ellipse","arc"]}
-,
-"bxenclose.sty":{"envs":{},"deps":{},"cmds":["enclosebodywith"]}
-,
-"bxghost-lib.sty":{"envs":{},"deps":{},"cmds":["eghostguarded","jghostguarded"]}
-,
-"bxghost.sty":{"envs":{},"deps":["bxghost-lib.sty"],"cmds":{}}
-,
-"bxjaholiday.sty":{"envs":{},"deps":["expl3.sty"],"cmds":["jaholidayname","jadayofweek","IfJaHolidayTF","IfJaHolidayT","IfJaHolidayF"]}
-,
-"bxjalipsum.sty":{"envs":{},"deps":["intcalc.sty"],"cmds":["jalipsum","jalipsumiroha","jalipsumjugemu","jalipsumjugemuP","bxDebug"]}
-,
-"bxjaprnind.sty":{"envs":{},"deps":["bxtoolbox.sty","everyhook.sty"],"cmds":["useparheadparenindent","nouseparheadparenindent","uselineheadparenindent","nouselineheadparenindent","usedialogueparenindent","nousedialogueparenindent","parheadparenindentamount","lineheadparenindentamount","lineheadforceindentamount","dialogueparenindentamount","prnind"]}
-,
-"bxjatoucs.sty":{"envs":{},"deps":["ltxcmds.sty","infwarerr.sty"],"cmds":["bxjaJisToUcs","bxjaEucToUcs","bxjaSjisToUcs","bxjaCidToUcs","bxjaJisToUcsHex","bxjaEucToUcsHex","bxjaSjisToUcsHex","bxjaCidToUcsHex","bxjaFastCidToUcs","bxjaFastJscToUcs","bxjaFastCidToUcsHex","bxjaFastJscToUcsHex"]}
-,
-"bxnewfont.sty":{"envs":{},"deps":["etoolbox.sty"],"cmds":["newfontx","bxDebug","newfontjascale"]}
-,
-"bxorigcapt.sty":{"envs":{},"deps":["etoolbox.sty"],"cmds":["bxDebug","bxorigcaptDeprecateCommand"]}
-,
-"bxpapersize.sty":{"envs":{},"deps":["xkeyval.sty","atbegshi.sty","ifpdf.sty","ifxetex.sty","ifluatex.sty","ifvtex.sty","ifptex.sty"],"cmds":["papersizesetup","bxpapersizesetup","bxDebug"]}
-,
-"bxpdfver.sty":{"envs":{},"deps":["ifthen.sty"],"cmds":["setpdfversion","suppresspdfcompression","suppresspdfobjcompression","setpdfdecimaldigits","preservepdfdestinations","bxDebug","bxpdfverDecimalDigits","bxpdfverMajorVersion","bxpdfverMinorVersion","bxpdfverPkResolution","setpdfpkresolution"]}
-,
-"bxtexlogo.sty":{"envs":{},"deps":["hologo.sty"],"cmds":["bxtexlogoimport","bxtexlogoImport","bxtexlogo","AmSLaTeX","AmSTeX","BibTeX","ConTeXt","epTeX","eTeX","eupTeX","JBibTeX","LuaLaTeX","LuaTeX","LyX","METAFONT","METAPOST","pBibTeX","pdfLaTeX","pdfTeX","pLaTeX","pLaTeXe","pTeX","TikZ","upBibTeX","upLaTeX","upLaTeXe","upTeX","XeLaTeX","XeTeX","ApTeX","BaSiX","CSTUG","DVIPDFMx","HanTheThanh","HeVeA","HiTeX","JLaTeX","JTeX","KaTeX","KET","KETpic","KOMAScript","LaTeXiT","LaTeXML","LaTeXTeX","logoAleph","logoLambda","logoLamed","logoOmega","logoon","NTS","OneTeX","OpTeX","PiCTeX","pTeXsT","SageTeX","SATySFi","SLiTeX","SuyahTeX","teTeX","TeXonLaTeX","TeXXeT","TTH","XyM","XyMTeX","bxDebug","bxtexlogoDeclare","bxtexlogoFontSlant","bxtexlogoItalicOrSlant","bxtexlogoNoUseBboldx","bxtexlogoReflect","bxtexlogoSlant","bxtexlogoSmcp","bxtexlogoSmcpAs","bxtexlogoSmcpAsFakeFor","bxtexlogoSmcpChoice","bxtexlogoTest","bxtexlogoUseBboldx"]}
-,
-"bxtoolbox.sty":{"envs":{},"deps":["etoolbox.sty"],"cmds":["bxRequireDefinition","ifbxOk","bxOktrue","bxOkfalse","bxRes","bxIfcsundefX","bxCsuseX","ifbxineTeX","ifbxinpdfTeX","ifbxinLuaTeX","ifbxinOmega","ifbxinAleph","ifbxinXeTeX","ifbxinpTeX","ifbxinupTeX","ifbxinnativeupTeX","ifbxinjTeX","bxIfineTeX","bxIfinpdfTeX","bxIfinLuaTeX","bxIfinOmega","bxIfinAleph","bxIfinXeTeX","bxIfinpTeX","bxIfinupTeX","bxIfinnativeupTeX","bxIfinjTeX","bxPreamble","bxConstIfToken","bxIf","bxIfcat","bxIfx","bxIfdim","bxIfnum","bxIfInMovingArg","bxMessageToken","bxCheckForMovingArg","bxCheckForMovingArgForTest","bxSetDummyIfs","bxUnsetDummyIfs","ifbxPrimitive","bxIfHasIfPrimitive","bxPrimitive","bxStrcmp","bxRobustdef","bxRobustgdef","bxRobustedef","bxRobustxdef","bxIfPdfOutput","bxIfPdfOutputNow","ifbxPdfOutput","bxIfPrimitive","bxIfCsPrimitive","bxIfPrimitiveX","bxIfExpToEqual","bxIfExpToEqualX","bxIfstrequal","bxIfstrequalX","bxDetokenize","bxStringify","bxCsNoexpand","bxNewrobustcmd","bxRenewrobustcmd","bxProviderobustcmd","bxRobustify","bxIfcsdef","bxIfcsundef","bxCsuse","bxCsshow","bxResDim","bxDebug","bxShowbool","bxShowtoggle","bxInputDefFile","bxNullify","bxForEachIn","bxForEachTokenIn","bxWithArgExpd","bxWithArgFullExpd","bxWithArgsExpd","bxWithArgsFullExpd","bxAssign","bxChompComma","bxProcessOptions","ifbxHasUcsChar","bxHasUcsChartrue","bxHasUcsCharfalse","ifbxHasAlUcsChar","bxHasAlUcsChartrue","bxHasAlUcsCharfalse","bxToChar","bxToJaChar","bxToUcsChar","bxToUcsCharDual","bxToUcsCharSeq","bxToHexTiny","bxToHexSmall","bxToHexTwo","bxToHexThree","bxToHexFour","bxToHexFive","bxToHexFiveX","bxToHexEight","bxToHexUC","bxToDecFour","bxToDecFive","bxToLower","bxToUpper","bxDocumentSpecial","bxDocumentSpecialUrgent","bxUseShadowMap","bxMap","bxSetModuleName","bxModuleName","bxCurrentError","bxCurrentWarning","bxCurrentWarningNoLine","bxCurrentInfo","bxPrepareSetKeysSafe","bxSetKeysSafe","bxRestKeys","bxDriverList","bxDriverInherent","bxDriver","bxSetDriver","bxDriverSpecifiedFor","bxDefineDDProcess","bxDefineDDProcessDefault","bxDoDDProcess","bxDeclareDriverOptions","bxToYokoDir","bxAtBeginDviX","bxGetZenkakuWidth","bxIfCharToken","bxInternalJaEncoding","bxInputJaEncoding","bxOutputJaEncoding","internaljaencodingname","inputjaencodingname","outputjaencodingname","infojenc"]}
-,
-"bxwareki.sty":{"envs":{},"deps":{},"cmds":["warekisetdate","warekisettoday","thewarekiyear","warekigengo","warekigengoinitial","warekiyear","warekidate","warekikanjidate","warekijkanjidate","warekicustomdate","WarekiIfCustomDateAvailable","warekitoday","warekikanjitoday","warekijkanjitoday","WarekiUseCustomInterGlue","WarekiUseNormalInterGlue","WarekiKansuji","WarekiSetToday","bxDebug"]}
-,
-"byo-twemojis.sty":{"envs":{},"deps":["tikz.sty","xstring.sty","etoolbox.sty"],"cmds":["byoTwemoji","forElementInList","byoTwemojiShadowTransparency","twemojiDefaultHeight","defineByoTwemojiElement","byoTwemojiElement"]}
-,
-"byrne.sty":{"envs":{},"deps":["xparse.sty","ifmtarg.sty","luamplib.sty"],"cmds":["defineNewPicture","drawCurrentPicture","defineFromCurrentPicture","drawFromCurrentPicture","drawUnitLine","drawProportionalLine","drawSizedLine","drawUnitRay","drawRightAngle","drawTwoRightAngles","drawAngle","drawAngleWithSides","drawPolygon","drawCircle","drawArc","drawLine","drawPointM","drawPointL","drawPoint","addToUndefineList","CreateNewInstanceForPicturefalse","CreateNewInstanceForPicturetrue","currentInlinePicturePlacement","currentInstance","drawDefinedPicture","drawImageFromCurrentInstance","drawMagnitude","drawProportionalIndLine","drawProportionalRay","drawSizedRay","drawUnitIndLine","formatImageName","ifCreateNewInstanceForPicture","lastPict","middp","midht","mpInst","mpPost","mpPre","offsetPicture","pictOffsetBottom","pictOffsetTop","plal","sfA","sfB","tmpalignment","tmpmiddle","undefineList","unmarkPictAsReady"]}
-,
-"bytefield.sty":{"envs":["bytefield","rightwordgroup","leftwordgroup"],"deps":["calc.sty","keyval.sty"],"cmds":["bitbox","wordbox","bitboxes","bitheader","skippedwords","bytefieldsetup","amp","bitwidth","byteheight","curlyshrinkage","curlyspace","labelspace","heightunits","widthunits"]}
-,
-"byzantinemusic.sty":{"envs":["byzantinemusic","changespaceskip","changetolerance","changelinespread","changewordspace"],"deps":["fontspec.sty","xcolor.sty","stackengine.sty","pbox.sty","pgfmath.sty","colortbl.sty"],"cmds":["agkylh","ahxoh","amtonh","ana","anmM","anmMD","anmtM","anmtMD","antK","antM","anttK","anttM","apo","apoapo","apod","apoeteMD","apoeteMDD","apogapo","apogkkoli","apokkoli","apokkoxe","apooli","apooxe","apopet","apot","apott","arg","argp","arsh","atonh","barhxoh","barhxozwyh","bart","bartg","bartgp","barth","bartpg","bartt","barttt","bartttt","barysh","bbbmchi","bbbmchiP","bbbmegachi","bbmchi","bbmchiP","bbmegachi","bela","belk","bhxoh","bm","bmchi","bmchiP","bmegachi","bmtonh","boy","boyA","boybfD","boybm","boyD","boydia","boydiaa","boydiafD","boydiah","boydiak","boydiam","boyh","boykdiam","boypadiam","boyplabm","boyton","boytondiam","boytongadiam","bsline","btonh","bxmchi","bxmchiP","bxmegachi","changeanacolor","changeantcolor","changeaplhcolor","changeargcolor","changeedocolor","changeekscolor","changeetecolor","changefthcolor","changegcolor","changeisokrathmasize","changeisokrthmacolor","changeklacolor","changekorwnacolor","changeletterspace","changelygcolor","changemartcolor","changemetracolor","changemusicscale","changemusicsize","changemusictextgap","changeparcolor","changepaycolor","changepiacolor","changepshcolor","changeRcolor","changestayroscolor","changetempocolor","changetextbold","changetextcolor","changetextfont","changetextscale","changetextsize","changetextslant","changetextstretch","changethheight","changetrocolor","changeydcolor","changeypsosisokrathmatos","changeypsosmartyrias","changeypsosxronou","dhxoh","di","dia","diA","diaD","diap","dib","dibboyh","dibboyhxoh","dibdidibh","dibdididiah","dibdih","dibdihxoh","dibh","dibm","diD","didia","didiadih","didiafD","didiah","didiam","digadiam","dih","dik","dikdiam","diMA","diplab","diplaba","diplabfD","diplabm","diplabtesdidiah","diton","ditondiam","dlllM","dlllMD","dllM","dllMD","dlM","dlMD","dM","dMD","dmtonh","dtonh","edoKD","eksM","eksMD","ela","elaapo","elaapog","elaapogp","elaapokkoli","elaapokkoxe","elaapooli","elaapooxe","elaapopet","elaapopg","elaapot","elad","elag","elakkoli","elakkoxe","elaoli","elapet","elat","eteK","eteKD","eteKDD","eteM","eteMD","eteMDD","etepsaKD","etepsaKDD","g","ga","gaA","gabm","gaboydiah","gaD","gadia","gadiaa","gadiafD","gadiagam","gadiak","gadiam","gagadiah","gah","gak","gaplabm","gapo","gapod","gapot","gaton","gatondiam","gD","gDD","gdD","gela","gg","ggapo","ggDD","gggapo","gggDD","gggP","gggPA","gggpDD","gggpypokkoli","gggypo","gggypokkoli","gggypokkoxe","ggiso","ggkkoli","ggkkoxe","ggP","ggPA","ggPD","ggpDD","ggpypokkoli","ggypo","ggypokkoxe","ghxoh","giso","gIV","gK","gKD","gkkoli","gkkoxe","gkkypsoli","gM","gMD","gmtonh","golixkant","gp","gPA","gPD","gpiso","gpypo","gpypokkoli","gtonh","gV","gVI","gVII","gxamelaapo","gyfD","gypo","gypokkoli","gypokkoxe","gypooxe","hxoh","II","IIA","III","IIIA","isa","isaA","isaD","isk","iso","isoapo","isoapot","isog","isogp","isokkoli","isokkoxe","isooli","isooxe","isopet","isopeteteMDD","isopsh","IV","IVA","IXanwoli","IXanwoxe","IXanwpet","IXkatt","katheth","kdibolih","kdiplaboligadiah","kdiplabolih","ke","keA","keb","kebm","keD","kedia","kediafD","kediah","kediak","kediakeh","kediam","kediaypsolikeh","keh","kek","kekdiam","kekediam","keno","kentro","keplabm","keton","ketondiam","kk","kkg","kkoli","kkolik","kkoxe","kkypsoli","kkypsolik","kkypsoxe","kla","klaA","klaapo","klaapoolipsh","klaD","klaela","klaiso","klaK","klaKD","klaM","klaoli","klaolixk","klaPD","klaxamelaapo","kliD","knhdiaolih","koli","koligadiah","kolikla","kor","korD","korP","korPD","koxe","kpet","lA","lbarth","Lbarth","leftbracket","LIIbarth","LIIIbarth","LIIIth","LIIth","LIVbarth","LIVth","ll","LL","llA","LLth","llth","lMD","lph","lth","Lth","LVbarth","LVIbarth","LVIIbarth","LVIIIbarth","LVIIIth","LVIIth","LVIth","LVth","lyfe","Lyfe","lyfeA","Lyfeth","lyfeth","lygM","lygMD","lygMDD","makra","marts","mchi","megachi","met","n","ne","nh","nhA","nhanwdiaf","nhanwdiafD","nhanwdiafMD","nhbm","nhD","nhdia","nhdiaa","nhdiafD","nhdiafM","nhdiafMD","nhdiagah","nhdiak","nhdiam","nhdianhh","nhgadiam","nhh","nhkdiam","nhtonbm","nhtondiam","nhtondidiam","nhtondiplabm","nhtonplabm","nhtontondiam","oli","oliapo","oliapot","olieteMDD","olig","olik","olikant","olikantt","olikk","olikkantt","olikkD","olikketeKDD","olikkh","olikla","olikt","olipet","olitt","olixk","olixkAnt","olixkantt","olixkpsh","olixkt","omaK","omaKD","omaKDD","omaM","omaMD","omaMDD","oxe","oxek","oxekkD","oxexk","oxexkAnt","oy","p","pa","paA","pabfD","pabm","paD","padia","padiaa","padiafD","padiah","padiak","padiakem","padiam","padiapah","padiaypsolih","pah","pakdiam","paMA","panhdiam","paplab","paplaba","paplabfD","paplabfPD","paplabm","paplabpah","paplabpahxoh","parg","parP","parPD","paton","patondiam","patonplabm","pdia","pet","petant","petantt","pett","pgapo","pggDD","pgggDD","pgggypo","pgggypokkoli","pgggypokkoxe","pggolikk","pggypo","pggypokkoli","pggypokkoxe","pgiso","pgoliant","pgolikk","pgypo","pgypokkoli","piaMD","plah","psaK","psaM","pshM","pshMD","ptri","R","rbox","red","rightbracket","rul","s","spaD","sta","stackon","staD","syn","synela","synelagkkoli","synelah","synelakkoli","synelaoxe","synelapet","synl","synlyfe","tesdidiah","tesh","teskediah","th","tha","thaf","thaM","thesh","thickshape","tKD","tM","tMD","tosh","tri","trip","troM","troMD","tsa","tsaD","tsaK","tsaM","ttghxoh","ttKD","ttM","ttMD","tttKD","tttM","tttMD","V","VA","Vanwoli","VI","VIA","VIanwoli","VIanwoxe","VIanwpet","VII","VIIA","VIIanwoxe","VIIanwpet","VIII","VIIIA","VIIIanwoli","VIIIanwoxe","VIIIanwpet","VIkatpet","Vkatpet","xam","xamapo","xamela","xamelaapo","xamelaapog","xamelaapopet","xamelapet","xamkkoli","xamkkoxe","xamoli","xamoxe","xampet","xamt","xamxam","xamxamapo","xamxamapopet","xamxamapopett","xamxamela","xamxampet","Xanwoli","Xanwoxe","Xanwpet","XIanwoli","XIanwoxe","XIanwpet","XIIanwoli","XIIanwoxe","XIIanwpet","XIIIanwoli","XIIIanwpet","XIIIkat","XIIkat","XIkat","XIVanwoli","XIVanwpet","XIVkat","Xkatt","xmchi","xmchiP","xmegachi","xrs","XVanwk","XVanwpet","XVkat","XVkatt","xxmchi","xxmchiP","xxmegachi","xxxmchi","xxxmchiP","xxxmegachi","yD","yfa","yfk","yfma","yfmk","yl","ylD","yll","yllD","ylll","ylllD","ypo","ypog","ypokkoli","ypokkoxe","ypooli","ypooxe","ypopet","ypsAoli","ypsAoxe","ypsDoli","ypsDpet","ypskdidiah","ypskgadiaolih","ypskh","ypskkediah","ypskkoli","ypskkolik","ypskkoxe","ypskoli","ypskolizwdiah","ypskzwdiaolih","ypskzwyolih","ypsoli","ypsolikla","ypsoxe","ypsypskypsoli","zw","zwA","zwD","zwdiafD","zwdiak","zwh","zwtonbm","zwtondiam","zwtongadiam","zwtonplabm","zwtontondiam","zwyD","zwzwdiam","zygD","anacolor","antcolor","aplhcolor","argcolor","edocolor","ekscolor","etecolor","fthcolor","gcolor","isokrthmacolor","klacolor","korwnacolor","lygcolor","martcolor","metracolor","parcolor","paycolor","piacolor","pshcolor","stayroscolor","tempocolor","trocolor","ydcolor","fontbyzantina","fontfthores","fontisokrathma","fontison","fontloipa","fontpalaia","fontxronos","agkylhhor","agkylhv","Ahxoh","anaclr","anapnoh","anapnohD","anapodohta","andantexronos","andantexronosD","anebasma","antapl","antclr","antD","antMD","antMDmikro","antt","apl","aplhclr","aplM","aplMD","apoant","apoantt","apoapod","apoapoeteKDD","apoapog","apoapogp","apoapopg","apoapot","apoapott","apoapottt","apodeteMD","apodeteMDD","apodl","apodll","apodlll","apodt","apoela","apog","apogapod","apogapodeteKDD","apogapoeteKDD","apogapot","apoggkkoli","apoggkkolidMA","apoggpkkoli","apoggpkkolidMA","apogkkolidMA","apogkkyoli","apogp","apogpapo","apogpapod","apogpapodeteKDD","apogpgkkoli","apogpgkkolidMA","apogpkkoli","apogpkkolidMA","apokkolidMA","apokkolieteMD","apokkolieteMDD","apokkolipsaK","apokkolipsaM","apokkolitro","apokkxoli","apokkxoxe","apolygMD","apolygMDD","apomekeno","apomikrh","apoolikla","apooliklapsh","apoolipsh","apoomaMDD","apopetantt","apopeteteMDD","apopetkla","apopettsa","apopg","apopgapo","apopgapod","apopgapodeteKDD","apopggkkoli","apopggkkolidMA","apopgkkoli","apopgkkolidMA","apopia","apoppgkkoli","apotro","apotteteKD","apottt","apottteteKD","apoxapo","apoxoli","apoxoxe","apoxpet","argBMusic","argclr","argolikk","argolikketeKD","argolikketeKDD","argolikkomaK","argolikkpsh","argon","argoriginal","argosxronos","argosxronosM","argpolikk","argpolikkpsh","argyolikk","argyolikkomaK","argyolikkpsh","Atonost","atonost","bagkylhhor","bagkylhv","bar","barBMusic","bargggt","barggt","bargpt","bargt","barhxozwyfh","baroriginal","barpgt","barttttt","bartttttt","barys","basiceval","Bhxoh","bleftbrackethor","bleftbracketv","bmBMusic","boriginal","boybboyh","boybboyhxoh","boybf","boybfboyh","boybfM","boybfMD","boyBMusic","boyboydiam","boydiaboym","boydiaf","boydiafA","boydiafP","boydiafPA","boydiafPD","boydiafthora","boydiafthoraD","boydiatmartyria","boydibm","boydiplabm","Boyh","boyk","boyplab","boyplagbmartyria","boytonboydiam","boytonton","brightbrackethor","brightbracketv","Btonost","btonost","colorofR","dAapogkkoli","dAapogpkkoli","dAapopgkkoli","dapokkoli","dexia","Dhxoh","Di","DiA","diaBMusic","diaolikk","diargon","diargonD","diargosxronos","diargosxronosD","dibapo","dibf","dibfA","dibfboyh","dibfD","dibfdih","dibfM","dibfMD","dibfP","dibfPA","dibfPD","dibfthora","dibfthoraBoy","dibfthoraD","dibfthoraDit","dibfthoraM","dibfthoraMD","dibk","dibkolih","diBMusic","DiD","didiaf","didiafA","didiafdih","didiafM","didiafMD","didiafP","didiafPA","didiafPD","didiafthora","didiafthoraD","didiafthoraM","didiafthoraMD","didiak","didibm","dididiam","didiplabm","dieshM","dieshMD","digorgosxronos","digorgosxronosD","digrdieshM","digrdieshMD","digryfesh","digryfeshD","DiKD","DiMA","dipadiam","diplabf","diplabfA","diplabfM","diplabfMD","diplabfP","diplabfPA","diplabfPD","diplabftesdidiafh","diplabk","diplabtesdidiafh","diplagbfthora","diplagbfthoraD","diplagbfthoraM","diplagbfthoraMD","diplagbfthoraMM","diplagbmartyria","diplagbmartyriaP","dipM","dipMD","ditondidiam","dMA","doli","Dtonost","dtonost","dyo","dyoA","edoclr","eksclr","elaant","elaantt","elaapoant","elaapoantt","elaapod","elaapodeteMD","elaapodeteMDD","elaapoeteMD","elaapoeteMDD","elaapogkkoli","elaapokkxoli","elaapokkxoxe","elaapokla","elaapom","elaapoolikla","elaapooliklapsh","elaapoolipsh","elaapopetanmt","elaapopetantt","elaapotsa","elaapott","elaapottt","elaapoxoli","elaapoxoxe","elaapoxpet","elaBMusic","elaeteMD","elaeteMDD","elagggkkoli","elaggpkkoli","elagkkoli","elagkkolidMA","elagkkyoli","elagp","elagpgkkoli","elagpkkoli","elagpkkolidMA","elagpkkyoli","elagppkkoli","elakkolipsh","elakkolitro","elakkolitropsh","elakkxoli","elakkxoxe","elakla","elam","elaolipsh","elaomaMDD","elaoxe","elapetanmt","elapetantt","elapetkla","elapettsa","elapg","elapggkkoli","elapgkkoli","elapgkkolidMA","elapgkkyoli","elapia","elappgkkoli","elatsa","elatt","elatteteKD","elatteteKDD","elattt","elattteteKD","elattteteKDD","elaxapo","elaxapokkoli","elaxapokkoxe","elaxapokkxoli","elaxapokkxoxe","elaxapopet","elaxapoxpet","elaxoli","elaxoxe","elaxpet","elaykkoli","elaykkolipsh","endofwnoMA","epta","eptashmos","eteclr","eteKA","eteMA","etepsaMDD","exashmosM","exi","fthclr","GaA","gaBMusic","GaD","gadiaf","gadiafA","gadiafP","gadiafPA","gadiafPD","gadiafthora","gadiafthoraD","gadiagah","Gadiam","gadiatmartyria","gadiatmartyriaK","gadiatmartyriaKD","gagadiam","Gah","GaK","gakdiam","gakebm","ganhdiam","gapaplabm","gaplab","gaplagb","gaplagbmartyria","gapoantt","gapoapo","gapodeteKD","gapodeteKDD","gapodeteMD","gapodeteMDD","gapodt","gapodteteKDD","gapoeteMD","gapoeteMDD","gapoolikla","gapooliklapsh","gapotd","gapott","gapotteteKD","gapottt","gapottteteKD","gatongadiam","gatonton","gayA","GayD","gayD","gayfA","GayfD","gayfD","gayfP","gayfPA","gayfPD","gAypsoli","gAypsoliant","gAypsolipsh","gBMusic","gclr","gd","gdf","gdfA","gdfD","gdfM","gdfMD","gdfP","gdfPA","gdfPD","gDh","gdM","gdMD","gelaapo","gelad","geladeteMD","geladeteMDD","gelakkoli","genikhdiesh","genikhdieshD","genikhdieshM","genikhdieshMD","genikhyfesh","genikhyfeshD","genikhyfeshM","genikhyfeshMD","getlength","ggapoeteMD","ggapoeteMDD","ggapokkoli","ggapoomaMD","ggBMusic","ggD","ggela","ggelaapo","ggelakkoli","ggg","gggapoeteMDD","gggD","gggDDold","gggela","gggelaapo","gggelakkoli","gggg","ggggapo","ggggD","ggggelaapo","ggggiso","ggggkk","ggggkkoli","ggggoli","ggggolik","ggggolikk","ggggolixk","ggggpolixk","ggggypo","gggiso","gggisoomaM","gggkk","gggkkoli","gggkoli","gggoli","gggolik","gggolikk","gggolixk","gggp","gggPD","gggpD","gggpkk","gggpkkoli","gggpolikk","gggpolixk","gggpP","gggpPA","gggpPD","Gggpxypokkoli","Gggpxypokkxoli","Gggpypokkoli","gggxam","Gggxypo","Gggxypokkoli","Gggxypokkoxe","Gggxypokkxoli","Gggxypokkxoxe","Gggypo","gggypodeteKD","gggypodeteKDD","Gggypokkoli","Gggypokkoxe","Gggypokkxoli","Gggypokkxoxe","ggisokkoli","ggisoomaM","ggkk","Ggkkoli","ggkkolik","Ggkkoxe","Ggkkxoli","ggkkxoli","Ggkkxoxe","ggkkxoxe","ggkoli","ggoli","ggolik","ggolikk","ggolixk","ggoriginal","ggoxekkD","ggp","ggpapo","ggpapoeteMDD","ggpapokkoli","ggpapoomaMD","ggpD","ggpela","ggpelaapo","ggpelakkoli","ggpg","ggpgD","ggpgDD","ggpgkk","ggpgkkoli","ggpgolikk","ggpgolixk","ggpgP","ggpgPA","ggpgPD","ggpiso","ggpisokkoli","ggpisoomaM","ggpkk","ggpkkoli","ggpkkolik","ggpkoli","ggpoli","ggpolik","ggpolikk","ggpolixk","ggpP","ggpPA","ggpPD","ggpxam","Ggpxypokkoli","Ggpxypokkxoli","ggpyolixk","ggpypo","ggpypod","ggpypodeteKD","ggpypodeteKDD","ggpypoeteMD","ggpypoeteMDD","Ggpypokkoli","Ggpypokkxoli","ggpypooli","ggpypopet","ggpypot","ggpypoteteKD","ggpypoteteKDD","ggpypott","ggpypotteteKD","ggpypotteteKDD","ggpyypo","ggxam","Ggxypo","ggxypo","Ggxypokkoli","Ggxypokkoxe","Ggxypokkxoli","Ggxypokkxoxe","ggyolixk","Ggypo","ggypod","ggypodeteKD","ggypodeteKDD","ggypoeteMD","ggypoeteMDD","Ggypokkoli","ggypokkoli","Ggypokkoxe","ggypooli","ggypopet","ggypot","ggypoteteKD","ggypoteteKDD","ggypott","ggypotteteKD","ggypotteteKDD","ggyypo","gisoomaM","gisotD","gIVD","gIVDD","gIVP","gIVPD","gkk","Gkkoli","gkkolidMA","gkkolieteMD","gkkolieteMDD","gkkolik","Gkkoxe","Gkkxoli","Gkkxoxe","gkkxoxe","gkkyoli","gkkyolik","gkkypsolieteMD","gkkypsolieteMDD","gkkyypsoli","gkoli","gkyoli","gkyoliant","goli","goliant","goliantt","golid","golik","golikant","golikk","golikkantt","golikketeKD","golikketeKDD","golikkomaKDD","golikkpsh","goliomaM","golixk","gorgosxronos","gorgosxronosD","goxekk","goxekkD","goxekkDpsh","goxekkpsh","gP","gpapo","gpapoantt","gpapodeteMD","gpapodeteMDD","gpapoeteMD","gpapoeteMDD","gpapoolikla","gpapooliklapsh","gpapot","gpapotd","gpAypsoli","gpAypsoliant","gpAypsolipsh","gpBMusic","gpD","gpDD","gpela","gpelaapo","gpelad","gpeladeteMD","gpeladeteMDD","gpelakkoli","gpg","gpgapo","gpgapoeteMDD","gpgapokkoli","gpgapoomaMD","gpgD","gpgDD","gpgela","gpgelakkoli","gpgg","gpggD","gpggDD","gpggkk","gpggkkoli","gpggolikk","gpggolixk","gpggP","gpggPA","gpgiso","gpgisokkoli","gpgisoomaM","gpgkk","gpgkkoli","gpgkkolik","gpgkoli","gpgoli","gpgolik","gpgolikk","gpgolixk","gpgP","gpgPA","gpgPD","gpgpelaapo","gpgxam","gpgyolixk","gpgypo","gpgypod","gpgypodeteKD","gpgypodeteKDD","gpgypoeteMD","gpgypoeteMDD","gpgypooli","gpgypopet","gpgypot","gpgypoteteKD","gpgypoteteKDD","gpgypott","gpgypotteteKD","gpgypotteteKDD","gpgyypo","gpK","gpkk","gpkkoli","gpkkolieteMD","gpkkolieteMDD","gpkkolik","gpkkyoli","gpkkypsoli","gpkkypsolieteMD","gpkkypsolieteMDD","gpkoli","gpkyoli","gpkyoliant","gpM","gpMD","gpoli","gpoliant","gpolid","gpolik","gpolikk","gpolikkpsh","gpolixk","gpolixkant","gpP","gpp","gpPA","gppBMusic","gpPD","gppkkoli","gppkkolik","gppkkyoli","gppkkypsoli","gppM","gppolixk","gppolixkant","gppP","gppPD","gppypogkkoli","gpxam","gpxamela","Gpxypo","Gpxypokkxoli","gpxypokkxoli","gpyapo","gpyapot","gpyela","gpyelaapo","gpyoli","gpyoliant","gpyolikant","gpyolikkpsh","gpyolix","gpyolixkant","Gpypo","gpypoantt","gpypod","gpypodt","gpypoeteMD","gpypoeteMDD","gpypogggkkoli","gpypoggkkoli","gpypoggpkkoli","gpypogkkoli","gpypogkkolieteMD","gpypogkkolieteMDD","gpypogpgkkoli","gpypogpkkoli","Gpypokkoli","Gpypokkxoli","gpypokkxoli","gpypol","gpypooli","gpypoolikla","gpypopet","gpypopeteteMD","gpypopeteteMDD","gpypopetkla","gpypopggkkoli","gpypopgkkoli","gpypot","gpypoteteKD","gpypoteteKDD","gpypott","gpypotteteKD","gpypotteteKDD","gpypskoli","gpypsoli","gpypsoliant","gpyxam","gpyxamapo","gpyypo","Gtonost","gtonost","gVD","gVDD","gVID","gVIDD","gVIIkat","gVIP","gVIPD","gVP","gVPD","gxam","gxamela","Gxypo","Gxypokkxoli","Gxypokkxoxe","gy","gyapo","gyapot","gyD","gyela","gyelaapo","gyf","gyfA","gyfM","gyfMD","gyfP","gyfPA","gyfPD","gyM","gyMD","gyoli","gyoliant","gyolikant","gyolikk","gyolikkpsh","gyolix","gyolixkant","Gypo","gypoantt","gypod","gypodt","gypoeteMD","gypoeteMDD","gypogggkkoli","gypoggkkoli","gypoggpkkoli","gypogkkoli","gypogkkolieteMD","gypogkkolieteMDD","gypogpgkkoli","gypogpkkoli","Gypokkoli","Gypokkoxe","Gypokkxoli","Gypokkxoxe","gypol","gypolt","gypooli","gypoolikla","gypooliklapsh","Gypooxe","gypopet","gypopeteteMD","gypopeteteMDD","gypopetkla","gypopggkkoli","gypopgkkoli","gypot","gypotd","gypoteteKD","gypoteteKDD","gypott","gypotteteKD","gypotteteKDD","gypottt","Gypoxoxe","gypoxoxe","gypskoli","gypsoli","gypsoliant","gyxam","gyxamapo","gyypo","hmiolion","Hxos","hxosh","IfNoValueOrEmptyTF","IIBMusic","isaapo","isaapoantt","isaapopetkla","isaki","isakiA","isakiD","isakiM","isaklaapo","isaoli","isapet","isapetkla","iskgkkoli","iskkkoli","iskklaoli","iskoli","isoant","isoantt","isoapod","isoapott","isoapottt","isoclr","isodapo","isoeteMDD","isogapo","isogdapo","isogggkkoli","isoggkkoli","isoggpkkoli","isogkkoli","isogkkolipsh","isogkkoxe","isogkkyoli","isogkkyolipsh","isogpapo","isogpgkkoli","isogpkkoli","isogpkkolipsh","isogpkkyoli","isogppkkoli","isokkolieks","isokkoliekspsh","isokkolipsaK","isokkolipsaM","isokkolipsh","isokkolitro","isokkolitropsh","isokkoxepsh","isokkxoli","isokkxoxe","isokkyoli","isokkyolipsh","isokla","isokrBOY","isokrBOYD","isokrBOYDD","isokrBpayla","isokrDI","isokrDID","isokrDIDD","isokrDIkatw","isokrDIkatwD","isokrDpayla","isokrGA","isokrGAD","isokrGADD","isokrGpayla","isokrKE","isokrKED","isokrKEDD","isokrKEkatw","isokrKEkatwD","isokrKpayla","isokrMEL","isokrMELD","isokrNH","isokrNHD","isokrNpayla","isokrPA","isokrPAD","isokrPADD","isokrPpayla","isokrZpayla","isokrZW","isokrZWD","isokrZWDD","isokrZWpanw","isokrZWpanwD","isoolipsh","isoomaMDD","isooxepsh","isopetantt","isopetkla","isopettsa","isopg","isopgapo","isopgggkkoli","isopgggkkolipsh","isopggkkoli","isopgkkoli","isopgkkolipsh","isopgkkyoli","isoppgkkoli","isopsaK","isopsaM","isostandard","isot","isotsa","isott","isotteteKD","isotteteKDD","isottt","isottteteKD","isottteteKDD","isoxapo","isoxoli","isoxoxe","isoxpet","IVkatpet","IXanwxoli","IXanwxoxe","IXanwxpet","IXkat","IXkatpet","IXkatpett","IXkatpettt","IXkatpetttt","IXkattt","IXkatttt","IXkatxpet","jjput","kBMusic","kdiplabfolikla","kdiplabolikla","kebf","kebfA","kebfD","kebfM","kebfMD","kebfP","kebfPA","kebfPD","kebk","keBMusic","keboydiam","kediaf","kediafA","kediafM","kediafMD","kediafP","kediafPA","kediafPD","kediafthora","kediafthoraD","kediafthoraM","kediafthoraMD","Keh","keKD","kekebm","kentrarisma","kepaplabm","keplabf","keplabfA","keplabfD","keplabfM","keplabfMD","keplabfP","keplabfPA","keplabfPD","ketonkediam","kgiaoxe","kgoli","kgoliant","kgpoli","kgpoliant","kkBMusic","kkd","kketeMDD","kkgp","kklaoli","kklaoliomaM","kklaoxe","kklaoxetro","kklaoxetropsh","kkoliant","kkoliantt","kkolieteMD","kkolieteMDD","kkolipsh","kkoxeekspsh","kkoxek","kkoxekpsh","kkoxektro","kkoxektropsh","kkoxepsh","kkoxetro","kkoxetropsh","kkpg","kkxoli","kkxoxe","kkyoli","kkyolipsh","kkypsoliant","kkypsoliantt","kkypsolipsh","kkypsxoli","kkypsxoxe","klaapod","klaapoeteMD","klaapoeteMDD","klaapolygMD","klaapolygMDD","klaapooli","klaapopet","klaapopia","klaclr","klaelaapo","klaelaapoeteMD","klaelaapoeteMDD","klaelaapoolipsh","klaelaeteMD","klaelaeteMDD","klaelaolipsh","klaelapo","klaisoeteMD","klaisoeteMDD","klaisog","klaisogp","klaisooli","klaisoomaM","klaisooxepsh","klaisopg","klaisopsh","klaisotro","klaisotropsh","klaMD","klaolieteMD","klaolieteMDD","klaolig","klaoligp","klaolik","klaolikk","klaolikketeKD","klaolikketeKDD","klaolikkomaK","klaolikkpsh","klaolikomaM","klaolikpsh","klaolilygM","klaoliomaM","klaolipg","klaolipsh","klaolixkpsh","klaoxe","klaoxekk","klaoxekkD","klaoxepsh","klaP","klasynela","klaVIIkat","klaVIIkateteKD","klaVIIkateteKDD","klaxam","klaxamapo","klaxamela","klaxamelaapoeteKD","klaxamelaapoeteKDD","klaxameteMD","klaxameteMDD","klaxamxam","klaxamxamxam","klayoli","klayolikk","klayolikkomaK","klayolikomaM","klayoliomaM","klayolipsh","klayolixkpsh","klaypsoli","klaypsolieteMD","klaypsolieteMDD","klaypsoliomaM","klaypsolipsh","kli","klif","klifA","klifD","klifM","klifMD","klifP","klifPA","klifPD","kliM","kliMD","kliton","klitonD","klitonM","klitonMD","koliant","koliantt","kolid","kolidiplabgadiah","kolidiplabh","kolieteMD","kolieteMDD","kolig","koligadiadiplabh","kolih","koliklaeteKD","koliklaeteKDD","koliklapsh","kolinhdiah","koliomaM","koliomaMDD","kolipsh","kolitro","kolitt","kolitteteKD","kolitteteKDD","kolittt","kolittteteKD","kolittteteKDD","koliy","korapot","korapott","korapottt","korargolikk","korargolikkomaK","korBMusic","korclr","korgpkkoli","koriginal","koriso","korisott","korisottt","korklaapo","korklaiso","korklaoli","korkolikla","korolikt","koroliktt","korolikttt","korolit","korolitt","korolittt","korPDD","korwna","korwnaD","korwnaP","korwnaPD","koxeant","koxepsh","kpetanmt","kpetantt","kpeteteMD","kpeteteMDD","kpetkla","kpgoli","kpgoliant","ktsaoli","ktsaolikklaelalygM","kxoli","kxoxe","kxpet","kyoli","kyolikla","kyoliklapsh","kyoliomaMDD","kypsoli","kypsoliant","kypsoliantt","kypsolid","kypsolig","kypsoligp","kypsolikla","kypsoliklapsh","kypsoliomaMDD","kypsolipg","kypsolipsh","kypsoxe","kypsoxepsh","kypspet","kypspetkla","kypsxoli","kypsxoxe","kypsxpet","kypsyoli","kypsyolipsh","langleth","largolikk","LBMusic","lBMusic","ldiaolikk","ldias","ldiasM","ldiasnew","ldiasP","leftbrackethor","leftbracketv","lggypo","lggypot","lgolikk","lgolikkpsh","lgpypo","lgpypooli","lgpypopet","lgpypot","lgypo","lgypooli","lgypopet","lgypot","LII","lII","lIIA","LIII","lIII","lIIIA","LIV","lIV","llargolikk","llBMusic","lldias","lldiasM","lldiasP","llmegalhdiasM","lloriginal","lmart","lmegalhdias","lolikk","Loriginal","loriginal","lp","lpBMusic","lpgypo","lpgypooli","lpgypopet","lpgypot","lsyneptygmenoydias","lsyneptygmenoydiasM","ltoxodias","ltoxodiasM","ltoxomegalhdias","ltriolikk","LV","lV","LVI","lVI","LVII","lVII","LVIII","lVIII","lyfeAoli","lyfeargolikk","lyfeggypo","lyfeggypot","lyfegpypo","lyfegpypooli","lyfegpypopet","lyfegpypot","lyfegypo","lyfegypooli","lyfegypopet","lyfegypot","lyfeoli","lyfepgypo","lyfepgypooli","lyfepgypopet","lyfepgypot","lyfeypo","lyfeypot","lygclr","lypo","lypot","marclr","martAHXOY","martBAREWS","martBHXOY","martBoy","martDHXOY","martDi","martela","martG","martGa","martGHXOY","martHxos","martKe","martkoli","martkxoli","martNh","martolikk","martolixkk","martPa","martPaA","martpaplabfthoraPa","martsynela","martTESSERA","martypsoli","martypsxoli","martZw","megethos","megethosgrammatwn","megethossymbolwnisokrathmatos","megethossymbolwnmusikhs","metatopish","metBMusic","metclr","metriosxronos","metriosxronosD","mhkosparallaghs","mikrht","monogrdieshM","monogrdieshMD","monogryfesh","monogryfeshD","musictextgap","mybaselineskip","myfontdimentwo","mylinespread","myshrink","myskip","mysstretch","mywordspacefactor","na","naBMusic","nBMusic","neBMusic","neoriginal","nhanwb","nhanwbf","nhanwbfD","nhanwbfM","nhanwbfMD","nhanwbk","nhanwdiafA","nhanwdiafM","nhanwdiafP","nhanwdiafPA","nhanwdiafPD","nhanwM","nhb","nhbf","nhbfD","nhbfM","nhbfMD","nhbfthora","nhbfthoraD","nhbfthoraM","nhbfthoraMD","nhbk","nhBMusic","nhdiadim","nhdiaf","nhdiafA","nhdiafgah","nhdiafnhh","nhdiafP","nhdiafPA","nhdiafPD","Nhdiafthora","nhdiafthora","NhdiafthoraD","nhdiafthoraD","NhdiafthoraM","nhdiafthoraM","NhdiafthoraMD","nhdiafthoraMD","nhdiamartyria","nhdiamartyriaM","nhdianhm","nhdibm","nhk","nhnhdiam","nhton","nhtonb","nhtonbf","nhtonbfD","nhtonbfM","nhtonbfMD","nhtonbk","nhtondiaf","nhtondiafD","nhtondiafM","nhtondiafMD","nhtongadiam","nhtonkebm","nhtonpaplabm","nhtonton","nhtontonboydiam","nota","oktashmos","oktw","oliant","oliantk","oliantt","olianttk","oliapott","oliapottt","oliBMusic","olid","olidM","oliekspsh","olieteKDD","oligp","oligpp","olikd","oliketeMD","oliketeMDD","olikg","olikgp","olikkant","olikkAntapl","olikkantapl","olikkAntt","olikkDlyg","olikketepsaD","olikketepsaDD","olikkomaKDD","olikkpsh","olikkxAntapl","olikkxantapl","olikkxAntt","olikkxantt","olikomaM","olikomaMDD","olikpg","olikpsh","oliktt","oliktteteKDD","olikttt","olikttteteKDD","olilygM","oliomaMDD","olipeteteMDD","olipetkla","olipg","olippg","olipsh","olit","oliteteKDD","olitk","olitropsh","olitsa","olitsapsh","olitteteKD","olitteteKDD","olittk","olittt","olittteteKD","olittteteKDD","olitttk","olixkant","olixkAntapl","olixkantapl","olixkAntt","olixkd","olixkdeteKD","olixkdeteKDD","olixkk","olixkkAntapl","olixkkantapl","olixkkAntt","olixkkantt","olixkkD","olixkkxAntapl","olixkkxantapl","olixkkxAntt","olixkkxantt","olixkomaKDD","olixktt","olixkttt","olixkxAnt","olixkxAntapl","olixkxantapl","olixkxAntt","olixkxantt","olixpet","omaKA","omaMA","origiwshrink","origiwspc","origiwstr","orizontia","oxekk","oxekkekspsh","oxepsh","oxet","oxexkant","oxexkk","oxexkkD","oxexkpsh","oxexktro","oxexktropsh","oxexkxAnt","oyBMusic","pab","pabf","pabfM","pabfMD","pabk","pabmartyriaKD","paBMusic","padiaf","padiafA","padiafM","padiafMD","padiafP","padiafPA","padiafpah","padiafPD","padiafthora","padiafthoraD","padiafthoraM","padiafthoraMD","padiapam","padiatmart","padiatmartyria","Pah","pak","pakebm","papadiam","papaplabm","paplabboyh","paplabf","paplabfA","paplabfboyh","paplabfM","paplabfMD","paplabfP","paplabfPA","paplabfpah","paplabfthora","paplabfthoraD","paplabfthoraM","paplabfthoraMD","paplabfthoraPa","paplabk","paplabmartyria","paplabmartyriaMD","parallagh","parclr","parDkkoxe","pargolikk","pargolikkpsh","parkkoxe","patondiplabm","patonpadiam","patonton","pay","payapl","payclr","pBMusic","pentashmos","pentashmosD","pente","peteteMD","peteteMDD","petkla","petklapsh","pettsa","pettt","petttt","petyantt","pg","pgapoantt","pgapodeteMD","pgapodeteMDD","pgapoeteMD","pgapoeteMDD","pgapoolikla","pgapooliklapsh","pgapot","pgapotd","pgAypsoli","pgAypsoliant","pgAypsolipsh","pgBMusic","pgD","pgDD","pgela","pgelaapo","pgelad","pgeladeteMD","pgeladeteMDD","pgelakkoli","pgg","pggA","pggAkkoli","pggapo","pggapoeteMDD","pggapokkoli","pggapoomaMD","pggD","pggela","pggelaapo","pggelakkoli","pggg","pgggD","pgggkk","pgggkkoli","pgggolikk","pgggolixk","pgggP","pgggPA","pgggPD","pGggxypo","pGggxypokkoli","pGggxypokkoxe","pGggxypokkxoli","pGggxypokkxoxe","pGggypo","pGggypokkoli","pGggypokkoxe","pggiso","pggisokkoli","pggisokkoliomaM","pggisoomaM","pggkk","pggkkoli","pggkkolik","pggkoli","pggoli","pggolik","pggolixk","pggP","pggPA","pggPAisokkoli","pggPD","pggxam","pGgxypo","pGgxypokkoli","pGgxypokkoxe","pGgxypokkxoli","pGgxypokkxoxe","pggyolixk","pGgypo","pggypod","pggypodeteKD","pggypodeteKDD","pggypoeteMD","pGgypokkoli","pGgypokkoxe","pggypooli","pggypopet","pggypot","pggypoteteKD","pggypoteteKDD","pggypott","pggypotteteKD","pggypotteteKDD","pggyypo","pgK","pgkk","pgkkoli","pgkkolieteMD","pgkkolieteMDD","pgkkolik","pgkkyoli","pgkkypsoli","pgkkypsolieteMD","pgkkypsolieteMDD","pgkoli","pgkyoli","pgkyoliant","pgM","pgMD","pgoli","pgolid","pgolik","pgolikkpsh","pgolixk","pgolixkant","pgP","pgPA","pgPD","pgxam","pgxamela","pGxypo","pGxypokkxoli","pgyapo","pgyapot","pgyela","pgyelaapo","pgyoli","pgyoliant","pgyolikant","pgyolikkpsh","pgyolix","pgyolixkant","pGypo","pgypoantt","pgypod","pgypodt","pgypoeteMD","pgypoeteMDD","pgypogggkkoli","pgypoggkkoli","pgypoggpkkoli","pgypogkkoli","pgypogkkolieteMD","pgypogkkolieteMDD","pgypogpgkkoli","pgypogpkkoli","pGypokkoli","pGypokkxoli","pgypol","pgypooli","pgypoolikla","pgypopet","pgypopeteteMD","pgypopeteteMDD","pgypopetkla","pgypopggkkoli","pgypopgkkoli","pgypot","pgypoteteKD","pgypoteteKDD","pgypott","pgypotteteKD","pgypotteteKDD","pgypskoli","pgypsoli","pgypsoliant","pgyxam","pgyxamapo","pgyypo","piaclr","piaM","pl","plagios","platosiso","plBMusic","plh","ppg","ppgBMusic","ppgkkoli","ppgkkolik","ppgkkyoli","ppgkkypsoli","ppgM","ppgolixk","ppgolixkant","ppgP","ppgPD","ppgypogkkoli","prosdexia","pshclr","pshf","pshfistonanoiktoM","pshfistonM","RBMusic","rboxnew","rboxold","redBMusic","rightbrackethor","rightbracketv","rulparbox","rulparboxI","sBMusic","scalesymbolwn","spa","spaBMusic","spafA","spafD","spafP","spafPA","spafPD","spathD","spathh","spathhD","staclr","staP","staPD","stayros","stayrosD","synBMusic","syndesmos","synelagkkolieteMD","synelagkkolieteMDD","synelagpkkoli","synelagpkkolieteMD","synelagpkkolieteMDD","synelakkoxe","synelakkxoli","synelakkxoxe","synelapgkkoli","synelapgkkolieteMD","synelapgkkolieteMDD","synelaxoxe","synelaxpet","tBMusic","templetterspace","tempoclr","temptextbold","temptextcolor","temptextscale","temptextslant","temptextstretch","tesdidiafh","teskediafh","tessera","tesseraA","thaBMusic","thafA","thafD","thafM","thafP","thafPA","thafPD","thak","thBMusic","thebash","thedivisionresult","themaaployn","themaaploynKD","themaaploynM","thheight","thickagkylhhor","thickagkylhv","thoriginal","tK","ton","tonoi","tonos","tonton","tos","tria","triaA","triargon","triargosxronos","triargosxronosD","triBMusic","trigorosxronos","trigorosxronosD","trigrdieshM","trigrdieshMD","trigryfesh","trihmiargon","triMD","triolikk","triplhM","troclr","tsaA","tsaapo","tsaapooli","tsaapooxe","tsaapooxetro","tsaapooxetropsh","tsaapopet","tsaapotro","tsaela","tsaiso","tsaKD","tsaoli","tsaolieteMDD","tsaolikk","tsaoxe","tsaoxetro","tsaoxetropsh","tsaoxexk","tsaoxexkpsh","tsaoxexkpshtro","tsaPD","tsaxam","tsaxamxam","tsaxamxamxam","tsaypsoli","ttgadia","ttgadiatmartyria","ttK","ttKDmart","ttm","ttmar","ttmart","ttnhdiatmartyria","ttpaplabmartyria","ttqmartyria","tttK","ttttM","Vanwoxe","Vanwxoli","Vanwxoxe","VIanwxoli","VIanwxoxe","VIanwxpet","VIIanwoli","VIIanwxoli","VIIanwxoxe","VIIanwxpet","VIIIanwxoli","VIIIanwxoxe","VIIIanwxpet","VIIIkat","VIIIkatpet","VIIIkatxpet","VIIkat","VIIkateteKD","VIIkateteKDD","VIIkatg","VIIkatpet","VIIkatxpet","VIkat","VIkatxpet","Vkat","xamant","xamantt","xamapod","xamapodeteKDD","xamapopet","xamapott","xamapotteteKD","xamapotteteKDD","xamd","xamdeteMDD","xamelaapoeteKD","xamelaapoeteKDD","xamelaapogp","xamelaapopg","xamelaapott","xamelaapotteteKD","xamelaapotteteKDD","xamelaxpet","xamg","xamgkkoli","xamgp","xamkkxoli","xamkkxoxe","xamm","xamolit","xamomaMDD","xampg","xamtt","xamttt","xamxamapopettt","xamxamapopetttt","xamxamapot","xamxamapott","xamxamapottt","xamxamapoxpet","xamxamelaapo","xamxamelat","xamxamelatt","xamxamelattt","xamxamxam","xamxamxamapo","xamxamxamela","xamxamxamelaapo","xamxamxamelaapot","xamxamxamelaapott","xamxamxamelaapottt","xamxamxpet","xamxelaxapo","xamxelaxapopet","xamxoli","xamxoxe","Xanwxoli","Xanwxoxe","Xanwxpet","XIanwxoli","XIanwxoxe","XIanwxpet","XIIanwxoli","XIIanwxoxe","XIIanwxpet","XIIIanwxoli","XIIIanwxpet","XIVanwxoli","XIVanwxpet","Xkat","Xkattt","Xkatttt","XVkattt","XVkatttt","y","yA","yAgkkoli","yAgpkkoli","yAkolikla","yAkoliklapsh","yApgkkoli","yapo","yapogkkoli","yapogpkkoli","yapopgkkoli","yAypsoli","yBMusic","ydclr","yDD","yela","yelaapo","yfen","yfenK","yfenKA","yfenKAvariableheight","yfenPA","yfenPAvariableheight","yfesh","yfeshD","ygkkypsoli","ykk","ykkoli","ykkolipsh","yklaapo","ykypsoli","yoli","yoliant","yolieteMD","yolieteMDD","yolig","yoligp","yolik","yolikk","yolikkpsh","yolikla","yolikpsh","yoliomaMDD","yolipet","yolipg","yolipsh","yolixk","yolixkomaKDD","yolixkpsh","yP","yPD","yPDD","ypet","ypetkla","ypoapl","ypoBMusic","ypod","ypogkkoli","ypogkkolieteMD","ypogkkolieteMDD","ypogp","ypogpkkoli","ypokkxoli","ypokkxoxe","ypopetkla","ypopg","ypopgkkoli","ypot","ypott","ypottt","ypoxoli","ypoxoxe","ypoxpet","ypsAgkkoli","ypsAgoli","ypsAgolipsh","ypsAgpkkoli","ypsAgpoli","ypsAgpolipsh","ypsAkkoli","ypsAkkolipsh","ypsAkkoxe","ypsAkkoxepsh","ypsAkkxoli","ypsAklaoli","ypsAklaolieteMD","ypsAklaolieteMDD","ypsAklaoliomaM","ypsAklaolipsh","ypsAklayoliomaM","ypsAoliant","ypsAoliantt","ypsAolid","ypsAolieteMD","ypsAolieteMDD","ypsAolig","ypsAoligp","ypsAolikla","ypsAoliklapsh","ypsAoliomaMDD","ypsAolipg","ypsAolipsh","ypsAolitt","ypsAolitteteKD","ypsAolitteteKDD","ypsAolittt","ypsAoxepsh","ypsApet","ypsApetantt","ypsApeteteMD","ypsApeteteMDD","ypsApetkla","ypsApgkkoli","ypsApgoli","ypsApgolipsh","ypsAxoli","ypsAxoxe","ypsAxpet","ypsAyoli","ypsAyoliomaMDD","ypsAyolipsh","ypsDolikla","ypsDolipsh","ypsDoxe","ypsDxoli","ypsDxoxe","ypsDxpet","ypsgkkoli","ypsgpkkoli","ypskklaoli","ypskkolipsh","ypskkoxepsh","ypskkxoli","ypskkxoxe","ypskkypsoli","ypskkypsolikla","ypskkypsoliklapsh","ypskkypsoxe","ypskkypspet","ypskkypsxoxe","ypskkypsxpet","ypsklaoli","ypsklaolieteMD","ypsklaolieteMDD","ypsklaoliomaM","ypsklaolipsh","ypsklayoliomaM","ypsklaypsoli","ypsklaypsoliomaM","ypsklaypsoxe","ypsklaypsoxeomaM","ypskoliant","ypskoliantt","ypskolid","ypskolig","ypskoligadiah","ypskoligp","ypskolikla","ypskoliomaMDD","ypskolipg","ypskolipsh","ypskolitt","ypskolitteteKD","ypskolitteteKDD","ypskolittt","ypskolittteteKD","ypskolittteteKDD","ypskolizwanwdiah","ypskolizwtondiah","ypskolizwyh","ypskoxe","ypskoxepsh","ypskpet","ypskpetantt","ypskpetkla","ypskxoli","ypskxoxe","ypskxpet","ypskyoli","ypskypsoli","ypskypsoxe","ypskypspet","ypskypsxoli","ypskypsxoxe","ypsoliant","ypsoliantt","ypsolid","ypsolieteMD","ypsolieteMDD","ypsolig","ypsoligp","ypsolih","ypsoliklapsh","ypsoliomaMDD","ypsolipg","ypsolipsh","ypsolit","ypsolitt","ypsolitteteKD","ypsolitteteKDD","ypsolittt","ypsolittteteKDD","ypsosiso","ypsosisokrathmatos","ypsosmartyrias","ypsosrule","ypsosxronou","ypsoxepsh","ypspet","ypspetantt","ypspetkla","ypspgkkoli","ypsxkh","ypsxkkypsoli","ypsxkkypsoxe","ypsxkkypspet","ypsxkkypsxoli","ypsxkkypsxoxe","ypsxkkypsxpet","ypsxkoli","ypsxkoxe","ypsxkpet","ypsxkxoli","ypsxkxoxe","ypsxkxpet","ypsxkypsoli","ypsxkypsoxe","ypsxkypspet","ypsxkypsxoli","ypsxkypsxoxe","ypsxkypsxpet","ypsxoli","ypsxoxe","ypsxpet","ypsyoli","ypsyolipsh","ypsypskkypsoli","ypsypskkypspet","ypsypskoli","ypsypskoxe","ypsypskpet","ypsypskxoli","ypsypskypsolik","ypsypskypsolipet","ypsypskypspet","ypsypsoli","ypsypsoliant","ypsypsoliantt","ypsypsolikla","ypsypsoliklapsh","ypsypsoliomaMDD","ypsypsolipsh","ypsypsoxe","ypsypspet","ypsypspetkla","ypsypsxkoli","ypsypsxkpet","ypsypsxkxoli","ypsypsxkxpet","ypsypsxoli","ypsypsxoxe","ypsypsxpet","ypsypsypsoli","ypsypsypsoxe","ypsypsypspet","ypsypsypsxoli","ypsypsypsxoxe","ypsypsypsxpet","ysyn","ysynBMusic","yxam","yxamapo","yypo","yypsoli","yypspet","zwanwdiaf","zwanwdiafD","zwanwy","zwanwyD","zwanwyf","zwanwyfD","zwanwyfesh","zwanwyfeshD","zwanwyfeshM","zwanwyfeshMD","zwanwyfM","zwanwyfMD","zwanwyM","zwanwyMD","zwBMusic","zwdia","zwdiaf","zwdiafA","zwdiafP","zwdiafPA","zwdiafPD","Zwdiafthora","ZwdiafthoraD","zwdiam","zwdiatmartyria","Zwh","zwton","zwtonboydiam","zwtondiaf","zwtondiafD","zwtondibm","zwtondiplabm","zwtonton","zwtontonboydiam","zwtony","zwtonyD","zwtonyf","zwtonyfD","zwtonyfesh","zwtonyfeshD","zwtonyfeshM","zwtonyfeshMD","zwtonyfM","zwtonyfMD","zwtonyM","zwtonyMD","zwy","zwyf","zwyfA","zwyfD","zwyfM","zwyfMD","zwyfP","zwyfPA","zwyfPD","zwyM","zwyMD","zyg","zygf","zygfA","zygfD","zygfM","zygfMD","zygfP","zygfPA","zygfPD","zygM","zygMD","zygos","zygosD","zygosM","zygosMD"]}
-,
-"cabin.sty":{"envs":{},"deps":["ifxetex.sty","ifluatex.sty","textcomp.sty","xkeyval.sty","fontenc.sty","fontaxes.sty","mweights.sty"],"cmds":["cabin","cabincondensed","cabinfamily"]}
-,
-"caesar_book.cls":{"envs":["fullwidth"],"deps":["amsmath.sty","mhchem.sty","s-book.cls","sidenotes.sty","morefloats.sty","marginfix.sty","microtype.sty","geometry.sty","ifluatex.sty","mathpazo.sty","helvet.sty","beramono.sty","fontenc.sty","titlesec.sty","titletoc.sty","fancyhdr.sty","ragged2e.sty","enumitem.sty","ifthen.sty","textcase.sty","color.sty"],"cmds":["maketitlepage","marginparstyle","newthought","overhang","publisher","sidecite","thesis","DH","dh","dj","DJ","guillemetleft","guillemetright","guillemotleft","guillemotright","guilsinglleft","guilsinglright","Hwithstroke","hwithstroke","k","NG","ng","quotedblbase","quotesinglbase","textogonekcentered","textquotedbl","th","TH"]}
-,
-"caladea.sty":{"envs":{},"deps":["ifxetex.sty","ifluatex.sty","textcomp.sty","xkeyval.sty"],"cmds":["caladea","caladeafamily"]}
-,
-"calc.sty":{"envs":{},"deps":{},"cmds":["setcounter","addtocounter","setlength","addtolength","real","ratio","widthof","heightof","depthof","totalheightof","settototalheight","maxof","minof"]}
-,
-"calcage.sty":{"envs":{},"deps":["fnumprint.sty","datenumber.sty","fp.sty","calc.sty","xkeyval.sty","kvoptions.sty","xifthen.sty"],"cmds":["calcage"]}
-,
-"calctab.sty":{"envs":["calctab","xcalctab"],"deps":["alphalph.sty","booktabs.sty","eurosym.sty","xcolor.sty","numprint.sty","xkeyval.sty","ifthen.sty","fltpoint.sty","xstring.sty","colortbl.sty"],"cmds":["amount","perc","add","inrule","ctcurrency","ctdescription","ctontranslation","ctheaderone","ctheadertwo","ctsep"]}
-,
-"calculation.sty":{"envs":["calculation","subcalculation"],"deps":["delarray.sty"],"cmds":["step","comment","doNumber","stepsymbol","Hblockopen","Hblockclose","Hlineopen","Hlineclose","Hindent","Hsep","calculcolsep","Hposv"]}
-,
-"calculator.sty":{"envs":{},"deps":{},"cmds":["numberPI","numberTHREEHALFPI","numberQUARTERPI","numberSIXTHPI","numberE","numberETWO","numberLOGTEN","numberGOLD","numberSQRTTWO","numberSQRTFIVE","numberCOSXXX","numberHALFPI","numberTHIRDPI","numberFIFTHPI","numberTWOPI","numberINVE","numberINVETWO","numberINVGOLD","numberSQRTTHREE","numberCOSXLV","COPY","GLOBALCOPY","MAX","MIN","ADD","SUBTRACT","MULTIPLY","DIVIDE","SQUARE","CUBE","POWER","ABSVALUE","INTEGERPART","FLOOR","FRACTIONALPART","TRUNCATE","ROUND","INTEGERDIVISION","INTEGERQUOTIENT","MODULO","GCD","LCM","FRACTIONSIMPLIFY","SQUAREROOT","SQRT","EXP","LOG","SIN","COS","TAN","COT","DEGREESSIN","DEGREESCOS","DEGREESTAN","DEGREESCOT","DEGtoRAD","RADtoDEG","REDUCERADIANSANGLE","REDUCEDEGREESANGLE","SINH","COSH","TANH","COTH","ARCSIN","ARCCOS","ARCTAN","ARCCOT","ARSINH","ARCOSH","ARTANH","ARCOTH","LENGTHDIVIDE","LENGTHADD","LENGTHSUBTRACT","VECTORSIZE","VECTORCOPY","VECTORGLOBALCOPY","VECTORADD","VECTORSUB","SCALARVECTORPRODUCT","SCALARPRODUCT","DOTPRODUCT","VECTORNORM","VECTORPRODUCT","CROSSPRODUCT","UNITVECTOR","VECTORABSVALUE","TWOVECTORSANGLE","MATRIXSIZE","MATRIXCOPY","MATRIXGLOBALCOPY","TRANSPOSEMATRIX","MATRIXADD","MATRIXSUB","SCALARMATRIXPRODUCT","MATRIXVECTORPRODUCT","VECTORMATRIXPRODUCT","MATRIXPRODUCT","DETERMINANT","INVERSEMATRIX","MATRIXABSVALUE","SOLVELINEARSYSTEM"]}
-,
-"calculus.sty":{"envs":{},"deps":["calculator.sty"],"cmds":["ZEROfunction","IDENTITYfunction","SQUAREfunction","SQRTfunction","EXPfunction","COSfunction","TANfunction","COSHfunction","TANHfunction","HEAVISIDEfunction","ONEfunction","RECIPROCALfunction","CUBEfunction","LOGfunction","SINfunction","COTfunction","SINHfunction","COTHfunction","ARCCOSfunction","ARCTANfunction","ARCOSHfunction","ARTANHfunction","ARCSINfunction","ARCCOTfunction","ARSINHfunction","ARCOTHfunction","CONSTANTfunction","SUMfunction","SUBTRACTfunction","PRODUCTfunction","QUOTIENTfunction","COMPOSITIONfunction","SCALEfunction","SCALEVARIABLEfunction","POWERfunction","LINEARCOMBINATIONfunction","newlpoly","newqpoly","newcpoly","renewlpoly","renewqpoly","renewcpoly","ensurelpoly","ensureqpoly","ensurecpoly","forcelpoly","forceqpoly","forcecpoly","PARAMETRICfunction","VECTORfunction","POLARfunction","newfunction","renewfunction","ensurefunction","forcefunction","newvectorfunction","renewvectorfunction","ensurevectorfunction","forcevectorfunction","newpolarfunction","renewpolarfunction","ensurepolarfunction","forcepolarfunction"]}
-,
-"calligra.sty":{"envs":{},"deps":{},"cmds":["calligra","textcalligra"]}
-,
-"callouts.sty":{"envs":["annotate"],"deps":["tikz.sty","tikzlibrarycalc.sty","xifthen.sty","kvoptions.sty"],"cmds":["helpgrid","callout","note","arrow","focol","bgcol","arcol","xtic","ytic"]}
-,
-"cals.sty":{"envs":["calstable"],"deps":{},"cmds":["colwidths","brow","erow","cell","thead","tfoot","tbreak","lastrule","alignL","alignC","alignR","nullcell","spancontent"]}
-,
-"cancel.sty":{"envs":{},"deps":{},"cmds":["cancel","bcancel","xcancel","cancelto","CancelColor"]}
-,
-"canoniclayout.sty":{"envs":{},"deps":["etoolbox.sty","pict2e.sty","xcolor.sty"],"cmds":["currentfontletters","charactersperpage","CLstartdrawings","CLstopdrawings","CLshape","CLinvshape","CLinner","CLouter","CLtop","CLbottom","CLx","CLxx","CLcirclecenterX","CLcirclecenterY","CLcircleradius","CLcirclediameter","CLpageW","CLdiagX","CLdiagY","CLlly","CLllLx","CLllRx","CLdrawing"]}
-,
-"cantarell.sty":{"envs":{},"deps":["fontaxes.sty","ifluatex.sty","ifxetex.sty","xkeyval.sty"],"cmds":["cantarell","cantarellfamily","fcafamily"]}
-,
-"capt-of.sty":{"envs":{},"deps":{},"cmds":["captionof"]}
-,
-"captcont.sty":{"envs":{},"deps":{},"cmds":["caption","captcont","iffiguretopcap","figuretopcaptrue","figuretopcapfalse","iftabletopcap","tabletopcaptrue","tabletopcapfalse"]}
-,
-"captdef.sty":{"envs":{},"deps":{},"cmds":["DeclareCaption","figcaption","tabcaption"]}
-,
-"caption-light.sty":{"envs":{},"deps":["caption3.sty","setspace.sty","sansmath.sty","ragged2e.sty"],"cmds":["caption","captionof","setcaptiontype"]}
-,
-"caption.sty":{"envs":["captionblock","captiongroup","captiongroup*","longtable*"],"deps":["caption3.sty","setspace.sty","sansmath.sty","ragged2e.sty"],"cmds":["caption","captionof","captionlistentry","ContinuedFloat","theContinuedFloat","piccaptiontype","captionbox","captiontext","flushsubcaptionlistentries","nextfloat","phantomcaption","setcaptionsubtype","setcaptiontype","continuedfloat","thecontinuedfloat"]}
-,
-"caption3.sty":{"envs":{},"deps":["keyval.sty"],"cmds":["captionsetup","DeclareCaptionStyle","clearcaptionsetup","centerfirst","centerlast","showcaptionsetup","bothIfFirst","bothIfSecond","DeclareCaptionFont","DeclareCaptionFormat","DeclareCaptionJustification","DeclareCaptionLabelFormat","DeclareCaptionLabelSeparator","DeclareCaptionListFormat","DeclareCaptionTextFormat","DeclareCaptionSubType","AfterCaptionPackage","AtBeginCaption","AtCaptionPackage","AtEndCaption","DeclareCaptionOption","DeclareCaptionOptionNoValue","SetCaptionDefault","SetCaptionFallback","captionfont","captionlabelfont","captiontextfont","captionmargin","captionsize","DeclareCaptionType","DeclareCaptionBox","DeclareCaptionLength","DeclareCaptionSinglelinecheck","ForEachCaptionSubType","ForEachCaptionType","IfCaptionOptionCheck","captionnewline","DeclareCaptionPosition","DeclareCaptionAutoPosition","captionlisttype","ifsinglelinecaption","singlelinecaptionfalse","singlelinecaptiontrue","AtCaptionSingleLineCheck"]}
-,
-"carbohydrates.sty":{"envs":{},"deps":["etoolbox.sty","chemfig.sty","xcolor.sty","tikzlibrarydecorations.pathmorphing.sty"],"cmds":["carbohydrate","newaldose","renewaldose","allose","altrose","glucose","mannose","gulose","idose","galactose","talose","ribose","arabinose","xylose","lyxose","desoxyribose","erythrose","threose","glycerinaldehyde","setcarbohydrates","setcarbohydratedefaults"]}
-,
-"carlito.sty":{"envs":{},"deps":["ifxetex.sty","ifluatex.sty","xkeyval.sty","textcomp.sty","fontaxes.sty","fontenc.sty"],"cmds":["carlito","carlitoOsF","carlitoLF","carlitoTLF","carlitoTOsF","sufigures","textsu","infigures","textin","carlitofamily"]}
-,
-"carolmin.sty":{"envs":{},"deps":{},"cmds":["textcmin","cminfamily","Tienc"]}
-,
-"carom.sty":{"envs":{},"deps":["chemstr.sty","hetarom.sty","hetaromh.sty"],"cmds":["anthracenev","benzeneh","benzenev","bzdrh","bzdrv","cyclohexaneh","cyclohexanev","decalineh","decalinev","decalinevb","decalinevt","hanthracenev","hphenanthrenev","naphdrh","naphdrv","naphdrvb","naphdrvt","naphthaleneh","naphthalenev","naphthalenevb","naphthalenevt","phenanthrenev","steroid","steroidchain","tetralineh","tetralinev","tetralinevb","tetralinevt"]}
-,
-"cartonaugh.sty":{"envs":["cartonaugh"],"deps":["luatex.sty","iftex.sty","tikz.sty","tikzlibrarycalc.sty","tikzlibrarymatrix.sty","xparse.sty","xstring.sty"],"cmds":["autoterms","indeterminants","manualterms","maxterms","minterms","terms","implicant","implicantedge","implicantcorner","implicantspread","resetimplicantspread","changecolor"]}
-,
-"cas-common.sty":{"envs":["Abstract"],"deps":["moreverb.sty","wrapfig.sty"],"cmds":["address","affiliation","author","bio","cormark","corref","cortext","credit","ead","endbio","fnmark","fnref","fntext","newdefinition","newproof","nonumnote","printcredits","sep","shortauthors","shorttitle","title","tnotemark","tnotetext","WrapFigure","MSC","abovebioskip","abstracttitle","accepted","addfiglines","aline","aurl","bibfont","blstr","casauhlbox","casbiographyfont","cascaptionbox","casgrabsbox","city","cnty","Columnwidth","ContribRole","creditauthor","dashrule","dept","divn","dst","dstrut","eadauthor","eadsep","emailauthor","endthead","facebookauthor","fax","firstname","FullWidth","gplusauthor","hidebiobox","hst","hstrut","invparsename","JEL","keywordtitle","keywordtitlesep","lastpage","leftMargin","linkedinauthor","listAff","LongMaketitleBox","MaketitleBox","NewLabel","orcidauthor","PACS","paraindent","parsename","phone","pprintMaketitle","printaddrinfoot","printcornotes","printemails","printfacebook","printFirstPageNotes","printfnotes","printgplus","printlinkedin","printmaltese","printnonumnotes","printorcid","printtnotes","printtwitter","printurls","processAffNum","processAffRef","processbreakafter","processFnRef","ProcessLongTitleBox","processTmarks","published","qed","RCSdate","RCSfile","RCSversion","received","recto","ResetMarks","revised","sectionfont","sfbc","sfn","shortauthor","sitem","ssectionfont","sssectionfont","ssssectionfont","ssssparaindent","sssssectionfont","stmaddress","stmAddrSetup","stmAffSetup","stmaffsetup","stmausetup","stmauthors","stmAuthorSetup","stmclbsetup","stmcollab","stmLabel","stmRef","subparaindent","surname","tabref","tblwidth","theaff","theau","thecnote","theead","thefnote","thetnote","twitterauthor","urlauthor","verso","wfighcorr","wfighspace","wfigvcorr","wfigvspace","wfigwidth","wrAun","wrAux","writemarks","wrShipAun","wrShipAux","xst","xstrut"]}
-,
-"cas-dc.cls":{"envs":{},"deps":["graphicx.sty","amsmath.sty","amsfonts.sty","amssymb.sty","expl3.sty","xparse.sty","etoolbox.sty","balance.sty","booktabs.sty","makecell.sty","multirow.sty","array.sty","colortbl.sty","dcolumn.sty","stfloats.sty","xspace.sty","xstring.sty","footmisc.sty","xcolor.sty","hyperref.sty","cas-common.sty","fontenc.sty","stix.sty","inconsolata.sty","geometry.sty"],"cmds":["ABD","blstr","casfinallayoutfalse","casfinallayouttrue","casreviewlayoutfalse","casreviewlayouttrue","comma","dcfalse","dctrue","ifcasfinallayout","ifcasreviewlayout","ifdc","iflongmktitle","ifsc","longmktitlefalse","longmktitletrue","scfalse","sctrue","theblind","tnotesep","DH","dh","dj","DJ","guillemetleft","guillemetright","guillemotleft","guillemotright","guilsinglleft","guilsinglright","Hwithstroke","hwithstroke","k","NG","ng","quotedblbase","quotesinglbase","textogonekcentered","textquotedbl","th","TH"]}
-,
-"cas-sc.cls":{"envs":{},"deps":["graphicx.sty","amsmath.sty","amsfonts.sty","amssymb.sty","expl3.sty","xparse.sty","etoolbox.sty","balance.sty","booktabs.sty","makecell.sty","multirow.sty","array.sty","colortbl.sty","dcolumn.sty","stfloats.sty","xspace.sty","xstring.sty","footmisc.sty","xcolor.sty","hyperref.sty","cas-common.sty","fontenc.sty","stix.sty","inconsolata.sty","geometry.sty","setspace.sty"],"cmds":["ABD","blstr","casfinallayoutfalse","casfinallayouttrue","casreviewlayoutfalse","casreviewlayouttrue","comma","dcfalse","dctrue","ifcasfinallayout","ifcasreviewlayout","ifdc","iflongmktitle","ifsc","longmktitlefalse","longmktitletrue","scfalse","sctrue","theblind","tnotesep","DH","dh","dj","DJ","guillemetleft","guillemetright","guillemotleft","guillemotright","guilsinglleft","guilsinglright","Hwithstroke","hwithstroke","k","NG","ng","quotedblbase","quotesinglbase","textogonekcentered","textquotedbl","th","TH"]}
-,
-"cascade.sty":{"envs":{},"deps":["l3keys2e.sty"],"cmds":["Cascade","ShortCascade","CascadeOptions","Edacsac","ShortEdacsac"]}
-,
-"cascadia-code.sty":{"envs":{},"deps":["xkeyval.sty","fontenc.sty","textcomp.sty","ifthen.sty","mweights.sty","fontaxes.sty"],"cmds":["sufigures","supfigures","textsu","textsup","textsuperior"]}
-,
-"cases.sty":{"envs":["subequations","subeqnarray"],"deps":{},"cmds":["thesubequation","themainequation"]}
-,
-"casiofont.sty":{"envs":{},"deps":["iftex.sty","fontspec.sty"],"cmds":["casio","textcasio","Shift","Alpha","UpArrow","LeftArrow","DownArrow","RightArrow","Setup","Menu","CJKMenu","CJKOn","Optn","LineFrac","Calc","casioY","dydx","Abs","casioSum","casioProd","casioIntegral","Simp","casioX","casioOdot","casioObar","casioDblParen","FracMult","Frac","CubeRoot","SquareRoot","CubeParen","Cube","nRoot","nExp","nTen","eExp","nLog","casioLog","casioLn","logParen","divR","Factorial","InverseSin","minusParen","DegRadGrad","Inverse","InverseParen","Sen","casioSin","InverseCos","InverseTan","casioCos","casioTan","Sto","BackArrow","iParen","angleParen","casioAbs","Eng","casioLParen","casioRParen","CommaParen","MixedFrac","switchMixedFrac","Mminus","Mplus","Del","Times","Plus","casioAC","Divide","Minus","casioComma","casioDot","casioPi","xTenx","Percent","Ans","Exe","Sim","Equal","Zero","One","Two","Three","Four","Five","Six","Seven","Eight","Nine","UnknownA","UnknownB"]}
-,
-"catchdq.sty":{"envs":{},"deps":["actcodes.sty"],"cmds":["catchdqs","asciidq","asciidqtd","enldq","enrdq","endqtd","dqtd","dedqtd"]}
-,
-"catchfile.sty":{"envs":{},"deps":["infwarerr.sty","ltxcmds.sty","etexcmds.sty"],"cmds":["CatchFileDef","CatchFileEdef"]}
-,
-"catchfilebetweentags.sty":{"envs":{},"deps":["etex.sty","etoolbox.sty","ltxcmds.sty","catchfile.sty"],"cmds":["CatchFileBetweenTags","ExecuteMetaData","CatchFileBetweenDelims"]}
-,
-"catechis.sty":{"envs":["catcitations"],"deps":["paralist.sty"],"cmds":["catques","catcomment","catexplic","restoreindents","catcitetitle","catcite","scripture","thecatquesnum","catquesnumwd","catquesindent","catqueshindent","catquessty","catquesnumsty","catansindent","catanshindent","catanssty","commindent","commhindent","catcommsty","explicindent","explichindent","catexplicsty","catcitetitleword","catcitetitlesty","catcitationbefskip","catcitationaftskip","catciteindent","catcitehindent","catcitesty","catsrcindent","catsrchindent","catsrcsty"]}
-,
-"causets.sty":{"envs":{},"deps":["tikz.sty","tikzlibraryexternal.sty"],"cmds":["tikzcausetsset","pcauset","pcausetP","pcausetL","pcausetX","rcauset","rcausetP","rcausetL","rcausetX","causet","causetP","causetL","causetX","causetFence","causetCrown","causetTileSize","causetRegionLine","causetGridLine","causetEventSize","causetLinkWidth","causetBrokenLinkGap","ifcausetsDrawPermutation","causetsDrawPermutationtrue","causetsDrawPermutationfalse","ifcausetsDrawLinks","causetsDrawLinkstrue","causetsDrawLinksfalse","ifcausetsBreakLinks","causetsBreakLinkstrue","causetsBreakLinksfalse","ifcausetsDrawSpatialLinks","causetsDrawSpatialLinkstrue","causetsDrawSpatialLinksfalse","ifcausetsDrawLabels","causetsDrawLabelstrue","causetsDrawLabelsfalse","ifcausetsDrawULabels","causetsDrawULabelstrue","causetsDrawULabelsfalse","ifcausetsDrawVLabels","causetsDrawVLabelstrue","causetsDrawVLabelsfalse","ifcausetsNameExternal","causetsNameExternaltrue","causetsNameExternalfalse","causetfile","drawpcauset","drawrcauset","drawcauset"]}
-,
-"ccaption.sty":{"envs":{},"deps":{},"cmds":["captiondelim","captionnamefont","captiontitlefont","captionstyle","centerlastline","flushleftright","hangcaption","indentcaption","normalcaption","changecaptionwidth","normalcaptionwidth","captionwidth","precaption","postcaption","contcaption","legend","abovelegendskip","belowlegendskip","namedlegend","newfixedcaption","renewfixedcaption","providefixedcaption","bitwonumcaption","bionenumcaption","bicaption","bicontcaption","midbicaption","longbitwonumcaption","longbionenumcaption","longbicaption","contsubtop","contsubbottom","subconcluded","subtop","subbottom","newsubfloat","contsubfigure","contsubtable","newfloatlist","newfloatentry","setnewfloatindents","newfloatpagesoff","newfloatpageson","cftdot","cftdotfill","cftdotsep"]}
-,
-"ccfonts.sty":{"envs":{},"deps":{},"cmds":["upDelta","upOmega"]}
-,
-"ccicons.sty":{"envs":{},"deps":["xkeyval.sty"],"cmds":["ccLogo","ccAttribution","ccShareAlike","ccNoDerivatives","ccNonCommercial","ccNonCommercialEU","ccNonCommercialJP","ccZero","ccPublicDomain","ccPublicDomainAlt","ccSampling","ccShare","ccRemix","ccCopy","ccby","ccbysa","ccbynd","ccbync","ccbynceu","ccbyncjp","ccbyncsa","ccbyncsaeu","ccbyncsajp","ccbyncnd","ccbyncndeu","ccbyncndjp","cczero","ccpd"]}
-,
-"cclicenses.sty":{"envs":{},"deps":["rotating.sty"],"cmds":["cc","ccnd","ccby","ccnc","ccsa","by","bynd","byncnd","bync","byncsa","bysa","nd","ndnc","nc","ncsa","sa","chardim","hdim","htmp","hpos","vpos","origfontfamily","origfontseries"]}
-,
-"ccycle.sty":{"envs":{},"deps":["chemstr.sty"],"cmds":["adamantane","BackGroundColor","bicycheph","bicychepv","bornane","chair","chairi","cyclobutane","frontthicktothinfalse","frontthicktothintrue","hadamantane","iffrontthicktothin","thinLineWidth","ifmolfront","molfrontfalse","molfronttrue","yladamanposition","ylbornaneposition","ylchairiposition","ylchairposition","ylhadamanposition"]}
-,
-"cdcmd.sty":{"envs":{},"deps":{},"cmds":["newcondition","setcondition","clearcondition","conditionif","conditioncmd","econditionif","econditioncmd","conditioncase","conditioncaseTF","econditioncase","econditioncaseTF","newconditioncommand","renewconditioncommand","provideconditioncommand","declareconditioncommand","neweconditioncommand","reneweconditioncommand","provideeconditioncommand","declareeconditioncommand","NewConditionCommand","RenewConditionCommand","ProvideConditionCommand","DeclareConditionCommand","NewExpandableConditionCommand","RenewExpandableConditionCommand","ProvideExpandableConditionCommand","DeclareExpandableConditionCommand"]}
-,
-"cellprops.sty":{"envs":{},"deps":["mdwtab.sty","xcolor.sty","expl3.sty","xparse.sty"],"cmds":["cellprops","cellpropsclass"]}
-,
-"cellspace.sty":{"envs":{},"deps":["ifthen.sty","array.sty","calc.sty","xkeyval.sty","amsmath.sty"],"cmds":["cellspacetoplimit","cellspacebottomlimit","bcolumn","ecolumn","addparagraphcolumntypes"]}
-,
-"censor.sty":{"envs":{},"deps":["pbox.sty","tokcycle.sty"],"cmds":["blackout","blackoutenv","ccenspace","censor","censorbox","censordot","censormathgreekfalse","censormathgreektrue","censorrule","censorruledepth","censorruleheight","censorversiondate","censorversionnumber","censpace","endblackoutenv","endxblackoutenv","expandargfalse","expandargtrue","ifcensormathgreek","ifexpandarg","RestartCensoring","spacelap","StopCensoring","xblackout","xblackoutenv"]}
-,
-"centeredline.sty":{"envs":{},"deps":{},"cmds":["centeredline"]}
-,
-"centerlastline.sty":{"envs":["centerlastline"],"deps":{},"cmds":["centerlastline","endcenterlastline"]}
-,
-"centernot.sty":{"envs":{},"deps":{},"cmds":["centernot"]}
-,
-"cesenaexam.cls":{"envs":{},"deps":["etoolbox.sty","pgfkeys.sty","pgfopts.sty","geometry.sty","graphicx.sty","tikz.sty","circuitikz.sty","tikzlibraryintersections.sty","tikzlibrarypositioning.sty","tikzlibraryfit.sty","tikzlibrarycalc.sty","tikzlibrarythrough.sty","tikzlibrarybabel.sty","tikzlibrarydecorations.pathmorphing.sty","tikzlibrarybackgrounds.sty","fancyhdr.sty","titlesec.sty","newtxtext.sty","newtxmath.sty"],"cmds":["examsection","boxempty","boxcheck","examparts","maketitle","examtwoblocks","examtwoblockstop","examoneblocktop","sectionfont","cesenaexamversion","boxlen","lastboxlen","minheighttypebox"]}
-,
-"cesenaexam.sty":{"envs":{},"deps":["etoolbox.sty","graphicx.sty","tikz.sty","circuitikz.sty","tikzlibraryintersections.sty","tikzlibrarypositioning.sty","tikzlibraryfit.sty","tikzlibrarycalc.sty","tikzlibrarythrough.sty","tikzlibrarybabel.sty","tikzlibrarydecorations.pathmorphing.sty","tikzlibrarybackgrounds.sty","titlesec.sty"],"cmds":["examsection","boxempty","boxcheck","examparts","maketitle","examtwoblocks","examtwoblockstop","examoneblocktop","sectionfont","boxlen","cesenaexamversion","lastboxlen","minheighttypebox"]}
-,
-"cfr-lm.sty":{"envs":{},"deps":["xkeyval.sty","fontenc.sty","textcomp.sty","nfssext-cfr.sty"],"cmds":["regwidth","textrw","cdwidth","textcd","lgweight","textlg","sbweight","textsb","sishape","textsi","uishape","textui","lstyle","textl","ostyle","texto","pstyle","textp","tstyle","textt","plstyle","textpl","postyle","textpo","tlstyle","texttl","tostyle","textto","tvstyle","texttv","tmstyle","texttm","qtstyle","textqt","tistyle","textti","zeroslash","dotdigitenc","textdde","DH","NG","dj","ng","k","guillemotleft","guillemotright","guilsinglleft","guilsinglright","quotedblbase","quotesinglbase","textquotedbl","DJ","th","TH","dh","Hwithstroke","hwithstroke","textogonekcentered","guillemetleft","guillemetright"]}
-,
-"cgloss4e.sty":{"envs":{},"deps":{},"cmds":["gll","glll","glt","trans","singlegloss","nosinglegloss","lineone","linetwo","linethree","wordone","wordtwo","wordthree","gline","glossglue","ifnotdone","notdonetrue","notdonefalse","lastword","testdone","getwords","more","donewords","twosent","threesent","eachwordone","eachwordtwo","eachwordthree","glend"]}
-,
-"changebar.sty":{"envs":["changebar"],"deps":["color.sty","xcolor.sty"],"cmds":["cbcolor","cbstart","cbend","cbdelete","nochangebars","changebarwidth","deletebarwidth","changebarsep","thechangebargrey","driver"]}
-,
-"changelog.sty":{"envs":["changelog","version","changelogdescription","changelogitemize"],"deps":["translations.sty"],"cmds":["shortversion","added","changed","deprecated","removed","fixed","security","misc","newchangelogsection","changelogyanked","changelogremark"]}
-,
-"changepage.sty":{"envs":["adjustwidth","adjustwidth*"],"deps":{},"cmds":["ifstrictpagecheck","strictpagecheckfalse","strictpagechecktrue","strictpagecheck","easypagecheck","ifoddpage","oddpagefalse","oddpagetrue","cplabel","pmemlabel","newpmemlabel","pmemlabelref","checkoddpage","changetext","changepage"]}
-,
-"changes.sty":{"envs":{},"deps":["todonotes.sty","ulem.sty","xkeyval.sty","etoolbox.sty"],"cmds":["definechangesauthor","added","deleted","replaced","highlight","comment","listofchanges","setaddedmarkup","setdeletedmarkup","sethighlightmarkup","setcommentmarkup","setauthormarkup","setauthormarkupposition","setauthormarkuptext","setanonymousname","settruncatewidth","setsummarywidth","setsummarytowidth","setsocextension","setlocextension","dopsvlist","forpsvlist","IfIsInList","IfIsColored","IfIsEmpty","IfIsAnonymous","IfIsAuthorEmptyAtPosition","IfIsAuthorOutputEmpty","listofchangesname","summaryofchangesname","compactsummaryofchangesname","changesaddedname","changesdeletedname","changesreplacedname","changeshighlightname","changescommentname","changesauthorname","changesanonymousname","changesnochanges","changesnoloc","changesnosoc","theauthorcommentcount","Changestruncatewidth","ChangesListline","origcontentsline"]}
-,
-"chappg.sty":{"envs":{},"deps":{},"cmds":["pagenumbering","chappgsep"]}
-,
-"chapterbib.sty":{"envs":["cbunit"],"deps":{},"cmds":["cbinput","sectionbib","CitationPrefix","FinalBibTitles","FinalBibPrefix","StartFinalBibs","CBMainSectioning","citeform","citepunct","bibname","bibcite","bibsection"]}
-,
-"chapterfolder.sty":{"envs":{},"deps":["ifthen.sty"],"cmds":["cfpart","cfchapter","cfsection","cfsubsection","cfinput","cfcurrentfolder","cfinputfigure","cfcurrentfolderfigure","cfinputlistings","cfcurrentfolderlistings","cfinputalgorithms","cfcurrentfolderalgorithms","cffolderfigure","cfaddFolder","cfpartstar","cfchapterstar","cfsectionstar","cfsubsectionstar","cfpartstd","cfchapterstd","cfsectionstd","cfsubsectionstd","cffolderinput","cfincludegraphics"]}
-,
-"chbibref.sty":{"envs":{},"deps":{},"cmds":["setbibref"]}
-,
-"cheatsheet.cls":{"envs":{},"deps":["kvoptions.sty","xifthen.sty","hyperref.sty","fontenc.sty","libertine.sty","suffix.sty","amsmath.sty","amssymb.sty","multicol.sty","csquotes.sty","xcolor.sty","mdframed.sty","listings.sty","etoolbox.sty","geometry.sty"],"cmds":["theauthor","thedate","thetitle","csfileversion","csfiledate","DH","NG","dj","ng","k","guillemotleft","guillemotright","guilsinglleft","guilsinglright","quotedblbase","quotesinglbase","textquotedbl","DJ","th","TH","dh","Hwithstroke","hwithstroke","textogonekcentered","guillemetleft","guillemetright"]}
-,
-"checklistings.sty":{"envs":["chklisting","ChkListingErr","ChkListingMsg"],"deps":["keyval.sty","kvoptions.sty","fancyvrb.sty","color.sty","listings.sty"],"cmds":["checklistings","chklistingcmd","chklistingmsg","chklistingerr","ChkListingErr","chklistingfalse","chklistingfile","ChkListingMsg","chklistingtrue","ifchklisting","setchklistingcmd","thechklisting"]}
-,
-"chemarr.sty":{"envs":{},"deps":["amsmath.sty"],"cmds":["xrightleftharpoons"]}
-,
-"chemarrow.sty":{"envs":{},"deps":{},"cmds":["chemarrow","larrowfill","rarrowfill","rightleftharpoonsfill","leftrightharpoonsfill","autoleftarrow","autorightarrow","autorightleftharpoons","autoleftrightharpoons","arro","autotop","autobottom","autosize","leftharpoondownfill","leftharpoonupfill","rightharpoonupfill","rightharpoondownfill","leftchemarrowfill","rightchemarrowfill"]}
-,
-"chemcompounds.sty":{"envs":{},"deps":{},"cmds":["declarecompound","compound","compoundseparator","compoundglobalprefix","compoundglobalsuffix","compoundprefix","compoundsuffix","compoundstyle","printcompound"]}
-,
-"chemfig.sty":{"envs":{},"deps":["simplekv.sty","tikz.sty"],"cmds":["chemfig","setchemfig","resetchemfig","printatom","hflipnext","vflipnext","definesubmol","redefinesubmol","chemskipalign","charge","Charge","setcharge","resetcharge","chargeangle","chemmove","chemabove","chembelow","Chemabove","Chembelow","chemname","chemnameinit","schemestart","schemestop","arrow","setcompoundstyle","subscheme","definearrow","chemleft","chemright","chemup","chemdown","polymerdelim","merge","CFver","CFname","CFdate"]}
-,
-"chemformula.sty":{"envs":{},"deps":["expl3.sty","xparse.sty","l3keys2e.sty","tikz.sty","amsmath.sty","xfrac.sty","nicefrac.sty"],"cmds":["setchemformula","ch","bond","NewChemBond","DeclareChemBond","RenewChemBond","ProvideChemBond","NewChemBondAlias","DeclareChemBondAlias","ShowChemBond","chcpd","NewChemCompoundProperty","ProvideChemCompoundProperty","RenewChemCompoundProperty","DeclareChemCompoundProperty","RemoveChemCompoundProperty","NewChemAdditionSymbol","ProvideChemAdditionSymbol","RenewChemAdditionSymbol","DeclareChemAdditionSymbol","NewChemSymbol","ProvideChemSymbol","RenewChemSymbol","DeclareChemSymbol","NewChemArrow","ProvideChemArrow","DeclareChemArrow","RenewChemArrow","ShowChemArrow","charrow","chname","chlewis","chstoich","DeprecatedFormulaCommand","chemformula"]}
-,
-"chemgreek.sty":{"envs":{},"deps":["amstext.sty"],"cmds":["newchemgreekmapping","renewchemgreekmapping","declarechemgreekmapping","newchemgreekmappingalias","renewchemgreekmappingalias","declarechemgreekmappingalias","activatechemgreekmapping","selectchemgreekmapping","changechemgreeksymbol","printchemgreekmapping","printchemgreekalphabet","showchemgreekmapping","chemgreekmappingsymbol","chemalpha","chembeta","chemgamma","chemdelta","chemepsilon","chemzeta","chemeta","chemtheta","chemiota","chemkappa","chemlambda","chemmu","chemnu","chemxi","chemomikron","chempi","chemrho","chemsigma","chemtau","chemupsilon","chemphi","chempsi","chemchi","chemomega","chemAlpha","chemBeta","chemGamma","chemDelta","chemEpsilon","chemZeta","chemEta","chemTheta","chemIota","chemKappa","chemLambda","chemMu","chemNu","chemXi","chemOmikron","chemPi","chemRho","chemSigma","chemTau","chemUpsilon","chemPhi","chemPsi","chemChi","chemOmega"]}
-,
-"chemist.sty":{"envs":["ChemEqnarray","ChemEqnarray*","ChemEquation","XyMcompd","XyMtab","chemeqn","chemeqnarray","chemeqnarraya","chemmath","frameboxit","glshfboxit","grshfboxit","lshfboxit","miniscreen","rshfboxit","screen","tboxminiscreen","tboxscreen","ffboxit"],"deps":["assurechemist.sty"],"cmds":["bury","cdonecell","cdtwocell","ChemEqFont","ChemForm","chemform","chemistsw","ChemStrut","compd","compdlabel","cref","dbond","degC","degF","deriv","deriva","derivalabel","derivlabel","derivnum","doublebond","eqlbarrowstretch","Equilibarrow","equilibarrow","Equiliblongarrow","equiliblongarrow","fboxit","leftshfbox","leftshframe","Lllongleftarrow","lllongleftarrow","lllongleftharpoondown","lllongleftharpoonup","Lllongleftrightarrow","lllongleftrightarrow","Lllongrightarrow","lllongrightarrow","lllongrightharpoondown","lllongrightharpoonup","Llongleftarrow","llongleftarrow","llongleftharpoondown","llongleftharpoonup","Llongleftrightarrow","llongleftrightarrow","Llongrightarrow","llongrightarrow","llongrightharpoondown","llongrightharpoonup","newchemenvironment","nocompd","nocompdlabel","noderiv","noderiva","noderivalabel","noderivlabel","reactarrowsep","reactarrowseprate","reactdarrow","reactDEqarrow","reactdeqarrow","reactdlrarrow","reactduarrow","reactEqarrow","reacteqarrow","reactlarrow","reactLEqarrow","reactleqarrow","reactlrarrow","reactnearrow","reactnwarrow","reactrarrow","reactREqarrow","reactreqarrow","reactsearrow","reactswarrow","reactuarrow","reactUEqarrow","reactueqarrow","reactulrarrow","reactVEqarrow","reactveqarrow","rightshfbox","rightshframe","schemelarrow","schemelrarrow","schemerarrow","tbond","tboxtitle","thecompd","triplebond","aaa","agx","agxdv","agxlatent","bbb","Bib","BibTeX","calcontrolpoints","Cent","changespace","chapinitial","ChemAccent","chemcorr","chemGreekletter","chemtimesfalse","chemtimestrue","chemUpGreekletter","compdfbox","compdmbox","cyandv","cyandye","deHBr","derivfbox","derivlist","derivmbox","downwardarrowcalcA","downwardarrowcalcB","endash","eqproton","ffparbox","fgcaption","horizon","ifchemtimes","ifupgreekrm","ifverbswitch","jBibTeX","jLaTeX","journalID","jTeX","kanzanchi","kanzanhalf","kkk","La","lbcompdpbox","lbderivpbox","leavechemcorr","Leftarrowfill","Leftrightarrowfill","leftrightarrowfill","lethead","magentadv","magentadye","member","miniscreentoprule","next","nrep","nrepmax","oldalpha","oldbeta","oldcal","oldchi","oldDelta","olddelta","oldepsilon","oldEquilibarrow","oldequilibarrow","oldEquiliblongarrow","oldequiliblongarrow","oldeta","oldGamma","oldgamma","oldiota","oldkappa","oldlambda","oldLamda","oldLllongleftarrow","oldlllongleftarrow","oldlllongleftharpoondown","oldLllongleftrightarrow","oldlllongleftrightarrow","oldLllongrightarrow","oldlllongrightarrow","oldlllongrightharpoonup","oldLlongleftarrow","oldllongleftarrow","oldllongleftharpoondown","oldLlongleftrightarrow","oldllongleftrightarrow","oldLlongrightarrow","oldllongrightarrow","oldllongrightharpoonup","oldmathcal","oldmathnormal","oldmu","oldnu","oldOmega","oldomega","oldPhi","oldphi","oldPi","oldpi","oldPsi","oldpsi","oldreactdarrow","oldreactdeqarrow","oldreactdlrarrow","oldreactduarrow","oldreacteqarrow","oldreactlarrow","oldreactleqarrow","oldreactlrarrow","oldreactnearrow","oldreactnwarrow","oldreactrarrow","oldreactreqarrow","oldreactsearrow","oldreactswarrow","oldreactuarrow","oldreactueqarrow","oldreactulrarrow","oldreactveqarrow","oldrho","oldschemelarrow","oldschemelrarrow","oldschemerarrow","oldSigma","oldsigma","oldstyle","oldtau","oldTheta","oldtheta","oldUpsilon","oldupsilon","oldvarepsilon","oldvarphi","oldvarpi","oldvarrho","oldvarsigma","oldvartheta","oldXi","oldxi","oldzeta","penetrate","PiC","PiCTeX","Post","PostScript","pTeX","pushtowall","resetfontsize","Rightarrowfill","rshfboxit","sboxit","Script","SetChemSymbol","smcaption","Sub","SubBib","tbaselineshift","tbcaption","tboxscreentoprule","TestCount","thederiv","tmpkern","tpic","upgreekrmfalse","upgreekrmtrue","upwardarrowcalcA","upwardarrowcalcB","verbatimbaselineskip","verbatimleftmargin","verbatimsize","verbswitchfalse","verbswitchtrue","xlethead","xymrefa","xymrefb","ybaselineshift","yellowdv","yellowdye","yen","yubin","Yubin"]}
-,
-"chemmacros.sty":{"envs":["reaction","reaction*","reactions","reactions*","scheme","experimental"],"deps":["l3keys2e.sty","chemformula.sty","elements.sty","chemnum.sty","relsize.sty","etoolbox.sty","tikz.sty","tikzlibrarydecorations.pathmorphing.sty"],"cmds":["chemsetup","pH","pOH","Ka","Kb","Kw","pKa","pKb","p","NewChemEqConstant","RenewChemEqConstant","DeclareChemEqConstant","ProvideChemEqConstant","fplus","fminus","scrp","scrm","fscrp","fscrm","fsscrp","fsscrm","pch","mch","fpch","fmch","delp","delm","fdelp","fdelm","NewChemCharge","RenewChemCharge","DeclareChemCharge","ProvideChemCharge","NewChemPartialCharge","RenewChemPartialCharge","DeclareChemPartialCharge","ProvideChemPartialCharge","iupac","chemprime","nonbreakinghyphen","hydrogen","H","oxygen","O","nitrogen","N","sulfur","Sf","phosphorus","P","cip","rectus","R","sinister","S","dexter","D","laevus","L","cis","trans","fac","mer","sin","ter","zusammen","Z","entgegen","E","syn","anti","tert","ortho","meta","para","Rconf","Sconf","bridge","hapto","dento","latin","insitu","invacuo","abinitio","NewChemIUPAC","ProvideChemIUPAC","RenewChemIUPAC","DeclareChemIUPAC","LetChemIUPAC","NewChemIUPACShorthand","RenewChemIUPACShorthand","DeclareChemIUPACShorthand","ProvideChemIUPACShorthand","RemoveChemIUPACShorthand","NewChemLatin","DeclareChemLatin","RenewChemLatin","ProvideChemLatin","el","prt","ntr","Hyd","Oxo","water","El","Nuc","ba","NewChemParticle","RenewChemParticle","DeclareChemParticle","ProvideChemParticle","NewChemNucleophile","RenewChemNucleophile","DeclareChemNucleophile","ProvideChemNucleophile","sld","lqd","gas","aq","phase","NewChemPhase","DeclareChemPhase","RenewChemPhase","ProvideChemPhase","transitionstatesymbol","standardstatesymbol","changestate","isotope","mech","newman","orbital","copolymer","statistical","random","alternating","periodic","block","graft","blend","comb","complex","cyclic","branch","network","ipnetwork","sipnetwork","star","makepolymerdelims","AddRxnDesc","listofreactions","NewChemReaction","RenewChemReaction","DeclareChemReaction","ProvideChemReaction","reactionlistname","DeclareChemReactant","reactant","reactantplain","submainreactantplain","Reactant","Reactantplain","Submainreactantplain","solvent","solventplain","Solventplain","Solvent","printreactants","reactants","reactantl","solvents","solventl","ox","OX","redox","listschemename","schemename","listofschemes","NMR","data","J","pos","val","NewChemNMR","DeclareChemNMR","RenewChemNMR","ProvideChemNMR","state","enthalpy","entropy","gibbs","NewChemState","RenewChemState","DeclareChemState","ProvideChemState","atmosphere","atm","calory","cal","cmc","molar","moLar","Molar","MolMass","normal","torr","angstrom","atomicmassunit","bar","elementarycharge","mmHg","NewChemMacroset","ChemCleverefSupport","ChemFancyrefSupport","DeclareChemTranslation","DeclareChemTranslations","AddChemTranslation","AddChemTranslations","ChemTranslate","chemfrac","ChemStyle","usechemstyle"]}
-,
-"chemnum.sty":{"envs":{},"deps":["xparse.sty","l3keys2e.sty","translations.sty","chemgreek.sty","psfrag.sty"],"cmds":["cmpd","refcmpd","labelcmpd","replacecmpd","initcmpd","cmpdplain","subcmpdplain","submaincmpdplain","cmpdproperty","subcmpdproperty","newcmpdcounterformat","resetcmpd","cmpdshowdef","cmpdshowref","subcmpdshowdef","subcmpdshowref","setcmpdproperty","setcmpdlabel","chemnumshowdef","chemnumshowref","cmpdprintlabelid","cmpdshowlabelmargin","cmpdshowlabelinline","thecmpdmain","setchemnum"]}
-,
-"chemobabel.sty":{"envs":{},"deps":["verbatim.sty","graphicx.sty"],"cmds":["chemobabel","smilesobabel","chemobabelimgdir"]}
-,
-"chemplants.sty":{"envs":{},"deps":["ifthen.sty","tikz.sty","tikzlibrarydecorations.markings.sty","tikzlibraryhobby.sty","tikzlibrarybending.sty"],"cmds":["measure","setchpblockfontsize","setchpblockscale","setchpblockthickness","setchphiddencomponentstyle","setchphiddenstreamstyle","setchpinstrumentfontsize","setchpinstrumentscale","setchpinstrumentthickness","setchpmainstreamthickness","setchpmeasurecolor","setchpmeasurefontsize","setchpmeasurethickness","setchpmeasuretip","setchpsecondarystreamthickness","setchpsignalthickness","setchpstreamtip","setchpunitscale","setchpunitthickness","setchputilitystreamthickness","chpdate","chpversion"]}
-,
-"chemscheme.sty":{"envs":["scheme"],"deps":["kvoptions.sty","psfrag.sty","floatrow.sty","chemcompounds.sty","bpchem.sty"],"cmds":["schemerefsub","chemschemerefsub","schemename","listofschemes","listschemename","schemeref","chemschemeref","schemerefmarker","schemerefformat","floatcontentscenter","floatcontentscentre","floatcontentsleft","floatcontentsright"]}
-,
-"chemschemex.sty":{"envs":["Chemscheme"],"deps":["xkeyval.sty","etoolbox.sty","xargs.sty","xifthen.sty","suffix.sty","fancylabel.sty","graphicx.sty","tikz.sty","tikzlibraryshapes.multipart.sty","tikzlibrarydecorations.sty","tikzlibrarydecorations.markings.sty","tikzlibrarypositioning.sty"],"cmds":["customstruct","CSXimage","struct","structalt","newstruct","Struct","Structalt","structname","Structname","structabbr","ChemschemeNextRow","CSXcommands","structref","structsubref","CSXstructref","customarrow","RightArrow","LeftArrow","LeftRightArrow","DoubleRightArrow","DoubleLeftArrow","DoubleLeftRightArrow","RightupHarpoon","RightdownHarpoon","LeftupHarpoon","LeftdownHarpoon","LeftupRightupHarpoon","LeftupRightdownHarpoon","LeftdownRightupHarpoon","LeftdownRightdownHarpoon","Equilibrium","RightEquilibrium","LeftEquilibrium","RRightEquilibrium","LLeftEquilibrium","TwoRightArrow","TTwoRightArrow","TwoLeftArrow","TTwoLeftArrow","ThreeRightArrow","TThreeRightArrow","ThreeLeftArrow","TThreeLeftArrow","CSXdeclarearrow","CSXdeclarearrowbundle","structplus","structminus","CSXarrowadvance","CSXarrowlength","CSXcaption","CSXgeneratecaption","CSXimagewidth","CSXlabelsep","CSXlabelwidth","CSXmaxlabelwidth","CSXmaxtextwidth","CSXtextwidth","fancylabelformatCSX","fancyonlysublabelformatCSX","fancysublabelformatCSX","lastx","theCSXcaption","theCSXscheme","theCSXstruct","theCSXstructinarrow"]}
-,
-"chemsec.sty":{"envs":{},"deps":["ifthen.sty"],"cmds":["DefineChemical","ChemCite","ChemFCite","ChemSCite","ChemMFCite","ChemMSCite","NoCite","ChemFullLabelStyle","ChemLabelStyle","ChemMainCounterStyle","ChemShortLabelStyle","ChemSubCounterStyle"]}
-,
-"chemstr.sty":{"envs":["sfpicture"],"deps":["xcolor.sty"],"cmds":["addbscolor","ayl","BiFunc","bscolorswOFF","bscolorswON","changeunitlength","downnobond","iforigpt","ifPDFmode","ifPSmode","lmoiety","lyl","member","originalpicture","origptfalse","origpttrue","PDFmodefalse","PDFmodetrue","PSmodefalse","PSmodetrue","putlatom","putlratom","putratom","resetbdsw","rmoiety","ryl","SetTwoAtoms","SetTwoAtomx","substfont","substfontsize","thicklines","thinlines","upnobond","XyM","XyMTeX","aaa","bbb","bondsubstcolor","bscolorfalse","bscolortrue","ccc","centeraaa","changexymtextops","clipinfo","ddd","defineXyMcolor","developclipinfo","dotorline","drawsamesubstfalse","drawsamesubsttrue","eee","fff","ForbiddenFusion","fuseAx","fuseAy","fuseBx","fuseBy","fuseswfalse","fuseswtrue","FuseWarning","futileFuseWarning","GFbonda","GFbondb","GFbondc","GFbondd","gggA","hhh","ifbscolor","ifdrawsamesubst","iffusesw","ifshiftpicsw","ifTeXLaTeXmode","ifwavebond","ifxymtexpssw","iii","iniatom","iniflag","jjj","MEMBER","NormalBonds","noshift","OrigptOutput","origptoutput","OrigptOutputA","Putlratom","resetlrput","setatombond","setatombondA","setatombonda","setatombondB","setatombondb","setatombondC","setatombondc","setatombondD","setatombondd","setatombondE","setatombonde","setatombondF","setatombondf","setatombondG","setatombondg","setatombondH","setatombondh","setbscolor","setBScolor","setfusedbond","setsixringh","setsixringv","shifti","shiftii","shiftiii","shiftpicswfalse","shiftpicswtrue","SlopetoXY","storeclipinfo","TEMParga","TEMPargb","tempColorModel","tempG","TeXLaTeXmodefalse","TeXLaTeXmodetrue","UnfavorableFusion","wavebondfalse","WaveBonds","wavebondtrue","waveunitA","XyMcolor","xymtexpsswfalse","xymtexpsswtrue","XyMTeXWarning","ylatombondposition","ylfusedposition","ylposition","ylpositionh"]}
-,
-"chemstyle.sty":{"envs":{},"deps":["amstext.sty","chemscheme.sty","varioref.sty","xcolor.sty"],"cmds":["Hz","Molar","cmc","cstsetup","cubiccentimeter","eg","etal","etc","ie","invacuo","latin","latinemphoff","latinemphon","mmHg","mol","molar","standardstate","thebibnote","torr"]}
-,
-"cherokee.sty":{"envs":{},"deps":{},"cmds":["cherokee","Csoo","Cga","Cha","Cla","Cma","Cna","Cgwa","Csa","Cda","Cdla","Cdza","Cwa","Cya","Cwoo","Cge","Che","Cle","Cme","Cne","Cgwe","Cse","Cde","Cdle","Cdze","Cwe","Cye","Chu","Cgi","Chi","Cli","Cmi","Cni","Cgwi","Csi","Cdi","Cdli","Cdzi","Cwi","Cyi","Cdlu","Cgo","Cho","Clo","Cmo","Cno","Cgwo","Cso","Cdo","Cdlo","Cdzo","Cwo","Cyo","Coo","Cgoo","Choo","Cloo","Cmoo","Cnoo","Cgwoo","Ca","Cdoo","Cdloo","Cdzoo","Ce","Cyoo","Cnah","Cgu","Ci","Clu","Cnu","Cgwu","Csu","Cdu","Co","Cdzu","Cwu","Cyu","Cs","Chna","Cu","Cka","Cta","Cti","Ctla","Cte"]}
-,
-"chessboard.sty":{"envs":{},"deps":["chessfss.sty","xifthen.sty","ifpdf.sty","tikz.sty","etoolbox.sty"],"cmds":["chessboard","setchessboard","storechessboardstyle","cblistK","cblistQ","cblistR","cblistB","cblistN","cblistP","cblistk","cblistq","cblistr","cblistb","cblistn","cblistp","cbDefineLanguage","cbDefineTranslation","cbDefineMoverStyle","cbDefinePgfFieldStyle","cbDefinePgfRegionStyle","cbDefinePgfMoveStyle","cbDefineNewPiece","printarea","board","currentbk","currentbq","currentwk","currentwq"]}
-,
-"chessfss.sty":{"envs":{},"deps":["ifthen.sty","xkeyval.sty"],"cmds":["figfont","figsymbol","setfigfontfamily","king","symking","queen","symqueen","rook","symrook","bishop","symbishop","knight","symknight","pawn","sympawn","settextfigchars","settextfiglanguage","textfigsymbol","textking","textqueen","textrook","textbishop","textknight","textpawn","textsymfigsymbol","textsymking","textsymqueen","textsymrook","textsymbishop","textsymknight","textsympawn","usetextfig","usesymfig","setfigstyle","boardfont","boardsymbol","setboardfontfamily","setboardfontseries","setboardfontsize","setboardfontencoding","WhiteEmptySquare","BlackEmptySquare","WhiteKingOnWhite","BlackKingOnWhite","WhiteKingOnBlack","BlackKingOnBlack","WhiteQueenOnWhite","BlackQueenOnWhite","WhiteQueenOnBlack","BlackQueenOnBlack","WhiteRookOnWhite","BlackRookOnWhite","WhiteRookOnBlack","BlackRookOnBlack","WhiteBishopOnWhite","BlackBishopOnWhite","WhiteBishopOnBlack","BlackBishopOnBlack","WhiteKnightOnWhite","BlackKnightOnWhite","WhiteKnightOnBlack","BlackKnightOnBlack","WhitePawnOnWhite","BlackPawnOnWhite","WhitePawnOnBlack","BlackPawnOnBlack","getsquarewidth","showchessboardencoding","setboardfontcolors","inffont","infsymbol","setinffontfamily","checksymbol","castlinghyphen","withattack","withinit","zugzwang","withidea","onlymove","diagonal","file","centre","weakpt","ending","qside","kside","etc","morepawns","timelimit","moreroom","counterplay","capturesymbol","bishoppair","betteris","wupperhand","doublepawns","bupperhand","wbetter","bbetter","wdecisive","bdecisive","unclear","chesssee","mate","compensation","opposbishops","seppawns","passedpawn","samebishops","devadvantage","unitedpawns","with","without","comment","markera","markerb","chessetc","sidefont","sidesymbol","setsidefontencoding","setsidefontfamily","setsidefontseries","setsidefontshape","setsidefontsize","setchessfontfamily","setallchessfontfamily","castlingchar","longcastling","shortcastling","novelty","chesscomment","various","setfigtextchars"]}
-,
-"chet.sty":{"envs":["acknowledgments","appendices"],"deps":["kvoptions.sty","xparse.sty","xspace.sty","datetime.sty","amsmath.sty","caption.sty","tocloft.sty","cite.sty","collref.sty","color.sty","microtype.sty","manyfoot.sty","footmisc.sty","filecontents.sty","geometry.sty","hyperref.sty"],"cmds":["draftmode","titlemath","email","emailV","emails","newsec","subsec","subsubsec","eqn","eqna","twoseqn","threeseqn","fourseqn","rcite","toc","foot","ack","appendices","preprint","affiliation","abstract","mytitlefont","rcitedraft","showkeyslabelformat","footinsE","thefootnoteE","FootnoteE","FootnotemarkE","FootnotetextE","footnoteE","footnotemarkE","footnotetextE","footinsEE","thefootnoteEE","FootnoteEE","FootnotemarkEE","FootnotetextEE","footnoteEE","footnotemarkEE","footnotetextEE","footinsEEE","thefootnoteEEE","FootnoteEEE","FootnotemarkEEE","FootnotetextEEE","footnoteEEE","footnotemarkEEE","footnotetextEEE"]}
-,
-"chextras.sty":{"envs":["descriptionFB"],"deps":["inputenc.sty","fontenc.sty","lmodern.sty","babel.sty","hyperref.sty","color.sty"],"cmds":["rmosfamily","sfosfamily","ttosfamily","textrmos","textsfos","textttos","rmosdefault","sfosdefault","ttosdefault","sishape","textsi","sidefault","authorname","titlename","datename","up","bsc","no","ier","conc","letterindent","fromheight","toheight","DH","dh","dj","DJ","guillemetleft","guillemetright","guillemotleft","guillemotright","guilsinglleft","guilsinglright","Hwithstroke","hwithstroke","k","NG","ng","quotedblbase","quotesinglbase","textogonekcentered","textquotedbl","th","TH","captionsgerman","dategerman","extrasgerman","noextrasgerman","dq","tosstrue","tossfalse","prefacename","bibname","chaptername","enclname","ccname","headtoname","pagename","seename","alsoname","proofname","glossaryname","mdqon","mdqoff","ck","frenchsetup","frenchbsetup","AddThinSpaceBeforeFootnotes","at","AutoSpaceBeforeFDP","boi","bname","CaptionSeparator","captionsfrench","circonflexe","dateacadian","datefrench","DecimalMathComma","degre","degres","descindentFB","dotFFN","extrasfrench","FBcolonspace","FBdatebox","FBdatespace","FBeverylineguill","FBfigtabshape","FBfnindent","FBFrenchFootnotesfalse","FBFrenchFootnotestrue","FBFrenchSuperscriptstrue","FBGlobalLayoutFrenchtrue","FBgspchar","FBguillopen","FBguillspace","FBInnerGuillSinglefalse","FBInnerGuillSingletrue","FBListItemsAsParfalse","FBListItemsAsPartrue","FBLowercaseSuperscriptstrue","FBmedkern","FBPartNameFulltrue","FBsetspaces","FBSmallCapsFigTabCaptionstrue","FBStandardEnumerateEnvtrue","FBStandardItemizeEnvtrue","FBStandardItemLabelstrue","FBStandardLayouttrue","FBStandardListSpacingtrue","FBStandardListstrue","FBsupR","FBsupS","FBtextellipsis","FBthickkern","FBthinspace","FBthousandsep","FBWarning","fg","fgi","fgii","fprimo","frenchdate","FrenchEnumerate","FrenchFootnotes","FrenchLabelItem","frenchpartfirst","frenchpartsecond","FrenchPopularEnumerate","frenchtoday","Frlabelitemi","Frlabelitemii","Frlabelitemiii","Frlabelitemiv","frquote","fup","ieme","iemes","iere","ieres","iers","ifFBAutoSpaceFootnotes","ifFBCompactItemize","ifFBCustomiseFigTabCaptions","ifFBfrench","ifFBFrenchFootnotes","ifFBFrenchSuperscripts","ifFBGlobalLayoutFrench","ifFBIndentFirst","ifFBINGuillSpace","ifFBListItemsAsPar","ifFBListOldLayout","ifFBLowercaseSuperscripts","ifFBLuaTeX","ifFBOldFigTabCaptions","ifFBOriginalTypewriter","ifFBPartNameFull","ifFBReduceListSpacing","ifFBShowOptions","ifFBSmallCapsFigTabCaptions","ifFBStandardEnumerateEnv","ifFBStandardItemizeEnv","ifFBStandardItemLabels","ifFBStandardLayout","ifFBStandardLists","ifFBStandardListSpacing","ifFBSuppressWarning","ifFBThinColonSpace","ifFBThinSpaceInFrenchNumbers","ifFBunicode","ifFBXeTeX","ifLaTeXe","kernFFN","labelindentFB","labelwidthFB","leftmarginFB","listfigurename","listindentFB","No","NoAutoSpaceBeforeFDP","NoAutoSpacing","NoEveryParQuote","noextrasfrench","nombre","nos","Nos","og","ogi","ogii","parindentFFN","partfirst","partnameord","partsecond","primo","quarto","rmfamilyFB","secundo","sffamilyFB","StandardFootnotes","StandardMathComma","tertio","tild","ttfamilyFB","xspace","captionsitalian","dateitalian","extrasitalian","noextrasitalian","italianhyphenmins","setactivedoublequote","setISOcompliance","IntelligentComma","NoIntelligentComma","XXIletters","XXVIletters","ap","ped","unit","virgola","virgoladecimale","LtxSymbCaporali","CaporaliFrom","captionsenglish","dateenglish","extrasenglish","noextrasenglish","englishhyphenmins","britishhyphenmins","americanhyphenmins"]}
-,
-"chhaya.sty":{"envs":{},"deps":["marathi.sty","glossaries.sty","xkeyval.sty","iftex.sty"],"cmds":["printacronyms"]}
-,
-"chickenize.sty":{"envs":{},"deps":["luatex.sty"],"cmds":["ALT","allownumberincommands","BEClerize","boustrophedon","unboustrophedon","boustrophedonglyphs","unboustrophedonglyphs","boustrophedoninverse","unboustrophedoninverse","rongorongonize","unrongorongonize","bubblesort","unbubblesort","chickenize","unchickenize","hendlnize","unhendlnize","colorstretch","uncolorstretch","countglyphs","countwords","detectdoublewords","dubstepenize","dubstepize","explainbackslashes","francize","unfrancize","gameoflife","gameofchicken","gameofchimken","guttenbergenize","hammertime","unhammertime","italianizerandwords","unitalianizerandwords","italianize","unitalianize","kernmanipulate","unkernmanipulate","leetspeak","unleetspeak","leftsideright","unleftsideright","letterspaceadjust","unletterspaceadjust","listallcommands","stealsheep","unstealsheep","returnsheep","matrixize","unmatrixize","medievalumlaut","unmedievalumlaut","pancakenize","rainbowcolor","unrainbowcolor","nyanize","unnyanize","randomchars","unrandomchars","randomcolor","unrandomcolor","randomerror","unrandomerror","randomfonts","unrandomfonts","randomuclc","unrandomuclc","relationship","scorpionize","unscorpionize","substitutewords","unsubstitutewords","addtosubstitutions","suppressonecharbreak","unsuppressonecharbreak","tabularasa","untabularasa","tanjanize","untanjanize","uppercasecolor","unuppercasecolor","upsidedown","unupsidedown","variantjustification","unvariantjustification","zebranize","unzebranize","leetattr","letterspaceadjustattr","randcolorattr","randfontsattr","randuclcattr","tabularasaattr","uppercasecolorattr","textleetspeak","textletterspaceadjust","textlsa","textrandomcolor","textrandomfonts","textrandomuclc","texttabularasa","textuppercasecolor","chickenizesetup","luadraw","drawchicken","drawcov","drawhorse","drawfathorse","drawunicorn","drawfatunicorn","balmerpeak","coffeestainize","uncoffeestainize","dosomethingfunny","milkcow","unmilkcow","spankmonkey","unspankmonkey"]}
-,
-"china2e.sty":{"envs":{},"deps":{},"cmds":["uchr","TerrEle","terrele","AstrEle","astrele","MoonSta","moonsta","MoonPha","CyclYears","Year","Month","Day","Book","MoonStations","WaxingZodiac","WaningZodiac","ZodiacSign","New","TerrElements","AstrElements","Solar","Lunar","Festival","Beginning","Morning","Leap","NewGregYear","NewChinYear","Calendar","Wood","Fire","Earth","Metal","Water","Nul","One","Two","Three","Four","Five","Six","Seven","Eight","Nine","Ten","Eleven","Twelve","Thirteen","Fourteen","Fifteen","Sixteen","Seventeen","Eighteen","Nineteen","Twenty","Thirty","Forty","Fifty","Sixty","Seventy","Eighty","Ninety","Hundred","Thousand","FirstMonth","Euro","Greenpoint","Info","Request","Postbox","Pound","Telephone","symA","symB","symC","symD","symE","symF","symG","symH","symI","symJ","symK","symL","symM","symN","symO","symP","symQ","symR","symS","symT","symU","symV","symW","symX","symY","symZ","symAE","symOE","symUE","Chinasym","BLOCK","AE","OE","UE","Real","Natural","Integer","Rational","Complex","REAL","NATURAL","INTEGER","RATIONAL","COMPLEX","chin","textchi","chinarg","upperlimit","prtarg","Beginerr","Terrerr","Astrerr","Staterr","Moonerr","errmess","chiprt","chincorr"]}
-,
-"chinesechess.sty":{"envs":["setcchessman","setcchessman*"],"deps":["expl3.sty","l3keys2e.sty","l3draw.sty","xparse.sty"],"cmds":["cchessboard","cchessman","init","set","del","mov","printman","getpiece","piecechar","resetpiece","cchessset"]}
-,
-"chkfloat.sty":{"envs":{},"deps":["kvoptions.sty"],"cmds":{}}
-,
-"chletter.cls":{"envs":["letter"],"deps":{},"cmds":["titlehead","titletopheight","titlemidheight","titlebotheight","titlemargin","titlewidth","addressmargin","addresswidth","toname","toaddress","makelabels","stopbreaks","startbreaks","theletter","name","address","location","telephone","return","signature","fromname","fromaddress","fromlocation","telephonenum","returnaddress","fromsig","object","opening","closing","salutation","valediction","ps","encl","cc","enclname","ccname","closingmatter","foldmark","footfill","headtoname","indentedwidth","longindentation","pagename","splitfield","startlabels","titlebotmatter","titlemidmatter","titletopmatter"]}
-,
-"chmst-pdf.sty":{"envs":{},"deps":["chemist.sty","xymtx-pdf.sty"],"cmds":["chmstpdfsw","electronHldshiftarrow","electronHlushiftarrow","electronHrdshiftarrow","electronHrushiftarrow","electronlshiftarrow","electronrshiftarrow","electronshiftArrowl","electronshiftArrowr","electronshiftHld","electronshiftHlu","electronshiftHrd","electronshiftHru","futuresubst","electronAHshift","electronshiftAH","leftharpoondownElement","leftharpoonupElement","newreactDEqarrow","newreactEqarrow","newreactLEqarrow","newreactREqarrow","newreactUEqarrow","newreactVEqarrow","newreactdarrow","newreactdeqarrow","newreactdlrarrow","newreactduarrow","newreacteqarrow","newreactlarrow","newreactleqarrow","newreactlrarrow","newreactnearrow","newreactnwarrow","newreactrarrow","newreactreqarrow","newreactsearrow","newreactswarrow","newreactuarrow","newreactueqarrow","newreactulrarrow","newreactveqarrow","newschemelarrow","newschemelrarrow","newschemerarrow","rightharpoondownElement","rightharpoonupElement"]}
-,
-"chngcntr.sty":{"envs":{},"deps":{},"cmds":["counterwithin","counterwithout"]}
-,
-"chordbars.sty":{"envs":["chordbar"],"deps":["calc.sty","pgfmath.sty","tikzlibrarymath.sty","tkz-euclide.sty"],"cmds":["chordf","chordh","repeatBar","repeatBarPair","addHalfBar","chordline","countbarsYes","countbarsNo","sharp","flat","songtitle","printNbBars","bpm","resetchordbars","theNumMesure","theNumPart","theCurrentBarInLine","theCurrentBar","theCurrentLine","NumberOfBarsPerLine","barsize","chordFontSize","bpbfour","bpbthree","vspacebefore","vspaceafter","NbBarsInitialLine","bpb","delta","nbbars","newchordline","tempoBPM","titleFontSize","OLDflat","OLDsharp"]}
-,
-"chordbox.sty":{"envs":["chordboxenv"],"deps":["tikz.sty","tikzlibraryshapes.misc.sty","tikzlibrarybackgrounds.sty","xifthen.sty","xstring.sty"],"cmds":["chordbox","bchordbox","numfrets","pitch","nodetext","frettext","fretnum"]}
-,
-"chronology.sty":{"envs":["chronology"],"deps":["calc.sty","tikz.sty"],"cmds":["event","decimaldate","thestep","thestepstart","thestepstop","theyearstart","theyearstop","thedeltayears","xstart","xstop","unit","timelinewidth","timelinebox"]}
-,
-"chronosys.sty":{"envs":["chronology"],"deps":["tikz.sty"],"cmds":["chronology","endchronology","startchronology","stopchronology","chronoevent","chronoperiode","chronoperiodecoloralternation","restartchronoperiodecolor","chronograduation","definechronoevent","definechronoperiode","setupchronology","setupchronoevent","setupchronoperiode","setupchronograduation","chronoperiodcolor","dochronoevent","dochronograduation","dochronoperiode","dorestartchronoperiodecolor","dosetupchronoeventandperiode","dosetupchronograduation","dostartchronology","dostartchronologyfinal","ifnexttoken","savefirsttwoarg","todoafterarg"]}
-,
-"churchslavonic.sty":{"envs":["churchslavonic"],"deps":["cu-num.sty","cu-calendar.sty","cu-util.sty","cu-kinovar.sty"],"cmds":["cuMarginMark","cuMarginMarkSkip","cuMarginMarkText","textchurchslavonic","captionschurchslavonic","datechurchslavonic","Azbuk","azbuk","sh","ch","tg","arctg","arcctg","th","ctg","cth","cosec","Prob","Variance","nod","nok","NOD","NOK","Proj"]}
-,
-"cinzel.sty":{"envs":{},"deps":["ifxetex.sty","ifluatex.sty","xkeyval.sty","textcomp.sty","fontenc.sty","fontaxes.sty","mweights.sty"],"cmds":["cinzel","textcinzel","cinzelblack","textcinzelblack","cinzelfamily"]}
-,
-"circle.sty":{"envs":{},"deps":{},"cmds":["Circle"]}
-,
-"circledsteps.sty":{"envs":{},"deps":["xcolor.sty","pict2e.sty","picture.sty","pgfkeys.sty","etoolbox.sty"],"cmds":["Circled","CircledTop","CircledText","cstep","startcstep","resetcstep","thecstepcnt","CircledParamOpts"]}
-,
-"circledtext.sty":{"envs":{},"deps":["expl3.sty","xtemplate.sty","l3keys2e.sty","l3draw.sty","xparse.sty"],"cmds":["circledtext","circledtextset","charboxwd","charboxht"]}
-,
-"circuitikz.sty":{"envs":["circuitikz"],"deps":["tikz.sty","tikzlibrarybending.sty","xstring.sty"],"cmds":["circuitikz","endcircuitikz","pgfcircversion","pgfcircversiondate","circuitikzbasekey","circuitikzset","ctikzset","ctikzvalof","ctikzsetvalof","pgfstartlinewidth","unexpandedvalueof","pgfcircdeclarebipole","pgfcircdeclarebipolescaled","ctikzclass","scaledRlen","northeastborder","southwestborder","textanchor","ctikzloadstyle","ctikzsetstyle","ctikzgetanchor","ctikzgetdirection","ctikzflipx","ctikzflipy","ctikzflipxy","ctikztextnot","ctikzsubcircuitdef","ctikzsubcircuitactivate","ctikztunablearrow","pgfcircresetpath","comnpatname","compattikzset","drawpoles","scaledwidth","gscale","savedwaves","arcpos","topright","wiper","zigs","coredistance","dotXdistance","dotYdistance","midtap","centerprim","centersec","centertert","pgfcircdeclarethyristor","gatekink","pgfcircdeclaretriac","pgfcircdiodestylemacro","pgfcircdeclarecutesw","midlever","thisshape","cshape","pgfcircdeclarecutespdt","drawmeteringcircle","pgfcircdeclarejumper","tunablewidth","pgfcircdeclaresolderjumper","pgfcircdeclaredoublesolderjumper","pgfcircdeclarelogicport","resize","inputs","step","origin","pgfcircdeclareeurologicport","pgfcircdeclareieeeport","baselen","stdH","notdiameter","pind","pinlen","xorbar","bodyleft","topleft","bodyright","bottomright","inners","pgfcircdeclareieeeportpair","pgfcircdeclareieeebufferport","pgfcircdeclareieeebufferportpair","pgfcircdeclareieeetgate","pgfcircdeclaretransistor","circlebase","extrabodydiodelen","scalecircleradius","circleradius","circleleft","centergap","drawbodydiode","declarebpt","declarebjt","cdir","numE","numC","multistep","external","basedimension","numup","numdown","declareigbt","declaregfet","drawfetcore","pgfdeclaretransistorwrapperaddbulk","pgfcircdeclarejunctiontransistor","inOneFixed","inOne","up","leftedge","refv","outport","outportfixed","raOne","pgfcircdeclaretube","pgfcircdeclarequadpole","stretto","innerdot","outerdot","pgfcircmathresult","componentisboxed","pgfcircdeclarefourport","pgfcircdeclaredbipole","numpins","chipspacing","extshift","mytext","quadrant","rot","central","extnorthwest","channels","stepa","currenta","dotstatus","dotspace","gap","boxgap","wedge","NL","NR","NT","NB","insetnortheast","insethright","myscale","pgfcirclabrot","setscaledRlenforclass","addvshift","absvshift","shiftv","bumpa","bumpaplus","labeldist","partheightf","whichtypeshift","absfshift"]}
-,
-"citation-style-language.sty":{"envs":{},"deps":["filehook.sty","url.sty"],"cmds":["cslsetup","addbibresource","cite","parencite","citep","textcite","citet","cites","citeauthor","printbibliography"]}
-,
-"cite.sty":{"envs":{},"deps":{},"cmds":["citeform","citepunct","citeleft","citeright","citemid","citedash","CiteMoveChars","OverciteFont","citeprepenalty","citemidpenalty","citepunctpenalty","citenum","citen","citeonline"]}
-,
-"citeall.sty":{"envs":{},"deps":["xparse.sty"],"cmds":["citeall","citeallgroupseparator","citeallseparator","citeallfinentry","citealldefaultcite","citeallpreambledefinition"]}
-,
-"cjhebrew.sty":{"envs":["cjhebrew"],"deps":["ifluatex.sty","luabidi.sty"],"cmds":["cjhebfamily","cjLR","cjRL","dottedcircle","endofword","textcjheb","zeronojoin"]}
-,
-"cjkutf8-josa.sty":{"envs":{},"deps":{},"cmds":["jong","jung","rieul","makejosa"]}
-,
-"cjkutf8-ko.sty":{"envs":{},"deps":["CJKutf8.sty","cjkutf8-nanummjhanja.sty","cjkutf8-josa.sty","kolabels-utf.sty","ulem.sty","CJKfntef.sty","konames-utf.sty"],"cmds":["dotemph","dotemphchar","dotemphraise","CJKscale","lowerCJKchar","lowercjkchar","CJKpostmathglue","HangulGlue","HangulPenalty","cancelCJKscale","cancellowerCJKchar","cancellowercjkchar"]}
-,
-"clara.sty":{"envs":{},"deps":["textcomp.sty","mweights.sty","fontaxes.sty","xkeyval.sty"],"cmds":["textsu","textsuperior","sufigures"]}
-,
-"classico.sty":{"envs":{},"deps":["ifxetex.sty","ifluatex.sty","xkeyval.sty","textcomp.sty","fontenc.sty","fontaxes.sty"],"cmds":["classico","classicofamily"]}
-,
-"classics.sty":{"envs":{},"deps":["expl3.sty","xparse.sty"],"cmds":["newclassic","newpagination","DeclareClassicWorkFormat","classicsalph","classicsAlph","classicsroman","classicsRoman"]}
-,
-"classicthesis-arsclassica.sty":{"envs":{},"deps":["sicthesis.cls"],"cmds":["formatchapter"]}
-,
-"classicthesis.sty":{"envs":["aenumerate"],"deps":["ifthen.sty","kvoptions.sty","ifpdf.sty","ifxetex.sty","ifluatex.sty","xcolor.sty","mathpazo.sty","beramono.sty","microtype.sty","typearea.sty","mparhack.sty","booktabs.sty","textcase.sty","scrlayer-scrpage.sty","titlesec.sty","tocloft.sty","footmisc.sty","scrtime.sty","caption.sty","remreset.sty","hyperref.sty","prelim2e.sty","sicthesis-arsclassica.cls"],"cmds":["ctparttext","spacedallcaps","spacedlowsmallcaps","classicthesis","chapterNumber","beforebibskip","figurelabelwidth","finalVersionString","listingslabelwidth","myVersion","newchnumberwidth","newnumberwidth","oldmarginpar","tablelabelwidth","tocEntry","deactivateaddvspace","myChapter","myPart","graffito"]}
-,
-"classif2.sty":{"envs":["classif"],"deps":["xspace.sty"],"cmds":["Comm","EmptyName","INCL","LevelName","Numerate","Reset","CF","Digitsfalse","Digitstrue","Globalfalse","Globaltrue","Hidefalse","Hidetrue","ifDigits","ifGlobal","ifHide","ifNumbers","IHOOK","IN","Is","K","KURN","Level","N","Numbersfalse","Numberstrue","Pp","Se","Si","Sl","Sr","St","theGlobalLevel","theLevel","theLeveli","theLevelii","theLeveliii","theLeveliv"]}
-,
-"classlist.sty":{"envs":{},"deps":{},"cmds":["MainClassName","ClassList","ClassListEntry","PrintClassList","PrintClassListTitle","PrintClassListEntry"]}
-,
-"cleanthesis.sty":{"envs":["my_list","my_list_num","my_list_item","ct_version_list","ct_version_list_sub","my_list_desc","thesis_quotation"],"deps":["xkeyval.sty","xcolor.sty","fontenc.sty","lmodern.sty","charter.sty","microtype.sty","setspace.sty","graphicx.sty","tabularx.sty","enumitem.sty","blindtext.sty","textcomp.sty","hyperref.sty","scrlayer-scrpage.sty","caption.sty","csquotes.sty","tocloft.sty","tgheros.sty","biblatex.sty","natbib.sty","listings.sty"],"cmds":["cthesissetcolor","cthesissetcolorbluemagenta","cthesissetcolorbluegreen","lensectionnumber","ctfooterline","ctfooterrightpagenumber","ctfooterleftpagenumber","TODO","tabref","tableref","tref","treft","textref","textreft","fref","frefadd","figref","figrefadd","figreft","figrefaddt","seepage","ctSetFont","helv","book","tgherosfont","thesispartlabelfont","thesispartfont","thesischapterfont","thesissectionfont","thesissubsectionfont","thesisparagraphfont","ctfontfooterpagenumber","ctfontfootertext","ctchapternumber","ctchaptertitle","hugequote","cleanchapterquote","cthesisorigin","DH","NG","dj","ng","k","guillemotleft","guillemotright","guilsinglleft","guilsinglright","quotedblbase","quotesinglbase","textquotedbl","DJ","th","TH","dh","Hwithstroke","hwithstroke","textogonekcentered","guillemetleft","guillemetright"]}
-,
-"clefval.sty":{"envs":{},"deps":{},"cmds":["TheKey","TheValue","newkey"]}
-,
-"cleveref.sty":{"envs":{},"deps":{},"cmds":["Crefformat","Crefmultiformat","Crefname","Crefrangeformat","Crefrangemultiformat","crefalias","crefdefaultlabelformat","crefformat","creflabelformat","crefmultiformat","crefname","crefrangeformat","crefrangelabelformat","crefrangemultiformat","label","labelcrefformat","labelcrefmultiformat","labelcrefrangeformat","labelcrefrangemultiformat","Cpageref","Cpagerefrange","Cref","Crefrange","cpageref","cpagerefrange","cref","crefrange","labelcpageref","labelcref","lcnamecref","lcnamecrefs","nameCref","nameCrefs","namecref","namecrefs","crefrangeconjunction","crefrangepreconjunction","crefrangepostconjunction","crefpairconjunction","crefmiddleconjunction","creflastconjunction","crefpairgroupconjunction","crefmiddlegroupconjunction","creflastgroupconjunction","crefstripprefix","packagedate","packageversion"]}
-,
-"clicks.sty":{"envs":{},"deps":["xkeyval.sty","etoolbox.sty"],"cmds":["theminutes","print","flush","click","plush","plick"]}
-,
-"clipboard.sty":{"envs":{},"deps":{},"cmds":["newclipboard","openclipboard","clipboard","Copy","Paste"]}
-,
-"clock.sty":{"envs":{},"deps":{},"cmds":["clock","clocktime","clockfont","bigclockfont","ClockStyle","ifClockFrame","ClockFrametrue","ClockFramefalse","texthours","textminutes","texttime","LaTeXclock","TeXclock"]}
-,
-"clojure-pamphlet.sty":{"envs":["chunk"],"deps":["listings.sty","hyperref.sty"],"cmds":["getchunk","wbgroup","wegroup"]}
-,
-"cloze.sty":{"envs":["clozepar","clozebox","clozespace"],"deps":["luatex.sty","fontspec.sty","luatexbase-mcb.sty","kvoptions.sty","setspace.sty","xcolor.sty","xparse.sty","stackengine.sty","ulem.sty","transparent.sty"],"cmds":["cloze","clozesetfont","clozefix","clozenol","clozefil","clozeextend","clozeparcmd","clozeline","clozelinefil","clozestrike","clozesetoption","clozeset","clozereset","clozeshow","clozehide","ifclozeshow","clozeshowtrue","clozeshowfalse","ClozeSetToGlobal","ClozeSetToLocal","ClozeGetOption","ClozeColor","ClozeStartMarker","ClozeStopMarker","ClozeMargin","clozefont","ClozeSetLocalOptions","ClozeTextColor","ClozeStrikeLine","ClozeBox"]}
-,
-"clrdblpg.sty":{"envs":{},"deps":["xkeyval.sty"],"cmds":{}}
-,
-"clrscode3e.sty":{"envs":["codebox"],"deps":["graphics.sty"],"cmds":["id","proc","const","func","attrib","attribxi","attribxx","attribii","attribix","attribb","attribbb","attribbbb","attribbxxi","attribe","attribex","twodots","gets","isequal","Procname","li","zi","kw","For","To","Downto","By","While","If","Return","Goto","Error","Spawn","Sync","Parfor","Comment","CommentSymbol","Do","End","Repeat","Until","Then","Else","ElseIf","ElseNoIf","Indentmore","RComment","setlinenumber","setlinenumberplus","Startalign","Stopalign","codeboxwidth","codeindent","digitwidth","EndTest","FakeIndent","firstcodelinefalse","firstcodelinetrue","iffirstcodeline","ifnumberedline","ifprocname","Indent","liprint","lispace","numberedlinefalse","numberedlinetrue","numref","procnamefalse","procnametrue","putfakeindents","putindents","savecode","saveprocname","thecodelinenumber","theindent","thethisindent","useregularv","zeroli"]}
-,
-"clrstrip.sty":{"envs":["colorstrip"],"deps":["expkv.sty"],"cmds":["colorstripSet"]}
-,
-"cmathbb.sty":{"envs":{},"deps":["amsfonts.sty"],"cmds":["CMath"]}
-,
-"cmbright.sty":{"envs":{},"deps":{},"cmds":["upGamma","upDelta","upOmega","upTheta","upLambda","upXi","upPi","upSigma","upUpsilon","upPhi","upPsi","mathbold","mathsterling"]}
-,
-"cmdstring.sty":{"envs":{},"deps":{},"cmds":["cmdstring"]}
-,
-"cmdtrack.sty":{"envs":{},"deps":{},"cmds":["commandlist","untrack","logcmd","testthm","ShowPackageInfo"]}
-,
-"cmll.sty":{"envs":{},"deps":["ifthen.sty","relsize.sty"],"cmds":["biginvampemu","bigwithemu","invampemu","biginvamp","bigparr","bigwith","Bot","coh","incoh","invamp","multimapboth","multimapinv","nmultimap","nmultimapboth","nmultimapinv","oc","parr","Perp","scoh","shift","shneg","shpos","simbot","simperp","sincoh","with","wn"]}
-,
-"cmsendnotes.sty":{"envs":{},"deps":["kvoptions.sty","endnotes.sty","etoolbox.sty","nameref.sty"],"cmds":["enoteheader","enotepartheader","enoteskip","enotesubheader","intropartheader","introsubheader","savedhref","savedurl","theendnotesbypart","theHendnote"]}
-,
-"cmsrb.sty":{"envs":{},"deps":["cmupint.sty","amssymb.sty"],"cmds":["CYRA","CYRB","CYRV","CYRG","CYRD","CYRDJE","CYRE","CYRZH","CYRZ","CYRI","CYRJE","CYRK","CYRL","CYRLJE","CYRNJE","CYRDZHE","CYRGJE","CYRKJE","CYRM","CYRN","CYRO","CYRP","CYRR","CYRS","CYRT","CYRTSHE","CYRU","CYRF","CYRH","CYRC","CYRCH","CYRSH","CYRZJE","CYRSJE","CYRDZE","cyra","cyrb","cyrv","cyrg","cyrd","cyrdje","cyre","cyrzh","cyrz","cyri","cyrje","cyrk","cyrl","cyrlje","cyrm","cyrn","cyrnje","cyro","cyrp","cyrr","cyrs","cyrt","cyrtshe","cyru","cyrf","cyrh","cyrc","cyrch","cyrdzhe","cyrsh","cyrgje","cyrkje","cyrzje","cyrsje","cyrdze","dj","DJ","f","C","quotedblbase","DH"]}
-,
-"cmtt.sty":{"envs":{},"deps":["keyval.sty"],"cmds":["mttfamily","textmtt","mtt","nbsp"]}
-,
-"cmupint.sty":{"envs":{},"deps":{},"cmds":["longint","longoint","longiint","longoiint","iint","iiint","iiiint","oiint","oiiint","ointctrclockwise","ointclockwise","varointclockwise","varointctrclockwise","sqint","sqiint","pointint","npolint","scpolint","rppolint","cirfnint","intclockwise","awint","fint","barint","doublebarint","xint","landupint","landdownint","intlarhk","upint","downint","sumint","intcap","intcup","varidotsint","idotsint","uprightintop","uprightiintop","uprightiiintop","uprightiiiintop","uprightointop","uprightoiintop","uprightoiiintop","uprightointctrclockwiseop","uprightointclockwiseop","varuprightointclockwiseop","varuprightointctrclockwiseop","uprightsqintop","uprightsqiintop","uprightpointintop","uprightnpolintop","uprightscpolintop","uprightrppolintop","uprightcirfnintop","uprightintclockwiseop","uprightawintop","uprightfintop","uprightbarintop","uprightdoublebarintop","uprightxintop","uprightlandupintop","uprightlanddownintop","uprightintlarhkop","uprightupintop","uprightdownintop","uprightidotsintop","uprightsumintop","uprightintcupop","uprightintcapop","uprightlongintop","uprightlongointop","uprightlongiintop","uprightlongoiintop"]}
-,
-"cncolours.sty":{"envs":{},"deps":["xcolor.sty"],"cmds":{}}
-,
-"cnlogo.sty":{"envs":{},"deps":["tikz.sty","xparse.sty"],"cmds":["ahulogo","hgyulogo","bhulogo","bjtuwhole","bjtulogo","bjtutext","bjydulogo","bnuwhole","bnulogo","bnutext","chulogo","ckyulogo","csulogo","cuglogo","cupslwhole","cupsllogo","cupsltext","dbcjulogo","dllguwhole","dllgulogo","dllgutext","fdulogo","fdutext","gnulogo","gnutext","gufswhole","gufslogo","gufstext","hbulogo","hdsfulogo","hdzfuwhole","hdzfulogo","hdzfutext","hhuwhole","hhulogo","hhutext","hitwhole","hitside","hitlogo","hittext","hitjt","hnlguwhole","hnlgulogo","hnlgutext","hnnutext","hnnulogo","hnuwhole","hnutext","hnulogo","hustcwhole","hustclogo","hustctext","hznuwhole","hznulogo","hznutext","jlulogo","jnuwhole","jnulogo","jnutext","julogo","lzuwhole","lzulogo","lzutext","mucwhole","muclogo","muctext","nculogo","ncutext","neuwhole","neulogo","neutext","njuwhole","njulogo","njutext","njustwhole","nkuwhole","nkulogo","nkutext","pkutext","pkulogo","pkuwhole","rucside","rucwhole","ruclogo","ructext","scuwhole","sculogo","scutext","sdcjuwhole","sdcjulogo","sdcjutext","sdulogo","shulogo","stjulogo","stjutext","stjuside","sustclogoen","sustclogocn","swaulogo","swcnulogo","sysulogo","sysutext","szuwhole","szulogo","szutext","thulogo","thulib","thutext","thuside","tjuwhole","tjulogo","tjutext","tjuuwhole","tjuulogo","tjuutext","ustblogo","ustclogo","ustcside","ustcwhole","ustctext","whlgulogo","whulogo","wzulogo","xbnlkjuwhole","xbnlkjulogo","xbnlkjutext","xdulogo","xjtuwhole","xjtulogo","xjtutext","xmutext","xmulogo","yzuwhole","yzulogo","yzutext","zcmulogo","zhyulogo","zjulogo","zjutext","zkywhole","zkylogo","zkytext","znyulogo","zzuwhole","zzulogo","zzutext"]}
-,
-"cnltx-base.sty":{"envs":{},"deps":["pgfopts.sty","etoolbox.sty","ltxcmds.sty","pdftexcmds.sty","trimspaces.sty","xcolor.sty"],"cmds":["iftest","nottest","expandtwice","cnltxat","cnltxletterat","cnltxotherat","cnltxbang","cnltxequal","setcnltx","DeclareCounterRepresentation","newcounterrepresentation","providecounterrepresentation","renewcounterrepresentation","newexpandablecmd","renewexpandablecmd","provideexpandablecmd","definecolorscheme"]}
-,
-"cnltx-doc.cls":{"envs":["commands","options","environments","cnltxquote","cnltxlist"],"deps":["cnltx-tools.sty","cnltx-names.sty","cnltx-example.sty","s-scrartcl.cls","scrlayer-scrpage.sty","multicol.sty","ragged2e.sty","marginnote.sty","hyperref.sty","ifxetex.sty","ifluatex.sty","fontenc.sty","libertine.sty","libertinehologopatch.sty","microtype.sty","fnpct.sty","babel.sty","imakeidx.sty","biblatex.sty"],"cmds":["sinceversion","changedversion","newnote","newpackagename","lppl","LPPL","license","ctan","CTAN","CTANurl","email","website","securewebsite","needpackage","needclass","command","Default","expandable","unexpandable","expandablesign","expandablesymbol","unexpandablesymbol","opt","keyval","keylit","keychoice","keybool","Module","environment","DH","dh","dj","DJ","guillemetleft","guillemetright","guillemotleft","guillemotright","guilsinglleft","guilsinglright","Hwithstroke","hwithstroke","k","NG","ng","quotedblbase","quotesinglbase","textogonekcentered","textquotedbl","th","TH","cnltxpackagenameformat","visualizespaces","visiblespace"]}
-,
-"cnltx-example.sty":{"envs":["example","sidebyside","sourcecode","bash"],"deps":["cnltx-listings.sty","cnltx-translations.sty","mdframed.sty","idxcmds.sty","textcomp.sty","adjustbox.sty","ifxetex.sty","ulem.sty"],"cmds":["code","verbcode","cs","csidx","env","envidx","beginend","beginenv","endenv","meta","marg","Marg","oarg","Oarg","darg","Darg","sarg","newarg","option","optionidx","module","moduleidx","key","keyis","choices","choicekey","boolkey","default","pkg","pkgidx","cls","clsidx","bnd","inputexample","inputsidebyside","inputsourcecode","implementation","newinputsourcefilecmd","newsourcecodeenv","codefont","sourceformat","exampleformat","versionnoteformat","packageformat","classformat","argumentformat","indexcs","indexenv","MakePercentComment"]}
-,
-"cnltx-listings.sty":{"envs":{},"deps":["cnltx-base.sty","listings.sty","catchfile.sty"],"cmds":["listsilentcmds","listsilentenvs","listbibfilekeys","listbibfiletypes","listbibfileentries"]}
-,
-"cnltx-names.sty":{"envs":{},"deps":["cnltx-base.sty"],"cmds":["newfirstformat","writename","defnameformat","writenameformat","name","nameformat","namefirstformat","resetname","newname"]}
-,
-"cnltx-tools.sty":{"envs":{},"deps":["cnltx-base.sty","accsupp.sty","cnltx-translations.sty"],"cmds":["cnltxacronym","newabbr","renewabbr","defabbr","cnltxlatin","ie","eg","cf","etc","vs","zB","ZB","usw","usf","uswusf","bzw","dsh","Dsh","vgl","Vgl","cnltxtimeformat","PM","AM","BC","AD","nohyperpage","texorpdfstring"]}
-,
-"cnltx-translations.sty":{"envs":{},"deps":["cnltx-base.sty"],"cmds":{}}
-,
-"cnltx.sty":{"envs":{},"deps":["cnltx-base.sty","cnltx-listings.sty","cnltx-example.sty","cnltx-names.sty","cnltx-tools.sty","cnltx-translations.sty"],"cmds":{}}
-,
-"cntdwn.sty":{"envs":{},"deps":["xkeyval.sty"],"cmds":["cntdwnlTimers","cntdwnaTimers","cntdwnYear","cntdwnYears","cntdwnDay","cntdwnDays","cntdwnHour","cntdwnHours","cntdwnMinute","cntdwnMinutes","cntdwnSecond","cntdwnSeconds","CDO","setShortCntDwn","seconds","minutes","hours","cntdwnDisplay","cntdwnStartT","cntdwnPauseT","cntdwnStopT","cntdwnEndTarget","cntdwnStart","cntdwnPause","cntdwnStop","cntdwnopts","thetimername","isStopwatch","cnddwnDefaultEndMsg","setLongCntDwn","days","weeks","years","lcntdwnDisplay","lcntdwnToggle","setClockTimer","cntdwnclocktime","cntdwnclockdate","clockToggle","lcnddwnDefaultEndMsg"]}
-,
-"cntformats.sty":{"envs":{},"deps":["cnltx-base.sty","etoolbox.sty"],"cmds":["AddCounterPattern","NewCounterPattern","RenewCounterPattern","ReadCounterFrom","ReadCounterPattern","ReadCounterPatternFrom","SaveCounterPattern","eSaveCounterPattern","SaveCounterPatternFrom","eSaveCounterPatternFrom","NewPatternFormat"]}
-,
-"cochineal.sty":{"envs":{},"deps":["fontenc.sty","ifxetex.sty","ifluatex.sty","xkeyval.sty","etoolbox.sty","textcomp.sty","ifthen.sty","xstring.sty","scalefnt.sty","mweights.sty","fontaxes.sty"],"cmds":["circledtxt","cochLF","cochOsF","cochTLF","cochTOsF","defigures","destyle","infigures","lfstyle","liningnums","nustyle","osfstyle","proportionalnums","Qnoswash","Qswash","sufigures","swshape","tabularnums","textde","textdenominators","textfrac","textinf","textinferior","textlf","textosf","textsu","textsuperior","texttlf","texttosf","tlfstyle","tosfstyle","useosf","useproportional","DH","NG","dj","ng","k","guillemotleft","guillemotright","guilsinglleft","guilsinglright","quotedblbase","quotesinglbase","textquotedbl","DJ","th","TH","dh","Hwithstroke","hwithstroke","textogonekcentered","guillemetleft","guillemetright"]}
-,
-"codeanatomy.sty":{"envs":{},"deps":["tikz.sty","tikzlibrarytikzmark.sty","tikzlibraryfit.sty","tikzlibrarybending.sty","tikzlibraryshapes.sty","tikzlibrarychains.sty","tikzlibrarybackgrounds.sty","tikzlibrarydecorations.sty","tikzlibrarydecorations.pathmorphing.sty"],"cmds":["codeBlock","cPart","iPart","mtPoint","hmtPoint","mbPoint","dmbPoint","extremPoint","fitExtrem","bgcode","ptab","phspace","codeAnnotation"]}
-,
-"codebox.sty":{"envs":["codebox","codebox*","codeview","codeview*"],"deps":["expl3.sty","xtemplate.sty","l3keys2e.sty","xparse.sty","fontawesome5.sty","tcolorbox.sty","tcolorboxlibraryskins.sty","tcolorboxlibrarybreakable.sty","tcolorboxlibraryminted.sty","tcolorboxlibrarylistings.sty","tikzlibraryshapes.geometric.sty","varwidth.sty","xcolor.sty","etoolbox.sty"],"cmds":["codefile","cvfile","codeset","thecvcounter"]}
-,
-"codedoc.cls":{"envs":["code","code*","invisible","example","example*"],"deps":["s-memoir.cls","s-book.cls","s-ltxdockit.cls","s-scrartcl.cls","s-scrbook.cls","s-scrreprt.cls","s-scrlttr2.cls","s-ltxdoc.cls","s-report.cls","s-ltxguide.cls","s-ltxguidex.cls","s-l3doc.cls","makeidx.sty"],"cmds":["ProduceFile","FileSource","FileName","FileVersion","FileDate","CloseFile","CodeFont","LineNumber","Header","AddBlankLine","TabSize","Gobble","BoxTolerance","DescribeMacro","DefineMacro","DescribeEnvironment","DefineEnvironment","DescribeIndexFont","DefineIndexFont","PrintMacro","DocStripMarginpar","IgnorePrefix","PrintPrefix","meta","marg","oarg","parg","bslash","StopHere","DangerousEnvironment","StartIgnore","StopIgnore","CodeInput","CodeOutput","NewExample","RenewExample","eTeXOff","eTeXOn","ShortVerb","UndoShortVerb","ShortCode","UndoShortCode","VerbBreak","UndoVerbBreak","VerbCommand","UndoVerbCommand","CodeEscape","UndoCodeEscape","AtChar"]}
-,
-"codehigh.sty":{"envs":["codehigh","demohigh"],"deps":["expl3.sty","catchfile.sty","xcolor.sty","ninecolors.sty","varwidth.sty","iftex.sty"],"cmds":["CodeHigh","dochighinput","fakeverb","NewCodeHighEnv","NewCodeHighInput","AddCodeHighRule","SetCodeHighStyle","GetCodeHighStyle","SetCodeHighTracing"]}
-,
-"codesection.sty":{"envs":{},"deps":["etoolbox.sty"],"cmds":["DefineCodeSection","SetCodeSection","BeginCodeSection","EndCodeSection"]}
-,
-"coelacanth.sty":{"envs":{},"deps":["ifxetex.sty","ifluatex.sty","xkeyval.sty","textcomp.sty","fontenc.sty","fontaxes.sty","mweights.sty"],"cmds":["oldstylenums","liningnums","tabularnums","proportionalnums"]}
-,
-"coffeestains.sty":{"envs":{},"deps":["kvoptions.sty","tikz.sty"],"cmds":["coffeestainA","coffeestainB","coffeestainC","coffeestainD","stainA","stainB","stainC","stainD"]}
-,
-"collcell.sty":{"envs":{},"deps":["array.sty","etoolbox.sty","tabularx.sty"],"cmds":["collectcell","endcollectcell","ccunskip","cci"]}
-,
-"collect.sty":{"envs":["collect*","collect","collectinmacro"],"deps":{},"cmds":["definecollection","includecollection"]}
-,
-"collectbox.sty":{"envs":{},"deps":{},"cmds":["collectbox","collectboxto","collectboxcheckenv","collectedbox","BOXCONTENT","ifcollectboxenv","collectboxenvtrue","collectboxenvfalse","collectboxenvend"]}
-,
-"college-math-j.sty":{"envs":["absquotation","filler","parlist","unlist","biog","affil","acknowledgment","acknowledge","mtable","dbleqnarray","dbleqnarray*"],"deps":["times.sty","graphicx.sty","color.sty","url.sty","amsmath.sty","amsthm.sty","amsfonts.sty","amssymb.sty","pifont.sty"],"cmds":["doi","iftrimmarks","trimmarksfalse","trimmarkstrue","papertrimheight","papertrimwidth","journalname","thevolume","theissue","theannual","themonth","copysize","sectionsize","titlesize","scsize","editor","editors","schapter","intro","copyright","registered","copyrightsf","registeredsf","opargboxed","regboxed","ifuppercase","uppercasetrue","uppercasefalse","fillerhead","fillerheadmark","opargenumerate","regenumerate","psection","refsection","refsectionmark","boxedhead","biogwidth","regbiog","opargbiog","biogpic","tempbiogpic","separator","fudgetrimdown","fudgetrimright","tlmark","trmark","brmark","blmark","imagemarks","timestring","dffudge","jotskip","abrule","arule","brule","settildes","threeem","bysame","final"]}
-,
-"collref.sty":{"envs":{},"deps":{},"cmds":["collectsep","nocollect"]}
-,
-"colonequals.sty":{"envs":{},"deps":{},"cmds":["approxcolon","approxcoloncolon","colonapprox","coloncolon","coloncolonapprox","coloncolonequals","coloncolonminus","coloncolonsim","colonequals","colonminus","colonsim","equalscolon","equalscoloncolon","minuscolon","minuscoloncolon","ratio","simcolon","simcoloncolon","colonsep","doublecolonsep"]}
-,
-"colophon.sty":{"envs":["colophon"],"deps":["xkeyval.sty"],"cmds":["colophon","endcolophon","colophontitle","colophontitlestyle","colophontitlesize","colophonmidspace","colophonpagestyle","colophontitlealign","colophonpretitlehook","colophonposttitlehook","colophonparstyle","colophonparsize","colophonparlead","colophonnofirstindent","colophonpreparhook","colophonpostparhook","colophonparalign","colophonnofullpage","colophonnoclrdblpg","colophonclrpg","colophontopspace","colophonbotspace"]}
-,
-"color-edits.sty":{"envs":{},"deps":["color.sty","ifthen.sty"],"cmds":["addauthor"]}
-,
-"color.sty":{"envs":{},"deps":{},"cmds":["textcolor","mathcolor","pagecolor","nopagecolor","definecolor","DefineNamedColor","normalcolor","color","colorbox","fcolorbox"]}
-,
-"colorart.cls":{"envs":{},"deps":["silence.sty","geometry.sty","indentfirst.sty","colorist.sty","projlib-font.sty","mathpazo.sty","newpxtext.sty","amssymb.sty","nowidow.sty","regexpatch.sty","embrac.sty","graphicx.sty","wrapfig.sty","float.sty","caption.sty","draftwatermark.sty","lmodern.sty","newtxtext.sty","newtxmath.sty","ebgaramond-maths.sty","ebgaramond.sty","anyfontsize.sty","notomath.sty","eulervm.sty","biolinum.sty","mathastext.sty"],"cmds":["captionsjapanese","datejapanese","extrasjapanese","noextrasjapanese","cyrdash","asbuk","Asbuk","Russian","sh","ch","tg","ctg","arctg","arcctg","th","cth","cosec","Prob","Variance","NOD","nod","NOK","nok","Proj","cyrillicencoding","cyrillictext","cyr","textcyrillic","dq","captionsrussian","daterussian","extrasrussian","noextrasrussian","CYRA","CYRB","CYRV","CYRG","CYRGUP","CYRD","CYRE","CYRIE","CYRZH","CYRZ","CYRI","CYRII","CYRYI","CYRISHRT","CYRK","CYRL","CYRM","CYRN","CYRO","CYRP","CYRR","CYRS","CYRT","CYRU","CYRF","CYRH","CYRC","CYRCH","CYRSH","CYRSHCH","CYRYU","CYRYA","CYRSFTSN","CYRERY","cyra","cyrb","cyrv","cyrg","cyrgup","cyrd","cyre","cyrie","cyrzh","cyrz","cyri","cyrii","cyryi","cyrishrt","cyrk","cyrl","cyrm","cyrn","cyro","cyrp","cyrr","cyrs","cyrt","cyru","cyrf","cyrh","cyrc","cyrch","cyrsh","cyrshch","cyryu","cyrya","cyrsftsn","cyrery","cdash","tocname","authorname","acronymname","lstlistingname","lstlistlistingname","notesname","nomname","IfPrintModeTF","IfPrintModeT","IfPrintModeF"]}
-,
-"colorbook.cls":{"envs":{},"deps":["s-book.cls","silence.sty","geometry.sty","indentfirst.sty","colorist.sty","projlib-font.sty","mathpazo.sty","newpxtext.sty","amssymb.sty","nowidow.sty","regexpatch.sty","embrac.sty","graphicx.sty","wrapfig.sty","float.sty","caption.sty","draftwatermark.sty","lmodern.sty","newtxtext.sty","newtxmath.sty","ebgaramond-maths.sty","ebgaramond.sty","anyfontsize.sty","notomath.sty","eulervm.sty","biolinum.sty","mathastext.sty"],"cmds":["captionsjapanese","datejapanese","extrasjapanese","noextrasjapanese","cyrdash","asbuk","Asbuk","Russian","sh","ch","tg","ctg","arctg","arcctg","th","cth","cosec","Prob","Variance","NOD","nod","NOK","nok","Proj","cyrillicencoding","cyrillictext","cyr","textcyrillic","dq","captionsrussian","daterussian","extrasrussian","noextrasrussian","CYRA","CYRB","CYRV","CYRG","CYRGUP","CYRD","CYRE","CYRIE","CYRZH","CYRZ","CYRI","CYRII","CYRYI","CYRISHRT","CYRK","CYRL","CYRM","CYRN","CYRO","CYRP","CYRR","CYRS","CYRT","CYRU","CYRF","CYRH","CYRC","CYRCH","CYRSH","CYRSHCH","CYRYU","CYRYA","CYRSFTSN","CYRERY","cyra","cyrb","cyrv","cyrg","cyrgup","cyrd","cyre","cyrie","cyrzh","cyrz","cyri","cyrii","cyryi","cyrishrt","cyrk","cyrl","cyrm","cyrn","cyro","cyrp","cyrr","cyrs","cyrt","cyru","cyrf","cyrh","cyrc","cyrch","cyrsh","cyrshch","cyryu","cyrya","cyrsftsn","cyrery","cdash","tocname","authorname","acronymname","lstlistingname","lstlistlistingname","notesname","nomname","IfPrintModeTF","IfPrintModeT","IfPrintModeF"]}
-,
-"colordoc.sty":{"envs":{},"deps":["color.sty"],"cmds":["textnew","BraceLevel","ColorLevels","doctheCodelineNo"]}
-,
-"colordvi.sty":{"envs":{},"deps":{},"cmds":["background","subdef","textColor","Color","newColor","GreenYellow","Yellow","Goldenrod","Dandelion","Apricot","Peach","Melon","YellowOrange","Orange","BurntOrange","Bittersweet","RedOrange","Mahogany","Maroon","BrickRed","Red","OrangeRed","RubineRed","WildStrawberry","Salmon","CarnationPink","Magenta","VioletRed","Rhodamine","Mulberry","RedViolet","Fuchsia","Lavender","Thistle","Orchid","DarkOrchid","Purple","Plum","Violet","RoyalPurple","BlueViolet","Periwinkle","CadetBlue","CornflowerBlue","MidnightBlue","NavyBlue","RoyalBlue","Blue","Cerulean","Cyan","ProcessBlue","SkyBlue","Turquoise","TealBlue","Aquamarine","BlueGreen","Emerald","JungleGreen","SeaGreen","Green","ForestGreen","PineGreen","LimeGreen","YellowGreen","SpringGreen","OliveGreen","RawSienna","Sepia","Brown","Tan","Gray","Black","White"]}
-,
-"colorframed.sty":{"envs":{},"deps":["framed.sty","color.sty"],"cmds":["colorframedbordercolorcommand","colorframedcolorbox","colorframedTFconlabcolorcommand","colorframedTitleBarFrame","colorframedTFtitlesep","colorframedTFconlabsep"]}
-,
-"colorinfo.sty":{"envs":{},"deps":{},"cmds":["colorInfo","colorInfoRGB","colorModel","colorValue","colorDriver"]}
-,
-"colorist-fancy.sty":{"envs":["keyword","emphasis","proof","enumerate*","itemize*","description*"],"deps":["anyfontsize.sty","tikz.sty","tikzlibrarycalc.sty","tikzlibraryshadings.sty","tikzpagenodes.sty","geometry.sty","fancyhdr.sty","extramarks.sty","titlesec.sty","ulem.sty","titletoc.sty","enumitem.sty","imakeidx.sty","silence.sty","projlib-draft.sty","mathtools.sty","amsthm.sty","bookmark.sty","hyperref.sty","projlib-theorem.sty","marginnote.sty","ifoddpage.sty","iftex.sty","projlib-author.sty","projlib-titlepage.sty","tcolorbox.sty","tcolorboxlibrarymany.sty","projlib-language.sty","scontents.sty"],"cmds":["parttext","AfterEnvEnd","ScanEnv","keywordname","partstring","customqedsymbol","IndexDotfill","IndexLinebreak","IndexHeading","keywords","dedicatory","subjclass"]}
-,
-"colorist.sty":{"envs":{},"deps":["projlib-paper.sty","projlib-language.sty","colorist-fancy.sty"],"cmds":{}}
-,
-"colorjamo.sty":{"envs":{},"deps":["luacolor.sty"],"cmds":["colorjamo","jamocolorcho","jamocolorjung","jamocolorjong","jamotransparency","colorchoattr","colorjungattr","colorjongattr","jamoopacity","jamoopacityid","opacityjamoattr"]}
-,
-"colorpalette.sty":{"envs":{},"deps":["xcolor.sty","macrolist.sty"],"cmds":["newpalettetheme","addcolortotheme","newpalette","setpalettecolor","activepalette","getcolor","applycolor"]}
-,
-"colorspace.sty":{"envs":{},"deps":["xcolor.sty"],"cmds":["definespotcolor","definecolorspace","pagecolorspace","resetpagecolorspace","overprintstate","textoverprint"]}
-,
-"colortbl.sty":{"envs":{},"deps":["array.sty"],"cmds":["arrayrulecolor","cellcolor","columncolor","doublerulesepcolor","rowcolor","minrowclearance","rowcolors","showrowcolors","hiderowcolors","rownum","therownum"]}
-,
-"colorwav.sty":{"envs":{},"deps":["ifthen.sty","fp.sty"],"cmds":["storeRGBofWavelength","setUnitsE","setMinVisibleWavelength","setMaxVisibleWavelength"]}
-,
-"colorweb.sty":{"envs":{},"deps":["color.sty"],"cmds":{}}
-,
-"colourchange.sty":{"envs":{},"deps":["etoolbox .sty","calc.sty"],"cmds":["selectmanualcolour","selectmanualcolor","selectcolourchanges","selectcolorchanges","setcolours","fractionate","setstruccol","setstruccolx","inserttotalslidenumber"]}
-,
-"combelow.sty":{"envs":{},"deps":{},"cmds":["cb"]}
-,
-"combine.cls":{"envs":["papers","tocindent"],"deps":["keyval.sty","s-memoir.cls","s-book.cls","s-letter.cls","s-report.cls"],"cmds":["import","maintitlefont","postmaintitle","mainauthorfont","postmainauthor","maindatefont","postmaindate","importtitlefont","postimporttitle","importauthorfont","postimportauthor","importdatefont","postimportdate","bodytitle","bodytitlemark","coltoctitle","published","pubfont","toctitleindent","tocauthorindent","tocpubindent","toctocindent","toctitlefont","tocauthorfont","tocpubfont","erasetitling","provideenvironment","providelength","providecounter","zeroextracounters","appendiargdef","emptyAtBeginDocument","thecolpage","setuppapers","takedownpapers"]}
-,
-"combinedgraphics.sty":{"envs":{},"deps":["keyval.sty","graphicx.sty","color.sty"],"cmds":["includecombinedgraphics"]}
-,
-"combofont.sty":{"envs":{},"deps":["luatex.sty","xparse.sty","xfp.sty"],"cmds":["setupcombofont","combodefaultfeat"]}
-,
-"comfortaa.sty":{"envs":{},"deps":["ifluatex.sty","ifxetex.sty","xkeyval.sty"],"cmds":["comfortaa","comfortaafamily","fcofamily"]}
-,
-"comicneue.sty":{"envs":{},"deps":["l3keys2e.sty","xparse.sty","fontenc.sty","mweights.sty"],"cmds":["comicneue","comicneuelight","comicneueangular","comicneueangularlight","DH","NG","dj","ng","k","guillemotleft","guillemotright","guilsinglleft","guilsinglright","quotedblbase","quotesinglbase","textquotedbl","DJ","th","TH","dh","Hwithstroke","hwithstroke","textogonekcentered","guillemetleft","guillemetright"]}
-,
-"comicsans.sty":{"envs":{},"deps":["textcomp.sty","soul.sty"],"cmds":{}}
-,
-"comma.sty":{"envs":{},"deps":{},"cmds":["commaform","commaformtoken","addcomma"]}
-,
-"commado.sty":{"envs":{},"deps":{},"cmds":["DoWithCSL","withcsname","ifltx","PushCatMakeLetter","PopLetterCat","PushCatMakeLetterAt","PopLetterCatAt","plainpkginfo"]}
-,
-"commath.sty":{"envs":{},"deps":["amsmath.sty"],"cmds":["abs","appref","assref","cbr","colref","defnref","del","dif","Dif","dmd","dod","dpd","enVert","norm","envert","eval","exref","figref","fullfunction","intcc","intco","intoc","intoo","lemref","md","od","pd","propref","remref","sVert","sbr","secref","set","thmref","tmd","tod","tpd","ordinarycolon"]}
-,
-"commedit.sty":{"envs":["commeditPreamble","commeditComments","commeditText","commentsBox"],"deps":["etoolbox.sty","everyshi.sty","graphicx.sty"],"cmds":["commentscolskip","commentscolwidth","commentscolTheight","commentscolSheight","basepageboxwidth","basepageargs","commentsOddPageSetup","commentsEvenPageSetup","commentsContinuationPageSetup","commentsHook","commentsraggedbottom","commentsflushbottom","ifCommentedEdition","CommentedEditiontrue","CommentedEditionfalse","typesetComments","typesetContinuation"]}
-,
-"comment.sty":{"envs":["comment"],"deps":{},"cmds":["includecomment","excludecomment","CommentCutFile","ProcessCutFile","generalcomment","specialcomment","Thiscomment","WriteCommentLine","ThisComment","processcomment","makeinnocent","csarg","latexname","latexename","CommentStream","DefaultCutFileName","ProcessComment","CurrentComment","xComment","ProcessCommentLine","SetUpCutFile","PrepareCutFile","CloseAndInputCutFile","FinalizeCutFile","leveledcomment","EndOfComment","CommentEndDef"]}
-,
-"commonunicode.sty":{"envs":{},"deps":["amsfonts.sty","amssymb.sty","mathrsfs.sty","mathtools.sty","stmaryrd.sty"],"cmds":{}}
-,
-"commutative-diagrams.sty":{"envs":["codi"],"deps":["tikz.sty","tikzlibrarycommutative-diagrams.sty"],"cmds":{}}
-,
-"competences.sty":{"envs":["dummyEnv"],"deps":["todonotes.sty","datatool.sty","etoolbox.sty","longtable.sty"],"cmds":["declareprefix","declarecompetence","addGlobalCompetence","addcompetence","tableaupartie","tableauprefix","cstotal","dummyMacro","getCurrentSectionNumber","getCurrentpartiedocument","gptotal","gtotal","ifcompexists","ifpartexists","ifquestexists","partie","pctotal","pftotal","ptotal","quest","sumcspartie","sumpfpartie","tableaucompetences","total"]}
-,
-"complexity.sty":{"envs":{},"deps":["ifthen.sty"],"cmds":["defaultL","defaultP","defaultS","cL","cP","cS","co","parity","llog","poly","polylog","qpoly","qlog","MOD","Mod","CVP","SAT","MaxSAT","AC","A","ACC","AH","AL","AlgP","AM","AMEXP","Amp","AmpMP","AmpPBQP","AP","APP","APX","AUCSPACE","AuxPDA","AVBPP","AvE","AvP","AW","AWPP","betaP","BH","BP","BPE","BPEE","BPHSPACE","BPL","BPP","BPPOBDD","BPPpath","BPQP","BPSPACE","BPTIME","BQNC","BQNP","BQP","BQPOBDD","BQTIME","C","cc","CeL","CeP","CFL","CH","CkP","CLOG","CNP","coAM","coBPP","coCeP","cofrIP","Coh","coMA","compIP","compNP","coNE","coNEXP","coNL","coNP","coNQP","coRE","coRNC","coRP","coSL","coUCC","coUP","CP","CSIZE","CSL","CZK","D","DCFL","DET","DiffAC","DisNP","DistNP","DP","DQP","DSPACE","DTIME","DTISP","Dyn","DynFO","E","EE","EEE","EESPACE","EEXP","EH","EL","ELEMENTARY","ELkP","EPTAS","EQBP","EQP","EQTIME","ESPACE","ExistsBPP","ExistsNISZK","EXP","EXPSPACE","FBQP","Few","FewP","FH","FNL","FNP","FO","FOLL","FP","FPR","FPRAS","FPT","FPTAS","FPTnu","FPTsu","FQMA","frIP","FTAPE","FTIME","G","GA","GANSPACE","Gap","GapAC","GapL","GapP","GC","GCSL","GI","GPCD","Heur","HeurBPP","HeurBPTIME","HkP","HSPACE","HVSZK","IC","IP","IPP","K","kBQBP","kBWBP","kEQBP","kPBP","KT","LIN","LkP","LOGCFL","LogFew","LogFewNL","LOGNP","LOGSNP","LWPP","M","MA","MAC","MAE","MAEXP","mAL","MaxNP","MaxPB","MaxSNP","mcoNL","MinPB","MIP","MkP","mL","mNC","mNL","mNP","ModkL","ModkP","ModP","ModZkL","mP","MP","MPC","mTC","NAuxPDA","NC","NE","NEE","NEEE","NEEXP","NEXP","NIPZK","NIQPZK","NIQSZK","NISZK","NL","NLIN","NLOG","NP","NPC","NPI","NPMV","NPMVsel","NPO","NPOPB","NPSPACE","NPSV","NPSVsel","NQP","NSPACE","NT","NTIME","OBDD","OCQ","Opt","OptP","p","PAC","PBP","PCD","Pclose","PCP","PermUP","PEXP","PF","PFCHK","PH","PhP","PINC","PIO","PKC","PL","PLF","PLL","PLS","POBDD","PODN","polyL","PostBQP","PP","PPA","PPAD","PPADS","Ppoly","PPP","PPSPACE","PQUERY","PR","PrHSPACE","Promise","PromiseBPP","PromiseBQP","PromiseP","PromiseRP","promiseBPP","promiseBQP","promiseP","promiseRP","PrSPACE","PSel","PSK","PSPACE","PT","PTAPE","PTAS","PTWK","PZK","QAC","QACC","QAM","QCFL","QCMA","QH","QIP","QMA","QMAM","QMIP","QMIPle","QMIPne","QNC","QP","QPLIN","Qpoly","QPSPACE","QSZK","R","RE","REG","RevSPACE","RHL","RHSPACE","RL","RNC","RNP","RP","RPP","RSPACE","SAC","SAPTIME","SBP","SC","SE","SEH","Sel","SelfNP","SF","SIZE","SKC","SL","SLICEWISEPSPACE","SNP","SOE","SP","SPACE","spanP","SPARSE","SPL","SPP","SUBEXP","symP","SZK","TALLY","TC","TFNP","ThC","TreeBQP","TREEREGULAR","UAP","UCC","UE","UL","UP","US","VNC","VNP","VP","VQP","W","WAPP","WPP","XORMIP","XP","XPuniform","YACC","ZPE","ZPP","ZPTIME","newclass","renewclass","class","ComplexityFont","newlang","renewlang","lang","newfunc","renewfunc","func"]}
-,
-"compsci.sty":{"envs":["warning","todoenv","typesetexample","codeexample","codeexample*","codeexamplex","bothexample","bothexample*","splitexample","splitexample*"],"deps":["abbrevs.sty","alltt.sty","lips.sty","moredefs.sty","relsize.sty","shortvrb.sty","slemph.sty","titles.sty","url.sty","verbatim.sty"],"cmds":["env","bst","package","cat","class","file","ext","caveat","todo","code","typeset","email","option","program","cs","cmd","cname","marg","oarg","meta","newprogram","ProcessDTXFile","JusTLoaDInformatioN","AddToCheckSum","BibTeX","filename","IfCitations","IfJustLoadInformation","MakePercentComment","MakePercentIgnore","RestorECitationS","RestoreDoXVarS","SaveDoXVarS","TMFontProgram","Frankenstein","monster","ALaTeX","ctan","kpse","gemacs","auctex","nts","MakeIndex","etex","LaTeXiii","idvi"]}
-,
-"concepts.sty":{"envs":{},"deps":["etextools.sty","nth.sty","xspace.sty","xparse.sty","ltxkeys.sty","xstring.sty"],"cmds":["NewConcept","ConceptOption","ConceptName","ConceptSymbol","ConceptSymbols","ConceptNameAndSymbols"]}
-,
-"concmath-otf.sty":{"envs":{},"deps":["iftex.sty","unicode-math.sty","xkeyval.sty"],"cmds":["circledR","circledS","blacksquare","centerdot","circlearrowleft","circlearrowright","cuberoot","diagdown","diagup","doteqdot","doublecap","doublecup","fourthroot","gggtr","gtreqqslantless","gtreqslantless","gvertneqq","intextender","lesseqqslantgtr","lesseqslantgtr","lhd","llless","lvertneqq","mbfdotlessi","mbfdotlessj","mdblklozenge","mdwhtlozenge","mithbar","ngeqq","ngeqslant","nleqq","nleqslant","npreceq","nshortmid","nshortparallel","nsubseteqq","nsucceq","nsupseteqq","ntriangleleft","ntriangleright","overrightarc","preceqq","precneq","restriction","rhd","shortmid","shortparallel","smallfrown","smallsmile","square","succeqq","succneq","thickapprox","thicksim","tieconcat","unlhd","unrhd","upbackepsilon","varemptyset","varpropto","varsubsetneq","varsubsetneqq","varsupsetneq","varsupsetneqq","widearc","CCMtoks","fileversion","filedate"]}
-,
-"concmath.sty":{"envs":{},"deps":["exscale.sty","amsfonts.sty","amssymb.sty"],"cmds":{}}
-,
-"conditext.sty":{"envs":["conditext"],"deps":["simplekv.sty","xifthen.sty","xparse.sty"],"cmds":["setcondispace","newcondifield","newcondiprop","setimplicitcondifield","miniconditext","setminicondiprop","setminicondipropi","setminicondipropii","setminicondipropiii","setminicondipropiv","setminicondipropv","setminicondipropvi","setminicondipropvii","setminicondipropviii","setminicondipropix","resettingminicondiprops","setminicondispace","errorifcfalreadycreated","errorifcfempty","errorifcfnoncreated","errorifcpalreadycreated","errorifcpempty","errorifcpnoncreated","errorifcpnonok","errorifcsalreadydefined","errorifmncpalreadyredefined","errorifmncpempty","errorifmncpnone","errorifmncpnonok","errorifmncpnoresetting","errorifmncsalreadydefined","errorifmncsempty","errtxtifcfalreadycreated","errtxtifcfempty","errtxtifcfnoncreated","errtxtifcpalreadycreated","errtxtifcpempty","errtxtifcpnoncreated","errtxtifcpnonok","errtxtifcsalreadydefined","errtxtifmncpalreadyredefined","errtxtifmncpempty","errtxtifmncpnone","errtxtifmncpnonok","errtxtifmncpnoresetting","errtxtifmncsalreadydefined","errtxtifmncsempty","hlptxtifcfalreadycreated","hlptxtifcfempty","hlptxtifcfnoncreated","hlptxtifcpalreadycreated","hlptxtifcpempty","hlptxtifcpnoncreated","hlptxtifcpnonok","hlptxtifcsalreadydefined","hlptxtifmncpalreadyredefined","hlptxtifmncpempty","hlptxtifmncpnone","hlptxtifmncpnonok","hlptxtifmncpnoresetting","hlptxtifmncsalreadydefined","hlptxtifmncsempty","icf","ifcfalreadycreatedthenelse","ifcfemptythenelse","ifcfokthenelse","ifcpalreadycreatedthenelse","ifcpemptythenelse","ifcpokthenelse","ifcsalreadydefinedthenelse","ifmatchingcsthenelse","ifmatchingmncsthenelse","ifmncpalreadyredefinedthenelse","ifmncpemptythenelse","ifmncpnonethenelse","ifmncpnoresettingthenelse","ifmncpokthenelse","ifmncsalreadydefinedthenelse","ifmncsemptythenelse","minidisplayiii","minidisplayii","minidisplayiv","minidisplayix","minidisplayi","minidisplayviii","minidisplayvii","minidisplayvi","minidisplayv","minidisplay","textdisplay"]}
-,
-"conditionals.sty":{"envs":{},"deps":{},"cmds":["given","blank","nil"]}
-,
-"constants.sty":{"envs":{},"deps":["keyval.sty"],"cmds":["C","Cl","Cr","pagerefconstant","resetconstant","newconstantfamily","renewconstantfamily","newlabelconstant","refconstant","familyconstant","counterconstant","refstepcounterconstant","labelconstant"]}
-,
-"conteq.sty":{"envs":["conteq"],"deps":["expl3.sty","amsmath.sty","environ.sty"],"cmds":["ConteqExplStyle","ConteqSetDefaultLayout","ConteqDefineLayout"]}
-,
-"continue.sty":{"envs":{},"deps":["atbegshi.sty","picture.sty","zref-abspage.sty","zref-lastpage.sty"],"cmds":["flagcont","flagend","flagword","preflagword","postflagword","contsep","contdrop","ifcontmargin","contmarginfalse","contmargintrue","ifcontword","contwordfalse","contwordtrue","ifcontallpages","contallpagesfalse","contallpagestrue","contgo","contstop","FirstWordBox","NextWordBox","LastWordBox"]}
-,
-"contour.sty":{"envs":{},"deps":["color.sty"],"cmds":["contour","contourlength","contournumber"]}
-,
-"contracard.cls":{"envs":{},"deps":["geometry.sty","titlesec.sty","contracard.sty","imakeidx.sty"],"cmds":{}}
-,
-"contracard.sty":{"envs":["contra"],"deps":["calc.sty","intcalc.sty","ifthen.sty","tocloft.sty","textcomp.sty","imakeidx.sty"],"cmds":["defaultcontraenv","dancetitleenv","dancetitleformat","danceauthorformat","danceformformat","movedelimiter","partdelimiter","midpartdelimiter","phrasevspace","phraseseparator","showcountbefore","showcountafter","hidecountbefore","hidecountafter","countleftbracket","countrightbracket","setdefaultnotesenv","prenotevspace","thedancecount","thepartcount","thephrasecount","thedancepart","thedancephrase","thedancepartlength","thedancephraselength","resetdancepartlength","resetdancephraselength","resetdancephrase","resetdancepart","newdancephrase","newdancepart","thephrasemovenum","thepartmovenum","thehalfpartmovenum","thedancemovenum","move","themovecount","allemande","balance","balanceand","butterflywhirl","circleleft","circleright","courtesyturn","dosido","seesaw","walkaround","walkaroundleft","walkaroundright","heyforfour","halfhey","halfheyricochet","fullhey","fullheyricochet","ladieschain","menchain","halfladieschain","halfmenchain","fullladieschain","fullmenchain","lines","longlines","madrobin","petronella","petronellanella","promenade","halfpromenade","rightandleftthrough","rightsandlefts","rollaway","rollawaysashay","starleft","starright","sashay","swing","turnalone","turncouple","turntogether","twirltoswap","californiatwirl","starthrough","starthru","boxthegnat","swattheflea","jerseytwirl","arizonatwirl","downthehall","upthehall","dancetitle","danceauthor","danceform","listofdance","listofdances","thedance","lodtitle","enableidx","pauseindexing","resumeindexing","dbtname","dbaname","mvpname","mvdname","moveindex","moveindexNoStar","moveindexStar","timesaround","thetimesaround","thequartertimesaround","notes","spelldosido","spellDosido","setdosidospelling"]}
-,
-"conv-xkv.sty":{"envs":{},"deps":["xkeyval.sty"],"cmds":["cxkvsetkeys","DeclareDelimiter","usekvdelim","cxkvSetup"]}
-,
-"cooking-units.sty":{"envs":{},"deps":["xparse.sty","translations.sty","xfrac.sty","l3keys2e.sty","fmtcount.sty"],"cmds":["cunum","cutext","Cutext","cuam","cusetup","cudeclareunitgroup","cuaddtounitgroup","culabel","curef","declarecookingunit","newcookingunit","providecookingunit","declarecookingderivatives","cudefinekeychain","cudefinesinglekey","cuaddtokeychain","cuaddsinglekeys","cudefinename","cudefinesymbol","cudefinephrase","cusetoptionfor","cuaddoptionfor","cuclearoptionfor","cudefinekeys","cuaddkeys","cuaddtokeys"]}
-,
-"cooking.sty":{"envs":["recipe"],"deps":{},"cmds":["ingredient","energy","sidedish","hint","preparationtime","modification","recipemargin","ingredientfont","recipeendhook","recipetitlefont","recipetitle"]}
-,
-"cookingsymbols.sty":{"envs":{},"deps":{},"cmds":["Oven","Topbottomheat","Topheat","Bottomheat","Fanoven","Gasstove","Dish","Knife","Fork","Spoon","Gloves"]}
-,
-"coolfn.sty":{"envs":["Parskip"],"deps":["calc.sty","hanging.sty","footmisc.sty"],"cmds":["fnindent","lengtha","lengthb","lengthc","coolfnversionnumber"]}
-,
-"coollist.sty":{"envs":{},"deps":["ifthen.sty","amsmath.sty","amssymb.sty","coolstr.sty","forloop.sty"],"cmds":["setlistStop","setlistEnd","listval","liststore","listlen","listlenstore","listcopy","listsum"]}
-,
-"coolstr.sty":{"envs":{},"deps":{},"cmds":["substr","isdecimal","isnumeric","isint","setstrEnd","strchar","strlen","strlenstore","ifstrchareq","ifstrleneq"]}
-,
-"coolthms.sty":{"envs":["proof"],"deps":["amssymb.sty","hyperref.sty","etoolbox.sty","scrbase.sty","letltxmacro.sty","ifthen.sty","xargs.sty","kvoptions.sty","ntheorem.sty","cleveref.sty"],"cmds":["definetheorem","Label","theoremmarkup","proofname","theoremsymbol"]}
-,
-"cooltooltips.sty":{"envs":{},"deps":["iftex.sty"],"cmds":["cooltooltip","cooltooltiptoggle","ifcoolpdf","coolpdftrue","coolpdffalse"]}
-,
-"coop-writing.sty":{"envs":["cwdraft","rascunho"],"deps":["xcolor.sty","soulutf8.sty","ulem.sty","etoolbox.sty","environ.sty","xstring.sty","csquotes.sty","mdframed.sty","tocloft.sty","hyperref.sty"],"cmds":["coopwritingversion","printcoopwritingversion","cwnamedef","cwauthor","cweditor","cwauthorr","cweditorr","cwauthorx","cweditorx","cwauthorrx","cweditorrx","cwauthorsug","cweditorsug","cwauthorrem","cweditorrem","cwauthorswap","cweditorswap","cwsetcommwarn","cwanon","cwanoncite","cwanoncitet","cwanoncitep","cwdefanontext","cwdefanoncitetext","cwdefanoncitettext","cwdefanonciteptext","cssetdraftcolor","cwsubject","cwsetsubjectcolor","cwmain","cwsetmaincolor","cwmainemphasis","listofcomments","listofcitationneeds","listofsubjects","todo","cwdefinetodocolor","pleasecite","cwcommentstitle","cwdrafttitle","cwsubjtitle","cwcitationstitle","cwpleasecitetext","cwpleasecitemessage","cwpleasecitemarginnote","cwautor","cwassunto","listofcomentario","listofassunto","listofcomentarioref","ifshowednotes","showednotestrue","showednotesfalse","ifmargins","marginstrue","marginsfalse","ifednotebookmarks","ednotebookmarkstrue","ednotebookmarksfalse","thecwnotecounter","Cwnote","cwnote","corleve","listsubject","listofsubject","listcomentario","thecomentario","cftcomentarionumwidth","listcomentarioref","thecomentarioref","cftcomentariorefnumwidth","thesubject"]}
-,
-"coordsys.sty":{"envs":{},"deps":{},"cmds":["numbline","vnumbline","coordsys","fcoordsys","bcoordsys","window","coordgrid","gridstyle","sethlabel","setvlabel","hthickratio","vthickratio","rescaleby","tickstyle","ticklength"]}
-,
-"coptic.sty":{"envs":["coptic","copte","copto"],"deps":["textcomp.sty"],"cmds":["asterisco","Asterisk","Bar","barretta","crocetta","crucicula","Crux","djois","dubbio","dubious","h","horiakh","iesus","LatinEnc","numero","Ov","Overline","pont","puntonero","setcopto","sic","textcopte","textcoptic","textcopto","textlatin","threedots","trepun","trepund","xc","xcr"]}
-,
-"copyrightbox.sty":{"envs":{},"deps":["tikz.sty","ifthen.sty","tikzlibrarypositioning.sty"],"cmds":["copyrightbox"]}
-,
-"correctmathalign.sty":{"envs":{},"deps":{},"cmds":{}}
-,
-"corridx.sty":{"envs":["crrdxchem","crrdxacr"],"deps":{},"cmds":["ia","noia","ic","noic","ib","noib","ig","noig","crrdxformatpage","sectioncrrdx","swallow"]}
-,
-"coseoul.sty":{"envs":{},"deps":["ifthen.sty"],"cmds":["levelup","leveldown","levelstay","levelmultiup","chex","findnewlevel","levelchange","thecurrentlevel"]}
-,
-"countriesofeurope.sty":{"envs":{},"deps":["ifxetex.sty","ifluatex.sty","xkeyval.sty","graphicx.sty","xcolor.sty","fontenc.sty","textcomp.sty"],"cmds":["countriesofeuropefamily","CoEF","EUCountry","setCoEkeys","Albania","Andorra","Austria","Belarus","Belgium","Bosnia","Bulgaria","Croatia","Czechia","Denmark","Estonia","Finland","France","Germany","GreatBritain","Greece","Hungary","Iceland","Ireland","Italy","Latvia","Liechtenstein","Lithuania","Luxembourg","Macedonia","Malta","Moldova","Montenegro","Netherlands","Norway","Poland","Portugal","Romania","Serbia","Slovakia","Slovenia","Spain","Sweden","Switzerland","getPDFsyntax","getPDFcolor","DH","NG","dj","ng","k","guillemotleft","guillemotright","guilsinglleft","guilsinglright","quotedblbase","quotesinglbase","textquotedbl","DJ","th","TH","dh","Hwithstroke","hwithstroke","textogonekcentered","guillemetleft","guillemetright"]}
-,
-"counttexruns.sty":{"envs":{},"deps":["kvoptions.sty"],"cmds":["thecounttexruns"]}
-,
-"couriers.sty":{"envs":{},"deps":["keyval.sty"],"cmds":["ProcessOptionsWithKV"]}
-,
-"courierten.sty":{"envs":{},"deps":["fontenc.sty","textcomp.sty","ifthen.sty","mweights.sty","fontaxes.sty","xkeyval.sty"],"cmds":{}}
-,
-"cours.cls":{"envs":{},"deps":["mafr.sty"],"cmds":["chapitre"]}
-,
-"covington.sty":{"envs":["example","covexample","examples","covexamples","subexamples","covsubexamples","exercise","covexercise","reflist"],"deps":["xkeyval.sty","iftex.sty"],"cmds":["twodias","acm","grm","cim","SetDiaOffset","twoacc","exampleno","examplenumbersep","subexamplenumbersep","exampleind","covexnumber","covexnumberfn","covsubexnumber","covexamplefs","covexamplenofs","subexpreamblefs","expreamblefs","thecovfnex","pxref","digloss","trigloss","setglossoptions","gll","glll","xgll","xglll","xgle","glt","gln","glot","glosspreamble","glend","glosslineone","glosslinetwo","glosslinethree","glosslinetrans","covenquote","glosslinepreamble","glosslinepostamble","psr","fs","lfs","drs","sdrs","negdrs","ifdrs","alifdrs","reflistindent","reflistitemsep","reflistparsep","sentence","sentencefs","lexp","lcon","lmean","either","twoaccsep","bx","donewords","eachwordone","eachwordthree","eachwordtwo","ex","filedate","filename","fileversion","forceredeffalse","forceredeftrue","getwords","gexamplefalse","gexampletrue","ggexamplefalse","ggexampletrue","ggtrightfalse","ggtrighttrue","gline","glossglue","gtrightfalse","gtrighttrue","ifforceredef","ifgexample","ifggexample","ifggtright","ifgtright","ifnoglossbreaks","ifnotdone","ifownexcounter","ifownfnexcounter","ifresetownfnexcounter","iftweaklayout","lastword","lglosslineone","lglosslinethree","lglosslinetwo","lineone","linethree","linetwo","more","noglossbreaksfalse","noglossbreakstrue","notdonefalse","notdonetrue","ownexcounterfalse","ownexcountertrue","ownfnexcounterfalse","ownfnexcountertrue","resetownfnexcounterfalse","resetownfnexcountertrue","testdone","thecovex","threesent","tweaklayoutfalse","tweaklayouttrue","twosent","wordone","wordthree","wordtwo","xdonewords","xgetwords","xthreesent","xtwosent"]}
-,
-"cprotect.sty":{"envs":{},"deps":["ifthen.sty","suffix.sty"],"cmds":["cprotect","cMakeRobust","icprotect","cprotEnv","CPTbegin","ReadVerbatimUntil"]}
-,
-"cprotectinside.sty":{"envs":{},"deps":{},"cmds":["cprotectinside","cprotectinsideAppend","cprotectinsideReexec"]}
-,
-"cpssp.sty":{"envs":["cpsspimage"],"deps":["ifthen.sty","calc.sty","kvoptions.sty","tikz.sty","tikzlibrarypositioning.sty","tikzlibrarydecorations.pathmorphing.sty"],"cmds":["cpsspformat","cpsspinput","cpsspGap","cpsspBridge","cpsspCoil","cpsspSheet","cpsspSheetT","cpsspThreeTenHelix","cpsspAlphaHelix","cpsspPiHelix","cpsspBend","cpsspTurn","cpsspLabel","cpsspStartRes","cpsspEndRes"]}
-,
-"cquthesis.cls":{"envs":["cabstract","Cplus","C++","eabstract","denotation","Python","secretizeEnv","proof","assumption","definition","proposition","lemma","theorem","axiom","corollary","exercise","example","remark","problem","conjecture","enumerate*","itemize*","description*"],"deps":["kvoptions.sty","s-ctexbook.cls","xeCJK.sty","etoolbox.sty","xparse.sty","environ.sty","calc.sty","ifxetex.sty","fontspec.sty","amsmath.sty","amssymb.sty","amsfonts.sty","newtxtext.sty","pifont.sty","xeCJKfntef.sty","newfloat.sty","caption.sty","subcaption.sty","bicaption.sty","array.sty","tabularx.sty","booktabs.sty","longtable.sty","multirow.sty","diagbox.sty","tabu.sty","courier.sty","graphicx.sty","pdfpages.sty","enumitem.sty","ntheorem.sty","changepage.sty","afterpage.sty","footmisc.sty","varwidth.sty","xcolor.sty","metalogo.sty","xspace.sty","natbib.sty","hyperref.sty","tocloft.sty","geometry.sty","totcount.sty","fancyhdr.sty","mhchem.sty","siunitx.sty","upgreek.sty","listings.sty"],"cmds":["bigcell","cdate","cec","cftafterequENtitle","cftafterequtitle","cftequationsENnumwidth","cftequationsnumwidth","cftequENtitlefont","cftequtitlefont","chapterstar","ckeywords","colsep","cquauthpage","cqueqshortname","cquthesis","edate","ekeywords","eqlist","headcell","inlinecite","listeq","listofequations","listofequationsEN","listofequationsname","listofequationsnameEN","listoffiguresEN","listoffiguresnameEN","listoftablesEN","listoftablesnameEN","makeabstract","makecover","MONTH","onlinecite","parenthesesthis","resetrownum","resetxuhao","rownum","rownumseparator","rownumtype","secretize","setxuhao","shortfigurename","shortfigurenameEN","shorttablename","shorttablenameEN","thecquXuHao","thecquXuHaoType","version","xuhao","xuhaoseparator","xuhaotype","cqusetup","ctitle","etitle","cauthor","eauthor","csupervisor","esupervisor","cpsupervisor","epsupervisor","cassistsupervisor","cextrasupervisor","eassistsupervisor","cmajor","emajor","mycdate","myedate","cclass","edgree","cdepartment","edepartment","studentid","theoremsymbol"]}
-,
-"cquthesis.sty":{"envs":{},"deps":["dirtree.sty"],"cmds":["speakyourlove","qthis","figref","tabref","cmd","cs","csgo","meta","marg","oarg","parg","pkg","myicon","myfolder"]}
-,
-"crbox.sty":{"envs":{},"deps":["biditools.sty"],"cmds":["crbox"]}
-,
-"create-theorem.sty":{"envs":{},"deps":["crefthe.sty","amsfonts.sty"],"cmds":["NameTheorem","CreateTheorem","SetTheorem","SetTheoremBinding","NameTheorems","CreateTheoremAddLanguage"]}
-,
-"createsudoku.sty":{"envs":{},"deps":["solvesudoku.sty"],"cmds":["generategrid","genfile","prevfile","currfile","setsudrandom","initialelimination","elimseventeen","elimnum","elimcross","elimex","elimcrossandnines","elimcrossandex","elimcrossandexandnines","acluenotdeletedfalse","acluenotdeletedtrue","deleteaclue","elimclues","elimcluesonebyone","gencommentary","ifacluenotdeleted","oldcommentary","printsudresults","swapcolpair","swaprowpair","swaps","toomanyloops","trysolution","writestartgrid","writestate","randomi","nextrandom","setrannum","setrandim","pointless","PoinTless","ranval"]}
-,
-"crefthe.sty":{"envs":{},"deps":["cleveref.sty"],"cmds":["crefthe","Crefthe","namecrefthe","nameCrefthe","namecrefsthe","nameCrefsthe","crefthemark","crefthename","Crefthename","crefthepatchname","cref","Cref","crefname","Crefname"]}
-,
-"crimson.sty":{"envs":{},"deps":["ifxetex.sty","ifluatex.sty","textcomp.sty","xkeyval.sty","fontenc.sty","fontaxes.sty","mweights.sty"],"cmds":["crimson","crimsonsemibold"]}
-,
-"crop.sty":{"envs":{},"deps":["ifluatex.sty","color.sty","graphics.sty"],"cmds":["crop","cropdef","stockwidth","stockheight"]}
-,
-"cropmark.sty":{"envs":{},"deps":{},"cmds":["croplength","cropwidth","cropsep","croppadtop","croppadbot","croppadlr","crophrule","cropvrule","shipAfterBox","shipAfterRegister","SomeBox","xshipout","yshipout"]}
-,
-"crossrefenum.sty":{"envs":{},"deps":["zref.sty","zref-abspage.sty"],"cmds":["crossrefenum","crfnmPage","crfnmPages","crfnmNote","crfnmNotes","crfnmLine","crfnmLines","crfnmEdpage","crfnmEdpages","crfnmEdline","crfnmEdlines","crfnmDefaultEnumDelim","crfnmDefaultBeforeLastInEnum","crfnmDefaultRangeSep","crfnmDefaultCollapsable","crfnmNoteCollapsable","crfnmDefaultSubtypesSep","crfnmDefaultPrintFirstPrefix","crfnmDefaultFormatInSecond","crfnmEdlineFormatInSecond","crfnmEdlinePrintPrefixInSecond","crfnmDefaultEnumDelimInSecond","crfnmDefaultBeforeLastInEnumInSecond","crfnmDefaultGroupSubtypes","crfnmDefaultNumberingContinuousAcrossDocument","crfnmDefaultOrder","crfnmAuthor","crfnmDate","crfnmDefaultBeforeLastInSecond","crfnmDefaultPrintPrefixInSecond","crfnmName","crfnmOriginalCatcodeAt","crfnmShortDesc","crfnmSubscript","crfnmSuperscript","crfnmVersion"]}
-,
-"crossreference.sty":{"envs":{},"deps":{},"cmds":["addxref","crossreferences","thexref","xreflabel","xref","docdate","filedate","fileversion"]}
-,
-"crossreftools.sty":{"envs":{},"deps":{},"cmds":["crtrefundefinedtext","crtcrefundefinedcountervalue","crtextractref","crtcrefpage","crtrefnumber","crtrefname","crtrefanchor","crtrefunused","crtrefcounter","crtextractcref","crtcrefcounter","crtcrefnumber","crtcrefcountervalue","crtcrefresult","crtcrefreference","crtcrefname","crtCrefname","crtcrefpluralname","crtCrefpluralname","crtcrefnamebylabel","crtCrefnamebylabel","crtcref","crtCref","crthyperlink","crthypercref","crthyperCref","crtlnameref","crtunameref","crtnameref","crtprovidecurrentlabel","crtprovidecurrentlabelname","crtprovidecurrentlabelinfo","crtcrossreflabel","crtifdefinedlabel","crtifundefinedlabel","crtcrefifdefinedlabel","crtcrefifundefinedlabel","crtlistoflabels","crtlistoflabelsfileextension","listoflabelsname","crtlistoflabelsstructurelevel","crtprelabelhook","crtpostlabelhook","crossreftoolspackageversion","crtaddlabeltotoc","crtrefpage","listoflabelstructurelevel","ifcrtfinal","crtfinaltrue","crtfinalfalse","ifcleverefcompatmode","cleverefcompatmodetrue","cleverefcompatmodefalse"]}
-,
-"crumbs.sty":{"envs":{},"deps":["xkeyval.sty","etoolbox.sty","catchfile.sty"],"cmds":["crumbs","subcrumbs","appendwrite","appendtofile","crumbection","subcrumbection","crumb","subcrumb","thecrumbi","thesubcrumbi"]}
-,
-"cryptocode.sty":{"envs":["subprocedure","pchstack","pcvstack","pcmbox","pcimage","gameproof","gamedescription","bbrenv","bbrbox","bbroracle","bbrchallenger","bbrpic"],"deps":["amsmath.sty","mathtools.sty","xcolor.sty","calc.sty","tikz.sty","tikzlibrarypositioning.sty","tikzlibrarycalc.sty","ifthen.sty","xargs.sty","pgf.sty","forloop.sty","array.sty","xparse.sty","expl3.sty","pbox.sty","varwidth.sty","suffix.sty","etoolbox.sty","environ.sty","xkeyval.sty","amsfonts.sty","centernot.sty"],"cmds":["sample","floor","tfloor","ceil","tceil","Angle","tAngle","abs","tabs","norm","tnorm","concat","emptystring","argmax","argmin","pindist","sindist","cindist","adversary","adv","bdv","cdv","ddv","edv","mdv","pdv","rdv","sdv","bigO","smallO","bigOmega","smallOmega","bigTheta","orderOf","bigsmallO","probname","expectationname","supportname","tprob","prob","tprobsub","probsub","probsublong","tcondprob","condprob","tcondprobsub","condprobsub","texpect","expect","texpsub","expsub","tcondexp","condexp","tcondexpsub","condexpsub","supp","entropy","condentropy","minentropy","tminentropy","condminentropy","tcondminentropy","condavgminentropy","tcondavgminentropy","NN","ZZ","CC","QQ","RR","PP","FF","GG","set","sequence","bin","indcpa","indcca","indccai","indccaii","priv","ind","indcda","prvcda","prvrcda","kiae","kdae","mle","uce","eufcma","eufnacma","seufcma","eufko","AND","OR","NOR","NOT","NAND","XOR","XNOR","xor","false","true","notimplies","kgen","pgen","eval","invert","il","ol","kl","nl","rl","CRKT","TM","PROG","uTM","uC","uP","csize","tmtime","ppt","pcadvantagesuperstyle","pcadvantagesubstyle","pcadvantagename","advantage","prover","verifier","nizk","hash","gash","fash","pad","enc","dec","sig","sign","verify","obf","iO","diO","owf","owp","tdf","inv","hcf","prf","prp","prg","mac","puncture","source","predictor","sam","dist","distinguisher","simulator","ext","extractor","Oracle","oracle","ro","event","nevent","bad","nbad","complclass","cocomplclass","npol","conpol","pol","bpp","ppoly","AM","coAM","AC","NC","TC","PH","csigma","cpi","cosigma","copi","negl","poly","pp","cc","ee","kk","mm","nn","qq","rr","pk","vk","sk","key","hk","gk","fk","st","state","SECPAR","secpar","secparam","pseudocode","pseudocodeblock","procedure","procedureblock","createpseudocodecommand","createpseudocodeblock","createprocedurecommand","createprocedureblock","pcminlineheight","pcind","t","pcindentname","pcif","pcfor","pcwhile","pcrepeat","pcrepeatuntil","pcforeach","pcfi","pcendif","pcendfor","pcendwhile","pcuntil","pcendforeach","pcelse","pcelseif","pcabort","pcassert","pccontinue","pccomment","pclinecomment","pcdo","pcdone","pcfail","pcfalse","pcglobvar","pcin","pcnew","pcnull","pcparse","pcreturn","pcthen","pctrue","highlightkeyword","highlightaltkeyword","pcskipln","pcln","pclnseparator","pclnstyle","pchspace","pcvspace","pcvstackspace","pchstackspace","pcsetargs","pcsethstackargs","pcsetvstackargs","pcnode","pcdraw","pctabname","pcdbltabname","sendmessageright","sendmessageleft","sendmessagerightleft","sendmessage","sendmessagerightx","sendmessageleftx","pcintertext","pclb","pclnr","pcrln","pcrlnseparator","pclnspace","pclnrspace","gameprocedure","pcgame","gamechange","tbxgameprocedure","pcbox","addgamehop","addstartgamehop","addendgamehop","pcgamename","gameprocedurearg","bxgameprocedure","addloopgamehop","describegame","bbrinput","bbroutput","bbrmsgto","bbrmsgfrom","bbrmsgtofrom","bbrmsgfromto","bbrqryto","bbrqryfrom","bbrqrytofrom","bbrqryfromto","bbrfirstmessageoffset","bbrmsgvdots","bbrqryvdots","bbrmsgspace","bbrqryspace","bbrloop","bbrmsgtxt","bbrqrytxt","bbroracleqryfrom","bbroracleqryto","bbroracleqrytofrom","bbroracleqryfromto","bbroracleqryspace","bbroracletxt","bbrchallengerqryfrom","bbrchallengerqryto","bbrchallengerqrytofrom","bbrchallengerqryfromto","bbrchallengerqryspace","bbrchallengertxt","hline","addbxgamehop","bbrboxabovesep","bbrboxafterskip","bbrboxminheight","bbrboxminwidth","bbrboxname","bbrboxnamepos","bbrboxnamestyle","bbrboxstyle","bbrboxxshift","bbrboxyshift","bbrchallengerhdistance","bbrchallengernodenameprefix","bbrchallengervdistance","bbrcomloopangle","bbrcomloopcenter","bbrcomloopcenterstyle","bbrcomloopclockwise","bbrcomloopleft","bbrcomloopleftstyle","bbrcomloopright","bbrcomlooprightstyle","bbrenvnodenameprefix","bbrinputbottom","bbrinputbottomstyle","bbrinputedgestyle","bbrinputhoffset","bbrinputlength","bbrinputnodename","bbrinputnodestyle","bbrinputtop","bbrinputtopstyle","bbrintertexthoffset","bbroraclehdistance","bbroraclenodenameprefix","bbroraclevdistance","bbrtikzargs","centerincol","pcadvstyle","pcafterhstackskip","pcaftermessageskip","pcalgostyle","pcbeforehstackskip","pcbeforemessageskip","pccomplexitystyle","pcdefaultlongmessagelength","pcdefaultmessagelength","pcfixcleveref","pcfixhyperref","pcgameprocedurestyle","pckeystyle","pcmachinemodelstyle","pcmessagearrow","pcnotionstyle","pcolb","pcoraclestyle","pcpolynomialstyle","pcsetstyle","pcshortmessageoffset","theHpcgamecounter","theHpclinenumber","theHpcrlinenumber","thepccolumncounter","thepcgamecounter","thepclinenumber","thepcrlinenumber","thepcstartgamecounter","setgameproceduredefaultstyle"]}
-,
-"csassignments.cls":{"envs":{},"deps":["geometry.sty","inputenc.sty","babel.sty","titlesec.sty","enumitem.sty","graphicx.sty","tocloft.sty","float.sty","ifthen.sty","translations.sty","csquotes.sty","fancyhdr.sty","microtype.sty","stmaryrd.sty","pdfpages.sty","hyperref.sty","tikz.sty","amsmath.sty","amsthm.sty","amssymb.sty","mathtools.sty","totcount.sty","changepage.sty","etoolbox.sty","environ.sty","multicol.sty","tgpagella.sty","suffix.sty","tikzlibrarycalc.sty"],"cmds":["gradingtable","exercise","subexercise","exerciseRules","subexerciseRules","noPoints","course","sheet","group","due","member","PrefixId","PrefixAuthor","PrefixDate","N","Z","R","Q","C","F","primefield","modring","derivative","matadd","matmul","matswap","forall","exists","floor","ceil","abs","rfrac","rel","QED","theexercisenumber","thesubexercisenumber","thetotalpoints","gradingTableExerciseLabel","gradingTableExercisePoints","PTableA","PTableB","PTHead","points","Vhrulefill","pdfmembers","pdfmember","captionsenglish","dateenglish","extrasenglish","noextrasenglish","englishhyphenmins","britishhyphenmins","americanhyphenmins","prefacename","bibname","chaptername","enclname","ccname","headtoname","pagename","seename","alsoname","proofname","glossaryname"]}
-,
-"csquotes.sty":{"envs":["displayquote","foreigndisplayquote","hyphendisplayquote","displaycquote","foreigndisplaycquote","hyphendisplaycquote"],"deps":["etoolbox.sty"],"cmds":["enquote","foreignquote","hyphenquote","textquote","foreigntextquote","hyphentextquote","blockquote","foreignblockquote","hyphenblockquote","hybridblockquote","setquotestyle","MakeOuterQuote","MakeInnerQuote","MakeAutoQuote","MakeForeignQuote","MakeHyphenQuote","MakeBlockQuote","MakeForeignBlockQuote","MakeHyphenBlockQuote","MakeHybridBlockQuote","EnableQuotes","DisableQuotes","VerbatimQuotes","DeleteQuotes","textcquote","foreigntextcquote","hyphentextcquote","blockcquote","foreignblockcquote","hyphenblockcquote","hybridblockcquote","textelp","textins","textdel","DeclareQuoteStyle","DeclareQuoteAlias","DeclareQuoteOption","ExecuteQuoteOptions","DeclarePlainStyle","SetBlockThreshold","SetBlockEnvironment","SetCiteCommand","mkcitation","mkccitation","mktextquote","mkblockquote","mkbegdispquote","mkenddispquote","ifpunctmark","ifpunct","ifterm","iftextpunctmark","iftextpunct","iftextterm","ifblockquote","ifblank","unspace","DeclareAutoPunct","mktextelp","mktextelpins","mktextinselp","mktextins","mktextmod","mktextdel","BlockquoteDisable","DeclareQuoteGlyph","openautoquote","closeautoquote","openinnerquote","closeinnerquote","textooquote","textcoquote","textmoquote","textoiquote","textciquote","textmiquote","initoquote","initiquote","csqQQ","csqBQbeg","csqBQend","csqBQsep","csqBQ","initfrenchquotes","mkfrenchopenquote","mkfrenchclosequote","fixligatures"]}
-,
-"css-colors.sty":{"envs":{},"deps":["xcolor.sty"],"cmds":{}}
-,
-"cstypo.sty":{"envs":{},"deps":["luatex.sty","ifluatex.sty"],"cmds":["cstypoSingleLetterEnable","cstypoSingleLetterDisable","cstypoALetterEnable","cstypoALetterDisable","cstypoPercentsEnable","cstypoPercentsDisable","cstypoParagraphEnable","cstypoParagraphDisable"]}
-,
-"csvmerge.sty":{"envs":{},"deps":["etoolbox.sty","stringstrings.sty","trimspaces.sty"],"cmds":["mergeFields","Field","ifFieldEmpty","setDelimitersCommaQuote","setDelimitersTabQuote","makeMePublic"]}
-,
-"csvsimple-l3.sty":{"envs":{},"deps":{},"cmds":["csvreader","csvcoli","csvcolii","csvcoliii","csvcoliv","csvcolv","csvloop","csvautotabular","csvautolongtable","csvautobooktabular","csvautobooklongtable","csvset","csvstyle","csvnames","csvfilterbool","ifcsvoddrow","ifcsvfirstrow","csvfilteraccept","csvfilterreject","csvline","csvlinetotablerow","thecsvrow","thecsvcolumncount","thecsvinputline","csvsortingrule","csvdatacollection","csvexpval","csvexpnot","csvcollectn","csvcollectx","csvcollectV","ifcsvstrcmp","ifcsvnotstrcmp","ifcsvstrequal","ifcsvprostrequal","ifcsvfpcmp","ifcsvintcmp","csvifoddrow","csviffirstrow","cline","hline","tabularnewline","toprule","midrule","bottomrule","cmidrule","morecmidrules","specialrule","addlinespace"]}
-,
-"csvsimple-legacy.sty":{"envs":{},"deps":["etoolbox.sty","ifthen.sty","pgfkeys.sty","pgfrcs.sty","shellesc.sty"],"cmds":["csvreader","csvcoli","csvcolii","csvcoliii","csvcoliv","csvcolv","csvloop","csvautotabular","csvautolongtable","csvautobooktabular","csvautobooklongtable","csvset","csvstyle","csvnames","csvheadset","csviffirstrow","csvifoddrow","csvfilteraccept","csvfilterreject","csvline","thecsvrow","thecsvcol","thecsvinputline","csvlinetotablerow","ifcsvstrcmp","ifcsvnotstrcmp","ifcsvstrequal","ifcsvprostrequal","cline","hline","tabularnewline","toprule","midrule","bottomrule","cmidrule","morecmidrules","specialrule","addlinespace"]}
-,
-"csvsimple.sty":{"envs":{},"deps":["l3keys2e.sty","csvsimple-legacy.sty","csvsimple-l3.sty"],"cmds":{}}
-,
-"ctable.sty":{"envs":{},"deps":["ifpdf.sty","etoolbox.sty","xcolor.sty","array.sty","tabularx.sty","booktabs.sty","rotating.sty","transparent.sty"],"cmds":["setupctable","ctable","tnote","tmark","NN","FL","ML","LL"]}
-,
-"ctablestack.sty":{"envs":{},"deps":["luatex.sty"],"cmds":["ctstackatcatcode"]}
-,
-"ctex.sty":{"envs":{},"deps":["expl3.sty","zhnumber.sty"],"cmds":["songti","heiti","fangsong","kaishu","lishu","youyuan","yahei","pingfang","ctexset","CTEXthepart","CTEXthechapter","CTEXthesection","CTEXthesubsection","CTEXthesubsubsection","CTEXtheparagraph","CTEXthesubparagraph","CTEXifname","zihao","ziju","ccwd","chinese","CTEXnumber","CTEXdigits","CTeX"]}
-,
-"ctexart.cls":{"envs":{},"deps":["ctex.sty"],"cmds":["partmark","CTEXnumberline"]}
-,
-"ctexbeamer.cls":{"envs":{},"deps":["ctex.sty","s-beamer.cls","ucs.sty","inputenc.sty"],"cmds":{}}
-,
-"ctexbook.cls":{"envs":{},"deps":["ctex.sty","s-book.cls"],"cmds":["partmark","CTEXnumberline"]}
-,
-"ctexrep.cls":{"envs":{},"deps":["ctex.sty","s-report.cls"],"cmds":["partmark","CTEXnumberline"]}
-,
-"ctxdoc.cls":{"envs":["ctexexam","defaultcapconfig"],"deps":["expl3.sty","s-l3doc.cls","ctex.sty","multitoc.sty","geometry.sty","tabularx.sty","makecell.sty","threeparttable.sty","siunitx.sty","unicode-math.sty","xcolor.sty","caption.sty","fancyvrb-ex.sty","zref-base.sty"],"cmds":["email","ctexdocverbaddon","ctexdisableecglue","ctexplainps","TPTtagStyle","ctexexamlabelref","thectexexam","ctexsetverticalspacing","ctexfixverticalspacing","SideBySideExampleSet","exptarget","rexptarget","expstar","rexpstar","zihaopt","StopSpecialIndexModule","package","GetFileId","orbar","defaultval","defaultvalaux","TF","TTF","TFF","opt","XeLaTeX","LuaLaTeX","pdfLaTeX","LaTeXiii","dvipdfmx","TeXLive","MiKTeX","ApTeX","ApLaTeX","upLaTeX","bashcmd","BSTACK","ESTACK","ctexkit","ctexkitrev","IndexLayout"]}
-,
-"cu-calendar.sty":{"envs":{},"deps":["intcalc.sty","cu-num.sty"],"cmds":["cuDate","cuDateJulian","cuDefineDateFormat","cuYEAR","cuYEARAM","cuMONTH","cuDAY","cuDOW","cuINDICTION","cuDISPLAYDATE","cuUseDateFormat","cuMonthName","cuDayName","cuDayNameAccusative","cuToday","cuTodayJulian","cuAsJulian","cuAsGregorian"]}
-,
-"cu-kinovar.sty":{"envs":{},"deps":["cu-util.sty","etoolbox.sty","xcolor.sty"],"cmds":["cuKinovar","cuKinovarColor"]}
-,
-"cu-num.sty":{"envs":{},"deps":{},"cmds":["cuNum"]}
-,
-"currency.sty":{"envs":{},"deps":["siunitx.sty","pgfkeys.sty","etoolbox.sty","xparse.sty","textcomp.sty","eurosym.sty"],"cmds":["DefineCurrency","CurrencySetup","CurrencySetupAppend","currencyunit","displayCurrency","displayCurrencySymbol","SetPrecision","Unknown"]}
-,
-"currfile-abspath.sty":{"envs":{},"deps":{},"cmds":["currfileabsdir","currfileabspath","ifcurrfileabsdir","ifcurrfileabspath","getpwd","thepwd","getmainfile","themainfile","getabspath","theabspath","theabsdir"]}
-,
-"currfile.sty":{"envs":{},"deps":["kvoptions.sty","filehook.sty","currfile-abspath.sty"],"cmds":["currfiledir","currfilebase","currfileext","currfilename","currfilepath","ifcurrfiledir","ifcurrfilebase","ifcurrfileext","ifcurrfilename","ifcurrfilepath","ifcurrfile","parentfiledir","parentfilebase","parentfileext","parentfilename","parentfilepath","parentfileabsdir","parentfileabspath","currfilegetparents","parentfilediri","parentfiledirii","parentfilebasei","parentfilebaseii","parentfileexti","parentfileextii","parentfilenamei","parentfilenameii","parentfilepathi","parentfilepathii","parentfileabsdiri","parentfileabsdirii","parentfileabspathi","parentfileabspathii"]}
-,
-"currvita.sty":{"envs":["cv","cvlist"],"deps":["ifthen.sty"],"cmds":["cvplace","cvheadingfont","cvlistheadingfont","cvlabelfont","cvlabelwidth","cvlabelskip","cvlabelsep","cvbibname"]}
-,
-"cursor.sty":{"envs":{},"deps":{},"cmds":["cursorformula","Lc","Rc","LRc","cursorheight","ruled","ruleh","rulew","rulewr","rulewl","cursorlinew"]}
-,
-"curve.cls":{"envs":["rubric"],"deps":["ltxtable.sty","ifthen.sty","calc.sty","filehook.sty","graphicx.sty"],"cmds":["leftheader","rightheader","photo","photoscale","photosep","headerscale","headerspace","subtitle","titlealignment","titlespace","titlefont","subtitlefont","makeheaders","flavor","makerubric","rubricafterspace","rubricalignment","rubricfont","rubricspace","entry","keyalignment","keyfont","prefix","text","noentry","subrubric","subrubricalignment","subrubricfont","subrubricspace","subrubricbeforespace","continuedname","listpubname","thebibcount","thebibtotal"]}
-,
-"curve2e.sty":{"envs":{},"deps":["graphicx.sty","color.sty","pict2e.sty"],"cmds":["AddVect","Arc","ArgOfVect","AutoGrid","CbezierBetween","CbezierTo","ChangeDir","ConjVect","CopyVect","CosOf","Curve","CurveBetween","CurveEnd","CurveFinish","CurveTo","Dashline","defaultlinethickness","defaultlinewidth","Diam","DirFromAngle","DirOfVect","DistanceAndDirOfVect","DividE","Divvect","Dotline","FillCurve","fillstroke","fpdowhile","fptest","fpwhiledo","GetCoord","GraphGrid","Integer","IsPolar","legenda","legendbox","LIne","MakeVectorFrom","ModAndAngleOfVect","ModAndDirOfVect","ModDirDot","ModOfVect","MultiplY","Multvect","NumA","Numero","PbDim","Pbox","Qurve","QurveTo","Rapp","RoundUp","ScaleVect","segment","Segno","SinOf","SplitCartesian","SplitPolar","StartCurveAt","SubVect","TROF","TRON","VECTOR","VectorArc","VectorARC","VVECTOR","VVectorArc","xmultiput","XpartOfVect","YpartOfVect","Zbox","DivideFN","DivVect","Dline","MultiplyFN","MultVect","originalcurveto","originallineto","originalmoveto","originalput"]}
-,
-"curves.sty":{"envs":{},"deps":{},"cmds":["csdiameter","curvelength","overhang","ifcurvewarn","curvewarntrue","curvewarnfalse","ifstraight","straighttrue","straightfalse","curvesymbol","curvedashes","diskpitchstretch","patternresolution","xscale","xscaley","yscale","yscalex","arc","bigcircle","closecurve","curve","scaleput","tagcurve"]}
-,
-"customdice.sty":{"envs":["customdiceenv"],"deps":["tikz.sty","etoolbox.sty"],"cmds":["dice","bigdotdice","textdice","textdicebot","layoutdice","tinydice","scriptsizedice","footnotesizedice","smalldice","normalsizedice","largedice","Largedice","LARGEdice","hugedice","Hugedice","tinybigdotdice","scriptsizebigdotdice","footnotesizebigdotdice","smallbigdotdice","normalsizebigdotdice","largebigdotdice","Largebigdotdice","LARGEbigdotdice","hugebigdotdice","Hugebigdotdice","tinytextdice","scriptsizetextdice","footnotesizetextdice","smalltextdice","normalsizetextdice","largetextdice","Largetextdice","LARGEtextdice","hugetextdice","Hugetextdice","tinytextdicebot","scriptsizetextdicebot","footnotesizetextdicebot","smalltextdicebot","normalsizetextdicebot","largetextdicebot","Largetextdicebot","LARGEtextdicebot","hugetextdicebot","Hugetextdicebot","setdicebaseline","setdicefacesize","customdicebaseline","customdicefacesize","customdicehalfway","customdicelower","customdiceupper","customdicedotsize","customdicebigdotsize","customdicecornerrounding","customdiceborderthickness","customdicetextscale","customdicefg","customdicebg","customdicecoldefault"]}
-,
-"cuted.sty":{"envs":["strip"],"deps":{},"cmds":["preCutedStrip","postCutedStrip","stripsep","oldcolsbreak"]}
-,
-"cutwin.sty":{"envs":["cutout","shapedcutout"],"deps":{},"cmds":["opencutleft","opencutright","opencutcenter","cutfuzz","pageinwindow","windowpagestuff","picinwindow","putstuffinpic"]}
-,
-"cvss.sty":{"envs":{},"deps":["tcolorbox.sty","tcolorboxlibraryskins.sty","xstring.sty","hyperref.sty"],"cmds":["cvssScore","cvssScorepretty","cvssLevel","cvssLevelpretty","cvssTag","cvssPrint","category","cvssFrame","scoreLow","scoreMed","scoreHigh","scoreCrit"]}
-,
-"cwpuzzle.sty":{"envs":["Puzzle","PuzzleClues","PuzzleWords","Sudoku","Kakuro"],"deps":["amssymb.sty"],"cmds":["PuzzleDefineCell","PuzzleDefineColorCell","Frame","Clue","PuzzleLetters","PuzzleNumbers","Word","PuzzleSolution","PuzzleUnitlength","PuzzleBlackBox","PuzzleFont","PuzzleNumberFont","PuzzleClueFont","PuzzleWordsText","PuzzleLettersText","PuzzleUnsolved","PuzzlePutNumber","PuzzleHook","PuzzleLineThickness","PuzzleThickline","PuzzlePre","PuzzlePost","PuzzleCluePre","PuzzleCluePost","PuzzleContent","PuzzleSolutionContent","SudokuLinethickness","KakuroNumberFont","KakuroHintType","PPa","docdate","docversion","filedate","filename","fileversion"]}
-,
-"cyber.sty":{"envs":["changelog","executivesummary"],"deps":["longtable.sty","color.sty","index.sty","fancyhdr.sty","graphicx.sty"],"cmds":["documents","notapplicable","implements","doneby","bydefault","unimplemented","articlesecuritylabel","booksecuritylabel","distributionA","distributionB","distributionC","distributionD","distributionE","distributionF","makedodtitle","narrowermargins","change","executivesummaryiacontrol","requirementsdocument","ifCyberindexingenabled","Cyberindexingenabledtrue","Cyberindexingenabledfalse","complianceaux","foreach","requirement","namedrequirement","addtosectionname","iaindexheadstyle","indexhelper","marginhelper","compliancehelper","explanationshelper","sectionnamehelper","iamarginsize","prescribed","documented","version"]}
-,
-"cypriot.sty":{"envs":{},"deps":{},"cmds":["cyprfamily","textcypr","Ca","Ce","Cga","Ci","Cja","Cjo","Cka","Cke","Cki","Cko","Cku","Cla","Cle","Cli","Clo","Clu","Cma","Cme","Cmi","Cmo","Cmu","Cna","Cne","Cni","Cno","Cnu","Co","Cpa","Cpe","Cpi","Cpo","Cpu","Cra","Cre","Cri","Cro","Cru","Csa","Cse","Csi","Cso","Csu","Cta","Cte","Cti","Cto","Ctu","Cu","Cwa","Cwe","Cwi","Cwo","Cxa","Cxe","translitcypr","translitcyprfont"]}
-,
-"cyrillic.sty":{"envs":{},"deps":{},"cmds":["CYRA","CYRB","CYRV","CYRG","CYRD","CYRE","CYRYO","CYRZH","CYRZ","CYRI","CYRISHRT","CYRK","CYRL","CYRM","CYRN","CYRO","CYRP","CYRR","CYRS","CYRT","CYRU","CYRF","CYRH","CYRC","CYRCH","CYRSH","CYRSHCH","CYRHRDSN","CYRERY","CYRSFTSN","CYREREV","CYRYU","CYRYA","cyra","cyrb","cyrv","cyrg","cyrd","cyre","cyryo","cyrzh","cyrz","cyri","cyrishrt","cyrk","cyrl","cyrm","cyrn","cyro","cyrp","cyrr","cyrs","cyrt","cyru","cyrf","cyrh","cyrc","cyrch","cyrsh","cyrshch","cyrhrdsn","cyrery","cyrsftsn","cyrerev","cyryu","cyrya","CYRABHCH","CYRABHCHDSC","CYRZHDSC","CYRABHDZE","CYRZDSC","CYRKHK","CYRKHCRS","CYRKDSC","CYRKVCRS","CYRLJE","CYRLDSC","CYRMDSC","CYRNDSC","CYRNG","CYRNJE","CYRNHK","CYROTLD","CYRPHK","CYRRTICK","CYRSDSC","CYRTDSC","CYRTSHE","CYRDJE","CYRUSHRT","CYRSHHA","CYRGHK","CYRGUP","CYRGHCRS","CYRHDSC","CYRDZHE","CYRDZE","CYRTETSE","CYRCHLDSC","CYRCHVCRS","CYRCHRDSC","CYRSEMISFTSN","CYRIE","CYRSCHWA","CYRII","CYRJE","CYRYI","CYRY","CYRYHCRS","CYRAE","CYRABHHA","CYRpalochka","cyrabhch","cyrabhchdsc","cyrzhdsc","cyrabhdze","cyrzdsc","cyrkhk","cyrkhcrs","cyrkdsc","cyrkvcrs","cyrlje","cyrldsc","cyrmdsc","cyrndsc","cyrng","cyrnje","cyrnhk","cyrotld","cyrphk","cyrrtick","cyrsdsc","cyrtdsc","cyrtshe","cyrdje","cyrushrt","cyrshha","cyrghk","cyrgup","cyrghcrs","cyrhdsc","cyrdzhe","cyrdze","cyrtetse","cyrchldsc","cyrchvcrs","cyrchrdsc","cyrsemisftsn","cyrie","cyrschwa","cyrii","cyrje","cyryi","cyry","cyryhcrs","cyrae","cyrabhha"]}
-,
-"dad.sty":{"envs":{},"deps":["luatex.sty","luatex85.sty"],"cmds":["arab","arabttexample","arabtt","kesh","arabdottedcircle","arabttsep"]}
-,
-"dantelogo.sty":{"envs":{},"deps":["iftex.sty","fontenc.sty"],"cmds":["dantelogo","DH","NG","dj","ng","k","guillemotleft","guillemotright","guilsinglleft","guilsinglright","quotedblbase","quotesinglbase","textquotedbl","DJ","th","TH","dh","Hwithstroke","hwithstroke","textogonekcentered","guillemetleft","guillemetright"]}
-,
-"darkmode.sty":{"envs":{},"deps":["expl3.sty","l3keys2e.sty","xcolor.sty","pagecolor.sty"],"cmds":["enabledarkmode","disabledarkmode","IfDarkModeT","IfDarkModeF","IfDarkModeTF"]}
-,
-"dashbox.sty":{"envs":{},"deps":["calc.sty"],"cmds":["dbox","dashbox","lbox","dlbox","dashlength","dashdash","layersize"]}
-,
-"dashrule.sty":{"envs":{},"deps":["ifmtarg.sty"],"cmds":["hdashrule"]}
-,
-"dashundergaps.sty":{"envs":{},"deps":["l3keys2e.sty","ulem.sty","underscore.sty"],"cmds":["gap","TeacherModeOn","TeacherModeOff","dashundergapssetup","thegapnumber","thetotalgapnumber","dashundergapsdate","dashundergapsversion"]}
-,
-"databar.sty":{"envs":{},"deps":["xkeyval.sty","dataplot.sty","datatool.sty","tikz.sty"],"cmds":["DTLbarchart","DTLmultibarchart","DTLbarchartlength","DTLbarwidth","DTLbarlabeloffset","DTLsetbarcolor","DTLdobarcolor","DTLbaroutlinecolor","DTLbaroutlinewidth","DTLbaratbegintikz","DTLbaratendtikz","DTLeverybarhook","DTLstartpt","DTLmidpt","DTLendpt","ifDTLverticalbars","DTLverticalbarstrue","DTLverticalbarsfalse","ifDTLcolorbarchart","DTLcolorbarcharttrue","DTLcolorbarchartfalse","ifDTLbarxaxis","DTLbarxaxistrue","DTLbarxaxisfalse","ifDTLbaryaxis","DTLbaryaxistrue","DTLbaryaxisfalse","ifDTLbarytics","DTLbaryticstrue","DTLbaryticsfalse","DTLbarXlabelalign","DTLbarYticklabelalign","DTLbardisplayYticklabel","DTLdisplaylowerbarlabel","DTLdisplaylowermultibarlabel","DTLdisplayupperbarlabel","DTLdisplayuppermultibarlabel","DTLbarchartwidth","DTLbargroupwidth","DTLnegextent","DTLbarmax","DTLbarvariable","DTLBarXAxisStyle","DTLBarYAxisStyle","DTLdocurrentbarcolor","DTLgetbarcolor","theDTLbarroundvar"]}
-,
-"databib.sty":{"envs":["DTLthebibliography"],"deps":["datatool.sty"],"cmds":["DTLloadbbl","DTLbibliography","DTLbibfieldexists","DTLbibfieldiseq","DTLbibfieldcontains","DTLbibfieldislt","DTLbibfieldisle","DTLbibfieldisgt","DTLbibfieldisge","DTLmonthname","DTLbibliographystyle","DTLformatauthor","DTLformateditor","DTLformatforenames","DTLformatabbrvforenames","DTLformatsurname","DTLformatvon","DTLformatjr","DTLcheckendsperiod","DTLandlast","DTLandnotlast","DTLtwoand","DTLbibitem","DTLmbibitem","DTLendbibitem","DTLforeachbibentry","gDTLforeachbibentry","DBIBcitekey","DTLbibfield","DTLbibfieldlet","DTLifbibfieldexists","DTLifanybibfieldexists","DTLformatbibentry","gDTLformatbibentry","DBIBentrytype","DTLformatthisbibentry","DTLcustombibitem","DTLcomputewidestbibentry","theDTLbibrow","theDTLmaxauthors","theDTLmaxeditors","DTLmultibibs","DTLcite","DTLnocite","DTLloadmbbl","DTLmbibliography","DTLBIBdbname","andname","DBIBname","DTLacmcs","DTLacta","DTLaddcomma","DTLaddperiod","DTLcacm","DTLcheckbibfieldendsperiod","DTLformatarticle","DTLformatarticlecrossref","DTLformatauthorlist","DTLformatbook","DTLformatbookcrossref","DTLformatbooklet","DTLformatbooktitle","DTLformatbvolume","DTLformatchapterpages","DTLformatcrossrefeditor","DTLformatdate","DTLformatedition","DTLformateditorlist","DTLformatinbook","DTLformatincollection","DTLformatincollproccrossref","DTLformatinedbooktitle","DTLformatinproceedings","DTLformatmanual","DTLformatmastersthesis","DTLformatmisc","DTLformatnumberseries","DTLformatpages","DTLformatphdthesis","DTLformatproceedings","DTLformatsurnameonly","DTLformattechreport","DTLformatunpublished","DTLformatvolnumpages","DTLibmjrd","DTLibmsj","DTLieeese","DTLieeetc","DTLieeetcad","DTLipl","DTLjacm","DTLjcss","DTLmidsentencefalse","DTLmidsentencetrue","DTLnewbibitem","DTLnewbibrow","DTLpcite","DTLperiodfalse","DTLperiodtrue","DTLscp","DTLsicomp","DTLstartsentencefalse","DTLstartsentencespace","DTLstartsentencetrue","DTLtcs","DTLtocs","DTLtods","DTLtog","DTLtoms","DTLtoois","DTLtoplas","editionname","editorname","editorsname","etalname","ifDTLmidsentence","ifDTLperiod","ifDTLstartsentence","inname","mscthesisname","numbername","ofname","pagename","pagesname","phdthesisname","techreportname","theHDTLbibrow","volumename"]}
-,
-"datagidx.sty":{"envs":{},"deps":["datatool.sty","etoolbox.sty","xkeyval.sty","mfirstuc.sty","xfor.sty","multicol.sty","textcase.sty","afterpage.sty"],"cmds":["loadgidx","newgidx","DTLgidxCounter","DTLgidxAddLocationType","DTLgidxSetCompositor","newterm","DTLgidxSetDefaultDB","DTLgidxParen","DTLgidxPlace","DTLgidxSubject","DTLgidxName","DTLgidxRank","DTLgidxNameNum","DTLgidxMac","DTLgidxSaint","DTLgidxParticle","DTLgidxOffice","newtermlabelhook","DTLgidxNoFormat","DTLgidxGobble","DTLgidxIgnore","DTLgidxStripBackslash","useentry","Useentry","USEentry","useentrynl","Useentrynl","USEentrynl","glslink","glsdispentry","Glsdispentry","DTLgidxFetchEntry","glsadd","glsaddall","gls","glspl","glsnl","glsplnl","Gls","Glspl","Glsnl","Glsplnl","glssym","Glssym","newtermaddfield","field","newacro","acronymfont","DTLgidxAcrStyle","acr","acrpl","Acr","Acrpl","glsreset","glsunset","glsresetall","glsunsetall","iftermexists","ifentryused","printterms","DTLgidxChildSep","DTLgidxPostChild","DTLgidxCategoryNameFont","DTLgidxCategorySep","DTLgidxSubCategorySep","DTLgidxDictPostItem","datagidxdictindent","DTLgidxCurrentdb","datagidxbalancefalse","datagidxbalancetrue","datagidxchildend","datagidxchilditem","datagidxchildstart","datagidxconvertchars","datagidxcurrentgroup","datagidxdb","datagidxdescwidth","datagidxdictparshape","datagidxdoseealso","datagidxend","datagidxextendedtoascii","datagidxgroupheader","datagidxgroupsep","datagidxhighoptfilename","datagidxindent","datagidxitem","datagidxlastlabel","datagidxlink","datagidxlocalign","datagidxlocationwidth","datagidxnamewidth","datagidxprevgroup","datagidxseealsoend","datagidxseealsostart","datagidxsetstyle","datagidxshowgroupsfalse","datagidxshowgroupstrue","datagidxshowifdraft","datagidxstart","datagidxstripaccents","datagidxsymalign","datagidxsymbolwidth","datagidxtarget","datagidxtermkeys","datagidxwordifygreek","dtldofirstlocation","dtldolocationlist","DTLgidxChildCountLabel","DTLgidxChildren","DTLgidxChildrenSeeAlso","DTLgidxChildStyle","DTLgidxDictHead","DTLgidxDisableHyper","DTLgidxDoSeeOrLocation","DTLgidxEnableHyper","DTLgidxForeachEntry","DTLgidxFormatAcr","DTLgidxFormatAcrUC","DTLgidxFormatDesc","DTLgidxFormatSee","DTLgidxFormatSeeAlso","DTLgidxGroupHeaderTitle","DTLgidxLocation","DTLgidxLocationF","DTLgidxLocationFF","DTLgidxLocationSep","DTLgidxNameCase","DTLgidxNameFont","DTLgidxNoHeading","DTLgidxPostChildName","DTLgidxPostDescription","DTLgidxPostName","DTLgidxPreLocation","DTLgidxSee","DTLgidxSeeAlso","DTLgidxSeeList","DTLgidxSeeTagFont","DTLgidxSetColumns","DTLgidxSymbolDescLeft","DTLgidxSymbolDescRight","DTLgidxSymbolDescription","DTLgidxSymDescSep","DTLidxFormatSeeItem","DTLidxSeeLastSep","DTLidxSeeSep","ifdatagidxbalance","ifdatagidxshowgroups","ifnewtermfield","newtermfield","postnewtermhook","printtermsrestoreonecolumn","printtermsstartpar","seealsoname","seename","theDTLgidxChildCount","theHDTLgidxChildCount"]}
-,
-"datapie.sty":{"envs":{},"deps":["xkeyval.sty","datatool.sty","tikz.sty"],"cmds":["DTLpiechart","DTLpievariable","DTLpiepercent","DTLdisplayinnerlabel","DTLdisplayouterlabel","DTLsetpiesegmentcolor","DTLdopiesegmentcolor","DTLdocurrentpiesegmentcolor","DTLpieoutlinecolor","DTLpieoutlinewidth","DTLpieatbegintikz","DTLpieatendtikz","DTLcolorpiechartfalse","DTLcolorpiecharttrue","DTLcutawayratio","DTLgetpiesegmentcolor","DTLinnerratio","DTLouterratio","DTLradius","DTLrotateinnerfalse","DTLrotateinnertrue","DTLrotateouterfalse","DTLrotateoutertrue","DTLstartangle","ifDTLcolorpiechart","ifDTLrotateinner","ifDTLrotateouter","theDTLpieroundvar"]}
-,
-"dataplot.sty":{"envs":{},"deps":["xkeyval.sty","tikz.sty","tikzlibraryplotmarks.sty","tikzlibrarycalc.sty","datatool.sty"],"cmds":["DTLplot","DTLplotatbegintikz","DTLplotatendtikz","dtlplothandlermark","DTLaddtoplotlegend","DTLplotwidth","DTLplotheight","DTLticklength","DTLminorticklength","DTLticklabeloffset","DTLmintickgap","DTLlegendxoffset","DTLlegendyoffset","DTLplotmarks","DTLplotmarkcolors","DTLplotlines","DTLplotlinecolors","DTLXAxisStyle","DTLYAxisStyle","DTLmajorgridstyle","DTLminorgridstyle","DTLformatlegend","DTLplotstream","DTLboxfalse","DTLboxtrue","DTLgridfalse","DTLgridtrue","DTLmaxX","DTLmaxY","DTLminminortickgap","DTLminX","DTLminY","DTLshowlinesfalse","DTLshowlinestrue","DTLshowmarkersfalse","DTLshowmarkerstrue","DTLxaxisfalse","DTLxaxistrue","DTLxminorticsfalse","DTLxminorticstrue","DTLxticsfalse","DTLxticsinfalse","DTLxticsintrue","DTLxticstrue","DTLyaxisfalse","DTLyaxistrue","DTLyminorticsfalse","DTLyminorticstrue","DTLyticsfalse","DTLyticsinfalse","DTLyticsintrue","DTLyticstrue","ifDTLbox","ifDTLgrid","ifDTLshowlines","ifDTLshowmarkers","ifDTLxaxis","ifDTLxminortics","ifDTLxtics","ifDTLxticsin","ifDTLyaxis","ifDTLyminortics","ifDTLytics","ifDTLyticsin","theDTLplotroundXvar","theDTLplotroundYvar"]}
-,
-"dataref.sty":{"envs":{},"deps":["pgf.sty","iftex.sty","kvoptions.sty","etoolbox.sty","xtab.sty","booktabs.sty"],"cmds":["drefusagereport","drefset","drefsave","drefinput","dref","drefvalueof","drefref","drefsethelp","drefhelp","drefresult","drefcalc","drefformat","drefrel","drefrow","drefassert","drefkeys"]}
-,
-"datatool-base.sty":{"envs":["dtlenvgforint"],"deps":["etoolbox.sty","xkeyval.sty","ifthen.sty","datatool-fp.sty","datatool-pgfmath.sty"],"cmds":["DTLsetnumberchars","DTLnewcurrencysymbol","DTLifint","DTLifreal","DTLifcurrency","DTLifcurrencyunit","DTLifnumerical","DTLifstring","DTLifcasedatatype","DTLifnumeq","DTLifstringeq","DTLifeq","DTLifnumlt","DTLifstringlt","DTLiflt","DTLifnumgt","DTLifstringgt","DTLifgt","DTLifnumclosedbetween","DTLifstringclosedbetween","DTLifclosedbetween","DTLifnumopenbetween","DTLifstringopenbetween","DTLifopenbetween","DTLifFPclosedbetween","DTLifFPopenbetween","DTLifAllUpperCase","DTLifAllLowerCase","DTLifSubString","DTLifStartsWith","dtlifintclosedbetween","dtlifintopenbetween","DTLisstring","DTLisnumerical","DTLiscurrency","DTLiscurrencyunit","DTLisreal","DTLisint","DTLislt","DTLisilt","DTLisgt","DTLisigt","DTLiseq","DTLisieq","DTLisclosedbetween","DTLisiclosedbetween","DTLisopenbetween","DTLisiopenbetween","DTLisFPlt","DTLisFPlteq","DTLisFPgt","DTLisFPgteq","DTLisFPeq","DTLisFPclosedbetween","DTLisFPopenbetween","DTLisSubString","DTLisPrefix","DTLisinlist","DTLisnumclosedbetween","DTLisnumopenbetween","DTLconverttodecimal","DTLdecimaltolocale","DTLdecimaltocurrency","DTLsetdefaultcurrency","DTLadd","DTLgadd","DTLaddall","DTLgaddall","DTLsub","DTLgsub","DTLmul","DTLgmul","DTLdiv","DTLgdiv","DTLabs","DTLgabs","DTLneg","DTLgneg","DTLsqrt","DTLgsqrt","DTLmin","DTLgmin","DTLminall","DTLgminall","DTLmax","DTLgmax","DTLmaxall","DTLgmaxall","DTLmeanforall","DTLgmeanforall","DTLvarianceforall","DTLgvarianceforall","DTLsdforall","DTLgsdforall","DTLround","DTLground","DTLtrunc","DTLgtrunc","DTLclip","DTLgclip","DTLsubstitute","DTLsubstituteall","DTLsplitstring","DTLinitials","DTLstoreinitials","DTLafterinitials","DTLbetweeninitials","DTLinitialhyphen","DTLafterinitialbeforehyphen","DTLformatlist","ifDTLlistskipempty","DTLlistskipemptytrue","DTLlistskipemptyfalse","DTLlistformatsep","DTLlistformatlastsep","DTLlistformatoxford","DTLandname","DTLlistformatitem","DTLifinlist","DTLnumitemsinlist","DTLlistelement","DTLfetchlistelement","dtlsortlist","dtlcompare","dtlicompare","ifdtlcompareskipcs","dtlcompareskipcstrue","dtlcompareskipcsfalse","dtlwordindexcompare","dtlletterindexcompare","dtlicomparewords","dtlcomparewords","dtlinsertinto","edtlinsertinto","datatoolpersoncomma","datatoolplacecomma","datatoolsubjectcomma","datatoolparenstart","dtlbreak","dtlsetcharcode","dtlsetlccharcode","dtlsetUTFviiicharcode","dtlsetUTFviiilccharcode","dtlsetdefaultUTFviiicharcode","dtlsetdefaultUTFviiilccharcode","dtlifcasechargroup","dtlparsewords","dtlforint","dtlgforint","to","step","ifdtlverbose","dtlverbosetrue","dtlverbosefalse","dtlenableUTFviii","dtldisableUTFviii"]}
-,
-"datatool-fp.sty":{"envs":{},"deps":["xkeyval.sty","fp.sty","datatool-base.sty"],"cmds":["dtlifnumeq","dtlifnumlt","dtlifnumgt","dtlifnumopenbetween","dtlifnumclosedbetween","dtladd","dtlsub","dtlmul","dtldiv","dtlroot","dtlround","dtltrunc","dtlclip","dtlmin","dtlmax","dtlabs","dtlneg","ifFPmessages","FPmessagestrue","FPmessagesfalse"]}
-,
-"datatool-pgfmath.sty":{"envs":{},"deps":["xkeyval.sty","pgfrcs.sty","pgfkeys.sty","pgfmath.sty","datatool-base.sty"],"cmds":["dtlifnumeq","dtlifnumlt","dtlifnumgt","dtlifnumopenbetween","dtlifnumclosedbetween","dtladd","dtlsub","dtlmul","dtldiv","dtlroot","dtlround","dtltrunc","dtlclip","dtlmin","dtlmax","dtlabs","dtlneg"]}
-,
-"datatool.sty":{"envs":["DTLenvforeach","DTLenvforeach*"],"deps":["xkeyval.sty","xfor.sty","etoolbox.sty","datatool-pgfmath.sty"],"cmds":["DTLnewdb","DTLgnewdb","DTLifdbempty","DTLrowcount","DTLcolumncount","DTLnewrow","DTLnewdbentry","dtlexpandnewvalue","dtlnoexpandnewvalue","DTLpar","DTLaddentryforrow","DTLsetheader","DTLaddcolumn","DTLloaddb","ifDTLnewdbonload","DTLnewdbonloadfalse","DTLnewdbonloadtrue","dtldefaultkey","DTLsettabseparator","DTLmaketabspace","DTLsetseparator","DTLsetdelimiter","DTLloadrawdb","DTLrawmap","DTLdisplaydb","DTLdisplaylongdb","dtlstringalign","dtlintalign","dtlrealalign","dtlcurrencyalign","dtlbeforecols","dtlbetweencols","dtlaftercols","dtladdalign","dtlheaderformat","dtlstringformat","dtlintformat","dtlrealformat","dtlcurrencyformat","dtldisplayvalign","dtldisplaycr","dtldisplaystarttab","dtldisplayendtab","dtldisplayafterhead","dtldisplaystartrow","DTLforeach","theDTLrow","theDTLrowi","theDTLrowii","theDTLrowiii","DTLcurrentindex","DTLiffirstrow","DTLiflastrow","DTLifoddrow","DTLsavelastrowcount","DTLforeachkeyinrow","dtlkey","dtlcol","dtltype","dtlheader","DTLstringnull","DTLnumbernull","DTLifnull","DTLifnullorempty","dtlnovalue","dtlswaprows","DTLremoverow","DTLappendtorow","DTLreplaceentryforrow","DTLremoveentryfromrow","DTLremovecurrentrow","DTLsumforkeys","DTLsumcolumn","DTLmeanforkeys","DTLmeanforcolumn","DTLvarianceforkeys","DTLvarianceforcolumn","DTLsdforkeys","DTLsdforcolumn","DTLminforkeys","DTLminforcolumn","DTLmaxforkeys","DTLmaxforcolumn","DTLcomputebounds","dtlsort","DTLsort","DTLsavedb","DTLsavetexdb","DTLsaverawdb","DTLprotectedsaverawdb","DTLloaddbtex","dtllastloadeddb","DTLcleardb","DTLgcleardb","DTLdeletedb","DTLgdeletedb","DTLgetdatatype","DTLunsettype","DTLstringtype","DTLinttype","DTLrealtype","DTLcurrencytype","DTLifdbexists","DTLifhaskey","DTLgetcolumnindex","DTLgetkeyforcolumn","dtlcolumnindex","DTLgetkeydata","DTLgetvalue","DTLgetlocation","DTLgetvalueforkey","DTLgetrowforkey","DTLfetch","DTLassign","DTLassignfirstmatch","xDTLassignfirstmatch","DTLswaprows","DTLgetrowindex","dtlgetrowindex","xdtlgetrowindex","dtlcurrentrow","dtlbeforerow","dtlafterrow","dtlrownum","dtlcolumnnum","dtldbname","dtlgetrow","dtlgetrowforvalue","edtlgetrowforvalue","dtlrecombine","dtlrecombineomitcurrent","dtlsplitrow","dtlgetentryfromcurrentrow","dtlgetentryfromrow","dtlreplaceentryincurrentrow","dtlswapentriesincurrentrow","dtlappendentrytocurrentrow","dtlupdateentryincurrentrow","dtlremoveentryincurrentrow","dtlforeachkey","in","do","dtlforcolumn","dtlforcolumnidx","theHDTLrow","theHDTLrowi","theHDTLrowii","theHDTLrowiii","dtlforeachlevel","dtlshowdb","dtlshowdbkeys","dtlshowtype","ifdtlnoheader","dtlnoheadertrue","dtlnoheaderfalse","ifdtlautokeys","dtlautokeystrue","dtlautokeysfalse"]}
-,
-"datax.sty":{"envs":{},"deps":["pgfkeys.sty","pgfopts.sty"],"cmds":["datax","dataxfile"]}
-,
-"dateiliste.sty":{"envs":{},"deps":["rcsinfo.sty","ltxtable.sty","svninfo.sty"],"cmds":["ProvideFileInfos","mainFileToList","printFileList","fileListName","fileListPreamble","fileNameName","dateName","verName","descriptionName","pageName","afterfi"]}
-,
-"datenumber.sty":{"envs":{},"deps":{},"cmds":["setstartyear","thestartyear","thedatenumber","thedateyear","thedatemonth","thedateday","thedatedayname","setdatenumber","setdatebynumber","nextdate","prevdate","setdate","setdatetoday","datemonthname","datedayname","datedate","setmydatenumber","setmydatebynumber","mynextdate","setmonthname","setdayname","setdaynamebynumber","dateselectlanguage","ifleapyear","ifvaliddate","fileversion","filedate"]}
-,
-"datestamp.sty":{"envs":{},"deps":["luatex.sty","xparse.sty"],"cmds":["adddatestamp","adddaystamp","addmonthstamp","addyearstamp","luacodefordatestamp"]}
-,
-"datetime2-calc.sty":{"envs":{},"deps":["pgfkeys.sty","pgfcalendar.sty"],"cmds":["DTMsavejulianday","DTMsaveddatetojulianday","DTMsaveddateoffsettojulianday","DTMifdate","DTMsaveddatediff","DTMsaveaszulutime","DTMtozulu","DTMcomputedayofweekindex","DTMweekdayname","DTMWeekdayname","DTMshortweekdayname","DTMshortWeekdayname","DTMordinal","dtmnamewarning","dtmSundayIndex","dtmMondayIndex","dtmTuesdayIndex","dtmWednesdayIndex","dtmThursdayIndex","dtmFridayIndex","dtmSaturdayIndex"]}
-,
-"datetime2-en-fulltext.sty":{"envs":{},"deps":["datetime2.sty","fmtcount.sty","datetime2-calc.sty"],"cmds":["DTMAfterNoonstring","DTMafternoonstring","DTMenfulltextmonthyearsep","DTMHalfPaststring","DTMhalfpaststring","DTMMinutePaststring","DTMminutepaststring","DTMMinutesPaststring","DTMminutespaststring","DTMMinutesTostring","DTMminutestostring","DTMMinuteTostring","DTMminutetostring","DTMMorningstring","DTMmorningstring","DTMOClockstring","DTMoclockstring","DTMQuarterPaststring","DTMquarterpaststring","DTMQuarterTostring","DTMquartertostring"]}
-,
-"datetime2.sty":{"envs":{},"deps":["tracklang.sty","etoolbox.sty","xkeyval.sty","datetime2-calc.sty"],"cmds":["DTMdisplaydate","DTMDisplaydate","Today","DTMtoday","DTMToday","DTMdate","DTMDate","DTMdisplaytime","DTMdisplayzone","DTMcurrenttime","DTMcurrentzone","DTMtime","DTMdisplay","DTMDisplay","DTMnow","DTMNow","DTMsavedate","DTMsavenoparsedate","DTMsavetime","DTMsavetimezn","DTMsavetimestamp","DTMsavepdftimestamp","DTMsavefrompdfdata","DTMsavenow","DTMsavefilemoddate","DTMmakeglobal","DTMusedate","DTMUsedate","DTMusetime","DTMusezone","DTMuse","DTMUse","DTMifsaveddate","DTMfetchyear","DTMfetchmonth","DTMfetchday","DTMfetchdow","DTMfetchhour","DTMfetchminute","DTMfetchsecond","DTMfetchTZhour","DTMfetchTZminute","DTMsetdatestyle","DTMsettimestyle","DTMsetzonestyle","DTMsetstyle","DTMtryregional","DTMnewdatestyle","DTMfinaldot","DTMnewtimestyle","DTMnewzonestyle","DTMnewstyle","DTMrenewdatestyle","DTMrenewtimestyle","DTMrenewzonestyle","DTMrenewstyle","DTMprovidedatestyle","DTMprovidetimestyle","DTMprovidezonestyle","DTMprovidestyle","DTMifhasstyle","DTMifhasdatestyle","DTMifhastimestyle","DTMifhaszonestyle","DTMtwodigits","DTMcentury","DTMdivhundred","DTMtexorpdfstring","DTMsep","DTMusezonemap","DTMdefzonemap","DTMNatoZoneMaps","DTMclearmap","DTMresetzones","DTMhaszonemap","DTMusezonemapordefault","DTMlangsetup","RequireDateTimeModule","DTMusemodule","DTMdialecttomodulemap","DTMmonthname","DTMMonthname","DTMshortmonthname","DTMshortMonthname","DTMsetup","DTMsetregional","DTMdefboolkey","DTMdefchoicekey","DTMdefkey","DTMifbool","DTMifcaseregional","DTMsetbool","DTMsetcurrentzone","DTMshowmap","ifDTMshowdow","DTMshowdowtrue","DTMshowdowfalse","ProvidesDateTimeModule","ifDTMshowseconds","DTMshowsecondstrue","DTMshowsecondsfalse","ifDTMshowzone","DTMshowzonetrue","DTMshowzonefalse","ifDTMshowzoneminutes","DTMshowzoneminutestrue","DTMshowzoneminutesfalse","ifDTMshowisoZ","DTMshowisoZtrue","DTMshowisoZfalse","ifDTMshowdate","DTMshowdatetrue","DTMshowdatefalse","DTMbahasaiordinal","DTMbahasaimonthname","DTMbahasaidaymonthsep","DTMbahasaimonthyearsep","DTMbahasaidatetimesep","DTMbahasaitimezonesep","DTMbahasaidatesep","DTMbahasaitimesep","DTMbahasaizonemaps","DTMbasqueordinal","DTMbasquemonthname","DTMbasquedaymonthsep","DTMbasquemonthyearsep","DTMbasquedatetimesep","DTMbasquetimezonesep","DTMbasquedatesep","DTMbasquetimesep","DTMbasquezonemaps","DTMbretonordinal","DTMbretonfmtordinal","DTMbretonfmtordsuffix","DTMbretonmonthname","DTMbretondaymonthsep","DTMbretonmonthyearsep","DTMbretondatetimesep","DTMbretontimezonesep","DTMbretondatesep","DTMbretontimesep","DTMbretonzonemaps","DTMbulgarianordinal","DTMbulgarianyear","DTMbulgarianmonthname","DTMbulgarianMonthname","DTMbulgariandaymonthsep","DTMbulgarianmonthyearsep","DTMbulgariandatetimesep","DTMbulgariantimezonesep","DTMbulgariandatesep","DTMbulgariantimesep","DTMbulgarianzonemaps","DTMcatalanordinal","DTMcatalanmonthname","DTMcatalanMonthname","DTMcatalandaymonthsep","DTMcatalanmonthyearsep","DTMcatalandatetimesep","DTMcatalantimezonesep","DTMcatalandatesep","DTMcatalantimesep","DTMcatalanzonemaps","DTMcroatianordinal","DTMcroatianyear","DTMcroatianmonthname","DTMcroatianMonthname","DTMcroatianweekdayname","DTMcroatianWeekdayname","DTMcroatianshortWeekdayname","DTMcroatianshortweekdayname","DTMcroatiandaymonthsep","DTMcroatianmonthyearsep","DTMcroatiandatetimesep","DTMcroatiantimezonesep","DTMcroatiandatesep","DTMcroatiantimesep","DTMcroatianzonemaps","DTMczechordinal","DTMczechmonthname","DTMczechMonthname","DTMczechdaymonthsep","DTMczechmonthyearsep","DTMczechdatetimesep","DTMczechtimezonesep","DTMczechdatesep","DTMczechtimesep","DTMczechzonemaps","DTMdanishordinal","DTMdanishmonthname","DTMdanishMonthname","DTMdanishweekdayname","DTMdanishWeekdayname","DTMdanishdaymonthsep","DTMdanishmonthyearsep","DTMdanishdatetimesep","DTMdanishtimezonesep","DTMdanishdatesep","DTMdanishtimesep","DTMdanishzonemaps","DTMdutchordinal","DTMdutchmonthname","DTMdutchMonthname","DTMdutchweekdayname","DTMdutchWeekdayname","DTMdutchshortweekdayname","DTMdutchshortWeekdayname","DTMdutchdaymonthsep","DTMdutchmonthyearsep","DTMdutchdatetimesep","DTMdutchtimezonesep","DTMdutchdatesep","DTMdutchtimesep","DTMdutchzonemaps","DTMenglishordinal","DTMenglishst","DTMenglishnd","DTMenglishrd","DTMenglishth","DTMenglishfmtordsuffix","DTMenglishmonthname","DTMenglishMonthname","DTMenglishweekdayname","DTMenglishWeekdayname","DTMenglishshortweekdayname","DTMenglishshortWeekdayname","DTMenglisham","DTMenglishpm","DTMenglishmidnight","DTMenglishnoon","DTMenglishampmfmt","DTMenglishtimesep","DTMenGBdowdaysep","DTMenGBdaymonthsep","DTMenGBmonthyearsep","DTMenGBdatetimesep","DTMenGBtimezonesep","DTMenGBdatesep","DTMenGBtimesep","DTMenGBfmtordsuffix","DTMenGBzonemaps","DTMenUSmonthdaysep","DTMenUSdowmonthsep","DTMenUSdayyearsep","DTMenUSdatetimesep","DTMenUStimezonesep","DTMenUSdatesep","DTMenUStimesep","DTMenUSfmtordsuffix","DTMenUSzonemaps","DTMenUSstdzonemaps","DTMenUSdstzonemaps","DTMenUSatlanticzonemaps","DTMenUSeasternzonemaps","DTMenUScentralzonemaps","DTMenUSmountainzonemaps","DTMenUSpacificzonemaps","DTMenUSalaskazonemaps","DTMenUShawaiialeutianzonemaps","DTMenUSsamoazonemaps","DTMenUSchamorrozonemaps","DTMenCAmonthdaysep","DTMenCAdowmonthsep","DTMenCAdayyearsep","DTMenCAdatetimesep","DTMenCAtimezonesep","DTMenCAdatesep","DTMenCAtimesep","DTMenCAfmtordsuffix","DTMenCAzonemaps","DTMenCAstdzonemaps","DTMenCAdstzonemaps","DTMenCAnewfoundlandzonemaps","DTMenCAatlanticzonemaps","DTMenCAeasternzonemaps","DTMenCAcentralzonemaps","DTMenCAmountainzonemaps","DTMenCApacificzonemaps","DTMenAUdowdaysep","DTMenAUdaymonthsep","DTMenAUmonthyearsep","DTMenAUdatetimesep","DTMenAUtimezonesep","DTMenAUdatesep","DTMenAUtimesep","DTMenAUfmtordsuffix","DTMenAUzonemaps","DTMenAUstdzonemaps","DTMenAUdstzonemaps","DTMenAUcentralzonemaps","DTMenAUcentralwesternzonemaps","DTMenAUwesternzonemaps","DTMenAUeasternzonemaps","DTMenAUchrismaszonemaps","DTMenAUlordhowezonemaps","DTMenAUnorfolkzonemaps","DTMenAUcocoszonemaps","DTMenNZdowdaysep","DTMenNZdaymonthsep","DTMenNZmonthyearsep","DTMenNZdatetimesep","DTMenNZtimezonesep","DTMenNZdatesep","DTMenNZtimesep","DTMenNZfmtordsuffix","DTMenNZzonemaps","DTMenGGdowdaysep","DTMenGGdaymonthsep","DTMenGGmonthyearsep","DTMenGGdatetimesep","DTMenGGtimezonesep","DTMenGGdatesep","DTMenGGtimesep","DTMenGGfmtordsuffix","DTMenGGzonemaps","DTMenJEdowdaysep","DTMenJEdaymonthsep","DTMenJEmonthyearsep","DTMenJEdatetimesep","DTMenJEtimezonesep","DTMenJEdatesep","DTMenJEtimesep","DTMenJEfmtordsuffix","DTMenJEzonemaps","DTMenIMdowdaysep","DTMenIMdaymonthsep","DTMenIMmonthyearsep","DTMenIMdatetimesep","DTMenIMtimezonesep","DTMenIMdatesep","DTMenIMtimesep","DTMenIMfmtordsuffix","DTMenIMzonemaps","DTMenMTdowdaysep","DTMenMTdaymonthsep","DTMenMTmonthyearsep","DTMenMTdatetimesep","DTMenMTtimezonesep","DTMenMTdatesep","DTMenMTtimesep","DTMenMTfmtordsuffix","DTMenMTzonemaps","DTMenIEdowdaysep","DTMenIEdaymonthsep","DTMenIEmonthyearsep","DTMenIEdatetimesep","DTMenIEtimezonesep","DTMenIEdatesep","DTMenIEtimesep","DTMenIEfmtordsuffix","DTMenIEzonemaps","DTMesperantoordinal","DTMesperantomonthname","DTMesperantoMonthname","DTMesperantodaymonthsep","DTMesperantomonthyearsep","DTMesperantodatetimesep","DTMesperantotimezonesep","DTMesperantodatesep","DTMesperantotimesep","DTMesperantozonemaps","DTMestonianordinal","DTMestonianmonthname","DTMestonianMonthname","DTMestoniandaymonthsep","DTMestonianmonthyearsep","DTMestoniandatetimesep","DTMestoniantimezonesep","DTMestoniandatesep","DTMestoniantimesep","DTMestonianzonemaps","DTMfinnishordinal","DTMfinnishmonthname","DTMfinnishMonthname","DTMfinnishshortmonthname","DTMfinnishshortMonthname","DTMfinnishweekdayname","DTMfinnishWeekdayname","DTMfinnishshortweekdayname","DTMfinnishshortWeekdayname","DTMfinnishdaymonthsep","DTMfinnishmonthyearsep","DTMfinnishdatetimesep","DTMfinnishtimezonesep","DTMfinnishdatesep","DTMfinnishtimesep","DTMfinnishzonemaps","DTMfrenchordinal","DTMfrenchmonthname","DTMfrenchMonthname","DTMfrenchweekdayname","DTMfrenchWeekdayname","DTMfrenchshortweekdayname","DTMfrenchshortWeekdayname","DTMfrenchmidnight","DTMfrenchnoon","DTMfrenchtimesymsep","DTMfrenchhoursym","DTMfrenchdaymonthsep","DTMfrenchmonthyearsep","DTMfrenchdatetimesep","DTMfrenchtimezonesep","DTMfrenchdatesep","DTMfrenchtimesep","DTMfrenchzonemaps","DTMgalicianordinal","DTMgalicianmonthname","DTMgalicianMonthname","DTMgalicianweekdayname","DTMgalicianWeekdayname","DTMgalicianshortweekdayname","DTMgalicianshortWeekdayname","DTMgaliciandaymonthsep","DTMgalicianmonthyearsep","DTMgaliciandatetimesep","DTMgaliciantimezonesep","DTMgaliciandatesep","DTMgaliciantimesep","DTMgalicianzonemaps","DTMgermanordinal","DTMgermanweekdayname","DTMgermanWeekdayname","DTMgermanshortweekdayname","DTMgermanshortWeekdayname","DTMgermanzonemaps","DTMgermanmonthname","DTMdeATmonthname","DTMgermanshortmonthname","DTMdeATshortmonthname","DTMdeCHshortmonthname","DTMgermandowdaysep","DTMgermandaymonthsep","DTMgermanmonthyearsep","DTMgermandatetimesep","DTMgermantimezonesep","DTMgermandatesep","DTMgermantimesep","DTMdeDEdowdaysep","DTMdeDEdaymonthsep","DTMdeDEmonthyearsep","DTMdeDEdatetimesep","DTMdeDEtimezonesep","DTMdeDEdatesep","DTMdeDEtimesep","DTMdeATdowdaysep","DTMdeATdaymonthsep","DTMdeATmonthyearsep","DTMdeATdatetimesep","DTMdeATtimezonesep","DTMdeATdatesep","DTMdeATtimesep","DTMdeCHdowdaysep","DTMdeCHdaymonthsep","DTMdeCHmonthyearsep","DTMdeCHdatetimesep","DTMdeCHtimezonesep","DTMdeCHdatesep","DTMdeCHtimesep","DTMgreekordinal","DTMgreekmonthname","DTMgreekMonthname","DTMgreekdaymonthsep","DTMgreekmonthyearsep","DTMgreekdatetimesep","DTMgreektimezonesep","DTMgreekdatesep","DTMgreektimesep","DTMgreekzonemaps","DTMhebrewdate","DTMhebrewdatetimesep","DTMhebrewtimezonesep","DTMhebrewdatesep","DTMhebrewtimesep","DTMhebrewzonemaps","DTMicelandicordinal","DTMicelandicmonthname","DTMicelandicMonthname","DTMicelandicdaymonthsep","DTMicelandicmonthyearsep","DTMicelandicdatetimesep","DTMicelandictimezonesep","DTMicelandicdatesep","DTMicelandictimesep","DTMicelandiczonemaps","DTMirishordinal","DTMirishmonthname","DTMirishMonthname","DTMirishdaymonthsep","DTMirishmonthyearsep","DTMirishdatetimesep","DTMirishtimezonesep","DTMirishdatesep","DTMirishtimesep","DTMirishzonemaps","DTMitalianordinal","DTMitalianmonthname","DTMitalianshortmonthname","DTMitalianweekdayname","DTMitalianshortweekdayname","DTMitaliandaymonthsep","DTMitalianmonthyearsep","DTMitaliandatetimesep","DTMitaliantimezonesep","DTMitaliandatesep","DTMitaliantimesep","DTMitalianam","DTMitalianpm","DTMitalianmidnight","DTMitaliannoon","DTMitalianampmfmt","DTMitalianzonemaps","DTMlatindatefont","DTMlatinordinal","DTMlatinyear","DTMlatinmonthname","DTMlatindaymonthsep","DTMlatinmonthyearsep","DTMlatindatetimesep","DTMlatintimezonesep","DTMlatindatesep","DTMlatintimesep","DTMlatinzonemaps","DTMlsorbianordinal","DTMlsorbiannewmonthname","DTMlsorbiannewMonthname","DTMlsorbianoldmonthname","DTMlsorbianoldMonthname","DTMlsorbianmonthname","DTMlsorbianMonthname","DTMlsorbiandaymonthsep","DTMlsorbianmonthyearsep","DTMlsorbiandatetimesep","DTMlsorbiantimezonesep","DTMlsorbiandatesep","DTMlsorbiantimesep","DTMlsorbianzonemaps","DTMmagyarordinal","DTMmagyaryear","DTMmagyarmonthname","DTMmagyarMonthname","DTMmagyardaymonthsep","DTMmagyarmonthyearsep","DTMmagyardatetimesep","DTMmagyartimezonesep","DTMmagyardatesep","DTMmagyartimesep","DTMmagyarzonemaps","DTMnorskordinal","DTMnorskmonthname","DTMnorskMonthname","DTMnorskweekdayname","DTMnorskWeekdayname","DTMnorskdaymonthsep","DTMnorskmonthyearsep","DTMnorskdatetimesep","DTMnorsktimezonesep","DTMnorskdatesep","DTMnorsktimesep","DTMnorskzonemaps","DTMpolishordinal","DTMpolishmonthname","DTMpolishMonthname","DTMpolishweekdayname","DTMpolishWeekdayname","DTMpolishdaymonthsep","DTMpolishmonthyearsep","DTMpolishdatetimesep","DTMpolishtimezonesep","DTMpolishdatesep","DTMpolishtimesep","DTMpolishzonemaps","DTMportugesordinal","DTMportugesmonthname","DTMportugesweekdayname","DTMportugesWeekdayname","DTMportugesdaymonthsep","DTMportugesmonthyearsep","DTMportugesdatetimesep","DTMportugestimezonesep","DTMportugesdatesep","DTMportugestimesep","DTMportugeszonemaps","DTMromanianordinal","DTMromanianmonthname","DTMromanianMonthname","DTMromanianshortmonthname","DTMromanianshortMonthname","DTMromanianweekdayname","DTMromanianWeekdayname","DTMromanianshortweekdayname","DTMromanianshortWeekdayname","DTMromaniandowdaysep","DTMromaniandaymonthsep","DTMromanianmonthyearsep","DTMromaniandatetimesep","DTMromaniantimezonesep","DTMromaniandatesep","DTMromaniantimesep","DTMromanianzonemaps","DTMrussianordinal","DTMrussianyear","DTMrussianmonthname","DTMrussianMonthname","DTMrussiandaymonthsep","DTMrussianmonthyearsep","DTMrussiandatetimesep","DTMrussiantimezonesep","DTMrussiandatesep","DTMrussiantimesep","DTMrussianzonemaps","DTMsaminordinal","DTMsaminmonthname","DTMsaminMonthname","DTMsamindaymonthsep","DTMsaminmonthyearsep","DTMsamindatetimesep","DTMsamintimezonesep","DTMsamindatesep","DTMsamintimesep","DTMsaminzonemaps","DTMscottishordinal","DTMscottishmonthname","DTMscottishMonthname","DTMscottishdaymonthsep","DTMscottishmonthyearsep","DTMscottishdatetimesep","DTMscottishtimezonesep","DTMscottishdatesep","DTMscottishtimesep","DTMscottishzonemaps","DTMserbiancdatesep","DTMserbiancdatetimesep","DTMserbiancdaymonthsep","DTMserbiancdayordinal","DTMserbiancdowdaysep","DTMserbianciMonthname","DTMserbiancimonthname","DTMserbiancmonthordinal","DTMserbiancmonthyearsep","DTMserbiancnoiMonthname","DTMserbiancnoimonthname","DTMserbianctimesep","DTMserbianctimezonesep","DTMserbiancweekdayname","DTMserbiancyrekweekdayname","DTMserbiancyrekWeekdayname","DTMserbiancyrijweekdayname","DTMserbiancyrijWeekdayname","DTMserbiancyrimonthname","DTMserbiancyriMonthname","DTMserbiancyrnoimonthname","DTMserbiancyrnoiMonthname","DTMserbianczonemaps","DTMserbiandatesep","DTMserbiandatetimesep","DTMserbiandaymonthsep","DTMserbiandayordinal","DTMserbiandowdaysep","DTMserbianimonthname","DTMserbianiMonthname","DTMserbianlatekweekdayname","DTMserbianlatekWeekdayname","DTMserbianlatijweekdayname","DTMserbianlatijWeekdayname","DTMserbianlatimonthname","DTMserbianlatiMonthname","DTMserbianlatnoimonthname","DTMserbianlatnoiMonthname","DTMserbianmonthordinal","DTMserbianmonthyearsep","DTMserbiannoimonthname","DTMserbiannoiMonthname","DTMserbianordinalROMAN","DTMserbianordinalroman","DTMserbiantimesep","DTMserbiantimezonesep","DTMserbianweekdayname","DTMserbianzonemaps","DTMsrCyrlBAdatesep","DTMsrCyrlBAdatetimesep","DTMsrCyrlBAdaymonthsep","DTMsrCyrlBAdayordinal","DTMsrCyrlBAdowdaysep","DTMsrCyrlBAiMonthname","DTMsrCyrlBAimonthname","DTMsrCyrlBAmonthordinal","DTMsrCyrlBAmonthyearsep","DTMsrCyrlBAnoiMonthname","DTMsrCyrlBAnoimonthname","DTMsrCyrlBAtimesep","DTMsrCyrlBAtimezonesep","DTMsrCyrlBAweekdayname","DTMsrCyrldatesep","DTMsrCyrldatetimesep","DTMsrCyrldaymonthsep","DTMsrCyrldayordinal","DTMsrCyrldowdaysep","DTMsrCyrliMonthname","DTMsrCyrlimonthname","DTMsrCyrlMEdatesep","DTMsrCyrlMEdatetimesep","DTMsrCyrlMEdaymonthsep","DTMsrCyrlMEdayordinal","DTMsrCyrlMEdowdaysep","DTMsrCyrlMEiMonthname","DTMsrCyrlMEimonthname","DTMsrCyrlMEmonthordinal","DTMsrCyrlMEmonthyearsep","DTMsrCyrlMEnoiMonthname","DTMsrCyrlMEnoimonthname","DTMsrCyrlMEtimesep","DTMsrCyrlMEtimezonesep","DTMsrCyrlMEweekdayname","DTMsrCyrlmonthordinal","DTMsrCyrlmonthyearsep","DTMsrCyrlnoiMonthname","DTMsrCyrlnoimonthname","DTMsrCyrlRSdatesep","DTMsrCyrlRSdatetimesep","DTMsrCyrlRSdaymonthsep","DTMsrCyrlRSdayordinal","DTMsrCyrlRSdowdaysep","DTMsrCyrlRSiMonthname","DTMsrCyrlRSimonthname","DTMsrCyrlRSmonthordinal","DTMsrCyrlRSmonthyearsep","DTMsrCyrlRSnoiMonthname","DTMsrCyrlRSnoimonthname","DTMsrCyrlRStimesep","DTMsrCyrlRStimezonesep","DTMsrCyrlRSweekdayname","DTMsrCyrltimesep","DTMsrCyrltimezonesep","DTMsrCyrlweekdayname","DTMsrLatnBAdatesep","DTMsrLatnBAdatetimesep","DTMsrLatnBAdaymonthsep","DTMsrLatnBAdayordinal","DTMsrLatnBAdowdaysep","DTMsrLatnBAiMonthname","DTMsrLatnBAimonthname","DTMsrLatnBAmonthordinal","DTMsrLatnBAmonthyearsep","DTMsrLatnBAnoiMonthname","DTMsrLatnBAnoimonthname","DTMsrLatnBAtimesep","DTMsrLatnBAtimezonesep","DTMsrLatnBAweekdayname","DTMsrLatndatesep","DTMsrLatndatetimesep","DTMsrLatndaymonthsep","DTMsrLatndayordinal","DTMsrLatndowdaysep","DTMsrLatniMonthname","DTMsrLatnimonthname","DTMsrLatnMEdatesep","DTMsrLatnMEdatetimesep","DTMsrLatnMEdaymonthsep","DTMsrLatnMEdayordinal","DTMsrLatnMEdowdaysep","DTMsrLatnMEiMonthname","DTMsrLatnMEimonthname","DTMsrLatnMEmonthordinal","DTMsrLatnMEmonthyearsep","DTMsrLatnMEnoiMonthname","DTMsrLatnMEnoimonthname","DTMsrLatnMEtimesep","DTMsrLatnMEtimezonesep","DTMsrLatnMEweekdayname","DTMsrLatnmonthordinal","DTMsrLatnmonthyearsep","DTMsrLatnnoiMonthname","DTMsrLatnnoimonthname","DTMsrLatnRSdatesep","DTMsrLatnRSdatetimesep","DTMsrLatnRSdaymonthsep","DTMsrLatnRSdayordinal","DTMsrLatnRSdowdaysep","DTMsrLatnRSiMonthname","DTMsrLatnRSimonthname","DTMsrLatnRSmonthordinal","DTMsrLatnRSmonthyearsep","DTMsrLatnRSnoiMonthname","DTMsrLatnRSnoimonthname","DTMsrLatnRStimesep","DTMsrLatnRStimezonesep","DTMsrLatnRSweekdayname","DTMsrLatntimesep","DTMsrLatntimezonesep","DTMsrLatnweekdayname","DTMslovakordinal","DTMslovakmonthname","DTMslovakMonthname","DTMslovakdaymonthsep","DTMslovakmonthyearsep","DTMslovakdatetimesep","DTMslovaktimezonesep","DTMslovakdatesep","DTMslovaktimesep","DTMslovakzonemaps","DTMsloveneordinal","DTMslovenemonthname","DTMsloveneMonthname","DTMslovenedaymonthsep","DTMslovenemonthyearsep","DTMslovenedatetimesep","DTMslovenetimezonesep","DTMslovenedatesep","DTMslovenetimesep","DTMslovenezonemaps","DTMspanishordinal","DTMspanishmonthname","DTMspanishMonthname","DTMspanishweekdayname","DTMspanishWeekdayname","DTMspanishdaymonthsep","DTMspanishmonthyearsep","DTMspanishdatetimesep","DTMspanishtimezonesep","DTMspanishdatesep","DTMspanishtimesep","DTMspanishzonemaps","DTMswedishordinal","DTMswedishmonthname","DTMswedishMonthname","DTMswedishweekdayname","DTMswedishWeekdayname","DTMswedishdaymonthsep","DTMswedishmonthyearsep","DTMswedishdatetimesep","DTMswedishtimezonesep","DTMswedishdatesep","DTMswedishtimesep","DTMswedishzonemaps","DTMturkishordinal","DTMturkishmonthname","DTMturkishMonthname","DTMturkishdaymonthsep","DTMturkishmonthyearsep","DTMturkishdatetimesep","DTMturkishtimezonesep","DTMturkishdatesep","DTMturkishtimesep","DTMturkishzonemaps","DTMukrainianordinal","DTMukrainianyear","DTMukrainiannominativemonthname","DTMukrainiannominativeMonthname","DTMukrainiangenitiveMonthname","DTMukrainianshortMonthname","DTMukrainianweekdayname","DTMukrainianWeekdayname","DTMukrainianshortweekdayname","DTMukrainianshortWeekdayname","DTMukrainianmonthname","DTMukrainianMonthname","DTMukrainiandowdaysep","DTMukrainiandaymonthsep","DTMukrainianmonthyearsep","DTMukrainiandatetimesep","DTMukrainiantimezonesep","DTMukrainiandatesep","DTMukrainiantimesep","DTMukrainianzonemaps","DTMusorbianordinal","DTMusorbiannewmonthname","DTMusorbiannewMonthname","DTMusorbianoldmonthname","DTMusorbianoldMonthname","DTMusorbianmonthname","DTMusorbianMonthname","DTMusorbiandaymonthsep","DTMusorbianmonthyearsep","DTMusorbiandatetimesep","DTMusorbiantimezonesep","DTMusorbiandatesep","DTMusorbiantimesep","DTMusorbianzonemaps","DTMwelshordinal","DTMwelshfmtordinal","DTMwelshmonthname","DTMwelshfmtordsuffix","DTMwelshdaymonthsep","DTMwelshmonthyearsep","DTMwelshdatetimesep","DTMwelshtimezonesep","DTMwelshdatesep","DTMwelshtimesep","DTMwelshzonemaps"]}
-,
-"daytime.sty":{"envs":{},"deps":{},"cmds":["daytime","Daytime"]}
-,
-"dblfnote.sty":{"envs":{},"deps":{},"cmds":["DFNallowcbreak","DFNalwaysdouble","DFNinhibitcbreak","DFNruleboth","DFNruleleft","DFNtrysingle","DFNcolumnwidth","DFNcolumnsep","theDFNsloppiness"]}
-,
-"dbshow.sty":{"envs":["dbFilters","dbitem"],"deps":{},"cmds":["dbNewDatabase","dbshow","dbclear","dbNewStyle","dbdatesep","dbNewReviewPoints","dbNewConditional","dbNewCond","dbNewRawFilter","dbCombineConditionals","dbCombCond","dbitemkv","dbsave","dbuse","dbIfEmptyT","dbIfEmptyF","dbIfEmptyTF","dbIfLastT","dbIfLastF","dbIfLastTF","dbIntAbs","dbIntSign","dbIntDivRound","dbIntDivTruncate","dbIntMax","dbIntMin","dbIntMod","dbFpSign","dbval","dbtoday","dbDatabase","dbFilterName","dbFilterInfo","dbIndex","dbarabic","dbalph","dbAlph","dbroman","dbRoman"]}
-,
-"dccpaper-base.sty":{"envs":["widequote"],"deps":["babel.sty","etoolbox.sty","xpatch.sty","iftex.sty","fontenc.sty","baskervillef.sty","newtxmath.sty","GoSans.sty","graphicx.sty","xcolor.sty","calc.sty","ifpdf.sty","atbegshi.sty","titlesec.sty","array.sty","booktabs.sty","caption.sty","footmisc.sty","hyperref.sty","hyperxmp.sty"],"cmds":["accepted","affil","Affilfont","affilsep","afterabstract","authblksep","Authfont","AuthorBlock","BBA","conference","correspondence","doi","email","fixspaces","FixTextHeight","flushleftright","HeadTitle","issue","MainAuthor","nofixspaces","NormalFoot","NormalHead","oldBBA","OrigLineBreak","OtherMainAuthors","ProperTitle","RaggedParindent","raggedyright","received","revised","submitted","subno","theauthors","theauthorsinblock","theblock","thecorrespondence","thedoi","theissue","thelastpage","thesectionpars","thesubno","thevolume","title","TitleFoot","TitleHead","Version","volume","captionsbritish","datebritish","extrasbritish","noextrasbritish","englishhyphenmins","britishhyphenmins","americanhyphenmins","prefacename","bibname","chaptername","enclname","ccname","headtoname","pagename","seename","alsoname","proofname","glossaryname","DH","dh","dj","DJ","guillemetleft","guillemetright","guillemotleft","guillemotright","guilsinglleft","guilsinglright","Hwithstroke","hwithstroke","k","NG","ng","quotedblbase","quotesinglbase","textogonekcentered","textquotedbl","th","TH"]}
-,
-"dcounter.sty":{"envs":{},"deps":{},"cmds":["DeclareDynamicCounter","countstyle","DynamicCount"]}
-,
-"ddphonism.sty":{"envs":{},"deps":["etoolbox.sty","pgfkeys.sty","tikz.sty","xparse.sty","xstring.sty"],"cmds":["dmatrix","ddiagram","ddihedral","darrows","drow"]}
-,
-"debate.sty":{"envs":{},"deps":["xcolor.sty","tcolorbox.sty","tcolorboxlibrarymost.sty","xkeyval.sty"],"cmds":["debate"]}
-,
-"decision-table.sty":{"envs":{},"deps":["nicematrix.sty","l3keys2e.sty"],"cmds":["dmntable","dmnoutputtable","glossarytable","goaltable","pdmntable","pdmnoutputtable","dmnfileversion","dmnfiledate"]}
-,
-"decorule.sty":{"envs":{},"deps":["fix-cm.sty","graphicx.sty"],"cmds":["decorule"]}
-,
-"dejavu-otf.sty":{"envs":{},"deps":["ifxetex.sty","ifluatex.sty","xkeyval.sty","textcomp.sty","unicode-math.sty"],"cmds":["DejaVuSerifCondensed","DejaVuSansCondensed","DejaVuSansLight","blackpointerleft","blackpointerright","intextender","mbfscra","mbfscrb","mbfscrc","mbfscrd","mbfscre","mbfscrf","mbfscrg","mbfscrh","mbfscri","mbfscrj","mbfscrk","mbfscrl","mbfscrm","mbfscrn","mbfscro","mbfscrp","mbfscrq","mbfscrr","mbfscrs","mbfscrt","mbfscru","mbfscrv","mbfscrw","mbfscrx","mbfscry","mbfscrz","mscra","mscrb","mscrc","mscrd","mscre","mscrf","mscrg","mscrh","mscri","mscrj","mscrk","mscrl","mscrm","mscrn","mscro","mscrp","mscrq","mscrr","mscrs","mscrt","mscru","mscrv","mscrw","mscrx","mscry","mscrz"]}
-,
-"delim.sty":{"envs":{},"deps":{},"cmds":["delimdef","dleft","dright","dmiddle","mnorm","mbig","mBig","mbigg","mBigg","mauto"]}
-,
-"delimseasy.sty":{"envs":{},"deps":{},"cmds":["prn","prnb","prnbb","prnbbb","prnbbbb","sqpr","sqprb","sqprbb","sqprbbb","sqprbbbb","crl","crlb","crlbb","crlbbb","crlbbbb","ngl","nglb","nglbb","nglbbb","nglbbbb","flr","flrb","flrbb","flrbbb","flrbbbb","ceil","ceilb","ceilbb","ceilbbb","ceilbbbb","abs","absb","absbb","absbbb","absbbbb","nrm","nrmb","nrmbb","nrmbbb","nrmbbbb","Bprn","Bprnb","Bprnbb","Bprnbbb","Bprnbbbb","Bsqpr","Bsqprb","Bsqprbb","Bsqprbbb","Bsqprbbbb","Bcrl","Bcrlb","Bcrlbb","Bcrlbbb","Bcrlbbbb","Bngl","Bnglb","Bnglbb","Bnglbbb","Bnglbbbb","Bflr","Bflrb","Bflrbb","Bflrbbb","Bflrbbbb","Bceil","Bceilb","Bceilbb","Bceilbbb","Bceilbbbb","Babs","Babsb","Babsbb","Babsbbb","Babsbbbb","Bnrm","Bnrmb","Bnrmbb","Bnrmbbb","Bnrmbbbb","nrp","nrpb","nrpbb","nrpbbb","nrpbbbb","rpqs","rpqsb","rpqsbb","rpqsbbb","rpqsbbbb","Bnrp","Bnrpb","Bnrpbb","Bnrpbbb","Bnrpbbbb","Brpqs","Brpqsb","Brpqsbb","Brpqsbbb","Brpqsbbbb","stgt","stgtb","stgtbb","stgtbbb","stgtbbbb","Bstgt","Bstgtb","Bstgtbb","Bstgtbbb","Bstgtbbbb","bigb","bigbb","bigbbb","llgg","llggb","llggbb","llggbbb","llggbbbb","Bllgg","Bllggb","Bllggbb","Bllggbbb","Bllggbbbb","valentine","diamondsgbf","bnom","bnomb","bnombb","bnombbb","bnombbbb","Bbnom","Bbnomb","Bbnombb","Bbnombbb","Bbnombbbb","bnomsq","bnomsqb","bnomsqbb","bnomsqbbb","bnomsqbbbb","Bbnomsq","Bbnomsqb","Bbnomsqbb","Bbnomsqbbb","Bbnomsqbbbb","bnomcrl","bnomcrlb","bnomcrlbb","bnomcrlbbb","bnomcrlbbbb","Bbnomcrl","Bbnomcrlb","Bbnomcrlbb","Bbnomcrlbbb","Bbnomcrlbbbb","bnomngl","bnomnglb","bnomnglbb","bnomnglbbb","bnomnglbbbb","Bbnomngl","Bbnomnglb","Bbnomnglbb","Bbnomnglbbb","Bbnomnglbbbb","Dprn","Dsqpr","Dcrl","Dngl","Dceil","Dabs","Dnrm","Dflr","Dstgt","lprn","lprnb","lprnbb","lprnbbb","lprnbbbb","lsqpr","lsqprb","lsqprbb","lsqprbbb","lsqprbbbb","lcrl","lcrlb","lcrlbb","lcrlbbb","lcrlbbbb","lceilb","lceilbb","lceilbbb","lceilbbbb","lflr","lflrb","lflrbb","lflrbbb","lflrbbbb","lngl","lnglb","lnglbb","lnglbbb","lnglbbbb","labs","labsb","labsbb","labsbbb","labsbbbb","lnrm","lnrmb","lnrmbb","lnrmbbb","lnrmbbbb","Lprn","Lprnb","Lprnbb","Lprnbbb","Lprnbbbb","Lsqpr","Lsqprb","Lsqprbb","Lsqprbbb","Lsqprbbbb","Lcrl","Lcrlb","Lcrlbb","Lcrlbbb","Lcrlbbbb","Lceilb","Lceilbb","Lceilbbb","Lceilbbbb","Lflr","Lflrb","Lflrbb","Lflrbbb","Lflrbbbb","Lngl","Lnglb","Lnglbb","Lnglbbb","Lnglbbbb","Labs","Labsb","Labsbb","Labsbbb","Labsbbbb","Lnrm","Lnrmb","Lnrmbb","Lnrmbbb","Lnrmbbbb","rprn","rprnb","rprnbb","rprnbbb","rprnbbbb","rsqpr","rsqprb","rsqprbb","rsqprbbb","rsqprbbbb","rcrl","rcrlb","rcrlbb","rcrlbbb","rcrlbbbb","rceilb","rceilbb","rceilbbb","rceilbbbb","rflr","rflrb","rflrbb","rflrbbb","rflrbbbb","rngl","rnglb","rnglbb","rnglbbb","rnglbbbb","rabs","rabsb","rabsbb","rabsbbb","rabsbbbb","rnrm","rnrmb","rnrmbb","rnrmbbb","rnrmbbbb","Rprn","Rprnb","Rprnbb","Rprnbbb","Rprnbbbb","Rsqpr","Rsqprb","Rsqprbb","Rsqprbbb","Rsqprbbbb","Rcrl","Rcrlb","Rcrlbb","Rcrlbbb","Rcrlbbbb","Rceilb","Rceilbb","Rceilbbb","Rceilbbbb","Rflr","Rflrb","Rflrbb","Rflrbbb","Rflrbbbb","Rngl","Rnglb","Rnglbb","Rnglbbb","Rnglbbbb","Rabs","Rabsb","Rabsbb","Rabsbbb","Rabsbbbb","Rnrm","Rnrmb","Rnrmbb","Rnrmbbb","Rnrmbbbb","Blprn","Blprnb","Blprnbb","Blprnbbb","Blprnbbbb","Blsqpr","Blsqprb","Blsqprbb","Blsqprbbb","Blsqprbbbb","Blcrl","Blcrlb","Blcrlbb","Blcrlbbb","Blcrlbbbb","Blceil","Blceilb","Blceilbb","Blceilbbb","Blceilbbbb","Blflr","Blflrb","Blflrbb","Blflrbbb","Blflrbbbb","Blngl","Blnglb","Blnglbb","Blnglbbb","Blnglbbbb","Blabs","Blabsb","Blabsbb","Blabsbbb","Blabsbbbb","Blnrm","Blnrmb","Blnrmbb","Blnrmbbb","Blnrmbbbb","BLprn","BLprnb","BLprnbb","BLprnbbb","BLprnbbbb","BLsqpr","BLsqprb","BLsqprbb","BLsqprbbb","BLsqprbbbb","BLcrl","BLcrlb","BLcrlbb","BLcrlbbb","BLcrlbbbb","BLceil","BLceilb","BLceilbb","BLceilbbb","BLceilbbbb","BLflr","BLflrb","BLflrbb","BLflrbbb","BLflrbbbb","BLngl","BLnglb","BLnglbb","BLnglbbb","BLnglbbbb","BLabs","BLabsb","BLabsbb","BLabsbbb","BLabsbbbb","BLnrm","BLnrmb","BLnrmbb","BLnrmbbb","BLnrmbbbb","Brprn","Brprnb","Brprnbb","Brprnbbb","Brprnbbbb","Brsqpr","Brsqprb","Brsqprbb","Brsqprbbb","Brsqprbbbb","Brcrl","Brcrlb","Brcrlbb","Brcrlbbb","Brcrlbbbb","Brceil","Brceilb","Brceilbb","Brceilbbb","Brceilbbbb","Brflr","Brflrb","Brflrbb","Brflrbbb","Brflrbbbb","Brngl","Brnglb","Brnglbb","Brnglbbb","Brnglbbbb","Brabs","Brabsb","Brabsbb","Brabsbbb","Brabsbbbb","Brnrm","Brnrmb","Brnrmbb","Brnrmbbb","Brnrmbbbb","BRprn","BRprnb","BRprnbb","BRprnbbb","BRprnbbbb","BRsqpr","BRsqprb","BRsqprbb","BRsqprbbb","BRsqprbbbb","BRcrl","BRcrlb","BRcrlbb","BRcrlbbb","BRcrlbbbb","BRceil","BRceilb","BRceilbb","BRceilbbb","BRceilbbbb","BRflr","BRflrb","BRflrbb","BRflrbbb","BRflrbbbb","BRngl","BRnglb","BRnglbb","BRnglbbb","BRnglbbbb","BRabs","BRabsb","BRabsbb","BRabsbbb","BRabsbbbb","BRnrm","BRnrmb","BRnrmbb","BRnrmbbb","BRnrmbbbb","lstgt","lstgtb","lstgtbb","lstgtbbb","lstgtbbbb","Blstgt","Blstgtb","Blstgtbb","Blstgtbbb","Blstgtbbbb","rstgt","rstgtb","rstgtbb","rstgtbbb","rstgtbbbb","Brstgt","Brstgtb","Brstgtbb","Brstgtbbb","Brstgtbbbb","mylen","length","getlength","myhearts"]}
-,
-"delimset.sty":{"envs":{},"deps":["amsmath.sty","keyval.sty"],"cmds":["delim","delimpair","delimtriple","DeclareMathDelimiterSet","selectdelim","brk","eval","abs","norm","pair","set","setcond","intv","avg","corr","comm","acomm","bra","ket","braket","bigp","bigb","Bigb","Biggb","Biggp","Bigp","biggb","biggp"]}
-,
-"democodelisting.sty":{"envs":["stcode","verbsc"],"deps":["listings.sty","scontents.sty"],"cmds":["DisplayCode","DemoCode","TabbedDemoCode","setdclisting","setdcpar","DisplayCodeB","DemoCodeB","TabbedDemoCodeB"]}
-,
-"democodetools.sty":{"envs":["Macros","Envs","Syntax","Args","Args+","Keys","Keys+","Values","Values+","Options","Options+","dcAbstract"],"deps":["democodelisting.sty"],"cmds":["DescribeMacro","DescribeArg","DescribeKey","DescribeValue","DescribeOption","DescribePackage","Macro","oarg","marg","parg","xarg","Arg","Meta","Key","Keylst","KeyUse","Env","Envlst","Option","Optionlst","Pack","Packlst","Value","Valuelst","MetaFmt","MarginNote","dcAuthor","dcDate","dcTitle","dcMakeTitle","bigtab","colunit","convertto","rowunit"]}
-,
-"derivative.sty":{"envs":{},"deps":["expl3.sty","l3keys2e.sty"],"cmds":["pdv","odv","mdv","fdv","adv","jdv","odif","pdif","mdif","fdif","adif","derivset","NewDerivative","RenewDerivative","ProvideDerivative","DeclareDerivative","NewDifferential","RenewDifferential","ProvideDifferential","DeclareDifferential","slashfrac"]}
-,
-"desclist.sty":{"envs":["desclist"],"deps":{},"cmds":{}}
-,
-"dgruyter.sty":{"envs":["note","acknowledgement","funding","conflictofinterest","thegraphicalabstractsection","contributors","advertisement","legaltext"],"deps":["cmap.sty","amsmath.sty","tipa.sty","fontenc.sty","textcomp.sty","zi4.sty","amssymb.sty","babel.sty","ragged2e.sty","footmisc.sty","amsthm.sty","graphicx.sty","array.sty","multirow.sty","tabularx.sty","bigstrut.sty","supertabular.sty","booktabs.sty","multicol.sty","caption.sty","sidecap.sty","rotating.sty","makeidx.sty","lineno.sty","url.sty","hyperref.sty","doi.sty","manyfoot.sty","authblk.sty","lastpage.sty","environ.sty","changepage.sty"],"cmds":["starttabularbody","baretabulars","layouttabulars","articletype","articlesubtype","openaccess","runningauthor","runningtitle","subtitle","abstract","keywords","transabstract","transkeywords","correctionnote","classification","communicated","dedication","received","accepted","journalname","journalyear","journalvolume","journalissue","startpage","aop","DOI","contributioncopyright","articlenote","graphicalabstract","contributor","reviewauthor","reviewinfo","furtherreview","transtitle","distributionseries","seriestitle","transseriestitle","seriessubtitle","serieseditor","seriesvolume","editor","collaborator","edition","publisherlogo","authorinfo","isbn","eisbnpdf","eisbnepub","issn","copyrightyear","copyrighttext","cover","typesetter","printbind","otherpubl","makeadvertisement","partmotto","contribution","makecontributiontitle","contributionauthor","contributiontitle","contributionsubtitle","contributionnote","markleft","DH","dh","dj","DJ","guillemetleft","guillemetright","guillemotleft","guillemotright","guilsinglleft","guilsinglright","Hwithstroke","hwithstroke","k","NG","ng","quotedblbase","quotesinglbase","textogonekcentered","textquotedbl","th","TH","captionsenglish","dateenglish","extrasenglish","noextrasenglish","englishhyphenmins","britishhyphenmins","americanhyphenmins","prefacename","bibname","chaptername","enclname","ccname","headtoname","pagename","seename","alsoname","proofname","glossaryname","acceptedname","acknowledgementname","addissuecontentsline","addissuetwocolcontentsline","adverttitlename","baretablefirsthead","baretablehead","baretablelasttail","baretabletail","classificationname","communicatedname","conflictofinterestname","CorrAuth","correctionnotename","footinsauthor","footinsnote","Footnotetextauthor","Footnotetextnote","fundingname","generaltitledef","graphicalabstractname","gridwidth","Hyphen","idxlevel","indexpreamble","issuename","issuetableofcontents","keywordsname","laytablefirsthead","laytablehead","laytablelasttail","laytabletail","listauthorname","notename","partnumberline","receivedname","recital","reviewedbyname","revised","revisedname","rls","setisbn","showinmm","sidecaptionrelwidth","sidecaptionsep","tablefont","tableheadfont","tailrule","thefrontmatterpage","theinchapequation","theinchapfigure","theinchapsection","theinchaptable","theplainequation","theplainfigure","theplainsection","theplaintable","volumename","xeisbnpdf"]}
-,
-"dhua.sty":{"envs":{},"deps":["xspace.sty"],"cmds":["dhuaspace","DhuaSpace","dhuaxspace","newdhua","newtwopartdhua","ua","idR","dh","oae","so","su","uae","vglu","vglo","zB","zT","abkii"]}
-,
-"dhucs-gremph.sty":{"envs":{},"deps":["dhucs.sty","xkeyval.sty"],"cmds":["GrEmphFont","GrEmphHanjaFont","regremph","ungremph"]}
-,
-"dhucs-interword.sty":{"envs":["engtext"],"deps":["dhucs.sty","verbatim.sty"],"cmds":["interhchar","interHchar","interhword","DEFAULTskips","HWPinterwordskip","narrowerhangul","setinterwordskip","ucsfninterwordhook","widerhangul"]}
-,
-"dhucs-setspace.sty":{"envs":{},"deps":["setspace.sty"],"cmds":["SetHangulspace","SetHangulVerbatimSpace","hangulspacing","hangulfspacing","hangulverbspacing","ucsfninterwordhook","filedate","filename","fileversion"]}
-,
-"dhucs-trivcj.sty":{"envs":["japanese","Schinese","Tchinese","chinese"],"deps":{},"cmds":["trivcjtypesetting","japanese","Schinese","Tchinese","chinese","interCJskip","interXCJskip","nbs"]}
-,
-"dhucs-ucshyper.sty":{"envs":{},"deps":["ifpdf.sty"],"cmds":{}}
-,
-"dhucsfn.sty":{"envs":{},"deps":["fnpara.sty"],"cmds":["footnumbersep","filedate","fileversion"]}
-,
-"diadia.sty":{"envs":["diadiaplot","medicationchart","diadiasidebyside"],"deps":["xkeyval.sty","pgfplots.sty","pgfplotstable.sty","pgfcalendar.sty","tabularx.sty","booktabs.sty","colortbl.sty","ifthen.sty","calc.sty","translations.sty","amsmath.sty","tcolorbox.sty","tcolorboxlibrarymany.sty","environ.sty","multicol.sty","amssymb.sty","pgfplotslibrarydateplot.sty"],"cmds":["diadiatab","diadiaaddplot","legend","annotation","setlimit","mcentry","infobox"]}
-,
-"diagbox.sty":{"envs":{},"deps":["keyval.sty","pict2e.sty","calc.sty","array.sty","fp.sty"],"cmds":["diagbox","backslashbox","slashbox"]}
-,
-"diagram.sty":{"envs":["diagram","stereodiagram","spacediagram","figurine"],"deps":["ifthen.sty","calc.sty","pstricks.sty"],"cmds":["putsol","normalnames","reversednames","Dr","Prof","ProfDr","pieces","fen","stipulation","stip","city","specialdiagnum","sourcenr","source","issue","pages","day","month","months","year","tournament","tourn","award","dedication","dedic","condition","cond","twins","remark","rem","piecedefs","solution","sol","judgement","comment","themes","verticalcylinder","horizontalcylinder","noframe","noinnerframe","gridchess","stdgrid","diagleft","diagcenter","diagright","widedias","dianamestyle","solnamestyle","diagnumbering","setmonthstyle","nocomputer","showcomputer","notcomputerproofedsymbol","computerproofedsymbol","selectelchfont","diagramx","diagramxi","diagramxii","diagnum","spacelayout","allwhite","switchcolors","nofields","nosquares","fieldframe","magic","gridlines","fieldtext","swL","ssL","wNr","nNr","sNr","wGh","nGh","sGh","Imi","wC","nC","sC","wE","sE","nE","wX","sX","nX","set","ra","lra","OO","OOO","x","any","DefinePieces","develop","makeaindex","authorindex","makesindex","sourceindex","maketindex","themeindex","solpar","after","authorfont","awardfont","cityfont","Co","correction","dedicfont","DefaultDiagramSize","defaultelchfont","elchfont","fidealbum","further","ifimitator","imitatorfalse","imitatortrue","labelfont","legendfont","nodiagnumbering","normalboardwidth","nowidedias","remfont","rla","setboardwidth","showlabel","showtypis","solafterdiagram","solhead","sourcefont","spacehorizontal","stipfont","textproblem","thediag","topdist","version","wF"]}
-,
-"diagxy.sty":{"envs":{},"deps":{},"cmds":["bfig","efig","to","mon","epi","toleft","monleft","epileft","place","twoar","morphism","square","hsquares","vsquares","ptriangle","qtriangle","dtriangle","btriangle","Atriangle","Vtriangle","Ctriangle","Dtriangle","Atrianglepair","Vtrianglepair","Ctrianglepair","Dtrianglepair","pullback","Square","hSquares","vSquares","cube","node","arrow","Loop","iiixiii","iiixii"]}
-,
-"dialogue.sty":{"envs":["dialogue"],"deps":["blkcntrl.sty","moredefs.sty","relsize.sty"],"cmds":["direct","refer","speak","ReferStyle","DirectStyle","DialogueLabel","PreDialogue"]}
-,
-"dichokey.sty":{"envs":["Key"],"deps":["calc.sty","ifthen.sty"],"cmds":["alter","name","altindent","hang","keylabelwidth","oldparindent","panic","thebacksteps","thebinarycounter","thebincouplet","thecouplet","thedelta","theindentcounter","thelastcouplet","thetemp","gprefix"]}
-,
-"dictsym.sty":{"envs":{},"deps":["pifont.sty","keyval.sty"],"cmds":["dsarchitectural","dsbiological","dschemical","dsagricultural","dsheraldical","dsjuridical","dsliterary","dsmathematical","dsrailways","dstechnical","dsmilitary","dsaeronautical","dscommercial","dsmedical","ProcessOptionsWithKV"]}
-,
-"diffcoeff.sty":{"envs":{},"deps":["xtemplate.sty","mleftright.sty"],"cmds":["diff","difs","difc","diffp","difsp","difcp","negmu","nilmu","onemu","twomu","difoverride","difdef","dl","jacob","DeclareChildTemplate","difstfrac","difsbfrac","difsafrac","diffdef","dlp"]}
-,
-"digicap-pro.sty":{"envs":{},"deps":["eforms.sty","graphicx.sty","graphicxbox.sty","opacity-pro.sty"],"cmds":["digiCap","graphicHeight","graphicWidth","opcolorbox","PicsThisDoc","presentationOrder","digiDisplaySpace","insertCaptions","insertThumbs","dcFirstOpt","dcSecondOpt","useRollovers","noRollovers","longCapFmt","shortCapFmt","setThumbAppearances","setWidthOfThumbs","addvspacetorows","digiDSWidth","digiDSHeight","insertPhotos","normalAppr","downAppr","rolloverAppr","digiCapsPresets","hiddenPresets"]}
-,
-"digiconfigs.sty":{"envs":{},"deps":["amsmath.sty"],"cmds":["dconfig","setCircleChar","setBulletChar","setCdotChar","setBlankChar","setCircleSymbol","setBulletSymbol","setCdotSymbol","setMatrixStart","setMatrixEnd","setDefaultMatrixSize"]}
-,
-"digsig.sty":{"envs":{},"deps":["hyperref.sty"],"cmds":["digsigfield"]}
-,
-"dijkstra.sty":{"envs":{},"deps":["simplekv.sty"],"cmds":["readgraph","dijkstra","setdijk","setdijkdefault","dijkdist","dijkpath","initdijk","formatnodewithprev","highlightfirstnode","highlightnode","dijkname","dijkver","dijkdate"]}
-,
-"dimnum.sty":{"envs":{},"deps":["amsmath.sty","xifthen.sty"],"cmds":["newdimnum","Ar","At","Ba","Be","Bm","Bi","Bl","Bs","Bo","Br","BK","Ca","Cau","Ch","CoF","Co","Dah","Dar","De","Deb","Cd","Du","Ec","Ek","Ela","El","Eo","Er","Eu","Fo","Fr","Ga","Go","Gz","Gr","Ha","Hg","Ho","Ir","Ja","Ka","KC","Kn","Ku","La","Le","Ma","Mg","Mo","Nus","Oh","Pe","pH","Po","Pr","Ra","Rey","Ri","Ro","Ros","Rou","Sc","Sh","So","St","Ste","Stk","Sr","Stu","Sv","Ta","Ur","Va","Wa","Wea","We","Wei","Ab","AC","Al","Arr","AW","Rz","Blo","Jm","Jh","Jd","CoD","CoK","CoS","CoV","Coh","CFL","Dr","fD","ExT","fF","Fs","FvK","Fre","Hav","He","Cl","LM","Lu","Mar","Peel","Pie","Poi","Pf","Pn","Cp","Rfi","Crr","Shi","vtH","Wal","Wo","Zd","ifstartedinmathmode","startedinmathmodetrue","startedinmathmodefalse"]}
-,
-"dingbat.sty":{"envs":{},"deps":{},"cmds":["anchor","carriagereturn","checkmark","eye","filledsquarewithdots","largepencil","leftpointright","leftthumbsdown","leftthumbsup","rightpointleft","rightpointright","rightthumbsdown","rightthumbsup","satellitedish","Sborder","smallpencil","squarewithdots","Zborder","arkfamily","dingbatfamily"]}
-,
-"dirtree.sty":{"envs":{},"deps":{},"cmds":["dirtree","DTstyle","DTcomment","DTstylecomment","DTsetlength","DTbaselineskip","DTAtCode","filedate","fileversion"]}
-,
-"dirtytalk.sty":{"envs":{},"deps":["kvoptions.sty","ifthen.sty"],"cmds":["say"]}
-,
-"ditaa.sty":{"envs":["ditaa"],"deps":["fancyvrb.sty","graphicx.sty","kvoptions.sty"],"cmds":["ditaacaption","ditaadir","ditaafigwidth","ditaafile","ditaastem"]}
-,
-"dlfltxbcodetips.sty":{"envs":{},"deps":["amsmath.sty","amssymb.sty","graphicx.sty"],"cmds":["bigtimes","nuparrow","ndownarrow","NewShadedTheorem","theoremframecommand","InsertTheoremBreak","MathIndent","SetMathIndent","AddtoMathIndent","PopMathIndent","DeclareMathSet","ProvidePGFPagesFourOnOneWithSpaceForNotes","OverloadUnderscoreInMath"]}
-,
-"dlfltxbmarkup.sty":{"envs":{},"deps":["keyval.sty","ragged2e.sty","dlfltxbmarkupbookkeys.sty"],"cmds":["markup","felineKeyGenerator","cs","css","felineWriteInMargin","ifNoMarginparAvail","NoMarginparAvailfalse","NoMarginparAvailtrue","felineMarginAdjustment","felineIndexCmd","itindex","felineStandardKey","felineMarkupDescription"]}
-,
-"dlfltxbmarkupbookkeys.sty":{"envs":{},"deps":{},"cmds":["felineStandardKey","ENcs","felinenameuse"]}
-,
-"dlfltxbmisc.sty":{"envs":["syntax","syntax*"],"deps":["ragged2e.sty","url.sty","calc.sty"],"cmds":["Arg","marg","oarg","parg","addurl","addCTAN","CTAN","dbx","lastlinedim","getlastlinesize","mypath","href"]}
-,
-"dline.sty":{"envs":["dline"],"deps":["lineno.sty","vplref.sty","ednmath0.sty","edtable.sty","longtable.sty","ltabptch.sty"],"cmds":["dlinebox","dlinerule","ddlinerule","dlinesep","ddlinesep"]}
-,
-"dljslib.sty":{"envs":{},"deps":["exerquiz.sty","insdljs.sty"],"cmds":["includeOptions","MsgDei","MsgDeii","MsgEni","MsgEnii","numDe","numEn","rndNumDeOpt","rndNumDeReq","rndNumEnOpt","rndNumEnReq","setdecimalpoint","aebdecimalpoint","alertNotComplexMsg","allowWrngNormSciNotn","allowWrngNSN","complexCisAlertMsg","complexPowerAlertMsg","DecimalsOnlyErrorMsg","DeclareAndRegister","dljsRegister","emptyCompComplexMsg","eqDuplEntries","eqNonzeroEntries","eqSyntaxErrorNoParens","eqTooFewEntries","eqTooManyEntries","equationsAlertMsg","facNoPropForm","MsgDeiAlt","NoAddOrSubErrorMsg","noBinFactBinCoeffAlertMsg","noBinFactFactAlertMsg","noBinFactPermAlertMsg","noBracesInAnsMsg","noBracketsInAnsMsg","nodecAlertMsg","noDecPtDeMsg","noDecPtEnMsg","NoDivisionErrorMsg","NoExpAllowedErrorMsg","NoNegExpMsg","noNotEncloseMonos","NoPiAllowedErrorMsg","NoProductsErrorMsg","notifyWrongNumEntries","NoTrigAllowedErrorMsg","NoTrigLogAllowedErrorMsg","pointEmptyCompMsgiv","pointErrorMsgi","pointErrorMsgii","pointErrorMsgiii","satisfyEqNotify","sciNotNormalForm","sciNotSyntaxError","SyntaxErrorAuthor","vectorEmptyCompMsgiv","vectorsErrorMsgi","vectorsErrorMsgii","vectorsErrorMsgiii","warnDecDeOnly","warnDecDeOnlyOn","warnDefDeOnlyOff","wrongNumEntriesMsg"]}
-,
-"dmlb.sty":{"envs":{},"deps":["xparse.sty","etoolbox.sty","microtype.sty","xstring.sty","longtable.sty","array.sty","multicol.sty","multirow.sty","rotating.sty","caption.sty","fancyhdr.sty","xcolor.sty","bookmark.sty","babel.sty","ellipsis.sty","pgf.sty","pgfplots.sty","pgfplotstable.sty","pgfplotslibrarydateplot.sty","pgfcalendar.sty","tikzlibrarycalendar.sty","tikzlibraryexternal.sty","colortbl.sty","xspace.sty"],"cmds":["row","dmlbsetdate","QQQ","autoFileInput","calcmaxrows","changestrut","Day","fixme","Month","rowstyle","sYear","TwoDigits","writeperiods","Year","captionsenglish","dateenglish","extrasenglish","noextrasenglish","englishhyphenmins","britishhyphenmins","americanhyphenmins","prefacename","bibname","chaptername","enclname","ccname","headtoname","pagename","seename","alsoname","proofname","glossaryname"]}
-,
-"dnaseq.sty":{"envs":{},"deps":["color.sty"],"cmds":["DNA","DNAblock","DNAreserve","blocks","htst","struty"]}
-,
-"doafter.sty":{"envs":{},"deps":{},"cmds":["doafter"]}
-,
-"doc.sty":{"envs":["macrocode","macrocode*","macro","environment","theglossary"],"deps":["l3keys2e.sty","multicol.sty","hypdoc.sty"],"cmds":["SetupDoc","DocInput","IndexInput","DescribeMacro","DescribeEnv","MacrocodeTopsep","MacroTopsep","MacroIndent","MacroFont","PrintDescribeMacro","PrintDescribeEnv","PrintMacroName","PrintEnvName","NewDocElement","RenewDocElement","SpecialEscapechar","DisableCrossrefs","EnableCrossrefs","DoNotIndex","PageIndex","CodelineIndex","theCodelineNo","CodelineNumbered","actualchar","quotechar","encapchar","levelchar","SpecialMainMacroIndex","SpecialMainEnvIndex","SpecialMacroIndex","SpecialEnvIndex","SpecialIndex","SpecialShortIndex","SpecialMainIndex","SpecialUsageIndex","SortIndex","verbatimchar","PrintIndex","IndexMin","IndexPrologue","IndexParms","main","usage","code","DocstyleParms","MakeShortVerb","DeleteShortVerb","Web","AmSTeX","BibTeX","SliTeX","PlainTeX","meta","OnlyDescription","MaybeStop","StopEventually","Finale","AlsoImplementation","changes","generalname","cs","RecordChanges","PrintChanges","GlossaryMin","GlossaryPrologue","GlossaryParms","bslash","MakePrivateLetters","DontCheckModules","CheckModules","Module","AltMacroFont","theStandardModuleDepth","OldMakeindex","percentchar","CharacterTable","CharTableChanges","CheckSum","efill","filedate","fileinfo","filename","fileversion","GetFileInfo","LeftBraceIndex","MakePercentComment","MakePercentIgnore","PercentIndex","pfill","RecordIndexType","RecordIndexTypeAux","RightBraceIndex","ShowIndexingState"]}
-,
-"docassembly.sty":{"envs":["docassembly"],"deps":["insdljs.sty"],"cmds":["addWatermarkFromFile","addWatermarkFromText","appopenDoc","attachFile","certifyInvisibleSign","chngDocObjectTo","createTemplate","DeclareJSHelper","docSaveAs","executeSave","extractPages","importDataObject","importIcon","importSound","insertPages","mailDoc","retnAbsPathAs","sigFieldObj","sigInfo","signatureSetSeedValue","signatureSign","theDocObject"]}
-,
-"doclicense.sty":{"envs":{},"deps":["kvoptions.sty","xifthen.sty","xstring.sty","etoolbox.sty","xspace.sty","verbatim.sty","hyperxmp.sty","ccicons.sty","graphicx.sty","hyperref.sty","csquotes.sty","ragged2e.sty"],"cmds":["doclicenseType","doclicenseLongType","doclicenseModifier","doclicenseVersion","doclicenseURL","doclicenseName","doclicenseLongName","doclicenseNameRef","doclicenseLongNameRef","doclicenseText","doclicenseLongText","doclicenseLongTextForHyperref","doclicensePlainFullText","doclicensePlainFullTextFileName","doclicenseFullText","doclicenseFullTextFileName","doclicenseTypeIcon","doclicenseIcon","doclicenseImage","doclicenseImageFileName","doclicenseThis","doclicenseLicense"]}
-,
-"docmfp.sty":{"envs":["routine","variable","Code"],"deps":{},"cmds":["DescribeRoutine","routinestring","routineheadname","DescribeVariable","variablestring","variableheadname","Describe","PrintMfpName","SpecialMainMfpIndex","SpecialMfpIndex"]}
-,
-"docmute.sty":{"envs":{},"deps":{},"cmds":["docmute"]}
-,
-"docshots.sty":{"envs":["docshot"],"deps":["iexec.sty","fancyvrb.sty","xcolor.sty","graphicx.sty","tikz.sty","pgfopts.sty","ifluatex.sty","ifxetex.sty"],"cmds":["docshotOptions","docshotPrerequisite","docshotAfter"]}
-,
-"doctools.sty":{"envs":["Optionlist","latexcode"],"deps":["kvoptions.sty","pdftexcmds.sty","etoolbox.sty","xstring.sty","kvsetkeys.sty","cmap.sty","listings.sty","xcolor.sty","colortbl.sty","xspace.sty","url.sty"],"cmds":["marg","oarg","bs","command","cs","arg","environment","env","package","ltxclass","option","parameter","person","AfterLastParam","Default","Example","latex","printCodeFromFile","labelfile","file","thelstFirstLine","thelstLastLine","PrintFileName","thefile","theHfile"]}
-,
-"dogma.sty":{"envs":{},"deps":["fontenc.sty","textcomp.sty","keyval.sty"],"cmds":["dogmabold","dogmablack","dogmaoutline","dogmascript","ProcessOptionsWithKV","DH","NG","dj","ng","k","guillemotleft","guillemotright","guilsinglleft","guilsinglright","quotedblbase","quotesinglbase","textquotedbl","DJ","th","TH","dh","Hwithstroke","hwithstroke","textogonekcentered","guillemetleft","guillemetright"]}
-,
-"doi.sty":{"envs":{},"deps":["hyperref.sty"],"cmds":["doi","doitext","doiurl"]}
-,
-"doipubmed.sty":{"envs":{},"deps":["url.sty"],"cmds":["doi","pubmed","citeurl","href","doitext","pubmedtext"]}
-,
-"domitian.sty":{"envs":{},"deps":["textcomp.sty","mweights.sty","fontaxes.sty","xkeyval.sty"],"cmds":["lining","oldstyle","textsc","textsu","textsuperior","textin","textinferior","sufigures","infigures"]}
-,
-"domore.sty":{"envs":{},"deps":{},"cmds":["DoWith","DoWithMore","StopDoing","setdo","DoSeparateWith","DoSeparateWithMore","DoWithAllOf","DoWithAllIn","withcsname","ifltx","PushCatMakeLetter","PopLetterCat","PushCatMakeLetterAt","PopLetterCatAt","plainpkginfo"]}
-,
-"dot2texi.sty":{"envs":["dot2tex","dottotexverbatimwrite"],"deps":["moreverb.sty","xkeyval.sty"],"cmds":["setoutputdir","BeforeStream","dottotexCutFile","dottotexgraphicsinclude","dottotexgraphicsprocess","dottotexverbatimwrite","enddottotexverbatimwrite"]}
-,
-"dotlessi.sty":{"envs":{},"deps":{},"cmds":["dotlessi","dotlessj"]}
-,
-"dotseqn.sty":{"envs":{},"deps":{},"cmds":["EqnDots"]}
-,
-"dowith.sty":{"envs":{},"deps":{},"cmds":["DoWith","DoDoWith","StopDoing","setdo","letdo","DoWithAllOf","DoDoWithAllOf","DoWithAllIn","DoDoWithAllIn","InitializeListMacro","ReInitializeListMacro","ToListMacroAdd","TestListMacroForToken","FromTokenListMacroRemove","InTokenListMacroProvide","filename","fileinfo","filedate","fileversion","withcsname","ifltx","PushCatMakeLetter","PopLetterCat","PushCatMakeLetterAt","PopLetterCatAt","plainpkginfo"]}
-,
-"download.sty":{"envs":{},"deps":["expl3.sty","l3keys2e.sty","pdftexcmds.sty","xparse.sty"],"cmds":["download"]}
-,
-"dox.sty":{"envs":{},"deps":["kvoptions.sty"],"cmds":["doxitem"]}
-,
-"dozenal.sty":{"envs":{},"deps":["fixltx2e.sty","xstring.sty","ifpdf.sty","ifluatex.sty","mfirstuc.sty"],"cmds":["basexii","dozens","basex","doznumtoword","DOZnumtoword","Doznumtoword","Doman","doman","x","e","tally"]}
-,
-"dpfloat.sty":{"envs":["leftfullpage","fullpage"],"deps":{},"cmds":{}}
-,
-"dps.sty":{"envs":["setContent","setContent","Composing","cQ","cA"],"deps":["xkeyval.sty","web.sty","eforms.sty","graphicx.sty","verbatim.sty","calc.sty","multicol.sty","multido.sty","icon-appr.sty"],"cmds":["quesNumTxt","quesNumTxTPost","ltrToNum","dpsEmbedIcons","TFOR","dpsQuesIcon","dpsOtherIcon","placeQuesIcon","placeOtherIcon","dpsEmbedSideShow","dpsNumSideShowPics","tileKVs","insertSideshow","iconPresets","fmtOCGQues","dpsQuesLayer","placeQuesLayer","placeOtherLayer","insertQuesLayer","scArg","AnswerKey","setdpsfootskip","DeclarePuzzle","nPuzzleCols","sideshowPackaged","writeComposingEnv","insertPuzzle","PuzzleAppearance","rowsep","wdPuzzleFields","htPuzzleFields","displayRandomizedQuestions","QuesAppearance","widestFmtdQNum","htOfQ","displayRandomizedAnswers","displayRandomizedAnswersLeftPanel","displayRandomizedAnswersRightPanel","AnsAppearance","ltrFmtA","widestFmtdALtr","htOfA","placeMessageField","useRandomSeed","inputRandomSeed","useLastSeed","printDPS","resetDPS","dpsResetHook","dpsFinishedEvent","dpsfinishedevent","randomizePicMappings","sortPicMappings","clearOnCloseOrSave","threshold","dsthreshold","penaltypoints","dspenaltypoints","passing","dspassing","randomi","nextrandom","setrannum","setrandim","pointless","PoinTless","ranval","afterQhookA","aPenaltyMsgs","aPenaltyScale","argi","Awidth","bRandPicMaps","checkboxTmp","chooseQ","ComposingEnvMsg","congratFinished","dpsA","dpsAitemOptArg","DPSIndxList","dpsInputBtnAppr","dpsInputOcgAppr","dpsLastSeed","DPSNamesList","dpsQ","dpsWCSWrnMsg","finalPenaltyScore","getLetterNext","lastOnLeft","lngthOfMsg","msgi","msgii","nCols","nextPuzzleChar","nextPuzzleLetter","nextPuzzlePair","OnFocusQhookAA","puzzleParameters","Qht","Qwidth","redefnextrandomAsNeeded","regretPleased","reportPenaltyPoints","signInMsg","textfieldTmp","triedTooMuch","WriteBookmarks"]}
-,
-"drac.sty":{"envs":{},"deps":{},"cmds":["DeclareRobustActChar","ReDeclareRobActChar"]}
-,
-"draftcopy.sty":{"envs":{},"deps":{},"cmds":["draftcopyBottomTransform","draftcopyBottomX","draftcopyBottomY","draftcopyFirstPage","draftcopyLastPage","draftcopyName","draftcopyPageTransform","draftcopyPageX","draftcopyPageY","draftcopySetGrey","draftcopySetScaleFactor","draftcopySetScale","draftcopyVersion"]}
-,
-"draftfigure.sty":{"envs":{},"deps":["graphicx.sty","xkeyval.sty"],"cmds":["setdf"]}
-,
-"draftmark.sty":{"envs":{},"deps":["atbegshi.sty","etextools.sty","fix-cm.sty","graphicx.sty","ltxnew.sty","picture.sty","xcolor.sty","xifthen.sty","xkeyval.sty"],"cmds":["draftmarksetup","fileauthor","filedate","filedesc","filetime","fileversion","readRCS","x"]}
-,
-"draftwatermark.sty":{"envs":{},"deps":["kvoptions.sty","color.sty"],"cmds":["DraftwatermarkOptions","DraftwatermarkStdMark","SetWatermarkAngle","SetWatermarkFontSize","SetWatermarkScale","SetWatermarkHorCenter","SetWatermarkVerCenter","SetWatermarkText","SetWatermarkColor","SetWatermarkLightness"]}
-,
-"dramatist.sty":{"envs":["drama","drama*","CharacterGroup","stagedir"],"deps":["xspace.sty"],"cmds":["speakswidth","speaksindent","speechskip","Dparsep","Dlabelsep","act","Act","scene","Scene","printactname","printactnum","printacttitle","actname","actnamefont","actnumfont","acttitlefont","theact","actcontentsline","printscenename","printscenenum","printscenetitle","scenenamefont","scenenumfont","scenetitlefont","scenename","thescene","scenecontentsline","printsep","intersep","actmark","scenemark","Character","printcasttitle","casttitlefont","casttitlename","castfont","namefont","speaksfont","speaksdel","DramPer","speaker","GCharacter","CharWidth","ParenWidth","GroupWidth","StageDir","direct","StageDirConf","CastWidth","StageDirCloseSettings","StageDirOpenSettings","actheadstart","afteract","afteractskip","aftercasttitle","aftercasttitleskip","afterscene","aftersceneskip","beforeactskip","beforecastskip","beforesceneskip","castheadstart","dirdelimiter","dirwidth","dodramperlist","dogrouplist","drampermark","foundfile","grouplist","inputfilewarning","lnpwarning","phantomsection","sceneheadstart","speakslabel","speaksskip","speakstab","starrederror","thecharacter","thegtemp","thestorelineno","thestoreprintlineindex","thetemp"]}
-,
-"drawmatrix.sty":{"envs":{},"deps":["tikz.sty"],"cmds":["drawmatrix","drawmatrixset"]}
-,
-"drawstack.sty":{"envs":["drawstack"],"deps":["tikz.sty","tikzlibraryshapes.sty","ifthen.sty"],"cmds":["bcell","cell","cellcom","cellcomL","cellptr","cellround","drawstruct","ebp","esp","finishframe","padding","separator","stackbottom","stacktop","startframe","structcell","structname","bigcell","bstackbottom","bstacktop","cellptrnext","llcell","llstructcell","stackframe","thecellnb","theptrnb","thestartframe","thestructnb"]}
-,
-"drcaps.sty":{"envs":{},"deps":{},"cmds":["formatCap","RCap","HCap","DCap"]}
-,
-"drm.sty":{"envs":{},"deps":["modroman.sty","amsmath.sty","gmp.sty","ifpdf.sty"],"cmds":["ifnodefault","nodefaulttrue","nodefaultfalse","ifnodefaultmath","nodefaultmathtrue","nodefaultmathfalse","ifnodefaulttext","nodefaulttexttrue","nodefaulttextfalse","ifsymbolsonly","symbolsonlytrue","symbolsonlyfalse","iftypeone","typeonetrue","typeonefalse","drmshortq","tcshape","texttc","ittcshape","textittc","itscshape","textitsc","uishape","textui","grktext","textgrk","drmsupfigs","textdrmsupfigs","drminffigs","textdrminffigs","lseries","textl","bseries","textb","loosen","excelsior","minikin","brilliant","diamondsize","pearl","agate","ruby","nonpareille","minionette","emerald","minion","brevier","petit","smalltext","bourgeois","galliard","longprimer","corpus","garamond","smallpica","philosophy","pica","english","mittel","augustin","columbian","twolinebrevier","greatprimer","paragon","doublesmallpica","doublesmallpicaus","doublepicabrit","doublepica","twolinepica","doubleenglish","twolineenglish","fivelinenonpareil","fourlinebrevier","doublegreatprimer","twolinegreatprimer","meridian","twolinedoublepica","trafalgar","canon","fourline","fivelinepica","inch","drmmathlets","bigd","drmsym","drmsymbolredef","textsoundrecording","textmale","textfemale","textcrusadecross","textcrusadecrossoutline","textlatincross","textlatincrossoutline","textgreekcross","textgreekcrossoutline","textsaltirecross","textsaltirecrossoutline","texteucharist","textstardavid","textstardavidsolid","textstardavidoutline","textsun","textsunvar","textwaxcrescent","textfullmoon","textwanecrescent","textnewmoon","textmercury","textearth","textterra","textearthvar","textterravar","textmars","textvenus","textjupiter","textsaturn","texturanus","texturanusvar","textneptune","textceres","textpallas","textjuno","textjunovar","textvesta","textvestavar","textastraea","textastraeavar","texthebe","textiris","textaries","textari","texttaurus","texttau","textgemini","textgem","textcancer","textcnc","textleo","textvirgo","textvir","textlibra","textlib","textscorpius","textsco","textsagittarius","textsgr","textcapricorn","textcap","textaquarius","textaqr","textpisces","textpsc","textpluto","textplutovar","textstar","textcomet","textquadrature","textopposition","textconjunction","textascendingnode","textdescendingnode","textdollarsign","textolddollarsign","textcentsign","textoldcentsign","textpoundsterling","textoldpoundsterling","textcolon","textruble","romone","romfive","romten","romfifty","romhundred","romfivehundred","romthousand","liningzero","liningone","liningtwo","liningthree","liningfour","liningfive","liningsix","liningseven","liningeight","liningnine","textrefmark","textasterism","textfeminineordinal","textmasculineordinal","textsupone","textsuptwo","textsupthree","textpilcrowsolid","textpilcrowoutline","textdag","textdbldagger","textdbldag","dbldag","textpipe","textbrokenpipe","textprime","textdoubleprime","texttripleprime","textsqrt","textquarter","texthalf","textthird","texttwothirds","textpermille","textperbiqua","textpertenmille","textpertriqua","textequals","textslash","textradiation","textradiationnocircle","textbiohazard","textbiohazardnocircle","texthighvoltage","texthighvoltagenotriangle","textgeneralwarning","textintbang","textopenintbang","textheart","textopenheart","texteighthnote","textdiamond","textopendiamond","textlozenge","texttilde","tilde","textdegreec","textrightupfleuron","textrightdownfleuron","textleftupfleuron","textleftdownfleuron","textupleftfleuron","textuprightfleuron","textdownrightfleuron","textdownleftfleuron","textsquaretulip","textsquaretulipside","textupdoubletulip","textdowndoubletulip","textrightdoubletulip","textleftdoubletulip","textupleftcornertulip","textuprightcornertulip","textlowleftcornertulip","textlowrightcornertulip","textupsingletuliplong","textdownsingletuliplong","textleftsingletuliplong","textrightsingletuliplong","textupsingletulip","textdownsingletulip","textleftsingletulip","textrightsingletulip","spearright","spearleft","horizspearext","spearup","speardown","vertspearext","fleurdelis","fleurdelys","fleurdelisdown","fleurdelysdown","fleurdelisleft","fleurdelysleft","fleurdelisright","fleurdelysright","woundcordleftext","woundcordrightext","woundcordleftend","woundcordrightend","woundcordleftendinv","woundcordrightendinv","romanize","liningnums","tulipframe","counterA","counterB","iter","extcharwid","leftcharwid","rightcharwid","greaterwid","extrule","drmelipgap","drmelipbef","drmelipaft","drmelipchar","drmelip","drmfelipbef","drmfelipaft","drmfelipwid","drmfelip","drmdecinitfontdefault","drmdecinitfont","drmdecinit","DH","NG","dj","ng","k","guillemotleft","guillemotright","guilsinglleft","guilsinglright","quotedblbase","quotesinglbase","textquotedbl","DJ","th","TH","dh","Hwithstroke","hwithstroke","textogonekcentered","guillemetleft","guillemetright"]}
-,
-"droid.sty":{"envs":{},"deps":["droidserif.sty","droidsans.sty"],"cmds":{}}
-,
-"droidsans.sty":{"envs":{},"deps":["ifluatex.sty","ifxetex.sty","xkeyval.sty"],"cmds":["droidsans","droidsansfamily","fdsfamily"]}
-,
-"droidsansmono.sty":{"envs":{},"deps":["ifluatex.sty","ifxetex.sty","xkeyval.sty"],"cmds":["droidsansmono","droidsansmonofamily","fdmfamily"]}
-,
-"droidserif.sty":{"envs":{},"deps":["ifluatex.sty","ifxetex.sty","xkeyval.sty"],"cmds":["droidserif","droidseriffamily","fdrfamily"]}
-,
-"droit-fr.cls":{"envs":["descriptionFB"],"deps":["s-memoir.cls","kvoptions.sty","ifluatex.sty","inputenc.sty","ifdraft.sty","xifthen.sty","xstring.sty","footmisc.sty","engrec.sty","filecontents.sty","babel.sty","csquotes.sty","refcount.sty"],"cmds":["frenchsetup","frenchbsetup","AddThinSpaceBeforeFootnotes","alsoname","at","bibname","AutoSpaceBeforeFDP","boi","bsc","CaptionSeparator","captionsfrench","ccname","chaptername","circonflexe","dateacadian","datefrench","DecimalMathComma","degre","degres","descindentFB","dotFFN","enclname","extrasfrench","FBcolonspace","FBdatebox","FBdatespace","FBeverylineguill","FBfigtabshape","FBfnindent","FBFrenchFootnotesfalse","FBFrenchFootnotestrue","FBFrenchSuperscriptstrue","FBGlobalLayoutFrenchtrue","FBgspchar","FBguillopen","FBguillspace","FBInnerGuillSinglefalse","FBInnerGuillSingletrue","FBListItemsAsParfalse","FBListItemsAsPartrue","FBLowercaseSuperscriptstrue","FBmedkern","FBPartNameFulltrue","FBsetspaces","FBSmallCapsFigTabCaptionstrue","FBStandardEnumerateEnvtrue","FBStandardItemizeEnvtrue","FBStandardItemLabelstrue","FBStandardLayouttrue","FBStandardListSpacingtrue","FBStandardListstrue","FBsupR","FBsupS","FBtextellipsis","FBthickkern","FBthinspace","FBthousandsep","FBWarning","fg","fgi","fgii","fprimo","frenchdate","FrenchEnumerate","FrenchFootnotes","FrenchLabelItem","frenchpartfirst","frenchpartsecond","FrenchPopularEnumerate","frenchtoday","Frlabelitemi","Frlabelitemii","Frlabelitemiii","Frlabelitemiv","frquote","fup","glossaryname","headtoname","ieme","iemes","ier","iere","ieres","iers","ifFBAutoSpaceFootnotes","ifFBCompactItemize","ifFBCustomiseFigTabCaptions","ifFBfrench","ifFBFrenchFootnotes","ifFBFrenchSuperscripts","ifFBGlobalLayoutFrench","ifFBIndentFirst","ifFBINGuillSpace","ifFBListItemsAsPar","ifFBListOldLayout","ifFBLowercaseSuperscripts","ifFBLuaTeX","ifFBOldFigTabCaptions","ifFBOriginalTypewriter","ifFBPartNameFull","ifFBReduceListSpacing","ifFBShowOptions","ifFBSmallCapsFigTabCaptions","ifFBStandardEnumerateEnv","ifFBStandardItemizeEnv","ifFBStandardItemLabels","ifFBStandardLayout","ifFBStandardLists","ifFBStandardListSpacing","ifFBSuppressWarning","ifFBThinColonSpace","ifFBThinSpaceInFrenchNumbers","ifFBunicode","ifFBXeTeX","ifLaTeXe","kernFFN","labelindentFB","labelwidthFB","leftmarginFB","listfigurename","listindentFB","No","no","NoAutoSpaceBeforeFDP","NoAutoSpacing","NoEveryParQuote","noextrasfrench","nombre","nos","Nos","og","ogi","ogii","pagename","parindentFFN","partfirst","partnameord","partsecond","prefacename","primo","proofname","quarto","rmfamilyFB","secundo","seename","sffamilyFB","StandardFootnotes","StandardMathComma","tertio","tild","ttfamilyFB","up","xspace","university","school","speciality","approvaldate","director","reportera","reporterb","membera","memberb","maketitlepage","partie","titre","chapitre","paragraphe","souspara","alinea","sousalinea","subsubparagraph","point","subsubsubparagraph","souspoint","verset","vref","fvref","makeindexv","indexv","printindexv","makeindexa","indexa","printindexa","addversion","changetocdepth","counterToFrenchF","idxmark","indexafilename","indexvfilename","longtableofcontents","mkbibindexnamelast","oldcftchapterfillnum","oldchangetocdepth","setuplongtoc","setupshorttoc","shorttableofcontents","subsubparagraphmark","subsubsubparagraphmark","theapprovaldate","thedirector","thedirectorjob","theindexv","themembera","thememberajob","thememberb","thememberbjob","thereportera","thereporterajob","thereporterb","thereporterbjob","theschool","thespeciality","theuniversity","versetcontent","versetdot","versetsec","versetsecmark"]}
-,
-"drs.sty":{"envs":{},"deps":{},"cmds":["drs","ifdrs","condrs","qdrs","negdrs","drsdiamond","sdrs","alifdrs","drsalignment","drsboxalignh","drsboxalignv","drscondfont","drshacksetspace","drslinewidth","drsseparator","drsvarfont"]}
-,
-"dsfont.sty":{"envs":{},"deps":{},"cmds":["mathds"]}
-,
-"dspblocks.sty":{"envs":["dspBlocks"],"deps":["calc.sty","fp.sty","pst-xkey.sty","fmtcount.sty","ifthen.sty"],"cmds":["BDConnHNext","BDConnH","BDConnV","BDsplit","BDadd","BDsub","BDmul","BDdelay","BDdelayN","BDfilter","BDfilterMulti","BDlowpass","BDsampler","BDsamplerFramed","BDsinc","BDupsmp","BDdwsmp","BDwidth"]}
-,
-"dspfunctions.sty":{"envs":{},"deps":{},"cmds":["dspToDeg","dspRect","dspTri","dspExpDec","dspQuad","dspPorkpie","dspRaisedCos","dspRaisedCosine","dspSinc","dspSincN","dspSincS","dspSincC","dspRand","dspDFT","dspDFTRE","dspDFTIM","dspDFTMAG","dspFIRI","dspTFM"]}
-,
-"dsptricks.sty":{"envs":["dspPlot","dspClip","dspPZPlot","dspCP"],"deps":["pstricks.sty","pstricks-add.sty","pst-xkey.sty","calc.sty","fp.sty","ifthen.sty"],"cmds":["dspW","dspH","dspPlotFrame","dspCustomTicks","dspText","dspTaps","dspTapsAt","dspTapsFile","dspSignal","dspSignalOpt","dspFunc","dspFuncData","dspFuncFile","dspDiracs","dspPeriodize","dspPZ","PZAROC","PZCROC","PZLP","PZLabel","action","dirac","doOnPairs","dspAxisColor","dspBU","dspCA","dspCPArcn","dspCPArc","dspCPCirclePoint","dspCPCircle","dspCPPointSC","dspCPPoint","dspCPW","dspCircle","dspCircleLabel","dspDotSize","dspFrameLineWidth","dspFuncDataAt","dspFuncOpt","dspHeight","dspImageFile","dspLabels","dspLegend","dspLineWidth","dspMainPeriod","dspMakeTicks","dspMaxActX","dspMinActX","dspMkTk","dspPeriod","dspPointValueSC","dspPointValue","dspPoints","dspSetDims","dspSetupAxes","dspShowImage","dspStemWidth","dspTickLabelX","dspTickLabelY","dspTickLabelYR","dspTickLen","dspTickLineWidth","dspTickX","dspTickY","dspTmpLen","dspUnitX","dspUnitY","dspWidth","dspXLabel","dspXTickGap","dspXlabel","dspXmax","dspXmin","dspYLabel","dspYLabelR","dspYTickGap","haY","incX","incY","outTicks","pcorps","removeFactor","sg","sideGap","simplifyPiFrac","thisTickLabelX","thisTickX","tickColor","twoArgSplit","xt","yt"]}
-,
-"dsserif.sty":{"envs":{},"deps":["xkeyval.sty"],"cmds":["mathbb","mathbfbb","mathbbb","bbdotlessi","bbdotlessj","imathbb","jmathbb","bbGamma","bbDelta","bbTheta","bbLambda","bbPi","bbSigma","bbPhi","bbPsi","bbOmega","txtbbGamma","txtbbDelta","txtbbTheta","txtbbLambda","txtbbPi","txtbbSigma","txtbbPhi","txtbbPsi","txtbbOmega","txtbbdotlessi","txtbbdotlessj"]}
-,
-"dtk-extern.sty":{"envs":["externalDocument","ErstelleGrafik"],"deps":["fancyvrb.sty","graphicx.sty","marginnote.sty","shellesc.sty","xkeyval.sty"],"cmds":["ResetKeys","LineWidth","DoubleperCent","dtkExternDateiname","perCent"]}
-,
-"dtk-logos.sty":{"envs":{},"deps":["iftex.sty","hologo.sty","xspace.sty"],"cmds":["mpShort","mfShort","LaTeXTeX","AmS","AMS","amsmath","AmSLaTeX","AmSTeX","biber","Biber","BibTeX","BibTeXacht","ConTeXt","context","emTeX","eTeX","ExTeX","HanTheThanh","iniTeX","KOMAScript","LaTeXIII","LaTeXML","LuaLaTeX","lualatex","LuaTeX","luatex","LyX","METAFONT","MetaFun","MFun","METAPOST","MetaPost","MiKTeX","NTS","OzMF","OzMP","OzTeX","OzTtH","PCTeX","pdfTeX","pdftex","pdfLaTeX","pdflatex","PiC","PiCTeX","plainTeX","PostScript","PS","SageTeX","SLiTeX","teTeX","TeXivht","TTH","virTeX","VTeX","XeLaTeX","XeTeX","BibTool","tikz","ALEPH","TikZ","eV","dante","Dante","DTK","TUG","TUGboat","DANTE","pgf","pgftikz","TeXLive","BibLaTeX","biblatex","CTAN","PSTricks","pstricks","WikipediA","wikipedia","macOS"]}
-,
-"dtk-url.sty":{"envs":{},"deps":["url.sty","xcolor.sty","xkeyval.sty","hvqrurl.sty","pdfescape.sty","ifpdf.sty","atveryend.sty","embedfile.sty"],"cmds":["CTANurl","ctanurl","Email","license","URL"]}
-,
-"dtk.cls":{"envs":["roll","roll","Figure"],"deps":["hyphsubst.sty","iftex.sty","luatex85.sty","xkeyval.sty","dtk-url.sty","s-scrbook.cls","scrhack.sty","hvextern.sty","babel.sty","csquotes.sty","microtype.sty","biblatex.sty","ragged2e.sty","dtk-logos.sty","scrlayer-scrpage.sty","xcolor.sty","lstautogobble.sty","marginnote.sty","enumitem.sty","multicol.sty","graphicx.sty","tabularx.sty","datetime2.sty","splitidx.sty","trimspaces.sty","picture.sty","inputenc.sty","fontenc.sty","textcomp.sty","libertine.sty","AnonymousPro.sty"],"cmds":["AtEmbeddedBeginDocument","AtEmbeddedEndDocument","AutorenListenName","DTKinput","DTKissueTOmonth","DTKmonthName","DTKschriftenListe","ErzeugeMitarbeiterListe","formatPosNumber","InfoTeX","makePosNumbers","MitarbeiterListe","Part","rolllabel","theartcounter","Author","Class","Code","Command","DTKcorrVersion","DTKdate","DTKfullIssue","DTKissn","DTKissue","DTKlstfont","DTKlstKeywordfont","DTKmonth","DTKrecordfalse","DTKrecordtrue","DTKversion","DTKversiondate","DTKvolume","DTKyear","Env","Environment","fullwidth","ifDTKrecord","journalname","Macro","ORIGprintbibliography","Package","Paket","Program","Programm","tex","AutorenListe","keywords","DTKrmFontName","DTKsfFontName","DTKttFontName","DTKmathFontName","captionsenglish","dateenglish","extrasenglish","noextrasenglish","englishhyphenmins","britishhyphenmins","americanhyphenmins","prefacename","bibname","chaptername","enclname","ccname","headtoname","pagename","seename","alsoname","proofname","glossaryname","captionsngerman","datengerman","extrasngerman","noextrasngerman","dq","ntosstrue","ntossfalse","mdqon","mdqoff","DH","dh","dj","DJ","guillemetleft","guillemetright","guillemotleft","guillemotright","guilsinglleft","guilsinglright","Hwithstroke","hwithstroke","k","NG","ng","quotedblbase","quotesinglbase","textogonekcentered","textquotedbl","th","TH"]}
-,
-"dtxdescribe.sty":{"envs":["dtxexample","sourceverb","fsourceverb","sourcedisplay","UIdisplay","docsidebar","dtxdexample","dtxexamplefloat","noindmacro","noindenvironment"],"deps":["makeidx.sty","etoolbox.sty","xparse.sty","calc.sty","xcolor.sty","caption.sty","newfloat.sty","fancyvrb.sty","xstring.sty","pict2e.sty"],"cmds":["DescribeMacro","DescribeEnv","marg","oarg","parg","meta","url","DescribeArgument","DescribeBoolean","DescribeLength","DescribeCounter","DescribeHook","DescribeKey","DescribePackage","DescribeClass","DescribeOption","DescribeFile","DescribeProgram","DescribeCommand","DescribeObject","DescribeOther","ItemDescribeMacro","ItemDescribeEnv","ItemDescribeArgument","ItemDescribeBoolean","ItemDescribeLength","ItemDescribeCounter","ItemDescribeHook","ItemDescribeKey","ItemDescribePackage","ItemDescribeClass","ItemDescribeOption","ItemDescribeFile","ItemDescribeProgram","ItemDescribeCommand","ItemDescribeObject","ItemDescribeOther","DescribeDefault","DescribeDefaultcolor","shownesting","margintag","margintagcolor","watchout","watchoutcolor","dtxexamplecodename","dtxexampleresultname","fquad","fqquad","fqqquad","userentry","userentryname","pkg","env","ctr","bool","optn","cmd","cs","TOC","LOF","LOT","progcode","prog","filenm","UI","cmds","ODT","SVG","PNG","GIF","JPG","EPS","PDF","DVI","UTF","URL","element","attribute","attrib","HTML","HTMLfive","CSS","CSSthree","EPUB","TikZ","MathML","MathJax","CTAN","TDS","brand","acro","supregistered","dviTeX","dviLaTeX","pdfTeX","pdfLaTeX","LuaTeX","LuaLaTeX","XeTeX","XeLaTeX","AmS","LyX","BibTeX","MakeIndex","ConTeXt","MiKTeX","thinskip","endash","emdash","thinbrspace","thinthinbrspace","Dash","dash","Slash","hyperpage","warningsign","actualchar","quotechar","levelchar","encapchar","verbatimchar","PrintEnvName","usage","removebs","MacroFont","IndexMin","DTXDbreak"]}
-,
-"ducksay.sty":{"envs":{},"deps":["xparse.sty","l3keys2e.sty","array.sty","grabbox.sty"],"cmds":["DefaultAnimal","DucksayOptions","AddAnimal","AddColoredAnimal","AnimalOptions","ducksay","duckthink"]}
-,
-"duckuments.sty":{"envs":{},"deps":["xparse.sty","letltxmacro.sty","l3keys2e.sty"],"cmds":["duckument","blindduck","ducklist","ducklistlist","duckitemize","duckenumerate","duckdescription","duckumentsCreateExampleFiles","duckumentsDrawRandomDucks"]}
-,
-"duerer.sty":{"envs":["durmfamily","dusffamily","duttfamily","duinfamily"],"deps":{},"cmds":["textdurm","textdubf","textdusl","textdutt","textdusf","textduin","durmfamily","dusffamily","duttfamily","duinfamily"]}
-,
-"dutchcal.sty":{"envs":{},"deps":["xkeyval.sty"],"cmds":["mathcal","mathbcal"]}
-,
-"dvgloss.sty":{"envs":{},"deps":{},"cmds":["gl","ft","lb","makeglshortcut","makeglsurround","glescape","glossword","aboveglftskip","aboveglskip","addtokens","betweenglskip","checkspecial","dvglspecials","everygla","everyglb","fixglstrut","glhangindent","glspace","glstrut","glstrutdepth","glstrutheight","ifnotin","ifspecial","istchar","makespecial","noglstrut","pop","popoff","restchars","specialfalse","specialtrue","split","ssplit","ta","tb","withinglskip","zipper"]}
-,
-"dvipscol.sty":{"envs":{},"deps":{},"cmds":["nogroupcolor"]}
-,
-"dvisirule.sty":{"envs":["sitabular","silongtable"],"deps":["zref-abspage.sty"],"cmds":{}}
-,
-"dynamicnumber.sty":{"envs":{},"deps":["pgfkeys.sty","xparse.sty"],"cmds":["dndeclare","dnsetcurrent","dncurrent","dnload","dnget","dninstream"]}
-,
-"dynblocks.sty":{"envs":["dynblock"],"deps":["tikz.sty","etoolbox.sty","xparse.sty","tikzlibraryshadows.sty"],"cmds":["opaqueblock","invblock","setalignment","setvisopacity","setinvopacity","dynalert","setwordscolor","setshadowopacity","setblockcolor","setbordercolor","setinnercolor","setoutercolor","settopcolor","setbottomcolor","setleftcolor","setrightcolor","fancyblock","vshadeblock","oshadeblock","thecol","thebordercol","myalert","printthistext","savetext","thethistext","intdimension"]}
-,
-"dynbrackets.sty":{"envs":{},"deps":{},"cmds":["dbr","dbs","dbc","dba","dbp","dbdp"]}
-,
-"dynkin-diagrams.sty":{"envs":["dynkinDiagram"],"deps":["tikz.sty","xstring.sty","xparse.sty","etoolbox.sty","expl3.sty","pgfkeys.sty","pgfopts.sty","amsmath.sty","amssymb.sty","mathtools.sty","tikzlibrarybackgrounds.sty","tikzlibrarycalc.sty","tikzlibrarydecorations.markings.sty","tikzlibrarydecorations.pathreplacing.sty","tikzlibrarydecorations.pathmorphing.sty","tikzlibraryfit.sty","tikzlibrarypatterns.sty","tikzlibraryshadows.sty"],"cmds":["dynkin","pgfkeys","dynkinName","dynkinFold","drlap","dynkinBrace","dynkinTripleEdge","dynkinQuadrupleEdge","dynkinDefiniteDoubleEdge","Adynkin","Bdynkin","braceYshift","Cdynkin","centerarc","convertRootNumber","convertRootPair","currentDynkinOrdering","Ddynkin","defaultpgflinewidth","DfourPly","Dir","distance","DOneFourFourPly","DthreePly","dynkinCrossRootMark","dynkinDefiniteDoubleDownLeftArc","dynkinDefiniteDoubleDownRightArc","dynkinDefiniteDoubleDownRightSemiCircle","dynkinDefiniteDoubleLeftDownArc","dynkinDefiniteDoubleLeftUpArc","dynkinDefiniteDoubleRightDownArc","dynkinDefiniteDoubleRightUpArc","dynkinDefiniteDoubleUpLeftArc","dynkinDefiniteDoubleUpRightArc","dynkinDefiniteDoubleUpRightSemiCircle","dynkinDefiniteLeftDownArc","dynkinDefiniteLeftUpArc","dynkinDefiniteRightDownArc","dynkinDefiniteRightUpArc","dynkinDefiniteSemiCircle","dynkinDefiniteSingleEdge","dynkinDefiniteTripleDownRightSemiCircle","dynkinDoubleHollowRootMark","dynkinDrawCrossRootMark","dynkinDrawSolidRootMark","dynkinEast","dynkinEdge","dynkinEdgeArrow","dynkinEdgeLabel","dynkinHeavyCrossRootMark","dynkinHollowRootMark","dynkinIndefiniteLeftDownArc","dynkinIndefiniteLeftUpArc","dynkinIndefiniteRightDownArc","dynkinIndefiniteRightUpArc","dynkinIndefiniteSemiCircle","dynkinIndefiniteSingleEdge","dynkinIndefiniteSymbol","dynkinKacDoubleArrow","dynkinKacQuadrupleArrow","dynkinKacTripleArrow","dynkinLabelRoot","dynkinLeftFold","dynkinMoveToRoot","dynkinNorth","dynkinNorthEast","dynkinNorthWest","dynkinOrder","dynkinOrderFromBourbaki","dynkinOrderToBourbaki","dynkinOverrideRoot","dynkinPlaceRootHere","dynkinPlaceRootRelativeTo","dynkinPrintLabels","dynkinPrintLabelsStar","dynkinPutLabelInDirection","dynkinRefreshRoots","dynkinRightFold","dynkinRootMark","dynkinSolidRootMark","dynkinSouth","dynkinSouthEast","dynkinSouthEastFold","dynkinSouthFold","dynkinSouthWest","dynkinSouthWestFold","dynkinTensorRootMark","dynkinWest","Edynkin","ESixThreePly","ESixTwoPly","extendedAdynkin","extendedBdynkin","extendedBthreePly","extendedCdynkin","extendedDdynkin","extendedDthreePly","extendedEdynkin","extendedESevenFolded","extendedFdynkin","extendedGdynkin","extendedHdynkin","extendedIdynkin","Fdynkin","forDynkinSemicolonsvlist","Gdynkin","Hdynkin","Idynkin","LL","pipebmo","pipefpo","regurgitate","repeatCharacter","replacementLeftString","replacementN","replacementRightString","replaceNthChar","replaceNthCounter","series","stringCharacterInPosition","swapRootIfInLastTwoRoots","tempDynkinReorder","testbit","thedynkinRootNo","twistedAdynkin","twistedDdynkin","twistedDTwo","twistedEdynkin","typeDynkinOrder","xd","yd","yfp","yj","yjj","yyyy"]}
-,
-"ean13isbn.sty":{"envs":{},"deps":["kvoptions.sty"],"cmds":["EANsetup","ISBN","EANisbn","EAN","A","B","barheight","bcorr","EANbox","EANclose","EANfinal","EANrepeat","EANscan","enddigits","evensum","firstdigit","frontdigits","insertendmark","insertseparator","internalcode","internalerr","ISBNnum","numdigit","numlines","nummodules","ocrb","ocrbsmall","oddsum","scantab","settables","tabs","testchecksum","testconsistence","usetabAB","usetabC","workdimen","X"]}
-,
-"easy-todo.sty":{"envs":{},"deps":["color.sty","tocloft.sty","ifthen.sty","ifdraft.sty"],"cmds":["todo","todoi","todoii","listoftodos","todoindextitle","todoindexpagetitle","todocolor","listoftodosname"]}
-,
-"easyReview.sty":{"envs":{},"deps":["soul.sty","xcolor.sty"],"cmds":["addColor","add","alertColor","alert","comment","highlight","removeColor","remove","replace","setreviewsoff","setreviewson","substitute","ifistoreview","istoreviewfalse","istoreviewtrue"]}
-,
-"easybase.sty":{"envs":["hangparas","easybox","ebparbox","eqcomp","enumerate*","itemize*","description*"],"deps":["l3keys2e.sty","etoolbox.sty","ctex.sty","fontspec.sty","spbmark.sty","ulem.sty","enumitem.sty","chemformula.sty","siunitx.sty","pifont.sty","geometry.sty","marginnote.sty","pdfpages.sty","multicol.sty","fancyhdr.sty","titletoc.sty","caption.sty","tabularray.sty","tabularraylibrarybooktabs.sty","listings.sty","amsthm.sty","thmtools.sty","hyperref.sty"],"cmds":["frontmatter","mainmatter","backmatter","cleardoublepage","blankpagestyle","tableofcontents","listoffigures","listoftables","listoflstlistings","bichapter","bisection","bisubsection","thebichapter","thebisection","thebisubsection","appendix","BeforeAddBitoc","ebstyle","ebrefset","ebspread","ebsubfont","ebbibset","ebthmset","ebgeoset","ebhdrset","ebtocset","DeclareThemeColor","DeclareLinkColor","addtosubfont","printbibliography","markdouble","markrule","fnfirstindent","fnafterindent","fnparskip","DefineFntSymbols","setfntsymbol","defupfntmark","defdownfntmark","notminipage","theupfootnote","thedownfootnote","Footnote","Footnotetext","Footnotemark","tocrule","RegisterTocName","DeclareFloatList","listnumberline","hangpara","deftcbstyle","addtotcbstyle","ebemph","ebfbox","counteruse","counterwithin","counterwithout","symb","seteqcomplist","seteqcomp","LoadPackage","listlstlistingname","setspread","bicontentsname","sp","sb","textsuperscript","textsubscript"]}
-,
-"easybook.cls":{"envs":{},"deps":["l3keys2e.sty","s-ctexbook.cls","easybase.sty","newtxmath.sty","bm.sty"],"cmds":{}}
-,
-"easyfig.sty":{"envs":{},"deps":["adjustbox.sty","xkeyval.sty","ifetex.sty"],"cmds":["Figure","easyfigdefault"]}
-,
-"easyfloats.sty":{"envs":["object","figureobject","tableobject","subobject"],"deps":["etoolbox.sty","pgfkeys.sty","float.sty","caption.sty","environ.sty","subcaption.sty","graphicx.sty","array.sty","booktabs.sty","graphbox.sty","longtable.sty"],"cmds":["includegraphicobject","includegraphicsubobject","objectset","graphicobjectstyle","NewObjectStyle","NewObjectStyleGroup","AddObjectStyleToGroup","AtBeginObject","AtBeginSubobject","AtBeginGraphicObject","ShowObjectStylesInGroup","ShowObjectStyleOptions","AppendGraphicobjectOption","AppendOptionToObjectStyle","AppendOptionToObjectStyleGroup","AppendOptionToObjectStyleGroups","AppendToOptionsList","CheckGraphicobjectOption","CheckObjectEnvArgs","CheckObjectGraphicOption","CheckObjectOption","DeprecateStandardFloatObject","GobbleLeadingSpaceIn","IfEndsOn","IfEndsOnPlus","IfEndsOnSpacePlus","IfEnvironmentExists","IfEnvironmentExistsOrIsEmpty","IfObjectStyleExists","IfObjectStyleNotGroup","ObjectAppendEnvargs","ObjectDefineEnvargs","ObjectDefineEnvargsAuto","ObjectDefineEnvargsCheckName","ObjectProcessArgs","ObjectProcessGraphicOption","ObjectProcessKeyPattern","PatchUnderscore","StripGraphicSpace","strippath","StripPlus","StripSpacePlus"]}
-,
-"easyformat.sty":{"envs":{},"deps":{},"cmds":["cir","enableeasyformat","disableeasyformat"]}
-,
-"easylist.sty":{"envs":["easylist"],"deps":{},"cmds":["ListProperties","NewList","ifPilcrow","Pilcrowtrue","Pilcrowfalse","ifAt","Attrue","Atfalse","ifSharp","Sharptrue","Sharpfalse","ifAmpersand","Ampersandtrue","Ampersandfalse","ifDubiousFigure","DubiousFiguretrue","DubiousFigurefalse"]}
-,
-"easyvector.sty":{"envs":{},"deps":{},"cmds":["newvector","newvectora","newcustomvector","AA","BB","CC","DD","EE","FF","GG","HH","II","JJ","KK","LL","MM","NN","OO","PP","QQ","RR","SS","TT","UU","VV","WW","XX","YY","ZZ","aa","bb","cc","dd","ee","ff","gg","hh","ii","jj","kk","ll","mm","nn","oo","pp","qq","rr","ss","tt","uu","vv","ww","xx","yy","zz","Balpha","Bbeta","Bgamma","Bdelta","Bepsilon","Bzeta","Beta","Btheta","Biota","Bkappa","Blambda","Bmu","Bnu","Bxi","Bpi","Brho","Bsigma","Btau","Bupsilon","Bphi","Bchi","Bpsi","Bomega","Bvarepsilon","Bvartheta","Bvarpi","Bvarrho","Bvarsigma","Bvarphi","BGamma","BDelta","BTheta","BLambda","BXi","BPi","BSigma","BUpsilon","BPhi","BPsi","BOmega","oldaa","oldAA","oldgg","oldll","oldss","oldSS","oldtt","filedate","fileversion"]}
-,
-"ebgaramond.sty":{"envs":{},"deps":["ifxetex.sty","ifluatex.sty","xkeyval.sty","textcomp.sty","fontenc.sty","fontaxes.sty","mweights.sty"],"cmds":["ebgaramond","oldstylenums","liningnums","tabularnums","proportionalnums","sufigures","textsu","infigures","textinf","swshape","textsw","initials","textin","ebgaramondlgr"]}
-,
-"ebook.sty":{"envs":{},"deps":["geometry.sty","graphicx.sty","hyperref.sty","moreverb.sty"],"cmds":["pagefill","ebook"]}
-,
-"ebproof.sty":{"envs":["prooftree","prooftree*"],"deps":["expl3.sty","xparse.sty"],"cmds":["hypo","infer","ellipsis","rewrite","treebox","treemark","delims","overlay","ebproofset","set","ebproofnewstyle","inserttext","ebproofnewrulestyle"]}
-,
-"ecgd-l.cls":{"envs":{},"deps":["s-amsart.cls"],"cmds":["AMSPPS","AMSPPShref","CMP"]}
-,
-"eco.sty":{"envs":{},"deps":["fontenc.sty","ifthen.sty"],"cmds":["newstylenums","DH","NG","dj","ng","k","guillemotleft","guillemotright","guilsinglleft","guilsinglright","quotedblbase","quotesinglbase","textquotedbl","DJ","th","TH","dh","Hwithstroke","hwithstroke","textogonekcentered","guillemetleft","guillemetright"]}
-,
-"econlipsum.sty":{"envs":{},"deps":["expl3.sty"],"cmds":["econ","econdef"]}
-,
-"econometrics.sty":{"envs":{},"deps":{},"cmds":["newoperator","renewoperator","SC","SN","SQ","SR","SZ","calA","calB","calC","calD","calE","calF","calG","calH","calI","calJ","calK","calL","calM","calN","calO","calP","calQ","calR","calS","calT","calU","calV","calW","calX","calY","calZ","mA","va","mB","vb","mC","vc","mD","vd","mE","ve","mF","vf","mG","vg","mH","vh","mI","vi","mJ","vj","mK","vk","mL","vl","mM","vm","mN","vn","mO","vo","mP","vp","mQ","vq","mR","vr","mS","vs","mT","vt","mU","vu","mV","vv","mW","vw","mX","vx","mY","vy","mZ","vz","valpha","vbeta","vgamma","vdelta","vepsi","vvarepsilon","vzeta","veta","vtheta","viota","vkappa","vlambda","vmu","vnu","vxi","vpi","vrho","vsigma","vtau","vupsilon","vphi","vchi","vpsi","vomega","mGamma","mDelta","mTheta","mLambda","mXi","mPi","mSigma","mUpsilon","mPhi","mPsi","mOmega","rb","rB","rC","rD","rf","rF","rH","rL","rN","rt","rU","rGam","rBeta","Bin","eu","iu","LN","IN","Poi","ped","ap","rd","DIfF","gobblespace","opspace","DiffSpace","deriv","pderiv","bias","col","corr","cov","dg","diag","E","etr","ip","kur","MSE","MSFE","OLS","plim","resid","rk","SE","sgn","tr","var","vech","distr","adistr","diff","fdiff","bdiff","eps","epsi","longto","pto","dto","wto","Infmat","Hesmat","bcdot","vones","vzeros","mZeros","e","mply","rW"]}
-,
-"ecrc.sty":{"envs":{},"deps":["geometry.sty"],"cmds":["BottomRule","CopyrightLine","copyrightowner","copyrightyear","dochead","dummyjnllogo","dummylogowidth","elslogo","firstpage","jid","jnllogo","jnltitlebox","jnltitlelogo","journalname","lastpage","MaketitleBox","reprintline","runauth","sdlogo","TopRule","volume"]}
-,
-"ed.sty":{"envs":["todo","Todo","todolist","Todolist","newpart","Newpart","oldpart","Oldpart","edstub","musings"],"deps":["paralist.sty","xcolor.sty","verbatim.sty"],"cmds":["ednote","Ednote","edissue","edIssue","tweak","Tweak","edstubURI","ednoteshape","ifshowednotes","showednotestrue","showednotesfalse","ifmargins","marginstrue","marginsfalse","theednote","ednotelabel","ednotemargin","tweaklabel","tweakmargin","edissuelabel","edissuemargin","newpartmargins","oldpartlabels","oldpartmargins","todolabels","todomargins","ifhref","hreftrue","hreffalse","issue","Issue","edexplanation","ednotemessage"]}
-,
-"edcntwd0.sty":{"envs":{},"deps":{},"cmds":["countword","CWClosePar","CWtextscript","fileversion"]}
-,
-"edichokey.sty":{"envs":["Key"],"deps":["hyperref.sty"],"cmds":["alter","name","edknamestyle","alterindent","taxonrightskip"]}
-,
-"ednmath0.sty":{"envs":["NotesToMath","NoNotesToMath"],"deps":{},"cmds":["NotesToMath","endNotesToMath","NoNotesToMath","endNoNotesToMath","mathlemmaellipsis"]}
-,
-"ednotes.sty":{"envs":{},"deps":["manyfoot.sty","lineno.sty","mfparptc.sty","edcntwd0.sty","perpage.sty","ednmath0.sty","vplref.sty","edtable.sty","longtable.sty","ltabptch.sty"],"cmds":["FootnotetextB","footinsB","Bnote","Bnotelabel","FootnotetextC","footinsC","Cnote","Cnotelabel","FootnotetextD","footinsD","Dnote","Dnotelabel","FootnotetextE","footinsE","Enote","Enotelabel","FootnotetextA","footinsA","Anote","Anotelabel","donote","pause","resume","textsymmdots","lemmaellipsis","notinnote","addlemmaexpands","IfLemmaTag","nopunct","linesfmt","showlemmaexpands","sameline","differentlines","pageandline","repeatref","lemmafmt","notefmt","PrecedeLevelWith","IfTypesetting","RobustTestOpt","NewEdnotesCommand","warningpagebreak"]}
-,
-"edtable.sty":{"envs":["edtable"],"deps":["longtable.sty","ltabptch.sty"],"cmds":{}}
-,
-"eemeir.sty":{"envs":["swapgender"],"deps":["xspace.sty"],"cmds":["E","Em","Eir","Eirs","swapgender","newwordpair","renewwordpair","ifmale","male","female","askforgender"]}
-,
-"eepic.sty":{"envs":{},"deps":{},"cmds":["line","circle","oval","maxovaldiam","allinethickness","Thicklines","path","spline","ellipse","arc","filltype","blacken","whiten","shade","texture"]}
-,
-"efbox.sty":{"envs":{},"deps":["color.sty","pgfkeys.sty"],"cmds":["efbox","efboxsetup"]}
-,
-"eforms.sty":{"envs":{},"deps":["ifpdf.sty","ifxetex.sty","ifluatex.sty","calc.sty","hyperref.sty","insdljs.sty","taborder.sty"],"cmds":["ifpreview","previewtrue","previewfalse","previewOn","previewOff","pmpvOn","pmpvOff","tops","pmpvMrk","pushButton","everyPushButton","checkBox","everyCheckBox","radioButton","everyRadioButton","listBox","everyListBox","comboBox","everyComboBox","textField","everyTextField","sigField","everySigField","everyButtonField","makeXasPDOn","makeXasPDOff","makePDasXOn","makePDasXOff","olBdry","cgBdry","volBdry","vcgBdry","efKern","setLink","everyLink","setLinkText","setLinkBbox","Page","ui","FHidden","FPrint","FNoView","FLock","FNoPrint","FfReadOnly","FfRequired","FfNoExport","FfMultiline","FfPassword","FfNoToggleToOff","FfRadio","FfPushButton","FfCombo","FfEdit","FfSort","FfFileSelect","FfMultiSelect","FfDoNotSpellCheck","FfDoNotScroll","FfComb","FfRadiosInUnison","FfCommitOnSelChange","FfRichText","textFontDefault","textSizeDefault","Ff","F","TU","W","S","R","BC","BG","mkIns","textFont","textSize","textColor","DV","V","A","AA","Color","Border","D","AP","AS","MK","CA","RC","AC","I","RI","IX","importIcons","TP","SW","ST","PA","FB","Q","DA","MaxLen","Lock","rectW","rectH","width","height","scalefactor","rawPDF","autoCenter","inline","presets","symbolchoice","cmd","linktxtcolor","defaultlinkcolor","mlstrut","mlcrackat","mlhyph","mlfix","mlignore","mlcrackinsat","AAMouseUp","AAMouseDown","AAMouseEnter","AAMouseExit","AAOnFocus","AAOnBlur","AAFormat","AAKeystroke","AAValidate","AACalculate","AAPageOpen","AAPageClose","AAPageVisible","AAPageInvisible","definePath","argii","argiv","argv","Bbox","btnSpcr","calcOrder","calcTextField","centerWidget","checkBoxDefaults","comboBoxDefaults","csarg","efCalcOrder","efHxError","eflength","efPreviewOnRule","efrestore","efrestorei","efsave","efsavei","efSupprIndent","eqtemp","eqTextField","fixmlinksfalse","fixmlinkstrue","getFfValue","getFValue","HexGlyph","HGERROR","iffixmlinks","inlineCenter","inputCalcOrderJS","isRadioParent","isRadiosInUnison","labelRef","lckAction","lckActionTst","lckAll","lckArgs","lckExcludeFields","lckGetFieldsFor","lckIncludeFields","listBoxDefaults","mlfixOff","mlfixOn","mlstrutbox","N","nameuse","Next","noexpandiii","passthruCLOpts","pmcaOff","pmcaOn","PMPV","pmpvCA","pmpvCAOff","pmpvCAOn","pmpvFmt","pmpvFmtCtrl","pmpvV","pmpvVOff","pmpvVOn","processAppArgs","protectedKeys","pushButtonDefaults","radioButtonDefaults","radioChoices","radioKids","reqPkg","rPage","setLinkPbox","sigFieldDefaults","taggedPDF","textFieldDefaults","toggleAttachmentsPanel","txtRef","unicodeStr","unicodeStrSAVE","useNewRadiosOff","useNewRadiosOn","Win"]}
-,
-"egothic.sty":{"envs":{},"deps":{},"cmds":["textegoth","egothfamily","Tienc"]}
-,
-"egplot.sty":{"envs":["egpfile","egpcmds","egp","egpx","egpdef"],"deps":["graphicx.sty","ifthen.sty","verbatim.sty"],"cmds":["egpwrite","egpprelude","egpaddtoprelude","egpuse","egpfigprelude","egpaddtofigprelude","egpfigepilog","egpaddtofigepilog","egpcalc","egpuseval","egpshowval","egpassign","theegpcalc","theegpfig","theegpfile","theegpfilename","theegpfilenum","egpcomment","egpfile","endegpfile","egpcmds","endegpcmds","egp","endegp","egpx","endegpx","egpdef","endegpdef","filedate","filemaintainer","filename","fileversion"]}
-,
-"egypto.sty":{"envs":["exemple","gramrule","possib","translit"],"deps":{},"cmds":["accolade","affligne","affpage","dico","DicoIndex","EcritTraduction","EcritTraductionEnColonne","EcritTraductionEnLigne","eg","EXEMPLE","Montitre","numligne","numpage","pile","SourceTexte","traduction","zero","afficheReference","BeginCreateVBox","boiteA","boiteB","DemiLigneA","DemiLigneB","diconame","eat","EdiTexte","EndCreateVBox","EstRectoVerso","FixeReference","GetPrems","HauteurLigne","ifRectoVerso","laligne","lapage","mangetout","numeroligne","numeropage","prems","recto","RectoVersofalse","RectoVersotrue","References","rien","setPageAndLine","texteg","theexemple","tmpdim","totoA","totoB","verso","echange","echangeaux"]}
-,
-"einfart.cls":{"envs":{},"deps":["silence.sty","geometry.sty","minimalist.sty","projlib-font.sty","fontspec.sty","ctex.sty","unicode-math.sty","tikz-cd.sty","nowidow.sty","embrac.sty","graphicx.sty","wrapfig.sty","float.sty","caption.sty","draftwatermark.sty","parskip.sty","amssymb.sty","lmodern.sty","newtxmath.sty","ebgaramond-maths.sty","ebgaramond.sty","anyfontsize.sty","notomath.sty","eulervm.sty","mathastext.sty"],"cmds":["desculine","seculine","simpleqedsymbol","subseculine","xlongequal","xtwoheadrightarrow","xtwoheadleftarrow","IfPrintModeTF","IfPrintModeT","IfPrintModeF","captionsjapanese","datejapanese","extrasjapanese","noextrasjapanese","cyrdash","asbuk","Asbuk","Russian","sh","ch","tg","ctg","arctg","arcctg","th","cth","cosec","Prob","Variance","NOD","nod","NOK","nok","Proj","cyrillicencoding","cyrillictext","cyr","textcyrillic","dq","captionsrussian","daterussian","extrasrussian","noextrasrussian","CYRA","CYRB","CYRV","CYRG","CYRGUP","CYRD","CYRE","CYRIE","CYRZH","CYRZ","CYRI","CYRII","CYRYI","CYRISHRT","CYRK","CYRL","CYRM","CYRN","CYRO","CYRP","CYRR","CYRS","CYRT","CYRU","CYRF","CYRH","CYRC","CYRCH","CYRSH","CYRSHCH","CYRYU","CYRYA","CYRSFTSN","CYRERY","cyra","cyrb","cyrv","cyrg","cyrgup","cyrd","cyre","cyrie","cyrzh","cyrz","cyri","cyrii","cyryi","cyrishrt","cyrk","cyrl","cyrm","cyrn","cyro","cyrp","cyrr","cyrs","cyrt","cyru","cyrf","cyrh","cyrc","cyrch","cyrsh","cyrshch","cyryu","cyrya","cyrsftsn","cyrery","cdash","tocname","authorname","acronymname","lstlistingname","lstlistlistingname","notesname","nomname"]}
-,
-"ejpecp.cls":{"envs":["theorem","assumptions","assumption","claim","condition","conjecture","corollary","definitions","definition","facts","fact","heuristics","hypothesis","hypotheses","lemma","notations","notation","proposition","example","exercise","problem","question","remark","supplement","acks"],"deps":["graphicx.sty","mathtools.sty","microtype.sty","latexsym.sty","dsfont.sty","amsmath.sty","amsfonts.sty","amssymb.sty","amsthm.sty","geometry.sty","bera.sty","hyperref.sty","afterpackage.sty","pstricks.sty","auto-pst-pdf.sty"],"cmds":["ABSTRACT","ACCEPTED","ACKNO","AMSSUBJ","AMSSUBJSECONDARY","ARXIV","ARXIVID","AUTHORS","BEMAIL","DEDICATORY","DOI","EMAIL","FIRSTNAMES","FIRSTPAGE","HALID","KEYWORDS","MR","PAGEEND","PAGESTART","PAPERNUM","PDFFIELDS","SHORTTITLE","SUBMITTED","SURNAME","TITLE","VOLUME","YEAR","realmathbb","stitle","sdescription","acknowledgementsname","amp","printdoi","support"]}
-,
-"ekdosis.sty":{"envs":["ekdosis","alignment","edition","edition*","translation","translation*","ekdverse","ekdstanza","ekdpar"],"deps":["luatex.sty","iftex.sty","expkv-opt.sty","expkv-def.sty","luacode.sty","paracol.sty","etoolbox.sty","lineno.sty","trivfloat.sty","refcount.sty","zref-user.sty","zref-abspage.sty","ltxcmds.sty","pdftexcmds.sty","ifoddpage.sty","keyfloat.sty","tcolorbox.sty","tcolorboxlibraryfitting.sty","tcolorboxlibraryskins.sty","verse.sty","parnotes.sty"],"cmds":["ekdsetup","DeclareWitness","DeclareHand","DeclareSource","DeclareScholar","DeclareShorthand","getsiglum","SigLine","app","lem","rdg","note","rdgGrp","rdgGrpe","SetCritSymbols","supplied","surplus","sic","gap","SetAlignment","SetHooks","SetLTRapp","SetRTLapp","SetSeparator","SetSubseparator","ekdsep","ekdsubsep","SetBeginApparatus","SetEndApparatus","SetUnitDelimiter","SetDefaultRule","SetApparatusLanguage","SetApparatusNoteLanguage","SetApparatus","iffootnoterule","footnoteruletrue","footnoterulefalse","SetDefaultApparatus","DeclareApparatus","SetLineation","innerlinenumbers","outerlinenumbers","vmodulolinenumbers","resetvlinenumber","setRL","setLR","MkBodyDivs","ekddiv","FormatDiv","ekdmark","endmark","ekdprintmark","ekdnohfmark","ekdresethfmarks","ekdpb","addentries","SetTEIFileName","SetTEIxmlExport","TeXtoTEI","EnvtoTEI","TeXtoTEIPat","teidirect","AddxmlBibResource","EkdosisColStart","EkdosisColStop","EkdosisOff","EkdosisOn","LRnum","NLS","apparatus","blfootnote","ekdatbegshihook","ekdpage","ekdverseindentlength"]}
-,
-"electrum.sty":{"envs":{},"deps":["xkeyval.sty","fontenc.sty","textcomp.sty","nfssext-cfr.sty"],"cmds":["lgweight","textlg","sbweight","textsb","sishape","textsi","swashstyle","textswash","lstyle","textl","ostyle","texto","instyle","textin","sustyle","textsu","DH","NG","dj","ng","k","guillemotleft","guillemotright","guilsinglleft","guilsinglright","quotedblbase","quotesinglbase","textquotedbl","DJ","th","TH","dh","Hwithstroke","hwithstroke","textogonekcentered","guillemetleft","guillemetright"]}
-,
-"elegantbook.cls":{"envs":["descriptionFB","descriptionFB","quoting","quoting","definition","theorem","postulate","axiom","corollary","lemma","proposition","example","exercise","problem","note","proof","solution","remark","assumption","conclusion","property","custom","introduction","problemset","change","relsec","enumerate*","itemize*","description*"],"deps":["kvoptions.sty","etoolbox.sty","s-book.cls","setspace.sty","csquotes.sty","hyperref.sty","geometry.sty","indentfirst.sty","comment.sty","iftex.sty","newtxtext.sty","helvet.sty","fontspec.sty","anyfontsize.sty","xcolor.sty","mwe.sty","enumitem.sty","caption.sty","footmisc.sty","graphicx.sty","amsmath.sty","mathrsfs.sty","amsfonts.sty","amssymb.sty","booktabs.sty","multicol.sty","multirow.sty","fancyvrb.sty","makecell.sty","lipsum.sty","hologo.sty","titlesec.sty","biblatex.sty","tikz.sty","tikzlibrarybackgrounds.sty","tikzlibrarycalc.sty","tikzlibraryshadows.sty","tikzlibrarypositioning.sty","tikzlibraryfit.sty","apptools.sty","pifont.sty","manfnt.sty","bbding.sty","tcolorbox.sty","tcolorboxlibrarymany.sty","adforn.sty","fancyhdr.sty","listings.sty","bm.sty","calc.sty","tocloft.sty","ctex.sty","xeCJK.sty","babel.sty","inputenc.sty","fontenc.sty","luatexja.sty","mtpro2.sty","newtxmath.sty","esint.sty","amsthm.sty","colortbl.sty","titleps.sty"],"cmds":["songti","heiti","kaishu","fangsong","captionsitalian","dateitalian","extrasitalian","noextrasitalian","italianhyphenmins","setactivedoublequote","setISOcompliance","IntelligentComma","NoIntelligentComma","XXIletters","XXVIletters","prefacename","bibname","chaptername","enclname","ccname","headtoname","pagename","seename","alsoname","proofname","glossaryname","ap","ped","unit","virgola","virgoladecimale","LtxSymbCaporali","CaporaliFrom","DH","dh","dj","DJ","guillemetleft","guillemetright","guillemotleft","guillemotright","guilsinglleft","guilsinglright","Hwithstroke","hwithstroke","k","NG","ng","quotedblbase","quotesinglbase","textogonekcentered","textquotedbl","th","TH","frenchsetup","frenchbsetup","AddThinSpaceBeforeFootnotes","at","AutoSpaceBeforeFDP","boi","bname","bsc","CaptionSeparator","captionsfrench","circonflexe","dateacadian","datefrench","DecimalMathComma","degre","degres","descindentFB","dotFFN","extrasfrench","FBcolonspace","FBdatebox","FBdatespace","FBeverylineguill","FBfigtabshape","FBfnindent","FBFrenchFootnotesfalse","FBFrenchFootnotestrue","FBFrenchSuperscriptstrue","FBGlobalLayoutFrenchtrue","FBgspchar","FBguillopen","FBguillspace","FBInnerGuillSinglefalse","FBInnerGuillSingletrue","FBListItemsAsParfalse","FBListItemsAsPartrue","FBLowercaseSuperscriptstrue","FBmedkern","FBPartNameFulltrue","FBsetspaces","FBSmallCapsFigTabCaptionstrue","FBStandardEnumerateEnvtrue","FBStandardItemizeEnvtrue","FBStandardItemLabelstrue","FBStandardLayouttrue","FBStandardListSpacingtrue","FBStandardListstrue","FBsupR","FBsupS","FBtextellipsis","FBthickkern","FBthinspace","FBthousandsep","FBWarning","fg","fgi","fgii","fprimo","frenchdate","FrenchEnumerate","FrenchFootnotes","FrenchLabelItem","frenchpartfirst","frenchpartsecond","FrenchPopularEnumerate","frenchtoday","Frlabelitemi","Frlabelitemii","Frlabelitemiii","Frlabelitemiv","frquote","fup","ieme","iemes","ier","iere","ieres","iers","ifFBAutoSpaceFootnotes","ifFBCompactItemize","ifFBCustomiseFigTabCaptions","ifFBfrench","ifFBFrenchFootnotes","ifFBFrenchSuperscripts","ifFBGlobalLayoutFrench","ifFBIndentFirst","ifFBINGuillSpace","ifFBListItemsAsPar","ifFBListOldLayout","ifFBLowercaseSuperscripts","ifFBLuaTeX","ifFBOldFigTabCaptions","ifFBOriginalTypewriter","ifFBPartNameFull","ifFBReduceListSpacing","ifFBShowOptions","ifFBSmallCapsFigTabCaptions","ifFBStandardEnumerateEnv","ifFBStandardItemizeEnv","ifFBStandardItemLabels","ifFBStandardLayout","ifFBStandardLists","ifFBStandardListSpacing","ifFBSuppressWarning","ifFBThinColonSpace","ifFBThinSpaceInFrenchNumbers","ifFBunicode","ifFBXeTeX","ifLaTeXe","kernFFN","labelindentFB","labelwidthFB","leftmarginFB","listfigurename","listindentFB","No","no","NoAutoSpaceBeforeFDP","NoAutoSpacing","NoEveryParQuote","noextrasfrench","nombre","nos","Nos","og","ogi","ogii","parindentFFN","partfirst","partnameord","partsecond","primo","quarto","rmfamilyFB","secundo","sffamilyFB","StandardFootnotes","StandardMathComma","tertio","tild","ttfamilyFB","up","xspace","captionsdutch","datedutch","extrasdutch","noextrasdutch","dutchhyphenmins","captionsspanish","datespanish","extrasspanish","noextrasspanish","spanishrefname","spanishabstractname","spanishbibname","spanishchaptername","spanishappendixname","spanishcontentsname","spanishlistfigurename","spanishlisttablename","spanishindexname","spanishfigurename","spanishtablename","spanishpartname","spanishenclname","spanishccname","spanishheadtoname","spanishpagename","spanishseename","spanishalsoname","spanishproofname","spanishprefacename","spanishglossaryname","spanishdashitems","spanishsignitems","spanishsymbitems","spanishindexchars","spanishscroman","spanishlcroman","spanishucroman","Today","spanishdate","spanishDate","spanishdatedel","spanishdatede","spanishreverseddate","spanishdatefirst","spanishdeactivate","decimalcomma","decimalpoint","spanishdecimal","sptext","spanishplainpercent","percentsign","lsc","lquoti","rquoti","lquotii","rquotii","lquotiii","rquotiii","activatequoting","deactivatequoting","sen","tg","arcsen","arctg","accentedoperators","unaccentedoperators","spacedoperators","unspacedoperators","spanishoperators","dotlessi","selectspanish","spanishoptions","textspanish","notextspanish","mathspanish","shorthandsspanish","captionsmongolian","datemongolian","extrasmongolian","noextrasmongolian","latinencoding","cyrillicencoding","Mongolian","English","Mon","Eng","cyrillictext","cyr","lat","textcyrillic","authorname","cdash","mdqon","mdqoff","englishhyphenmins","Useg","useg","sh","ch","arcctg","ctg","cth","cosec","Prob","Variance","nsd","nsk","NSD","NSK","nod","nok","NOD","NOK","Proj","C","CYRA","cyra","CYRAE","cyrae","CYRB","cyrb","CYRC","cyrc","CYRCH","cyrch","CYRCHRDSC","cyrchrdsc","CYRCHVCRS","cyrchvcrs","CYRD","cyrd","cyrdash","CYRDJE","cyrdje","CYRDZE","cyrdze","CYRDZHE","cyrdzhe","CYRE","cyre","CYREREV","cyrerev","CYRERY","cyrery","CYRF","cyrf","CYRG","cyrg","CYRGHCRS","cyrghcrs","CYRGUP","cyrgup","CYRH","cyrh","CYRHDSC","cyrhdsc","CYRHRDSN","cyrhrdsn","CYRI","cyri","CYRIE","cyrie","CYRII","cyrii","CYRISHRT","cyrishrt","CYRJE","cyrje","CYRK","cyrk","CYRKBEAK","cyrkbeak","CYRKDSC","cyrkdsc","CYRKVCRS","cyrkvcrs","CYRL","cyrl","cyrlangle","CYRLJE","cyrlje","CYRM","cyrm","CYRN","cyrn","CYRNDSC","cyrndsc","CYRNG","cyrng","CYRNJE","cyrnje","CYRO","cyro","CYROTLD","cyrotld","CYRP","cyrp","CYRpalochka","CYRQ","cyrq","CYRR","cyrr","cyrrangle","CYRS","cyrs","CYRSCHWA","cyrschwa","CYRSDSC","cyrsdsc","CYRSFTSN","cyrsftsn","CYRSH","cyrsh","CYRSHCH","cyrshch","CYRSHHA","cyrshha","CYRT","cyrt","CYRTSHE","cyrtshe","CYRU","cyru","CYRUSHRT","cyrushrt","CYRV","cyrv","CYRW","cyrw","CYRY","cyry","CYRYA","cyrya","CYRYHCRS","cyryhcrs","CYRYI","cyryi","CYRYO","cyryo","CYRYU","cyryu","CYRZ","cyrz","CYRZDSC","cyrzdsc","CYRZH","cyrzh","CYRZHDSC","cyrzhdsc","f","U","captionsportuguese","dateportuguese","extrasportuguese","noextrasportuguese","ord","orda","ro","ra","prodop","sumop","oldencodingdefault","oldrmdefault","oldsfdefault","oldttdefault","subtitle","institute","version","bioinfo","extrainfo","logo","cover","email","circled","dollar","figref","mailto","tabref","question","datechange","afterchap","assumptionname","axiomname","beforechap","cbfseries","cfs","citshape","cnormal","conclusionname","corollaryname","dateinfoline","datename","definitionname","ebibname","eitemi","eitemii","eitemiii","ekv","examplename","exercisename","historyname","instancename","institutename","introductionname","lemmaname","listofchanges","notename","postulatename","problemname","problemsetname","propertyname","propositionname","remarkname","solutionname","style","theexam","theexer","theoremname","theprob","updatename","versionname","xchaptertitle"]}
-,
-"elegantnote.cls":{"envs":["theorem","lemma","proposition","corollary","definition","conjecture","example","remark","note","case","enumerate*","itemize*","description*"],"deps":["kvoptions.sty","etoolbox.sty","calc.sty","amsmath.sty","amsthm.sty","iftex.sty","newtxtext.sty","helvet.sty","ctex.sty","biblatex.sty","appendix.sty","indentfirst.sty","anyfontsize.sty","graphicx.sty","booktabs.sty","xcolor.sty","hyperref.sty","xpatch.sty","hologo.sty","silence.sty","caption.sty","enumitem.sty","footmisc.sty","titlesec.sty","geometry.sty","extsizes.sty","fancyhdr.sty","tikz.sty","tikzlibraryshadows.sty","listings.sty","lstautogobble.sty","mtpro2.sty","newtxmath.sty","esint.sty"],"cmds":["prodop","sumop","institute","keywords","version","cfs","citshape","cnormal","ebibname","eitemi","eitemii","eitemiii","ekv","IfEmpty","ifempty","updatetext","versiontext"]}
-,
-"elegantpaper.cls":{"envs":["theorem","lemma","proposition","corollary","definition","conjecture","example","remark","note","case","enumerate*","itemize*","description*"],"deps":["kvoptions.sty","etoolbox.sty","calc.sty","hyperref.sty","geometry.sty","amsthm.sty","amsmath.sty","amssymb.sty","indentfirst.sty","booktabs.sty","multicol.sty","multirow.sty","xcolor.sty","graphicx.sty","fancyvrb.sty","abstract.sty","hologo.sty","caption.sty","enumitem.sty","iftex.sty","newtxtext.sty","helvet.sty","biblatex.sty","appendix.sty","footmisc.sty","listings.sty","ctex.sty","xeCJK.sty","mtpro2.sty","newtxmath.sty","esint.sty"],"cmds":["songti","heiti","kaishu","fangsong","prodop","sumop","email","figref","institute","keywords","tabref","version","cfs","citshape","cnormal","ebibname","ekv","IfEmpty","updatetext","versiontext"]}
-,
-"elements.sty":{"envs":{},"deps":["etoolbox.sty","translations.sty"],"cmds":["elementname","setatomname","DeclareAtomName","saveelementname","elementsymbol","setatomsymbol","DeclareAtomSymbol","saveelementsymbol","atomicnumber","Z","saveatomicnumber","elconf","writeelconf","setelectrondistribution","DeclareElectronDistribution","setangularmomentum","printangularmomentum","setatomisotopes","DeclareAtomIsotopes","saveelementisotopes","savemainelementisotope","mainelementisotope"]}
-,
-"ellipsis.sty":{"envs":{},"deps":["xspace.sty"],"cmds":["ellipsisgap","ellipsispunctuation","midwordellipsis"]}
-,
-"elocalloc.sty":{"envs":{},"deps":{},"cmds":["loccount","locdimen","locskip","locmuskip","locbox","loctoks","locmarks","extrafloats"]}
-,
-"elpres.cls":{"envs":["psli","rsli","citemize","cenumerate","cdescription"],"deps":["ifthen.sty","xcolor.sty","graphicx.sty","geometry.sty","hyperref.sty","fancyhdr.sty","mathptmx.sty","courier.sty","helvet.sty","colortbl.sty","pdfcolmk.sty"],"cmds":["distance","auvimm","fromlinktext","totargettext","slidetitlecolor","pagenrconst","fontna","screenformat","navigation","abstand"]}
-,
-"elpresbluelightgrayscheme.sty":{"envs":{},"deps":{},"cmds":{}}
-,
-"elpresgrayscheme.sty":{"envs":{},"deps":{},"cmds":{}}
-,
-"elpreswhitebluescheme.sty":{"envs":{},"deps":{},"cmds":{}}
-,
-"elpreswhiteredscheme.sty":{"envs":{},"deps":{},"cmds":{}}
-,
-"elpreswhitetealscheme.sty":{"envs":{},"deps":{},"cmds":{}}
-,
-"elsarticle.cls":{"envs":{},"deps":["expl3.sty","xparse.sty","etoolbox.sty","graphicx.sty","natbib.sty","txfonts.sty","endfloat.sty","geometry.sty"],"cmds":["affiliation","author","biboptions","corref","cortext","ead","fnref","fntext","JEL","journal","MSC","newdefinition","newpageafter","newproof","PACS","sep","tnoteref","tnotetext","ABD","absbox","abstracttitle","address","addsep","affnum","alarm","appnamewidth","authorsep","caaddressline","caaffcity","caaffiliationvalues","caaffitempostskip","cacountry","caorganization","capostalcode","castate","castmaddressline","castmaffcity","castmcountry","castmorganization","castmpostalcode","castmstate","Columnwidth","comma","cormark","doubleblindfalse","doubleblindtrue","eadsep","elsaddress","elsarticlegrabsbox","elsarticlehighlightsbox","elsarticleprelims","elsarticletitlealign","elsauthors","elsLabel","elsparagraph","elsprelimauthors","elsprelimpagegrabsfalse","elsprelimpagegrabstrue","elsprelimpagehlfalse","elsprelimpagehltrue","elsRef","emailauthor","finalMaketitle","fnmark","fnotenum","FNtext","getSpaceLeft","gstmappto","hashchar","idotsint","ifdoubleblind","ifelsprelimpagegrabs","ifelsprelimpagehl","iflongmktitle","ifnonatbib","ifnopreprintline","ifpreprint","ifstmundef","ifuseexplthreefunctions","jtype","keybox","keywordtitle","keywordtitlesep","lbracechar","leftMargin","longmktitlefalse","longmktitletrue","MaketitleBox","myfooter","myfooterfont","myfor","Newlabel","newstmrobustcmd","nonatbibfalse","nonatbibtrue","nonumnote","nopreprintlinefalse","nopreprintlinetrue","noteheight","pprintMaketitle","pprinttitle","prelimauthorsep","preprintfalse","preprinttrue","printFirstPageNotes","printWarning","qed","rbracechar","RCSdate","RCSfile","RCSversion","resetTitleCounters","savefpageheight","savetitlepagespan","sfbc","sfn","sitem","stmexpandonce","textmarker","theaffn","theauthor","thecnote","theead","thefnote","thetnote","titleheight","titlespancalculator","tmptocnumberline","tnotemark","tnotesep","underscorechar","urlauthor","useauthors","useelstitle","useexplthreefunctionsfalse","useexplthreefunctionstrue","xstmappto"]}
-,
-"elteikthesis.cls":{"envs":["definition","theorem","remark","note"],"deps":["etoolbox.sty","xparse.sty","ifthen.sty","s-report.cls","iftex.sty","inputenc.sty","fontenc.sty","babel.sty","indentfirst.sty","geometry.sty","fancyhdr.sty","graphicx.sty","float.sty","adjustbox.sty","subcaption.sty","rotating.sty","epstopdf.sty","parskip.sty","setspace.sty","paralist.sty","amsthm.sty","amsmath.sty","amsfonts.sty","xcolor.sty","hyperref.sty","hypcap.sty","url.sty","bookmark.sty","multirow.sty","longtable.sty","array.sty","makecell.sty","chngcntr.sty","pdfpages.sty","appendix.sty","csquotes.sty","biblatex.sty","caption.sty","tocloft.sty","makeidx.sty","nomencl.sty","algorithm.sty","algpseudocode.sty","listingsutf8.sty","todonotes.sty","preview.sty","hyphenat.sty"],"cmds":["acklabel","affiliation","alglabel","authorlabel","authorname","biblabel","city","cityname","clearemptydoublepage","codelabel","deflabel","degree","degreename","department","deptname","documentlang","extaffiliation","extsupaff","extsupervisor","extsuplabel","extsupname","facname","faculty","hyperrefComp","intsuplabel","logo","logofilename","lstalgorithmlabel","lstcodelabel","lstfigurelabel","lstnomencl","lsttablelabel","notelabel","oldtableofcontents","origdoublepage","remlabel","subscript","supaff","superscript","supervisor","suplabel","supname","theconpageno","theolabel","thesistitle","thesisyear","todolabel","university","univname","DH","dh","dj","DJ","guillemetleft","guillemetright","guillemotleft","guillemotright","guilsinglleft","guilsinglright","Hwithstroke","hwithstroke","k","NG","ng","quotedblbase","quotesinglbase","textogonekcentered","textquotedbl","th","TH","captionsenglish","dateenglish","extrasenglish","noextrasenglish","englishhyphenmins","britishhyphenmins","americanhyphenmins","prefacename","bibname","chaptername","enclname","ccname","headtoname","pagename","seename","alsoname","proofname","glossaryname","captionshungarian","datehungarian","extrashungarian","noextrashungarian","notesname","acite","Acite","apageref","Apageref","aref","Aref","atold","Atold","az","Az","azc","Azc","azp","Azp","azr","Azr","captionlabeldelim","dMf","editorfootnote","emitdate","factorial","footnotestyle","hang","headingfootnote","HuComma","hunnewlabel","Hunumeral","hunumeral","huordinal","Huordinal","magyarDumpHuMin","makeFootnotable","MathBrk","MathBrkAll","MathReal","mond","ondatehungarian","ontoday","refstruc","refstrucparen","SafeToday","textqq","told"]}
-,
-"elzcards.sty":{"envs":{},"deps":["calc.sty","xparse.sty","keyval.sty","xcolor.sty"],"cmds":["BusinessCard","IndexCard","FlashCard","CurrentIC","CurrentFC","TotalIC","TotalFC","MakeBC","MakeIC","MakeFC","Transverse","NoTransverse","BCdim","ICdim","FCdim","CardGap","AutoGapInner","AutoGapTotal","NoAutoGap","CropCrosses","CropSegments","CropLines","CropDots","NoCropMarks","SegmentLength","LineThickness","DotSize","CropColor","PKGERROR","PKGWARNING"]}
-,
-"emarks.sty":{"envs":{},"deps":["etex.sty"],"cmds":["marksthe","marksthecs","thefirstmarks","thebotmarks","thetopmarks","getthemarks","getthefirstmarks","getthebotmarks","getthetopmarks","firstmarks","botmarks","topmarks","ifmarksvoid","ifmarksequal","showthemarks"]}
-,
-"embedall.sty":{"envs":{},"deps":["embedfile.sty","filehook.sty","currfile.sty","etoolbox.sty","letltxmacro.sty"],"cmds":["embedsource","embedinput"]}
-,
-"embedfile.sty":{"envs":{},"deps":["infwaerr.sty","iftex.sty","pdftexcmds.sty","ltxcmds.sty","kvsetkeys.sty","kvdefinekeys.sty","pdfescape.sty"],"cmds":["embedfile","embedfilesetup","embedfilefinish","embedfilefield","embedfilesort","embedfileifobjectexists","embedfilegetobject"]}
-,
-"embrac.sty":{"envs":{},"deps":["expl3.sty","xparse.sty","l3keys2e.sty"],"cmds":["emph","textit","textsl","textsi","AddEmph","ChangeEmph","RenewEmph","DeleteEmph","AddOpEmph","AddClEmph","ChangeOpEmph","ChangeClEmph","RenewOpEmph","RenewClEmph","DeleteOpEmph","DeleteClEmph","EmbracMakeKnown","EmbracOff","EmbracOn","emb","embparen","embbracket"]}
-,
-"emf.sty":{"envs":{},"deps":["xkeyval.sty"],"cmds":["emf","mathemf"]}
-,
-"emisa.cls":{"envs":["article","sourcecode","sourcecode*","java","java*","articleappendix","articleappendix*","cfp","editorialcontent","editorial","asparablank","inparablank","Theorem","theorem","Lemma","lemma","Proposition","proposition","Corollary","corollary","Satz","satz","Korollar","korollar","Definition","definition","Example","example","Beispiel","beispiel","Anmerkung","anmerkung","Bemerkung","bemerkung","Remark","remark","Proof","proof","Beweis","beweis","Theorem*","theorem*","Lemma*","lemma*","Proposition*","proposition*","Corollary*","corollary*","Satz*","satz*","Korollar*","korollar*","Definition*","definition*","Example*","example*","Beispiel*","beispiel*","Anmerkung*","anmerkung*","Bemerkung*","bemerkung*","Remark*","remark*","Proof*","proof*","Beweis*","beweis*"],"deps":["inputenc.sty","fontenc.sty","textcomp.sty","microtype.sty","babel.sty","float.sty","caption.sty","graphicx.sty","xcolor.sty","etoolbox.sty","biblatex.sty","csquotes.sty","twoopt.sty","environ.sty","paralist.sty","afterpage.sty","xspace.sty","calc.sty","geometry.sty","eso-pic.sty","placeins.sty","newtxtext.sty","amsmath.sty","amssymb.sty","newtxmath.sty","newtxtt.sty","booktabs.sty","listings.sty","ntheorem.sty","url.sty","hyperref.sty","cleveref.sty","doclicense.sty","colortbl.sty"],"cmds":["captionsbritish","datebritish","extrasbritish","noextrasbritish","englishhyphenmins","britishhyphenmins","americanhyphenmins","prefacename","bibname","chaptername","enclname","ccname","headtoname","pagename","seename","alsoname","proofname","glossaryname","captionsUKenglish","dateUKenglish","extrasUKenglish","noextrasUKenglish","captionsamerican","dateamerican","extrasamerican","noextrasamerican","captionsUSenglish","dateUSenglish","extrasUSenglish","noextrasUSenglish","title","subtitle","author","address","abstract","keywords","acknowledgements","authornote","meta","type","eg","ie","cf","etal","emisaabbrv","OMG","BPM","BPMN","UML","emisainitialism","editor","received","accepted","volume","issue","specialissuetitle","CCBYNCSAFour","CCBYNCSAThree","license","licence","AtPageDeadCenter","abstractfont","addtocentry","affiliationaddressfont","affiliationauthorfont","affiliationemailfont","affiliationfont","authorfont","basecoverfont","bleed","cfpname","copyrightholder","copyrightyear","coverIII","coverII","coverIVbgname","coverIV","coverIbgname","coverI","coveroff","coveron","coverpage","covertitlefont","covervolumefont","displayskipstretch","doitext","doi","editorialboardbody","editorialboardname","editorialboxmaxheight","editorialname","email","footruleoff","footruleon","footrulewidth","footrule","gislogoname","guidelinesbody","guidelinesname","headbox","headfootruleheight","headmargin","headmarkstyle","headpageoffset","headwidth","imprintbody","imprintname","issn","journalname","journalsubtitle","markarticle","markeditorial","markhead","outdoi","outputarticleappendix","pagebg","pagefootfont","pageheadfont","pagenumfont","picturepage","sectionfont","setstretch","sigEMISAlogoname","sigmobislogoname","sigmobispage","sigmobispagefoot","sigmobispagehead","sigmobispagerule","specialissuetitleprefix","subtitlefont","theaddresses","thearticle","thecovertitle","thecovervolumeline","theevenheadpage","theheadvolume","theoddheadpage","thispagebackground","titlefont","DH","dh","dj","DJ","guillemetleft","guillemetright","guillemotleft","guillemotright","guilsinglleft","guilsinglright","Hwithstroke","hwithstroke","k","NG","ng","quotedblbase","quotesinglbase","textogonekcentered","textquotedbl","th","TH","bibitemlabel","mkbibdateiso"]}
-,
-"emoji.sty":{"envs":{},"deps":["luatex.sty","fontspec.sty"],"cmds":["setemojifont","emoji"]}
-,
-"emojicite.sty":{"envs":{},"deps":["emoji.sty","natbib.sty","xparse.sty"],"cmds":["emojicite","emojicitep"]}
-,
-"emp.sty":{"envs":["empfile","emp","empdef","empcmds","empgraph"],"deps":["graphics.sty","verbatim.sty"],"cmds":["empuse","empTeX","empaddtoTeX","empprelude","empaddtoprelude","empwrite","theempfig","theempfile","RCS","endRCS","empfile","endempfile","emp","endemp","empdef","endempdef","empcmds","endempcmds","empgraph","endempgraph","filedate","filemaintainer","filename","filerevision","fileversion"]}
-,
-"empheq.sty":{"envs":["empheq","MTmultlined"],"deps":["mathtools.sty"],"cmds":["empheqset","empheqlbrace","empheqrbrace","empheqbiglbrace","empheqbigrbrace","empheqlbrack","empheqrbrack","empheqbiglbrack","empheqbigrbrack","empheqlangle","empheqrangle","empheqbiglangle","empheqbigrangle","empheqlparen","empheqrparen","empheqbiglparen","empheqbigrparen","empheqlvert","empheqrvert","empheqbiglvert","empheqbigrvert","empheqlVert","empheqrVert","empheqbiglVert","empheqbigrVert","empheqlfloor","empheqrfloor","empheqbiglfloor","empheqbigrfloor","empheqlceil","empheqrceil","empheqbiglceil","empheqbigrceil","shadowbox","mintagvsep","DeclareLeftDelimiter","DeclareRightDelimiter","EmphEqdelimitershortfall","EmphEqdelimiterfactor","EmphEqdisplayheight","EmphEqdisplaydepth","EmphEqMainEnv","endEmphEqMainEnv"]}
-,
-"emptypage.sty":{"envs":{},"deps":{},"cmds":{}}
-,
-"endfloat.sty":{"envs":{},"deps":["keyval.sty"],"cmds":["tableplace","figureplace","floatplace","efloatheading","AtBeginFigures","AtBeginTables","AtBeginDelayedFloats","addtodelayedfloat","processdelayedfloats","efloatpreamble","efloatseparator","efloatpostamble","efloattype","efloatbegin","efloatend","efloatbeginlist","efloatendlist","DeclareDelayedFloatFlavor","DeclareDelayedFloatFlavour","DeclareDelayedFloat","SetupDelayedFloat","dofiglist","dotablist","markersintext","nomarkersintext","nofiglist","notablist","processotherdelayedfloats","thepostfigure","theposttable","thepostfig","theposttbl","docdate","filedate","filename","fileversion"]}
-,
-"endheads.sty":{"envs":{},"deps":{},"cmds":["setupendnoteheaders","notesbychapter","setstyleforchapternotebegin","setstyleforchapternoteend","resetendnotes","changenotesname","changenotesheader","changenotescontentsname","notesincontents","changesinglepageabbrev","changemultiplepageabbrev","changechapternotesline","appendtomacro","chapternoteslinename","checknoteheaders","endnoteheadersonfalse","endnoteheadersontrue","endnotesname","ifendnoteheaderson","ifnotesbychapteron","ifnotesincontentson","ifrefundefined","iftitleinnotes","literalendnote","multiplepageabbrev","mymarks","notesbychapteronfalse","notesbychapterontrue","notescontentsname","notesheadername","notesincontentsonfalse","notesincontentsontrue","notesname","oldtheendnotes","setcounterfrompageref","setcounterfromref","singlepageabbrev","strip","styleforchapternotebegin","styleforchapternoteend","theallendnotes","thenotepageholder","titleinnotesfalse","titleinnotestrue"]}
-,
-"endiagram.sty":{"envs":["endiagram"],"deps":["expl3.sty","l3keys2e.sty","siunitx.sty","tikz.sty","tikzlibrarycalc.sty","xparse.sty"],"cmds":["ENsetup","ENcurve","ShowNiveaus","ShowGain","ShowEa","MakeOrigin","AddAxisLabel"]}
-,
-"endnotes-hy.sty":{"envs":{},"deps":["endnotes.sty","etoolbox.sty"],"cmds":["endnote","phantomendnote","endnoteautorefname"]}
-,
-"endnotes.sty":{"envs":{},"deps":{},"cmds":["endnote","endnotemark","endnotetext","addtoendnotes","enotesize","theendnotes","theendnote","theenmark","makeenmark","enoteformat","enoteheading","notesname","endnotesep"]}
-,
-"endnotesj.sty":{"envs":{},"deps":["luatexja-otf.sty","otf.sty","utf.sty"],"cmds":["endnote","endnotemark","endnotetext","addtoendnotes","enotesize","theendnotes","theendnote","theenmark","makeenmark","enoteformat","enoteheading","notesname","endnotesep","kcharparline","linesparpage"]}
-,
-"endofproofwd.sty":{"envs":{},"deps":["graphicx.sty","import.sty"],"cmds":["wasserdicht"]}
-,
-"engord.sty":{"envs":{},"deps":["ltxcmds.sty","infwarerr.sty"],"cmds":["engord","engordnumber","engordletters","engorderror","ifengordraise","engordraisetrue","engordraisefalse"]}
-,
-"engpron.sty":{"envs":["LivreActive"],"deps":["tipa.sty","ifthen.sty","drac.sty"],"cmds":["pron","Pron","PRON","EPaccentprincipal","EPaccentsecondaire","EPSyllabeCoupure","EPSyllabeMarque","EPAccentCoupure","EPouvrante","EPfermante","EPtextestyle","ActiveLaLivre","MakeHyphenable","MakeUnHyphenable","MakeVisible","MakeInVisible","makepoundletter","makepoundother"]}
-,
-"engrec.sty":{"envs":{},"deps":["amstext.sty","upgreek.sty"],"cmds":["engrec","EnGrec","Alpha","Beta","Epsilon","Zeta","Eta","Iota","Kappa","Mu","Nu","Omicron","Rho","Tau","Chi","omicron","upomicron"]}
-,
-"enigma.sty":{"envs":{},"deps":["luatexbase.sty"],"cmds":["defineenigma","setupenigma","ifenigmaisrunningplain","enigmaisrunningplaintrue","enigmaisrunningplainfalse","luastringsep","enigmasetupcatcodes","escapecatcode","begingroupcatcode","endgroupcatcode","spacecatcode","lettercatcode"]}
-,
-"enotez.sty":{"envs":{},"deps":["expl3.sty","xparse.sty","l3keys2e.sty","xtemplate.sty","translations.sty"],"cmds":["endnote","endnotemark","endnotetext","enotezwritemark","enmarkstyle","printendnotes","AtEveryEndnotesList","AtNextEndnotesList","AfterEveryEndnotesList","AfterNextEndnotesList","setenotez","enmark","AtEveryListSplit","AfterEveryListSplit","EnotezCurrentSplitTitle","NewSplitTitleTag","enotezlistheading","enotezsplitlistheading","enotezdisable","theendnote"]}
-,
-"enparen.sty":{"envs":{},"deps":["ltxcmds.sty","protecteddef.sty","atveryend.sty","uniquecounter.sty","zref-base.sty","kvoptions.sty","kvsetkeys.sty"],"cmds":["enparen","enparenLeft","enparenRight","enparenSetSymbols","enparenUnsetSymbols","enparenBeginContext","enparenEndContext","enparenSetup","enparenContextDefault","enparenCheckEmptyStack"]}
-,
-"enumerate.sty":{"envs":{},"deps":{},"cmds":{}}
-,
-"enumitem.sty":{"envs":["enumerate*","itemize*","description*"],"deps":{},"cmds":["setlist","newlist","renewlist","restartlist","EnumitemId","SetLabelAlign","labelindent","SetEnumerateShortLabel","setlistdepth","AddEnumerateCounter","SetEnumitemKey","SetEnumitemValue","SetEnumitemSize","DrawEnumitemLabel"]}
-,
-"environ.sty":{"envs":{},"deps":["trimspaces.sty"],"cmds":["NewEnviron","RenewEnviron","BODY","environfinalcode","environbodyname"]}
-,
-"envlab.sty":{"envs":{},"deps":["graphics.sty"],"cmds":["printreturnlabels","SetEnvelope","SetLabel","SetBigLabel","AtBeginLabels","AtBeginLabelPage","EnvelopeLeftMargin","FirstLabel","suppresslabels","resumelabels","suppressonelabel","resumeonelabel","ChangeEnvelope","ChangeLabel","ChangeBigLabel","re","ReName","PSwait","EnvelopeHeight","EnvelopeTopMargin","EnvelopeWidth","FromAddressHeight","FromAddressLeftMargin","FromAddressTopMargin","FromAddressWidth","LabelHeight","LabelLeftMargin","LabelRightMargin","LabelTopMargin","LabelWidth","PrintAddress","PrintBarCode","PrintBigLabel","PrintEnvelope","PrintLabel","printonelabel","PrintReturnAddress","PSautotray","PSEnvelopeTray","recontents","theLabelCountCol","theLabelCountRow","theLabelMaxCol","theLabelMaxRow","theLabelOffsetCol","theLabelOffsetRow","ToAddressLeftMargin","ToAddressTopMargin","ToAddressWidth"]}
-,
-"envmath.sty":{"envs":["Equation","MultiLine","MultiLine*","System","System*","EqSystem","EqSystem*"],"deps":{},"cmds":["MultiLineIndent","MultiLineStarIndent","SystemColSep","SystemBraceSep","SystemStarIndent","FileName","docdate","filedate","filedescr","fileversion"]}
-,
-"eolang.sty":{"envs":["phiquation","phiquation*","sodg","phicture"],"deps":["stmaryrd.sty","amsmath.sty","amssymb.sty","fancyvrb.sty","iexec.sty","pgfopts.sty","ifluatex.sty","ifxetex.sty","pdftexcmds.sty","xstring.sty","tikz.sty","tikzlibraryshapes.sty","tikzlibrarydecorations.sty","tikzlibrarydecorations.pathmorphing.sty","tikzlibrarydecorations.pathreplacing.sty","tikzlibrarypositioning.sty","tikzlibrarycalc.sty","tikzlibrarymath.sty","tikzlibraryarrows.meta.sty","hyperref.sty","trimclip.sty"],"cmds":["phiq","eolang","phic","xmir","phiSlot","phiConst","phiWave","phiDotted","phiOset","phiUset","phiMany","phiSaveTo","sodgSaveTo","eoAnon","phiEOL"]}
-,
-"eolgrab.sty":{"envs":{},"deps":["ltxcmds.sty","infwarerr.sty"],"cmds":["eolgrab","eolgrabopt"]}
-,
-"epic.sty":{"envs":["dottedjoin","dashjoin","drawjoin"],"deps":{},"cmds":["multiputlist","lop","to","lopoff","matrixput","grid","dottedline","dashline","dashlinestretch","drawline","drawlinestretch","lineslope","jput","picsquare","putfile","sqrtandstuff","dashjoin","dottedjoin","drawjoin","enddashjoin","enddottedjoin","enddrawjoin","splittwoargs","iflistnonempty","listnonemptytrue","listnonemptyfalse"]}
-,
-"epigrafica.sty":{"envs":{},"deps":["pxfonts.sty"],"cmds":["k","trademark"]}
-,
-"epigraph-keys.sty":{"envs":["epigraphs"],"deps":["enumitem.sty","pgfkeys.sty","conditionals.sty","microtype.sty"],"cmds":["epigraph","qitem","expblank","expgiven","expnil","beforeepigraphskip","afterepigraphskip","epigraphtextindent","epigraphauthorsourceindent","epigraphtextwidth","epigraphstyle","epigraphdash","epigraphquotefont","epigraphtranslationfont"]}
-,
-"epigraph.sty":{"envs":["epigraphs"],"deps":{},"cmds":["epigraph","qitem","epigraphnoindent","epigraphnoindentfalse","epigraphwidth","textflush","epigraphflush","sourceflush","epigraphsize","epigraphrule","beforeepigraphskip","afterepigraphskip","epigraphhead","dropchapter","undodrop","cleartoevenpage"]}
-,
-"epiolmec.sty":{"envs":{},"deps":{},"cmds":["EOafter","EOandThen","EOAppear","EOBeardMask","EOBedeck","EOBlood","EObrace","EObuilding","EOBundle","EOChop","EOChronI","EOCloth","EODealWith","EODeer","EOeat","EOflint","EOflower","EOFold","EOGod","EOGoUp","EOgovernor","EOGuise","EOHallow","EOja","EOjaguar","EOje","EOji","EOJI","EOjo","EOju","EOkak","EOke","EOki","EOkij","EOKing","EOknottedCloth","EOknottedClothStraps","EOko","EOku","EOkuu","EOLetBlood","EOloinCloth","EOlongLipII","EOLord","EOLose","EOma","EOmacaw","EOmacawI","EOme","EOmexNew","EOmi","EOMiddle","EOmonster","EOMountain","EOmuu","EOna","EOne","EOni","EOnow","EOnu","EOnuu","EOofficerI","EOofficerII","EOofficerIII","EOofficerIV","EOpa","EOpak","EOPatron","EOPatronII","EOpe","EOpenis","EOpi","EOPierce","EOPlant","EOPlay","EOpo","EOpriest","EOPrince","EOpu","EOpuu","EOpuuk","EORain","EOSa","EOsa","EOsacrifice","EOSaw","EOScorpius","EOset","EOsi","EOSi","EOsing","EOSini","EOskin","EOSky","EOskyAnimal","EOskyPillar","EOsnake","EOSo","EOSpan","EOSprinkle","EOstar","EOStarWarrior","EOstarWarrior","EOstep","EOSu","EOsu","EOsun","EOsuu","EOSuu","EOta","EOte","EOthrone","EOti","EOtime","EOTime","EOTitle","EOTitleII","EOTitleIV","EOto","EOtu","EOtuki","EOtukpa","EOturtle","EOtuu","EOtza","EOtze","EOtzetze","EOtzi","EOtzu","EOtzuu","EOundef","EOvarBeardMask","EOvarja","EOvarji","EOvarki","EOvarkuu","EOvarni","EOvarpa","EOvarSi","EOvarsi","EOvartza","EOvarwuu","EOvarYear","EOvi","EOwa","EOwe","EOwi","EOwo","EOwuu","EOxii","EOxviii","EOya","EOyaj","EOye","EOYear","EOyuu","EOzero"]}
-,
-"epltxfn.sty":{"envs":{},"deps":["expex.sty"],"cmds":["everyfootnote"]}
-,
-"epsdice.sty":{"envs":{},"deps":["graphicx.sty"],"cmds":["epsdice"]}
-,
-"epspdfconversion.sty":{"envs":{},"deps":["epstopdf-base.sty","graphics.sty","kvoptions.sty"],"cmds":["epspdfconversionsetup","epspdfconversioncmdline","CheckOutdir","MinorVersion"]}
-,
-"epstopdf.sty":{"envs":{},"deps":["infwarerr.sty","kvoptions.sty"],"cmds":["epstopdfsetup","OutputFile","SourceFile","SourceExt","epstopdfDeclareGraphicsRule","epstopdfcall","AppendGraphicsExtensions","PrependGraphicsExtensions"]}
-,
-"eq-fetchbbl.sty":{"envs":["BblPsg","BblVrs"],"deps":["exerquiz.sty","fetchbibpes.sty"],"cmds":["qFP","sFP","qFV","sFV","useNumbersOn","useNumbersOff","adjCAB","adjTBX","priorRBT","priorPsg","setRBTWidthTo","setRBTWidth","RBTWidth","CATorTBX","eqfQorS","presetMBbl"]}
-,
-"eq-pin2corr.sty":{"envs":{},"deps":["exerquiz.sty","eq-save.sty"],"cmds":["classPINVar","CorrBtnActionsJSSave","CorrBtnActionsPwdJS","declPINId","declRePINId","eQzBtnActnsPIN","eQzBtnActnsSave","FreezeQuizfalse","FreezeQuiztrue","FreezeThisQuiz","FreezeThisQuizNot","hashPINId","hashRePINId","ifFreezeQuiz","ifPINSecurity","ifPINshowScore","makeEndQuizPIN","nMaxRetakes","numPINId","numRePINId","PINclassPV","PINgobii","PINgobiii","PINSecurityfalse","PINSecuritytrue","PINshowScorefalse","PINshowScoretrue","postSubmitQuizPIN","qzResetTally","qzTallyTotalDefaults","restorBeginQuiz","restoreCorrBtn","restoreEndQuiz","SaveAndSendMsg","setMaxRetakes","showScoreOff","showScoreOn","useBeginQuizCnt","useBeginQuizPIN","usePINCorrBtn","useWarnEndQuiz"]}
-,
-"eq-save.sty":{"envs":{},"deps":["exerquiz.sty","atbegshi.sty"],"cmds":["sField","ooField","sooField","declareScorePhrase","psField","pooField","psooField","clearAllField","nameField","BeginNoPeeking","EnterNameFirstMsg","eqerrUnfinishQuizAtSave","cListOfQuizNames","cListOfSQuizNames","devMode","eqsHandleOpen","eqsroot","eqsSetActionKeys","hiddenScoreData","IhrNamePO","itsNonEmpty","jsForQzs","jsForQzsHold","jsForQzsi","restoreQD","saveListofQzs","semiColon"]}
-,
-"eq2db.sty":{"envs":{},"deps":["xkeyval.sty","exerquiz.sty"],"cmds":["htmlSubmitType","insertHTMLs","addHiddenTextField","addtohidden","basicFieldsSet","hiddenTextField","populateHiddenField","populatehiddenfields","rtnURL","thisRtnURL"]}
-,
-"eqell.sty":{"envs":{},"deps":["xspace.sty"],"cmds":["ece","que","eqe","qee","ele","elq","eco","coe","beb","vev"]}
-,
-"eqexam.sty":{"envs":["afterChapSolns","carryOverFmt","eqeList","eqepartsquestions","example","example*","fullwidthtext","lsol","probset","solnsAtEnd","ssol","answers","cq","cq*","eqComments","eqequestions","exam","exercise","exercise*","instructions","manswers","panel","parts","problem","problem*","solution","splitsolution","workarea","priorworkarea","verA","verB","verC","verD","verE","dlcomment"],"deps":["ifpdf.sty","ifxetex.sty","xkeyval.sty","xcolor.sty","amstext.sty","amssymb.sty","aeb-comment.sty","calc.sty","pifont.sty","array.sty","verbatim.sty","multicol.sty","web.sty","exerquiz.sty","eso-pic.sty","colortbl.sty","pdfcolmk.sty"],"cmds":["InitSeedValue","writeSeedToSolnFile","saveRandomSeed","inputRandomSeed","useRandomSeed","ifsaveseed","saveseedtrue","saveseedfalse","saveseedinfo","readsavfile","eFreeze","randomi","nextrandom","setrannum","setrandim","pointless","PoinTless","ranval","textbookOpts","annotPage","annotThePage","ANS","ANSFmt","autoInsSolns","bGrpANS","bpartsmrk","chapHeadSolnFmt","chapterexercisesfalse","chapterexercisestrue","chaptersolutions","chkmarginboxwidth","clearBotMargin","clearTopMargin","cngMargHeadColorTo","convertChapHeadToChapters","currProbHead","displayProbNumOnce","eGrpANS","epartsmrk","eqedecPointSoln","eqedsplyOnlyFrst","eqeGenProbNumfalse","eqeGenProbNumtrue","eqeifnext","eqepquesitemsep","eqepquesparsep","eqepquestopsep","eqExtArg","examenvfalse","examenvtrue","examplenoname","exercisesAtEndOfChapter","exPrtsep","fbInsSolnsStyle","firstemitfalse","firstemittrue","firstPartLtr","frstProbNumShownfalse","frstProbNumShowntrue","ftbFmtChapter","ftbInputBookAux","ftbInputSolnFiles","ftblabel","gobblelabel","grpANSDelimiter","hangSolWPrtsFmt","ifchapterexercises","ifeqeGenProbNum","ifexamenv","iffirstemit","iffrstProbNumShown","ifiscarryover","ifisinlineans","ifisinstred","ifismarginans","ifisstudented","ifmarginsonleft","ifshowlsols","ifshowssols","ifWithinANSGrp","initChapAfterSolns","insertpageifcarryover","insMargHead","insMidMarg","insProbHead","iscarryoverfalse","iscarryovertrue","isinlineansfalse","isinlineanstrue","isinstredfalse","isinstredtrue","ismarginansfalse","ismarginanstrue","isstudentedfalse","isstudentedtrue","marginsonleftfalse","marginsonlefttrue","MarParBoxFmt","marparboxwidth","midMargFmt","mrgDecPt","mrgDigitFmt","mrgNumPrtsep","mrgPartFmt","mrgPrtsep","NewCommentCutFile","noProbHeader","postChapSolnHead","preChapSolnHead","probSet","resetMargHeadColor","RestoreCommentCutFile","restoreFromChapAfterSolns","restorelabel","restoreLastBotMargin","restoreLastTopMargin","restorePageLayout","saveBasicLayoutParams","setBotMargin","setFullWidthHeader","setFullWidthLayout","setMarIndents","setSolnIndent","setTopMargin","showlsolsfalse","showlsolstrue","showssolsfalse","showssolstrue","solDecPt","solnGutter","solnsAtEndcomment","solNumPrtsep","solPrtsep","solWoPrtsFmt","solWPrtsFmt","tballowAllNums","tbBaseName","tbBotMargin","tbcontinued","tbfilterOutEvenNums","tblastpageshipped","tbMakeFinalCalcs","tbMarginHeaderFmt","tbmarparboxwidth","tbminskipbtnlayers","tbmrgpartwdth","tbplaceMargins","tbPostMarginHeader","tbprbNumFmt","tbPreMarginHeader","tbSaveBotMargin","tbSaveTopMargin","tbSetupForMargins","tbsolnpartwdth","tbsolWoPrtsFmt","tbsolWPrtsFmt","tbSourceFile","tbTopMargin","theeqquestionnoi","theexampleno","thisPart","toggleInstrAns","turnOffFTBShipout","turnOffMarAnsOnAnsInline","turnOnFTBShipout","turnOnMarAnsOffAnsInline","WithinANSGrpfalse","WithinANSGrptrue","writeallsolutions","wrtChapSolnHead","aboveexskip","acvspace","adjDisplayBelow","adjDisplayBelowPlus","aebshowgraylettersfalse","aebshowgrayletterstrue","allowcircmcfalse","allowcircmctrue","AllowFitItIn","allowRandomizedChoices","allowZeroTotals","altTitle","aNewPage","annotContStr","Ans","answerkeyfalse","answerkeytrue","authorColor","auto","autoExamName","autotabOn","bChoices","belowexskip","belowexsolnskip","bItemInsert","bMatchChoices","bopCoverPageText","bopText","bProbInsert","calcFromMarkers","calcQsBtwnMarkers","cfooteqe","chead","cheadeqe","cheadSol","chngToNoSolns","ckboxColor","ckcirColor","ckSolnOpt","copyrightyears","coverpageSubjectFmt","coverpageTitleFmt","cpSetSumryWidth","cpSumryGrade","cpSumryHeader","cpSumryPage","cpSumryPts","cpSumryTotal","cqCopiedQues","cqIsActivefalse","cqIsActivetrue","cqQS","cqQSA","cqqsfalse","cqqstrue","cqQSV","cqSAfalse","cqSAtrue","customNaming","defaultInstructions","defaultTFwidth","displayworkareafalse","displayworkareatrue","Do","DoNotFitItIn","doNotRandomizeChoices","DoNotRecordThisExamfalse","DoNotRecordThisExamtrue","DoNum","duedate","eachLabel","eAns","eChoices","email","EmailCourseName","EmailExamName","EmailSubject","eMatchChoices","emitMessageNearBottom","encloseProblemsWith","endlongTitleText","endshortTitleText","eoeTotalOff","eoeTotalOn","eProbInsert","eqCommentsColor","eqCommentsColorBody","eqcustomdesignfalse","eqcustomdesigntrue","EQEcalculateAllTotals","eqeCurrProb","eqedbfalse","eqedbtrue","eqEmail","eqemargin","eqEndExamTotalColor","eqeonlinefalse","eqeonlinetrue","eqequesitemsep","eqequeslistparindent","eqequesparsep","eqequestopsep","eqeSetExamPageParams","eqeSumryHoriz","eqeSumryVert","eqevtranstotbox","eqexammargin","eqExamName","eqExamPageLayout","eqexcoverpagedesign","eqexheader","eqfititin","eqforinstrfalse","eqforinstrtrue","eqforpaperfalse","eqforpapertrue","eqfortextbookfalse","eqfortextbooktrue","eqglobalversionfalse","eqglobalversiontrue","eqlocalversionfalse","eqlocalversiontrue","eqobeylocalversionfalse","eqobeylocalversiontrue","eqpanelbox","eqpartsitemsep","eqSID","eqsolutionshook","equsecolorfalse","equsecolortrue","eqWLSpacing","eqWriteLineColor","eqwritetomarginsfalse","eqwritetomarginstrue","Exam","examAnsKeyLabel","examEmailLabel","examNameLabel","examNum","examSIDLabel","examSolnHeadFmt","exerSolnHeader","exerSolnInput","exerSolnsHeadnToc","exlabel","exlabelformat","exrtnlabelformat","exsllabelformat","exsllabelformatwp","exSolafterDefault","ExSolutionsSetfalse","ExSolutionsSettrue","fillin","fillinColor","fillineol","fillInFormatDefault","fillinWidth","fillTypeBlankLine","fillTypeDashLine","fillTypeDefault","fillTypeDots","fillTypeGrid","fillTypeHRule","firstitemfalse","firstitemtrue","firstPageOfExam","flbaselineskip","flfrstsplitfalse","flfrstsplittrue","flnum","flPageBreakMsg","forceEqualCellsfalse","forceEqualCellstrue","forceNoColor","ForceNoColorfalse","ForceNoColortrue","foritem","forproblem","forVersion","fvsizeskip","graylettersOff","graylettersOn","gridpgbrkfalse","gridpgbrktrue","iacvspace","ifAB","ifaebshowgrayletters","ifallowcircmc","ifanswerkey","ifcqIsActive","ifcqqs","ifcqSA","ifdisplayworkarea","ifDoNotRecordThisExam","ifeqcustomdesign","ifeqedb","ifeqeonline","ifeqforinstr","ifeqforpaper","ifeqfortextbook","ifeqglobalversion","ifeqlocalversion","ifeqobeylocalversion","ifequsecolor","ifeqwritetomargins","ifExSolutionsSet","iffirstitem","ifflfrstsplit","ifforceEqualCells","ifForceNoColor","ifgridpgbrk","ifisleadin","ifIsRespBox","ifkeepdeclaredvspacing","ifkeyalt","ifmakeExSlLocal","ifmakeQzSlLocal","ifnocorrections","ifNoSolutions","ifObeyPTsStar","ifOKToWriteExamData","ifoxfordcomma","ifpreview","ifsolutionsafter","ifsolutionsAtEnd","ifsolutionsonly","ifterminexchanged","iftherearequizsolutions","iftherearesolutions","ifthereissolution","ifuseNumForParts","ifuserectforms","ifVersionA","ifvspacewithsolns","ifwithinparts","ifwithinqsldoc","ifwithinsoldoc","includeexersolutions","insertContAnnot","instructionsColor","isleadinfalse","isleadintrue","IsRespBoxfalse","IsRespBoxtrue","item","itemPTsTxt","keepdeclaredvspacingfalse","keepdeclaredvspacingtrue","keyaltfalse","keyalttrue","keywords","lastPageOfExam","leadinitem","leftmarginPtsEaTxt","leftmarginPtsTxt","lfooteqe","lhead","lheadeqe","lheadSol","linkcolor","longTitleText","makeExSlLocalfalse","makeExSlLocaltrue","makeQzSlLocalfalse","makeQzSlLocaltrue","makeRoomForProb","maketitledesign","marginpointsboxtext","markEndFor","markerTotalFmt","markNumQsFor","markStartFor","nbaselineskip","nDoNum","nExam","nocorrectionsfalse","nocorrectionstrue","nolinkcolor","NoPoints","noSolnOpt","NoSolutions","NoSpaceToWork","NoTotals","nOutOfNum","noZeroTotals","nPagesOnExam","nPctDecPts","nQuesInExam","numPtsOfProblem","numVersions","obeyLocalRandomize","ObeyPTsStarfalse","ObeyPTsStartrue","OKToWriteExamDatafalse","OKToWriteExamDatatrue","OnBackOfPage","optsFillIn","optsMlTxtFld","OutOfNum","oxfordcommafalse","oxfordcommatrue","panelgap","panelheight","panelwidth","partsformat","partsitemsep","partsparsep","partstabcolsep","partstabrowsep","partstabtopsep","partstopsep","percentForPart","placeAtxy","placeCoverPageLogo","placeMarkerHere","pointLabel","pointsLabel","PointsOnBothSides","PointsOnLeft","PointsOnRight","popProblem","postExamSolnHead","prbDecPt","prbNumFmt","prbNumPrtsep","prbPrtsep","preExamSolnHead","previewfalse","previewtrue","priorexsectitle","priorexslinput","priorPageBreakMsg","priorworkareaCmds","probInMinipage","probInsertSoln","promoteNewPage","proofingsymbol","proofingsymbolColor","ptLabel","PTs","ptsLabel","pushProblem","qNewPage","quesNumColor","REF","renameSolnAfterTo","resetacvspace","resetSolnAfterToDefault","RESTOREPAR","rfooteqe","rhead","rheadeqe","rheadSol","rowsep","runExamFooter","runExamHeader","runExamHeaderSol","sameVspace","sectionColor","selectVersion","separationrule","separationruleOff","separationruleOn","ServerRetnMsg","setDefaultfvsizeskip","setFillLinesFmt","setMClabelsep","setMClabelsepDefault","setPartsWidth","setSolnMargins","settotalsbox","sExam","shortTitleText","shortVersionAtext","shortVersionBtext","shortwebsubject","showAllAnsAtEnd","solAtEndFormatting","solutionafterExCmds","SolutionsAfter","solutionsafterfalse","solutionsaftertrue","SolutionsAtEnd","solutionsAtEndfalse","solutionsAtEndtrue","solutionsonlyfalse","solutionsonlytrue","SpaceToWork","sqForms","sqLinks","subject","subjectColor","SubmitButtonLabel","SubmitInfo","summaryPointTotal","SummaryTotalsOff","SummaryTotalsOn","summaryTotalsTxt","tableadin","terminexchangedfalse","terminexchangedtrue","texorpdfstring","TF","theduedate","theeqpointsthispage","theGrandTotal","themarkerCnt","thepartno","therearequizsolutionsfalse","therearequizsolutionstrue","therearesolutionsfalse","therearesolutionstrue","thereissolutionfalse","thereissolutiontrue","thisterm","title","titleColor","totalForPart","totalsboxtext","TotalsOnLeft","TotalsOnRight","trackProblemsOff","trackProblemsOn","turnContAnnotOff","turnContAnnotOn","turnflanskeyOff","turnflanskeyOn","turnflnosolnsOff","turnflnosolnsOn","turnOnRandomize","university","universityColor","useCheckForProof","useCircForMC","useCircForProof","useCrossForProof","useCustomPartNames","useFillerDefault","useFillerLines","usenLineDimen","useNumForPartsfalse","useNumForPartstrue","useRectForMC","userectformsfalse","userectformstrue","useSavedAlts","useSavedAltsAns","useSavedAns","useSavedNumAns","useUIPartNames","useVspaceDimen","version","VersionAtext","VersionBtext","vspacewithkeyOff","vspacewithkeyOn","vspacewithsolnsfalse","vspacewithsolnstrue","wdthMlTxtFld","webArg","webauthor","webcopyrightyears","webemail","webkeywords","webnewpage","websubject","webtitle","webuniversity","webversion","withinpartsfalse","withinpartstrue","withinqsldocfalse","withinqsldoctrue","withinsoldocfalse","withinsoldoctrue","wlVspace","writeAllAnsAtEnd","writeToSolnFile","vA","vB","vC","vD","vE","aboveanswersSkip","abovepartshook","abovesqskip","aebChoiceAltFmt","aebTitleQuiz","aebtitleQuiz","afterCommentSkip","afterexamsepcode","afterInstrSkip","afterlabelhskip","aftershortquizskip","alphaParts","altSetSolnMargins","amtSpaceLeftOnPage","AnswerKey","answers","answersEndHook","applyleadinfix","applyparfixes","applyparfixesp","ARG","argi","argii","autocalcparts","autotabnewline","autotabOff","bChoiceLabel","bChoiceNumCols","beforeCommentSkip","beforeInstrSkip","belowpartshook","belowsqskip","bHideSolnIn","bIFFalseWrtSolns","bLeaveVspace","boPage","btwnExamSkip","btwnExamSkipAmt","bWebCustomize","cancelleadinfix","cancelparfixes","cancelparfixesp","cbfillineol","centerWidget","circProofingForCirc","coverpagesubject","coverpageUniversityFmt","cpCID","cpEnclNameAndID","cpNameAndID","cpNofbox","cprulelength","cpSetCIDWidth","cpSetHghtFrstLn","cpSetNameAndIDWidth","cpSumrybypages","cpSumrybyparts","cpUsefbox","cqFmtPasteQues","currExamName","currhideopt","currQuiz","dbMrk","declCopyQues","declCQPost","declCQPre","declCQQuesStr","declCQSolStr","decleqterminex","defaultpartsformat","defineEachAns","defineEachChoice","depthtodate","displayPointsOff","displayPointsOn","displayworkareaOff","displayworkareaOn","dpPtBox","eHideSolnIn","eIFFalseWrtSolns","endexerhook","endsolnexerhook","endsolnexerhookaux","endsqhook","endtitleMarker","eqAnd","eqargii","eqbothmargins","eqcenterWidget","eqCommonCmd","eqCQDeclarations","eqdashrulefill","eqdashruleVfill","eqdotrulefill","eqdotruleVfill","eqDriverName","eqDvipsone","eqeachLabel","eqeAEFormatting","eqedepth","eqeGrandTotal","eqeLW","eqemaketitle","eqeomarginbox","eqeomarginboxleft","eqeomarginboxright","eqePANELCUT","eqepanelheight","eqepanelwidth","eqeSolnItemMngt","eqetmplengtha","eqetmplengthb","eqeWrtExamTitleToSolns","eqexamargi","eqexamargii","eqexamCFG","eqexamdefReq","eqExamNumPagesSolns","eqExamPriorVspace","eqExamRunHead","eqexamsubject","eqexcoverpage","eqexerskip","eqExerSolnHeader","eqExerSolnHeaderList","eqExerSolnHeaderSngl","eqExerSolnTrailer","eqexlisttabheader","eqExSolFileName","eqFilterArg","eqgrii","eqgriii","eqi","eqleftmargin","eqleftmarginbox","eqMrkCpyArg","eqMrkSoln","eqpointLabel","eqpointsLabel","eqPriorVspace","eqptLabel","eqPTs","eqptsLabel","eqQuizType","eqQzQuesList","eqQzSolnTrailerHook","eqrightmarginbox","eqSolnExCmds","eqSolnForEqexam","eqSqSolnTrailer","eqSqSolnTrailerHook","eqtemptokena","eqtemptokenb","eqterminex","eqterminexDEF","eqthisenv","eqtmpcnta","eqtmplength","eqTopOfQslPage","eqTopOfSolnPage","eqTWSave","equalCellSizesOff","equalCellSizesOn","eqWriteLine","eqWriteLineBlankFill","eqWriteLineDashFill","eqWriteLineDashVFill","eqWriteLineDots","eqWriteLineFill","eqWriteLineVDots","eqWriteLineVFill","everyparShape","eWebCustomize","exambegdef","examenddef","exersolnheadhook","exerstar","exlabelformatwp","exlisttabheaderafterhook","exlisttabheaderpriorhook","expGT","exrtnlabelformatwp","exsecrunhead","exsectitle","exsectitletext","exsolafter","exsolafterDefault","exsolnonceonlytophook","FALSEACTIONii","FALSEACTIONiia","fieldName","fillerCustomBg","fillerLinesAlignDef","fillerLinesOnLeftMargin","fillineolNoCBMsg","fillineolTooLongMsg","fillinTotalHeight","fillLinesLineWidth","fillLinesNumFmt","filterFor","fleqnOff","fleqnOn","flextendedInput","flfboxrule","fliPartNo","flSeparateCutNames","forceNoColorSet","foritemSAVE","forleadinitem","fpAfterSolutionsSkip","ftbInputEqTextb","getDimSSPanel","getSpaceLeftOnPage","gExCommonCmd","gobbletoEndEXt","gobtodot","graylettersColor","gridHLineFill","gridIndentAdj","gridtypeselected","gridVLineFill","halfHtPtBox","halfWidth","hCommSpace","hideproofing","Hidesymbol","hidesymbol","hInstrSpace","hsc","hsi","htPtBox","idinfoHighlight","ifeqexamCFG","ifisOnline","ifkeyOrkeyalt","ifnosolutions","ignorePTsStar","importdljs","inclEXtFilter","includeexersolutionsi","includeexersolutionsii","includequizsolutions","includequizsolutionsi","includequizsolutionsii","inittabMark","InputExrSolnsLevel","inputRandomizeChoices","insertContent","insertGrayLetters","insertPointsBoxPDF","insertTotalsBoxPDF","insTxtFieldIdInfo","intPrt","isInExamEnv","isitleadin","isparshapeExpanded","isProbEnv","isProbStarEnv","isQZ","isREFstar","isSQZ","istabularexer","itemPTsEaTxt","itemPTsFormated","itemSAVE","itsExerParts","itsforleadinitem","labeleqquestionnoi","labeleqquestionnoii","labeleqquestionnoiii","lastPageTotal","lastparttotaled","leadinIndent","leadinIndentLength","leadinIndentPrtSep","leadinitemWarningStar","leavevspace","linkContentFormat","linkContentWrapper","ListOfSQuizNames","makeAnsEnvForSolnsAtEnd","makeDoNum","makeExSolnsLocalOff","makeExSolnsLocalOn","makeOutOfNum","makeQzSolnsLocalOff","makeQzSolnsLocalOn","makeRefsNums","makeVgrid","manualcalcparts","marginboxdesign","marginparafterhook","marginparpriorhook","marginpoints","marginpointtext","MCcolor","measurePtBoxHt","minVspacetabs","mrkForIns","nbaselineskipReset","needsModArith","neutralizeparfixes","newsolnspace","nextExamName","nlastItem","nLocalSelection","nLocalVersions","noExamTitleInSolns","normalSolnWrites","noSolnWrites","nPagesOfQues","nPagesOfSols","numberParts","numFirstPageOfExam","numLastPageOfExam","NUMPAGES","numpoints","numpointsEmpty","numShortCols","obeyPTsStar","oField","optionalpagematter","optionalPageMatter","optsCkBxf","optsCkBxl","optsRadioBtnf","optsRadioBtnl","oxfordCommaOff","oxfordCommaOn","panelGetDimen","parsetotals","partialspillovertotals","partialtotaleoe","partialtotalpg","partNames","partnoFmt","partshangamount","partsleadinIndent","PBS","pnpDflt","pointsAsText","pointsmarginparpush","PointsOnBoth","popEnvir","popiiictm","popquestions","postPNPAction","postSubmitJS","prevExamName","previewOn","priorexlabelheader","priorexskip","priorexsolafterList","priorexsolafterSngl","priorexsolafterTab","priorPNPAction","priorsqhook","priorSubmitJS","priorWorkAreaCmds","probpointseach","probstar","probvalue","processLabeledAns","prtsIndntSep","pushEnvir","pushquestions","qPostHeaderHook","quessolSkip","quizSolnHeader","qzPriorSolutionAfterHook","qzSolutionsAfterHook","RadioFieldSize","RecordThisExamOff","recoverDisplayBelow","Rect","removelastparskip","resetEXsolns","resetFillerCustomBg","resetFldWdth","resetMClabelsep","resetQZtsolns","resettabMark","restoreFLTypeDefault","restorejustify","restoreJustifyOff","restoreJustifyOn","restoreNormalSolns","ReturnTo","reverseVSWS","rlspar","rowsepDefault","savedAltFmt","savedifeqforpaper","savedifpreview","saveIFEQE","selectedMC","selVersion","setBtwnExamSkip","setDefaultnbaselineskip","setDefShortQuizLabelName","setfillinDefaults","setmulticolprob","setPrbSolnAftrIndent","setsolnspace","setTabulrSolnEnv","SETTEMPBOXi","SETTEMPBOXii","shortwebtitle","showproofing","SHOWTEMPBOXi","solnhspace","solnItemMngt","solnsafterSkip","solnsafterSkipAmt","solnspace","solutionparshape","solutionsafterSkip","splitsolutioni","splitsolutionii","splitsolutioniii","sqhspace","sqlabel","sqPostHeaderHook","sqsllabel","sqslrtnlabel","sqsolafter","sqsolafterhspace","sqstar","sqTabPos","sqtabsep","stripeqExam","styleComm","styleInstr","SubmitButton","sumryAnnots","symbolchoice","tabControlOff","tabControlOn","tableadinWarningStar","tablrIndent","tempexp","textorpdfstring","thebackofpage","theeqexno","theeqpointsofar","theeqpointvalue","theeqquestionnoii","theeqquestionnoiii","thePartNames","thequestionno","thequizno","thisexamlabel","thisUFexamlabel","topofpartshook","topofprobhook","topofprobstarhook","totalsbox","totalsboxleft","totalsboxright","totHtPtBox","TRUEACTIONi","TRUEACTIONia","tweakBreakPoint","ulcustom","useCircForMS","useEXtFilter","useForms","useLinks","useRectForMS","versionLabel","vpwsSimulateNoSolns","vspaceFiller","vspaceFillerDefault","vspaceFillerLines","vspaceFmt","webtempboxi","webtempboxii","widthOfParts","widthOfPartsBox","widthtpboxes","workareaCmds","workareadepth","workareasb","workareaVadj","writeBeginEqeQuestions","writeEndEqeQuestions","writelastpage","writeToExSolns","writeToQzSolns","writetotalstoaux","writeWithSolDocTrue","wrtExamTitleInSolns"]}
-,
-"eqexpl.sty":{"envs":["eqexpl"],"deps":["calc.sty","etoolbox.sty","xparse.sty"],"cmds":["eqexplSetSpace","eqexplSetIntro","eqexplSetDelim","eqexplSetItemWidth","eqexplSetItemAlign","item","eqexplDelim","eqexplIntro","eqexplItemAlign","eqexplItemWidth","eqexplSpaceWidth","itemWidth","leftSideWidth","olditem"]}
-,
-"eqlist.sty":{"envs":["eqlist","eqlist*","Eqlist","Eqlist*"],"deps":["eqparbox.sty"],"cmds":["longitem","eqlistinit","eqliststarinit","eqlistinitpar","eqlistlabel","eqlistauto","eqlistnoauto"]}
-,
-"eqname.sty":{"envs":{},"deps":{},"cmds":["eqname"]}
-,
-"eqnarray.sty":{"envs":["equationarray","equationarray*"],"deps":["array.sty"],"cmds":["yesnumber","eqnnum"]}
-,
-"eqnnumwarn.sty":{"envs":{},"deps":["etoolbox.sty","xparse.sty","calc.sty","environ.sty","mathtools.sty","tikz.sty","tikzlibrarycd.sty"],"cmds":["intomargin","noeqnnumwarn","stest","smin","smax"]}
-,
-"eqparbox.sty":{"envs":["eqminipage"],"deps":["array.sty","environ.sty"],"cmds":["eqparbox","eqmakebox","eqframebox","eqsavebox","eqboxwidth","eqsetminwidth","eqsetmaxwidth","eqsetminwidthto","eqsetmaxwidthto"]}
-,
-"erewhon.sty":{"envs":{},"deps":["fontenc.sty","textcomp.sty","mweights.sty","xstring.sty","ifthen.sty","scalefnt.sty","etoolbox.sty","fontaxes.sty","xkeyval.sty"],"cmds":["defigures","destyle","infigures","lfstyle","nufigures","nustyle","osfstyle","sufigures","swshape","textfrac","textin","textinferior","textlf","textosf","textsu","textsuperior","textde","textdenominator","textnu","textnumerator","textruble","texttlf","texttosf","tlfstyle","tosfstyle","useosf","useproportional","DH","NG","dj","ng","k","guillemotleft","guillemotright","guilsinglleft","guilsinglright","quotedblbase","quotesinglbase","textquotedbl","DJ","th","TH","dh","Hwithstroke","hwithstroke","textogonekcentered","guillemetleft","guillemetright"]}
-,
-"errata.sty":{"envs":["erratum","errata"],"deps":["keyval.sty"],"cmds":["ifmargins","marginstrue","marginsfalse","iffoots","footstrue","footsfalse","ifrecord","recordtrue","recordfalse","erratumAdd","erratumDelete","erratumReplace","erratumItem","printerrata","PrintErrata","eAdd","eDelete","eReplace","ErratumRef","theerratum","ednotemessage"]}
-,
-"ert-l.cls":{"envs":{},"deps":["s-amsart.cls"],"cmds":["AMSPPS","AMSPPShref","CMP"]}
-,
-"esami.sty":{"envs":["sistema","test","questions","esdb","answers","solution","problem","problem*","parts","problemmp","problemmp*","domanda","risposta","tabella","workarea","shortquiz","exercise*"],"deps":["graphicx.sty","enumerate.sty","fp.sty","currfile.sty","array.sty","environ.sty","ifthen.sty","xargs.sty","multicol.sty","amssymb.sty","xcolor.sty","amsmath.sty","pstricks.sty","pstricks-add.sty","auto-pst-pdf.sty"],"cmds":["annu","arcsen","arctg","D","dif","dlim","dsum","eps","istruzionii","istruzioniii","me","oldepsilon","oldphi","oldrho","oldtheta","punteggio","sen","stringasol","testa","tg","vect","newproblem","esercizi","selectrandomlyn","esercizidb","PTs","bChoices","eChoices","Ans","eAns","eFreeze","fillin","matching","pair","selectallproblems","esercizio","FPsetpar","FPsv","FPval","sempli","semplix","esempli","sempliz","simpsqrt","RandS","FPsignpol","estrai","randestrai","estraialfa","estraies","randestraies","longdate","shortdate","thevers","stepvers","thenomefile","permuta","testversioni","closevers","closeverssols","stepverssols","fillinproblem","newfillinproblem","seme","semeex","aboveanswersSkip","Acapo","afterlabelhskip","aftershortquizskip","bChoiceNumCols","bLeaveVspace","cancella","cartella","checkpoints","currentrowstyle","dbname","dbtemp","defitem","endsolnexerhook","endsolnexerhookaux","esexerskip","esexlisttabheader","esPriorVspace","esPTs","examenddef","exerstar","exlabel","exlabelformat","exlabelformatwp","exlabelsol","exsolafter","finqui","firstpassfalse","firstpasstrue","icount","iffirstpass","inizio","io","labelesquestionnoi","labelesquestionnoii","labelesquestionnoiii","leavevspace","linkContentFormat","linkContentWrapper","loe","loopCnt","marginpoints","marginpointsboxtext","maxLoopLimit","mydate","mylabelsep","newsolnspace","nome","numcompiti","numShortCols","pagename","parametri","params","PBS","PointsOnRight","prendii","prendiii","prendiiii","prendiiv","prendiv","prendivi","prendivii","prendiviii","priorexskip","probchosen","problabel","probnumber","profname","proofingsymbol","PTsHook","punti","rowsep","rowsepDefault","rowstyle","sameVspace","sceglii","scegliii","scegliiii","scegliiv","scegliv","sceglivi","sceglivii","scegliviii","selectrandomly","setsolnspace","shuffle","shufflees","solnhspace","sols","solutionsAfterSkip","solutionsafterSkip","solutionsname","sqlabel","studfirstname","studid","studlastname","studsignname","theesquestionnoi","theesquestionnoii","theesquestionnoiii","thequestionno","versionname","workareadepth","workareasb","randomi","nextrandom","setrannum","setrandim","pointless","PoinTless","ranval"]}
-,
-"esindex.sty":{"envs":{},"deps":{},"cmds":["esindex","esindexactual","esindexsort","everyesindex","ignorewords","esindexexpandkey","esindexexpandkeys","esindexexpandsubkey","esindexexpandsubsubkey","esindexkey","esindexlanguage","esindexlastchar","esindexreplace","esindexreplacesub","esindexreplacesubsub","esindexsubkey","esindexsubsubkey"]}
-,
-"esint.sty":{"envs":{},"deps":{},"cmds":["int","iint","iiint","iiiint","idotsint","oint","oiint","varoiint","sqint","sqiint","ointctrclockwise","ointclockwise","varointclockwise","varointctrclockwise","fint","landupint","landdownint","iintop","iiintop","iiiintop","dotsintop","dotsint","oiintop","sqintop","sqiintop","ointctrclockwiseop","ointclockwiseop","varointclockwiseop","varointctrclockwiseop","fintop","varoiintop","landupintop","landdownintop"]}
-,
-"esk.sty":{"envs":["esk","eskdef","eskfile"],"deps":["kvsetkeys.sty","verbatim.sty"],"cmds":["eskwrite","eskprelude","eskaddtoprelude","eskglobals","eskaddtoglobals","eskwritetoken","theeskfig","theeskfile","RCS","endRCS","esk","endesk","eskdef","endeskdef","eskfile","endeskfile","filedate","filemaintainer","filename","filerevision","fileversion","futurenospacelet","leftparanthesis","next","nexttoken","stepone","steptwo","stepthree","stoken"]}
-,
-"eso-pic.sty":{"envs":{},"deps":["keyval.sty"],"cmds":["AddToShipoutPictureBG","AddToShipoutPicture","AddToShipoutPictureFG","ClearShipoutPictureBG","ClearShipoutPicture","LenToUnit","gridSetup","AtPageUpperLeft","AtPageLowerLeft","AtPageCenter","AtTextUpperLeft","AtTextLowerLeft","AtTextCenter","AtStockUpperLeft","AtStockLowerLeft","AtStockCenter","ProcessOptionsWithKV"]}
-,
-"esrelation.sty":{"envs":{},"deps":{},"cmds":["relationrightproject","relationleftproject","relationlifting","restrictwand","restrictwandup","restrictbarb","restrictbarbup","restrictmallet","restrictmalletup"]}
-,
-"esstixbb.sty":{"envs":{},"deps":["xkeyval.sty"],"cmds":["mathbb"]}
-,
-"esstixfrak.sty":{"envs":{},"deps":["xkeyval.sty"],"cmds":["mathfrak"]}
-,
-"esvect.sty":{"envs":{},"deps":{},"cmds":["vv","montraita","montraitd","relbareda","relbaredd","vvstar"]}
-,
-"etaremune.sty":{"envs":["etaremune"],"deps":["xkeyval.sty"],"cmds":{}}
-,
-"etextools.sty":{"envs":{},"deps":["etex.sty","etoolbox.sty","letltxmacro.sty"],"cmds":["expandaftercmds","expandnext","expandnexttwo","ExpandAftercmds","ExpandNext","ExpandNextTwo","noexpandcs","noexpandafter","thefontname","showcs","showthecs","meaningcs","ifdefcount","ifdeftoks","ifdefskip","ifdefmuskip","ifdefchar","ifdefmathchar","avoidvoid","avoidvoidcs","ifsingletoken","ifOneToken","ifsinglechar","ifOneChar","ifOneCharWithBlanks","iffirsttoken","iffirstchar","ifiscs","detokenizeChars","protectspace","ifempty","xifempty","ifnotempty","xifblank","ifnotblank","deblank","ifstrcmp","xifstrequal","xifstrcmp","ifcharupper","ifcharlower","ifuppercase","iflowercase","ifstrmatch","ifstrdigit","ifstrnum","DeclareStringFilter","futuredef","AfterGroup","AfterAssignment","naturalloop","ifintokslist","ifincharlist","gettokslistindex","getcharlistindex","gettokslistcount","gettokslisttoken","getcharlistcount","getcharlisttoken","DeclareCmdListParser","breakloop","csvloop","listloop","toksloop","forcsvloop","fortoksloop","forlistloop","csvlistadd","csvlistgadd","csvlisteadd","csvlistxadd","csvtolist","tokstolist","listtocsv","csvtolistadd","tokstolistadd","ifincsvlist","xifincsvlist","listdel","listgdel","listedel","listxdel","csvdel","csvgdel","csvedel","csvxdel","toksdel","toksgdel","toksedel","toksxdel","getlistindex","getcsvlistindex","interval","locinterplin"]}
-,
-"etoc.sty":{"envs":{},"deps":["kvoptions.sty","multicol.sty"],"cmds":["locallistoffigures","etoclocallistoffigureshook","locallistoftables","etoclocallistoftableshook","etocsetup","tableofcontents","localtableofcontents","etocclasstocstyle","etocetoclocaltocstyle","etocusertocstyle","etocstandardlines","etoctoclines","etocdefaultlines","etocstoretocstyleinto","etocstorelinestylesinto","etocstorethislinestyleinto","etocifislocal","etocifislocaltoc","etocifislocallof","etocifislocallot","etocifmaintoctotoc","etociflocaltoctotoc","etociflocalloftotoc","etociflocallottotoc","etocifisstarred","etoclocalheadtotoc","etocglobalheadtotoc","etoclevel","etocifunknownlevelTF","etocdivisionnameatlevel","etocetoclocaltocmaketitle","etocetoclistoffiguresmaketitle","etocetoclistoftablesmaketitle","localcontentsname","locallistfigurename","locallisttablename","etocclasslocaltocmaketitle","etocclasslocallofmaketitle","etocclasslocallotmaketitle","etocclassmaintocaddtotoc","etocclasslocaltocaddtotoc","etocclasslocallofaddtotoc","etocclasslocallotaddtotoc","etocsettocstyle","etocarticlestyle","etocarticlestylenomarks","etocreportstyle","etocreportstylenomarks","etocbookstyle","etocbookstylenomarks","etocmemoirstyle","etocscrartclstyle","etocscrreprtstyle","etocscrbookstyle","etoctocloftstyle","etocinline","etocnopar","etocdisplay","etocmulticolstyle","etocmulticol","etoclocalmulticol","etoctocstyle","etoctocstylewithmarks","etoctocstylewithmarksnouc","etocruledstyle","etocruled","etoclocalruled","etocframedstyle","etocframed","etoclocalframed","etocabovetocskip","etocbelowtocskip","etoccolumnsep","etocmulticolsep","etocmulticolpretolerance","etocmulticoltolerance","etocdefaultnbcol","etocinnertopsep","etoctoprule","etoctoprulecolorcmd","etocinnerleftsep","etocinnerrightsep","etocinnerbottomsep","etocleftrule","etocrightrule","etocbottomrule","etocleftrulecolorcmd","etocrightrulecolorcmd","etocbottomrulecolorcmd","etocbkgcolorcmd","etocframedmphook","etocoldpar","etocaftertitlehook","etocaftercontentshook","etocbeforetitlehook","etocaftertochook","etocsetstyle","etocname","etocnumber","etocpage","etocskipfirstprefix","etociffirst","etocxiffirst","etocifnumbered","etocxifnumbered","etocthename","etocthenumber","etocthepage","etoclink","etocthelinkedname","etocthelinkednumber","etocthelinkedpage","etocthelink","etocsetlevel","etocglobaldefs","etoclocaldefs","etocfontminustwo","etocfontminusone","etocfontzero","etocfontone","etocfonttwo","etocfontthree","etocsepminustwo","etocsepminusone","etocsepzero","etocsepone","etocseptwo","etocsepthree","etocminustwoleftmargin","etocminustworightmargin","etocminusoneleftmargin","etocminusonerightmargin","etocbaselinespreadminustwo","etocbaselinespreadminusone","etocbaselinespreadzero","etocbaselinespreadone","etocbaselinespreadtwo","etocbaselinespreadthree","etoctoclineleaders","etocabbrevpagename","etocpartname","etocbookname","etoctableofcontents","etockeeporiginaltableofcontents","localtableofcontentswithrelativedepth","invisibletableofcontents","invisiblelocaltableofcontents","etocsettocdepth","etocsetnexttocdepth","etocimmediatesettocdepth","etocobeytoctocdepth","etocignoretoctocdepth","etocdepthtag","etocimmediatedepthtag","etocsettagdepth","etocobeydepthtags","etocignoredepthtags","etocsetlocaltop","etocimmediatesetlocaltop","etoclocaltop","etocchecksemptiness","etocdoesnotcheckemptiness","etocnotocifnotoc","etocifwasempty","etocxifwasempty","etoctoccontentsline","etocimmediatetoccontentsline","etocclasslocalperhapsaddtotoc","etoclocaltableofcontentshook","etocmarkbothnouc","etocmarkboth","etocoriginaltableofcontents","etocsettoclineforclasstoc","etocsettoclineforclasslistof","etoctocloftlocalperhapsaddtotoc","etoctocbibindstyle","etocstandarddisplaystyle","etocmemoirtoctotocfmt"]}
-,
-"etoolbox.sty":{"envs":{},"deps":{},"cmds":["newrobustcmd","renewrobustcmd","providerobustcmd","robustify","protecting","defcounter","deflength","AfterPreamble","AtEndPreamble","AfterEndPreamble","AfterEndDocument","AtBeginEnvironment","AtEndEnvironment","AfterEndEnvironment","BeforeBeginEnvironment","csdef","csgdef","csedef","csxdef","protected","cslet","letcs","csletcs","csuse","undef","gundef","csundef","csgundef","csmeaning","csshow","numdef","numgdef","csnumdef","csnumgdef","dimdef","dimgdef","csdimdef","csdimgdef","gluedef","gluegdef","csgluedef","csgluegdef","mudef","mugdef","csmudef","csmugdef","expandonce","csexpandonce","appto","gappto","eappto","xappto","csappto","csgappto","cseappto","csxappto","preto","gpreto","epreto","xpreto","cspreto","csgpreto","csepreto","csxpreto","patchcmd","ifpatchable","apptocmd","pretocmd","tracingpatches","newbool","providebool","booltrue","boolfalse","setbool","ifbool","notbool","newtoggle","providetoggle","toggletrue","togglefalse","settoggle","iftoggle","nottoggle","ifdef","ifcsdef","ifundef","ifcsundef","ifdefmacro","ifcsmacro","ifdefparam","ifcsparam","ifdefprefix","ifcsprefix","ifdefprotected","ifcsprotected","ifdefltxprotect","ifcsltxprotect","ifdefempty","ifcsempty","ifdefvoid","ifcsvoid","ifdefequal","ifcsequal","ifdefstring","ifcsstring","ifdefstrequal","ifcsstrequal","ifdefcounter","ifcscounter","ifltxcounter","ifdeflength","ifcslength","ifdefdimen","ifcsdimen","ifstrequal","ifstrempty","ifblank","notblank","ifnumcomp","ifnumequal","ifnumgreater","ifnumless","ifnumodd","ifdimcomp","ifdimequal","ifdimgreater","ifdimless","ifboolexpr","ifboolexpe","whileboolexpr","unlessboolexpr","DeclareListParser","docsvlist","listbreak","forcsvlist","listadd","listgadd","listeadd","listxadd","listcsadd","listcsgadd","listcseadd","listcsxadd","listremove","listgremove","listcsremove","listcsgremove","dolistloop","dolistcsloop","forlistloop","forlistcsloop","ifinlist","xifinlist","ifinlistcs","xifinlistcs","rmntonum","ifrmnum"]}
-,
-"etruscan.sty":{"envs":{},"deps":{},"cmds":["etrfamily","textetr","Aalpha","Abeta","Agamma","Adelta","Aepsilon","Adigamma","Azeta","Aeta","Atheta","Aiota","Akappa","Alambda","Amu","Anu","Axi","Aomicron","Api","Aesade","Aqoph","Arho","Asigma","Atau","Aupsilon","Achi","Aphi","Apsi","Avau","ARalpha","ARbeta","ARgamma","ARdelta","ARepsilon","ARdigamma","ARzeta","AReta","ARtheta","ARiota","ARkappa","ARlambda","ARmu","ARnu","ARxi","ARomicron","ARpi","AResade","ARqoph","ARrho","ARsigma","ARtau","ARupsilon","ARchi","ARphi","ARpsi","ARvau","translitetr","translitetrfont"]}
-,
-"eucal.sty":{"envs":{},"deps":{},"cmds":["EuScript","CMcal","mathscr"]}
-,
-"euclideangeometry.sty":{"envs":{},"deps":["curve2e.sty"],"cmds":["Alfa","ArgBis","Aux","Auy","AxisFromAxisAndFocus","AxisOf","B","Cdue","Ce","CI","CircleThrough","CircleWithCenter","Circlewithcenter","Cuno","Den","Dird","DistanceOfPoint","EllipseWithFocus","ellisse","EllisseConFuoco","EllisseSteiner","EUGpolyvector","EUGpreviouspoint","EUGsplitArgs","Int","IntersectionOfLines","IntersectionOfSegments","IntersectionsOfLine","IntPd","IntPu","K","LegFromHypotenuse","MainAxisFromAxisAndFocus","Md","MiddlePointOf","Mt","Numx","Numy","Pq","Pt","R","Rdue","RegPolygon","Runo","Sangdue","ScaleVector","Segment","SegmentArg","SegmentCenter","SegmentLength","Sellisse","setfontsize","ShearVect","SteinerEllipse","SymmetricalPointOf","TCIdiffR","ThreePointCircle","ThreePointCircleCenter","TriangleBarycenter","TriangleBisectorBase","TriangleCircumcenter","TriangleCircummcircle","TriangleHeightBase","TriangleIncenter","TriangleMedianBase","TriangleOrthocenter","TwoCirclesIntersections","Ud","Uu","VScale","Xellisse","XSellisse","Ys","ZTesto"]}
-,
-"euflag.sty":{"envs":{},"deps":["xcolor.sty","graphicx.sty","amssymb.sty"],"cmds":["euflag","eustar","makestars","T"]}
-,
-"eufrak.sty":{"envs":{},"deps":{},"cmds":["EuFrak","mathfrak"]}
-,
-"eukdate.sty":{"envs":{},"deps":{},"cmds":["weekday","monthname"]}
-,
-"eukleides.sty":{"envs":["packages","eukleides"],"deps":["ifpdf.sty","moreverb.sty","graphicx.sty","pstricks.sty"],"cmds":["TRS","Simple","Double","Triple","Cross","Dot","Dash","DoubleDash","TripleDash","DoubleArc","TripleArc","Right","EukleidesLoaded"]}
-,
-"euler-math.sty":{"envs":{},"deps":["iftex.sty","unicode-math.sty","xkeyval.sty"],"cmds":["backepsilon","bigstar","blacktriangle","blacktriangledown","cuberoot","cuberootsign","digamma","doublebarwedge","downdasharrow","eqqslantgtr","eqqslantless","Finv","fourthroot","fourthrootsign","Game","geqqslant","intextender","Join","leftcurvedarrow","leftdasharrow","leqqslant","lgblkcircle","lgblksquare","lgwhtsquare","mdblkcircle","mdblkdiamond","mdblklozenge","mdblksquare","mdlgblkdiamond","mdlgblklozenge","mdlgwhtdiamond","mdsmblkcircle","mdsmblksquare","mdsmwhtcircle","mdsmwhtsquare","mdwhtcircle","mdwhtdiamond","mdwhtlozenge","mdwhtsquare","pitchfork","precapprox","preceqq","precnapprox","precneq","precneqq","rightcurvedarrow","rightdasharrow","smallblacktriangleleft","smallblacktriangleright","smalltriangleleft","smalltriangleright","smblkdiamond","smblklozenge","smwhtlozenge","subseteqq","subsetneqq","succapprox","succeqq","succnapprox","succneq","succneqq","supseteqq","supsetneqq","triangledown","upand","upbackepsilon","updasharrow","updigamma","vartriangle","vysmblksquare","vysmwhtsquare","wedgebar","Zbar","muphbar","varemptyset","mbfwp","mbfdotlessi","mbfdotlessj","mbfhbar","lesseqslantgtr","gtreqslantless","lesseqqslantgtr","gtreqqslantless","nleqqslant","ngeqqslant","widearc","overrightarc","circledR","circledS","diagup","diagdown","shortmid","shortparallel","nshortmid","nshortparallel","lvertneqq","gvertneqq","nleqslant","ngeqslant","nleqq","ngeqq","varsubsetneq","varsupsetneq","nsubseteqq","nsupseteqq","varsubsetneqq","varsupsetneqq","npreceq","nsucceq","centerdot","restriction","doteqdot","doublecup","doublecap","llless","gggtr","circlearrowleft","circlearrowright","lozenge","blacklozenge","square","blacksquare","dashleftarrow","dashrightarrow","ntriangleleft","ntriangleright","varpropto","thicksim","thickapprox","smallsmile","smallfrown","lhd","rhd","unlhd","unrhd","leadsto","Box","Diamond","fileversion","filedate","NEUtoks"]}
-,
-"euler.sty":{"envs":{},"deps":{},"cmds":["mathfrak","MathOldstyle","mathscr","TextOldstyle","frak","scr","ifCorkEncoding","CorkEncodingtrue","CorkEncodingfalse","fileversion","filedate"]}
-,
-"eulerpx.sty":{"envs":{},"deps":["amsmath.sty","xkeyval.sty","newpxmath.sty"],"cmds":["mathfrak","varmathfrak","mathscr","varmathscr","varaleph","varsum","filedate","fileversion"]}
-,
-"eulervm.sty":{"envs":{},"deps":{},"cmds":["mathbold","upOmega","upDelta","hslash","mathcomma","domathcomma"]}
-,
-"euroitc.sty":{"envs":{},"deps":["keyval.sty","ifthen.sty"],"cmds":["euro","sanseuro","serifeuro","ProcessOptionsWithKV"]}
-,
-"europasscv-bibliography.sty":{"envs":{},"deps":["biblatex-ext-tabular.sty","longtable.sty"],"cmds":["ecvbibhighlight","defecvbibtabulartwocolumn","lastname","firstname","firstinit","bibnamedelima","bibnamedelimi"]}
-,
-"europasscv.cls":{"envs":["europasscv","ecvitemize","ecvenumerate"],"deps":["lastpage.sty","iftex.sty","inputenc.sty","fontenc.sty","array.sty","fancyhdr.sty","xcolor.sty","url.sty","soul.sty","setspace.sty","geometry.sty","textcomp.sty","enumitem.sty","hyperref.sty","colortbl.sty","graphicx.sty","xparse.sty","substr.sty","keyval.sty","xstring.sty","xifthen.sty","showframe.sty"],"cmds":["convertstring","difflength","ecladdressee","eclcitydatesubject","eclclosingsalutation","eclIconwidth","eclitem","eclmaincontent","eclopeningsalutation","eclpersonalinfo","eclsignature","ecvaddress","ecvBasic","ecvbigitem","ecvblueitem","ecvbluenormalstyle","ecvbluestyle","ecvbullet","ecvcoloredtitle","ecvColSep","ecvcurrvitae","ecvdateofbirth","ecvdigitalcompetence","ecvemail","ecvExtraRowHeight","ecvfax","ecvfont","ecvfootername","ecvfootnote","ecvgender","ecvgithubpage","ecvgitlabpage","ecvgitpage","ecvhighlight","ecvhighlightcell","ecvhomepage","ecvim","ecvIndependent","ecvitem","ecvlangrow","ecvlanguage","ecvlanguagecertificate","ecvlanguagefooter","ecvlanguageheader","ecvlargenormalstyle","ecvLargenormalstyle","ecvlastlanguage","ecvLeftColumnWidth","ecvlinkedinpage","ecvLogoOffset","ecvLogoWidth","ecvmobile","ecvmothertongue","ecvname","ecvnationality","ecvNoHorRule","ecvorcid","ecvpage","ecvpersonalinfo","ecvpicture","ecvpictureleft","ecvpictureright","ecvProficient","ecvRuleWidth","ecvsection","ecvsectionstyle","ecvtelephone","ecvtitle","ecvTitleKern","ecvtitlelevel","ecvtitlestyle","ecvupdatecurrentskip","ecvWithHorRule","ecvworkphone","makesub","newecvitemize","processlinks","readwords","selectecvfont","toemail","tourl","ecvAOne","ecvATwo","ecvBOne","ecvBTwo","ecvCEF","ecvCOne","ecvCTwo","ecvfirstname","ecvlastname","DH","dh","dj","DJ","guillemetleft","guillemetright","guillemotleft","guillemotright","guilsinglleft","guilsinglright","Hwithstroke","hwithstroke","k","NG","ng","quotedblbase","quotesinglbase","textogonekcentered","textquotedbl","th","TH"]}
-,
-"europecv.cls":{"envs":["europecv"],"deps":["ucs.sty","inputenc.sty","array.sty","longtable.sty","fancyhdr.sty","etoolbox.sty","hyperref.sty","totpages.sty","booktabs.sty"],"cmds":["ecvdate","ecvname","ecvfootername","ecvfirstname","ecvlastname","ecvaddress","ecvfax","ecvtelephone","ecvemail","ecvprofessional","ecvpec","ecvhomepage","ecvskype","ecvmatrixriot","ecvyoutube","ecvnationality","ecvdateofbirth","ecvgender","ecvpicture","ecvbeforepicture","ecvafterpicture","ecvspace","ecvpersonalinfo","ecvitem","ecvmothertongue","ecvlanguageheader","ecvlanguagefooter","ecvlanguage","ecvlastlanguage","ecvCEF","ecvAOne","ecvATwo","ecvBOne","ecvBTwo","ecvCOne","ecvCTwo","ecvdisplayFootNoteCounter","ecvdisplayConferencePublications","ecvdisplayBookChapterPublications","ecvdisplayReferredJournalsPublications","ecvdisplayWorkshops","ecvdisplayPosters","ecvdisplayResearchProjects","ecvdisplayAwards","ecvrefFootNoteCounter","ecvrefConferencePublications","ecvrefBookChapterPublications","ecvrefReferredJournalsPublications","ecvrefWorkshops","ecvrefPosters","ecvrefResearchProjects","ecvrefAwards","ecvfootnote","ecvpage","ecvWithHorRule","ecvNoHorRule","ecvRuleWidth","ecvExtraRowHeight","ecvColSep","ecvFlagWidth","ecvLogoWidth","ecvLogoOffset","ecvLeftColumnWidth","ecvTitleKern","draweuropasslogo","draweuropeflag","ecvarg","ecvbullet","ecvdrawpicture","ecvrefWorkshopsPublications","ecvsection","myhyperlink","oldhypertarget","theAwards","theBookChapterPublications","theConferencePublications","theFootNoteCounter","thePosters","theReferredJournalsPublications","theResearchProjects","theWorkshops"]}
-,
-"europs.sty":{"envs":{},"deps":["ifthen.sty"],"cmds":["EURtm","EURhv","EURcr","EUR","EURofc"]}
-,
-"eurosym.sty":{"envs":{},"deps":{},"cmds":["euro","EUR","eurobars","eurobarsnarrow","eurobarswide","geneuro","geneuronarrow","geneurowide","officialeuro"]}
-,
-"euscript.sty":{"envs":{},"deps":{},"cmds":["EuScript","CMcal","mathscr"]}
-,
-"everyhook.sty":{"envs":{},"deps":["svn-prov.sty","etoolbox.sty"],"cmds":["PushPreHook","PopPreHook","PushPostHook","PopPostHook","SavePreHook","SavePostHook","RestorePreHook","RestorePostHook","ClearPreHook","ClearPostHook"]}
-,
-"exaccent.sty":{"envs":{},"deps":{},"cmds":["upperaccent","Upperaccent","loweraccent","Loweraccent"]}
-,
-"exam-n.cls":{"envs":["question","solution","questiondata","mcq"],"deps":["babel.sty","amsmath.sty","siunitx.sty","xcolor.sty","ifpdf.sty","fancyhdr.sty","mathptm.sty","times.sty","fontenc.sty","mathtime.sty","mtpro2.sty","textcomp.sty","stix2.sty","helvet.sty"],"cmds":["DH","dh","guillemotleft","guillemotright","guilsinglleft","guilsinglright","k","quotedblbase","quotesinglbase","textdivide","textlogicalnot","textmultiply","textplusminus","textquotedbl","textquotedblbase","textquotesinglbase","textspace","TH","th","dj","DJ","guillemetleft","guillemetright","Hwithstroke","hwithstroke","NG","ng","textogonekcentered","italicpi","ifbigfont","bigfonttrue","bigfontfalse","QuestionNumberChecksOff","answer","multiplechoiceanswers","includequestion","partmarks","comment","shout","leftnudge","questionpreamble","exambanner","universitycoursecode","schoolcoursecode","degreedescriptions","coursetitle","paperident","examdate","examtime","rubric","norubric","baserubric","numquestions","BSc","MSci","MSc","MA","MEng","BEng","dd","ddd","Diffl","Partial","e","units","constantssheet","OverrideFormatting","FormatPartMarks","FormatPartNumber","StylePartNumber","FormatQuestionNumber","iffussydescription","fussydescriptiontrue","fussydescriptionfalse","defaultpartmarkscategory","RequiredMetadata","CheckExamMetadata","CheckTotalQuestions","ClosingText","formatcontinuations","highlighted","marginsize","markgoal","marktotal","theanswerpartnumber","thepartnumber","thequestionnumber","UniLogo","WriteLastPageLabel","captionsenglish","dateenglish","extrasenglish","noextrasenglish","englishhyphenmins","britishhyphenmins","americanhyphenmins","prefacename","bibname","chaptername","enclname","ccname","headtoname","pagename","seename","alsoname","proofname","glossaryname"]}
-,
-"exam-randomizechoices.sty":{"envs":["randomizechoices","randomizeoneparchoices","randomizecheckboxes","randomizeoneparcheckboxes"],"deps":["environ.sty","etoolbox.sty","pgffor.sty"],"cmds":["setrandomizerseed","printkeytable","keylistquestionname","keylistkeyname","savekeylist","writekeylist"]}
-,
-"exam-zh-chinese-english.sty":{"envs":["select","lineto","material","poem","writingbox"],"deps":["expl3.sty","tcolorbox.sty","tcolorboxlibrarymost.sty","varwidth.sty"],"cmds":["linelistset","lineconnect","zhu"]}
-,
-"exam-zh-choices.sty":{"envs":["choices"],"deps":["expl3.sty","xparse.sty"],"cmds":["setchoices","AddChoicesCounter"]}
-,
-"exam-zh-font.sty":{"envs":{},"deps":["expl3.sty","xparse.sty","unicode-math.sty","filehook.sty","etoolbox.sty"],"cmds":["bm","square","blacksquare","checkmark"]}
-,
-"exam-zh-question.sty":{"envs":["question","problem","solution"],"deps":["expl3.sty","xparse.sty","amsthm.sty","tcolorbox.sty","tcolorboxlibrarymost.sty","xeCJKfntef.sty","linegoal.sty","tikzlibraryshapes.misc.sty"],"cmds":["questionsetup","paren","AddQuestionCounter","circlednumber","tikzcirclednumber","fillin","fillinsetup","AddFillinCounter","score"]}
-,
-"exam-zh-symbols.sty":{"envs":{},"deps":["expl3.sty","tikz.sty"],"cmds":["eu","upe","iu","upi","uppi","paralleleq","subset","nsubset","subseteq","nsubseteq","subsetneqq","nsubsetneqq","supset","nsupset","supseteq","nsupseteq","supsetneqq","nsupsetneqq","cap","cup","sim","cong","examzhfrac","examzhdfrac"]}
-,
-"exam-zh-textfigure.sty":{"envs":["multifigures"],"deps":["expl3.sty","wrapstuff.sty","tabularray.sty","varwidth.sty","graphicx.sty","filehook.sty"],"cmds":["textfigure"]}
-,
-"exam-zh.cls":{"envs":["notice","step","method","case"],"deps":["expl3.sty","filehook.sty","s-ctexbook.cls","etoolbox.sty","geometry.sty","fontspec.sty","xeCJK.sty","xeCJKfntef.sty","fancyhdr.sty","lastpage.sty","amsmath.sty","enumitem.sty","varwidth.sty","tikzpagenodes.sty","tikzlibrarydecorations.markings.sty","tikzlibrarydecorations.text.sty","exam-zh-question.sty","exam-zh-font.sty","exam-zh-choices.sty","exam-zh-symbols.sty","exam-zh-chinese-english.sty","exam-zh-textfigure.sty","hyperref.sty","pifont.sty"],"cmds":["ExamPrintAnswerSet","ExamPrintAnswer","examsetup","information","warning","secret","subject","draftpaper","examsquare","scoringbox","examzholdsection"]}
-,
-"exam.cls":{"envs":["checkboxes"],"deps":["ifthen.sty"],"cmds":["addpoints","addquestionobject","answerclearance","answerline","answerlinelength","answerskip","begingradingrange","bhpgword","bhpword","bhqword","bhsword","bhtword","bonusgradetable","bonuspart","bonuspointformat","bonuspointname","bonuspointpoints","bonuspoints","bonuspointsinrange","bonuspointsofquestion","bonuspointsonpage","bonuspointtable","bonusqformat","bonusquestion","bonussubpart","bonussubsubpart","bonustitledquestion","bonustotalformat","boxedpoints","bracketedpoints","bvpgword","bvpword","bvqword","bvsword","bvtword","cancelspace","cancelspacefalse","cancelspacetrue","cellwidth","cfoot","chbpword","chead","checkboxchar","checkboxeshook","checkedchar","choice","choicelabel","choiceshook","chpgword","chpword","chqword","chsword","chtword","colorfbox","colorfillwithdottedlines","colorfillwithlines","colorgrids","colorsolutionboxes","combinedgradetable","combinedpointtable","ContinuedQuestion","CorrectChoice","correctchoice","CorrectChoiceEmphasis","correctchoiceemphasis","covercfoot","coverchead","coverextrafootheight","coverextraheadheight","coverfirstpagefooter","coverfirstpagefootrule","coverfirstpageheader","coverfirstpageheadrule","coverfooter","coverfootrule","coverheader","coverheadrule","coverlfoot","coverlhead","coverrfoot","coverrhead","coverrunningfooter","coverrunningfootrule","coverrunningheader","coverrunningheadrule","cvbpword","cvpgword","cvpword","cvqword","cvsword","cvtword","dottedlinefillheight","droppoints","droptotalbonuspoints","droptotalpoints","endgradingrange","extrafootheight","extraheadheight","extrawidth","filedate","fileversion","fillin","fillinlinelength","fillwithdottedlines","fillwithgrid","fillwithlines","firstpagefooter","firstpagefootrule","firstpageheader","firstpageheadrule","firstqinrange","footer","footrule","framedsolutions","fullwidth","gradetable","gradetablestretch","greeknum","gridlinewidth","gridsize","half","header","headrule","hpgword","hpword","hqword","hsword","htword","ifcontinuation","ifincomplete","iflastpage","ifprintanswers","IncompleteQuestion","lastqinrange","lfoot","lhead","linefill","linefillheight","linefillthickness","makeemptybox","marginbonuspointname","marginpointname","marginpointssep","marksnotpoints","multicolumnbonusgradetable","multicolumnbonuspointtable","multicolumncombinedgradetable","multicolumncombinedpointtable","multicolumngradetable","multicolumnpartialbonusgradetable","multicolumnpartialbonuspointtable","multicolumnpartialcombinedgradetable","multicolumnpartialcombinedpointtable","multicolumnpartialgradetable","multicolumnpartialpointtable","multicolumnpointtable","multirowbonusgradetable","multirowbonuspointtable","multirowcombinedgradetable","multirowcombinedpointtable","multirowgradetable","multirowpartialbonusgradetable","multirowpartialbonuspointtable","multirowpartialcombinedgradetable","multirowpartialcombinedpointtable","multirowpartialgradetable","multirowpartialpointtable","multirowpointtable","noaddpoints","nobonusqformat","noboxedpoints","nobracketedpoints","nocancelspace","nocolorfillwithdottedlines","nocolorfillwithlines","nocolorgrids","nocolorsolutionboxes","nocoverfirstpagefootrule","nocoverfirstpageheadrule","nocoverfootrule","nocoverheadrule","nocoverrunningfootrule","nocoverrunningheadrule","nofirstpagefootrule","nofirstpageheadrule","nofootrule","noheadrule","nomorequestions","nopointsinleftmargin","nopointsinmargin","nopointsinrightmargin","noprintanswers","noqformat","noquestionsonthispage","norunningfootrule","norunningheadrule","nounstarredvspace","numbonuspoints","numcoverpages","numpages","numparts","numpoints","numqinrange","numquestions","numsubparts","numsubsubparts","oddeven","part","partialbonusgradetable","partialbonuspointtable","partialcombinedgradetable","partialcombinedpointtable","partialgradetable","partialpointtable","partlabel","partshook","PgInfo","pointformat","pointname","pointpoints","points","pointsdroppedatright","pointsinleftmargin","pointsinmargin","pointsinrange","pointsinrightmargin","pointsofquestion","pointsonpage","pointstwosided","pointstwosidedreversed","pointtable","printanswers","printanswersfalse","printanswerstrue","qformat","question","questionlabel","questionshook","rfoot","rhead","rightpointsmargin","runningfooter","runningfootrule","runningheader","runningheadrule","settabletotalbonuspoints","settabletotalpoints","shadedsolutions","SolutionEmphasis","solutiontitle","subpart","subpartlabel","subpartshook","subsubpart","subsubpartlabel","subsubpartshook","thechoice","themarginpoints","thenumparts","thenumquestions","thenumsubparts","thenumsubsubparts","thepartno","thepoints","thequestion","thequestiontitle","thesubpart","thesubsubpart","titledquestion","totalbonuspoints","totalformat","totalnumpages","totalpoints","unframedsolutions","unstarredvspace","uplevel","usehorizontalhalf","useslantedhalf","vpgword","vpword","vqword","vsword","vtword"]}
-,
-"example.sty":{"envs":["example"],"deps":{},"cmds":["ExampleWidth","ExampleSet","ExampleVerb"]}
-,
-"exceltex.sty":{"envs":{},"deps":["ulem.sty","color.sty"],"cmds":["cellrefs","theexceltexCounterC","theexceltexCounterT","inccell","inctab"]}
-,
-"excludeonly.sty":{"envs":{},"deps":{},"cmds":["excludeonly"]}
-,
-"exercise.sty":{"envs":["Exercise","Exercise*","Answer","ExerciseList"],"deps":["keyval.sty","ifthen.sty"],"cmds":["shipoutAnswer","shipoutExercise","Exercise","Answer","ExePart","Question","subQuestion","subsubQuestion","ExeText","ExerciseSelect","ExerciseStopSelect","refAnswer","ExerciseLabel","marker","DifficultyMarker","listofexercises","ListOfExerciseInToc","ExerciseLevelInToc","ExerciseTitle","ExerciseName","ExerciseListName","AnswerName","AnswerListName","ExePartName","ExerciseHeaderTitle","ExerciseHeaderDifficulty","ExerciseHeaderOrigin","ExerciseHeaderNB","ExerciseHeader","ExerciseListHeader","AnswerHeader","AnswerListHeader","ExePartHeaderTitle","ExePartHeaderDifficulty","ExePartHeaderNB","ExePartHeader","ExePartListHeader","ExePartTitle","ExePartDifficulty","theExePart","AtBeginExercise","AtBeginAnswer","QuestionHeaderTitle","QuestionHeaderDifficulty","QuestionHeaderNB","subQuestionHeaderTitle","subQuestionHeaderDifficulty","subQuestionHeaderNB","subsubQuestionHeaderTitle","subsubQuestionHeaderDifficulty","subsubQuestionHeaderNB","ExerciseSkipBefore","ExerciseSkipAfter","AnswerSkipBefore","AnswerSkipAfter","Exesep","Exetopsep","Exeparsep","Exepartopsep","Exeleftmargin","Exerightmargin","Exelabelwidth","Exelabelsep","QuestionBefore","QuestionIndent","subQuestionBefore","subQuestionIndent","subsubQuestionBefore","subsubQuestionIndent","renewcounter","EndCurrentQuestion","EndCurrentsubQuestion","EndCurrentsubsubQuestion","AnswerCmd","AnswerHeaderRef","AnswerListHeaderRef","AnswerNB","AnswerRef","ArticleOf","beginAnswerEnv","beginExerciseEnv","beginExerciseListEnv","colonnesLevel","defineAnswerCmd","defineAnswerEnv","defineExePartInEnv","defineExePartInList","defineExerciseCmd","defineExerciseEnv","deuxcolonnes","endAnswerEnv","endExerciseEnv","endExerciseListEnv","ExerciseBefore","ExerciseClass","ExerciseCmd","ExerciseDifficulty","ExerciseExam","ExerciseHeaderExam","ExerciseHeaderLabel","ExerciseHeaderType","ExerciseHeaderYear","ExerciseLocalNB","ExerciseOrigin","ExerciseSelectClass","ExerciseSelectDifficulty","ExerciseSelectExam","ExerciseSelectLabel","ExerciseSelectOrigin","ExerciseSelectType","ExerciseSelectYear","ExerciseTrueLabel","ExerciseType","ExerciseYear","listexercisename","QuestionDifficulty","QuestionNB","QuestionTitle","recordExerciseLabel","refstepExecounter","subQuestionDifficulty","subQuestionHeader","subQuestionNB","subQuestionTitle","subsubQuestionDifficulty","subsubQuestionHeader","subsubQuestionNB","subsubQuestionTitle","tempskipa","tempskipb","termineliste","theAnswer","theExePartDifficulty","theExercise","theExerciseDifficulty","theQuestion","theQuestionDifficulty","thesavedQuestion","thesavedsubQuestion","thesavedsubsubQuestion","thesubQuestion","thesubQuestionDifficulty","thesubsubQuestion","thesubsubQuestionDifficulty"]}
-,
-"exercisebank.sty":{"envs":["problem","solution","intro"],"deps":["xstring.sty","pgffor.sty","scrextend.sty","comment.sty","calc.sty","pgfpages.sty","geometry.sty","listofitems.sty","trimspaces.sty","needspace.sty"],"cmds":["DisplaySolutions","SolutionsOnly","makesetdefaults","spritesets","makeset","phead","about","buildall","sprite","exec","DeclareExerciseCommand","exclude","select","buildset","setName","buildsets","buildtags","buildsprite","pplabel","ppref","ppgref","pref","pgref","HideTags","ShowAllTags","exercisenote","ShowNumbers","ShowTags","ShowFilenames","exercisebanksetup","translateExBank","nextproblem","totalpoints","exercisepoints","Trigger","PartProblemHeaderSuffix","PostPPHeader","BeginPartproblem","VeryBeginPartproblem","InputExercise","BeginProblem","EndProblem","BeginBuildset","EndBuildset","ownLineNoSpacesGotIt","exercisebankversion","exercisebankbuild","At","thisfilepath","exerciseFile","theproblemcounter","thepartproblemcounter","pMarginBelow","pMarginAbove","pMarginLeft","ppMarginBelow","ppMarginAbove","ppMargin","introOutdent","setExercisesDir","AtNextPar","buildex","continueLoop","csvlist","csvsets","csvtags","ea","emptyList","exerciseFileInfo","exfile","figuresPath","fileInputBase","fileInputPath","firstarg","haystack","ifppMode","ignoreOutlineSpaces","incl","introarg","ipm","isFalse","isInList","isppMode","isTrue","keystring","listarg","marginw","markeverypar","mname","ncArgs","needle","nextprobargs","nextproblems","nohead","numppex","obeyOutlineSpaces","oldep","orderedselect","ppList","ppMode","pppref","pptag","removebs","resetnextproblems","setmacro","showhideproblem","shownextchar","skeys","solutionMarginAbove","squeeze","stopfilbreak","strif","themetacounter","thenumppInFile","theset","thissetid","tmpargs","tpd","whenfalse","whentrue"]}
-,
-"exercisepoints.sty":{"envs":["exercise","subexercise"],"deps":["ifthen.sty"],"cmds":["points","itempoints","setitempointsunit","numberofexercises","totalpoints","getpoints","bonuspoints","getbonuspoints","totalpointswithbonus","AtBeginExercise","AtEndExercise","currentexercisetitle","currentexercisenumber","currentexercisepoints","AtBeginSubexercise","AtEndSubexercise","currentsubexercisenumber","currentsubexercisepoints","currentsubexercisetitle"]}
-,
-"exercises.sty":{"envs":["exercise","solution"],"deps":["verbatim.sty","ifthen.sty","kvoptions.sty","xparse.sty","marginnote.sty"],"cmds":["totalpoints","exercisenewpage","solutionnewpage","ifsolutionthenelse","thei"]}
-,
-"exerquiz.sty":{"envs":["sumryTblAux","answers","exEnumerate","enumex","enumex*","exercise","exercise*","manswers","mathGrp","oQuestion","parts","questions","quiz","quiz*","shortquiz","shortquiz*","solution","cq*"],"deps":["keyval.sty","ifpdf.sty","ifxetex.sty","ifluatex.sty","array.sty","xcolor.sty","aeb-comment.sty","verbatim.sty","hyperref.sty","amssymb.sty","eforms.sty","colortbl.sty","pdfcolmk.sty"],"cmds":["ui","InitSeedValue","writeSeedToSolnFile","saveRandomSeed","inputRandomSeed","useRandomSeed","ifsaveseed","saveseedtrue","saveseedfalse","saveseedinfo","readsavfile","randomi","nextrandom","setrannum","setrandim","pointless","PoinTless","ranval","displaySumryTbl","ccatCurrQzWith","pbPopulateSumTable","pbDoNoCorrectSumryTbl","sumryTblQ","sumryTblR","sumryTblP","stfmtType","showOutOfinSmryTbl","stmarkupbox","oField","sthline","sumrytblCkMUsep","sumrytbllinkHook","sumryTblProbFmt","sumrytablesep","stmarkupWidth","stmarkupHeight","stmarkupTextSize","writeProListAux","setParamSumryTblAux","correctColor","wrongColor","partialColor","bMCFI","eMCFI","eqNA","mcfiMarkupfmt","mcfiMarkup","clickChkBxMCFI","intrCAns","intrPrec","rbmIntrvl","RespBoxMath","RespBoxTxt","everyRespBoxTxt","RespBoxTxtPC","aboveanswersSkip","AddAAFormat","AddAAKeystroke","AddAAMouseUpMC","AddAAMouseUpMS","addToAction","adjDisplayBelow","aebshowgraylettersfalse","aebshowgrayletterstrue","aebTitleQuiz","afterSplChkActn","AllowPeeking","allowRandomizedChoices","Ans","AnswerField","answersEndHook","Array","autoAnsFldRaiseBox","autoAnswerField","autotabOff","autotabOn","bChoices","bInitAltAppr","bottomOfAnsfStack","bqlabel","CorrAnsButton","CorrAnsButtonGrp","CorrButton","CorrectionsOff","CorrectionsOn","currQuiz","databaseName","DeclareQuiz","defaultColorJSDef","defaultquiztype","defaultRDPrecision","dockQuiz","doNotRandomizeChoices","eAns","eChoices","eFreeze","eInitAltAppr","endQuizHere","eqButton","eqCGI","eqforpaperfalse","eqforpapertrue","eqGradeScale","eqlabel","eqPTs","eqQuizType","eqsanitize","eqScore","eqSubmit","everyAnswerField","everyBeginQuizButton","everyCorrAnsButton","everyCorrButton","everyEndQuizButton","everyeqButtonField","everyeqTextField","everyGradeField","everyPercentField","everyPointsField","everyqRadioButton","everyRespBoxMath","everyScoreField","everysqClearButton","everysqRadioButton","everysqTallyBox","everysqTallyTotal","exbookmarkfmt","exlabel","exlabelformat","exlabelsol","expdfbookmark","exrtnlabelformat","exsecrunhead","exsectitle","exsllabelformat","exsolafter","fancyQuizHeaders","floatQuiz","formatAsSet","formatAsVector","formatInitAltApprs","GradeField","graylettersOff","graylettersOn","hideCreditMarkup","holdDest","ifaebshowgrayletters","ifeqforpaper","ifQuizType","ifstaroption","includeexersolutions","includequizsolutions","insertGrayLetters","isQZ","isSQZ","makeExSolnsLocalOff","makeExSolnsLocalOn","makeQzSolnsLocalOff","makeQzSolnsLocalOn","manualAnswerField","minQuizResp","multipartquestion","natlinewidth","negPointsAllowed","NoPeeking","noResetAnsFieldOnClose","noSolnOpt","obeyLocalRandomize","oqpriorhook","partbookmarkfmt","partialColorJSDef","PercentField","PointsField","popquestions","promoteNewPageHere","proofingsymbol","ptLabel","PTs","PTsHook","ptsLabel","pushquestions","quesNumColor","quizpdfbookmark","quiztype","qzbookmarkfmt","rbMarkup","REF","renameSolnAfterTo","resetAnsFieldOnClose","resetMClabelsep","resetSolnAfterToDefault","RespBoxEssay","restoreDefaultQuizHeaders","restoreFLTypeDefault","rghtColorJSDef","rowsep","rowsepDefault","rpl","saveDest","ScoreField","setActionKeys","setAnsEnvLinewidth","setMClabelsep","setsolnspace","showCreditMarkup","SolutionsAfter","SolutionsAtEnd","SpellCheck","sqbookmarkfmt","sqClearButton","sqlabel","sqsllabel","sqslrtnlabel","sqslsectitle","sqSolnBtn","sqSolnMCMsg","sqSolnMSMsg","sqStrongMsg","sqTallyBox","sqTallyTotal","sqTurnOffAlerts","sqTurnOnAlerts","sqWeakMsg","startQuizHere","strongpass","symbolchoice","tableName","theeqexno","thepartno","thequestionno","titleQuiz","titleQuizfmt","TUChoice","turnOnRandomize","useBeginQuizButton","useBeginQuizLink","useDest","useEndQuizButton","useEndQuizLink","useForms","useLinks","useMCCircles","useMCCRects","weakpass","word","wrngColorJSDef","altApprOff","altApprOn","corrChoiceFullyOff","corrChoiceFullyOn","corrLocalChoiceFullyOff","corrLocalChoiceFullyOn","eqCorrChoiceFully","eqCorrLocalChoiceFully","ifShowAppr","ifSubstVars","newNoPeekArgs","NoPeekAlert","noPeekArgs","postDenyForm","preDenyForm","preReqForm","reany","rebstr","rechrclass","redigit","rediv","redm","reestr","refac","regrp","remul","replaceExclPt","repow","resetLocalChoiceFully","ShowApprfalse","ShowApprtrue","SubstVarsfalse","SubstVarstrue","eqModelInfo","jsColor","AAKqRespBoxMath","AAKqRespBoxTxt","AAKqRespBoxTxtPC","aboveexskip","abovepartshook","aboveqskip","abovesqskip","addHiddenTextField","adjDisplayBelowPlus","aebChoiceAltFmt","aebtitleQuiz","afterlabelhskip","aftershortquizskip","allowNoAlertBox","alphaParts","AnsPromptBtnStr","AnswerFieldDefaults","answerkeyfalse","answerkeytrue","any","aPointType","argi","arrowDelimfalse","arrowDelimtrue","autoAFOpts","autotabnewline","bcheckboxused","bChoiceLabel","bChoiceNumCols","beginGrp","BeginQuizButtonDefaults","belowexskip","belowexsolnskip","belowpartshook","belowqHooknSkip","belowqskip","belowsqskip","bHideSolnIn","bLeaveVspace","bqlabelFmt","bqlabelISO","buseckbx","bWebCustomize","cabGrpActn","catOfAt","chooseJSsymbol","chooseJSsymboli","ckSolnOpt","cntVars","cntVarsi","compareJSfunc","contsolnsErrorMsg","contsolnsInputMsg","corrAnsArray","CorrAnsButtonDefaults","CorrAnsButtonGrpActionHook","CorrAnsButtonGrpDefaults","corrAnsSymb","corrAnsSymbJS","corrAnsSymbJSLoc","corrAnsSymbJSLocDef","CorrBtnActionsJS","CorrectAns","cqCopiedQues","cqFmtPasteQues","cqIsActivefalse","cqIsActivetrue","cqQS","cqQSA","cqqsfalse","cqQStr","cqqstrue","cqQSV","cqSAfalse","cqSAtrue","cqSStr","currhideopt","currQuizStartPage","dclrFncyQzHdrsFmt","dclrFncySqHdrsFmt","declCopyQues","declCQPost","declCQPre","declCQQuesStr","declCQSolStr","decleqterminex","defaultColorJS","defaultColorJSLoc","defaultColorJSLocDef","DefaultHeightOfWidget","defaultpartsformat","defaultReqFormMsg","defineEachAns","defineEachChoice","dfltFncyQHdrsFmt","displayworkareafalse","displayworkareaOff","displayworkareaOn","displayworkareatrue","dlLibSpecRespJS","doNotShowAgainMsg","eHideSolnIn","endexerhook","endGrp","endqhook","EndQuizButtonDefaults","endsolnexerhook","endsolnexerhookaux","endsqhook","eqAddAAFormat","eqAddAAKeystroke","eqAddAAMouseUpMC","eqAddAAMouseUpMS","eqAnd","eqAppAlert","eqarg","eqargii","eqBaseName","eqbmkmrkdepth","eqBraces","eqBrackets","eqButtonDefaults","eqCommonCmd","eqCorrectAnsTeX","eqCQDeclarations","eqeCurrProb","eqemargin","eqequesparsep","eqerrABS","eqerrBadExp","eqerrDelimNotBal","eqerrUnfinishQuiz","eqexerskip","eqExerSolnHeader","eqExerSolnHeaderList","eqExerSolnHeaderSngl","eqExerSolnTrailer","eqexheader","eqexlisttabheader","eqexpdfentry","eqExSolFileName","eqExtArg","eqFilterArg","eqfititin","eqGenButton","eqGradeScaleLoc","eqgrii","eqgriii","eqi","eqIcon","eqIconDefaults","eqInitQuizMsg","eqlabelFmt","eqLBr","eqlimselTo","eqMadeChoice","eqMrkCpyArg","eqMrkSoln","eqObjAlert","eqObjAlertIfFalse","eqOutOf","eqParens","eqpartsitemsep","eqPriorVspace","eqptLabel","eqptScore","eqptsLabel","eqQT","eqQuizGradeMsg","eqQuizPercentMsg","eqQuizPointsMsg","eqQuizTotalMsg","eqQzQuesList","eqQzSolnTrailerHook","eqqzsolutionshook","eqRBr","eqretnSymb","eqshowmarkupfalse","eqshowmarkuptrue","eqshowOutOffalse","eqshowOutOftrue","eqSolnExCmds","eqSolnForEqexam","eqsolutionshook","eqSP","eqsqrtmsg","eqSqSolnTrailer","eqSqSolnTrailerHook","eqsqwgmsg","eqSubmiti","eqSubmitii","eqSyntaxErrorUndefVar","eqterminex","eqterminexDEF","eqthisenv","eqtmp","eqtmpcnta","eqtmplength","eqTopOfQslPage","eqTopOfSolnPage","eqWriteLine","eQzBtnActns","everyeqButton","everyeqGenButton","everyeqIcon","everyparShape","everyqCheckBox","everyqckCheckBox","everyrbMarkup","everysqCheckBox","eWebCustomize","exclQt","exclSQt","exerSolnHeader","exersolnheadhook","exerSolnInput","exerSolnsHeadnToc","exerSolnsInExtFile","exerstar","exlabelformatwp","exlisttabheaderafterhook","exlisttabheaderpriorhook","expdfbookmarktitle","exPrtsep","exqtable","exrtnlabelformatwp","exsllabelformatwp","exSolafterDefault","exsolafterDefault","exsolnonceonlytophook","ExSolutionsSetfalse","ExSolutionsSettrue","FALSEACTIONii","FALSEACTIONiia","filterFor","fleqnOff","fleqnOn","FncyHdrsFmtNoTitleQuiz","FncyHdrsFmtQuestion","fncyQHdrsColor","fpAfterSolutionsSkip","frstIsrpl","gExCommonCmd","GFW","GiiRpli","GiiRplii","gobbleMacro","gobbleToEndEXt","gobbleToEndQt","gobbleToEndSQt","gobbleTxt","GradeFieldDefaults","graylettersColor","grpEvalFunction","grpPointValue","grpquestions","grpTotalWeight","halfWidth","Hidesymbol","hidesymbol","highThresholdMsg","ifanswerkey","ifarrowDelim","ifcqIsActive","ifcqqs","ifcqSA","ifdisplayworkarea","ifeqshowmarkup","ifeqshowOutOf","ifExSolutionsSet","ifIsRespBox","ifkeepdeclaredvspacing","ifmakeExSlLocal","ifmakeQzSlLocal","ifnocorrections","ifNoSolutions","ifOKToWriteExamData","ifoxfordcomma","ifsolutionsafter","ifsolutionsAtEnd","ifsolutionsonly","ifterminexchanged","iftherearequizsolutions","iftherearesolutions","ifthereissolution","ifuseNumForParts","ifusesumrytbls","ifvspacewithsolns","ifwithinMCFI","ifwithinparts","ifwithinqsldoc","ifwithinsoldoc","inclEXtFilter","inclQtFilter","inclSQtFilter","includeexersolutionsi","includeexersolutionsii","includequizsolutionsi","includequizsolutionsii","indepVars","inittabMark","InputExrSolnsLevel","inputMCFICode","InputQzSolnsLevel","inputRandomizeChoices","inputRBMICode","inputSumryTblCode","insertAnsEndHookHere","insertAnsHookAt","insertAtMsg","intPrt","isAltApprSpec","isFrstrpl","isitleadin","isREFstar","IsRespBoxfalse","IsRespBoxtrue","istabularexer","itsExerParts","itsforleadinitem","jsLB","jsRB","jsRespBox","JST","jsTempArgs","keepdeclaredvspacingfalse","keepdeclaredvspacingtrue","labeleqquestionnoi","labeleqquestionnoii","labeleqquestionnoiii","LangRedefinitions","leadinitem","leavevspace","limitSelectionTo","limSelWarningMsg","linkContentFormat","linkContentWrapper","ListOfQuizNames","ListOfSQuizNames","makeExSlLocalfalse","makeExSlLocaltrue","makeQzSlLocalfalse","makeQzSlLocaltrue","makeStringArray","marginparafterhook","marginparpriorhook","markupHeight","markupTextSize","markupWidth","minVspacetabs","moreRespBoxMathDefaults","moreRespBoxTxtDefaults","mrkForIns","nC","negpointsallowed","negPointsMarkupAllowed","negpointsmarkupallowed","newsolnspace","nI","nocorrectionsfalse","nocorrectionstrue","nolinkcolor","nopartquestion","noPeekAction","noPeekMsg","normalCABtnBC","normalSolnWrites","noSolnWrites","NoSpaceToWork","numberParts","numShortCols","nV","OKToWriteExamDatafalse","OKToWriteExamDatatrue","oSolution","oxfordcommafalse","oxfordCommaOff","oxfordCommaOn","oxfordcommatrue","partialColorJS","partialColorJSLoc","partialColorJSLocDef","partnoFmt","parts","partsformat","partshangamount","partsitemsep","partsparsep","partstabcolsep","partstabrowsep","partstabtopsep","partstopsep","PBS","PcFW","pcMarkupColor","PercentFieldDefaults","pnphDflt","PointsFieldDefaults","pointValuesArray","popEnvir","popiiictm","populateHiddenField","postInitQuiz","postSubmitQuiz","prbPrtsep","priorexlabelheader","priorexsectitle","priorexskip","priorexslinput","priorexsolafterList","priorexsolafterSngl","priorexsolafterTab","priorInitQuiz","priorqhook","priorsqhook","priorsqslinput","priorsqslsectitle","priorSubmitQuiz","processJSfunc","processLabeledAns","PromptAns","PromptButton","PromptButtonActionCode","PromptButtonActionHook","PromptButtonDefaults","promptButtonMsg","proofingsymbolColor","prtsIndntSep","PtFW","ptsValue","ptypeArray","pushEnvir","qChoiceColor","qChoiceColorDef","qChoiceSymb","qChoiceSymbDef","qCorrAnsButtonActionHook","qhspace","qMark","qPostHeaderHook","qRadionActionsHook","qstar","QT","quessolSkip","quizpdfbookmarktitle","quizSolnHeader","quizSolnInput","quizSolnsHeadnToc","qzIDFmt","qzPriorSolutionAfterHook","qzSolutionsAfterHook","qzTabPos","qztabsep","RadioFieldSize","rbArgs","rbArgstmp","rbFlag","rbmAAKey","rbtAAKey","rbtPCAAKey","rbTxtAlt","RBW","recoverDisplayBelow","removelastparskip","replaceexclaim","requireAlertBox","resetEXsolns","resetGradeScaleLoc","resetQZtsolns","resettabMark","RespBox","RespBoxNT","RespBoxEssayDefaults","RespBoxMathDefaults","RespBoxTxtDefaults","RespBoxTxtNT","RespBoxTxtOnBlur","restoreBeginQuiz","restoreEndQuiz","restorejustify","restoreJustifyOff","restoreJustifyOn","restoreNormalEndQuiz","restoreNormalSolns","RestoreScoreField","ReturnTo","rexpStr","rghtAnsSymb","rghtAnsSymbJS","rghtAnsSymbJSLoc","rghtAnsSymbJSLocDef","rghtColorJS","rghtColorJSLoc","rghtColorJSLocDef","rlspar","rmFracPrt","RorRT","rplSofT","rtnURL","sameVspace","savedAltFmt","ScoreFieldDefaults","setActionKeysi","setCoreInitAltAppr","setCorrAnsSymb","setCorrAnsSymbLoc","setDefQuizLabelName","setDefShortQuizLabelName","setENum","setMClabelsepDefault","setPartsWidth","setPrbSolnAftrIndent","setproofingsymbol","setRghtAnsSymb","setRghtAnsSymbLoc","setTabulrSolnEnv","SETTEMPBOXi","SETTEMPBOXii","setWrngAnsSymb","setWrngAnsSymbLoc","SFW","ShowApprSAVE","SHOWTEMPBOXi","solnhspace","solnItemMngt","solnsafterSkip","solnsafterSkipAmt","solnspace","solution","solutionafterExCmds","solutionColor","solutionColorDef","solutionparshape","solutionsafterfalse","solutionsafterSkip","solutionsaftertrue","solutionsAtEndfalse","solutionsAtEndtrue","solutionsonlyfalse","solutionsonlytrue","SpaceToWork","splChkCA","splChkTU","sqClearButtonDefaults","sqCorrAnsButtonActionHook","sqCorrAnsCode","sqCorrections","sqCorrSolButtonActionHook","sqCorrSolCodeMC","sqCorrSolCodeMS","sqDefaultFmtTitle","sqForms","sqhspace","sqLinks","sqNoCorrections","sqPostHeaderHook","sqResetSymbToDef","sqRghtSymbChoice","sqRghtSymbChoiceDef","sqRghtSymbColor","sqRghtSymbColorDef","sqRightRespJS","sqslsecrunhead","sqsolafter","sqsolafterhspace","sqstar","sqTabPos","sqtabsep","sqTallyBoxDefaults","sqTallyTotalDefaults","sqWrngSymbChoice","sqWrngSymbChoiceDef","sqWrngSymbColor","sqWrngSymbColorDef","sqWrongRespJS","stOutOf","stringArray","tabControlOff","tabControlOn","tableadin","tablrIndent","tallywidth","TBW","terminexchangedfalse","terminexchangedtrue","theeqpointvalue","theeqquestionnoi","theeqquestionnoii","theeqquestionnoiii","thegrpquestionno","theHpartno","theHquizno","theqMarkCnt","thequizno","therearequizsolutionsfalse","therearequizsolutionstrue","therearesolutionsfalse","therearesolutionstrue","thereissolutionfalse","thereissolutiontrue","thisQuiz","thisRtnURL","toAltApprCnt","toAltApprCntInc","toAltApprVar","topofpartshook","tqhspace","TRUEACTIONi","TRUEACTIONia","turnProofingOff","turnProofingOn","txtAltList","useCkBxAlertsOff","useCkBxAlertsOn","useEXtFilter","useMCRects","useNumForPartsfalse","useNumForPartstrue","useQtFilter","useSavedAlts","useSavedAltsAns","useSavedAns","useSavedNumAns","useSQtFilter","usesumrytblsfalse","usesumrytblstrue","viidna","vspaceFiller","vspaceFillerDefault","vspaceFmt","vspacewithsolnsfalse","vspacewithsolnstrue","webnewpage","webtempboxi","webtempboxii","widthOfParts","widthOfPartsBox","withinMCFIfalse","withinMCFItrue","withinpartsfalse","withinpartstrue","withinqsldocfalse","withinqsldoctrue","withinsoldocfalse","withinsoldoctrue","writecqQSfalse","writeToExSolns","writeTopOfQslPage","writeToQzSolns","wrngAnsSymb","wrngAnsSymbJS","wrngAnsSymbJSLoc","wrngAnsSymbJSLocDef","wrngColorJS","wrngColorJSLoc","wrngColorJSLocDef","xReturnTo"]}
-,
-"exesheet.cls":{"envs":{},"deps":["kvoptions.sty","exesheet.sty","schooldocs.sty"],"cmds":{}}
-,
-"exesheet.sty":{"envs":["exenumerate","colsenum","colsenum*","colsitem","colsitem*","tablenum1","tablenuma","tablitem","questions","answers","answers*"],"deps":["kvoptions.sty","ifthen.sty","geometry.sty","xcolor.sty","enumitem.sty","tasks.sty","versions.sty","fancybox.sty","translations.sty","ragged2e.sty"],"cmds":["exesheetset","exercise","exercisename","labelexercise","theexercise","labelexercisestyle","subpart","thesubpart","subpartname","labelsubpart","labelsubpartstyle","annex","annexname","annexstyle","exe","exname","exlabel","exsepmark","correctionstyle","correctionname","question","answer","answerspace","points","pointsname","pointname","pointsstyle","pts","ptsname","ptname","ptsstyle","totalexe","note","markingstyle","ptsboxlength","notestyle","totalpoints","totalsheet","gaddtolength","gsetlength","largemarginwidthfactor","leftnotemarginwidth","noteragged","noteraggedleft","noteraggedright","ptsmark","rightnotemarginwidth","standardfrenchlists","standardmarginwidthfactor","questionsonly","answersonly","displaypts","displaypoints","displaynotes","displaynotesright"]}
-,
-"exframe.sty":{"envs":["problem","subproblem","solution","sheet","onlysolutions","printproblem","printsolution"],"deps":["color.sty","verbatim.sty","xkeyval.sty","metastr.sty"],"cmds":["exercisesetup","ifsolutions","insertsolutions","writesolutions","readsolutions","insertproblems","writeproblems","readproblems","exercisedata","defexercisedata","getexercisedata","exercisedataempty","defsheetdata","setsheetdata","getsheetdata","sheetdataempty","defproblemdata","setproblemdata","getproblemdata","problemdataempty","writeexercisedata","showprobleminfo","defprobleminfo","addprobleminfo","showpoints","getsheetpoints","getproblempoints","getsubproblempoints","getsolutionpoints","extractpoints","switchpoints","awardpoints","sheettag","problemtag","subproblemtag","getsheetlist","getproblemlist","getsubproblemlist","exerciseloop","exerciseloopstr","exerciseloopret","theexerciseloop","exerciseconfig","exerciseconfigappend","exerciseconfigprepend","getexerciseconfig","exerciseconfigempty","exerciseifempty","exerciseifnotempty","exercisestyle","defexercisestyle","defexercisestylearg","closeproblems","closesolutions","exercisecleardoublepage","showfracpoints","solutionssection","theHequation","theHpage"]}
-,
-"exp-testopt.sty":{"envs":{},"deps":{},"cmds":["expnewcommand","afterfi"]}
-,
-"expex-acro.sty":{"envs":{},"deps":["expex.sty","etoolbox.sty","xspace.sty","l3keys2e.sty","acro.sty","enumitem.sty"],"cmds":["exref","exrefnil","mexref","gl","newGlossingAbbrev","glossingAbbrevsList","obj","qu","rc","ort","pnt","pnm","dbqu","ungr","bad","lxm"]}
-,
-"expex.sty":{"envs":{},"deps":["xkeyval.sty"],"cmds":["lingset","ex","xe","excnt","lingnumoffset","lingtextoffset","lingaboveexskip","lingbelowexskip","pex","pexcnt","linglabeloffset","linglabelwidth","lingpreambleoffset","linginterpartskip","lingbelowgpreambleskip","a","definelabeltype","actualexno","keepexcntlocal","definelingstyle","lingeveryex","lingEveryex","judge","ljudge","begingl","glpreamble","gla","glb","glc","glft","endgl","lingaboveglbskip","lingaboveglcskip","lingbelowglpreambleskip","lingaboveglftskip","lingextraglskip","lingglspace","nogloss","endpreamble","trailingcitation","rightcomment","defineglwlevels","beginglpanel","endpanel","gluf","lastx","nextx","blastx","anextx","bblastx","deftag","deftagex","deftaglabel","deftagpage","getref","getfullref","refproofing","gathertags","tagfilesuffix","lastlabel","hwit","labels","tl","nl","tspace","crs","exdisplay","noexno","exnoprint","crnb","Lingset","exbreak","ExPexMessage","XKVforn","aboveskiplist","alist","blist","cascadeshape","clist","colorlist","everylist","foop","glhangcarry","glstrut","glwordalign","itemtypelist","itlist","lingaboveglaskip","mainlist","next","pageno","printlbrack","printrbrack","pstglcolors","resetatcatcode","resumepexcnt","rightcite","stepexcnt","strutlist","tspacea","tspaceb","tspacec","worklist"]}
-,
-"expkv-cs.sty":{"envs":{},"deps":["expkv-pop.sty"],"cmds":["ekvcSplit","ekvcSplitAndForward","ekvcSplitAndUse","ekvcHash","ekvcHashAndForward","ekvcHashAndUse","ekvcValue","ekvcValueFast","ekvcValueSplit","ekvcValueSplitFast","ekvcSecondaryKeys","ekvcChange","ekvcFlagNew","ekvcFlagHeight","ekvcFlagRaise","ekvcFlagSetTrue","ekvcFlagSetFalse","ekvcFlagIf","ekvcFlagIfRaised","ekvcFlagReset","ekvcFlagResetGlobal","ekvcFlagGetHeight","ekvcFlagGetHeights","ekvcPass","ekvcDate","ekvcVersion"]}
-,
-"expkv-def.sty":{"envs":{},"deps":["expkv-pop.sty"],"cmds":["ekvdefinekeys","ekvdDate","ekvdVersion"]}
-,
-"expkv-opt.sty":{"envs":{},"deps":["expkv.sty"],"cmds":["ekvoProcessOptions","ekvoProcessLocalOptions","ekvoProcessGlobalOptions","ekvoProcessFutureOptions","ekvoProcessOptionsList","ekvoUseUnknownHandlers","ekvoVersion","ekvoDate"]}
-,
-"expkv-pop.sty":{"envs":{},"deps":["expkv.sty"],"cmds":["ekvpNewParser","ekvpDefType","ekvpDefPrefix","ekvpDefAutoPrefix","ekvpDefPrefixStore","ekvpDefPrefixLet","ekvpLet","ekvpValueAlwaysRequired","ekvpDefNoValue","ekvpUseNoValueMarker","ekvpDefNoValuePrefix","ekvpDefNoType","ekvpEOP","ekvpGobbleP","ekvpEOT","ekvpGobbleT","ekvpEOA","ekvpGobbleA","ekvpIfNoVal","ekvpAssertIf","ekvpAssertIfNot","ekvpAssertTF","ekvpAssertTFNot","ekvpAssertValue","ekvpAssertNoValue","ekvpAssertOneValue","ekvpAssertTwoValues","ekvpProtect","ekvpParse","ekvpDate","ekvpVersion"]}
-,
-"expkv.sty":{"envs":{},"deps":["expkv-pop.sty","expkv-cs.sty","expkv-def.sty","expkv-opt.sty"],"cmds":["ekvdef","ekvdefNoVal","ekvlet","ekvletNoVal","ekvletkv","ekvletkvNoVal","ekvdefunknown","ekvdefunknownNoVal","ekvredirectunknown","ekvredirectunknownNoVal","ekvletunknown","ekvletunknownNoVal","ekvifdefined","ekvifdefinedNoVal","ekvifdefinedset","ekvsneak","ekvsneakPre","ekvbreak","ekvbreakPreSneak","ekvbreakPostSneak","ekvmorekv","ekvchangeset","ekvset","ekvsetSneaked","ekvsetdef","ekvsetSneakeddef","ekvsetdefSneaked","ekvcompile","ekvparse","ekvoptarg","ekvoptargTF","ekvcsvloop","ekverr","ekvDate","ekvVersion"]}
-,
-"expl3.sty":{"envs":{},"deps":{},"cmds":["ExplSyntaxOn","ExplSyntaxOff","ProvidesExplClass","ProvidesExplFile","ProvidesExplPackage","ExplFileName","ExplFileDate","ExplFileVersion","ExplFileDescription"]}
-,
-"export.sty":{"envs":{},"deps":{},"cmds":["openexport","closeexport","Export","ExportLength","PreciseExportLength","ExportMuskip","ExportParameter","ExportIf","ExportPageLayout","ExportArrayParams","Import","xcaption","xcaptionf","xcaptiont","AddInputInAux"]}
-,
-"exsol.sty":{"envs":["exercises","exerciseseries","exercise","solution","informulacollection","informulacollectiononly","solutionseries"],"deps":["ifmtarg.sty","fancyvrb.sty","ifthen.sty","kvoptions.sty","multicol.sty","varwidth.sty"],"cmds":["exercisename","exercisesname","seriesname","solutionname","solutionsname","loadSolutions","columncount","exercisesfontsize","exercisestream","exsolexerciseitemindent","exsolexerciselabelsep","exsolexerciselabelwidth","exsolexerciseleftmargin","exsolexerciseparindent","exsolexerciseparsep","exsolexerciserightmargin","exsolexercisesaboveskip","exsolexercisesbelowskip","exsolexercisetopbottomsep","exsubrule","formulacollectionstream","formulastream","ifnoexinchapter","noexercisesinchapter","noexercisesinnextchapter","noexinchapterfalse","noexinchaptertrue","solsubrule","solutionstream","theexercise","theexerciseseries"]}
-,
-"extarrows.sty":{"envs":{},"deps":["amsmath.sty"],"cmds":["xlongequal","xLongleftarrow","xLongrightarrow","xLongleftrightarrow","xLeftrightarrow","xlongleftrightarrow","xlongrightarrow","xleftrightarrow","xlongleftarrow"]}
-,
-"extarticle.cls":{"envs":{},"deps":["exscale.sty"],"cmds":{}}
-,
-"extbook.cls":{"envs":{},"deps":{},"cmds":["frontmatter","mainmatter","backmatter","thechapter","chaptername","bibname","chapter","chaptermark"]}
-,
-"extdash.sty":{"envs":{},"deps":{},"cmds":["Hyphdash","Endash","Emdash","Halfspace","HyphOrDash","BarOrDash"]}
-,
-"extletter.cls":{"envs":["letter"],"deps":["exscale.sty"],"cmds":["address","signature","opening","closing","cc","encl","name","ps","location","telephone","subject","ccname","enclname","fromaddress","fromlocation","fromname","fromsig","headtoname","indentedwidth","labelcount","longindentation","mlabel","pagename","returnaddress","startbreaks","startlabels","stopbreaks","stopletter","telephonenum","toaddress","toname"]}
-,
-"extpfeil.sty":{"envs":{},"deps":["amsmath.sty","amssymb.sty","mathtools.sty"],"cmds":["shortleftarrow","shortrightarrow","xlongequal","xtwoheadleftarrow","xtwoheadrightarrow","xtofrom","newextarrow","twoarrowsleft","twoarrowsright","bigtwoarrowsleft","bigtwoarrowsright","bigRelbar"]}
-,
-"extproc.cls":{"envs":{},"deps":{},"cmds":["copyrightspace","pagename"]}
-,
-"extract.sty":{"envs":["extract","extract*","extractskip"],"deps":["verbatim.sty"],"cmds":["extractionlabel","extractline"]}
-,
-"extraipa.sty":{"envs":{},"deps":["tipa.sty","tipx.sty"],"cmds":["bibridge","crtilde","dottedtilde","doubletilde","finpartvoice","finpartvoiceless","inipartvoice","inipartvoiceless","overbridge","partvoice","partvoiceless","sliding","spreadlips","subcorner","subdoublebar","subdoublevert","sublptr","subrptr","whistle"]}
-,
-"extramarks.sty":{"envs":{},"deps":{},"cmds":["firstleftmark","lastrightmark","firstrightmark","lastleftmark","extramarks","firstleftxmark","firstrightxmark","topleftxmark","toprightxmark","lastleftxmark","lastrightxmark","firstxmark","lastxmark","topxmark"]}
-,
-"extreport.cls":{"envs":{},"deps":["exscale.sty"],"cmds":["thechapter","chaptername","bibname","chapter","chaptermark"]}
-,
-"extsizes.sty":{"envs":{},"deps":{},"cmds":{}}
-,
-"factura.cls":{"envs":["factura","reverso","reporte","quoting"],"deps":["etoolbox.sty","xparse.sty","textpos.sty","eso-pic.sty","atbegshi.sty","xstring.sty","calc.sty","fp-upn.sty","numprint.sty","tikz.sty","tikzlibraryshadows.sty","tabularx.sty","environ.sty","fancyhdr.sty","datetime2.sty","anyfontsize.sty","ifxetex.sty","ifluatex.sty","zref-savepos.sty","babel.sty","fontenc.sty","geometry.sty","graphicx.sty","datetime2-calc.sty"],"cmds":["GeometriaFactura","GeometriaReverso","GeometriaReporte","FondoFactura","PosFecha","PosFormalibre","PosDenominacion","PosControl","PosNotaFinal","PosFirmas","SepVertical","SepDatosResumen","SepEncabezado","SepNotaPrevia","SepDescripcion","SepNotaFinal","SepItemsExtra","SepFilas","LineaEncabezado","LineaNotaPrevia","LineaDescripcion","LineaNotaFinal","LineaFirmas","RazonSocial","Nombre","RIF","CI","Contacto","Direccion","Telefono","Email","Conforme","Emisor","Proveedor","FirmaFactura","Moneda","Divisa","TasaCambio","TextoTasaCambio","Num","NumControl","NumSerieControl","Denominacion","Fecha","FormatoFecha","Credito","Descuento","DescuentoG","DescuentoR","DescuentoA","DescuentoE","Membrete","EncabezadoFactura","Resumen","NotaPrevia","NotaInterna","NotaExterna","NotaFinal","FondoReporte","EncabezadoReporte","EstiloPagina","InicioReporte","FirmaReporte","TituloReporte","InfoPagina","NumNota","FechaNota","TextoNotaDeCredito","TextoNotaDeDebito","Cliente","Item","ItemR","ItemA","ItemE","ItemX","Descripcion","LetraItems","LetraNumeros","LetraTipoIVA","LetraTitColumnas","LetraTitTotales","LetraNumTotales","LetraTitTotal","LetraNumTotal","LetraTitEnc","LetraEncFactura","LetraMembrete","LetraEncReporte","LetraNotaPrevia","LetraNotaInterna","LetraNotaExterna","LetraDescripcion","LetraFirmas","LetraNotaFinal","LetraFormalibre","LetraDenominacion","LetraNumeracion","LetraFecha","LetraTitReporte","LetraInfoPagina","LetraReverso","LetraReporte","itemref","cantref","descref","puref","subtref","dctoref","ivaref","ptref","ldescref","BIG","BIR","BIA","BIE","AlicuotaG","AlicuotaR","AlicuotaA","SubtG","SubtE","SubtR","SubtA","DescG","DescE","DescR","DescA","Total","TotalDivisa","FechaVencimiento","BeforeEndPreamble","ifagrupatotales","agrupatotalestrue","agrupatotalesfalse","ifdescripcioncentrada","descripcioncentradatrue","descripcioncentradafalse","iffilascentradas","filascentradastrue","filascentradasfalse","ifconlineasha","conlineashatrue","conlineashafalse","ifconreporte","conreportetrue","conreportefalse","ifcotizacion","cotizaciontrue","cotizacionfalse","ifcsv","csvtrue","csvfalse","ifdcu","dcutrue","dcufalse","ifdescuentos","descuentostrue","descuentosfalse","ifdivisa","divisatrue","divisafalse","ifdosfirmas","dosfirmastrue","dosfirmasfalse","ifduc","ductrue","ducfalse","ifexpandecuadro","expandecuadrotrue","expandecuadrofalse","iffilas","filastrue","filasfalse","ifG","Gtrue","Gfalse","ifivadescripcion","ivadescripciontrue","ivadescripcionfalse","ifiva","ivatrue","ivafalse","iflinea","lineatrue","lineafalse","ifmonedaceldas","monedaceldastrue","monedaceldasfalse","ifmonedadespues","monedadespuestrue","monedadespuesfalse","ifnospanish","nospanishtrue","nospanishfalse","ifnotadecredito","notadecreditotrue","notadecreditofalse","ifnotadedebito","notadedebitotrue","notadedebitofalse","ifnumitem","numitemtrue","numitemfalse","ifprefactura","prefacturatrue","prefacturafalse","ifsincantidad","sincantidadtrue","sincantidadfalse","ifsindenominacion","sindenominaciontrue","sindenominacionfalse","ifsinencabezadofactura","sinencabezadofacturatrue","sinencabezadofacturafalse","ifsinencabezadoreporte","sinencabezadoreportetrue","sinencabezadoreportefalse","ifsinexpandir","sinexpandirtrue","sinexpandirfalse","ifsinfirmas","sinfirmastrue","sinfirmasfalse","ifsiniva","sinivatrue","sinivafalse","ifsinivaexpresado","sinivaexpresadotrue","sinivaexpresadofalse","ifsinlineahni","sinlineahnitrue","sinlineahnifalse","ifsinlineahtit","sinlineahtittrue","sinlineahtitfalse","ifsinlineahtot","sinlineahtottrue","sinlineahtotfalse","ifsinlineash","sinlineashtrue","sinlineashfalse","ifsinlineashe","sinlineashetrue","sinlineashefalse","ifsinlineashi","sinlineashitrue","sinlineashifalse","ifsinlineasv","sinlineasvtrue","sinlineasvfalse","ifsinlineasve","sinlineasvetrue","sinlineasvefalse","ifsinlineasvi","sinlineasvitrue","sinlineasvifalse","ifsinmarcasfactura","sinmarcasfacturatrue","sinmarcasfacturafalse","ifsinmonedatotales","sinmonedatotalestrue","sinmonedatotalesfalse","ifsinnumero","sinnumerotrue","sinnumerofalse","ifsinreverso","sinreversotrue","sinreversofalse","ifsintotales","sintotalestrue","sintotalesfalse","ifsoloreporte","soloreportetrue","soloreportefalse","ifsubtotal","subtotaltrue","subtotalfalse","iftodosiva","todosivatrue","todosivafalse","iftwoside","twosidetrue","twosidefalse","ifunafirma","unafirmatrue","unafirmafalse","ifvencimiento","vencimientotrue","vencimientofalse","AuxFecha","CLASSERROR","CLASSINFO","CLASSWARNING","csv","Dcto","DescX","DibujoFirma","DTMfdef","DTMinformat","DTMs","DTMsavedatex","flechaCR","ItemG","PrecioS","PrecioT","PrecioU","SubtX","TextoFirma","theNumItem","tmprotect","Denom","EstiloPagReporte","LetraDenom","NotaFecha","NotaNum","PosDenom","captionsspanish","datespanish","extrasspanish","noextrasspanish","bibname","chaptername","enclname","ccname","headtoname","pagename","seename","alsoname","proofname","prefacename","glossaryname","spanishrefname","spanishabstractname","spanishbibname","spanishchaptername","spanishappendixname","spanishcontentsname","spanishlistfigurename","spanishlisttablename","spanishindexname","spanishfigurename","spanishtablename","spanishpartname","spanishenclname","spanishccname","spanishheadtoname","spanishpagename","spanishseename","spanishalsoname","spanishproofname","spanishprefacename","spanishglossaryname","spanishdashitems","spanishsignitems","spanishsymbitems","spanishindexchars","spanishscroman","spanishlcroman","spanishucroman","Today","spanishdate","spanishDate","spanishdatedel","spanishdatede","spanishreverseddate","spanishdatefirst","spanishdeactivate","decimalcomma","decimalpoint","spanishdecimal","sptext","spanishplainpercent","percentsign","lsc","lquoti","rquoti","lquotii","rquotii","lquotiii","rquotiii","activatequoting","deactivatequoting","sen","tg","arcsen","arctg","accentedoperators","unaccentedoperators","spacedoperators","unspacedoperators","spanishoperators","dotlessi","selectspanish","spanishoptions","textspanish","notextspanish","mathspanish","shorthandsspanish","DH","dh","dj","DJ","guillemetleft","guillemetright","guillemotleft","guillemotright","guilsinglleft","guilsinglright","Hwithstroke","hwithstroke","k","NG","ng","quotedblbase","quotesinglbase","textogonekcentered","textquotedbl","th","TH"]}
-,
-"facture.cls":{"envs":["facture"],"deps":["fontspec.sty","xunicode.sty","polyglossia.sty","numprint.sty","fltpoint.sty","tikz.sty","graphicx.sty","fancyhdr.sty","array.sty","longtable.sty","colortbl.sty","advdate.sty","xargs.sty"],"cmds":["TVAdefaut","type","numero","date","datelimite","nomemet","adresseemet","pied","dest","fact","codedest","entete","ligne","postTotaux","HT","TTC","TVA","TVAtxt","afficheTVA","codeclient","datelimitetxt","datetxt","epaisseurcadre","facturation","facturetxt","largeurChiffres","largeurChiffresAvecTVA","largeurDescriptif","largeurTVA","libelle","lignesansTVA","livraison","livraisonfacturation","ntxt","prix","prixHT","prixTTC","prixtxt","produit","quantite","remise","tot","totHT","totHTtxt","totTTC","totTTCtxt","totTVA","totTVAtxt","tottxt","unite","ifsansTVA","sansTVAtrue","sansTVAfalse","ifsansremise","sansremisetrue","sansremisefalse"]}
-,
-"faktor.sty":{"envs":{},"deps":{},"cmds":["faktor"]}
-,
-"familytree.sty":{"envs":{},"deps":["relsize.sty","xparse.sty"],"cmds":["indvdldef","ftindvdldef","biological","ftbiological","adopted","ftadopted","top","fttop","blank","ftblank","haschild","fthaschild","private","ftprivate","maleline","ftmaleline","femaleline","ftfemaleline","patrilineal","ftpatrilineal","matrilineal","ftmatrilineal","nameboxcfg","ftnameboxcfg","cmarkboxcfg","ftcmarkboxcfg","titleboxcfg","fttitleboxcfg","optboxcfg","ftoptboxcfg","sblngdef","ftsblngdef","ivaldef","ftivaldef","ival","ftival","ivalnameCY","ivalival","ivali","ftivali","ivalinameCY","ivaliival","ivalii","ftivalii","ivaliinameCY","ivaliiival","sblngboxcfg","ftsblngboxcfg","pcdef","ftpcdef","gensdef","ftgensdef","mrrgdef","ftmrrgdef","mrrgboxcfg","ftmrrgboxcfg","ftymd","ftundef","ifftdbg","ftdbgtrue","ftdbgfalse"]}
-,
-"fancybox.sty":{"envs":["Sbox","Beqnarray","Beqnarray*","landfloat","Bcenter","Bflushleft","Bflushright","Bitemize","Benumerate","Bdescription","Blist","LandScape","Landscape","Verbatim","LVerbatim","BVerbatim","VerbatimOut","SaveVerbatim"],"deps":{},"cmds":["shadowbox","doublebox","ovalbox","Ovalbox","thinlines","thicklines","shadowsize","cornersize","fancyoval","TheSbox","GenericCaption","item","boxput","fancyput","thisfancyput","fancypage","thisfancypage","LandScape","Landscape","UsePageParameters","VerbBox","VerbatimFootnotes","AltGetVerbatim","EndVerbatimTokens","VerbatimEnvironment","VerbatimInput","LVerbatimInput","BVerbatimInput","UseVerbatim","LUseVerbatim","BUseVerbatim","Verb","UseVerb","SaveVerb","VerbatimSpace","VerbatimTab","VerbatimFont","VerbatimFuzz","EveryVerbatimLine","EveryVerbatim","ThisVerb","EveryVerbatimCodes","ThisVerbCodes","VerbSpace","VerbTab","VerbFont","EveryVerb","EveryVerbCodes","EveryVerbOutCodes","EveryVerbOutLine"]}
-,
-"fancyhandout.cls":{"envs":{},"deps":["etoolbox.sty","geometry.sty","csquotes.sty","enumitem.sty","fancyhdr.sty","xcolor.sty"],"cmds":["title","subtitle","author","institute","date","inserttitle","insertshorttitle","insertsubtitle","insertshortsubtitle","insertauthor","insertshortauthor","insertinstitute","insertshortinstitute","insertdate","insertshortdate","fancysection","fancysubsection","fancysubsubsection","phantomsection","origtableofcontents"]}
-,
-"fancyhdr.sty":{"envs":{},"deps":{},"cmds":["fancyfoot","fancyhead","fancyhf","fancyfootoffset","fancyheadoffset","fancyhfoffset","fancypagestyle","iftopfloat","ifbotfloat","iffloatpage","iffootnote","headrulewidth","footrulewidth","headruleskip","footruleskip","headrule","footrule","headwidth","fancyheadinit","fancyfootinit","fancyhfinit","fancycenter","chead","cfoot","lhead","lfoot","rhead","rfoot"]}
-,
-"fancylabel.sty":{"envs":{},"deps":["xkeyval.sty","xifthen.sty","suffix.sty"],"cmds":["fancylabel","fancysublabel","fancyref","fancysubref","fancylabelformatdefault","fancysublabelformatdefault","fancyonlysublabelformatdefault","fancylabelNewLabelEvent","fancylabelShowLabelEvent","fancylabelShowRefEvent","thefancylabel","thefancysublabel","fancylabelResetCounter","fancylabelthisformat"]}
-,
-"fancynum.sty":{"envs":{},"deps":{},"cmds":["fnum","setfnumdsym","setfnumgsym","setfnummsym"]}
-,
-"fancypar.sty":{"envs":{},"deps":["xkeyval.sty","tikz.sty","tikzlibrarycalc.sty","xcolor.sty"],"cmds":["fancyparsetup","NotebookPar","ZebraPar","FancyZColor","FancyZTextColor","DashedPar","MarkedPar","UnderlinedPar","FancyPreFormat","FancyFormat","AddFancyFormat","thefancycount","FancyZColorOne","FancyZColorTwo","FancyZTextColorOne","FancyZTextColorTwo","FancyNlColor","FancyNilColor","FancyNilHeight","FancyNSColor","FancyNTextColor","FancyNTWidth","FancyMark","FancyUColor","FancyDSeparation","FancyDColor","FancyDSymbol","textindent","textindentright","FancyMarkPosition","linebox","leaderfill"]}
-,
-"fancyqr.sty":{"envs":{},"deps":["tikz.sty","qrcode.sty"],"cmds":["fancyqr","fancyqrset","FancyQrDoNotPrintSquare","FancyQrRoundCut","FancyQrHardCut","FancyQrLoad","FancyLoadDefault","FancyQrColor","filename","GetPattern","gradient","newpattern","qrm"]}
-,
-"fancyref.sty":{"envs":{},"deps":["varioref.sty"],"cmds":["fref","Fref","fancyrefchangeprefix","fancyrefaddcaptions","frefformat","Frefformat","fancyrefhook","fancyrefchaplabelprefix","fancyrefseclabelprefix","fancyrefeqlabelprefix","fancyreffiglabelprefix","fancyreftablabelprefix","fancyrefenumlabelprefix","fancyreffnlabelprefix","fancyrefargdelim","fancyrefloosespacing","fancyreftightspacing","fancyrefdefaultspacing","Frefchapname","Frefenumname","Frefeqname","Freffigname","Freffnname","Frefonname","Frefpgname","Frefsecname","Frefseename","Freftabname","frefchapname","frefenumname","frefeqname","freffigname","freffnname","frefonname","frefpgname","frefsecname","frefseename","freftabname","Freffigshortname","Frefpgshortname","Freftabshortname","freffigshortname","frefpgshortname","freftabshortname","fancyrefdefaultformat"]}
-,
-"fancyslides.cls":{"envs":["mybox","mybox2"],"deps":["s-beamer.cls","framed.sty","tikz.sty"],"cmds":["fitem","pitem","customtextcol","slogan","fbckg","thankyou","pointedsl","framedsl","itemized","startingslide","misc","sources"]}
-,
-"fancytabs.sty":{"envs":{},"deps":["etoolbox.sty","tikz.sty"],"cmds":["fancytab","fancytabsStyle","fancytabsHeight","fancytabsWidth","fancytabsCount","fancytabsLeftColor","fancytabsRightColor","fancytabsTop","fancytabsTextVPos","fancytabsTextHPos","fancytabsGap","fancytabsFloor","fancytabsRotate","multiplier","eastwest"]}
-,
-"fancytooltips.sty":{"envs":{},"deps":["graphicx.sty","xkeyval.sty","atbegshi.sty","eforms.sty","ocg.sty","transparent.sty","eso-pic.sty"],"cmds":["keytip","tooltip","TooltipExtratext","TooltipFilename","tooltipanim","delayinterval","TooltipRefmark","FindTipNumber","SaveTooltipExtratext","TipNumber","TipNumberA","TipNumberB","TooltipHidden","TooltipPages","TooltipPage","act","checkTipNumber","eqIconDefaults","eqIconFTT","everyeqIcon","fancytempA","fancytempAA","fancytempAAA","fancytempB","fancytooltipsdebugmsg","frametip","oldref","templabel","tooltipname","tooltippage"]}
-,
-"fancyunits-base.sty":{"envs":{},"deps":{},"cmds":["unit","addunit","pow","ufrac","Ufrac","UFrac","per","power","Square","Squared","cubic","cubed","fourth","reciprocal","rp","rpsquare","rpsquared","rpcubic","rpcubed","rpfourth","metre","meter","kilogram","second","ampere","kelvin","mole","candela","yocto","zepto","atto","fempto","pico","nano","micro","milli","centi","deci","deca","deka","hecto","kilo","mega","giga","tera","peta","exa","zetta","yotta","yoctod","zeptod","attod","femptod","picod","nanod","microd","millid","centid","decid","decad","dekad","decaD","hectod","kilod","megad","gigad","terad","petad","exad","zettad","yottad","rad","sterad","radian","steradian","hertz","newton","pascal","joule","watt","coulomb","volt","farad","ohm","weber","tesla","henry","celsius","degreecelsius","lumen","lux","becquerel","Gray","sievert","radianbase","steradianbase","hertzbase","newtonbase","pascalbase","joulebase","wattbase","coulombbase","voltbase","faradbase","ohmbase","siemensbase","weberbase","teslabase","henrybase","celsiusbase","degreecelsiusbase","lumenbase","luxbase","becquerelbase","Graybase","sievertbase","derradian","dersteradian","derhertz","dernewton","derpascal","derjoule","derwatt","dercoulomb","dervolt","derfarad","derohm","dersiemens","derweber","dertesla","derhenry","dercelsius","derdegreecelsius","derlumen","derlux","derbecquerel","derGray","dersievert","minute","hour","dday","degree","paminute","parsecond","angstrom","AstroE","lightyear","parsec","gal","liter","litre","atomicmass","gram","ton","tonne","barn","hectare","are","bbar","curie","rem","roentgen","oersted","electronvolt"]}
-,
-"fancyunits-np.sty":{"envs":{},"deps":{},"cmds":["Graypersecondnp","metrepersquaresecondnp","joulepermolenp","molepercubicmetrenp","radianpersquaresecondnp","kilogramsquaremetrepersecondnp","radianpersecondnp","Squaremetrepercubicmetrenp","coulombpermolnp","amperepersquaremetrenp","kilogrampercubicmetrenp","Squaremetrepernewtonsecondnp","pascalsecondnp","coulombpercubicmetrenp","voltpermetrenp","coulombpersquaremetrenp","faradpermetrenp","wattpersquaremetrenp","joulepersquaremetrenp","newtonpercubicmetrenp","newtonperkilogramnp","jouleperkelvinnp","jouleperkilogramnp","coulombperkilogramnp","Squaremetrepersecondnp","Squaremetrepersquaresecondnp","kilogrammetrepersecondnp","candelapersquaremetrenp","amperepermetrenp","jouleperteslanp","henrypermetrenp","kilogrampersecondnp","kilogrampersquaremetresecondnp","kilogrampersquaremetrenp","kilogrampermetrenp","joulepermolekelvinnp","kilogramperkilomolenp","kilogramsquaremetrenp","kilogrammetrepersquaresecondnp","newtonpersquaremetrenp","persquaremetresecondnp","wattperkilogramnp","wattpercubicmetrenp","wattpersquaremetresteradiannp","jouleperkilogramkelvinnp","Squaremetreperkilogramnp","cubicmetreperkilogramnp","newtonpermetrenp","wattpermetrekelvinnp","newtonmetrenp","Squaremetrepercubicsecondnp","metrepersecondnp","joulepercubicmetrenp","kilogrampercubicmetrecoulombnp","cubicmetrepersecondnp","kilogrampersecondcubicmetrenp"]}
-,
-"fancyunits-per.sty":{"envs":{},"deps":{},"cmds":["Squaremetre","cubicmetre","Graypersecond","metrepersquaresecond","joulepermole","molepercubicmetre","radianpersquaresecond","kilogramsquaremetrepersecond","radianpersecond","Squaremetrepercubicmetre","coulombpermol","amperepersquaremetre","kilogrampercubicmetre","Squaremetrepernewtonsecond","pascalsecond","coulombpercubicmetre","amperemetresecond","voltpermetre","coulombpersquaremetre","faradpermetre","ohmmetre","kilowatthour","wattpersquaremetre","joulepersquaremetre","newtonpercubicmetre","newtonperkilogram","jouleperkelvin","jouleperkilogram","coulombperkilogram","Squaremetrepersecond","rpsquaremetrepersecond","Squaremetrepersquaresecond","rpsquaremetrepersquaresecond","kilogrammetrepersecond","candelapersquaremetre","amperepermetre","joulepertesla","henrypermetre","kilogrampersecond","kilogrampersquaremetresecond","kilogrampersquaremetre","kilogrampermetre","joulepermolekelvin","kilogramperkilomole","kilogramsquaremetre","kilogrammetrepersquaresecond","newtonpersquaremetre","persquaremetresecond","wattperkilogram","wattpercubicmetre","wattpersquaremetresteradian","jouleperkilogramkelvin","Squaremetreperkilogram","rpsquaremetreperkilogram","cubicmetreperkilogram","rpcubicmetreperkilogram","newtonpermetre","Celsius","wattpermetrekelvin","newtonmetre","Squaremetrepercubicsecond","metrepersecond","joulepercubicmetre","kilogrampercubicmetrecoulomb","cubicmetrepersecond","rpcubicmetrepersecond","kilogrampersecondcubicmetre"]}
-,
-"fancyunits_big-fractions.sty":{"envs":{},"deps":{},"cmds":["GraypersecondUF","metrepersquaresecondUF","joulepermoleUF","molepercubicmetreUF","radianpersquaresecondUF","kilogramsquaremetrepersecondUF","radianpersecondUF","SquaremetrepercubicmetreUF","coulombpermolUF","amperepersquaremetreUF","kilogrampercubicmetreUF","SquaremetrepernewtonsecondUF","pascalsecondUF","coulombpercubicmetreUF","voltpermetreUF","coulombpersquaremetreUF","faradpermetreUF","wattpersquaremetreUF","joulepersquaremetreUF","newtonpercubicmetreUF","newtonperkilogramUF","jouleperkelvinUF","jouleperkilogramUF","coulombperkilogramUF","SquaremetrepersecondUF","SquaremetrepersquaresecondUF","kilogrammetrepersecondUF","candelapersquaremetreUF","amperepermetreUF","jouleperteslaUF","henrypermetreUF","kilogrampersecondUF","kilogrampersquaremetresecondUF","kilogrampersquaremetreUF","kilogrampermetreUF","joulepermolekelvinUF","kilogramperkilomoleUF","kilogrammetrepersquaresecondUF","newtonpersquaremetreUF","persquaremetresecondUF","wattperkilogramUF","wattpercubicmetreUF","wattpersquaremetresteradianUF","jouleperkilogramkelvinUF","SquaremetreperkilogramUF","cubicmetreperkilogramUF","newtonpermetreUF","wattpermetrekelvinUF","SquaremetrepercubicsecondUF","metrepersecondUF","joulepercubicmetreUF","kilogrampercubicmetrecoulombUF","cubicmetrepersecondUF","kilogrampersecondcubicmetreUF"]}
-,
-"fancyunits_medium-fractions.sty":{"envs":{},"deps":{},"cmds":["GraypersecondUf","metrepersquaresecondUf","joulepermoleUf","molepercubicmetreUf","radianpersquaresecondUf","kilogramsquaremetrepersecondUf","radianpersecondUf","SquaremetrepercubicmetreUf","coulombpermolUf","amperepersquaremetreUf","kilogrampercubicmetreUf","SquaremetrepernewtonsecondUf","pascalsecondUf","coulombpercubicmetreUf","voltpermetreUf","coulombpersquaremetreUf","faradpermetreUf","wattpersquaremetreUf","joulepersquaremetreUf","newtonpercubicmetreUf","newtonperkilogramUf","jouleperkelvinUf","jouleperkilogramUf","coulombperkilogramUf","SquaremetrepersecondUf","SquaremetrepersquaresecondUf","kilogrammetrepersecondUf","candelapersquaremetreUf","amperepermetreUf","jouleperteslaUf","henrypermetreUf","kilogrampersecondUf","kilogrampersquaremetresecondUf","kilogrampersquaremetreUf","kilogrampermetreUf","joulepermolekelvinUf","kilogramperkilomoleUf","kilogrammetrepersquaresecondUf","newtonpersquaremetreUf","persquaremetresecondUf","wattperkilogramUf","wattpercubicmetreUf","wattpersquaremetresteradianUf","jouleperkilogramkelvinUf","SquaremetreperkilogramUf","cubicmetreperkilogramUf","newtonpermetreUf","wattpermetrekelvinUf","SquaremetrepercubicsecondUf","metrepersecondUf","joulepercubicmetreUf","kilogrampercubicmetrecoulombUf","cubicmetrepersecondUf","kilogrampersecondcubicmetreUf"]}
-,
-"fancyunits_small-fractions.sty":{"envs":{},"deps":{},"cmds":["Grayperseconduf","metrepersquareseconduf","joulepermoleuf","molepercubicmetreuf","radianpersquareseconduf","kilogramsquaremetreperseconduf","radianperseconduf","Squaremetrepercubicmetreuf","coulombpermoluf","amperepersquaremetreuf","kilogrampercubicmetreuf","Squaremetrepernewtonseconduf","pascalseconduf","coulombpercubicmetreuf","voltpermetreuf","coulombpersquaremetreuf","faradpermetreuf","wattpersquaremetreuf","joulepersquaremetreuf","newtonpercubicmetreuf","newtonperkilogramuf","jouleperkelvinuf","jouleperkilogramuf","coulombperkilogramuf","Squaremetreperseconduf","Squaremetrepersquareseconduf","kilogrammetreperseconduf","candelapersquaremetreuf","amperepermetreuf","jouleperteslauf","henrypermetreuf","kilogramperseconduf","kilogrampersquaremetreseconduf","kilogrampersquaremetreuf","kilogrampermetreuf","joulepermolekelvinuf","kilogramperkilomoleuf","kilogrammetrepersquareseconduf","newtonpersquaremetreuf","persquaremetreseconduf","wattperkilogramuf","wattpercubicmetreuf","wattpersquaremetresteradianuf","jouleperkilogramkelvinuf","Squaremetreperkilogramuf","cubicmetreperkilogramuf","newtonpermetreuf","wattpermetrekelvinuf","Squaremetrepercubicseconduf","metreperseconduf","joulepercubicmetreuf","kilogrampercubicmetrecoulombuf","cubicmetreperseconduf","kilogrampersecondcubicmetreuf"]}
-,
-"fancyvrb-ex.sty":{"envs":["PCenterExample","PSideBySideExample","Example","CenterExample","SideBySideExample","PCenterExample","PSideBySideExample"],"deps":["fancyvrb.sty","xcolor.sty","hbaw.sty","pstricks.sty"],"cmds":["showgrid"]}
-,
-"fancyvrb.sty":{"envs":["Verbatim","Verbatim*","BVerbatim","BVerbatim*","LVerbatim","LVerbatim*","SaveVerbatim","VerbatimOut"],"deps":["keyval.sty"],"cmds":["Verb","VerbatimFootnotes","DefineShortVerb","UndefineShortVerb","fvset","DefineVerbatimEnvironment","CustomVerbatimEnvironment","RecustomVerbatimEnvironment","CustomVerbatimCommand","RecustomVerbatimCommand","SaveVerb","UseVerb","UseVerbatim","BUseVerbatim","LUseVerbatim","VerbatimInput","BVerbatimInput","LVerbatimInput","FancyVerbAfterSave","FancyVerbCodes","FancyVerbDefineActive","FancyVerbFileExtension","FancyVerbFillColor","FancyVerbFormatCom","FancyVerbFormatLine","FancyVerbGetLine","FancyVerbGetVerb","FancyVerbHFuzz","FancyVerbRuleColor","FancyVerbSpace","FancyVerbStartNum","FancyVerbStartString","FancyVerbStopNum","FancyVerbStopString","FancyVerbTab","FancyVerbTabSize","FancyVerbVspace","filedate","fileversion","myFont","pUseMVerb","SaveGVerb","SaveMVerb","theFancyVerbLine","UseMVerb","VerbatimEnvironment"]}
-,
-"fapapersize.sty":{"envs":{},"deps":{},"cmds":["usefastocksize","usefapapersize","definefageometry","selectfageometry","evenmarginsameasodd"]}
-,
-"fascicules.sty":{"envs":["lesson","activities","exercises","solutions","exo","sol","sol*","activity","objective","method","theorem","definition","property","formula","remark","windowsratio","cours"],"deps":["xcolor.sty","beamerarticle.sty","amsthm.sty","keyval.sty","comment.sty","ifthen.sty","enumitem.sty","multicol.sty","calc.sty","tikz.sty","tikzlibrarycalc.sty","nameref.sty","tcolorbox.sty","tcolorboxlibrarytheorems.sty","pgfopts.sty","environ.sty","tagging.sty","xcomment.sty","hyperref.sty","cleveref.sty","answers.sty","scrlayer-scrpage.sty"],"cmds":["fasciculestitle","backgroundimage","listofmethods","onecolumnexos","groupexos","activity","window","axeH","axeV","tickX","tickY","activitiescolor","activitytitleFormat","coloredbg","exercisescolor","groupexosFormat","headcoloredbg","headcontents","headerFormat","lessoncolor","methodscolor","notez","poslabelX","poslabelY","solutionscolor","thebeamerExo","windowwidth","Xmax","Xmin","Ymax","Ymin"]}
-,
-"fast-diagram.sty":{"envs":["fast"],"deps":["tikz.sty","ifthen.sty","relsize.sty","xargs.sty","tikzlibrarycalc.sty","tikzlibraryfit.sty","tikzlibraryshapes.sty"],"cmds":["FT","ST","FV","trait","fastFT","fastST","fastVide","fastTrait","fastReset","fastInterligne","fastLargeurBoite","fastHauteurBoite","fastEspaceColonne","fastDecalageTrait","fastEpaisseurTraits","fastDecalageOuVertical","fastDecalageOuHorizontal","fastSetCouleurBordures","fastSetCouleurTexte","fastSetCouleurFond","fastSetCouleurConnecteurs","fastSetCouleurTraits","fastAvanceColonne","fastEnregistreMinimum","fastFSStyle","fastFSarrondi","fastFStexteStyle","fastFTStyle","fastFTarrondi","fastFTtexteStyle","fastFVStyle","fastFVtexteStyle","fastReculeColonne","fastSTStyle","fastSTarrondi","fastSTtexteStyle","fastTraceConnecteurs","posX","thecptAbscisse","thecptAbscisseParent","thecptBoite","ttt"]}
-,
-"fbb.sty":{"envs":{},"deps":["fontaxes.sty","fontenc.sty","textcomp.sty","ifetex.sty","etoolbox.sty","xstring.sty","ifthen.sty","mweights.sty","xkeyval.sty"],"cmds":["defigures","infigures","inffigures","lfstyle","nufigures","osfstyle","Qswash","sufigures","swshape","textfrac","textin","textinf","textinferior","textlf","textosf","textsu","textsup","textsuperior","textde","textnu","texttlf","texttosf","tlfstyle","tosfstyle","useosf","useproportional","Qnoswash","DH","NG","dj","ng","k","guillemotleft","guillemotright","guilsinglleft","guilsinglright","quotedblbase","quotesinglbase","textquotedbl","DJ","th","TH","dh","Hwithstroke","hwithstroke","textogonekcentered","guillemetleft","guillemetright"]}
-,
-"fbox.sty":{"envs":{},"deps":["xkeyval.sty","xcolor.sty"],"cmds":["fbox","fparbox"]}
-,
-"fc_arith.sty":{"envs":["MenuFC"],"deps":["xkeyval.sty","ifxetex.sty","calc.sty","eforms.sty","popupmenu.sty"],"cmds":["fcSettings","fcSettingsColor","fcOptionsMenuItem","fcMouseKPMenuItemTitle","fcToggleKeypadMenuItem","fcToggleKeypadMenuItemTitle","fcTouchKPMenuItem","fcTouchKPMenuItemTitle","fcMouseKPMenuItem","fcAboutFC","fcAboutFCTitle","amtChngMouToTou","arithProb","tBGNoBorder","monoSpaceFont","setDimOf","inputRegion","cBGNoBorder","startAgain","newCard","tBGNoBorderI","fieldFont","alertbox","Keypad","szNum","myNumPadI","kpBack","kpEnter","cbTiming","fcNoTiming","ansField","fmtAnswer","cbOperation","cBGBorder","fcAddition","fcSubtraction","fcMultiplication","fcDivision","statsFields","statsFieldOpColor","statsFieldColor","DeclareArithParams","timeUpMsg","rightMsg","wrongMsg","startAgainMsg","newCar","toggleKeypad","operation","numCorrect","numAttempted","percentCorrect","timedScores","fctCharWidth","fctInstr","fctTimeElapsed","fctPoints","fctLessThanV","fctLessThanVPoints","fctBtwnVAndX","fctBtwnVAndXPoints","fctBtwnXAndXV","fctBtwnXAndXVPoints","fctBtwnXVAndXX","fctBtwnXVAndXXPoints","fctBtwnXXAndXXV","fctBtwnXXAndXXVPoints","fctGtrXXV","fctGtrXXVPoints","fcAdditionName","fcSubtractionName","fcMultiplicationName","fcDivisionName","fcMenuFCMsg","toggleKeyPadBtnColor","toggleKeyPadBtnTooltip","fcSettingsTooltip","cbTimingToolip","cbOperationTooltip","timeScoresTooltip","fcOptTextWidth","fcOptTopRange","fcOptBottomRange","fcOptTopRangeDiv","fcOptBottomRangeDiv","fcOptTo","fcOptAllowNegNumber","fcOptDecimal","fcOptDecimalNone","fcSep","fcWidth","FCMenu","bFCa","bFCd","bFCm","bFCs","cbvOptChoices","eFCa","eFCd","eFCm","eFCs","fcAddBParams","fcAddTParams","fcAllowNegSub","fcDivBParams","fcDivQParams","fcMenu","fcMulBParams","fcMulTParams","fcOptionsMenuItemTitle","fcSubBParams","fcSubTParams","fcTimedScores","fcaddDecB","fcaddDecT","fcdivDecB","fcdivDecQ","fcmulDecB","fcmulDecT","fcsubDecB","fcsubDecT","isReadOnlyTiming","kpDec","kpMinus","newCardMsg","placeImageOpts","toggleKeyPadBtn"]}
-,
-"fclfont.sty":{"envs":{},"deps":["newlfont.sty","fontenc.sty"],"cmds":["ttseries","m","M","B","G","U","I","T","DH","copyleft","NG","dj","ng","k","SS","guillemotleft","guillemotright","guilsinglleft","guilsinglright","quotedblbase","quotesinglbase","textquotedbl","DJ","tsh","TSH"]}
-,
-"fcolumn.sty":{"envs":{},"deps":["array.sty"],"cmds":["sumline","resetsumline","leeg","checkfcolumns"]}
-,
-"fcprefix.sty":{"envs":{},"deps":["ifthen.sty","keyval.sty","fcnumparser.sty"],"cmds":["latinnumeralstring","latinnumeralstringnum"]}
-,
-"fdsymbol.sty":{"envs":{},"deps":["xkeyval.sty","textcomp.sty"],"cmds":["circledR","circledS","dagger","ddagger","mathdollar","mathparagraph","mathsection","mathsterling","yen","acwcirclearrowdown","acwcirclearrowleft","acwcirclearrowright","acwcirclearrowup","acwgapcirclearrow","acwleftarcarrow","acwnearcarrow","acwnwarcarrow","acwopencirclearrow","acwoverarcarrow","acwrightarcarrow","acwsearcarrow","acwswarcarrow","acwunderarcarrow","adots","approxeq","approxident","arceq","Assert","assert","awint","backcong","backneg","backprime","backpropto","backsim","backsimeq","backsimneqq","Barv","barV","barwedge","Bbbk","bdleftarcarrow","bdnearcarrow","bdnwarcarrow","bdoverarcarrow","bdrightarcarrow","bdsearcarrow","bdswarcarrow","bdunderarcarrow","because","beth","between","bigcapdot","bigcapplus","bigcupdot","bigcupplus","bigcurlyvee","bigcurlywedge","bigdoublevee","bigdoublewedge","bigoast","bigplus","bigsqcap","bigsqcapdot","bigsqcapplus","bigsqcupdot","bigsqcupplus","bigstar","bigtimes","bigveedot","bigwedgedot","blackdiamond","blacklozenge","blacktriangle","blacktriangledown","blacktriangleleft","blacktriangleright","blackwhitespoon","Box","boxbackslash","boxbar","boxbox","boxbslash","boxdiag","boxdot","boxminus","boxplus","boxslash","boxtimes","boxvert","bracemd","bracemid","bracemu","btimes","Bumpeq","bumpeq","bumpeqq","Cap","capdot","capplus","centerdot","checkmark","circeq","circlearrowleft","circlearrowright","circledast","circledcirc","circleddash","circledequal","circledvert","cirmid","closure","Colon","coloneq","coloneqq","complement","conjquant","crossing","Cup","cupdot","cupplus","curlyeqprec","curlyeqsucc","curlyvee","curlywedge","curvearrowleft","curvearrowright","cwcirclearrowdown","cwcirclearrowleft","cwcirclearrowright","cwcirclearrowup","cwgapcirclearrow","cwleftarcarrow","cwnearcarrow","cwnwarcarrow","cwopencirclearrow","cwoverarcarrow","cwrightarcarrow","cwsearcarrow","cwswarcarrow","cwunderarcarrow","daleth","dasharrow","dashleftarrow","dashrightarrow","dashV","DashV","Dashv","dashVv","dawint","dbigcap","dbigcapdot","dbigcapplus","dbigcup","dbigcupdot","dbigcupplus","dbigcurlyvee","dbigcurlywedge","dbigdoublevee","dbigdoublewedge","dbigoast","dbigodot","dbigoplus","dbigotimes","dbigplus","dbigsqcap","dbigsqcapdot","dbigsqcapplus","dbigsqcup","dbigsqcupdot","dbigsqcupplus","dbigtimes","dbiguplus","dbigvee","dbigveedot","dbigwedge","dbigwedgedot","dconjquant","dcoprod","Ddashv","ddisjquant","ddotdot","ddotsint","Ddownarrow","dfint","diameter","Diamond","diamondbackslash","diamondbslash","diamondcdot","diamonddiamond","diamonddot","diamondminus","diamondplus","diamondslash","diamondtimes","diamondvert","didotsint","diiiint","diiint","diint","dint","dintbar","dintBar","dintclockwise","dintctrclockwise","disjquant","divideontimes","divides","divslash","dlanddownint","dlandupint","dlcircleleftint","dlcirclerightint","dmodtwosum","doiiint","doiint","doint","dointclockwise","dointctrclockwise","dosum","dotcong","Doteq","doteqdot","dotminus","dotplus","dotsint","dotsminusdots","dottimes","doublebarwedge","doublecap","doublecup","doublesqcap","doublesqcup","doublevee","doublewedge","downarrowtail","downAssert","downassert","downbkarrow","downblackspoon","downdownarrows","downharpoonleft","downharpoonright","downlcurvearrow","downleftcurvedarrow","downlsquigarrow","downmapsto","Downmapsto","downmodels","downpitchfork","downrcurvearrow","downrightcurvedarrow","downrsquigarrow","downspoon","downtherefore","downuparrows","downupcurvearrow","downupharpoons","downupharpoonsleftright","downupsquigarrow","downvDash","downVdash","downVDash","downvdash","downwavearrow","downY","downzigzagarrow","dprod","drcircleleftint","drcirclerightint","dsum","dsumint","dtimes","dualmap","dvarcoprod","dvarmodtwosum","dvarointclockwise","dvarointctrclockwise","dvarosum","dvarprod","dvarsum","dvarsumint","eqcirc","eqcolon","eqdot","eqqcolon","eqsim","eqslantgtr","eqslantless","equal","fallingdotseq","fint","Finv","frowneq","frownsmile","Game","geqclosed","geqdot","geqq","geqslant","geqslantdot","geqslcc","gescc","gesdot","gesl","ggg","gggtr","gimel","gnapprox","gneq","gneqq","gnsim","gtcc","gtlpar","gtr","gtrapprox","gtrcc","gtrclosed","gtrdot","gtreqless","gtreqlessslant","gtreqqless","gtreqslantless","gtrless","gtrsim","gvertneqq","hateq","hdotdot","hknearrow","hknwarrow","hksearrow","hkswarrow","hookdownarrow","hookdownminus","hooknearrow","hooknwarrow","hooksearrow","hookswarrow","hookuparrow","hookupminus","hourglass","hslash","imageof","intBar","intbar","intclockwise","intctrclockwise","intercal","intprod","intprodr","invneg","invnot","Join","landdownint","landupint","lAngle","langledot","largeblackcircle","largeblacksquare","largeblackstar","largecircle","largesquare","largetriangledown","largetriangleup","largewhitestar","lBrack","lcircleleftint","lcirclerightint","Ldsh","leadsto","leftarrowtail","leftAssert","leftassert","leftbkarrow","leftblackspoon","leftcurvedarrow","leftdowncurvedarrow","leftfootline","leftlcurvearrow","leftleftarrows","leftlsquigarrow","leftmapsto","Leftmapsto","leftmodels","leftpitchfork","leftrcurvearrow","leftrightarrows","leftrightblackspoon","leftrightcurvearrow","leftrightharpoondownup","leftrightharpoons","leftrightharpoonupdown","leftrightspoon","leftrightsquigarrow","leftrightwavearrow","leftrsquigarrow","leftspoon","leftsquigarrow","lefttherefore","leftthreetimes","leftupcurvedarrow","leftvDash","leftVdash","leftVDash","leftvdash","leftwavearrow","leftY","leqclosed","leqdot","leqq","leqslant","leqslantdot","leqslcc","lescc","lesdot","lesg","less","lessapprox","lesscc","lessclosed","lessdot","lesseqgtr","lesseqgtrslant","lesseqqgtr","lesseqslantgtr","lessgtr","lesssim","lgblkcircle","lgblksquare","lgwhtcircle","lgwhtsquare","lhd","lhookdownarrow","lhookleftarrow","lhooknearrow","lhooknwarrow","lhookrightarrow","lhooksearrow","lhookswarrow","lhookuparrow","lightning","lJoin","llcorner","Lleftarrow","lll","llless","lnapprox","lneq","lneqq","lnsim","longdashv","longleadsto","longleftfootline","longleftsquigarrow","longleftwavearrow","Longmapsfrom","longmapsfrom","Longmapsto","longrightfootline","longrightsquigarrow","longrightwavearrow","looparrowleft","looparrowright","lozenge","lozengeminus","lparen","lrcorner","lrtimes","lsem","Lsh","ltcc","ltimes","lvertneqq","lVvert","maltese","mapsdown","Mapsdown","mapsfrom","Mapsfrom","Mapsto","mapsup","Mapsup","mathbb","mathcolon","mathfrak","mathratio","mathslash","mdblkdiamond","mdblklozenge","mdblksquare","mdlgblkcircle","mdlgblkdiamond","mdlgblklozenge","mdlgblksquare","mdlgwhtcircle","mdlgwhtdiamond","mdlgwhtlozenge","mdlgwhtsquare","mdwhtdiamond","mdwhtlozenge","mdwhtsquare","measuredangle","measuredangleleft","measuredrightangle","measuredrightangledot","medbackslash","medblackcircle","medblackdiamond","medblacklozenge","medblacksquare","medblackstar","medblacktriangledown","medblacktriangleleft","medblacktriangleright","medblacktriangleup","medcircle","meddiamond","medlozenge","medslash","medsquare","medstar","medtriangledown","medtriangleleft","medtriangleright","medtriangleup","medwhitestar","midcir","middlebar","middleslash","minus","minusdot","minusfdots","minushookdown","minushookup","minusrdots","modtwosum","multimap","multimapinv","nacwcirclearrowdown","nacwcirclearrowleft","nacwcirclearrowright","nacwcirclearrowup","nacwgapcirclearrow","nacwleftarcarrow","nacwnearcarrow","nacwnwarcarrow","nacwopencirclearrow","nacwoverarcarrow","nacwrightarcarrow","nacwsearcarrow","nacwswarcarrow","nacwunderarcarrow","napprox","napproxeq","napproxident","narceq","nAssert","nassert","nasymp","nbackcong","nbacksim","nbacksimeq","nBarv","nbarV","nbdleftarcarrow","nbdnearcarrow","nbdnwarcarrow","nbdoverarcarrow","nbdrightarcarrow","nbdsearcarrow","nbdswarcarrow","nbdunderarcarrow","nblackwhitespoon","nBumpeq","nbumpeq","nbumpeqq","ncirceq","ncirclearrowleft","ncirclearrowright","ncirmid","nclosure","ncong","ncurlyeqprec","ncurlyeqsucc","ncurvearrowleft","ncurvearrowright","ncwcirclearrowdown","ncwcirclearrowleft","ncwcirclearrowright","ncwcirclearrowup","ncwgapcirclearrow","ncwleftarcarrow","ncwnearcarrow","ncwnwarcarrow","ncwopencirclearrow","ncwoverarcarrow","ncwrightarcarrow","ncwsearcarrow","ncwswarcarrow","ncwunderarcarrow","ndasharrow","ndashleftarrow","ndashrightarrow","nDashv","ndashV","nDashV","ndashv","ndashVv","nDdashv","nDdownarrow","ndivides","nDoteq","ndoteq","nDownarrow","ndownarrow","ndownarrowtail","ndownAssert","ndownassert","ndownbkarrow","ndownblackspoon","ndowndownarrows","ndownharpoonleft","ndownharpoonright","ndownlcurvearrow","ndownleftcurvedarrow","ndownlsquigarrow","nDownmapsto","ndownmapsto","ndownmodels","ndownpitchfork","ndownrcurvearrow","ndownrightcurvedarrow","ndownrsquigarrow","ndownspoon","ndownuparrows","ndownupcurvearrow","ndownupharpoons","ndownupharpoonsleftright","ndownupsquigarrow","ndownvDash","ndownVdash","ndownVDash","ndownvdash","ndownwavearrow","ndualmap","Nearrow","nearrowtail","nebkarrow","neharpoonnw","neharpoonse","nelcurvearrow","nenearrows","neqcirc","neqdot","neqsim","neqslantgtr","neqslantless","nequal","nequiv","nercurvearrow","Neswarrow","neswarrow","neswarrows","neswcurvearrow","neswharpoonnwse","neswharpoons","neswharpoonsenw","nexists","nfallingdotseq","nfrown","nfrowneq","nfrownsmile","ngeq","ngeqclosed","ngeqdot","ngeqq","ngeqslant","ngeqslantdot","ngeqslcc","ngescc","ngesdot","ngesl","ngets","ngg","nggg","ngtcc","ngtr","ngtrapprox","ngtrcc","ngtrclosed","ngtrdot","ngtreqless","ngtreqlessslant","ngtreqqless","ngtreqslantless","ngtrless","ngtrsim","nhateq","nhknearrow","nhknwarrow","nhksearrow","nhkswarrow","nhookdownarrow","nhookleftarrow","nhooknearrow","nhooknwarrow","nhookrightarrow","nhooksearrow","nhookswarrow","nhookuparrow","nimageof","nin","nleadsto","nLeftarrow","nleftarrow","nleftarrowtail","nleftAssert","nleftassert","nleftbkarrow","nleftblackspoon","nleftcurvedarrow","nleftdowncurvedarrow","nleftfootline","nleftharpoondown","nleftharpoonup","nleftlcurvearrow","nleftleftarrows","nleftlsquigarrow","nLeftmapsto","nleftmapsto","nleftmodels","nleftpitchfork","nleftrcurvearrow","nLeftrightarrow","nleftrightarrow","nleftrightarrows","nleftrightblackspoon","nleftrightcurvearrow","nleftrightharpoondownup","nleftrightharpoons","nleftrightharpoonupdown","nleftrightspoon","nleftrightsquigarrow","nleftrightwavearrow","nleftrsquigarrow","nleftspoon","nleftsquigarrow","nleftupcurvedarrow","nleftvDash","nleftVdash","nleftVDash","nleftvdash","nleftwavearrow","nleq","nleqclosed","nleqdot","nleqq","nleqslant","nleqslantdot","nleqslcc","nlescc","nlesdot","nlesg","nless","nlessapprox","nlesscc","nlessclosed","nlessdot","nlesseqgtr","nlesseqgtrslant","nlesseqqgtr","nlesseqslantgtr","nlessgtr","nlesssim","nll","nLleftarrow","nlll","nlongdashv","nlongleadsto","nLongleftarrow","nlongleftarrow","nlongleftfootline","nLongleftrightarrow","nlongleftrightarrow","nlongleftsquigarrow","nlongleftwavearrow","nLongmapsfrom","nlongmapsfrom","nLongmapsto","nlongmapsto","nLongrightarrow","nlongrightarrow","nlongrightfootline","nlongrightsquigarrow","nlongrightwavearrow","nltcc","nMapsdown","nmapsdown","nMapsfrom","nmapsfrom","nMapsto","nmapsto","nMapsup","nmapsup","nmid","nmidcir","nmodels","nmultimap","nmultimapinv","nNearrow","nnearrow","nnearrowtail","nnebkarrow","nneharpoonnw","nneharpoonse","nnelcurvearrow","nnenearrows","nnercurvearrow","nNeswarrow","nneswarrow","nneswarrows","nneswcurvearrow","nneswharpoonnwse","nneswharpoons","nneswharpoonsenw","nni","nNwarrow","nnwarrow","nnwarrowtail","nnwbkarrow","nnwharpoonne","nnwharpoonsw","nnwlcurvearrow","nnwnwarrows","nnwrcurvearrow","nNwsearrow","nnwsearrow","nnwsearrows","nnwsecurvearrow","nnwseharpoonnesw","nnwseharpoons","nnwseharpoonswne","norigof","nowns","nparallel","nperp","npitchfork","nprec","nprecapprox","npreccurlyeq","npreceq","npreceqq","nprecsim","nrestriction","nRightarrow","nrightarrow","nrightarrowtail","nrightAssert","nrightassert","nrightbkarrow","nrightblackspoon","nrightcurvedarrow","nrightdowncurvedarrow","nrightfootline","nrightharpoondown","nrightharpoonup","nrightlcurvearrow","nrightleftarrows","nrightleftcurvearrow","nrightleftharpoons","nrightleftsquigarrow","nrightlsquigarrow","nRightmapsto","nrightmapsto","nrightmodels","nrightpitchfork","nrightrcurvearrow","nrightrightarrows","nrightrsquigarrow","nrightspoon","nrightsquigarrow","nrightupcurvedarrow","nrightvDash","nrightVdash","nrightVDash","nrightvdash","nrightwavearrow","nrisingdotseq","nRrightarrow","nSearrow","nsearrow","nsearrowtail","nsebkarrow","nseharpoonne","nseharpoonsw","nselcurvearrow","nsenwarrows","nsenwcurvearrow","nsenwharpoons","nsercurvearrow","nsesearrows","nshortdowntack","nshortlefttack","nshortmid","nshortparallel","nshortrighttack","nshortuptack","nsim","nsime","nsimeq","nsmile","nsmileeq","nsmilefrown","nSqsubset","nsqsubset","nsqsubseteq","nsqsubseteqq","nSqsupset","nsqsupset","nsqsupseteq","nsqsupseteqq","nstareq","nSubset","nsubset","nsubseteq","nsubseteqq","nsucc","nsuccapprox","nsucccurlyeq","nsucceq","nsucceqq","nsuccsim","nSupset","nsupset","nsupseteq","nsupseteqq","nSwarrow","nswarrow","nswarrowtail","nswbkarrow","nswharpoonnw","nswharpoonse","nswlcurvearrow","nswnearrows","nswnecurvearrow","nswneharpoons","nswrcurvearrow","nswswarrows","nto","ntriangleeq","ntriangleleft","ntrianglelefteq","ntriangleright","ntrianglerighteq","ntriplesim","ntwoheaddownarrow","ntwoheadleftarrow","ntwoheadnearrow","ntwoheadnwarrow","ntwoheadrightarrow","ntwoheadsearrow","ntwoheadswarrow","ntwoheaduparrow","nUparrow","nuparrow","nuparrowtail","nupAssert","nupassert","nupbkarrow","nupblackspoon","nUpdownarrow","nupdownarrow","nupdownarrows","nupdowncurvearrow","nupdownharpoonleftright","nupdownharpoonrightleft","nupdownharpoons","nupdownharpoonsleftright","nupdownsquigarrow","nupdownwavearrow","nupharpoonleft","nupharpoonright","nuplcurvearrow","nupleftcurvedarrow","nuplsquigarrow","nUpmapsto","nupmapsto","nupmodels","nuppitchfork","nuprcurvearrow","nuprightcurvearrow","nuprsquigarrow","nupspoon","nupuparrows","nupvDash","nupVdash","nupVDash","nupvdash","nupwavearrow","nUuparrow","nvardownwavearrow","nvarhookdownarrow","nvarhookleftarrow","nvarhooknearrow","nvarhooknwarrow","nvarhookrightarrow","nvarhooksearrow","nvarhookswarrow","nvarhookuparrow","nvarleftrightwavearrow","nvarleftwavearrow","nvarrightwavearrow","nvarupdownwavearrow","nvarupwavearrow","nvBar","nVbar","nvDash","nVdash","nVDash","nvdash","nvDdash","nveeeq","nvlongdash","nVvdash","Nwarrow","nwarrowtail","nwbkarrow","nwedgeq","nwharpoonne","nwharpoonsw","nwhiteblackspoon","nwlcurvearrow","nwnwarrows","nwrcurvearrow","Nwsearrow","nwsearrow","nwsearrows","nwsecurvearrow","nwseharpoonnesw","nwseharpoons","nwseharpoonswne","oast","obackslash","obslash","ocirc","odash","oequal","oiiint","oiint","ointclockwise","ointctrclockwise","origof","osum","overgroup","overleftharpoon","overlinesegment","overrightharpoon","overt","pitchfork","plusdot","precapprox","preccurlyeq","preceqq","precnapprox","precneq","precneqq","precnsim","precsim","propfrom","pullback","pushout","rAngle","rangledot","rBrack","rcircleleftint","rcirclerightint","Rdsh","restriction","revangle","revemptyset","revmeasuredangle","revsphericalangle","rhd","rhookdownarrow","rhookleftarrow","rhooknearrow","rhooknwarrow","rhookrightarrow","rhooksearrow","rhookswarrow","rhookuparrow","rightangle","rightanglemdot","rightanglesqr","rightanglesquare","rightarrowtail","rightAssert","rightassert","rightbkarrow","rightblackspoon","rightcurvedarrow","rightdowncurvedarrow","rightfootline","rightlcurvearrow","rightleftarrows","rightleftcurvearrow","rightleftsquigarrow","rightlsquigarrow","rightmapsto","Rightmapsto","rightmodels","rightpitchfork","rightrcurvearrow","rightrightarrows","rightrsquigarrow","rightspoon","rightsquigarrow","righttherefore","rightthreetimes","rightupcurvedarrow","rightvDash","rightVdash","rightVDash","rightvdash","rightwavearrow","rightY","risingdotseq","rJoin","rparen","Rrightarrow","rsem","Rsh","rtimes","rVvert","Searrow","searrowtail","sebkarrow","sector","seharpoonne","seharpoonsw","selcurvearrow","senwarrows","senwcurvearrow","senwharpoons","sercurvearrow","sesearrows","shortdowntack","shortlefttack","shortmid","shortparallel","shortrighttack","shortuptack","simneqq","smallblackcircle","smallblackdiamond","smallblacklozenge","smallblacksquare","smallblackstar","smallblacktriangledown","smallblacktriangleleft","smallblacktriangleright","smallblacktriangleup","smallcircle","smallcoprod","smalldiamond","smalldivslash","smallfrown","smalllozenge","smallprod","smallsetminus","smallsmile","smallsquare","smalltriangledown","smalltriangleleft","smalltriangleright","smalltriangleup","smallwhitestar","smblkcircle","smblkdiamond","smblklozenge","smblksquare","smileeq","smilefrown","smwhitestar","smwhtcircle","smwhtdiamond","smwhtlozenge","smwhtsquare","sphericalangle","sphericalangledown","sphericalangleleft","sphericalangleup","Sqcap","sqcapdot","sqcapplus","Sqcup","sqcupdot","sqcupplus","Sqsubset","sqsubset","sqsubseteqq","sqsubsetneq","sqsubsetneqq","Sqsupset","sqsupset","sqsupseteqq","sqsupsetneq","sqsupsetneqq","square","squaredots","stareq","starofdavid","strokethrough","Subset","subseteqq","subsetneq","subsetneqq","succapprox","succcurlyeq","succeqq","succnapprox","succneq","succneqq","succnsim","succsim","sumint","Supset","supseteqq","supsetneq","supsetneqq","Swarrow","swarrowtail","swbkarrow","swharpoonnw","swharpoonse","swlcurvearrow","swnearrows","swnecurvearrow","swneharpoons","swrcurvearrow","swswarrows","tawint","tbigcap","tbigcapdot","tbigcapplus","tbigcup","tbigcupdot","tbigcupplus","tbigcurlyvee","tbigcurlywedge","tbigdoublevee","tbigdoublewedge","tbigoast","tbigodot","tbigoplus","tbigotimes","tbigplus","tbigsqcap","tbigsqcapdot","tbigsqcapplus","tbigsqcup","tbigsqcupdot","tbigsqcupplus","tbigtimes","tbiguplus","tbigvee","tbigveedot","tbigwedge","tbigwedgedot","tconjquant","tcoprod","tdisjquant","tdotsint","tfint","therefore","thickapprox","thicksim","tidotsint","tiiiint","tiiint","tiint","timesbar","tint","tintbar","tintBar","tintclockwise","tintctrclockwise","tlanddownint","tlandupint","tlcircleleftint","tlcirclerightint","tmodtwosum","toiiint","toiint","toint","tointclockwise","tointctrclockwise","tosum","tprod","trcircleleftint","trcirclerightint","triangledown","triangleeq","trianglelefteq","triangleq","trianglerighteq","triplesim","tsum","tsumint","ttimes","turnedbackneg","turnedneg","turnednot","tvarcoprod","tvarmodtwosum","tvarointclockwise","tvarointctrclockwise","tvarosum","tvarprod","tvarsum","tvarsumint","twoheaddownarrow","twoheadleftarrow","twoheadnearrow","twoheadnwarrow","twoheadrightarrow","twoheadsearrow","twoheadswarrow","twoheaduparrow","udotdot","udots","ulcorner","ullcorner","ulrcorner","undergroup","underlinesegment","unlhd","unrhd","uparrowtail","upAssert","upassert","upbkarrow","upblackspoon","upbowtie","updownarrows","updowncurvearrow","updownharpoonleftright","updownharpoonrightleft","updownharpoons","updownharpoonsleftright","updownsquigarrow","updownwavearrow","upharpoonleft","upharpoonright","uplcurvearrow","upleftcurvedarrow","uplsquigarrow","upmapsto","Upmapsto","upmodels","uppitchfork","uprcurvearrow","uprightcurvearrow","uprsquigarrow","upspoon","uptherefore","upuparrows","upvDash","upVdash","upVDash","upvdash","upwavearrow","upY","urcorner","utimes","Uuparrow","varamalg","varcoprod","vardiamondsuit","vardownwavearrow","varheartsuit","varhookdownarrow","varhookleftarrow","varhooknearrow","varhooknwarrow","varhookrightarrow","varhooksearrow","varhookswarrow","varhookuparrow","varleftrightwavearrow","varleftwavearrow","varmodtwosum","varnothing","varointclockwise","varointctrclockwise","varosum","varprod","varpropto","varrightwavearrow","varsmallcoprod","varsmallprod","varsubsetneq","varsubsetneqq","varsum","varsumint","varsupsetneq","varsupsetneqq","vartriangle","vartriangleleft","vartriangleright","varupdownwavearrow","varupwavearrow","vBar","Vbar","Vdash","VDash","vDash","vDdash","vdotdot","veebar","veedot","veedoublebar","veeeq","veeonvee","vlongdash","Vvdash","Vvert","wedgedot","wedgeonwedge","wedgeq","whiteblackspoon","wideparen","wreath"]}
-,
-"fdulogo.sty":{"envs":{},"deps":["luatex85.sty","xcolor.sty","tikz.sty"],"cmds":["fduname","fduemblem","fdumotto"]}
-,
-"fduthesis-en.cls":{"envs":["notation","acknowledgements","axiom","corollary","definition","example","lemma","proof","theorem"],"deps":["xtemplate.sty","l3keys2e.sty","s-ctexbook.cls","xeCJK.sty","amsmath.sty","unicode-math.sty","geometry.sty","fancyhdr.sty","footmisc.sty","ntheorem.sty","graphicx.sty","longtable.sty","caption.sty","xcolor.sty","pifont.sty","natbib.sty","biblatex.sty","hyperref.sty"],"cmds":["fdusetup","makecoveri","makecoverii","makecoveriii","newtheorem","DeclareCoverTemplate","theoremsymbol"]}
-,
-"fduthesis.cls":{"envs":["abstract*","notation","acknowledgements","axiom","corollary","definition","example","lemma","proof","theorem"],"deps":["xtemplate.sty","l3keys2e.sty","s-ctexbook.cls","xeCJK.sty","amsmath.sty","unicode-math.sty","geometry.sty","fancyhdr.sty","footmisc.sty","ntheorem.sty","graphicx.sty","longtable.sty","caption.sty","xcolor.sty","pifont.sty","natbib.sty","biblatex.sty","hyperref.sty"],"cmds":["fdusetup","makecoveri","makecoverii","makecoveriii","newtheorem","DeclareCoverTemplate","theoremsymbol"]}
-,
-"fei.cls":{"envs":["agradecimentos","axioma","conjectura","corolario","definicao","desenho","diagrama","epigrafe","esquema","exemplo","fluxograma","folhaderosto","fotografia","grafico","hipotese","lema","mapa","organograma","paradoxo","planta","proposicao","prova","quadro","resumo","retrato","teorema"],"deps":["kvoptions.sty","newtxtext.sty","s-memoir.cls","inputenc.sty","fontenc.sty","microtype.sty","babel.sty","csquotes.sty","indentfirst.sty","mathtools.sty","lmodern.sty","icomma.sty","graphicx.sty","morewrites.sty","algorithm2e.sty","amsthm.sty","thmtools.sty","enumitem.sty","pdfpages.sty","ifthen.sty","imakeidx.sty","pdfx.sty","biblatex.sty","uarial.sty","arimo.sty","glossaries-extra.sty","glossaries-extra-bib2gls.sty","xpatch.sty"],"cmds":["GlsSetXdyLanguage","GlsSetXdyCodePage","GlsAddXdyCounters","GlsAddXdyAttribute","GlsAddXdyLocation","GlsSetXdyLocationClassOrder","GlsSetXdyMinRangeLength","GlsSetXdyFirstLetterAfterDigits","GlsSetXdyNumberGroupOrder","GlsAddLetterGroup","GlsAddSortRule","GlsAddXdyAlphabet","GlsAddXdyStyle","GlsSetXdyStyles","printsymbols","glsxtrnewsymbol","printunsrtsymbols","printacronyms","printunsrtacronyms","newabbr","advisor","anexos","cftdesenhoaftersnum","cftdesenhoname","cftdiagramaaftersnum","cftdiagramaname","cftesquemaaftersnum","cftesquemaname","cftfluxogramaaftersnum","cftfluxogramaname","cftfotografiaaftersnum","cftfotografianame","cftgraficoaftersnum","cftgraficoname","cftmapaaftersnum","cftmapaname","cftorganogramaaftersnum","cftorganogramaname","cftplantaaftersnum","cftplantaname","cftquadroaftersnum","cftquadroname","cftretratoaftersnum","cftretratoname","cidade","citefloat","citeonline","curso","dedicatoria","desenhoname","diagramaname","epig","esquemaname","fichacatalografica","fluxogramaname","folhadeaprovacao","fotografianame","graficoname","instituicao","keywords","mapaname","oldlistofalgorithms","oldnumberline","oldprintbibliography","oldprintindex","organogramaname","palavraschave","plantaname","quadroname","reformchapapp","retratoname","smallcaption","subtitulo","tocnumwidth","ifglossaries","glossariestrue","glossariesfalse","ifsublist","sublisttrue","sublistfalse","ifdeposito","depositotrue","depositofalse","ifnumeric","numerictrue","numericfalse","ifoneside","onesidetrue","onesidefalse","ifpdfa","pdfatrue","pdfafalse","DH","dh","dj","DJ","guillemetleft","guillemetright","guillemotleft","guillemotright","guilsinglleft","guilsinglright","Hwithstroke","hwithstroke","k","NG","ng","quotedblbase","quotesinglbase","textogonekcentered","textquotedbl","th","TH","captionsenglish","dateenglish","extrasenglish","noextrasenglish","englishhyphenmins","britishhyphenmins","americanhyphenmins","prefacename","bibname","chaptername","enclname","ccname","headtoname","pagename","seename","alsoname","proofname","glossaryname","captionsbrazil","datebrazil","extrasbrazil","noextrasbrazil","ord","orda","ro","ra","Entrada","Saida","Dados","Resultado","Ate","KwRetorna","Retorna","Inicio","Repita","lRepita","eSe","Se","uSe","lSe","Senao","uSenao","lSenao","SenaoSe","uSenaoSe","lSenaoSe","Selec","Caso","uCaso","lCaso","Outro","lOutro","Para","lPara","ParaPar","lParaPar","ParaCada","lParaCada","ParaTodo","lParaTodo","Enqto","lEnqto","origbibsetup","FirstWordUpper","FirstWordSC","FirstWordLCSC","traceparam","paramL","traceparamA","traceparamB","traceparamS","traceparamC","traceparamD","traceparamE","smartuppercase","smartlowercase","smartlcsc","smartsc","UpperOrSC","NormalOrSC","iffieldregex","iffieldendswithpunct","IfGivenIsInitial","multinamedelimorig","finalnamedelimorig","abntnum","bibnameunderscore","nopunctdash","UpperOrSCCite","NormalOrSCCite","IfGivenIsInit","origmkbibnamefamily","origmkbibnamegiven","origmkbibnameprefix","origmkbibnamesuffix","FirstWord","addapud","apud","plaincite","citelastname","textapud","citeyearorsh"]}
-,
-"fenixpar.sty":{"envs":{},"deps":["fenixtok.sty"],"cmds":["NewParType","NextParL","NextParR","NextPar","AllParsL","AllParsR","AllPars","EndPars","nextpar"]}
-,
-"fenixtok.sty":{"envs":{},"deps":{},"cmds":["fornexttokl","fornexttokr","NewTypeoftok","atcatcode"]}
-,
-"fetamont.sty":{"envs":{},"deps":{},"cmds":["MF","MP","MT","textffm","textffmw","ffmfamily","ffmwfamily"]}
-,
-"fetchbibpes.sty":{"envs":["declareBVs","declareBVs*","fpquote","fpverse","fpquotation"],"deps":["xkeyval.sty"],"cmds":["fetchverse","fetchverses","useOldAlt","useNewAlt","showTranslAlways","showTranslDecld","verseFmt","quote","LaTeXQuotesOff","LaTeXQuotesOn","gobbleto","addtoBibles","defaultBible","fbdefaultBible","useBookStyle","usePassage","fetchversestxt","versetxt","passagetxt","cobblevrs","translFmt","translFmtDef","translTxtFmt","translTxtFmtDef","priorRefSpc","fbFitItIn","fbFillRght","afterBookSpc","resetAfterBookSpc","afterRef","afterNumSpc","verseFmtReset","verseFmtDef","afterVerseFmt","registerBibles","verseCmts","fbMarParFmt","fbResetMarParFmt","fbMarNotesOn","fbMarNotesOff","selectedVersesFrom","sr","BV","null","markverse","bMrkFP","eMrkFP","bDQ","eDQ","bSQ","eSQ","letEach","to","AlwaysShowDefBible","bookexistsfalse","bookexiststrue","bookFmt","csarg","cvrtdqs","expBkAbbrChoices","fbSetFromChoiceKey","fetchInputMsg","fetchsubstrfalse","fetchsubstrtrue","fetchtoks","fetchversetxt","fetchWarningMsg","fsbstrInputMsg","fsbstrWarningMsg","G","H","handleUnRegBibles","ifbookexists","iffetchsubstr","ifparsefetcharg","ifshowDefBible","ifuseoldalt","ifversestochend","iiioiv","inputVerseList","ioiv","isitstar","isstopreplace","istopreplacei","NeverShowDefBible","parsefetchargfalse","parsefetchargtrue","selBkAbbr","setNumStyle","showDefBiblefalse","showDefBibletrue","srInputMsg","srWarningMsg","useoldaltfalse","useoldalttrue","useverseslist","verseCmtsi","versestochendfalse","versestochendtrue"]}
-,
-"fetchcls.sty":{"envs":{},"deps":{},"cmds":["classname"]}
-,
-"fewerfloatpages.sty":{"envs":{},"deps":{},"cmds":["floatpagekeepfraction","thefloatpagedeferlimit","thefloatpagekeeplimit","fewerfloatpagesdate","fewerfloatpagesversion"]}
-,
-"feyn.sty":{"envs":{},"deps":{},"cmds":["feyn","Feyn","FEYN","momentum","belowl","belowr","Diagram","DIAGRAM","maxis","vertexlabel","feynstrut","annotate","tannotate","FeynSpaceChar","FeynxSpaceChar","wfermion","hfermion","shfermion","whfermion","gvcropped","bigbosonloop","smallbosonloop","bigbosonloopA","smallbosonloopA","bigbosonloopV","smallbosonloopV"]}
-,
-"feynmf.sty":{"envs":["fmffile","fmfchar","fmfchar*","fmffor","fmfgraph","fmfgraph*","fmfgroup","fmfshrink","fmfsubgraph"],"deps":{},"cmds":["fmf","fmfblob","fmfblobn","fmfbottom","fmfbottomn","fmfcmd","fmfcurved","fmfcyclen","fmfdisplay","fmfdot","fmfdotn","fmfdraw","fmffixed","fmffixedx","fmffixedy","fmfforce","fmfframe","fmffreeze","fmfi","fmfiequ","fmfipair","fmfipath","fmfiset","fmfiv","fmfkeep","fmflabel","fmfleft","fmfleftn","fmfn","fmfnotrace","fmfpen","fmfpoly","fmfpolyn","fmfposition","fmfrcyclen","fmfreuse","fmfright","fmfrightn","fmfrpolyn","fmfset","fmfshift","fmfstopdisplay","fmfstraight","fmfsurround","fmfsurroundn","fmftop","fmftopn","fmftrace","fmfv","fmfvn","fmfwizard","Commaize","Compose","Cons","equaltojobname","filedate","filemaintainer","filename","filerevision","fileversion","fmfcurvedgalleries","fmfincoming","fmfincomingn","fmfinit","fmfL","fmfnowizard","fmfoutgoing","fmfoutgoingn","fmfpfx","fmfstraightgalleries","Foldr","gobblefalse","gobbletrue","grepfile","Listize","Map","mdqrestore","Nil","pattern","RCS","Singleton","TeXif","thefmfext","thefmffile","thefmfgraph","Unlistize"]}
-,
-"feynmp-auto.sty":{"envs":{},"deps":["feynmp.sty","ifpdf.sty","ifxetex.sty","pdftexcmds.sty"],"cmds":{}}
-,
-"feynmp.sty":{"envs":["fmffile","fmfchar","fmfchar*","fmffor","fmfgraph","fmfgraph*","fmfgroup","fmfshrink","fmfsubgraph"],"deps":["graphics.sty"],"cmds":["fmf","fmfblob","fmfblobn","fmfbottom","fmfbottomn","fmfcmd","fmfcurved","fmfcyclen","fmfdisplay","fmfdot","fmfdotn","fmfdraw","fmffixed","fmffixedx","fmffixedy","fmfforce","fmfframe","fmffreeze","fmfi","fmfiequ","fmfipair","fmfipath","fmfiset","fmfiv","fmfkeep","fmflabel","fmfleft","fmfleftn","fmfn","fmfnotrace","fmfpen","fmfpoly","fmfpolyn","fmfposition","fmfrcyclen","fmfreuse","fmfright","fmfrightn","fmfrpolyn","fmfset","fmfshift","fmfstopdisplay","fmfstraight","fmfsurround","fmfsurroundn","fmftop","fmftopn","fmftrace","fmfv","fmfvn","fmfwizard","Commaize","Compose","Cons","equaltojobname","filedate","filemaintainer","filename","filerevision","fileversion","fmfcurvedgalleries","fmfincoming","fmfincomingn","fmfinit","fmfL","fmfnowizard","fmfoutgoing","fmfoutgoingn","fmfpfx","fmfstraightgalleries","Foldr","gobblefalse","gobbletrue","Listize","Map","mdqrestore","Nil","RCS","Singleton","TeXif","thefmffile","thefmfgraph","Unlistize"]}
-,
-"ffcode.sty":{"envs":["ffcode","ffcode*"],"deps":["pgfopts.sty","minted.sty","tcolorbox.sty"],"cmds":["ff"]}
-,
-"fge.sty":{"envs":{},"deps":{},"cmds":["spirituslenis","spiritusasper","fgerighttwo","fgerightB","fgelefttwo","fgeleftthree","fgeleftB","fgeleftC","fgec","fgee","fgeeszett","fgeA","fged","fgef","fgeF","fgestruckzero","fgestruckone","fgerightarrow","fgeuparrow","fgeupbracket","fgecap","fgecup","fgecupbar","fgecapbar","fgebarcap","fgecupacute","fgebaracute","fgemark","fgelb","fgeinfty","fgelangle","fges","fgebackslash","ifcrescent","crescenttrue","crescentfalse","fgevareta","fgeeta","fgeN","fgeoverU","fgeU","spirituslenisA","spirituslenisB","spiritusasperA","spiritusasperB"]}
-,
-"fgruler.sty":{"envs":{},"deps":["kvoptions.sty","etoolbox.sty","xcolor.sty","graphicx.sty","eso-pic.sty"],"cmds":["setfgruler","fgruler","ruler","squareruler","rulerparams","rulerparamsfromfg","rulernorotatenum","rulerrotatenum","fgrulerstartnum","fgrulerstartnumh","fgrulerstartnumv","fgrulernoborderline","fgrulerborderline","fgrulercaptioncm","fgrulercaptionin","fgrulerdefnum","fgrulerratiocm","fgrulerratioin","fgrulerthickcm","fgrulerthickin","fgrulercolorcm","fgrulercolorin","fgrulerreset","fgrulerdefuser","fgrulerdefusercm","fgrulerdefuserin","fgrulertype","thefgrulernum"]}
-,
-"fhgtechdoku_additional.sty":{"envs":["fullwidth"],"deps":{},"cmds":["fulltextwidth","setauthor","setinstitute","setpartnerlogo","setpartner","setsubtitle","settitle"]}
-,
-"fibnum.sty":{"envs":{},"deps":["ltxcmds.sty","intcalc.sty","bigintcalc.sty"],"cmds":["fibnum","fibnumPreCalc"]}
-,
-"fiche.cls":{"envs":["juxtapose"],"deps":["mafr.sty"],"cmds":["entete","squnumber","sque","squ","quenumber","que","qsq","exenumber","exe","droite"]}
-,
-"fifinddo.sty":{"envs":{},"deps":["stacklet.sty","actcodes.sty"],"cmds":["fileversion","fdPatternCodes","SetPatternCodes","ResetPatternCodes","PatternCodes","Delimiters","CatCode","PercentChar","BackslashChar","BasicNormalCatCodes","ResultFile","WriteResult","WriteProvides","CloseResultFile","ProcessFileWith","fdInputLine","CopyFile","CopyLine","ifFinalInputFile","FinalInputFiletrue","FinalInputFilefalse","ProcessFinalFileWith","StartFDsetup","fdParserId","MakeSetupCommand","MakeSubstringConditional","MakeSetupSubstringCondition","noexpandcsname","TildeGobbles","RemoveDummyPattern","RemoveDummyPatternArg","RemoveTilde","RemoveTildeArg","FDnormalTilde","FDpseudoTilde","ProcessStringWith","ProcessExpandedWith","ProcessInputWith","CopyFDconditionFromTo","IfFDempty","IfFDinputEmpty","IfFDdollar","IfFDpreviousInputEmpty","thefdInputLine","CountInputLines","IfInputLine","MakeExpandableAllReplacer","PrependExpandableAllReplacer","StartPrependingChain","SetCorrectHookJob","MakeDocCorrectHook","SetCorrectHookJobLast","CorrectedInputLine","ApplySubstringConditional","ApplySubstringConditionalToExpanded","ApplySubstringConditionalToInputString"]}
-,
-"fifo-stack.sty":{"envs":{},"deps":["ifthen.sty"],"cmds":["FSCreate","FSClear","FSDestroy","FSPush","FSPop","FSTop","FSShowTop","FSUnshift","FSShift","FSBottom","FSShowBottom","FSSize"]}
-,
-"figchild.sty":{"envs":{},"deps":["tikz.sty","xcolor.sty"],"cmds":["fcAbajourA","fcAbajourB","fcAbajourC","fcAbajourD","fcAirBallon","fcAlarmClockA","fcAlarmClockB","fcAlligator","fcAlligatorA","fcAlligatorB","fcAngel","fcAnt","fcAntA","fcAntelope","fcApple","fcAppleTree","fcArmadillo","fcArmadilloA","fcAubergine","fcBabe","fcBall","fcBallA","fcBallB","fcBallC","fcBalloon","fcBaloonsA","fcBaloonsB","fcBarbecue","fcBarquet","fcBaseballBat","fcBat","fcBatA","fcBear","fcBearA","fcBearB","fcBearC","fcBearD","fcBearE","fcBearF","fcBearG","fcBears","fcBed","fcBedA","fcBedsideLamp","fcBee","fcBeeA","fcBell","fcBellA","fcBellPepper","fcBike","fcBinoculars","fcBird","fcBirdA","fcBirdB","fcBirdC","fcBirdD","fcBirdE","fcBirdF","fcBoard","fcBoat","fcBonnet","fcBookA","fcBookB","fcBread","fcBroom","fcBrownie","fcBud","fcBull","fcBullA","fcBulldozer","fcBullet","fcBunnyA","fcBunnyB","fcBunnyC","fcBunnyD","fcBunnyE","fcBurrito","fcBus","fcBusA","fcButterfly","fcButterflyA","fcButterflyB","fcButterflyC","fcCabbage","fcCabbageA","fcCabinet","fcCactoopuntia","fcCactus","fcCactusA","fcCactusB","fcCactusC","fcCalf","fcCandle","fcCar","fcCarA","fcCarrot","fcCarrotA","fcCart","fcCartA","fcCashier","fcCat","fcCaterpillar","fcCatfish","fcCellPhone","fcCentipede","fcChair","fcChairA","fcChairB","fcChairC","fcChairD","fcCheese","fcCherry","fcChick","fcChicken","fcChickenA","fcChickenThigh","fcChicks","fcChive","fcChristmasTree","fcChrysanthemum","fcClock","fcClockA","fcCloud","fcCloudA","fcCloudB","fcCloudC","fcCoach","fcCobrabebe","fcComb","fcComputer","fcComputerA","fcCow","fcCrabA","fcCrabB","fcCrane","fcCrown","fcCrownA","fcCucumber","fcCucumberA","fcCupcake","fcCupcakeA","fcCupcakeB","fcCushion","fcCutlery","fcCuttingBoard","fcDaisy","fcDarts","fcData","fcDeskLamp","fcDeskLampA","fcDeskLampB","fcDeskLampC","fcDeskLampD","fcDino","fcDinosaurA","fcDinosaurB","fcDinosaurC","fcDinosaurD","fcDinosaurE","fcDinosaurF","fcDinosaurG","fcDinosaurH","fcDinosaurI","fcDinosaurJ","fcDog","fcDolphin","fcDolphinA","fcDolphinB","fcDragonFly","fcDressingTable","fcDressingTableA","fcDryer","fcDuck","fcDuckA","fcDuckB","fcDuckC","fcEar","fcEgg","fcEggA","fcEggB","fcEggplant","fcElephant","fcElephantA","fcElephantB","fcET","fcExcavator","fcEyebrows","fcEyes","fcFaceTowel","fcFan","fcFanA","fcFish","fcFishA","fcFishB","fcFishC","fcFishD","fcFishE","fcFishF","fcFishG","fcFishH","fcFishI","fcFishJ","fcFishK","fcFishL","fcFishM","fcFlamingo","fcFlamingoA","fcFlamingoB","fcFlashlight","fcFlower","fcFlowerA","fcFlowerB","fcFlowerC","fcFlowerD","fcFlowerE","fcFlowerF","fcFlowerG","fcFlowerH","fcFlowerI","fcFlowerJ","fcFlowerK","fcFlowerL","fcFlowerM","fcFlowerN","fcFlowerO","fcFlowerP","fcFlyingSaucer","fcFrenchFries","fcFridge","fcFrog","fcfrog","fcFrogA","fcGhost","fcGiraffe","fcGiraffeA","fcGiraffeB","fcGiraffes","fcGlass","fcGloves","fcGnat","fcGoose","fchamburger","fcHamster","fcHand","fcHat","fcHatA","fcHelicopter","fcHerring","fcHippo","fcHorse","fcHorseA","fcHorseB","fcHouse","fcHouseA","fcHouseB","fcHouseC","fcHummingbird","fcIceCreamA","fcIceCreamB","fcIceCreamC","fcIceCreamD","fcIceCreamE","fcIceCreamF","fcIceCreamG","fcIceCreamH","fcJuicy","fcKetchup","fcKettle","fcKettleA","fcKey","fcKite","fcKiteA","fcKittenA","fcKittenB","fcKittensA","fcKittensB","fcKnees","fcKnife","fcKnifeA","fcKnifeB","fcLadle","fcLadybird","fcLadybirdA","fcLadybirdB","fcLadyBug","fcLamb","fcLamp","fcLanguage","fcLetterK","fcLetterKA","fcLetterL","fcLetterLA","fcLetterM","fcLetterMA","fcLetterN","fcLetterNA","fcLetterO","fcLetterOA","fcLetterP","fcLetterPA","fcLetterQ","fcLetterQA","fcLetterR","fcLetterRA","fcLetterS","fcLetterSA","fcLetterT","fcLetterTA","fcLetterU","fcLetterUA","fcLetterV","fcLetterVA","fcLetterW","fcLetterWA","fcLetterX","fcLetterXA","fcLetterY","fcLetterYA","fcLetterZ","fcLetterZA","fcLightBulb","fcLightning","fcLion","fcLionA","fcLittleBirds","fcLittleMouse","fcLocust","fcLouvadeus","fcLoveLetter","fcMacaw","fcMailbox","fcMailBoxA","fcMat","fcMeton","fcMill","fcMirror","fcMonkey","fcMonkeyA","fcMonster","fcMoon","fcMoonA","fcMoonB","fcMoonfish","fcMoose","fcMoped","fcMotorcycle","fcMotorcycleA","fcMotorScooter","fcMouse","fcMouseA","fcMouseB","fcMouseC","fcMouseD","fcMug","fcMushroom","fcMushroomA","fcMushroomB","fcNose","fcNuggets","fcNumberEight","fcNumberFive","fcNumberFour","fcNumberNine","fcNumberOne","fcNumberSeven","fcNumberSix","fcNumberTen","fcNumberThree","fcNumberTwo","fcOctopus","fcOctopusA","fcOctopusB","fcOnion","fcOnionA","fcOrca","fcOstrich","fcOwl","fcOwlA","fcOwlB","fcOx","fcPalmTree","fcPan","fcPanA","fcPanB","fcPandaBear","fcParrot","fcPassA","fcPassB","fcPeacock","fcPencil","fcPencilA","fcPenguin","fcPenguinA","fcPerch","fcPeruA","fcPeruB","fcPhone","fcPig","fcPigA","fcPigB","fcPigC","fcPigD","fcPigE","fcPigF","fcPigG","fcPigH","fcPigI","fcPillow","fcPimento","fcPineapple","fcpink","fcPlane","fcPlaneA","fcPlanetA","fcPlanetB","fcPlanetC","fcPlanetD","fcPlanetE","fcPlanetF","fcPlanetG","fcPlanets","fcPopsicle","fcPotato","fcPotatoA","fcPulse","fcPumpkin","fcPumpkinA","fcPuppy","fcPyramid","fcRabbit","fcRabbitA","fcRabbitB","fcRabbits","fcRaccoon","fcRacoon","fcRake","fcRazor","fcRefrigerator","fcRoastChicken","fcRobe","fcRocket","fcRocketA","fcRocketB","fcRocketC","fcRoller","fcRollingPin","fcSandal","fcSaturnA","fcSaturnB","fcScallion","fcScaredEgg","fcSchoolbag","fcScissors","fcScooter","fcScooterA","fcScorpion","fcSeahorse","fcSeahorseA","fcSeeds","fcShark","fcSharkA","fcSharpKnife","fcSheep","fcSheepA","fcSheepB","fcSheepC","fcSheet","fcsheetA","fcsheetB","fcShell","fcShip","fcShootingStar","fcShower","fcShrimp","fcSleepingBag","fcSleepingBagA","fcSnail","fcSnailA","fcSnailB","fcSnailC","fcSnowflake","fcSock","fcSofaA","fcSofaB","fcSpacecraftA","fcSpacecraftB","fcSpatulas","fcSpider","fcSpiderA","fcSpiderB","fcSpinning","fcSpray","fcSquirrel","fcSquirrelA","fcStar","fcStarA","fcStarB","fcStars","fcSteak","fcSteamroller","fcSteamrollerA","fcStoolA","fcStoolB","fcStoolC","fcStrawberry","fcStrawberryA","fcSturgeon","fcSubmarineA","fcSugar","fcSun","fcSunA","fcSunB","fcTableLight","fcTeapot","fcTelevision","fcTent","fcThermometerA","fcThermometerB","fcThroat","fcToiletPaper","fcTomato","fcTomatoA","fcTony","fcTornado","fcToucan","fcTractorA","fcTractorB","fcTractorC","fcTrain","fcTree","fcTricycle","fcTricycleA","fcTruck","fcTruckA","fcTruckB","fcTruckC","fcTruckD","fcTruckE","fcTruckF","fcTruckG","fcTruckH","fcTrunk","fcTulip","fcTurnip","fcTurtle","fcTurtleA","fcTurtleB","fcTurtleC","fcUmbrella","fcUrchin","fcUrchinA","fcVan","fcVase","fcWagon","fcWardrobe","fcWateringCan","fcWatermelon","fcWhale","fcWitchHat","fcYoyo","fcZebra","imagewidthh","imagescaleh","CarrotA","version"]}
-,
-"figlatex.sty":{"envs":{},"deps":["ifthen.sty","ifpdf.sty","graphicx.sty","xstring.sty","color.sty","epstopdf.sty"],"cmds":["debug"]}
-,
-"figput.sty":{"envs":["figput"],"deps":["zref-savepos.sty","zref-thepage.sty","zref-abspage.sty","zref-user.sty","zref-pagelayout.sty","xsim.sty","tikz.sty","verbatim.sty"],"cmds":["FigPut","SetInnerMargin","SetOuterMargin","NeverSkip","AllowSkip","LoadFigureCode"]}
-,
-"figsize.sty":{"envs":{},"deps":["calc.sty","subfigure.sty","graphicx.sty","ifthen.sty"],"cmds":["SetFigLayout","figheight","figwidth","Oldincludegraphics"]}
-,
-"filecontentsdef.sty":{"envs":["filecontentsdef","filecontentsdef*","filecontentsgdef","filecontentsgdef*","filecontentsdefstarred","filecontentsgdefstarred","filecontentsdefmacro","filecontentsgdefmacro","filecontentshere","filecontentshere*"],"deps":{},"cmds":["filecontentsprint","FCDprintenvname","FCDprintenvoptions","filecontentsprintviascan","filecontentsexec","filecontentsheremacro","filecontentsdef","endfilecontentsdef","filecontentsgdef","endfilecontentsgdef","filecontentsdefstarred","endfilecontentsdefstarred","filecontentsgdefstarred","endfilecontentsgdefstarred","filecontentsdefmacro","endfilecontentsdefmacro","filecontentsgdefmacro","endfilecontentsgdefmacro","filecontentshere","endfilecontentshere","filecontentsherestarred","endfilecontentsherestarred","FCDtabtofile","FCDtabtomacro","FCDformfeedtofile","FCDformfeedtomacro"]}
-,
-"filehook.sty":{"envs":{},"deps":{},"cmds":["AtBeginOfEveryFile","AtEndOfEveryFile","AtBeginOfFiles","AtEndOfFiles","AtBeginOfFile","AtEndOfFile","AtBeginOfIncludes","AtEndOfIncludes","AfterIncludes","AtBeginOfIncludeFile","AtEndOfIncludeFile","AfterIncludeFile","AtBeginOfInputs","AtEndOfInputs","AtBeginOfInputFile","AtEndOfInputFile","AtBeginOfPackageFile","AtEndOfPackageFile","AtBeginOfClassFile","AtEndOfClassFile","ClearHook"]}
-,
-"filemod-expmin.sty":{"envs":{},"deps":{},"cmds":["filemodNumdate","filemodNumtime","filemodCmp"]}
-,
-"filemod.sty":{"envs":{},"deps":["filemod-expmin.sty"],"cmds":["filemodprint","filemodprintdate","filemodprinttime","thefilemod","thefilemoddate","thefilemodtime","filemodsep","Filemodtoday","FilemodToday","filemodnumdate","filemodnumtime","Filemodgetnum","filemodcmp","Filemodcmp","FilemodCmp","filemodoptdefault","filemodnewest","filemodoldest","filemodNewest","filemodOldest","Filemodnewest","Filemodoldest","FilemodNewest","FilemodOldest","filemodparse","filemodnotexists","filemodZ","filemodz"]}
-,
-"filesdo.sty":{"envs":{},"deps":["commado.sty"],"cmds":["DoWithExtBases","DoWithBasesExts"]}
-,
-"finstrut.sty":{"envs":{},"deps":{},"cmds":{}}
-,
-"firamath-otf.sty":{"envs":{},"deps":["iftex.sty","xkeyval.sty","textcomp.sty","unicode-math.sty","xfakebold.sty"],"cmds":["acwgapcirclearrow","angdnr","annuity","bardownharpoonleft","bardownharpoonright","barleftarrow","barleftarrowrightarrowbar","barovernorthwestarrow","barrightharpoondown","barrightharpoonup","baruparrow","blackcircleulquadwhite","blackinwhitesquare","blacklefthalfcircle","blackpointerleft","blackpointerright","blackrighthalfcircle","blacksmiley","blocklefthalf","blocklowhalf","blockrighthalf","blockuphalf","botsemicircle","boxbar","bullseye","circlebottomhalfblack","circlelefthalfblack","circlellquad","circlelrquad","circleonleftarrow","circleonrightarrow","circlerighthalfblack","circletophalfblack","circleulquad","circleurquad","cuberoot","cwgapcirclearrow","DDownarrow","Ddownarrow","downarrowbar","downarrowbarred","downdasharrow","downupharpoonsleftright","downzigzagarrow","droang","female","fisheye","fourthroot","gtlpar","house","inversewhitecircle","invwhitelowerhalfcircle","invwhiteupperhalfcircle","leftarrowonoplus","leftarrowtriangle","leftdasharrow","leftdbltail","leftharpoondownbar","leftharpoonupbar","leftrightarrowtriangle","leftrightharpoondowndown","leftrightharpoondownup","leftrightharpoonupdown","leftrightharpoonupup","lefttail","leftwavearrow","lgblkcircle","llarc","llblacktriangle","LLeftarrow","lrarc","lrblacktriangle","male","mbfDigamma","mbfdigamma","mdblkcircle","mdlgblkdiamond","mdlgwhtdiamond","mdsmblkcircle","mdsmwhtcircle","mdwhtcircle","mscrg","nHdownarrow","nHuparrow","nvleftarrow","nVleftarrow","nvLeftarrow","nvleftarrowtail","nVleftarrowtail","nvleftrightarrow","nVleftrightarrow","nvLeftrightarrow","nvrightarrow","nVrightarrow","nvRightarrow","nvrightarrowtail","nVrightarrowtail","nvtwoheadleftarrow","nVtwoheadleftarrow","nvtwoheadleftarrowtail","nVtwoheadleftarrowtail","nvtwoheadrightarrow","nVtwoheadrightarrow","nvtwoheadrightarrowtail","nVtwoheadrightarrowtail","oturnedcomma","revangle","revemptyset","rightarrowbar","rightarrowtriangle","rightdasharrow","rightdbltail","righttail","rightwavearrow","RRightarrow","sphericalangleup","squareleftblack","squarellquad","squarelrblack","squarelrquad","squarerightblack","squareulblack","squareulquad","squareurquad","squoval","sun","topsemicircle","turnangle","twoheadleftarrowtail","twoheadmapsfrom","twoheadmapsto","twoheadrightarrowtail","twonotes","ularc","ulblacktriangle","uparrowbarred","upbackepsilon","updasharrow","updownarrowbar","updownharpoonleftleft","updownharpoonleftright","updownharpoonrightleft","updownharpoonrightright","updownharpoonsleftright","upharpoonleftbar","upharpoonrightbar","urarc","urblacktriangle","UUparrow","Uuparrow","vrectangle","vrectangleblack","Vvert","whitearrowupfrombar","wideangledown","wideangleup"]}
-,
-"fistrum.sty":{"envs":{},"deps":{},"cmds":["setfistrum","fistrum","unpackfistrum","fistrumexp","SetFistrumText","SetFistrumDefault","NewFistrumPar","SetFistrumLanguage","fistrumPar","fistrumRestoreParList","fistrumRestoreSentenceList","fistrumRestoreAll","fistrumversion","fistrumdate"]}
-,
-"fitbox.sty":{"envs":{},"deps":["xkeyval.sty"],"cmds":["fitbox","fitboxset","fitboxnatwidth","fitboxnatheight","SetFitboxLayout"]}
-,
-"fithesis4.cls":{"envs":["alwayssingle"],"deps":["s-rapport3.cls","keyval.sty","etoolbox.sty","ltxcmds.sty","ifxetex.sty","ifluatex.sty","inputenc.sty","xpatch.sty","babel.sty","hyperref.sty","xcolor.sty","caption.sty","graphicx.sty","pdfpages.sty","tabularx.sty","tabu.sty","booktabs.sty","tikz.sty","microtype.sty","fontspec.sty","unicode-math.sty","csquotes.sty","biblatex.sty","colortbl.sty"],"cmds":["thesissetup","thesislong","thesisload","ea"]}
-,
-"fitr.sty":{"envs":{},"deps":["xkeyval.sty","ifpdf.sty","ifxetex.sty","ifluatex.sty","xcolor.sty","eforms.sty","calc.sty","collectbox.sty"],"cmds":["jdRect","restoreOverlayPresets","viewMagWinOff","viewMagWinOn","allowFXDefault","overlayPresets","allowFXcode","FitRbboxB","FRblinkonjmpfalse","FRblinkonjmptrue","FRblinkonrestorefalse","FRblinkonrestoretrue","FRusedljsfalse","FRusedljstrue","ifFRblinkonjmp","ifFRblinkonrestore","ifFRusedljs","ifviewMagWin","pbJmpLnkPresets","setFitRDest","themagCnt","viewMagWinfalse","viewMagWintrue"]}
-,
-"fixdif.sty":{"envs":{},"deps":{},"cmds":["resetdfont","letdif","partialnondif","newdif","renewdif","mathdif"]}
-,
-"fixfoot.sty":{"envs":{},"deps":{},"cmds":["DeclareFixedFootnote"]}
-,
-"fixjfm.sty":{"envs":{},"deps":["platex.sty"],"cmds":["fixjfmspacing","UseStandardCJKTextFontCommands","UseFixJFMCJKTextFontCommands","SetFixJFMSpacingShrink","SetFixJFMSpacingStretch","DeclareFixJFMCJKTextFontCommand","DeclareStandardCJKTextFontCommand","AppendToUseXCJKTextFontCommands","FixJFMSpacing","fixjfmparindent","FixJFMParindent","EveryparPreHook","EveryparPostHook","ifUseFixJFMCJKTextFontCommands","UseFixJFMCJKTextFontCommandstrue","UseFixJFMCJKTextFontCommandsfalse","ifUseStandardCJKTextFontCommands","UseStandardCJKTextFontCommandstrue","UseStandardCJKTextFontCommandsfalse","CATCODE","ENDGROUP","ENDINPUTFIXJFMDOTSTY","FIXJFMDOTSTYRESTORECATCODE","GDEF","RELAX"]}
-,
-"fixlatvian.sty":{"envs":{},"deps":["svn-prov.sty","caption.sty","etoolbox.sty","perpage.sty","polyglossia.sty","xstring.sty","indentfirst.sty","icomma.sty"],"cmds":["npageref","nref"]}
-,
-"fixmath.sty":{"envs":{},"deps":{},"cmds":["upOmega","upDelta","mathbold"]}
-,
-"fixme.sty":{"envs":["anfxnote","anfxnote*"],"deps":["ifthen.sty","xkeyval.sty"],"cmds":["fxsetup","fxnote","fxwarning","fxerror","fxfatal","listoffixmes","fxuselayouts","fxloadlayouts","fxuseenvlayout","fxloadenvlayouts","fxusetargetlayout","fxloadtargetlayouts","fxsetface","FXRegisterAuthor","fxusetheme","FXLayoutInline","FXLayoutMargin","FXLayoutFootnote","FXLayoutIndex","FXLayoutMarginClue","FXLayoutMarginNote","FXLayoutPDFNote","FXLayoutPDFMargin","FXLayoutPDFSigNote","FXLayoutPDFSigMargin","FXLayoutPDFCNote","FXLayoutPDFCMargin","FXLayoutPDFCSigNote","FXLayoutPDFCSigMargin","FXLayoutContentsLine","FXEnvLayoutPlainBegin","FXEnvLayoutPlainEnd","FXEnvLayoutSignatureBegin","FXEnvLayoutSignatureEnd","FXEnvLayoutColorBegin","FXEnvLayoutColorEnd","FXEnvLayoutColorSigBegin","FXEnvLayoutColorSigEnd","FXTargetLayoutPlain","FXTargetLayoutChangeBar","FXTargetLayoutColor","FXTargetLayoutColorCB","FXRegisterLayout","FXProvidesLayout","FXRegisterEnvLayout","FXProvidesEnvLayout","FXRegisterTargetLayout","FXProvidesTargetLayout","FXDefineLayoutKey","FXDefineEnvLayoutKey","FXDefineTargetLayoutKey","FXDefineLayoutCmdKey","FXDefineEnvLayoutCmdKey","FXDefineTargetLayoutCmdKey","FXDefineLayoutChoiceKey","FXDefineEnvLayoutChoiceKey","FXDefineTargetLayoutChoiceKey","FXDefineLayoutVoidKey","FXDefineEnvLayoutVoidKey","FXDefineTargetLayoutVoidKey","FXDefineLayoutBoolKey","FXDefineEnvLayoutBoolKey","FXDefineTargetLayoutBoolKey","FXRequireLayouts","FXRequireEnvLayout","FXRequireTargetLayout","FXProvidesTheme","croatianlistfixmename","danishlistfixmename","englishlistfixmename","fixmeindexname","fixmelogo","francaislistfixmename","frenchlistfixmename","fxaddcontentsline","fxcontentsline","fxcroatianerrorname","fxcroatianerrorsname","fxcroatianfatalname","fxcroatianfatalsname","fxcroatiannotename","fxcroatiannotesname","fxcroatianwarningname","fxcroatianwarningsname","fxdanisherrorname","fxdanisherrorsname","fxdanishfatalname","fxdanishfatalsname","fxdanishnotename","fxdanishnotesname","fxdanishwarningname","fxdanishwarningsname","fxenglisherrorname","fxenglisherrorsname","fxenglishfatalname","fxenglishfatalsname","fxenglishnotename","fxenglishnotesname","fxenglishwarningname","fxenglishwarningsname","fxfrancaiserrorname","fxfrancaisfatalname","fxfrancaisnotename","fxfrancaiswarningname","fxfrencherrorname","fxfrencherrorsname","fxfrenchfatalname","fxfrenchfatalsname","fxfrenchnotename","fxfrenchnotesname","fxfrenchwarningname","fxfrenchwarningsname","fxgermanerrorname","fxgermanerrorsname","fxgermanfatalname","fxgermanfatalsname","fxgermannotename","fxgermannotesname","fxgermanwarningname","fxgermanwarningsname","fxitalianerrorname","fxitalianerrorsname","fxitalianfatalname","fxitalianfatalsname","fxitaliannotename","fxitaliannotesname","fxitalianwarningname","fxitalianwarningsname","fxngermanerrorname","fxngermanfatalname","fxngermannotename","fxngermanwarningname","fxnotename","fxnotesname","fxspanisherrorname","fxspanisherrorsname","fxspanishfatalname","fxspanishfatalsname","fxspanishnotename","fxspanishnotesname","fxspanishwarningname","fxspanishwarningsname","germanlistfixmename","italianlistfixmename","spanishlistfixmename","FXLogError","FXLogFatal","FXLogNote","FXLogWarning","thefixmecount","thefxnotecount","thefxwarningcount","thefxerrorcount","thefxfatalcount"]}
-,
-"fjodor.sty":{"envs":{},"deps":{},"cmds":{}}
-,
-"flabels.sty":{"envs":{},"deps":["color.sty"],"cmds":["setbgcompany","setfgcompany","setbglabel","setfglabel","narrowlabels","widelabels","fullheight","normalheight","company","thenumberauxlines","auxlinedistance","companylabelheight","ylowercompany","yuppercompany","extratopmargin","hspaceinterlabel","labeltextmargin","emptylabel","labeltext"]}
-,
-"flagderiv.sty":{"envs":["flagderiv","flagderiv*"],"deps":["ifthen.sty","array.sty","longtable.sty"],"cmds":["introduce","assume","step","conclude","skipsteps","done","derivskip","introsymb","thestepcount","thesteplabel","inlcmnts","noinlcmnts","theinlcmnt","tablehead","tablefirsthead","endfoot","endlastfoot"]}
-,
-"flashcards.cls":{"envs":["flashcard"],"deps":["ifthen.sty","geometry.sty"],"cmds":["cardfrontstyle","cardfrontfoot","cardbackstyle","cardfrontheadstyle","cardfrontfootstyle","cardheight","cardwidth","topoffset","oddoffset","evenoffset","oddevenshift","cardmargin","cardinnerheight","cardinnerwidth","cardpapermode","cardpaper","cardrows","cardcolumns"]}
-,
-"flexipage.sty":{"envs":["Landscape","landscape"],"deps":["xparse.sty","l3keys2e.sty","calc.sty","fp.sty","ifoddpage.sty","graphics.sty","mparhack.sty","etoolbox.sty","fancyhdr.sty","eso-pic.sty"],"cmds":["NewMarginPage","NewFullPage","OldMarginPage","ResetFlexiPage","Landscape","endLandscape","landscape","endlandscape","IfNoValueOrEmptyTF","fleximarginparsep","marginparsepeven","marginparsepodd","patch","patcherr","patchok"]}
-,
-"flexisym.sty":{"envs":{},"deps":["mathstyle.sty"],"cmds":["sumlimits","intlimits","namelimits","DeclareFlexSymbol","DeclareFlexCompoundSymbol","DeclareFlexDelimiter","textchar","scriptchar","textprime","usesymbols","ProvidesSymbols","OrdSymbol","ldotPun","lhookRel","rhookRel","notRel","mapstoOrd","cdotOrd","lVert","rVert","lvert","rvert","hbarOrd","surdOrd"]}
-,
-"flippdf.sty":{"envs":{},"deps":["iftex.sty"],"cmds":["FlipPDF","UnFlipPDF"]}
-,
-"float.sty":{"envs":{},"deps":{},"cmds":["newfloat","floatstyle","floatname","floatplacement","restylefloat","listof"]}
-,
-"floatflt.sty":{"envs":["floatingfigure","floatingtable"],"deps":{},"cmds":["fltitem","fltditem","figbox","tabbox","pagebox","ffigcount","ftabcount","fftest","hangcount","nosuccesstryfig","nosuccesstrytab","figgutter","tabgutter","htdone","pageht","startpageht","tabbredd","floatfltwidth","fltitemwidth","iftryingfig","tryingfigfalse","tryingfigtrue","iftryingtab","tryingtabfalse","tryingtabtrue","ifdoingfig","doingfigfalse","doingfigtrue","ifdoingtab","doingtabfalse","doingtabtrue","iffigprocessing","figprocessingfalse","figprocessingtrue","iftabprocessing","tabprocessingfalse","tabprocessingtrue","ifpageafterfig","pageafterfigfalse","pageafterfigtrue","ifpageaftertab","pageaftertabfalse","pageaftertabtrue","ifoddpages","oddpagesfalse","oddpagestrue","ifoutput","outputfalse","outputtrue","outputpretest","dofigtest","dohangf","dohangt","dotabtest","figinsert","oldeverypar","oldoutput","tabinsert","theOptionTest","tryfig","trytab"]}
-,
-"floatpag.sty":{"envs":{},"deps":{},"cmds":["floatpagestyle","rotfloatpagestyle","thisfloatpagestyle"]}
-,
-"floatpagestyle.sty":{"envs":{},"deps":{},"cmds":["floatpagestyle","emptyfloatpage"]}
-,
-"floatrow.sty":{"envs":["floatrow","subfloatrow","subfloatrow*"],"deps":["keyval.sty","caption3.sty","fr-subfig.sty","fr-fancy.sty"],"cmds":["floatsetup","thisfloatsetup","floatbox","capbeside","nocapbeside","captop","FBwidth","FBheight","newfloatcommand","renewfloatcommand","ffigbox","ttabbox","fcapside","Xhsize","clearfloatsetup","killfloatstyle","CenterFloatBoxes","TopFloatBoxes","BottomFloatBoxes","PlainFloatBoxes","buildFBBOX","RawFloats","RawCaption","floatfoot","FBaskip","FBbskip","DeclareFloatStyle","DeclareFloatFont","DeclareFloatVCode","DeclareColorBox","DeclareCBoxCorners","DeclareObjectSet","DeclareMarginSet","setfloatmargins","floatfacing","floatboxmargins","floatrowmargins","floatcapbesidemargins","DeclareFloatSeparators","DeclareFloatFootnoterule","DeclareNewFloatType","newfloat","floatname","floatplacement","listof","floatHpenalties","RestoreSpaces","RemoveSpaces","floatfont","captionskip","floatfootskip","captionlabel","subcaptionlabel","newdimentocommand","renewdimentocommand","newskiptocommand","renewskiptocommand","newlengthtocommand","renewlengthtocommand","DefaultCommonHeight","CommonHeight","CommonHeightRow","DeclareFNOpt","DeclareFROpt","DeclareFtPos","DeclareHtAdj","DeclareSCPos","CADJfalse","CADJtrue","capbot","capsubrowsettings","captionfootfont","CAPTOP","FBafil","FBbfil","FBbuildfalse","FBbuildtrue","FBcheight","FBfheight","FBfootnoterule","FBifcapbeside","FBifCAPTOP","FBifcaptop","FBiffloatrow","FBleftmargin","FBoheight","FBrightmargin","FCleftmargin","FCrightmargin","FCwidth","filFCOhsize","floatcapbesidesep","floatobjectset","floatrowsep","floatstyle","FPOScnt","FRcolorboxdp","FRcolorboxht","FRcolorboxwd","FRifFBOX","FRleftmargin","frulemax","ifCADJ","ifFBbuild","ifOADJ","LTleft","LTright","mpfootnotemark","nofilFCOhsize","OADJfalse","OADJtrue","ProcessOptionsWithKV","refsteponlycounter","restylefloat","subfloatrowsep","sXhsize","sZhsize","theFBcnt","theFRobj","theFRsobj","useFCwidth","Zhsize","FBifLTcapwidth","endlasthead","endprelastfoot","setLTcapwidth","theFBLTpage"]}
-,
-"flowchart.sty":{"envs":{},"deps":["tikz.sty","tikzlibraryshapes.sty"],"cmds":["band","predprocAnchorpath","predprocBackground","storagepath","arcoffset","storageParams","storageParamsOuter","storageAnchorpath","storageBackground","decisionrefout","decisionref","decisionpath","refx","refy","decisionanchor","decisionborder","terminalrefneout","terminalrefne","terminalpath","terminalanchor","terminalborder","northeastBB"]}
-,
-"flowfram.sty":{"envs":["staticfigure","statictable","staticcontents","staticcontents*","dynamiccontents","dynamiccontents*"],"deps":["ifthen.sty","xkeyval.sty","graphics.sty","afterpage.sty","xfor.sty","etoolbox.sty","color.sty"],"cmds":["ifshowtypeblock","showtypeblocktrue","showtypeblockfalse","ifshowmargins","showmarginstrue","showmarginsfalse","ifshowframebbox","showframebboxtrue","showframebboxfalse","flowframeshowlayout","chapterfirstpagestyle","ffprechapterhook","newflowframe","getflowlabel","getflowid","framebreak","fftolerance","newstaticframe","getstaticlabel","getstaticid","setstaticcontents","newdynamicframe","getdynamiclabel","getdynamicid","setdynamiccontents","appenddynamiccontents","dfchaphead","DFchapterstyle","DFschapterstyle","makedfheaderfooter","continueonframe","ffcontinuedtextlayout","ffcontinuedtextfont","setflowframe","setallflowframes","setstaticframe","setallstaticframes","setdynamicframe","setalldynamicframes","ffswapoddeven","sfswapoddeven","dfswapoddeven","flowsetpagelist","dynamicsetpagelist","staticsetpagelist","flowsetexclusion","dynamicsetexclusion","staticsetexclusion","flowaddexclusion","dynamicaddexclusion","staticaddexclusion","simpar","flowswitchonnext","flowswitchoffnext","flowswitchonnextodd","flowswitchoffnextodd","flowswitchonnextonly","flowswitchoffnextonly","flowswitchonnextoddonly","flowswitchoffnextoddonly","dynamicswitchonnext","dynamicswitchoffnext","dynamicswitchonnextodd","dynamicswitchoffnextodd","dynamicswitchonnextonly","dynamicswitchoffnextonly","dynamicswitchonnextoddonly","dynamicswitchoffnextoddonly","staticswitchonnext","staticswitchoffnext","staticswitchonnextodd","staticswitchoffnextodd","staticswitchonnextonly","staticswitchoffnextonly","staticswitchonnextoddonly","staticswitchoffnextoddonly","computeleftedgeodd","computeleftedgeeven","computetopedge","computebottomedge","computerightedgeodd","computerightedgeeven","computeflowframearea","getstaticbounds","getflowbounds","getdynamicbounds","ffareawidth","ffareaheight","ffareax","ffareay","relativeframelocation","FFaboveleft","FFaboveright","FFbelowleft","FFbelowright","FFleft","FFright","FFabove","FFbelow","FFoverlap","reldynamicloc","relstaticloc","relflowloc","ifffvadjust","ffvadjusttrue","ffvadjustfalse","onecolumn","twocolumn","Ncolumn","onecolumninarea","twocolumninarea","Ncolumninarea","onecolumntopinarea","twocolumntopinarea","Ncolumntopinarea","onecolumnbottominarea","twocolumnbottominarea","Ncolumnbottominarea","onecolumnStopinarea","onecolumnDtopinarea","onecolumntop","onecolumnStop","onecolumnDtop","twocolumnStopinarea","twocolumnDtopinarea","twocolumntop","twocolumnStop","twocolumnDtop","NcolumnStopinarea","NcolumnDtopinarea","Ncolumntop","NcolumnStop","NcolumnDtop","onecolumnSbottominarea","onecolumnDbottominarea","onecolumnbottom","onecolumnSbottom","onecolumnDbottom","twocolumnSbottominarea","twocolumnDbottominarea","twocolumnbottom","twocolumnSbottom","twocolumnDbottom","NcolumnSbottominarea","NcolumnDbottominarea","Ncolumnbottom","NcolumnSbottom","NcolumnDbottom","iflefttorightcolumns","lefttorightcolumnstrue","lefttorightcolumnsfalse","vtwotone","vNtone","vtwotonebottom","vtwotonetop","vNtonebottom","vNtonetop","htwotone","hNtone","htwotoneleft","htwotoneright","hNtoneleft","hNtoneright","makebackgroundframe","insertvrule","ffcolumnseprule","ffvrule","inserthrule","ffhrule","ffruledeclarations","makethumbtabs","thumbtabwidth","thumbtabindex","enablethumbtabs","disablethumbtabs","tocandthumbtabindex","thumbtabindexformat","thumbtabformat","setthumbtab","setthumbtabindex","themaxthumbtabs","enableminitoc","appenddfminitoc","minitocstyle","beforeminitocskip","afterminitocskip","setffdraftcolor","setffdrafttypeblockcolor","fflabelfont","fflabelsep","flowframesep","flowframerule","sdfparindent","vcolumnsep","labelflowidn","labelflow","themaxflow","thethisframe","thedisplayedframe","themaxstatic","themaxdynamic","theabsolutepage","adjustheight","adjustcolsep","aligntocfalse","aligntoctrue","checkifframeabove","checkifframebelow","checkifframeleft","checkifframeright","defaultthumbtabtype","dfcontinuedfalse","dfcontinuedtrue","dominitoc","dynamicframeevenx","dynamicframeeveny","dynamicframex","dynamicframey","emulateonecolumn","emulatetwocolumn","evencheckifframeabove","evencheckifframebelow","evencheckifframeleft","evencheckifframeright","ffaddtoadjustframeshook","ffpshpar","finishthispage","FLFabovefalse","FLFabovetrue","FLFbelowfalse","FLFbelowtrue","FLFleftfalse","FLFlefttrue","FLForgpar","FLFrightfalse","FLFrighttrue","flowframecol","flowframeevenx","flowframeeveny","flowframeheight","flowframetextcol","flowframewidth","flowframex","flowframey","footnotecolor","getdynamicevenbounds","getflowevenbounds","getstaticevenbounds","globalnormalmargin","globalreversemargin","ifaligntoc","ifdfcontinued","ifFLFabove","ifFLFbelow","ifFLFleft","ifFLFright","ifusedframebreak","newframe","oddcheckifframeabove","oddcheckifframebelow","oddcheckifframeleft","oddcheckifframeright","oldpar","rotateframe","setframes","setinitialframe","setmargin","staticframeevenx","staticframeeveny","staticframex","staticframey","theHdisplayedframe","theHthisframe","theminitoc","thumbtab","tocandhumbtabindex","usedframebreakfalse","usedframebreaktrue"]}
-,
-"fltpage.sty":{"envs":["FPfigure","FPtable"],"deps":["ifthen.sty","afterpage.sty","varioref.sty"],"cmds":{}}
-,
-"fltpoint.sty":{"envs":{},"deps":{},"cmds":["fpAdd","fpSub","fpMul","fpDiv","fpNeg","fpAbs","fpRound","fpRegSet","fpRegGet","fpRegAdd","fpRegSub","fpRegMul","fpRegDiv","fpRegAbs","fpRegNeg","fpRegRound","fpRegCopy","fpAccuracy","fpDecimalSign","fpThousandSep","iloop","irepeat","iiterate","ibody","inext","xloop","xrepeat","xiterate","xbody","xnext"]}
-,
-"fltrace.sty":{"envs":{},"deps":{},"cmds":["tracefloats","tracefloatsoff","tracefloatvals"]}
-,
-"flushend.sty":{"envs":{},"deps":{},"cmds":["flushend","raggedend","flushcolsend","raggedcolsend","atColsBreak","atColsEnd","showcolsendrule"]}
-,
-"fmp.sty":{"envs":["fmp"],"deps":["graphicx.sty","verbatim.sty"],"cmds":["fmpfigure","fmpsourcefilename","fmpscriptfilename","fmpfigurebasename","fmpsourcepreamble","fmpaddtosourcepreamble","fmpscriptpreamble","fmpaddtoscriptpreamble","fmpsourcepostamble","fmpaddtosourcepostamble","fmpscriptpostamble","fmpaddtoscriptpostamble","thefmpfigure","fmp","endfmp"]}
-,
-"fmtcount.sty":{"envs":{},"deps":["ifthen.sty","xkeyval.sty","etoolbox.sty","fcprefix.sty","amsgen.sty"],"cmds":["ordinal","FCordinal","fmtord","ordinalnum","numberstring","Numberstring","NUMBERstring","numberstringnum","Numberstringnum","NUMBERstringnum","ordinalstring","Ordinalstring","ORDINALstring","ordinalstringnum","Ordinalstringnum","ORDINALstringnum","FMCuse","storeordinal","storeordinalstring","storeOrdinalstring","storeORDINALstring","storenumberstring","storeNumberstring","storeNUMBERstring","storeordinalnum","storeordinalstringnum","storeOrdinalstringnum","storeORDINALstringnum","storenumberstringnum","storeNumberstringnum","storeNUMBERstringnum","binary","padzeroes","binarynum","octal","octalnum","hexadecimal","HEXADecimal","hexadecimalnum","HEXADecimalnum","decimal","decimalnum","aaalph","AAAlph","aaalphnum","AAAlphnum","abalph","ABAlph","abalphnum","ABAlphnum","fmtcountsetoptions","FCloadlang","ProvidesFCLanguage"]}
-,
-"fnbreak.sty":{"envs":{},"deps":["ifthen.sty"],"cmds":["fnbreaklabel","fnbreaknolabel","fnbreaknonverbose","fnbreakverbose"]}
-,
-"fncychap.sty":{"envs":{},"deps":["color.sty"],"cmds":["mghrulefill","ChNameUpperCase","ChNameLowerCase","ChNameAsIs","ChTitleUpperCase","ChTitleLowerCase","ChTitleAsIs","ChRuleWidth","ChNameVar","ChNumVar","ChTitleVar","TheAlphaChapter","DOCH","DOTI","DOTIS","mylen","myhi","px","py","pxx","pyy","RW","CNV","CNoV","CTV","FmN","FmTi","bl","BL","br","BR","tl","TL","trr","TR","blrule","BLrule","backskip","AlphaDecNo","AlphaNo","theAlphaCnt","theAlphaDecCnt","ifusecolor","usecolortrue","usecolorfalse","ifUCN","UCNtrue","UCNfalse","ifLCN","LCNtrue","LCNfalse","ifinapp","inapptrue","inappfalse","ifUCT","UCTtrue","UCTfalse","ifLCT","LCTtrue","LCTfalse"]}
-,
-"fnlineno.sty":{"envs":{},"deps":["finstrut.sty"],"cmds":["TheLineNoLaTeXOutput","GStoreReg","RestoreReg","GRestoreReg","GStoreSetReg","GStoreGSetReg","SwapFootnoteMain","InsertFootnote","unsetfootnotelinenumbers","GStoreUse","setgetfootnotelinenumbers","makeFootnoteLineNumber","setfootnotelinenumbers","theFootnoteLineNumber","setgetpagewiselinenumbers","theWiseLineNumber","getwiselinenumber","getfootnotelinenumber"]}
-,
-"fnpct.sty":{"envs":{},"deps":["l3keys2e.sty","translations.sty"],"cmds":["footnote","footnotemark","setfnpct","multfootsep","multfootrange","multfootnote","AdaptNote","AdaptNoteName","MultVariant","MultVariantName","AddPunctuation"]}
-,
-"fnpos.sty":{"envs":{},"deps":{},"cmds":["makeFNabove","makeFNbelow","makeFNbottom","makeFNmid"]}
-,
-"fnspe.sty":{"envs":{},"deps":["xstring.sty","bm.sty","amsmath.sty","amsfonts.sty","mathrsfs.sty","amsthm.sty","amssymb.sty","xcolor.sty","listings.sty","physics.sty","tikz.sty","substr.sty","mathtools.sty"],"cmds":["xvec","mat","tder","oi","ci","rci","lci","dif","hlf","degree","hem","htwoem","htem","oover","realn","compn","inte","ratin","natun","nnzero","impem","rot","lapl","varun","unit","expv","ceil","floor","df","allset","allsetzero","cclass","ccof","ccinf"]}
-,
-"fnumprint.sty":{"envs":{},"deps":["xifthen.sty","numprint.sty","zahl2string.sty"],"cmds":["fnumprintc","fnumprint"]}
-,
-"foekfont.sty":{"envs":{},"deps":{},"cmds":["foekfamily","foek","madsfoek"]}
-,
-"foliono.sty":{"envs":{},"deps":["calc.sty"],"cmds":["folionumber","folionoquirefolios","stepfolio","setfoliono","currentfolio","currentfoliowithsides","currentfoliowithstyles","folionostyle","quirenostyle","folionofont","folionofontsize","foliofontcolor","quirenoprefix","quirenosuffix","folionoprefix","folionosuffix","folionoseparator","folionolabel","folionolabelwithstyles","folionoindex","folionoindexwithstyles"]}
-,
-"fonetika.sty":{"envs":{},"deps":{},"cmds":["fonetikashape","fonetikafamily","fonetikasansfamily","fonetikaseriffamily"]}
-,
-"fontawesome.sty":{"envs":{},"deps":{},"cmds":["faicon","faBattery","faHourglass","fa","faCss","faHtml","faAdjust","faAdn","faAlignCenter","faAlignJustify","faAlignLeft","faAlignRight","faAmazon","faAmbulance","faAmericanSignLanguageInterpreting","faAnchor","faAndroid","faAngellist","faAngleDoubleDown","faAngleDoubleLeft","faAngleDoubleRight","faAngleDoubleUp","faAngleDown","faAngleLeft","faAngleRight","faAngleUp","faApple","faArchive","faAreaChart","faArrowCircleDown","faArrowCircleLeft","faArrowCircleODown","faArrowCircleOLeft","faArrowCircleORight","faArrowCircleOUp","faArrowCircleRight","faArrowCircleUp","faArrowDown","faArrowLeft","faArrowRight","faArrowUp","faArrows","faArrowsAlt","faArrowsH","faArrowsV","faAslInterpreting","faAssistiveListeningSystems","faAsterisk","faAt","faAudioDescription","faAutomobile","faBackward","faBalanceScale","faBan","faBank","faBarChart","faBarChartO","faBarcode","faBars","faBatteryEmpty","faBatteryFull","faBatteryHalf","faBatteryQuarter","faBatteryThreeQuarters","faBed","faBeer","faBehance","faBehanceSquare","faBell","faBellO","faBellSlash","faBellSlashO","faBicycle","faBinoculars","faBirthdayCake","faBitbucket","faBitbucketSquare","faBitcoin","faBlackTie","faBlind","faBluetooth","faBluetoothB","faBold","faBolt","faBomb","faBook","faBookmark","faBookmarkO","faBraille","faBriefcase","faBtc","faBug","faBuilding","faBuildingO","faBullhorn","faBullseye","faBus","faBuysellads","faCab","faCalculator","faCalendar","faCalendarCheckO","faCalendarMinusO","faCalendarO","faCalendarPlusO","faCalendarTimesO","faCamera","faCameraRetro","faCar","faCaretDown","faCaretLeft","faCaretRight","faCaretSquareODown","faCaretSquareOLeft","faCaretSquareORight","faCaretSquareOUp","faCaretUp","faCartArrowDown","faCartPlus","faCc","faCcAmex","faCcDinersClub","faCcDiscover","faCcJcb","faCcMastercard","faCcPaypal","faCcStripe","faCcVisa","faCertificate","faChain","faChainBroken","faCheck","faCheckCircle","faCheckCircleO","faCheckSquare","faCheckSquareO","faChevronCircleDown","faChevronCircleLeft","faChevronCircleRight","faChevronCircleUp","faChevronDown","faChevronLeft","faChevronRight","faChevronUp","faChild","faChrome","faCircle","faCircleO","faCircleONotch","faCircleThin","faClipboard","faClockO","faClone","faClose","faCloud","faCloudDownload","faCloudUpload","faCny","faCode","faCodeFork","faCodepen","faCodiepie","faCoffee","faCog","faCogs","faColumns","faComment","faCommentO","faCommenting","faCommentingO","faComments","faCommentsO","faCompass","faCompress","faConnectdevelop","faContao","faCopy","faCopyright","faCreativeCommons","faCreditCard","faCreditCardAlt","faCrop","faCrosshairs","faCube","faCubes","faCut","faCutlery","faDashboard","faDashcube","faDatabase","faDeaf","faDeafness","faDedent","faDelicious","faDesktop","faDeviantart","faDiamond","faDigg","faDollar","faDotCircleO","faDownload","faDribbble","faDropbox","faDrupal","faEdge","faEdit","faEject","faEllipsisH","faEllipsisV","faEmpire","faEnvelope","faEnvelopeO","faEnvelopeSquare","faEnvira","faEraser","faEur","faEuro","faExchange","faExclamation","faExclamationCircle","faExclamationTriangle","faExpand","faExpeditedssl","faExternalLink","faExternalLinkSquare","faEye","faEyeSlash","faEyedropper","faFa","faFacebook","faFacebookF","faFacebookOfficial","faFacebookSquare","faFastBackward","faFastForward","faFax","faFeed","faFemale","faFighterJet","faFile","faFileArchiveO","faFileAudioO","faFileCodeO","faFileExcelO","faFileImageO","faFileMovieO","faFileO","faFilePdfO","faFilePhotoO","faFilePictureO","faFilePowerpointO","faFileSoundO","faFileText","faFileTextO","faFileVideoO","faFileWordO","faFileZipO","faFilesO","faFilm","faFilter","faFire","faFireExtinguisher","faFirefox","faFirstOrder","faFlag","faFlagCheckered","faFlagO","faFlash","faFlask","faFlickr","faFloppyO","faFolder","faFolderO","faFolderOpen","faFolderOpenO","faFont","faFontAwesome","faFonticons","faFortAwesome","faForumbee","faForward","faFoursquare","faFrownO","faFutbolO","faGamepad","faGavel","faGbp","faGe","faGear","faGears","faGenderless","faGetPocket","faGg","faGgCircle","faGift","faGit","faGitSquare","faGithub","faGithubAlt","faGithubSquare","faGitlab","faGittip","faGlass","faGlide","faGlideG","faGlobe","faGoogle","faGooglePlus","faGooglePlusCircle","faGooglePlusOfficial","faGooglePlusSquare","faGoogleWallet","faGraduationCap","faGratipay","faGroup","faHSquare","faHackerNews","faHandGrabO","faHandLizardO","faHandODown","faHandOLeft","faHandORight","faHandOUp","faHandPaperO","faHandPeaceO","faHandPointerO","faHandRockO","faHandScissorsO","faHandSpockO","faHandStopO","faHardOfHearing","faHashtag","faHddO","faHeader","faHeadphones","faHeart","faHeartO","faHeartbeat","faHistory","faHome","faHospitalO","faHotel","faHourglassEnd","faHourglassHalf","faHourglassO","faHourglassStart","faHouzz","faICursor","faIls","faImage","faInbox","faIndent","faIndustry","faInfo","faInfoCircle","faInr","faInstagram","faInstitution","faInternetExplorer","faIntersex","faIoxhost","faItalic","faJoomla","faJpy","faJsfiddle","faKey","faKeyboardO","faKrw","faLanguage","faLaptop","faLastfm","faLastfmSquare","faLeaf","faLeanpub","faLegal","faLemonO","faLevelDown","faLevelUp","faLifeBouy","faLifeBuoy","faLifeRing","faLifeSaver","faLightbulbO","faLineChart","faLink","faLinkedin","faLinkedinSquare","faLinux","faList","faListAlt","faListOl","faListUl","faLocationArrow","faLock","faLongArrowDown","faLongArrowLeft","faLongArrowRight","faLongArrowUp","faLowVision","faMagic","faMagnet","faMailForward","faMailReply","faMailReplyAll","faMale","faMap","faMapMarker","faMapO","faMapPin","faMapSigns","faMars","faMarsDouble","faMarsStroke","faMarsStrokeH","faMarsStrokeV","faMaxcdn","faMeanpath","faMedium","faMedkit","faMehO","faMercury","faMicrophone","faMicrophoneSlash","faMinus","faMinusCircle","faMinusSquare","faMinusSquareO","faMixcloud","faMobile","faMobilePhone","faModx","faMoney","faMoonO","faMortarBoard","faMotorcycle","faMousePointer","faMusic","faNavicon","faNeuter","faNewspaperO","faObjectGroup","faObjectUngroup","faOdnoklassniki","faOdnoklassnikiSquare","faOpencart","faOpenid","faOpera","faOptinMonster","faOutdent","faPagelines","faPaintBrush","faPaperPlane","faPaperPlaneO","faPaperclip","faParagraph","faPaste","faPause","faPauseCircle","faPauseCircleO","faPaw","faPaypal","faPencil","faPencilSquare","faPencilSquareO","faPercent","faPhone","faPhoneSquare","faPhoto","faPictureO","faPieChart","faPiedPiper","faPiedPiperAlt","faPiedPiperPp","faPinterest","faPinterestP","faPinterestSquare","faPlane","faPlay","faPlayCircle","faPlayCircleO","faPlug","faPlus","faPlusCircle","faPlusSquare","faPlusSquareO","faPowerOff","faPrint","faProductHunt","faPuzzlePiece","faQq","faQrcode","faQuestion","faQuestionCircle","faQuestionCircleO","faQuoteLeft","faQuoteRight","faRa","faRandom","faRebel","faRecycle","faReddit","faRedditAlien","faRedditSquare","faRefresh","faRegistered","faRemove","faRenren","faReorder","faRepeat","faReply","faReplyAll","faResistance","faRetweet","faRmb","faRoad","faRocket","faRotateLeft","faRotateRight","faRouble","faRss","faRssSquare","faRub","faRuble","faRupee","faSafari","faSave","faScissors","faScribd","faSearch","faSearchMinus","faSearchPlus","faSellsy","faSend","faSendO","faServer","faShare","faShareAlt","faShareAltSquare","faShareSquare","faShareSquareO","faShekel","faSheqel","faShield","faShip","faShirtsinbulk","faShoppingBag","faShoppingBasket","faShoppingCart","faSignIn","faSignLanguage","faSignOut","faSignal","faSigning","faSimplybuilt","faSitemap","faSkyatlas","faSkype","faSlack","faSliders","faSlideshare","faSmileO","faSnapchat","faSnapchatGhost","faSnapchatSquare","faSoccerBallO","faSort","faSortAlphaAsc","faSortAlphaDesc","faSortAmountAsc","faSortAmountDesc","faSortAsc","faSortDesc","faSortDown","faSortNumericAsc","faSortNumericDesc","faSortUp","faSoundcloud","faSpaceShuttle","faSpinner","faSpoon","faSpotify","faSquare","faSquareO","faStackExchange","faStackOverflow","faStar","faStarHalf","faStarHalfEmpty","faStarHalfFull","faStarHalfO","faStarO","faSteam","faSteamSquare","faStepBackward","faStepForward","faStethoscope","faStickyNote","faStickyNoteO","faStop","faStopCircle","faStopCircleO","faStreetView","faStrikethrough","faStumbleupon","faStumbleuponCircle","faSubscript","faSubway","faSuitcase","faSunO","faSuperscript","faSupport","faTable","faTablet","faTachometer","faTag","faTags","faTasks","faTaxi","faTelevision","faTencentWeibo","faTerminal","faTextHeight","faTextWidth","faTh","faThLarge","faThList","faThemeisle","faThumbTack","faThumbsDown","faThumbsODown","faThumbsOUp","faThumbsUp","faTicket","faTimes","faTimesCircle","faTimesCircleO","faTint","faToggleDown","faToggleLeft","faToggleOff","faToggleOn","faToggleRight","faToggleUp","faTrademark","faTrain","faTransgender","faTransgenderAlt","faTrash","faTrashO","faTree","faTrello","faTripadvisor","faTrophy","faTruck","faTry","faTty","faTumblr","faTumblrSquare","faTurkishLira","faTv","faTwitch","faTwitter","faTwitterSquare","faUmbrella","faUnderline","faUndo","faUniversalAccess","faUniversity","faUnlink","faUnlock","faUnlockAlt","faUnsorted","faUpload","faUsb","faUsd","faUser","faUserMd","faUserPlus","faUserSecret","faUserTimes","faUsers","faVenus","faVenusDouble","faVenusMars","faViacoin","faViadeo","faViadeoSquare","faVideoCamera","faVimeo","faVimeoSquare","faVine","faVk","faVolumeControlPhone","faVolumeDown","faVolumeOff","faVolumeUp","faWarning","faWechat","faWeibo","faWeixin","faWhatsapp","faWheelchair","faWheelchairAlt","faWifi","faWikipediaW","faWindows","faWon","faWordpress","faWpbeginner","faWpforms","faWrench","faXing","faXingSquare","faYCombinator","faYCombinatorSquare","faYahoo","faYc","faYcSquare","faYelp","faYen","faYoast","faYoutube","faYoutubePlay","faYoutubeSquare"]}
-,
-"fontawesome5.sty":{"envs":{},"deps":["expl3.sty","xparse.sty"],"cmds":["faStyle","faIcon","faPreselectedIcon","faAccessibleIcon","faAccusoft","faAcquisitionsIncorporated","faAd","faAddressBook","faAddressCard","faAdjust","faAdn","faAdobe","faAdversal","faAffiliatetheme","faAirbnb","faAirFreshener","faAlgolia","faAlignCenter","faAlignJustify","faAlignLeft","faAlignRight","faAlipay","faAllergies","faAmazon","faAmazonPay","faAmbulance","faAmericanSignLanguageInterpreting","faAmilia","faAnchor","faAndroid","faAngellist","faAngleDoubleDown","faAngleDoubleLeft","faAngleDoubleRight","faAngleDoubleUp","faAngleDown","faAngleLeft","faAngleRight","faAngleUp","faAngry","faAngrycreative","faAngular","faAnkh","faApper","faApple","faApplePay","faAppStore","faAppStoreIos","faArchive","faArchway","faArrowAltCircleDown","faArrowAltCircleLeft","faArrowAltCircleRight","faArrowAltCircleUp","faArrowCircleDown","faArrowCircleLeft","faArrowCircleRight","faArrowCircleUp","faArrowDown","faArrowLeft","faArrowRight","faArrows","faArrowsAltH","faArrowsAltV","faArrowUp","faArtstation","faAssistiveListeningSystems","faAsterisk","faAsymmetrik","faAt","faAtlas","faAtlassian","faAtom","faAudible","faAudioDescription","faAutoprefixer","faAvianex","faAviato","faAward","faAws","faBaby","faBabyCarriage","faBackspace","faBackward","faBacon","faBacteria","faBacterium","faBahai","faBalanceScale","faBalanceScaleLeft","faBalanceScaleRight","faBan","faBandAid","faBandcamp","faBarcode","faBars","faBaseballBall","faBasketballBall","faBath","faBatteryEmpty","faBatteryFull","faBatteryHalf","faBatteryQuarter","faBatteryThreeQuarters","faBattleNet","faBed","faBeer","faBehance","faBehanceSquare","faBell","faBellSlash","faBezierCurve","faBible","faBicycle","faBiking","faBimobject","faBinoculars","faBiohazard","faBirthdayCake","faBitbucket","faBitcoin","faBity","faBlackberry","faBlackTie","faBlender","faBlenderPhone","faBlind","faBlog","faBlogger","faBloggerB","faBluetooth","faBluetoothB","faBold","faBolt","faBomb","faBone","faBong","faBook","faBookDead","faBookmark","faBookMedical","faBookOpen","faBookReader","faBootstrap","faBorderAll","faBorderNone","faBorderStyle","faBowlingBall","faBox","faBoxes","faBoxOpen","faBoxTissue","faBraille","faBrain","faBreadSlice","faBriefcase","faBriefcaseMedical","faBroadcastTower","faBroom","faBrush","faBtc","faBuffer","faBug","faBuilding","faBullhorn","faBullseye","faBurn","faBuromobelexperte","faBus","faBusinessTime","faBuyNLarge","faBuysellads","faCalculator","faCalendar","faCalendarCheck","faCalendarDay","faCalendarMinus","faCalendarPlus","faCalendarTimes","faCalendarWeek","faCamera","faCameraRetro","faCampground","faCanadianMapleLeaf","faCandyCane","faCannabis","faCapsules","faCar","faCaravan","faCarBattery","faCarCrash","faCaretDown","faCaretLeft","faCaretRight","faCaretSquareDown","faCaretSquareLeft","faCaretSquareRight","faCaretSquareUp","faCaretUp","faCarrot","faCarSide","faCartArrowDown","faCartPlus","faCashRegister","faCat","faCcAmazonPay","faCcAmex","faCcApplePay","faCcDinersClub","faCcDiscover","faCcJcb","faCcMastercard","faCcPaypal","faCcStripe","faCcVisa","faCentercode","faCentos","faCertificate","faChair","faChalkboard","faChalkboardTeacher","faChargingStation","faChartArea","faChartBar","faChartLine","faChartPie","faCheck","faCheckCircle","faCheckDouble","faCheckSquare","faCheese","faChess","faChessBishop","faChessBoard","faChessKing","faChessKnight","faChessPawn","faChessQueen","faChessRook","faChevronCircleDown","faChevronCircleLeft","faChevronCircleRight","faChevronCircleUp","faChevronDown","faChevronLeft","faChevronRight","faChevronUp","faChild","faChrome","faChromecast","faChurch","faCircle","faCircleNotch","faCity","faClinicMedical","faClipboard","faClipboardCheck","faClipboardList","faClock","faClone","faClosedCaptioning","faCloud","faCloudDownload","faCloudflare","faCloudMeatball","faCloudMoon","faCloudMoonRain","faCloudRain","faCloudscale","faCloudShowersHeavy","faCloudsmith","faCloudSun","faCloudSunRain","faCloudUpload","faCloudversify","faCocktail","faCode","faCodeBranch","faCodepen","faCodiepie","faCoffee","faCog","faCogs","faCoins","faColumns","faComment","faCommentDollar","faCommentDots","faCommentMedical","faComments","faCommentsDollar","faCommentSlash","faCompactDisc","faCompass","faCompress","faCompressArrows","faConciergeBell","faConfluence","faConnectdevelop","faContao","faCookie","faCookieBite","faCopy","faCopyright","faCottonBureau","faCouch","faCpanel","faCreativeCommons","faCreativeCommonsBy","faCreativeCommonsNc","faCreativeCommonsNcEu","faCreativeCommonsNcJp","faCreativeCommonsNd","faCreativeCommonsPd","faCreativeCommonsRemix","faCreativeCommonsSa","faCreativeCommonsSampling","faCreativeCommonsSamplingPlus","faCreativeCommonsShare","faCreativeCommonsZero","faCreditCard","faCriticalRole","faCrop","faCross","faCrosshairs","faCrow","faCrown","faCrutch","faCss","faCube","faCubes","faCut","faCuttlefish","faDailymotion","faDAndD","faDAndDBeyond","faDashcube","faDatabase","faDeaf","faDeezer","faDelicious","faDemocrat","faDeploydog","faDeskpro","faDesktop","faDev","faDeviantart","faDharmachakra","faDhl","faDiagnoses","faDiaspora","faDice","faDiceD","faDiceFive","faDiceFour","faDiceOne","faDiceSix","faDiceThree","faDiceTwo","faDigg","faDigitalOcean","faDigitalTachograph","faDirections","faDiscord","faDiscourse","faDisease","faDivide","faDizzy","faDna","faDochub","faDocker","faDog","faDollarSign","faDolly","faDollyFlatbed","faDonate","faDoorClosed","faDoorOpen","faDotCircle","faDove","faDownload","faDraft","faDraftingCompass","faDragon","faDrawPolygon","faDribbble","faDribbbleSquare","faDropbox","faDrum","faDrumSteelpan","faDrumstickBite","faDrupal","faDumbbell","faDumpster","faDumpsterFire","faDungeon","faDyalog","faEarlybirds","faEbay","faEdge","faEdgeLegacy","faEdit","faEgg","faEject","faElementor","faEllipsisH","faEllipsisV","faEllo","faEmber","faEmpire","faEnvelope","faEnvelopeOpen","faEnvelopeOpenText","faEnvelopeSquare","faEnvira","faEquals","faEraser","faErlang","faEthereum","faEthernet","faEtsy","faEuroSign","faEvernote","faExchange","faExclamation","faExclamationCircle","faExclamationTriangle","faExpand","faExpandArrows","faExpeditedssl","faExternalLink","faExternalLinkSquare","faEye","faEyeDropper","faEyeSlash","faFacebook","faFacebookF","faFacebookMessenger","faFacebookSquare","faFan","faFantasyFlightGames","faFastBackward","faFastForward","faFaucet","faFax","faFeather","faFedex","faFedora","faFemale","faFighterJet","faFigma","faFile","faFileArchive","faFileAudio","faFileCode","faFileContract","faFileCsv","faFileDownload","faFileExcel","faFileExport","faFileImage","faFileImport","faFileInvoice","faFileInvoiceDollar","faFileMedical","faFilePdf","faFilePowerpoint","faFilePrescription","faFileSignature","faFileUpload","faFileVideo","faFileWord","faFill","faFillDrip","faFilm","faFilter","faFingerprint","faFire","faFireExtinguisher","faFirefox","faFirefoxBrowser","faFirstAid","faFirstdraft","faFirstOrder","faFish","faFistRaised","faFlag","faFlagCheckered","faFlagUsa","faFlask","faFlickr","faFlipboard","faFlushed","faFly","faFolder","faFolderMinus","faFolderOpen","faFolderPlus","faFont","faFontAwesome","faFontAwesomeFlag","faFonticons","faFonticonsFi","faFootballBall","faFortAwesome","faForumbee","faForward","faFoursquare","faFreebsd","faFreeCodeCamp","faFrog","faFrown","faFrownOpen","faFulcrum","faFunnelDollar","faFutbol","faGalacticRepublic","faGalacticSenate","faGamepad","faGasPump","faGavel","faGem","faGenderless","faGetPocket","faGg","faGgCircle","faGhost","faGift","faGifts","faGit","faGithub","faGithubSquare","faGitkraken","faGitlab","faGitSquare","faGitter","faGlassCheers","faGlasses","faGlassMartini","faGlassWhiskey","faGlide","faGlideG","faGlobe","faGlobeAfrica","faGlobeAmericas","faGlobeAsia","faGlobeEurope","faGofore","faGolfBall","faGoodreads","faGoodreadsG","faGoogle","faGoogleDrive","faGooglePay","faGooglePlay","faGooglePlus","faGooglePlusG","faGooglePlusSquare","faGoogleWallet","faGopuram","faGraduationCap","faGratipay","faGrav","faGreaterThan","faGreaterThanEqual","faGrimace","faGrin","faGrinBeam","faGrinBeamSweat","faGrinHearts","faGrinSquint","faGrinSquintTears","faGrinStars","faGrinTears","faGrinTongue","faGrinTongueSquint","faGrinTongueWink","faGrinWink","faGripfire","faGripHorizontal","faGripLines","faGripLinesVertical","faGripVertical","faGrunt","faGuilded","faGuitar","faGulp","faHackerNews","faHackerNewsSquare","faHackerrank","faHamburger","faHammer","faHamsa","faHandHolding","faHandHoldingHeart","faHandHoldingMedical","faHandHoldingUsd","faHandHoldingWater","faHandLizard","faHandMiddleFinger","faHandPaper","faHandPeace","faHandPointDown","faHandPointer","faHandPointLeft","faHandPointRight","faHandPointUp","faHandRock","faHands","faHandScissors","faHandshake","faHandshakeAltSlash","faHandshakeSlash","faHandsHelping","faHandSparkles","faHandSpock","faHandsWash","faHanukiah","faHardHat","faHashtag","faHatCowboy","faHatCowboySide","faHatWizard","faHdd","faHeading","faHeadphones","faHeadset","faHeadSideCough","faHeadSideCoughSlash","faHeadSideMask","faHeadSideVirus","faHeart","faHeartbeat","faHeartBroken","faHelicopter","faHighlighter","faHiking","faHippo","faHips","faHireAHelper","faHistory","faHive","faHockeyPuck","faHollyBerry","faHome","faHooli","faHornbill","faHorse","faHorseHead","faHospital","faHospitalSymbol","faHospitalUser","faHotdog","faHotel","faHotjar","faHotTub","faHourglass","faHourglassEnd","faHourglassHalf","faHourglassStart","faHouseDamage","faHouseUser","faHouzz","faHryvnia","faHSquare","faHtml","faHubspot","faIceCream","faIcicles","faIcons","faICursor","faIdBadge","faIdCard","faIdeal","faIgloo","faImage","faImages","faImdb","faInbox","faIndent","faIndustry","faInfinity","faInfo","faInfoCircle","faInnosoft","faInstagram","faInstagramSquare","faInstalod","faIntercom","faInternetExplorer","faInvision","faIoxhost","faItalic","faItchIo","faItunes","faItunesNote","faJava","faJedi","faJediOrder","faJenkins","faJira","faJoget","faJoint","faJoomla","faJournalWhills","faJs","faJsfiddle","faJsSquare","faKaaba","faKaggle","faKey","faKeybase","faKeyboard","faKeycdn","faKhanda","faKickstarter","faKickstarterK","faKiss","faKissBeam","faKissWinkHeart","faKiwiBird","faKorvue","faLandmark","faLanguage","faLaptop","faLaptopCode","faLaptopHouse","faLaptopMedical","faLaravel","faLastfm","faLastfmSquare","faLaugh","faLaughBeam","faLaughSquint","faLaughWink","faLayerGroup","faLeaf","faLeanpub","faLemon","faLess","faLessThan","faLessThanEqual","faLevelDown","faLevelUp","faLifeRing","faLightbulb","faLine","faLink","faLinkedin","faLinkedinIn","faLinode","faLinux","faLiraSign","faList","faListOl","faListUl","faLocationArrow","faLock","faLockOpen","faLongArrowAltDown","faLongArrowAltLeft","faLongArrowAltRight","faLongArrowAltUp","faLowVision","faLuggageCart","faLungs","faLungsVirus","faLyft","faMagento","faMagic","faMagnet","faMailBulk","faMailchimp","faMale","faMandalorian","faMap","faMapMarked","faMapMarker","faMapPin","faMapSigns","faMarkdown","faMarker","faMars","faMarsDouble","faMarsStroke","faMarsStrokeH","faMarsStrokeV","faMask","faMastodon","faMaxcdn","faMdb","faMedal","faMedapps","faMedium","faMediumM","faMedkit","faMedrt","faMeetup","faMegaport","faMeh","faMehBlank","faMehRollingEyes","faMemory","faMendeley","faMenorah","faMercury","faMeteor","faMicroblog","faMicrochip","faMicrophone","faMicrophoneAltSlash","faMicrophoneSlash","faMicroscope","faMicrosoft","faMinus","faMinusCircle","faMinusSquare","faMitten","faMix","faMixcloud","faMixer","faMizuni","faMobile","faModx","faMonero","faMoneyBill","faMoneyBillWave","faMoneyCheck","faMonument","faMoon","faMortarPestle","faMosque","faMotorcycle","faMountain","faMouse","faMousePointer","faMugHot","faMusic","faNapster","faNeos","faNetworkWired","faNeuter","faNewspaper","faNimblr","faNode","faNodeJs","faNotEqual","faNotesMedical","faNpm","faNs","faNutritionix","faObjectGroup","faObjectUngroup","faOctopusDeploy","faOdnoklassniki","faOdnoklassnikiSquare","faOilCan","faOldRepublic","faOm","faOpencart","faOpenid","faOpera","faOptinMonster","faOrcid","faOsi","faOtter","faOutdent","faPage","faPagelines","faPager","faPaintBrush","faPaintRoller","faPalette","faPalfed","faPallet","faPaperclip","faPaperPlane","faParachuteBox","faParagraph","faParking","faPassport","faPastafarianism","faPaste","faPatreon","faPause","faPauseCircle","faPaw","faPaypal","faPeace","faPen","faPencil","faPencilRuler","faPenFancy","faPenNib","faPennyArcade","faPenSquare","faPeopleArrows","faPeopleCarry","faPepperHot","faPerbyte","faPercent","faPercentage","faPeriscope","faPersonBooth","faPhabricator","faPhoenixFramework","faPhoenixSquadron","faPhone","faPhoneSlash","faPhoneSquare","faPhoneVolume","faPhotoVideo","faPhp","faPiedPiper","faPiedPiperHat","faPiedPiperPp","faPiedPiperSquare","faPiggyBank","faPills","faPinterest","faPinterestP","faPinterestSquare","faPizzaSlice","faPlaceOfWorship","faPlane","faPlaneArrival","faPlaneDeparture","faPlaneSlash","faPlay","faPlayCircle","faPlaystation","faPlug","faPlus","faPlusCircle","faPlusSquare","faPodcast","faPoll","faPollH","faPoo","faPoop","faPooStorm","faPortrait","faPoundSign","faPowerOff","faPray","faPrayingHands","faPrescription","faPrescriptionBottle","faPrint","faProcedures","faProductHunt","faProjectDiagram","faPumpMedical","faPumpSoap","faPushed","faPuzzlePiece","faPython","faQq","faQrcode","faQuestion","faQuestionCircle","faQuidditch","faQuinscape","faQuora","faQuoteLeft","faQuoteRight","faQuran","faRadiation","faRainbow","faRandom","faRaspberryPi","faRavelry","faReact","faReacteurope","faReadme","faRebel","faReceipt","faRecordVinyl","faRecycle","faReddit","faRedditAlien","faRedditSquare","faRedhat","faRedo","faRedRiver","faRegistered","faRemoveFormat","faRenren","faReply","faReplyAll","faReplyd","faRepublican","faResearchgate","faResolving","faRestroom","faRetweet","faRev","faRibbon","faRing","faRoad","faRobot","faRocket","faRocketchat","faRockrms","faRoute","faRProject","faRss","faRssSquare","faRubleSign","faRuler","faRulerCombined","faRulerHorizontal","faRulerVertical","faRunning","faRupeeSign","faRust","faSadCry","faSadTear","faSafari","faSalesforce","faSass","faSatellite","faSatelliteDish","faSave","faSchlix","faSchool","faScrewdriver","faScribd","faScroll","faSdCard","faSearch","faSearchDollar","faSearchengin","faSearchLocation","faSearchMinus","faSearchPlus","faSeedling","faSellcast","faSellsy","faServer","faServicestack","faShapes","faShare","faShareAltSquare","faShareSquare","faShekelSign","faShield","faShieldVirus","faShip","faShippingFast","faShirtsinbulk","faShoePrints","faShopify","faShoppingBag","faShoppingBasket","faShoppingCart","faShopware","faShower","faShuttleVan","faSign","faSignal","faSignature","faSignIn","faSignLanguage","faSignOut","faSimCard","faSimplybuilt","faSink","faSistrix","faSitemap","faSith","faSkating","faSketch","faSkiing","faSkiingNordic","faSkull","faSkullCrossbones","faSkyatlas","faSkype","faSlack","faSlackHash","faSlash","faSleigh","faSlidersH","faSlideshare","faSmile","faSmileBeam","faSmileWink","faSmog","faSmoking","faSmokingBan","faSms","faSnapchat","faSnapchatGhost","faSnapchatSquare","faSnowboarding","faSnowflake","faSnowman","faSnowplow","faSoap","faSocks","faSolarPanel","faSort","faSortAlphaDown","faSortAlphaUp","faSortAmountDown","faSortAmountUp","faSortDown","faSortNumericDown","faSortNumericUp","faSortUp","faSoundcloud","faSourcetree","faSpa","faSpaceShuttle","faSpeakap","faSpeakerDeck","faSpellCheck","faSpider","faSpinner","faSplotch","faSpotify","faSprayCan","faSquare","faSquareFull","faSquareRoot","faSquarespace","faStackExchange","faStackOverflow","faStackpath","faStamp","faStar","faStarAndCrescent","faStarHalf","faStarOfDavid","faStarOfLife","faStaylinked","faSteam","faSteamSquare","faSteamSymbol","faStepBackward","faStepForward","faStethoscope","faStickerMule","faStickyNote","faStop","faStopCircle","faStopwatch","faStore","faStoreAltSlash","faStoreSlash","faStrava","faStream","faStreetView","faStrikethrough","faStripe","faStripeS","faStroopwafel","faStudiovinari","faStumbleupon","faStumbleuponCircle","faSubscript","faSubway","faSuitcase","faSuitcaseRolling","faSun","faSuperpowers","faSuperscript","faSupple","faSurprise","faSuse","faSwatchbook","faSwift","faSwimmer","faSwimmingPool","faSymfony","faSynagogue","faSync","faSyringe","faTable","faTablet","faTableTennis","faTablets","faTachometer","faTag","faTags","faTape","faTasks","faTaxi","faTeamspeak","faTeeth","faTeethOpen","faTelegram","faTelegramPlane","faTemperatureHigh","faTemperatureLow","faTencentWeibo","faTenge","faTerminal","faTextHeight","faTextWidth","faTh","faTheaterMasks","faThemeco","faThemeisle","faTheRedYeti","faThermometer","faThermometerEmpty","faThermometerFull","faThermometerHalf","faThermometerQuarter","faThermometerThreeQuarters","faThinkPeaks","faThLarge","faThList","faThumbsDown","faThumbsUp","faThumbtack","faTicket","faTiktok","faTimes","faTimesCircle","faTint","faTintSlash","faTired","faToggleOff","faToggleOn","faToilet","faToiletPaper","faToiletPaperSlash","faToolbox","faTools","faTooth","faTorah","faToriiGate","faTractor","faTradeFederation","faTrademark","faTrafficLight","faTrailer","faTrain","faTram","faTransgender","faTrash","faTrashRestore","faTree","faTrello","faTripadvisor","faTrophy","faTruck","faTruckLoading","faTruckMonster","faTruckMoving","faTruckPickup","faTshirt","faTty","faTumblr","faTumblrSquare","faTv","faTwitch","faTwitter","faTwitterSquare","faTypo","faUber","faUbuntu","faUikit","faUmbraco","faUmbrella","faUmbrellaBeach","faUncharted","faUnderline","faUndo","faUniregistry","faUnity","faUniversalAccess","faUniversity","faUnlink","faUnlock","faUnsplash","faUntappd","faUpload","faUps","faUsb","faUser","faUserAltSlash","faUserAstronaut","faUserCheck","faUserCircle","faUserClock","faUserCog","faUserEdit","faUserFriends","faUserGraduate","faUserInjured","faUserLock","faUserMd","faUserMinus","faUserNinja","faUserNurse","faUserPlus","faUsers","faUsersCog","faUserSecret","faUserShield","faUserSlash","faUsersSlash","faUserTag","faUserTie","faUserTimes","faUsps","faUssunnah","faUtensils","faUtensilSpoon","faVaadin","faVectorSquare","faVenus","faVenusDouble","faVenusMars","faVest","faVestPatches","faViacoin","faViadeo","faViadeoSquare","faVial","faVials","faViber","faVideo","faVideoSlash","faVihara","faVimeo","faVimeoSquare","faVimeoV","faVine","faVirus","faViruses","faVirusSlash","faVk","faVnv","faVoicemail","faVolleyballBall","faVolumeDown","faVolumeMute","faVolumeOff","faVolumeUp","faVoteYea","faVrCardboard","faVuejs","faWalking","faWallet","faWarehouse","faWatchmanMonitoring","faWater","faWaveSquare","faWaze","faWeebly","faWeibo","faWeight","faWeightHanging","faWeixin","faWhatsapp","faWhatsappSquare","faWheelchair","faWhmcs","faWifi","faWikipediaW","faWind","faWindowClose","faWindowMaximize","faWindowMinimize","faWindowRestore","faWindows","faWineBottle","faWineGlass","faWix","faWizardsOfTheCoast","faWodu","faWolfPackBattalion","faWonSign","faWordpress","faWordpressSimple","faWpbeginner","faWpexplorer","faWpforms","faWpressr","faWrench","faXbox","faXing","faXingSquare","faXRay","faYahoo","faYammer","faYandex","faYandexInternational","faYarn","faYCombinator","faYelp","faYenSign","faYinYang","faYoast","faYoutube","faYoutubeSquare","faZhihu","faDuotoneSetSecondary"]}
-,
-"fontaxes.sty":{"envs":{},"deps":{},"cmds":["figureversion","liningfigures","lnfigures","noscshape","prfigures","proportionalfigures","proportionalmath","tabularfigures","tabularmath","tbfigures","textfigures","txfigures","fontbasefamily","fontfigurealignment","fontfigurestyle","fontprimaryshape","fontsecondaryshape","mathfigurealignment","mathweight"]}
-,
-"fontbook.sty":{"envs":{},"deps":["xetex.sty","fontspec.sty","xunicode.sty","kvoptions.sty","etoolbox.sty"],"cmds":["setsampletext","printfont","sampletext","samplefeature"]}
-,
-"fontenc.sty":{"envs":{},"deps":{},"cmds":["DH","dj","DJ","guillemotleft","guillemotright","guilsinglleft","guilsinglright","k","NG","ng","quotedblbase","quotesinglbase","textct","textet","textquotedbl","textrhalf","textslong","textslongt","textst","TH","th","C","cyrdash","D","EZH","ezh","f","R","T","U","CYRA","cyra","CYRB","cyrb","CYRC","cyrc","CYRCH","cyrch","CYRD","cyrd","CYRDJE","cyrdje","CYRDZE","cyrdze","CYRDZHE","cyrdzhe","CYRE","cyre","CYRF","cyrf","CYRG","cyrg","CYRGJE","cyrgje","CYRH","cyrh","CYRHRDSN","cyrhrdsn","CYRI","cyri","CYRJE","cyrje","CYRK","cyrk","CYRKJE","cyrkje","CYRL","cyrl","CYRLJE","cyrlje","CYRM","cyrm","CYRN","cyrn","CYRNJE","cyrnje","CYRO","cyro","CYRP","cyrp","CYRR","cyrr","CYRS","cyrs","CYRSFTSN","cyrsftsn","CYRSH","cyrsh","CYRSJE","cyrsje","CYRT","cyrt","CYRTSHE","cyrtshe","CYRU","cyru","CYRV","cyrv","CYRYA","cyrya","CYRYAT","cyryat","CYRYU","cyryu","CYRZ","cyrz","CYRZH","cyrzh","CYRZJE","cyrzje","flqq","frqq","clqq","crqq","textlogicalnot","textquotedblbase","textquotesinglbase","alef","alefhamza","aleflowerhamza","alefmadda","alefmaqsura","ayn","baa","dad","dal","damma","Decimalchar","dhal","fa","fatha","ghayn","ha","Haa","hamza","jarr","jeem","kaf","kasra","keshchar","kha","lam","llahchar","meem","nasb","nun","qaf","ra","raff","sad","seen","shadda","shaddadamma","shaddafatha","shaddajarr","shaddakasra","shaddanasb","shaddaraff","sheen","sukun","Ta","taa","tatweel","thaa","waw","wawhamza","ya","yahamza","za","zay","CYREREV","cyrerev","CYRERY","cyrery","CYRGUP","cyrgup","CYRIE","cyrie","CYRII","cyrii","CYRISHRT","cyrishrt","CYRSHCH","cyrshch","CYRUSHRT","cyrushrt","CYRYI","cyryi","CYRYO","cyryo","cyrillicencoding","CYRQ","cyrq","CYRW","cyrw","Farsihamza","Farsihamzabelow","farsikaf","Farsimadda","farsiya","gaf","jeh","Notdef","peh","rialchar","tcheh","ZWNJ","accbrevebelow","accdasia","accdasiaoxia","accdasiaperispomeni","accdasiavaria","accdialytika","accdialytikaperispomeni","accdialytikatonos","accdialytikavaria","accinvertedbrevebelow","acckoronis","accoxia","accperispomeni","accpsili","accpsilioxia","accpsiliperispomeni","accpsilivaria","acctonos","accvaria","ensuregreek","greekscript","guillemetleft","guillemetright","prosgegrammeni","textAlpha","textalpha","textanoteleia","textaristerikeraia","textautosigma","textBeta","textbeta","textChi","textchi","textDelta","textdelta","textdexiakeraia","textdigamma","textDigamma","textdigammagreek","textDigammagreek","textEpsilon","textepsilon","texterotimatiko","textEta","texteta","textfinalsigma","textGamma","textgamma","textIota","textiota","textKappa","textkappa","textKoppa","textkoppa","textkoppagreek","textKoppagreek","textLambda","textlambda","textmicro","textMu","textmugreek","textNu","textnu","textnumeralsigngreek","textnumeralsignlowergreek","textOmega","textomega","textOmicron","textomicron","textpentedeka","textpentehekaton","textpentemuria","textpenteqilioi","textpercent","textPhi","textphi","textPi","textpi","textPsi","textpsi","textqoppa","textQoppa","textRho","textrho","textSampi","textsampi","textSampigreek","textsampigreek","textschwa","textSigma","textsigma","textstigma","textStigma","textstigmagreek","textStigmagreek","textsubarch","textTau","texttau","textTheta","texttheta","textUpsilon","textupsilon","textvarepsilon","textvarphi","textvarsigma","textvarstigma","textXi","textxi","textZeta","textzeta","ypogegrammeni","ayin","bet","dalet","finalkaf","finalmem","finalnun","finalpe","finaltsadi","gimel","he","het","lamed","mem","pe","qof","resh","samekh","shin","tav","tet","tsadi","vav","yod","zayin","textangkhankhu","textfongmun","textkhomut","textThoThanPali","textyamakkan","textYoYingPali","thaiAngkhankhu","thaiBoBaimai","thaiChoChan","thaiChoChang","thaiChoChing","thaiChoChoe","thaiDoChada","thaiDoDek","thaieight","thaifive","thaiFoFa","thaiFoFan","thaiFongman","thaifour","thaiHoHip","thaiHoNokhuk","thaiKhoKhai","thaiKhoKhon","thaiKhoKhuat","thaiKhoKhwai","thaiKhomut","thaiKhoRakhang","thaiKoKai","thaiLakkhangyao","thaiLoChula","thaiLoLing","thaiLu","thaiMaiChattawa","thaiMaiEk","thaiMaiHanakat","thaiMaitaikhu","thaiMaiTho","thaiMaiTri","thaiMaiyamok","thaiMoMa","thaiNgoNgu","thaiNikhahit","thainine","thaiNoNen","thaiNoNu","thaiOAng","thaione","thaiPaiyannoi","thaiPhinthu","thaiPhoPhan","thaiPhoPhung","thaiPhoSamphao","thaiPoPla","thaiRoRua","thaiRu","thaiSaraA","thaiSaraAa","thaiSaraAe","thaiSaraAiMaimalai","thaiSaraAiMaimuan","thaiSaraAm","thaiSaraE","thaiSaraI","thaiSaraIi","thaiSaraO","thaiSaraU","thaiSaraUe","thaiSaraUee","thaiSaraUu","thaiseven","thaisix","thaiSoRusi","thaiSoSala","thaiSoSo","thaiSoSua","thaiThanthakhat","thaiThoNangmontho","thaiThoPhuthao","thaiThoThahan","thaiThoThan","thaiThoThong","thaiThoThung","thaithree","thaiToPatak","thaiToTao","thaitwo","thaiWoWaen","thaiYamakkan","thaiYoYak","thaiYoYing","thaizero","dh","textdivide","textmultiply","textplusminus","textspace","CYRFITA","cyrfita","CYRIZH","cyrizh","armabbrev","armabr","armaccent","armapostrophe","Armat","armat","Armayb","armayb","Armben","armben","armbl","Armcha","armcha","armcomma","Armda","armda","armdot","armdram","Armdza","armdza","Arme","arme","armellipsis","armemdash","armendash","armeternity","armew","armexclam","Armfe","armfe","armfullstop","Armghat","armghat","Armgim","armgim","Armhi","armhi","Armho","armho","Armini","armini","Armje","armje","Armke","armke","Armken","armken","Armkhe","armkhe","Armlyun","armlyun","Armmen","armmen","Armnu","armnu","armnum","Armo","armo","armparenleft","armparenright","Armpe","armpe","Armpyur","armpyur","armquestion","armquotleft","armquotright","Armra","armra","Armre","armre","Armse","armse","armsection","armsep","Armsha","armsha","Armtche","armtche","Armto","armto","Armtsa","armtsa","Armtso","armtso","Armtyun","armtyun","armuh","Armvev","armvev","Armvo","armvo","Armvovyun","armvovyun","Armvyun","armvyun","Armyech","armyech","armyentamna","Armza","armza","Armzhe","armzhe","textand","textanjgic","textbreaklig","textexclam","texthash","textquestion","textanglearc","textapprox","textdiameter","textell","textEuro","textinfty","textxgeq","textxleq","Hwithstroke","hwithstroke","textogonekcentered","CYRAE","cyrae","CYRCHRDSC","cyrchrdsc","CYRCHVCRS","cyrchvcrs","CYRGHCRS","cyrghcrs","CYRHDSC","cyrhdsc","CYRKBEAK","cyrkbeak","CYRKDSC","cyrkdsc","CYRKVCRS","cyrkvcrs","cyrlangle","CYRNDSC","cyrndsc","CYRNG","cyrng","CYROTLD","cyrotld","CYRpalochka","cyrrangle","CYRSCHWA","cyrschwa","CYRSDSC","cyrsdsc","CYRSHHA","cyrshha","CYRY","cyry","CYRYHCRS","cyryhcrs","CYRZDSC","cyrzdsc","CYRZHDSC","cyrzhdsc","CYRABHDZE","cyrabhdze","CYRCHLDSC","cyrchldsc","CYRDELTA","cyrdelta","CYREPS","cyreps","CYRGDSC","cyrgdsc","CYRGDSCHCRS","cyrgdschcrs","CYRGHK","cyrghk","CYRHHCRS","cyrhhcrs","CYRHHK","cyrhhk","CYRKHK","cyrkhk","CYRLDSC","cyrldsc","CYRLHK","cyrlhk","CYRNHK","cyrnhk","CYRSACRS","cyrsacrs","CYRABHCH","cyrabhch","CYRABHCHDSC","cyrabhchdsc","CYRABHHA","cyrabhha","CYRISHRTDSC","cyrishrtdsc","CYRKHCRS","cyrkhcrs","CYRMDSC","cyrmdsc","CYRMHK","cyrmhk","CYRNLHK","cyrnlhk","CYRPHK","cyrphk","CYRRDSC","cyrrdsc","CYRRHK","cyrrhk","CYRRTICK","cyrrtick","CYRSEMISFTSN","cyrsemisftsn","CYRTDSC","cyrtdsc","CYRTETSE","cyrtetse","ipabar","ipaclap","textacutemacron","textacutewedge","textadvancing","textbabygamma","textbarb","textbarc","textbard","textbardotlessj","textbarg","textbarglotstop","textbari","textbarl","textbaro","textbarrevglotstop","textbaru","textbeltl","textbottomtiebar","textbrevemacron","textbullseye","textceltpal","textcircumacute","textcircumdot","textcloseepsilon","textcloseomega","textcloserevepsilon","textcommatailz","textcorner","textcrb","textcrd","textcrg","textcrh","textcrinvglotstop","textcrlambda","textcrtwo","textctc","textctd","textctdctzlig","textctesh","textctj","textctn","textctt","textcttctclig","textctyogh","textctz","textdctzlig","textdotacute","textdotbreve","textdoublebaresh","textdoublebarpipe","textdoublebarslash","textdoublegrave","textdoublepipe","textdoublevbaraccent","textdoublevertline","textdownstep","textdyoghlig","textdzlig","textesh","textfallrise","textfishhookr","textg","textglobfall","textglobrise","textglotstop","textgravecircum","textgravedot","textgravemacron","textgravemid","texthalflength","texthardsign","texthighrise","texthooktop","texthtb","texthtbardotlessj","texthtc","texthtd","texthtg","texthth","texththeng","texthtk","texthtp","texthtq","texthtrtaild","texthtscg","texthtt","texthvlig","textinvglotstop","textinvscr","textinvsubbridge","textlengthmark","textlhookt","textlhtlongi","textlhtlongy","textlonglegr","textlowering","textlowrise","textlptr","textltailm","textltailn","textltilde","textlyoghlig","textmidacute","textObardotlessj","textOlyoghlig","textopencorner","textopeno","textovercross","textoverw","textpalhook","textpipe","textpolhook","textprimstress","textraiseglotstop","textraisevibyi","textraising","textramshorns","textretracting","textrevapostrophe","textreve","textrevepsilon","textrevglotstop","textrevyogh","textrhookrevepsilon","textrhookschwa","textrhoticity","textringmacron","textrisefall","textroundcap","textrptr","textrtaild","textrtaill","textrtailn","textrtailr","textrtails","textrtailt","textrtailz","textrthook","textsca","textscb","textsce","textscg","textsch","textsci","textscj","textscl","textscn","textscoelig","textscomega","textscr","textscripta","textscriptg","textscriptv","textscu","textscy","textseagull","textsecstress","textsoftsign","textstretchc","textsubacute","textsubbar","textsubbridge","textsubcircum","textsubdot","textsubgrave","textsublhalfring","textsubplus","textsubrhalfring","textsubring","textsubsquare","textsubtilde","textsubumlaut","textsubw","textsubwedge","textsuperimposetilde","textsyllabic","texttctclig","textteshlig","textthorn","texttildedot","texttoneletterstem","texttoptiebar","texttslig","textturna","textturncelig","textturnh","textturnk","textturnlonglegr","textturnm","textturnmrleg","textturnr","textturnrrtail","textturnscripta","textturnt","textturnv","textturnw","textturny","textupstep","textvbaraccent","textvertline","textvibyi","textvibyy","textwynn","textyogh","tipaencoding","upperaccent","Upperaccent","loweraccent","Loweraccent","tipaupperaccent","tipaUpperaccent","tipaloweraccent","tipaLoweraccent","B","copyleft","G","I","m","M","tsh","TSH","Abreve","abreve","ABREVE","Acircumflex","acircumflex","ACIRCUMFLEX","Ecircumflex","ecircumflex","ECIRCUMFLEX","h","Ocircumflex","ocircumflex","OCIRCUMFLEX","OHORN","ohorn","Ohorn","UHORN","uhorn","Uhorn","textaolig","textbenttailyogh","textbktailgamma","textctinvglotstop","textctjvar","textctstretchc","textctstretchcvar","textctturnt","textdblig","textdoublebarpipevar","textdoublepipevar","textdownfullarrow","textfemale","textfrbarn","textfrhookd","textfrhookdvar","textfrhookt","textfrtailgamma","textglotstopvari","textglotstopvarii","textglotstopvariii","textgrgamma","textheng","texthmlig","texthtbardotlessjvar","textinvomega","textinvsca","textinvscripta","textlfishhookrlig","textlhookfour","textlhookp","textlhti","textlooptoprevesh","textnrleg","textObullseye","textpalhooklong","textpalhookvar","textpipevar","textqplig","textrectangle","textretractingvar","textrevscl","textrevscr","textrhooka","textrhooke","textrhookepsilon","textrhookopeno","textrtailhth","textrthooklong","textscaolig","textscdelta","textscf","textsck","textscm","textscp","textscq","textspleftarrow","textstretchcvar","textsubdoublearrow","textsubrightarrow","textthornvari","textthornvarii","textthornvariii","textthornvariv","textturnglotstop","textturnsck","textturnscu","textturnthree","textturntwo","textuncrfemale","textupfullarrow","DeclareUnicodeAccent","DeclareUnicodeComposite","UnicodeEncodingName","UnicodeFontFile","UnicodeFontName","UnicodeFontTeXLigatures","CYRBYUS","cyrbyus"]}
-,
-"fontmfizz.sty":{"envs":{},"deps":["fontspec.sty"],"cmds":["mfThreedprint","mfAlpinelinux","mfAngular","mfAngularAlt","mfAntenna","mfApache","mfArchlinux","mfAws","mfAzure","mfBackbone","mfBlackberry","mfBomb","mfBootstrap","mfC","mfCassandra","mfCentos","mfClojure","mfCodeigniter","mfCodepen","mfCoffeeBean","mfCplusplus","mfCsharp","mfCss","mfCssthree","mfCssthreeAlt","mfDthree","mfDatabase","mfDatabaseAlt","mfDatabaseAlttwo","mfDebian","mfDocker","mfDreamhost","mfElixir","mfElm","mfErlang","mfExherbo","mfFedora","mfFireAlt","mfFreebsd","mfFreecodecamp","mfGentoo","mfGhost","mfGit","mfGnome","mfGo","mfGoAlt","mfGoogle","mfGoogleAlt","mfGoogleCode","mfGoogleDevelopers","mfGradle","mfGrails","mfGrailsAlt","mfGrunt","mfGulp","mfGulpAlt","mfHadoop","mfHaskell","mfHeroku","mfHtml","mfHtmlfive","mfHtmlfiveAlt","mfIphone","mfJava","mfJavaBold","mfJavaDuke","mfJavascript","mfJavascriptAlt","mfJetty","mfJquery","mfKde","mfLaravel","mfLineGraph","mfLinuxMint","mfLooking","mfMagento","mfMariadb","mfMaven","mfMicroscope","mfMobileDevice","mfMobilePhoneAlt","mfMobilePhoneBroadcast","mfMongodb","mfMssql","mfMysql","mfMysqlAlt","mfNetbsd","mfNginx","mfNginxAlt","mfNginxAlttwo","mfNodejs","mfNpm","mfObjc","mfOpenshift","mfOracle","mfOracleAlt","mfOsx","mfPerl","mfPhoneAlt","mfPhoneGap","mfPhoneRetro","mfPhp","mfPhpAlt","mfPlayframework","mfPlayframeworkAlt","mfPlone","mfPostgres","mfPostgresAlt","mfPython","mfRaspberrypi","mfReactjs","mfRedhat","mfRedis","mfRuby","mfRubyOnRails","mfRubyOnRailsAlt","mfRust","mfSass","mfSatellite","mfScala","mfScalaAlt","mfScript","mfScriptAlt","mfShell","mfSitefinity","mfSolaris","mfSplatter","mfSpring","mfSuse","mfSvg","mfSymfony","mfTomcat","mfUbuntu","mfUnity","mfWireless","mfWordpress","mfXeleven","MF","mficon"]}
-,
-"fonts-arundina.sty":{"envs":{},"deps":["xkeyval.sty"],"cmds":["thaitext","latintext","thairmdefault","thaisfdefault","thaittdefault","englishrmdefault","englishsfdefault","englishttdefault","thaifamilydefault","englishfamilydefault"]}
-,
-"fonts-tlwg.sty":{"envs":{},"deps":["xkeyval.sty"],"cmds":["thaitext","latintext","thairmdefault","thaisfdefault","thaittdefault","englishrmdefault","englishsfdefault","englishttdefault","thaifamilydefault","englishfamilydefault"]}
-,
-"fontsetup.sty":{"envs":{},"deps":["fontspec.sty","unicode-math.sty","ifthen.sty","iftex.sty","newcomputermodern.sty","gfsneohellenicot.sty","libertinus-otf.sty","xcharter-otf.sty"],"cmds":["GFSDidotoSubstFont","GFSDidotoSubst","phifix","defaultfont","latinfont","leftgrquotes","rightgrquotes","fontsetupdefault","fontsetupgfsartemisia","fontsetupgfsdidot","fontsetupgfsdidotclassic","fontsetupgfsneohellenic","fontsetupcambria","fontsetuplucida","fontsetupkerkis","fontsetupfira","fontsetuptimes","fontsetuppalatino","fontsetupstixtwo","fontsetupneokadmus","fontsetupmsgaramond","fontsetupebgaramond","fontsetupminion","fontsetupneoeuler","fontsetuplibertinus","fontsetupolddefault","fontsetupconcrete","fontsetuptalos","fontsetupoldstandard","fontsetupxcharter","fontsetupfont"]}
-,
-"fontsize.sty":{"envs":{},"deps":["xkeyval.sty","xfp.sty"],"cmds":["changefontsize","generateclofile","printsamples","sampletext","tinyr","tinyrr","tinyrrr","scriptsizer","scriptsizerr","scriptsizerrr","footnotesizer","footnotesizerr","footnotesizerrr","smallr","smallrr","smallrrr","normalsizer","normalsizerr","normalsizerrr","larger","largerr","largerrr","Larger","Largerr","Largerrr","LARGEr","LARGErr","LARGErrr","huger","hugerr","hugerrr","Huger","Hugerr","Hugerrr","HUGE","HUGEr","HUGErr","HUGErrr"]}
-,
-"fontsmpl.sty":{"envs":{},"deps":{},"cmds":["fontsample","fontsampletext","fontsampleglyphs","fontsampleglyph","fontsampleaccents","fontsampleaccent","typewriterfont","TextSymbolUnavailable"]}
-,
-"fontspec.sty":{"envs":["strongenv"],"deps":["xunicode.sty"],"cmds":["oldstylenums","liningnums","strong","strongfontdeclare","strongreset","setmainfont","setromanfont","setsansfont","setmonofont","newfontfamily","setfontfamily","renewfontfamily","providefontfamily","fontspec","IfFontExistsTF","newfontface","setfontface","renewfontface","providefontface","setmathrm","setmathsf","setmathtt","setboldmathrm","defaultfontfeatures","IfFontFeatureActiveTF","addfontfeatures","addfontfeature","EncodingCommand","EncodingAccent","EncodingSymbol","EncodingComposite","EncodingCompositeCommand","UndeclareSymbol","UndeclareAccent","UndeclareCommand","UndeclareComposite","newAATfeature","newopentypefeature","newfontfeature","newfontscript","newfontlanguage","aliasfontfeature","aliasfontfeatureoption","cyrillicencoding","latinencoding","UTFencname","emfontdeclare","FontspecSetCheckBoolFalse","FontspecSetCheckBoolTrue","scitdefault","scsldefault","scswdefault","UnicodeEncodingName","UnicodeFontTeXLigatures","UnicodeFontFile","UnicodeFontName","DeclareUnicodeAccent","DeclareUnicodeCommand","DeclareUnicodeComposite","DeclareUnicodeSymbol","textquotedbl","guillemetleft","guillemotleft","guillemetright","guillemotright","DH","TH","dh","th","DJ","dj","NG","ng","quotesinglbase","quotedblbase","guilsinglleft","guilsinglright","Hwithstroke","hwithstroke","k"]}
-,
-"fonttable.sty":{"envs":{},"deps":{},"cmds":["fnthours","fonttable","xfonttable","pikfont","fontrange","decimals","nodecimals","hexoct","nohexoct","ftablewidth","fntcolwidth","fonttext","simpletext","fulltext","regulartext","fonttexts","regulartexts","germanparatext","latinparatext","aztext","AZtext","digitstext","punctext","glyphmixture","glyphalternation","glyphseries","glyphalphabet","GLYPHALPHABET","glyphlowers","glyphuppers","glyphdigits","glyphpunct","sevenrm","ifhexoct","ftable","knutext","moreknutext","capknutext","knunames","guillemotleft","guillemotright","flqq","frqq"]}
-,
-"fontwrap.sty":{"envs":["verbatimfontwrap"],"deps":["xetex.sty","fontspec.sty","xunicode.sty","xltxtra.sty","perltex.sty"],"cmds":["setfontwrapdefaultfont","setunicodegroupfont","setunicodeblockfont","fontwrap","setfontwrapallowedmacros","setfontwrapallowedenvironments","autfontunicodedata","fontwrapallowedenvironments","fontwrapallowedmacros","fontwrapdefaultCJKfont","fontwrapdefaultfont","perlfontwrap","setunicodegroupArabicFont","setunicodegroupCJKFont","setunicodegroupChineseFont","setunicodegroupCyrillicFont","setunicodegroupDiacriticsFont","setunicodegroupGreekFont","setunicodegroupJapaneseFont","setunicodegroupKoreanFont","setunicodegroupLatinFont","setunicodegroupMathematicsFont","setunicodegroupOtherFont","setunicodegroupPhoneticsFont","setunicodegroupPunctuationFont","setunicodegroupSymbolsFont","setunicodegroupYiFont","unicodeblockAegeanNumbersFont","unicodeblockAegeanNumbers","unicodeblockAlphabeticPresentationFormsFont","unicodeblockAlphabeticPresentationForms","unicodeblockAncientGreekMusicalNotationFont","unicodeblockAncientGreekMusicalNotation","unicodeblockAncientGreekNumbersFont","unicodeblockAncientGreekNumbers","unicodeblockArabicFont","unicodeblockArabicPresentationFormsAFont","unicodeblockArabicPresentationFormsA","unicodeblockArabicPresentationFormsBFont","unicodeblockArabicPresentationFormsB","unicodeblockArabicSupplementFont","unicodeblockArabicSupplement","unicodeblockArabic","unicodeblockArmenianFont","unicodeblockArmenian","unicodeblockArrowsFont","unicodeblockArrows","unicodeblockBalineseFont","unicodeblockBalinese","unicodeblockBasicLatinFont","unicodeblockBasicLatin","unicodeblockBengaliFont","unicodeblockBengali","unicodeblockBlockElementsFont","unicodeblockBlockElements","unicodeblockBopomofoExtendedFont","unicodeblockBopomofoExtended","unicodeblockBopomofoFont","unicodeblockBopomofo","unicodeblockBoxDrawingFont","unicodeblockBoxDrawing","unicodeblockBraillePatternsFont","unicodeblockBraillePatterns","unicodeblockBugineseFont","unicodeblockBuginese","unicodeblockBuhidFont","unicodeblockBuhid","unicodeblockByzantineMusicalSymbolsFont","unicodeblockByzantineMusicalSymbols","unicodeblockCJKCompatibilityFont","unicodeblockCJKCompatibilityFormsFont","unicodeblockCJKCompatibilityForms","unicodeblockCJKCompatibilityIdeographsFont","unicodeblockCJKCompatibilityIdeographsSupplementFont","unicodeblockCJKCompatibilityIdeographsSupplement","unicodeblockCJKCompatibilityIdeographs","unicodeblockCJKCompatibility","unicodeblockCJKRadicalsSupplementFont","unicodeblockCJKRadicalsSupplement","unicodeblockCJKStrokesFont","unicodeblockCJKStrokes","unicodeblockCJKSymbolsandPunctuationFont","unicodeblockCJKSymbolsandPunctuation","unicodeblockCJKUnifiedIdeographsExtensionAFont","unicodeblockCJKUnifiedIdeographsExtensionA","unicodeblockCJKUnifiedIdeographsExtensionBFont","unicodeblockCJKUnifiedIdeographsExtensionB","unicodeblockCJKUnifiedIdeographsFont","unicodeblockCJKUnifiedIdeographs","unicodeblockCherokeeFont","unicodeblockCherokee","unicodeblockCombiningDiacriticalMarksFont","unicodeblockCombiningDiacriticalMarksSupplementFont","unicodeblockCombiningDiacriticalMarksSupplement","unicodeblockCombiningDiacriticalMarksforSymbolsFont","unicodeblockCombiningDiacriticalMarksforSymbols","unicodeblockCombiningDiacriticalMarks","unicodeblockCombiningHalfMarksFont","unicodeblockCombiningHalfMarks","unicodeblockControlPicturesFont","unicodeblockControlPictures","unicodeblockCopticFont","unicodeblockCoptic","unicodeblockCountingRodNumeralsFont","unicodeblockCountingRodNumerals","unicodeblockCuneiformFont","unicodeblockCuneiformNumbersandPunctuationFont","unicodeblockCuneiformNumbersandPunctuation","unicodeblockCuneiform","unicodeblockCurrencySymbolsFont","unicodeblockCurrencySymbols","unicodeblockCypriotSyllabaryFont","unicodeblockCypriotSyllabary","unicodeblockCyrillicExtendedAFont","unicodeblockCyrillicExtendedA","unicodeblockCyrillicExtendedBFont","unicodeblockCyrillicExtendedB","unicodeblockCyrillicFont","unicodeblockCyrillicSupplementFont","unicodeblockCyrillicSupplement","unicodeblockCyrillic","unicodeblockDeseretFont","unicodeblockDeseret","unicodeblockDevanagariFont","unicodeblockDevanagari","unicodeblockDingbatsFont","unicodeblockDingbats","unicodeblockDominoTilesFont","unicodeblockDominoTiles","unicodeblockEnclosedAlphanumericsFont","unicodeblockEnclosedAlphanumerics","unicodeblockEnclosedCJKLettersandMonthsFont","unicodeblockEnclosedCJKLettersandMonths","unicodeblockEthiopicExtendedFont","unicodeblockEthiopicExtended","unicodeblockEthiopicFont","unicodeblockEthiopicSupplementFont","unicodeblockEthiopicSupplement","unicodeblockEthiopic","unicodeblockGeneralPunctuationFont","unicodeblockGeneralPunctuation","unicodeblockGeometricShapesFont","unicodeblockGeometricShapes","unicodeblockGeorgianFont","unicodeblockGeorgianSupplementFont","unicodeblockGeorgianSupplement","unicodeblockGeorgian","unicodeblockGlagoliticFont","unicodeblockGlagolitic","unicodeblockGothicFont","unicodeblockGothic","unicodeblockGreekExtendedFont","unicodeblockGreekExtended","unicodeblockGreekandCopticFont","unicodeblockGreekandCoptic","unicodeblockGujaratiFont","unicodeblockGujarati","unicodeblockGurmukhiFont","unicodeblockGurmukhi","unicodeblockHalfwidthandFullwidthFormsFont","unicodeblockHalfwidthandFullwidthForms","unicodeblockHangulCompatibilityJamoFont","unicodeblockHangulCompatibilityJamo","unicodeblockHangulJamoFont","unicodeblockHangulJamo","unicodeblockHangulSyllablesFont","unicodeblockHangulSyllables","unicodeblockHanunooFont","unicodeblockHanunoo","unicodeblockHebrewFont","unicodeblockHebrew","unicodeblockHighPrivateUseSurrogatesFont","unicodeblockHighPrivateUseSurrogates","unicodeblockHighSurrogatesFont","unicodeblockHighSurrogates","unicodeblockHiraganaFont","unicodeblockHiragana","unicodeblockIPAExtensionsFont","unicodeblockIPAExtensions","unicodeblockIdeographicDescriptionCharactersFont","unicodeblockIdeographicDescriptionCharacters","unicodeblockKanbunFont","unicodeblockKanbun","unicodeblockKangxiRadicalsFont","unicodeblockKangxiRadicals","unicodeblockKannadaFont","unicodeblockKannada","unicodeblockKatakanaFont","unicodeblockKatakanaPhoneticExtensionsFont","unicodeblockKatakanaPhoneticExtensions","unicodeblockKatakana","unicodeblockKharoshthiFont","unicodeblockKharoshthi","unicodeblockKhmerFont","unicodeblockKhmerSymbolsFont","unicodeblockKhmerSymbols","unicodeblockKhmer","unicodeblockLaoFont","unicodeblockLao","unicodeblockLatinExtendedAFont","unicodeblockLatinExtendedAdditionalFont","unicodeblockLatinExtendedAdditional","unicodeblockLatinExtendedA","unicodeblockLatinExtendedBFont","unicodeblockLatinExtendedB","unicodeblockLatinExtendedCFont","unicodeblockLatinExtendedC","unicodeblockLatinExtendedDFont","unicodeblockLatinExtendedD","unicodeblockLatinSupplementFont","unicodeblockLatinSupplement","unicodeblockLetterlikeSymbolsFont","unicodeblockLetterlikeSymbols","unicodeblockLimbuFont","unicodeblockLimbu","unicodeblockLinearBIdeogramsFont","unicodeblockLinearBIdeograms","unicodeblockLinearBSyllabaryFont","unicodeblockLinearBSyllabary","unicodeblockLowSurrogatesFont","unicodeblockLowSurrogates","unicodeblockMahjongTilesFont","unicodeblockMahjongTiles","unicodeblockMalayalamFont","unicodeblockMalayalam","unicodeblockMathematicalAlphanumericSymbolsFont","unicodeblockMathematicalAlphanumericSymbols","unicodeblockMathematicalOperatorsFont","unicodeblockMathematicalOperators","unicodeblockMiscellaneousMathematicalSymbolsAFont","unicodeblockMiscellaneousMathematicalSymbolsA","unicodeblockMiscellaneousMathematicalSymbolsBFont","unicodeblockMiscellaneousMathematicalSymbolsB","unicodeblockMiscellaneousSymbolsFont","unicodeblockMiscellaneousSymbolsandArrowsFont","unicodeblockMiscellaneousSymbolsandArrows","unicodeblockMiscellaneousSymbols","unicodeblockMiscellaneousTechnicalFont","unicodeblockMiscellaneousTechnical","unicodeblockModifierToneLettersFont","unicodeblockModifierToneLetters","unicodeblockMongolianFont","unicodeblockMongolian","unicodeblockMusicalSymbolsFont","unicodeblockMusicalSymbols","unicodeblockMyanmarFont","unicodeblockMyanmar","unicodeblockNKoFont","unicodeblockNKo","unicodeblockNewTaiLueFont","unicodeblockNewTaiLue","unicodeblockNumberFormsFont","unicodeblockNumberForms","unicodeblockOghamFont","unicodeblockOgham","unicodeblockOldItalicFont","unicodeblockOldItalic","unicodeblockOldPersianFont","unicodeblockOldPersian","unicodeblockOpticalCharacterRecognitionFont","unicodeblockOpticalCharacterRecognition","unicodeblockOriyaFont","unicodeblockOriya","unicodeblockOsmanyaFont","unicodeblockOsmanya","unicodeblockPhagsPaFont","unicodeblockPhagsPa","unicodeblockPhoenicianFont","unicodeblockPhoenician","unicodeblockPhoneticExtensionsFont","unicodeblockPhoneticExtensionsSupplementFont","unicodeblockPhoneticExtensionsSupplement","unicodeblockPhoneticExtensions","unicodeblockPrivateUseAreaFont","unicodeblockPrivateUseArea","unicodeblockRunicFont","unicodeblockRunic","unicodeblockShavianFont","unicodeblockShavian","unicodeblockSinhalaFont","unicodeblockSinhala","unicodeblockSmallFormVariantsFont","unicodeblockSmallFormVariants","unicodeblockSpacingModifierLettersFont","unicodeblockSpacingModifierLetters","unicodeblockSpecialsFont","unicodeblockSpecials","unicodeblockSuperscriptsandSubscriptsFont","unicodeblockSuperscriptsandSubscripts","unicodeblockSupplementalArrowsAFont","unicodeblockSupplementalArrowsA","unicodeblockSupplementalArrowsBFont","unicodeblockSupplementalArrowsB","unicodeblockSupplementalMathematicalOperatorsFont","unicodeblockSupplementalMathematicalOperators","unicodeblockSupplementalPunctuationFont","unicodeblockSupplementalPunctuation","unicodeblockSupplementaryPrivateUseAreaAFont","unicodeblockSupplementaryPrivateUseAreaA","unicodeblockSupplementaryPrivateUseAreaBFont","unicodeblockSupplementaryPrivateUseAreaB","unicodeblockSylotiNagriFont","unicodeblockSylotiNagri","unicodeblockSyriacFont","unicodeblockSyriac","unicodeblockTagalogFont","unicodeblockTagalog","unicodeblockTagbanwaFont","unicodeblockTagbanwa","unicodeblockTagsFont","unicodeblockTags","unicodeblockTaiLeFont","unicodeblockTaiLe","unicodeblockTaiXuanJingSymbolsFont","unicodeblockTaiXuanJingSymbols","unicodeblockTamilFont","unicodeblockTamil","unicodeblockTeluguFont","unicodeblockTelugu","unicodeblockThaanaFont","unicodeblockThaana","unicodeblockThaiFont","unicodeblockThai","unicodeblockTibetanFont","unicodeblockTibetan","unicodeblockTifinaghFont","unicodeblockTifinagh","unicodeblockUgariticFont","unicodeblockUgaritic","unicodeblockUnifiedCanadianAboriginalSyllabicsFont","unicodeblockUnifiedCanadianAboriginalSyllabics","unicodeblockVariationSelectorsFont","unicodeblockVariationSelectorsSupplementFont","unicodeblockVariationSelectorsSupplement","unicodeblockVariationSelectors","unicodeblockVerticalFormsFont","unicodeblockVerticalForms","unicodeblockYiRadicalsFont","unicodeblockYiRadicals","unicodeblockYiSyllablesFont","unicodeblockYiSyllables","unicodeblockYijingHexagramSymbolsFont","unicodeblockYijingHexagramSymbols","unicodegroupArabicFont","unicodegroupCJKFont","unicodegroupChineseFont","unicodegroupCyrillicFont","unicodegroupDiacriticsFont","unicodegroupGreekFont","unicodegroupJapaneseFont","unicodegroupKoreanFont","unicodegroupLatinFont","unicodegroupMathematicsFont","unicodegroupOtherFont","unicodegroupPhoneticsFont","unicodegroupPunctuationFont","unicodegroupSymbolsFont","unicodegroupYiFont"]}
-,
-"footmisc.sty":{"envs":{},"deps":{},"cmds":["DefineFNsymbols","setfnsymbol","mpfootnotemark","footref","footnotelayout","footglue","footnotebaselineskip","fudgefactor","makefootnoteparagraph","makehboxofhboxes","removehboxes","footnotehint","footnotemargin","hangfootparskip","hangfootparindent","mpfootnoterule","pagefootnoterule","splitfootnoterule","multiplefootnotemarker","multfootsep"]}
-,
-"footnote.sty":{"envs":["savenotes","minipage*","footnote","footnotetext"],"deps":{},"cmds":["savenotes","spewnotes","makesavenoteenv"]}
-,
-"footnotebackref.sty":{"envs":{},"deps":["letltxmacro.sty","hyperref.sty","kvoptions.sty"],"cmds":["BackrefFootnoteTag","theBackrefHyperFootnoteCounter"]}
-,
-"footnotehyper.sty":{"envs":["savenotes","footnote","footnotetext"],"deps":["expl3.sty","xparse.sty"],"cmds":["savenotes","spewnotes","makesavenoteenv","footnotehyperwarnfalse"]}
-,
-"footnoterange.sty":{"envs":["footnoterange","footnoterange*"],"deps":{},"cmds":{}}
-,
-"forarray.sty":{"envs":{},"deps":{},"cmds":["ForEach","thislevelitem","thislevelcount","ForEachX","ForEachSublevel","ForEachD","endforeach","ExitForEach","ForArray","thislevelmarker","thislevelnr","ExitForEachLevels","DefineArrayVar","DefineArrayVars","DefineArrayDefault","DefineArrayVarTo","CommandForEach","FunctionForEach"]}
-,
-"foreign.sty":{"envs":{},"deps":["xpunctuate.sty","xspace.sty"],"cmds":["defasforeign","defnotforeign","redefasforeign","redefnotforeign","foreign","notforeign","foreignfullfont","foreignabbrfont","addendum","Addendum","adhoc","Adhoc","aposteriori","Aposteriori","apriori","Apriori","caveat","Caveat","circa","Circa","curriculum","Curriculum","erratum","Erratum","ibidem","Ibidem","idem","Idem","sic","Sic","viceversa","Viceversa","vitae","Vitae","ala","Ala","visavis","Visavis","ansatz","Ansatz","gedanken","Gedanken","cf","eg","etal","etc","etseq","ibid","ie","loccit","opcit","viz","Cf","Eg","Etal","Etc","Etseq","Ibid","Ie","Loccit","Opcit","Viz"]}
-,
-"forest-index.sty":{"envs":{},"deps":["forest.sty"],"cmds":["index","indexdef","indexex","indexitem","indexset","indexdefineshortkey","indexpagenumbernormal","indexpagenumberdefinition","indexpagenumberexample","hyperlinknocolor","pgfkeysglobaldef","pgfkeysgloballet","pgfkeysglobalsetvalue"]}
-,
-"forest.sty":{"envs":["forest"],"deps":["tikz.sty","tikzlibraryshapes.sty","tikzlibraryfit.sty","tikzlibrarycalc.sty","pgfopts.sty","etoolbox.sty","elocalloc.sty","environ.sty","xparse.sty","inlinedef.sty","tikzlibraryexternal.sty"],"cmds":["standardnodestrut","standardnodestrutbox","text","Forest","forestset","useforestlibrary","forestapplylibrarydefaults","forestcompat","forestoption","foresteoption","forestregister","foresteregister","bracketset","bracketResume","forestStandardNode","apptotoks","bracketEndParsingHook","bracketParse","eapptotoks","epretotoks","etotoks","ExpandIfF","ExpandIfT","ExpandIfTF","expandnumberarg","expandthreenumberargs","expandtwonumberargs","forestanchortotikzanchor","forestdebugdynamicsfalse","forestdebugdynamicstrue","forestdebugfalse","forestdebugnodewalksfalse","forestdebugnodewalkstrue","forestdebugprocessfalse","forestdebugprocesstrue","forestdebugtempfalse","forestdebugtemptrue","forestdebugtrue","forestdebugtypeouttree","forestdebugtypeouttreenodeinfo","forestdebugtypeouttrees","forestdebugtypeouttreesprefix","forestdebugtypeouttreessuffix","forestloopbreak","forestloopBreak","forestloopcount","forestloopCount","forestmathadd","forestmathdivide","forestmatheq","forestmathfalse","forestmathgt","forestmathlt","forestmathmax","forestmathmin","forestmathmultiply","forestmathparse","forestmathresult","forestmathresulttype","forestmathsetcount","forestmathsetlength","forestmathsetlengthmacro","forestmathsetmacro","forestmathsettypefrom","forestmathtrue","forestmathtruncatemacro","forestmathzero","forestnovalue","forestoappto","forestOappto","forestOeappto","forestOepreto","forestoeset","forestOeset","forestoget","forestOget","forestoifdefined","forestOifdefined","forestoinit","forestolet","forestOlet","forestoleto","forestOleto","forestoletO","forestOletO","forestom","forestOm","forestOpreto","forestoset","forestOset","forestov","forestOv","forestove","forestOve","forestrappto","forestreset","forestrget","forestrifdefined","forestrlet","forestrm","forestRNOget","forestrpreto","forestrset","forestrv","forestrve","foresttemp","foresttikzcshackfalse","foresttikzcshacktrue","gapptotoks","gpretotoks","ifforestdebug","ifforestdebugdynamics","ifforestdebugnodewalks","ifforestdebugprocess","ifforestdebugtemp","ifforesttikzcshack","InlineNoDef","lapptotoks","makehashother","NewInlineCommand","newloop","newsafeloop","newsafeRKloop","pretotoks","ProvidesForestLibrary","safeloop","safeloopn","saferepeat","safeRKloop","safeRKloopn","safeRKrepeat","xapptotoks","xpretotoks"]}
-,
-"forloop.sty":{"envs":{},"deps":["ifthen.sty"],"cmds":["forloop","forLoop"]}
-,
-"formal-grammar.sty":{"envs":["grammar","floatgrammar"],"deps":["xparse.sty","newfloat.sty","xcolor.sty","colortbl.sty","array.sty"],"cmds":["firstcase","otherform","nonterm","gralt","nontermsubtil","firstcasesubtil","downplay","highlight","lochighlight","rowstyle"]}
-,
-"forms16be.sty":{"envs":{},"deps":{},"cmds":["defUniStr","unicodeStr","EURO","BSLASH","LBRACE","RBRACE","DQUOTE","ucspace","aref","convertChriiUnicode","displayUnicode","getUniDescript","stringiiUnicode"]}
-,
-"fortextbook.sty":{"envs":["afterChapSolns","carryOverFmt","eqeList","eqepartsquestions","example","example*","fullwidthtext","lsol","probset","solnsAtEnd","ssol"],"deps":["eqexam.sty","web.sty","exerquiz.sty","eso-pic.sty","colortbl.sty","pdfcolmk.sty"],"cmds":["InitSeedValue","writeSeedToSolnFile","saveRandomSeed","inputRandomSeed","useRandomSeed","ifsaveseed","saveseedtrue","saveseedfalse","saveseedinfo","readsavfile","eFreeze","randomi","nextrandom","setrannum","setrandim","pointless","PoinTless","ranval","textbookOpts","annotPage","annotThePage","ANS","ANSFmt","autoInsSolns","bGrpANS","bpartsmrk","chapHeadSolnFmt","chapterexercisesfalse","chapterexercisestrue","chaptersolutions","chkmarginboxwidth","clearBotMargin","clearTopMargin","cngMargHeadColorTo","convertChapHeadToChapters","currProbHead","displayProbNumOnce","eGrpANS","epartsmrk","eqedecPointSoln","eqedsplyOnlyFrst","eqeGenProbNumfalse","eqeGenProbNumtrue","eqeifnext","eqepquesitemsep","eqepquesparsep","eqepquestopsep","eqExtArg","examenvfalse","examenvtrue","examplenoname","exercisesAtEndOfChapter","exPrtsep","fbInsSolnsStyle","firstemitfalse","firstemittrue","firstPartLtr","frstProbNumShownfalse","frstProbNumShowntrue","ftbFmtChapter","ftbInputBookAux","ftbInputSolnFiles","ftblabel","gobblelabel","grpANSDelimiter","hangSolWPrtsFmt","ifchapterexercises","ifeqeGenProbNum","ifexamenv","iffirstemit","iffrstProbNumShown","ifiscarryover","ifisinlineans","ifisinstred","ifismarginans","ifisstudented","ifmarginsonleft","ifshowlsols","ifshowssols","ifWithinANSGrp","initChapAfterSolns","insertpageifcarryover","insMargHead","insMidMarg","insProbHead","iscarryoverfalse","iscarryovertrue","isinlineansfalse","isinlineanstrue","isinstredfalse","isinstredtrue","ismarginansfalse","ismarginanstrue","isstudentedfalse","isstudentedtrue","marginsonleftfalse","marginsonlefttrue","MarParBoxFmt","marparboxwidth","midMargFmt","mrgDecPt","mrgDigitFmt","mrgNumPrtsep","mrgPartFmt","mrgPrtsep","NewCommentCutFile","noProbHeader","postChapSolnHead","preChapSolnHead","probSet","resetMargHeadColor","RestoreCommentCutFile","restoreFromChapAfterSolns","restorelabel","restoreLastBotMargin","restoreLastTopMargin","restorePageLayout","saveBasicLayoutParams","setBotMargin","setFullWidthHeader","setFullWidthLayout","setMarIndents","setSolnIndent","setTopMargin","showlsolsfalse","showlsolstrue","showssolsfalse","showssolstrue","solDecPt","solnGutter","solnsAtEndcomment","solNumPrtsep","solPrtsep","solWoPrtsFmt","solWPrtsFmt","tballowAllNums","tbBaseName","tbBotMargin","tbcontinued","tbfilterOutEvenNums","tblastpageshipped","tbMakeFinalCalcs","tbMarginHeaderFmt","tbmarparboxwidth","tbminskipbtnlayers","tbmrgpartwdth","tbplaceMargins","tbPostMarginHeader","tbprbNumFmt","tbPreMarginHeader","tbSaveBotMargin","tbSaveTopMargin","tbSetupForMargins","tbsolnpartwdth","tbsolWoPrtsFmt","tbsolWPrtsFmt","tbSourceFile","tbTopMargin","theeqquestionnoi","theexampleno","thisPart","toggleInstrAns","turnOffFTBShipout","turnOffMarAnsOnAnsInline","turnOnFTBShipout","turnOnMarAnsOffAnsInline","WithinANSGrpfalse","WithinANSGrptrue","writeallsolutions","wrtChapSolnHead"]}
-,
-"forum.sty":{"envs":{},"deps":["ifxetex.sty","ifluatex.sty","xkeyval.sty","textcomp.sty","fontenc.sty","fontaxes.sty","mweights.sty"],"cmds":["forum","forumfamily"]}
-,
-"fouridx.sty":{"envs":{},"deps":{},"cmds":["fourIdx","fileversion","filedate"]}
-,
-"fourier-orns.sty":{"envs":{},"deps":["iftex.sty"],"cmds":["eurologo","noway","warning","caution","oldpilcrowone","oldpilcrowtwo","oldpilcrowthree","oldpilcrowfour","oldpilcrowfive","oldpilcrowsix","bomb","grimace","textthing","textxswup","textxswdown","decoone","decothreeleft","decothreeright","decofourleft","decofourright","decosix","decotwo","floweroneleft","floweroneright","starredbullet","leafNE","leafSE","leafNW","leafSW","leafleft","leafright","aldinesmall","aldineleft","aldineright","aldine","lefthand","righthand","FourierOrns","texorpdfstring"]}
-,
-"fourier-otf.sty":{"envs":{},"deps":["iftex.sty","unicode-math.sty","realscripts.sty"],"cmds":["circledR","circledS","Bbbbackslash","beware","blacklozenge","blacksquare","boom","Box","centerdot","circlearrowleft","circlearrowright","dashleftarrow","dashrightarrow","diagdown","diagup","Diamond","doteqdot","doublecap","doublecup","downdasharrow","downrightcurvedarrow","forbidden","geqqslant","gggtr","gtreqqslantless","gtreqslantless","gvertneqq","intbar","Join","leadsto","leftcurvedarrow","leftdasharrow","leftdowncurvedarrow","leqqslant","lesseqqslantgtr","lesseqslantgtr","lgblkcircle","lgwhtsquare","lhd","llless","lozenge","lvertneqq","mbfdotlessi","mbfdotlessj","mbfell","mbfhbar","mbfimath","mbfitell","mbfithbar","mbfitvarpartial","mbfitvarvarpi","mbfitvarvarrho","mbfitwp","mbfjmath","mbftriangleleft","mbftriangleright","mbfvarpartial","mbfvarvarpi","mbfvarvarrho","mbfvarzero","mbfvec","mbfwp","mdblkcircle","mdblksquare","mdlgblklozenge","mdlgwhtdiamond","mdsmblkcircle","mdsmwhtcircle","mdwhtcircle","mdwhtsquare","mithbar","mitvarpartial","mitvarvarpi","mitvarvarrho","mscre","mscrg","mscro","mupvarpartial","mupvarvarpi","mupvarzero","ngeqq","ngeqqslant","ngeqslant","nleqq","nleqqslant","nleqslant","nparallelslant","npreceq","nshortmid","nshortparallel","nshortparallelslant","nsubseteqq","nsucceq","nsupseteqq","ntriangleleft","ntriangleright","overrightarc","parallelslant","preceqq","precneq","restriction","rhd","rightcurvedarrow","rightdasharrow","rightdowncurvedarrow","shortmid","shortparallel","shortparallelslant","smallblacktriangleleft","smallfrown","smallsmile","smalltriangleleft","square","subsetneqq","succeqq","succneq","supsetneqq","thething","thickapprox","thicksim","unlhd","unrhd","upand","upbackepsilon","updasharrow","updigamma","uprightcurvearrow","varemptyset","varpropto","varsubsetneq","varsubsetneqq","varsupsetneq","varsupsetneqq","varsymbfscrE","varsymbfscrQ","varsymbfscrT","varsymscrE","varsymscrQ","varsymscrT","Vvert","vysmblksquare","vysmwhtsquare","wedgebar","widearc","xswordsdown","xswordsup","Zbar","FOTtoksT","FOTtoksM","fileversion","filedate"]}
-,
-"fourier.sty":{"envs":{},"deps":["iftex.sty","fourier-orns.sty"],"cmds":["blacksquare","blacktriangleleft","blacktriangleright","complement","curvearrowleft","curvearrowright","geqslant","hslash","iiint","iint","intercal","leftleftarrows","leqslant","llbracket","lvert","lVert","mathbb","nexists","ngeqslant","nleqslant","notowns","nparallel","nparallelslant","nvDash","oiiint","oiint","otheralpha","otherbeta","otherchi","otherDelta","otherdelta","otherepsilon","othereta","otherGamma","othergamma","otheriota","otherkappa","otherLambda","otherlambda","othermu","othernu","otherOmega","otheromega","otherPhi","otherphi","otherPi","otherpi","otherPsi","otherpsi","otherrho","otherSigma","othersigma","othertau","otherTheta","othertheta","otherUpsilon","otherupsilon","othervarepsilon","othervarkappa","othervarphi","othervarpi","othervarrho","othervarsigma","othervartheta","othervarvarpi","othervarvarrho","otherXi","otherxi","otherzeta","parallelslant","rightrightarrows","rrbracket","rvert","rVert","slashint","smallsetminus","square","subsetneqq","thething","varkappa","varpartialdiff","varsubsetneq","varvarpi","varvarrho","vDash","VERT","widearc","wideOarc","wideparen","widering","xswordsdown","xswordsup","iintop","iiintop","oiintop","oiiintop","slashintop","blackseries","lining","oldstyle","sbseries","scishape","superieures","textblack","textsb","textsci","texttitle","titleshape","SetFourierSpace","ifsloped","slopedtrue","slopedfalse","ifpoorman","poormantrue","poormanfalse","ifwidespace","widespacetrue","widespacefalse","addFourierGreekPrefix","othergreek","DH","NG","dj","ng","k","guillemotleft","guillemotright","guilsinglleft","guilsinglright","quotedblbase","quotesinglbase","textquotedbl","DJ","th","TH","dh","Hwithstroke","hwithstroke","textogonekcentered","guillemetleft","guillemetright"]}
-,
-"fouriernc.sty":{"envs":{},"deps":["fourier.sty"],"cmds":{}}
-,
-"fp-addons.sty":{"envs":{},"deps":{},"cmds":["FPmin","FPmax"]}
-,
-"fp-basic.sty":{"envs":{},"deps":{},"cmds":["FPset","FPprint","FPadd","FPdiv","FPmul","FPsub","FPabs","FPneg","FPsgn","FPiflt","FPifeq","FPifgt","FPifneg","FPifpos","FPifzero","FPifint","ifFPdebug","FPdebugfalse","FPdebugtrue","ifFPmessages","FPmessagesfalse","FPmessagestrue","ifFPtest"]}
-,
-"fp-eqn.sty":{"envs":{},"deps":["fp.sty"],"cmds":["FPlsolve","FPqsolve","FPcsolve","FPqqsolve"]}
-,
-"fp-eval.sty":{"envs":{},"deps":["defpattern.sty","fp-upn.sty"],"cmds":["FPeval"]}
-,
-"fp-exp.sty":{"envs":{},"deps":["fp-basic.sty"],"cmds":["FPe","FPexp","FPln","FPpow","FProot"]}
-,
-"fp-pas.sty":{"envs":{},"deps":["fp-basic.sty"],"cmds":["FPpascal"]}
-,
-"fp-random.sty":{"envs":{},"deps":["fp-basic.sty"],"cmds":["FPseed","FPrandom"]}
-,
-"fp-snap.sty":{"envs":{},"deps":["fp-basic.sty"],"cmds":["FPround","FPtrunc","FPclip"]}
-,
-"fp-trigo.sty":{"envs":{},"deps":["fp-basic.sty"],"cmds":["FPpi","FPsin","FPcos","FPsincos","FPtan","FPcot","FPtancot","FParcsin","FParccos","FParcsincos","FParctan","FParccot","FParctancot"]}
-,
-"fp-upn.sty":{"envs":{},"deps":["fp.sty","defpattern.sty"],"cmds":["FPupn"]}
-,
-"fp.sty":{"envs":{},"deps":["defpattern.sty","fp-basic.sty","fp-addons.sty","fp-snap.sty","fp-exp.sty","fp-trigo.sty","fp-pas.sty","fp-random.sty","fp-eqn.sty","fp-upn.sty","fp-eval.sty"],"cmds":{}}
-,
-"fr-fancy.sty":{"envs":{},"deps":["fancybox.sty"],"cmds":["wshadowbox"]}
-,
-"framed.sty":{"envs":["framed","oframed","shaded","shaded*","snugshade","snugshade*","leftbar","titled-frame"],"deps":{},"cmds":["MakeFramed","endMakeFramed","FrameCommand","FirstFrameCommand","LastFrameCommand","MidFrameCommand","FrameRestore","FrameRule","FrameSep","FrameHeightAdjust","OuterFrameSep","CustomFBox","OpenFBox","TitleBarFrame"]}
-,
-"frcursive.sty":{"envs":["cursive","calseries","ftseries","wideseries","acadshape"],"deps":{},"cmds":["cursive","textcursive","calseries","textcal","ftseries","textft","wideseries","textwide","acadshape","textacad","seyes","seyesThickness","seyesDefault","DH","NG","dj","ng","k","guillemotleft","guillemotright","guilsinglleft","guilsinglright","quotedblbase","quotesinglbase","textquotedbl","DJ","th","TH","dh","Hwithstroke","hwithstroke","textogonekcentered","guillemetleft","guillemetright"]}
-,
-"frege.sty":{"envs":{},"deps":["amssymb.sty","bguq.sty"],"cmds":["Fcontent","F","Fncontent","Fn","Fnncontent","Fnn","Facontent","Fa","Fancontent","Fan","Fanncontent","Fann","Fquant","Fq","Fnquant","Fnq","Fnnquant","Fnnq","Fquantn","Fqn","Fquantnn","Fqnn","Fnquantn","Fnqn","Fnquantnn","Fnqnn","Fnnquantn","Fnnqn","Fnnquantnn","Fnnqnn","Faquant","Faq","Fanquant","Fanq","Fannquant","Fannq","Faquantn","Faqn","Faquantnn","Faqnn","Fanquantn","Fanqn","Fanquantnn","Fanqnn","Fannquantn","Fannqn","Fannquantnn","Fannqnn","Fconditional","Fcdt","Fbox","Fb","Fbracket","Fbb","Fargument","Farg","Fstrut","Fs","Fbaselength","Flinewidth","Fspace","Fassertwidth","Fraiseheight","Fnegsep","Fnegshort","Fquantwidth"]}
-,
-"frenchmath.sty":{"envs":{},"deps":["mathrsfs.sty","amssymb.sty","amsopn.sty","xspace.sty","ibrackets.sty","ncccomma.sty","iftex.sty","lgrmath.sty","upgreek.sty"],"cmds":["italpha","itbeta","itgamma","itdelta","itepsilon","itzeta","iteta","ittheta","itiota","itkappa","itlambda","itmu","itnu","itxi","itpi","itrho","itsigma","ittau","itupsilon","itphi","itchi","itpsi","itomega","itvarepsilon","itvartheta","itvarpi","itvarsigma","itvarphi","curs","ssi","Oij","Oijk","Ouv","ijk","infeg","supeg","vide","paral","cmod","pgcd","ppcm","card","Card","Ker","Hom","rg","Vect","ch","sh","th","cosec","cosech","ifcapsit","capsittrue","capsitfalse","iflgrmath","lgrmathtrue","lgrmathfalse","ifupgreek","upgreektrue","upgreekfalse","ifUpgreek","Upgreektrue","Upgreekfalse","ifnoibrackets","noibracketstrue","noibracketsfalse"]}
-,
-"frimurer.sty":{"envs":["frimurer"],"deps":{},"cmds":["textfrimurer"]}
-,
-"frontespizio.sty":{"envs":["frontespizio","Preambolo*"],"deps":["afterpage.sty","graphicx.sty","atbegshi.sty","environ.sty","ifpdf.sty","ifxetex.sty"],"cmds":["includefront","Universita","Istituzione","Logo","Filigrana","Facolta","Dipartimento","Divisione","Interfacolta","Corso","Scuola","Titoletto","Titolo","Sottotitolo","Candidato","Relatore","Correlatore","Annoaccademico","Piede","NCandidato","NCandidati","NRelatore","NCorrelatore","Punteggiatura","Preambolo","Rientro","Margini","frontinstitutionfont","frontdivisionfont","frontpretitlefont","fronttitlefont","frontsubtitlefont","frontfixednamesfont","frontnamesfont","frontsmallfont","frontfootfont","fronttitlecolor","fontoptionnormal","fontoptionsans","frontadjustforsignatures","frontcandidatesep","frontlogosep","frontrelcorrelsep","preparefrontpage","preparefrontpagestandard","preparefrontpagesuftesi","IlCandidato","Package","MoreMargin","Margins"]}
-,
-"froufrou.sty":{"envs":{},"deps":{},"cmds":["setfroufrou","froufrou"]}
-,
-"frpseudocode.sty":{"envs":{},"deps":["algpseudocode.sty"],"cmds":["ForFT","algorithmicwhilem","algorithmicdom","algorithmicfrom","algorithmicto","algorithmicform","algorithmicifm"]}
-,
-"fullminipage.sty":{"envs":["fullminipage"],"deps":["color.sty","keyval.sty"],"cmds":{}}
-,
-"fullpage.sty":{"envs":{},"deps":{},"cmds":{}}
-,
-"fullpict.sty":{"envs":["fullpicture","halfpicture","scalepicture","Scalepicture","scaledpicture","Scaledpicture"],"deps":{},"cmds":["xaxis","yaxis","axes","xticks","yticks","ticks","xnums","ynums","nums","origin","cput","nput","sput","eput","wput","neput","seput","nwput","swput","angleput","Vector","lcm"]}
-,
-"fullwidth.sty":{"envs":["fullwidth"],"deps":["kvoptions.sty","zref-abspage.sty"],"cmds":["fullwidthsetup","fwdversion","fwdpackagename","fwddate"]}
-,
-"functional.sty":{"envs":{},"deps":{},"cmds":["IgnoreSpacesOn","IgnoreSpacesOff","Functional","prgNewFunction","prgSetEqFunction","prgNewConditional","prgReturn","prgPrint","gResultTl","prgDo","prgRunOneArgCode","prgRunTwoArgCode","prgRunThreeArgCode","prgRunFourArgCode","evalWhole","evalNone","expName","expValue","expWhole","unExpand","onlyName","onlyValue","useOne","gobbleOne","useGobble","gobbleUse","cTrueBool","cFalseBool","lTmpaBool","lTmpbBool","lTmpcBool","lTmpiBool","lTmpjBool","lTmpkBool","gTmpaBool","gTmpbBool","gTmpcBool","gTmpiBool","gTmpjBool","gTmpkBool","boolNew","boolConst","boolSet","boolSetTrue","boolSetFalse","boolSetEq","boolLog","boolVarLog","boolShow","boolVarShow","boolIfExist","boolIfExistT","boolIfExistF","boolIfExistTF","boolVarIf","boolVarIfT","boolVarIfF","boolVarIfTF","boolVarNot","boolVarNotT","boolVarNotF","boolVarNotTF","boolVarAnd","boolVarAndT","boolVarAndF","boolVarAndTF","boolVarOr","boolVarOrT","boolVarOrF","boolVarOrTF","boolVarXor","boolVarXorT","boolVarXorF","boolVarXorTF","boolVarDoUntil","boolVarDoWhile","boolVarUntilDo","boolVarWhileDo","cSpaceTl","cEmptyTl","lTmpaTl","lTmpbTl","lTmpcTl","lTmpiTl","lTmpjTl","lTmpkTl","gTmpaTl","gTmpbTl","gTmpcTl","gTmpiTl","gTmpjTl","gTmpkTl","tlNew","tlConst","tlUse","tlToStr","tlVarToStr","tlLog","tlVarLog","tlShow","tlVarShow","tlSet","tlSetEq","tlClear","tlClearNew","tlConcat","tlPutLeft","tlPutRight","tlVarReplaceOnce","tlVarReplaceAll","tlVarRemoveOnce","tlVarRemoveAll","tlTrimSpaces","tlVarTrimSpaces","tlCount","tlVarCount","tlHead","tlVarHead","tlTail","tlVarTail","tlItem","tlVarItem","tlRandItem","tlVarRandItem","tlMapInline","tlVarMapInline","tlMapVariable","tlVarMapVariable","tlIfExist","tlIfExistT","tlIfExistF","tlIfExistTF","tlIfEmpty","tlIfEmptyT","tlIfEmptyF","tlIfEmptyTF","tlVarIfEmpty","tlVarIfEmptyT","tlVarIfEmptyF","tlVarIfEmptyTF","tlIfBlank","tlIfBlankT","tlIfBlankF","tlIfBlankTF","tlIfEq","tlIfEqT","tlIfEqF","tlIfEqTF","tlVarIfEq","tlVarIfEqT","tlVarIfEqF","tlVarIfEqTF","tlIfIn","tlIfInT","tlIfInF","tlIfInTF","tlVarIfIn","tlVarIfInT","tlVarIfInF","tlVarIfInTF","tlIfSingle","tlIfSingleT","tlIfSingleF","tlIfSingleTF","tlVarIfSingle","tlVarIfSingleT","tlVarIfSingleF","tlVarIfSingleTF","tlVarCase","tlVarCaseT","tlVarCaseF","tlVarCaseTF","cAmpersandStr","cAtsignStr","cBackslashStr","cLeftBraceStr","cRightBraceStr","cCircumflexStr","cColonStr","cDollarStr","cHashStr","cPercentStr","cTildeStr","cUnderscoreStr","cZeroStr","lTmpaStr","lTmpbStr","lTmpcStr","lTmpiStr","lTmpjStr","lTmpkStr","gTmpaStr","gTmpbStr","gTmpcStr","gTmpiStr","gTmpjStr","gTmpkStr","strNew","strConst","strUse","strLog","strVarLog","strShow","strVarShow","strSet","strSetEq","strClear","strClearNew","strConcat","strPutLeft","strPutRight","strVarReplaceOnce","strVarReplaceAll","strVarRemoveOnce","strVarRemoveAll","strCount","strSize","strVarCount","strHead","strVarHead","strTail","strVarTail","strItem","strVarItem","strMapInline","strVarMapInline","strMapVariable","strVarMapVariable","strIfExist","strIfExistT","strIfExistF","strIfExistTF","strVarIfEmpty","strVarIfEmptyT","strVarIfEmptyF","strVarIfEmptyTF","strIfEq","strIfEqT","strIfEqF","strIfEqTF","strVarIfEq","strVarIfEqT","strVarIfEqF","strVarIfEqTF","strIfIn","strIfInT","strIfInF","strIfInTF","strVarIfIn","strVarIfInT","strVarIfInF","strVarIfInTF","strCompare","strCompareT","strCompareF","strCompareTF","strIfCompare","strIfCompareT","strIfCompareF","strIfCompareTF","strCase","strCaseT","strCaseF","strCaseTF","cZeroInt","cOneInt","cMaxInt","cMaxRegisterInt","cMaxCharInt","lTmpaInt","lTmpbInt","lTmpcInt","lTmpiInt","lTmpjInt","lTmpkInt","gTmpaInt","gTmpbInt","gTmpcInt","gTmpiInt","gTmpjInt","gTmpkInt","intEval","intMathAdd","intMathSub","intMathMult","intMathDiv","intMathDivTruncate","intMathSign","intMathAbs","intMathMax","intMathMin","intMathMod","intMathRand","intNew","intConst","intUse","intLog","intVarLog","intShow","intVarShow","intSet","intSetEq","intZero","intZeroNew","intIncr","intDecr","intAdd","intSub","intReplicate","intStepInline","intStepOneInline","intStepVariable","intStepOneVariable","intIfExist","intIfExistT","intIfExistF","intIfExistTF","intIfOdd","intIfOddT","intIfOddF","intIfOddTF","intIfEven","intIfEvenT","intIfEvenF","intIfEvenTF","intCompare","intCompareT","intCompareF","intCompareTF","intCase","intCaseT","intCaseF","intCaseTF","cZeroFp","cMinusZeroFp","cOneFp","cInfFp","cMinusInfFp","cEFp","cPiFp","cOneDegreeFp","lTmpaFp","lTmpbFp","lTmpcFp","lTmpiFp","lTmpjFp","lTmpkFp","gTmpaFp","gTmpbFp","gTmpcFp","gTmpiFp","gTmpjFp","gTmpkFp","fpEval","fpMathAdd","fpMathSub","fpMathMult","fpMathDiv","fpMathSign","fpMathAbs","fpMathMax","fpMathMin","fpNew","fpConst","fpUse","fpLog","fpVarLog","fpShow","fpVarShow","fpSet","fpSetEq","fpZero","fpZeroNew","fpAdd","fpSub","fpStepInline","fpStepVariable","fpIfExist","fpIfExistT","fpIfExistF","fpIfExistTF","fpCompare","fpCompareT","fpCompareF","fpCompareTF","cMaxDim","cZeroDim","lTmpaDim","lTmpbDim","lTmpcDim","lTmpiDim","lTmpjDim","lTmpkDim","gTmpaDim","gTmpbDim","gTmpcDim","gTmpiDim","gTmpjDim","gTmpkDim","dimEval","dimMathAdd","dimMathSub","dimMathRatio","dimMathSign","dimMathAbs","dimMathMax","dimMathMin","dimNew","dimConst","dimUse","dimLog","dimVarLog","dimShow","dimVarShow","dimSet","dimSetEq","dimZero","dimZeroNew","dimAdd","dimSub","dimStepInline","dimStepVariable","dimIfExist","dimIfExistT","dimIfExistF","dimIfExistTF","dimCompare","dimCompareT","dimCompareF","dimCompareTF","dimCase","dimCaseT","dimCaseF","dimCaseTF","cEmptyClist","lTmpaClist","lTmpbClist","lTmpcClist","lTmpiClist","lTmpjClist","lTmpkClist","gTmpaClist","gTmpbClist","gTmpcClist","gTmpiClist","gTmpjClist","gTmpkClist","clistNew","clistConst","clistVarJoin","clistVarJoinExtended","clistJoin","clistJoinExtended","clistLog","clistVarLog","clistShow","clistVarShow","clistSet","clistSetEq","clistSetFromSeq","clistClear","clistClearNew","clistConcat","clistPutLeft","clistPutRight","clistVarRemoveDuplicates","clistVarRemoveAll","clistVarReverse","clistCount","clistVarCount","clistItem","clistVarItem","clistRandItem","clistVarRandItem","clistGet","clistGetT","clistGetF","clistGetTF","clistPop","clistPopT","clistPopF","clistPopTF","clistPush","clistMapInline","clistVarMapInline","clistMapVariable","clistVarMapVariable","clistIfExist","clistIfExistT","clistIfExistF","clistIfExistTF","clistIfEmpty","clistIfEmptyT","clistIfEmptyF","clistIfEmptyTF","clistVarIfEmpty","clistVarIfEmptyT","clistVarIfEmptyF","clistVarIfEmptyTF","clistIfIn","clistIfInT","clistIfInF","clistIfInTF","clistVarIfIn","clistVarIfInT","clistVarIfInF","clistVarIfInTF","cEmptySeq","lTmpaSeq","lTmpbSeq","lTmpcSeq","lTmpiSeq","lTmpjSeq","lTmpkSeq","gTmpaSeq","gTmpbSeq","gTmpcSeq","gTmpiSeq","gTmpjSeq","gTmpkSeq","seqNew","seqConstFromClist","seqVarJoin","seqVarJoinExtended","seqVarLog","seqVarShow","seqSetFromClist","seqSetSplit","seqSetEq","seqClear","seqClearNew","seqConcat","seqPutLeft","seqPutRight","seqVarRemoveDuplicates","seqVarRemoveAll","seqVarReverse","seqVarCount","seqVarItem","seqVarRandItem","seqGet","seqGetT","seqGetF","seqGetTF","seqPop","seqPopT","seqPopF","seqPopTF","seqPush","seqGetLeft","seqGetLeftT","seqGetLeftF","seqGetLeftTF","seqGetRight","seqGetRightT","seqGetRightF","seqGetRightTF","seqPopLeft","seqPopLeftT","seqPopLeftF","seqPopLeftTF","seqPopRight","seqPopRightT","seqPopRightF","seqPopRightTF","seqVarMapInline","seqVarMapVariable","seqIfExist","seqIfExistT","seqIfExistF","seqIfExistTF","seqVarIfEmpty","seqVarIfEmptyT","seqVarIfEmptyF","seqVarIfEmptyTF","seqVarIfIn","seqVarIfInT","seqVarIfInF","seqVarIfInTF","cEmptyProp","lTmpaProp","lTmpbProp","lTmpcProp","lTmpiProp","lTmpjProp","lTmpkProp","gTmpaProp","gTmpbProp","gTmpcProp","gTmpiProp","gTmpjProp","gTmpkProp","propNew","propConstFromKeyval","propToKeyval","propVarLog","propVarShow","propSetFromKeyval","propSetEq","propClear","propClearNew","propConcat","propPut","propPutIfNew","propPutFromKeyval","propVarRemove","propVarCount","propVarItem","propGet","propGetT","propGetF","propGetTF","propPop","propPopT","propPopF","propPopTF","propVarMapInline","propIfExist","propIfExistT","propIfExistF","propIfExistTF","propVarIfEmpty","propVarIfEmptyT","propVarIfEmptyF","propVarIfEmptyTF","propVarIfIn","propVarIfInT","propVarIfInF","propVarIfInTF","lTmpaRegex","lTmpbRegex","lTmpcRegex","lTmpiRegex","lTmpjRegex","lTmpkRegex","gTmpaRegex","gTmpbRegex","gTmpcRegex","gTmpiRegex","gTmpjRegex","gTmpkRegex","regexNew","regex","regexSet","regexConst","regexLog","regexVarLog","regexShow","regexVarShow","regexMatch","regexMatchT","regexMatchF","regexMatchTF","regexVarMatch","regexVarMatchT","regexVarMatchF","regexVarMatchTF","regexCount","regexVarCount","regexMatchCase","regexMatchCaseT","regexMatchCaseF","regexMatchCaseTF","regexExtractOnce","regexExtractOnceT","regexExtractOnceF","regexExtractOnceTF","regexVarExtractOnce","regexVarExtractOnceT","regexVarExtractOnceF","regexVarExtractOnceTF","regexExtractAll","regexExtractAllT","regexExtractAllF","regexExtractAllTF","regexVarExtractAll","regexVarExtractAllT","regexVarExtractAllF","regexVarExtractAllTF","regexSplit","regexSplitT","regexSplitF","regexSplitTF","regexVarSplit","regexVarSplitT","regexVarSplitF","regexVarSplitTF","regexReplaceOnce","regexReplaceOnceT","regexReplaceOnceF","regexReplaceOnceTF","regexVarReplaceOnce","regexVarReplaceOnceT","regexVarReplaceOnceF","regexVarReplaceOnceTF","regexReplaceAll","regexReplaceAllT","regexReplaceAllF","regexReplaceAllTF","regexVarReplaceAll","regexVarReplaceAllT","regexVarReplaceAllF","regexVarReplaceAllTF","regexReplaceCaseOnce","regexReplaceCaseOnceT","regexReplaceCaseOnceF","regexReplaceCaseOnceTF","regexReplaceCaseAll","regexReplaceCaseAllT","regexReplaceCaseAllF","regexReplaceCaseAllTF","x","a","e","f","n","r","t","d","h","s","v","w","D","H","N","S","V","W","K","c","cC","cB","cE","cM","cT","cP","cU","cD","cS","cL","cO","cA","u","ur","b","B","A","Z","z","G","charLowercase","charUppercase","charTitlecase","charFoldcase","charStrLowercase","charStrUppercase","charStrTitlecase","charStrFoldcase","charSetLccode","charSetUccode","charValueLccode","charValueUccode","textExpand","textLowercase","textUppercase","textTitlecase","textTitlecaseFirst","textLangLowercase","textLangUppercase","textLangTitlecase","textLangTitlecaseFirst","fileInput","fileIfExistInput","fileIfExistInputF","fileGet","fileGetT","fileGetF","fileGetTF","fileIfExist","fileIfExistT","fileIfExistF","fileIfExistTF","qNoValue","quarkVarIfNoValue","quarkVarIfNoValueT","quarkVarIfNoValueF","quarkVarIfNoValueTF","legacyIf","legacyIfT","legacyIfF","legacyIfTF","legacyIfSetTrue","legacyIfSetFalse","legacyIfSet","clistMapBreak","clistVarSort","cNoValueTl","expOnce","expPartial","fileInputStop","prgLocal","noExpand","onlyOnce","onlyPartial","prgBreak","prgBreakDo","propMapBreak","seqJoin","seqJoinExtended","seqMapBreak","seqVarSort","sortReturnSame","sortReturnSwapped","Result","PrgNewFunction","PrgNewConditional"]}
-,
-"fusering.sty":{"envs":{},"deps":["chemstr.sty","carom.sty","hetaromh.sty","hetarom.sty"],"cmds":["fivefuseh","fivefusehi","fivefusev","fivefusevi","fourfuse","sixfuseh","sixfusehi","sixfusev","sixfusevi","threefuseh","threefusehi","threefusev","threefusevi","fivefuseposhi","fivefuseposh","fivefuseposvi","fivefuseposv","fourfusepos","sixfuseposhi","sixfuseposh","sixfuseposvi","sixfuseposv","sixunithi","sixunitvi","threefuseposhi","threefuseposh","threefuseposvi","threefuseposv"]}
-,
-"futurans.sty":{"envs":{},"deps":["fontenc.sty","textcomp.sty","keyval.sty"],"cmds":["ProcessOptionsWithKV","DH","NG","dj","ng","k","guillemotleft","guillemotright","guilsinglleft","guilsinglright","quotedblbase","quotesinglbase","textquotedbl","DJ","th","TH","dh","Hwithstroke","hwithstroke","textogonekcentered","guillemetleft","guillemetright"]}
-,
-"fvextra.sty":{"envs":["VerbEnv"],"deps":["etoolbox.sty","fancyvrb.sty","upquote.sty","textcomp.sty","lineno.sty"],"cmds":["fvinlineset","FancyVerbFormatInline","FancyVerbFormatText","EscVerb","FancyVerbBreakStart","FancyVerbBreakStop","FancyVerbBreakAnywhereBreak","FancyVerbBreakBeforeBreak","FancyVerbBreakAfterBreak","FancyVerbBreakByTokenAnywhereBreak","VerbatimPygments","FVExtraDoSpecials","FVExtraReadOArgBeforeVArg","FVExtraReadOArgBeforeVEnv","FVExtraReadVArg","FVExtrapdfstringdef","FVExtrapdfstringdefDisableCommands","FVExtraAlwaysUnexpanded","FVExtraRobustCommand","FVExtraUnexpandedReadStarOArgMArg","FVExtraUseVerbUnexpandedReadStarOArgMArg","FVExtraUnexpandedReadStarOArgBVArg","FVExtraUnexpandedReadStarOArgBEscVArg","FVExtraPDFStringEscapeChar","FVExtraPDFStringEscapeChars","FVExtraVerbatimDetokenize","FVExtraPDFStringVerbatimDetokenize","FVExtraEscapedVerbatimDetokenize","FVExtraPDFStringEscapedVerbatimDetokenize","FVExtraDetokenizeVArg","FVExtraDetokenizeEscVArg","FVExtraDetokenizeREscVArg","FVExtraRetokenizeVArg","FVExtraUnexpandedReadStarOArgMArgBVArg","RobustVerb","RobustUseVerb","RobustEscVerb","FancyVerbMathSpace","FancyVerbFillColor","FancyVerbMathEscape","FancyVerbBeamerOverlays","FancyVerbCurlyQuotes","FancyVerbHighlightColor","FancyVerbHighlightLine","FancyVerbHighlightLineNormal","FancyVerbHighlightLineFirst","FancyVerbHighlightLineMiddle","FancyVerbHighlightLineLast","FancyVerbHighlightLineSingle","FancyVerbBreakSymbolLeft","FancyVerbBreakSymbolRight","FancyVerbBreakSymbolLeftLogic","theFancyVerbLineBreakLast","FancyVerbBreakSymbolRightLogic","FancyVerbBreakAnywhereSymbolPre","FancyVerbBreakAnywhereSymbolPost","FancyVerbBreakBeforeSymbolPre","FancyVerbBreakBeforeSymbolPost","FancyVerbBreakAfterSymbolPre","FancyVerbBreakAfterSymbolPost"]}
-,
-"fwlw.sty":{"envs":{},"deps":{},"cmds":["FirstWordBox","NextWordBox","LastWordBox"]}
-,
-"g-brief.cls":{"envs":["g-brief"],"deps":["s-letter.cls","babel.sty","inputenc.sty","marvosym.sty","europs.sty","eurosym.sty"],"cmds":["adresse","Adresse","anlagen","Anlagen","anrede","Anrede","bank","Bank","banktext","betreff","Betreff","betrefftext","blz","BLZ","blztext","datum","Datum","datumtext","Einrueckung","email","EMail","emailtext","faltmarken","faltmarkenfalse","faltmarkentrue","fenstermarken","fenstermarkenfalse","fenstermarkentrue","filedate","filename","fileversion","gruss","Gruss","grussskip","http","HTTP","httptext","iffaltmarken","iffenstermarken","ifklassisch","iflochermarke","iftrennlinien","ifunserzeichen","ihrschreiben","IhrSchreiben","ihrschreibentext","ihrzeichen","IhrZeichen","ihrzeichentext","klassisch","klassischfalse","klassischtrue","konto","Konto","kontotext","land","Land","lochermarke","lochermarkefalse","lochermarketrue","meinzeichen","MeinZeichen","meinzeichentext","name","Name","ort","Ort","postvermerk","Postvermerk","retouradresse","RetourAdresse","sprache","strasse","Strasse","telefax","Telefax","telefaxtext","Telefon","telefontex","telex","Telex","telextext","trennlinien","trennlinienfalse","trennlinientrue","unserzeichen","unserzeichenfalse","unserzeichentext","unserzeichentrue","unterschrift","Unterschrift","verteiler","Verteiler","VorschubH","VorschubV","zusatz","Zusatz","captionsngerman","datengerman","extrasngerman","noextrasngerman","dq","ntosstrue","ntossfalse","prefacename","bibname","chaptername","enclname","ccname","headtoname","pagename","seename","alsoname","proofname","glossaryname","mdqon","mdqoff"]}
-,
-"g-brief2.cls":{"envs":["g-brief"],"deps":["ifthen.sty","s-letter.cls","babel.sty","inputenc.sty","marvosym.sty","europs.sty","eurosym.sty"],"cmds":["adresse","Adresse","adresstext","adresszeilea","AdressZeileA","adresszeileb","AdressZeileB","adresszeilec","AdressZeileC","adresszeiled","AdressZeileD","adresszeilee","AdressZeileE","adresszeilef","AdressZeileF","anlagen","Anlagen","anrede","Anrede","banktext","bankzeilea","BankZeileA","bankzeileb","BankZeileB","bankzeilec","BankZeileC","bankzeiled","BankZeileD","bankzeilee","BankZeileE","bankzeilef","BankZeileF","betreff","Betreff","datum","Datum","datumtext","Einrueckung","faltmarken","faltmarkenfalse","faltmarkentrue","fenstermarken","fenstermarkenfalse","fenstermarkentrue","filedate","filename","fileversion","gruss","Gruss","grussskip","iffaltmarken","iffenstermarken","iflochermarke","iftrennlinien","ifunserzeichen","ihrschreiben","IhrSchreiben","ihrschreibentext","ihrzeichen","IhrZeichen","ihrzeichentext","internettext","internetzeilea","InternetZeileA","internetzeileb","InternetZeileB","internetzeilec","InternetZeileC","internetzeiled","InternetZeileD","internetzeilee","InternetZeileE","internetzeilef","InternetZeileF","lochermarke","lochermarkefalse","lochermarketrue","meinzeichen","MeinZeichen","meinzeichentext","name","Name","namezeilea","NameZeileA","namezeileb","NameZeileB","namezeilec","NameZeileC","namezeiled","NameZeileD","namezeilee","NameZeileE","namezeilef","NameZeileF","namezeileg","NameZeileG","postvermerk","Postvermerk","retouradresse","RetourAdresse","sprache","telefontext","telefonzeilea","TelefonZeileA","telefonzeileb","TelefonZeileB","telefonzeilec","TelefonZeileC","telefonzeiled","TelefonZeileD","telefonzeilee","TelefonZeileE","telefonzeilef","TelefonZeileF","trennlinien","trennlinienfalse","trennlinientrue","unserzeichen","unserzeichenfalse","unserzeichentext","unserzeichentrue","unterschrift","Unterschrift","verteiler","Verteiler","VorschubH","VorschubV","captionsngerman","datengerman","extrasngerman","noextrasngerman","dq","ntosstrue","ntossfalse","prefacename","bibname","chaptername","enclname","ccname","headtoname","pagename","seename","alsoname","proofname","glossaryname","mdqon","mdqoff"]}
-,
-"galois.sty":{"envs":{},"deps":["color.sty"],"cmds":["galois","galoiS","Galois","GaloiS","galoiSr","comp","GaloisStyle","GaloisArrowThickness","GaloisArrowsSep","GaloisArrowTagSep"]}
-,
-"gamebook.sty":{"envs":["gbturnoptions","gbtabbing"],"deps":["ifthen.sty","fancyhdr.sty","extramarks.sty","titlesec.sty","enumitem.sty","draftwatermark.sty","scrtime.sty","prelim2e.sty"],"cmds":["gbsection","gbturn","gbturntext","gbitem","gbvillain","gbheader","gbheadtext","gbdebugx","gbdebug"]}
-,
-"gamebooklib.sty":{"envs":["gentry"],"deps":["environ.sty","macroswap.sty","ifthen.sty","lcg.sty","silence.sty"],"cmds":["thegentryctr","gentryidx","gentrycode","gentryidxu","gentryidxs","gentrytitle","nextidx","thegentries","gentrycount","gentryheader","gentryshouldoutput","gentryfooter","thefncounter","outputfootnotes","noentryfoot"]}
-,
-"gammas.cls":{"envs":["gammabstract","gammkeywords","gammacode","gammacknowledgement"],"deps":["s-scrartcl.cls","inputenc.sty","fontenc.sty","lmodern.sty","fourier.sty","babel.sty","microtype.sty","anyfontsize.sty","amssymb.sty","amsmath.sty","amsthm.sty","mathtools.sty","mathrsfs.sty","subdepth.sty","graphicx.sty","xcolor.sty","tikz.sty","pgfplots.sty","geometry.sty","scrlayer-scrpage.sty","booktabs.sty","enumitem.sty","caption.sty","siunitx.sty","lineno.sty","listings.sty","ifthen.sty","hyperref.sty","cleveref.sty","csquotes.sty","biblatex.sty","natbib.sty"],"cmds":["gammtitle","gammauthora","gammauthorb","gammauthorc","gammauthord","gammauthore","gammauthorf","gammauthoraorcid","gammauthorborcid","gammauthorcorcid","gammauthordorcid","gammauthoreorcid","gammauthorforcid","gammaddressa","gammaddressb","gammaddressc","gammaddressd","gammaddresse","gammaddressf","inst","corauth","gammauthorhead","gammcorrespondence","gammsupervisor","gammbibfilename","gammotherpublication","orcid","gammasHeader","gammbiberopt","gammfinalmode","gammloadoptbiber","gammloadoptbibtex","gammtwocolumnmode","makegammhead","patchAmsMathEnvironmentForLineno","patchBothAmsMathEnvironmentsForLineno","setbiber","setbib","GAMMAUTHORA","GAMMAUTHORB","GAMMAUTHORC","GAMMAUTHORD","GAMMAUTHORE","GAMMAUTHORF","GAMMAUTHORAORCID","GAMMAUTHORBORCID","GAMMAUTHORCORCID","GAMMAUTHORDORCID","GAMMAUTHOREORCID","GAMMAUTHORFORCID","GAMMADDRESSA","GAMMADDRESSB","GAMMADDRESSC","GAMMADDRESSD","GAMMADDRESSE","GAMMADDRESSF","GAMMAUTHORHEAD","GAMMCORRESPONDENCE","GAMMSUPERVISOR","GAMMSUPERVISORTEXT","GAMMOTHERPUBLICATION","GAMMBIBFILENAME","GAMMLOADOPTBIBER","GAMMBIBEROPT","GAMMLOADOPTBIBTEX","GAMMFINALMODE","GAMMTWOCOLUMNMODE","DH","dh","dj","DJ","guillemetleft","guillemetright","guillemotleft","guillemotright","guilsinglleft","guilsinglright","Hwithstroke","hwithstroke","k","NG","ng","quotedblbase","quotesinglbase","textogonekcentered","textquotedbl","th","TH","captionsenglish","dateenglish","extrasenglish","noextrasenglish","englishhyphenmins","britishhyphenmins","americanhyphenmins","prefacename","bibname","chaptername","enclname","ccname","headtoname","pagename","seename","alsoname","proofname","glossaryname"]}
-,
-"gandhi.sty":{"envs":{},"deps":["ifxetex.sty","ifluatex.sty","textcomp.sty","xkeyval.sty","fontenc.sty","fontaxes.sty"],"cmds":["gandhi","gandhisans","gandhifamily","gandhisffamily"]}
-,
-"garamondlibre.sty":{"envs":{},"deps":["ifxetex.sty","ifluatex.sty","textcomp.sty","xkeyval.sty","fontaxes.sty","fontenc.sty","mweights.sty"],"cmds":["oldstylenums","liningnums","sufigures","textsu","infigures","textin","swashshape","textsw","ornaments","ornament","textornaments","garamondlibrelgr"]}
-,
-"garamondx.sty":{"envs":{},"deps":["graphicx.sty","keyval.sty","fontenc.sty","fontaxes.sty","textcomp.sty","etoolbox.sty"],"cmds":["sustyle","swashQ","textlf","textosf","textosfI","textsu","useosf","useosfI","ProcessOptionsWithKV","fileversion","filedate","DH","dh","dj","DJ","guillemetleft","guillemetright","guillemotleft","guillemotright","guilsinglleft","guilsinglright","Hwithstroke","hwithstroke","k","NG","ng","quotedblbase","quotesinglbase","textogonekcentered","textquotedbl","th","TH"]}
-,
-"gastex.sty":{"envs":["gpicture"],"deps":["ifpdf.sty","xkeyval.sty","xifthen.sty","calc.sty","trig.sty","environ.sty","xcolor.sty","graphicx.sty","auto-pst-pdf.sty"],"cmds":["gasset","gsavepicture","gusepicture","node","rpnode","imark","fmark","rmark","nodelabel","drawedge","drawloop","drawqbedge","drawqbpedge","drawbcedge","drawbpedge","drawline","drawcurve","drawpolygon","drawccurve","drawcircle","drawarc","drawrect","drawoval","drawrpolygon","drawqbezier","drawcbezier","drawsnake","ifgastexslide","gastexslidetrue","gastexslidefalse","cbezier","cbeziervector","compatiblegastexun","compatiblepspictpg","drawcbezieredge","drawcbeziertrans","drawcircledvertex","drawcurvededge","drawcurvedtrans","drawdisk","drawfinalstate","drawinitialstate","drawqbezieredge","drawqbeziertrans","drawrepeatedstate","drawstate","drawtrans","drawundirectedcbezieredge","drawundirectedcurvededge","drawundirectededge","drawundirectedloop","drawundirectedqbezieredge","drawvector","drawvertex","letstate","letvertex","pcolor","pictcolor","qbeziervector","setedgedecal","setedgelabelskip","setloopdiam","setmaxbezier","setnbptbezier","setprecision","setprofcurve","setpsdash","setpsgray","setrepeatedstatediam","setstatediam","settransdecal","settranslabelskip","setvertexdiam"]}
-,
-"gates.sty":{"envs":{},"deps":["texapi.sty"],"cmds":["gates"]}
-,
-"gatherenum.sty":{"envs":{},"deps":["enumitem.sty","xparse.sty"],"cmds":{}}
-,
-"gb4e.sty":{"envs":["exe","xlist","xlista","xlisti","xlistn","xlistA","xlistI","qlist"],"deps":["cgloss4e.sty"],"cmds":["exewidth","ex","judgewidth","exi","exr","exp","sn","obar","mbar","ibar","iibar","primebars","lb","rb","th","al","be","ga","de","noautomath","automath","attop","atcenter","fillright","fillleft","arrowalign","pu","pd","lf","link","spacer","centr","prmbrs","spec","ct","tx","indexgroupmark","theexx","thexnumi","thexnumii","thexnumiii","thexnumiv","therxnumi","therxnumii","therxnumiii","therxnumiv","bu","ea","z","lcommentsep","lcomment","leaderfill","pointerup","pointerdown","elevenex","pijl","bb","boven","bovenop","vl","gbVersion"]}
-,
-"gbt7714.sty":{"envs":{},"deps":["natbib.sty","url.sty"],"cmds":{}}
-,
-"gchords.sty":{"envs":{},"deps":{},"cmds":["chord","chords","upchord","strings","numfrets","chordsize","fingerfont","namefont","fretposfont","dampsymbol","fatsiz","normalsiz","fingsiz","fatfingsiz","topfretsiz","xoff","yoff","smallchords","mediumchords","ascale","attest","basenote","btest","chline","chtext","cotest","cpos","curfing","curnote","cvline","cwidth","dlen","etest","fatfingnote","fingnote","fnow","fnum","fpos","ftest","ghor","Ktest","Lnow","Ltest","mylength","myvpos","needsize","notelabel","ntest","opensymbol","otest","pnow","prevpos","ptest","putdots","ReturnAfterFi","snow","stdnote","stest","stpos","topbar","topline","truewidth","ttest","xtest"]}
-,
-"gckanbun.sty":{"envs":{},"deps":["ifluatex.sty","ifuptex.sty","keyval.sty"],"cmds":["gckanbunruby","gckanbunokurigana","gckanbunkaeriten","ruby","okurigana","kaeriten","kanbunruby","kanbunokurigana","kanbunkaeriten","zw","zh"]}
-,
-"genealogytree.sty":{"envs":["genealogypicture","exgenealogypicture","autosizetikzpicture","autosizetikzpicture*","gtrprintlist","gtreventlist","gtrinfolist"],"deps":["tcolorbox.sty","tcolorboxlibraryskins.sty","tcolorboxlibraryfitting.sty","tcolorboxlibraryexternal.sty","tikzlibraryfit.sty","array.sty","tabularx.sty","tcolorboxlibrarybreakable.sty"],"cmds":["gtruselibrary","genealogytree","genealogytreeinput","gtrset","gtrkeysappto","gtrkeysgappto","gtrnodetype","gtrnodeid","gtrnodenumber","gtrnodefamily","gtrnodelevel","gtrifnodeid","gtrifgnode","gtrifcnode","gtrifpnode","gtrifroot","gtrifleaf","gtrifchild","gtrifparent","gtrifleafchild","gtrifleafparent","gtrautosizebox","gtrsetoptionsfornode","gtrsetoptionsforfamily","gtrsetoptionsforsubtree","gtrignorenode","gtrignoresubtree","gtrBoxContent","gtrNodeMinWidth","gtrNodeMaxWidth","gtrNodeMinHeight","gtrNodeMaxHeight","gtrNodeBoxOptions","gtrDBname","gtrDBshortname","gtrDBsex","gtrDBcomment","gtrDBprofession","gtrDBimage","gtrDBimageopt","gtrDBviewport","gtrDBuuid","gtrDBkekule","gtrDBrelation","gtrDBrelationship","gtrDBage","gtrParseDate","gtrDeclareDatabaseFormat","gtrPrintDatabase","gtrPrintName","pref","surn","nick","gtrPrintDate","gtrifdatedefined","gtrPrintPlace","gtrifplacedefined","gtrPrintEvent","gtrifeventdefined","gtrPrintEventPrefix","gtrlistseparator","gtrPrintComment","gtrifcommentdefined","gtrPrintProfession","gtrifprofessiondefined","gtrPrintSex","gtriffemale","gtrifmale","gtrifimagedefined","gtrincludeDBimage","gtrPrintAge","gtrifagedefined","gtredgeset","gtrSymbolsSetCreate","gtrSymbolsSetCreateSelected","gtrSymbolsSetDraw","gtrsymBorn","gtrsymBornoutofwedlock","gtrsymStillborn","gtrsymDiedonbirthday","gtrsymBaptized","gtrsymEngaged","gtrsymMarried","gtrsymDivorced","gtrsymPartnership","gtrsymDied","gtrsymKilled","gtrsymBuried","gtrsymFuneralurn","gtrsymFloruit","gtrsymFemale","gtrsymMale","gtrsymNeuter","gtrSymbolsRecordReset","gtrSymbolsFullLegend","gtrSymbolsLegend","gtrlanguagename","gtrloadlanguage","gtrparserdebug","gtrparserdebuginput","gtrprocessordebug","gtrprocessordebuginput","gtrdebugdrawcontour","gtrparent","gtrDrawSymbolicPortrait","gtrfanchart","gtrfanchartinput","gtrcomplemented","gtrnewstack","gtrstacksize","gtrstackpush","gtrstackpop","gtrstackpopto","gtrstackpeek","gtrstackpeekto","gtrmakestack","gtrpkgprefix"]}
-,
-"gensymb.sty":{"envs":{},"deps":{},"cmds":["degree","celsius","perthousand","ohm","micro"]}
-,
-"gentium.sty":{"envs":{},"deps":["xkeyval.sty"],"cmds":{}}
-,
-"gentiumbook.sty":{"envs":{},"deps":["xkeyval.sty"],"cmds":{}}
-,
-"gentombow.sty":{"envs":{},"deps":["etoolbox.sty"],"cmds":["settombowbannerfont","settombowbanner","settombowbleed","settombowcolor","settombowwidth","maketombowbox","stockwidth","stockheight","hour","minute","iftombow","tombowtrue","tombowfalse","iftombowdate","tombowdatetrue","tombowdatefalse"]}
-,
-"geometry.sty":{"envs":{},"deps":{},"cmds":["geometry","newgeometry","restoregeometry","savegeometry","loadgeometry"]}
-,
-"geradwp.cls":{"envs":["GDabstract","GDacknowledgements","GDaffillist","GDauthlist","GDemaillist","GDpagetitre","GDtitlepage","proof"],"deps":["ifthen.sty","amssymb.sty","amsmath.sty","amsthm.sty","amsfonts.sty","latexsym.sty","graphicx.sty","mathrsfs.sty","geometry.sty","fancyhdr.sty","booktabs.sty","multirow.sty","array.sty","caption.sty","xcolor.sty","enumitem.sty","float.sty"],"cmds":["GDabstracts","GDaffilitem","GDannee","GDarticlestart","GDauteursCopyright","GDauteursCourts","GDauthitem","GDauthorsCopyright","GDauthorsShort","GDcoverpage","GDcoverpagewhitespace","GDemailitem","GDmois","GDmonth","GDnumber","GDnumero","GDpageCouverture","GDpostpubcitation","GDrefsep","GDrevised","GDsupplementname","GDtitle","GDtitre","GDyear"]}
-,
-"german.sty":{"envs":{},"deps":{},"cmds":{}}
-,
-"getfiledate.sty":{"envs":{},"deps":["etextools.sty","ltxnew.sty","xkeyval.sty","xcolor.sty","amssymb.sty","boxedminipage.sty"],"cmds":["getfiledate"]}
-,
-"getitems.sty":{"envs":{},"deps":["environ.sty","trimspaces.sty"],"cmds":["gatheritems","thenumgathereditems","gathereditem","loopthroughitemswithcommand","thecurrentitemnumber","ifgatherbeginningofloop","gatherbeginningoflooptrue","gatherbeginningofloopfalse"]}
-,
-"getmap.sty":{"envs":{},"deps":["xkeyval.sty","stringenc.sty","ifthen.sty","shellesc.sty","ifxetex.sty"],"cmds":["getmap"]}
-,
-"gettitlestring.sty":{"envs":{},"deps":["kvoptions.sty"],"cmds":["GetTitleStringSetup","GetTitleString","GetTitleStringExpand","GetTitleStringNonExpand","GetTitleStringResult","GetTitleStringDisableCommands"]}
-,
-"gfdl.sty":{"envs":{},"deps":["float.sty","expkv-def.sty","expkv-opt.sty","csquotes.sty","hyperref.sty","hyperxmp.sty"],"cmds":["gfdlcopyrightdescription","gfdlcopyrightableyears","gfdlcopyrightholders","printgfdlnotice","printgfdltext"]}
-,
-"gfsartemisia-euler.sty":{"envs":{},"deps":["euler.sty"],"cmds":["artemisiatextparagraph","artemisiatextparagraphalt","careof","numero","estimated","whitebullet","textlozenge","eurocurrency","interrobang","yencurrency","stirling","stirlingoldstyle","greekfemfirst","onehalf","onethird","twothirds","onefifth","twofifths","threefifths","fourfifths","onesixth","fivesixths","oneeighth","threeeighths","fiveeighths","seveneighths","textgreek","scslshape","textscsl","tabnums","textparagraphalt","textfrac","artemisiaeulertextdagger","artemisiaeulertextdaggerdbl","trademark","k"]}
-,
-"gfsartemisia.sty":{"envs":{},"deps":["txfonts.sty"],"cmds":["artemisiatextparagraph","artemisiatextparagraphalt","careof","numero","estimated","whitebullet","textlozenge","eurocurrency","interrobang","yencurrency","stirling","stirlingoldstyle","greekfemfirst","onehalf","onethird","twothirds","onefifth","twofifths","threefifths","fourfifths","onesixth","fivesixths","oneeighth","threeeighths","fiveeighths","seveneighths","textgreek","scslshape","textscsl","tabnums","textparagraphalt","textfrac","artemisiatextdagger","artemisiatextdaggerdbl","trademark","k"]}
-,
-"gfsbaskerville.sty":{"envs":["gfsbaskerville"],"deps":{},"cmds":["textgfsbaskerville","ou","ouox","oudas","oupsil","oupsilvar","oudasox","oupsilox","ouper","oupsilper","oudasper","oudier","oudierox","oudiervar","kai","pialt","dagger","gammaalt","oulig"]}
-,
-"gfsbodoni.sty":{"envs":["bodoni"],"deps":{},"cmds":["textbodoni","scslshape","textscsl","tabnums","textfrac","careof","numero","estimated","textlozenge","eurocurrency","yencurrency","bodonitextparagraph","whitebullet","interrobang","stirling","stirlingoldstyle","onehalf","onethird","twothirds","k","trademark"]}
-,
-"gfscomplutum.sty":{"envs":["complutum"],"deps":{},"cmds":["taualt","textcomplutum"]}
-,
-"gfsdidot.sty":{"envs":{},"deps":["ifthen.sty","pxfonts.sty","textcomp.sty"],"cmds":["scslshape","uishape","textgreek","textui","textscsl","tabnums","textfrac","textparagraphalt","careof","numero","estimated","whitebullet","textlozenge","eurocurrency","interrobang","yencurrency","onehalf","onethird","twothirds","lambdadbl","guillemotleft","guillemotright","guilsinglleft","guilsinglright","k"]}
-,
-"gfsneohellenic.sty":{"envs":["neohellenic"],"deps":{},"cmds":["textneohellenic","textscsl","scslshape","tabnums","neohellenictextparagraph","careof","numero","estimated","whitebullet","textlozenge","eurocurrency","interrobang","yencurrency","stirling","stirlingoldstyle","textfrac","onehalf","onethird","twothirds","k","trademark","deltaalt","Epsilonalt","zetaalt","Xionealt","Xitwoalt","Omegaalt"]}
-,
-"gfsneohellenicot.sty":{"envs":{},"deps":["fontspec.sty","unicode-math.sty"],"cmds":["nrightrightarrows","nleftleftarrows","smallprod","smallcoprod","smallsum","Bigint","biggint","Biggint","bigggint"]}
-,
-"ghab.sty":{"envs":{},"deps":["biditools.sty"],"cmds":["darghab"]}
-,
-"ghsystem.sty":{"envs":{},"deps":["chemmacros.sty","translations.sty","siunitx.sty","graphicx.sty","longtable.sty","ifpdf.sty"],"cmds":["ghssetup","ghs","ghspic","ghslistall","GHSfahrenheit","GHScelsius","GHSkilogram","GHSpounds"]}
-,
-"gillcm.sty":{"envs":{},"deps":{},"cmds":["gishape","gushape"]}
-,
-"gillius.sty":{"envs":{},"deps":["ifxetex.sty","ifluatex.sty","textcomp.sty","xkeyval.sty","fontenc.sty","fontaxes.sty"],"cmds":["gillius","gilliuscondensed","gilliusfamily","gilliuscondensedfamily"]}
-,
-"gillius2.sty":{"envs":{},"deps":["ifxetex.sty","ifluatex.sty","textcomp.sty","xkeyval.sty","fontenc.sty","fontaxes.sty"],"cmds":["gilliustwo","gilliustwocondensed","gilliusfamily","gilliuscondensedfamily"]}
-,
-"gincltex.sty":{"envs":{},"deps":["adjustbox.sty"],"cmds":{}}
-,
-"gindex.sty":{"envs":{},"deps":{},"cmds":["indexitem","indexnoitem","indexsubitem","indexsubsubitem","indexitemhang","indexpreamble","indexpostamble","indexskip","indexheading","indexrangesep","indexpagessep","indexspecial","addindexitem","addindexsubitem","addindexsubsubitem","addindexheading","addindexskip","indexflushitem","theindexsubitems"]}
-,
-"gitfile-info.sty":{"envs":["gfiInfoBox"],"deps":["ifthen.sty","currfile.sty","xparse.sty","hyperref.sty","tcolorbox.sty","tcolorboxlibraryfitting.sty","tcolorboxlibraryskins.sty","tcolorboxlibrarybreakable.sty"],"cmds":["gfiGetDay","gfiGetMonth","gfiGetYear","gfiGetHour","gfiGetMin","gfiGetAuthorName","gfiGetAuthorMail","gfiGetDate","gfiGetCommit","gfiGetCommitAbr","gfiInfo","gfiInclude","gfiInput","gfiSetDate","gfiSetAuthor","gfiSetCommit","gfiCurrentConfig","gfiInitInc","gfiInitJob"]}
-,
-"gitinfo2.sty":{"envs":{},"deps":["etoolbox.sty","xstring.sty","kvoptions.sty","eso-pic.sty"],"cmds":["gitReferences","gitBranch","gitDirty","gitAbbrevHash","gitHash","gitAuthorName","gitAuthorEmail","gitAuthorDate","gitAuthorIsoDate","gitAuthorUnixDate","gitCommitterName","gitCommitterEmail","gitCommitterDate","gitCommitterIsoDate","gitCommitterUnixDate","gitVtag","gitVtags","gitVtagn","gitFirstTagDescribe","gitRel","gitRels","gitReln","gitRoff","gitTags","gitDescribe","gitMark","gitMarkFormat","gitMarkPref","gitWrapEmail"]}
-,
-"gitlog.sty":{"envs":{},"deps":["etoolbox.sty","kvoptions.sty","biblatex.sty"],"cmds":["printGitLog"]}
-,
-"gitstatus.sty":{"envs":{},"deps":["kvoptions.sty","catchfile.sty","xstring.sty","xcolor.sty","xwatermark.sty"],"cmds":["gitdir","gitcommit","gitbranch"]}
-,
-"gitver.sty":{"envs":{},"deps":["hyperref.sty","catchfile.sty","pdftexcmds.sty","datetime2.sty","ifthen.sty","xparse.sty","ifluatex.sty","shellesc.sty"],"cmds":["gitVer","versionBox","getenv"]}
-,
-"globalvals.sty":{"envs":{},"deps":{},"cmds":["defVal","useVal"]}
-,
-"glosmathtools.sty":{"envs":["acronymlang"],"deps":["amsmath.sty","amsfonts.sty","etoolbox.sty","glossaries.sty","glossaries-babel.sty","glossaries-compatible-207.sty"],"cmds":["qtmark","sbu","newglosentrymath","glscatnamefmt","glsac","glsub","glsubs","glsvi","glsvisub","glslang","setacronymlang","glsentrydescsec","Glsentrydescsec","glsdescsec","Glsdescsec","GLSdescsec","glosstyledesc","glsentrydot","glsentryddot","glsentrybar","glsentryhat","glsentryvec","glsentrytilde","glsshowtarget","glsshowtargetouter","glsshowtargetfont","glsshowaccsupp","printsymbols","printnumbers","newterm","printindex","printacronyms","acs","Acs","acsp","Acsp","acl","Acl","aclp","Aclp","acf","Acf","acfp","Acfp","ac","Ac","acp","Acp","GlsSetXdyLanguage","GlsSetXdyCodePage","GlsAddXdyCounters","GlsAddXdyAttribute","GlsAddXdyLocation","GlsSetXdyLocationClassOrder","GlsSetXdyMinRangeLength","GlsSetXdyFirstLetterAfterDigits","GlsSetXdyNumberGroupOrder","GlsAddLetterGroup","GlsAddSortRule","GlsAddXdyAlphabet","GlsAddXdyStyle","GlsSetXdyStyles"]}
-,
-"glossaries-accsupp.sty":{"envs":{},"deps":["glossaries.sty","accsupp.sty","translator.sty","tracklang.sty","glossaries-babel.sty"],"cmds":["printsymbols","printnumbers","newterm","printindex","printacronyms","acs","Acs","acsp","Acsp","acl","Acl","aclp","Aclp","acf","Acf","acfp","Acfp","ac","Ac","acp","Acp","GlsAddXdyStyle","GlsSetXdyStyles","GlsSetXdyLanguage","GlsSetXdyCodePage","GlsAddXdyCounters","GlsAddXdyAttribute","GlsAddXdyLocation","GlsSetXdyLocationClassOrder","GlsSetXdyMinRangeLength","GlsSetXdyFirstLetterAfterDigits","GlsSetXdyNumberGroupOrder","GlsAddLetterGroup","GlsAddSortRule","GlsAddXdyAlphabet","glsdefaultshortaccess","glsaccsupp","xglsaccsupp","glsfieldaccsupp","xglsfieldaccsupp","glsshortaccsupp","glsshortplaccsupp","glsaccessibility","glsentryaccess","glsentrytextaccess","glsentryfirstaccess","glsentrypluralaccess","glsentryfirstpluralaccess","glsentrysymbolaccess","glsentrysymbolpluralaccess","glsentrydescaccess","glsentrydescpluralaccess","glsentryshortaccess","glsentryshortpluralaccess","glsentrylongaccess","glsentrylongpluralaccess","glsentryuseriaccess","glsentryuseriiaccess","glsentryuseriiiaccess","glsentryuserivaccess","glsentryuservaccess","glsentryuserviaccess","glsnameaccessdisplay","glstextaccessdisplay","glspluralaccessdisplay","glsfirstaccessdisplay","glsfirstpluralaccessdisplay","glssymbolaccessdisplay","glssymbolpluralaccessdisplay","glsdescriptionaccessdisplay","glsdescriptionpluralaccessdisplay","glsshortaccessdisplay","glsshortpluralaccessdisplay","glslongaccessdisplay","glslongpluralaccessdisplay","glsuseriaccessdisplay","glsuseriiaccessdisplay","glsuseriiiaccessdisplay","glsuserivaccessdisplay","glsuservaccessdisplay","glsuserviaccessdisplay","glsaccessdisplay","accsuppglossaryentryfield","accsuppglossarysubentryfield","showglonameaccess","showglotextaccess","showglopluralaccess","showglofirstaccess","showglosymbolaccess","showglosymbolpluralaccess","showglodescaccess","showglodescpluralaccess","showgloshortaccess","showgloshortpluralaccess","showglolongaccess","showglolongpluralaccess"]}
-,
-"glossaries-extra-bib2gls.sty":{"envs":{},"deps":{},"cmds":["dgls","dGls","dGLS","dglspl","dGlspl","dGLSpl","dglslink","dGlslink","dglsdisp","dGlsdisp","dglsfield","dGlsfield","dGLSfield","newdglsfield","newdglsfieldlike","glsxtrmultientryadjustedname","Glsxtrmultientryadjustedname","GlsXtrmultientryadjustedname","GLSxtrmultientryadjustedname","glsxtrmultientryadjustednamesep","glsxtrmultientryadjustednamepresep","glsxtrmultientryadjustednamepostsep","glsxtrmultientryadjustednamefmt","Glsxtrmultientryadjustednamefmt","GlsXtrmultientryadjustednamefmt","GLSxtrmultientryadjustednamefmt","glsxtrmultientryadjustednameother","Glsxtrmultientryadjustednameother","GlsXtrmultientryadjustednameother","GLSxtrmultientryadjustednameother","glsxtrprovidecommand","glsrenewcommand","GlsXtrIndexCounterLink","GlsXtrDualBackLink","GlsXtrDualField","glsxtrSetWidest","glsxtrSetWidestFallback","glsxtrdisplaysupploc","glsxtrmultisupplocation","glsxtrdisplaylocnameref","glsxtrnamereflink","glsxtrfmtinternalnameref","glsxtrfmtexternalnameref","glsxtrnameloclink","glshex","glscapturedgroup","GlsXtrIfHasNonZeroChildCount","GlsXtrBibTeXEntryAliases","GlsXtrProvideBibTeXFields","glsxtrcontrolrules","glsxtrspacerules","glsxtrnonprintablerules","glsxtrcombiningdiacriticrules","glsxtrcombiningdiacriticIrules","glsxtrcombiningdiacriticIIrules","glsxtrcombiningdiacriticIIIrules","glsxtrcombiningdiacriticIVrules","glsxtrhyphenrules","glsxtrgeneralpuncrules","glsxtrgeneralpuncIrules","glsxtrcurrencyrules","glsxtrgeneralpuncIIrules","glsxtrdigitrules","glsxtrBasicDigitrules","glsxtrSubScriptDigitrules","glsxtrSuperScriptDigitrules","glsxtrfractionrules","glsxtrGeneralLatinIrules","glsxtrGeneralLatinIIrules","glsxtrGeneralLatinIIIrules","glsxtrGeneralLatinIVrules","glsxtrGeneralLatinVrules","glsxtrGeneralLatinVIrules","glsxtrGeneralLatinVIIrules","glsxtrGeneralLatinVIIIrules","glsxtrLatinA","glsxtrLatinE","glsxtrLatinH","glsxtrLatinK","glsxtrLatinI","glsxtrLatinL","glsxtrLatinM","glsxtrLatinN","glsxtrLatinO","glsxtrLatinP","glsxtrLatinS","glsxtrLatinT","glsxtrLatinX","glsxtrLatinEszettSs","glsxtrLatinEszettSz","glsxtrLatinEth","glsxtrLatinThorn","glsxtrLatinAELigature","glsxtrLatinOELigature","glsxtrLatinOslash","glsxtrLatinLslash","glsxtrLatinWynn","glsxtrLatinInsularG","glsxtrLatinSchwa","glsxtrLatinAA","glsxtrMathGreekIrules","glsxtrMathGreekIIrules","glsxtrMathUpGreekIrules","glsxtrMathUpGreekIIrules","glsxtrMathItalicGreekIrules","glsxtrMathItalicGreekIIrules","glsxtrMathItalicUpperGreekIrules","glsxtrMathItalicUpperGreekIIrules","glsxtrMathItalicLowerGreekIrules","glsxtrMathItalicLowerGreekIIrules","glsxtrMathItalicPartial","glsxtrMathItalicNabla","Alpha","Beta","Epsilon","Zeta","Eta","Iota","Kappa","Mu","Nu","Omicron","Rho","Tau","Chi","Digamma","omicron","CurrentTrackedScript","glsxtrMathItalicAlpha","glsxtrMathItalicBeta","glsxtrMathItalicChi","glsxtrMathItalicDelta","glsxtrMathItalicEpsilon","glsxtrMathItalicEta","glsxtrMathItalicGamma","glsxtrMathItalicIota","glsxtrMathItalicKappa","glsxtrMathItalicLambda","glsxtrMathItalicMu","glsxtrMathItalicNu","glsxtrMathItalicOmega","glsxtrMathItalicOmicron","glsxtrMathItalicPhi","glsxtrMathItalicPi","glsxtrMathItalicPsi","glsxtrMathItalicRho","glsxtrMathItalicSigma","glsxtrMathItalicTau","glsxtrMathItalicTheta","glsxtrMathItalicUpsilon","glsxtrMathItalicXi","glsxtrMathItalicZeta","glsxtrUpAlpha","glsxtrUpBeta","glsxtrUpChi","glsxtrUpDelta","glsxtrUpDigamma","glsxtrUpEpsilon","glsxtrUpEta","glsxtrUpGamma","glsxtrUpIota","glsxtrUpKappa","glsxtrUpLambda","glsxtrUpMu","glsxtrUpNu","glsxtrUpOmega","glsxtrUpOmicron","glsxtrUpPhi","glsxtrUpPi","glsxtrUpPsi","glsxtrUpRho","glsxtrUpSigma","glsxtrUpTau","glsxtrUpTheta","glsxtrUpUpsilon","glsxtrUpXi","glsxtrUpZeta","IfTeXParserLib","glshashchar","glsxtrrecentanchor","glsxtrlocationanchor","glsxtractualanchor","glsxtrsetactualanchor","glsxtrtitlednamereflink","glsxtrequationlocfmt","glsxtrwrglossarylocfmt","glsxtraddlabelprefix","glsxtrprependlabelprefix","glsxtrclearlabelprefixes","glsxtrifinlabelprefixlist","ifGlsXtrPrefixLabelFallbackLast","GlsXtrPrefixLabelFallbackLasttrue","GlsXtrPrefixLabelFallbackLastfalse","dglsfieldcurrentfieldlabel","dglsfieldfallbackfieldlabel","dglsfieldactualfieldlabel","glsxtrIgnorableRules","glsxtrGeneralInitRules","glsxtrgeneralpuncmarksrules","glsxtrgeneralpuncaccentsrules","glsxtrgeneralpuncquoterules","glsxtrgeneralpuncbracketrules","glsxtrgeneralpuncsignrules","glsxtrGeneralLatinAtoMrules","glsxtrGeneralLatinNtoZrules","glsxtrGeneralLatinAtoGrules","glsxtrGeneralLatinHtoMrules","glsxtrGeneralLatinNtoSrules","glsxtrGeneralLatinTtoZrules"]}
-,
-"glossaries-extra-stylemods.sty":{"envs":{},"deps":["glossary-inline.sty","glossary-list.sty","glossary-tree.sty","glossary-mcols.sty","glossary-long.sty","glossary-longragged.sty","glossary-longbooktabs.sty","glossary-super.sty","glossary-superragged.sty","glossary-bookindex.sty","glossary-longextra.sty","glossary-topic.sty","glossary-table.sty"],"cmds":["glsxtrprelocation","glslistprelocation","glslistchildprelocation","glslistdesc","glslistitem","glsaltlistitem","glslistgroupheaderitem","glslistgroupafterheader","glslistchildpostlocation","glslistgroupskip","glstreedefaultnamefmt","glstreegroupskip","glstreegroupheaderskip","glstreePreHeader","glsalttreepredesc","glsalttreechildpredesc","glstreeprelocation","glstreechildprelocation","glstreenonamedesc","glstreenonamesymbol","glstreenonamechilddesc","glstreedesc","glstreesymbol","glstreechilddesc","glstreenonameDescLoc","glstreenonameChildDescLoc","glstreechildsymbol","glstreeDescLoc","glstreeChildDescLoc","glstreeNoDescSymbolPreLocation","glstreesubgroupitem","gglssetwidest","eglssetwidest","xglssetwidest","glsupdatewidest","gglsupdatewidest","eglsupdatewidest","xglsupdatewidest","glsgetwidestname","glsgetwidestsubname","glsFindWidestTopLevelName","glsFindWidestUsedTopLevelName","glsFindWidestUsedAnyName","glsFindWidestAnyName","glsFindWidestUsedLevelTwo","glsFindWidestLevelTwo","glsFindWidestUsedAnyNameSymbol","glsFindWidestAnyNameSymbol","glsFindWidestUsedAnyNameSymbolLocation","glsFindWidestAnyNameSymbolLocation","glsFindWidestUsedAnyNameLocation","glsFindWidestAnyNameLocation","glsxtralttreeSymbolDescLocation","glsxtralttreeSubSymbolDescLocation","glsxtralttreeInit","glsxtrAltTreeIndent","glsxtrAltTreePar","glsxtrAltTreeSetHangIndent","glsxtrAltTreeSetSubHangIndent","glsxtrComputeTreeIndent","glsxtrComputeTreeSubIndent","glsxtrtreechildpredesc","glsxtrtreepredesc","glsxtrtreetopindent","glsindexingsetting","glsalttreesubgroupheader"]}
-,
-"glossaries-extra.sty":{"envs":["printunsrtglossarywrap"],"deps":["glossaries.sty","glossaries-extra-stylemods.sty","glossary-inline.sty","glossary-mcols.sty","glossary-longragged.sty","glossary-longbooktabs.sty","glossary-superragged.sty","glossary-bookindex.sty","glossary-longextra.sty","glossary-topic.sty","glossary-table.sty","glossaries-prefix.sty","glossaries-accsupp.sty","glossaries-extra-bib2gls.sty","translator.sty","tracklang.sty","glossaries-babel.sty"],"cmds":["glossariesextrasetup","printabbreviations","printunsrtabbreviations","abbreviationsname","printsymbols","glsxtrnewsymbol","printunsrtsymbols","glsxtrpostdescsymbol","printnumbers","glsxtrnewnumber","printunsrtnumbers","glsxtrpostdescnumber","newterm","printindex","printunsrtindex","glsxtrpostdescindex","printacronyms","printunsrtacronyms","pglsxtrshort","Pglsxtrshort","PGLSxtrshort","pglsxtrshortpl","Pglsxtrshortpl","PGLSxtrshortpl","pglsxtrlong","Pglsxtrlong","PGLSxtrlong","pglsxtrlongpl","Pglsxtrlongpl","PGLSxtrlongpl","pglsfmtshort","Pglsfmtshort","PGLSfmtshort","pglsfmtshortpl","Pglsfmtshortpl","PGLSfmtshortpl","pglsfmtlong","Pglsfmtlong","PGLSfmtlong","pglsfmtlongpl","Pglsfmtlongpl","PGLSfmtlongpl","Pglsxtrtitleshort","Pglsxtrtitleshortpl","Pglsxtrtitlelong","Pglsxtrtitlelongpl","mpgls","mpglspl","mpglsmainpl","Mpgls","Mpglspl","Mpglsmainpl","MPGls","MPGlspl","MPGlsmainpl","MPGLS","MPGLSpl","MPGLSmainpl","pglsprefix","Pglsprefix","PGLSprefix","acs","Acs","ACS","acsp","Acsp","ACSP","acl","Acl","ACL","aclp","Aclp","ACLP","acf","Acf","ACF","acfp","Acfp","ACFP","ac","Ac","AC","acp","Acp","ACP","ab","abp","as","asp","al","alp","af","afp","Ab","Abp","As","Asp","Al","Alp","Af","Afp","AB","ABP","AS","ASP","AL","ALP","AF","AFP","newabbr","newentry","newsym","newnum","GlsAddXdyStyle","GlsSetXdyStyles","GlsSetXdyLanguage","GlsSetXdyCodePage","GlsAddXdyCounters","GlsAddXdyAttribute","GlsAddXdyLocation","GlsSetXdyLocationClassOrder","GlsSetXdyMinRangeLength","GlsSetXdyFirstLetterAfterDigits","GlsSetXdyNumberGroupOrder","GlsAddLetterGroup","GlsAddSortRule","GlsAddXdyAlphabet","glsxtrundeftag","glsxtrundefaction","glsxtrsetbibglsaux","thewrglossary","glsxtrwrglossmark","glsxtrwrglosscountermark","glsxtrshowtargetouter","glsxtrshowtargetinner","glsshowtargetinnersymleft","glsxtrshowtargetsymbolleft","glsshowtargetinnersymright","glsxtrshowtargetsymbolright","longnewglossaryentry","glsxtrpostlongdescription","glsxtrprovidestoragekey","glsxtrifkeydefined","glsxtraliashook","glsxtrdeffield","glsxtredeffield","glsxtrapptocsvfield","glsxtrfieldlistadd","glsxtrfieldlistgadd","glsxtrfieldlisteadd","glsxtrfieldlistxadd","glsxtrsetfieldifexists","GlsXtrSetField","gGlsXtrSetField","eGlsXtrSetField","xGlsXtrSetField","GlsXtrLetField","csGlsXtrLetField","GlsXtrLetFieldToField","newabbreviation","glsxtrabbrvpluralsuffix","glsxtrabbrvtype","glsxtrnewabbrevpresetkeyhook","newabbreviationhook","glsxtrshort","Glsxtrshort","GLSxtrshort","glsxtrshortpl","Glsxtrshortpl","GLSxtrshortpl","glsxtrlong","Glsxtrlong","GLSxtrlong","glsxtrlongpl","Glsxtrlongpl","GLSxtrlongpl","glsxtrfull","Glsxtrfull","GLSxtrfull","glsxtrfullpl","Glsxtrfullpl","GLSxtrfullpl","glsxtrsetlongfirstuse","glsxtrsetupfulldefs","glsxtrfullsaveinsert","GlsXtrEnableInitialTagging","glsxtrtagfont","setabbreviationstyle","ifglsxtrinsertinside","glsxtrinsertinsidetrue","glsxtrinsertinsidefalse","glsxtrparen","glsxtrfullsep","glsabbrvdefaultfont","glsfirstabbrvdefaultfont","glsxtrdefaultrevert","glslongdefaultfont","glsfirstlongdefaultfont","glsxtrlongshortname","glsxtrlongshortdescsort","glsxtrlongshortdescname","glsxtrshortlongname","glsxtrshortlongdescsort","glsxtrshortlongdescname","glsxtruserfield","glsxtruserparensep","glsxtruserfieldfmt","glsabbrvuserfont","glsfirstabbrvuserfont","glsxtrusersuffix","glslonguserfont","glsfirstlonguserfont","glsabbrvscuserfont","glsfirstabbrvscuserfont","glsxtrscuserrevert","glsxtrscusersuffix","glsuserdescription","glsxtruserparen","GLSxtruserparen","glsxtrlongshortuserdescname","glsxtrlongshortscusername","glsxtrlongshortscuserdescname","glsxtrshortlonguserdescname","glsxtruserlongshortformat","Glsxtruserlongshortformat","GLSxtruserlongshortformat","glsxtruserlongshortplformat","Glsxtruserlongshortplformat","GLSxtruserlongshortplformat","glsxtrusershortlongformat","Glsxtrusershortlongformat","GLSxtrusershortlongformat","glsxtrusershortlongplformat","Glsxtrusershortlongplformat","GLSxtrusershortlongplformat","glsxtrusershortformat","glsxtrusershortplformat","GLSxtrusershortformat","GLSxtrusershortplformat","glsxtrpostusershortformat","glsxtruserlongformat","GLSxtruserlongformat","glsxtruserlongplformat","GLSxtruserlongplformat","glsxtrpostuserlongformat","glsxtrfootnotename","glsxtrfootnotedescname","glsxtrfootnotedescsort","glslongfootnotefont","glsfirstlongfootnotefont","glsxtrabbrvfootnote","glsxtrfootnotelongformat","glsxtrfootnotelongplformat","glsxtrpostfootnotelongformat","glsxtrshortnolongname","glsxtrshortdescname","glsxtrlongnoshortdescname","glsxtrlongnoshortname","glsabbrvhyphenfont","glsfirstabbrvhyphenfont","glslonghyphenfont","glsfirstlonghyphenfont","glsxtrhyphensuffix","glsxtrlonghyphenshortsort","glsxtrshorthyphenlongsort","glsxtrlonghyphennoshortsort","glsxtrlonghyphennoshortdescsort","glsxtrlonghyphenshort","GLSxtrlonghyphenshort","glsxtrlonghyphennoshort","GLSxtrlonghyphennoshort","glsxtrlonghyphen","xpglsxtrposthyphenshort","glsxtrposthyphenshort","GLSxtrposthyphenshort","glsxtrposthyphenshortpl","GLSxtrposthyphenshortpl","xpglsxtrposthyphensubsequent","glsxtrposthyphensubsequent","GLSxtrposthyphensubsequent","glsxtrshorthyphenlong","GLSxtrshorthyphenlong","glsxtrshorthyphen","xpglsxtrposthyphenlong","glsxtrposthyphenlong","GLSxtrposthyphenlong","glsxtrposthyphenlongpl","GLSxtrposthyphenlongpl","glsabbrvonlyfont","glsfirstabbrvonlyfont","glslongonlyfont","glsfirstlongonlyfont","glsxtronlysuffix","glsabbrvsconlyfont","glsfirstabbrvsconlyfont","glsxtrsconlyrevert","glsxtrsconlysuffix","glsxtronlyname","glsxtronlydescname","glsxtronlydescsort","glsxtrsconlyname","glsxtrsconlydescname","glsxtrsconlydescsort","glsabbrvscfont","glsfirstabbrvscfont","glsxtrscrevert","glsxtrscsuffix","glsabbrvsmfont","glsfirstabbrvsmfont","glsxtrsmrevert","glsxtrsmsuffix","glsabbrvemfont","glsfirstabbrvemfont","glsxtremrevert","glsxtremsuffix","glslongemfont","glsfirstlongemfont","glssetabbrvfmt","glsuseabbrvfont","glsuselongfont","GlsXtrUseAbbrStyleSetup","GlsXtrUseAbbrStyleFmts","xpglsxtrpostabbrvfootnote","glsxtrpostabbrvfootnote","glsxtrifhyphenstart","GlsXtrWarnDeprecatedAbbrStyle","newabbreviationstyle","renewabbreviationstyle","letabbreviationstyle","glscategorylabel","glsxtrorgkeylist","glsxtrorgshort","glsshortpltok","glsxtrorglong","glslongpltok","ExtraCustomAbbreviationFields","CustomAbbreviationFields","GlsXtrPostNewAbbreviation","glsxtrsetcomplexstyle","glsfirstinnerfmtabbrvfont","glsfirstxpabbrvfont","glsinnerfmtabbrvfont","glsxpabbrvfont","glsfirstinnerfmtlongfont","glsfirstxplongfont","glsinnerfmtlongfont","glsxplongfont","glsxtrAccSuppAbbrSetNoLongAttrs","glsxtrAccSuppAbbrSetNameLongAttrs","glsxtrAccSuppAbbrSetFirstLongAttrs","glsxtrAccSuppAbbrSetTextShortAttrs","glsxtrAccSuppAbbrSetNameShortAttrs","abbrvpluralsuffix","glsfirstabbrvfont","glsabbrvfont","glsxtrrevert","glsfirstlongfont","glslongfont","glsxtrfullformat","glsxtrfullplformat","Glsxtrfullformat","Glsxtrfullplformat","GLSxtrfullformat","GLSxtrfullplformat","glsxtrsubsequentfmt","glsxtrsubsequentplfmt","Glsxtrsubsequentfmt","Glsxtrsubsequentplfmt","GLSxtrsubsequentfmt","GLSxtrsubsequentplfmt","glsxtrdefaultsubsequentfmt","glsxtrdefaultsubsequentplfmt","Glsxtrdefaultsubsequentfmt","Glsxtrdefaultsubsequentplfmt","GLSxtrdefaultsubsequentfmt","GLSxtrdefaultsubsequentplfmt","glsxtrinlinefullformat","glsxtrinlinefullplformat","Glsxtrinlinefullformat","Glsxtrinlinefullplformat","GLSxtrinlinefullformat","GLSxtrinlinefullplformat","glsxtrlongformat","Glsxtrlongformat","GLSxtrlongformat","glsxtrlongplformat","Glsxtrlongplformat","GLSxtrlongplformat","glsxtrlongformatgrp","Glsxtrlongformatgrp","GLSxtrlongformatgrp","glsxtrlongplformatgrp","Glsxtrlongplformatgrp","GLSxtrlongplformatgrp","glsxtrshortformat","Glsxtrshortformat","GLSxtrshortformat","glsxtrshortplformat","Glsxtrshortplformat","GLSxtrshortplformat","glsxtrshortformatgrp","Glsxtrshortformatgrp","GLSxtrshortformatgrp","glsxtrshortplformatgrp","Glsxtrshortplformatgrp","GLSxtrshortplformatgrp","glsxtrlongshortformat","Glsxtrlongshortformat","GLSxtrlongshortformat","glsxtrlongshortplformat","Glsxtrlongshortplformat","GLSxtrlongshortplformat","glsxtrshortlongformat","Glsxtrshortlongformat","GLSxtrshortlongformat","glsxtrshortlongplformat","Glsxtrshortlongplformat","GLSxtrshortlongplformat","RestoreAcronyms","MakeAcronymsAbbreviations","GlsXtrSetAltModifier","GlsXtrSetStarModifier","GlsXtrSetPlusModifier","glslinkwrcontent","GlsXtrSetDefaultGlsOpts","GlsXtrAppToDefaultGlsOpts","GlsXtrPreToDefaultGlsOpts","GlsXtrSetDefaultNumberFormat","GlsXtrFmtDefaultOptions","glslinkpresetkeys","glsaddpresetkeys","glsaddpostsetkeys","glsinitreunsets","glsxtrchecknohyperfirst","glsxtrinitwrgloss","glsxtrinithyperoutside","setupglslink","setupglsadd","ifglsxtrinitwrgloss","glsxtrinitwrglosstrue","glsxtrinitwrglossfalse","glsxtrsupphypernumber","glsxtrRevertMarks","glsxtrRevertTocMarks","glsxtrtitleopts","glsfmtshort","Glsfmtshort","GLSfmtshort","glsfmtshortpl","Glsfmtshortpl","GLSfmtshortpl","glsfmtlong","Glsfmtlong","GLSfmtlong","glsfmtlongpl","Glsfmtlongpl","GLSfmtlongpl","glspdffmtfull","glspdffmtfullpl","glsfmtfull","Glsfmtfull","GLSfmtfull","glsfmtfullpl","Glsfmtfullpl","GLSfmtfullpl","glsfmtname","Glsfmtname","GLSfmtname","glsfmttext","Glsfmttext","GLSfmttext","glsfmtplural","Glsfmtplural","GLSfmtplural","glsfmtfirst","Glsfmtfirst","GLSfmtfirst","glsfmtfirstpl","Glsfmtfirstpl","GLSfmtfirstpl","glsxtrifinmark","glsxtrifintoc","glsxtrtitleorpdforheading","glsxtrifheaduc","glsxtrtitleshort","glsxtrheadshort","Glsxtrtitleshort","Glsxtrheadshort","GLSxtrtitleshort","GLSxtrheadshort","glsxtrtitleshortpl","glsxtrheadshortpl","Glsxtrtitleshortpl","Glsxtrheadshortpl","GLSxtrtitleshortpl","GLSxtrheadshortpl","glsxtrtitlelong","glsxtrheadlong","Glsxtrtitlelong","Glsxtrheadlong","GLSxtrtitlelong","GLSxtrheadlong","glsxtrtitlelongpl","glsxtrheadlongpl","Glsxtrtitlelongpl","Glsxtrheadlongpl","GLSxtrtitlelongpl","GLSxtrheadlongpl","glsxtrtitlefull","glsxtrheadfull","Glsxtrtitlefull","Glsxtrheadfull","GLSxtrtitlefull","GLSxtrheadfull","glsxtrtitlefullpl","glsxtrheadfullpl","Glsxtrtitlefullpl","Glsxtrheadfullpl","GLSxtrtitlefullpl","GLSxtrheadfullpl","glsxtrtitlename","glsxtrheadname","Glsxtrtitlename","Glsxtrheadname","GLSxtrtitlename","GLSxtrheadname","glsxtrtitletext","glsxtrheadtext","Glsxtrtitletext","Glsxtrheadtext","GLSxtrtitletext","GLSxtrheadtext","glsxtrtitleplural","glsxtrheadplural","Glsxtrtitleplural","Glsxtrheadplural","GLSxtrtitleplural","GLSxtrheadplural","glsxtrtitlefirst","glsxtrheadfirst","Glsxtrtitlefirst","Glsxtrheadfirst","GLSxtrtitlefirst","GLSxtrheadfirst","glsxtrtitlefirstplural","glsxtrheadfirstplural","Glsxtrtitlefirstplural","Glsxtrheadfirstplural","GLSxtrtitlefirstplural","GLSxtrheadfirstplural","glsxtrmarkhook","glsxtrrestoremarkhook","glsxtrp","glsxtrsetpopts","glossxtrsetpopts","glsps","glspt","Glsxtrp","GLSxtrp","GlsXtrExpandedFmt","glsxtrregularfont","glsxtrabbreviationfont","glsxtrassignfieldfont","glsxtrgenentrytextfmt","glsxtrdefaultentrytextfmt","glsxtrattrentrytextfmt","glsifapplyinnerfmtfield","glsexclapplyinnerfmtfield","glsfmtfield","Glsfmtfield","GLSfmtfield","glsxtrpostlinkhook","glsxtrdiscardperiod","glsxtrdiscardperiodretainfirstuse","glsxtrifcustomdiscardperiod","glsxtrpostlinkendsentence","glsxtrifperiod","glsxtrifnextpunc","glsxtrdopostpunc","glsxtraddpunctuationmark","glsxtrsetpunctuationmarks","glsxtrpostlink","glsdefpostlink","glspretopostlink","glsapptopostlink","glsxtrpostlinkAddDescOnFirstUse","glsxtrpostlinkAddSymbolOnFirstUse","glsxtrpostlinkAddSymbolDescOnFirstUse","glsxtrpostlinkSymbolDescSep","glsxtrcurrentfield","glsxtrifwasglslike","glsxtrifwasglslikeandfirstuse","glsxtrifwassubsequentuse","glsxtrifwassubsequentorshort","glsxtrifallcaps","glsxtrsaveinsert","glsxtrassignlinktextfmt","glsxtrgenabbrvfmt","glsxtrnewgls","glsxtrnewglslike","glsxtrnewGLSlike","glsxtrnewglslink","glsxtrnewglsdisp","glsxtridentifyglslike","glsxtrnewrgls","glsxtrnewrglslike","glsxtrnewrGLSlike","glsaddallunindexed","glsaddeach","glsstartrange","glsendrange","GlsXtrSetDefaultRangeFormat","GlsXtrAutoAddOnFormat","glsxtrdowrglossaryhook","glsentryindexcount","glsifindexed","glsxtrifindexing","glsxtrseelists","glsxtrseelistsencap","glsxtrseelistsdelim","glsxtrusesee","glsxtrusealias","glsxtruseseealso","glsxtralias","glsxtrseealsolabels","glsxtruseseealsoformat","glsxtrindexseealso","glsxtrsetaliasnoindex","glsxtrindexaliased","glsxtraddallcrossrefs","glsxtraddunusedxrefs","glsxtrunusedformat","glsxtrpostunset","glsxtrpostlocalunset","glsxtrpostreset","glsxtrpostlocalreset","glslocalunseteach","glslocalreseteach","glsxtrifwasfirstuse","GlsXtrIfUnusedOrUndefined","GlsXtrStartUnsetBuffering","GlsXtrClearUnsetBuffer","GlsXtrStopUnsetBuffering","GlsXtrForUnsetBufferedList","GlsXtrDiscardUnsetBuffering","GlsXtrUnsetBufferEnableRepeatLocal","GlsXtrResetLocalBuffer","GlsXtrUnsetBufferDisableRepeatLocal","glsxtrusefield","Glsxtrusefield","GLSxtrusefield","glsxtrfieldtitlecase","glsxtrfieldtitlecasecs","glsxtrentryparentname","glsxtrhiername","glsxtrhiernamesep","Glsxtrhiername","GlsXtrhiername","GLSxtrhiername","GLSXTRhiername","GlsXtrForeignTextField","GlsXtrForeignText","GlsXtrUnknownDialectWarning","GlsXtrFmtField","glsxtrfmt","glsxtrfmtdisplay","glsxtrentryfmt","glsxtrpdfentryfmt","Glsxtrfmt","Glsxtrentryfmt","Glsxtrpdfentryfmt","glsxtrseelist","glsxtrtaggedlist","glsxtrtaggedlistsep","glsseefirstitem","glsseelastoxfordsep","glsxtrforcsvfield","glsxtrendfor","glsxtrfieldformatcsvlist","GlsXtrIfValueInFieldCsvList","GlsXtrIfFieldValueInCsvList","xGlsXtrIfValueInFieldCsvList","glsxtrfieldformatlist","glsxtrfielddolistloop","glsxtrfieldforlistloop","glsxtrfieldifinlist","glsxtrfieldxifinlist","GlsXtrIfFieldUndef","glsxtrifhasfield","GlsXtrIfFieldCmpNum","GlsXtrIfFieldEqNum","GlsXtrIfFieldNonZero","GlsXtrIfFieldEqStr","GlsXtrIfFieldEqXpStr","GlsXtrIfXpFieldEqXpStr","GlsXtrEnableEntryCounting","cGLS","cGLSpl","cGLSformat","cGLSplformat","glsxtrifcounttrigger","glsenableentryunitcount","GlsXtrEnableEntryUnitCounting","glsentryprevtotalcount","glsentryprevmaxcount","GlsXtrEnableLinkCounting","glsxtrinclinkcounter","GlsXtrLinkCounterValue","GlsXtrTheLinkCounter","GlsXtrIfLinkCounterDef","GlsXtrLinkCounterName","multiglossaryentry","mgls","providemultiglossaryentry","multiglossaryentryglobaltrue","multiglossaryentryglobalfalse","ifmultiglossaryentryglobal","mglsSetOptions","mglsAddOptions","GlsXtrMglsOrGls","mglsprefix","mglssuffix","mglsdefcategoryprefix","mglsdefcategorysuffix","mglshascategoryprefix","mglsusecategoryprefix","mglshascategorysuffix","mglsusecategorysuffix","glscombinedsep","glscombinedfirstsep","glscombinedsepfirst","glscombinedfirstsepfirst","glssetcombinedsepabbrvnbsp","glssetcombinedsepabbrvnone","glssetcombinedsepnarrow","mglselementprehook","mglselementposthook","mglscurrentmultilabel","mglscurrentmainlabel","mglscurrentlist","mglscurrentoptions","mglscurrentcategory","glsxtrcurrentmglscsname","mglsisfirstuse","mglscurrentlabel","mglselementindex","mglscurrentprefix","mglscurrentsuffix","mglsiflast","mglscustompostlinkhook","mglslastelementpostlinkhook","mglslastmainpostlinkhook","mglslastmultilabel","mglslastcategory","mglswasfirstuse","mglslastelementlabel","mglsiflastelementskipped","mglsiflastelementwasfirstuse","mglsiflastelementwasplural","mglsiflastelementcapscase","mglslastmainlabel","mglsiflastmainskipped","mglsiflastmainwasfirstuse","mglsiflastmainwasplural","mglsiflastmaincapscase","ifmglsused","mglsunset","mglsreset","mglslocalunset","mglslocalreset","mglsunsetall","mglsresetall","multiglossaryentrysetup","glsxtrmglsWarnAllSkipped","mglselementreset","mglselementunset","mglsunsetothers","mglslocalunsetothers","mglspl","mglsmainpl","Mgls","MGls","Mglspl","Mglsmainpl","MGlspl","MGlsmainpl","MGLS","MGLSpl","MGLSmainpl","mglsshort","mglslong","mglsfull","Mglsshort","Mglslong","Mglsfull","mglsname","mglssymbol","mglsusefield","Mglsname","Mglssymbol","Mglsusefield","MGlsname","MGlssymbol","MGlsusefield","mglsfield","mpglsWarning","mglsseefirstitem","mglsseeitem","glsxtrifmulti","glsxtrmultimain","glsxtrmultilist","mglsforelements","mglsforotherelements","glsxtrmultitotalelements","glsxtrmultimainindex","glsxtrmultilastotherindex","writemultiglossentry","makeglossaries","newignoredglossary","provideignoredglossary","glsxtrcopytoglossary","forallabbreviationlists","glsxtrpageref","apptoglossarypreamble","preglossarypreamble","glsxtrsetglossarylabel","printunsrtglossary","printunsrtglossaries","glsxtrnoidxgroups","glsxtrgroupfield","glsxtraddgroup","printunsrtglossarygrouphook","glssubgroupheading","GlsXtrLocationField","printunsrtglossarypostbegin","printunsrtglossarypreend","glscurrententrylevel","glscurrenttoplevelentry","glscurrentrootentry","printunsrtglossaryentryprocesshook","printunsrtglossaryskipentry","printunsrtglossarypreentryprocesshook","printunsrtglossarypostentryprocesshook","printunsrtglossarypredoglossary","printunsrtglossaryhandler","glsxtrunsrtdo","glsxtriflabelinlist","ifglsxtrprintglossflatten","glsxtrprintglossflattentrue","glsxtrprintglossflattenfalse","printunsrtinnerglossary","GlsXtrRecordCounter","glsxtrAddCounterRecordHook","printunsrtglossaryunit","printunsrtglossaryunitsetup","printunsrtglossaryunitpostskip","glsxtrglossentry","GlsXtrStandaloneGlossaryType","GlsXtrStandaloneSubEntryItem","GlsXtrStandaloneEntryName","glsxtractivatenopost","glsxtrglossentryother","GlsXtrStandaloneEntryOther","GlsXtrStandaloneEntryPdfName","GlsXtrStandaloneEntryHeadName","GlsXtrStandaloneEntryPdfOther","GlsXtrStandaloneEntryHeadOther","glsxtrpreglossarystyle","glsentrypdfsymbol","glossentrynameother","glsxtrpostnamehook","glsdefpostname","glsextrapostnamehook","glsxtrpostdescription","glsxtrpostdescgeneral","glsxtrpostdescterm","glsxtrpostdescacronym","glsxtrpostdescabbreviation","glsdefpostdesc","glsxtrnopostpunc","glsxtrrestorepostpunc","GlsXtrFormatLocationList","GlsXtrEnablePreLocationTag","glsxtrdisplaysingleloc","glsxtrdisplaystartloc","glsxtrdisplayendloc","glsxtrlocrangefmt","glsxtrdisplayendlochook","glsxtrsetgrouptitle","glsxtrlocalsetgrouptitle","glsxtrgetgrouptitle","glsxtrassignactualsetup","glsdefaultshortaccess","glsaccessname","Glsaccessname","GLSaccessname","glsaccesstext","Glsaccesstext","GLSaccesstext","GLSaccessplural","glsaccessplural","Glsaccessplural","glsaccessfirst","Glsaccessfirst","GLSaccessfirst","glsaccessfirstplural","Glsaccessfirstplural","GLSaccessfirstplural","glsaccesssymbol","Glsaccesssymbol","GLSaccesssymbol","glsaccesssymbolplural","Glsaccesssymbolplural","GLSaccesssymbolplural","glsaccessdesc","Glsaccessdesc","GLSaccessdesc","glsaccessdescplural","Glsaccessdescplural","GLSaccessdescplural","glsaccessshort","Glsaccessshort","GLSaccessshort","glsaccessshortpl","Glsaccessshortpl","GLSaccessshortpl","glsaccesslong","Glsaccesslong","GLSaccesslong","glsaccesslongpl","Glsaccesslongpl","GLSaccesslongpl","glsaccessuseri","Glsaccessuseri","GLSaccessuseri","glsaccessuserii","Glsaccessuserii","GLSaccessuserii","glsaccessuseriii","Glsaccessuseriii","GLSaccessuseriii","glsaccessuseriv","Glsaccessuseriv","GLSaccessuseriv","glsaccessuserv","Glsaccessuserv","GLSaccessuserv","glsaccessuservi","Glsaccessuservi","GLSaccessuservi","glsaccessfmtname","Glsaccessfmtname","GLSaccessfmtname","glsaccessfmttext","Glsaccessfmttext","GLSaccessfmttext","glsaccessfmtplural","Glsaccessfmtplural","GLSaccessfmtplural","glsaccessfmtfirst","Glsaccessfmtfirst","GLSaccessfmtfirst","glsaccessfmtfirstplural","Glsaccessfmtfirstplural","GLSaccessfmtfirstplural","glsaccessfmtsymbol","Glsaccessfmtsymbol","GLSaccessfmtsymbol","glsaccessfmtsymbolplural","Glsaccessfmtsymbolplural","GLSaccessfmtsymbolplural","glsaccessfmtdesc","Glsaccessfmtdesc","GLSaccessfmtdesc","glsaccessfmtdescplural","Glsaccessfmtdescplural","GLSaccessfmtdescplural","glsaccessfmtshort","Glsaccessfmtshort","GLSaccessfmtshort","glsaccessfmtshortpl","Glsaccessfmtshortpl","GLSaccessfmtshortpl","glsaccessfmtlong","Glsaccessfmtlong","GLSaccessfmtlong","glsaccessfmtlongpl","Glsaccessfmtlongpl","GLSaccessfmtlongpl","glsaccessfmtuseri","Glsaccessfmtuseri","GLSaccessfmtuseri","glsaccessfmtuserii","Glsaccessfmtuserii","GLSaccessfmtuserii","glsaccessfmtuseriii","Glsaccessfmtuseriii","GLSaccessfmtuseriii","glsaccessfmtuseriv","Glsaccessfmtuseriv","GLSaccessfmtuseriv","glsaccessfmtuserv","Glsaccessfmtuserv","GLSaccessfmtuserv","glsaccessfmtuservi","Glsaccessfmtuservi","GLSaccessfmtuservi","glscategory","glsifcategory","glsxtrsetcategory","glsxtrsetcategoryforall","glsforeachincategory","glsforeachwithattribute","glsxtrwordsep","glsxtrword","glssetcategoryattribute","glssetcategoriesattribute","glssetcategoryattributes","glssetcategoriesattributes","glssetattribute","glssetregularcategory","glsunsetcategoryattribute","glsgetcategoryattribute","glsgetattribute","glshascategoryattribute","glshasattribute","glsifcategoryattribute","glsifattribute","glsifregularcategory","glsifnotregularcategory","glsifregular","glsifnotregular","glsifcategoryattributetrue","glsifattributetrue","glsifcategoryattributehasitem","glsxtrresourcefile","GlsXtrLoadResources","glsxtrresourcecount","glsxtrresourceinit","glsxtrMFUsave","GlsXtrDefaultResourceOptions","glsxtrdetoklocation","GlsXtrTotalRecordCount","GlsXtrRecordCount","GlsXtrLocationRecordCount","glsxtrifrecordtrigger","glsxtrrecordtriggervalue","GlsXtrSetRecordCountAttribute","glstriggerrecordformat","rgls","rGls","rGLS","rglspl","rGlspl","rGLSpl","rglsformat","rglsplformat","rGlsformat","rGlsplformat","rGLSformat","rGLSplformat","glsxtrenablerecordcount","glsxtrdoautoindexname","glsxtrautoindexentry","glsxtrautoindexassignsort","glsxtrautoindexesc","glsxtrautoindex","GlsXtrEnableIndexFormatOverride","GlsXtrSetActualChar","GlsXtrSetLevelChar","GlsXtrSetEscChar","GlsXtrSetEncapChar","GlsXtrEnableOnTheFly","glsxtr","GlsXtrWarning","glsxtrpl","Glsxtr","Glsxtrpl","glsxtrcat","ProvidesGlossariesExtraLang","GlsXtrNoGlsWarningHead","GlsXtrNoGlsWarningEmptyStart","GlsXtrNoGlsWarningEmptyMain","GlsXtrNoGlsWarningEmptyNotMain","GlsXtrNoGlsWarningCheckFile","GlsXtrNoGlsWarningMisMatch","GlsXtrNoGlsWarningNoOut","GlsXtrNoGlsWarningTail","GlsXtrNoGlsWarningBuildInfo","GlsXtrNoGlsWarningAutoMake","GlossariesAbbrStyleTooComplexWarning","GlossariesExtraWarning","GlossariesExtraWarningNoLine","glsabspace","glsacspacemax","glsfmtinsert","GLSfmtinsert","GlsXtrDefineAbbreviationShortcuts","GlsXtrDefineAcShortcuts","GlsXtrDefineOtherShortcuts","glsxtrfirstscfont","glsxtrfirstsmfont","glsxtrifemptyglossary","GlsXtrIfInGlossary","glsxtrinitwrglossbeforefalse","glsxtrinitwrglossbeforetrue","GlsXtrInternalLocationHyperlink","glsxtrlocationhyperlink","glsxtrNoGlossaryWarning","glsxtrprovideaccsuppcmd","GlsXtrRecordWarning","glsxtrscfont","glsxtrsmfont","glsxtrstarflywarn","glsxtrsupplocationurl","glsxtruseseeformat","glsxtrwordsephyphen","ifglsxtrinitwrglossbefore","mglsSetMain","RequireGlossariesExtraLang","seealsoname","glsxtrcontinuedname","glsxtrcounterprefix","glsxtrdohyperlink","glsxtrdoidentify","glsxtrhyperlink","glsxtridentifyglsfamily","glsxtridentifyglslink","glsxtrmglswrite","glsxtrprotectlinks","glsxtrshorthyphennoinsert","glsxtrshorthyphennolong","GLSxtrshorthyphennolong","glsxtrundefdebug","mglsWriteSeparateRefsFalse","mglsWriteSeparateRefsTrue"]}
-,
-"glossaries-prefix.sty":{"envs":{},"deps":["glossaries.sty","translator.sty","tracklang.sty","glossaries-babel.sty"],"cmds":["printsymbols","printnumbers","newterm","printindex","printacronyms","acs","Acs","acsp","Acsp","acl","Acl","aclp","Aclp","acf","Acf","acfp","Acfp","ac","Ac","acp","Acp","GlsAddXdyStyle","GlsSetXdyStyles","GlsSetXdyLanguage","GlsSetXdyCodePage","GlsAddXdyCounters","GlsAddXdyAttribute","GlsAddXdyLocation","GlsSetXdyLocationClassOrder","GlsSetXdyMinRangeLength","GlsSetXdyFirstLetterAfterDigits","GlsSetXdyNumberGroupOrder","GlsAddLetterGroup","GlsAddSortRule","GlsAddXdyAlphabet","glsprefixsep","pgls","Pgls","PGLS","pglspl","Pglspl","PGLSpl","ifglshasprefix","ifglshasprefixplural","ifglshasprefixfirst","ifglshasprefixfirstplural","glsentryprefix","glsentryprefixfirst","glsentryprefixplural","glsentryprefixfirstplural","Glsentryprefix","Glsentryprefixfirst","Glsentryprefixplural","Glsentryprefixfirstplural"]}
-,
-"glossaries.sty":{"envs":["theglossary"],"deps":["ifthen.sty","mfirstuc.sty","xfor.sty","amsgen.sty","glossary-hypernav.sty","glossary-long.sty","glossary-tree.sty","translator.sty","glossaries-babel.sty"],"cmds":["glsindexingsetting","GlsSetQuote","glsshowtarget","glsshowtargetinner","glsshowtargetfonttext","glsshowtargetouter","glsshowtargetsymbol","glsshowtargetfont","glsshowaccsupp","glslinkcheckfirsthyperhook","glstoctrue","glstocfalse","ifglstoc","setglossarysection","ifglsucmark","glsucmarkfalse","glsucmarktrue","glsautoprefix","glsrefentry","GlsEntryCounterLabelPrefix","glsresetentrycounter","glsstepentry","theglossaryentry","glsentrycounterlabel","ifglsentrycounter","glsentrycounterfalse","glsentrycountertrue","glsresetsubentrycounter","glsstepsubentry","theglossarysubentry","glssubentrycounterlabel","ifglssubentrycounter","glssubentrycounterfalse","glssubentrycountertrue","setglossarystyle","glscounter","glspostdescription","ifglsnogroupskip","glsnogroupskipfalse","glsnogroupskiptrue","ifglswrallowprimitivemods","glswrallowprimitivemodstrue","glswrallowprimitivemodsfalse","ifglsindexonlyfirst","glsindexonlyfirstfalse","glsindexonlyfirsttrue","glswriteentry","glssortnumberfmt","glsprestandardsort","glsdosanitizesort","ifglsxindy","glsxindyfalse","glsxindytrue","GlsDeclareNoHyperList","printsymbols","printnumbers","newterm","printindex","printacronyms","DeclareAcronymList","SetAcronymLists","glsIfListOfAcronyms","DefineAcronymSynonyms","setupglossaries","makenoidxglossaries","makeglossaries","writeist","setStyleFile","GlsSetWriteIstHook","glswrite","noist","glsSetCompositor","glsSetAlphaCompositor","newglossaryentry","longnewglossaryentry","provideglossaryentry","longprovideglossaryentry","nopostdesc","glspar","glspluralsuffix","glsaddkey","glsaddstoragekey","glssetexpandfield","glssetnoexpandfield","glsexpandfields","glsnoexpandfields","loadglsentries","glsmoveentry","glstextformat","glspatchtabularx","gls","Gls","GLS","glspl","Glspl","GLSpl","glsdisp","Glsdisp","glslink","Glslink","glstext","Glstext","GLStext","glsfirst","Glsfirst","GLSfirst","glsplural","Glsplural","GLSplural","glsfirstplural","Glsfirstplural","GLSfirstplural","glsname","Glsname","GLSname","glssymbol","Glssymbol","GLSsymbol","glssymbolplural","Glssymbolplural","GLSsymbolplural","glsdesc","Glsdesc","GLSdesc","glsdescplural","Glsdescplural","GLSdescplural","glsuseri","Glsuseri","GLSuseri","glsuserii","Glsuserii","GLSuserii","glsuseriii","Glsuseriii","GLSuseriii","glsuseriv","Glsuseriv","GLSuseriv","glsuserv","Glsuserv","GLSuserv","glsuservi","Glsuservi","GLSuservi","glsentryfmt","defglsentryfmt","glslabel","glstype","glsinsert","glsifplural","glscapscase","glscustomtext","glsifhyperon","glslinkvar","glsgenentryfmt","glsgenacfmt","genacrfullformat","genplacrfullformat","Genacrfullformat","Genplacrfullformat","glslinkpostsetkeys","glspostlinkhook","glsdisablehyper","glsenablehyper","glsentrytitlecase","glshyperlink","glsentryname","Glsentryname","glossentryname","Glossentryname","glsentrytext","Glsentrytext","glsentryplural","Glsentryplural","glsentryfirst","Glsentryfirst","glsentryfirstplural","Glsentryfirstplural","glsentrydesc","Glsentrydesc","glossentrydesc","Glossentrydesc","glsentrydescplural","Glsentrydescplural","glsentrysymbol","Glsentrysymbol","glossentrysymbol","Glossentrysymbol","glsentrysymbolplural","Glsentrysymbolplural","glsentryuseri","Glsentryuseri","glsentryuserii","Glsentryuserii","glsentryuseriii","Glsentryuseriii","glsentryuseriv","Glsentryuseriv","glsentryuserv","Glsentryuserv","glsentryuservi","Glsentryuservi","glsentrynumberlist","glsdisplaynumberlist","glsnumlistsep","glsnumlistlastsep","glsnoidxdisplayloclisthandler","newacronym","glsacrpluralsuffix","acrshort","Acrshort","ACRshort","acrshortpl","Acrshortpl","ACRshortpl","acrlong","Acrlong","ACRlong","acrlongpl","Acrlongpl","ACRlongpl","acrfull","Acrfull","ACRfull","acrfullpl","Acrfullpl","ACRfullpl","acrfullfmt","ACRfullfmt","Acrfullfmt","ACRfullplfmt","Acrfullplfmt","acrfullplfmt","acs","Acs","acsp","Acsp","acl","Acl","aclp","Aclp","acf","Acf","acfp","Acfp","ac","Ac","acp","Acp","glsentrylong","Glsentrylong","glsentrylongpl","Glsentrylongpl","glsentryshort","Glsentryshort","glsentryshortpl","Glsentryshortpl","glsentryfull","Glsentryfull","glsentryfullpl","Glsentryfullpl","setacronymstyle","acronymentry","acronymsort","firstacronymfont","acronymfont","acrpluralsuffix","glsupacrpluralsuffix","glstextup","glsacspace","newacronymstyle","renewacronymstyle","GenericAcronymFields","glskeylisttok","glslabeltok","glsshorttok","glslongtok","GlsUseAcrEntryDispStyle","GlsUseAcrStyleDefs","oldacronym","glsreset","glslocalreset","glsunset","glslocalunset","glsresetall","glslocalresetall","glsunsetall","glslocalunsetall","glsenableentrycount","ifglsresetcurrcount","glsresetcurrcounttrue","glsresetcurrcountfalse","glsentrycurrcount","glsentryprevcount","cgls","cGls","cglspl","cGlspl","cglsformat","cglsplformat","cGlsformat","cGlsplformat","printnoidxglossaries","printglossaries","printnoidxglossary","printglossary","currentglossary","glossarysection","glsglossarymark","glsclearpage","glossarytitle","glossarytoctitle","glssettoctitle","glossarypreamble","setglossarypreamble","glossarypostamble","glossaryentrynumbers","glsresetentrylist","glsnoidxprenumberlist","glsnonextpages","glsnextpages","newglossary","altnewglossary","newignoredglossary","ifignoredglossary","acronymtype","glsadd","glsaddall","glsaddallunused","glssee","glsseeformat","glsseelist","glsseesep","glsseelastsep","glsseeitem","glsseeitemformat","delimN","glsignore","glsnumberformat","glshypernumber","glswrglosslocationtextfmt","setentrycounter","glsentrycounter","glswrglossdisableanchorcmds","glswrglosslocationtarget","delimR","glsSetSuffixF","glsSetSuffixFF","glswrglossdisablelocationcmds","glslocationcstoencap","glsnoidxloclist","glsnoidxloclisthandler","glsnumberlistloop","glsnoidxdisplayloc","glsnoidxnumberlistloophandler","glsnamefont","newglossarystyle","renewglossarystyle","glsentryitem","glssubentryitem","glstarget","glolinkprefix","glsgetgrouptitle","glossaryheader","glsgroupheading","glossentry","subglossentry","glsgroupskip","glsopenbrace","glsclosebrace","glspercentchar","glstildechar","glsbackslash","glsquote","GlsAddXdyStyle","GlsSetXdyStyles","GlsSetXdyLanguage","GlsSetXdyCodePage","GlsAddXdyCounters","GlsAddXdyAttribute","GlsAddXdyLocation","GlsSetXdyLocationClassOrder","GlsSetXdyMinRangeLength","GlsSetXdyFirstLetterAfterDigits","GlsSetXdyNumberGroupOrder","GlsAddLetterGroup","GlsAddSortRule","GlsAddXdyAlphabet","glsdonohyperlink","glsdohypertarget","glsdohyperlink","glstexorpdfstring","glsuppercase","glslowercase","glssentencecase","glscapitalisewords","glsmfuexcl","glsmfublocker","glsmfuaddmap","forallglossaries","forallacronyms","forglsentries","forallglsentries","ifglossaryexists","ifglsentryexists","glsdoifexists","glsdoifnoexists","glsdoifexistsorwarn","glsdoifexistsordo","ifglsused","ifglshaschildren","ifglshasparent","ifglshassymbol","ifglshaslong","ifglshasshort","ifglshasdesc","ifglsdescsuppressed","ifglsfieldvoid","ifglshasfield","glscurrentfieldvalue","ifglsfieldeq","ifglsfielddefeq","ifglsfieldcseq","glsmeasureheight","glsmeasuredepth","glsmeasurewidth","glsifmeasuring","glsentrytype","glsentryparent","glsentrysort","glsfieldfetch","glsletentryfield","glsunexpandedfieldvalue","glsfielddef","glsfieldedef","glsfieldgdef","glsfieldxdef","acrnameformat","acronymname","addglossarytocaptions","andname","descriptionname","entryname","glossaryname","glscurrententrylabel","glsdefaulttype","glshyperfirstfalse","glshyperfirsttrue","glsifusedtranslatordict","glsnumbersgroupname","glssymbolsgroupname","glswritedefhook","hyperbf","hyperemph","hyperit","hypermd","hyperrm","hypersc","hypersf","hypersl","hypertt","hyperup","ifglshyperfirst","newacronymhook","pagelistname","ProvidesGlossariesLang","RequireGlossariesLang","seename","symbolname","acrfootnote","acrlinkfootnote","acrnolinkfootnote","currentglssubentry","doifglossarynoexistsordo","glosortentrieswarning","GlossariesWarning","GlossariesWarningNoLine","glsacronymtrue","glsacrshortcutsfalse","glsacrshortcutstrue","glsaddprotectedpagefmt","glsautomakefalse","glsautomaketrue","glscompositor","glsdefmain","glsdetoklabel","glsdoparenifnotempty","glsdoshowtarget","glsencapwrcontent","glsesclocationsfalse","glsesclocationstrue","glsgetgrouplabel","glsifusetranslator","glslongkey","glslongpluralkey","glsnoidxstripaccents","glsnomakeindexwarning","glsnonumberlistfalse","glsnonumberlisttrue","glsnopostdotfalse","glsnopostdottrue","glsnoxindywarning","glsnumlistparser","glsorder","glssanitizesortfalse","glssanitizesorttrue","glssavenumberlistfalse","glssavewritesfalse","glsshortkey","glsshortpluralkey","glsspace","glstranslatefalse","glstranslatetrue","GlsWarnAddProtectedPageFmt","glswritefiles","ifglsacronym","ifglsacrshortcuts","ifglsautomake","ifglsesclocations","ifglsnonumberlist","ifglsnopostdot","ifglsnopostdotfalse","ifglsnumberline","ifglssanitizesort","ifglssavenumberlist","ifglssavewrites","ifglstranslate","istfilename","SetDefaultAcronymDisplayStyle","SetGenericNewAcronym","showacronymlists","showglocounter","showglodesc","showglodescplural","showglofield","showglofirst","showglofirstpl","showgloflag","showgloindex","showglolevel","showgloloclist","showglolong","showgloname","showgloparent","showgloplural","showgloshort","showglosort","showglossaries","showglossarycounter","showglossaryentries","showglossaryin","showglossaryout","showglossarytitle","showglosymbol","showglosymbolplural","showglotext","showglotype","showglouseri","showglouserii","showglouseriii","showglouseriv","showglouserv","showglouservi","theglsentrycounter","theHglossaryentry","theHglossarysubentry","theHglsentrycounter","acrfullformat","acrlinkfullformat","glossarymark"]}
-,
-"glossary-bookindex.sty":{"envs":{},"deps":["multicol.sty","glossary-tree.sty"],"cmds":["glsxtrbookindexcols","glsxtrbookindexcolspread","glsxtrbookindexmulticolsenv","glsxtrbookindexname","glsxtrbookindexsubname","glsxtrbookindexprelocation","glsxtrbookindexsubprelocation","glsxtrbookindexlocation","glsxtrbookindexsublocation","glsxtrbookindexparentchildsep","glsxtrbookindexparentsubchildsep","glsxtrbookindexbetween","glsxtrbookindexsubbetween","glsxtrbookindexsubsubbetween","glsxtrbookindexsubsubatendgroup","glsxtrbookindexsubatendgroup","glsxtrbookindexatendgroup","glsxtrbookindexbookmark","glsxtrbookindexformatheader","glsxtrbookindexmarkentry","glsxtrbookindexfirstmark","glsxtrbookindexlastmark","glsxtrbookindexfirstmarkfmt","glsxtrbookindexlastmarkfmt","glsxtrbookindexbookmarkprefix","glsxtrbookindexgroupskip","glsxtrbookindexthepage","glsxtrbookindexpregroupskip","glsxtrbookindexformatsubheader","glsxtrbookindexpostgroupskip","glsxtrbookindexpresubgroupskip","glsxtrbookindexpostsubgroupskip","glsxtrbookindexsubbookmark"]}
-,
-"glossary-hypernav.sty":{"envs":{},"deps":{},"cmds":["glsnavhypertarget","glsnavhyperlink","glsnavhyperlinkname","glsnavigation","glshypernavsep","glssymbolnav"]}
-,
-"glossary-inline.sty":{"envs":{},"deps":{},"cmds":["glsinlineseparator","glsinlinesubseparator","glsinlineparentchildseparator","glspostinline","glsinlinenameformat","glsinlineifhaschildren","glsinlinesubnameformat","glsinlineemptydescformat","glsinlinedescformat","glsinlinesubdescformat","glsinlinepostchild","glsinlinedopostchild"]}
-,
-"glossary-list.sty":{"envs":{},"deps":{},"cmds":["glslistinit","glslistexpandedname","indexspace","glslistgroupheaderfmt","glslistnavigationitem","glslistdottedwidth"]}
-,
-"glossary-long.sty":{"envs":{},"deps":["longtable.sty"],"cmds":["glsdescwidth","glspagelistwidth"]}
-,
-"glossary-longbooktabs.sty":{"envs":{},"deps":["booktabs.sty","glossary-long.sty","glossary-longragged.sty"],"cmds":["glsLTpenaltycheck","glspenaltygroupskip","glsrestoreLToutput","glspatchLToutput"]}
-,
-"glossary-longextra.sty":{"envs":{},"deps":["glossary-longbooktabs.sty"],"cmds":["GlsLongExtraUseTabulartrue","GlsLongExtraUseTabularfalse","ifGlsLongExtraUseTabular","glslongextraTabularVAlign","glslongextraHeaderFmt","glslongextraNameFmt","glslongextraSubNameFmt","glslongextraNameAlign","glslongextraDescFmt","glslongextraSubDescFmt","glslongextraDescAlign","glslongextraSetWidest","glslongextraUpdateWidest","glslongextraUpdateWidestChild","glslongextraLocationFmt","glslongextraSubLocationFmt","glslongextraLocationAlign","glslongextraSymbolFmt","glslongextraSubSymbolFmt","glslongextraSymbolAlign","glslongextraGroupHeading","glslongextraSubGroupHeading","glslongextraSetDescWidth","glslongextraNameDescTabularHeader","glslongextraNameDescTabularFooter","glslongextraNameDescHeader","glslongextraDescNameTabularHeader","glslongextraDescNameTabularFooter","glslongextraDescNameHeader","glslongextraSymSetDescWidth","glslongextraNameDescSymTabularHeader","glslongextraNameDescSymTabularFooter","glslongextraNameDescSymHeader","glslongextraNameSymDescTabularHeader","glslongextraNameSymDescTabularFooter","glslongextraNameSymDescHeader","glslongextraSymDescNameTabularHeader","glslongextraSymDescNameTabularFooter","glslongextraSymDescNameHeader","glslongextraDescSymNameTabularHeader","glslongextraDescSymNameTabularFooter","glslongextraDescSymNameHeader","glslongextraLocSetDescWidth","glslongextraNameDescLocationTabularHeader","glslongextraNameDescLocationTabularFooter","glslongextraNameDescLocationHeader","glslongextraLocationDescNameTabularHeader","glslongextraLocationDescNameTabularFooter","glslongextraLocationDescNameHeader","glslongextraSymLocSetDescWidth","glslongextraNameDescSymLocationTabularHeader","glslongextraNameDescSymLocationTabularFooter","glslongextraNameDescSymLocationHeader","glslongextraNameSymDescLocationTabularHeader","glslongextraNameSymDescLocationTabularFooter","glslongextraNameSymDescLocationHeader","glslongextraLocationSymDescNameTabularHeader","glslongextraLocationSymDescNameTabularFooter","glslongextraLocationSymDescNameHeader","glslongextraLocationDescSymNameTabularHeader","glslongextraLocationDescSymNameTabularFooter","glslongextraLocationDescSymNameHeader","glslongextraSymbolNameAlign","glslongextraSymbolTargetFmt","glslongextraSubSymbolTargetFmt","glslongextraSymbolOrName","glslongextraSubSymbolOrName","glslongextraSymNoNameSetDescWidth","glslongextraSymDescTabularHeader","glslongextraSymDescTabularFooter","glslongextraSymDescHeader","glslongextraDescSymTabularHeader","glslongextraDescSymTabularFooter","glslongextraDescSymHeader","glslongextraShortHeader","glslongextraLongHeader","glslongextraShortTargetFmt","glslongextraLongFmt","glslongextraSubShortTargetFmt","glslongextraSubLongFmt","glslongextraShortNoNameSetDescWidth","glslongextraShortLongTabularHeader","glslongextraShortLongTabularFooter","glslongextraShortLongHeader","glslongextraLongShortTabularHeader","glslongextraLongShortTabularFooter","glslongextraLongShortHeader","glslongextraCustomIField","glslongextraCustomIIField","glslongextraCustomIIIField","glslongextraCustomIHeader","glslongextraCustomIIHeader","glslongextraCustomIIIHeader","glslongextraCustomIFmt","glslongextraSubCustomIFmt","glslongextraCustomIIFmt","glslongextraSubCustomIIFmt","glslongextraCustomIIIFmt","glslongextraSubCustomIIIFmt","glslongextraCustomIAlign","glslongextraCustomIIAlign","glslongextraCustomIIIAlign","glslongextraCustomTabularFooter","glslongextraNameCustomITabularHeader","glslongextraNameCustomIHeader","glslongextraCustomINameTabularHeader","glslongextraCustomINameHeader","glslongextraNameCustomIITabularHeader","glslongextraNameCustomIIHeader","glslongextraCustomIINameTabularHeader","glslongextraCustomIINameHeader","glslongextraNameCustomIIITabularHeader","glslongextraNameCustomIIIHeader","glslongextraCustomIIINameTabularHeader","glslongextraCustomIIINameHeader","glslongextraCustomISetDescWidth","glslongextraCustomIISetDescWidth","glslongextraCustomIIISetDescWidth","glslongextraNameCustomIDescTabularHeader","glslongextraNameCustomIDescHeader","glslongextraDescCustomINameTabularHeader","glslongextraDescCustomINameHeader","glslongextraNameCustomIIDescTabularHeader","glslongextraNameCustomIIDescHeader","glslongextraDescCustomIINameTabularHeader","glslongextraDescCustomIINameHeader","glslongextraNameCustomIIIDescTabularHeader","glslongextraNameCustomIIIDescHeader","glslongextraDescCustomIIINameTabularHeader","glslongextraDescCustomIIINameHeader"]}
-,
-"glossary-longragged.sty":{"envs":{},"deps":["array.sty","longtable.sty"],"cmds":["glsdescwidth","glspagelistwidth"]}
-,
-"glossary-mcols.sty":{"envs":{},"deps":["multicol.sty","glossary-tree.sty"],"cmds":["indexspace","glsmcols"]}
-,
-"glossary-super.sty":{"envs":{},"deps":["supertabular.sty"],"cmds":["glsdescwidth","glspagelistwidth"]}
-,
-"glossary-table.sty":{"envs":["glstablesubentries"],"deps":["longtable.sty","array.sty","booktabs.sty"],"cmds":["printunsrttable","glstableiffilter","glstableChildEntries","glstableiffilterchild","glstablePreChildren","glstablesubentryalign","glstableblocksubentrysep","glstablecaption","glstablenextcaption","glstablepostnextcaption","glstablenameheader","glstabledescheader","glstablesymbolheader","glstableotherheader","glstablesetstyle","glstablenewline","glstableleftalign","glstablerightalign","glstablecenteralign","glstablenamecolalign","glstabledesccolalign","glstablesymbolcolalign","glstableothercolalign","glstablenamewidth","glstabledescwidth","glstablesymbolwidth","glstableotherwidth","glstableblockwidth","glstablepostpreambleskip","glstableprepostambleskip","glstableNameFmt","glstableSubNameFmt","glstableSymbolFmt","glstableSubSymbolFmt","glstableDescFmt","glstableSubDescFmt","glstableotherfield","glstableOtherFmt","glstableOther","glstableSubOtherNoDesc","glstableifhasotherfield","glstableHeaderFmt","glstableblockalign","glstableblockentry","glstableblockheader","glstableblockperrowcount","glstableblocksubentry","glstablecolsperblock","glstablecurrentblockindex","glstableDesc","glstableDescWithOther","glstablefinishlengthupdates","glstablefinishrow","glstablefirsthead","glstablefoot","glstablefootstrut","glstableGroupHeaderFmt","glstablegroupheading","glstablehead","glstableifmeasuring","glstableifpar","glstableinitlengthupdates","glstablelastfoot","glstablelengthupdate","glstablemeasureandupdate","glstableName","glstableNameNoDesc","glstableNameSingleFmt","glstableNameSinglePostName","glstableNameSinglePostSubName","glstableNameSingleSubSuppl","glstableNameSingleSuppl","glstableNameSingleSymSep","glstableNameTarget","glstablenewstyle","glstableOtherNoDesc","glstableOtherSep","glstableOtherWithSep","glstablePostGroupNewLine","glstablerowspan","glstablespanwidth","glstableSubDesc","glstableSubDescSymbolOther","glstablesubentrywidth","glstableSubName","glstableSubNameNoDesc","glstableSubNameSep","glstableSubNameSingleFmt","glstableSubNameSymbolNoDesc","glstableSubNameTarget","glstableSubOtherSep","glstableSubOtherWithSep","glstableSubSep","glstableSubSymbol","glstableSubSymbolName","glstableSubSymbolNameFmt","glstableSubSymbolNameTarget","glstableSubSymbolWithSep","glstableSymbol","glstableSymbolName","glstableSymbolNameFmt","glstableSymbolNameTarget","glstabletotalcols"]}
-,
-"glossary-topic.sty":{"envs":{},"deps":["multicol.sty"],"cmds":["glstopicColsEnv","glstopicCols","glstopicParIndent","glstopicSubIndent","glstopicSubItemParIndent","glstopicInit","glstopicGroupHeading","glstopicSubGroupHeading","glstopicItem","glstopicPreSkip","glstopicMarker","glstopicTitle","glstopicTitleFont","glstopicMidSkip","glstopicDesc","glstopicPostSkip","glstopicLoc","glstopicAssignSubIndent","glstopicAssignWidest","glstopicSubItem","glstopicSubNameFont","glstopicSubItemSep","glstopicSubItemBox","glstopicSubPreLocSep","glstopicSubLoc","glstopicsubitemhangindent","glstopicwidest"]}
-,
-"glossary-tree.sty":{"envs":{},"deps":{},"cmds":["glstreenamefmt","glstreegroupheaderfmt","glstreenavigationfmt","glstreepredesc","glstreechildpredesc","glstreeitem","glstreesubitem","glstreesubsubitem","glstreeindent","glssetwidest","glsfindwidesttoplevelname","glstreenamebox","indexspace"]}
-,
-"glosstex.sty":{"envs":{},"deps":{},"cmds":["glosstex","acronym","gls","ac","acs","acl","acf","printglosstex","glxitemorderdefault","glxitemplacementdefault","glxparendefault","glxparenlistdefault","glxref","glxheading"]}
-,
-"gmiflink.sty":{"envs":{},"deps":{},"cmds":["gmhypertarget","gmiflink","gmifref","theGMhlabel"]}
-,
-"gmp.sty":{"envs":["mpost","mpost*"],"deps":["xkeyval.sty","graphicx.sty","ifpdf.sty","ifxetex.sty","environ.sty"],"cmds":["gmpoptions","usempxclass","usempxpackage","resetmpxpackages","mpxcommands","resetmpxcommands","mpdim","usempost","btex","verbatimtex"]}
-,
-"gnuplottex.sty":{"envs":["gnuplot"],"deps":["graphicx.sty","moreverb.sty","keyval.sty","ifthen.sty","catchfile.sty"],"cmds":["gnuplotloadfile","ifShellEscape","ShellEscapetrue","ShellEscapefalse","ifmiktex","miktextrue","miktexfalse","ifusesiunitx","usesiunitxtrue","usesiunitxfalse","ifcleanup","cleanuptrue","cleanupfalse","ifusesubfolder","usesubfoldertrue","usesubfolderfalse","tmpfile","subfolder","thefignum","figname","usesiunitxingnuplot","gnuplotverbatimwrite","endgnuplotverbatimwrite","BeforeStream","gnuplotterminal","gnuplotterminaloptions","gnuplotscale","gnuplotCutFile","extension","gnuplotgraphicsprocess","gnuplotgraphicsinclude","gnuplotloadfilewrite"]}
-,
-"gobble-user.sty":{"envs":{},"deps":["gobble.sty"],"cmds":["gobble","gobbletwo","gobblethree","gobblefour","gobbleopt","gobbletwoopt","gobbleallopt","gobbletwoopttwo","firstofone","firstoftwo","secondoftwo","firstofthree","secondofthree","thirdofthree","gobbletofi","gobbletoelse","gobbletoor"]}
-,
-"gotoh.sty":{"envs":{},"deps":["xkeyval.sty"],"cmds":["Gotoh","GotohConfig","GotohScore","GotohResultA","GotohResultB"]}
-,
-"grabbox.sty":{"envs":{},"deps":{},"cmds":["grabbox"]}
-,
-"gradient-text.sty":{"envs":{},"deps":{},"cmds":["gradientRGB"]}
-,
-"gradientframe.sty":{"envs":{},"deps":["color.sty"],"cmds":["gradientframe"]}
-,
-"grading-scheme.sty":{"envs":["gradingscheme","block"],"deps":["l3keys2e.sty","multirow.sty","rotating.sty"],"cmds":["entry","n"]}
-,
-"grafcet.sty":{"envs":["Encap"],"deps":["ifsym.sty","ifthen.sty","tikz.sty","tikzlibraryshapes.sty"],"cmds":["Etape","EtapeInit","EtapeActive","MacroEtape","MacroEtapeE","MacroEtapeS","EtapeEncapsulante","EtapeEncapsulanteInit","LienActivation","Transition","Recept","Recepts","TransitionSource","TransitionPuits","TransitionRecept","ActionX","Action","ActionCond","ActionActiv","ActionDesactiv","ActionEvenement","ActionFranchissement","ActionXV","Actions","ForcageX","ForcageXV","EtapeTransition","EtapeInitTransition","SequenceET","SequenceEE","SequenceTE","SequenceTT","ActionRecept","Graphe","GrapheBoucle","DivOU","ConvOU","SautEtapes","RepriseEtapes","DeplaceNoeudx","DeplaceNoeudy","DecaleNoeudx","DecaleNoeudy","DivET","ConvET","LienRetour","Lien","LienET","LienTE","Comment","ActionEfface","BrancheOU","CadreEncap","EspaceV","EtapeAction","EtapeInitAction","EtapeSeule","FinBrancheOU","FinBrancheOUa","Forcage","LienRetourN","LienRetourOU","LienRetourUp","LienRetoura","encap","nometape","nomgraphe"]}
-,
-"grant-afosr.cls":{"envs":{},"deps":["s-grant.cls","times.sty"],"cmds":["draftstatus","whitepaperstatus","sectioncompactstatus","bibcompactstatus"]}
-,
-"grant-aro.cls":{"envs":{},"deps":["s-grant.cls","times.sty"],"cmds":["draftstatus","whitepaperstatus","sectioncompactstatus","bibcompactstatus"]}
-,
-"grant-darpa.cls":{"envs":{},"deps":["s-grant.cls","times.sty"],"cmds":["draftstatus","whitepaperstatus","sectioncompactstatus","bibcompactstatus"]}
-,
-"grant-doe.cls":{"envs":{},"deps":["s-grant.cls","times.sty"],"cmds":["draftstatus","whitepaperstatus","sectioncompactstatus","bibcompactstatus"]}
-,
-"grant-nih.cls":{"envs":{},"deps":["s-grant.cls"],"cmds":["draftstatus","whitepaperstatus","sectioncompactstatus","bibcompactstatus"]}
-,
-"grant-nrl.cls":{"envs":{},"deps":["s-grant.cls","times.sty"],"cmds":["draftstatus","whitepaperstatus","sectioncompactstatus","bibcompactstatus"]}
-,
-"grant-nsf.cls":{"envs":{},"deps":["s-grant.cls"],"cmds":["draftstatus","whitepaperstatus","sectioncompactstatus","bibcompactstatus"]}
-,
-"grant-onr.cls":{"envs":{},"deps":["s-grant.cls","times.sty"],"cmds":["draftstatus","whitepaperstatus","sectioncompactstatus","bibcompactstatus"]}
-,
-"grant.cls":{"envs":{},"deps":["etoolbox.sty","s-book.cls","babel.sty","inputenc.sty","fontenc.sty","uarial.sty","ulem.sty","soul.sty","xcolor.sty","framed.sty","setspace.sty","geometry.sty","titlesec.sty","chappg.sty","fancyhdr.sty","paralist.sty","enumitem.sty","hyphenat.sty","biblatex.sty","graphicx.sty","caption.sty","hyperref.sty","tabularx.sty","longtable.sty","ltxtable.sty","placeins.sty","pdfpages.sty","lineno.sty","booktabs.sty","wrapfig.sty","amsmath.sty","csquotes.sty","pdfcomment.sty","multicol.sty"],"cmds":["AbstractName","AbstractOtherPersonnelName","AdminAddress","AdminEmail","AdminFax","AdminInstitution","AdminName","AdminPhone","AdminTitle","chapternonum","chapternotitle","dontcite","fntsiz","FundingAgency","FundingDeadline","FundingId","FundingIdTitle","FundingTitle","FundingUrl","LeadOrganizationAddress","LeadOrganizationCAGE","LeadOrganizationDUNS","LeadOrganizationName","LeadOrganizationTIN","makeabstractcoverpage","makecoverpage","oldcite","OtherKeyPersonnel","partnonum","PiAddress","PiDepartment","PiEmail","PiFax","PiInstitution","PiName","PiPhone","PiTitle","PiUrl","PoAddress","PoEmail","PoName","PoPhone","ProposalCostInMillions","ProposalDurationInYears","ProposalTitle","sectionnonum","subsectionnonum","subsubsectionnonum","captionsenglish","dateenglish","extrasenglish","noextrasenglish","englishhyphenmins","britishhyphenmins","americanhyphenmins","prefacename","bibname","chaptername","enclname","ccname","headtoname","pagename","seename","alsoname","proofname","glossaryname","DH","dh","dj","DJ","guillemetleft","guillemetright","guillemotleft","guillemotright","guilsinglleft","guilsinglright","Hwithstroke","hwithstroke","k","NG","ng","quotedblbase","quotesinglbase","textogonekcentered","textquotedbl","th","TH"]}
-,
-"graph35.sty":{"envs":{},"deps":["etoolbox.sty","pixelart0.sty","tikz.sty","tikzlibrarycalc.sty","pgfkeys.sty","amssymb.sty","amsbsy.sty","sansmath.sty","letterspace.sty","pgfopts.sty","graph35-pixelart.sty","graph35-keys.sty"],"cmds":["setgraphcolor","calculator","tikzcalculator","key","tikzkey","menu","tikzmenu","function","tikzfunction","battery","tikzbattery","boolvalue"]}
-,
-"graphbox.sty":{"envs":{},"deps":["graphicx.sty"],"cmds":{}}
-,
-"graphfig.sty":{"envs":["Figure"],"deps":["graphics.sty","subfigure.sty","float.sty"],"cmds":["graphfile","FigureDefaultPlacement","thesubfigure","docdate","FileName","filedate","filedescr","fileversion"]}
-,
-"graphics.sty":{"envs":{},"deps":["trig.sty"],"cmds":["DeclareGraphicsExtensions","DeclareGraphicsRule","graphicspath","includegraphics","reflectbox","resizebox","rotatebox","scalebox","GDebug"]}
-,
-"graphicscache.sty":{"envs":{},"deps":["graphicx.sty","xstring.sty","filemod.sty","letltxmacro.sty","pgfopts.sty","pgffor.sty","ifplatform.sty","pdftexcmds.sty","ltxcmds.sty"],"cmds":["includegraphicscache"]}
-,
-"graphicsonthefly.sty":{"envs":{},"deps":["ifplatform.sty","animate.sty"],"cmds":["animatedgifonthefly","animatedgif","usegifonthefly","animategraphicsonthefly","includegraphicsonthefly","prepareimgonthefly","useimgonthefly","CoalesceOption","ConvertCommand","RemoveCommand","WgetCommand"]}
-,
-"graphicx-psmin.sty":{"envs":{},"deps":["graphicx.sty"],"cmds":["loadgraphics"]}
-,
-"graphicx.sty":{"envs":{},"deps":["keyval.sty","trig.sty"],"cmds":["DeclareGraphicsExtensions","DeclareGraphicsRule","graphicspath","includegraphics","reflectbox","resizebox","rotatebox","scalebox"]}
-,
-"graphicxbox.sty":{"envs":{},"deps":{},"cmds":["graphicxbox","fgraphicxbox"]}
-,
-"graphicxpsd.sty":{"envs":{},"deps":["shellesc.sty"],"cmds":{}}
-,
-"graphicxsp.sty":{"envs":["createImage","verbatimwrite"],"deps":["graphicx.sty","eso-pic.sty","verbatim.sty"],"cmds":["embedEPS","bboxOf","llxOf","llyOf","urxOf","uryOf","heightOf","widthOf","csOf","insertEPS","previewOn","previewOff","ifpreview","previewtrue","previewfalse","AddToEmbeddedEPSs","DVIPSONE","setSMask"]}
-,
-"graphpap.sty":{"envs":{},"deps":{},"cmds":["graphpaper"]}
-,
-"graphpaper.cls":{"envs":{},"deps":["xkeyval.sty","geometry.sty","euclideangeometry.sty","graphicx.sty","xcolor.sty"],"cmds":["bilinear","semilogx","semilogy","loglog","polar","logpolar","smith","setxside","setyside","setminimumdistance","setgridcolor","setmajorlinethickness","setmediumlinethickness","setminorlinethickness","customcode","GradPolar","GradResist","CalcRxx","PolarChart","SmithChart","WhileDoOne","WhileDoTwo","Xcircle","Ycircle","carta","A","Adue","Auxx","Cifre","Czero","Dec","decx","decxx","decy","decyy","factor","hlines","I","Idue","IIdue","Inter","J","LAng","LnDieci","Logaritmo","LowResUno","LowResZero","LPLA","lwa","lwb","lwc","mb","Mdue","mindistanceunit","minimumdistance","minorticklength","ml","Mod","mr","mt","plstep","pmargin","Rbox","RotLab","Rout","RoutCifre","RoutTak","Rxx","Rzero","Scala","ScalaDecade","ticklength","vlines","xlength","xlinsq","xmindiv","xmindivfloat","xsideunit","xstep","xtick","ylength","yline","ylinsq","ymindiv","ymindivfloat","ysideunit","ystep","ytickstart","ytickstop","yytickstop"]}
-,
-"graphviz.sty":{"envs":{},"deps":["graphicx.sty","psfrag.sty"],"cmds":["digraph","neatograph","inputdigraph","ifsinglefile","singlefiletrue","singlefilefalse","ifpsfrag","psfragtrue","psfragfalse"]}
-,
-"grayhints.sty":{"envs":{},"deps":["eforms.sty"],"cmds":["BlurToBlack","CalcToGray","CommitSuccessEvent","DateFmt","DateFmtEx","DateKey","DateKeyEx","EnterCommitFailEvent","FmtToGray","FocusToBlack","KeyToGray","matchGray","MergeChange","normalGrayColors","NumFmt","NumKey","PercentFmt","PercentKey","RangeValidate","SimpleCalc","SpecialFmt","SpecialKey","SpecialKeyEx","TimeFmtEx","TimeKey","EnterCommitFailDef","FailStringDef","FormsRequirement","nocalcs","nodljsend"]}
-,
-"greek4cbc.sty":{"envs":{},"deps":{},"cmds":["givbcfamily","textgivbc","Aalpha","Abeta","Agamma","Adelta","Aepsilon","Azeta","Aeta","Atheta","Aiota","Akappa","Alambda","Amu","Anu","Axi","Aomicron","Api","Arho","Asigma","Atau","Aupsilon","Achi","Aphi","Apsi","Aomega","ARalpha","ARbeta","ARgamma","ARdelta","ARepsilon","ARzeta","AReta","ARtheta","ARiota","ARkappa","ARlambda","ARmu","ARnu","ARxi","ARomicron","ARpi","ARrho","ARsigma","ARtau","ARchi","ARphi","ARpsi","ARomega","translitgivbc","translitgivbcfont"]}
-,
-"greek6cbc.sty":{"envs":{},"deps":{},"cmds":["gvibcfamily","textgvibc","Aalpha","Abeta","Agamma","Adelta","Aepsilon","Adigamma","Azeta","Aeta","Atheta","Aiota","Akappa","Alambda","Amu","Anu","Axi","Aomicron","Api","Akoppa","Arho","Asigma","Atau","Aupsilon","Achi","Aphi","Apsi","Aomega","translitgvibc","translitgvibcfont"]}
-,
-"greekctr.sty":{"envs":{},"deps":{},"cmds":["greek","Greek"]}
-,
-"greekdates.sty":{"envs":{},"deps":["calc.sty"],"cmds":["Athensmonth","Delphimonth","Dilosmonth","Epidavrosmonth","Rhodesmonth","Macedoniamonth","Aitoliamonth","Biotiamonth","Samosmonth","Militosmonth","Tinosmonth","Lamiamonth","fullgreekday","shortgreekday","sshortgreekday","shortdategreek","Grshortdategreek"]}
-,
-"greektonoi.sty":{"envs":["greektonoi"],"deps":["xspace.sty"],"cmds":["perispwmeni","tildeOFF","tildeON","L","loy","Coy","coy"]}
-,
-"gregoriosyms.sty":{"envs":{},"deps":["iftex.sty","kvoptions.sty","luatexbase.sty","luaotfload.sty","luamplib.sty","xstring.sty","xcolor.sty"],"cmds":["gredefsymbol","gredefsizedsymbol","greABar","greRBar","greVBar","greABarSlant","greRBarSlant","greVBarSlant","greABarSC","greRBarSC","greVBarSC","greABarSmall","greRBarSmall","greVBarSmall","greABarSmallSlant","greRBarSmallSlant","greVBarSmallSlant","greABarSmallSC","greRBarSmallSC","greVBarSmallSC","greABarCaption","greRBarCaption","greVBarCaption","greABarCaptionSlant","greRBarCaptionSlant","greVBarCaptionSlant","greABarCaptionSC","greRBarCaptionSC","greVBarCaptionSC","greABarAlt","greRBarAlt","greVBarAlt","grebarredsymbol","gredefbarredsymbol","gresimpledefbarredsymbol","ABar","VBar","RBar","grelatexsimpledefbarredsymbol","gothRbar","gothVbar","GreDagger","grecross","grealtcross","greheightstar","gresixstar","GreStar","greLineOne","greLineTwo","greLineThree","greLineFour","greLineFive","greseparator","greOrnamentOne","greOrnamentTwo","greornamentation","gresetspecial","greunsetspecial","GreSpecial"]}
-,
-"gregoriotex.sty":{"envs":{},"deps":["iftex.sty","xcolor.sty","luacolor.sty","kvoptions.sty","graphicx.sty","luatexbase.sty","luaotfload.sty","luamplib.sty","xstring.sty"],"cmds":["GreItalic","GreSmallCaps","GreBold","GreTypewriter","GreUnderline","GreColored","gresetlinecolor","GreScoreId","GregorioTeXAPIVersion","GreNewLine","GreNewParLine","GreFinalNewLine","greillumination","greannotation","gresetannotationby","gresetannotationvalign","GreMode","gresetmodenumbersystem","GreModeNumber","GreAnnotationLines","grecommentary","gresetabovelinestext","GreSetTextAboveLines","GreSetNabcAboveLines","gresetlines","GreFuseTwo","GreFuse","grechangeglyph","grechangecavumglyph","greresetglyph","greresetcavumglyph","gresettranslationcentering","gresetbreakintranslation","gresettranslation","GreWriteTranslation","GreWriteTranslationWithCenterBeginning","GreTranslationCenterEnd","gresetlastline","gresetlineheightexpansion","gresetnoteadditionalspacelinestext","GreCPDivisioMaiorDottedBackingFive","GreCPDivisioMaiorDottedBackingFour","GreCPDivisioMaiorDottedBackingThree","GreCPDivisioMaiorDottedBackingTwo","GreCPDivisioMaiorDottedFive","GreCPDivisioMaiorDottedFour","GreCPDivisioMaiorDottedThree","GreCPDivisioMaiorDottedTwo","GreCPDivisioMaiorFive","GreCPDivisioMaiorFour","GreCPDivisioMaiorThree","GreCPDivisioMaiorTwo","GreCPDivisioMinimaFive","GreCPDivisioMinimaFour","GreCPDivisioMinimaParenFive","GreCPDivisioMinimaParenFour","GreCPDivisioMinimaParenSix","GreCPDivisioMinimaParenThree","GreCPDivisioMinimaParenTwo","GreCPDivisioMinimaSix","GreCPDivisioMinimaThree","GreCPDivisioMinimaTwo","GreCPDivisioMinimisFive","GreCPDivisioMinimisFour","GreCPDivisioMinimisSix","GreCPDivisioMinimisThree","GreCPDivisioMinimisTwo","GreCPDivisioMinorFive","GreCPDivisioMinorFour","GreCPDivisioMinorThree","GreCPDivisioMinorTwo","GreCPVirgulaFive","GreCPVirgulaFour","GreCPVirgulaParenFive","GreCPVirgulaParenFour","GreCPVirgulaParenSix","GreCPVirgulaParenThree","GreCPVirgulaParenTwo","GreCPVirgulaSix","GreCPVirgulaThree","GreCPVirgulaTwo","GreBeginScore","GreEndScore","GreLastOfLine","GreLastOfScore","gresetbolshifts","greseteolshifts","GreSuppressEolCustos","greseteolcustos","GreResetEolCustos","greseteolcustosbeforeeuouae","gresetbreakbeforeeuouae","GreAdHocSpaceEndOfElement","GreEndOfElement","GreEndOfGlyph","GreBeginNLBArea","GreEndNLBArea","gresetbreakineuouae","GreBeginEUOUAE","GreEndEUOUAE","gretilde","gresetgregoriofont","gresetgregoriofontscaled","GreCPVirgaReversaAscendensOnDLine","greloadholehollowfonts","grechangestyle","grechangestaffsize","gresetheadercapture","GreHeader","gresetgregpath","gresetcompilegabc","gregorioscore","gabcsnippet","GreHyph","greseteolhyphen","gresethyphen","GreBeginHeaders","grebeforeheaders","GreEndHeaders","greafterheaders","GreForceBreak","GreNoBreak","grechangestafflinethickness","grebolshiftcleftype","grelocalbolshiftcleftype","GreProtrusionFactor","gresetprotrusionfactor","GreProtrusion","gresetledgerlineheuristic","GreSupposeHighLedgerLine","GreSupposeLowLedgerLine","grechangedim","grechangecount","grescaledim","grechangenextscorelinedim","grechangenextscorelinecount","greconffactor","greloadspaceconf","gresetglyphstyle","grebarbracewidth","greprintsigns","GreDiscretionary","gresetclef","GreSetLinesClef","GreSetLargestClef","GreInitialClefPosition","GreSetInitialClef","GreChangeClef","GreCustos","GreFinalCustos","GreNextCustos","gresetcustosalteration","gresetbracerendering","GreOverCurlyBrace","GreOverBrace","GreUnderBrace","grebracemetapostpreamble","greslurheight","GreSlur","GreVarBraceLength","GreVarBraceSavePos","GrePunctumMora","GreAugmentumDuplex","GreLowChoralSign","GreHighChoralSign","GreVEpisema","GreBarBrace","GreBarVEpisema","GreAccentus","GreSemicirculus","GreCirculus","GreReversedAccentus","GreReversedSemicirculus","GreMusicaFictaFlat","GreMusicaFictaNatural","GreMusicaFictaSharp","GreAdditionalLine","GreDrawAdditionalLine","GreHEpisema","gresethepisema","GreHEpisemaBridge","gresetlinesbehinddottedbar","GreInVirgula","GreVirgula","GreInVirgulaHigh","GreVirgulaHigh","GreInVirgulaParen","GreVirgulaParen","GreInVirgulaParenHigh","GreVirgulaParenHigh","GreInDivisioMinimis","GreDivisioMinimis","GreInDivisioMinimisHigh","GreDivisioMinimisHigh","GreInDivisioMinima","GreDivisioMinima","GreInDivisioMinimaHigh","GreDivisioMinimaHigh","GreInDivisioMinimaParen","GreDivisioMinimaParen","GreInDivisioMinimaParenHigh","GreDivisioMinimaParenHigh","GreInDivisioMinor","GreDivisioMinor","GreInDivisioMaior","GreDivisioMaior","GreInDivisioMaiorDotted","GreDivisioMaiorDotted","GreDominica","GreInDominica","GreInDivisioFinalis","GreDivisioFinalis","gresetshiftaftermora","GreFinalDivisioFinalis","GreFinalDivisioMaior","gresetlinesbehindpunctumcavum","gresetlinesbehindalteration","GreFlat","GreFlatParen","GreNatural","GreNaturalParen","GreSharp","GreSharpParen","gresetpunctumcavum","GreCavum","GreBracket","gresetpointandclick","GreGlyphHeights","GreGlyph","gresetlyrics","gresetnotes","GreFirstWord","GreFirstSyllable","GreFirstSyllableInitial","GreElision","GreSetFixedTextFormat","GreSetFixedNextTextFormat","GreUnstyled","GreGABCForceCenters","GreGABCNextForceCenters","gresetgabcforcecenters","GreSetThisSyllable","GreSetNextSyllable","gresetlyriccentering","gresetclivisalignment","gresetemptyfirstsyllablehyphen","GreForceHyphen","GreEmptyFirstSyllableHyphen","gresetunbreakablesyllablenotes","GreSyllableNoteCount","gresetsyllablerewriting","GreClearSyllableText","GreSyllable","GreNextSyllableBeginsEUOUAE","GreLastSyllableBeforeEUOUAE","gresetbarspacing","GreBarSyllable","GreNoNoteSyllable","gresetinitiallines","GreSetFirstSyllableText","GreSetNoFirstSyllableText","GreUpcomingNewLineForcesCustos","GreScoreOpening","gredefsymbol","gredefsizedsymbol","greABar","greRBar","greVBar","greABarSlant","greRBarSlant","greVBarSlant","greABarSC","greRBarSC","greVBarSC","greABarSmall","greRBarSmall","greVBarSmall","greABarSmallSlant","greRBarSmallSlant","greVBarSmallSlant","greABarSmallSC","greRBarSmallSC","greVBarSmallSC","greABarCaption","greRBarCaption","greVBarCaption","greABarCaptionSlant","greRBarCaptionSlant","greVBarCaptionSlant","greABarCaptionSC","greRBarCaptionSC","greVBarCaptionSC","greABarAlt","greRBarAlt","greVBarAlt","grebarredsymbol","gredefbarredsymbol","gresimpledefbarredsymbol","ABar","VBar","RBar","grelatexsimpledefbarredsymbol","gothRbar","gothVbar","GreDagger","grecross","grealtcross","greheightstar","gresixstar","GreStar","greLineOne","greLineTwo","greLineThree","greLineFour","greLineFive","greseparator","greOrnamentOne","greOrnamentTwo","greornamentation","gresetspecial","greunsetspecial","GreSpecial","gresetnabcfont","GreNABCChar","gresetnabc","GreNABCNeumes","GreScoreNABCLines"]}
-,
-"grfext.sty":{"envs":{},"deps":["infwarerr.sty","kvdefinekeys.sty"],"cmds":["AppendGraphicsExtensions","PrependGraphicsExtensions","RemoveGraphicsExtensions","PrintGraphicsExtensions"]}
-,
-"grfpaste.sty":{"envs":{},"deps":["graphicx.sty"],"cmds":["paste","sendout","xxx"]}
-,
-"grid-system.sty":{"envs":["Row","Cell","row","cell"],"deps":["calc.sty","environ.sty","forloop.sty","ifthen.sty","xkeyval.sty"],"cmds":{}}
-,
-"grid.sty":{"envs":["gridenv","gridfltenv"],"deps":["keyval.sty"],"cmds":["fight","roundoff","floatunit","allfloats","halfbaselineskip","figboxht","mylines","oldendfigure","oldendtable","oldfigure","oldtable","xbaselineskip","ProcessOptionsKV"]}
-,
-"gridpapers.sty":{"envs":{},"deps":["xkeyval.sty","kvoptions.sty","xcolor.sty","tikz.sty","tikzlibrarypatterns.meta.sty","tikzlibrarycalc.sty","tikzpagenodes.sty","pagecolor.sty","geometry.sty"],"cmds":{}}
-,
-"gridset.sty":{"envs":{},"deps":{},"cmds":["gridinterval","gridbase","SavePos","vskipnextgrid","thegridinfo","theposinfo","theypos","thegridcnt","newpos"]}
-,
-"gridslides.cls":{"envs":{},"deps":{},"cmds":{}}
-,
-"gridslides.sty":{"envs":["slide","style","rawslide"],"deps":["inputenc.sty","amsmath.sty","amsthm.sty","amssymb.sty","mathtools.sty","babel.sty","braket.sty","siunitx.sty","xspace.sty","dsfont.sty","microtype.sty","ragged2e.sty","tikz.sty","geometry.sty","xstring.sty","enumerate.sty","environ.sty","hyperref.sty","tikzlibrarycalc.sty"],"cmds":["bg","txt","block","fig","eq","only","alt","institute","theheadline","theslide","theauthor","thetitle","thedate","theinstitute","rgb","captionsngerman","datengerman","extrasngerman","noextrasngerman","dq","ntosstrue","ntossfalse","prefacename","bibname","chaptername","enclname","ccname","headtoname","pagename","seename","alsoname","proofname","glossaryname","mdqon","mdqoff"]}
-,
-"grmath.sty":{"envs":{},"deps":{},"cmds":["lcm","arccot","arcsec","arccsc","symgroperators"]}
-,
-"grruby.sty":{"envs":["grruby","grrubypars"],"deps":["ragged2e.sty","etoolbox.sty"],"cmds":["grfoo","grrubystyle","grrubycolor","grexpos","grrubyUserDefined"]}
-,
-"grundgesetze.sty":{"envs":{},"deps":["kvoptions.sty","bguq.sty"],"cmds":["GGhorizontal","GGnot","GGconditional","GGquant","GGjudge","GGdef","GGbracket","GGsqbracket","GGterm","GGjudgelong","GGjudgevar","GGdeflong","GGdefvar","GGnotalone","GGdnot","GGall","GGnoboth","GGnonotalone","GGnodnot","GGnoquant","GGnonot","GGcontent","GGassert","GGjudgealone","GGassertlong","GGassertalone","GGassertvar","GGdefalone","GGneg","GGoddspace","GGtinyspace","GGtiniestspace","GGthickness","GGquantthickness","beforelen","GGafterlen","GGspace","GGlift","GGlinewidth"]}
-,
-"grverb.sty":{"envs":["grverbatim"],"deps":{},"cmds":["grverb"]}
-,
-"gtpart.cls":{"envs":["webabstract","htmlabstract","mathmlabstract"],"deps":["amsthm.sty","amssymb.sty","amsmath.sty","hyperref.sty","xcolor.sty","microtype.sty"],"cmds":["address","aoben","arxiv","arXiv","arxivpassword","arxivreference","author","bBB","Bbb","Bullet","cedpol","cl","co","corresponding","D","dedicatory","doi","doubleauthor","doubletitle","eatabstract","editor","email","fg","fullref","gbp","givenname","ifmicrotype","issuenumber","J","keyword","lastauthor","makeautorefname","microtypefalse","microtypetrue","MR","nl","np","og","ooben","ppar","previousauthors","previousrootauthors","proposed","publishedonline","qua","Regis","regis","rk","rootauthors","seconded","sh","singleauthor","singletitle","sq","sqr","stdskip","stdspace","subject","surname","theabstract","theaddress","theauthors","thededicatory","theemail","theshortauthors","theshorttitle","thetitle","theurl","TIL","title","urladdr","version","xox","xxarXiv","xxJFM","xxMR","xxZBL","Zbl","theoautorefname","thmautorefname","addendumautorefname","addendautorefname","addautorefname","maintheoremautorefname","mainthmautorefname","corollaryautorefname","corolautorefname","coroautorefname","corautorefname","lemmaautorefname","lemmautorefname","lemautorefname","sublemmaautorefname","sublemautorefname","sublautorefname","propositionautorefname","propositautorefname","proposautorefname","propoautorefname","propautorefname","propertyautorefname","properautorefname","scholiumautorefname","stepautorefname","conjectureautorefname","conjectautorefname","conjautorefname","questionautorefname","questnautorefname","questautorefname","quesautorefname","qnautorefname","definitionautorefname","definautorefname","defiautorefname","defautorefname","dfnautorefname","notationautorefname","notaautorefname","notnautorefname","remarkautorefname","remaautorefname","remautorefname","rmkautorefname","rkautorefname","remarksautorefname","remsautorefname","rmksautorefname","rksautorefname","exampleautorefname","exampautorefname","exmpautorefname","examautorefname","exaautorefname","algorithmautorefname","algoautorefname","algautorefname","axiomautorefname","axiautorefname","axautorefname","caseautorefname","claimautorefname","clmautorefname","assumptionautorefname","assumptautorefname","conclusionautorefname","conclautorefname","concautorefname","conditionautorefname","conditautorefname","condautorefname","constructionautorefname","constructautorefname","constautorefname","consautorefname","criterionautorefname","criterautorefname","critautorefname","exerciseautorefname","exerautorefname","exeautorefname","problemautorefname","problmautorefname","probmautorefname","probautorefname","solutionautorefname","solnautorefname","solautorefname","summaryautorefname","summautorefname","sumautorefname","operationautorefname","operautorefname","observationautorefname","observnautorefname","obserautorefname","obsautorefname","obautorefname","conventionautorefname","conventautorefname","convautorefname","cvnautorefname","warningautorefname","warnautorefname","noteautorefname","factautorefname"]}
-,
-"gtrcrd.sty":{"envs":{},"deps":{},"cmds":["A","B","C","D","E","F","G","Ab","Bb","Cb","Db","Eb","Fb","Gb","As","Bs","Cs","Ds","Es","Fs","Gs","Am","Bm","Cm","Dm","Em","Fm","Gm","Abm","Bbm","Cbm","Dbm","Ebm","Fbm","Gbm","Asm","Bsm","Csm","Dsm","Esm","Fsm","Gsm","chordsbelow","neolatin","transposeOneUp","transposeTwoUp","transposeThreeUp","transposeFourUp","transposeFiveUp","transposeSixUp","transposeOneDown","transposeTwoDown","transposeThreeDown","transposeFourDown","transposeFiveDown","transposeSixDown","notranspose","sharponly","flatonly","normalize","crdheight","crdfont","crdwidth","wordwidth","CHORD","crdAbm","crdAb","crdAm","crdAsm","crdAs","crdA","crdBbm","crdBb","crdBm","crdBsm","crdBs","crdB","crdCbm","crdCb","crdCm","crdCsm","crdCs","crdC","crdDbm","crdDb","crdDm","crdDsm","crdDs","crdD","crdEbm","crdEb","crdEm","crdEsm","crdEs","crdE","crdFbm","crdFb","crdFm","crdFsm","crdFs","crdF","crdGbm","crdGb","crdGm","crdGsm","crdGs","crdG"]}
-,
-"gtrlib.largetrees.sty":{"envs":{},"deps":["genealogytree.sty","etoolbox.sty"],"cmds":["gtrDBspouse","gtrifspousedefined","gtrPrintSpouse","gtrPrintSpouseDetails","gtrDBchildren","gtrDBdaughters","gtrDBsons","gtrifchildrendefined","gtrPrintChildren","gtrltSparseNodeProcessor","gtrltIfSparseEnabled","gtrltFieldCount","gtrltIfSparse","gtrltDeclareFieldCount","gtrltFieldCountByConditionals"]}
-,
-"guit.sty":{"envs":{},"deps":["graphics.sty","url.sty","xcolor.sty","xkeyval.sty"],"cmds":["GuIT","guit","Ars","Arsob","ars","tecnica","arsta","arstb","arstv","arsto","Arsto","GuITcolor","guitcolor","GuITtext","guittext","GuITtextEn","guittexten","GuITurl","guiturl","GuITforum","guitforum","GuITmeeting","guitmeeting","setupGuIT","setupguit","DeclareGuITLogoCommand","AliasGuITLogoCommand"]}
-,
-"guitar.sty":{"envs":["guitar","guitarMagic","guitarCr"],"deps":["toolbox.sty"],"cmds":["guitarChord","guitarOn","guitarOff","guitarMagicOn","guitarMagicOff","guitarCrOn","guitarCrOff","guitarFirstLeft","guitarFirstFlush","guitarSharp","guitarFlat","guitarEndLine","guitarEndPar","guitarEndDoublePar","guitarNoChord","guitarPreAccord","guitarAccord","guitarMagicOnHook","guitarMagicOffHook","guitarCrOnHook","guitarCrOffHook","guitarSplitDist","guitarSplitMerge","guitarCalcDim","guitarDim","guitarPut","guitarPutOnSpace","guitarPutDist","guitarPutMerge"]}
-,
-"guitarchordschemes.sty":{"envs":{},"deps":["tikz.sty","tikzlibraryshapes.misc.sty","tikzlibrarycalc.sty","cnltx-base.sty"],"cmds":["chordscheme","scales","setfingering","setchordscheme","rootsymbol","showrootsymbol","ringingstring","mutedstring"]}
-,
-"guitartabs.cls":{"envs":["tabline"],"deps":["inputenc.sty","geometry.sty","xifthen.sty","tikz.sty","musixtex.sty","harmony.sty","intcalc.sty"],"cmds":["artistname","albumtitle","songname","maketabheader","thetabstrings","thetabbars","thetabcstring","thetabcbar","thetabcn","thetabcdn","theflag","gtuning","timesigtop","timesigbot","tabwidth","ypostimetop","ypostimebot","nextbar","note","xpos","notel","restwhole","resthalf","restquarter","resteighth","restsixteenth"]}
-,
-"guitbeamer.cls":{"envs":["LaTeXcode","LaTeXoutput"],"deps":["xcolor.sty","s-beamer.cls","graphicx.sty","guit.sty","ucs.sty","inputenc.sty"],"cmds":["aalert","bs","lb","rb","ls","rs","Lsty","Lcls","Lopt","Lenv","n","nn","fakeind","LCmd","LCmdArg","tbs","tlb","trb","tls","trs","ncGuIT"]}
-,
-"gztarticle.cls":{"envs":["gztfigure","gztfigure*","gzttable","gzttable*","gztframe","gztframe*","theoreme","theoreme*","theorem","theorem*","corollaire","corollaire*","corollary","corollary*","conjecture","conjecture*","proposition","proposition*","lemme","lemme*","lemma","lemma*","axiome","axiome*","axiom","axiom*","definition","definition*","remarque","remarque*","remark","remark*","exemple","exemple*","example","example*","notation","notation*","preuve","proof","gztcode","descriptionFB","enumerate*","itemize*","description*","authorsinstructions","bookreview"],"deps":["xpatch.sty","l3keys2e.sty","xparse.sty","s-book.cls","standalone.sty","datatool.sty","fontenc.sty","inputenc.sty","kpfonts.sty","titlesec.sty","multicol.sty","graphicx.sty","longtable.sty","adjustbox.sty","mwe.sty","zref-totpages.sty","zref-xr.sty","ragged2e.sty","xspace.sty","textcase.sty","epigraph.sty","csquotes.sty","biblatex.sty","array.sty","booktabs.sty","tabularx.sty","nccparskip.sty","multirow.sty","varioref.sty","mathtools.sty","rsfso.sty","esvect.sty","translator.sty","geometry.sty","babel.sty","eurosym.sty","iflang.sty","etoc.sty","microtype.sty","datetime.sty","enumitem.sty","afterpage.sty","xcolor.sty","tikz.sty","tikzlibrarybabel.sty","tikzlibraryfadings.sty","tikzlibrarypositioning.sty","tikzlibrarycalc.sty","pgfplots.sty","tcolorbox.sty","tcolorboxlibrarybreakable.sty","tcolorboxlibraryskins.sty","tcolorboxlibraryhooks.sty","tcolorboxlibrarytheorems.sty","tcolorboxlibrarylistingsutf8.sty","tikzpagenodes.sty","amsthm.sty","thmtools.sty","placeins.sty","hyperref.sty","bookmark.sty","glossaries.sty","cleveref.sty","titleps.sty"],"cmds":["title","subtitle","author","acknowledgements","printauthorsdetails","academicsignature","question","gztlocaltableofcontents","smf","gzt","cad","Cad","surname","century","aside","N","Z","D","Q","R","C","K","cotan","arccos","arcsin","arctan","ch","sh","tanh","log","lg","newtheorem","gztverb","insertbibimage","DH","dh","dj","DJ","guillemetleft","guillemetright","guillemotleft","guillemotright","guilsinglleft","guilsinglright","Hwithstroke","hwithstroke","k","NG","ng","quotedblbase","quotesinglbase","textogonekcentered","textquotedbl","th","TH","frenchsetup","frenchbsetup","AddThinSpaceBeforeFootnotes","alsoname","at","bibname","AutoSpaceBeforeFDP","boi","bname","bsc","CaptionSeparator","captionsfrench","ccname","chaptername","circonflexe","dateacadian","datefrench","DecimalMathComma","degre","degres","descindentFB","dotFFN","enclname","extrasfrench","FBcolonspace","FBdatebox","FBdatespace","FBeverylineguill","FBfigtabshape","FBfnindent","FBFrenchFootnotesfalse","FBFrenchFootnotestrue","FBFrenchSuperscriptstrue","FBGlobalLayoutFrenchtrue","FBgspchar","FBguillopen","FBguillspace","FBInnerGuillSinglefalse","FBInnerGuillSingletrue","FBListItemsAsParfalse","FBListItemsAsPartrue","FBLowercaseSuperscriptstrue","FBmedkern","FBPartNameFulltrue","FBsetspaces","FBSmallCapsFigTabCaptionstrue","FBStandardEnumerateEnvtrue","FBStandardItemizeEnvtrue","FBStandardItemLabelstrue","FBStandardLayouttrue","FBStandardListSpacingtrue","FBStandardListstrue","FBsupR","FBsupS","FBtextellipsis","FBthickkern","FBthinspace","FBthousandsep","FBWarning","fg","fgi","fgii","fprimo","frenchdate","FrenchEnumerate","FrenchFootnotes","FrenchLabelItem","frenchpartfirst","frenchpartsecond","FrenchPopularEnumerate","frenchtoday","Frlabelitemi","Frlabelitemii","Frlabelitemiii","Frlabelitemiv","frquote","fup","glossaryname","headtoname","ieme","iemes","ier","iere","ieres","iers","ifFBAutoSpaceFootnotes","ifFBCompactItemize","ifFBCustomiseFigTabCaptions","ifFBfrench","ifFBFrenchFootnotes","ifFBFrenchSuperscripts","ifFBGlobalLayoutFrench","ifFBIndentFirst","ifFBINGuillSpace","ifFBListItemsAsPar","ifFBListOldLayout","ifFBLowercaseSuperscripts","ifFBLuaTeX","ifFBOldFigTabCaptions","ifFBOriginalTypewriter","ifFBPartNameFull","ifFBReduceListSpacing","ifFBShowOptions","ifFBSmallCapsFigTabCaptions","ifFBStandardEnumerateEnv","ifFBStandardItemizeEnv","ifFBStandardItemLabels","ifFBStandardLayout","ifFBStandardLists","ifFBStandardListSpacing","ifFBSuppressWarning","ifFBThinColonSpace","ifFBThinSpaceInFrenchNumbers","ifFBunicode","ifFBXeTeX","ifLaTeXe","kernFFN","labelindentFB","labelwidthFB","leftmarginFB","listfigurename","listindentFB","No","no","NoAutoSpaceBeforeFDP","NoAutoSpacing","NoEveryParQuote","noextrasfrench","nombre","nos","Nos","og","ogi","ogii","pagename","parindentFFN","partfirst","partnameord","partsecond","prefacename","primo","proofname","quarto","rmfamilyFB","secundo","seename","sffamilyFB","StandardFootnotes","StandardMathComma","tertio","tild","ttfamilyFB","up","xspace","captionsenglish","dateenglish","extrasenglish","noextrasenglish","englishhyphenmins","britishhyphenmins","americanhyphenmins","bookadvertisement","classdesigner","classmaintainer","editor","editorial","editorinchief","email","fontdesigner","fontdesignertext","graphicdesigner","gztarticlecl","gztcl","gztfiledate","gztfileversion","interviewee","issuesetup","journalsetup","moralreportsetup","president","presidentmessage","printertext","printminibios","secretary","specialeditionsetup"]}
-,
-"hackthefootline.sty":{"envs":{},"deps":["ifthen.sty","pgfkeys.sty","appendixnumberbeamer.sty","etoolbox.sty","calc.sty","numprint.sty"],"cmds":["htfconfig","htfcheckauthor","htfcheckinstit","htfcheckboth","htfchecknone","htfframenrboxwidth","htfprogress","htfprintmessage","htfupdateprogress","htfObsoleteCMD","htfnotitle","htfshorttitle","htflongtitle","htfnoauthinst","htfonlyauthor","htfonlyinstitute","htfinstitutepths","htfauthorpths","htfauthinst","htfnodate","htfshortdate","htflongdate","htfnoframenrs","htfcounterframenrs","htffractionframenrs","htfpercentframenrs","htfcolonsep","htfcommasep","htfsepspace"]}
-,
-"halloweenmath.sty":{"envs":{},"deps":["amsmath.sty","pict2e.sty"],"cmds":["mathleftghost","mathghost","mathrightghost","mathleftbat","mathbat","mathrightbat","pumpkin","skull","mathwitch","reversemathwitch","bigpumpkin","bigskull","greatpumpkin","mathcloud","reversemathcloud","leftbroom","rightbroom","hmleftpitchfork","hmrightpitchfork","xleftwitchonbroom","xrightwitchonbroom","xleftwitchonpitchfork","xrightwitchonpitchfork","xleftbroom","xrightbroom","xleftpitchfork","xrightpitchfork","xleftswishingghost","xrightswishingghost","xleftflutteringbat","xrightflutteringbat","overleftwitchonbroom","overrightwitchonbroom","overleftwitchonpitchfork","overrightwitchonpitchfork","overleftbroom","overrightbroom","overscriptleftbroom","overscriptrightbroom","overleftpitchfork","overrightpitchfork","overscriptleftpitchfork","overscriptrightpitchfork","overleftswishingghost","overrightswishingghost","overleftflutteringbat","overrightflutteringbat","underleftwitchonbroom","underrightwitchonbroom","underleftwitchonpitchfork","underrightwitchonpitchfork","underleftbroom","underrightbroom","underscriptleftbroom","underscriptrightbroom","underleftpitchfork","underrightpitchfork","underscriptleftpitchfork","underscriptrightpitchfork","underleftswishingghost","underrightswishingghost","underleftflutteringbat","underrightflutteringbat","overbat","underbat","overscriptleftarrow","underscriptleftarrow","overscriptrightarrow","underscriptrightarrow","overscriptleftrightarrow","underscriptleftrightarrow"]}
-,
-"hamnosys.sty":{"envs":{},"deps":["iftex.sty","fontspec.sty","ifthen.sty","kvoptions.sty"],"cmds":["texthamnosys","hamnosysfont","hamnosys","hamfist","hamflathand","hamfingertwo","hamfingertwothree","hamfingertwothreespread","hamfingertwothreefourfive","hampinchonetwo","hampinchall","hampinchonetwoopen","hamceeonetwo","hamceeall","hamceeopen","hamthumboutmod","hamthumbacrossmod","hamthumbopenmod","hamfingerstraightmod","hamfingerbendmod","hamfingerhookmod","hamdoublebent","hamdoublehooked","hamextfingeru","hamextfingerur","hamextfingerr","hamextfingerdr","hamextfingerd","hamextfingerdl","hamextfingerl","hamextfingerul","hamextfingerol","hamextfingero","hamextfingeror","hamextfingeril","hamextfingeri","hamextfingerir","hamextfingerui","hamextfingerdi","hamextfingerdo","hamextfingeruo","hampalmu","hampalmur","hampalmr","hampalmdr","hampalmd","hampalmdl","hampalml","hampalmul","hamhead","hamheadtop","hamforehead","hameyebrows","hameyes","hamnose","hamnostrils","hamear","hamearlobe","hamcheek","hamlips","hamtongue","hamteeth","hamchin","hamunderchin","hamneck","hamshouldertop","hamshoulders","hamchest","hamstomach","hambelowstomach","hamneutralspace","hamupperarm","hamelbow","hamelbowinside","hamlowerarm","hamwristback","hamwristpulse","hamthumbball","hampalm","hamhandback","hamthumbside","hampinkyside","hamthumb","hamindexfinger","hammiddlefinger","hamringfinger","hampinky","hamfingertip","hamfingernail","hamfingerpad","hamfingermidjoint","hamfingerbase","hamfingerside","hamlrbeside","hamlrat","hamcoreftag","hamcorefref","hammoveu","hammoveur","hammover","hammovedr","hammoved","hammovedl","hammovel","hammoveul","hammoveol","hammoveo","hammoveor","hammoveil","hammovei","hammoveir","hammoveui","hammovedi","hammovedo","hammoveuo","hamcircleo","hamcirclei","hamcircled","hamcircleu","hamcirclel","hamcircler","hamcircleul","hamcircledr","hamcircleur","hamcircledl","hamcircleol","hamcircleir","hamcircleor","hamcircleil","hamcircleui","hamcircledo","hamcircleuo","hamcircledi","hamfingerplay","hamnodding","hamswinging","hamtwisting","hamstircw","hamstirccw","hamreplace","hamnomotion","hamclocku","hamclockul","hamclockl","hamclockdl","hamclockd","hamclockdr","hamclockr","hamclockur","hamclockfull","hamarcl","hamarcu","hamarcr","hamarcd","hamwavy","hamzigzag","hamellipseh","hamellipseur","hamellipsev","hamellipseul","hamincreasing","hamdecreasing","hamfast","hamslow","hamtense","hamrest","hamhalt","hamclose","hamtouch","haminterlock","hamcross","hamarmextended","hambehind","hambrushing","hamsmallmod","hamlargemod","hamrepeatfromstart","hamrepeatfromstartseveral","hamrepeatcontinue","hamrepeatcontinueseveral","hamrepeatreverse","hamalternatingmotion","hamseqbegin","hamseqend","hamparbegin","hamparend","hamfusionbegin","hamfusionend","hambetween","hamplus","hamsymmpar","hamsymmlr","hamnondominant","hamnonipsi","hametc","hamorirelative","hammime","hamversionfourzero","hamspace","hamexclaim","hamcomma","hamfullstop","hamquery","hamaltbegin","hammetaalt","hamaltend","hamwristtopulse","hamwristtoback","hamwristtothumb","hamwristtopinky","hammovecross","hammoveX"]}
-,
-"handout.sty":{"envs":{},"deps":["kvoptions.sty","etoolbox.sty","suffix.sty"],"cmds":["handout","thehandoutnumber","handoutnumber","handoutnumberintxt","disablehandout","enablehandout","onlyhandout","nothandout","forhandout"]}
-,
-"handoutWithNotes.sty":{"envs":{},"deps":["l3keys2e.sty","pgfpages.sty","translator.sty"],"cmds":["notesbox"]}
-,
-"hang.sty":{"envs":["hangingpar","hanginglist","compacthang","labeledpar","labeledlist","compactlabel"],"deps":{},"cmds":["hangingindent","hangingleftmargin","labeledleftmargin"]}
-,
-"hanging.sty":{"envs":["hangparas","hangpunct"],"deps":{},"cmds":["hangpara","nhpt","nhlq","nhrq","activatepunct"]}
-,
-"hangulfontset.sty":{"envs":{},"deps":["kotex.sty"],"cmds":{}}
-,
-"hanjacnt.sty":{"envs":{},"deps":["kotex.sty"],"cmds":["NumHanja","NumHangul","NumHanjaBig","NumHangulBig","FinHanjaMode","ManSpaceOn","ManSpaceOff","NumHanjaDig","HanjaZero","HanjaZeroFont","TwentyHanjaChar","KRVcom","KRVverse","MarkHanja","HANJA","HANGUL","HANJADIG","HanjaYear","HanjaMonth","HanjaDay","HangulYear","HangulMonth","HangulDay","HanjaToday","HangulToday","HanjaTodayWithGanji","HangulTodayWithGanji","HangulLunarToday","HangulLunarTodayWithGanji","HangulLunarDay","HangulDangiYear","HanjaDangiYear","HangulBulgiYear","HanjaBulgiYear","HangulGanji","HanjaGanji","NumHanjaFont"]}
-,
-"hanzibox.sty":{"envs":{},"deps":["expl3.sty","xtemplate.sty","l3keys2e.sty","l3draw.sty","xparse.sty","xpinyin.sty"],"cmds":["hanzibox","hanzidialog","writegrid","hanziboxset"]}
-,
-"hardwrap.sty":{"envs":{},"deps":["ifplatform.sty","pdftexcmds.sty","ifxetex.sty"],"cmds":["HardWrap","GenerateLogMacros","HardWrapSetup","setmaxprintline","GeneratePackageLogMacros","GenerateClassLogMacros"]}
-,
-"harmony.sty":{"envs":{},"deps":["amssymb.sty","ifthen.sty"],"cmds":["HH","Dohne","DD","DDohne","DS","Ds","UB","VM","Ohne","Fermi","Umd","Kr","Takt","Ferli","Ganz","Halb","Vier","Acht","Sech","Zwdr","Pu","AAcht","AchtBL","SechBL","SechBl","AchtBR","SechBR","SechBr","GaPa","HaPa","ViPa","AcPa","SePa","ZwPa","tmpdima","tmpdimb","tmpdimc","tmpdimd","tmpdime","nbxa","nbxb","nbxc","nbxd","nbxe","nbxf","nbxg","nbxh","nbxi","KREIS","NOTEN","noten","FAM","FERM","HAa","HAb","HAc","ueber"]}
-,
-"harnon-cv.cls":{"envs":["callout"],"deps":["geometry.sty","nopageno.sty","etoolbox.sty","framed.sty","tabularx.sty","graphicx.sty","xcolor.sty","cantarell.sty","fontenc.sty","hyperref.sty"],"cmds":["addcallout","adddocumentheader","addheadertext","addsubheader","addtimelinebullet","addtimelineheader","listitem","recenthistory","starttimeline","stoptimeline","timelineitem","timelinespacer","youraddress","youremail","yourname","yournumber","yourwebsite","DH","dh","dj","DJ","guillemetleft","guillemetright","guillemotleft","guillemotright","guilsinglleft","guilsinglright","Hwithstroke","hwithstroke","k","NG","ng","quotedblbase","quotesinglbase","textogonekcentered","textquotedbl","th","TH"]}
-,
-"harpoon.sty":{"envs":{},"deps":["graphics.sty"],"cmds":["overleftharp","overrightharp","overleftharpdown","overrightharpdown","underleftharp","underrightharp","underleftharpdown","underrightharpdown","argwd","arght","overharp"]}
-,
-"harvard.sty":{"envs":{},"deps":["html.sty"],"cmds":["citationmode","citationstyle","citeaffixed","citeasnoun","citename","citeyear","harvardand","harvardcite","harvarditem","harvardleft","harvardparenthesis","harvardpreambledefs","harvardpreambletext","harvardright","harvardurl","harvardyearleft","harvardyearparenthesis","harvardyearright","next","possessivecite","protect"]}
-,
-"harveyballs.sty":{"envs":{},"deps":["tikz.sty"],"cmds":["harveyBallNone","harveyBallQuarter","harveyBallHalf","harveyBallThreeQuarter","harveyBallFull","harveyBallsSize","harveyBallsLineWidth","harveyBallsColor","harveyBallsLineColor"]}
-,
-"hausarbeit-jura.cls":{"envs":{},"deps":["ifthen.sty","iftex.sty","s-jurabook.cls","inputenc.sty","fontenc.sty","tgtermes.sty","tgheros.sty","tgcursor.sty","textcomp.sty","eurosym.sty","babel.sty","indentfirst.sty","geometry.sty","ellipsis.sty","csquotes.sty","microtype.sty","jurabib.sty","varioref.sty"],"cmds":["author","matrikelnummer","prof","sectionafter","sectionbefore","semester","setpg","setpgfront","setpgmain","setspaceafterchapter","setspaceaftersection","setspacebeforechapter","setspacebeforesection","DH","dh","dj","DJ","guillemetleft","guillemetright","guillemotleft","guillemotright","guilsinglleft","guilsinglright","Hwithstroke","hwithstroke","k","NG","ng","quotedblbase","quotesinglbase","textogonekcentered","textquotedbl","th","TH","captionsngerman","datengerman","extrasngerman","noextrasngerman","dq","ntosstrue","ntossfalse","prefacename","bibname","chaptername","enclname","ccname","headtoname","pagename","seename","alsoname","proofname","glossaryname","mdqon","mdqoff"]}
-,
-"havannah.sty":{"envs":["HavannahBoard","HexBoard","InnerHavannahBoard","InnerHexBoard"],"deps":["tikz.sty"],"cmds":["HLetterCoordinates","HCoordinateStyle","HDrawHex","HGame","HStoneGroup","HMoveNumberStyle","HWhiteStone","HBlackStone","HTransparentStone","HBeforeOddMove","HBeforeEvenMove","HBeforeStone","HHexGroup"]}
-,
-"hcycle.sty":{"envs":{},"deps":["chemstr.sty"],"cmds":["FiveSugarh","Furanose","Furanosew","Pyranose","Pyranosew","SixSugarh","fivesugarh","fivesugarhw","furanose","furanosew","pyranose","pyranosew","sixsugarh","sixsugarhw","Cyclitol","cyclitol","fSugarhbondd","fsugarhbondd","fSugarhbonde","fsugarhbonde","fSugarhskbondd","fsugarhskbondd","fSugarhskbonde","fsugarhskbonde","ifmolfront","molfrontfalse","molfronttrue","Sugarhbonda","sugarhbonda","Sugarhbondb","sugarhbondb","Sugarhbondc","sugarhbondc","Sugarhbondd","sugarhbondd","Sugarhbonde","sugarhbonde","Sugarhbondf","sugarhbondf","Sugarhskbonda","sugarhskbonda","Sugarhskbondb","sugarhskbondb","Sugarhskbondc","sugarhskbondc","Sugarhskbondd","sugarhskbondd","Sugarhskbonde","sugarhskbonde","Sugarhskbondf","sugarhskbondf","ylFiveSugarhposition","ylfuranoseposition","ylpyranoseposition","ylSixSugarhposition"]}
-,
-"he-she.sty":{"envs":{},"deps":["xspace.sty","everyhook.sty"],"cmds":["heshe","he","she","himher","him","her","himherself","himself","herself","hisher","his","hir","hishers","hiss","hers","Heshe","Himher","Himherself","Hisher","Hishers","He","She","Him","Her","Himself","Herself","His","Hir","Hiss","Hers","ifxspace","xspacetrue","xspacefalse","setgender","hefalse","hetrue"]}
-,
-"hecthese.cls":{"envs":["HECabbreviations","HECabreviations","HECdedicace","HECdedication","descriptionFB"],"deps":["ifthen.sty","s-memoir.cls","inputenc.sty","fontenc.sty","natbib.sty","babel.sty","numprint.sty","calc.sty","enumitem.sty","tocvsec2.sty","graphicx.sty","color.sty","amsmath.sty","iflang.sty","chapterbib.sty"],"cmds":["HECanneeDepot","HECauteur","HECauthor","HECbibliographieArticle","HECbibliographieGenerale","HECcodirecteurRecherche","HECcodirectorUniversity","HECdirecteurRecherche","HECdirectorRepresentative","HECexaminateurExterne","HECexaminatorUniversity","HECexternalExaminator","HECgenererTitres","HECjuryMember","HECjuryMemberUniversity","HECmembreJury","HECmoisDepot","HECoption","HECpagestitre","HECpdfauteur","HECpdftitre","HECpresidentRapporteur","HECrapporteurPresident","HECreferences","HECrepresentantDirecteur","HECresearchCodirector","HECresearchDirector","HECsoustitre","HECsubMonth","HECsubtitle","HECsubYear","HECtdmAbreviations","HECtdmAvantPropos","HECtdmCadreTheorique","HECtdmRemerciements","HECtdmResumeArticle","HECtdmRevueLitterature","HECtitle","HECtitlepages","HECtitre","HECtitreConclusion","HECtitreIntroduction","HECuniversiteCodirecteur","HECuniversiteExaminateur","HECuniversiteMembreJury","DH","dh","dj","DJ","guillemetleft","guillemetright","guillemotleft","guillemotright","guilsinglleft","guilsinglright","Hwithstroke","hwithstroke","k","NG","ng","quotedblbase","quotesinglbase","textogonekcentered","textquotedbl","th","TH","captionsenglish","dateenglish","extrasenglish","noextrasenglish","englishhyphenmins","britishhyphenmins","americanhyphenmins","prefacename","bibname","chaptername","enclname","ccname","headtoname","pagename","seename","alsoname","proofname","glossaryname","frenchsetup","frenchbsetup","AddThinSpaceBeforeFootnotes","at","AutoSpaceBeforeFDP","boi","bname","bsc","CaptionSeparator","captionsfrench","circonflexe","dateacadian","datefrench","DecimalMathComma","degre","degres","descindentFB","dotFFN","extrasfrench","FBcolonspace","FBdatebox","FBdatespace","FBeverylineguill","FBfigtabshape","FBfnindent","FBFrenchFootnotesfalse","FBFrenchFootnotestrue","FBFrenchSuperscriptstrue","FBGlobalLayoutFrenchtrue","FBgspchar","FBguillopen","FBguillspace","FBInnerGuillSinglefalse","FBInnerGuillSingletrue","FBListItemsAsParfalse","FBListItemsAsPartrue","FBLowercaseSuperscriptstrue","FBmedkern","FBPartNameFulltrue","FBsetspaces","FBSmallCapsFigTabCaptionstrue","FBStandardEnumerateEnvtrue","FBStandardItemizeEnvtrue","FBStandardItemLabelstrue","FBStandardLayouttrue","FBStandardListSpacingtrue","FBStandardListstrue","FBsupR","FBsupS","FBtextellipsis","FBthickkern","FBthinspace","FBthousandsep","FBWarning","fg","fgi","fgii","fprimo","frenchdate","FrenchEnumerate","FrenchFootnotes","FrenchLabelItem","frenchpartfirst","frenchpartsecond","FrenchPopularEnumerate","frenchtoday","Frlabelitemi","Frlabelitemii","Frlabelitemiii","Frlabelitemiv","frquote","fup","ieme","iemes","ier","iere","ieres","iers","ifFBAutoSpaceFootnotes","ifFBCompactItemize","ifFBCustomiseFigTabCaptions","ifFBfrench","ifFBFrenchFootnotes","ifFBFrenchSuperscripts","ifFBGlobalLayoutFrench","ifFBIndentFirst","ifFBINGuillSpace","ifFBListItemsAsPar","ifFBListOldLayout","ifFBLowercaseSuperscripts","ifFBLuaTeX","ifFBOldFigTabCaptions","ifFBOriginalTypewriter","ifFBPartNameFull","ifFBReduceListSpacing","ifFBShowOptions","ifFBSmallCapsFigTabCaptions","ifFBStandardEnumerateEnv","ifFBStandardItemizeEnv","ifFBStandardItemLabels","ifFBStandardLayout","ifFBStandardLists","ifFBStandardListSpacing","ifFBSuppressWarning","ifFBThinColonSpace","ifFBThinSpaceInFrenchNumbers","ifFBunicode","ifFBXeTeX","ifLaTeXe","kernFFN","labelindentFB","labelwidthFB","leftmarginFB","listfigurename","listindentFB","No","no","NoAutoSpaceBeforeFDP","NoAutoSpacing","NoEveryParQuote","noextrasfrench","nombre","nos","Nos","og","ogi","ogii","parindentFFN","partfirst","partnameord","partsecond","primo","quarto","rmfamilyFB","secundo","sffamilyFB","StandardFootnotes","StandardMathComma","tertio","tild","ttfamilyFB","up","xspace"]}
-,
-"helmholtz-ellis-ji-notation.sty":{"envs":{},"deps":["xetex.sty","fontspec.sty"],"cmds":["heji","acc","otonal","utonal","Otonal","Utonal","HEJIfont","fsize","tempflatflat","tempflat","tempnat","tempsharp","tempsharpsharp","otonalsixtwentyfiveflatflat","otonalsixtwentyfiveflat","otonalsixtwentyfivenat","otonalsixtwentyfivesharp","otonalsixtwentyfivesharpsharp","otonalonetwentyfiveflatflat","otonalonetwentyfiveflat","otonalonetwentyfivenat","otonalonetwentyfivesharp","otonalonetwentyfivesharpsharp","otonaltwentyfiveflatflat","otonaltwentyfiveflat","otonaltwentyfivenat","otonaltwentyfivesharp","otonaltwentyfivesharpsharp","otonalfiveflatflat","otonalfiveflat","otonalfivenat","otonalfivesharp","otonalfivesharpsharp","flatflat","flat","nat","sharp","sharpsharp","utonalfiveflatflat","utonalfiveflat","utonalfivenat","utonalfivesharp","utonalfivesharpsharp","utonaltwentyfiveflatflat","utonaltwentyfiveflat","utonaltwentyfivenat","utonaltwentyfivesharp","utonaltwentyfivesharpsharp","utonalonetwentyfiveflatflat","utonalonetwentyfiveflat","utonalonetwentyfivenat","utonalonetwentyfivesharp","utonalonetwentyfivesharpsharp","utonalsixtwentyfiveflatflat","utonalsixtwentyfiveflat","utonalsixtwentyfivenat","utonalsixtwentyfivesharp","utonalsixtwentyfivesharpsharp","otonalfortynine","otonalseven","utonalseven","utonalfortynine","otonaleleven","utonaleleven","otonalthirteen","utonalthirteen","otonalseventeen","utonalseventeen","otonalnineteen","utonalnineteen","otonaltwentythree","utonaltwentythree","otonaltwentynine","utonaltwentynine","otonalthirtyone","utonalthirtyone","otonalthirtyseven","utonalthirtyseven","otonalfortyone","utonalfortyone","otonalfortythree","utonalfortythree","otonalfortyseven","utonalfortyseven"]}
-,
-"helvet.sty":{"envs":{},"deps":["keyval.sty"],"cmds":["ProcessOptionsWithKV"]}
-,
-"hep-acronym.sty":{"envs":{},"deps":["glossaries-extra.sty","everyhook.sty","xparse.sty","xspace.sty","amstext.sty"],"cmds":["acronym","sentence","shortacronym","longacronym","resetacronym","dummyacronym","mathdef","acronyms"]}
-,
-"hep-bibliography.sty":{"envs":["commalist"],"deps":["kvoptions.sty","xparse.sty","biblatex.sty","relsize.sty"],"cmds":["online","email","commalistbody","relateddelimerratum","ccite","Ccite"]}
-,
-"hep-float.sty":{"envs":["panels"],"deps":["kvoptions.sty","subcaption.sty","calc.sty","etoolbox.sty","booktabs.sty","multirow.sty","graphicx.sty"],"cmds":["panel","graphic","graphics","panelhspace","panelvspace","tikzsetnextfilename"]}
-,
-"hep-font.sty":{"envs":{},"deps":["kvoptions.sty","ifluatex.sty","ifxetex.sty","fontenc.sty","pdftexcmds.sty","fix-cm.sty","microtype.sty","cfr-lm.sty","textcomp.sty","slantsc.sty","inputenc.sty","units.sty","xpatch.sty"],"cmds":["ifxetexorluatex","xetexorluatextrue","xetexorluatexfalse","textui","DH","NG","dj","ng","k","guillemotleft","guillemotright","guilsinglleft","guilsinglright","quotedblbase","quotesinglbase","textquotedbl","DJ","th","TH","dh","Hwithstroke","hwithstroke","textogonekcentered","guillemetleft","guillemetright"]}
-,
-"hep-math-font.sty":{"envs":{},"deps":["kvoptions.sty","ifluatex.sty","ifxetex.sty","pdftexcmds.sty","xstring.sty","amssymb.sty","amstext.sty","fixmath.sty","textalpha.sty","substitutefont.sty","exscale.sty","bm.sty","MnSymbol.sty"],"cmds":["ifxetexorluatex","xetexorluatextrue","xetexorluatexfalse","Alpha","Beta","Gamma","Delta","Epsilon","Zeta","Eta","Theta","Iota","Kappa","Lambda","Mu","Nu","Xi","Omicron","Pi","Rho","Sigma","Tau","Upsilon","Phi","Chi","Psi","Omega","alpha","beta","gamma","delta","epsilon","zeta","eta","theta","iota","kappa","lambda","mu","nu","xi","omicron","pi","rho","sigma","varsigma","finalsigma","tau","upsilon","phi","chi","psi","omega","digamma","Digamma","stigma","varstigma","koppa","Koppa","qoppa","Qoppa","Stigma","Sampi","sampi","varpi","pisymbol","varrho","rhosymbol","vartheta","thetasymbol","varepsilon","epsilonsymbol","varphi","phisymbol","varbeta","betasymbol","varkappa","kappasymbol","Thetasymbol","mathscr"]}
-,
-"hep-math.sty":{"envs":{},"deps":["mathtools.sty","xparse.sty","soulutf8.sty","amssymb.sty","units.sty","cancel.sty","slashed.sty","mleftright.sty","etoolbox.sty","xpatch.sty"],"cmds":["mathdef","textoverline","overline","widebar","oset","overleft","overright","overleftright","tr","Tr","rank","erf","Res","sgn","diag","transpose","trans","arccsc","arcsec","arccot","asin","acos","atan","acsc","asec","acot","csch","sech","inv","textfrac","flatfrac","differential","newderivative","newpartialderivative","diffsymbol","diff","derivative","dv","partialdifferential","pd","partialderivative","pdv","gaugediffsymbol","gaugediff","D","covariantdiff","cd","variation","var","functionalderivative","fdv","noargumentsymbol","optionalargument","abs","norm","ordersymbol","order","evaluated","eval","rowseperator","row","column","midbar","suchthat","set","probabilitysymbol","given","Pr","newpair","innerproduct","poissonbracket","commutator","pb","comm","acomm","braketouterspace","braketinnerspace","braket","bra","ket","ketbra","matrixelement","matrixel","mel","expectationvalue","ev","vev"]}
-,
-"hep-paper.sty":{"envs":{},"deps":["kvoptions.sty","hep-font.sty","hep-math-font.sty","geometry.sty","hep-text.sty","hep-math.sty","hep-float.sty","hep-title.sty","pdftexcmds.sty","hep-bibliography.sty","hep-reference.sty","hep-acronym.sty","parskip.sty","ragged2e.sty","xpatch.sty"],"cmds":["useparskip","useparindent"]}
-,
-"hep-text.sty":{"envs":["inlinelist","enumdescript","enumdesc","enumerate*","itemize*","description*"],"deps":["kvoptions.sty","babel.sty","csquotes.sty","soulutf8.sty","pdftexcmds.sty","foreign.sty","relsize.sty","enumitem.sty"],"cmds":["vs","no","software","online","email","prefix","subsubparagraph","addendum","Addendum","adhoc","Adhoc","aposteriori","Aposteriori","apriori","Apriori","caveat","Caveat","circa","Circa","curriculum","Curriculum","erratum","Erratum","ibidem","Ibidem","idem","Idem","sic","Sic","viceversa","Viceversa","vitae","Vitae","ala","Ala","visavis","Visavis","ansatz","Ansatz","gedanken","Gedanken","cf","eg","etal","etc","etseq","ibid","ie","loccit","opcit","viz","Cf","Eg","Etal","Etc","Etseq","Ibid","Ie","Loccit","Opcit","Viz"]}
-,
-"hep-title.sty":{"envs":["abstract*"],"deps":["varwidth.sty","calc.sty","atbegshi.sty","picture.sty","titling.sty","authblk.sty","xpatch.sty"],"cmds":["series","subtitle","seriesfont","titlefont","subtitlefont","affiliation","editor","endorser","email","authorfont","editorfont","endorserfont","affiliationfont","preprint","preprintfont","online","keywords","placepreprint","preseries","postseries","presubtitle","postsubtitle","preeditor","posteditor","editortitle","editortitlefont","preeditortitle","posteditortitle","authortitle","authortitlefont","preauthortitle","postauthortitle","preendorser","postendorser","endorsertitle","preendorsertitle","postendorsertitle","endorsertitlefont","theeditors","theendorsers","theaffiliation","datefont"]}
-,
-"hepparticles.sty":{"envs":{},"deps":["amsmath.sty","subdepth.sty"],"cmds":["HepGenParticle","HepGenAntiParticle","HepParticle","HepAntiParticle","HepGenSusyParticle","HepSusyParticle","HepGenSusyAntiParticle","HepSusyAntiParticle","HepResonanceMassTerm","HepResonanceSpecTerm","HepParticleResonance","HepParticleResonanceFull","HepParticleResonanceFormal","HepParticleResonanceFormalFull","HepProcess","filedate","fileversion"]}
-,
-"hepthesis.cls":{"envs":["frontmatter","mainmatter","appendices","backmatter","declaration","acknowledgements","preface","colophon","chapterintro"],"deps":["s-scrbook.cls","fontenc.sty","etoolbox.sty","microtype.sty","changepage.sty","varwidth.sty","amsmath.sty","booktabs.sty","setspace.sty","fancyhdr.sty","tocbibind.sty","comment.sty","rotating.sty","caption.sty","afterpage.sty","csquotes.sty","makeidx.sty","titling.sty","hep.sty","lineno.sty","draftcopy.sty","hyperref.sty","color.sty"],"cmds":["setspacing","setfrontmatterspacing","setmainmatterspacing","setappendixspacing","setbackmatterspacing","setextramargins","setfrontmatterextramargins","setmainmatterextramargins","setappendixextramargins","setbackmatterextramargins","setabstractextramargins","setdeclarationextramargins","setacknowledgementsextramargins","setprefaceextramargins","thetitle","theauthor","titlepage","dedication","frontquote","chapterquote","pagequote","verysubsection","smallfigwidth","mediumfigwidth","largefigwidth","hugefigwidth","Chapter","Section","Appendix","Figure","Table","Equation","Reference","Page","ChapterRef","SectionRef","AppendixRef","FigureRef","TableRef","EquationRef","ReferenceRef","PageRef","bigfigwidth","filedate","fileversion","frontmattertitleskip","italic","littlefigwidth","sans","sansit","thearg","theiterlist","definethesis"]}
-,
-"hepunits.sty":{"envs":{},"deps":["amsmath.sty","ifthen.sty","siunitx.sty"],"cmds":["nm","um","mm","cm","micron","ns","ps","fs","as","mHz","Hz","kHz","MHz","GHz","THz","mrad","fermi","gauss","invcmsq","invcmsqpersecond","invcmsqpersec","invbarn","millibarn","microbarn","nanobarn","invnanobarn","invnb","picobarn","invpicobarn","invpb","femtobarn","invfemtobarn","invfb","attobarn","invattobarn","invab","zeptobarn","invzeptobarn","invzb","yoctobarn","invyoctobarn","invyb","eV","eVc","eVcsq","meV","keV","MeV","GeV","TeV","meVc","keVc","MeVc","GeVc","TeVc","meVcsq","keVcsq","MeVcsq","GeVcsq","TeVcsq","electronvolt","electronvoltc","electronvoltcsq","filedate","fileversion"]}
-,
-"hereapplies.sty":{"envs":{},"deps":["hyperref.sty","refcount.sty"],"cmds":["hereapplies","whereapplies","hapage","hapages","hadelimiter","halastdelimiter"]}
-,
-"heros-otf.sty":{"envs":{},"deps":["iftex.sty","xkeyval.sty","textcomp.sty","fontspec.sty"],"cmds":["heros","heroscn","herosOsF","heroscnOsF","herosTLF","heroscnTLF","Lctosc","LCtoSC","Lctosmcp","LCtoSMCP","Lliga","LLIGA","Lhlig","LHLIG","Ldlig","LDLIG","Lcpsp","LCPSP","Lsalt","LSALT","Lss","LSS","sufigures","textsup","textinit","Lsup","Lsinf","Land","Lcase","LCASE","Lfrac","LFRAC"]}
-,
-"hetarom.sty":{"envs":{},"deps":["chemstr.sty"],"cmds":["azetidine","aziridinev","aziridinevi","benzofuranev","benzofuranevi","benzoxazolev","benzoxazolevi","cinnolinev","cinnolinevb","cinnolinevi","cinnolinevt","decaheterov","decaheterovi","decaheterovb","decaheterovt","fiveheterov","fiveheterovi","fourhetero","furanv","furanvi","imidazolev","imidazolevi","indolev","indolevi","indolizinev","indolizinevi","isobenzofuranev","isobenzofuranevi","isoindolev","isoindolevi","isoquinolinev","isoquinolinevb","isoquinolinevi","isoquinolinevt","isoxazolev","isoxazolevi","nonaheterov","nonaheterovi","oxazolev","oxazolevi","oxetane","oxiranev","oxiranevi","pteridinev","pteridinevb","pteridinevi","pteridinevt","purinev","purinevi","pyrazinev","pyrazinevi","pyrazolev","pyrazolevi","pyridazinev","pyridazinevi","pyridinev","pyridinevi","pyrimidinev","pyrimidinevi","pyrrolev","pyrrolevi","quinazolinev","quinazolinevb","quinazolinevi","quinazolinevt","quinolinev","quinolinevb","quinolinevi","quinolinevt","quinoxalinev","quinoxalinevb","quinoxalinevi","quinoxalinevt","sixheterov","sixheterovi","thietane","thiiranev","thiiranevi","thiophenev","thiophenevi","threehetero","threeheteroi","threeheterov","threeheterovi","triazinev","triazinevi","aax","aay","aaz","bonda","bondb","bondc","bondd","bonde","bondf","bondhoriz","bondhorizi","bondshoriz","bondshorizi","Bondtria","bondtria","Bondtrib","bondtrib","clipdetection","dotskbonda","dotskbondb","dotskbondc","dotskbondd","dotskbonde","dotskbondf","dotskbondhoriz","dotskbondhorizi","dotskbondshoriz","dotskbondshorizi","dotskBondtria","dotskbondtria","dotskBondtrib","dotskbondtrib","fiveunitv","fiveunitvi","iflongskbond","longskbondfalse","longskbondtrue","memBer","sixunitv","skbonda","skbondb","skbondc","skbondd","skbonde","skbondf","skbondhoriz","skbondhorizi","skbondreplace","skbondshoriz","skbondshorizi","skBondtria","skbondtria","skBondtrib","skbondtrib","ylhetposition","ylhetpositionb","ylhetpositiont"]}
-,
-"hetaromh.sty":{"envs":{},"deps":["chemstr.sty","hetarom.sty"],"cmds":["aziridineh","aziridinehi","benzofuraneh","benzofuranehi","benzoxazoleh","benzoxazolehi","cinnolineh","cinnolinehi","decaheteroh","decaheterohi","fiveheteroh","fiveheterohi","furanh","furanhi","imidazoleh","imidazolehi","indoleh","indolehi","indolizineh","indolizinehi","isobenzofuraneh","isobenzofuranehi","isoindoleh","isoindolehi","isoquinolineh","isoquinolinehi","isoxazoleh","isoxazolehi","nonaheteroh","nonaheterohi","oxazoleh","oxazolehi","oxiraneh","oxiranehi","pteridineh","pteridinehi","purineh","purinehi","pyrazineh","pyrazinehi","pyrazoleh","pyrazolehi","pyridazineh","pyridazinehi","pyridineh","pyridinehi","pyrimidineh","pyrimidinehi","pyrroleh","pyrrolehi","quinazolineh","quinazolinehi","quinolineh","quinolinehi","quinoxalineh","quinoxalinehi","sixheteroh","sixheterohi","thiiraneh","thiiranehi","thiopheneh","thiophenehi","threeheteroh","threeheterohi","triazineh","triazinehi","dothskbonda","dothskbondb","dothskbondc","dothskbondd","dothskbonde","dothskbondf","dothskbondvert","dothskbondverti","fiveunith","fiveunithi","hbonda","hbondb","hbondc","hbondd","hbonde","hbondf","hbondvert","hbondverti","hskbonda","hskbondb","hskbondc","hskbondd","hskbonde","hskbondf","hskbondvert","hskbondverti","sixunith","ylhetpositionh"]}
-,
-"heuristica.sty":{"envs":{},"deps":["fontenc.sty","textcomp.sty","ifthen.sty","fontaxes.sty","mweights.sty","etoolbox.sty","xkeyval.sty"],"cmds":["infigures","Qswash","sufigures","swshape","textfrac","textin","textinferior","textlf","textosf","textsu","textsuperior","texttlf","texttosf","useosf","DH","NG","dj","ng","k","guillemotleft","guillemotright","guilsinglleft","guilsinglright","quotedblbase","quotesinglbase","textquotedbl","DJ","th","TH","dh","Hwithstroke","hwithstroke","textogonekcentered","guillemetleft","guillemetright"]}
-,
-"hexboard.sty":{"envs":["hexpicture","hexgame","hexgamelabels"],"deps":["tikz.sty","tikzlibraryshapes.geometric.sty","xstring.sty"],"cmds":["argiii","belowIa","colorA","colorB","hexboard","hexbottomsubborder","hexcell","hexcellshaded","hexconnect","hexcontent","hexcoord","hexcounter","hexcounterlabel","hexdot","hexedgewidth","hexgrid","hexgridnolabel","hexlinewidth","hexmove","hexmovenumber","hexreducing","hexreducingnoborder","hexscale","hexshadedsubrow","hexsize","hexskipmove","hexsubrow","hexthinline","hexthismover","Ia","Iaend","Ib","leftofIa","leftofxchor","setcolorA","setcolorB","testA","thehexedge","thehexlabelling","thehexletternum","thehexmovecount","thehexmoveskips","thiscolor","xchor","ychor"]}
-,
-"hexdump.sty":{"envs":{},"deps":["moreverb.sty"],"cmds":["dumpname","dumpfontsize","dumpwidth","thedumpcount","dumptocname","listofdumps","dcaption","inputdump"]}
-,
-"hf-tikz.sty":{"envs":{},"deps":["tikz.sty","tikzlibraryshadings.sty","xparse.sty","etoolbox.sty"],"cmds":["tikzmarkin","tikzmarkend","thejumping","hfsetfillcolor","hfsetbordercolor","ifshowmarkers","showmarkerstrue","showmarkersfalse","fcol","bcol","savepointas","oldsavepointas","pgfsyspdfmark","oldpgfsyspdfmark"]}
-,
-"hfoldsty.sty":{"envs":{},"deps":["fontenc.sty","ifthen.sty","fix-cm.sty"],"cmds":["oldstylenums","newstylenums"]}
-,
-"hfutthesis.cls":{"envs":["abstract*","acknowledgements","notation","notationlist","publications","theorem","assertion","axiom","corollary","lemma","proposition","assumption","definition","example","remark","enabstract"],"deps":["iftex.sty","kvdefinekeys.sty","kvsetkeys.sty","kvoptions.sty","s-ctexbook.cls","xeCJK.sty","etoolbox.sty","amsmath.sty","fontspec.sty","geometry.sty","graphicx.sty","fancyhdr.sty","color.sty","titletoc.sty","caption.sty","footmisc.sty","url.sty","calc.sty","ulem.sty","multirow.sty","enumitem.sty","bicaption.sty","natbib.sty","filehook.sty","unicode-math.sty","newtxtext.sty","newtxmath.sty","bm.sty","amssymb.sty"],"cmds":["hfutsetup","blacksquare","bm","checkmark","copyrightpage","hfutthesisversion","inlinecite","lwtm","notationlabel","note","signaturepage","square","titleBox","titleLRExtraWd","titleMultiLineMaxWd","titleSepWd","titleSingleLineMaxWd","titleUnderline","underlineFixlen","cosupervisor","endate","enkeywords","keywords","makestatement"]}
-,
-"hgb.sty":{"envs":["block","english","FileList","german","NarrowList","nowidows"],"deps":["xifthen.sty","lmodern.sty","cmap.sty","inputenc.sty","fontenc.sty","babel.sty","xstring.sty","datetime2.sty","upquote.sty","eurosym.sty","graphicx.sty","overpic.sty","pict2e.sty","xcolor.sty","url.sty","verbatim.sty","moreverb.sty","ifpdf.sty","epstopdf.sty","breakurl.sty","hyperref.sty","hypcap.sty","float.sty","caption.sty","enumitem.sty","tocbasic.sty","pdfpages.sty","booktabs.sty","longtable.sty","multirow.sty","csquotes.sty","datetime2-calc.sty"],"cmds":["calibrationbox","email","fitem","getcurrentlabel","hgbAge","hgbDate","hgbWarnOldPackage","oldand","PackageToDTMdate","ShowParameter","thehgbAgeLimit","trennstrich","widedotfill","Messbox","DH","dh","dj","DJ","guillemetleft","guillemetright","guillemotleft","guillemotright","guilsinglleft","guilsinglright","Hwithstroke","hwithstroke","k","NG","ng","quotedblbase","quotesinglbase","textogonekcentered","textquotedbl","th","TH","captionsenglish","dateenglish","extrasenglish","noextrasenglish","englishhyphenmins","britishhyphenmins","americanhyphenmins","prefacename","bibname","chaptername","enclname","ccname","headtoname","pagename","seename","alsoname","proofname","glossaryname","captionsngerman","datengerman","extrasngerman","noextrasngerman","dq","ntosstrue","ntossfalse","mdqon","mdqoff"]}
-,
-"hgbabbrev.sty":{"envs":{},"deps":["xspace.sty"],"cmds":["latex","tex","bs","obnh","bzgl","bzw","ca","dah","Dah","ds","etc","evtl","ia","sa","so","su","ua","Ua","uae","usw","uva","uvm","va","vgl","zB","ZB","ie","eg","Eg","wrt"]}
-,
-"hgbalgo.sty":{"envs":{},"deps":["algpseudocodex.sty","calc.sty","xcolor.sty","algorithm.sty"],"cmds":["StateNN","Input","Output","Returns","algsmallskip","algmedskip","algbigskip","StateL"]}
-,
-"hgbarticle.cls":{"envs":{},"deps":["xifthen.sty","ifpdf.sty","geometry.sty","hgb.sty","titling.sty","abstract.sty","hgbmath.sty","hgbalgo.sty","hgbheadings.sty","hgbabbrev.sty","hgblistings.sty","hgbbib.sty"],"cmds":["foreverunspace","printtexte","maxprtauth","apanum","mkdaterangeapalong","mkdaterangeapalongextra","begrelateddelimcommenton","begrelateddelimreviewof","begrelateddelimreprintfrom","urldatecomma","apashortdash","citeresetapa","fullcitebib","nptextcite","nptextcites"]}
-,
-"hgbbib.sty":{"envs":["bibhyphenation"],"deps":["xifthen.sty","biblatex.sty","csquotes.sty"],"cmds":["foreverunspace","printtexte","maxprtauth","apanum","mkdaterangeapalong","mkdaterangeapalongextra","begrelateddelimcommenton","begrelateddelimreviewof","begrelateddelimreprintfrom","urldatecomma","apashortdash","citeresetapa","fullcitebib","nptextcite","nptextcites","AddBibFile","MakeBibliography","mcite","citenobr"]}
-,
-"hgbheadings.sty":{"envs":{},"deps":["fancyhdr.sty"],"cmds":{}}
-,
-"hgblistings.sty":{"envs":["CCode","CppCode","CsCode","CssCode","GenericCode","HtmlCode","JavaCode","JsCode","LaTeXCode","ObjCCode","PhpCode","PythonCode","SwiftCode","XmlCode"],"deps":["xifthen.sty","textcomp.sty","xcolor.sty","listingsutf8.sty","inputenc.sty"],"cmds":{}}
-,
-"hgbmath.sty":{"envs":{},"deps":["amsmath.sty","amsfonts.sty","amssymb.sty","amsbsy.sty","subdepth.sty","exscale.sty"],"cmds":["R","Z","N","Cpx","Q"]}
-,
-"hgbreport.cls":{"envs":{},"deps":["xifthen.sty","ifpdf.sty","s-report.cls","geometry.sty","hgb.sty","titling.sty","abstract.sty","hgbmath.sty","hgbalgo.sty","hgbheadings.sty","hgbabbrev.sty","hgblistings.sty","hgbbib.sty"],"cmds":["foreverunspace","printtexte","maxprtauth","apanum","mkdaterangeapalong","mkdaterangeapalongextra","begrelateddelimcommenton","begrelateddelimreviewof","begrelateddelimreprintfrom","urldatecomma","apashortdash","citeresetapa","fullcitebib","nptextcite","nptextcites"]}
-,
-"hgbthesis.cls":{"envs":{},"deps":["xifthen.sty","ifpdf.sty","s-book.cls","geometry.sty","hgb.sty","hgbmath.sty","hgbalgo.sty","hgbheadings.sty","hgbabbrev.sty","hgblistings.sty","hgbbib.sty"],"cmds":["foreverunspace","printtexte","maxprtauth","apanum","mkdaterangeapalong","mkdaterangeapalongextra","begrelateddelimcommenton","begrelateddelimreviewof","begrelateddelimreprintfrom","urldatecomma","apashortdash","citeresetapa","fullcitebib","nptextcite","nptextcites","advisor","cclicense","companyName","companyUrl","dateofsubmission","leadingzero","license","logofile","makelogo","placeofstudy","programname","programtype","strictlicense"]}
-,
-"hhead.sty":{"envs":{},"deps":["hsetup.sty"],"cmds":["barlength","heading","address","hletfalse","hlettrue","ifhlet","sign"]}
-,
-"hhline.sty":{"envs":{},"deps":{},"cmds":["hhline"]}
-,
-"hhtensor.sty":{"envs":{},"deps":["ushort.sty","amsmath.sty"],"cmds":["matr","tens","dcdot","trans","origvec"]}
-,
-"hideanswer.sty":{"envs":["hideanswerdiv","hideanswerdiv*","smashanswerdiv","smashanswerdiv*"],"deps":["color.sty","xparse.sty"],"cmds":["sethideanswer","unsethideanswer","hideanswer","smashanswer","hidegraphics","smashgraphics","switchanswer"]}
-,
-"hiero.sty":{"envs":["hieroglyph"],"deps":["ifthen.sty","graphicx.sty"],"cmds":["Aca","boxrightleft","Cadrat","CadratLine","CadratLineI","cartouche","Centrer","chateau","debcartouche","declareHieroGlyphicFont","DisplayHieroglyphs","ediajoutauteur","ediajoutscribe","edidisparu","ediefface","edisuperfet","EnColonne","endOfcartouche","endOfserekh","EnGros","EnPetit","enrouge","hachure","hachureg","hachurega","hachureh","hachureha","hachuret","hachureta","hachurev","hachureva","HendOfLine","HendOfPage","HfullSpace","hierCC","HinterSignsSpace","HquarterSpace","Hrevert","Hrotate","Hsmaller","HsmallSpace","hsuperpose","Htm","HwordSpace","InternalCadrat","leftright","ligAROBD","ligAROBDd","ligAROBDra","ligAROBDt","LoneHorizontalLine","loneSign","milcartouche","negAROBspace","negAROBvspace","newShading","pointnoir","pointrouge","R","rightleft","s","serekh","SmallerText","SurLigne","TextHieroglyphs","traittexte","Acv","cartoucheBox","cartoucheLineWidth","ColumnSepar","EgypS","fullShade","HachureBoxII","HachureBoxIII","hachuregaux","Himbt","HorizontalOverlapAux","HRemplir","HrotateXC","HRXC","Hta","HtaH","HtaW","Htmi","Htmii","Htmiii","Htmiiii","Htmiiiii","HToLine","InternalCadratAux","LargeHieroglyphs","loneSymbol","MInEx","NoRulesBetweenColumns","nouvLigne","oldHbt","parconstruct","RulesBetweenColumns","ShadingBox","ShadingBoxA","ShadingBoxB","ShadingBoxC","ShadingBoxD","smallSkipAroundSigns","xxxparconstruct"]}
-,
-"hieroglf.sty":{"envs":{},"deps":["oands.sty"],"cmds":["HA","Ha","Hb","HB","Hc","HC","HCthousand","Hd","HD","Hdual","He","HE","Hf","HF","HG","Hg","Hh","HH","Hhundred","HI","Hi","Hibl","Hibp","Hibs","Hibw","Hj","HJ","HK","Hk","HL","Hl","Hm","HM","Hman","Hmillion","Hms","HN","Hn","HO","Ho","Hone","HP","Hp","Hplural","Hplus","HQ","Hq","Hquery","Hr","HR","HS","Hs","Hscribe","Hslash","Hsv","HT","Ht","Hten","Hthousand","Htongue","Hu","HU","Hv","HV","Hvbar","Hw","HW","HX","Hx","HXthousand","HY","Hy","HZ","Hz","HAai","HAaxii","HAi","Hai","HAii","HAxxviii","HDi","HDii","HDiv","HDl","HDliv","HDlviii","HDxlvi","HDxlvii","HDxxi","HDxxxvi","HExxiii","HFi","HFxl","HFxx","HFxxxi","HFxxxiv","HGi","HGxliii","HGxvii","HGxxvi","HGxxvii","HGxxviii","HGxxvis","HGxxxvi","HHviii","HIix","HIviii","HIx","HKi","HMiii","HMviii","HMxii","HMxvii","HNxxix","HNxxxv","HNxxxvii","HOi","HOiv","HOxliv","HPWi","HPWii","HQiii","HRvii","HSxii","HSxli","HSxxix","HSxxxix","HTiii","HTxiv","HUxxxvi","HVi","HViv","HVxiii","HVxx","HVxxiv","HVxxviii","HVxxxi","HWxi","HXi","HYiV","HYiv","HZi","HZii","HZiv","HZvi","HZvii","HZxi","pmglyph","cartouche","Cartouche","pmhgfamily","textpmhg","pmvglyph","vertouche","Vertouche","cartouchecorner","translitpmhg","translitpmhgfont"]}
-,
-"highlightlatex.sty":{"envs":["highlightblock","saveblock"],"deps":["listings.sty","xcolor.sty","etoolbox.sty"],"cmds":["defaultgobble","updatehighlight","useblock","consumeblock"]}
-,
-"hitec.cls":{"envs":{},"deps":{},"cmds":["company","confidential","emptyfoottopmargin","emptyheadtopmargin","footruleskip","fullcenter","fullwidth","leftmarginwidth","longrule","longthickrule","secshape","settextfraction"]}
-,
-"hletter.cls":{"envs":{},"deps":["hsetup.sty"],"cmds":["closingtwo","opening","reference","sign","hletfalse","hlettrue","ifhlet","reftext","signatureheight","signatureimage"]}
-,
-"hlist.sty":{"envs":["hlist"],"deps":["simplekv.sty"],"cmds":["hitem","sethlist","setdefaulthlist","hlstname","hlstdate","hlstver","hlist","endhlist"]}
-,
-"hmtrump.sty":{"envs":{},"deps":["tikz.sty","xcolor.sty","fontspec.sty"],"cmds":["BLACKJOKER","blackjoker","hmC","hmD","hmH","hmS","hmtcfont","JOKER","joker","REDJOKER","redjoker","romanindex","tarottrump","trump","trumpblank","trumpx","unitrump","WHITEJOKER","whitejoker"]}
-,
-"hnja2hngl.sty":{"envs":{},"deps":["grruby.sty"],"cmds":["readhanja","readhanjaword","rwhanja","AssignReading","rpSetReading","grrwhanja","rwhanjachar","rpRead","viewCodePoint","showReadings","hnjahnglpkgdate","hnjahnglpkgversion"]}
-,
-"hobete.sty":{"envs":["posterblock","outerretainblock"],"deps":["expl3.sty","l3keys2e.sty","xfrac.sty","xparse.sty","tikz.sty","beamerthemehohenheim.sty"],"cmds":["hoversion","insertmylogo","mylogo","sectionpage","oldframetitle","printframelist","HohenheimLogoKlein","HohenheimLogoLang","inserthotpwolang","inserthotpwokurz","inserthotp","HohenheimFancyTitle","thetgpostercount","insertemail","posteremail","insertwebsite","posterwebsite"]}
-,
-"hologo.sty":{"envs":{},"deps":["ltxcmds.sty","infwarerr.sty","kvsetkeys.sty","kvdefinekeys.sty","pdftexcmds.sty","iftex.sty","kvoptions.sty"],"cmds":["hologo","Hologo","hologoSetup","hologoLogoSetup","hologoDriverSetup","hologoFontSetup","hologoLogoFontSetup","hologoVariant","HologoVariant","hologoList","hologoEntry"]}
-,
-"holtpolt.sty":{"envs":{},"deps":{},"cmds":["holter","polter"]}
-,
-"holtxdoc.sty":{"envs":["History","Version","declcs"],"deps":["hypdoc.sty","hyperref.sty","pdftexcmds.sty","ltxcmds.sty","hologo.sty","array.sty"],"cmds":["historyname","StartHistory","HistVersion","HistLabel","URL","link","NameEmail","Package","File","Verb","CS","bibpackage","CTAN","CTANinstall","CTANpkg","Newsgroup","xpackage","xmodule","xclass","xoption","xfile","xext","xemail","xnewsgroup","eTeX","pdfTeX","pdfLaTeX","LuaTeX","LuaLaTeX","XeTeX","XeLaTeX","plainTeX","teTeX","mikTeX","MakeIndex","docstrip","iniTeX","VTeX"]}
-,
-"hpstatement.sty":{"envs":{},"deps":["expl3.sty","l3keys2e.sty","iflang.sty"],"cmds":["hpsetup","hpnumber","hpstatement"]}
-,
-"hrefhide.sty":{"envs":{},"deps":["xcolor.sty","hyperref.sty","kvoptions.sty"],"cmds":["hrefdisplayonly","hycon","hycoff","ifhrefhide","hrefhidetrue","hrefhidefalse"]}
-,
-"hsetup.sty":{"envs":["descriptionFB"],"deps":["ifthen.sty","graphicx.sty","s-letter.cls","babel.sty"],"cmds":["addressA","addressB","addressC","border","bottomC","bottomL","bottomR","centreA","centreB","centreC","centreD","centreE","centreF","centrepos","extraA","extraB","extraC","logo","newfa","newfb","newfc","newoption","addrbox","centreoffset","cmda","cmdb","dohead","dotoadd","draftfalse","drafttrue","hlangcnt","hltype","ifdraft","logoheight","logoname","myc","oldbls","pindt","sealbx","settoadd","tmpdima","tmpdimb","frenchsetup","frenchbsetup","AddThinSpaceBeforeFootnotes","alsoname","at","bibname","AutoSpaceBeforeFDP","boi","bname","bsc","CaptionSeparator","captionsfrench","ccname","chaptername","circonflexe","dateacadian","datefrench","DecimalMathComma","degre","degres","descindentFB","dotFFN","enclname","extrasfrench","FBcolonspace","FBdatebox","FBdatespace","FBeverylineguill","FBfigtabshape","FBfnindent","FBFrenchFootnotesfalse","FBFrenchFootnotestrue","FBFrenchSuperscriptstrue","FBGlobalLayoutFrenchtrue","FBgspchar","FBguillopen","FBguillspace","FBInnerGuillSinglefalse","FBInnerGuillSingletrue","FBListItemsAsParfalse","FBListItemsAsPartrue","FBLowercaseSuperscriptstrue","FBmedkern","FBPartNameFulltrue","FBsetspaces","FBSmallCapsFigTabCaptionstrue","FBStandardEnumerateEnvtrue","FBStandardItemizeEnvtrue","FBStandardItemLabelstrue","FBStandardLayouttrue","FBStandardListSpacingtrue","FBStandardListstrue","FBsupR","FBsupS","FBtextellipsis","FBthickkern","FBthinspace","FBthousandsep","FBWarning","fg","fgi","fgii","fprimo","frenchdate","FrenchEnumerate","FrenchFootnotes","FrenchLabelItem","frenchpartfirst","frenchpartsecond","FrenchPopularEnumerate","frenchtoday","Frlabelitemi","Frlabelitemii","Frlabelitemiii","Frlabelitemiv","frquote","fup","glossaryname","headtoname","ieme","iemes","ier","iere","ieres","iers","ifFBAutoSpaceFootnotes","ifFBCompactItemize","ifFBCustomiseFigTabCaptions","ifFBfrench","ifFBFrenchFootnotes","ifFBFrenchSuperscripts","ifFBGlobalLayoutFrench","ifFBIndentFirst","ifFBINGuillSpace","ifFBListItemsAsPar","ifFBListOldLayout","ifFBLowercaseSuperscripts","ifFBLuaTeX","ifFBOldFigTabCaptions","ifFBOriginalTypewriter","ifFBPartNameFull","ifFBReduceListSpacing","ifFBShowOptions","ifFBSmallCapsFigTabCaptions","ifFBStandardEnumerateEnv","ifFBStandardItemizeEnv","ifFBStandardItemLabels","ifFBStandardLayout","ifFBStandardLists","ifFBStandardListSpacing","ifFBSuppressWarning","ifFBThinColonSpace","ifFBThinSpaceInFrenchNumbers","ifFBunicode","ifFBXeTeX","ifLaTeXe","kernFFN","labelindentFB","labelwidthFB","leftmarginFB","listfigurename","listindentFB","No","no","NoAutoSpaceBeforeFDP","NoAutoSpacing","NoEveryParQuote","noextrasfrench","nombre","nos","Nos","og","ogi","ogii","pagename","parindentFFN","partfirst","partnameord","partsecond","prefacename","primo","proofname","quarto","rmfamilyFB","secundo","seename","sffamilyFB","StandardFootnotes","StandardMathComma","tertio","tild","ttfamilyFB","up","xspace","captionsgerman","dategerman","extrasgerman","noextrasgerman","dq","tosstrue","tossfalse","mdqon","mdqoff","ck","captionsbritish","datebritish","extrasbritish","noextrasbritish","captionsenglish","dateenglish","extrasenglish","noextrasenglish","englishhyphenmins","britishhyphenmins","americanhyphenmins"]}
-,
-"huaz.sty":{"envs":{},"deps":["xstring.sty","refcount.sty","iftex.sty"],"cmds":["az","azv","Az","Azv","azsaved","aznotshow","aref","avref","aeqref","aveqref","apageref","avpageref","Aref","Avref","Aeqref","Aveqref","Apageref","Avpageref","acite","avcite","Acite","Avcite"]}
-,
-"hulipsum.sty":{"envs":{},"deps":{},"cmds":["hulipsum","sethulipsumdefault","hulipsumsave","hulipsumexp","hulipsumdocument"]}
-,
-"humanist.sty":{"envs":{},"deps":{},"cmds":["hminfamily","texthmin","Tienc"]}
-,
-"huncial.sty":{"envs":{},"deps":{},"cmds":["hunclfamily","texthuncl","Tienc"]}
-,
-"hvarabic.sty":{"envs":["RTL"],"deps":["iftex.sty","xkeyval.sty","fontspec.sty"],"cmds":["RTLfootnote","textRTL","nLTR","setLTRfootnoterule","setRTLfootnoterule","RTLfont","hvALM","setRTL","setLTR","LTRfootnoterule"]}
-,
-"hvextern.sty":{"envs":["externalDocument","WriteVerb","createPNGfromPSTricks"],"deps":["shellesc.sty","xkeyval.sty","graphicx.sty","fancyvrb.sty","tikz.sty","listings.sty","ifplatform.sty","iftex.sty","ifoddpage.sty","filemod.sty","tcolorbox.sty","tcolorboxlibraryskins.sty","tcolorboxlibrarybreakable.sty"],"cmds":["runExtCmd","hvExternSetKeys","defMarkerType","ResetKeys","PreambleVerbatim","BodyVerbatim","PreambleListing","BodyListing","hvExternLineWidth","perCent","DoubleperCent","NumChar","DoubleNumChar","hvExternDateiname","hvexternFileversion","BeginPSTcode","EndPSTcode"]}
-,
-"hvfloat-fps.sty":{"envs":{},"deps":["xkeyval.sty"],"cmds":["fileversion","filedate"]}
-,
-"hvfloat.sty":{"envs":["hvFloatEnv"],"deps":["caption.sty","varwidth.sty","subcaption.sty","atbegshi.sty","picture.sty","trimclip.sty","etoolbox.sty","marginnote.sty","multido.sty","graphicx.sty","xkeyval.sty","ifoddpage.sty","afterpage.sty","stfloats.sty","hyperref.sty"],"cmds":["hvFloatSet","hvFloatSetDefaults","hvFloat","figcaption","tabcaption","tabcaptionbelow","hvDefFloatStyle","IncludeGraphics","LenToUnit","drawSepLine","getMultiCaptionAndLabel","getMultiObjectAndLabel","getMultiSubCaptionAndLabel","getMultiSubObjectAndLabel","getSingleCaptionAndLabel","hvObjectBox","restoreCaptionSkip","saveCaptionSkip","setBottomCaption","setDefaults","setPageObject","defhvstyle","hvFloatFileVersion","hvFloatFullWidth","hvObjectWidth","hvCapWidth","hvWideWidth","hvMultiFloatSkip","hvMaxCapWidth","hvAboveCaptionSkip","hvBelowCaptionSkip","fboxlinewidth","hvOBox"]}
-,
-"hvindex.sty":{"envs":{},"deps":["xkeyval.sty","makeidx.sty"],"cmds":["Index","ttIndex","bfIndex","sfIndex","scIndex","itIndex","sIndex","saIndex","iBraceL","iBraceR","IVert","IndexNIL","hvIDXfontDefault","hvIDXfont","IndexXi","IndexXXi","IndexXXii","IndexXXiii","hvBraceLeft","hvBraceRight"]}
-,
-"hvlogos.sty":{"envs":{},"deps":["fetamont.sty","hologo.sty","dantelogo.sty","xspace.sty","expl3.sty"],"cmds":["ALEPH","AmS","AmSLaTeX","amsmath","AmSTeX","biber","Biber","BibLaTeX","BibLaTeXML","BibTeX","BibTool","ConTeXt","CTAN","dante","Dante","DANTE","dtk","DTK","emTeX","eTeX","eV","ExTeX","HanTheThanh","iniTeX","KOMAScript","LaTeXIII","LaTeXML","LMTX","LaTeXTeX","LuaHBTeX","LuaLaTeX","LuaTeX","LuaMetaTeX","LyX","macOS","METAFONT","MetaFun","METAPOST","mfShort","mkII","mkIV","MiKTeX","mpShort","NTS","OzMF","OzMP","OzTeX","OzTtH","PCTeX","pdfLaTeX","pdfTeX","pgf","PiC","PiCTeX","plainTeX","PostScript","PSTricks","PurdueThesis","PuTh","SageTeX","SLiTeX","teTeX","TeXivht","tex","TeXLive","TikZ","TTH","TUG","TUGboat","virTeX","VTeX","WikipediA","XeLaTeX","XeTeX","AMS","biblatex","BibTeXacht","context","HTT","lmtx","luahbtex","LuahbTeX","lualatex","luatex","MetaPost","MFun","mkii","mkiv","pdflatex","pdftex","pgftikz","PS","pstricks","purduethesis","puth","tikzlogo","Wikipedia","wikipedia","hvLaTeX","hvLaTeXTeX"]}
-,
-"hvmaths.sty":{"envs":{},"deps":["keyval.sty"],"cmds":["mathbold","upGamma","upDelta","upTheta","upLambda","upXi","upPi","upSigma","upUpsilon","upPhi","upPsi","upOmega","upalpha","upbeta","upgamma","updelta","upepsilon","upzeta","upeta","uptheta","upiota","upkappa","uplambda","upmu","upnu","upxi","uppi","uprho","upsigma","uptau","upupsilon","upphi","upchi","uppsi","upomega","upvarepsilon","upvartheta","upvarpi","upvarphi","upvarrho","upvarsigma","ProcessOptionsWithKV"]}
-,
-"hvpygmentex.sty":{"envs":["pygmented","VerbatimOutAppend"],"deps":["caption.sty","color.sty","efbox.sty","fancyvrb.sty","ifthen.sty","pgfkeys.sty","shellesc.sty","mdframed.sty","tikz.sty"],"cmds":["inputpygmented","pyginline","setpygmented","widest","VerbatimOutAppend","remainingglobaloptions","remaininguseroptions","remainingoptions","FormatLineNumber"]}
-,
-"hvqrurl.sty":{"envs":{},"deps":["qrcode.sty","xcolor.sty","marginnote.sty","url.sty"],"cmds":["hvqrset","hvqrurl"]}
-,
-"hwemoji.sty":{"envs":{},"deps":["scalerel.sty"],"cmds":{}}
-,
-"hypbmsec.sty":{"envs":{},"deps":{},"cmds":["part","section","subsection","subsubsection","paragraph","subparagraph","chapter"]}
-,
-"hypcap.sty":{"envs":{},"deps":["letltxmacro.sty"],"cmds":["capstart","hypcapspace","hypcapredef","capstartfalse","capstarttrue","ifcapstart"]}
-,
-"hypdestopt.sty":{"envs":{},"deps":["iftex.sty","pdftexcmds.sty","auxhook.sty","pdfescape.sty","alphalph.sty"],"cmds":["theHypDest"]}
-,
-"hypdoc.sty":{"envs":{},"deps":["atveryend.sty","doc.sty","calc.sty","hyperref.sty","rerunfilecheck.sty","color.sty"],"cmds":["changehistoryname","glossaryname","hdclindex","hdpindex"]}
-,
-"hypdvips.sty":{"envs":{},"deps":["atveryend.sty","bookmark.sty","xcolor.sty","xkeyval.sty"],"cmds":["attachfile","bmstyle","backrefcolor","embeddedcolor","footnotecolor","tablenotecolor","backrefbordercolor","embeddedbordercolor","footnotebordercolor","tablenotebordercolor","embedfile","evenboxesstring","file","goto","gotoparent","listofattachments","loaformat","odest","openaction","pagelabel","runattachment","currentpoint","debug","point"]}
-,
-"hyperbar.sty":{"envs":{},"deps":["hyperref.sty"],"cmds":["BarcodeField","qBarcodeFld","DefaultOptionsofBarcode","LayoutBarcodeField","MakeBarcodeField"]}
-,
-"hyperref.sty":{"envs":["NoHyper","Form"],"deps":["iftex.sty","kvsetkeys.sty","pdfescape.sty","letltxmacro.sty","kvoptions.sty","url.sty","bigintcalc.sty","atveryend.sty","nameref.sty","backref.sty","color.sty"],"cmds":["HyperDestRename","hyperindexformat","hypersetup","href","AddToDocumentProperties","GetDocumentProperties","MakeLinkTarget","NextLinkTarget","LinkTargetOn","LinkTargetOff","SetLinkTargetFilter","url","nolinkurl","hyperbaseurl","hyperimage","hyperdef","hyperref","hyperlink","hypertarget","phantomsection","hyperget","autopageref","autoref","thispdfpagelabel","pdfstringdef","pdfbookmark","currentpdfbookmark","subpdfbookmark","belowpdfbookmark","texorpdfstring","pdfstringdefDisableCommands","hypercalcbp","Acrobatmenu","TextField","CheckBox","ChoiceMenu","PushButton","Submit","Reset","LayoutTextField","LayoutChoiceField","LayoutCheckField","MakeRadioField","MakeCheckField","MakeTextField","MakeChoiceField","MakeButtonField","DefaultHeightofSubmit","DefaultWidthofSubmit","DefaultHeightofReset","DefaultWidthofReset","DefaultHeightofCheckBox","DefaultWidthofCheckBox","DefaultHeightofChoiceMenu","DefaultWidthofChoiceMenu","DefaultHeightofText","DefaultHeightofTextMultiline","DefaultWidthofText","DefaultOptionsofSubmit","DefaultOptionsofReset","DefaultOptionsofPushButton","DefaultOptionsofCheckBox","DefaultOptionsofText","DefaultOptionsofListBox","DefaultOptionsofComboBox","DefaultOptionsofPopdownBox","DefaultOptionsofRadio","AfterBeginDocument","AMSautorefname","appendixautorefname","chapterautorefname","equationautorefname","FancyVerbLineautorefname","figureautorefname","footnoteautorefname","Hfootnoteautorefname","Hurl","HyperDestLabelReplace","HyperDestNameFilter","hypergetpageref","hypergetref","hyperlinkfileprefix","hyperpage","HyperRaiseLinkDefault","HyperRaiseLinkHook","IfHyperBoolean","IfHyperBooleanExists","ifpdfstringunicode","Itemautorefname","itemautorefname","MakeLowercaseUnsupportedInPdfStrings","MakeUppercaseUnsupportedInPdfStrings","MaybeStopEarly","MaybeStopNow","nohyperpage","pageautorefname","paragraphautorefname","partautorefname","pdfstringdefPostHook","pdfstringdefPreHook","pdfstringdefWarn","sectionautorefname","setpdflinkmargin","subparagraphautorefname","subsectionautorefname","subsubsectionautorefname","tableautorefname","theHchapter","theHenumi","theHenumii","theHenumiii","theHenumiv","theHequation","theHfigure","theHHfootnote","theHHmpfootnote","theHItem","theHmpfootnote","theHparagraph","theHpart","theHsection","theHsubparagraph","theHsubsection","theHsubsubsection","theHtable","theHtheorem","theHthm","theoremautorefname","unichar","XeTeXLinkBox","XeTeXLinkMargin"]}
-,
-"hyperxmp.sty":{"envs":{},"deps":["kvoptions.sty","pdfescape.sty","stringenc.sty","intcalc.sty","iftex.sty","ifmtarg.sty","etoolbox.sty","ifthen.sty","luacode.sty","ifdraft.sty","hyperref.sty","totpages.sty","ifluatex.sty"],"cmds":["xmplinesep","xmpcomma","xmpquote","xmptilde","XMPLangAlt","next","XMPTruncateList"]}
-,
-"hyphenat.sty":{"envs":{},"deps":{},"cmds":["textnhtt","nhttfamily","nohyphens","bshyp","fshyp","dothyp","colonhyp","hyp","langwohyphens","BreakableUnderscore","UnderOrSub","BreakableBackslash","BreakableSlash","BreakablePeriod","BreakableColon","BreakableHyphen","touchttfonts","touchextrattfonts"]}
-,
-"hyphsubst.sty":{"envs":{},"deps":["infwarerr.sty"],"cmds":["HyphSubstLet","HyphSubstIfExists"]}
-,
-"ibarra.sty":{"envs":{},"deps":["ifxetex.sty","ifluatex.sty","textcomp.sty","xkeyval.sty","fontenc.sty","fontaxes.sty","mweights.sty"],"cmds":["ibarra","ibarraSemiBold","oldstylenums","liningnums","ibarrafamily"]}
-,
-"icite.sty":{"envs":{},"deps":["xkeyval.sty","xparse.sty","datatool.sty","usebib.sty"],"cmds":["SetTitleStyle","AuthorTitleDelim","TitlePageDelim","icite","IndexSubtypeAs"]}
-,
-"icon-appr.sty":{"envs":["embedding","sortedlist"],"deps":["xkeyval.sty","ifpdf.sty","ifxetex.sty","ifluatex.sty","eforms.sty","graphicx.sty","datatool.sty"],"cmds":["embedIcon","csOf","heightOf","widthOf","ReqPkg","sortitem"]}
-,
-"icon-doc.sty":{"envs":["verbatimwrite","icondoc"],"deps":["ifxetex.sty","shellesc.sty","web.sty","eforms.sty"],"cmds":["ifdpsuseacrobat","dpsuseacrobattrue","dpsuseacrobatfalse","ifdpscomptwice","dpscomptwicetrue","dpscomptwicefalse","wrtPkg","wrticonbody","IWB","IWP","addToPageList","createRequiredIcons","dpsInputContent","defineJSjsR","execExplode","wrtPageList","pagelist"]}
-,
-"idcc.cls":{"envs":{},"deps":["dccpaper-base.sty"],"cmds":{}}
-,
-"identkey.sty":{"envs":["key"],"deps":["enumitem.sty","etoolbox.sty"],"cmds":["thecoupletcounter","lead","firstlead","secondlead","ident","goto"]}
-,
-"idxcmds.sty":{"envs":{},"deps":["etoolbox.sty","pgfopts.sty","ltxcmds.sty"],"cmds":["newidxcmd","newsubidxcmd","newsubmainidxcmd","setidxcmds"]}
-,
-"idxlayout.sty":{"envs":{},"deps":["etoolbox.sty","kvoptions.sty","multicol.sty","ragged2e.sty"],"cmds":["idxlayout","setindexprenote","noindexprenote","indexfont","indexjustific","indexsubsdelim","indexstheadcase","theidxcols","indexcolsep","indexrule"]}
-,
-"iexec.sty":{"envs":{},"deps":["shellesc.sty","pgfkeys.sty","expl3.sty","xkeyval.sty"],"cmds":["iexec"]}
-,
-"ifallfalse.sty":{"envs":["allfalse"],"deps":{},"cmds":["orcheck"]}
-,
-"ifdraft.sty":{"envs":{},"deps":{},"cmds":["ifdraft","ifoptiondraft","ifoptionfinal"]}
-,
-"ifetex.sty":{"envs":{},"deps":["iftex.sty"],"cmds":["NeedsETeX"]}
-,
-"iffont.sty":{"envs":{},"deps":["fontspec.sty","etoolbox.sty"],"cmds":["settofirstfound","iffontsexist","ifxfontsexist","iffontexists","ifxfontexists"]}
-,
-"iflang.sty":{"envs":{},"deps":["infwarerr.sty","pdftexcmds.sty"],"cmds":["IfLanguageName","IfLanguagePatterns"]}
-,
-"ifluatex.sty":{"envs":{},"deps":["iftex.sty"],"cmds":{}}
-,
-"ifnextok.sty":{"envs":{},"deps":{},"cmds":["IfNextToken","NoNextSkipping","RestoreNextSkipping","INTpatch","NextTestPatch","INTstore","INTrestore","IfStarNextToken","StarTestPatch","StoreStarSkipping","RestoreStarSkipping","NoStarSkipping","IfNextSpace","MakeNotSkipping","StoreNewlineSkipping","RestoreNewlineSkipping","NoNewlineSkipping","INTactOnEnv","StoreSkippingCRs","RestoreSkippingCRs","NotSkippingCRs"]}
-,
-"ifoddpage.sty":{"envs":{},"deps":{},"cmds":["checkoddpage","ifoddpage","ifoddpageoroneside"]}
-,
-"ifoption.sty":{"envs":{},"deps":{},"cmds":["CurrentPackage","CurrentClass","IfOption","IfPackageOption","IfClassOption","DeclareExclusiveOptions","ProcessExclusiveOptions","DeclareBooleanOption","OptionsFalseTrue"]}
-,
-"ifpdf.sty":{"envs":{},"deps":["iftex.sty"],"cmds":{}}
-,
-"ifplatform.sty":{"envs":{},"deps":["ifluatex.sty","shellesc.sty"],"cmds":["cygwinname","linuxname","macosxname","notwindowsname","unknownplatform","windowsname","ifshellescape","ifwindows","iflinux","ifmacosx","ifcygwin","platformname"]}
-,
-"ifptex.sty":{"envs":{},"deps":["iftex.sty"],"cmds":["ifptex","ifpTeX","ifuptex","ifupTeX","ifnativeuptex","ifnativeupTeX","ifptexng","ifpTeXng","ifstrictptex","ifstrictpTeX","ifstrictuptex","ifstrictupTeX","ifstrictptexng","ifstrictpTeXng","ifstrictplatex","ifstrictuplatex","ifporuplatex","RequirepTeX","RequireStrictpTeX","RequireupTeX","RequireStrictupTeX","RequireNativeupTeX","RequirepTeXng","RequireStrictpTeXng","RequireStrictpLaTeX","RequireStrictupLaTeX","RequirepOrupLaTeX","upTeXguessedversion","RequireupTeXAtLeast","RequireNativeupTeXAtLeast","bxipIfptexLoaded","ifNativeupTeX","RequirenativeupTeX","ifnewupTeX","RequireNewupTeX","RequireNativeNewupTeX"]}
-,
-"ifpxltex.sty":{"envs":{},"deps":["hologo.sty"],"cmds":["pxlThisTeX","pxlThisLaTeX","pxlThisPLaTeX","IfpxlTeX","IfpxlTeXpxl","pxlRequireTeX"]}
-,
-"ifsym.sty":{"envs":{},"deps":["calc.sty"],"cmds":["ifsymfamily","ifgeofamily","narrowshape","wideshape","textifsym","textifgeo","textnarrow","textwide","textifsymbol","theifsymcnt","Letter","Telephone","SectioningDiamond","FilledSectioningDiamond","PaperPortrait","PaperLandscape","Cube","Irritant","Fire","Radiation","StrokeOne","StrokeTwo","StrokeThree","StrokeFour","StrokeFive","RaisingEdge","FallingEdge","ShortPulseHigh","ShortPulseLow","PulseHigh","PulseLow","LongPulseHigh","LongPulseLow","SummitSign","StoneMan","Hut","FilledHut","Village","Summit","Mountain","IceMountain","VarMountain","VarIceMountain","SurveySign","Joch","Flag","VarFlag","Tent","HalfFilledHut","VarSummit","BigSquare","Square","SmallSquare","FilledBigSquare","FilledSquare","FilledSmallSquare","SquareShadowA","SquareShadowB","SquareShadowC","FilledSquareShadowA","FilledSquareShadowC","BigCross","Cross","SmallCross","SpinUp","SpinDown","BigTriangleUp","TriangleUp","SmallTriangleUp","FilledBigTriangleUp","FilledTriangleUp","FilledSmallTriangleUp","BigTriangleLeft","TriangleLeft","SmallTriangleLeft","FilledBigTriangleLeft","FilledTriangleLeft","FilledSmallTriangleLeft","BigTriangleDown","TriangleDown","SmallTriangleDown","FilledBigTriangleDown","FilledTriangleDown","FilledSmallTriangleDown","BigTriangleRight","TriangleRight","SmallTriangleRight","FilledBigTriangleRight","FilledTriangleRight","FilledSmallTriangleRight","BigCircle","Circle","SmallCircle","FilledBigCircle","FilledCircle","FilledSmallCircle","BigDiamondshape","Diamondshape","SmallDiamondshape","FilledBigDiamondshape","FilledDiamondshape","FilledSmallDiamondshape","DiamondShadowA","DiamondShadowB","DiamondShadowC","FilledDiamondShadowA","FilledDiamondShadowC","BigRightDiamond","RightDiamond","SmallRightDiamond","BigLowerDiamond","LowerDiamond","SmallLowerDiamond","BigHBar","HBar","SmallHBar","BigVBar","VBar","SmallVBar","ifclkfamily","textifclk","showclock","Taschenuhr","VarTaschenuhr","StopWatchStart","StopWatchEnd","Interval","Wecker","VarClock","textweathersymbol","Sun","HalfSun","NoSun","Fog","ThinFog","Rain","WeakRain","Hail","Sleet","Snow","Lightning","Cloud","RainCloud","WeakRainCloud","SunCloud","SnowCloud","FilledCloud","FilledRainCloud","FilledWeakRainCloud","FilledSunCloud","FilledSnowCloud","wind","Thermo"]}
-,
-"iftex.sty":{"envs":{},"deps":{},"cmds":["ifpdftex","ifPDFTeX","ifxetex","ifXeTeX","ifluatex","ifLuaTeX","ifetex","ifeTeX","ifluahbtex","ifLuaHBTeX","ifptex","ifpTeX","ifuptex","ifupTeX","ifptexng","ifpTeXng","ifvtex","ifVTeX","ifalephtex","ifAlephTeX","iftutex","ifTUTeX","iftexpadtex","ifTexpadTeX","ifhint","ifHINT","else","fi","RequireeTeX","RequirePDFTeX","RequireXeTeX","RequireLuaTeX","RequireLuaHBTeX","RequirepTeX","RequireupTeX","RequirepTeXng","RequireVTeX","RequireAlephTeX","RequireTUTeX","RequireTexpadTeX","RequireHINT","ifpdf","pdftrue","pdffalse"]}
-,
-"ifthen.sty":{"envs":{},"deps":{},"cmds":["ifthenelse","isodd","isundefined","equal","AND","OR","NOT","lengthtest","boolean","newboolean","provideboolean","setboolean","whiledo"]}
-,
-"ifthenx.sty":{"envs":{},"deps":["ifthen.sty"],"cmds":["isinteger","ispositiveinteger","isrealnumber","isnumber","ispositiverealnumber","ispositivenumber","classloaded","packageloaded","fileexists"]}
-,
-"ifuptex.sty":{"envs":{},"deps":{},"cmds":{}}
-,
-"ifvtex.sty":{"envs":{},"deps":["iftex.sty"],"cmds":["ifvtexdvi","ifvtexpdf","ifvtexps","ifvtexhtml","ifvtexgex"]}
-,
-"ifxetex.sty":{"envs":{},"deps":["iftex.sty"],"cmds":{}}
-,
-"ifxptex.sty":{"envs":{},"deps":{},"cmds":["ifxpTeX","xpTeXtrue","xpTeXfalse","ifxepTeX","xepTeXtrue","xepTeXfalse","ifxupTeX","xupTeXtrue","xupTeXfalse","ifxeupTeX","xeupTeXtrue","xeupTeXfalse","ifxApTeX","xApTeXtrue","xApTeXfalse","ifxUniupTeX","xUniupTeXtrue","xUniupTeXfalse","ifxUnieupTeX","xUnieupTeXtrue","xUnieupTeXfalse","ifxptex","xptextrue","xptexfalse","ifxeptex","xeptextrue","xeptexfalse","ifxuptex","xuptextrue","xuptexfalse","ifxeuptex","xeuptextrue","xeuptexfalse","ifxaptex","xaptextrue","xaptexfalse","ifxuniuptex","xuniuptextrue","xuniuptexfalse","ifxunieuptex","xunieuptextrue","xunieuptexfalse","RequireXpTeX","RequireXepTeX","RequireXupTeX","RequireXeupTeX","RequireXApTeX","RequireXUniupTeX","RequireXUnieupTeX","RequireXptex","RequireXeptex","RequireXuptex","RequireXeuptex","RequireXaptex","RequireXuniuptex","RequireXunieuptex","ENDINPUTIFXPTEXDOTSTY","IFXPTEXDOTSTYRESTORECATCODE"]}
-,
-"igo.sty":{"envs":{},"deps":{},"cmds":["black","blackstone","clear","cleargoban","cleargobansymbols","copyfromgoban","copygoban","copytogoban","gobansize","gobansymbol","gobansymbols","hflipgoban","igobreakafterdiagram","igocircle","igocross","igofontsize","igonone","igosquare","igotriangle","largegoban","mirrorgoban","normalgoban","rotategoban","rotategobanleft","rotategobanright","showfullgoban","showgoban","smallgoban","stonesize","usegoban","vflipgoban","white","whitestone","breakrepeat","by","csprotect","downto","endrepeat","for","from","repeat","REPcomp","REPcsarg","REPcsargrom","REPcsrom","REPdepth","REPdxbody","REPsetup","REPsign","REPtmp","REPtraceexit","REPtraceinit","REPzero","to","until","while"]}
-,
-"iitem.sty":{"envs":{},"deps":{},"cmds":["iitem","iiitem","ivtem","theiitemcounter","theiiitemcounter","theivtemcounter","AltesItem"]}
-,
-"ijdc-v14.cls":{"envs":{},"deps":["dccpaper-base.sty"],"cmds":{}}
-,
-"ijdc-v9.cls":{"envs":{},"deps":["dccpaper-base.sty"],"cmds":{}}
-,
-"image-gallery.cls":{"envs":{},"deps":["graphicx.sty","keyval.sty","url.sty","geometry.sty","color.sty"],"cmds":["makeGallery","gallerySetup"]}
-,
-"imakeidx.sty":{"envs":{},"deps":["xkeyval.sty","ifxetex.sty","ifluatex.sty","multicol.sty"],"cmds":["makeindex","indexsetup","splitindexoptions","index","indexprologue","printindex"]}
-,
-"imfellEnglish.sty":{"envs":{},"deps":["ifxetex.sty","ifluatex.sty","xkeyval.sty","textcomp.sty","fontenc.sty","fontaxes.sty"],"cmds":["imfellEnglish"]}
-,
-"impnattypo.sty":{"envs":{},"deps":["ifluatex.sty","kvoptions.sty","xcolor.sty","luatexbase.sty","luacode.sty"],"cmds":["usecolor"]}
-,
-"import.sty":{"envs":{},"deps":{},"cmds":["import","inputfrom","subimport","subinputfrom","includefrom","subincludefrom"]}
-,
-"imprintmtshadow.sty":{"envs":{},"deps":["keyval.sty"],"cmds":["imprintmtshadowfamily","textimprintmtshadow","ProcessOptionsWithKV"]}
-,
-"imsart.cls":{"envs":{},"deps":["imsart.sty","amsmath.sty","amsthm.sty","natbib.sty","rotating.sty","lmodern.sty","times.sty","helvet.sty","textcomp.sty","textcase.sty","newtxmath.sty","graphicx.sty","letterspace.sty","enumitem.sty","hyperref.sty","amssymb.sty","mathrsfs.sty","bm.sty","color.sty"],"cmds":["savehline","thline","setlstracking","texttracking"]}
-,
-"imsart.sty":{"envs":["appendix","aug","em","frontmatter","funding","keyword","longlist","supplement","tabnotes"],"deps":["etoolbox.sty","keyval.sty","ifpdf.sty","fontenc.sty","amsmath.sty","amsthm.sty","natbib.sty","rotating.sty","lmodern.sty","times.sty","helvet.sty","textcomp.sty","textcase.sty","newtxmath.sty","graphicx.sty","letterspace.sty","enumitem.sty","hyperref.sty","amssymb.sty","mathrsfs.sty","bm.sty","color.sty"],"cmds":["DH","dh","dj","DJ","guillemetleft","guillemetright","guillemotleft","guillemotright","guilsinglleft","guilsinglright","Hwithstroke","hwithstroke","k","NG","ng","quotedblbase","quotesinglbase","textogonekcentered","textquotedbl","th","TH","savehline","thline","setlstracking","texttracking","accepted","acknowledgementsname","address","AND","articletitle","arxiv","atltitle","author","baddress","banumber","barticle","bauthor","bbook","bbooklet","bchapter","bdoi","bedition","beditor","betal","bfnm","bhowpublished","bid","binbook","bincollection","binits","binproceedings","binstitution","bisbn","blocation","bmanual","bmastersthesis","bmisc","bmrnumber","bnote","bnumber","borganization","bpages","bparticle","bphdthesis","bproceedings","bptok","bpublisher","bschool","bsnm","bsuffix","btechreport","btype","bunpublished","byear","citefix","contributor","copyrightowner","correctionnote","corref","dedicated","degs","dochead","doi","doublespacing","ead","endlocaldefs","firstpage","fnms","fundingname","getitemvalue","getpkgattr","inits","issue","journalurl","kwd","labellonglist","lastpage","legend","loadhyperrefoptions","MR","MRfixed","newpseudoenvironment","nocontentsline","nohyphen","normaltext","orcid","paperno","paperurl","pdfauthor","pdfkeywords","pdfsubject","pdftitle","printaddresses","printaddressnum","printead","printorcid","pubonline","pubyear","qq","received","relateddoi","relateddois","restorethankscounter","revised","roles","runauthor","runtitle","safelabel","saferef","sdatatype","sday","sdescription","sep","setpkgattr","setvaluelist","sfilename","singlespacing","slink","smonth","sname","snm","specialsection","startlocaldefs","stitle","stitlepost","support","syear","tablewidth","tabnoteref","tabnotestoks","tabnotetext","thankslabel","thanksmark","thanksnewlabel","thanksref","thankstext","theaddress","theaddressref","theauthor","theemailref","thefirstpage","thelastpage","thelonglist","thesuppdoi","thetabnote","thethanks","usethankscounter","volume","volumetitle","woMR"]}
-,
-"incgraph.sty":{"envs":["inctext"],"deps":["pgfkeys.sty","pgffor.sty","bookmark.sty"],"cmds":["incgraph","incmultigraph","n","ni","nn","nt","igrset","igrGetPageSize","igrPageWidth","igrPageHeight","igrSetPageSize","igrGetLastPage","igrLastPage","igfpage","igrcenter","igrcenterfit","igrtargetset","theigrpage","igrpagestyle","igrmatchvalue","igfboxset","igrboxcenter","igrboxtikz","igrboxtikzpage","igrboxtikzcenter","igrbox","igrAutoTarget","igrBoxWidth","igrBoxHeight","igrBoxht","igrBoxdp","igrsetmatchvalue","igrsetmatches","igrifmatch","igrmakezerofill"]}
-,
-"includeRnw.sty":{"envs":{},"deps":["kvoptions.sty","pdftexcmds.sty"],"cmds":["includeRnw","rnwInputDirectory","rnwKnittedSuffix","rnwKnitlogFile","rnwKnitheadName","incl","includeRnwVer","bs","doublebs","fourbs","givenopt","inspw","insp","knitOutfile","purgeOutDir"]}
-,
-"inconsolata.sty":{"envs":{},"deps":["textcomp.sty","xkeyval.sty","upquote.sty"],"cmds":["altzero"]}
-,
-"index.sty":{"envs":["shortindexingon"],"deps":{},"cmds":["newindex","renewindex","printindex","index","shortindexingon","shortindexingoff","proofmodetrue","proofmodefalse","indexproofstyle","disableindex","seename","see"]}
-,
-"indextools.sty":{"envs":{},"deps":["xkeyval.sty","ifxetex.sty","ifluatex.sty","pdftexcmds.sty","xpatch.sty","multicol.sty"],"cmds":["makeindex","indexsetup","splitindexoptions","index","indexprologue","printindex","alsoname","innotenumber","innote","seealso","seename","see","nindex","nnumberindex"]}
-,
-"infix-RPN.sty":{"envs":{},"deps":{},"cmds":["infixtoRPN","RPN","DeclareNewPSOperator","endscanline","fileversion","infixRPNLoaded","opAtCode","opHatCode","opUnderscoreCode","RCS"]}
-,
-"inline-images.sty":{"envs":{},"deps":["graphicx.sty"],"cmds":["inlineimg"]}
-,
-"inlinedef.sty":{"envs":{},"deps":{},"cmds":["Inline","Expand","MultiExpand","UnsafeExpand","NoExpand","Super","Recurse","xa"]}
-,
-"inlinelabel.sty":{"envs":{},"deps":["amsmath.sty","otf.sty","refcount.sty","luatexja-otf.sty"],"cmds":["circledref","equationref","inlinelabel","equationreset"]}
-,
-"innerscript.sty":{"envs":{},"deps":["luatex.sty"],"cmds":{}}
-,
-"inputenc.sty":{"envs":{},"deps":["ucs.sty"],"cmds":["DeclareInputMath","DeclareInputText","DeclareUnicodeCharacter","inputencodingname","inputencoding","IeC","definearmew"]}
-,
-"inputnormalization.sty":{"envs":{},"deps":{},"cmds":["Uinputnormalization"]}
-,
-"inputtrc.sty":{"envs":{},"deps":{},"cmds":["dotracinginputs","notracinginputs","setinputindentunit","dotracingreturns","dotracinginputsreturns","notracingreturns","notracinginputsreturns"]}
-,
-"insdljs.sty":{"envs":["insDLJS","insDLJS*","newsegment","execJS","defineJS","defineJS*","didPrint"],"deps":["xkeyval.sty","ifpdf.sty","ifxetex.sty","ifluatex.sty","hyperref.sty","verbatim.sty","conv-xkv.sty","everyshi.sty"],"cmds":["flJSStr","defineJSStr","fieldJSStr","dlJSStr","cs","eqbs","jslit","OpenAction","thisPageAction","JS","Named","bParams","eParams","makeJSspecials","actualsize","addActionObj","addImportAnFDF","addToDocOpen","aebpFA","aebpopentoks","applydljs","begindljs","beginseg","ckivspace","db","definebraces","defineJSArg","defjsLB","detectdljs","dfnJSCR","dfnJSCRDef","dfnJSR","dlcombine","dlcontig","dlgobToFi","dljsBase","dljsobjtoks","dljspdftextmp","dljspresent","dljstfor","dljstmp","dlparsePkgInfo","dlpkgInfo","dlPkgInfoDate","dlPkgInfoDesc","dlpkgInfoExpd","dlPkgInfoPkg","dlPkgInfoVer","dlSetPkgInfo","DLspecialDefs","dlTC","efdlspecials","endseg","eqdospecials","eqesc","Eschr","escIs","execJSOff","execJSOn","expVerb","fdfAfterheader","fdfbeginstreamobj","fdfendstreamobj","fdfheader","fdftrailer","firstdljs","firstFDFline","fitheight","fitpage","fitvisible","fitwidth","genericLB","genericNL","gobiv","GoTo","GoToD","GoToR","holdtokstmp","importAnFDF","importAnFDFTemplate","importAnFDFtmp","importdljs","importfdftoks","inheritzoom","inputAltAdbFncs","insdljsloadVar","insPath","isOpenAction","isStar","iwvo","jscsDflt","jscsDLJS","jsFrstLne","jsN","jsR","jsT","JStoks","lastFDFline","Launch","LB","makecmt","makeesc","makespecialJS","multisegments","NL","objNames","opentoks","Page","pdfLBr","pdfmarkLB","pdfRBr","pdfSP","pdfSpacesOff","pdfSpacesOn","pdfSPDef","pdftexOAction","previewMiKTeX","protectJSCtrls","reqpkg","restoreDLspecialDefs","thedljssegs","theFirstAction","thisPageActionpdftex","Thread","typeset","Uni","URI","usedAdbFuncs","W","ifpdfmarkup","pdfmarkuptrue","pdfmarkupfalse","ifthereisdjs","thereisdjstrue","thereisdjsfalse","ifpdfspaces","pdfspacestrue","pdfspacesfalse","ifisdljs","isdljstrue","isdljsfalse","ifdlfortypeset","dlfortypesettrue","dlfortypesetfalse"]}
-,
-"inslrmaj.sty":{"envs":{},"deps":{},"cmds":["imajfamily","textimaj","Tienc"]}
-,
-"inslrmin.sty":{"envs":{},"deps":{},"cmds":["iminfamily","textimin","Tienc"]}
-,
-"intcalc.sty":{"envs":{},"deps":{},"cmds":["intcalcNum","intcalcInv","intcalcAbs","intcalcSgn","intcalcMin","intcalcMax","intcalcCmp","intcalcInc","intcalcDec","intcalcAdd","intcalcSub","intcalcShl","intcalcShr","intcalcMul","intcalcSqr","intcalcFac","intcalcPow","intcalcDiv","intcalcMod","IntCalcInc","IntCalcDec","IntCalcAdd","IntCalcSub","IntCalcShl","IntCalcShr","IntCalcMul","IntCalcDiv","IntCalcMod"]}
-,
-"inter.sty":{"envs":{},"deps":["ifxetex.sty","ifluatex.sty","xkeyval.sty","textcomp.sty","fontaxes.sty","mweights.sty"],"cmds":["intertabular","interproportional","interthin","interlight","interextralight","intermedium","intersemibold","interextrabold","interheavy","sufigures","interfamily"]}
-,
-"interactiveanimation.sty":{"envs":["animation","aframe"],"deps":["ifpdf.sty","keyval.sty"],"cmds":["controlbutton"]}
-,
-"interactiveplot.sty":{"envs":["iplotdd","iplotddd"],"deps":["datetime.sty","xstring.sty","stack.sty","ifthen.sty","forloop.sty","calc.sty","etoolbox.sty"],"cmds":["iplot","Special","border","decimalaux","resolution","simbolaction","theauxverifunari","thect","thelen","val","validateS"]}
-,
-"interpreter.sty":{"envs":{},"deps":{},"cmds":["interpretfile","interpretergobble","interpreterinput"]}
-,
-"interval.sty":{"envs":{},"deps":["pgfkeys.sty"],"cmds":["interval","ointerval","linterval","rinterval","intervalconfig","INTVversion"]}
-,
-"intopdf.sty":{"envs":{},"deps":["hyperref.sty"],"cmds":["attachandlink"]}
-,
-"inversepath.sty":{"envs":{},"deps":{},"cmds":["inversepath","absolutepath"]}
-,
-"invoice-class.cls":{"envs":{},"deps":["geometry.sty","datatool.sty","multicol.sty","array.sty","tabularx.sty","longtable.sty","dcolumn.sty","fancyhdr.sty"],"cmds":["ConfigPrefix","InputFile","waybill","shippingdate","toaddress","destination","carrier","weight","packages","packingcost","shippingcost","insurancecost","fromaddress","shipper","location","printinvoice"]}
-,
-"invoice.sty":{"envs":["invoice"],"deps":["ifthen.sty","longtable.sty","calc.sty","siunitx.sty","fp.sty"],"cmds":["ProjectTitle","Fee","STFee","EBC","EFC","EBCi","EFCi","STExpenses","Discount","STProject","BC","commafalse","commatrue","Flag","ifcomma","ifVATnonzero","invoiceno","InvoiceVersion","Null","Project","theDiscount","theExpenses","theFee","theProject","theTotal","theVAT","VATnonzerofalse","VATnonzerotrue","Activity","Amount","Count","Currency","Error","Expense","Expenses","Factor","FeeBeforeExpense","FeeSTExists","Fees","InternalError","InvoiceCompleted","InvoiceCompletedNoExpense","InvoiceCompletedNoFee","InvoiceCompletedNoFeeST","InvoiceCompletedNoProject","InvoiceCompletedNoProjectST","KOMA","MissingFee","MissingInputData","MissingOpening","MissingProject","NoInvoiceNesting","NoProjectNesting","ProjectCompletedNoExpense","ProjectCompletedNoFee","ProjectEmpty","ProjectSTExists","SubtotalExpenses","SubtotalFee","SubtotalProject","SumExpenses","SumFees","SumVAT","Total","UnitRate","VAT","Warning"]}
-,
-"invoice2.sty":{"envs":["invoice"],"deps":["booktabs.sty","expl3.sty","l3keys2e.sty","longtable.sty","siunitx.sty","translations.sty","xcolor.sty","xparse.sty","colortbl.sty"],"cmds":["invoiceoptions","invoiceitem","invoicesingleitem"]}
-,
-"iodhbwm-templates.sty":{"envs":{},"deps":["etoolbox.sty","pgfopts.sty","totalcount.sty","xpatch.sty"],"cmds":["dhbwsetup","getAuthor","getThesisTitle","getThesisSecondTitle","getLocation","getCourseName","getCourseId","getStudentId","getInstituteLogo","getInstitute","getInstituteSection","getSupervisor","getProcessingPeriod","getDate","getSubmissionDate","getReviewer","getBachelorDegree","getThesisType","getDHBWLocation","getDHBWLogo","listofappendices","dhbwtitlepage","dhbwdeclaration","dhbwabstract","tocchapterpagenumberformat","dhbwfrontmatter","dhbwmainmatter","dhbwprintintro","appendixmore","SavedOriginalchaptertocentry","SavedOriginaladdchaptertocentry","totalfigures","iftotalfigures","totaltables","iftotaltables"]}
-,
-"iodhbwm.cls":{"envs":{},"deps":["etoolbox.sty","pgfopts.sty","scrlfile.sty","xstring.sty","s-scrreprt.cls","babel.sty","csquotes.sty","lmodern.sty","microtype.sty","scrhack.sty","setspace.sty","mathtools.sty","graphicx.sty","tcolorbox.sty","tcolorboxlibrarymost.sty","tabularx.sty","booktabs.sty","xcolor.sty","geometry.sty","scrlayer-scrpage.sty","siunitx.sty","cleveref.sty","hyperref.sty","auxhook.sty","caption.sty","iodhbwm-templates.sty","biblatex.sty","blindtext.sty","lipsum.sty","colortbl.sty"],"cmds":["captionsenglish","dateenglish","extrasenglish","noextrasenglish","englishhyphenmins","britishhyphenmins","americanhyphenmins","prefacename","bibname","chaptername","enclname","ccname","headtoname","pagename","seename","alsoname","proofname","glossaryname","captionsngerman","datengerman","extrasngerman","noextrasngerman","dq","ntosstrue","ntossfalse","mdqon","mdqoff"]}
-,
-"ionumbers.sty":{"envs":{},"deps":["keyval.sty"],"cmds":["ionumbersstyle","ionumbersresetstyle","newionumbersthousands","newionumbersdecimal","newionumbersthousandths","newionumbersexponent","renewionumbersthousands","renewionumbersdecimal","renewionumbersthousandths","renewionumbersexponent","ionumbers","endionumbers","ionumbersoff"]}
-,
-"iopams.sty":{"envs":{},"deps":["amsgen.sty","amsfonts.sty","amssymb.sty","amsbsy.sty"],"cmds":["balpha","bbeta","bgamma","bdelta","bepsilon","bzeta","bfeta","btheta","biota","bkappa","blambda","bmu","bnu","bxi","bpi","brho","bsigma","btau","bupsilon","bphi","bchi","bpsi","bomega","bvarepsilon","bvartheta","bvaromega","bvarrho","bvarzeta","bvarsigma","bvarphi","bGamma","bDelta","bTheta","bLambda","bXi","bPi","bSigma","bUpsilon","bPhi","bPsi","bOmega","bpartial","bell","bimath","bjmath","binfty","bnabla","bdot","fulldiamond","fullstar","fulltriangle","fulltriangledown"]}
-,
-"iopart.cls":{"envs":["equation*","harvard","indented","varindent","thereferences"],"deps":{},"cmds":["ack","address","ams","article","bcal","bi","Bibliography","br","broken","bs","case","centre","chain","comment","crule","dashddot","dashed","dotted","e","ead","eads","endbib","endfulltable","endnumparts","endrefs","endtab","endTable","eqalign","eqalignno","eqnobysec","eref","Eref","es","etal","Figure","Figures","fl","fref","Fref","ftc","full","fullcircle","fullsquare","fulltable","ioptwocol","letter","lineup","longbroken","lshad","mailto","mr","ms","multiparteqn","noappendix","nonum","nosections","note","ns","numparts","opencircle","opendiamond","opensquare","opentriangle","opentriangledown","Or","pacno","pacs","paper","prelim","rapid","References","refs","review","rmd","rme","rmi","rshad","sref","Sref","submitted","submitto","Table","Tables","tdot","title","topical","Tr","tr","tref","Tref","CQG","CTM","DSE","EJP","JNE","PB","SMS","HPP","IP","JHM","JO","JOA","JOB","JPA","JPB","jpb","JPC","JPCM","JPD","JPE","JPF","JPG","jpg","JMM","MSMSE","MST","NET","NJP","NL","NT","PAO","PM","PMB","PPCF","PSST","PUS","QO","QSO","RPP","SLC","SST","SUST","WRM","AC","AM","AP","APNY","APP","CJP","JAP","JCP","JJAP","JP","JPhCh","JMMM","JMP","JOSA","JPSJ","JQSRT","NC","NIM","NP","PL","PR","PRL","PRS","PS","PSS","PTRS","RMP","RSI","SSC","ZP","GRG","PF","SPJ","jpa","BF","BB","BMM","CSD","ERL","JBR","JGE","JOPT","JRP","MET","NF","PED","TDM","MRE","MAF","TMR","STMP","AJ","APJ","APJL","APJS","ANSN","CJCP","CPB","CPC","CPL","CTP","EPL","FDR","IZV","JOS","PHU","PST","QEL","RAA","RCR","RMS","MSB","SFC","STAM","LP","LPL","APEX","JCAP","JHEP","JSTAT","JINST","JPCS","EES","MSE","ackn","bhline","boldarrayrulewidth","dash","dsty","endnumrefs","eql","fcrule","ifiopams","ifletter","ifnumbysec","indentedwidth","iopamsfalse","iopamstrue","jl","journal","lequiv","letterfalse","lettertrue","lo","lsim","lsimeq","m","mat","mathindent","numbysecfalse","numbysectrue","numrefs","pcal","pmit","psemicolon","pt","sssty","ssty","theeqnval","thejnl","tqs","tsty"]}
-,
-"ipa.sty":{"envs":{},"deps":{},"cmds":["ain","babygamma","barb","bard","bari","barl","baro","barp","barsci","barscu","baru","clickb","clickc","clickt","closedniomega","closedrevepsilon","corner","crossb","crossd","crossh","crossnilambda","curlyc","curlyesh","curlyyogh","curlyz","dlbari","downp","downt","dz","ejective","eng","er","esh","eth","flapr","glotstop","halflength","hookb","hookd","hookg","hookh","hookheng","hookrevepsilon","hv","inva","invf","invglotstop","invh","invlegr","invm","invr","invscr","invscripta","invv","invw","invy","ipagamma","labdentalnas","latfric","leftp","leftt","legm","legr","length","lz","midtilde","nialpha","nibeta","nichi","niepsilon","nigamma","niiota","nilambda","niomega","niphi","nisigma","nitheta","niupsilon","nj","oo","open","openo","overring","polishhook","reve","reveject","revepsilon","revglotstop","rightp","rightt","scd","scg","schwa","sci","scn","scr","scripta","scriptg","scriptv","scu","scy","secstress","slashb","slashc","slashd","slashu","stress","syllabic","taild","tailinvr","taill","tailn","tailr","tails","tailt","tailz","tesh","thorn","tildel","underdots","underring","undertilde","underwedge","upp","upt","yogh","dental","underarch","diatop","diaunder","ipa","fileversion","filedate","docdate"]}
-,
-"ipaex-type1.sty":{"envs":{},"deps":{},"cmds":["ipxmfamily","ipxgfamily","textipxm","textipxg","CJKipxmfamily","CJKipxgfamily","textCJKipxm","textCJKipxg","ipxmsymbol","ipxgsymbol","CJKUsymbol","ipxmReferenceMark","ipxmCommandKey","ipxmReturnKey","ipxmVisibleSpace","ipxmvarSquare","ipxmSquare","ipxmvarTriangle","ipxmTriangle","ipxmvarTriangleDown","ipxmTriangleDown","ipxmvarLozenge","ipxmLozenge","ipxmCircle","ipxmBullsEye","ipxmvarCircle","ipxmSun","ipxmCloud","ipxmUmbrella","ipxmSnowman","ipxmvarStar","ipxmStar","ipxmPhone","ipxmGoteMark","ipxmSenteMark","ipxmRightHand","ipxmSpade","ipxmHeart","ipxmDiamond","ipxmClub","ipxmvarSpade","ipxmvarHeart","ipxmvarDiamond","ipxmvarClub","ipxmvarSnowman","ipxmBlackSnowman","ipxmCheckmark","ipxmPostalMark","ipxmGeta","ipxmPostal","ipxmvarPostal","ipxmvarPostalMark","ipxmUta","extendipaextypeI","noextendipaextypeI","CJKhook"]}
-,
-"iscram.cls":{"envs":{},"deps":["etoolbox.sty","pgfopts.sty","geometry.sty","microtype.sty","newtxtext.sty","newtxmath.sty","titlesec.sty","float.sty","caption.sty","booktabs.sty","biblatex.sty","nowidow.sty","url.sty","xcolor.sty","hyperref.sty"],"cmds":["iscramset","abstract","keywords","titleorig"]}
-,
-"isodate.sty":{"envs":{},"deps":["ifthen.sty","substr.sty"],"cmds":["isodate","numdate","shortdate","TeXdate","origdate","shortorigdate","Romandate","romandate","shortRomandate","shortromandate","printyearoff","printyearon","printdayoff","printdayon","printdate","printdateTeX","daterange","isodash","isospacebeforeday","isospacebeforemonth","isospacebeforeyear","shortyearsign","isorangesign","daymonthsepgerman","monthyearsepgerman","monthyearsepnodaygerman","cleanlookdateon","cleanlookdateoff","ifisotwodigitday","isotwodigitdaytrue","isotwodigitdayfalse","twodigitarabic","dateinputformat"]}
-,
-"isodoc.cls":{"envs":{},"deps":["s-memoir.cls","xcolor.sty","tabularx.sty","graphicx.sty","xstring.sty","calc.sty","forarray.sty","longtable.sty","textpos.sty","fancyhdr.sty","hyperref.sty","memhfixc.sty"],"cmds":["showkeys","setupdocument","letter","invoice","itable","iitem","itotal","paymentdata","autograph","logo","LetterSymbol","EuroSymbol","EUR","EmailSymbol","PhoneSymbol","MobileSymbol","headfont","EUROSymbol","Undefined","accept","acceptaccount","acceptaddress","acceptcents","acceptdesc","acceptdescription","accepteuros","acceptreference","accepttype","accountdata","accountname","accountnametext","accountno","accountnotext","amounttext","areacode","autographversion","bankname","banknametext","bic","bictext","cellphone","cellphonetext","chamber","chambertext","city","closing","company","copyto","copytotext","country","countrycode","creditorid","creditoridtext","currency","datetext","daystext","descriptiontext","email","emailtext","enclosures","enclosurestext","enclosuretext","fax","faxtext","iban","ibantext","invoicetext","isodocFootFields","logoaddress","mandateid","mandateidtext","oftext","opening","openingcomma","ourref","ourreftext","pagetext","paymentdatatext","payref","payreftext","phone","phoneprefix","phonetext","prezip","processto","returnaddress","routingno","routingnotext","signature","street","subject","subjecttext","temp","term","termtext","thelettercount","toaddress","toname","totaltext","totext","vatno","vatnotext","vattext","wacceptaccount","wacceptaddress","wacceptcents","wacceptct","wacceptdescription","website","websitetext","who","xacceptaccount","xacceptaddress","xacceptcents","xacceptct","xacceptdescription","xaddress","xproc","yacceptaccount","yacceptaddress","yacceptcents","yacceptct","yacceptdescription","yourletter","yourlettertext","yourref","yourreftext","yproc","zip","zippedcity"]}
-,
-"isomath.sty":{"envs":{},"deps":["fixmath.sty","kvoptions.sty"],"cmds":["mathbfit","mathsfbfit","mathbold","mathboldsans","mathsfit","mathsans","vectorsym","matrixsym","tensorsym"]}
-,
-"isonums.sty":{"envs":{},"deps":{},"cmds":["ZifferAn","ZifferAus","ZifferPunktAn","ZifferPunktAus","ZifferStrichAn","ZifferStrichAus","ZifferLeer","ZifferStrich","EuroZiffer","AngloZiffer"]}
-,
-"isopt.sty":{"envs":{},"deps":["xkeyval.sty"],"cmds":["ISO","THE"]}
-,
-"isorot.sty":{"envs":["sideways","turn","rotate","sidewaystable","sidewaystable*","sidewaysfigure","sidewaysfigure*"],"deps":["graphicx.sty","lscape.sty"],"cmds":["rotdriver","clockwise","counterclockwise","figuresright","figuresleft","rotcaption","controtcaption","rotcapfont","rotatedirection","turnbox","therpage"]}
-,
-"isotope.sty":{"envs":{},"deps":{},"cmds":["isotope","isotopestyle"]}
-,
-"isov2.cls":{"envs":["note","anote","example","anexample","nreferences","references","inscope","outofscope","olddefinitions","definitions","symbols","cover","foreword","introduction","bottomfloat"],"deps":["url.sty"],"cmds":["clause","sclause","ssclause","sssclause","ssssclause","sssssclause","normannex","infannex","repannex","maxsecnumdepth","maxtocdepth","setsecnumdepth","settocdepth","isref","disref","reference","inscopename","outofscopename","olddefinition","definition","symboldef","contcaption","title","standard","yearofedition","languageofedition","extrahead","aref","bref","cref","eref","fref","nref","tref","pref","forewordname","fwdbp","tspasfwdbp","trfwdbpi","fwdnopatents","introductionname","intropatents","scopeclause","normrefsclause","normrefsname","normrefbp","defclause","symclause","abbclause","defsymclause","defabbclause","symabbclause","defsymabbclause","defsubclause","symsubclause","abbsubclause","defsymsubclause","defabbsubclause","symabbsubclause","symname","symabbname","defsymname","defsymabbname","defname","defabbname","abbname","bibannex","bibname","isourl","ifchangemarks","changemarkstrue","changemarksfalse","editorial","added","deleted","moved","ifpdf","pdftrue","pdffalse","annexname","copyrightname","examplename","informativename","ISname","listannexname","normativename","notename","pagename","scopename","tbpname","annexrefname","clauserefname","examplerefname","figurerefname","noterefname","tablerefname","pagerefname","copyrightnotice","captionsize","addannextotoc","alphaindexspace","cdstandardfalse","cdstandardtrue","chaptername","clausemark","compelement","copyrighthead","disstandardfalse","disstandardtrue","fcandaclause","fcandaname","fdisstandardfalse","fdisstandardtrue","figsfalse","figstrue","fillline","floatlist","hyperpage","ifcdstandard","ifdisstandard","iffdisstandard","iffigs","ifinfloat","ifisohyper","ifisstandard","ifotherdoc","ifpaspec","iftabs","iftechrep","iftechspec","ifwdstandard","indexfill","indexsee","indexseealso","infloatfalse","infloattrue","introelement","isoemptystring","isohyperfalse","isohypertrue","isostringsequal","isstandardfalse","isstandardtrue","labelinfref","loftfillnum","loftnumberline","mainelement","makeannexhead","makecommand","makepreannexhead","notelabel","nreferencelabel","otherdocfalse","otherdoctrue","otherindexspace","paspecfalse","paspectrue","rectoisotitlehead","sclausemark","sectionname","sindexfill","ssclausemark","ssindexfill","sssclausemark","ssssclausemark","sssssclausemark","symbollabel","tabsfalse","tabstrue","techrepfalse","techreptrue","techspecfalse","techspectrue","theannex","thebottomfloat","theclause","theexample","thefloatnote","theHannex","theHclause","theHexample","theHfloatnote","theHnote","theHsclause","theHssclause","theHsssclause","theHssssclause","theHsssssclause","theinfrefctr","thenote","thesclause","theslanguage","thessclause","thesssclause","thessssclause","thesssssclause","thestandard","thesyear","thetitle","theyextra","tocbaseline","tocentryskip","tocskip","trfwdbpii","versoisotitlehead","wdstandardfalse","wdstandardtrue","zerocounters"]}
-,
-"issuulinks.sty":{"envs":{},"deps":["xkeyval.sty"],"cmds":["issuusetup","newISSUUlink"]}
-,
-"itnumpar.sty":{"envs":{},"deps":{},"cmds":["numeroinparole","Numeroinparole","ordinalem","ordinalef","Ordinalem","Ordinalef","printnumeroinparole","printNumeroinparole","printordinalem","printordinalef","printOrdinalem","printOrdinalef"]}
-,
-"iwona.sty":{"envs":{},"deps":{},"cmds":{}}
-,
-"jacow.cls":{"envs":["Enumerate","Itemize","Description"],"deps":["fix-cm.sty","flushend.sty","etoolbox.sty","iftex.sty","textcase.sty","siunitx.sty","graphicx.sty","booktabs.sty","caption.sty","xcolor.sty","amsmath.sty","csquotes.sty","geometry.sty","footmisc.sty","url.sty","newtxtt.sty","textcomp.sty","fontenc.sty","lmodern.sty","tgtermes.sty","newtxmath.sty","microtype.sty","enumitem.sty","cite.sty","biblatex.sty"],"cmds":["mkpagegrouped","mkonepagegrouped","titleblockheight","titleblockstartskip","titleblockmiddleskip","titleblockendskip","copyrightspace","fileversion","filedate","docdate","ifjacowbiblatex","jacowbiblatextrue","jacowbiblatexfalse","ifjacowrefpage","jacowrefpagetrue","jacowrefpagefalse","urlZDtxt","DH","dh","dj","DJ","guillemetleft","guillemetright","guillemotleft","guillemotright","guilsinglleft","guilsinglright","Hwithstroke","hwithstroke","k","NG","ng","quotedblbase","quotesinglbase","textogonekcentered","textquotedbl","th","TH"]}
-,
-"jag-l.cls":{"envs":{},"deps":["s-amsart.cls"],"cmds":{}}
-,
-"jams-l.cls":{"envs":{},"deps":["s-amsart.cls"],"cmds":{}}
-,
-"jamtimes.sty":{"envs":{},"deps":["xkeyval.sty","amsfonts.sty","eucal.sty"],"cmds":["mathbold"]}
-,
-"jarticle.cls":{"envs":{},"deps":["platex.sty"],"cmds":["Cjascale","heisei","if","postpartname","prepartname","mc","gt"]}
-,
-"jbook.cls":{"envs":{},"deps":["platex.sty"],"cmds":["backmatter","bibname","chapter","chaptermark","Cjascale","frontmatter","heisei","if","mainmatter","postchaptername","postpartname","prechaptername","prepartname","mc","gt"]}
-,
-"jigsaw.sty":{"envs":{},"deps":["tikz.sty","ifluatex.sty","ifxetex.sty"],"cmds":["piece","tile","jigsaw","side","bottom","halfpiece","tmp","xmax","ymax"]}
-,
-"jiwonlipsum.sty":{"envs":{},"deps":{},"cmds":["jiwon","jiwondef","jiwonparnumberon","jiwonparnumberoff","jiwonbase"]}
-,
-"jj_game.cls":{"envs":["instructions","Questions","Category","Question","oAnswer","solution"],"deps":["xkeyval.sty","ifpdf.sty","ifxetex.sty","web.sty","eforms.sty","verbatim.sty","comment.sty","calc.sty"],"cmds":["DeclareColors","titleBanner","bannerTextFont","bannerTextControl","GameDesign","APHidden","APDollar","APRight","APWrong","APScore","ScoreBoard","prependCurrency","appendCurrency","PlaceScoreBoard","insertJJTitleBanner","Ans","currencyHeading","aboveCurrencySkip","contestantName","afterGameBoardInsertion","gameboardPrintButton","printButtonCaption","printButtonLabel","contestantNameLabel","timestampLabel","timeStampFormat","setTwoPlayerOptions","correctText","incorrectText","enterNamePlease","illegalAccessMsg","illegalAnswerTwiceMsg","playeriWinnerMsg","playeriiWinnerMsg","gameTiedMsg","bothLosersMsg","defineInstructionPageGraphic","defineGameboardPageGraphic","defineQuestionPagesGraphic","includeFootBanner","Goal","AAFAction","AAVAction","aboveanswersSkip","bannerTextColor","BboxHeight","BboxWidth","bgb","bgc","bJJGInsertLayer","calcPaperSize","cell","cellHeight","cellWidth","colnum","convertToSetKeys","corMsgnum","currentCategory","currQuiz","debugfalse","debugtrue","defaultDollarColorAmt","defaultfillBanner","defaultfillCells","defaultfillGameBoard","defaultfillInstructions","defaultfillQuestions","defaultLinkColor","defaulttextBanner","defaulttextBoard","dollarAP","dollarColor","doublefalse","doubletrue","eJJGInsertLayer","eqPTs","errMsgnum","EUR","extraHeight","extraWidth","fillBanner","fillCells","fillGameBoard","fillInstructions","fillQuestions","finalfalse","finaltrue","forpbx","GameBoard","gameboardPageTemplate","gamebody","gameCategories","germanLocalization","getBracArg","getrow","hmark","ifdebug","ifdouble","iffinal","ifjjgtwoplayer","ifjjnopeeking","instructionPageTemplate","jjAdditionalCellJSActions","jjAdditionalJSActions","jjbothlosers","jjCancelOutAeBProCatalog","jjEnterNamePlease","jjGameBoardPageBG","jjgameTied","jjgauthorURL","jjgdesigngraphics","jjgdriver","jjgdummy","jjgInputProCode","jjgplayerihook","jjgplayeriihook","jjgtmplength","jjgtwoplayerfalse","jjgtwoplayertrue","jjIllegalAccessMsg","jjIllegalAnswerTwiceMsg","jjImportForCreditCode","JJinitSetup","jjInputDesignChoice","jjInstructionPageBG","jjLangOpt","jjnopeekingfalse","jjnopeekingtrue","jjplayeriiWinner","jjplayeriWinner","jjQuestionPagesBG","jjTimeStampFormat","makelink","noPrintLayer","numCategories","numQuestions","oField","oiterate","oloop","orepeat","outeriterate","peekingOpenAction","PoohBahBanner","questionPagesTemplate","Rect","redefineRespBoxActions","resetMClabelsep","rightAP","rownum","rulewidth","scaleFactor","setMClabelsep","tableheight","tablewidth","textBanner","textBoard","theCurrencyAmt","thejjgdriver","thenewletter","ThisPage","thisxkvFamily","twoplayerGame","wrongAP"]}
-,
-"jkmath.sty":{"envs":["system","augmentedmatrix"],"deps":["xparse.sty","array.sty","amsmath.sty","physics.sty"],"cmds":["oldsubset","oldsupset","stsubset","stsupset","N","Z","Q","R","C","F","Aff","PP","apmqty","ipmqty","lparens","rparens","oointerval","ccinterval","ocinterval","cointerval","set","where","restr","stirlingfirstkind","stirlingsecondkind","legendre","jacobi","mobius","cech","erdos"]}
-,
-"jlreq-deluxe.sty":{"envs":{},"deps":["expl3.sty","l3keys2e.sty","pxjodel.sty","mlutf.sty","mlcid.sty","uplatex.sty"],"cmds":["rubydefault","rubyfamily","rubykatuji","mgdefault","propdefault","ebdefault","ltdefault","mathmg","mgfamily","textmg","propshape","ebseries","ltseries"]}
-,
-"jlreq-trimmarks.sty":{"envs":{},"deps":["l3keys2e.sty","jlreq-helpers.sty"],"cmds":["jlreqtrimmarkssetup"]}
-,
-"jlreq.cls":{"envs":{},"deps":["l3keys2e.sty","etoolbox.sty","jlreq-helpers.sty","luatexja.sty","luatexja-adjust.sty","everyhook.sty","lmodern.sty","jlreq-complements.sty"],"cmds":["chapter","thechapter","chaptermark","frontmatter","mainmatter","backmatter","jlreqsetup","part","section","subsection","subsubsection","sidenote","sidenotemark","sidenotetext","endnote","endnotemark","endnotetext","theendnotes","warichu","tatechuyoko","jidori","akigumi","jafontsize","jlreqkanjiskip","jlreqxkanjiskip","NewTobiraHeading","RenewTobiraHeading","ProvideTobiraHeading","DeclareTobiraHeading","NewBlockHeading","RenewBlockHeading","ProvideBlockHeading","DeclareBlockHeading","SetBlockHeadingSpaces","NewRuninHeading","RenewRuninHeading","ProvideRuninHeading","DeclareRuninHeading","NewCutinHeading","RenewCutinHeading","ProvideCutinHeading","DeclareCutinHeading","ModifyHeading","SaveHeading","NewPageStyle","RenewPageStyle","ProvidePageStyle","DeclarePageStyle","ModifyPageStyle","ifjlreqadjustreferencemark","if","inlinenote","inlinenotesize","jaspace","jlreqadjustreferencemarkfalse","jlreqadjustreferencemarktrue","jlreqHeadingLabel","jlreqHeadingSubtitle","jlreqHeadingText","jlreqparindent","jlreqtateheadlength","jlreqyokoheadlength","lastnodechar","thejlreqreversepage","toclineskip"]}
-,
-"jltxdoc.cls":{"envs":["tsample"],"deps":["platex.sty","s-ltxdoc.cls"],"cmds":["Lcount","Lopt","NFSS","dst","file","mlineplus","pstyle"]}
-,
-"jmlr.cls":{"envs":["keywords","algorithm2e","algorithm2e*"],"deps":["xkeyval.sty","calc.sty","etoolbox.sty","placeins.sty","amsmath.sty","amssymb.sty","natbib.sty","graphicx.sty","url.sty","xcolor.sty","algorithm2e.sty","jmlrutils.sty","hyperref.sty","nameref.sty","aliascnt.sty","cleveref.sty"],"cmds":["abovestrut","acks","addr","aftermaketitskip","aftertitskip","artappendix","artchapter","artpart","arttableofcontents","author","backmatter","beforetitskip","belowstrut","bookappendix","bookchapter","booklinebreak","bookpart","booktableofcontents","booktocpostamble","booktocpreamble","chapter","chapterformat","chaptermark","chaptername","chapternumberformat","chaptertitleformat","editor","editorname","editors","editorsname","Email","figurecaption","figurecenter","firstpageno","footnoteseptext","frontmatter","grayscalefalse","grayscaletrue","ifgrayscale","ifprint","ifviiXx","interauthorskip","jmlrabbrnamelist","jmlrarticlecommands","jmlrauthorhook","jmlrbookcommands","jmlrbox","jmlrcheckforpseudocode","jmlrhtmlmaketitle","jmlrissue","jmlrlength","jmlrmaketitle","jmlrmaketitlehook","jmlrnowcp","jmlrpages","jmlrpmlr","jmlrpostauthor","jmlrposttitle","jmlrpreauthor","jmlrpremaketitlehook","jmlrpretitle","jmlrproceedings","jmlrpublished","jmlrsubmitted","jmlrSuppressPackageChecks","jmlrtitlehook","jmlrvolume","jmlrwcp","jmlrworkshop","jmlryear","kernelmachines","mainmatter","morefrontmatter","moremainmatter","Name","nametag","obsoletefontcs","partformat","partnumberformat","parttitleformat","postchapterskip","postparthook","prechapterskip","preparthook","presectionnum","reprint","researchnote","thechapter","titlebreak","titletag","viiXxfalse","viiXxtrue","ENDFOR","pseudoAND","pseudoCOMMENT","pseudoELSE","pseudoENDFOR","pseudoFALSE","pseudoFOR","pseudoFORALL","pseudoIF","pseudoNOT","pseudoOR","pseudoREPEAT","pseudoRETURN","pseudoTO","pseudoTRUE","pseudoUNTIL","pseudoWHILE","listofalgorithmes","ifjmlrhtml","jmlrhtmltrue","jmlrhtmlfalse"]}
-,
-"jmlrutils.sty":{"envs":["algorithm"],"deps":["etoolbox.sty","amsmath.sty","aliascnt.sty","cleveref.sty"],"cmds":["algocfconts","algorithmref","algorithmrefname","algorithmsrefname","altdescriptionlabel","appendixref","appendixrefname","appendixsrefname","axiomref","axiomrefname","axiomsrefname","conjectureref","conjecturerefname","conjecturesrefname","corollaryref","corollaryrefname","corollarysrefname","definitionref","definitionrefname","definitionsrefname","equationref","equationrefname","equationsrefname","exampleref","examplerefname","examplesrefname","figureconts","figureref","figurerefname","figuresrefname","floatconts","ifjmlrcleveref","ifjmlrutilsmaths","ifjmlrutilssubfloats","ifjmlrutilstheorems","iftablecaptiontop","includeteximage","jmlralgorule","jmlrBlackBox","jmlrclevereffalse","jmlrclevereftrue","jmlrminsubcaptionwidth","jmlrprehyperref","jmlrQED","jmlrutilsmathsfalse","jmlrutilsmathstrue","jmlrutilssubfloatsfalse","jmlrutilssubfloatstrue","jmlrutilstheoremsfalse","jmlrutilstheoremstrue","lemmaref","lemmarefname","lemmasrefname","mailto","newtheorem","objectref","orgvec","partref","partrefname","partsrefname","proofname","remarkref","remarkrefname","remarksrefname","sectionref","sectionrefname","sectionsrefname","set","subfigref","subfigure","subfigurelabel","subtable","subtablelabel","subtabref","tablecaptiontopfalse","tablecaptiontoptrue","tableconts","tableref","tablerefname","tablesrefname","theaxiom","theconjecture","thecorollary","thedefinition","theexample","thelemma","theorembodyfont","theoremheaderfont","theorempostheader","theoremref","theoremrefname","theoremsep","theoremsrefname","theproposition","theremark","thesubfigure","thesubtable","thetheorem","BlackBox"]}
-,
-"jmsdelim.sty":{"envs":{},"deps":["expl3.sty","l3keys2e.sty","xparse.sty","ifluatex.sty","scalerel.sty"],"cmds":["DelimMin","DelimSurround","DelimBetween","DelimBetweenSurround","DelimProtect","DelimPrn","DelimBrk","DelimBrc","DelimBbrk","DelimGl","DelimVrt","DelimVvrt"]}
-,
-"jobname-suffix.sty":{"envs":["IfSuffix"],"deps":["expl3.sty"],"cmds":["JobnameSuffix","IfSuffixTF","IfSuffixT","IfSuffixF","OverrideSuffix"]}
-,
-"josefin.sty":{"envs":{},"deps":["ifxetex.sty","ifluatex.sty","xkeyval.sty","fontaxes.sty"],"cmds":["sufigures","josefinthin","josefinlight","josefinextralight","josefinmedium","josefinsemibold","josefinfamily"]}
-,
-"jourcl.cls":{"envs":{},"deps":["graphicx.sty","fancyhdr.sty","parskip.sty","inputenc.sty","babel.sty","framed.sty","lipsum.sty","isodate.sty","fontawesome5.sty","orcidlink.sty"],"cmds":["abstract","AuthorOrcid","bestregards","CityPostal","conflictofinterest","declaration","Editor","Email","final","FirstEmail","FirstInstitution","FirstNameSurname","FirstRecommended","ImagePath","InstitutionName","Introduction","JournalName","NameSurname","pabstract","pAuthorOrcid","pCityPostal","pconflictofinterest","pdeclaration","pEditor","pEmail","PersonAddressing","pfinal","pFirstEmail","pFirstInstitution","pFirstNameSurname","pFirstRecommended","Phone","pImagePath","pInstitutionName","pIntroduction","pJournalName","pNameSurname","pPersonAddressing","pPhone","pSecondEmail","pSecondInstitution","pSecondNameSurname","pSecondRecommended","psignature","pSignaturePath","pSpecialIssue","pStreetNo","pThirdEmail","pThirdInstitution","pThirdNameSurname","pThirdRecommended","pTitle","ptoEditor","pvalediction","SecondEmail","SecondInstitution","SecondNameSurname","SecondRecommended","showreviewers","showSignature","signature","signaturePath","SpecialIssue","StreetNo","ThirdEmail","ThirdInstitution","ThirdNameSurname","ThirdRecommended","Title","toEditor","valediction","yoursfaithfully","yourssincerely","yourstruly","aboutme","addreviewersPosition","ifempty","RecommendedPerson","captionsenglish","dateenglish","extrasenglish","noextrasenglish","englishhyphenmins","britishhyphenmins","americanhyphenmins","prefacename","bibname","chaptername","enclname","ccname","headtoname","pagename","seename","alsoname","proofname","glossaryname"]}
-,
-"jpneduenumerate.sty":{"envs":["itemize*","enumerate*","romanenumerate","romanenumerate*","Romanenumerate","Romanenumerate*","bracketenumerate","bracketenumerate*","caseenumerate","caseenumerate*","stepenumerate","stepenumerate*"],"deps":["enumitem.sty","refcount.sty","otf.sty","luatexja-otf.sty"],"cmds":["parenref","romanref","parenromanref","Romanref","parenRomanref","bracketref","squareauto","squarekeep","squarereset","squareref","thejpneduenumeratetextsquarecounter","squarenumber","squarenumberauto","squarenumberkeep","squarenumberreset","questionauto","questionkeep","questionreset","questionref","thejpneduenumeratetextquestioncounter","questionnumber","questionnumberauto","questionnumberkeep","questionnumberreset","enumerateauto","enumeratekeep","enumeratereset","enumerateref","thejpneduenumeratetextenumeratecounter","enumeratenumber","enumeratenumberauto","enumeratenumberkeep","enumeratenumberreset","subquestionauto","subquestionkeep","subquestionreset","subquestionref","thejpneduenumeratetextsubquestioncounter","subquestionnumber","subquestionnumberauto","subquestionnumberkeep","subquestionnumberreset","caseauto","casekeep","casereset","caseref","thejpneduenumeratetextcasecounter","casenumber","casenumberauto","casenumberkeep","casenumberreset","stepauto","stepkeep","stepreset","stepref","thejpneduenumeratetextstepcounter","stepnumber","stepnumberauto","stepnumberkeep","stepnumberreset","equationreset","question","subquestion","case","step"]}
-,
-"jpnedumathsymbols.sty":{"envs":["ecases","simul","signchart"],"deps":["amsmath.sty","amssymb.sty","xparse.sty","empheq.sty","otf.sty","luatexja-otf.sty"],"cmds":["currI","currII","currIII","currA","currB","currC","currD","currE","currF","currG","currH","currJ","currK","currL","currM","currN","currO","currP","currQ","currR","currS","currT","currU","currV","currW","currX","currY","currZ","curra","currb","currc","currd","curre","currf","currg","currh","curri","currj","currk","currl","currm","currn","curro","currp","currq","currr","currs","currt","curru","currv","currw","currx","curry","currz","curralpha","currbeta","currgamma","currdelta","currepsilon","currzeta","curreta","currtheta","curriota","currkappa","currlambda","currmu","currnu","currxi","curromicron","currpai","currrho","currsigma","currtau","currupsilon","currphi","currchi","currpsi","curromega","currIA","currIIB","currIIBC","currIIIC","originalfrac","originalsqrt","originallim","originalvec","angstrom","capitaleszett","AA","BB","CC","DD","EE","FF","GG","HH","II","JJ","KK","LL","MM","NN","OO","PP","QQ","RR","SS","TT","UU","VV","WW","XX","YY","ZZ","phantomheight","comma","period","pair","triplet","quadruplet","intersection","union","originalcmpl","complement","cmpl","tand","tor","eand","eor","originaliff","lto","lfrom","iff","plto","plfrom","piff","peq","set","N","NZ","NP","Z","Q","R","C","inverse","originalabs","abs","neconcave","seconcave","neconvex","seconvex","dint","dr","ds","dt","du","dx","dy","dz","dtheta","const","defint","transformvariable","rvec","cvec","originalinp","innerproduct","inp","originalseq","sequence","seq","originalsum","sum","GCD","LCM","originaldegree","degree","originalarc","arc","originalparallel","notparallel","originalsimilar","similar","permutation","combination","repeatedpermutation","homogeneous","repeatedcombination","expectedvalue","originalRe","originalIm","originalconjugate","originalconj","conjugate","conj","parentext","squaretext","whitesquaretext","ltext","lltext","ltextbegin","lltextbegin","ltextend","lltextend","nomination","condition","explanation","quantify","equationunit","texttherefore","textbecause","QED"]}
-,
-"jreport.cls":{"envs":{},"deps":["platex.sty"],"cmds":["bibname","chapter","chaptermark","Cjascale","heisei","if","postchaptername","postpartname","prechaptername","prepartname","mc","gt"]}
-,
-"jsarticle.cls":{"envs":{},"deps":["platex.sty","jslogo.sty","type1cm.sty","uplatex.sty"],"cmds":["stockheight","stockwidth","maybeblue","alsoname","bibname","chaptermark","Cjascale","everyparhook","fullwidth","headfont","heisei","HUGE","ifjisfont","ifmingoth","ifnarrowbaselines","ifpapersize","if","jisfontfalse","jisfonttrue","jsParagraphMark","jsTocLine","mingothfalse","mingothtrue","narrowbaselines","narrowbaselinesfalse","narrowbaselinestrue","papersizefalse","papersizetrue","plainifnotempty","postpartname","postsectionname","prepartname","presectionname","seename","widebaselines","mc","gt"]}
-,
-"jsbook.cls":{"envs":{},"deps":["platex.sty","jslogo.sty","type1cm.sty","uplatex.sty"],"cmds":["stockheight","stockwidth","alsoname","backmatter","bibname","chapter","chaptermark","Cjascale","everyparhook","frontmatter","fullwidth","headfont","heisei","HUGE","ifjisfont","ifmingoth","ifnarrowbaselines","ifpapersize","if","jisfontfalse","jisfonttrue","jsParagraphMark","jsTocLine","mainmatter","mingothfalse","mingothtrue","narrowbaselines","narrowbaselinesfalse","narrowbaselinestrue","papersizefalse","papersizetrue","plainifnotempty","postchaptername","postpartname","postsectionname","prechaptername","prepartname","presectionname","seename","thechapter","widebaselines","mc","gt"]}
-,
-"jslectureplanner.sty":{"envs":["SessionBlock","labeling","ProgramList","ProgramListExam","PresList","BeamerProgramList","BeamerPresList","BeamerProgramListExam","ProgramListBlock"],"deps":["etoolbox.sty","xkeyval.sty","datetime2.sty","calc.sty","ifthen.sty","xparse.sty"],"cmds":["LecType","LecTitle","LecTitleSep","LecSubTitle","LecYear","LecUni","LecInstitute","LecRoom","LecStartDate","LecStartTime","LecDuration","LecInterval","SetAutoOffset","LecInstructor","SetOfficeHours","SetOfficeNumber","SetPlatform","SessionTitleSep","NewSession","SetBreak","SetBreaks","SetLecOffset","SetBeamerFrameBreak","SetBeamerHook","lectype","lectypeverb","lectypesession","lectitle","lectitlesep","lecsubtitle","lecfulltitle","lecshorttitle","lecsemshort","lecsemverb","lecyear","lecendyear","lecendyearsep","lecsemester","lecsemesterverb","adjsemester","adjsemesterverb","lecuniversity","lecinstitute","lecinstructor","lecshortinstructor","lecroom","lecstartdate","lecstarttime","lecduration","lecendtime","lecslot","lecplatform","officehours","officenumber","makeprogram","makeexamprogram","makebeamerprogram","makebeamerexamprogram","makesessionbib","makepreslist","makebeamerpreslist","setfirstpressession","setlastpressession","ThisSession","examsesno","sesdate","sesshortdate","sesdtmdate","sesstarttime","sesendtime","seslot","sestitle","sesshorttitle","sestitlesep","sessubtitle","sesfulltitle","sesblocktitle","sesblocknumber","sesinstructor","sesshortinstructor","sespresstudents","sesnr","sesroom","AdjSessionTitle","AdjSessionFullTitle","AdjSessionShortTitle","AdjSessionBlockTitle","AdjSessionBlockNumber","AdjSessionDate","AdjSessionShortDate","AdjSessionDTMDate","AdjSessionStartTime","AdjSessionEndTime","AdjSessionTimeSlot","AdjSessionInstructor","AdjSessionShortInstructor","AdjSessionPresStudents","AdjSessionRoom","SessionTitle","SessionFullTitle","SessionShortTitle","SessionBlockTitle","SessionBlockNumber","SessionDate","SessionShortDate","SessionDTMDate","SessionStartTime","SessionEndTime","SessionTimeSlot","SessionInstructor","SessionShortInstructor","SessionPresStudents","SessionRoom","MakeProgramline","DefLecType","DefSemType","jstimeslot","ProgramListItem","PresListItem","ProgramListCancelItem","ProgramListExamItem","BeamerProgramListItem","BeamerPresListItem","BeamerProgramListCancelItem","BeamerProgramListExamItem","ProgramBlockItem","BeamerProgramBlockItem","BeamerProgramBlockBlocksOnlyItem","lecprogramlistindent","blankpreslistvspace","presseparator","beamerpresseparator","programdateformat","cansestitleformat","sestitleformat","exsestitleformat","blocktitleformat","blocknumberformat","ProgramListBreak","breakevent","leccancel","lecprogram","sestopic","emptypressession","DefTypeFS","DefTypeHS","DefTypeKO","DefTypePS","DefTypePV","DefTypeSE","DefTypeSS","DefTypeUE","DefTypeVL","DefTypeVO","DefTypeWS","EndBlock","LocalSession","MakeBeamerPresListLine","MakePresListLine","NewBlock","StartBlock","beameruncoverblocksonlyspec","beameruncoverffslidesspec","beameruncoverspec","bpdescbeg","btitleapp","filedate","filename","fileversion","jsbiblist","labelinglabel","lecnsemny","lecnsemshort","lecnsemverb","lecnyear","lsesblocknumber","lsesblocktitle","lsesdate","lsesdtmdate","lsesendtime","lsesinstructor","lsesnr","lsespresstudents","lsesroom","lsesshortdate","lsesshortinstructor","lsesshorttitle","lsesslot","lsesstarttime","lsessubtitle","lsestitle","lsestitlesep","programblocklistbeamer","programlist","programlistbeamer","programlistbeamerexam","programlistbeamerii","programlistbeameriii","programlistbeameriv","programlistexam","sesslot","theadjsession","theautooffset","theautooffsetcounter","theautooffsettrigger","theblocks","thebreakunits","thecancellations","thedateratio","theexams","thefbreaks","thelastpressession","thelecinterval","theloopcounter","thepressession","thesesoffset","thesestopic","thesesunit","thesnum"]}
-,
-"jslogo.sty":{"envs":{},"deps":{},"cmds":["cmrTeX","cmrLaTeX","sfTeX","sfLaTeX","ptmTeX","ptmLaTeX","pncTeX","pncLaTeX","pplTeX","pplLaTeX","ugmTeX","ugmLaTeX","pTeX","pLaTeX","pLaTeXe","upTeX","upLaTeX","upLaTeXe","AmSTeX","BibTeX","SliTeX"]}
-,
-"jsmembertable.sty":{"envs":{},"deps":["ifthen.sty","calc.sty","array.sty","longtable.sty","hhline.sty","xkeyval.sty","datatool.sty"],"cmds":["makemembertable","makeprestable","jsmnameheader","jsmidheader","jsemailheader","jsmsession","jsmsessionheader","jssigheader","themembers","themember","thetabrow","thesession","thesnum","iffixedseshead","fixedsesheadtrue","fixedsesheadfalse","sescolhead","getmembernr","addtabtoks","resettabtoks","printtabtoks","sescolwidth","sescolwidthtwo","inittemplates","bodyrowone","bodyrowtwo","visumcell","headerpone","headerptwo","ltstartone","ltstarttwo","filedate","fileversion","filename"]}
-,
-"jspf.cls":{"envs":{},"deps":["platex.sty","jslogo.sty","type1cm.sty","uplatex.sty"],"cmds":["stockheight","stockwidth","alsoname","AuthorsEmail","bibname","chaptermark","Cjascale","eauthor","email","etitle","everyparhook","fullwidth","headfont","heisei","HUGE","ifjisfont","ifmingoth","ifnarrowbaselines","ifpapersize","if","jisfontfalse","jisfonttrue","jsTocLine","keywords","mingothfalse","mingothtrue","narrowbaselines","narrowbaselinesfalse","narrowbaselinestrue","papersizefalse","papersizetrue","plainifnotempty","postpartname","postsectionname","prepartname","presectionname","seename","widebaselines","mc","gt"]}
-,
-"jsreport.cls":{"envs":{},"deps":["platex.sty","jslogo.sty","type1cm.sty","uplatex.sty"],"cmds":["stockheight","stockwidth","alsoname","bibname","chapter","chaptermark","Cjascale","everyparhook","fullwidth","headfont","heisei","HUGE","ifjisfont","ifmingoth","ifnarrowbaselines","ifpapersize","if","jisfontfalse","jisfonttrue","jsParagraphMark","jsTocLine","mingothfalse","mingothtrue","narrowbaselines","narrowbaselinesfalse","narrowbaselinestrue","papersizefalse","papersizetrue","plainifnotempty","postchaptername","postpartname","postsectionname","prechaptername","prepartname","presectionname","seename","thechapter","widebaselines","mc","gt"]}
-,
-"jsverb.sty":{"envs":{},"deps":["platex.sty"],"cmds":["ttyen","ttbslash","BS","verbatimleftmargin","verbatimsize"]}
-,
-"jumplines.sty":{"envs":{},"deps":["luatex.sty","etoolbox.sty","xparse.sty","xkeyval.sty","xcolor.sty","tcolorbox.sty","tcolorboxlibrarybreakable.sty","babel.sty","tocloft.sty","ifluatex.sty","hyperref.sty","bookmark.sty","luacolor.sty"],"cmds":["JumplineArticle","ShipoutArticleTeasers","ShipoutArticleHangingArticles","listofarticle","listofcontarticle","listofarticlesname","listofcontinuedarticlesname","thearticle","ContinuedArticleList","ContinuedFrom","ContinuedOn","DefaultContinuedArticleTocExt","DefaultTeaserTocExt","DisplayContinuedArticle","DisplayJumplineTeaser","JLArticleName","JLBookmarkEntry","JLKVMacroArticleAuthor","JLKVMacroArticleFullHeight","JLKVMacroArticleHeadline","JLKVMacroBookmarkEntry","JLKVMacroContinuedArticleBottomskip","JLKVMacroContinuedArticleHeaderContent","JLKVMacroContinuedArticleHeaderOptions","JLKVMacroContinuedArticleHeight","JLKVMacroContinuedBookmarkLevel","JLKVMacroContinuedFromBottomskip","JLKVMacroContinuedFromTopskip","JLKVMacroContinuedHeaderColor","JLKVMacroContinuedOnBottomskip","JLKVMacroContinuedOnTopskip","JLKVMacroContinuedTocExt","JLKVMacroContinuedTocLevel","JLKVMacroGenericBookmarkDest","JLKVMacroGenericBookmarkLevel","JLKVMacroInternalMode","JLKVMacroTeaserBookmarkLevel","JLKVMacroTeaserHeaderColor","JLKVMacroTeaserHeaderContent","JLKVMacroTeaserHeaderOptions","JLKVMacroTeaserHeight","JLKVMacroTeaserTocExt","JLKVMacroTeaserTocLevel","JLKVMacroToc","JLPackageMacroLanguages","JLTocEntry","JumplineOptionsList","OnPage","Pagename","TeaserBoxList","articlesname","byauthor","captionsngerman","datengerman","extrasngerman","noextrasngerman","dq","ntosstrue","ntossfalse","prefacename","bibname","chaptername","enclname","ccname","headtoname","pagename","seename","alsoname","proofname","glossaryname","mdqon","mdqoff","captionsenglish","dateenglish","extrasenglish","noextrasenglish","englishhyphenmins","britishhyphenmins","americanhyphenmins"]}
-,
-"junicode.sty":{"envs":{},"deps":["textcomp.sty","mweights.sty","fontaxes.sty","xkeyval.sty"],"cmds":["swshape","sufigures","textsu","textsuperior","infigures","textin","textinferior"]}
-,
-"jupynotex.sty":{"envs":{},"deps":["tcolorbox.sty"],"cmds":["jupynotex"]}
-,
-"jurabase.sty":{"envs":["forwardandback","forwardandback*"],"deps":["xspace.sty","calc.sty","ifthen.sty"],"cmds":["aA","aaO","aE","aF","aM","AnA","antrag","arr","Arr","arrr","Arrr","code","darr","Darr","fabreset","firma","hM","ia","iA","idR","iE","iHv","indentoff","iR","iS","iue","iUe","iVm","jbck","jfrw","jsme","juraenum","larr","Larr","lrarr","marke","maW","mE","mwN","nF","oa","oae","og","prdbez","qll","resetindent","sa","so","sob","su","ua","uae","usw","uU","va","vAw","zB","zT","IE","MaW","Sa","So","Su","ZB","abkwarning","fablabelsep","fablabelwidth","oldparindent","thefabdepth"]}
-,
-"jurabib.sty":{"envs":{},"deps":["ifthen.sty","keyval.sty","array.sty"],"cmds":["jurabibsetup","cite","citefield","citenotitlefortype","citeswithoutentry","citetitle","citetitlefortype","footcite","footcitetitle","footfullcite","fullcite","nextcitefull","nextcitenotitle","nextcitereset","nextciteshort","nobibliography","noibidem","noidem","bibAnnotePath","biburlfont","nopage","pageadd","formatpages","citealp","citealt","citeauthor","citep","citet","citeyear","citeyearpar","footcitealp","footcitealt","footciteauthor","footcitep","footcitet","footciteyear","AddTo","bibansep","bibartperiodhowcited","bibatsep","bibauthormultiple","bibbdsep","bibbfsasep","bibbfsesep","bibbstasep","bibbstesep","bibbtasep","bibbtesep","bibbtsep","bibbudcsep","bibcommenthowcited","bibhowcited","bibidemPfname","bibidempfname","bibidemPmname","bibidempmname","bibidemPnname","bibidempnname","bibidemSfname","bibidemsfname","bibidemSmname","bibidemsmname","bibidemSnname","bibidemsnname","bibjtsep","bibleftcolumn","bibleftcolumnadjust","bibnotcited","bibnumberformat","bibpagename","bibpagesname","bibrightcolumn","bibrightcolumnadjust","bibsaustrian","bibsdanish","bibsdutch","bibsenglish","bibsfinnish","bibsfrench","bibsgerman","bibsitalian","bibsnfont","bibsnorsk","bibsportuguese","bibsspanish","bibsswedish","biburlprefix","biburlsuffix","diffpageibidemmidname","diffpageibidemname","Edbyname","edbyname","editionname","editorname","editorsname","fifthedname","firstedname","fourthedname","herename","ibidemmidname","ibidemname","idemmidname","idemname","idemPfname","idempfname","idemPmname","idempmname","idemPnname","idempnname","idemSfname","idemsfname","idemSmname","idemsmname","idemSnname","idemsnname","inname","jbactualauthorfnfont","jbactualauthorfont","jbaensep","jbannotatorfont","jbannoteformat","jbapifont","jbatsep","jbauthorfnfont","jbauthorfont","jbauthorfontifannotato","jbauthorfontifannotator","jbauthorindexfont","jbbfsasep","jbbfsesep","jbbibhang","jbbibyearformat","jbbstasep","jbbstesep","jbbtasep","jbbtesep","jbbtitlefont","jbcitationoyearformat","jbcitationyearformat","jbdisablecitationcrossref","jbdonotindexauthors","jbdonotindexeditors","jbdonotindexorganizations","jbeditorindexfont","jbedseplikecite","jbfirstcitepageranges","jbfulltitlefont","jbhowsepbeforetitle","jbignorevarioref","jbindexbib","jbindexonlyfirstauthors","jbindexonlyfirsteditors","jbindexonlyfirstorganizations","jbindextype","jblangle","jbmakeindexactual","jbnoformatafterstartpagefalse","jbnoformatafterstartpagetrue","jborganizationindexfont","jborgauthorfont","jboyearincitation","jbpagename","jbpagesname","jbrangle","jbshorttitlefont","jbsuperscripteditionafterauthor","jbtitlefont","jbyearaftertitle","lookatprefix","lookatsuffix","opcit","samepageibidemmidname","samepageibidemname","secondedname","SSS","thedname","thirdedname","updatename","updatesep","urldatecomment","volumename","Volumename","addtoalllanguages","afterfoundersep","aftervolsep","ajtsep","alsothesisname","aprname","apyformat","artnumberformat","artvolnumformat","artvolumeformat","artyearformat","augname","backrefparscanfalse","backrefparscantrue","backrefprint","bibaesep","bibaldelim","bibaltformatalign","bibandname","bibanfont","bibAnnote","bibAnnoteFile","bibAnSep","bibapifont","bibapyldelim","bibapyrdelim","bibardelim","Bibbfsasep","Bibbfsesep","Bibbstasep","Bibbstesep","bibbtafont","Bibbtasep","Bibbtesep","bibbtfont","bibBTsep","bibces","bibchapterlongname","bibchaptername","Bibchaptername","bibcite","bibcolumnsep","bibcontinuedname","bibcrossrefcite","bibcrossrefciteagain","bibeandname","bibedformat","bibedinformat","bibefnfont","bibeimfont","bibEIMfont","bibel","bibelnfont","bibenf","Bibetal","bibfnfmt","bibfnfont","bibibidfont","bibidemhrule","bibimfont","bibIMfont","bibincollcrossrefcite","bibincollcrossrefciteagain","bibjtfont","bibJTsep","bibleftcolumnstretch","biblenf","biblnfmt","biblnfont","bibnf","bibnumberwidth","bibPageName","bibPagesName","bibpagesnamesep","bibpldelim","bibprdelim","bibrenf","bibrevtfont","bibrightcolumnstretch","bibrlenf","bibrnf","bibsall","bibSheetName","bibsheetname","bibSheetsName","bibsheetsname","bibsheetsnamesep","bibshorttitlefmt","bibstyle","bibtabularitemsep","bibtafont","bibtfont","bibtnf","bibtotalpagesname","bibvolumecomment","bibvtfont","bibYear","bothaesep","bpubaddr","byname","citefullfirstfortype","citetitleonly","citeworkwithtitle","commaename","commaname","dateldelim","daterdelim","decname","ecmd","edbysep","edfont","el","enoteformat","etalname","etalnamenodot","febname","footcitetitleonly","foundername","fromdutch","fromenglish","fromfinnish","fromfrench","fromgerman","fromitalian","fromnorsk","fromportuguese","fromspanish","fsted","fullnameoxfordcrossref","gobblecite","howcitedprefix","howcitedsuffix","IbidemMidName","IbidemName","idemPfedbyname","idempfedbyname","idemPmedbyname","idempmedbyname","idemPnedbyname","idempnedbyname","idemSfedbyname","idemsfedbyname","idemSmedbyname","idemsmedbyname","idemSnedbyname","idemsnedbyname","ifbackrefparscan","ifjbaltformat","ifjbchicago","ifjbcross","ifjbetal","ifjbhum","ifjbidemabbrvwithperiod","ifjblookforgender","ifjbmhra","ifjbnoformatafterstartpage","ifjbopcit","ifjboxford","ifjbusehowcitedforcite","ifjbuseidemhrule","ifjbweareinbib","ifjbweareinendnotes","ifjbweareinhowcited","incolledformat","inseriesname","janname","jbaddtomakehowcited","jbafterstartpagesep","jbaltformatfalse","jbaltformattrue","jbarchnameformat","jbarchnamesep","jbArchPages","jbarchprformat","jbArchSheets","jbarchsig","jbartcrossrefchecked","jbartPages","jbauthorinfo","jbbeforestartpagesep","jbbibargs","jbbibonly","jbbookedaftertitle","jbbtfont","jbCheckedFirst","jbchicagofalse","jbchicagotrue","jbciteonly","jbcitetitle","jbcrossfalse","jbcrossrefchecked","jbcrosstrue","jbdoitem","jbdy","jbedafti","jbedbyincollcrossrefcite","jbedbyincollcrossrefciteagain","jbedbyincollcrossreflong","jbedbyincollcrossrefshort","jbedbyincollcrossrefshortnoapy","jbedbyincollcrossrefshortwithapy","jbedition","jbedwidth","jbeimfont","jbendnote","jbetalfalse","jbetaltrue","jbFirst","jbFirstAbbrv","jbflanguage","jbfootcite","jbfootcitenotitle","jbfootcitetitle","jbfootfullcite","jbfootnoteformat","jbfootnoteindent","jbfootnotenumalign","jbfootnotenumwidth","jbfullcite","jbhowcitedcomparepart","jbhowcitednormalpart","jbhowsepannotatorfirst","jbhowsepannotatorlast","jbhowsepbeforetitleae","jbhowsepbeforetitleibidemname","jbhumfalse","jbhumtrue","jbidemabbrvwithperiodfalse","jbidemabbrvwithperiodtrue","jbimfont","jbincollcrossref","jbisbn","jbissn","jbJunior","jbLast","jblinebreak","jblookforgender","jblookforgenderfalse","jblookforgendertrue","jbmakeinbib","jbmakeinbiblist","jbmakelookforgender","jbmhrafalse","jbmhratrue","jbnote","jbNotRevedNoVonJr","jbNotRevedNoVonNoJr","jbNotRevedOnlyLast","jbNotRevedVonJr","jbNotRevedVonNoJr","jbnotsamearch","jbnovarioref","jbonlyforbib","jbonlyforcitations","jbonlyforfirstcitefullbegin","jbonlyforfirstcitefullend","jbopcitfalse","jbopcittrue","jboxfordfalse","jboxfordtrue","jbPageName","jbpages","jbPAGES","jbPages","jbpagesep","jbpagesformat","jbPagesName","jbpagesnamesep","jbprformat","jbpublisher","jbrealcitation","jbRevedFirstNoVonJr","jbRevedFirstNoVonNoJr","jbRevedFirstOnlyLast","jbRevedFirstVonJr","jbRevedFirstVonNoJr","jbRevedNotFirstNoVonJr","jbRevedNotFirstNoVonNoJr","jbRevedNotFirstOnlyLast","jbRevedNotFirstVonJr","jbRevedNotFirstVonNoJr","jbsamearch","jbsamesubarch","jbsamesubarchindent","jbselectlanguage","jbSheetName","jbsheetname","jbSheetsName","jbsheetsname","jbsheetsnamesep","jbshortarchformat","jbshortsubarchformat","jbshowbibextralabel","jbsrformat","jbssedbd","jbsubarchsep","jbsy","jbtiafed","jbts","jburldef","jburluse","jbusehowcitedforcitefalse","jbusehowcitedforcitetrue","jbuseidemhrule","jbuseidemhrulefalse","jbuseidemhruletrue","jbVon","jbweareinbibfalse","jbweareinbibtrue","jbweareinendnotesfalse","jbweareinendnotestrue","jbweareinhowcitedfalse","jbweareinhowcitedtrue","jbyear","julname","junname","jurthesisname","lookatfortype","marname","mastersthesisname","mayname","nocitebuthowcited","nofirstnameforcitation","novname","numberandseries","numbername","Numbername","octname","ofseriesname","OpCit","organizationname","origartPages","origbibces","origcrossref","origPAGES","origpages","origPages","osep","pernumberformat","pervolnumformat","pervolumeformat","peryearformat","phdthesisname","ProcessOptionsWithKV","Reprint","reprint","reprintname","reviewbyname","reviewname","reviewofname","revnumberformat","revvolnumformat","revvolumeformat","revyearformat","sepname","sndecmd","snded","sndeditorname","sndeditorsname","technicalreportname","testnosig","textandname","texteandname","textitswitch","thebibnamereplace","thecitefull","theidemcnt","thejbbibcnt","thejbbibcnta","theopcit","trans","transby","transfrom","Transfrom","translator","volname","volumeformat","volumeofname","Wrapquotes","formatarticlepages","jbdotafterbibentry","jbdotafterendnote","jbsilent"]}
-,
-"jurabook.cls":{"envs":["decisionlist"],"deps":["jurabase.sty","remreset.sty","fancyhdr.sty","multicol.sty","s-book.cls","ifpdf.sty","ragged2e.sty"],"cmds":["titlepublisherbox","addextrawebcite","bibtotoc","birthplace","changestarchapters","chapterlevel","citeweb","citewebx","dcs","decision","decree","dumpoptions","examdate","FIndex","findex","firstexaminer","hnewline","ifjpdf","Index","leveldown","levelup","lonelyappendixchapter","longpage","MIndex","newcourt","nomencltotoc","notyet","officialtitle","onehalfspacing","onespacing","overview","publishinfo","publishplace","publishyear","resetstarchapters","rn","rnref","rnreff","rnrefff","secondexaminer","setchaptername","setjbooklength","setjbookstyle","setjbooktext","shortindexingoff","shortindexingon","shortpage","sub","subauthor","subeightsection","subfivesection","subfoursection","subsevensection","subsixsection","subsubsubsection","subsubsubsubsection","subthreesection","subtitle","tableofwebcites","toc","TODO","xref","appendixchapter","autornref","chapterextra","chapternumwidth","chapterstartspace","combinemarks","decisionentry","dnrefname","extrarn","findexproofmode","firstexaminername","fnlabelwidth","fnmarksep","fussnote","ifjscreen","jpdffalse","jpdftrue","jscreenfalse","jscreentrue","jurabookdate","jurabookversion","lowcontentsline","lowcontentslinex","newindexletter","paragraphtocindent","secondexaminername","sectionnumwidth","sectiontocindent","seealso","SetJuboPagestyle","subeightsectionmark","subeightsectionnumwidth","subeightsectiontocindent","subfivesectionmark","subfivesectionnumwidth","subfivesectiontocindent","subfoursectionmark","subfoursectionnumwidth","subfoursectiontocindent","subparagraphtocindent","subsectionnumwidth","subsectiontocindent","subsevensectionmark","subsevensectionnumwidth","subsevensectiontocindent","subsixsectionmark","subsixsectionnumwidth","subsixsectiontocindent","subsubsectionnumwidth","subsubsectiontocindent","subsubsubsubsubsection","subsubsubsubsubsubsection","subsubsubsubsubsubsubsection","subsubsubsubsubsubsubsubsection","subthreesectionmark","subthreesectionnumwidth","subthreesectiontocindent","theextrarunner","therealchapters","therunner","thesubeightsection","thesubfivesection","thesubfoursection","thesubsevensection","thesubsixsection","thesubthreesection","thetotaldcs","thetotaldecisions","thetotalfootnotes","thetotalnotyets","thetotalsections","thetotalwebcites","uprefname"]}
-,
-"juraovw.cls":{"envs":["aufzaehlung","beispiel","gesetzestext","hands","hinweis","stars","triangles","uebersicht"],"deps":["array.sty","pifont.sty","fancybox.sty","color.sty","jurabase.sty","s-scrartcl.cls"],"cmds":["formulierung","hand","jdef","lonelyhand","lonelytriangle","merke","okay","settheme","biggerparskip","bspname","fall","greybox","jdefboxwidth","lithinweis","litname","merkename","oldparskip","oldtoc","resetparskip"]}
-,
-"juraurtl.cls":{"envs":["eingerueckt","gruende","gutachten","rubrum","tatbestand","tenor","urteilsformel","wortlaut","antraege"],"deps":["jurabase.sty","fancyhdr.sty","s-scrartcl.cls"],"cmds":["angeklagt","az","beweiswuerdigung","bl","gegen","gericht","kosten","lebenslauf","lmv","nextsec","rechtlichewuerdigung","richter","rjust","sachverhalt","straftatbestand","strafzumessung","urteilsart","AG","drafthintssize","gruendename","gutachtenname","textpercent","thensec"]}
-,
-"jvlisting.sty":{"envs":["listing"],"deps":{},"cmds":["filelisting","NewListingEnvironment","NewFileListingCommand","listingskipamount","listingindent","listingfont","listingpenalty","prelistingpenalty","postlistingpenalty","ListingTypesetLine","prelistingskip","postlistingskip","normallistingfont","DisableLigatureFix"]}
-,
-"jwjournal.cls":{"envs":["jwjournal"],"deps":["s-einfart.cls","ProjLib.sty","tcolorbox.sty","tcolorboxlibrarymany.sty","needspace.sty","enumitem.sty"],"cmds":["JWJournalEntry","JWJournalItem"]}
-,
-"kalendarium.sty":{"envs":{},"deps":["l3keys2e.sty","xparse.sty"],"cmds":["KalDate","KalDateStr","KalToday","KalWeekday","KalAbbrFormat","KalDayFormat","KalYearFormat"]}
-,
-"kanbun.sty":{"envs":["kanjipar"],"deps":["expl3.sty","xparse.sty","l3keys2e.sty","ifluatex.sty"],"cmds":["setkanbun","kanjiunit","furiokuri","kanbunfont","multifuriokuri","Kanbun","EndKanbun","printkanbun","printkanbuncode","printkanbunnopar","printkanbunnoparcode","createcatcodes","kaeriten","matchkana","Space"]}
-,
-"kantlipsum.sty":{"envs":{},"deps":["expl3.sty"],"cmds":["kant","kantdef"]}
-,
-"kao.sty":{"envs":["fullwidthpar","kaobox","kaocounter","kaofloating","marginlisting","wideequation","widepar","enumerate*","itemize*","description*"],"deps":["kvoptions.sty","etoolbox.sty","calc.sty","xcolor.sty","iftex.sty","xifthen.sty","options.sty","xparse.sty","xpatch.sty","xstring.sty","afterpage.sty","imakeidx.sty","varioref.sty","scrhack.sty","geometry.sty","scrlayer-scrpage.sty","ragged2e.sty","setspace.sty","hyphenat.sty","microtype.sty","needspace.sty","xspace.sty","placeins.sty","marginnote.sty","sidenotes.sty","chngcntr.sty","footmisc.sty","footnotebackref.sty","graphicx.sty","tikz.sty","tikzpagenodes.sty","booktabs.sty","multirow.sty","multicol.sty","rotating.sty","listings.sty","caption.sty","floatrow.sty","tocbasic.sty","etoc.sty","inputenc.sty","fontenc.sty","amssymb.sty","newpxtext.sty","newpxmath.sty","beramono.sty","mathalfa.sty","morewrites.sty","hyperref.sty","bookmark.sty","enumitem.sty","tcolorbox.sty","tcolorboxlibrarymost.sty","pdfpages.sty","subfiles.sty","todonotes.sty","algorithm2e.sty","ccicons.sty","glossaries.sty","nomencl.sty","colortbl.sty"],"cmds":["adhoc","BackrefFootnoteTag","blankpage","cfr","cis","Class","Command","contentwidth","denovo","eg","Environment","etal","etc","etcetera","floatingboxformat","fullwidthpage","hairsp","hangp","hangstar","headmarginparsep","headmarginparwidth","headtextwidth","headtotal","hscale","ie","ifinfloat","IfInFloatingEnvir","Ifthispageodd","ifwidelayout","IfWideLayout","ifxetexorluatex","infloatfalse","infloattrue","invitro","invivo","kaocounterformat","kaomarginskipabove","kaomarginskipbelow","listofinsights","listoflistings","listofloiname","listoflstlistings","lstlistingtocdepth","marginfloatsetup","marginlayout","marginskip","margintoc","margintocnumwidth","margintocpagenumwidth","monthyear","mtocsection","mtocshift","mtocsubsection","mycap","na","oldcaption","oldmarginnote","oldsection","oldsubsection","oldthanks","Option","Package","pagelayout","Path","recalchead","section","subsection","thekaocounter","themargintocdepth","trans","vs","vscale","widefloatsetup","widelayout","widelayoutfalse","widelayouttrue","xetexorluatexfalse","xetexorluatextrue","hangfootparskip","hangfootparindent","DH","dh","dj","DJ","guillemetleft","guillemetright","guillemotleft","guillemotright","guilsinglleft","guilsinglright","Hwithstroke","hwithstroke","k","NG","ng","quotedblbase","quotesinglbase","textogonekcentered","textquotedbl","th","TH","mathscr","mathcal","mathbfcal","GlsSetXdyLanguage","GlsSetXdyCodePage","GlsAddXdyCounters","GlsAddXdyAttribute","GlsAddXdyLocation","GlsSetXdyLocationClassOrder","GlsSetXdyMinRangeLength","GlsSetXdyFirstLetterAfterDigits","GlsSetXdyNumberGroupOrder","GlsAddLetterGroup","GlsAddSortRule","GlsAddXdyAlphabet","GlsAddXdyStyle","GlsSetXdyStyles"]}
-,
-"kaobiblio.sty":{"envs":{},"deps":["etoolbox.sty","perpage.sty","iflang.sty","xparse.sty","xstring.sty","hyperref.sty","kvoptions.sty","biblatex.sty"],"cmds":["formatmargincitation","formatmarginsupercitation","sidecite","sidesupercite","sidetextcite","sideparencite","IfStringInList","iflinkparens","citet","citep","citealt","citealp","citeauthor","citeyearpar","Citet","Citep","Citealt","Citealp","citefullauthor","Citefullauthor","citetext","defcitealias","citetalias","citepalias","mcite","Mcite","mparencite","Mparencite","mfootcite","mfootcitetext","mtextcite","Mtextcite","msupercite","mautocite","Mautocite"]}
-,
-"kaobook.cls":{"envs":{},"deps":["s-scrbook.cls","kao.sty"],"cmds":["setchapterstyle","chapterstylebar","chapterstylekao","chapterstylelines","chapterstyleplain","setchapterimage","hrulefill","oldappendix","oldbackmatter","oldfrontmatter","oldmainmatter"]}
-,
-"kaohandt.cls":{"envs":{},"deps":["s-scrartcl.cls","kao.sty"],"cmds":{}}
-,
-"kaorefs.sty":{"envs":{},"deps":["amsthm.sty","varioref.sty","hyperref.sty","cleveref.sty","backref.sty","color.sty"],"cmds":["chapternameshort","sectionname","sectionnameshort","subsectionname","subsectionnameplural","subsectionnameshort","figurenameshort","tablenameshort","eqname","eqnameshort","defname","assumname","thmname","propname","lemmaname","remarkname","examplename","exercisename","labpage","labpart","labch","labsec","labsubsec","labfig","labtab","labeq","labdef","labassum","labthm","labprop","lablemma","labremark","labexample","labexercise","refpage","vrefpage","arefpart","avrefpart","refpart","vrefpart","nrefpart","frefpart","refchshort","refch","vrefch","nrefch","frefch","refsecshort","refsec","vrefsec","nrefsec","frefsec","refsubsecshort","refsubsec","vrefsubsec","nrefsubsec","frefsubsec","reffigshort","reffig","vreffig","reftab","vreftab","refeqshort","refeq","vrefeq","refdef","vrefdef","refassum","vrefassum","refthm","vrefthm","refprop","vrefprop","reflemma","vreflemma","refremark","vrefremark","refexample","vrefexample","refexercise","vrefexercise","oldvpageref","HyperDestRename","hyperindexformat"]}
-,
-"kaotheorems.sty":{"envs":["theorem","proposition","lemma","corollary","definition","assumption","remark","example","exercise"],"deps":["kvoptions.sty","amsmath.sty","amsthm.sty","thmtools.sty","tcolorbox.sty","tcolorboxlibrarymost.sty"],"cmds":{}}
-,
-"karnaugh-map.sty":{"envs":["karnaugh-map"],"deps":["kvoptions.sty","xparse.sty","tikz.sty","tikzlibrarymatrix.sty"],"cmds":["autoterms","indeterminants","manualterms","maxterms","minterms","terms","implicant","implicantedge","implicantcorner"]}
-,
-"karnaughmap.sty":{"envs":{},"deps":["tikz.sty","ifthen.sty"],"cmds":["karnaughmap","karnaughmapcolorfield","setkarnaughmap","karnaughmapCellEntries","karnaughmapHighlightField","karnaughmapNumCol","karnaughmapNumRow","karnaughmapNumVar","karnaughmapPCCColumnSpecifier","karnaughmapPrintCellContents","karnaughmapPrintIndex","karnaughmapPrintValue","karnaughmapShadeMapfieldFOUR","karnaughmapShadeMapfieldTHREE","karnaughmapShadeMapfieldTWO","karnaughmapSize","karnaughmapVarLabelB","karnaughmapVarLabelD","karnaughmapVariableBaseBias","karnaughmapVariableLeftBias","karnaughmapVariableTopBias","thekarnaughmapIdxCounter","thekarnaughmapStrCounter"]}
-,
-"kblocks.sty":{"envs":["kblock"],"deps":["tikz.sty","circuitikz.sty","tikzlibraryshapes.misc.sty","tikzlibrarymath.sty","tikzlibrarycalc.sty","tikzlibrarydecorations.pathmorphing.sty","tikzlibrarydecorations.markings.sty","tikzlibrarybackgrounds.sty","tikzlibraryfit.sty","tikzlibraryshadows.sty","tikzlibrarymatrix.sty","tikzlibrarychains.sty","tikzlibrarypositioning.sty","tikzlibrarydecorations.pathreplacing.sty","tikzlibrarydecorations.text.sty","tikzlibraryshapes.multipart.sty","tikzlibrarygraphs.sty","tikzlibraryexternal.sty"],"cmds":["ExtractCoordinate","kColorB","kColorL","kColorT","kCoverRect","kCoverTextAbove","kCoverTextBelow","kCoverTextLeft","kCoverTextRight","kGain","kInDown","kInDownM","kInLeft","kInLeftM","kInRight","kInRightM","kInUp","kInUpM","kJumpCS","kJumpCSAbove","kJumpCSBelow","kJumpCSLeft","kJumpCSRight","kLink","kLinkCrossLeftAbove","kLinkCrossLeftBelow","kLinkCrossRightAbove","kLinkCrossRightBelow","kLinkdir","kLinkHV","kLinkHVHLeft","kLinkHVHRight","kLinkn","kLinkndir","kLinknHV","kLinknVH","kLinknVHHVAbove","kLinknVHHVBelow","kLinkVH","kLinkVHHVAbove","kLinkVHHVBelow","kLinkVHTFHVAbove","kLinkVHTFHVAboveRight","kLinkVHTFHVBelow","kLinkVHTFHVBelowRight","kMarkNode","kMarkNodeAbove","kMarkNodeBelow","kMarkNodeLeft","kMarkNodeRight","kMinusMinusDown","kMinusMinusDownA","kMinusMinusDownB","kMinusMinusDownL","kMinusMinusUp","kMinusMinusUpA","kMinusMinusUpB","kMinusMinusUpL","kMinusPlusDown","kMinusPlusDownA","kMinusPlusDownB","kMinusPlusDownL","kMinusPlusUp","kMinusPlusUpA","kMinusPlusUpB","kMinusPlusUpL","kmT","kmTw","kOutDown","kOutLeft","kOutRight","kOutUp","kPlusDownPlusUp","kPlusDownPlusUpA","kPlusDownPlusUpB","kPlusDownPlusUpL","kPlusMinusDown","kPlusMinusDownA","kPlusMinusDownB","kPlusMinusDownL","kPlusMinusDownPlaceAbove","kPlusMinusDownPlaceBelow","kPlusMinusMinus","kPlusMinusMinusA","kPlusMinusMinusB","kPlusMinusMinusL","kPlusMinusPlus","kPlusMinusPlusA","kPlusMinusPlusB","kPlusMinusPlusL","kPlusMinusUp","kPlusMinusUpA","kPlusMinusUpB","kPlusMinusUpL","kPlusPlusDown","kPlusPlusDownA","kPlusPlusDownB","kPlusPlusDownL","kPlusPlusMinus","kPlusPlusMinusA","kPlusPlusMinusB","kPlusPlusMinusL","kPlusPlusPlus","kPlusPlusPlusA","kPlusPlusPlusB","kPlusPlusPlusL","kPlusPlusUp","kPlusPlusUpA","kPlusPlusUpB","kPlusPlusUpL","kScaleDistX","kScaleDistY","ksfgCLink","ksfgCLinkFlip","ksfgLinkSelfD","ksfgLinkSelfL","ksfgLinkSelfR","ksfgLinkSelfU","ksfgNodeD","ksfgNodeL","ksfgNodeR","ksfgNodeU","ksfgNStart","ksfgStart","kShadow","kStartNode","kStartNodec","kTF","kTFAbove","kTFAboveLeft","kTFAboveRight","kTFBelow","kTFBelowLeft","kTFBelowRight","kTFCs","kTFLeft","kTFRight","kVecInDown","kVecInLeft","kVecInRight","kVecInUp","kVecLink","kVecLinkdir","kVecLinkHV","kVecLinkn","kVecLinkndir","kVecLinknHV","kVecLinknVH","kVecLinkVH","kVecOutDown","kVecOutLeft","kVecOutRight","kVecOutUp","kVLinkHVHRight","asumxft","backgroundcolor","colortext","dark","de","dn","ds","dw","dxb","dxina","dxinr","dxj","dxl","dxnax","dxnbx","dxncsx","dxnlx","dxnrx","dxoutr","dxpm","dxpos","dxr","dxt","dxtf","dynay","dynby","dyncsy","dynly","dynry","dypos","dyt","dytf","dytfb","horizdist","linecolor","linepathtype","linetype","minheight","mkpt","phasedist","poslabel","sfghorizdist","textsize","verticdist","xc","xca","xcb","xcr","xe","xf","xn","xon","xone","xonw","xos","xose","xosw","xs","xt","xtohat","xw","yc","yca","ycb","ye","yf","yn","yon","yos","ys","yt","ytohat","yw","kOutLeftM","kOutRightM","kOutUpM","kOutDownM"]}
-,
-"kbordermatrix.sty":{"envs":{},"deps":{},"cmds":["kbordermatrix","kbldelim","kbrdelim","kbrowstyle","kbcolstyle","kbcolsep","kbrowsep"]}
-,
-"kdpcover.cls":{"envs":{},"deps":["iexec.sty","xkeyval.sty","anyfontsize.sty","tikz.sty","microtype.sty","xcolor.sty","graphicx.sty","calc.sty","setspace.sty","geometry.sty","textpos.sty"],"cmds":["putSpine","putPicture","putVolume","putPrice","putBack","putTitle","putAuthor","putTLDR","putVersion","putCopyright"]}
-,
-"kerkis.sty":{"envs":{},"deps":{},"cmds":["calshape","textcal","uishape","textui","scslshape","textscsl","sbseries","textsb","Stigma","k","trademark","tao","Qoppa","Sampi","VarQoppa"]}
-,
-"kerntest.cls":{"envs":["kerntable"],"deps":["geometry.sty","helvet.sty","calc.sty","longtable.sty","array.sty","color.sty","ifthen.sty","keyval.sty","fontenc.sty"],"cmds":["kernsetup","testkern","mtxcomment","encodingsetup","defglyphclass","newglyphclass","renewglyphclass","provideglyphclass","firstglyphinclass","forallclasses","forallinclass","getclassofglyph","getkern","getpsname","getpsunit","getslotnumber","ifglyphinclass","leftkern","mtxfile","mtxfilename","oldkerna","oldkernb","printglyph","ProcessOptionsWithKV","psunit","rightkern","round","saveslotnumber","stoploop","textleft","textright","thisglyphname","writemtxkern","DH","dh","dj","DJ","guillemetleft","guillemetright","guillemotleft","guillemotright","guilsinglleft","guilsinglright","Hwithstroke","hwithstroke","k","NG","ng","quotedblbase","quotesinglbase","textogonekcentered","textquotedbl","th","TH"]}
-,
-"keycommand.sty":{"envs":{},"deps":["etex.sty","kvsetkeys.sty","xkeyval.sty","etoolbox.sty"],"cmds":["newkeycommand","renewkeycommand","providekeycommand","newkeyenvironment","renewkeyenvironment","commandkey","getcommandkey","ifcommandkey","showcommandkeys","showcommandkey","default","next"]}
-,
-"keyfloat.sty":{"envs":["keyfigure","keytable","keyfloat","keyfloats","keysubfigs","keysubtabs","keysubfloats","keywrap","marginfigure","margintable","figurehere","tablehere"],"deps":["etoolbox.sty","xparse.sty","xkeyval.sty","graphicx.sty","caption.sty","subcaption.sty","calc.sty","rotating.sty","placeins.sty","wrapfig.sty"],"cmds":["keyfig","keytab","keyflt","keyfigbox","keyparbox","KFLTtightframe","KFLTlooseframe","KFLTtightframewidth","KFLTlooseframewidth","KFLTimageboxwidth","tdartistcenter","tdartistjustify","tdartistleft","tdartistright","tdartisttextcenter","tdartisttextjustify","tdartisttextleft","tdartisttextright","tdauthorcenter","tdauthorjustify","tdauthorleft","tdauthorright","tdauthortextcenter","tdauthortextjustify","tdauthortextleft","tdauthortextright"]}
-,
-"keyindex.sty":{"envs":{},"deps":["ifthen.sty"],"cmds":["keyindexfile","keyindexformat","missingkeyindexformat","keyindexcommand","keyindexprint","keyindexonly","keyindex","keyindexentry"]}
-,
-"keyparse.sty":{"envs":{},"deps":{},"cmds":["KeyparseKeys","KeyparseEval"]}
-,
-"keyreader.sty":{"envs":{},"deps":["xkeyval.sty","pdftexcmds.sty"],"cmds":["krddefinekeys","krdsetkeys","krdsetrmkeys","krdpresetkeys","krdpostsetkeys","krddisablekeys","krdDeclareOption","krdExecuteOptions","krdProcessOptions","savevaluekeys","ifkrdindef","krdaddtolist","krdAfterEndPackage","krdaftergr","krdcommaloop","krdcsvnormalize","krdecommaloop","krdexpandarg","krdexpandargonce","krdexpanded","krdexpandonce","krdexpandsecond","krdexpandsecondonce","krdfor","krdforeach","krdgaddtolist","krdifblank","krdifbool","krdifbraced","krdifcond","krdifcsdef","krdifdef","krdifescaped","krdifledbyspace","krdifstrcmp","krdifswitch","krdifx","krdindeffalse","krdindeftrue","krdkvnormalize","krdncsname","krdnewlet","krdnoexpandcs","krdorder","krdoxdetok","krdstripouterbraces","krdswap","krdtrimspace","krdusearg","krduserinput","krdzapspace","stopforeach"]}
-,
-"keystroke.sty":{"envs":{},"deps":["graphics.sty"],"cmds":["Spacebar","Enter","Return","Esc","BSpace","Tab","Alt","AltGr","Del","Shift","PgUp","PgDown","End","Ctrl","Home","Ins","UArrow","DArrow","LArrow","RArrow","PrtSc","Scroll","Break","NumLock","keystroke"]}
-,
-"keyval.sty":{"envs":{},"deps":{},"cmds":["define","setkeys"]}
-,
-"keyvaltable.sty":{"envs":["KeyValTable","KeyValTableContent"],"deps":["etoolbox.sty","xkeyval.sty","trimspaces.sty","colortbl.sty","xcolor.sty","booktabs.sty"],"cmds":["NewKeyValTable","Row","NewCollectedTable","CollectRow","ShowCollectedTable","ShowKeyValTableFile","AddKeyValRow","ShowKeyValTable","thekvtRow","thekvtTypeRow","thekvtTotalRow","kvtLabel","kvtDeclareTableMacros","kvtDeclareTableCounters","kvtDeclareCtrFormatters","kvtNewTableStyle","kvtRenewTableStyle","kvtStrutted","kvtNewRowStyle","kvtRenewRowStyle","MidRule","CMidRule","kvtRuleTop","kvtRuleBottom","kvtRuleMid","kvtRuleCMid","kvtRulesCMid","kvtTableOpt","kvtSet","metatblRegisterEnv","metatblRegistered","metatblIsLong","metatblIsTabu","metatblHasWidth","metatblHasCaption","metatblCanVAlign","metatblCanHAlign","metatblUsePackage","metatblRequire","metatblAtEnd"]}
-,
-"kix.sty":{"envs":{},"deps":{},"cmds":["kix","kixwidth","kixspace","kixsyncheight","kixheight","kixbase","kixlheight","kixsync","kixup","kixdown","kixlong"]}
-,
-"kiyou.cls":{"envs":{},"deps":["platex.sty","jslogo.sty","type1cm.sty","uplatex.sty"],"cmds":["stockheight","stockwidth","alsoname","bibname","chaptermark","Cjascale","everyparhook","fullwidth","headfont","heisei","HUGE","ifjisfont","ifmingoth","ifnarrowbaselines","ifpapersize","if","jisfontfalse","jisfonttrue","jsParagraphMark","jsTocLine","mingothfalse","mingothtrue","narrowbaselines","narrowbaselinesfalse","narrowbaselinestrue","papersizefalse","papersizetrue","plainifnotempty","postpartname","postsectionname","prepartname","presectionname","seename","widebaselines","mc","gt"]}
-,
-"knitting.sty":{"envs":["smallpage","fullpages"],"deps":["color.sty"],"cmds":["chart","textknit","wideincrease","widedecrease","bobble","narrowincrease","narrowdecrease","pnarrowincrease","pnarrowdecrease","purlbackground","widesymbol","cableleft","cableright","cableforeground","cablebackground","knit","purl","Knit","Purl","knitbox","purlbox","knitboxforeground","purlboxforeground","knitboxbackground","purlboxbackground","knitgrid","knitwide","knitmixed","knitnogrid","overline","underline","purlpass","gridpass","mainpass","knitlinewd","gridwidth","stitchwd","stitchht","stitchdp","ifgrid","gridtrue","gridfalse","ifknitsymbol","knitsymboltrue","knitsymbolfalse","ifchartsonly","chartsonlytrue","chartsonlyfalse","rn","therownumber","rnleft","rnright","therownumberskip","ifresetrn","resetrntrue","resetrnfalse","rnoddonly","rnevenonly","rnnormal","printrightrownumber","printleftrownumber","printrownumber","rownumberwd","numberrow","rnbox","rnboxleft","rnboxright","stitchcountchart","countstitches","thestitchcountout","thestitchcountin","adjuststitchcount","stitchcountwarningbar","Knitstitchcount","Purlstitchcount","knitboxstitchcount","purlboxstitchcount","widesymbolspacer","shortrows","nostitchcount","knitdebug","printleftstitchcount","printrightstitchcount","printstitchcountchart","countpass","knitleftarrowhead","knitrightarrowhead","thestitchcountinprev"]}
-,
-"knowledge.sty":{"envs":["scope"],"deps":["l3keys2e.sty","etoolbox.sty","currfile.sty","hyperref.sty","xcolor.sty","makeidx.sty","imakeidx.sty","cleveref.sty"],"cmds":["knowledgeconfigure","knowledge","knowledgestyle","knowledgedirective","knowledgedefault","kl","knowledgenewvariant","knowledgesetvariant","knowledgevariantmodifier","knowledgescope","knowledgeimport","knowledgeconfigureenvironment","intro","phantomintro","nointro","reintro","rekl","AP","itemAP","knowledgeIntroIndexStyle","kref","kpageref","kcref","kCref","kcpageref","kCpageref","knamecref","knameCref","knamerefs","knamecrefs","knameCrefs","knowledgenewrobustcmd","knowledgenewcommand","knowledgerenewcommand","KnowledgeNewDocumentCommand","KnowledgeRenewDocumentCommand","KnowledgeProvideDocumentCommand","KnowledgeDeclareDocumentCommand","knowledgedeclarecommand","knowledgenewmathcommand","knowledgenewtextcommand","knowledgerenewmathcommand","knowledgerenewtextcommand","knowledgedeclaremathcommand","knowledgedeclaretextcommand","KnowledgeNewDocumentMathCommand","KnowledgeNewDocumentTextCommand","KnowledgeRenewDocumentMathCommand","KnowledgeRenewDocumentTextCommand","KnowledgeProvideDocumentMathCommand","KnowledgeProvideDocumentTextCommand","KnowledgeDeclareDocumentMathCommand","KnowledgeDeclareDocumentTextCommand","knowledgenewcommandPIE","knowledgerenewcommandPIE","knowledgedeclarecommandPIE","knowledgenewmathcommandPIE","knowledgerenewmathcommandPIE","knowledgedeclaremathcommandPIE","KnowledgeNewDocumentCommandPIE","KnowledgeRenewDocumentCommandPIE","KnowledgeDeclareDocumentCommandPIE","KnowledgeProvideDocumentCommandPIE","KnowledgeNewDocumentMathCommandPIE","KnowledgeRenewDocumentMathCommandPIE","KnowledgeDeclareDocumentMathCommandPIE","KnowledgeProvideDocumentMathCommandPIE","withkl","cmdkl","knowledgepackagemode","IfKnowledgePaperModeTF","ifKnowledgePaperMode","KnowledgePaperModetrue","KnowledgePaperModefalse","IfKnowledgeElectronicModeTF","ifKnowledgeElectronicMode","KnowledgeElectronicModetrue","KnowledgeElectronicModefalse","IfKnowledgeCompositionModeTF","ifKnowledgeCompositionMode","KnowledgeCompositionModetrue","KnowledgeCompositionModefalse","robustdisplay","robustdisplaybracket","knowledgeFixHyperrefTwocolumn","KAuxActivate","KAuxOpen","KAuxClose","IfKAuxReadyTF","KAuxBefore","KAuxAfter","KAuxInit","NewKAuxCommand","KAuxEOF","KAuxCommand","ActivateKAuxPhase","DeclareKAuxPhaseCommand","KAuxWriteLocation","KAuxWriteX","KAuxWrite","KAuxFileAt","kauxCurrentFile","kauxCurrentLine","KAuxProcess","NewGBool","NewGBoolComplete","NewGCs","NewGCsComplete","OverloadCommand","ChooseCommand","XparseArgs","ExpXparseArgs","KnowledgeConfigureBooleanOption","KnowledgeConfigureBooleanOptionTF","KnowledgeConfigureTrigger","KnowledgePackageTrigger","KnowledgePackageBooleanOption","ScopeConfigure","KAuxUndeclaredScopeTag","KAuxDeclaredScopeTag","KAuxNewLinkScopetagInstance","KAuxScopeNewInstance","KAuxScopeTag","KnowledgeConfigureEnvironment","ScopeHackEnvironments","ScopeActivate","KnowledgeDiagnoseOutput","NewKnowledgeParamBool","KnowledgeTransferBool","NewKnowledgeParamTl","KnowledgeTransferTl","NewKnowledgeParamCode","NewKnowledgeParamPackageError","KAuxKnowledge","knowledgeusestyle","KAuxErrorKnowledgeRecursive","KAuxErrorKnowledgeUnknown","KAuxErrorLabelUnknown","KAuxAutoref","KAuxAutorefTarget","KAuxUseKnowledge","ensuretext","knowledgedisplayref","makequotationactive","makequotationletter","quotesymbol","klactivequotationmark","klactivedoublequotationmark","klactivatequotation","kldeactivatequotation","KnowledgifyNewcommand","KnowledgifyNewDocumentCommand","IfXcolorTF","ifXcolor","Xcolortrue","Xcolorfalse","KnowledgeConfigureNotion"]}
-,
-"knufakelogo.sty":{"envs":["KNUfakeLogoBlackENV"],"deps":["tikz.sty","tikzlibraryintersections.sty"],"cmds":["KNUfakelogo","KNUfakelogoBlue","KNUfakelogoGreen","KNUfakelogoBlack","KNUfakelogoColor","KBOX","KCIRCLE","KFILL","KNU","KNUdef","KNUeng","KNUengfont","KNUko","KNUkor","KNUkorfont","KNUkorsize","KNUmainfont","KNUmainsize","KNUyearfont","KROOF","KTEXT","KWHITE"]}
-,
-"kocircnum.sty":{"envs":{},"deps":["tikz.sty","tikzlibraryshapes.sty"],"cmds":["hcrcircnum","hcrcircnumsetup","restorehcrcircnumsetup","hzcircnum","hzcircnumsetup","restorehzcircnumsetup","tikzcircnum","tikzcircnumsetup","tikzcircnumonce","settikzcircnumsetup","restoretikzcircnumsetup","declaretikzcircnumsmallsetup","declaretikzcircnumbigsetup","circnum","circnumsetup","restorecircnumsetup","Cnum","forcerestoretikzcircnumsetup","hcrannonum","hcrnumberboxblack","hcrnumberboxwhite","hcrnumbercircleblack","hcrnumbercirclewhite","hcrnumberrectangleblack","hcrnumberrectanglewhite","hzballnum","hzcirclenum","hzovalnum","hzrectanglenum"]}
-,
-"kolabels-utf.sty":{"envs":{},"deps":{},"cmds":["jaso","gana","ojaso","ogana","pjaso","pgana","onum","pnum","oeng","peng","hnum","Hnum","hroman","hRoman","hNum","hanjanum"]}
-,
-"koma-moderncvclassic.sty":{"envs":{},"deps":["ifthen.sty","ifpdf.sty","xcolor.sty","lmodern.sty","marvosym.sty","url.sty","graphicx.sty","hyperref.sty"],"cmds":["cvline","cventry","cvlanguage","cvcomputer","photo","cvdoubleitem","link","httplink","emaillink","acadtitlefont","acadtitlestyle","addressfont","addresssymbol","addresstyle","cvcompcolumnwidth","doubleitemmaincolumnwidth","emailsymbol","familynamefont","familynamestyle","faxsymbol","firstnamefont","firstnamestyle","hintfont","hintscolumnwidth","hintstyle","listdoubleitemmaincolumnwidth","listitemmaincolumnwidth","listitemsymbol","listitemsymbolwidth","maincolumnwidth","maketitledetailsnewline","maketitledetailswidth","maketitlenamefullwidth","maketitlenamemaxwidth","maketitlenamewidth","mobilesymbol","mycolor","myhintscolumnwidth","phonesymbol","photoname","photowidth","pictureframe","providelength","quotefont","quotestyle","quotewidth","sectionstyle","separatorcolumnwidth","subsectionstyle"]}
-,
-"koma-script-source-doc.sty":{"envs":["command","option","ilength","counter","fontelement","variable","pseudolength","pgstyle","dohook"],"deps":["l3keys2e.sty","s-ltxdoc.cls","s-scrartcl.cls","auxhook.sty","scrlogo.sty"],"cmds":["cls","cnt","dhook","env","file","fnt","len","opt","optvalue","pkg","plen","pstyle","var","DescribeCommand","PrintDescribeCommand","PrintCommandName","SpecialMainCommandIndex","SpecialCommandIndex","DescribeOption","PrintDescribeOption","PrintOptionName","SpecialMainOptionIndex","SpecialOptionIndex","DescribeILength","PrintDescribeILength","PrintILengthName","SpecialMainILengthIndex","SpecialILengthIndex","DescribeCounter","PrintDescribeCounter","PrintCounterName","SpecialMainCounterIndex","SpecialCounterIndex","DescribeKOMAfont","PrintDescribeKOMAfont","PrintKOMAfontName","SpecialMainKOMAfontIndex","SpecialKOMAfontIndex","DescribeKOMAvar","PrintDescribeKOMAvar","PrintKOMAvarName","SpecialMainKOMAvarIndex","SpecialKOMAvarIndex","DescribePLength","PrintDescribePLength","PrintPLengthName","SpecialMainPLengthIndex","SpecialPLengthIndex","DescribePageStyle","PrintDescribePageStyle","PrintPageStyleName","SpecialMainPageStyleIndex","SpecialPageStyleIndex","DescribeDoHook","PrintDescribeDoHook","PrintDoHookName","SpecialMainDoHookIndex","SpecialDoHookIndex"]}
-,
-"komacv-addons.sty":{"envs":{},"deps":["letltxmacro.sty"],"cmds":["Signature","signaturecity","beforesigvspace"]}
-,
-"komacv-lco.sty":{"envs":{},"deps":["etoolbox.sty","fontawesome.sty","marvosym.sty","scrkbase.sty"],"cmds":["newkomavar","setkomavar","usekomavar","ifkomavarempty","ifkomavar","LoadLetterOption","LoadLetterOptions","ifkomavarenabled","emaillink","httplink","httpslink"]}
-,
-"komacv-multilang.sty":{"envs":{},"deps":["multilang.sty","multilang-tags.sty","multilang-sect.sty","datetime2.sty","datetime2-calc.sty","translations.sty"],"cmds":["BasicEntry","CommentedEntry","DoubleEntry","EducationEntry","EmploymentEntry","AchievementEntry","EntryListItem","EntryListDblItem","Item"]}
-,
-"komacv.cls":{"envs":["compactdesc"],"deps":["s-scrartcl.cls","ifthen.sty","kvoptions.sty","calc.sty","xparse.sty","xstring.sty","xcolor.sty","etoolbox.sty","ifpdf.sty","ifluatex.sty","ifxetex.sty","scrlayer-scrpage.sty","marvosym.sty","array.sty","graphicx.sty","microtype.sty","enumitem.sty","hyperref.sty","fontawesome.sty","ragged2e.sty","inputenc.sty","fontenc.sty","lastpage.sty","colortbl.sty","pdfcolmk.sty"],"cmds":["acadtitle","acadtitlestyle","address","addresscity","addressstreet","addressstyle","addresssymbol","addtofooter","afterelementsvspace","afterquotevspace","aftersecvspace","aftersubsecvspace","aftertitlevspace","allbordercolors","beforesecvspace","beforesubsecvspace","citebordercolor","croplink","cvdoubleitem","cventry","cvitem","cvitemwithcomment","cvlistdoubleitem","cvlistitem","cvquote","dbitemmaincolwidth","email","emaillink","emailsymbol","extrainfo","facebook","facebooksymbol","familyname","familynamestyle","faxnr","faxsymbol","filebordercolor","firstname","firstnamestyle","footerwidth","fsymbol","github","githubsymbol","headline","headlinestyle","hintscolwidth","hintstyle","homepage","homepagesymbol","httplink","httpslink","infocolwidth","link","linkbordercolor","linkedin","linkedinsymbol","listdbitemmaincolwidth","listitemmaincolwidth","listitemsymbol","listitemsymbolwidth","maincolwidth","menubordercolor","mframepicshift","mobile","mobilesymbol","mycolor","pdfauthor","pdfkeywords","pdfsubject","pdftitle","phonenr","phonesymbol","photo","quotestyle","quotewidth","runbordercolor","sectionfont","sectionstyle","sepcolwidth","sepinfocolwidth","setheadline","setheadlinealignment","setheadlinetypename","setheadlinetypetitle","subsectionfont","subsectionstyle","title","titlesepwidth","totalpagemark","twitter","twittersymbol","urlbordercolor","DH","NG","dj","ng","k","guillemotleft","guillemotright","guilsinglleft","guilsinglright","quotedblbase","quotesinglbase","textquotedbl","DJ","th","TH","dh","Hwithstroke","hwithstroke","textogonekcentered","guillemetleft","guillemetright"]}
-,
-"konames-utf.sty":{"envs":{},"deps":{},"cmds":["enclname","ccname","headtoname","seename","alsoname","bibname","KSTHE","chaptername","sectionname","colorlayer","glossaryname","proofname","pagename"]}
-,
-"kosections-utf.sty":{"envs":{},"deps":["konames-utf.sty"],"cmds":["circemph","circemphchar","dotemph","dotemphchar","kscntformat","raisedotdim","TEXTsubscript","useremph","useremphchar","useremphraisedim"]}
-,
-"kotex-logo.sty":{"envs":{},"deps":["hologo.sty"],"cmds":["ko","koTeX"]}
-,
-"kotex-varioref.sty":{"envs":{},"deps":["l3keys2e.sty","varioref.sty"],"cmds":["kotexvarioreftexts","ifUI","UItrue","UIfalse"]}
-,
-"kotexutf.sty":{"envs":{},"deps":["inputenc.sty","kolabels-utf.sty","kosections-utf.sty"],"cmds":["finemath","strictcharcheck","dotemph","jong","jung","rieul","SetAdhocFonts","SetHangulFonts","SetHanjaFonts","setInterHangulSkip","SetSansFonts","SetSerifFonts","usehangulfontspec","asciiexclamationafterhangul","asciifullstopafterhangul","asciiquestionafterhangul","breakafterasciichar","breakafterinlinemath","breakbeforeasciichar","breakbetweenhangul","breakbetweenhanja","cjksymbolextraspace","cjksymbolskip","cjksymbolunskip","declarehangulspacefactor","declarehanjaspacefactor","declarenobreakspacefactor","disablehangulfontspec","disablehangullinebreak","josatoks","kernbeforeasciichar","kernbeforelatinquoteclose","makejosa","nobreakafterasciichar","nobreakafterinlinemath","nobreakbetweenhangul","nobreakbetweenhanja","pdfstringdefPreHook","postcjksymbol","postcjksymnobreak","postcjksymskip","unihangulchar"]}
-,
-"kpfonts-otf.sty":{"envs":{},"deps":["iftex.sty","unicode-math.sty","realscripts.sty"],"cmds":["circledR","circledS","ebseries","euro","kpeuro","KpLight","KpRoman","longs","lscshape","ltseries","pscshape","ringbelow","sbseries","shorts","texteb","textlsc","textlt","textpsc","textsb","barV","bigcapplus","bigsqcapplus","bigsqcupplus","blacklozenge","blacksquare","Box","boxast","boxbar","boxbslash","boxdiag","boxdotleft","boxdotLeft","boxdotright","boxdotRight","boxleft","boxLeft","boxright","boxRight","candra","capplus","centerdot","circlearrowleft","circlearrowright","circledbar","circledotleft","circledotright","circledvee","circledwedge","circleleft","circleright","colonapprox","Colonapprox","colondash","Colondash","coloneq","Coloneq","colonsim","Colonsim","D","dashColon","dashleftarrow","dashrightarrow","diagdown","diagup","Diamond","diamondcdot","Diamonddotleft","DiamonddotLeft","Diamonddotright","DiamonddotRight","Diamondleft","DiamondLeft","Diamondright","DiamondRight","doteqdot","doublecap","doublecup","downdasharrow","dualmap","eqqColon","fint","geqqslant","gggtr","gtreqqslantless","gtreqslantless","gvertneqq","IM","Join","lambdabar","lambdaslash","lbag","leadsto","leadstoext","leftdasharrow","leftrightdasharrow","leftwavearrow","leqqslant","lesseqqslantgtr","lesseqslantgtr","lgblkcircle","lgblksquare","lgwhtsquare","lhd","llless","longleadsto","Longmmapsfrom","longmmapsfrom","Longmmapsto","longmmapsto","lozenge","lvertneqq","mbfdotlessi","mbfdotlessj","mbfell","mbfimath","mbfjmath","mbfvec","mbfwp","mbhbar","mbhslash","mdblkcircle","mdblkdiamond","mdblklozenge","mdblksquare","mdlgblkdiamond","mdlgblklozenge","mdlgwhtdiamond","mdsmblkcircle","mdsmblksquare","mdsmwhtcircle","mdsmwhtsquare","mdwhtcircle","mdwhtdiamond","mdwhtlozenge","mdwhtsquare","mithbar","mitsansell","mitsanspartial","mitsanswp","Mmapsfrom","mmapsfrom","Mmapsto","mmapsto","msanspartial","multimapbothvert","multimapdot","multimapdotboth","multimapdotbothAvert","multimapdotbothBvert","multimapdotbothvert","multimapdotinv","ngeqq","ngeqslant","nleqq","nleqslant","nparallelbackslant","nparallelslant","npreceq","nshortmid","nshortparallel","nshortparallelslant","nsubseteqq","nsucceq","nsupseteqq","ntriangleleft","ntriangleright","obslash","ogreaterthan","oiiintclockwise","oiiintctrclockwise","oiintclockwise","oiintctrclockwise","ointclockwise","olessthan","openJoin","opentimes","overrightarc","parallelbackslant","parallelslant","preceqq","precneq","rbag","RE","restriction","rhd","rightdasharrow","rightwavearrow","shortmid","shortparallel","shortparallelslant","smallblacktriangleleft","smallfrown","smallsmile","smalltriangleleft","smalltriangleright","smblkdiamond","smblklozenge","smwhtlozenge","sqcapplus","sqcupplus","sqiiint","sqiint","sqint","square","strictfi","strictif","strictiff","subsetneqq","succeqq","succneq","supsetneqq","thickapprox","thicksim","tieconcat","twonotes","unlhd","unrhd","upand","upbackepsilon","updasharrow","upDigamma","varemptyset","varidotsint","variiiint","variiint","variint","varint","varoiiintclockwise","varoiiintctrclockwise","varoiintclockwise","varoiintctrclockwise","varointctrclockwise","varpropto","varsubsetneq","varsubsetneqq","varsupsetneq","varsupsetneqq","Vbar","VvDash","Vvert","vysmblksquare","vysmwhtsquare","wedgebar","widearc","widearcarrow","Wr","Zbar","KpMtoks","fileversion","filedate"]}
-,
-"kpfonts.sty":{"envs":{},"deps":["iftex.sty","amsmath.sty","ifthen.sty"],"cmds":["classicstylenums","textscsl","scslshape","textothersc","otherscshape","textotherscsl","otherscslshape","othertailQ","othertailscq","othertailscslq","mathbb","mathscr","mathfrak","mathupright","mathup","approxeq","backepsilon","backprime","backsim","backsimeq","barwedge","Bbbk","because","beth","between","bigcapop","bigcupop","bignplus","bignplusop","bigodotop","bigoplusop","bigotimesop","bigsqcap","bigsqcapop","bigsqcapplus","bigsqcapplusop","bigsqcupop","bigsqcupplus","bigsqcupplusop","bigstar","biguplusop","bigveeop","bigwedgeop","blacklozenge","blacksquare","blacktriangle","blacktriangledown","blacktriangleleft","blacktriangleright","Bot","Box","boxast","boxbar","boxbslash","boxdot","boxdotleft","boxdotLeft","boxdotright","boxdotRight","boxleft","boxLeft","boxminus","boxplus","boxright","boxRight","boxslash","boxtimes","bumpeq","Bumpeq","Cap","centerdot","circeq","circlearrowleft","circlearrowright","circledast","circledbar","circledbslash","circledcirc","circleddash","circleddot","circleddotleft","circleddotright","circledgtr","circledless","circledminus","circledotleft","circledotright","circledplus","circledS","circledslash","circledtimes","circledvee","circledwedge","circleleft","circleright","colonapprox","Colonapprox","coloneq","Coloneq","coloneqq","Coloneqq","colonsim","Colonsim","complement","coprodop","Cup","curlyeqprec","curlyeqsucc","curlyvee","curlywedge","curvearrowleft","curvearrowright","D","daleth","dasharrow","dashleftarrow","dashleftrightarrow","dashrightarrow","diagdown","diagup","Diamond","Diamondblack","Diamonddot","Diamonddotleft","DiamonddotLeft","Diamonddotright","DiamonddotRight","Diamondleft","DiamondLeft","Diamondright","DiamondRight","digamma","divideontimes","Doteq","doteqdot","dotplus","doublebarwedge","doublecap","doublecup","downdownarrows","downharpoonleft","downharpoonright","eqcirc","eqcolon","Eqcolon","eqqcolon","Eqqcolon","eqsim","eqslantgtr","eqslantless","eth","fallingdotseq","fint","fintop","Finv","Game","geqq","geqslant","ggg","gggtr","gimel","gnapprox","gneq","gneqq","gnsim","gtrapprox","gtrdot","gtreqless","gtreqqless","gtrless","gtrsim","gvertneqq","hslash","idotsintop","iiiintop","iiintop","iintop","intercal","invamp","Join","lambdabar","lambdaslash","lbag","Lbag","leadsto","leadstoext","leftarrowtail","leftleftarrows","leftrightarrows","leftrightharpoons","leftrightsquigarrow","leftsquigarrow","leftthreetimes","leqq","leqslant","lessapprox","lessdot","lesseqgtr","lesseqqgtr","lessgtr","lesssim","lhd","lJoin","llbracket","Lleftarrow","lll","llless","lnapprox","lneq","lneqq","lnsim","longmappedfrom","Longmappedfrom","Longmapsto","longmmappedfrom","Longmmappedfrom","longmmapsto","Longmmapsto","looparrowleft","looparrowright","lozenge","lrJoin","lrtimes","Lsh","ltimes","lvertneqq","mappedfrom","Mappedfrom","mappedfromchar","Mappedfromchar","Mapsto","Mapstochar","measuredangle","medbullet","medcirc","mho","mmappedfrom","Mmappedfrom","mmappedfromchar","Mmappedfromchar","mmapsto","Mmapsto","mmapstochar","Mmapstochar","multimap","multimapboth","multimapbothvert","multimapdot","multimapdotboth","multimapdotbothA","multimapdotbothAvert","multimapdotbothB","multimapdotbothBvert","multimapdotbothvert","multimapdotinv","multimapinv","napprox","napproxeq","nasymp","nbacksim","nbacksimeq","nbumpeq","nBumpeq","ncong","Nearrow","nequiv","nexists","ngeq","ngeqq","ngeqslant","ngg","ngtr","ngtrapprox","ngtrless","ngtrsim","nleftarrow","nLeftarrow","nLeftrightarrow","nleftrightarrow","nleq","nleqq","nleqslant","nless","nlessapprox","nlessgtr","nlesssim","nll","nmid","notni","notowns","nparallel","nplus","nprec","nprecapprox","npreccurlyeq","npreceq","npreceqq","nprecsim","nrightarrow","nRightarrow","nshortmid","nshortparallel","nsim","nsimeq","nsqsubset","nsqsubseteq","nsqsupset","nsqsupseteq","nsubset","nSubset","nsubseteq","nsubseteqq","nsucc","nsuccapprox","nsucccurlyeq","nsucceq","nsucceqq","nsuccsim","nsupset","nSupset","nsupseteq","nsupseteqq","nthickapprox","ntriangleleft","ntrianglelefteq","ntriangleright","ntrianglerighteq","ntwoheadleftarrow","ntwoheadrightarrow","nvarparallel","nvarparallelinv","nvdash","nVdash","nvDash","nVDash","Nwarrow","oiiint","oiiintclockwise","oiiintclockwiseop","oiiintctrclockwise","oiiintctrclockwiseop","oiiintop","oiint","oiintclockwise","oiintclockwiseop","oiintctrclockwise","oiintctrclockwiseop","oiintop","ointclockwise","ointclockwiseop","ointctrclockwise","ointctrclockwiseop","openJoin","opentimes","partialsl","partialup","Perp","pitchfork","precapprox","preccurlyeq","preceqq","precnapprox","precneqq","precnsim","precsim","prodop","rbag","Rbag","restriction","rhd","rightarrowtail","rightleftarrows","rightrightarrows","rightsquigarrow","rightthreetimes","risingdotseq","rJoin","rrbracket","Rrightarrow","Rsh","rtimes","Searrow","shortmid","shortparallel","smallfrown","smallsetminus","smallsmile","sphericalangle","sqcapplus","sqcupplus","sqiiint","sqiiintop","sqiint","sqiintop","sqint","sqintop","sqsubset","sqsupset","square","strictfi","strictif","strictiff","Subset","subseteqq","subsetneq","subsetneqq","succapprox","succcurlyeq","succeqq","succnapprox","succneqq","succnsim","succsim","sumop","Supset","supseteqq","supsetneq","supsetneqq","Swarrow","therefore","thickapprox","thicksim","Top","triangledown","trianglelefteq","triangleq","trianglerighteq","twoheadleftarrow","twoheadrightarrow","unlhd","unrhd","upharpoonleft","upharpoonright","upuparrows","varclubsuit","vardiamondsuit","varemptyset","varheartsuit","varidotsint","varidotsintop","variiiint","variiiintop","variiint","variiintop","variint","variintop","varint","varintop","varkappa","varnothing","varoiiintclockwise","varoiiintclockwiseop","varoiiintctrclockwise","varoiiintctrclockwiseop","varoiintclockwise","varoiintclockwiseop","varoiintctrclockwise","varoiintctrclockwiseop","varointclockwise","varointclockwiseop","varointctrclockwise","varointctrclockwiseop","varparallel","varparallelinv","varprod","varpropto","varspadesuit","varsubsetneq","varsubsetneqq","varsupsetneq","varsupsetneqq","vartriangle","vartriangleleft","vartriangleright","Vdash","vDash","VDash","veebar","Vvdash","VvDash","widearc","widearcarrow","wideOarc","wideparen","widering","Wr","alphaup","betaup","gammaup","deltaup","epsilonup","varepsilonup","zetaup","etaup","thetaup","varthetaup","iotaup","kappaup","varkappaup","lambdaup","muup","nuup","xiup","piup","varpiup","rhoup","varrhoup","sigmaup","varsigmaup","tauup","upsilonup","phiup","varphiup","chiup","psiup","omegaup","alphasl","betasl","gammasl","deltasl","epsilonsl","varepsilonsl","zetasl","etasl","thetasl","varthetasl","iotasl","kappasl","varkappasl","lambdasl","musl","nusl","xisl","pisl","varpisl","rhosl","varrhosl","sigmasl","varsigmasl","tausl","upsilonsl","phisl","varphisl","chisl","psisl","omegasl","otheralpha","otherbeta","othergamma","otherdelta","otherepsilon","othervarepsilon","otherzeta","othereta","othertheta","othervartheta","otheriota","otherkappa","othervarkappa","otherlambda","othermu","othernu","otherxi","otherpi","othervarpi","otherrho","othervarrho","othersigma","othervarsigma","othertau","otherupsilon","otherphi","othervarphi","otherchi","otherpsi","otheromega","Gammaup","Deltaup","Thetaup","Lambdaup","Xiup","Piup","Sigmaup","Upsilonup","Phiup","Psiup","Omegaup","Gammasl","Deltasl","Thetasl","Lambdasl","Xisl","Pisl","Sigmasl","Upsilonsl","Phisl","Psisl","Omegasl","otherGamma","otherDelta","otherTheta","otherLambda","otherXi","otherPi","otherSigma","otherUpsilon","otherPhi","otherPsi","otherOmega"]}
-,
-"ksbaduk.sty":{"envs":["ksbadukpan"],"deps":["tikz.sty"],"cmds":["BadukpanSize","BadukpanColor","BackgroundColor","NumberFont","StartBaduk","StartBadukClip","StopBaduk","Black","BlackFirst","Blacks","White","WhiteFirst","Whites","BlackN","BlackFirstN","WhiteN","WhiteFirstN","BlackM","BlackMs","BlackC","BlackCs","BlackD","BlackDs","WhiteM","WhiteMs","WhiteC","WhiteCs","WhiteD","WhiteDs","Blanket","TextMark","KSBadukContinue","ClearHistory","RemoveStone","KSpar","ProceedNextScene","ProceedNextSceneComment","SaveKSBaduk","LoadKSBaduk","DeleteSavedKSBaduk","SGFLine","ResetSGFCounter","ResetSFGCounter","WhiteNText","BlackNText","WhiteMText","BlackMText","WhiteCText","BlackCText","Bb","BlackFirstNumber","DeleteSavedKSGo","GobanColor","GobanSize","KSGoContinue","LoadKSGo","SaveKSGo","StartGo","StartGoClip","StopGo","Wb","WhiteFirstNumber"]}
-,
-"ksforloop.sty":{"envs":{},"deps":{},"cmds":["ksforloop","ksforquit"]}
-,
-"kshcrkey.sty":{"envs":{},"deps":["etoolbox.sty","graphicx.sty"],"cmds":["hcrkey","hcrkeys","hcrkeyfontname"]}
-,
-"ksinsbox.sty":{"envs":{},"deps":{},"cmds":["ksinsbox","InsertBoxL","InsertBoxR","InsertBoxC","MoveBelowBox","ParShape"]}
-,
-"ksjosaref.sty":{"envs":{},"deps":["amsmath.sty"],"cmds":["josaref","ref","josarefcmds","nojosarefcmds","josapageref","josaeqref"]}
-,
-"ksmisc.sty":{"envs":{},"deps":["ksforloop.sty"],"cmds":{}}
-,
-"ksruby.sty":{"envs":{},"deps":["stackengine.sty"],"cmds":["ksruby","ruby","ksrubycenterdefault","ksrubyheightdefault","ksrubywidthdefault","ksrubyeachchardefault","ksrubysep","ksrubysize","ksrubyextra"]}
-,
-"kstextks.sty":{"envs":{},"deps":["fontspec.sty"],"cmds":["kssim","textkssharp","textksamp","textksasterisk","textksat","textkssecsign","textksreferencemark","textksstarwhite","textksstarblack","textkscirclewhite","textkscircleblack","textksdblcircle","textksdiamondwhite","textksdiamondblack","textkssquarewhite","textkssquareblack","textkstrianglewhite","textkstriangleblack","textksinvtrianglewhite","textksinvtriangleblack","textksrightarrow","textksleftarrow","textksuparrow","textksdownarrow","textksleftrightarrow","textksequalsign","textkslefttrianglewhite","textkslefttriangleblack","textksrighttrianglewhite","textksrighttriangleblack","textksspadewhite","textksspadeblack","textksheartwhite","textksheartblack","textkscloverwhite","textkscloverblack","textksframedcircle","textksframeddiamond","textksframedsquare","textksfirstquartermoon","textkslastquartermoon","textkscheckedrectangle","textkssquarehorstripe","textkssquarevertstripe","textkssquareslashstripe","textkssquarebackslashstripe","textkssquarecrossstripe","textkssquarediagcrossstripe","textkshotspring","textkstelephonewhite","textkstelephoneblack","textksfingerarrowleft","textksfingerarrowright","textkspilcrow","textksdagger","textksdbldagger","textksupdownarrow","textksrightuparrow","textksleftdownarrow","textksleftuparrow","textksrightdownarrow","textksflat","textksquarternote","textkseighthnote","textkssixteenthnote","textksksmark","textkscorpmark","textksnumbermark","textkscomark","textkstrademark","textksammark","textkspmmark","textkstelmark","textksregisteredmark","textksfeminimeordinalindicatormark","textksmasculineordinalindicatormark","textkspostalcodemark","textksinterrobang","textksasterim","textkscopyright","textkslongvowelmark","textkstriangularcolon","textkswavedash","textksvertcomma","textksvertfullstop","textkscdotsingle","textkscdotdouble","textkshalfellipsis","textksleftparenthesis","textksrightparenthesis","textksleftbracket","textksrightbracket","textksleftbrace","textksrightbrace","textksleftsinglequote","textksrightsinglequote","textksleftquote","textksrightquote","textksleftrbracket","textksrightrbracket","textksleftbbracket","textksrightbbracket","textksdblleftbbracket","textksdblrightbbracket","textksleftcbracket","textksrightcbracket","textksdblleftcbracket","textksdblrightcbracket","textksleftBracket","textksrightBracket","textksdegreecelcius","textksdegreefahrenheit","textksmalesign","textksfemalesign","textksdegree","textksminute","textkssecond","textksmicroliter","textksmilliliter","textksdeciliter","textksliter","textkskiloliter","textkscenticube","textkscubicmillimeter","textkscubiccentimeter","textkscubicmeter","textkscubickilometer","textksfemtometer","textksnanometer","textksmicrometer","textksmillimeter","textkscentimeter","textkskilometer","textkssquaremillimeter","textkssquarecentimeter","textkssquaremeter","textkssquarekilometer","textkshectare","textksmicrogram","textksmilligram","textkskilogram","textkskiloton","textkscalorie","textkskilocalorie","textksdecibel","textksmeterpersecond","textksmeterpersecondsquared","textkspicosecond","textksnanosecond","textksmicrosecond","textksmillisecond","textkshertz","textkskilohertz","textksmegahertz","textksgigahertz","textksterahertz","DisplayAllSymbols"]}
-,
-"kswrapfig.sty":{"envs":["KSwrapfig","KSwrapfigline"],"deps":["environ.sty","keycommand.sty","picinpar.sty","ksinsbox.sty"],"cmds":["kswrapfig","kswrapfigline","tightlist"]}
-,
-"kurdishlipsum.sty":{"envs":{},"deps":["biditools.sty"],"cmds":["setkurdishlipsumdefault","kurdishlipsum","ChangeKurdishlipsumPar"]}
-,
-"kurier.sty":{"envs":{},"deps":{},"cmds":{}}
-,
-"kvmap.sty":{"envs":["kvmap","kvmatrix"],"deps":["expl3.sty","amsmath.sty","xparse.sty","tikz.sty"],"cmds":["kvmapsetup","kvlist","bundle"]}
-,
-"kvoptions.sty":{"envs":{},"deps":["keyval.sty","ltxcmds.sty","kvsetkeys.sty","kvoptions-patch.sty"],"cmds":["ProcessKeyvalOptions","ProcessLocalKeyvalOptions","SetupKeyvalOptions","DeclareStringOption","DeclareBoolOption","DeclareComplementaryOption","DeclareVoidOption","DeclareDefaultOption","DeclareLocalOption","DeclareLocalOptions","DisableKeyvalOption","AddToKeyvalOption"]}
-,
-"kvsetkeys.sty":{"envs":{},"deps":{},"cmds":["kvsetkeys","kvsetknownkeys"]}
-,
-"l3doc.cls":{"envs":["documentation","implementation","function","variable","macro","syntax","texnote","arguments","optionenv","danger","ddanger","NOTE","TemplateInterfaceDescription","TemplateDescription","InstanceDescription"],"deps":["expl3.sty","calc.sty","doc.sty","array.sty","alphalph.sty","amsmath.sty","amssymb.sty","booktabs.sty","color.sty","colortbl.sty","hologo.sty","enumitem.sty","pifont.sty","textcomp.sty","trace.sty","csquotes.sty","fancyvrb.sty","underscore.sty","verbatim.sty","fontenc.sty","lmodern.sty","hypdoc.sty"],"cmds":["pdfstringnewline","eTeX","IniTeX","Lua","LuaTeX","pdfTeX","XeTeX","pTeX","upTeX","epTeX","eupTeX","ConTeXt","cmd","cs","tn","Arg","marg","oarg","parg","file","env","pkg","cls","EnableDocumentation","EnableImplementation","DisableDocumentation","DisableImplementation","CodedocExplain","CodedocExplainEXP","CodedocExplainREXP","CodedocExplainTF","testfile","MacroLongFont","TestFiles","UnitTested","TestMissing","DescribeOption","PrintDescribeOption","PrintOptionName","manual","dbend","NB","TemplateArgument","TemplateSemantics","TemplateKey","InstanceKey","InstanceSemantics","DocInputAgain","DocInclude","currentfile","filesep","docincludeaux","filekey","DH","NG","dj","ng","k","guillemotleft","guillemotright","guilsinglleft","guilsinglright","quotedblbase","quotesinglbase","textquotedbl","DJ","th","TH","dh","Hwithstroke","hwithstroke","textogonekcentered","guillemetleft","guillemetright"]}
-,
-"l3keys2e.sty":{"envs":{},"deps":["expl3.sty"],"cmds":["ProcessKeysOptions","ProcessKeysPackageOptions"]}
-,
-"la.sty":{"envs":["llapar"],"deps":{},"cmds":["la","textla","lla","textlla","llafill","llaline","filename","fileversion","filedate","docversion","docdate"]}
-,
-"labbook.cls":{"envs":{},"deps":["s-scrbook.cls","makeidx.sty"],"cmds":["theHexperiment","theHlabday","theHsubexperiment","theHsubfigure","labday","experiment","subexperiment","newexperiment","newsubexperiment","experimentmark","subexperimentmark","theexperiment","thelabday","thesubexperiment"]}
-,
-"labels.sty":{"envs":["labels"],"deps":{},"cmds":["BottomLabelBorder","BottomPageMargin","InterLabelColumn","InterLabelRow","LeftLabelBorder","LeftPageMargin","RightLabelBorder","RightPageMargin","TopLabelBorder","TopPageMargin","addresslabel","BottomBorder","boxedaddresslabel","genericlabel","ifLabelGrid","ifLabelInfo","LabelCols","labelfile","LabelGridfalse","LabelGridtrue","LabelInfofalse","LabelInfotrue","LabelRows","LabelSetup","LeftBorder","numberoflabels","promptlabels","RightBorder","skiplabels","TopBorder","isitapar","LabelTotal","LabTmp","PkgBlurb","ToMilli","TypeoutBlurb"]}
-,
-"labels4easylist.sty":{"envs":{},"deps":["xparse.sty","easylist.sty"],"cmds":["itemLabel"]}
-,
-"labyrinth.sty":{"envs":["labyrinth"],"deps":["calc.sty","xkeyval.sty","picture.sty"],"cmds":["h","labyrinthset","putsymbol","plus","minus","ast","labyrinthsolution","solutionset","autosolution","solutionpath","truncdiv"]}
-,
-"ladder.sty":{"envs":{},"deps":["calc.sty","ifthen.sty","tikz.sty"],"cmds":["ladderLine","startParallel","setParallel","unsetParallel","ladderNO","ladderNC","ladderC","ladderText","thecurrentX","thecurrentY","thememCurrentX","thememCurrentY","thenextX","thenextY","thenextYPar","thestartPar","thestopPar","thetempCurrentY"]}
-,
-"lambdax.sty":{"envs":{},"deps":["expl3.sty","xparse.sty","xtemplate.sty","l3keys2e.sty","keyparse.sty"],"cmds":["LambdaX"]}
-,
-"langcode.sty":{"envs":{},"deps":["dowith.sty"],"cmds":["uselangcode","langcodeadjust","langcodedependent","monthname","enmonthname","demonthname","qtd","enqtd","deqtd","dqtd","endqtd","dedqtd","pardash","enpardash","depardash","lastrev","enlastrev","delastrev","totopofpage","entotopofpage","detotopofpage","enlangcodeextras","delangcodeextras"]}
-,
-"langnames.sty":{"envs":{},"deps":{},"cmds":["lname","liso","lfam","langnative","newlang","renewlang","newlangnative","changetoglottolog","changetowals","changetonone","ssp"]}
-,
-"langsci-affiliations.sty":{"envs":{},"deps":{},"cmds":["ResolveAffiliations","LinkToORCIDinAffiliations","CountAuthorsFromAffiliations","SetupAffiliations"]}
-,
-"langsci-avm.sty":{"envs":{},"deps":["array.sty","tikz.sty","etoolbox.sty","unicode-math.sty"],"cmds":["avm","lframe","rframe","tag","type","id","punk","shuffle","avmsetup","avmdefinestyle","avmdefinecommand"]}
-,
-"langsci-bidi.sty":{"envs":{},"deps":{},"cmds":["TeXXeTOn","TeXXeTOff","RL"]}
-,
-"langsci-gb4e.sty":{"envs":["exe","xlist","qlist"],"deps":["etoolbox.sty"],"cmds":["ea","z","ex","exi","exr","exp","xref","xxref","sn","exewidth","eanoraggedright","ealnoraggedright","gll","glt","glll","gllll","glllll","gllllll","glllllll","gllllllll","exfont","glossfont","transfont","exnrfont","fnexfont","fnglossfont","fntransfont","fnexnrfont","nogltOffset","resetgltOffset","jambox","jamwidth","atcenter","attop","donewords","eachwordeight","eachwordfive","eachwordfour","eachwordone","eachwordseven","eachwordsix","eachwordthree","eachwordtwo","eafirst","eal","eas","eightsent","examplesitalics","examplesroman","fivesent","footexindent","fourdigitexamples","foursent","gblabelsep","getwords","gline","glossglue","gltoffset","ifnotdone","judgewidth","lastword","lineeight","linefive","linefour","lineone","lineseven","linesix","linethree","linetwo","more","nobreakbox","nosinglegloss","notdonefalse","notdonetrue","oldFootnotetext","sevensent","singlegloss","sixsent","subexsep","testdone","thexnumi","thexnumii","thexnumiii","thexnumiv","threedigitexamples","threesent","trans","twodigitexamples","twosent","wordeight","wordfive","wordfour","wordone","wordseven","wordsix","wordthree","wordtwo","xbox","zl","zlast","zllast","zs"]}
-,
-"langsci-lgr.sty":{"envs":{},"deps":["etoolbox.sty"],"cmds":["A","F","M","N","P","Q","S","ABL","ABS","ACC","ADJ","ADV","AGR","ALL","ANTIP","APPL","ART","AUX","BEN","CAUS","CLF","COM","COMP","COMPL","COND","COP","CVB","DAT","DECL","DEM","DEF","DET","DIST","DISTR","DU","DUR","ERG","EXCL","FOC","FUT","GEN","IMP","INCL","IND","INDF","INF","INS","INTR","IPFV","IRR","LOC","NEG","NMLZ","NOM","OBJ","OBL","PASS","PFV","PL","POSS","PRED","PRF","PRS","PROG","PROH","PROX","PST","PTCP","PURP","QUOT","RECP","REFL","REL","RES","SBJ","SBJV","SG","TOP","TR","VOC"]}
-,
-"langsci-optional.sty":{"envs":["fitverb","widetabular","indentquote"],"deps":["pbox.sty","fancyvrb.sty","array.sty","tabularx.sty","ulem.sty","calc.sty","colortbl.sty","todonotes.sty","pifont.sty"],"cmds":["oneline","centerfit","intline","dline","rotheight","rotwidth","rotatehead","langinfo","langinfoverb","fitpagewidth","fittable","aeiou","aeiouEO","fulllength","ulp","ule","fullllength","soutp","soute","longrule","shadecell","eabox","exbox","rephrase","missref","phonrule","featurebox","connect","thelsConnectTempGroup","ConnectTail","lsConnectTempPosition","ConnectHead","noabstract","LSfrac","hitie","hitier","hitiel","prmbrs","primebars","obar","mbar","ibar","iibar","spec","langscicheckmark","langscicross","citegen","citeapo","protectedex","largerpage","tablevspace","biberror","lsptoprule","lspbottomrule","REF","glottocodes","keywords","ob","cb","op","cp","db","AffiliationsWithoutIndexing","AffiliationsWithIndexing","licencebox"]}
-,
-"langsci-subparts.sty":{"envs":{},"deps":["titlesec.sty","titletoc.sty"],"cmds":["subpart","subpartname","thesubpart"]}
-,
-"langsci-tbls.sty":{"envs":["tblslineshorizontal","tblsfilled","tblsframed","tblsfilledsymbol","tblsframedsymbol"],"deps":["etoolbox.sty","tcolorbox.sty","tcolorboxlibrarybreakable.sty","tcolorboxlibraryskins.sty","mdframed.sty"],"cmds":["langscisymbol","trennlinie","tblsboxcolor","tblslinecolour","tblsfillcolour","tblssy","tblsli","tblsfi","tblsfr","tblsfd"]}
-,
-"langscibook.cls":{"envs":["descriptionFB","modquote"],"deps":["xetex.sty","silence.sty","etoolbox.sty","xparse.sty","langsci-affiliations.sty","xspace.sty","kvoptions.sty","s-scrbook.cls","xstring.sty","graphicx.sty","hyphenat.sty","tikz.sty","tikzlibrarypositioning.sty","tikzlibrarycalc.sty","url.sty","calc.sty","geometry.sty","ifxetex.sty","amssymb.sty","amsmath.sty","unicode-math.sty","metalogo.sty","microtype.sty","xcolor.sty","pst-barcode.sty","datetime.sty","scrlayer-scrpage.sty","epigraph.sty","babel.sty","biblatex.sty","floatrow.sty","rotating.sty","booktabs.sty","setspace.sty","caption.sty","index.sty","hyperref.sty","bookmark.sty","chngcntr.sty","langsci-bidi.sty","xeCJK.sty","newtxmath.sty","lineno.sty","soul.sty"],"cmds":["arabicfont","textarab","captionsngerman","datengerman","extrasngerman","noextrasngerman","dq","ntosstrue","ntossfalse","prefacename","bibname","chaptername","enclname","ccname","headtoname","pagename","seename","alsoname","proofname","glossaryname","mdqon","mdqoff","frenchsetup","frenchbsetup","AddThinSpaceBeforeFootnotes","at","AutoSpaceBeforeFDP","boi","bsc","CaptionSeparator","captionsfrench","circonflexe","dateacadian","datefrench","DecimalMathComma","degre","degres","descindentFB","dotFFN","extrasfrench","FBcolonspace","FBdatebox","FBdatespace","FBeverylineguill","FBfigtabshape","FBfnindent","FBFrenchFootnotesfalse","FBFrenchFootnotestrue","FBFrenchSuperscriptstrue","FBGlobalLayoutFrenchtrue","FBgspchar","FBguillopen","FBguillspace","FBInnerGuillSinglefalse","FBInnerGuillSingletrue","FBListItemsAsParfalse","FBListItemsAsPartrue","FBLowercaseSuperscriptstrue","FBmedkern","FBPartNameFulltrue","FBsetspaces","FBSmallCapsFigTabCaptionstrue","FBStandardEnumerateEnvtrue","FBStandardItemizeEnvtrue","FBStandardItemLabelstrue","FBStandardLayouttrue","FBStandardListSpacingtrue","FBStandardListstrue","FBsupR","FBsupS","FBtextellipsis","FBthickkern","FBthinspace","FBthousandsep","FBWarning","fg","fgi","fgii","fprimo","frenchdate","FrenchEnumerate","FrenchFootnotes","FrenchLabelItem","frenchpartfirst","frenchpartsecond","FrenchPopularEnumerate","frenchtoday","Frlabelitemi","Frlabelitemii","Frlabelitemiii","Frlabelitemiv","frquote","fup","ieme","iemes","ier","iere","ieres","iers","ifFBAutoSpaceFootnotes","ifFBCompactItemize","ifFBCustomiseFigTabCaptions","ifFBfrench","ifFBFrenchFootnotes","ifFBFrenchSuperscripts","ifFBGlobalLayoutFrench","ifFBIndentFirst","ifFBINGuillSpace","ifFBListItemsAsPar","ifFBListOldLayout","ifFBLowercaseSuperscripts","ifFBLuaTeX","ifFBOldFigTabCaptions","ifFBOriginalTypewriter","ifFBPartNameFull","ifFBReduceListSpacing","ifFBShowOptions","ifFBSmallCapsFigTabCaptions","ifFBStandardEnumerateEnv","ifFBStandardItemizeEnv","ifFBStandardItemLabels","ifFBStandardLayout","ifFBStandardLists","ifFBStandardListSpacing","ifFBSuppressWarning","ifFBThinColonSpace","ifFBThinSpaceInFrenchNumbers","ifFBunicode","ifFBXeTeX","ifLaTeXe","kernFFN","labelindentFB","labelwidthFB","leftmarginFB","listfigurename","listindentFB","No","no","NoAutoSpaceBeforeFDP","NoAutoSpacing","NoEveryParQuote","noextrasfrench","nombre","nos","Nos","og","ogi","ogii","parindentFFN","partfirst","partnameord","partsecond","primo","quarto","rmfamilyFB","secundo","sffamilyFB","StandardFootnotes","StandardMathComma","tertio","tild","ttfamilyFB","up","xspace","captionsgerman","dategerman","extrasgerman","noextrasgerman","tosstrue","tossfalse","ck","cn","hebrewfont","jpn","krn","isold","ilold","iaold","syriacfont","lsSaveValueTopSkip","lsSaveValueTextTop","lsSaveValueTextBottom","restorebottom","sloppybottom","abstract","AdditionalFontImprint","affiliation","appendixsection","appendixsectionformat","appendixsectionmarkformat","appendixsubsection","authorToBib","BackBody","backcover","BackTitle","bleed","BookDOI","ccby","ccbynd","ccbysa","chapref","ChapterDOI","chaptersubtitle","coverbottomtext","covergeometry","coversetup","eachwordone","epigram","epigramsource","figref","fontstemp","footnoteindex","frontcovertoptext","githubtext","ia","iai","iasa","igobble","il","ili","illustrator","ilsa","includechapterfooterlogo","includepaper","includepublisherlogo","includespinelogo","includestoragelogo","infn","is","ISBNdigital","ISBNhardcover","ISBNsoftcover","ISBNsoftcoverus","isi","issa","langsciseealso","logotext","lsAbbreviationsTitle","lsAcknowledgementTitle","lsAdditionalFontsImprint","lsBackBody","lsBackBodyFont","lsBackPage","lsBackTitle","lsBackTitleFont","lsBiblatexBackend","lsBookDOI","lsBookLanguage","lsBookLanguageChinese","lsBookLanguageEnglish","lsBookLanguageFrench","lsBookLanguageGerman","lsBookLanguagePortuguese","lsBookLanguageSpanish","lsChapterDOI","lsChapterFooterSize","lsCollectionEditor","lsCollectionMetadataToBibliography","lsCollectionPaperAbstract","lsCollectionPaperAuthor","lsCollectionPaperCitation","lsCollectionPaperCitationText","lsCollectionPaperFirstPage","lsCollectionPaperFooterTitle","lsCollectionPaperHeaderTitle","lsCollectionPaperLastPage","lsCollectionTitle","lsConditionalSetupForPaper","lsCopyright","lsCoverAuthorFont","lsCoverBlockColor","lsCoverFontColor","lsCoverSeriesFont","lsCoverSeriesHistoryFont","lsCoverSubTitleFont","lsCoverTitleFont","lsCoverTitleFontBaselineskip","lsCoverTitleFontSize","lsCoverTitleSizes","lsDedication","lsDedicationFont","lsDetermineMultiauthors","lsEditorPrefix","lsEditorSuffix","lsFontsize","lsFrontPage","lsID","lsImpressum","lsImpressumCitationText","lsImpressumExtra","lsIndexTitle","lsInsideFont","lsISBNcover","lsISBNdigital","lsISBNhardcover","lsISBNhardcoverTwoDigitAddon","lsISBNsoftcover","lsISBNsoftcoverus","lsISSN","lsISSNelectronic","lsISSNprint","lsLanguageIndexTitle","lsLicenseInformation","lsNameIndexTitle","lsOutput","lsOutputBook","lsOutputCoverBODhc","lsOutputCoverBODsc","lsOutputCoverCS","lsOutputGuidelines","lsOutputPaper","lsp","lsPageStyleEmpty","lsPrefaceTitle","LSPTmp","lsReferencesTitle","lsSchmutztitel","lsSeeAlsoTerm","lsSeries","lsSeriesHistory","lsSeriesHistoryWheel","lsSeriesNumber","lsSeriesText","lsSpineAuthor","lsSpineAuthorFont","lsSpineTitle","lsSpineTitleFont","lsSpinewidth","lsSubjectIndexTitle","lsURL","lsYear","name","newlineCover","newlineSpine","newlineTOC","normalparindent","openreviewer","paperhivetext","papernote","partref","proofreader","publisherstreetaddress","publisherurl","sectref","seealso","seitenbreite","seitenhoehe","Series","SeriesNumber","setuptitle","shorttitlerunninghead","SpineAuthor","SpineTitle","spinewidth","storageinstitution","subsubsubsection","subsubsubsectionmark","subsubsubsubsection","subsubsubsubsectionmark","tabref","tblseight","tempnumber","theappendixsection","titleTemp","titleToHead","titleToToC","totalheight","totalwidth","translator","typesetter","URL","xelatex","captionsenglish","dateenglish","extrasenglish","noextrasenglish","englishhyphenmins","britishhyphenmins","americanhyphenmins","mkbibdateunified","citetv","textcitetv","parencitetv","fullciteFooter","fullciteImprint","CiteFullAuthorList","posscitet","posscitealt","possciteauthor","citet","citep","citealt","citealp","citeauthor","citeyearpar","Citet","Citep","Citealt","Citealp","citefullauthor","Citefullauthor","citetext","defcitealias","citetalias","citepalias","ahl","algad","calseries","cam","cfls","cib","classics","cmle","cogl","dummyseries","eotms","eotmsig","eurosla","ela","guidelines","hpls","loc","lsSeriesColor","lsSeriesFontColor","lsSeriesTitle","lv","mi","nc","ogl","ogs","orl","osl","pmwe","rcg","scl","sidl","silp","tbls","tgdi","tmnlp","tpd"]}
-,
-"lapdf.sty":{"envs":["lapdf","pdf"],"deps":["calc.sty"],"cmds":["Abs","Acos","Acosh","Add","Affine","Arc","Arcto","Asin","Asinh","Atan","Atanh","Bezier","Black","Blue","Circle","Closepath","Colval","Concat","Cos","Cosh","Crnd","Cubic","Curve","Curveto","Cyan","Dabs","Dadd","Dash","Dblue","Dcyan","Ddiv","Defdim","Defnum","Deg","Df","Dgray","Dgreen","Dint","Direc","Div","Dmagenta","Dmod","Dmul","Dpoly","Dpx","Dpy","Dred","Dset","Dsig","Dsub","Dtp","Dtt","Dtx","Dty","Dyellow","Ellipse","Epolygon","Euclid","Exp","Fill","Fplot","Fpoly","Gfill","Gray","Green","Grestore","Gsave","Homogen","Hypot","Lapdf","Len","Line","Lineto","Lingrid","Ln","Log","Logxgrid","Logxygrid","Logygrid","Magenta","Mod","Moveto","Mul","Nextcol","Np","PDF","Point","Polgrid","Polygon","Polynom","Pot","Pow","Pplot","Pxy","Quadratic","Rad","Rcurve","Rcurveto","Rect","Rectangle","Red","Resetcol","Rmoveto","Root","Rotate","Rotpoint","Scale","Sector","Set","Setcap","Setclip","Setcol","Setdash","Setflat","Setgray","Setjoin","Setmiter","Setwidth","Sfill","Sig","Sin","Sinh","Sqrt","Stepcol","Stroke","Sub","Tan","Tangent","Tanh","Text","Thick","Thin","Tplot","Translate","Triangle","Ul","Varc","Vect","Vecto","Vpolygon","Whiledim","Whilenum","White","Yellow","col","nP","pdfTeX","lapdf","endlapdf","pdf","endpdf"]}
-,
-"latex-209.sty":{"envs":{},"deps":{},"cmds":{}}
-,
-"latex-dev.sty":{"envs":{},"deps":{},"cmds":["ActivateGenericHook","AddEverypageHook","AddThispageHook","AddToHook","AddToHookNext","AddToNoCaseChangeList","AfterEndEnvironment","ArgumentSpecification","AtBeginDocument","AtBeginDvi","AtBeginEnvironment","AtBeginShipout","AtBeginShipoutAddToBox","AtBeginShipoutAddToBoxForeground","AtBeginShipoutBox","AtBeginShipoutDiscard","AtBeginShipoutFirst","AtBeginShipoutInit","AtBeginShipoutNext","AtBeginShipoutOriginalShipout","AtBeginShipoutUpperLeft","AtBeginShipoutUpperLeftForeground","AtEndDocument","AtEndDvi","AtEndEnvironment","AtEndOfClass","AtEndOfPackage","AtNextShipout","BeforeBeginEnvironment","BeforeClearDocument","BooleanFalse","BooleanTrue","CaseSwitch","CheckCommand","CheckEncodingSubset","ClassError","ClassInfo","ClassNote","ClassNoteNoLine","ClassWarning","ClassWarningNoLine","ClearHookNext","ClearHookRule","CurrentFile","CurrentFilePath","CurrentFilePathUsed","CurrentFileUsed","CurrentOption","DebugHooksOff","DebugHooksOn","DebugMarksOff","DebugMarksOn","DebugShipoutsOff","DebugShipoutsOn","DeclareCaseChangeEquivalent","DeclareCommandCopy","DeclareCurrentRelease","DeclareDefaultHookRule","DeclareDocumentCommand","DeclareDocumentEnvironment","DeclareEmphSequence","DeclareEncodingSubset","DeclareErrorFont","DeclareExpandableDocumentCommand","DeclareFixedFont","DeclareFontEncoding","DeclareFontEncodingDefaults","DeclareFontFamily","DeclareFontFamilySubstitution","DeclareFontSeriesChangeRule","DeclareFontSeriesDefault","DeclareFontShape","DeclareFontShapeChangeRule","DeclareFontSubstitution","DeclareHookRule","DeclareKeys","DeclareMathAccent","DeclareMathAlphabet","DeclareMathDelimiter","DeclareMathRadical","DeclareMathSizes","DeclareMathSymbol","DeclareMathVersion","DeclareOldFontCommand","DeclareOption","DeclarePreloadSizes","DeclareRelease","DeclareRobustCommand","DeclareSizeFunction","DeclareSymbolFont","DeclareSymbolFontAlphabet","DeclareTextAccent","DeclareTextAccentDefault","DeclareTextCommand","DeclareTextCommandDefault","DeclareTextComposite","DeclareTextCompositeCommand","DeclareTextFontCommand","DeclareTextSymbol","DeclareTextSymbolDefault","DeclareUnicodeCharacter","DeclareUnknownKeyHandler","DisableGenericHook","DisableHook","DiscardShipoutBox","EndIncludeInRelease","EndModuleRelease","EveryShipout","ExecuteOptions","ExpandArgs","ExplSyntaxOff","ExplSyntaxOn","FirstMark","GenericError","GenericInfo","GenericWarning","GetDocumentCommandArgSpec","GetDocumentEnvironmentArgSpec","IfBlankF","IfBlankT","IfBlankTF","IfBooleanF","IfBooleanT","IfBooleanTF","IfClassAtLeastTF","IfClassLoadedTF","IfClassLoadedWithOptionsTF","IfFileExists","IfFontSeriesContextTF","IfFormatAtLeastTF","IfHookEmptyTF","IfMarksEqualTF","IfNoValueF","IfNoValueT","IfNoValueTF","IfPackageAtLeastTF","IfPackageLoadedTF","IfPackageLoadedWithOptionsTF","IfPDFManagementActiveTF","IfTargetDateBefore","IfValueF","IfValueT","IfValueTF","IncludeInRelease","IndentBox","InputIfFileExists","InsertMark","LastDeclaredEncoding","LastMark","LoadClass","LoadClassWithOptions","LoadFontDefinitionFile","LogHook","MakeRobust","MessageBreak","NeedsTeXFormat","NewCommandCopy","NewDocumentCommand","NewDocumentEnvironment","NewExpandableDocumentCommand","NewHook","NewMarkClass","NewMirroredHookPair","NewModuleRelease","NewReversedHook","OmitIndent","OptionNotUsed","PackageError","PackageInfo","PackageNote","PackageNoteNoLine","PackageWarning","PackageWarningNoLine","PassOptionsToClass","PassOptionsToPackage","PopDefaultHookLabel","PreviousTotalPages","ProcessedArgument","ProcessKeyOptions","ProcessList","ProcessOptions","ProvideDocumentCommand","ProvideDocumentEnvironment","ProvideExpandableDocumentCommand","ProvideHook","ProvideMirroredHookPair","ProvideReversedHook","ProvidesClass","ProvidesFile","ProvidesPackage","ProvideTextCommand","ProvideTextCommandDefault","PushDefaultHookLabel","RawIndent","RawNoindent","RawParEnd","RawShipout","ReadonlyShipoutCounter","RemoveFromHook","RenewCommandCopy","RenewDocumentCommand","RenewDocumentEnvironment","RenewExpandableDocumentCommand","RequirePackage","RequirePackageWithOptions","ReverseBoolean","SetDefaultHookLabel","SetKeys","SetMathAlphabet","SetSymbolFont","ShipoutBox","ShipoutBoxDepth","ShipoutBoxHeight","ShipoutBoxWidth","ShowCommand","ShowDocumentCommandArgSpec","ShowDocumentEnvironmentArgSpec","ShowFloat","ShowHook","SplitArgument","SplitList","TextSymbolUnavailable","TopMark","TrimSpaces","UndeclareTextCommand","UseHook","UseLegacyTextSymbols","UseName","UseOneTimeHook","UseRawInputEncoding","UseTextAccent","UseTextSymbol","ExplFileDate","ExplLoaderFileDate","ProvidesExplFile","ProvidesExplClass","ProvidesExplPackage","GetIdInfo","DocumentMetadata","IfDocumentMetadataTF","setcounter","setlanguage","setlength","setpapersize","settodepth","settoheight","settowidth","addto","addtocontents","addtocounter","addtolength","addtoversion","addvspace","newcounter","refstepcounter","restorecr","reversemarginpar","stepcounter","stretch","usecounter","usefont","value","newfont","theenumi","theenumii","theenumiii","theenumiv","theequation","thefigure","thefootnote","thempfn","thempfootnote","thepage","theparagraph","thepart","thesection","thesubparagraph","thesubsection","thesubsubsection","thetable","thetotalpages","savebox","makebox","usebox","raisebox","newsavebox","belowcaptionskip","binoppenalty","bottomfraction","bottomnumber","dblfigrule","dblfloatpagefraction","dblfloatsep","dbltextfloatsep","dbltopfraction","dbltopnumber","defaultscriptratio","defaultscriptscriptratio","doublerulesep","footnotesep","footskip","intextsep","itemindent","itemsep","labelenumi","labelenumii","labelenumiii","labelenumiv","labelitemi","labelitemii","labelitemiii","labelitemiv","labelsep","labelwidth","leftmargin","leftmargini","leftmarginii","leftmarginiii","leftmarginiv","leftmarginv","leftmarginvi","leftmark","marginparpush","marginparsep","marginparwidth","paperheight","paperwidth","tabbingsep","tabcolsep","topfigrule","topfraction","topmargin","topnumber","topsep","totalheight","totalnumber","textfloatsep","textfraction","abovecaptionskip","addpenalty","arraycolsep","arrayrulewidth","arraystretch","badness","baselinestretch","columnsep","columnseprule","evensidemargin","extracolsep","fboxrule","fboxsep","floatpagefraction","floatsep","headheight","headsep","height","partopsep","parsep","hideskip","stockheight","stockwidth","efcode","expanded","ifincsname","ifpdfabsdim","ifpdfabsnum","ifpdfprimitive","knaccode","knbccode","knbscode","leftmarginkern","letterspacefont","lpcode","partokencontext","partokenname","pdfadjustinterwordglue","pdfadjustspacing","pdfannot","pdfappendkern","pdfcatalog","pdfcolorstack","pdfcolorstackinit","pdfcompresslevel","pdfcopyfont","pdfcreationdate","pdfdecimaldigits","pdfdest","pdfdestmargin","pdfdraftmode","pdfeachlinedepth","pdfeachlineheight","pdfelapsedtime","pdfendlink","pdfendthread","pdfescapehex","pdfescapename","pdfescapestring","pdffakespace","pdffiledump","pdffilemoddate","pdffilesize","pdffirstlineheight","pdffontattr","pdffontexpand","pdffontname","pdffontobjnum","pdffontsize","pdfforcepagebox","pdfgamma","pdfgentounicode","pdfglyphtounicode","pdfhorigin","pdfignoreddimen","pdfimageapplygamma","pdfimagegamma","pdfimagehicolor","pdfimageresolution","pdfincludechars","pdfinclusioncopyfonts","pdfinclusionerrorlevel","pdfinfo","pdfinfoomitdate","pdfinsertht","pdfinterwordspaceoff","pdfinterwordspaceon","pdflastannot","pdflastlinedepth","pdflastlink","pdflastmatch","pdflastobj","pdflastxform","pdflastximage","pdflastximagecolordepth","pdflastximagepages","pdflastxpos","pdflastypos","pdflinkmargin","pdfliteral","pdfmajorversion","pdfmapfile","pdfmapline","pdfmatch","pdfmdfivesum","pdfminorversion","pdfmovechars","pdfnames","pdfnobuiltintounicode","pdfnoligatures","pdfnormaldeviate","pdfobj","pdfobjcompresslevel","pdfomitcharset","pdfomitinfodict","pdfomitprocset","pdfoutline","pdfoutput","pdfpageattr","pdfpagebox","pdfpageheight","pdfpageref","pdfpageresources","pdfpagesattr","pdfpagewidth","pdfpkmode","pdfpkresolution","pdfprependkern","pdfprimitive","pdfprotrudechars","pdfpxdimen","pdfrandomseed","pdfrefobj","pdfrefxform","pdfrefximage","pdfresettimer","pdfrestore","pdfretval","pdfrunninglinkoff","pdfrunninglinkon","pdfsave","pdfsavepos","pdfsetmatrix","pdfsetrandomseed","pdfshellescape","pdfsnaprefpoint","pdfsnapy","pdfsnapycomp","pdfspacefont","pdfstartlink","pdfstartthread","pdfstrcmp","pdfsuppressptexinfo","pdfsuppresswarningdupdest","pdfsuppresswarningdupmap","pdfsuppresswarningpagegroup","pdftexbanner","pdftexrevision","pdftexversion","pdfthread","pdfthreadmargin","pdftracingfonts","pdftrailer","pdftrailerid","pdfunescapehex","pdfuniformdeviate","pdfuniqueresname","pdfvorigin","pdfxform","pdfxformname","pdfximage","pdfximagebbox","quitvmode","rightmarginkern","rpcode","shbscode","showstream","stbscode","synctex","tagcode","tracingstacklevels","allocationnumber","bfdefault","counterwithin","counterwithout","emforce","eminnershape","emreset","extrafloats","familydefault","fill","hideoutput","IeC","ignorespacesafterend","itdefault","kill","loggingall","loggingoutput","ltcmddate","ltcmdhooksdate","ltcmdhooksversion","ltcmdversion","ltfilehookdate","ltfilehookversion","lthooksdate","lthooksversion","ltmarksdate","ltmarksversion","ltmetadate","ltmetaversion","ltparadate","ltparaversion","ltshipoutdate","ltshipoutversion","mathalpha","mathgroup","mathhexbox","mddefault","nobreakdashes","nobreakspace","normalsfcodes","numberline","poptabs","pushtabs","requestedLaTeXdate","rmdefault","rmsubstdefault","scdefault","secdef","seriesdefault","sfdefault","sfsubstdefault","shapedefault","showoutput","showoverfull","sldefault","sscdefault","swdefault","symletters","symoperators","tencirc","tencircw","tenln","tenlnw","textcompsubstdefault","TextOrMath","tmspace","tracingfonts","tracingnone","ttdefault","ttsubstdefault","ulcdefault","unitlength","updefault"]}
-,
-"latex-document.sty":{"envs":["abstract"],"deps":["latex-dev.sty"],"cmds":["abstractname","addcontentsline","Alph","alph","and","appendix","appendixname","arabic","asciispace","author","ensuremath","bezier","bfseries","bibindent","bibitem","bibliographystyle","bibliography","Bigg","bigg","boldmath","botfigrule","braceld","bracelu","bracerd","braceru","caption","cite","circle","cleardoublepage","clearpage","cline","columnwidth","contentsline","contentsname","dashbox","date","depth","descriptionlabel","dimeval","documentclass","em","emph","encodingdefault","enlargethispage","fbox","figurename","flushbottom","fnsymbol","fontencoding","fontfamily","fontseries","fontseriesforce","fontshape","fontshapeforce","fontsize","fontsubfuzz","footnotemark","footnotesize","footnotetext","footnote","footref","fpeval","frac","framebox","frame","fussy","glossaryentry","glossary","hline","hlinefill","hrule","hspace","huge","Huge","i","ij","IJ","include","includeonly","indexname","indexspace","index","input","inputencodingname","inteval","intop","it","item","iterate","itshape","kill","label","labelformat","labelitemfont","language","languagename","LARGE","Large","large","LaTeX","LaTeXe","lbrack","ldots","lefteqn","lefthyphenmin","legacyoldstylenums","lhook","line","linebreak","linespread","linethickness","linewidth","listfigurename","listfiles","listoffigures","listoftables","listparindent","listtablename","makeatletter","makeatother","makebox","makeglossary","makeindex","makelabel","MakeLowercase","maketitle","MakeTitlecase","MakeUppercase","mapstochar","marginpar","markboth","markright","mathbf","mathcal","mathdollar","mathellipsis","mathgroup","mathindent","mathit","mathnormal","mathparagraph","mathring","mathrm","mathsection","mathsf","mathsterling","mathtt","mathunderscore","mathversion","mbox","medspace","mdseries","multicolumn","multiput","negmedspace","negthickspace","newblock","newlabel","newlength","newline","newpage","newtheorem","NoCaseChange","nocite","nocorr","nocorrlist","nofiles","nolinebreak","nonumber","nopagebreak","noprotrusion","normalcolor","normalfont","normalmarginpar","normalshape","normalsize","nouppercase","obeycr","oddsidemargin","oe","OE","ointop","oldstylenums","onecolumn","oval","pagebreak","pagenumbering","pageref","pagestyle","paragraph","paragraphmark","parbox","part","partname","plus","poptabs","pounds","protect","pushtabs","put","qbezier","qbeziermax","raggedleft","r","rbrack","ref","Ref","refname","relbar","Relbar","rhook","rightmargin","rightmark","rm","rmfamily","Roman","roman","rootbox","rule","SS","samepage","sbox","sc","scriptsize","scshape","section","sectionmark","selectfont","setlength","sf","sffamily","shortstack","skipeval","sl","sloppy","slshape","small","sqrt","sqrtsign","sscshape","stackrel","stepcounter","stop","subitem","subparagraph","subparagraphmark","subsection","subsectionmark","subsubitem","subsubsection","subsubsectionmark","suppressfloats","swshape","symbol","tablename","tableofcontents","tabularnewline","textasciicircum","textasciitilde","textasteriskcentered","textbackslash","textbar","textbardbl","textbf","textbraceleft","textbraceright","textbullet","textcircled","textcommaabove","textcommabelow","textcompwordmark","textcopyright","textdagger","textdaggerdbl","textdollar","textellipsis","textemdash","textendash","textexclamdown","textfiguredash","textgreater","textheight","texthorizontalbar","textit","textless","textmd","textnonbreakinghyphen","textnormal","textparagraph","textperiodcentered","textquestiondown","textquotedblleft","textquotedblright","textquoteleft","textquoteright","textregistered","textrm","textsc","textssc","textsection","textsf","textsl","textsterling","textsubscript","textsuperscript","textsw","texttrademark","texttt","textulc","textunderscore","textup","textvisiblespace","textwidth","thanks","thicklines","thickspace","thinlines","thispagestyle","time","tiny","title","today","tt","ttfamily","twocolumn","typein","typeout","ulcshape","unboldmath","upshape","usepackage","varbigtriangledown","varbigtriangleup","vdots","vector","verb","verbvisiblespace","vline","vspace","width","newcommand","providecommand","newenvironment","renewcommand","renewenvironment","left","right"]}
-,
-"latex-l2tabu.sty":{"envs":["appendix"],"deps":{},"cmds":["centerline","fussy","sloppy"]}
-,
-"latex2man.sty":{"envs":["Name","Table","Description"],"deps":["ifthen.sty","fancyhdr.sty"],"cmds":["COLUMNS","EMPTY","LASTCOL","OPTARG","Opt","Arg","OptArg","OptoArg","oOpt","oArg","oOptArg","oOptoArg","File","Prog","Cmd","Bar","Bs","Tilde","Dots","Bullet","setVersion","setVersionWord","Version","setDate","Date","Email","URL","LatexManEnd","Lbr","Rbr","LBr","RBr","Dollar","Circum","Percent","TEXbr","TEXIbr","MANbr","HTMLbr","SP"]}
-,
-"latexalpha2.sty":{"envs":{},"deps":["graphicx.sty","amsmath.sty","etoolbox.sty","pdftexcmds.sty","morewrites.sty"],"cmds":["wolfram","wolframgraphics","wolframalpha","wolframsolve","wolframdsolve","wolframtex","wolframanimation","backslash","instring","wsreturncodefile","wsreturncode"]}
-,
-"latexbangla.sty":{"envs":["corollary","property","hint","remarks","motive","solution","example","problem","theorem","latin"],"deps":["xetex.sty","polyglossia.sty","fontspec.sty","xkeyval.sty","ifxetex.sty","ucharclasses.sty","titlesec.sty","amsthm.sty","xpatch.sty","amsfonts.sty","amssymb.sty","amsmath.sty","enumerate.sty","chngcntr.sty","hyperref.sty"],"cmds":["thecorollary","theproperty","tobangla","numtobangla","thetheorem","theexample","theproblem","bengalifont","bengalifonttt"]}
-,
-"latexcolors.sty":{"envs":{},"deps":["xcolor.sty"],"cmds":{}}
-,
-"latexdemo.sty":{"envs":["latexresult"],"deps":["listings.sty","xspace.sty","etoolbox.sty","filecontents.sty","mdframed.sty","framed.sty","xcolor.sty","kvoptions.sty","pdftexcmds.sty"],"cmds":["democodefile","democodeprefix","demoresultprefix","PrintDemo","command","cs","arg","marg","oarg","environment","env","package","DemoError","PrintDemoUsingKeys","preResultSkip","resultline","printlatexcode","printlatexresult","printlatexresultlines","PrintCodeAndResultsParallel","PrintCodeAndResultsStacked","PrintCodeAndResultsStackedLines","PrintCodeAndResultsNone","PrintCodeAndResultsPage"]}
-,
-"latexsym.sty":{"envs":{},"deps":{},"cmds":["mho","Join","Box","Diamond","leadsto","sqsubset","sqsupset","lhd","unlhd","rhd","unrhd"]}
-,
-"lato.sty":{"envs":{},"deps":["fontaxes.sty","ifluatex.sty","ifxetex.sty","xkeyval.sty"],"cmds":["lato","latofamily","flafamily"]}
-,
-"layaureo.sty":{"envs":{},"deps":["geometry.sty","calc.sty","keyval.sty"],"cmds":["ProcessOptionsWithKV"]}
-,
-"layout.sty":{"envs":{},"deps":{},"cmds":["layout","Headertext","Bodytext","Footertext","MarginNotestext","oneinchtext","notshown","LayOuttype","LayOutbs","ConvertToCount","SetToHalf","SetToQuart","Identify","InsideHArrow","InsideVArrow","OutsideHArrow","OutsideVArrow","Show","Type","oneinch","fheight","Interval","ExtraYPos","PositionX","PositionY","ArrowLength"]}
-,
-"layouts.sty":{"envs":{},"deps":{},"cmds":["bs","currentfloat","currentfloatpage","currentfootnote","currentheading","currentlist","currentpage","currentparagraph","currentstock","currenttoc","drawaspread","drawdimensionsfalse","drawdimensionstrue","drawfloat","drawfloatpage","drawfontframe","drawfontframelabel","drawfootnote","drawheading","drawlist","drawmarginparsfalse","drawmarginparstrue","drawpage","drawparagraph","drawparametersfalse","drawparameterstrue","drawstock","drawtoc","floatdesign","floatdiagram","floatpagedesign","floatpagediagram","floatpagevalues","floatvalues","footnotedesign","footnotediagram","footnotevalues","headingdesign","headingdiagram","headingvalues","ifdrawdimensions","ifdrawmarginpars","ifdrawparameters","iflistaspara","ifmarginparswitch","ifoddpagelayout","ifprintheadings","ifprintparameters","ifreversemarginpar","ifruninhead","iftwocolumnlayout","layoutsbox","listasparafalse","listasparatrue","listdesign","listdiagram","listvalues","marginparswitchfalse","marginparswitchtrue","oddpagelayoutfalse","oddpagelayouttrue","pagedesign","pagediagram","pagevalues","paragraphdesign","paragraphdiagram","paragraphvalues","printheadingsfalse","printheadingstrue","printinunitsof","printparametersfalse","printparameterstrue","prntlen","reversemarginparfalse","reversemarginpartrue","runinheadfalse","runinheadtrue","setfootbox","setlabelfont","setlayoutscale","setparameterstextsize","setparametertextfont","setuplayouts","setvaluestextsize","spinemargin","stockdesign","stockdiagram","stockheight","stockvalues","stockwidth","testdrawdimensions","testprintparameters","tocdesign","tocdiagram","tocvalues","trimedge","trimtop","tryafterskip","trybeforeskip","trybotfigrule","trybottomfraction","trybottomnumber","trycolumnsep","trycolumnseprule","tryevensidemargin","tryfloatsep","tryfootins","tryfootnotebaseline","tryfootnotesep","tryfootrulefrac","tryfootruleheight","tryfootskip","tryheadheight","tryheadsep","tryhoffset","tryindent","tryintextsep","tryitemindent","tryitemsep","trylabelsep","trylabelwidth","tryleftmargin","trylistparindent","trymarginparpush","trymarginparsep","trymarginparwidth","tryoddsidemargin","trypaperheight","trypaperwidth","tryparbaselineskip","tryparindent","tryparlinewidth","tryparsep","tryparskip","trypartopsep","tryrightmargin","tryspinemargin","trystockheight","trystockwidth","trytextfloatsep","trytextfraction","trytextheight","trytextwidth","trytocdotsep","trytocindent","trytoclinewidth","trytocnumwidth","trytocpnumwidth","trytocrmarg","trytopfigrule","trytopfraction","trytopmargin","trytopnumber","trytopsep","trytotalnumber","trytrimedge","trytrimtop","tryuppermargin","tryvoffset","twocolumnlayoutfalse","twocolumnlayouttrue","uppermargin"]}
-,
-"lazylist.sty":{"envs":{},"deps":{},"cmds":["Identity","Error","First","Second","Compose","Twiddle","True","False","Not","And","Or","Lift","Lessthan","gobblefalse","gobbletrue","TeXif","Nil","Cons","Stream","Singleton","Head","Tail","Foldl","Foldr","Cat","Reverse","All","Some","Isempty","Filter","Map","Insert","Insertsort","Unlistize","Commaize","Listize","Show"]}
-,
-"lccaps.sty":{"envs":{},"deps":["iftex.sty","textcase.sty","microtype.sty"],"cmds":["textlcc","spacedcaps","textslcc","textssc"]}
-,
-"lcd.sty":{"envs":{},"deps":{},"cmds":["DefineLCDchar","LCDcolors","LCD","LCDframe","LCDnoframe","textLCD","textLCDcorr","LCDunitlength","filedate","fileversion"]}
-,
-"lcg.sty":{"envs":{},"deps":["keyval.sty"],"cmds":["rand","reinitrand","chgrand"]}
-,
-"leading.sty":{"envs":{},"deps":["calc.sty"],"cmds":["leading"]}
-,
-"leadsheet.cls":{"envs":["prechorus"],"deps":["s-scrartcl.cls","etoolbox.sty","leadsheets.sty","scrlayer-scrpage.sty","translations.sty","zref-totpages.sty"],"cmds":["instruction","choir","lsenparen","mkinstruction","mkchoir","mklsenparens","mklsenparen"]}
-,
-"leadsheets.sty":{"envs":["song","verse","verse*","chorus","chorus*","intro","intro*","outro","interlude","bridge","info","solo","solo*"],"deps":["expl3.sty","translations.sty","fontspec.sty","etoolbox.sty"],"cmds":["useleadsheetslibraries","useleadsheetslibrary","musix","textmusix","musicsymbol","sharp","flat","doublesharp","doubleflat","natural","trebleclef","bassclef","altoclef","allabreve","meterC","wholerest","halfrest","quarterrest","eighthrest","sixteenthrest","Break","normalbar","leftrepeat","rightrepeat","leftrightrepeat","doublebar","stopbar","normalbarwidth","thickbarwidth","interbarwidth","meter","chordname","writechord","setchords","musejazz","setleadsheets","capo","newversetype","provideversetype","chord","definesongtitletemplate","definesongproperty","copysongproperty","songproperty","printsongpropertylist","usesongpropertylist","forsongpropertylist","ifsongproperty","ifanysongproperty","ifallsongproperties","ifsongpropertiesequal","ifsongpropertyequal","ifsongmeasuring","expandcode","defineversetypetemplate","verselabel","verselabelformat","verseafterlabel","versename","versenumber","ifversestarred","ifversenumbered","ifversenamed","ifobeylines","includeleadsheet","AddExternalClass","AddExternalFile","AddExternalPackage","coda","defleadsheetstranslation","eigthnote","genericbar","getorprintchord","halfdim","halfnote","LeadsheetEndSurvive","leadsheetsdate","LeadsheetsExplLibrary","leadsheetsiflibrary","leadsheetsifpackageloaded","leadsheetsinfo","LeadsheetsLibrary","leadsheetstranslate","LeadsheetSurvive","leadsheetsversion","musicdot","quarternote","recallchord","segno","sixteenthnote","wholenote"]}
-,
-"leaflet.cls":{"envs":{},"deps":["graphicx.sty","pifont.sty"],"cmds":["setmargins","CutLine","AddToBackground","noparskip","sectfont","descfont","foldmarkrule","foldmarklength","Scissors","iflandscape","landscapetrue","landscapefalse","iftumble","tumbletrue","tumblefalse","iftwopart","twoparttrue","twopartfalse","iffoldcorr","foldcorrtrue","foldcorrfalse"]}
-,
-"lebhart.cls":{"envs":{},"deps":["silence.sty","geometry.sty","indentfirst.sty","colorist.sty","projlib-font.sty","fontspec.sty","ctex.sty","amssymb.sty","unicode-math.sty","tikz-cd.sty","nowidow.sty","regexpatch.sty","embrac.sty","graphicx.sty","wrapfig.sty","float.sty","caption.sty","draftwatermark.sty","mathpazo.sty"],"cmds":["captionsjapanese","datejapanese","extrasjapanese","noextrasjapanese","cyrdash","asbuk","Asbuk","Russian","sh","ch","tg","ctg","arctg","arcctg","th","cth","cosec","Prob","Variance","NOD","nod","NOK","nok","Proj","cyrillicencoding","cyrillictext","cyr","textcyrillic","dq","captionsrussian","daterussian","extrasrussian","noextrasrussian","CYRA","CYRB","CYRV","CYRG","CYRGUP","CYRD","CYRE","CYRIE","CYRZH","CYRZ","CYRI","CYRII","CYRYI","CYRISHRT","CYRK","CYRL","CYRM","CYRN","CYRO","CYRP","CYRR","CYRS","CYRT","CYRU","CYRF","CYRH","CYRC","CYRCH","CYRSH","CYRSHCH","CYRYU","CYRYA","CYRSFTSN","CYRERY","cyra","cyrb","cyrv","cyrg","cyrgup","cyrd","cyre","cyrie","cyrzh","cyrz","cyri","cyrii","cyryi","cyrishrt","cyrk","cyrl","cyrm","cyrn","cyro","cyrp","cyrr","cyrs","cyrt","cyru","cyrf","cyrh","cyrc","cyrch","cyrsh","cyrshch","cyryu","cyrya","cyrsftsn","cyrery","cdash","tocname","authorname","acronymname","lstlistingname","lstlistlistingname","notesname","nomname","xlongequal","xtwoheadrightarrow","xtwoheadleftarrow","IfPrintModeTF","IfPrintModeT","IfPrintModeF","loweredvdots","mdwhtsquare","unicodevdots"]}
-,
-"lecturer.sty":{"envs":{},"deps":["yax.sty"],"cmds":["slide","endslide","step","slideno","slidenumber","presentationonly","handoutonly","presentationorhandout","setslide","setstep","showgrid","hidegrids","position","setarea","createbookmark","showbookmarks","anchor","goto","gotoA","gotoB","firstslide","lastslide","prevslide","nextslide","prevstep","nextstep","showorhide","newcolor","usecolor","newshade","newimage","useimage","newsymbol","symbolwidth","symbolheight","symboldepth","newtransition","addtopageobject","addtoeachpageobject","addtopageresources","addproperties","addshading","addgstate","addOCG","addvisibleOCG"]}
-,
-"lectureslides.sty":{"envs":{},"deps":["xparse.sty","pdfpages.sty","tocloft.sty","hyperref.sty","babel.sty"],"cmds":["course","lecture","lecturetitle","lectureslides","tocline","createdAt","orientation","thispackage","toclevel"]}
-,
-"leftidx.sty":{"envs":{},"deps":{},"cmds":["leftidx","ltrans"]}
-,
-"leftindex.sty":{"envs":{},"deps":["xparse.sty","mathtools.sty"],"cmds":["leftindex","manualleftindex"]}
-,
-"leipzig.sty":{"envs":{},"deps":["glossaries.sty","glossary-inline.sty","glossary-mcols.sty","glossary-tree.sty","glossaries-babel.sty","glossaries-compatible-207.sty"],"cmds":["newleipzig","renewleipzig","printglosses","printleipzig","leipzigfont","firstleipzigfont","ifleipzighyper","leipzighypertrue","leipzighyperfalse","leipzigname","ifleipzigdesccapitalize","leipzigdesccapitalizetrue","leipzigdesccapitalizefalse","ifleipzignonumbers","leipzignonumberstrue","leipzignonumbersfalse","ifleipzigdonotindex","leipzigdonotindextrue","leipzigdonotindexfalse","leipzigtype","glspostnamespace","glsinlineshortlongseparator","Aarg","Abl","Abs","Acc","Adj","Adv","Agr","All","Antip","Appl","Art","Aux","Ben","Caus","Clf","Com","Comp","Compl","Cond","Cop","Cvb","Dat","Decl","Def","Dem","Det","Dist","Distr","Du","Dur","Erg","Excl","F","Foc","Fut","Gen","Imp","Incl","Ind","Indf","Inf","Ins","Intr","Ipfv","Irr","Loc","M","N","Neg","Nmlz","Nom","Obj","Obl","Parg","Pass","Pfv","Pl","Poss","Pred","Prf","Prs","Prog","Proh","Prox","Pst","Ptcp","Purp","Q","Quot","Recp","Refl","Rel","Res","Sarg","Sbj","Sbjv","Sg","Top","Tr","Voc","First","Second","Third","Fsg","Fdu","Fpl","Ssg","Sdu","Spl","Tsg","Tdu","Tpl","Subj","glsshowtarget","glsshowtargetouter","glsshowtargetfont","glsshowaccsupp","printsymbols","printnumbers","newterm","printindex","printacronyms","DeclareAcronymList","SetAcronymLists","glsIfListOfAcronyms","DefineAcronymSynonyms","acs","Acs","acsp","Acsp","acl","Acl","aclp","Aclp","acf","Acf","acfp","Acfp","ac","Ac","acp","Acp"]}
-,
-"lengthconvert.sty":{"envs":{},"deps":["l3keys2e.sty"],"cmds":["Convert","Convertsetup"]}
-,
-"letgut-banner.sty":{"envs":{},"deps":["l3keys2e.sty","xcolor.sty","accsupp.sty"],"cmds":{}}
-,
-"letgut.cls":{"envs":["ltx-code","ltx-code-result","ltx-code-external-result","ctannews","bookreview","announcement","rebus","descriptionFB"],"deps":["luatex.sty","l3keys2e.sty","fontspec.sty","microtype.sty","parskip.sty","fancyhdr.sty","geometry.sty","graphicx.sty","biolinum.sty","array.sty","etoc.sty","enumitem.sty","titlesec.sty","xcolor.sty","fourier-orns.sty","pgfornament.sty","placeins.sty","fancyvrb.sty","booktabs.sty","csquotes.sty","mathtools.sty","accsupp.sty","siunitx.sty","bxtexlogo.sty","tcolorbox.sty","standalone.sty","attachfile2.sty","refcount.sty","ninecolors.sty","tabularray.sty","babel.sty","varioref.sty","eurosym.sty","listings.sty","floatrow.sty","biblatex.sty","acro.sty","xurl.sty","hyperref.sty","hypcap.sty","cleveref.sty","letgut-banner.sty","tcolorboxlibrarylistings.sty","tcolorboxlibrarybreakable.sty","tcolorboxlibraryskins.sty","tcolorboxlibraryhooks.sty","tcolorboxlibrarydocumentation.sty","colortbl.sty"],"cmds":["letgutsetup","inputarticle","title","subtitle","person","author","package","class","software","file","foreignloc","latinloc","Ucode","gutenberg","gut","assogut","Assogut","lettres","lettresgut","cahier","cahiers","Cahier","Cahiers","cahiergut","cahiersgut","letgut","letgutcls","knuth","lamport","tl","tugboat","linux","macos","windows","lettrenumber","lettre","lettregut","syntaxhl","terminal","item","francophony","letgutacro","separator","solution","rebussolution","alertbox","letgutissn","ctan","pdf","orcid","faq","svg","dns","vps","ldap","otf","doi","issn","tug","wcag","html","css","utf","pgf","gpl","ofl","dvi","ipa","tipa","xml","apa","os","bsd","imap","smtp","rtf","wysiwyg","iso","off","csv","yaml","uca","nfss","ascii","tds","smai","ag","ca","shs","irem","meef","ecm","grappa","bbb","cv","rgpd","ndlr","bts","apmep","pao","frenchsetup","frenchbsetup","AddThinSpaceBeforeFootnotes","alsoname","at","AutoSpaceBeforeFDP","boi","bname","bsc","CaptionSeparator","captionsfrench","ccname","chaptername","circonflexe","dateacadian","datefrench","DecimalMathComma","degre","degres","descindentFB","dotFFN","enclname","extrasfrench","FBcolonspace","FBdatebox","FBdatespace","FBeverylineguill","FBfigtabshape","FBfnindent","FBFrenchFootnotesfalse","FBFrenchFootnotestrue","FBFrenchSuperscriptstrue","FBGlobalLayoutFrenchtrue","FBgspchar","FBguillopen","FBguillspace","FBInnerGuillSinglefalse","FBInnerGuillSingletrue","FBListItemsAsParfalse","FBListItemsAsPartrue","FBLowercaseSuperscriptstrue","FBmedkern","FBPartNameFulltrue","FBsetspaces","FBSmallCapsFigTabCaptionstrue","FBStandardEnumerateEnvtrue","FBStandardItemizeEnvtrue","FBStandardItemLabelstrue","FBStandardLayouttrue","FBStandardListSpacingtrue","FBStandardListstrue","FBsupR","FBsupS","FBtextellipsis","FBthickkern","FBthinspace","FBthousandsep","FBWarning","fg","fgi","fgii","fprimo","frenchdate","FrenchEnumerate","FrenchFootnotes","FrenchLabelItem","frenchpartfirst","frenchpartsecond","FrenchPopularEnumerate","frenchtoday","Frlabelitemi","Frlabelitemii","Frlabelitemiii","Frlabelitemiv","frquote","fup","glossaryname","headtoname","ieme","iemes","ier","iere","ieres","iers","ifFBAutoSpaceFootnotes","ifFBCompactItemize","ifFBCustomiseFigTabCaptions","ifFBfrench","ifFBFrenchFootnotes","ifFBFrenchSuperscripts","ifFBGlobalLayoutFrench","ifFBIndentFirst","ifFBINGuillSpace","ifFBListItemsAsPar","ifFBListOldLayout","ifFBLowercaseSuperscripts","ifFBLuaTeX","ifFBOldFigTabCaptions","ifFBOriginalTypewriter","ifFBPartNameFull","ifFBReduceListSpacing","ifFBShowOptions","ifFBSmallCapsFigTabCaptions","ifFBStandardEnumerateEnv","ifFBStandardItemizeEnv","ifFBStandardItemLabels","ifFBStandardLayout","ifFBStandardLists","ifFBStandardListSpacing","ifFBSuppressWarning","ifFBThinColonSpace","ifFBThinSpaceInFrenchNumbers","ifFBunicode","ifFBXeTeX","ifLaTeXe","kernFFN","labelindentFB","labelwidthFB","leftmarginFB","listfigurename","listindentFB","No","no","NoAutoSpaceBeforeFDP","NoAutoSpacing","NoEveryParQuote","noextrasfrench","nombre","nos","Nos","og","ogi","ogii","pagename","parindentFFN","partfirst","partnameord","partsecond","prefacename","primo","proofname","quarto","rmfamilyFB","secundo","seename","sffamilyFB","StandardFootnotes","StandardMathComma","tertio","tild","ttfamilyFB","up","xspace","captionsenglish","dateenglish","extrasenglish","noextrasenglish","englishhyphenmins","britishhyphenmins","americanhyphenmins","displaysolutions","listofcontributors"]}
-,
-"letltxmacro.sty":{"envs":{},"deps":{},"cmds":["GlobalLetLtxMacro","LetLtxMacro"]}
-,
-"letter.cls":{"envs":["letter"],"deps":{},"cmds":["address","signature","opening","closing","cc","encl","name","ps","location","telephone","subject","makelabels","ccname","enclname","fromaddress","fromlocation","fromname","fromsig","headtoname","indentedwidth","labelcount","longindentation","mlabel","pagename","returnaddress","startbreaks","startlabels","stopbreaks","stopletter","telephonenum","toaddress","toname"]}
-,
-"letterspace.sty":{"envs":{},"deps":["keyval.sty"],"cmds":["textls","lsstyle","lslig"]}
-,
-"letterswitharrows.sty":{"envs":{},"deps":["expl3.sty","xparse.sty","l3keys2e.sty","mathtools.sty","pgf.sty"],"cmds":["arrowoverset","vA","vB","vC","vD","vE","vF","vG","vH","vI","vJ","vK","vL","vM","vN","vO","vP","vQ","vR","vS","vT","vU","vV","vW","vX","vY","vZ","va","vb","vc","vd","ve","vf","vg","vh","vi","vj","vk","vl","vm","vn","vo","vp","vq","vr","vs","vt","vu","vright","vw","vx","vy","vz","Av","Bv","Cv","Dv","Ev","Fv","Gv","Hv","Iv","Jv","Kv","Lv","Mv","Nv","Ov","Pv","Qv","Rv","Sv","Tv","Uv","Vv","Wv","Xv","Yv","Zv","av","bv","cv","dv","ev","fv","gv","hv","iv","jv","kv","lv","mv","nv","ov","pv","qv","rv","sv","tv","uv","vleft","wv","xv","yv","zv","vcA","vcB","vcC","vcD","vcE","vcF","vcG","vcH","vcI","vcJ","vcK","vcL","vcM","vcN","vcO","vcP","vcQ","vcR","vcS","vcT","vcU","vcV","vcW","vcX","vcY","vcZ","cAv","cBv","cCv","cDv","cEv","cFv","cGv","cHv","cIv","cJv","cKv","cLv","cMv","cNv","cOv","cPv","cQv","cRv","cSv","cTv","cUv","cVv","cWv","cXv","cYv","cZv","vec","cev"]}
-,
-"lettre.cls":{"envs":["letter","telefax"],"deps":["etoolbox.sty","graphicx.sty"],"cmds":["opening","closing","Nref","Vref","telex","ccp","makelabels","address","location","addpages","telephone","fax","email","lieu","name","signature","secondsignature","thirdsignature","username","bitnet","ccitt","decnet","internet","telepac","lettreselectlanguage","tension","marge","basdepage","conc","ps","encl","mencl","cc","detailledaddress","institut","notelephone","nofax","nolieu","nodate","faxwarning","telefaxstring","telephonelabelname","telefaxlabelname","telefaxname","tellabelname","faxlabelname","telexlabelname","headtoname","headfromname","pagetotalname","concname","ccname","enclname","mentionname","vrefname","nrefname","letterwidth","lettermargin","listmargin","openingspace","openingindent","sigspace","ssigwidth","ssigindent","msigwidth","FAXSTR","auxcount","auxflag","auxline","bdp","bitnetnum","ccittnum","ccpnum","concdecl","concline","decnetnum","emailcount","emailflag","emailine","emailnum","faxopening","faxpage","flushleft","fromaddress","fromlocation","fromref","fromsig","fromssig","fromtsig","infos","internetnum","letteropening","LettreDeclareLanguage","lettrelabelselectlanguage","lettrelmpselectlanguage","lettreloadlang","LettreProvidesLanguage","mlabel","noinfos","pdate","resetauxenv","resetcloseenv","resetemailenv","resetopenenv","sigflag","signum","startlabels","stopfax","stopletter","telepacnum","telexnum","tofaxnum","toref","totalpages","trfam","treit","trten","trfvtn","psobs","dhfam","cmd","Cmd","CMD","addressobs","lieuobs","telephoneobs","faxobs","ccpobs","ccittobs","internetobs","ftpobs","wwwobs","nref","vref","francais","romand","anglais","americain","allemand"]}
-,
-"lettrine.sty":{"envs":{},"deps":["xkeyval.sty","minifp.sty"],"cmds":["lettrine","DefaultFindent","DefaultLhang","DefaultLoversize","DefaultLraise","DefaultNindent","DefaultOptionsFile","DefaultSlope","DiscardVskip","LettrineDepth","theDefaultLines","theDefaultDepth","LettrineFont","LettrineFontHook","LettrineHeight","LettrineImage","ifLettrineImage","LettrineImagetrue","LettrineImagefalse","ifLettrineOnGrid","LettrineOnGridtrue","LettrineOnGridfalse","LettrineOptionsFor","ifLettrineRealHeight","LettrineRealHeightfalse","LettrineRealHeighttrue","LettrineSecondString","LettrineTestString","LettrineTextFont","LettrineWidth"]}
-,
-"lewisstruc.sty":{"envs":{},"deps":["aliphat.sty"],"cmds":["chemradicalA","chemradicalB","leftlonepairover","leftlonepairunder","LewisSbond","LewisTetrahedralA","LewistetrahedralA","LewisTetrahedralB","LewistetrahedralB","lonepairA","lonepairB","overpair","overpairover","rightlonepairover","rightlonepairunder","underpair","underpairunder","chemradical","dotnodimension","Eastlonepair","fromfourobjects","horizontalpair","lonepairAitoiv","lonepairBitoiv","NEbondlonepair","nelonepair","Northlonepair","NWbondlonepair","nwlonepair","SEbondlonepair","selonepair","Southlonepair","SWbondlonepair","swlonepair","tetraradical","tetraradicalB","verticalpair","Westlonepair","ylLewisTetrahedralAposition","ylLewisTetrahedralBposition"]}
-,
-"lexend.sty":{"envs":{},"deps":["expl3.sty","fontspec.sty","kvoptions.sty"],"cmds":["LexendDeca","LexendExa","LexendGiga","LexendMega","LexendPeta","LexendTera","LexendZetta","LexendVariants"]}
-,
-"lexref.sty":{"envs":{},"deps":["etoolbox.sty","xargs.sty","xstring.sty","nomencl.sty","splitidx.sty","ifthen.sty","stringstrings.sty"],"cmds":["DeclareLex","sq","sqq","bis","ter","quater","quinquies","sexies","septies","octies","nonies","RenewLexShortcut","lexciteindextempone","thelexcitecountinteger","NewLexShortcut","LexRefPrefixTests","LexRef","LexRefns","npLexRef","npLexRefns","LexIndex"]}
-,
-"lgrmath.sty":{"envs":{},"deps":["kvoptions.sty"],"cmds":["lgrmathsetup","lgrmathup","lgrmathit","lgrmathgreektable","lgrmathgreektableextra","Alpha","Beta","Chi","Digamma","digamma","Epsilon","Eta","Iota","Kappa","koppa","Mu","Nu","Omicron","omicron","Rho","Sampi","sampi","Tau","varSigma","varvarsigma","Zeta","Alphait","alphait","Alphaup","alphaup","Betait","betait","Betaup","betaup","Chiit","chiit","Chiup","chiup","Deltait","deltait","Deltaup","deltaup","digammait","Digammait","digammaup","Digammaup","Epsilonit","epsilonit","Epsilonup","epsilonup","Etait","etait","Etaup","etaup","Gammait","gammait","Gammaup","gammaup","Iotait","iotait","Iotaup","iotaup","Kappait","kappait","Kappaup","kappaup","koppait","koppaup","Lambdait","lambdait","Lambdaup","lambdaup","Muit","muit","Muup","muup","Nuit","nuit","Nuup","nuup","Omegait","omegait","Omegaup","omegaup","Omicronit","omicronit","Omicronup","omicronup","Phiit","phiit","Phiup","phiup","Piit","piit","Piup","piup","Psiit","psiit","Psiup","psiup","Rhoit","rhoit","Rhoup","rhoup","Sampiit","sampiit","Sampiup","sampiup","Sigmait","sigmait","Sigmaup","sigmaup","Tauit","tauit","Tauup","tauup","Thetait","thetait","Thetaup","thetaup","Upsilonit","upsilonit","Upsilonup","upsilonup","varsigmait","varSigmait","varsigmaup","varSigmaup","varvarsigmait","varvarsigmaup","Xiit","xiit","Xiup","xiup","Zetait","zetait","Zetaup","zetaup"]}
-,
-"lhelp.sty":{"envs":["Eenumerate","Eitemize","enumerateshort","itemizeshort","narrowpars"],"deps":["color.sty","graphics.sty"],"cmds":["g","kg","mm","mum","cm","m","ml","mL","ns","mus","ms","s","h","degree","Degree","celsius","fahren","muA","muH","muV","muW","ohm","kohm","Mohm","ac","dc","rms","Vac","Vdc","VLL","kVLL","cref","Cref","sref","Sref","aref","Aref","fref","Fref","tref","Tref","pgref","Pgref","phref","Phref","ddmonthyyyy","HUGE","veryhuge","veryHuge","veryHUGE","selectD","selectNZ","selectUK","selectUSA","lhelpxspace","draftname","draftfont","putdraftmarkps","ifprintnotes","printnotestrue","printnotesfalse","yyyymmdd","hour","minute","timehhmm","todayaddtime","ul","ulbf","lineout","larr","rarr","bs","PP","MM","PM","about","eg","ie","etc","ca","resp","Discuss","Edit","Mark","diameter","careof","fparbox","xyfparbox","lrlap","tlap","blap","tblap","rtlap","rblap","vnull","vnul","hrulenull","notes","nnotes","bnotemark","enotemark","notesfont","includelower","ifinclude","theexcludelevel","EPSfileext","placeEPS","EPSopt","addEPSopt","listlabelleft","listlabelleftindent","listshort","clearoddpage","clearevenpage","clearthispage","newoddpage","newevenpage","ensureonecolumn","ensuretwocolumn","ensurecolumnend","minlinelen","absval","hanghere","labelhangindent","gobble","gobbletwo","thinthinspace","setTBstruts","T","B","placepos","PSadjust"]}
-,
-"libertine.sty":{"envs":{},"deps":["ifxetex.sty","xkeyval.sty","mweights.sty","fontaxes.sty"],"cmds":["oldstylenums","oldstylenumsf","liningnums","liningnumsf","tabularnums","tabularnumsf","proportionalnums","proportionalnumsf","sufigures","textsu","textsuperior","libertine","libertineSB","libertineOsF","libertineLF","libertineDisplay","libmono","libertineInitial","biolinum","biolinumOsF","biolinumLF","libertineInitialGlyph","libertineGlyph","biolinumGlyph","biolinumKeyGlyph","biolinumkey","LKeyTux","LKeyWin","LKeyMenu","LKeyStrg","LKeyCtrl","LKeyAlt","LKeyAltGr","LKeyShift","LKeyEnter","LKeyTab","LKeyCapsLock","LKeyPos","LKeyEntf","LKeyEinf","LKeyLeer","LKeyEsc","LKeyEnde","LKeyBack","LKeyUp","LKeyDown","LKeyLeft","LKeyRight","LKeyPgUp","LKeyPgDown","LKeyAt","LKeyFn","LKeyHome","LKeyDel","LKeySpace","LKeyScreenUp","LKeyScreenDown","LKeyIns","LKeyEnd","LKeyGNU","LKeyPageUp","LKeyPageDown","LKeyCommand","LKeyOptionKey","LKeyF","LKeyPad","LKey","LKeyStrgX","LKeyCtrlX","LKeyShiftX","LKeyAltX","LKeyAltGrX","LKeyShiftStrgX","LKeyShiftCtrlX","LKeyShiftAltX","LKeyShiftAltGrX","LKeyStrgAltX","LKeyStrgAltEnt","LKeyReset","LKeyCtrlAltX","LKeyCtrlAltEnt","LKeyAltF","LKeyStrgAltF","LKeyCtrlAltF","LMouseEmpty","LMouseN","LMouseL","LMouseM","LMouseR","LMouseLR","LMouseIIEmpty","LMouseIIN","LMouseIIL","LMouseIIR","LMouseIILR","DeclareTextGlyphY","useosf"]}
-,
-"libertineMono.sty":{"envs":{},"deps":["ifxetex.sty","ifluatex.sty","xkeyval.sty","textcomp.sty","mweights.sty","fontenc.sty","fontaxes.sty"],"cmds":["libmono"]}
-,
-"libertineRoman.sty":{"envs":{},"deps":["ifxetex.sty","ifluatex.sty","xkeyval.sty","textcomp.sty","mweights.sty","fontenc.sty","fontaxes.sty"],"cmds":["libertine","libertineSB","libertineOsF","libertineLF","libertineDisplay","libertineInitial","sufigures","textsu","textsuperior","oldstylenums","liningnums","oldstylenumsf","liningnumsf","tabularnums","proportionalnums","DeclareTextGlyphY","libertineGlyph","libertineInitialGlyph"]}
-,
-"libertinegc.sty":{"envs":{},"deps":["libertine.sty","xkeyval.sty","fontenc.sty"],"cmds":["fileversion","filedate"]}
-,
-"libertinus-otf.sty":{"envs":{},"deps":["ifxetex.sty","ifluatex.sty","xkeyval.sty","textcomp.sty","unicode-math.sty"],"cmds":["biolinumKeyGlyph","BiolinumKeyGlyph","Land","LCASE","Lcase","LCPSP","Lcpsp","LCtoSC","Lctosc","LCtoSMCP","Lctosmcp","LDLIG","Ldlig","LFRAC","Lfrac","LHLIG","Lhlig","LibertinusDisplay","LibertinusInitials","Libertinusinitials","LibertinusKeyboard","LibertinusMono","LibertinusSans","LibertinusSansOsF","LibertinusSansTLF","LibertinusSerif","LibertinusSerifOsF","LibertinusSerifSB","LibertinusSerifTLF","LKey","LKeyAlt","LKeyAltApple","LKeyAltAppleX","LKeyAltF","LKeyAltGr","LKeyAltGrX","LKeyAltX","LKeyAt","LKeyBack","LKeyBildDown","LKeyBildUp","LKeyCapslock","LKeyCtrl","LKeyDel","LKeyDown","LKeyEinf","LKeyEnd","LKeyEnde","LKeyEnter","LKeyEntf","LKeyEsc","LKeyF","LKeyFn","LKeyGNU","LKeyHome","LKeyIns","LKeyLeer","LKeyLeft","LKeyMenu","LKeyOptionKey","LKeyPad","LKeyPageDown","LKeyPageUp","LKeyPos","LKeyReset","LKeyRight","LKeyShift","LKeyShiftAltGrX","LKeyShiftAltX","LKeyShiftStrgX","LKeyShiftX","LKeySpace","LKeyStrg","LKeyStrgAltEntf","LKeyStrgAltF","LKeyStrgAltX","LKeyStrgX","LKeyTab","LKeyUp","LKeyWin","LKeyWindows","LLIGA","Lliga","LSALT","Lsalt","Lsinf","Lss","LSS","Lsup","sufigures","textinit","textsbf","textsup","Wikipedia","WikipediaW","acwgapcirclearrow","astrosun","barleftarrow","barleftarrowrightarrowbar","barovernorthwestarrow","blackcircleulquadwhite","blacklefthalfcircle","blackrighthalfcircle","blacksmiley","bullseye","candra","caretinsert","circlebottomhalfblack","circlelefthalfblack","circleonleftarrow","circleonrightarrow","circlerighthalfblack","circletophalfblack","circleurquadblack","cuberoot","cwgapcirclearrow","Ddownarrow","downdasharrow","downzigzagarrow","droang","dsol","enleadertwodots","equalrightarrow","Exclam","fcmp","female","fisheye","fourthroot","harrowextender","Hermaphrodite","house","intextender","Lbrbrak","lcurvyangle","leftarrowsimilar","leftarrowtriangle","leftdasharrow","leftmoon","leftrightarrowtriangle","leftwavearrow","llparenthesis","male","mbfDigamma","mbfdigamma","mbfscra","mbfscrb","mbfscrc","mbfscrd","mbfscre","mbfscrf","mbfscrg","mbfscrh","mbfscri","mbfscrj","mbfscrk","mbfscrl","mbfscrm","mbfscrn","mbfscro","mbfscrp","mbfscrq","mbfscrr","mbfscrs","mbfscrt","mbfscru","mbfscrv","mbfscrw","mbfscrx","mbfscry","mbfscrz","mdlgblkdiamond","mdlgwhtdiamond","mdsmwhtcircle","mscra","mscrb","mscrc","mscrd","mscre","mscrf","mscrg","mscrh","mscri","mscrj","mscrk","mscrl","mscrm","mscrn","mscro","mscrp","mscrq","mscrr","mscrs","mscrt","mscru","mscrv","mscrw","mscrx","mscry","mscrz","nHdownarrow","nHuparrow","nvleftarrow","nVleftarrow","nvLeftarrow","nvleftrightarrow","nVleftrightarrow","nvLeftrightarrow","nvrightarrow","nVrightarrow","nvRightarrow","ocommatopright","otimeshat","oturnedcomma","preceqq","precneq","quarternote","Question","Rbrbrak","rcurvyangle","rightarrowapprox","rightarrowbar","rightarrowsimilar","rightarrowtriangle","rightdasharrow","rightmoon","rightwavearrow","rrparenthesis","rsolbar","similarrightarrow","succeqq","succneq","sun","twonotes","typecolon","upbackepsilon","updasharrow","upDigamma","updigamma","updownarrowbar","Uuparrow","whitearrowupfrombar","Zbar"]}
-,
-"libertinus-type1.sty":{"envs":{},"deps":["ifxetex.sty","ifluatex.sty","textcomp.sty","xkeyval.sty","fontenc.sty","fontaxes.sty"],"cmds":["LibertinusSerif","LibertinusSerifSB","LibertinusSerifOsF","LibertinusSerifTLF","LibertinusSerifLF","LibertinusSans","LibertinusSansOsF","LibertinusSansTLF","LibertinusSansLF","LibertinusMono","LibertinusDisplay","LibertinusInitials","LibertinusKeyboard","Libertinusinitials","libertinusseriflgr","libertinussanslgr","sufigures","textsup","textsuperior","useosf"]}
-,
-"libertinust1math.sty":{"envs":{},"deps":["xkeyval.sty","etoolbox.sty","amsmath.sty","amsthm.sty"],"cmds":["adots","alphait","alphaup","Angstrom","annuity","approxeq","approxident","arceq","assert","asteraccent","backcong","backdprime","backepsilon","backprime","backsim","backsimeq","backtrprime","because","betait","betaup","beth","between","bigblacktriangledown","bigblacktriangleup","bigcapop","bigcupdot","bigcupdotop","bigcupop","bigodotop","bigoplusop","bigotimesop","bigsqcap","bigsqcapop","bigsqcupop","biguplusop","bigveeop","bigwedgeop","blacksquare","blacktriangledown","blacktriangleleft","blacktriangleright","Box","boxdot","boxminus","boxplus","boxtimes","braceex","bracemd","bracemu","bracketex","bracketld","bracketlu","bracketrd","bracketru","bullseye","Bumpeq","bumpeq","candra","caretinsert","centerdot","checkmark","checkmarkmath","chiit","chiup","circeq","circledast","circledcirc","circleddash","circledequal","closure","Colon","coloneq","complement","coprodop","cupdot","cupleftarrow","curlyeqprec","curlyeqsucc","curlyvee","curlywedge","daleth","dashcolon","degree","Deltait","deltait","Deltaup","deltaup","diameter","Diamond","digamma","dlb","Doteq","doteqdot","dotminus","dotplus","dotsminusdots","downparenfill","dprime","drb","droang","dsol","enclosecircle","enclosesquare","enclosetriangle","enleadertwodots","epsilonit","epsilonup","eqcirc","eqcolon","eqdef","eqgtr","eqless","eqsim","Equiv","etait","etaup","Eulerconst","Exclam","fallingdotseq","Finv","fisheye","fracslash","Game","Gammait","gammait","Gammaup","gammaup","geqq","ggg","gggtr","gimel","gneqq","gnsim","gtrdot","gtreqless","gtrless","gtrsim","Hfraktur","house","hslash","hyphenbullet","iiiintop","iiiintslop","iiiintupop","iiintop","iiintslop","iiintupop","iintop","iintslop","iintupop","increment","intop","intslop","intupop","invlazys","invnot","iotait","iotaup","italpha","itbeta","itchi","itDelta","itdelta","itepsilon","iteta","itGamma","itgamma","itiota","itkappa","itLambda","itlambda","itmu","itnu","itOmega","itomega","itPhi","itphi","itPi","itpi","itPsi","itpsi","itrho","itSigma","itsigma","ittau","itTheta","ittheta","itUpsilon","itupsilon","itvarepsilon","itvarkappa","itvarphi","itvarpi","itvarrho","itvarsigma","itvartheta","itXi","itxi","itzeta","kappait","kappaup","kernelcontraction","Lambdait","lambdait","Lambdaup","lambdaup","lBrack","leftarrowaccent","leftharpoonaccent","leftrightarrowaccent","leftrightharpoons","leqq","lessdot","lesseqgtr","lessgtr","lesssim","lhd","lhook","lll","llless","lneqq","lnsim","longmapsfrom","Longmapsfrom","Longmapsto","lozenge","ltimes","Mapsfrom","mapsfrom","Mapsto","mathbb","mathbcal","mathbfit","mathboldsans","mathdollar","mathparagraph","mathsection","mathsfbf","mathsfbfit","mathvisiblespace","mdlgblkcircle","mdlgblkdiamond","mdlgblksquare","mdlgwhtcircle","mdlgwhtdiamond","mdlgwhtlozenge","mdlgwhtsquare","measeq","measuredangle","mho","muit","musicalnote","muup","napprox","nasymp","ncong","Nearrow","nequiv","nexists","nge","ngeq","ngets","ngtr","ngtrless","ngtrsim","nle","nleftarrow","nLeftarrow","nleftrightarrow","nLeftrightarrow","nleq","nless","nlessgtr","nlesssim","nmid","nni","notchar","nparallel","nPerp","nprec","npreccurlyeq","nrightarrow","nRightarrow","nsim","nsime","nsimeq","nsqsubseteq","nsqsupseteq","nsubset","nsubseteq","nsucc","nsucccurlyeq","nsupset","nsupseteq","ntrianglelefteq","ntrianglerighteq","nuit","nuup","nvartriangleleft","nvartriangleright","nvdash","nvDash","nVdash","nVDash","Nwarrow","ocommatopright","oiint","oiintop","oiintslop","oiintupop","ointop","ointslop","ointupop","Omegait","omegait","Omegaup","omegaup","origof","oturnedcomma","overbracket","overparen","ovhook","parenex","parenld","parenlu","parenrd","parenru","Perp","Phiit","phiit","Phiup","phiup","Piit","piit","Piup","piup","preccurlyeq","preceqq","precneq","precneqq","precnsim","precsim","prodop","prurel","Psiit","psiit","Psiup","psiup","QED","qprime","questeq","Question","rBrack","rhd","rhoit","rhook","rhoup","rightangle","rightarrowaccent","rightharpoonaccent","risingdotseq","rsolbar","rtimes","sansLmirrored","sansLturned","Searrow","Sigmait","sigmait","Sigmaup","sigmaup","simneqq","sinewave","smallcoprod","smalliiiint","smalliiiintsl","smalliiiintup","smalliiint","smalliiintsl","smalliiintup","smalliint","smalliintsl","smalliintup","smallin","smallintsl","smallintup","smallni","smalloiint","smalloiintsl","smalloiintup","smalloint","smallointsl","smallointup","smallprod","smallsetminus","smallsum","smblkcircle","smwhtcircle","smwhtdiamond","sphericalangle","sqsubset","sqsubsetneq","sqsupset","sqsupsetneq","square","stareq","subsetneq","succcurlyeq","succeqq","succneq","succneqq","succnsim","succsim","sumop","supsetneq","Swarrow","tauit","tauup","therefore","Thetait","thetait","Thetaup","thetaup","thickapprox","thicksim","triangledown","trianglelefteq","triangleq","trianglerighteq","trprime","turnediota","underbracket","underparen","unicodecdots","unicodeellipsis","unlhd","unrhd","upalpha","upand","upbackepsilon","upbeta","upchi","upDelta","updelta","upepsilon","upeta","upGamma","upgamma","upiota","upkappa","upLambda","uplambda","upmu","upnu","upOmega","upomega","upparenfill","uppartial","upPhi","upphi","upPi","uppi","upPsi","uppsi","uprho","upSigma","upsigma","Upsilonit","upsilonit","Upsilonup","upsilonup","uptau","upTheta","uptheta","upUpsilon","upupsilon","upvarepsilon","upvarkappa","upvarphi","upvarpi","upvarrho","upvarsigma","upvartheta","upXi","upxi","upzeta","varepsilonit","varepsilonup","varkappa","varkappait","varkappaup","varnothing","varphiit","varphiup","varpiit","varpiup","varrhoit","varrhoup","varsigmait","varsigmaup","varthetait","varthetaup","vartriangleleft","vartriangleright","VDash","vDash","Vdash","vdotsmath","veeeq","vertoverlay","vv","Vvdash","Vvert","vysmblkcircle","vysmwhtcircle","wedgeq","widebar","widebridgeabove","widecheck","xbsol","xbsolop","Xiit","xiit","Xiup","xiup","xsol","xsolop","Yup","Zbar","zetait","zetaup","mathsfit","mathbold","vectorsym","matrixsym","tensorsym","ShowMathFonts","loadsubfile","readsufile"]}
-,
-"libgreek.sty":{"envs":{},"deps":["kvoptions.sty"],"cmds":["libgreeksetup","libgreekup","libgreekit","Alpha","alphatonos","Beta","Chi","digamma","Digamma","Epsilon","epsilontonos","Eta","etatonos","Iota","iotadieresis","iotadieresistonos","iotatonos","Kappa","koppa","Mu","Nu","omegatonos","Omicron","omicron","omicrontonos","Rho","sampi","Sampi","Tau","upsilondieresis","upsilondieresistonos","upsilontonos","varSigma","varvarsigma","Zeta","Alphait","alphait","alphatonosit","alphatonosup","Alphaup","alphaup","Betait","betait","Betaup","betaup","Chiit","chiit","Chiup","chiup","Deltait","deltait","Deltaup","deltaup","digammait","Digammait","digammaup","Digammaup","Epsilonit","epsilonit","epsilontonosit","epsilontonosup","Epsilonup","epsilonup","Etait","etait","etatonosit","etatonosup","Etaup","etaup","Gammait","gammait","Gammaup","gammaup","iotadieresisit","iotadieresistonosit","iotadieresistonosup","iotadieresisup","Iotait","iotait","iotatonosit","iotatonosup","Iotaup","iotaup","Kappait","kappait","Kappaup","kappaup","koppait","koppaup","Lambdait","lambdait","Lambdaup","lambdaup","Muit","muit","Muup","muup","Nuit","nuit","Nuup","nuup","Omegait","omegait","omegatonosit","omegatonosup","Omegaup","omegaup","Omicronit","omicronit","omicrontonosit","omicrontonosup","Omicronup","omicronup","Phiit","phiit","Phiup","phiup","Piit","piit","Piup","piup","Psiit","psiit","Psiup","psiup","Rhoit","rhoit","Rhoup","rhoup","Sampiit","sampiit","Sampiup","sampiup","Sigmait","sigmait","Sigmaup","sigmaup","Tauit","tauit","Tauup","tauup","Thetait","thetait","Thetaup","thetaup","upsilondieresisit","upsilondieresistonosit","upsilondieresistonosup","upsilondieresisup","Upsilonit","upsilonit","upsilontonosit","upsilontonosup","Upsilonup","upsilonup","varsigmait","varSigmait","varsigmaup","varSigmaup","varvarsigmait","varvarsigmaup","Xiit","xiit","Xiup","xiup","Zetait","zetait","Zetaup","zetaup"]}
-,
-"librarian.sty":{"envs":{},"deps":{},"cmds":["Cite","EntryKey","BibFile","SortingOrder","SortList","ReadList","ifequalentry","equalentrytrue","equalentryfalse","SortDef","WriteInfo","WriteImmediateInfo","Preamble","CreateField","AbbreviateFirstname","RetrieveField","RetrieveFieldFor","RetrieveFieldIn","RetrieveFieldInFor","EntryNumber","EntryNumberFor","EntryNumberIn","EntryNumberInFor","ReadName","ReadNameFor","Firstname","Lastname","Von","Junior","NameCount","ReadNames","ReadNamesFor","ReadAuthor","ReadAuthorFor","ReadAuthors","ReadAuthorsFor","ReadEditor","ReadEditorFor","ReadEditors","ReadEditorsFor","TypesetField","TypesetFieldFor","CheckEntry","MakeCiteName","MakeReference","hash"]}
-,
-"librebaskerville.sty":{"envs":{},"deps":["ifxetex.sty","ifluatex.sty","textcomp.sty","xkeyval.sty","fontenc.sty","fontaxes.sty"],"cmds":["librebaskerville","sufigures","textsu","librebaskervillefamily"]}
-,
-"librecaslon.sty":{"envs":{},"deps":["ifxetex.sty","ifluatex.sty","xkeyval.sty","textcomp.sty","fontenc.sty","fontaxes.sty"],"cmds":["librecaslon","librecaslonLF","librecaslonOsF","librecaslonTLF","textsu","sufigures","textin","infigures","useosf"]}
-,
-"librefranklin.sty":{"envs":{},"deps":["ifxetex.sty","ifluatex.sty","xkeyval.sty","textcomp.sty","fontenc.sty","fontaxes.sty","mweights.sty"],"cmds":["librefranklin","sufigures","textsu","textsuperior","librefranklinfamily"]}
-,
-"libris.sty":{"envs":{},"deps":["nfssext-cfr.sty","fontenc.sty","textcomp.sty"],"cmds":["swashstyle","textswash","DH","NG","dj","ng","k","guillemotleft","guillemotright","guilsinglleft","guilsinglright","quotedblbase","quotesinglbase","textquotedbl","DJ","th","TH","dh","Hwithstroke","hwithstroke","textogonekcentered","guillemetleft","guillemetright"]}
-,
-"lie-hasse.sty":{"envs":{},"deps":["xcolor.sty","dynkin-diagrams.sty","tikzlibrarypositioning.sty","tikzlibraryfadings.sty","tikzlibraryquotes.sty"],"cmds":["hasse","hasseDiagrams","rootSystemHeight","rootSystemWidthAtGrade","rootSum","drawRootAsDynkinSum","forAllPositiveRootsInHasseDiagram","studyHasseDiagramOfRootSystem","doRootThing","drawRootDecomp","backwardsGtwo","attachDynkin","doHasseDiagram","forscsvlist","drpo","drmo","tdrpt","maxy","lbl","drmt","iD","xxD","maxxD"]}
-,
-"liftarm.sty":{"envs":["liftarmconstruction"],"deps":["etoolbox.sty","xcolor.sty","tikz.sty","tikzlibrarycalc.sty"],"cmds":["liftarm","liftarmconnect","liftarmconstruct","liftarmanimate"]}
-,
-"ligtype.sty":{"envs":{},"deps":["ifluatex.sty","luatexbase.sty"],"cmds":["nolig","keeplig","ligtypeon","ligtypeoff"]}
-,
-"lilyglyphs.sty":{"envs":{},"deps":["keyval.sty","pgf.sty","adjustbox.sty","ifluatex.sty","ifxetex.sty","luaotfload.sty","luacode.sty"],"cmds":["lilyglyphs","lilyOpticalSuffix","lilyOpticalSize","lilyGlobalOptions","interpretLilyOptions","lilyEffectiveScale","lilyEffectiveRaise","lilyPrint","currentFontRatio","currentFontSize","normalFontSize","getCurrentFontRatio","lilyScaleImage","lilyImageEffectiveScale","lilyPrintImage","lilyGetGlyph","lilyGetGlyphByNumber","lilyGlyph","lilyGlyphByNumber","lilyText","lilyImage","lilyDot","lilyCalcDotSpace","lilyDotSpaceF","lilySetDotOptions","lilyDotScale","lilyDotRaise","lilyDotSpace","lilyPrintDot","lilyPrintMoreDots","clefG","clefGInline","clefF","clefFInline","clefC","clefCInline","lilyTimeC","lilyTimeCHalf","lilyTimeSignature","lilyDynamics","lilyRF","lilyRFZ","decrescHairpin","crescHairpin","natural","flat","flatflat","sharp","sharpArrowup","sharpArrowdown","sharpArrowboth","sharpSlashslashStem","sharpSlashslashslashStemstem","sharpSlashslashslashStem","sharpSlashslashStemstemstem","doublesharp","wholeNoteRest","wholeNoteRestDotted","halfNoteRest","halfNoteRestDotted","crotchetRest","crotchetRestDotted","quaverRest","quaverRestDotted","semiquaverRest","semiquaverRestDotted","fermata","lilyAccent","lilyEspressivo","lilyStaccato","lilyThumb","marcato","marcatoDown","portato","portatoDown","staccatissimo","tenuto","accordionBayanBass","accordionDiscant","accordionDot","accordionFreeBass","accordionOldEE","accordionPull","accordionPush","accordionStdBass","semibreve","wholeNote","semibreveDotted","wholeNoteDotted","minim","halfNote","minimDown","halfNoteDown","minimDotted","halfNoteDotted","minimDottedDown","halfNoteDottedDown","minimDottedDouble","halfNoteDottedDouble","minimDottedDoubleDown","halfNoteDottedDoubleDown","crotchet","quarterNote","crotchetDown","quarterNoteDown","crotchetDotted","quarterNoteDotted","crotchetDottedDown","quarterNoteDottedDown","crotchetDottedDouble","quarterNoteDottedDouble","crotchetDottedDoubleDown","quarterNoteDottedDoubleDown","quaver","eighthNote","quaverDown","eighthNoteDown","quaverDotted","eighthNoteDotted","quaverDottedDown","eighthNoteDottedDown","quaverDottedDouble","eighthNoteDottedDouble","quaverDottedDoubleDown","eighthNoteDottedDoubleDown","semiquaver","sixteenthNote","semiquaverDown","sixteenthNoteDown","semiquaverDotted","sixteenthNoteDotted","semiquaverDottedDown","sixteenthNoteDottedDown","semiquaverDottedDouble","sixteenthNoteDottedDouble","semiquaverDottedDoubleDown","sixteenthNoteDottedDoubleDown","demisemiquaver","thirtysecondNote","demisemiquaverDotted","thirtysecondNoteDotted","demisemiquaverDottedDouble","thirtysecondNoteDottedDouble","demisemiquaverDottedDoubleDown","thirtysecondNoteDottedDoubleDown","demisemiquaverDottedDown","thirtysecondNoteDottedDown","demisemiquaverDown","thirtysecondNoteDown","twoBeamedQuavers","threeBeamedQuavers","threeBeamedQuaversI","threeBeamedQuaversII","threeBeamedQuaversIII","lilyFancyExample"]}
-,
-"limap.cls":{"envs":["Map","MapTabular","Abstract"],"deps":["longtable.sty","etoolbox.sty","booktabs.sty","fancyhdr.sty","s-report.cls","s-book.cls","s-letter.cls","s-scrreprt.cls"],"cmds":["Block","MapBlockLabelFont","MapParskip","MapTitleFraction","MapTextFraction","MapRuleWidth","MapRuleStart","WideBlock","MapFont","MapTitleFont","MapContinued","MapContinuing","MapTitleContinuedFont","MapNewpage","MapTOC","MapTableOfContents","MapTableOfContentsStyle","MapBlockStartHook","MapBlockTOC","MapTabularFraction","MapTOCname","MapTOCpage","filename","fileversion","filedate","docversion","docdate","defineLimapLanguage","MapContinuingFormat","MapContinuedFormat","MapTOCheadfont","MakeTitle"]}
-,
-"limap.sty":{"envs":["Map","MapTabular","Abstract"],"deps":["longtable.sty","etoolbox.sty","booktabs.sty"],"cmds":["Block","MapBlockLabelFont","MapParskip","MapTitleFraction","MapTextFraction","MapRuleWidth","MapRuleStart","WideBlock","MapFont","MapTitleFont","MapContinued","MapContinuing","MapTitleContinuedFont","MapNewpage","MapTOC","MapTableOfContents","MapTableOfContentsStyle","MapBlockStartHook","MapBlockTOC","MapTabularFraction","MapTOCname","MapTOCpage","filename","fileversion","filedate","docversion","docdate","defineLimapLanguage","MapContinuingFormat","MapContinuedFormat","MapTOCheadfont","MakeTitle"]}
-,
-"limecv.cls":{"envs":["cvSidebar","cvSidebar*","cvProfile","cvContact","cvLanguages","cvInterests","cvProjects","cvMainContent","cvMainContent*","cvEducation","cvExperience","cvSkills","cvReferences","cvCoverLetter"],"deps":["kvoptions.sty","ifxetex.sty","ifluatex.sty","calc.sty","xcolor.sty","tabularx.sty","hyperref.sty","url.sty","parskip.sty","xstring.sty","xkeyval.sty","tikz.sty","graphicx.sty","tikzlibrarycalc.sty","tikzlibrarypositioning.sty","tikzlibraryfit.sty","tikzlibrarybackgrounds.sty","tikzlibrarymatrix.sty","fontspec.sty","fontawesome5.sty"],"cmds":["cvSetLanguage","cvID","cvContactAddress","cvContactEmail","cvContactPhone","cvContactWebsite","cvContactGithub","cvContactGitlab","cvContactLinkedin","cvContactTwitter","cvContactKeybase","cvLanguage","cvInterestsPersonal","cvInterestsProfessional","cvInterest","cvProject","cvItem","cvSkillTwo","cvSkillOne","cvAddReference","cvBeneficiary","cvFullName","cvColSep","cvNodeSep","cvTimeDotDiameter","cvMargin","cvSideWidth","cvMainWidth","cvTimeDotSep","cvStartEndSep","cvItemSep","cvTableSepWidth","cvCoverLetterHeight","cvCoverLetterWidth","cvPictureWidth","cvProgressAreaWidth","cvProgressAreaHeight","cvSectionSep","cvSectionSBSep","cvTitleLineWidth","cvTitleLineSpacing","cvProjectDetailsSep","cvInterestDetailsSep","cvContactItemSep","cvCoverLetterLineWidth","cvCoverLetterPositionSpacing","cvSBSectionLineWidth","cvCoverLetterLineSpacing","cvIDNameSep","cvPositionSep","cvSkillSep","cvHeaderIconWidth","cvComma","ifnodedefined","globalcolor","faVcard","kright","kleft","extract","cvList","cvContactTemplate"]}
-,
-"linearb.sty":{"envs":{},"deps":{},"cmds":["textlinb","linbfamily","Ba","Baii","Baiii","Bau","Bda","Bde","Bdi","Bdo","Bdu","Bdwe","Bdwo","Be","Bi","Bja","Bje","Bjo","Bju","Bka","Bke","Bki","Bko","Bku","Bma","Bme","Bmi","Bmo","Bmu","Bna","BNc","BNcc","BNccc","BNcd","BNcm","BNd","BNdc","BNdcc","BNdccc","Bne","Bni","BNi","BNii","BNiii","BNiv","BNix","BNl","BNlx","BNlxx","BNlxxx","BNm","Bno","Bnu","BNv","BNvi","BNvii","BNviii","Bnwa","BNx","BNxc","BNxl","BNxx","BNxxx","Bo","Bpa","Bpaiii","BParrow","BPbarley","BPbilly","BPboar","BPbronze","BPbull","BPchariot","BPchassis","BPcloth","BPcow","Bpe","BPewe","BPfoal","BPgoat","BPgold","BPhorse","Bpi","BPman","BPnanny","Bpo","BPolive","BPox","BPpig","BPram","BPsheep","BPsow","BPspear","BPsword","BPtalent","Bpte","Bpu","Bpuii","BPvola","BPvolb","BPvolcd","BPvolcf","BPwheat","BPwheel","BPwine","BPwoman","BPwool","BPwta","BPwtb","BPwtc","BPwtd","Bqa","Bqe","Bqi","Bqo","Bra","Braii","Braiii","Bre","Bri","Bro","Broii","Bru","Bsa","Bse","Bsi","Bso","Bsu","Bswa","Bswi","Bta","Btaii","Bte","Bti","Bto","Btu","Btwo","Bu","Bwa","Bwe","Bwi","Bwo","Bza","Bze","Bzo","translitlinb","translitlinbfont"]}
-,
-"linebreaker.sty":{"envs":{},"deps":["luatexbase.sty"],"cmds":["linebreakersetup","linebreakerenable","linebreakerdisable"]}
-,
-"linegoal.sty":{"envs":{},"deps":["etex.sty","zref.sty","zref-savepos.sty"],"cmds":["linegoal"]}
-,
-"lineno.sty":{"envs":["linenumbers","linenumbers*","runninglinenumbers","runninglinenumbers*","pagewiselinenumbers","linenomath","linenomath*","numquote","numquote*","numquotation","numquotation*","bframe","internallinenumbers","internallinenumbers*"],"deps":["etoolbox.sty","vplref.sty","ednmath0.sty","edtable.sty","longtable.sty","ltabptch.sty"],"cmds":["linenumbers","nolinenumbers","resetlinenumber","setrunninglinenumbers","runninglinenumbers","setpagewiselinenumbers","pagewiselinenumbers","switchlinenumbers","runningpagewiselinenumbers","realpagewiselinenumbers","leftlinenumbers","rightlinenumbers","modulolinenumbers","linenumberfont","linenumbersep","linenumberwidth","thelinenumber","makeLineNumber","LineNumber","makeLineNumberRunning","makeLineNumberOdd","makeLineNumberEven","makeLineNumberLeft","makeLineNumberRight","linelabel","lineref","linerefr","linerefp","quotelinenumbers","quotelinenumbersep","quotelinenumberfont","numquotelist","internallinenumbers","bframesep","bframerule","bframebox","stepLineNumber","linenopenalty","linenopenaltypar","LineNoTest","LineNoLaTeXOutput","MakeLineNo","WriteLineNo","PassVadjustList","linenoprevgraf","linenumberpar","ifLineNumbers","LineNumbersfalse","LineNumberstrue","endrunninglinenumbers","endpagewiselinenumbers","endnolinenumbers","linenomath","linenomathNonumbers","linenomathWithnumbers","linenumberdisplaymath","nolinenumberdisplaymath","endlinenomath","theLineNumber","setmakelinenumbers","logtheLineNumber","LastNumberedPage","lastLN","firstLN","pageLN","nextLN","NumberedPageCache","testLastNumberedPage","testFirstNumberedPage","testNumberedPage","testNextNumberedPage","getLineNumber","ifoddNumberedPage","oddNumberedPagetrue","oddNumberedPagefalse","ifcolumnwiselinenumbers","columnwiselinenumberstrue","columnwiselinenumbersfalse","gotNumberedPage","subtractlinenumberoffset","thePagewiseLineNumber","makePagewiseLineNumber","getpagewiselinenumber","themodulolinenumber","firstlinenumber","endinternallinenumbers","internallinenumberpar","makeinternalLinenumbers","PostponeVadjust"]}
-,
-"linenoamsmath.sty":{"envs":{},"deps":["amsmath.sty","lineno.sty","etoolbox.sty","vplref.sty","ednmath0.sty","edtable.sty","longtable.sty","ltabptch.sty"],"cmds":{}}
-,
-"ling-macros.sty":{"envs":["context"],"deps":["gb4e.sty","stmaryrd.sty","amssymb.sty","pbox.sty","ulem.sty","upgreek.sty","relsize.sty"],"cmds":["nl","m","mc","mb","ol","alert","term","ix","ux","superx","bex","fex","bxl","fxl","ben","fen","bit","fit","underlying","becomes","spoken","environ","spot","syll","fmleft","fmright","fmat","prule","iparule","pruleset","iparuleset","head","xbar","lv","feat","textfeat","dcopy","mroot","ufeat","unv","readas","lam","lamd","all","some","no","ddet","pri","type","uptype","set","varset","cvarset","funcnote","fleft","func","fright","scopebox","innerscopebox","den","dena","denac","denamod","denacmod","denol","denola","denolac","denolamod","denolacmod","lessthanten","tenormore","bexskip","bxlskip","bexsep","bxlsep","bexindent","bxlindent","fexskip","fxlskip","bexlabel","bxllabel","featuresize","prulewidth","environset","scopewidth"]}
-,
-"linguex.sty":{"envs":{},"deps":["cgloss4e.sty","xspace.sty"],"cmds":["ex","a","b","c","d","e","f","z","Next","NNext","Last","LLast","firstrefdash","TextNext","exg","ag","bg","cg","dg","eg","fg","exi","ai","I","exig","exgi","aig","agi","Exindent","Exlabelwidth","Exlabelsep","Extopsep","SubExleftmargin","SubSubExleftmargin","resetExdefaults","ifalignSubEx","alignSubExtrue","alignSubExfalse","alignSubExnegindent","Exredux","theExNo","theSubExNo","theSubSubExNo","theFnExNo","ExLBr","ExRBr","FnExLBr","FnExRBr","theExLBr","theExRBr","theFnExLBr","theFnExRBr","SubExLBr","SubExRBr","SubSubExLBr","SubSubExRBr","AddInfo","checkforbr","checkforbrorstar","CollectTokens","complexExNo","copyExNo","currentlabel","digitwidth","doaword","embeddedfalse","embeddedtrue","Exalph","Exarabic","ExEnd","Exformat","Exroman","ExWarningfalse","ExWarningtrue","finish","firstwordfalse","firstwordtrue","glossfalse","glosstrue","GTest","ifembedded","ifExWarning","iffirstword","ifgloss","ifindex","ifNoFnRef","ifunembedded","indexfalse","indextrue","jetzt","labelBr","lessthanhundred","lessthanten","lessthanthousand","listdecl","lookforwords","mindigitwidth","minimalwidth","newb","newExitem","newgll","newglossa","newglossai","newglossex","newglossexi","newglossitem","NoFnReffalse","NoFnReftrue","NormalEx","oldb","oldc","oldd","OptArgEx","philarge","philmiddle","philsmall","phlabeldefault","phlabelwidth","predefinedfootnotetext","printExNo","printGramm","recTestForGramm","recurseonbr","secondrefdash","stripoffbr","SubExlabel","TestForGramm","testforgramm","testGrAndBr","theABC","theExDepth","theTempExDepth","thetmpaEx","trivex","unembeddedfalse","unembeddedtrue"]}
-,
-"linguisticspro.sty":{"envs":{},"deps":["ifxetex.sty","ifluatex.sty","xkeyval.sty","textcomp.sty","fontenc.sty","fontaxes.sty","mweights.sty"],"cmds":["linguisticspro","linguisticsproLF","linguisticsproOsF","linguisticsprolgr","linguisticsprot"]}
-,
-"linop.sty":{"envs":{},"deps":["xparse.sty","bm.sty"],"cmds":["op","hc","linopconjugate","linopspacewide","linopspacewidehc","linopstyle","linopstylewide","linopsubscript","linopsuperscript","linopsuperscripthc"]}
-,
-"linsys.sty":{"envs":["linsys"],"deps":["array.sty","pifont.sty"],"cmds":{}}
-,
-"lips.sty":{"envs":{},"deps":{},"cmds":["lips","LPNobreakList","BracketedLips","GobbleIgnoreSpaces","Lips","olips"]}
-,
-"lipsum.sty":{"envs":{},"deps":["l3keys2e.sty","xparse.sty"],"cmds":["lipsum","unpacklipsum","lipsumexp","setlipsum","SetLipsumText","SetLipsumDefault","LipsumPar","SetLipsumParListStart","SetLipsumParListEnd","SetLipsumSentenceListStart","SetLipsumSentenceListEnd","SetLipsumParListSurrounders","SetLipsumSentenceListSurrounders","SetLipsumParListItemStart","SetLipsumParListItemEnd","SetLipsumSentenceListItemStart","SetLipsumSentenceListItemEnd","SetLipsumParListItemSurrounders","SetLipsumSentenceListItemSurrounders","SetLipsumParListItemSeparator","SetLipsumSentenceListItemSeparator","LipsumProtect","LipsumRestoreParList","LipsumRestoreSentenceList","LipsumRestoreAll","NewLipsumPar","SetLipsumLanguage"]}
-,
-"listing.sty":{"envs":["listing"],"deps":{},"cmds":["listoflistings","listingname","listlistingname","thelisting","filename","fileversion","filedate"]}
-,
-"listings-ext.sty":{"envs":{},"deps":["listings.sty","xkeyval.sty"],"cmds":["lstdef","lstcheck","lstuse"]}
-,
-"listings.sty":{"envs":["lstlisting"],"deps":["keyval.sty"],"cmds":["lstloadlanguages","lstset","lstinline","lstinputlisting","lstdefinestyle","thelstnumber","theHlstnumber","thelstlabel","lstlistoflistings","lstlistlistingname","lstlistingname","lstlistingnamestyle","thelstlisting","lstname","lstindexmacro","lstnewenvironment","lstMakeShortInline","lstDeleteShortInline","lstdefinelanguage","lstalias","lstaspectfiles","lstlanguagefiles","lstloadaspects","lststylefiles","theHlstlisting","lstlgrindeffile","lstdefineformat","lstformatfiles"]}
-,
-"listingsutf8.sty":{"envs":{},"deps":["listings.sty","inputenc.sty","pdftexcmds.sty","stringenc.sty"],"cmds":["lstlgrindeffile","lstdefineformat"]}
-,
-"listlbls.sty":{"envs":{},"deps":["translations.sty"],"cmds":["listoflabels"]}
-,
-"listliketab.sty":{"envs":["listliketab"],"deps":["calc.sty","array.sty"],"cmds":["storestyleof","storeliststyle"]}
-,
-"listofanswers.sty":{"envs":{},"deps":{},"cmds":["exercise","subexercise","group","listofanswers","answershead","answersname","answerstype","exercisesname","groupname","theexercise","thegroup","thesubexercise","exerciseNoStarOne","exerciseNoStarTwo","exerciseNoStar","exerciseStar","subexerciseOne","subexerciseTwo"]}
-,
-"listofitems.sty":{"envs":{},"deps":{},"cmds":["setsepchar","readlist","greadlist","showitems","ignoreemptyitems","reademptyitems","foreachitem","in","itemtomacro","gitemtomacro","listlen","defpair","insidepair","loiname","loiver","loidate"]}
-,
-"listofsymbols.sty":{"envs":{},"deps":["ifthen.sty","calc.sty","xspace.sty","nomencl.sty"],"cmds":["opensymdef","closesymdef","newsym","newsub","subsep","listofsymbols","symwidth","symindent","sympagenowidth","listofsubscripts","listofboth","symheadingname","subheadingname","bothheadingname","markasused","markasunused","dontmarkasused","losstring","printsymline","addsymline","symheading","subheading","spaceaftersym"]}
-,
-"listpen.sty":{"envs":{},"deps":{},"cmds":["allowprelistbreaks","allowpostlistbreaks","allowitembreaks","RestoreSpaces","RemoveSpaces","newseparatedlabel","newseparatedref","makelabelseparator"]}
-,
-"llncs.cls":{"envs":["theorem","claim","proof","case","conjecture","corollary","definition","example","exercise","lemma","note","problem","property","proposition","question","solution","remark"],"deps":["aliascnt.sty","multicol.sty"],"cmds":["authorrunning","email","fnmsep","inst","institute","keywords","orcidID","subtitle","titlerunning","url","grole","getsto","lid","gid","bbbc","bbbf","bbbh","bbbk","bbbm","bbbn","bbbp","bbbq","bbbr","bbbs","bbbt","bbbz","bbbone","qed","spnewtheorem","doi","ackname","addcontentsmark","addcontentsmarkwop","addnumcontentsmark","addtocmark","andname","authcount","authrun","backmatter","calctocindent","chapter","chaptermark","chaptername","claimname","clearheadinfo","conjecturename","contriblistname","corollaryname","definitionname","examplename","exercisename","fnindent","fnnstart","frontmatter","headlineindent","homedir","hyperhrefextend","idxquad","instindent","institutename","keywordname","lastand","lastandname","lemmaname","mailname","mainmatter","noteaddname","notename","phantomsection","problemname","proofname","propertyname","propositionname","questionname","remarkname","seename","solutionname","squareforqed","subclassname","theauco","thechapter","theopargself","theoremname","thisbottomragged","titrun","tocauthor","tocchpnum","tocparanum","tocparatotal","tocsecnum","tocsectotal","tocsubparanum","tocsubsecnum","tocsubsectotal","tocsubsubsecnum","tocsubsubsectotal","toctitle","ts","citeauthoryear","oribibl"]}
-,
-"llncsconf.sty":{"envs":{},"deps":["hyperref.sty","ifthen.sty","rcsinfo.sty","eso-pic.sty","svninfo.sty"],"cmds":["conference","llncs","llncsdoi","copyrightnote"]}
-,
-"lltjcore.sty":{"envs":{},"deps":["etoolbox.sty","expl3.sty"],"cmds":["iftombow","tombowtrue","tombowfalse","iftombowdate","tombowdatetrue","tombowdatefalse","maketombowbox","iffnfixbottom","fnfixbottomtrue","fnfixbottomfalse"]}
-,
-"lltjdefs.sty":{"envs":{},"deps":{},"cmds":["mcdefault","gtdefault","jttdefault","kanjiencodingdefault","kanjifamilydefault","kanjiseriesdefault","kanjishapedefault","textmc","textgt","mc","gt","mathmc","mathgt"]}
-,
-"lltjext.sty":{"envs":{},"deps":["luatexja.sty"],"cmds":["parbox","pbox","floatwidth","floatheight","floatruletick","captionfloatsep","captiondir","captionwidth","captionfontsetup","layoutfloat","DeclareLayoutCaption","layoutcaption","pcaption","rensujiskip","rensuji","Rensuji","prensuji","Kanji","kanji","boutenchar","bou","kasen"]}
-,
-"lltjfont.sty":{"envs":{},"deps":{},"cmds":["Cht","cht","Cdp","cdp","Cwd","cwd","Cvs","cvs","Chs","chs","cHT","ystrutbox","dstrutbox","tstrutbox","zstrutbox","ystrut","tstrut","dstrut","zstrut","DeclareYokoKanjiEncoding","DeclareTateKanjiEncoding","DeclareKanjiEncodingDefaults","DeclareKanjiFamily","DeclareKanjiSubstitution","DeclareErrorKanjiFont","reDeclareMathAlphabet","DeclareRelationFont","SetRelationFont","userelfont","KanjiEncodingPair","adjustbaseline","romanencoding","kanjiencoding","romanfamily","kanjifamily","romanseries","kanjiseries","romanseriesforce","kanjiseriesforce","romanshape","kanjishape","romanshapeforce","kanjishapeforce","useroman","usekanji","mcfamily","gtfamily","getjfont","DeclareAlternateKanjiFont","ClearAlternateKanjiFont","DeclareKanjiEncoding","UnicodeEncodingName","UnicodeFontTeXLigatures","UnicodeFontFile","UnicodeFontName","DeclareUnicodeAccent","DeclareUnicodeComposite","textquotedbl","guillemetleft","guillemotleft","guillemetright","guillemotright","DH","TH","dh","th","DJ","dj","NG","ng","quotesinglbase","quotedblbase","guilsinglleft","guilsinglright","Hwithstroke","hwithstroke","k"]}
-,
-"lltjp-atbegshi.sty":{"envs":{},"deps":["expl3.sty"],"cmds":{}}
-,
-"lltjp-geometry.sty":{"envs":{},"deps":["expl3.sty","ifluatex.sty","etoolbox.sty"],"cmds":{}}
-,
-"lltjp-listings.sty":{"envs":{},"deps":["etoolbox.sty","listings.sty","luatexbase.sty"],"cmds":["ltjlistingsvsstdcmd","CatcodeTableLTJlistings"]}
-,
-"lmacs.sty":{"envs":{},"deps":["kvoptions.sty"],"cmds":{}}
-,
-"lmake.sty":{"envs":{},"deps":{},"cmds":["lcmd","lmake"]}
-,
-"lmodern.sty":{"envs":{},"deps":{},"cmds":{}}
-,
-"lni.cls":{"envs":["keywords"],"deps":["iftex.sty","cmap.sty","inputenc.sty","fontenc.sty","textcomp.sty","babel.sty","newtxtext.sty","newtxmath.sty","newtxtt.sty","microtype.sty","ccicons.sty","etoolbox.sty","geometry.sty","csquotes.sty","graphicx.sty","eso-pic.sty","grffile.sty","fancyhdr.sty","listings.sty","caption.sty","verbatim.sty","url.sty","xspace.sty","hyperref.sty","cleveref.sty","hypcap.sty","mathptmx.sty","crop.sty","biblatex.sty"],"cmds":["citet","citep","citealt","citealp","citeauthor","citeyearpar","Citet","Citep","Citealt","Citealp","citefullauthor","Citefullauthor","citetext","defcitealias","citetalias","citepalias","andname","authorrunning","autofontsfalse","autofontstrue","booksubtitle","booktitle","BPEL","BPM","BPMN","cf","cropfalse","croptrue","doihoffset","doivoffset","editor","eg","email","etal","fnindent","ie","ifautofonts","ifcrop","ifkeywords","iflnienglish","ifnofonts","ifnorunningheads","ifoldfonts","ifusebiblatex","ifusecleveref","ifusehyperref","keywordsfalse","keywordstrue","lniabbrv","lnidoi","lnienglishfalse","lnienglishtrue","lniinitialism","nofontsfalse","nofontstrue","norunningheadsfalse","norunningheadstrue","oldfontsfalse","oldfontstrue","oldsmall","OMG","powerset","startpage","subtitle","thisbottomragged","title","UML","usebiblatexfalse","usebiblatextrue","useclevereffalse","useclevereftrue","usehyperreffalse","usehyperreftrue","yearofpublication","DH","dh","dj","DJ","guillemetleft","guillemetright","guillemotleft","guillemotright","guilsinglleft","guilsinglright","Hwithstroke","hwithstroke","k","NG","ng","quotedblbase","quotesinglbase","textogonekcentered","textquotedbl","th","TH","captionsngerman","datengerman","extrasngerman","noextrasngerman","dq","ntosstrue","ntossfalse","prefacename","bibname","chaptername","enclname","ccname","headtoname","pagename","seename","alsoname","proofname","glossaryname","mdqon","mdqoff","captionsenglish","dateenglish","extrasenglish","noextrasenglish","englishhyphenmins","britishhyphenmins","americanhyphenmins"]}
-,
-"locant.sty":{"envs":{},"deps":{},"cmds":["bdlocant","bdlocnth","bdloocant","bdloocnth","locantnumsize","sixsugarhlocant","sixsugarhloocnt","sxlocant","sxlocnth","sxloocant","sxloocnth"]}
-,
-"logbox.sty":{"envs":{},"deps":{},"cmds":["logbox","dimbox","viewbox","ShowGroups","ShowLists","ShowIfs"]}
-,
-"logicproof.sty":{"envs":["logicproof","subproof"],"deps":["array.sty"],"cmds":["subproofhorizspace","intersubproofvertspace"]}
-,
-"logicpuzzle.sty":{"envs":["logicpuzzle","puzzlebackground","puzzleforeground","ddsudoku","battleship","bokkusu","bridges","chaossudoku","fourwinds","hakyuu","hitori","kakuro","kendoku","killersudoku","laserbeam","magiclabyrinth","magnets","masyu","minesweeper","nonogram","numberlink","resuko","schatzsuche","skyline","slitherlink","starbattle","starsandarrows","lpsudoku","sunandmoon","tentsandtrees","tunnel"],"deps":["xkeyval.sty","ifthen.sty","ragged2e.sty","marginnote.sty","tikz.sty","tikzlibrarydecorations.pathmorphing.sty","tikzlibrarydecorations.pathreplacing.sty","tikzlibrarycalc.sty","tikzlibraryshapes.geometric.sty"],"cmds":["logicpuzzlesetup","setcell","setcells","setbigcell","setrow","setcolorrow","setcolumn","setcolorcolumn","setrule","fillcell","fillrow","fillcolumn","filldiagonals","framearea","fillarea","colorarea","framepuzzle","tikzpath","xtikzpath","titleformat","puzzlecounter","setpuzzlecounter","definecounterstyle","setgridlinestyle","setnormallinewidth","setthicklinewidth","ddsudokucell","ddsudokusetup","placeship","placesegment","Ship","ShipC","ShipL","ShipR","ShipB","ShipT","Island","Water","ship","placewater","placeisland","shipH","shipV","shipbox","battleshipsetup","classicgame","valueH","valueV","sumH","sumV","bokkususetup","bridgesrow","bridgescolumn","bridge","bridgessetup","chaossudokucell","chaossudokusetup","fourwindscell","fourwindssetup","hakyuucell","hakyuusetup","hitorisetup","kakurorow","kakurocolumn","KKR","Black","kakurosetup","kendokucell","kendokusetup","killersudokucell","killersudokusetup","laserH","laserV","mirrorH","mirrorV","placearrow","placecross","placemirror","laser","laserbeamsetup","magiclabyrinthcell","mlline","magiclabyrinthsetup","plusH","minusH","plusV","minusV","magnetsH","magnetsV","PMH","MPH","PMV","MPV","magnetssetup","masyucell","MasyuW","MasyuB","masyuline","masyusetup","Mine","minesweepersetup","nonogramrow","nonogramcolumn","nonogramV","nonogramH","puzzlestrut","nonogramsetup","numberlinkcell","link","numberlinksetup","resukocell","Straight","StraightH","StraightV","Cross","CrossH","CrossV","CurveTL","CurveTR","CurveBL","CurveBR","Graveltrap","pitlane","parkinglot","trackH","trackV","track","resukosetup","Diamond","schatzsuchesetup","skylineT","skylineB","skylineL","skylineR","skylinecell","skylinesetup","slitherlinkcell","slitherlinksetup","starbattlecell","starbattlesetup","starsH","starsV","Star","Right","RightUp","Up","LeftUp","Left","LeftDown","Down","RightDown","starsandarrowssetup","lpsudokucell","lpsudokusetup","Cloud","Moon","MoonT","MoonB","MoonR","MoonL","MoonTR","MoonTL","MoonBR","MoonBL","sunandmoonsetup","tentH","tentV","Tree","Tent","tentsandtreessetup","tunnelH","tunnelV","portal","tube","tunnelsetup","setTikZpreset","logicpuzzlecell","bridgescell","hitoricell","kakurocell","magnetscell","minesweepercell","schatzsuchecell","sunandmooncell"]}
-,
-"logix.sty":{"envs":["KnotGrid","LogixDefn","LogixAxiom","LogixProof","LogixSeqnt","LogixTable"],"deps":["iftex.sty","unicode-math.sty","mathtools.sty","arydshln.sty"],"cmds":["symsau","mathsau","prop","sauA","sauB","sauC","sauD","sauE","sauF","sauG","sauH","sauI","sauJ","sauK","sauL","sauM","sauN","sauO","sauP","sauQ","sauR","sauS","sauT","sauU","sauV","sauW","sauX","sauY","sauZ","saua","saub","sauc","saud","saue","sauf","saug","sauh","saui","sauj","sauk","saul","saum","saun","sauo","saup","sauq","saur","saus","saut","sauu","sauv","sauw","saux","sauy","sauz","sauZero","sauOne","sauTwo","sauThree","sauFour","sauFive","sauSix","sauSeven","sauEight","sauNine","PropA","PropB","PropC","PropD","PropE","PropF","PropG","PropH","PropI","PropJ","PropK","PropL","PropM","PropN","PropO","PropP","PropQ","PropR","PropS","PropT","PropU","PropV","PropW","PropX","PropY","PropZ","Propa","Propb","Propc","Propd","Prope","Propf","Propg","Proph","Propi","Propj","Propk","Propl","Propm","Propn","Propo","Propp","Propq","Propr","Props","Propt","Propu","Propv","Propw","Propx","Propy","Propz","PropZero","PropOne","PropTwo","PropThree","PropFour","PropFive","PropSix","PropSeven","PropEight","PropNine","symsai","mathsai","propi","saiA","saiB","saiC","saiD","saiE","saiF","saiG","saiH","saiI","saiJ","saiK","saiL","saiM","saiN","saiO","saiP","saiQ","saiR","saiS","saiT","saiU","saiV","saiW","saiX","saiY","saiZ","saia","saib","saic","said","saie","saif","saig","saih","saii","saij","saik","sail","saim","sain","saio","saip","saiq","sair","sais","sait","saiu","saiv","saiw","saix","saiy","saiz","saiZero","saiOne","saiTwo","saiThree","saiFour","saiFive","saiSix","saiSeven","saiEight","saiNine","PropiA","PropiB","PropiC","PropiD","PropiE","PropiF","PropiG","PropiH","PropiI","PropiJ","PropiK","PropiL","PropiM","PropiN","PropiO","PropiP","PropiQ","PropiR","PropiS","PropiT","PropiU","PropiV","PropiW","PropiX","PropiY","PropiZ","Propia","Propib","Propic","Propid","Propie","Propif","Propig","Propih","Propii","Propij","Propik","Propil","Propim","Propin","Propio","Propip","Propiq","Propir","Propis","Propit","Propiu","Propiv","Propiw","Propix","Propiy","Propiz","PropiZero","PropiOne","PropiTwo","PropiThree","PropiFour","PropiFive","PropiSix","PropiSeven","PropiEight","PropiNine","symSau","mathSau","meta","SauA","SauB","SauC","SauD","SauE","SauF","SauG","SauH","SauI","SauJ","SauK","SauL","SauM","SauN","SauO","SauP","SauQ","SauR","SauS","SauT","SauU","SauV","SauW","SauX","SauY","SauZ","Saua","Saub","Sauc","Saud","Saue","Sauf","Saug","Sauh","Saui","Sauj","Sauk","Saul","Saum","Saun","Sauo","Saup","Sauq","Saur","Saus","Saut","Sauu","Sauv","Sauw","Saux","Sauy","Sauz","SauZero","SauOne","SauTwo","SauThree","SauFour","SauFive","SauSix","SauSeven","SauEight","SauNine","MetaA","MetaB","MetaC","MetaD","MetaE","MetaF","MetaG","MetaH","MetaI","MetaJ","MetaK","MetaL","MetaM","MetaN","MetaO","MetaP","MetaQ","MetaR","MetaS","MetaT","MetaU","MetaV","MetaW","MetaX","MetaY","MetaZ","Metaa","Metab","Metac","Metad","Metae","Metaf","Metag","Metah","Metai","Metaj","Metak","Metal","Metam","Metan","Metao","Metap","Metaq","Metar","Metas","Metat","Metau","Metav","Metaw","Metax","Metay","Metaz","MetaZero","MetaOne","MetaTwo","MetaThree","MetaFour","MetaFive","MetaSix","MetaSeven","MetaEight","MetaNine","symSai","mathSai","metai","SaiA","SaiB","SaiC","SaiD","SaiE","SaiF","SaiG","SaiH","SaiI","SaiJ","SaiK","SaiL","SaiM","SaiN","SaiO","SaiP","SaiQ","SaiR","SaiS","SaiT","SaiU","SaiV","SaiW","SaiX","SaiY","SaiZ","Saia","Saib","Saic","Said","Saie","Saif","Saig","Saih","Saii","Saij","Saik","Sail","Saim","Sain","Saio","Saip","Saiq","Sair","Sais","Sait","Saiu","Saiv","Saiw","Saix","Saiy","Saiz","SaiZero","SaiOne","SaiTwo","SaiThree","SaiFour","SaiFive","SaiSix","SaiSeven","SaiEight","SaiNine","MetaiA","MetaiB","MetaiC","MetaiD","MetaiE","MetaiF","MetaiG","MetaiH","MetaiI","MetaiJ","MetaiK","MetaiL","MetaiM","MetaiN","MetaiO","MetaiP","MetaiQ","MetaiR","MetaiS","MetaiT","MetaiU","MetaiV","MetaiW","MetaiX","MetaiY","MetaiZ","Metaia","Metaib","Metaic","Metaid","Metaie","Metaif","Metaig","Metaih","Metaii","Metaij","Metaik","Metail","Metaim","Metain","Metaio","Metaip","Metaiq","Metair","Metais","Metait","Metaiu","Metaiv","Metaiw","Metaix","Metaiy","Metaiz","MetaiZero","MetaiOne","MetaiTwo","MetaiThree","MetaiFour","MetaiFive","MetaiSix","MetaiSeven","MetaiEight","MetaiNine","symslu","mathslu","bnch","sluA","sluB","sluC","sluD","sluE","sluF","sluG","sluH","sluI","sluJ","sluK","sluL","sluM","sluN","sluO","sluP","sluQ","sluR","sluS","sluT","sluU","sluV","sluW","sluX","sluY","sluZ","slua","slub","sluc","slud","slue","sluf","slug","sluh","slui","sluj","sluk","slul","slum","slun","sluo","slup","sluq","slur","slus","slut","sluu","sluv","sluw","slux","sluy","sluz","sluZero","sluOne","sluTwo","sluThree","sluFour","sluFive","sluSix","sluSeven","sluEight","sluNine","BnchA","BnchB","BnchC","BnchD","BnchE","BnchF","BnchG","BnchH","BnchI","BnchJ","BnchK","BnchL","BnchM","BnchN","BnchO","BnchP","BnchQ","BnchR","BnchS","BnchT","BnchU","BnchV","BnchW","BnchX","BnchY","BnchZ","Bncha","Bnchb","Bnchc","Bnchd","Bnche","Bnchf","Bnchg","Bnchh","Bnchi","Bnchj","Bnchk","Bnchl","Bnchm","Bnchn","Bncho","Bnchp","Bnchq","Bnchr","Bnchs","Bncht","Bnchu","Bnchv","Bnchw","Bnchx","Bnchy","Bnchz","BnchZero","BnchOne","BnchTwo","BnchThree","BnchFour","BnchFive","BnchSix","BnchSeven","BnchEight","BnchNine","symsli","mathsli","bnchi","sliA","sliB","sliC","sliD","sliE","sliF","sliG","sliH","sliI","sliJ","sliK","sliL","sliM","sliN","sliO","sliP","sliQ","sliR","sliS","sliT","sliU","sliV","sliW","sliX","sliY","sliZ","slia","slib","slic","slid","slie","slif","slig","slih","slii","slij","slik","slil","slim","slin","slio","slip","sliq","slir","slis","slit","sliu","sliv","sliw","slix","sliy","sliz","sliZero","sliOne","sliTwo","sliThree","sliFour","sliFive","sliSix","sliSeven","sliEight","sliNine","BnchiA","BnchiB","BnchiC","BnchiD","BnchiE","BnchiF","BnchiG","BnchiH","BnchiI","BnchiJ","BnchiK","BnchiL","BnchiM","BnchiN","BnchiO","BnchiP","BnchiQ","BnchiR","BnchiS","BnchiT","BnchiU","BnchiV","BnchiW","BnchiX","BnchiY","BnchiZ","Bnchia","Bnchib","Bnchic","Bnchid","Bnchie","Bnchif","Bnchig","Bnchih","Bnchii","Bnchij","Bnchik","Bnchil","Bnchim","Bnchin","Bnchio","Bnchip","Bnchiq","Bnchir","Bnchis","Bnchit","Bnchiu","Bnchiv","Bnchiw","Bnchix","Bnchiy","Bnchiz","BnchiZero","BnchiOne","BnchiTwo","BnchiThree","BnchiFour","BnchiFive","BnchiSix","BnchiSeven","BnchiEight","BnchiNine","symSlu","mathSlu","bnchb","SluA","SluB","SluC","SluD","SluE","SluF","SluG","SluH","SluI","SluJ","SluK","SluL","SluM","SluN","SluO","SluP","SluQ","SluR","SluS","SluT","SluU","SluV","SluW","SluX","SluY","SluZ","Slua","Slub","Sluc","Slud","Slue","Sluf","Slug","Sluh","Slui","Sluj","Sluk","Slul","Slum","Slun","Sluo","Slup","Sluq","Slur","Slus","Slut","Sluu","Sluv","Sluw","Slux","Sluy","Sluz","SluZero","SluOne","SluTwo","SluThree","SluFour","SluFive","SluSix","SluSeven","SluEight","SluNine","BnchbA","BnchbB","BnchbC","BnchbD","BnchbE","BnchbF","BnchbG","BnchbH","BnchbI","BnchbJ","BnchbK","BnchbL","BnchbM","BnchbN","BnchbO","BnchbP","BnchbQ","BnchbR","BnchbS","BnchbT","BnchbU","BnchbV","BnchbW","BnchbX","BnchbY","BnchbZ","Bnchba","Bnchbb","Bnchbc","Bnchbd","Bnchbe","Bnchbf","Bnchbg","Bnchbh","Bnchbi","Bnchbj","Bnchbk","Bnchbl","Bnchbm","Bnchbn","Bnchbo","Bnchbp","Bnchbq","Bnchbr","Bnchbs","Bnchbt","Bnchbu","Bnchbv","Bnchbw","Bnchbx","Bnchby","Bnchbz","BnchbZero","BnchbOne","BnchbTwo","BnchbThree","BnchbFour","BnchbFive","BnchbSix","BnchbSeven","BnchbEight","BnchbNine","symSli","mathSli","bnchbi","SliA","SliB","SliC","SliD","SliE","SliF","SliG","SliH","SliI","SliJ","SliK","SliL","SliM","SliN","SliO","SliP","SliQ","SliR","SliS","SliT","SliU","SliV","SliW","SliX","SliY","SliZ","Slia","Slib","Slic","Slid","Slie","Slif","Slig","Slih","Slii","Slij","Slik","Slil","Slim","Slin","Slio","Slip","Sliq","Slir","Slis","Slit","Sliu","Sliv","Sliw","Slix","Sliy","Sliz","SliZero","SliOne","SliTwo","SliThree","SliFour","SliFive","SliSix","SliSeven","SliEight","SliNine","BnchbiA","BnchbiB","BnchbiC","BnchbiD","BnchbiE","BnchbiF","BnchbiG","BnchbiH","BnchbiI","BnchbiJ","BnchbiK","BnchbiL","BnchbiM","BnchbiN","BnchbiO","BnchbiP","BnchbiQ","BnchbiR","BnchbiS","BnchbiT","BnchbiU","BnchbiV","BnchbiW","BnchbiX","BnchbiY","BnchbiZ","Bnchbia","Bnchbib","Bnchbic","Bnchbid","Bnchbie","Bnchbif","Bnchbig","Bnchbih","Bnchbii","Bnchbij","Bnchbik","Bnchbil","Bnchbim","Bnchbin","Bnchbio","Bnchbip","Bnchbiq","Bnchbir","Bnchbis","Bnchbit","Bnchbiu","Bnchbiv","Bnchbiw","Bnchbix","Bnchbiy","Bnchbiz","BnchbiZero","BnchbiOne","BnchbiTwo","BnchbiThree","BnchbiFour","BnchbiFive","BnchbiSix","BnchbiSeven","BnchbiEight","BnchbiNine","symsru","mathsru","vrbl","sruA","sruB","sruC","sruD","sruE","sruF","sruG","sruH","sruI","sruJ","sruK","sruL","sruM","sruN","sruO","sruP","sruQ","sruR","sruS","sruT","sruU","sruV","sruW","sruX","sruY","sruZ","srua","srub","sruc","srud","srue","sruf","srug","sruh","srui","sruj","sruk","srul","srum","srun","sruo","srup","sruq","srur","srus","srut","sruu","sruv","sruw","srux","sruy","sruz","sruZero","sruOne","sruTwo","sruThree","sruFour","sruFive","sruSix","sruSeven","sruEight","sruNine","VrblA","VrblB","VrblC","VrblD","VrblE","VrblF","VrblG","VrblH","VrblI","VrblJ","VrblK","VrblL","VrblM","VrblN","VrblO","VrblP","VrblQ","VrblR","VrblS","VrblT","VrblU","VrblV","VrblW","VrblX","VrblY","VrblZ","Vrbla","Vrblb","Vrblc","Vrbld","Vrble","Vrblf","Vrblg","Vrblh","Vrbli","Vrblj","Vrblk","Vrbll","Vrblm","Vrbln","Vrblo","Vrblp","Vrblq","Vrblr","Vrbls","Vrblt","Vrblu","Vrblv","Vrblw","Vrblx","Vrbly","Vrblz","VrblZero","VrblOne","VrblTwo","VrblThree","VrblFour","VrblFive","VrblSix","VrblSeven","VrblEight","VrblNine","symsri","mathsri","vrbli","sriA","sriB","sriC","sriD","sriE","sriF","sriG","sriH","sriI","sriJ","sriK","sriL","sriM","sriN","sriO","sriP","sriQ","sriR","sriS","sriT","sriU","sriV","sriW","sriX","sriY","sriZ","sria","srib","sric","srid","srie","srif","srig","srih","srii","srij","srik","sril","srim","srin","srio","srip","sriq","srir","sris","srit","sriu","sriv","sriw","srix","sriy","sriz","sriZero","sriOne","sriTwo","sriThree","sriFour","sriFive","sriSix","sriSeven","sriEight","sriNine","VrbliA","VrbliB","VrbliC","VrbliD","VrbliE","VrbliF","VrbliG","VrbliH","VrbliI","VrbliJ","VrbliK","VrbliL","VrbliM","VrbliN","VrbliO","VrbliP","VrbliQ","VrbliR","VrbliS","VrbliT","VrbliU","VrbliV","VrbliW","VrbliX","VrbliY","VrbliZ","Vrblia","Vrblib","Vrblic","Vrblid","Vrblie","Vrblif","Vrblig","Vrblih","Vrblii","Vrblij","Vrblik","Vrblil","Vrblim","Vrblin","Vrblio","Vrblip","Vrbliq","Vrblir","Vrblis","Vrblit","Vrbliu","Vrbliv","Vrbliw","Vrblix","Vrbliy","Vrbliz","VrbliZero","VrbliOne","VrbliTwo","VrbliThree","VrbliFour","VrbliFive","VrbliSix","VrbliSeven","VrbliEight","VrbliNine","symSru","mathSru","vrblb","SruA","SruB","SruC","SruD","SruE","SruF","SruG","SruH","SruI","SruJ","SruK","SruL","SruM","SruN","SruO","SruP","SruQ","SruR","SruS","SruT","SruU","SruV","SruW","SruX","SruY","SruZ","Srua","Srub","Sruc","Srud","Srue","Sruf","Srug","Sruh","Srui","Sruj","Sruk","Srul","Srum","Srun","Sruo","Srup","Sruq","Srur","Srus","Srut","Sruu","Sruv","Sruw","Srux","Sruy","Sruz","SruZero","SruOne","SruTwo","SruThree","SruFour","SruFive","SruSix","SruSeven","SruEight","SruNine","VrblbA","VrblbB","VrblbC","VrblbD","VrblbE","VrblbF","VrblbG","VrblbH","VrblbI","VrblbJ","VrblbK","VrblbL","VrblbM","VrblbN","VrblbO","VrblbP","VrblbQ","VrblbR","VrblbS","VrblbT","VrblbU","VrblbV","VrblbW","VrblbX","VrblbY","VrblbZ","Vrblba","Vrblbb","Vrblbc","Vrblbd","Vrblbe","Vrblbf","Vrblbg","Vrblbh","Vrblbi","Vrblbj","Vrblbk","Vrblbl","Vrblbm","Vrblbn","Vrblbo","Vrblbp","Vrblbq","Vrblbr","Vrblbs","Vrblbt","Vrblbu","Vrblbv","Vrblbw","Vrblbx","Vrblby","Vrblbz","VrblbZero","VrblbOne","VrblbTwo","VrblbThree","VrblbFour","VrblbFive","VrblbSix","VrblbSeven","VrblbEight","VrblbNine","symSri","mathSri","vrblbi","SriA","SriB","SriC","SriD","SriE","SriF","SriG","SriH","SriI","SriJ","SriK","SriL","SriM","SriN","SriO","SriP","SriQ","SriR","SriS","SriT","SriU","SriV","SriW","SriX","SriY","SriZ","Sria","Srib","Sric","Srid","Srie","Srif","Srig","Srih","Srii","Srij","Srik","Sril","Srim","Srin","Srio","Srip","Sriq","Srir","Sris","Srit","Sriu","Sriv","Sriw","Srix","Sriy","Sriz","SriZero","SriOne","SriTwo","SriThree","SriFour","SriFive","SriSix","SriSeven","SriEight","SriNine","VrblbiA","VrblbiB","VrblbiC","VrblbiD","VrblbiE","VrblbiF","VrblbiG","VrblbiH","VrblbiI","VrblbiJ","VrblbiK","VrblbiL","VrblbiM","VrblbiN","VrblbiO","VrblbiP","VrblbiQ","VrblbiR","VrblbiS","VrblbiT","VrblbiU","VrblbiV","VrblbiW","VrblbiX","VrblbiY","VrblbiZ","Vrblbia","Vrblbib","Vrblbic","Vrblbid","Vrblbie","Vrblbif","Vrblbig","Vrblbih","Vrblbii","Vrblbij","Vrblbik","Vrblbil","Vrblbim","Vrblbin","Vrblbio","Vrblbip","Vrblbiq","Vrblbir","Vrblbis","Vrblbit","Vrblbiu","Vrblbiv","Vrblbiw","Vrblbix","Vrblbiy","Vrblbiz","VrblbiZero","VrblbiOne","VrblbiTwo","VrblbiThree","VrblbiFour","VrblbiFive","VrblbiSix","VrblbiSeven","VrblbiEight","VrblbiNine","symcli","mathcli","vrblc","cliA","cliB","cliC","cliD","cliE","cliF","cliG","cliH","cliI","cliJ","cliK","cliL","cliM","cliN","cliO","cliP","cliQ","cliR","cliS","cliT","cliU","cliV","cliW","cliX","cliY","cliZ","clia","clib","clic","clid","clie","clif","clig","clih","clii","clij","clik","clil","clim","clin","clio","clip","cliq","clir","clis","clit","cliu","cliv","cliw","clix","cliy","cliz","cliZero","cliOne","cliTwo","cliThree","cliFour","cliFive","cliSix","cliSeven","cliEight","cliNine","VrblcA","VrblcB","VrblcC","VrblcD","VrblcE","VrblcF","VrblcG","VrblcH","VrblcI","VrblcJ","VrblcK","VrblcL","VrblcM","VrblcN","VrblcO","VrblcP","VrblcQ","VrblcR","VrblcS","VrblcT","VrblcU","VrblcV","VrblcW","VrblcX","VrblcY","VrblcZ","Vrblca","Vrblcb","Vrblcc","Vrblcd","Vrblce","Vrblcf","Vrblcg","Vrblch","Vrblci","Vrblcj","Vrblck","Vrblcl","Vrblcm","Vrblcn","Vrblco","Vrblcp","Vrblcq","Vrblcr","Vrblcs","Vrblct","Vrblcu","Vrblcv","Vrblcw","Vrblcx","Vrblcy","Vrblcz","VrblcZero","VrblcOne","VrblcTwo","VrblcThree","VrblcFour","VrblcFive","VrblcSix","VrblcSeven","VrblcEight","VrblcNine","symCli","mathCli","vrblC","CliA","CliB","CliC","CliD","CliE","CliF","CliG","CliH","CliI","CliJ","CliK","CliL","CliM","CliN","CliO","CliP","CliQ","CliR","CliS","CliT","CliU","CliV","CliW","CliX","CliY","CliZ","Clia","Clib","Clic","Clid","Clie","Clif","Clig","Clih","Clii","Clij","Clik","Clil","Clim","Clin","Clio","Clip","Cliq","Clir","Clis","Clit","Cliu","Cliv","Cliw","Clix","Cliy","Cliz","CliZero","CliOne","CliTwo","CliThree","CliFour","CliFive","CliSix","CliSeven","CliEight","CliNine","VrblCA","VrblCB","VrblCC","VrblCD","VrblCE","VrblCF","VrblCG","VrblCH","VrblCI","VrblCJ","VrblCK","VrblCL","VrblCM","VrblCN","VrblCO","VrblCP","VrblCQ","VrblCR","VrblCS","VrblCT","VrblCU","VrblCV","VrblCW","VrblCX","VrblCY","VrblCZ","VrblCa","VrblCb","VrblCc","VrblCd","VrblCe","VrblCf","VrblCg","VrblCh","VrblCi","VrblCj","VrblCk","VrblCl","VrblCm","VrblCn","VrblCo","VrblCp","VrblCq","VrblCr","VrblCs","VrblCt","VrblCu","VrblCv","VrblCw","VrblCx","VrblCy","VrblCz","VrblCZero","VrblCOne","VrblCTwo","VrblCThree","VrblCFour","VrblCFive","VrblCSix","VrblCSeven","VrblCEight","VrblCNine","symfru","mathfru","vrblf","fruA","fruB","fruC","fruD","fruE","fruF","fruG","fruH","fruI","fruJ","fruK","fruL","fruM","fruN","fruO","fruP","fruQ","fruR","fruS","fruT","fruU","fruV","fruW","fruX","fruY","fruZ","frua","frub","fruc","frud","frue","fruf","frug","fruh","frui","fruj","fruk","frul","frum","frun","fruo","frup","fruq","frur","frus","frut","fruu","fruv","fruw","frux","fruy","fruz","fruZero","fruOne","fruTwo","fruThree","fruFour","fruFive","fruSix","fruSeven","fruEight","fruNine","VrblfA","VrblfB","VrblfC","VrblfD","VrblfE","VrblfF","VrblfG","VrblfH","VrblfI","VrblfJ","VrblfK","VrblfL","VrblfM","VrblfN","VrblfO","VrblfP","VrblfQ","VrblfR","VrblfS","VrblfT","VrblfU","VrblfV","VrblfW","VrblfX","VrblfY","VrblfZ","Vrblfa","Vrblfb","Vrblfc","Vrblfd","Vrblfe","Vrblff","Vrblfg","Vrblfh","Vrblfi","Vrblfj","Vrblfk","Vrblfl","Vrblfm","Vrblfn","Vrblfo","Vrblfp","Vrblfq","Vrblfr","Vrblfs","Vrblft","Vrblfu","Vrblfv","Vrblfw","Vrblfx","Vrblfy","Vrblfz","VrblfZero","VrblfOne","VrblfTwo","VrblfThree","VrblfFour","VrblfFive","VrblfSix","VrblfSeven","VrblfEight","VrblfNine","symFru","mathFru","vrblF","FruA","FruB","FruC","FruD","FruE","FruF","FruG","FruH","FruI","FruJ","FruK","FruL","FruM","FruN","FruO","FruP","FruQ","FruR","FruS","FruT","FruU","FruV","FruW","FruX","FruY","FruZ","Frua","Frub","Fruc","Frud","Frue","Fruf","Frug","Fruh","Frui","Fruj","Fruk","Frul","Frum","Frun","Fruo","Frup","Fruq","Frur","Frus","Frut","Fruu","Fruv","Fruw","Frux","Fruy","Fruz","FruZero","FruOne","FruTwo","FruThree","FruFour","FruFive","FruSix","FruSeven","FruEight","FruNine","VrblFA","VrblFB","VrblFC","VrblFD","VrblFE","VrblFF","VrblFG","VrblFH","VrblFI","VrblFJ","VrblFK","VrblFL","VrblFM","VrblFN","VrblFO","VrblFP","VrblFQ","VrblFR","VrblFS","VrblFT","VrblFU","VrblFV","VrblFW","VrblFX","VrblFY","VrblFZ","VrblFa","VrblFb","VrblFc","VrblFd","VrblFe","VrblFf","VrblFg","VrblFh","VrblFi","VrblFj","VrblFk","VrblFl","VrblFm","VrblFn","VrblFo","VrblFp","VrblFq","VrblFr","VrblFs","VrblFt","VrblFu","VrblFv","VrblFw","VrblFx","VrblFy","VrblFz","VrblFZero","VrblFOne","VrblFTwo","VrblFThree","VrblFFour","VrblFFive","VrblFSix","VrblFSeven","VrblFEight","VrblFNine","symmnu","mathmnu","mono","mnuA","mnuB","mnuC","mnuD","mnuE","mnuF","mnuG","mnuH","mnuI","mnuJ","mnuK","mnuL","mnuM","mnuN","mnuO","mnuP","mnuQ","mnuR","mnuS","mnuT","mnuU","mnuV","mnuW","mnuX","mnuY","mnuZ","mnua","mnub","mnuc","mnud","mnue","mnuf","mnug","mnuh","mnui","mnuj","mnuk","mnul","mnum","mnun","mnuo","mnup","mnuq","mnur","mnus","mnut","mnuu","mnuv","mnuw","mnux","mnuy","mnuz","mnuZero","mnuOne","mnuTwo","mnuThree","mnuFour","mnuFive","mnuSix","mnuSeven","mnuEight","mnuNine","MonoA","MonoB","MonoC","MonoD","MonoE","MonoF","MonoG","MonoH","MonoI","MonoJ","MonoK","MonoL","MonoM","MonoN","MonoO","MonoP","MonoQ","MonoR","MonoS","MonoT","MonoU","MonoV","MonoW","MonoX","MonoY","MonoZ","Monoa","Monob","Monoc","Monod","Monoe","Monof","Monog","Monoh","Monoi","Monoj","Monok","Monol","Monom","Monon","Monoo","Monop","Monoq","Monor","Monos","Monot","Monou","Monov","Monow","Monox","Monoy","Monoz","MonoZero","MonoOne","MonoTwo","MonoThree","MonoFour","MonoFive","MonoSix","MonoSeven","MonoEight","MonoNine","symmni","mathmni","monoi","mniA","mniB","mniC","mniD","mniE","mniF","mniG","mniH","mniI","mniJ","mniK","mniL","mniM","mniN","mniO","mniP","mniQ","mniR","mniS","mniT","mniU","mniV","mniW","mniX","mniY","mniZ","mnia","mnib","mnic","mnid","mnie","mnif","mnig","mnih","mnii","mnij","mnik","mnil","mnim","mnin","mnio","mnip","mniq","mnir","mnis","mnit","mniu","mniv","mniw","mnix","mniy","mniz","mniZero","mniOne","mniTwo","mniThree","mniFour","mniFive","mniSix","mniSeven","mniEight","mniNine","symblu","mathblu","vrbld","bluA","bluB","bluC","bluD","bluE","bluF","bluG","bluH","bluI","bluJ","bluK","bluL","bluM","bluN","bluO","bluP","bluQ","bluR","bluS","bluT","bluU","bluV","bluW","bluX","bluY","bluZ","blua","blub","bluc","blud","blue","bluf","blug","bluh","blui","bluj","bluk","blul","blum","blun","bluo","blup","bluq","blur","blus","blut","bluu","bluv","bluw","blux","bluy","bluz","bluZero","bluOne","bluTwo","bluThree","bluFour","bluFive","bluSix","bluSeven","bluEight","bluNine","VrbldA","VrbldB","VrbldC","VrbldD","VrbldE","VrbldF","VrbldG","VrbldH","VrbldI","VrbldJ","VrbldK","VrbldL","VrbldM","VrbldN","VrbldO","VrbldP","VrbldQ","VrbldR","VrbldS","VrbldT","VrbldU","VrbldV","VrbldW","VrbldX","VrbldY","VrbldZ","Vrblda","Vrbldb","Vrbldc","Vrbldd","Vrblde","Vrbldf","Vrbldg","Vrbldh","Vrbldi","Vrbldj","Vrbldk","Vrbldl","Vrbldm","Vrbldn","Vrbldo","Vrbldp","Vrbldq","Vrbldr","Vrblds","Vrbldt","Vrbldu","Vrbldv","Vrbldw","Vrbldx","Vrbldy","Vrbldz","VrbldZero","VrbldOne","VrbldTwo","VrbldThree","VrbldFour","VrbldFive","VrbldSix","VrbldSeven","VrbldEight","VrbldNine","symgru","mathgru","grualpha","grubeta","grugamma","grudelta","gruepsilon","gruvarepsilon","gruzeta","grueta","grutheta","gruvartheta","gruiota","grukappa","grulambda","grumu","grunu","gruxi","gruomicron","grupi","gruvarpi","grurho","gruvarrho","grusigma","gruvarsigma","grutau","gruupsilon","gruphi","gruvarphi","gruchi","grupsi","gruomega","gruAlpha","gruBeta","gruGamma","gruDelta","gruEpsilon","gruZeta","gruEta","gruTheta","gruIota","gruKappa","gruLambda","gruMu","gruNu","gruXi","gruOmicron","gruPi","gruRho","gruSigma","gruTau","gruUpsilon","gruPhi","gruChi","gruPsi","gruOmega","symgri","mathgri","grialpha","gribeta","grigamma","gridelta","griepsilon","grivarepsilon","grizeta","grieta","gritheta","grivartheta","griiota","grikappa","grilambda","grimu","grinu","grixi","griomicron","gripi","grivarpi","grirho","grivarrho","grisigma","grivarsigma","gritau","griupsilon","griphi","grivarphi","grichi","gripsi","griomega","griAlpha","griBeta","griGamma","griDelta","griEpsilon","griZeta","griEta","griTheta","griIota","griKappa","griLambda","griMu","griNu","griXi","griOmicron","griPi","griRho","griSigma","griTau","griUpsilon","griPhi","griChi","griPsi","griOmega","KntA","KntB","KntBCD","KntBCS","KntBDLA","KntBDN","KntBDQN","KntBDQNBSQN","KntBDRA","KntBFC","KntBLDC","KntBLDFC","KntBLSC","KntBLSFC","KntBQC","KntBSDN","KntBSFN","KntBSFNF","KntBSLA","KntBSN","KntBSNF","KntBSQN","KntBSQNF","KntBSRA","KntC","KntD","KntDFJBLTR","KntDFJBRTL","KntDFJTLBR","KntDFJTRBL","KntDJBLTR","KntDJBRTL","KntDJTLBR","KntDJTRBL","KntE","KntEE","KntEF","KntEN","KntEQ","KntEZ","KntF","KntFE","KntFF","KntFN","KntFQ","KntFZ","KntG","KntH","KntHDASH","KntHHMDTDB","KntHHMDTSB","KntHHMSTDB","KntHHMSTSB","KntHVMDLDR","KntHVMDLSR","KntHVMSLDR","KntHVMSLSR","KntHXDODU","KntHXDOSU","KntHXDUDO","KntHXDUSO","KntHXSODU","KntHXSOSU","KntHXSUDO","KntHXSUSO","KntI","KntJ","KntK","KntL","KntLCD","KntLCS","KntLDDA","KntLDDARDDA","KntLDDARDN","KntLDDARDUA","KntLDDARSDA","KntLDDARSN","KntLDDARSUA","KntLDFNRDFN","KntLDFNRSFN","KntLDN","KntLDNRDDA","KntLDNRDN","KntLDNRDUA","KntLDNRSDA","KntLDNRSN","KntLDNRSUA","KntLDQN","KntLDQNRDQN","KntLDQNRSQN","KntLDUA","KntLDUARDDA","KntLDUARDN","KntLDUARDUA","KntLDUARSDA","KntLDUARSN","KntLDUARSUA","KntLFC","KntLQC","KntLSDA","KntLSDARDDA","KntLSDARDN","KntLSDARDUA","KntLSDARSDA","KntLSDARSN","KntLSDARSUA","KntLSDN","KntLSFN","KntLSFNF","KntLSFNRDFN","KntLSFNRSFN","KntLSN","KntLSNF","KntLSNRDDA","KntLSNRDN","KntLSNRDUA","KntLSNRSDA","KntLSNRSN","KntLSNRSUA","KntLSQN","KntLSQNF","KntLSQNRDQN","KntLSQNRSQN","KntLSUA","KntLSUARDDA","KntLSUARDN","KntLSUARDUA","KntLSUARSDA","KntLSUARSN","KntLSUARSUA","KntLTDC","KntLTDFC","KntLTSC","KntLTSFC","KntM","KntN","KntNE","KntNF","KntNN","KntNQ","KntNZ","KntO","KntP","KntQ","KntQE","KntQF","KntQN","KntQQ","KntQZ","KntR","KntRBDC","KntRBDFC","KntRBSC","KntRBSFC","KntRCD","KntRCS","KntRDDA","KntRDN","KntRDQN","KntRDUA","KntRFC","KntRQC","KntRSDA","KntRSDN","KntRSFN","KntRSFNF","KntRSN","KntRSNF","KntRSQN","KntRSQNF","KntRSUA","KntS","KntSFJBLTR","KntSFJBRTL","KntSFJTLBR","KntSFJTRBL","KntSJBLTR","KntSJBRTL","KntSJTLBR","KntSJTRBL","KntT","KntTCD","KntTCS","KntTDFNBDFN","KntTDFNBSFN","KntTDLA","KntTDLABDLA","KntTDLABDN","KntTDLABDRA","KntTDLABSLA","KntTDLABSN","KntTDLABSRA","KntTDN","KntTDNBDLA","KntTDNBDN","KntTDNBDRA","KntTDNBSLA","KntTDNBSN","KntTDNBSRA","KntTDQN","KntTDQNBDQN","KntTDRA","KntTDRABDLA","KntTDRABDN","KntTDRABDRA","KntTDRABSLA","KntTDRABSN","KntTDRABSRA","KntTFC","KntTQC","KntTRDC","KntTRDFC","KntTRSC","KntTRSFC","KntTSDN","KntTSFN","KntTSFNBDFN","KntTSFNBSFN","KntTSFNF","KntTSLA","KntTSLABDLA","KntTSLABDN","KntTSLABDRA","KntTSLABSLA","KntTSLABSN","KntTSLABSRA","KntTSN","KntTSNBDLA","KntTSNBDN","KntTSNBDRA","KntTSNBSLA","KntTSNBSN","KntTSNBSRA","KntTSNF","KntTSQN","KntTSQNBDQN","KntTSQNBSQN","KntTSQNF","KntTSRA","KntTSRABDLA","KntTSRABDN","KntTSRABDRA","KntTSRABSLA","KntTSRABSN","KntTSRABSRA","KntU","KntV","KntVDASH","KntVHMDTDB","KntVHMDTSB","KntVHMSTDB","KntVHMSTSB","KntVVMDLDR","KntVVMDLSR","KntVVMSLDR","KntVVMSLSR","KntVXDODU","KntVXDOSU","KntVXDUDO","KntVXDUSO","KntVXSODU","KntVXSOSU","KntVXSUDO","KntVXSUSO","KntW","KntX","KntY","KntZ","KntZE","KntZF","KntZN","KntZQ","KntZZ","Knta","Kntb","Kntc","Kntd","Knte","Knteight","Kntf","Kntfive","Kntfour","Kntg","Knth","Knti","Kntj","Kntk","Kntl","Kntm","Kntn","Kntnine","Knto","Kntone","Kntp","Kntq","Kntr","Knts","Kntseven","Kntsix","Kntt","Kntthree","Knttwo","Kntu","Kntv","Kntw","Kntx","Knty","Kntz","Kntzero","KntNESpace","KntNFSpace","KntNNSpace","KntNQSpace","Line","Blnk","Dash","AAnd","Ampersand","Aor","Append","Asterick","At","BackQuote","BlackCircle","BlackCircleA","BlackCircleB","BlackCircleC","BlackCircleD","BlackCircleE","BlackCircleF","BlackCircleG","BlackCircleH","BlackCircleI","BlackCurvedDiamond","BlackDiamond","BlackDiamondA","BlackDiamondB","BlackDiamondC","BlackDiamondD","BlackDiamondE","BlackDiamondF","BlackDiamondG","BlackDiamondH","BlackDiamondI","BlackDownTriangle","BlackDownTriangleA","BlackDownTriangleB","BlackDownTriangleC","BlackDownTriangleD","BlackDownTriangleE","BlackDownTriangleF","BlackDownTriangleG","BlackDownTriangleH","BlackDownTriangleI","BlackLeftArrowHead","BlackLeftTriangle","BlackLeftTriangleA","BlackLeftTriangleB","BlackLeftTriangleC","BlackLeftTriangleD","BlackLeftTriangleE","BlackLeftTriangleF","BlackLeftTriangleG","BlackLeftTriangleH","BlackLeftTriangleI","BlackLozenge","BlackReallySmallCircle","BlackReallySmallDiamond","BlackReallySmallSquare","BlackRightArrowHead","BlackRightCurvedArrowHead","BlackRightTriangle","BlackRightTriangleA","BlackRightTriangleB","BlackRightTriangleC","BlackRightTriangleD","BlackRightTriangleE","BlackRightTriangleF","BlackRightTriangleG","BlackRightTriangleH","BlackRightTriangleI","BlackSmallCircle","BlackSquare","BlackSquareA","BlackSquareB","BlackSquareC","BlackSquareD","BlackSquareE","BlackSquareF","BlackSquareG","BlackSquareH","BlackSquareI","BlackSquareRoundCorners","BlackUpTriangle","BlackUpTriangleA","BlackUpTriangleB","BlackUpTriangleC","BlackUpTriangleD","BlackUpTriangleE","BlackUpTriangleF","BlackUpTriangleG","BlackUpTriangleH","BlackUpTriangleI","BlackVerySmallCircle","BlackVerySmallSquare","BncBistab","BnchExists","BnchForAll","BnchHdnExists","BnchHdnForAll","BnchJoin","BnchMeet","BnchNtExists","BnchUnique","BndDot","BndMap","Bot","CDots","Choice","Choices","CircAsterick","CircDivd","CircDivide","CircEq","CircGr","CircGre","CircInvNt","CircLs","CircLse","CircMinus","CircMinusPlus","CircNand","CircNd","CircNgt","CircNor","CircNt","CircOr","CircPls","CircPlusMinus","CircSm","CircTimes","Circumflex","CircXor","Cln","ClsEquv","ClsImpl","Coh","Coma","Concat","Conseq","Cont","Cover","Cpyrght","CrossedCircle","CrossedCurvedDiamond","CrossedDiamond","CrossedDownTriangle","CrossedLeftTriangle","CrossedLozenge","CrossedRightTriangle","CrossedSmallCircle","CrossedSquare","CrossedSquareRoundCorners","CrossedUpTriangle","CrossedVerySmallCircle","CrossedVerySmallSquare","Dagger","Daggerr","DashArrowLeft","DashArrowRight","DAsterisk","Ddagger","Ddaggerr","Defn","DeoCont","DeoFutr","DeoNec","DeoNext","DeoNonCont","DeoPast","DeoPos","Divd","Divide","DMinus","Dnd","Dnt","Dollar","Dor","DottedCircl","DottedCurvedDiamond","DottedDiamond","DottedDownTriangle","DottedLeftArrowHead","DottedLeftTriangle","DottedLozenge","DottedRightArrowHead","DottedRightCurvedArrowHead","DottedRightTriangle","DottedSmallCircle","DottedSquare","DottedSquareRoundCorners","DottedUpTriangle","DottedVerySmallCircle","DottedVerySmallSquare","DoubleQuote","DownSlashedCircle","DownSlashedCurvedDiamond","DownSlashedDiamond","DownSlashedDownTriangle","DownSlashedLeftTriangle","DownSlashedLozenge","DownSlashedRightTriangle","DownSlashedSmallCircle","DownSlashedSquare","DownSlashedSquareRoundCorners","DownSlashedUpTriangle","DownSlashedVerySmallCircle","DownSlashedVerySmallSquare","DoxCont","DoxFutr","DoxNec","DoxNext","DoxNonCont","DoxPast","DoxPos","DPlus","Dt","DTimes","DTrpTurn","DTurnDWavy","DTurnWavy","End","Entail","EntailEquv","Eq","Equv","Exclaim","ExGrtFix","Exists","ExLstFix","FacCont","FacFutr","FacNec","FacNext","FacNonCont","FacPast","FacPos","False","FishArrowLeft","FishArrowRight","FlatArrowLeft","FlatArrowRight","FncCnvrs","FncComp","FntSbset","ForAll","ForComp","ForkArrowLeft","ForkArrowRight","FrstOrd","Func","FunParInGndMul","FunParInGndOne","FunParInGndSng","FunParInMul","FunParInOne","FunParInSng","FunParOnGndMul","FunParOnGndOne","FunParOnGndSng","FunParOnMul","FunParOnOne","FunParOnSng","FunTotInGndMul","FunTotInGndOne","FunTotInGndSng","FunTotInMul","FunTotInOne","FunTotInSng","FunTotOnGndMul","FunTotOnGndOne","FunTotOnGndSng","FunTotOnMul","FunTotOnOne","FunTotOnSng","Futr","Gr","Gre","GrtFix","HarpoonDnLeft","HarpoonDnRight","HarpoonUpLeft","HarpoonUpRight","HdnExists","HdnForAll","HookArrowLeft","HookArrowRight","HorizontallyDividedCircle","HorizontallyDividedCurvedDiamond","HorizontallyDividedDiamond","HorizontallyDividedDownTriangle","HorizontallyDividedLeftTriangle","HorizontallyDividedLozenge","HorizontallyDividedRightTriangle","HorizontallyDividedSmallCircle","HorizontallyDividedSquare","HorizontallyDividedSquareRoundCorners","HorizontallyDividedUpTriangle","HorizontallyDividedVerySmallCircle","HorizontallyDividedVerySmallSquare","Impl","In","InCoh","InEquv","Infin","InImpl","InvNt","LBlackCircle","LBlackCurvedDiamond","LBlackDiamond","LBlackDownTriangle","LBlackLeftArrowHead","LBlackLeftTriangle","LBlackLozenge","LBlackRightArrowHead","LBlackRightCurvedArrowHead","LBlackRightTriangle","LBlackSmallCircle","LBlackSquare","LBlackSquareRoundCorners","LBlackUpTriangle","LBlackVerySmallCircle","LBlackVerySmallSquare","LcgBistab","LDots","LeftSlash","LEntail","LEntailEquv","LEquv","LFunc","LgCircPlus","LgCircStar","LgCircTimes","LImpl","LInEquv","LInImpl","LMapTo","LMtEquv","LMtImpl","Lnand","LngVrtBar","Lnor","LogCont","LogFutr","LogNec","LogNext","LogNonCont","LogPast","LogPos","LoopArrowLeft","LoopArrowRight","LParFunc","Ls","Lse","LstFix","LWhiteCircle","LWhiteCurvedDiamond","LWhiteDiamond","LWhiteDownTriangle","LWhiteLeftArrowHead","LWhiteLeftTriangle","LWhiteLozenge","LWhiteRightArrowHead","LWhiteRightCurvedArrowHead","LWhiteRightTriangle","LWhiteSmallCircle","LWhiteSquare","LWhiteSquareRoundCorners","LWhiteUpTriangle","LWhiteVerySmallCircle","LWhiteVerySmallSquare","LWkEntail","LWkEntailEquv","LWkEquv","LWkImpl","LWkMtEquv","LWkMtImpl","Lxor","MapComp","MapJoin","MapMeet","MapParInGndMul","MapParInGndOne","MapParInGndSng","MapParInMul","MapParInOne","MapParInSng","MapParOnGndMul","MapParOnGndOne","MapParOnGndSng","MapParOnMul","MapParOnOne","MapParOnSng","MapTo","MapTotInGndMul","MapTotInGndOne","MapTotInGndSng","MapTotInMul","MapTotInOne","MapTotInSng","MapTotOnGndMul","MapTotOnGndOne","MapTotOnGndSng","MapTotOnMul","MapTotOnOne","MapTotOnSng","Minus","MinusPlus","Mnd","Model","Mor","MtEquv","MtImpl","MulMap","MulMapDual","MulMapInv","Nand","Nd","Nec","Next","NFalse","Ngt","NonCont","Nor","Normal","NoSpace","NotClsEquv","NotClsImpl","NotConseq","NotDTrpTurn","NotDTurnDWavy","NotDTurnWavy","NotEntail","NotEntailEquv","NotEq","NotEquv","NotFntSbset","NotGr","NotGre","NotImpl","NotIn","NotInEquv","NotInImpl","NotLEntail","NotLEntailEquv","NotLEquv","NotLImpl","NotLInEquv","NotLInImpl","NotLMtEquv","NotLMtImpl","NotLs","NotLse","NotLWkEntail","NotLWkEntailEquv","NotLWkEquv","NotLWkImpl","NotLWkMtEquv","NotLWkMtImpl","NotModel","NotMtEquv","NotMtImpl","NotMulMap","NotMulMapDual","NotMulMapInv","NotOwns","NotPre","NotPreq","NotRule","NotSbGr","NotSbGre","NotSbLs","NotSbLse","NotSbmap","NotSbnch","NotSbset","NotSEntail","NotSEntailEquv","NotSeq","NotSEquv","NotSImpl","NotSInEquv","NotSInImpl","NotSm","NotSMtEquv","NotSMtImpl","NotStrctFntSbset","NotStrctSbmap","NotStrctSbnch","NotStrctSbset","NotStrctWkSbnch","NotSuc","NotSucq","NotSWkEntail","NotSWkEntailEquv","NotSWkEquv","NotSWkImpl","NotSWkMtEquv","NotSWkMtImpl","NotTrpTurn","NotTurn","NotTurnDWavy","NotTurnWavy","NotVEntail","NotVEntailEquv","NotVEquv","NotVImpl","NotVInEquv","NotVInImpl","NotVMtEquv","NotVMtImpl","NotVWkEntail","NotVWkEntailEquv","NotVWkEquv","NotVWkImpl","NotVWkMtEquv","NotVWkMtImpl","NotWkEntail","NotWkEntailEquv","NotWkEquv","NotWkImpl","NotWkMtEquv","NotWkMtImpl","NotWkSbnch","NotXEntail","NotXEntailEquv","NotXEquv","NotXImpl","NotXInEquv","NotXInImpl","NotXMtEquv","NotXMtImpl","NotXWkEntail","NotXWkEntailEquv","NotXWkEquv","NotXWkImpl","NotXWkMtEquv","NotXWkMtImpl","Nt","NtExists","NTrue","NullSet","Numbr","Of","OfCrse","Or","OutlineCircle","OutlineCurvedDiamond","OutlineDiamond","OutlineDownTriangle","OutlineLeftArrowHead","OutlineLeftTriangle","OutlineLozenge","OutlineRightArrowHead","OutlineRightCurvedArrowHead","OutlineRightTriangle","OutlineSmallCircle","OutlineSquare","OutlineSquareRoundCorners","OutlineUpTriangle","OutlineVerySmallCircle","OutlineVerySmallSquare","Owns","ParFunc","Past","Percnt","Perp","Pls","PlusMinus","Pos","Pre","Preq","Qed","QuantAAnd","QuantBnchJoin","QuantBnchMeet","QuantCon","QuantDis","QuantMor","QuantSetJoin","QuantSetMeet","QuartedLozenge","QuarteredCircle","QuarteredCurvedDiamond","QuarteredDiamond","QuarteredDownTriangle","QuarteredLeftTriangle","QuarteredRightTriangle","QuarteredSmallCircle","QuarteredSquare","QuarteredSquareRoundCorners","QuarteredUpTriangle","QuarteredVerySmallCircle","QuarteredVerySmallSquare","Queston","RightSlash","RplcAll","RplcAllBnd","RplcAllBndLeft","RplcAllBndRight","RplcAllLeft","RplcAllRight","RplcAny","RplcAnyLeft","RplcAnyRight","RplcEquv","RplcEquvLeft","RplcEquvRight","RplcFree","RplcFreeLeft","RplcFreeRight","Rule","SbGr","SbGre","SbLs","SbLse","Sbmap","SbNand","Sbnch","SbNd","SbNor","SbOr","Sbset","SbXor","SCoh","Semicln","SEntail","SEntailEquv","Seq","SEquv","SetJoin","SetMeet","SetSymDiff","SFunc","Shfr","ShftAccent","ShftSubscr","ShftSuper","SimPerp","SImpl","Since","SInCoh","SInEquv","SingleQuote","SInImpl","Sm","SMapTo","SmCircPlus","SmCircStar","SmCircTimes","SMtEquv","SMtImpl","SParFunc","StrctFntSbset","StrctSbmap","StrctSbnch","StrctSbset","StrctWkSbnch","Suc","Sucq","SWkEntail","SWkEntailEquv","SWkEquv","SWkImpl","SWkMtEquv","SWkMtImpl","TFBoth","TFNone","Thus","Tild","Times","TmpCont","TmpFutr","TmpNec","TmpNext","TmpNonCont","TmpPast","TmpPos","Top","TripleQuote","TrpTurn","True","Turn","TurnDWavy","TurnWavy","Underscore","Unique","UpSlahsedSquareRoundCorners","UpSlashedCircle","UpSlashedCurvedDiamond","UpSlashedDiamond","UpSlashedDownTriangle","UpSlashedLeftTriangle","UpSlashedLozenge","UpSlashedRightTriangle","UpSlashedSmallCircle","UpSlashedSquare","UpSlashedUpTriangle","UpSlashedVerySmallCircle","UpSlashedVerySmallSquare","VDots","VeeJoin","VeeMeet","VEntail","VEntailEquv","VEquv","VerticallyDividedCircle","VerticallyDividedCurvedDiamond","VerticallyDividedDiamond","VerticallyDividedDownTriangle","VerticallyDividedLeftTriangle","VerticallyDividedLozenge","VerticallyDividedRightTriangle","VerticallyDividedSmallCircle","VerticallyDividedSquare","VerticallyDividedSquareRoundCorners","VerticallyDividedUpTriangle","VerticallyDividedVerySmallCircle","VerticallyDividedVerySmallSquare","VFunc","VImpl","VInEquv","VInImpl","VMapTo","VMtEquv","VMtImpl","VoidBunch","VParFunc","VWkEntail","VWkEntailEquv","VWkEquv","VWkImpl","VWkMtEquv","VWkMtImpl","WavyArrowLeft","WavyArrowRight","WhiteCircle","WhiteCircleA","WhiteCircleB","WhiteCircleC","WhiteCircleContainingBlackCircle","WhiteCircleD","WhiteCircleE","WhiteCircleF","WhiteCircleG","WhiteCircleH","WhiteCircleI","WhiteCurvedDiamond","WhiteCurvedDiamondContainingBlackDiamond","WhiteDiamond","WhiteDiamondA","WhiteDiamondB","WhiteDiamondC","WhiteDiamondContainingBlackDiamond","WhiteDiamondD","WhiteDiamondE","WhiteDiamondF","WhiteDiamondG","WhiteDiamondH","WhiteDiamondI","WhiteDownTriangle","WhiteDownTriangleA","WhiteDownTriangleB","WhiteDownTriangleC","WhiteDownTriangleContainingBlackDownTriangle","WhiteDownTriangleD","WhiteDownTriangleE","WhiteDownTriangleF","WhiteDownTriangleG","WhiteDownTriangleH","WhiteDownTriangleI","WhiteLeftArrowHead","WhiteLeftTriangle","WhiteLeftTriangleA","WhiteLeftTriangleB","WhiteLeftTriangleC","WhiteLeftTriangleContainingBlackLeftTriangle","WhiteLeftTriangleD","WhiteLeftTriangleE","WhiteLeftTriangleF","WhiteLeftTriangleG","WhiteLeftTriangleH","WhiteLeftTriangleI","WhiteLozenge","WhiteLozengeContainingBlackLozenge","WhiteReallySmallCircle","WhiteReallySmallDiamond","WhiteReallySmallSquare","WhiteRightArrowHead","WhiteRightCurvedArrowHead","WhiteRightTriangle","WhiteRightTriangleA","WhiteRightTriangleB","WhiteRightTriangleC","WhiteRightTriangleContainingBlackRightTriangle","WhiteRightTriangleD","WhiteRightTriangleE","WhiteRightTriangleF","WhiteRightTriangleG","WhiteRightTriangleH","WhiteRightTriangleI","WhiteSmallCircle","WhiteSmallCircleContainingBlackCircle","WhiteSquare","WhiteSquareA","WhiteSquareB","WhiteSquareC","WhiteSquareContainingBlackSquare","WhiteSquareD","WhiteSquareE","WhiteSquareF","WhiteSquareG","WhiteSquareH","WhiteSquareI","WhiteSquareRoundCorners","WhiteSquareRoundCornersContainingBlackSquare","WhiteUpTriangle","WhiteUpTriangleA","WhiteUpTriangleB","WhiteUpTriangleC","WhiteUpTriangleContainingBlackUpTriangle","WhiteUpTriangleD","WhiteUpTriangleE","WhiteUpTriangleF","WhiteUpTriangleG","WhiteUpTriangleH","WhiteUpTriangleI","WhiteVerySmallCircle","WhiteVerySmallCircleContainingBlackCircle","WhiteVerySmallSquare","WhiteVerySmallSquareContainingBlackSquare","WhyNot","WkEntail","WkEntailEquv","WkEquv","WkImpl","WkMtEquv","WkMtImpl","WkSbnch","XEntail","XEntailEquv","XEquv","XFunc","XImpl","XInEquv","XInImpl","XMapTo","XMtEquv","XMtImpl","Xor","XParFunc","XWkEntail","XWkEntailEquv","XWkEquv","XWkImpl","XWkMtEquv","XWkMtImpl","ZigArrowLeft","ZigArrowRight","OpnAngl","OpnAnglS","OpnAnglA","OpnAnglB","OpnAnglC","OpnAnglD","OpnAnglE","OpnAnglF","OpnAnglG","OpnAnglH","OpnAnglI","OpnAnglJ","OpnAnglK","OpnAnglL","OpnAnglM","OpnAnglN","OpnAnglO","OpnAnglP","OpnAnglBar","OpnAnglBarS","OpnAnglBarA","OpnAnglBarB","OpnAnglBarC","OpnAnglBarD","OpnAnglBarE","OpnAnglBarF","OpnAnglBarG","OpnAnglBarH","OpnAnglBarI","OpnAnglBarJ","OpnAnglBarK","OpnAnglBarL","OpnAnglBarM","OpnAnglBarN","OpnAnglBarO","OpnAnglBarP","OpnArrwBrac","OpnArrwBracS","OpnArrwBracA","OpnArrwBracB","OpnArrwBracC","OpnArrwBracD","OpnArrwBracE","OpnArrwBracF","OpnArrwBracG","OpnArrwBracH","OpnArrwBracI","OpnArrwBracJ","OpnArrwBracK","OpnArrwBracL","OpnBar","OpnBarS","OpnBarA","OpnBarB","OpnBarC","OpnBarD","OpnBarE","OpnBarF","OpnBarG","OpnBarH","OpnBarI","OpnBarJ","OpnBarK","OpnBarL","OpnBrac","OpnBracS","OpnBracA","OpnBracB","OpnBracC","OpnBracD","OpnBracE","OpnBracF","OpnBracG","OpnBracH","OpnBracI","OpnBracJ","OpnBracK","OpnBracL","OpnBracBar","OpnBracBarS","OpnBracBarA","OpnBracBarB","OpnBracBarC","OpnBracBarD","OpnBracBarE","OpnBracBarF","OpnBracBarG","OpnBracBarH","OpnBracBarI","OpnBracBarJ","OpnBracBarK","OpnBracBarL","OpnBrknBrac","OpnBrknBracS","OpnBrknBracA","OpnBrknBracB","OpnBrknBracC","OpnBrknBracD","OpnBrknBracE","OpnBrknBracF","OpnBrknBracG","OpnBrknBracH","OpnBrknBracI","OpnBrknBracJ","OpnBrknBracK","OpnBrknBracL","OpnBrknBracBar","OpnBrknBracBarS","OpnBrknBracBarA","OpnBrknBracBarB","OpnBrknBracBarC","OpnBrknBracBarD","OpnBrknBracBarE","OpnBrknBracBarF","OpnBrknBracBarG","OpnBrknBracBarH","OpnBrknBracBarI","OpnBrknBracBarJ","OpnBrknBracBarK","OpnBrknBracBarL","OpnBrknBrkt","OpnBrknBrktS","OpnBrknBrktA","OpnBrknBrktB","OpnBrknBrktC","OpnBrknBrktD","OpnBrknBrktE","OpnBrknBrktF","OpnBrknBrktG","OpnBrknBrktH","OpnBrknBrktI","OpnBrknBrktJ","OpnBrknBrktK","OpnBrknBrktL","OpnBrknBrktBar","OpnBrknBrktBarS","OpnBrknBrktBarA","OpnBrknBrktBarB","OpnBrknBrktBarC","OpnBrknBrktBarD","OpnBrknBrktBarE","OpnBrknBrktBarF","OpnBrknBrktBarG","OpnBrknBrktBarH","OpnBrknBrktBarI","OpnBrknBrktBarJ","OpnBrknBrktBarK","OpnBrknBrktBarL","OpnBrkt","OpnBrktS","OpnBrktA","OpnBrktB","OpnBrktC","OpnBrktD","OpnBrktE","OpnBrktF","OpnBrktG","OpnBrktH","OpnBrktI","OpnBrktJ","OpnBrktK","OpnBrktL","OpnBrktBar","OpnBrktBarS","OpnBrktBarA","OpnBrktBarB","OpnBrktBarC","OpnBrktBarD","OpnBrktBarE","OpnBrktBarF","OpnBrktBarG","OpnBrktBarH","OpnBrktBarI","OpnBrktBarJ","OpnBrktBarK","OpnBrktBarL","OpnCeil","OpnCeilS","OpnCeilA","OpnCeilB","OpnCeilC","OpnCeilD","OpnCeilE","OpnCeilF","OpnCeilG","OpnCeilH","OpnCeilI","OpnCeilJ","OpnCeilK","OpnCeilL","OpnCircBrac","OpnCircBracS","OpnCircBracA","OpnCircBracB","OpnCircBracC","OpnCircBracD","OpnCircBracE","OpnCircBracF","OpnCircBracG","OpnCircBracH","OpnCircBracI","OpnCircBracJ","OpnCircBracK","OpnCircBracL","OpnCircBracBar","OpnCircBracBarS","OpnCircBracBarA","OpnCircBracBarB","OpnCircBracBarC","OpnCircBracBarD","OpnCircBracBarE","OpnCircBracBarF","OpnCircBracBarG","OpnCircBracBarH","OpnCircBracBarI","OpnCircBracBarJ","OpnCircBracBarK","OpnCircBracBarL","OpnCircBrkt","OpnCircBrktS","OpnCircBrktA","OpnCircBrktB","OpnCircBrktC","OpnCircBrktD","OpnCircBrktE","OpnCircBrktF","OpnCircBrktG","OpnCircBrktH","OpnCircBrktI","OpnCircBrktJ","OpnCircBrktK","OpnCircBrktL","OpnCircBrktBar","OpnCircBrktBarS","OpnCircBrktBarA","OpnCircBrktBarB","OpnCircBrktBarC","OpnCircBrktBarD","OpnCircBrktBarE","OpnCircBrktBarF","OpnCircBrktBarG","OpnCircBrktBarH","OpnCircBrktBarI","OpnCircBrktBarJ","OpnCircBrktBarK","OpnCircBrktBarL","OpnCntx","OpnCntxS","OpnCntxA","OpnCntxB","OpnCntxC","OpnCntxD","OpnCntxE","OpnCntxF","OpnCntxG","OpnCntxH","OpnCntxI","OpnCntxJ","OpnCntxK","OpnCntxL","OpnCrlyBrkt","OpnCrlyBrktS","OpnCrlyBrktA","OpnCrlyBrktB","OpnCrlyBrktC","OpnCrlyBrktD","OpnCrlyBrktE","OpnCrlyBrktF","OpnCrlyBrktG","OpnCrlyBrktH","OpnCrlyBrktI","OpnCrlyBrktJ","OpnCrlyBrktK","OpnCrlyBrktL","OpnCrlyBrktBar","OpnCrlyBrktBarS","OpnCrlyBrktBarA","OpnCrlyBrktBarB","OpnCrlyBrktBarC","OpnCrlyBrktBarD","OpnCrlyBrktBarE","OpnCrlyBrktBarF","OpnCrlyBrktBarG","OpnCrlyBrktBarH","OpnCrlyBrktBarI","OpnCrlyBrktBarJ","OpnCrlyBrktBarK","OpnCrlyBrktBarL","OpnCurvAngl","OpnCurvAnglS","OpnCurvAnglA","OpnCurvAnglB","OpnCurvAnglC","OpnCurvAnglD","OpnCurvAnglE","OpnCurvAnglF","OpnCurvAnglG","OpnCurvAnglH","OpnCurvAnglI","OpnCurvAnglJ","OpnCurvAnglK","OpnCurvAnglL","OpnCurvAnglM","OpnCurvAnglN","OpnCurvAnglO","OpnCurvAnglP","OpnDblAngl","OpnDblAnglS","OpnDblAnglA","OpnDblAnglB","OpnDblAnglC","OpnDblAnglD","OpnDblAnglE","OpnDblAnglF","OpnDblAnglG","OpnDblAnglH","OpnDblAnglI","OpnDblAnglJ","OpnDblAnglK","OpnDblAnglL","OpnDblAnglM","OpnDblAnglN","OpnDblAnglO","OpnDblAnglP","OpnDblBar","OpnDblBarS","OpnDblBarA","OpnDblBarB","OpnDblBarC","OpnDblBarD","OpnDblBarE","OpnDblBarF","OpnDblBarG","OpnDblBarH","OpnDblBarI","OpnDblBarJ","OpnDblBarK","OpnDblBarL","OpnDblBrac","OpnDblBracS","OpnDblBracA","OpnDblBracB","OpnDblBracC","OpnDblBracD","OpnDblBracE","OpnDblBracF","OpnDblBracG","OpnDblBracH","OpnDblBracI","OpnDblBracJ","OpnDblBracK","OpnDblBracL","OpnDblGrp","OpnDblGrpS","OpnDblGrpA","OpnDblGrpB","OpnDblGrpC","OpnDblGrpD","OpnDblGrpE","OpnDblGrpF","OpnDblGrpG","OpnDblGrpH","OpnDblGrpI","OpnDblGrpJ","OpnDblGrpK","OpnDblGrpL","OpnDblCeil","OpnDblCeilS","OpnDblCeilA","OpnDblCeilB","OpnDblCeilC","OpnDblCeilD","OpnDblCeilE","OpnDblCeilF","OpnDblCeilG","OpnDblCeilH","OpnDblCeilI","OpnDblCeilJ","OpnDblCeilK","OpnDblCeilL","OpnDblFloor","OpnDblFloorS","OpnDblFloorA","OpnDblFloorB","OpnDblFloorC","OpnDblFloorD","OpnDblFloorE","OpnDblFloorF","OpnDblFloorG","OpnDblFloorH","OpnDblFloorI","OpnDblFloorJ","OpnDblFloorK","OpnDblFloorL","OpnDblParn","OpnDblParnS","OpnDblParnA","OpnDblParnB","OpnDblParnC","OpnDblParnD","OpnDblParnE","OpnDblParnF","OpnDblParnG","OpnDblParnH","OpnDblParnI","OpnDblParnJ","OpnDblParnK","OpnDblParnL","OpnFloor","OpnFloorS","OpnFloorA","OpnFloorB","OpnFloorC","OpnFloorD","OpnFloorE","OpnFloorF","OpnFloorG","OpnFloorH","OpnFloorI","OpnFloorJ","OpnFloorK","OpnFloorL","OpnGrp","OpnGrpS","OpnGrpA","OpnGrpB","OpnGrpC","OpnGrpD","OpnGrpE","OpnGrpF","OpnGrpG","OpnGrpH","OpnGrpI","OpnGrpJ","OpnGrpK","OpnGrpL","OpnParn","OpnParnS","OpnParnA","OpnParnB","OpnParnC","OpnParnD","OpnParnE","OpnParnF","OpnParnG","OpnParnH","OpnParnI","OpnParnJ","OpnParnK","OpnParnL","OpnParnBar","OpnParnBarS","OpnParnBarA","OpnParnBarB","OpnParnBarC","OpnParnBarD","OpnParnBarE","OpnParnBarF","OpnParnBarG","OpnParnBarH","OpnParnBarI","OpnParnBarJ","OpnParnBarK","OpnParnBarL","OpnSqrParn","OpnSqrParnS","OpnSqrParnA","OpnSqrParnB","OpnSqrParnC","OpnSqrParnD","OpnSqrParnE","OpnSqrParnF","OpnSqrParnG","OpnSqrParnH","OpnSqrParnI","OpnSqrParnJ","OpnSqrParnK","OpnSqrParnL","OpnTortoise","OpnTortoiseS","OpnTortoiseA","OpnTortoiseB","OpnTortoiseC","OpnTortoiseD","OpnTortoiseE","OpnTortoiseF","OpnTortoiseG","OpnTortoiseH","OpnTortoiseI","OpnTortoiseJ","OpnTortoiseK","OpnTortoiseL","OpnTortoiseBar","OpnTortoiseBarS","OpnTortoiseBarA","OpnTortoiseBarB","OpnTortoiseBarC","OpnTortoiseBarD","OpnTortoiseBarE","OpnTortoiseBarF","OpnTortoiseBarG","OpnTortoiseBarH","OpnTortoiseBarI","OpnTortoiseBarJ","OpnTortoiseBarK","OpnTortoiseBarL","OpnTrpBar","OpnTrpBarS","OpnTrpBarA","OpnTrpBarB","OpnTrpBarC","OpnTrpBarD","OpnTrpBarE","OpnTrpBarF","OpnTrpBarG","OpnTrpBarH","OpnTrpBarI","OpnTrpBarJ","OpnTrpBarK","OpnTrpBarL","OpnTurn","OpnTurnS","OpnTurnA","OpnTurnB","OpnTurnC","OpnTurnD","OpnTurnE","OpnTurnF","OpnTurnG","OpnTurnH","OpnTurnI","OpnTurnJ","OpnTurnK","OpnTurnL","ClsAngl","ClsAnglS","ClsAnglA","ClsAnglB","ClsAnglC","ClsAnglD","ClsAnglE","ClsAnglF","ClsAnglG","ClsAnglH","ClsAnglI","ClsAnglJ","ClsAnglK","ClsAnglL","ClsAnglM","ClsAnglN","ClsAnglO","ClsAnglP","ClsAnglBar","ClsAnglBarS","ClsAnglBarA","ClsAnglBarB","ClsAnglBarC","ClsAnglBarD","ClsAnglBarE","ClsAnglBarF","ClsAnglBarG","ClsAnglBarH","ClsAnglBarI","ClsAnglBarJ","ClsAnglBarK","ClsAnglBarL","ClsAnglBarM","ClsAnglBarN","ClsAnglBarO","ClsAnglBarP","ClsArrwBrac","ClsArrwBracS","ClsArrwBracA","ClsArrwBracB","ClsArrwBracC","ClsArrwBracD","ClsArrwBracE","ClsArrwBracF","ClsArrwBracG","ClsArrwBracH","ClsArrwBracI","ClsArrwBracJ","ClsArrwBracK","ClsArrwBracL","ClsBar","ClsBarS","ClsBarA","ClsBarB","ClsBarC","ClsBarD","ClsBarE","ClsBarF","ClsBarG","ClsBarH","ClsBarI","ClsBarJ","ClsBarK","ClsBarL","ClsBrac","ClsBracS","ClsBracA","ClsBracB","ClsBracC","ClsBracD","ClsBracE","ClsBracF","ClsBracG","ClsBracH","ClsBracI","ClsBracJ","ClsBracK","ClsBracL","ClsBracBar","ClsBracBarS","ClsBracBarA","ClsBracBarB","ClsBracBarC","ClsBracBarD","ClsBracBarE","ClsBracBarF","ClsBracBarG","ClsBracBarH","ClsBracBarI","ClsBracBarJ","ClsBracBarK","ClsBracBarL","ClsBrknBrac","ClsBrknBracS","ClsBrknBracA","ClsBrknBracB","ClsBrknBracC","ClsBrknBracD","ClsBrknBracE","ClsBrknBracF","ClsBrknBracG","ClsBrknBracH","ClsBrknBracI","ClsBrknBracJ","ClsBrknBracK","ClsBrknBracL","ClsBrknBracBar","ClsBrknBracBarS","ClsBrknBracBarA","ClsBrknBracBarB","ClsBrknBracBarC","ClsBrknBracBarD","ClsBrknBracBarE","ClsBrknBracBarF","ClsBrknBracBarG","ClsBrknBracBarH","ClsBrknBracBarI","ClsBrknBracBarJ","ClsBrknBracBarK","ClsBrknBracBarL","ClsBrknBrkt","ClsBrknBrktS","ClsBrknBrktA","ClsBrknBrktB","ClsBrknBrktC","ClsBrknBrktD","ClsBrknBrktE","ClsBrknBrktF","ClsBrknBrktG","ClsBrknBrktH","ClsBrknBrktI","ClsBrknBrktJ","ClsBrknBrktK","ClsBrknBrktL","ClsBrknBrktBar","ClsBrknBrktBarS","ClsBrknBrktBarA","ClsBrknBrktBarB","ClsBrknBrktBarC","ClsBrknBrktBarD","ClsBrknBrktBarE","ClsBrknBrktBarF","ClsBrknBrktBarG","ClsBrknBrktBarH","ClsBrknBrktBarI","ClsBrknBrktBarJ","ClsBrknBrktBarK","ClsBrknBrktBarL","ClsBrkt","ClsBrktS","ClsBrktA","ClsBrktB","ClsBrktC","ClsBrktD","ClsBrktE","ClsBrktF","ClsBrktG","ClsBrktH","ClsBrktI","ClsBrktJ","ClsBrktK","ClsBrktL","ClsBrktBar","ClsBrktBarS","ClsBrktBarA","ClsBrktBarB","ClsBrktBarC","ClsBrktBarD","ClsBrktBarE","ClsBrktBarF","ClsBrktBarG","ClsBrktBarH","ClsBrktBarI","ClsBrktBarJ","ClsBrktBarK","ClsBrktBarL","ClsCeil","ClsCeilS","ClsCeilA","ClsCeilB","ClsCeilC","ClsCeilD","ClsCeilE","ClsCeilF","ClsCeilG","ClsCeilH","ClsCeilI","ClsCeilJ","ClsCeilK","ClsCeilL","ClsCircBrac","ClsCircBracS","ClsCircBracA","ClsCircBracB","ClsCircBracC","ClsCircBracD","ClsCircBracE","ClsCircBracF","ClsCircBracG","ClsCircBracH","ClsCircBracI","ClsCircBracJ","ClsCircBracK","ClsCircBracL","ClsCircBracBar","ClsCircBracBarS","ClsCircBracBarA","ClsCircBracBarB","ClsCircBracBarC","ClsCircBracBarD","ClsCircBracBarE","ClsCircBracBarF","ClsCircBracBarG","ClsCircBracBarH","ClsCircBracBarI","ClsCircBracBarJ","ClsCircBracBarK","ClsCircBracBarL","ClsCircBrkt","ClsCircBrktS","ClsCircBrktA","ClsCircBrktB","ClsCircBrktC","ClsCircBrktD","ClsCircBrktE","ClsCircBrktF","ClsCircBrktG","ClsCircBrktH","ClsCircBrktI","ClsCircBrktJ","ClsCircBrktK","ClsCircBrktL","ClsCircBrktBar","ClsCircBrktBarS","ClsCircBrktBarA","ClsCircBrktBarB","ClsCircBrktBarC","ClsCircBrktBarD","ClsCircBrktBarE","ClsCircBrktBarF","ClsCircBrktBarG","ClsCircBrktBarH","ClsCircBrktBarI","ClsCircBrktBarJ","ClsCircBrktBarK","ClsCircBrktBarL","ClsCntx","ClsCntxS","ClsCntxA","ClsCntxB","ClsCntxC","ClsCntxD","ClsCntxE","ClsCntxF","ClsCntxG","ClsCntxH","ClsCntxI","ClsCntxJ","ClsCntxK","ClsCntxL","ClsCrlyBrkt","ClsCrlyBrktS","ClsCrlyBrktA","ClsCrlyBrktB","ClsCrlyBrktC","ClsCrlyBrktD","ClsCrlyBrktE","ClsCrlyBrktF","ClsCrlyBrktG","ClsCrlyBrktH","ClsCrlyBrktI","ClsCrlyBrktJ","ClsCrlyBrktK","ClsCrlyBrktL","ClsCrlyBrktBar","ClsCrlyBrktBarS","ClsCrlyBrktBarA","ClsCrlyBrktBarB","ClsCrlyBrktBarC","ClsCrlyBrktBarD","ClsCrlyBrktBarE","ClsCrlyBrktBarF","ClsCrlyBrktBarG","ClsCrlyBrktBarH","ClsCrlyBrktBarI","ClsCrlyBrktBarJ","ClsCrlyBrktBarK","ClsCrlyBrktBarL","ClsCurvAngl","ClsCurvAnglS","ClsCurvAnglA","ClsCurvAnglB","ClsCurvAnglC","ClsCurvAnglD","ClsCurvAnglE","ClsCurvAnglF","ClsCurvAnglG","ClsCurvAnglH","ClsCurvAnglI","ClsCurvAnglJ","ClsCurvAnglK","ClsCurvAnglL","ClsCurvAnglM","ClsCurvAnglN","ClsCurvAnglO","ClsCurvAnglP","ClsDblAngl","ClsDblAnglS","ClsDblAnglA","ClsDblAnglB","ClsDblAnglC","ClsDblAnglD","ClsDblAnglE","ClsDblAnglF","ClsDblAnglG","ClsDblAnglH","ClsDblAnglI","ClsDblAnglJ","ClsDblAnglK","ClsDblAnglL","ClsDblAnglM","ClsDblAnglN","ClsDblAnglO","ClsDblAnglP","ClsDblBar","ClsDblBarS","ClsDblBarA","ClsDblBarB","ClsDblBarC","ClsDblBarD","ClsDblBarE","ClsDblBarF","ClsDblBarG","ClsDblBarH","ClsDblBarI","ClsDblBarJ","ClsDblBarK","ClsDblBarL","ClsDblBrac","ClsDblBracS","ClsDblBracA","ClsDblBracB","ClsDblBracC","ClsDblBracD","ClsDblBracE","ClsDblBracF","ClsDblBracG","ClsDblBracH","ClsDblBracI","ClsDblBracJ","ClsDblBracK","ClsDblBracL","ClsDblCeil","ClsDblCeilS","ClsDblCeilA","ClsDblCeilB","ClsDblCeilC","ClsDblCeilD","ClsDblCeilE","ClsDblCeilF","ClsDblCeilG","ClsDblCeilH","ClsDblCeilI","ClsDblCeilJ","ClsDblCeilK","ClsDblCeilL","ClsDblFloor","ClsDblFloorS","ClsDblFloorA","ClsDblFloorB","ClsDblFloorC","ClsDblFloorD","ClsDblFloorE","ClsDblFloorF","ClsDblFloorG","ClsDblFloorH","ClsDblFloorI","ClsDblFloorJ","ClsDblFloorK","ClsDblFloorL","ClsDblGrp","ClsDblGrpS","ClsDblGrpA","ClsDblGrpB","ClsDblGrpC","ClsDblGrpD","ClsDblGrpE","ClsDblGrpF","ClsDblGrpG","ClsDblGrpH","ClsDblGrpI","ClsDblGrpJ","ClsDblGrpK","ClsDblGrpL","ClsDblParn","ClsDblParnS","ClsDblParnA","ClsDblParnB","ClsDblParnC","ClsDblParnD","ClsDblParnE","ClsDblParnF","ClsDblParnG","ClsDblParnH","ClsDblParnI","ClsDblParnJ","ClsDblParnK","ClsDblParnL","ClsFloor","ClsFloorS","ClsFloorA","ClsFloorB","ClsFloorC","ClsFloorD","ClsFloorE","ClsFloorF","ClsFloorG","ClsFloorH","ClsFloorI","ClsFloorJ","ClsFloorK","ClsFloorL","ClsGrp","ClsGrpS","ClsGrpA","ClsGrpB","ClsGrpC","ClsGrpD","ClsGrpE","ClsGrpF","ClsGrpG","ClsGrpH","ClsGrpI","ClsGrpJ","ClsGrpK","ClsGrpL","ClsParn","ClsParnS","ClsParnA","ClsParnB","ClsParnC","ClsParnD","ClsParnE","ClsParnF","ClsParnG","ClsParnH","ClsParnI","ClsParnJ","ClsParnK","ClsParnL","ClsParnBar","ClsParnBarS","ClsParnBarA","ClsParnBarB","ClsParnBarC","ClsParnBarD","ClsParnBarE","ClsParnBarF","ClsParnBarG","ClsParnBarH","ClsParnBarI","ClsParnBarJ","ClsParnBarK","ClsParnBarL","ClsSqrParn","ClsSqrParnS","ClsSqrParnA","ClsSqrParnB","ClsSqrParnC","ClsSqrParnD","ClsSqrParnE","ClsSqrParnF","ClsSqrParnG","ClsSqrParnH","ClsSqrParnI","ClsSqrParnJ","ClsSqrParnK","ClsSqrParnL","ClsTortoise","ClsTortoiseS","ClsTortoiseA","ClsTortoiseB","ClsTortoiseC","ClsTortoiseD","ClsTortoiseE","ClsTortoiseF","ClsTortoiseG","ClsTortoiseH","ClsTortoiseI","ClsTortoiseJ","ClsTortoiseK","ClsTortoiseL","ClsTortoiseBar","ClsTortoiseBarS","ClsTortoiseBarA","ClsTortoiseBarB","ClsTortoiseBarC","ClsTortoiseBarD","ClsTortoiseBarE","ClsTortoiseBarF","ClsTortoiseBarG","ClsTortoiseBarH","ClsTortoiseBarI","ClsTortoiseBarJ","ClsTortoiseBarK","ClsTortoiseBarL","ClsTrpBar","ClsTrpBarS","ClsTrpBarA","ClsTrpBarB","ClsTrpBarC","ClsTrpBarD","ClsTrpBarE","ClsTrpBarF","ClsTrpBarG","ClsTrpBarH","ClsTrpBarI","ClsTrpBarJ","ClsTrpBarK","ClsTrpBarL","ClsTurn","ClsTurnS","ClsTurnA","ClsTurnB","ClsTurnC","ClsTurnD","ClsTurnE","ClsTurnF","ClsTurnG","ClsTurnH","ClsTurnI","ClsTurnJ","ClsTurnK","ClsTurnL","BndBar","BndBarS","BndBarA","BndBarB","BndBarC","BndBarD","BndBarE","BndBarF","BndBarG","BndBarH","BndBarI","BndBarJ","BndBarK","BndBarL","bluLtrBase","bluNbrBase","BndBarBtm","BndBarExt","cliLtrBase","CliLtrBase","cliNbrBase","CliNbrBase","ClsArrwBracBtm","ClsArrwBracExt","ClsArrwBracMid","ClsArrwBracTop","ClsBarBtm","ClsBarExt","ClsBracBarBtm","ClsBracBarExt","ClsBracBarMid","ClsBracBarTop","ClsBracBtm","ClsBracExt","ClsBracMid","ClsBracTop","ClsBrknBracBarBtm","ClsBrknBracBarExt","ClsBrknBracBarMid","ClsBrknBracBarTop","ClsBrknBracBtm","ClsBrknBracExt","ClsBrknBracMid","ClsBrknBracTop","ClsBrknBrktBarBtm","ClsBrknBrktBarExt","ClsBrknBrktBarMid","ClsBrknBrktBarTop","ClsBrknBrktBtm","ClsBrknBrktExt","ClsBrknBrktMid","ClsBrknBrktTop","ClsBrktBarBtm","ClsBrktBarExt","ClsBrktBarTop","ClsBrktBtm","ClsBrktExt","ClsBrktTop","ClsCeilExt","ClsCeilTop","ClsCircBracBarBtm","ClsCircBracBarExt","ClsCircBracBarMid","ClsCircBracBarTop","ClsCircBracBtm","ClsCircBracExt","ClsCircBracMid","ClsCircBracTop","ClsCircBrktBarBtm","ClsCircBrktBarExt","ClsCircBrktBarMid","ClsCircBrktBarTop","ClsCircBrktBtm","ClsCircBrktExt","ClsCircBrktMid","ClsCircBrktTop","ClsCrlyBrktBarBtm","ClsCrlyBrktBarExt","ClsCrlyBrktBarMid","ClsCrlyBrktBarTop","ClsCrlyBrktBtm","ClsCrlyBrktExt","ClsCrlyBrktMid","ClsCrlyBrktTop","ClsDblBarBtm","ClsDblBarExt","ClsDblBracBtm","ClsDblBracExt","ClsDblBracMid","ClsDblBracTop","ClsDblCeilExt","ClsDblCeilTop","ClsDblFloorBtm","ClsDblFloorExt","ClsDblGrpBtm","ClsDblGrpExt","ClsDblGrpTop","ClsDblParnBtm","ClsDblParnExt","ClsDblParnTop","ClsFloorBtm","ClsFloorExt","ClsGrpBtm","ClsGrpExt","ClsGrpTop","ClsParnBarBtm","ClsParnBarExt","ClsParnBarTop","ClsParnBtm","ClsParnExt","ClsParnTop","ClsSqrParnBtm","ClsSqrParnExt","ClsSqrParnTop","ClsTortoiseBarBtm","ClsTortoiseBarExt","ClsTortoiseBarTop","ClsTortoiseBtm","ClsTortoiseExt","ClsTortoiseTop","ClsTrpBarBtm","ClsTrpBarExt","ClsTurnExt","ClsTurnMid","defineDelimiter","defineDelimiterX","defineGreekScript","defineGreekScriptMacro","defineLatinScript","defineLatinScriptMacro","fruLtrBase","FruLtrBase","fruNbrBase","FruNbrBase","griLtrBase","gruLtrBase","Kntlge","Kntlgf","Kntlgk","Kntlgq","Kntlgv","lge","lgf","lgk","lgl","lgm","lgq","lgr","lgv","lgx","logix","mniLtrBase","mniNbrBase","mnuLtrBase","mnuNbrBase","OpnArrwBracBtm","OpnArrwBracExt","OpnArrwBracMid","OpnArrwBracTop","OpnBarBtm","OpnBarExt","OpnBracBarBtm","OpnBracBarExt","OpnBracBarMid","OpnBracBarTop","OpnBracBtm","OpnBracExt","OpnBracMid","OpnBracTop","OpnBrknBracBarBtm","OpnBrknBracBarExt","OpnBrknBracBarMid","OpnBrknBracBarTop","OpnBrknBracBtm","OpnBrknBracExt","OpnBrknBracMid","OpnBrknBracTop","OpnBrknBrktBarBtm","OpnBrknBrktBarExt","OpnBrknBrktBarMid","OpnBrknBrktBarTop","OpnBrknBrktBtm","OpnBrknBrktExt","OpnBrknBrktMid","OpnBrknBrktTop","OpnBrktBarBtm","OpnBrktBarExt","OpnBrktBarTop","OpnBrktBtm","OpnBrktExt","OpnBrktTop","OpnCeilExt","OpnCeilTop","OpnCircBracBarBtm","OpnCircBracBarExt","OpnCircBracBarMid","OpnCircBracBarTop","OpnCircBracBtm","OpnCircBracExt","OpnCircBracMid","OpnCircBracTop","OpnCircBrktBarBtm","OpnCircBrktBarExt","OpnCircBrktBarMid","OpnCircBrktBarTop","OpnCircBrktBtm","OpnCircBrktExt","OpnCircBrktMid","OpnCircBrktTop","OpnCrlyBrktBarBtm","OpnCrlyBrktBarExt","OpnCrlyBrktBarMid","OpnCrlyBrktBarTop","OpnCrlyBrktBtm","OpnCrlyBrktExt","OpnCrlyBrktMid","OpnCrlyBrktTop","OpnDblBarBtm","OpnDblBarExt","OpnDblBracBtm","OpnDblBracExt","OpnDblBracMid","OpnDblBracTop","OpnDblCeilExt","OpnDblCeilTop","OpnDblFloorBtm","OpnDblFloorExt","OpnDblGrpBtm","OpnDblGrpExt","OpnDblGrpTop","OpnDblParnBtm","OpnDblParnExt","OpnDblParnTop","OpnFloorBtm","OpnFloorExt","OpnGrpBtm","OpnGrpExt","OpnGrpTop","OpnParnBarBtm","OpnParnBarExt","OpnParnBarTop","OpnParnBtm","OpnParnExt","OpnParnTop","OpnSqrParnBtm","OpnSqrParnExt","OpnSqrParnTop","OpnTortoiseBarBtm","OpnTortoiseBarExt","OpnTortoiseBarTop","OpnTortoiseBtm","OpnTortoiseExt","OpnTortoiseTop","OpnTrpBarBtm","OpnTrpBarExt","OpnTurnExt","OpnTurnMid","PrfBgn","PrfEnd","saiLtrBase","SaiLtrBase","saiNbrBase","SaiNbrBase","sauLtrBase","SauLtrBase","sauNbrBase","SauNbrBase","sliLtrBase","SliLtrBase","sliNbrBase","SliNbrBase","sluLtrBase","SluLtrBase","sluNbrBase","SluNbrBase","sriLtrBase","SriLtrBase","sriNbrBase","SriNbrBase","sruLtrBase","SruLtrBase","sruNbrBase","SruNbrBase","symLogix"]}
-,
-"logpap.sty":{"envs":{},"deps":["calc.sty","color.sty"],"cmds":["LPSet","loglinpap","linlogpap","loglogpap","linlinpap","DefineLPLabelColor","DefineLPLabelDist","DefineLPLabelFont","DefineLPLineColor","DefineLPMedLineThickness","DefineLPMedTickLen","DefineLPMinLineDist","DefineLPmu","DefineLPText","DefineLPThickLineThickness","DefineLPThickTickLen","DefineLPThinLineThickness","filedate","fileversion"]}
-,
-"logreq.sty":{"envs":{},"deps":["etoolbox.sty","keyval.sty"],"cmds":["binary","cmdline","DeclareLogreqAttribute","DeclareLogreqContainer","DeclareLogreqElement","external","file","generic","infile","internal","LogreqDTDVersion","logrequest","ltxrequest","option","outfile","provides","requests","requires"]}
-,
-"logsys.sty":{"envs":{},"deps":["coordsys.sty"],"cmds":["logline","vlogline","logsys","semilogsys","loglogsys","loggrid","semiloggrid","logloggrid","interval","intervalthickness","vinterval"]}
-,
-"longbox.sty":{"envs":["longbox","lvbox"],"deps":["options.sty","footnote.sty"],"cmds":["addvskip","lbox","nofirstindent","nofirstparskip","unvcolorbox","vcolorbox"]}
-,
-"longdivision.sty":{"envs":{},"deps":["xparse.sty"],"cmds":["longdivision","intlongdivision","longdivisionkeys","longdivisiondefinestyle"]}
-,
-"longfbox.sty":{"envs":["longfbox"],"deps":["options.sty","longbox.sty","pict2e.sty","ellipse.sty"],"cmds":["lfbox","newfboxstyle","fboxset","optionlengthlimit","optionradiuslimit"]}
-,
-"longfigure.sty":{"envs":["longfigure"],"deps":["xkeyval.sty"],"cmds":["endLFfirsthead","endLFhead","endLFfoot","endLFlastfoot","LFcounter","LFreset","strcfstr","LFupcase","LFleft","LFright","LFpre","LFpost","LFchunksize","LFcapwidth"]}
-,
-"longnamefilelist.sty":{"envs":{},"deps":["myfilist.sty"],"cmds":["listfiles","MaxLengthEmptyList","SetLongNameFileListChars"]}
-,
-"longtable.sty":{"envs":["longtable"],"deps":{},"cmds":["caption","endfirstfoot","endlastfoot","endfirsthead","endfoot","endhead","LTchunksize","LTcapwidth","LTleft","LTpost","LTpre","LTright","setlongtables","tabularnewline"]}
-,
-"lowcycle.sty":{"envs":{},"deps":["chemstr.sty","hetarom.sty","hetaromh.sty"],"cmds":["cyclobutane","cyclopentaneh","cyclopentanehi","cyclopentanev","cyclopentanevi","cyclopropane","cyclopropaneh","cyclopropanehi","cyclopropanei","cyclopropanev","cyclopropanevi","indaneh","indanehi","indanev","indanevi"]}
-,
-"lpic.sty":{"envs":["lpic"],"deps":["epsfig.sty","rotating.sty","calc.sty","ifthen.sty","color.sty"],"cmds":["lbl","lpunitlength","lpmarginright","lpmarginleft","lpmargintop","lpmarginbottom","lpbgsep","lpgridthickness","lpframethickness","lplblframethickness","lpfigframethickness","thelpgridstep","thelpcoordstep"]}
-,
-"lplfitch.sty":{"envs":{},"deps":{},"cmds":["fitchprf","subproof","brokenform","formula","pline","boxedsubproof","fpline","tline","lif","liff","lfalse","lall","lis","exi","uni","landi","lande","lori","lore","lnoti","lnote","lfalsei","lfalsee","lifi","life","liffi","liffe","reit","eqi","eqe","lalli","lalle","lexii","lexie","fitcharg","fitchctx","ellipsesline","quant","intro","elim","fitchargwidth","fitchprfwidth","fitchctxwidth","fitchsep","slider"]}
-,
-"lsabon.sty":{"envs":{},"deps":["keyval.sty"],"cmds":["sabonfamily","textsabon","itscshape","textitsc","ProcessOptionsWithKV"]}
-,
-"lscape.sty":{"envs":["landscape"],"deps":{},"cmds":{}}
-,
-"lstautogobble.sty":{"envs":{},"deps":["listings.sty"],"cmds":{}}
-,
-"lstbayes.sty":{"envs":{},"deps":["listings.sty"],"cmds":{}}
-,
-"lstdoc.sty":{"envs":["TODO","ALTERNATIVE","REMOVED","OLDDEF","advise","syntax","aspect","lstkey","macroargs","lstsample","lstxsample"],"deps":["listings.sty","fancyvrb.sty","hyperref.sty","color.sty","algorithmic.sty","lgrind.sty","nameref.sty","url.sty"],"cmds":["filedate","fileversion","iffancyvrb","fancyvrbtrue","fancyvrbfalse","ifcolor","colortrue","colorfalse","ifhyper","hypertrue","hyperfalse","ifalgorithmicpkg","algorithmicpkgtrue","algorithmicpkgfalse","iflgrind","lgrindtrue","lgrindfalse","advisespace","labeladvise","syntaxnewline","syntaxor","syntaxbreak","syntaxfill","alternative","newdocenvironment","PrintAspectName","SpecialMainAspectIndex","PrintKeyName","SpecialMainKeyIndex","theargcount","labelargcount","lstref","ikeyname","rkeyname","icmdname","rcmdname","lstaspectindex","lstkeyindex","lstisaspect","lstprintaspectkeysandcmds","lstcheckreference","lst","Cpp","keyname","keyvalue","hookname","aspectname","packagename","switchfontfamily","rstyle","lstthanks","lsthelper","pointstyle","lstscanlanguages","lstprintlanguages"]}
-,
-"lstfiracode.sty":{"envs":{},"deps":["kvoptions.sty","listings.sty"],"cmds":["ActivateVerbatimLigatures","DeactivateVerbatimLigatures","RestoreVerbatimBehavior"]}
-,
-"lstlinebgrd.sty":{"envs":{},"deps":["listings.sty","xcolor.sty"],"cmds":{}}
-,
-"lt3luabridge.sty":{"envs":{},"deps":["luatex.sty","expl3.sty"],"cmds":["luabridgeExecute"]}
-,
-"ltablex.sty":{"envs":{},"deps":["longtable.sty"],"cmds":["keepXColumns","convertXColumns","endfirstfoot","endlastfoot","endfirsthead","endfoot","endhead"]}
-,
-"ltj-base.sty":{"envs":{},"deps":{},"cmds":["luatexjabaseLoaded"]}
-,
-"ltj-latex.sty":{"envs":{},"deps":["lltjfont.sty","lltjdefs.sty","lltjcore.sty","lltjp-atbegshi.sty","lltjp-geometry.sty"],"cmds":["luatexjalatexLoaded","ltjlistingsvsstdcmd","CatcodeTableLTJlistings"]}
-,
-"ltjarticle.cls":{"envs":{},"deps":["luatexja.sty","stfloats.sty"],"cmds":["stockheight","stockwidth","Cjascale","heisei","ifptexmin","if","postpartname","prepartname","ptexminfalse","ptexmintrue"]}
-,
-"ltjbook.cls":{"envs":{},"deps":["luatexja.sty","stfloats.sty"],"cmds":["stockheight","stockwidth","backmatter","bibname","chapter","chaptermark","Cjascale","frontmatter","heisei","ifptexmin","if","mainmatter","postchaptername","postpartname","prechaptername","prepartname","ptexminfalse","ptexmintrue","thechapter"]}
-,
-"ltjltxdoc.cls":{"envs":["tsample"],"deps":["s-ltxdoc.cls","luatexja.sty"],"cmds":["Cjascale","Lcount","Lopt","NFSS","dst","file","mlineplus","pstyle"]}
-,
-"ltjreport.cls":{"envs":{},"deps":["luatexja.sty","stfloats.sty"],"cmds":["stockheight","stockwidth","bibname","chapter","chaptermark","Cjascale","ifptexmin","if","heisei","postchaptername","postpartname","prechaptername","prepartname","ptexminfalse","ptexmintrue","thechapter"]}
-,
-"ltjsarticle.cls":{"envs":{},"deps":["luatexja.sty","jslogo.sty","stfloats.sty"],"cmds":["stockheight","stockwidth","maybeblue","alsoname","bibname","chaptermark","Cjascale","fullwidth","headfont","heisei","HUGE","ifjisfont","ifmingoth","ifnarrowbaselines","ifptexjis","ifptexmin","if","jisfontfalse","jisfonttrue","jsParagraphMark","jsTocLine","mingothfalse","mingothtrue","narrowbaselines","narrowbaselinesfalse","narrowbaselinestrue","plainifnotempty","postpartname","postsectionname","prepartname","presectionname","ptexjisfalse","ptexjistrue","ptexminfalse","ptexmintrue","seename","widebaselines"]}
-,
-"ltjsbook.cls":{"envs":{},"deps":["luatexja.sty","jslogo.sty","stfloats.sty"],"cmds":["stockheight","stockwidth","alsoname","backmatter","bibname","chapter","chaptermark","Cjascale","frontmatter","fullwidth","headfont","heisei","HUGE","ifjisfont","ifmingoth","ifnarrowbaselines","ifptexjis","ifptexmin","if","jisfontfalse","jisfonttrue","jsParagraphMark","jsTocLine","mainmatter","mingothfalse","mingothtrue","narrowbaselines","narrowbaselinesfalse","narrowbaselinestrue","plainifnotempty","postchaptername","postpartname","postsectionname","prechaptername","prepartname","presectionname","ptexjisfalse","ptexjistrue","ptexminfalse","ptexmintrue","seename","thechapter","widebaselines"]}
-,
-"ltjskiyou.cls":{"envs":{},"deps":["luatexja.sty","jslogo.sty","stfloats.sty"],"cmds":["stockheight","stockwidth","alsoname","bibname","chaptermark","Cjascale","fullwidth","headfont","heisei","HUGE","ifjisfont","ifmingoth","ifnarrowbaselines","ifptexjis","ifptexmin","if","jisfontfalse","jisfonttrue","jsParagraphMark","jsTocLine","mingothfalse","mingothtrue","narrowbaselines","narrowbaselinesfalse","narrowbaselinestrue","plainifnotempty","postpartname","postsectionname","prepartname","presectionname","ptexjisfalse","ptexjistrue","ptexminfalse","ptexmintrue","seename","widebaselines"]}
-,
-"ltjspf.cls":{"envs":{},"deps":["luatexja.sty","jslogo.sty","stfloats.sty"],"cmds":["stockheight","stockwidth","alsoname","AuthorsEmail","bibname","chaptermark","Cjascale","eauthor","email","etitle","fullwidth","headfont","heisei","HUGE","ifjisfont","ifmingoth","ifnarrowbaselines","ifptexjis","ifptexmin","if","jisfontfalse","jisfonttrue","jsTocLine","keywords","mingothfalse","mingothtrue","narrowbaselines","narrowbaselinesfalse","narrowbaselinestrue","plainifnotempty","postpartname","postsectionname","prepartname","presectionname","ptexjisfalse","ptexjistrue","ptexminfalse","ptexmintrue","seename","widebaselines"]}
-,
-"ltjsreport.cls":{"envs":{},"deps":["luatexja.sty","jslogo.sty","stfloats.sty"],"cmds":["stockheight","stockwidth","alsoname","bibname","chapter","chaptermark","Cjascale","fullwidth","headfont","heisei","HUGE","ifjisfont","ifmingoth","ifnarrowbaselines","ifptexjis","ifptexmin","if","jisfontfalse","jisfonttrue","jsParagraphMark","jsTocLine","mingothfalse","mingothtrue","narrowbaselines","narrowbaselinesfalse","narrowbaselinestrue","plainifnotempty","postchaptername","postpartname","postsectionname","prechaptername","prepartname","presectionname","ptexjisfalse","ptexjistrue","ptexminfalse","ptexmintrue","seename","thechapter","widebaselines"]}
-,
-"ltjtarticle.cls":{"envs":{},"deps":["luatexja.sty","lltjext.sty","stfloats.sty"],"cmds":["stockheight","stockwidth","Cjascale","heisei","ifptexmin","if","postpartname","prepartname","ptexminfalse","ptexmintrue"]}
-,
-"ltjtbook.cls":{"envs":{},"deps":["luatexja.sty","lltjext.sty","stfloats.sty"],"cmds":["stockheight","stockwidth","backmatter","bibname","chapter","chaptermark","Cjascale","frontmatter","heisei","ifptexmin","if","mainmatter","postchaptername","postpartname","prechaptername","prepartname","ptexminfalse","ptexmintrue","thechapter"]}
-,
-"ltjtreport.cls":{"envs":{},"deps":["luatexja.sty","lltjext.sty","stfloats.sty"],"cmds":["stockheight","stockwidth","bibname","chapter","chaptermark","Cjascale","ifptexmin","if","heisei","postchaptername","postpartname","prechaptername","prepartname","ptexminfalse","ptexmintrue","thechapter"]}
-,
-"ltnews.cls":{"envs":["citations","htmlonly","latexonly"],"deps":["url.sty","hyperref.sty"],"cmds":["AmS","AmSLaTeX","AW","babel","class","cs","ctan","ctanhttp","email","eTeX","excludecomment","file","indicia","issuename","latex","LaTeXNews","NFSS","package","pkg","PSNFSS","publicationissue","publicationmonth","publicationyear","raisefirstsection","SLiTeX","cmssLaTeX","cmssTeX","phvLaTeX","phvTeX","pplLaTeX","pplTeX","putLaTeX","putTeX","ugqLaTeX","ugqTeX"]}
-,
-"ltugboat.cls":{"envs":["appendix"],"deps":["mflogo.sty"],"cmds":["bibentry","bibhang","bibindent","citeA","citeANP","citeauthoryear","citeN","citeNP","citeyear","citeyearNP","etal","shortcite","shortciteA","shortciteANP","shortciteN","shortciteNP","acro","address","AddToResetCommands","allowhyphens","AllTeX","AMS","AmS","AmSLaTeX","AmSTeX","ANSI","API","ASCII","authorlist","authornumber","AW","aw","basezero","bfBibTeX","Bib","BibJustification","BibLaTeX","BibTeX","bigissdt","BlackBoxes","booktitle","botregister","botsmash","boxcs","BSD","bull","CandT","careof","cents","chapter","CMkIV","ConTeXt","contributor","Cplusplus","CPU","creditfootnote","cs","CSczabbr","CSS","CSTUG","CSV","CTAN","Dag","dash","Dash","DeclareLaTeXLogo","dlap","drawoutlinebox","DTD","DTK","DVD","DVI","DVIPDFMx","DVItoVDU","ECMA","EDITORnoaddress","EDITORnonetaddress","EdNote","EdNoteFont","emdash","endash","env","EPS","eTeX","ExTeX","FAQ","fileinput","FirstParfalse","FirstPartrue","FTP","Ghostscript","GNU","gobble","GUI","HarfBuzz","Hawaii","hours","HTML","HTTP","hyph","IDE","IEEE","ifFirstPar","ifPrelimDraft","ifpreprint","ifSecTitle","ifshortAuthor","ifTBunicodeengine","ifTestIf","iftubfinaloption","iftubomitdoioption","iftubsecondcolstart","iftubtitlerulefullwidth","ifundefined","ifWideSecTitle","Input","iOS","ISBN","ISO","issdate","issdt","ISSN","issno","issueseqno","issyear","JoT","JPEG","JTeX","KOMAScript","La","LAMSTeX","latexnobreakspace","latextubstyle","ldash","Ldash","lstlistingnamestyle","LuaHBLaTeX","LuaHBTeX","LuaLaTeX","LuaTeX","LyX","macOS","MacOSX","makeactive","makealign","makebgroup","makecomment","makeegroup","makeeol","makeescape","makeignore","makeletter","makemath","makeother","makeparm","MakeRegistrationMarks","makesignature","makespace","makestrut","makesub","makesup","makevmeta","MathML","Mc","meta","mf","MFB","midrtitle","minutes","MkIV","mp","mspmetavar","mtex","nameref","net","netaddrat","NetAddrChars","netaddrdot","netaddress","netaddrpercent","network","newboxcs","ninepoint","NoBlackBoxes","nohyphens","nomarkfootnote","NoParIndent","NormalParIndent","normalparindent","normalspaces","now","Now","NTG","nth","NTS","nullhrule","nullvrule","OCP","OMEGA","OOXML","OpTeX","ORCID","OTF","other","OTP","PageXref","pagexref","PageXrefOFF","pagexrefOFF","PageXrefON","pagexrefON","Pas","pcMF","PCTeX","pcTeX","PDF","pdflatex","pdfTeX","pdftex","personalURL","PGF","phone","PHP","PiC","PiCTeX","plain","plaintubstyle","plusplus","PNG","POBox","PrelimDraftfalse","PrelimDrafttrue","preprint","preprintfalse","preprinttrue","ProtectNetChars","PS","PSTricks","raggedcenter","raggedparfill","raggedskip","raggedspaces","raggedstretch","rdash","Rdash","ResetCommands","restorecat","RestoreCS","revauth","Review","revpubinfo","revtitle","rhTitle","RIT","RTF","rtitlenexttopage","rtitlex","ruled","savecat","SaveCS","SC","secsep","sectitle","SecTitlefalse","sectitlefont","SecTitletrue","SelfDocumenting","SetBibJustification","setboxcs","SetTime","sfrac","SGML","shortAuthor","shortAuthorfalse","shortAuthortrue","shortTitle","signature","signaturemark","signaturewidth","SliTeX","slMF","SMC","smc","SQL","STIX","stTeX","supportfootnote","SVG","TANGLE","TB","TBdriver","TBecircacute","TBEnableRemarks","TBError","tbgobbledash","tbhurl","tbhurlfootnote","TBInfo","tbotregister","TBremark","tbsurl","tbsurlfootnote","TBtocsectionfont","TBunicodeenginefalse","TBunicodeenginetrue","tburl","tburlfootnote","tbUTF","TBWarning","TBWarningNL","tensl","TestBox","TestCount","TestDimen","TestIffalse","TestIftrue","TeXhax","TeXMaG","texorpdfstring","textSMC","texttub","TeXtures","Textures","TeXworks","TeXXeT","TFM","Thanh","theaddress","theauthor","thedoi","thenetaddress","theORCID","thePersonalURL","therevauth","therevpubinfo","therevtitle","thinskip","TIFF","TikZ","titleref","topregister","topsmash","TP","TTN","ttn","ttopregister","TUB","tubabovedoi","tubbraced","tubcaptionfonts","tubcaptionleftglue","TUBdefaulteTeX","tubdoiprefix","tubdots","TUBedit","TUBfilename","tubfinaloptionfalse","tubfinaloptiontrue","tubheadhook","tubhideheight","tubissue","tubjustifiedpar","tubline","tubmakecaptionbox","tubmultipleaffilauthor","tubmultipleaffilnet","tubomitdoioptionfalse","tubomitdoioptiontrue","tuborigthepage","tubraggedfoot","tubreflect","tubrunningauthor","tubsecfmt","tubsechook","tubsecondcolstartfalse","tubsecondcolstarttrue","tubsentencespace","tubsmallerskip","tubthinnerspace","tubthinnerspaceneg","tubtitlerulefullwidthfalse","tubtitlerulefullwidthtrue","tubtypesetdoi","tug","TUG","UG","ulap","UNIX","url","URLchars","UseExtraLabel","UseTrimMarks","VAX","vellipsis","VnTeX","vol","volno","volyr","VorTeX","WEAVE","WEB","WideSecTitlefalse","WideSecTitletrue","WYSIWYG","Xe","xEdNote","XekernafterE","XekernbeforeE","XeLaTeX","XeT","XeTeX","XHTML","xlap","XML","xrefto","xreftoOFF","xreftoON","XSL","XSLFO","XSLT","ylap","zlap"]}
-,
-"ltugcomn.sty":{"envs":["reviewitem"],"deps":["mflogo.sty"],"cmds":["acro","AddToResetCommands","allowhyphens","AllTeX","AMS","AmS","AmSLaTeX","AmSTeX","ANSI","API","ASCII","aw","AW","basezero","bfBibTeX","Bib","BibLaTeX","BibTeX","bigissdt","BlackBoxes","booktitle","botsmash","boxcs","BSD","bull","CandT","careof","cents","CMkIV","ConTeXt","Cplusplus","CPU","cs","CSczabbr","CSS","CSTUG","CSV","CTAN","Dag","dash","Dash","dlap","drawoutlinebox","DTD","DTK","DVD","DVI","DVIPDFMx","DVItoVDU","ECMA","emdash","endash","env","EPS","eTeX","ExTeX","FAQ","fileinput","FTP","Ghostscript","GNU","gobble","GUI","HarfBuzz","Hawaii","hours","HTML","HTTP","hyph","IDE","IEEE","ifPrelimDraft","ifTBunicodeengine","ifTestIf","ifundefined","Input","iOS","ISBN","ISO","issdate","issdt","ISSN","issno","issueseqno","issyear","JoT","JPEG","JTeX","KOMAScript","La","LAMSTeX","latexnobreakspace","latextubstyle","ldash","Ldash","LuaHBLaTeX","LuaHBTeX","LuaLaTeX","LuaTeX","LyX","macOS","MacOSX","makeactive","makealign","makebgroup","makecomment","makeegroup","makeeol","makeescape","makeignore","makeletter","makemath","makeother","makeparm","makespace","makestrut","makesub","makesup","MathML","Mc","meta","mf","MFB","midrtitle","minutes","MkIV","mp","mtex","newboxcs","NoBlackBoxes","nohyphens","NoParIndent","NormalParIndent","normalparindent","normalspaces","now","Now","NTG","nth","NTS","nullhrule","nullvrule","OCP","OMEGA","OOXML","OpTeX","OTF","other","OTP","PageXref","pagexref","PageXrefOFF","pagexrefOFF","PageXrefON","pagexrefON","Pas","pcMF","PCTeX","pcTeX","PDF","pdflatex","pdfTeX","pdftex","PGF","PHP","PiC","PiCTeX","plain","plaintubstyle","plusplus","PNG","POBox","PrelimDraftfalse","PrelimDrafttrue","PS","PSTricks","raggedcenter","raggedparfill","raggedskip","raggedspaces","raggedstretch","rdash","Rdash","ResetCommands","restorecat","RestoreCS","revauth","Review","revpubinfo","revtitle","RIT","RTF","rtitlenexttopage","savecat","SaveCS","SC","setboxcs","SetTime","sfrac","SGML","SliTeX","slMF","SMC","SQL","STIX","stTeX","SVG","TANGLE","TB","TBdriver","TBecircacute","TBEnableRemarks","tbgobbledash","tbhurl","tbhurlfootnote","TBremark","tbsurl","tbsurlfootnote","TBunicodeenginefalse","TBunicodeenginetrue","tburl","tburlfootnote","tbUTF","TestBox","TestCount","TestIffalse","TestIftrue","TeXhax","TeXMaG","textSMC","texttub","TeXtures","Textures","TeXworks","TeXXeT","TFM","Thanh","therevauth","therevpubinfo","therevtitle","thinskip","TIFF","TikZ","titleref","topsmash","TP","ttn","TTN","TUB","tubbraced","TUBdefaulteTeX","tubdots","TUBedit","TUBfilename","tubhideheight","tubissue","tubjustifiedpar","tubline","tubreflect","tubsentencespace","tubsmallerskip","tubthinnerspace","tubthinnerspaceneg","TUG","tug","UG","ulap","UNIX","url","VAX","vellipsis","VnTeX","vol","volno","volyr","VorTeX","WEAVE","WEB","WYSIWYG","Xe","XekernafterE","XekernbeforeE","XeLaTeX","XeT","XeTeX","XHTML","xlap","XML","xrefto","xreftoOFF","xreftoON","XSL","XSLFO","XSLT","ylap","zlap"]}
-,
-"ltx4yt.sty":{"envs":{},"deps":["xkeyval.sty","xcolor.sty","eforms.sty","popupmenu.sty"],"cmds":["ytvId","ytvIdPresets","ytvIdML","declarePlayList","Esc","cs","ytIdTitle","ytPlayList","ytComboList","ytComboBtn","ytPopupAllMenuData","ytMenuNames","ytUseMenus","puIdTitle","ytpubtnCnt","ytPopupBtn","ytPopupPresets","ytLink","embedID","params","watchId","embed","channel","user","search","ytLinkML","ytInputQuery","ytSearch","ytClearQuery","ytNF","ytURL","ytvIdParams","ifytwatch","ytwatchfalse","ytwatchtrue","ques","URLArg","ytComboBtnPresets","ytComboListPresets","ytspec","ytStrPLAY"]}
-,
-"ltxdoc.cls":{"envs":{},"deps":["doc.sty"],"cmds":["cmd","marg","oarg","parg","DocInclude","aalph","docincludeaux","MaintainedBy","MaintainedByLaTeXTeam","url","task","currentfile","filekey","filesep","LuaTeX","cls","pkg","enquote"]}
-,
-"ltxdocext.sty":{"envs":["unnumtable"],"deps":["verbatim.sty","shortvrb.sty"],"cmds":["arg","backmatter","botrule","classname","classoption","cleartorecto","cmd","colrule","cs","env","envb","enve","file","filedate","fileinfo","filename","fileversion","frontmatter","GetFileInfo","LANGLE","mainmatter","marg","meta","oarg","RANGLE","scmd","see","seealso","substyle","subsubsubsection","toprule","ttt","url"]}
-,
-"ltxdockit.cls":{"envs":{},"deps":["etoolbox.sty","multicol.sty","keyval.sty","fontenc.sty","textcomp.sty","ltxdockit.sty","hyperref.sty","hypcap.sty","s-scrartcl.cls","lmodern.sty","helvet.sty","charter.sty"],"cmds":["fnurl","email","titlefont","titlepage","printtitlepage","rcsfile","rcsrevision","rcsdate","rcstime","rcsstate","rcsauthor","rcslocker","rcstoday","rcsid","AtBeginToc","AtEndToc","AtBeginLot","AtEndLot","tex","etex","pdftex","xetex","luatex","latex","pdflatex","xelatex","lualatex","bibtex","lppl","pdf","utf","ie","eg","tablesetup","textln","DH","NG","dj","ng","k","guillemotleft","guillemotright","guilsinglleft","guilsinglright","quotedblbase","quotesinglbase","textquotedbl","DJ","th","TH","dh","Hwithstroke","hwithstroke","textogonekcentered","guillemetleft","guillemetright"]}
-,
-"ltxdockit.sty":{"envs":["marglist","keymarglist","ltxsyntax","optionlist","optionlist*","valuelist","valuelist*","argumentlist","changelog","release","ltxcode","ltxexample"],"deps":["etoolbox.sty","listings.sty","color.sty","xspace.sty","ifpdf.sty","hyperref.sty"],"cmds":["marglistwidth","marglistsep","marglistfont","margnotefont","optionlistfont","ltxsyntaxfont","ltxsyntaxlabelfont","changelogfont","changeloglabelfont","verbatimfont","displayverbfont","defaultcolor","spotcolor","cs","cmd","env","len","cnt","prm","mprm","oprm","opt","kvopt","file","sty","bin","acr","keyval","refs","secref","Secref","apxref","Apxref","tabref","Tabref","csitem","cmditem","envitem","lenitem","boolitem","cntitem","optitem","varitem","valitem","choitem","intitem","legitem","see","lstenvsep"]}
-,
-"ltxfront.sty":{"envs":{},"deps":["ltxutil.sty"],"cmds":["absbox","accepted","affiliation","altaffiliation","andname","blankaffiliation","collaboration","doauthor","eid","email","endpage","firstname","homepage","issuenumber","keywords","noaffiliation","pacs","preprint","published","received","revised","startpage","surname","theaffil","thecollab","volumenumber","volumeyear"]}
-,
-"ltxgrid.sty":{"envs":["turnpage","longtable*"],"deps":["ltxutil.sty"],"cmds":["addstuff","footsofar","linefoot","lineloop","onecolumngrid","pagesofar","removephantombox","removestuff","replacestuff","restorecolumngrid","thelinecount","thepagegrid","twocolumngrid","endfirstfoot","endlastfoot","endfirsthead","endfoot","endhead"]}
-,
-"ltxguide.cls":{"envs":["decl"],"deps":["shortvrb.sty"],"cmds":["clsguide","usrguide","fntguide","cfgguide","cyrguide","modguide","sourcecode","LaTeXbook","LaTeXcomp","LaTeXGcomp","LaTeXWcomp","babel","ctan","eg","ie","SLiTeX","m","arg","oarg","NFSS","AmS","AmSLaTeX","NEWfeature","NEWdescription","URL"]}
-,
-"ltxguidex.cls":{"envs":["desc","latexcode","warning","note","example","bug","packages","classes","options","advise","faq","keys"],"deps":["s-ltxguide.cls","hyperref.sty","xparse.sty","xkeyval.sty","xcolor.sty","framed.sty","showexpl.sty","enumitem.sty"],"cmds":["pipe","bs","meta","ctanlogo","command","cs","email","https","http","ctan","package","ltxclass","option","filename","extension","New","newnotice","Q","A","advisespace","alternative","key","bool","noticestyle","newdescriptionenvironment","labeladvise","advisestyle","docstrip","Th"]}
-,
-"ltxnew.sty":{"envs":{},"deps":["etex.sty"],"cmds":["new","renew","provide"]}
-,
-"ltxtable.sty":{"envs":{},"deps":["longtable.sty"],"cmds":["LTXtable"]}
-,
-"ltxutil.sty":{"envs":{},"deps":{},"cmds":["appdef","botrule","colrule","doi","doibase","flushing","frstrut","fullinterlineskip","gappdef","href","intertabularlinepenalty","loopuntil","loopwhile","lrstrut","oneapage","phantomsection","prepdef","say","saythe","tableftsep","tabmidsep","tabrightsep","toprule","traceoutput","tracingplain","triggerpar","url"]}
-,
-"lua-check-hyphen.sty":{"envs":{},"deps":["ifluatex.sty","luatexbase.sty","keyval.sty"],"cmds":["LuaCheckHyphen","luachekchyphendothings","luachekchyphenpkgdate","luachekchyphenversion"]}
-,
-"lua-typo.sty":{"envs":{},"deps":["luatexbase.sty","luacode.sty","luacolor.sty","kvoptions.sty","atveryend.sty"],"cmds":["luatypoLLminWD","luatypoBackPI","luatypoBackFuzz","luatypoStretchMax","luatypoHyphMax","luatypoPageMin","luatypoMinFull","luatypoMinPart","luatypoMinLen","luatypoOneChar","luatypoTwoChars","luatypoSetColor"]}
-,
-"lua-ul.sty":{"envs":{},"deps":["luatex.sty"],"cmds":["underLine","highLight","strikeThrough","ul","textul","hl","texthl","st","textst","LuaULSetHighLightColor","newunderlinetype"]}
-,
-"lua-visual-debug.sty":{"envs":{},"deps":["luatex.sty","ifluatex.sty","atbegshi.sty"],"cmds":["lvdebugpkgdate","lvdebugpkgversion"]}
-,
-"lua-widow-control.sty":{"envs":{},"deps":["luatex.sty","microtype.sty"],"cmds":["lwcsetup","lwcenable","lwcdisable","lwcemergencystretch","lwcdisablecmd"]}
-,
-"luaaddplot.sty":{"envs":{},"deps":["luatex.sty"],"cmds":["luaaddplot"]}
-,
-"luabibentry.sty":{"envs":{},"deps":["ifluatex.sty"],"cmds":["bibentry","setupbibentry"]}
-,
-"luabidi.sty":{"envs":["RTL","LTR"],"deps":["luatex.sty","etoolbox.sty","perpage.sty"],"cmds":["thepagefnt","FnppOrigFootnote","FnppOrigFootnotemark","setRTLmain","setRTL","setRL","unsetLTR","setLTR","setLR","unsetRTL","RLE","RL","LRE","LR","hboxR","localnumeral","footnotemarkLR","footnotemarkRL","LTRfootnote","RTLfootnote","footnoterulewidth","leftfootnoterule","rightfootnoterule","textwidthfootnoterule","autofootnoterule","bracetext","moreLRE","moreRLE","pLRE","pRLE","Footnote"]}
-,
-"luacas.sty":{"envs":["CAS"],"deps":["iftex.sty","luacode.sty","pgfkeys.sty","verbatim.sty","tikz.sty","xcolor.sty","mathtools.sty"],"cmds":["fetch","store","print","vprint","lprint","parseforest","forestresult","parseshrub","shrubresult","whatis","get","yoink","printshrub","printtree","freeof","isatomic","isconstant"]}
-,
-"luacensor.sty":{"envs":["hidden"],"deps":["luacode.sty","environ.sty","verbatim.sty","accsupp.sty","fontspec.sty","xcolor.sty","graphicx.sty"],"cmds":["cnsr","ifcnsr","cnsrtrue","cnsrfalse","luacensorversionnumber","cnsrfnt","onething","twothings","donothing","voidenvironment","hddn","ifwarning","warningtrue","warningfalse","wrnstncl","warnword","danger","warnformat","textwarn","textsafe","dquad","dangersign","dangerblock","warnblock","tworules","allwarning","confwarning","oldmaketitle"]}
-,
-"luacode.sty":{"envs":["luacode","luacode*"],"deps":["ifluatex.sty","luatexbase.sty"],"cmds":["luadirect","luaexec","luacode","endluacode","luacodestar","endluacodestar","luastring","luastringN","luastringO","LuaCodeDebugOn","LuaCodeDebugOff"]}
-,
-"luacolor.sty":{"envs":{},"deps":["luatex.sty","color.sty","atbegshi.sty"],"cmds":["luacolorProcessBox"]}
-,
-"luacomplex.sty":{"envs":{},"deps":["xkeyval.sty","amsmath.sty","luacode.sty","luamaths.sty"],"cmds":["cpxNew","cpxPrint","cpxAdd","cpxSub","cpxMul","cpxDiv","cpxInv","cpxRe","cpxIm","cpxMod","cpxPrinArg","cpxOp","imgUnit"]}
-,
-"luagcd.sty":{"envs":{},"deps":["luacode.sty"],"cmds":["luagcd","luagcdwithsteps","luagcdlincomb","luagcdlincombwithsteps"]}
-,
-"luahyphenrules.sty":{"envs":{},"deps":["luatex.sty"],"cmds":["HyphenRules"]}
-,
-"luaimageembed.sty":{"envs":{},"deps":["luacode.sty"],"cmds":["includegraphicsembedded","pgfdeclareimageembedded","pgfimageembedded"]}
-,
-"luaindex.sty":{"envs":{},"deps":["ifluatex.sty","luatexbase.sty","scrbase.sty"],"cmds":["setupluaindex","see","seealso","seename","alsoname","newindex","luaindex","luasubindex","luasubsubindex","index","subindex","subsubindex","printindex","indexgroup","indexspace","symbolsname","numbersname","indexpagenumbers","indexpagenumber","indexpagenumbersep"]}
-,
-"luainputenc.sty":{"envs":{},"deps":["ifluatex.sty","ifxetex.sty","inputenc.sty","luatexbase.sty","ucs.sty"],"cmds":["InputNonUtfFile","InputUtfFile"]}
-,
-"luakeys-debug.sty":{"envs":{},"deps":["luatex.sty"],"cmds":["luakeysdebug"]}
-,
-"luakeys.sty":{"envs":{},"deps":["luatex.sty"],"cmds":["LuakeysGetPackageOptions","LuakeysGetClassOptions"]}
-,
-"lualatex-truncate.sty":{"envs":{},"deps":["luatex.sty","truncate.sty","iftex.sty","letltxmacro.sty"],"cmds":{}}
-,
-"lualinalg.sty":{"envs":{},"deps":["xkeyval.sty","amsmath.sty","luamaths.sty","luacode.sty"],"cmds":["vectorNew","vectorPrint","vectorGetCoordinate","vectorSetCoordinate","vectorCopy","vectorAdd","vectorSub","vectorMulNum","vectorDot","vectorCross","vectorSumNorm","vectorEuclidNorm","vectorpNorm","vectorSupNorm","vectorCreateRandom","vectorOp","vectorGetAngle","vectorParse","vectorGramSchmidt","vectorGramSchmidtSteps","complexRound","matrixNew","matrixPrint","matrixNumRows","matrixNumCols","matrixGetElement","matrixAdd","matrixSub","matrixMulNum","matrixMul","matrixPow","matrixInvert","matrixTrace","matrixConjugate","matrixConjugateT","matrixNormOne","matrixNormInfty","matrixNormMax","matrixNormF","matrixRank","matrixDet","matrixTranspose","matrixSetElement","matrixSubmatrix","matrixConcatH","matrixConcatV","matrixOp","matrixCopy","matrixCreateRandom","matrixSwapRows","matrixMulRow","matrixMulAddRow","matrixSwapCols","matrixMulCol","matrixMulAddCol","matrixRREF","matrixRREFSteps","matrixGaussJordan","matrixGaussJordanSteps","matrixRREFERR","matrixRREFE"]}
-,
-"luamathalign.sty":{"envs":{},"deps":["luatex.sty"],"cmds":["AlignHere","SetAlignmentPoint","ExecuteAlignment"]}
-,
-"luamaths.sty":{"envs":{},"deps":["xkeyval.sty","amsmath.sty","luacode.sty"],"cmds":["mathOp","mathAbs","mathAcos","mathAsin","mathAtan","mathCeil","mathCos","mathExp","mathFloor","mathHuge","mathLog","mathMax","mathMin","mathPi","mathRandom","mathSin","mathSqrt","mathTan","mathRad","mathRound"]}
-,
-"luamesh.sty":{"envs":{},"deps":["xkeyval.sty","xcolor.sty","ifthen.sty","luamplib.sty","tikz.sty"],"cmds":["buildMeshBW","buildMeshBWinc","drawPointsMesh","drawPointsMeshinc","meshAddPointBW","meshAddPointBWinc","meshPolygon","meshPolygonInc","luameshmpcolor","luameshmpcolorBack","luameshmpcolorBbox","luameshmpcolorCircle","luameshmpcolorNew","luameshmpcolorPoly","buildVoronoiBW","buildVoronoiBWinc","luameshmpcolorVoronoi","drawGmsh","drawGmshinc","gmshVoronoi","gmshVoronoiinc","CircumPoint","MeshPoint","NewPoint","PackageName","filedate","fileversion"]}
-,
-"luamodulartables.sty":{"envs":{},"deps":["xkeyval.sty","luacode.sty"],"cmds":["luaModularMult","luaModularAdd"]}
-,
-"luamplib.sty":{"envs":["mplibcode"],"deps":["luatex.sty"],"cmds":["mplibcode","endmplibcode","mplibforcehmode","mplibnoforcehmode","mpliblegacybehavior","MPwidth","MPheight","MPllx","MPlly","MPurx","MPury","everymplib","everyendmplib","mpdim","mpcolor","mplibnumbersystem","mplibmakenocache","mplibcancelnocache","mplibcachedir","mplibtextextlabel","mplibcodeinherit","currentmpinstancename","mplibglobaltextext","mplibverbatim","mplibshowlog","mplibsetformat","domplibcolor","ltxdomplibcode","ltxdomplibcodeindeed","mplibdocancelnocache","mplibdocode","mplibdoeveryendmplib","mplibdoeverymplib","mplibdomakenocache","mplibputtextbox","mplibscratchbox","mplibsetupcatcodes","mplibstarttoPDF","mplibstoptoPDF","mplibtextext","mplibtmptoks","mplibtoPDF"]}
-,
-"luaoptions.sty":{"envs":{},"deps":["luatexbase.sty","luaotfload.sty","xkeyval.sty"],"cmds":["setluaoption","useluaoption"]}
-,
-"luaotfload.sty":{"envs":{},"deps":{},"cmds":{}}
-,
-"luapackageloader.sty":{"envs":{},"deps":["luatex.sty","ifluatex.sty"],"cmds":["luapackageloaderpkgdate","luapackageloaderversion"]}
-,
-"luaprogtable.sty":{"envs":["lptview","lptfill"],"deps":["expl3.sty","iftex.sty","luatexbase.sty","xparse.sty"],"cmds":["LPTNewTable","LPTSetCurrentTable","LPTGetCurrentTable","LPTAddRow","LPTSetRowProp","LPTUseTable","LPTDeleteTable","LPTSetCell","LPTFill","LPTGetTableNames","LPTGetTableShape","LPTGetCellData","LPTGetCellShape","LPTGetCellParent","LPTGetCellMetaIndex"]}
-,
-"luaquotes.sty":{"envs":{},"deps":["iftex.sty","luacode.sty","fontspec.sty"],"cmds":["dumbquotes","frdumbquotes","dedumbquotes","degmdumbquotes","dechdumbquotes","smartquotes","frsmartquotes","desmartquotes","degmsmartquotes","dechsmartquotes","desingle","dedouble","degmsingle","degmdouble","dqone","dqtwo","sqoneleft","sqoneright","apost","sqtwoleft","sqtworight","glmtl","glmtr","degmtl","degmtr","sglmtl","sglmtr","desgmtl","desgmtr","bcktck","lqprime","lqdoubleprime","okina","abbrevsingleoff","abbrevsingleon","dechdoublequotesoff","dechdoublequoteson","dechsinglequotelinestartoff","dechsinglequotelinestarton","dechsinglequotescloseoff","dechsinglequotescloseon","dechsinglequotespcloseoff","dechsinglequotespcloseon","dechsinglequotespoff","dechsinglequotespon","dedoublequotesoff","dedoublequoteson","degmdoublequotesoff","degmdoublequoteson","degmsinglequotelinestartoff","degmsinglequotelinestarton","degmsinglequotescloseoff","degmsinglequotescloseon","desinglequotelinestartoff","desinglequotelinestarton","desinglequotescloseoff","desinglequotescloseon","desinglequotespcloseoff","desinglequotespcloseon","desinglequotespoff","desinglequotespon","doublequotesoff","doublequoteson","frdoublequotesoff","frdoublequoteson","frsinglequotelinestartoff","frsinglequotelinestarton","frsinglequotescloseoff","frsinglequotescloseon","frsinglequotespcloseoff","frsinglequotespcloseon","frsinglequotespoff","frsinglequotespon","sglmtlp","sglmtlpdech","sglmtrp","sglmtrpdech","singlequotelinestartoff","singlequotelinestarton","singlequotesoff","singlequoteson","singlequotespoff","singlequotespon","luaquotesversionnumber"]}
-,
-"luarandom.sty":{"envs":{},"deps":["ifluatex.sty","luacode.sty"],"cmds":["makeSimpleRandomNumberList","makeRandomNumberList","getNumberFromList"]}
-,
-"luaset.sty":{"envs":{},"deps":["xkeyval.sty","amsmath.sty","luacode.sty","luamaths.sty"],"cmds":["luaSetNew","luaSetPrint","luaSetUnion","luaSetIntersection","luaSetDifference","luaSetCardinal","luaSetBelongsto","luaSetSubseteq","luaSetSubset","luaSetEqual"]}
-,
-"luasseq.sty":{"envs":["sseq"],"deps":["luatex.sty","calc.sty","ifthen.sty","pgf.sty","pifont.sty","xkeyval.sty"],"cmds":["ssmoveto","ssmove","ssdrop","ssdropbull","ssdropboxed","ssdropcircled","ssname","ssgoto","ssbeginprefixcontext","ssendprefixcontext","ssprefix","ssresetprefix","ssabsgoto","ssdroplabel","ssdropextension","ssstroke","sscurve","ssdashedstroke","ssdashedcurve","ssdottedstroke","ssdottedcurve","ssarrowhead","ssinversearrowhead","ssline","sscurvedline","ssdashedline","sscurveddashedline","ssarrow","sscurvedarrow","ssdashedarrow","sscurveddashedarrow","ssvoidline","ssvoidarrow","ssinversevoidarrow","ssbullstring","ssinfbullstring","ssgrayout","ssconncolor","sslabelcolor","ssplacecolor","sseqxstart","sseqystart","sseqbox","ssplace","ssplaceboxed","ssplacecircled","for"]}
-,
-"luatex.sty":{"envs":{},"deps":{},"cmds":["luatexbanner","luatexversion","luatexrevision","formatname","Uchar","attribute","attributedef","directlua","latelua","lateluafunction","luaescapestring","luafunction","luafunctioncall","luadef","luabytecode","luabytecodecall","catcodetable","initcatcodetable","savecatcodetable","suppressfontnotfounderror","suppresslongerror","suppressifcsnameerror","suppressoutererror","suppressmathparerror","suppressprimitiveerror","fontid","setfontid","noligs","nokerns","nospaces","scantextokens","toksapp","tokspre","etoksapp","etokspre","gtoksapp","gtokspre","xtoksapp","xtokspre","csstring","begincsname","lastnamedcs","clearmarks","alignmark","aligntab","letcharcode","glet","immediateassignment","immediateassigned","ifcondition","outputbox","vpack","hpack","tpack","saveboxresource","saveimageresource","useboxresource","useimageresource","lastsavedboxresourceindex","lastsavedimageresourceindex","lastsavedimageresourcepages","nohrule","novrule","gleaders","hyphenationmin","boundary","noboundary","protrusionboundary","wordboundary","glyphdimensionsmode","outputmode","draftmode","pagebottomoffset","pagetopoffset","pagerightoffset","pageleftoffset","partokencontext","partokenname","showstream","eTeXgluestretchorder","eTeXglueshrinkorder","pdfextension","pdfvariable","pdffeedback","pagewidth","pageheight","adjustspacing","protrudechars","ignoreligaturesinfont","expandglyphsinfont","copyfont","savepos","lastxpos","lastypos","pxdimen","insertht","normaldeviate","uniformdeviate","setrandomseed","randomseed","primitive","ifprimitive","ifabsnum","ifabsdim","textdir","linedir","breakafterdirmode","shapemode","pardir","pagedir","bodydir","mathdir","boxdir","textdirection","pardirection","pagedirection","bodydirection","mathdirection","boxdirection","linedirection","firstvalidlanguage","hjcode","hyphenationbounds","automatichyphenmode","explicitdiscretionary","automaticdiscretionary","leftghost","rightghost","exhyphenchar","hyphenpenaltymode","automatichyphenpenalty","explicithyphenpenalty","prehyphenchar","posthyphenchar","preexhyphenchar","postexhyphenchar","exceptionpenalty","discretionaryligaturemode","Umathchardef","Umathcharnumdef","Umathcode","Udelcode","Umathchar","Umathaccent","Udelimiter","Uradical","Umathcharnum","Umathcodenum","Udelcodenum","Uroot","Uoverdelimiter","Uunderdelimiter","Udelimiterover","Udelimiterunder","variablefam","mathstyle","Ustack","crampeddisplaystyle","crampedtextstyle","crampedscriptstyle","crampedscriptscriptstyle","Umathquad","Umathaxis","Umathoperatorsize","Umathoverbarkern","Umathoverbarrule","Umathoverbarvgap","Umathunderbarkern","Umathunderbarrule","Umathunderbarvgap","Umathradicalkern","Umathradicalrule","Umathradicalvgap","Umathradicaldegreebefore","Umathradicaldegreeafter","Umathradicaldegreeraise","Umathstackvgap","Umathstacknumup","Umathstackdenomdown","Umathfractionrule","Umathfractionnumvgap","Umathfractionnumup","Umathfractiondenomvgap","Umathfractiondenomdown","Umathfractiondelsize","Umathlimitabovevgap","Umathlimitabovebgap","Umathlimitabovekern","Umathlimitbelowvgap","Umathlimitbelowbgap","Umathlimitbelowkern","Umathoverdelimitervgap","Umathoverdelimiterbgap","Umathunderdelimitervgap","Umathunderdelimiterbgap","Umathsubshiftdrop","Umathsubshiftdown","Umathsupshiftdrop","Umathsupshiftup","Umathsubsupshiftdown","Umathsubtopmax","Umathsupbottommin","Umathsupsubbottommax","Umathsubsupvgap","Umathspaceafterscript","Umathconnectoroverlapmin","Umathskewedfractionhgap","Umathskewedfractionvgap","mathsurroundmode","mathsurroundskip","Umathordordspacing","Umathordopspacing","Umathordbinspacing","Umathordrelspacing","Umathordopenspacing","Umathordclosespacing","Umathordpunctspacing","Umathordinnerspacing","Umathopordspacing","Umathopopspacing","Umathopbinspacing","Umathoprelspacing","Umathopopenspacing","Umathopclosespacing","Umathoppunctspacing","Umathopinnerspacing","Umathbinordspacing","Umathbinopspacing","Umathbinbinspacing","Umathbinrelspacing","Umathbinopenspacing","Umathbinclosespacing","Umathbinpunctspacing","Umathbininnerspacing","Umathrelordspacing","Umathrelopspacing","Umathrelbinspacing","Umathrelrelspacing","Umathrelopenspacing","Umathrelclosespacing","Umathrelpunctspacing","Umathrelinnerspacing","Umathopenordspacing","Umathopenopspacing","Umathopenbinspacing","Umathopenrelspacing","Umathopenopenspacing","Umathopenclosespacing","Umathopenpunctspacing","Umathopeninnerspacing","Umathcloseordspacing","Umathcloseopspacing","Umathclosebinspacing","Umathcloserelspacing","Umathcloseopenspacing","Umathcloseclosespacing","Umathclosepunctspacing","Umathcloseinnerspacing","Umathpunctordspacing","Umathpunctopspacing","Umathpunctbinspacing","Umathpunctrelspacing","Umathpunctopenspacing","Umathpunctclosespacing","Umathpunctpunctspacing","Umathpunctinnerspacing","Umathinnerordspacing","Umathinneropspacing","Umathinnerbinspacing","Umathinnerrelspacing","Umathinneropenspacing","Umathinnerclosespacing","Umathinnerpunctspacing","Umathinnerinnerspacing","mathdisplayskipmode","matheqdirmode","Umathnolimitsupfactor","Umathnolimitsubfactor","mathnolimitsmode","mathitalicsmode","mathscriptboxmode","mathscriptcharmode","mathscriptsmode","mathpenaltiesmode","prebinoppenalty","prerelpenalty","matheqnogapstep","mathdelimitersmode","Uhextensible","Uvextensible","Uskewed","Uskewedwithdelims","Uleft","Umiddle","Uright","Umathcharclass","Umathcharfam","Umathcharslot","predisplaygapfactor","Usuperscript","Usubscript","Ustartmath","Ustopmath","Ustartdisplaymath","Ustopdisplaymath","Unosuperscript","Unosubscript","mathflattenmode","mathdefaultsmode","mathoption","localinterlinepenalty","localbrokenpenalty","localleftbox","localrightbox","compoundhyphenmode","dviextension","dvifeedback","dvivariable","endlocalcontrol","eTeXminorversion","eTeXVersion","fixupboxesmode","luacopyinputnodes","mathrulesfam","mathrulesmode","mathrulethicknessmode","newattribute","newcatcodetable","newluafunction","newluacmd","newprotectedluacmd","newwhatsit","newluabytecode","newluachunkname","setattribute","unsetattribute"]}
-,
-"luatexbase.sty":{"envs":{},"deps":["luatex.sty","ctablestack.sty"],"cmds":["CatcodeTableIniTeX","CatcodeTableString","CatcodeTableLaTeX","CatcodeTableLaTeXAtLetter","CatcodeTableOther","CatcodeTableExpl","SetCatcodeRange","BeginCatcodeRegime","EndCatcodeRegime","PushCatcodeTableNumStack","PopCatcodeTableNumStack","newluatexcatcodetable","setcatcodetable","setluatexcatcodetable","RequireLuaModule","luatexattribute","newluatexattribute","setluatexattribute","unsetluatexattribute","luatexattributedef","luatexcatcodetable","luatexluaescapestring","luatexlatelua","luatexoutputbox","luatexscantextokens","emuatcatcode"]}
-,
-"luatexja-adjust.sty":{"envs":{},"deps":["luatexja.sty"],"cmds":["ltjenableadjust","ltjdisableadjust","ltjghostbeforejachar","ltjghostafterjachar","ltjghostjachar"]}
-,
-"luatexja-ajmacros.sty":{"envs":{},"deps":{},"cmds":["ajTsumesuji","ajTumesuji","ajMaru","ajKuroMaru","ajKaku","ajKuroKaku","ajMaruKaku","ajKuroMaruKaku","ajKakko","ajRoman","ajroman","ajPeriod","ajKakkoalph","ajKakkoYobi","ajKakkoroman","ajKakkoRoman","ajKakkoAlph","ajKakkoHira","ajKakkoKata","ajKakkoKansuji","ajMaruKansuji","ajNijuMaru","ajRecycle","ajHasenKakuAlph","ajCross","ajSlanted","ajApostrophe","ajYear","ajSquareMark","ajHishi","offsetalph","offsetAlph","offsetHira","offsetKata","offsetYobi","offsetMaru","offsetKuroMaru","offsetKaku","offsetKuroKaku","offsetMaruKaku","offsetKuroMaruKaku","ajMaruYobi","ajTsumekakko","ajTumekakko","ajNenrei","ajnenrei","ajKosu","ajLabel","ajFrac","aj","ajLig","ajPICT","ajPICTClub","ajPICTHeart","ajPICTSpade","ajPICTDiamond","ajArrow","ajArrowLeftTriangle","ajArrowRightTriangle","ajArrowDOWN","ajArrowUP","ajArrowLEFT","ajArrowRIGHT","ajArrowRightHand","ajArrowLeftHand","ajArrowUpHand","ajArrowDownHand","ajArrowLeftScissors","ajArrowRightScissors","ajArrowUpScissors","ajArrowDownScissors","ajArrowLeft","ajArrowRight","ajArrowUp","ajArrowDown","ajArrowLeftDouble","ajArrowRightDown","ajArrowLeftDown","ajArrowLeftUp","ajArrowRightUp","ajArrowLeftAngle","ajArrowRightAngle","ajArrowUpAngle","ajArrowDownAngle","ajArrowRightDouble","ajArrowLeftRightDouble","ajKunten","DeclareOriginalKundokuStyle","kokana","retenform","reten","retenkana","kaeriten","kundokusize","DeclareAJKundokuStyle","ajCIDVarDef","ajUTFVarDef","ajCIDVarList","ajUTFVarList","ajVar","ajHashigoTaka","ajTsuchiYoshi","ajTatsuSaki","ajMayuHama","ajLeader","ajQuotedef","ajQuote","luatexjaajmacrosLoaded"]}
-,
-"luatexja-compat.sty":{"envs":{},"deps":["luatexja-core.sty"],"cmds":["euc","kuten","jis","sjis","ucs","kansuji","luatexjacompatLoaded"]}
-,
-"luatexja-core.sty":{"envs":{},"deps":["luatexbase.sty","luaotfload.sty","ltxcmds.sty","pdftexcmds.sty","xkeyval.sty","etoolbox.sty","everyhook.sty","ltj-base.sty","ltj-latex.sty"],"cmds":["luatexjacoreLoaded","LuaTeXjaAvailable","ltjlineendcomment","jfam","RequireLuaTeXjaSubmodule","asluastring","jfont","globaljfont","tfont","globaltfont","zw","zh","disinhibitglue","inhibitglue","ltjfakeparbegin","ltjfakeboxbdd","insertxkanjiskip","insertkanjiskip","ltjdefcharrange","ltjsetkanjiskip","ltjsetxkanjiskip","ltjsetparameter","ltjglobalsetparameter","ltjgetparameter","ltjjachar","ltjalchar","ltjsetmathletter","ltjunsetmathletter","ltjdeclarealtfont","ltjclearaltfont","tate","yoko","dtou","utod","ltjgetwd","ltjgetht","ltjgetdp","ltjsetwd","ltjsetht","ltjsetdp"]}
-,
-"luatexja-fontspec.sty":{"envs":{},"deps":["l3keys2e.sty","luatexja.sty","fontspec.sty"],"cmds":["Cjascale","jfontspec","setmainjfont","setsansjfont","setmonojfont","newjfontfamily","renewjfontfamily","setjfontfamily","newjfontface","defaultjfontfeatures","addjfontfeatures","addjfontfeature"]}
-,
-"luatexja-otf.sty":{"envs":{},"deps":["luatexja.sty","luatexja-ajmacros.sty"],"cmds":["ajBall","ajBlackFlorette","ajBlackSesame","ajCheckmark","ajCloud","ajClub","ajCommandKey","ajDiamond","ajDKunoji","ajDKunojiwithBou","ajDownBArrow","ajDownHand","ajDownScissors","ajDownWArrow","ajGoteMark","ajHeart","ajHotSpring","ajJAS","ajJIS","ajKoto","ajKunoji","ajKunojiwithBou","ajLeftBArrow","ajLeftDownArrow","ajLeftHand","ajLeftScissors","ajLeftUpArrow","ajLeftWArrow","ajMasu","ajNinoji","ajPhone","ajPostal","ajReturnKey","ajRightBArrow","ajRightDownArrow","ajRightHand","ajRightScissors","ajRightUpArrow","ajRightWArrow","ajSenteMark","ajSnowman","ajSpade","ajSun","ajUmbrella","ajUpBArrow","ajUpHand","ajUpScissors","ajUpWArrow","ajUta","ajvarClub","ajvarDiamond","ajvarHeart","ajvarNinoji","ajvarPostal","ajvarSpade","ajVisibleSpace","ajWhiteFlorette","ajWhiteSesame","ajYori","ajYusuriten","CID","luatexjaotfLoaded","UTF"]}
-,
-"luatexja-preset.sty":{"envs":{},"deps":["expl3.sty","l3keys2e.sty","luatexja.sty","luatexja-fontspec.sty"],"cmds":["ebdefault","ebseries","gtebfamily","ltdefault","ltseries","mgfamily","texteb","textlt","textmg","rubyfamily","ltjnewpreset","ltjapplypreset"]}
-,
-"luatexja-ruby.sty":{"envs":{},"deps":["luatexja.sty"],"cmds":["ltjruby","ruby","ltjsetruby","ltjkenten","kenten"]}
-,
-"luatexja-zhfonts.sty":{"envs":{},"deps":["luatexja-fontspec.sty"],"cmds":["kai","fang"]}
-,
-"luatexja.sty":{"envs":{},"deps":["luatexja-core.sty","luatexja-compat.sty"],"cmds":["LuaTeXjaversion","luatexjaLoaded"]}
-,
-"luatexko.sty":{"envs":["vertical","verticaltypesetting","horizontal"],"deps":["luatexbase.sty","fontspec.sty","kolabels-utf.sty","konames-utf.sty"],"cmds":["setmainhangulfont","setmainhanjafont","setmainfallbackfont","setsanshangulfont","setsanshanjafont","setsansfallbackfont","setmonohangulfont","setmonohanjafont","setmonofallbackfont","newhangulfontfamily","newhanjafontfamily","newfallbackfontfamily","newhangulfontface","newhanjafontface","newfallbackfontface","addhangulfontfeature","addhangulfontfeatures","addhanjafontfeature","addhanjafontfeatures","addfallbackfontfeature","addfallbackfontfeatures","hangulfontspec","adhochangulfont","hanjafontspec","adhochanjafont","fallbackfontspec","adhocfallbackfont","hangulbyhangulfont","hanjabyhanjafont","hangulpunctuations","registerpunctuations","registerhangulpunctuations","unregisterpunctuations","unregisterhangulpunctuations","registerbreakableafter","registerbreakablebefore","typesetclassic","typesetmodern","typesetvertical","inhibitglue","verticaltypesetting","dotemph","dotemphraise","dotemphchar","ruby","rubyfont","rubysize","rubysep","rubynooverlap","rubyoverlap","xxruby","basestr","rubystr","uline","sout","soutdown","uuline","xout","uwave","dashuline","dotuline","ulinedown","ulinewidth","markoverwith","josaignoreparens","setmathhangulfont","setmathhangulblock","luatexhangulnormalize","luatexuhcinputencoding","hellipsis","ifluatexkorunningselectfont","japanese","korean","koreanlanguage","luatexkoautojosaattr","luatexkoclassicattr","luatexkodefaultfallbackfont","luatexkodefaulthangulfont","luatexkodefaulthanjafont","luatexkodoluacode","luatexkodotemphattr","luatexkodotemphcount","luatexkofallbackfont","luatexkofallbackfontattr","luatexkofallbackselectfont","luatexkogetrubybasechar","luatexkogetrubyrubychar","luatexkohangulbyhangulattr","luatexkohangulbyhangulfont","luatexkohangulfont","luatexkohangulfontattr","luatexkohangulnormalize","luatexkohangulpunctuations","luatexkohangulselectfont","luatexkohanjabyhanjaattr","luatexkohanjabyhanjafont","luatexkohanjafont","luatexkohanjafontattr","luatexkohanjaselectfont","luatexkohorizboxmoveright","luatexkojosaactivate","luatexkojosaactive","luatexkolangCJK","luatexkoleaderstype","luatexkomarkoverwith","luatexkomonohangulfont","luatexkorotatebox","luatexkorubyalloc","luatexkorubyattr","luatexkorubycount","luatexkorunningselectfontfalse","luatexkorunningselectfonttrue","luatexkoselectfont","luatexkostretchfactor","luatexkouhcinputencoding","luatexkoulinecount","luatexkounrotatebox","luatexkoxxruby","Schinese","Tchinese"]}
-,
-"luatodonotes.sty":{"envs":{},"deps":["xcolor.sty","ifthen.sty","tikz.sty","tikzlibraryintersections.sty","luacode.sty","xstring.sty","ifoddpage.sty","soulpos.sty","tikzlibraryshadows.sty"],"cmds":["todo","todoarea","missingfigure","listoftodos","todototoc"]}
-,
-"luatruthtable.sty":{"envs":{},"deps":["xkeyval.sty","amsmath.sty","luacode.sty"],"cmds":["luaTruthTable"]}
-,
-"luavlna.sty":{"envs":{},"deps":["luatex.sty","kvoptions.sty"],"cmds":["nosingledefaults","singlechars","compoundinitials","enablesplithyphens","disablesplithyphens","singlecharsgetlang","preventsingledebugon","preventsinglelang","preventsinglestatus","preventsingleon","preventsingleoff","preventsingledebugoff","nopredegrees","nosufdegrees","nounits","noinitials"]}
-,
-"lucbmath.sty":{"envs":{},"deps":{},"cmds":["checkmark","circledR","maltese","approxeq","arrowaxisleft","arrowaxisright","axisshort","backepsilon","backprime","backsim","backsimeq","barwedge","Bbb","Bbbk","because","beth","between","Biggg","biggg","Bigggl","bigggl","Bigggr","bigggr","bigstar","blacklozenge","blacksquare","blacktriangle","blacktriangledown","blacktriangleleft","blacktriangleright","Box","boxdot","boxminus","boxplus","boxtimes","bumpeq","Bumpeq","Cap","centerdot","circeq","circlearrowleft","circlearrowright","circledast","circledcirc","circleddash","circledS","complement","Cup","curlyeqprec","curlyeqsucc","curlyvee","curlywedge","curvearrowleft","curvearrowright","daleth","dashdownarrow","dashleftarrow","dashrightarrow","dashuparrow","defineequal","diagdown","diagup","Diamond","digamma","divideontimes","doteqdot","dotplus","downdownarrows","downharpoonleft","downharpoonright","eqcirc","eqsim","eqslantgtr","eqslantless","fallingdotseq","Finv","Game","geqq","geqslant","ggg","gimel","gnapprox","gneq","gneqq","gnsim","gtrapprox","gtrdot","gtreqless","gtreqqless","gtrless","gtrsim","gvertneqq","hslash","image","intercal","Join","largeint","ldbrack","leadsfrom","leadsto","leftarrowtail","leftleftarrows","leftrightarrows","leftrightharpoons","leftrightsquigarrow","leftsquigarrow","leftthreetimes","leqq","leqslant","lessapprox","lessdot","lesseqgtr","lesseqqgtr","lessgtr","lesssim","lhd","llcorner","Lleftarrow","lll","lnapprox","lneq","lneqq","lnsim","looparrowleft","looparrowright","lozenge","lrcorner","Lsh","ltimes","lvertneqq","mathbb","mathfrak","mathscr","mathup","measuredangle","mho","midint","midintop","midoint","midointop","midsurfint","midsurfintop","multimap","ncong","nexists","ngeq","ngeqq","ngeqslant","ngtr","nleftarrow","nLeftarrow","nLeftrightarrow","nleftrightarrow","nleq","nleqq","nleqslant","nless","nmid","notapprox","notasymp","notcong","notequiv","notni","notsim","notsimeq","notsqsubseteq","notsqsupseteq","notsubset","notsubseteq","notsupset","notsupseteq","nparallel","nprec","npreceq","nrightarrow","nRightarrow","nshortmid","nshortparallel","nsim","nsubseteq","nsubseteqq","nsucc","nsucceq","nsupseteq","nsupseteqq","ntriangleleft","ntrianglelefteq","ntriangleright","ntrianglerighteq","nvdash","nVdash","nvDash","nVDash","original","pitchfork","precapprox","preccurlyeq","precnapprox","precneqq","precnsim","precsim","rdbrack","rhd","rightarrowtail","rightleftarrows","rightrightarrows","rightsquigarrow","rightthreetimes","risingdotseq","Rrightarrow","Rsh","rtimes","shortmid","shortparallel","smallfrown","smallsetminus","smallsmile","sphericalangle","sqsubset","sqsupset","square","Subset","subseteqq","subsetneq","subsetneqq","succapprox","succcurlyeq","succnapprox","succneqq","succnsim","succsim","Supset","supseteqq","supsetneq","supsetneqq","surfint","surfintop","therefore","thickapprox","thicksim","triangledown","trianglelefteq","triangleq","trianglerighteq","twoheadleftarrow","twoheadrightarrow","ulcorner","unlhd","unrhd","upharpoonleft","upharpoonright","upuparrows","urcorner","varkappa","varnothing","varpropto","varsubsetneq","varsubsetneqq","varsupsetneq","varsupsetneqq","vartriangle","vartriangleleft","vartriangleright","Vdash","vDash","veebar","Vvdash","DeclareLucidaFontShape"]}
-,
-"lucida-otf.sty":{"envs":{},"deps":["ifxetex.sty","ifluatex.sty","xkeyval.sty","textcomp.sty","unicode-math.sty","luacode.sty"],"cmds":["LucidaBlackletter","LucidaCalligraphy","LucidaHandwriting","LucidaGrandeMonoDK","LucidaConsoleDK","lucidaSLshape"]}
-,
-"lucidabr.sty":{"envs":{},"deps":{},"cmds":["checkmark","circledR","maltese","approxeq","arrowaxisleft","arrowaxisright","axisshort","backepsilon","backprime","backsim","backsimeq","barwedge","Bbb","Bbbk","because","beth","between","Biggg","biggg","Bigggl","bigggl","Bigggr","bigggr","bigstar","blacklozenge","blacksquare","blacktriangle","blacktriangledown","blacktriangleleft","blacktriangleright","Box","boxdot","boxminus","boxplus","boxtimes","bumpeq","Bumpeq","Cap","centerdot","circeq","circlearrowleft","circlearrowright","circledast","circledcirc","circleddash","circledS","complement","Cup","curlyeqprec","curlyeqsucc","curlyvee","curlywedge","curvearrowleft","curvearrowright","daleth","dashdownarrow","dashleftarrow","dashrightarrow","dashuparrow","defineequal","diagdown","diagup","Diamond","digamma","divideontimes","doteqdot","dotplus","downdownarrows","downharpoonleft","downharpoonright","eqcirc","eqsim","eqslantgtr","eqslantless","fallingdotseq","Finv","Game","geqq","geqslant","ggg","gimel","gnapprox","gneq","gneqq","gnsim","gtrapprox","gtrdot","gtreqless","gtreqqless","gtrless","gtrsim","gvertneqq","hslash","image","intercal","Join","largeint","ldbrack","leadsfrom","leadsto","leftarrowtail","leftleftarrows","leftrightarrows","leftrightharpoons","leftrightsquigarrow","leftsquigarrow","leftthreetimes","leqq","leqslant","lessapprox","lessdot","lesseqgtr","lesseqqgtr","lessgtr","lesssim","lhd","llcorner","Lleftarrow","lll","lnapprox","lneq","lneqq","lnsim","looparrowleft","looparrowright","lozenge","lrcorner","Lsh","ltimes","lvertneqq","mathbb","mathfrak","mathscr","mathup","measuredangle","mho","midint","midintop","midoint","midointop","midsurfint","midsurfintop","multimap","ncong","nexists","ngeq","ngeqq","ngeqslant","ngtr","nleftarrow","nLeftarrow","nLeftrightarrow","nleftrightarrow","nleq","nleqq","nleqslant","nless","nmid","notapprox","notasymp","notcong","notequiv","notni","notsim","notsimeq","notsqsubseteq","notsqsupseteq","notsubset","notsubseteq","notsupset","notsupseteq","nparallel","nprec","npreceq","nrightarrow","nRightarrow","nshortmid","nshortparallel","nsim","nsubseteq","nsubseteqq","nsucc","nsucceq","nsupseteq","nsupseteqq","ntriangleleft","ntrianglelefteq","ntriangleright","ntrianglerighteq","nvdash","nVdash","nvDash","nVDash","original","pitchfork","precapprox","preccurlyeq","precnapprox","precneqq","precnsim","precsim","rdbrack","rhd","rightarrowtail","rightleftarrows","rightrightarrows","rightsquigarrow","rightthreetimes","risingdotseq","Rrightarrow","Rsh","rtimes","shortmid","shortparallel","smallfrown","smallsetminus","smallsmile","sphericalangle","sqsubset","sqsupset","square","Subset","subseteqq","subsetneq","subsetneqq","succapprox","succcurlyeq","succnapprox","succneqq","succnsim","succsim","Supset","supseteqq","supsetneq","supsetneqq","surfint","surfintop","therefore","thickapprox","thicksim","triangledown","trianglelefteq","triangleq","trianglerighteq","twoheadleftarrow","twoheadrightarrow","ulcorner","unlhd","unrhd","upalpha","upbeta","upchi","updelta","upepsilon","upeta","upgamma","upharpoonleft","upharpoonright","upiota","upkappa","uplambda","upmu","upnu","upomega","upphi","uppi","uppsi","uprho","upsigma","uptau","uptheta","upuparrows","upupsilon","upvarepsilon","upxi","upzeta","urcorner","varDelta","varGamma","varkappa","varLambda","varnothing","varOmega","varPhi","varPi","varpropto","varPsi","varSigma","varsubsetneq","varsubsetneqq","varsupsetneq","varsupsetneqq","varTheta","vartriangle","vartriangleleft","vartriangleright","varUpsilon","varXi","Vdash","vDash","veebar","Vvdash","DeclareLucidaFontShape"]}
-,
-"lucmin.sty":{"envs":{},"deps":{},"cmds":["checkmark","circledR","maltese","approxeq","arrowaxisleft","arrowaxisright","axisshort","backepsilon","backprime","backsim","backsimeq","barwedge","Bbb","Bbbk","because","beth","between","Biggg","biggg","Bigggl","bigggl","Bigggr","bigggr","bigstar","blacklozenge","blacksquare","blacktriangle","blacktriangledown","blacktriangleleft","blacktriangleright","Box","boxdot","boxminus","boxplus","boxtimes","bumpeq","Bumpeq","Cap","centerdot","circeq","circlearrowleft","circlearrowright","circledast","circledcirc","circleddash","circledS","complement","Cup","curlyeqprec","curlyeqsucc","curlyvee","curlywedge","curvearrowleft","curvearrowright","daleth","dashdownarrow","dashleftarrow","dashrightarrow","dashuparrow","defineequal","diagdown","diagup","Diamond","digamma","divideontimes","doteqdot","dotplus","downdownarrows","downharpoonleft","downharpoonright","eqcirc","eqsim","eqslantgtr","eqslantless","fallingdotseq","Finv","Game","geqq","geqslant","ggg","gimel","gnapprox","gneq","gneqq","gnsim","gtrapprox","gtrdot","gtreqless","gtreqqless","gtrless","gtrsim","gvertneqq","hslash","image","intercal","Join","largeint","ldbrack","leadsfrom","leadsto","leftarrowtail","leftleftarrows","leftrightarrows","leftrightharpoons","leftrightsquigarrow","leftsquigarrow","leftthreetimes","leqq","leqslant","lessapprox","lessdot","lesseqgtr","lesseqqgtr","lessgtr","lesssim","lhd","llcorner","Lleftarrow","lll","lnapprox","lneq","lneqq","lnsim","looparrowleft","looparrowright","lozenge","lrcorner","Lsh","ltimes","lvertneqq","mathbb","mathscr","mathup","measuredangle","mho","midint","midintop","midoint","midointop","midsurfint","midsurfintop","multimap","ncong","nexists","ngeq","ngeqq","ngeqslant","ngtr","nleftarrow","nLeftarrow","nLeftrightarrow","nleftrightarrow","nleq","nleqq","nleqslant","nless","nmid","notapprox","notasymp","notcong","notequiv","notni","notsim","notsimeq","notsqsubseteq","notsqsupseteq","notsubset","notsubseteq","notsupset","notsupseteq","nparallel","nprec","npreceq","nrightarrow","nRightarrow","nshortmid","nshortparallel","nsim","nsubseteq","nsubseteqq","nsucc","nsucceq","nsupseteq","nsupseteqq","ntriangleleft","ntrianglelefteq","ntriangleright","ntrianglerighteq","nvdash","nVdash","nvDash","nVDash","original","pitchfork","precapprox","preccurlyeq","precnapprox","precneqq","precnsim","precsim","rdbrack","rhd","rightarrowtail","rightleftarrows","rightrightarrows","rightsquigarrow","rightthreetimes","risingdotseq","Rrightarrow","Rsh","rtimes","shortmid","shortparallel","smallfrown","smallsetminus","smallsmile","sphericalangle","sqsubset","sqsupset","square","Subset","subseteqq","subsetneq","subsetneqq","succapprox","succcurlyeq","succnapprox","succneqq","succnsim","succsim","Supset","supseteqq","supsetneq","supsetneqq","surfint","surfintop","therefore","thickapprox","thicksim","triangledown","trianglelefteq","triangleq","trianglerighteq","twoheadleftarrow","twoheadrightarrow","ulcorner","unlhd","unrhd","upharpoonleft","upharpoonright","upuparrows","urcorner","varkappa","varnothing","varpropto","varsubsetneq","varsubsetneqq","varsupsetneq","varsupsetneqq","vartriangle","vartriangleleft","vartriangleright","Vdash","vDash","veebar","Vvdash","DeclareLucidaFontShape","Mathdefault"]}
-,
-"lucmtime.sty":{"envs":{},"deps":{},"cmds":["checkmark","circledR","maltese","approxeq","arrowaxisleft","arrowaxisright","axisshort","backepsilon","backprime","backsim","backsimeq","barwedge","Bbb","Bbbk","because","beth","between","Biggg","biggg","Bigggl","bigggl","Bigggr","bigggr","bigstar","blacklozenge","blacksquare","blacktriangle","blacktriangledown","blacktriangleleft","blacktriangleright","Box","boxdot","boxminus","boxplus","boxtimes","bumpeq","Bumpeq","Cap","centerdot","circeq","circlearrowleft","circlearrowright","circledast","circledcirc","circleddash","circledS","complement","Cup","curlyeqprec","curlyeqsucc","curlyvee","curlywedge","curvearrowleft","curvearrowright","daleth","dashdownarrow","dashleftarrow","dashrightarrow","dashuparrow","defineequal","diagdown","diagup","Diamond","digamma","divideontimes","doteqdot","dotplus","downdownarrows","downharpoonleft","downharpoonright","eqcirc","eqsim","eqslantgtr","eqslantless","fallingdotseq","Finv","Game","geqq","geqslant","ggg","gimel","gnapprox","gneq","gneqq","gnsim","gtrapprox","gtrdot","gtreqless","gtreqqless","gtrless","gtrsim","gvertneqq","hslash","image","intercal","Join","largeint","ldbrack","leadsfrom","leadsto","leftarrowtail","leftleftarrows","leftrightarrows","leftrightharpoons","leftrightsquigarrow","leftsquigarrow","leftthreetimes","leqq","leqslant","lessapprox","lessdot","lesseqgtr","lesseqqgtr","lessgtr","lesssim","lhd","llcorner","Lleftarrow","lll","lnapprox","lneq","lneqq","lnsim","looparrowleft","looparrowright","lozenge","lrcorner","Lsh","ltimes","lvertneqq","mathbb","mathscr","mathup","measuredangle","mho","midint","midintop","midoint","midointop","midsurfint","midsurfintop","multimap","ncong","nexists","ngeq","ngeqq","ngeqslant","ngtr","nleftarrow","nLeftarrow","nLeftrightarrow","nleftrightarrow","nleq","nleqq","nleqslant","nless","nmid","notapprox","notasymp","notcong","notequiv","notni","notsim","notsimeq","notsqsubseteq","notsqsupseteq","notsubset","notsubseteq","notsupset","notsupseteq","nparallel","nprec","npreceq","nrightarrow","nRightarrow","nshortmid","nshortparallel","nsim","nsubseteq","nsubseteqq","nsucc","nsucceq","nsupseteq","nsupseteqq","ntriangleleft","ntrianglelefteq","ntriangleright","ntrianglerighteq","nvdash","nVdash","nvDash","nVDash","original","pitchfork","precapprox","preccurlyeq","precnapprox","precneqq","precnsim","precsim","rdbrack","rhd","rightarrowtail","rightleftarrows","rightrightarrows","rightsquigarrow","rightthreetimes","risingdotseq","Rrightarrow","Rsh","rtimes","shortmid","shortparallel","smallfrown","smallsetminus","smallsmile","sphericalangle","sqsubset","sqsupset","square","Subset","subseteqq","subsetneq","subsetneqq","succapprox","succcurlyeq","succnapprox","succneqq","succnsim","succsim","Supset","supseteqq","supsetneq","supsetneqq","surfint","surfintop","therefore","thickapprox","thicksim","triangledown","trianglelefteq","triangleq","trianglerighteq","twoheadleftarrow","twoheadrightarrow","ulcorner","unlhd","unrhd","upharpoonleft","upharpoonright","upuparrows","urcorner","varkappa","varnothing","varpropto","varsubsetneq","varsubsetneqq","varsupsetneq","varsupsetneqq","vartriangle","vartriangleleft","vartriangleright","Vdash","vDash","veebar","Vvdash","DeclareLucidaFontShape","Mathdefault"]}
-,
-"luctime.sty":{"envs":{},"deps":{},"cmds":["checkmark","circledR","maltese","approxeq","arrowaxisleft","arrowaxisright","axisshort","backepsilon","backprime","backsim","backsimeq","barwedge","Bbb","Bbbk","because","beth","between","Biggg","biggg","Bigggl","bigggl","Bigggr","bigggr","bigstar","blacklozenge","blacksquare","blacktriangle","blacktriangledown","blacktriangleleft","blacktriangleright","Box","boxdot","boxminus","boxplus","boxtimes","bumpeq","Bumpeq","Cap","centerdot","circeq","circlearrowleft","circlearrowright","circledast","circledcirc","circleddash","circledS","complement","Cup","curlyeqprec","curlyeqsucc","curlyvee","curlywedge","curvearrowleft","curvearrowright","daleth","dashdownarrow","dashleftarrow","dashrightarrow","dashuparrow","defineequal","diagdown","diagup","Diamond","digamma","divideontimes","doteqdot","dotplus","downdownarrows","downharpoonleft","downharpoonright","eqcirc","eqsim","eqslantgtr","eqslantless","fallingdotseq","Finv","Game","geqq","geqslant","ggg","gimel","gnapprox","gneq","gneqq","gnsim","gtrapprox","gtrdot","gtreqless","gtreqqless","gtrless","gtrsim","gvertneqq","hslash","image","intercal","Join","largeint","ldbrack","leadsfrom","leadsto","leftarrowtail","leftleftarrows","leftrightarrows","leftrightharpoons","leftrightsquigarrow","leftsquigarrow","leftthreetimes","leqq","leqslant","lessapprox","lessdot","lesseqgtr","lesseqqgtr","lessgtr","lesssim","lhd","llcorner","Lleftarrow","lll","lnapprox","lneq","lneqq","lnsim","looparrowleft","looparrowright","lozenge","lrcorner","Lsh","ltimes","lvertneqq","mathbb","mathscr","mathup","measuredangle","mho","midint","midintop","midoint","midointop","midsurfint","midsurfintop","multimap","ncong","nexists","ngeq","ngeqq","ngeqslant","ngtr","nleftarrow","nLeftarrow","nLeftrightarrow","nleftrightarrow","nleq","nleqq","nleqslant","nless","nmid","notapprox","notasymp","notcong","notequiv","notni","notsim","notsimeq","notsqsubseteq","notsqsupseteq","notsubset","notsubseteq","notsupset","notsupseteq","nparallel","nprec","npreceq","nrightarrow","nRightarrow","nshortmid","nshortparallel","nsim","nsubseteq","nsubseteqq","nsucc","nsucceq","nsupseteq","nsupseteqq","ntriangleleft","ntrianglelefteq","ntriangleright","ntrianglerighteq","nvdash","nVdash","nvDash","nVDash","original","pitchfork","precapprox","preccurlyeq","precnapprox","precneqq","precnsim","precsim","rdbrack","rhd","rightarrowtail","rightleftarrows","rightrightarrows","rightsquigarrow","rightthreetimes","risingdotseq","Rrightarrow","Rsh","rtimes","shortmid","shortparallel","smallfrown","smallsetminus","smallsmile","sphericalangle","sqsubset","sqsupset","square","Subset","subseteqq","subsetneq","subsetneqq","succapprox","succcurlyeq","succnapprox","succneqq","succnsim","succsim","Supset","supseteqq","supsetneq","supsetneqq","surfint","surfintop","therefore","thickapprox","thicksim","triangledown","trianglelefteq","triangleq","trianglerighteq","twoheadleftarrow","twoheadrightarrow","ulcorner","unlhd","unrhd","upharpoonleft","upharpoonright","upuparrows","urcorner","varkappa","varnothing","varpropto","varsubsetneq","varsubsetneqq","varsupsetneq","varsupsetneqq","vartriangle","vartriangleleft","vartriangleright","Vdash","vDash","veebar","Vvdash","DeclareLucidaFontShape","Mathdefault"]}
-,
-"lutabulartools.sty":{"envs":{},"deps":["booktabs.sty","multirow.sty","makecell.sty","xparse.sty","array.sty","xcolor.sty","colortbl.sty","luacode.sty","penlight.sty"],"cmds":["settabular","lttdebugON","lttdebugOFF","lttdebugprt","MC","setMCrepl","setMChordef","setMCverdef","addMCsicol","midrulesat","gmidrule","gcmidrule","gcmidrules","cmidrules","midruleX","resetmidruleX","forcecolspec","oldgcmidrule","oldcmidrule"]}
-,
-"luximono.sty":{"envs":{},"deps":["keyval.sty"],"cmds":["ProcessOptionsWithKV"]}
-,
-"lwarp.sty":{"envs":["warpprint","warpHTML","BlockClass","warpall","warpMathJax","warpsvg","fcolorminipage"],"deps":["iftex.sty","ifpdf.sty","ifptex.sty","etoolbox.sty","xpatch.sty","ifplatform.sty","letltxmacro.sty","fontenc.sty","inputenc.sty","newunicodechar.sty","upquote.sty","kvoptions.sty","comment.sty","xparse.sty","calc.sty","expl3.sty","xstring.sty","environ.sty","geometry.sty","gettitlestring.sty","everyhook.sty","xifthen.sty","verbatim.sty","refcount.sty","newfloat.sty","printlen.sty","capt-of.sty","cleveref.sty","array.sty"],"cmds":["lwarpsetup","HTMLFirstPageTop","HTMLFirstPageBottom","linkhomename","linkpreviousname","linknextname","theSideTOCDepth","sidetocname","theFileDepth","FilenameLimit","theFootnoteDepth","IndexPageSeparator","IndexRangeSeparator","CSSFilename","MathJaxFilename","HTMLLanguage","HTMLTitle","HTMLTitleBeforeSection","HTMLTitleAfterSection","HTMLAuthor","HTMLDescription","HTMLPageTop","HTMLPageBottom","LinkHome","LinkPrevious","LinkNext","ImageAltText","ThisAltText","MathImageAltText","PackageDiagramAltText","AltTextOpen","AltTextClose","HTMLnewcolumntype","warpprintonly","warpHTMLonly","InlineClass","marginparBlock","UseMinipageWidths","IgnoreMinipageWidths","fboxBlock","FilenameSimplify","FilenameNullify","ForceHTMLPage","ForceHTMLTOC","AddSubtitlePublished","arrayrulecolor","arrayrulecolornexttoken","attribution","BaseJobname","BlockClassSingle","CaptionSeparator","cdashline","csNewCommandCopycs","CustomizeMathJax","defaddtocounter","displaymathnormal","displaymathother","doublerulesepcolor","doublerulesepcolornexttoken","firsthdashline","footnotename","fup","hdashline","HomeHTMLFilename","HTMLentity","HTMLFilename","HTMLunicode","hyperindexformat","hyperindexref","hypertoc","hypertocfloat","inlinemathnormal","inlinemathother","lasthdashline","LateximageFontScale","LateximageFontSizeName","ldelim","LWRabsorbnumber","LWRabsorboption","LWRabsorbquotenumber","LWRabsorbtwooptions","LWRamp","LWRdollar","LWRfootnote","LWRframebox","LWRhash","LWRleftbrace","LWRopquote","LWRopseq","LWRorighspace","LWRpercent","LWRPrintStack","LWRref","LWRrightbrace","LWRsetnextfloat","LWRtexttitlecase","macrotocsname","mcolrowcell","midrule","minipagefullwidth","morecmidrules","mrowcell","multicolumnrow","NewEnvironmentCopy","nexttoken","nohyperpage","OSPathSymbol","pagerefPageFor","postbookname","postchaptername","postparagraphname","postpartname","postsectionname","postsubparagraphname","postsubsectionname","postsubsubsectionname","prebookname","prechaptername","preparagraphname","prepartname","presectionname","presubparagraphname","presubsectionname","presubsubsectionname","printauthor","printdate","printpublished","printsubtitle","printthanks","printtitle","rdelim","ResumeTabular","rowcolor","SetHTMLFileNumber","simplechapterdelim","specialrule","StartDefiningMath","StartDefiningTabulars","StopDefiningMath","StopDefiningTabulars","TabularMacro","texorpdfstring","theauthor","thefootnoteReset","theHTMLAuthor","theHTMLSection","theHTMLTitle","theHTMLTitleSection","theHTMLTitleSeparator","thelofdepth","thelotdepth","theMathJaxequation","theMathJaxsection","theMathJaxsubequations","thetitle","ThisComment","tmpb","toprule","tracinglwarp","up","VerbatimHTMLWidth","FBmedkern","FBthickkern","HTMLleftmargini","HTMLvleftskip","LTcaptype","DH","NG","dj","ng","k","guillemotleft","guillemotright","guilsinglleft","guilsinglright","quotedblbase","quotesinglbase","textquotedbl","DJ","th","TH","dh","Hwithstroke","hwithstroke","textogonekcentered","guillemetleft","guillemetright"]}
-,
-"lyluatex.sty":{"envs":["lysavefrag","ly","lilypond"],"deps":["graphicx.sty","minibox.sty","environ.sty","currfile.sty","pdfpages.sty","varwidth.sty","luaoptions.sty","metalogo.sty"],"cmds":["lyluatex","IfNextToken","cm","in","mm","pt","lyFilename","lyIntertext","lyVersion","rmfamilyid","sffamilyid","ttfamilyid","includely","musicxmlfile","lyscorebegin","lyscoreend","lysetverbenv","filename","lyenv","lynewenvironment","options","lily","lyscore","lilypondfile","lilypond"]}
-,
-"mVersion.sty":{"envs":{},"deps":{},"cmds":["version","setVersion","increaseBuild","versionnumber","buildnumber","parseline","outfile","versionfile","versionline","thebuildcounter"]}
-,
-"maa-monthly.sty":{"envs":["filler","acknowledgment","acknowledge","biog","affil","biogaffil"],"deps":["times.sty","graphicx.sty","color.sty","url.sty","amsmath.sty","amsthm.sty","amsfonts.sty","amssymb.sty"],"cmds":["doi","iftrimmarks","trimmarksfalse","trimmarkstrue","papertrimheight","papertrimwidth","journalname","thevolume","theissue","theannual","themonth","copysize","editor","editoraddress","editornoaddress","nomaketitle","opargboxed","regboxed","reviewer","ifuppercase","uppercasetrue","uppercasefalse","fillerhead","fillerheadmark","opargenumerate","regenumerate","auq","fudgetrimdown","fudgetrimright","tlmark","trmark","brmark","blmark","imagemarks","timestring","dffudge","jotskip","nnoalign","abrule","arule","brule","settildes","figskipamount","figskip","threeem","bysame","refsection","refsectionmark","final"]}
-,
-"maabook.cls":{"envs":["xcb"],"deps":["ifxetex.sty","ifpdf.sty","amsgen.sty","upref.sty","amscip.sty","graphicx.sty","amsmath.sty","xspace.sty","amsthm.sty","shaderef.sty","mtpro2.sty","stix2.sty"],"cmds":["affiliation","alsoname","backmatter","bibintro","bibliofont","bibname","bysame","calclayout","captionindent","chapter","chaptername","chapterrunhead","citeform","copyrightholder","copyrightinfo","copyrightyear","dedicatory","DOI","evdef","forcehyphenbreak","forcelinebreak","frontmatter","fullwidthdisplay","indexchap","indexintro","initMAAenummargins","keywords","keywordsname","larger","mainmatter","makededication","makehalftitle","markleft","maxcaptionwidth","MR","MRhref","nonbreakingspace","normalparindent","normaltopskip","partrunhead","printindex","sectionrunhead","see","seealso","seename","seeonly","seeonlyname","seriesinfo","SMALL","Small","smaller","subjclass","subjclassname","subtitle","thechapter","Tiny","title","tocappendix","tocchapter","tochyphenbreak","toclinebreak","tocparagraph","tocpart","tocsection","tocsubparagraph","tocsubsection","tocsubsubsection","URL","URLhref"]}
-,
-"macrolist.sty":{"envs":{},"deps":["pgffor.sty"],"cmds":["macronewlist","macrolistexists","macrolistelement","macrolistindexof","macrolistcontains","macrolistadd","macrolisteadd","macrolistremove","macrolistremovelast","macrolistclear","macrolistsize","macrolistforeach","macrolistjoin"]}
-,
-"macroswap.sty":{"envs":{},"deps":{},"cmds":["macroswap","gmacroswap"]}
-,
-"mafr.sty":{"envs":["descriptionFB"],"deps":["a4wide.sty","fontenc.sty","babel.sty"],"cmds":["scr","mathrsfs","vect","angl","frc","A","B","C","D","E","F","I","J","K","N","P","Q","R","S","Z","teneuro","DH","dh","dj","DJ","guillemetleft","guillemetright","guillemotleft","guillemotright","guilsinglleft","guilsinglright","Hwithstroke","hwithstroke","k","NG","ng","quotedblbase","quotesinglbase","textogonekcentered","textquotedbl","th","TH","frenchsetup","frenchbsetup","AddThinSpaceBeforeFootnotes","alsoname","at","bibname","AutoSpaceBeforeFDP","boi","bsc","CaptionSeparator","captionsfrench","ccname","chaptername","circonflexe","dateacadian","datefrench","DecimalMathComma","degre","degres","descindentFB","dotFFN","enclname","extrasfrench","FBcolonspace","FBdatebox","FBdatespace","FBeverylineguill","FBfigtabshape","FBfnindent","FBFrenchFootnotesfalse","FBFrenchFootnotestrue","FBFrenchSuperscriptstrue","FBGlobalLayoutFrenchtrue","FBgspchar","FBguillopen","FBguillspace","FBInnerGuillSinglefalse","FBInnerGuillSingletrue","FBListItemsAsParfalse","FBListItemsAsPartrue","FBLowercaseSuperscriptstrue","FBmedkern","FBPartNameFulltrue","FBsetspaces","FBSmallCapsFigTabCaptionstrue","FBStandardEnumerateEnvtrue","FBStandardItemizeEnvtrue","FBStandardItemLabelstrue","FBStandardLayouttrue","FBStandardListSpacingtrue","FBStandardListstrue","FBsupR","FBsupS","FBtextellipsis","FBthickkern","FBthinspace","FBthousandsep","FBWarning","fg","fgi","fgii","fprimo","frenchdate","FrenchEnumerate","FrenchFootnotes","FrenchLabelItem","frenchpartfirst","frenchpartsecond","FrenchPopularEnumerate","frenchtoday","Frlabelitemi","Frlabelitemii","Frlabelitemiii","Frlabelitemiv","frquote","fup","glossaryname","headtoname","ieme","iemes","ier","iere","ieres","iers","ifFBAutoSpaceFootnotes","ifFBCompactItemize","ifFBCustomiseFigTabCaptions","ifFBfrench","ifFBFrenchFootnotes","ifFBFrenchSuperscripts","ifFBGlobalLayoutFrench","ifFBIndentFirst","ifFBINGuillSpace","ifFBListItemsAsPar","ifFBListOldLayout","ifFBLowercaseSuperscripts","ifFBLuaTeX","ifFBOldFigTabCaptions","ifFBOriginalTypewriter","ifFBPartNameFull","ifFBReduceListSpacing","ifFBShowOptions","ifFBSmallCapsFigTabCaptions","ifFBStandardEnumerateEnv","ifFBStandardItemizeEnv","ifFBStandardItemLabels","ifFBStandardLayout","ifFBStandardLists","ifFBStandardListSpacing","ifFBSuppressWarning","ifFBThinColonSpace","ifFBThinSpaceInFrenchNumbers","ifFBunicode","ifFBXeTeX","ifLaTeXe","kernFFN","labelindentFB","labelwidthFB","leftmarginFB","listfigurename","listindentFB","No","no","NoAutoSpaceBeforeFDP","NoAutoSpacing","NoEveryParQuote","noextrasfrench","nombre","nos","Nos","og","ogi","ogii","pagename","parindentFFN","partfirst","partnameord","partsecond","prefacename","primo","proofname","quarto","rmfamilyFB","secundo","seename","sffamilyFB","StandardFootnotes","StandardMathComma","tertio","tild","ttfamilyFB","up","xspace"]}
-,
-"magaz.sty":{"envs":{},"deps":{},"cmds":["FirstLine","FirstLineFont"]}
-,
-"magicnum.sty":{"envs":{},"deps":["iftex.sty","infwarerr.sty"],"cmds":["magicnum"]}
-,
-"magicwatermark.sty":{"envs":{},"deps":["everypage-1x.sty","tikz.sty","xparse.sty","expl3.sty"],"cmds":["PageSetup","Watermark","EvenPageSetup","EvenWatermark","OddPageSetup","OddWatermark","NewWatermark","MyPageSetup","MyWatermark","ClearWatermark"]}
-,
-"mahjong.sty":{"envs":{},"deps":["expl3.sty","xparse.sty","l3keys2e.sty","graphicx.sty","stackengine.sty"],"cmds":["mahjong"]}
-,
-"mailing.sty":{"envs":{},"deps":{},"cmds":["addressfile","mailingtext","makemailing"]}
-,
-"mailmerge.sty":{"envs":{},"deps":["ifthen.sty"],"cmds":["mailfields","mailrepeat","field","numberoffields","numberofentries","entrynumber","mailentry","mailnewdata","MAILMcurrtag","MAILMtok","theMAILMcount","theMAILMentry","MAILMrepetition","MAILMsetnumfields","MAILMsetnumentries","MAILMaux"]}
-,
-"makebarcode.sty":{"envs":{},"deps":["kvoptions.sty"],"cmds":["barcode","HPlabel","ITFbarcode","BarcodeSanitize"]}
-,
-"makebase.sty":{"envs":{},"deps":["calc.sty"],"cmds":["makebase"]}
-,
-"makebox.sty":{"envs":{},"deps":{},"cmds":["makebox"]}
-,
-"makecell.sty":{"envs":["mcellbox"],"deps":["array.sty"],"cmds":["botstrut","bottopstrut","cellalign","celldiagratio","cellgape","cellrotangle","cellset","diaghead","eline","erows","Gape","gape","makecell","makecellbox","makegapedcells","multirowcell","multirowthead","negjot","nline","nomakegapedcells","rnline","rotcell","rothead","rotheadgape","rotheadsize","setcellgapes","thead","theadalign","theadfont","theadgape","theadset","thenlinenum","topstrut","Xcline","Xhline","Xrows"]}
-,
-"makecmds.sty":{"envs":{},"deps":{},"cmds":["makecommand","provideenvironment","makeenvironment","providelength","makelength","providecounter","makecounter"]}
-,
-"makeglos.sty":{"envs":["theglossary"],"deps":{},"cmds":["printglossary","glossaryname","glossaryintro","gsee","galso","seename","alsoname"]}
-,
-"makeidx.sty":{"envs":{},"deps":{},"cmds":["see","seealso","seename","alsoname","printindex"]}
-,
-"makematch.sty":{"envs":{},"deps":{},"cmds":["MakeMatcher","MakeMatchTarget","MatchedTarget","RemoveMatched"]}
-,
-"makeplot.sty":{"envs":["makeplot"],"deps":["fp.sty","pst-plot.sty","pstricks-add.sty","xkeyval.sty"],"cmds":["MPbg","MPcolor","styleoflineA","styleoflineB","styleoflineC","styleoflineD","styleoflineE","styleoflineF","styleoflineG","fontaxeY","fontaxeX","fonttitleY","fonttitleX","fontlegend","defaultOptionsMakeplot","makeplot","plotFile","legendXY","legendDL","legendDR","legendUL","legendUR","legendAf","legendBf","legendCf","legendDf","legendEf","legendFf","legendGf","legendText","data","dif","drawmargins","drawmarginsmakeplot","endXa","endXamakeplot","endXb","endXbmakeplot","factorBOUNDARYx","factorBOUNDARYxmakeplot","factorBOUNDARYy","factorBOUNDARYymakeplot","factorX","factorXmakeplot","factorY","factorYmakeplot","ff","fillcolorWhiteBG","fillstyleWhiteBG","framearcWhiteBG","gridDx","gridDxmakeplot","gridDy","gridDymakeplot","heightPlotFactor","heightPlotFactormakeplot","highY","leftX","legend","legendA","legendB","legendC","legendD","legendE","legendF","legendG","linecolorWhiteBG","linestyleWhiteBG","linewidthWhiteBG","llegendXY","lowY","nr","nrr","orgX","orgXmakeplot","orgY","orgYmakeplot","plotFileA","plotFileB","plotFileC","plotFileD","plotFileE","plotFileF","plotFileG","posx","posy","rightX","sep","sepTx","sepTxlegendXY","sepTy","sepY","sepYlegendXY","sepYy","slegendXY","tickHerex","tickHerey","ticky","tickymakeplot","unitX","unitY","val","vall","var","w","whiteBG","widthPlot","widthPlotmakeplot","ww","www","xa","xaa","xaaa","xaDL","xaDR","xamakeplot","xaOrigin","xaXY","xb","xbb","xc","xDiff","xinc","xmid","xp","xUL","xUR","xx","xz","xzDL","xzDR","xzmakeplot","xzz","ya","yaa","yaaa","yaDL","yaDR","yamakeplot","yaOrigin","yDiff","yinc","ymid","yUL","yUR","yz","yzDL","yzDR","yzmakeplot","yzXY"]}
-,
-"maker.sty":{"envs":["ArduinoSketchBox","ProcessingSketchBox"],"deps":["listings.sty","xcolor.sty","tcolorbox.sty","tcolorboxlibrarylistings.sty","tcolorboxlibraryskins.sty"],"cmds":["ArduinoSketch","ArduinoInline","ProcessingSketch","ProcessingInline","FormatDigit"]}
-,
-"makeshape.sty":{"envs":{},"deps":["tikz.sty"],"cmds":["ctbnex","ctbney","mincorrect","pgfshapeminwidth","pgfshapeminheight","pgfshapeouterxsep","pgfshapeouterysep","setpaths","corrx","corry","targpointx","targpointy"]}
-,
-"malayalam.sty":{"envs":{},"deps":["ifpdf.sty"],"cmds":["B","C","D","E","F","K","mm","X","ambili","ashtamudi","aswathi","bhanu","chippi","karthika","kaumudi","kottakkal","makam","malavika","mridula","payippad","periyar","revathi","sabari","sruthy","aathira","anakha","ayilyambold","bhavana","gauri","gopika","indulekha","ISMashtamudi","ISMkarthika","ISMkaumudi","ISMrevathi","jaya","ravivarma","sarada","thiruvathira","bibname","chaptername","getfactor","getslant","xxx","RMF"]}
-,
-"maltese.sty":{"envs":{},"deps":["ucs.sty"],"cmds":["mc","mC","mg","mG","mh","mH","mz","mZ","my","mY","mi","mI","maltesec","malteseC","malteseg","malteseG","malteseh","malteseH","maltesez","malteseZ","maltesey","malteseY","maltesei","malteseI","maltesetext"]}
-,
-"mandi.sty":{"envs":["usebaseunits","usederivedunits","usealternateunits","useapproximateconstants","usepreciseconstants"],"deps":["luatex.sty","array.sty","iftex.sty","pgfopts.sty","unicode-math.sty"],"cmds":["mandiversion","mandisetup","momentum","momentumvector","vectormomentum","momentumvalue","momentumbaseunits","momentumderivedunits","momentumalternateunits","momentumonlybaseunits","momentumonlyderivedunits","momentumonlyalternateunits","momentumvectorvalue","vectormomentumvalue","momentumvectorbaseunits","vectormomentumbaseunits","momentumvectorderivedunits","vectormomentumderivedunits","momentumvectoralternateunits","vectormomentumalternateunits","momentumvectoronlybaseunits","vectormomentumonlybaseunits","momentumvectoronlyderivedunits","vectormomentumonlyderivedunits","momentumvectoronlyalternateunits","vectormomentumonlyalternateunits","checkquantity","acceleration","accelerationvector","vectoracceleration","accelerationvalue","accelerationbaseunits","accelerationderivedunits","accelerationalternateunits","accelerationonlybaseunits","accelerationonlyderivedunits","accelerationonlyalternateunits","accelerationvectorvalue","vectoraccelerationvalue","accelerationvectorbaseunits","vectoraccelerationbaseunits","accelerationvectorderivedunits","vectoraccelerationderivedunits","accelerationvectoralternateunits","vectoraccelerationalternateunits","accelerationvectoronlybaseunits","vectoraccelerationonlybaseunits","accelerationvectoronlyderivedunits","vectoraccelerationonlyderivedunits","accelerationvectoronlyalternateunits","vectoraccelerationonlyalternateunits","amount","amountvalue","amountbaseunits","amountderivedunits","amountalternateunits","amountonlybaseunits","amountonlyderivedunits","amountonlyalternateunits","angularacceleration","angularaccelerationvector","vectorangularacceleration","angularaccelerationvalue","angularaccelerationbaseunits","angularaccelerationderivedunits","angularaccelerationalternateunits","angularaccelerationonlybaseunits","angularaccelerationonlyderivedunits","angularaccelerationonlyalternateunits","angularaccelerationvectorvalue","vectorangularaccelerationvalue","angularaccelerationvectorbaseunits","vectorangularaccelerationbaseunits","angularaccelerationvectorderivedunits","vectorangularaccelerationderivedunits","angularaccelerationvectoralternateunits","vectorangularaccelerationalternateunits","angularaccelerationvectoronlybaseunits","vectorangularaccelerationonlybaseunits","angularaccelerationvectoronlyderivedunits","vectorangularaccelerationonlyderivedunits","angularaccelerationvectoronlyalternateunits","vectorangularaccelerationonlyalternateunits","angularfrequency","angularfrequencyvalue","angularfrequencybaseunits","angularfrequencyderivedunits","angularfrequencyalternateunits","angularfrequencyonlybaseunits","angularfrequencyonlyderivedunits","angularfrequencyonlyalternateunits","angularimpulse","angularimpulsevector","vectorangularimpulse","angularimpulsevalue","angularimpulsebaseunits","angularimpulsederivedunits","angularimpulsealternateunits","angularimpulseonlybaseunits","angularimpulseonlyderivedunits","angularimpulseonlyalternateunits","angularimpulsevectorvalue","vectorangularimpulsevalue","angularimpulsevectorbaseunits","vectorangularimpulsebaseunits","angularimpulsevectorderivedunits","vectorangularimpulsederivedunits","angularimpulsevectoralternateunits","vectorangularimpulsealternateunits","angularimpulsevectoronlybaseunits","vectorangularimpulseonlybaseunits","angularimpulsevectoronlyderivedunits","vectorangularimpulseonlyderivedunits","angularimpulsevectoronlyalternateunits","vectorangularimpulseonlyalternateunits","angularmomentum","angularmomentumvector","vectorangularmomentum","angularmomentumvalue","angularmomentumbaseunits","angularmomentumderivedunits","angularmomentumalternateunits","angularmomentumonlybaseunits","angularmomentumonlyderivedunits","angularmomentumonlyalternateunits","angularmomentumvectorvalue","vectorangularmomentumvalue","angularmomentumvectorbaseunits","vectorangularmomentumbaseunits","angularmomentumvectorderivedunits","vectorangularmomentumderivedunits","angularmomentumvectoralternateunits","vectorangularmomentumalternateunits","angularmomentumvectoronlybaseunits","vectorangularmomentumonlybaseunits","angularmomentumvectoronlyderivedunits","vectorangularmomentumonlyderivedunits","angularmomentumvectoronlyalternateunits","vectorangularmomentumonlyalternateunits","angularvelocity","angularvelocityvector","vectorangularvelocity","angularvelocityvalue","angularvelocitybaseunits","angularvelocityderivedunits","angularvelocityalternateunits","angularvelocityonlybaseunits","angularvelocityonlyderivedunits","angularvelocityonlyalternateunits","angularvelocityvectorvalue","vectorangularvelocityvalue","angularvelocityvectorbaseunits","vectorangularvelocitybaseunits","angularvelocityvectorderivedunits","vectorangularvelocityderivedunits","angularvelocityvectoralternateunits","vectorangularvelocityalternateunits","angularvelocityvectoronlybaseunits","vectorangularvelocityonlybaseunits","angularvelocityvectoronlyderivedunits","vectorangularvelocityonlyderivedunits","angularvelocityvectoronlyalternateunits","vectorangularvelocityonlyalternateunits","cmagneticfield","cmagneticfieldvector","vectorcmagneticfield","cmagneticfieldvalue","cmagneticfieldbaseunits","cmagneticfieldderivedunits","cmagneticfieldalternateunits","cmagneticfieldonlybaseunits","cmagneticfieldonlyderivedunits","cmagneticfieldonlyalternateunits","cmagneticfieldvectorvalue","vectorcmagneticfieldvalue","cmagneticfieldvectorbaseunits","vectorcmagneticfieldbaseunits","cmagneticfieldvectorderivedunits","vectorcmagneticfieldderivedunits","cmagneticfieldvectoralternateunits","vectorcmagneticfieldalternateunits","cmagneticfieldvectoronlybaseunits","vectorcmagneticfieldonlybaseunits","cmagneticfieldvectoronlyderivedunits","vectorcmagneticfieldonlyderivedunits","cmagneticfieldvectoronlyalternateunits","vectorcmagneticfieldonlyalternateunits","currentdensity","currentdensityvector","vectorcurrentdensity","currentdensityvalue","currentdensitybaseunits","currentdensityderivedunits","currentdensityalternateunits","currentdensityonlybaseunits","currentdensityonlyderivedunits","currentdensityonlyalternateunits","currentdensityvectorvalue","vectorcurrentdensityvalue","currentdensityvectorbaseunits","vectorcurrentdensitybaseunits","currentdensityvectorderivedunits","vectorcurrentdensityderivedunits","currentdensityvectoralternateunits","vectorcurrentdensityalternateunits","currentdensityvectoronlybaseunits","vectorcurrentdensityonlybaseunits","currentdensityvectoronlyderivedunits","vectorcurrentdensityonlyderivedunits","currentdensityvectoronlyalternateunits","vectorcurrentdensityonlyalternateunits","direction","directionvector","vectordirection","directionvalue","directionbaseunits","directionderivedunits","directionalternateunits","directiononlybaseunits","directiononlyderivedunits","directiononlyalternateunits","directionvectorvalue","vectordirectionvalue","directionvectorbaseunits","vectordirectionbaseunits","directionvectorderivedunits","vectordirectionderivedunits","directionvectoralternateunits","vectordirectionalternateunits","directionvectoronlybaseunits","vectordirectiononlybaseunits","directionvectoronlyderivedunits","vectordirectiononlyderivedunits","directionvectoronlyalternateunits","vectordirectiononlyalternateunits","displacement","displacementvector","vectordisplacement","displacementvalue","displacementbaseunits","displacementderivedunits","displacementalternateunits","displacementonlybaseunits","displacementonlyderivedunits","displacementonlyalternateunits","displacementvectorvalue","vectordisplacementvalue","displacementvectorbaseunits","vectordisplacementbaseunits","displacementvectorderivedunits","vectordisplacementderivedunits","displacementvectoralternateunits","vectordisplacementalternateunits","displacementvectoronlybaseunits","vectordisplacementonlybaseunits","displacementvectoronlyderivedunits","vectordisplacementonlyderivedunits","displacementvectoronlyalternateunits","vectordisplacementonlyalternateunits","electricdipolemoment","electricdipolemomentvector","vectorelectricdipolemoment","electricdipolemomentvalue","electricdipolemomentbaseunits","electricdipolemomentderivedunits","electricdipolemomentalternateunits","electricdipolemomentonlybaseunits","electricdipolemomentonlyderivedunits","electricdipolemomentonlyalternateunits","electricdipolemomentvectorvalue","vectorelectricdipolemomentvalue","electricdipolemomentvectorbaseunits","vectorelectricdipolemomentbaseunits","electricdipolemomentvectorderivedunits","vectorelectricdipolemomentderivedunits","electricdipolemomentvectoralternateunits","vectorelectricdipolemomentalternateunits","electricdipolemomentvectoronlybaseunits","vectorelectricdipolemomentonlybaseunits","electricdipolemomentvectoronlyderivedunits","vectorelectricdipolemomentonlyderivedunits","electricdipolemomentvectoronlyalternateunits","vectorelectricdipolemomentonlyalternateunits","electricfield","electricfieldvector","vectorelectricfield","electricfieldvalue","electricfieldbaseunits","electricfieldderivedunits","electricfieldalternateunits","electricfieldonlybaseunits","electricfieldonlyderivedunits","electricfieldonlyalternateunits","electricfieldvectorvalue","vectorelectricfieldvalue","electricfieldvectorbaseunits","vectorelectricfieldbaseunits","electricfieldvectorderivedunits","vectorelectricfieldderivedunits","electricfieldvectoralternateunits","vectorelectricfieldalternateunits","electricfieldvectoronlybaseunits","vectorelectricfieldonlybaseunits","electricfieldvectoronlyderivedunits","vectorelectricfieldonlyderivedunits","electricfieldvectoronlyalternateunits","vectorelectricfieldonlyalternateunits","energyflux","energyfluxvector","vectorenergyflux","energyfluxvalue","energyfluxbaseunits","energyfluxderivedunits","energyfluxalternateunits","energyfluxonlybaseunits","energyfluxonlyderivedunits","energyfluxonlyalternateunits","energyfluxvectorvalue","vectorenergyfluxvalue","energyfluxvectorbaseunits","vectorenergyfluxbaseunits","energyfluxvectorderivedunits","vectorenergyfluxderivedunits","energyfluxvectoralternateunits","vectorenergyfluxalternateunits","energyfluxvectoronlybaseunits","vectorenergyfluxonlybaseunits","energyfluxvectoronlyderivedunits","vectorenergyfluxonlyderivedunits","energyfluxvectoronlyalternateunits","vectorenergyfluxonlyalternateunits","force","forcevector","vectorforce","forcevalue","forcebaseunits","forcederivedunits","forcealternateunits","forceonlybaseunits","forceonlyderivedunits","forceonlyalternateunits","forcevectorvalue","vectorforcevalue","forcevectorbaseunits","vectorforcebaseunits","forcevectorderivedunits","vectorforcederivedunits","forcevectoralternateunits","vectorforcealternateunits","forcevectoronlybaseunits","vectorforceonlybaseunits","forcevectoronlyderivedunits","vectorforceonlyderivedunits","forcevectoronlyalternateunits","vectorforceonlyalternateunits","gravitationalfield","gravitationalfieldvector","vectorgravitationalfield","gravitationalfieldvalue","gravitationalfieldbaseunits","gravitationalfieldderivedunits","gravitationalfieldalternateunits","gravitationalfieldonlybaseunits","gravitationalfieldonlyderivedunits","gravitationalfieldonlyalternateunits","gravitationalfieldvectorvalue","vectorgravitationalfieldvalue","gravitationalfieldvectorbaseunits","vectorgravitationalfieldbaseunits","gravitationalfieldvectorderivedunits","vectorgravitationalfieldderivedunits","gravitationalfieldvectoralternateunits","vectorgravitationalfieldalternateunits","gravitationalfieldvectoronlybaseunits","vectorgravitationalfieldonlybaseunits","gravitationalfieldvectoronlyderivedunits","vectorgravitationalfieldonlyderivedunits","gravitationalfieldvectoronlyalternateunits","vectorgravitationalfieldonlyalternateunits","impulse","impulsevector","vectorimpulse","impulsevalue","impulsebaseunits","impulsederivedunits","impulsealternateunits","impulseonlybaseunits","impulseonlyderivedunits","impulseonlyalternateunits","impulsevectorvalue","vectorimpulsevalue","impulsevectorbaseunits","vectorimpulsebaseunits","impulsevectorderivedunits","vectorimpulsederivedunits","impulsevectoralternateunits","vectorimpulsealternateunits","impulsevectoronlybaseunits","vectorimpulseonlybaseunits","impulsevectoronlyderivedunits","vectorimpulseonlyderivedunits","impulsevectoronlyalternateunits","vectorimpulseonlyalternateunits","magneticdipolemoment","magneticdipolemomentvector","vectormagneticdipolemoment","magneticdipolemomentvalue","magneticdipolemomentbaseunits","magneticdipolemomentderivedunits","magneticdipolemomentalternateunits","magneticdipolemomentonlybaseunits","magneticdipolemomentonlyderivedunits","magneticdipolemomentonlyalternateunits","magneticdipolemomentvectorvalue","vectormagneticdipolemomentvalue","magneticdipolemomentvectorbaseunits","vectormagneticdipolemomentbaseunits","magneticdipolemomentvectorderivedunits","vectormagneticdipolemomentderivedunits","magneticdipolemomentvectoralternateunits","vectormagneticdipolemomentalternateunits","magneticdipolemomentvectoronlybaseunits","vectormagneticdipolemomentonlybaseunits","magneticdipolemomentvectoronlyderivedunits","vectormagneticdipolemomentonlyderivedunits","magneticdipolemomentvectoronlyalternateunits","vectormagneticdipolemomentonlyalternateunits","magneticfield","magneticfieldvector","vectormagneticfield","magneticfieldvalue","magneticfieldbaseunits","magneticfieldderivedunits","magneticfieldalternateunits","magneticfieldonlybaseunits","magneticfieldonlyderivedunits","magneticfieldonlyalternateunits","magneticfieldvectorvalue","vectormagneticfieldvalue","magneticfieldvectorbaseunits","vectormagneticfieldbaseunits","magneticfieldvectorderivedunits","vectormagneticfieldderivedunits","magneticfieldvectoralternateunits","vectormagneticfieldalternateunits","magneticfieldvectoronlybaseunits","vectormagneticfieldonlybaseunits","magneticfieldvectoronlyderivedunits","vectormagneticfieldonlyderivedunits","magneticfieldvectoronlyalternateunits","vectormagneticfieldonlyalternateunits","momentumflux","momentumfluxvector","vectormomentumflux","momentumfluxvalue","momentumfluxbaseunits","momentumfluxderivedunits","momentumfluxalternateunits","momentumfluxonlybaseunits","momentumfluxonlyderivedunits","momentumfluxonlyalternateunits","momentumfluxvectorvalue","vectormomentumfluxvalue","momentumfluxvectorbaseunits","vectormomentumfluxbaseunits","momentumfluxvectorderivedunits","vectormomentumfluxderivedunits","momentumfluxvectoralternateunits","vectormomentumfluxalternateunits","momentumfluxvectoronlybaseunits","vectormomentumfluxonlybaseunits","momentumfluxvectoronlyderivedunits","vectormomentumfluxonlyderivedunits","momentumfluxvectoronlyalternateunits","vectormomentumfluxonlyalternateunits","poynting","poyntingvector","vectorpoynting","poyntingvalue","poyntingbaseunits","poyntingderivedunits","poyntingalternateunits","poyntingonlybaseunits","poyntingonlyderivedunits","poyntingonlyalternateunits","poyntingvectorvalue","vectorpoyntingvalue","poyntingvectorbaseunits","vectorpoyntingbaseunits","poyntingvectorderivedunits","vectorpoyntingderivedunits","poyntingvectoralternateunits","vectorpoyntingalternateunits","poyntingvectoronlybaseunits","vectorpoyntingonlybaseunits","poyntingvectoronlyderivedunits","vectorpoyntingonlyderivedunits","poyntingvectoronlyalternateunits","vectorpoyntingonlyalternateunits","torque","torquevector","vectortorque","torquevalue","torquebaseunits","torquederivedunits","torquealternateunits","torqueonlybaseunits","torqueonlyderivedunits","torqueonlyalternateunits","torquevectorvalue","vectortorquevalue","torquevectorbaseunits","vectortorquebaseunits","torquevectorderivedunits","vectortorquederivedunits","torquevectoralternateunits","vectortorquealternateunits","torquevectoronlybaseunits","vectortorqueonlybaseunits","torquevectoronlyderivedunits","vectortorqueonlyderivedunits","torquevectoronlyalternateunits","vectortorqueonlyalternateunits","velocity","velocityvector","vectorvelocity","velocityvalue","velocitybaseunits","velocityderivedunits","velocityalternateunits","velocityonlybaseunits","velocityonlyderivedunits","velocityonlyalternateunits","velocityvectorvalue","vectorvelocityvalue","velocityvectorbaseunits","vectorvelocitybaseunits","velocityvectorderivedunits","vectorvelocityderivedunits","velocityvectoralternateunits","vectorvelocityalternateunits","velocityvectoronlybaseunits","vectorvelocityonlybaseunits","velocityvectoronlyderivedunits","vectorvelocityonlyderivedunits","velocityvectoronlyalternateunits","vectorvelocityonlyalternateunits","velocityc","velocitycvector","vectorvelocityc","velocitycvalue","velocitycbaseunits","velocitycderivedunits","velocitycalternateunits","velocityconlybaseunits","velocityconlyderivedunits","velocityconlyalternateunits","velocitycvectorvalue","vectorvelocitycvalue","velocitycvectorbaseunits","vectorvelocitycbaseunits","velocitycvectorderivedunits","vectorvelocitycderivedunits","velocitycvectoralternateunits","vectorvelocitycalternateunits","velocitycvectoronlybaseunits","vectorvelocityconlybaseunits","velocitycvectoronlyderivedunits","vectorvelocityconlyderivedunits","velocitycvectoronlyalternateunits","vectorvelocityconlyalternateunits","wavenumber","wavenumbervector","vectorwavenumber","wavenumbervalue","wavenumberbaseunits","wavenumberderivedunits","wavenumberalternateunits","wavenumberonlybaseunits","wavenumberonlyderivedunits","wavenumberonlyalternateunits","wavenumbervectorvalue","vectorwavenumbervalue","wavenumbervectorbaseunits","vectorwavenumberbaseunits","wavenumbervectorderivedunits","vectorwavenumberderivedunits","wavenumbervectoralternateunits","vectorwavenumberalternateunits","wavenumbervectoronlybaseunits","vectorwavenumberonlybaseunits","wavenumbervectoronlyderivedunits","vectorwavenumberonlyderivedunits","wavenumbervectoronlyalternateunits","vectorwavenumberonlyalternateunits","area","areavalue","areabaseunits","areaderivedunits","areaalternateunits","areaonlybaseunits","areaonlyderivedunits","areaonlyalternateunits","areachargedensity","areachargedensityvalue","areachargedensitybaseunits","areachargedensityderivedunits","areachargedensityalternateunits","areachargedensityonlybaseunits","areachargedensityonlyderivedunits","areachargedensityonlyalternateunits","areamassdensity","areamassdensityvalue","areamassdensitybaseunits","areamassdensityderivedunits","areamassdensityalternateunits","areamassdensityonlybaseunits","areamassdensityonlyderivedunits","areamassdensityonlyalternateunits","capacitance","capacitancevalue","capacitancebaseunits","capacitancederivedunits","capacitancealternateunits","capacitanceonlybaseunits","capacitanceonlyderivedunits","capacitanceonlyalternateunits","charge","chargevalue","chargebaseunits","chargederivedunits","chargealternateunits","chargeonlybaseunits","chargeonlyderivedunits","chargeonlyalternateunits","conductance","conductancevalue","conductancebaseunits","conductancederivedunits","conductancealternateunits","conductanceonlybaseunits","conductanceonlyderivedunits","conductanceonlyalternateunits","conductivity","conductivityvalue","conductivitybaseunits","conductivityderivedunits","conductivityalternateunits","conductivityonlybaseunits","conductivityonlyderivedunits","conductivityonlyalternateunits","conventionalcurrent","conventionalcurrentvalue","conventionalcurrentbaseunits","conventionalcurrentderivedunits","conventionalcurrentalternateunits","conventionalcurrentonlybaseunits","conventionalcurrentonlyderivedunits","conventionalcurrentonlyalternateunits","current","currentvalue","currentbaseunits","currentderivedunits","currentalternateunits","currentonlybaseunits","currentonlyderivedunits","currentonlyalternateunits","dielectricconstant","dielectricconstantvalue","dielectricconstantbaseunits","dielectricconstantderivedunits","dielectricconstantalternateunits","dielectricconstantonlybaseunits","dielectricconstantonlyderivedunits","dielectricconstantonlyalternateunits","duration","durationvalue","durationbaseunits","durationderivedunits","durationalternateunits","durationonlybaseunits","durationonlyderivedunits","durationonlyalternateunits","electricflux","electricfluxvalue","electricfluxbaseunits","electricfluxderivedunits","electricfluxalternateunits","electricfluxonlybaseunits","electricfluxonlyderivedunits","electricfluxonlyalternateunits","electricpotential","electricpotentialvalue","electricpotentialbaseunits","electricpotentialderivedunits","electricpotentialalternateunits","electricpotentialonlybaseunits","electricpotentialonlyderivedunits","electricpotentialonlyalternateunits","electricpotentialdifference","electricpotentialdifferencevalue","electricpotentialdifferencebaseunits","electricpotentialdifferencederivedunits","electricpotentialdifferencealternateunits","electricpotentialdifferenceonlybaseunits","electricpotentialdifferenceonlyderivedunits","electricpotentialdifferenceonlyalternateunits","electroncurrent","electroncurrentvalue","electroncurrentbaseunits","electroncurrentderivedunits","electroncurrentalternateunits","electroncurrentonlybaseunits","electroncurrentonlyderivedunits","electroncurrentonlyalternateunits","emf","emfvalue","emfbaseunits","emfderivedunits","emfalternateunits","emfonlybaseunits","emfonlyderivedunits","emfonlyalternateunits","energy","energyvalue","energybaseunits","energyderivedunits","energyalternateunits","energyonlybaseunits","energyonlyderivedunits","energyonlyalternateunits","energyinev","energyinevvalue","energyinevbaseunits","energyinevderivedunits","energyinevalternateunits","energyinevonlybaseunits","energyinevonlyderivedunits","energyinevonlyalternateunits","energyinkev","energyinkevvalue","energyinkevbaseunits","energyinkevderivedunits","energyinkevalternateunits","energyinkevonlybaseunits","energyinkevonlyderivedunits","energyinkevonlyalternateunits","energyinmev","energyinmevvalue","energyinmevbaseunits","energyinmevderivedunits","energyinmevalternateunits","energyinmevonlybaseunits","energyinmevonlyderivedunits","energyinmevonlyalternateunits","energydensity","energydensityvalue","energydensitybaseunits","energydensityderivedunits","energydensityalternateunits","energydensityonlybaseunits","energydensityonlyderivedunits","energydensityonlyalternateunits","entropy","entropyvalue","entropybaseunits","entropyderivedunits","entropyalternateunits","entropyonlybaseunits","entropyonlyderivedunits","entropyonlyalternateunits","frequency","frequencyvalue","frequencybaseunits","frequencyderivedunits","frequencyalternateunits","frequencyonlybaseunits","frequencyonlyderivedunits","frequencyonlyalternateunits","gravitationalpotential","gravitationalpotentialvalue","gravitationalpotentialbaseunits","gravitationalpotentialderivedunits","gravitationalpotentialalternateunits","gravitationalpotentialonlybaseunits","gravitationalpotentialonlyderivedunits","gravitationalpotentialonlyalternateunits","gravitationalpotentialdifference","gravitationalpotentialdifferencevalue","gravitationalpotentialdifferencebaseunits","gravitationalpotentialdifferencederivedunits","gravitationalpotentialdifferencealternateunits","gravitationalpotentialdifferenceonlybaseunits","gravitationalpotentialdifferenceonlyderivedunits","gravitationalpotentialdifferenceonlyalternateunits","indexofrefraction","indexofrefractionvalue","indexofrefractionbaseunits","indexofrefractionderivedunits","indexofrefractionalternateunits","indexofrefractiononlybaseunits","indexofrefractiononlyderivedunits","indexofrefractiononlyalternateunits","inductance","inductancevalue","inductancebaseunits","inductancederivedunits","inductancealternateunits","inductanceonlybaseunits","inductanceonlyderivedunits","inductanceonlyalternateunits","linearchargedensity","linearchargedensityvalue","linearchargedensitybaseunits","linearchargedensityderivedunits","linearchargedensityalternateunits","linearchargedensityonlybaseunits","linearchargedensityonlyderivedunits","linearchargedensityonlyalternateunits","linearmassdensity","linearmassdensityvalue","linearmassdensitybaseunits","linearmassdensityderivedunits","linearmassdensityalternateunits","linearmassdensityonlybaseunits","linearmassdensityonlyderivedunits","linearmassdensityonlyalternateunits","lorentzfactor","lorentzfactorvalue","lorentzfactorbaseunits","lorentzfactorderivedunits","lorentzfactoralternateunits","lorentzfactoronlybaseunits","lorentzfactoronlyderivedunits","lorentzfactoronlyalternateunits","luminousintensity","luminousintensityvalue","luminousintensitybaseunits","luminousintensityderivedunits","luminousintensityalternateunits","luminousintensityonlybaseunits","luminousintensityonlyderivedunits","luminousintensityonlyalternateunits","magneticcharge","magneticchargevalue","magneticchargebaseunits","magneticchargederivedunits","magneticchargealternateunits","magneticchargeonlybaseunits","magneticchargeonlyderivedunits","magneticchargeonlyalternateunits","magneticflux","magneticfluxvalue","magneticfluxbaseunits","magneticfluxderivedunits","magneticfluxalternateunits","magneticfluxonlybaseunits","magneticfluxonlyderivedunits","magneticfluxonlyalternateunits","mass","massvalue","massbaseunits","massderivedunits","massalternateunits","massonlybaseunits","massonlyderivedunits","massonlyalternateunits","mobility","mobilityvalue","mobilitybaseunits","mobilityderivedunits","mobilityalternateunits","mobilityonlybaseunits","mobilityonlyderivedunits","mobilityonlyalternateunits","momentofinertia","momentofinertiavalue","momentofinertiabaseunits","momentofinertiaderivedunits","momentofinertiaalternateunits","momentofinertiaonlybaseunits","momentofinertiaonlyderivedunits","momentofinertiaonlyalternateunits","numberdensity","numberdensityvalue","numberdensitybaseunits","numberdensityderivedunits","numberdensityalternateunits","numberdensityonlybaseunits","numberdensityonlyderivedunits","numberdensityonlyalternateunits","permeability","permeabilityvalue","permeabilitybaseunits","permeabilityderivedunits","permeabilityalternateunits","permeabilityonlybaseunits","permeabilityonlyderivedunits","permeabilityonlyalternateunits","permittivity","permittivityvalue","permittivitybaseunits","permittivityderivedunits","permittivityalternateunits","permittivityonlybaseunits","permittivityonlyderivedunits","permittivityonlyalternateunits","planeangle","planeanglevalue","planeanglebaseunits","planeanglederivedunits","planeanglealternateunits","planeangleonlybaseunits","planeangleonlyderivedunits","planeangleonlyalternateunits","polarizability","polarizabilityvalue","polarizabilitybaseunits","polarizabilityderivedunits","polarizabilityalternateunits","polarizabilityonlybaseunits","polarizabilityonlyderivedunits","polarizabilityonlyalternateunits","power","powervalue","powerbaseunits","powerderivedunits","poweralternateunits","poweronlybaseunits","poweronlyderivedunits","poweronlyalternateunits","pressure","pressurevalue","pressurebaseunits","pressurederivedunits","pressurealternateunits","pressureonlybaseunits","pressureonlyderivedunits","pressureonlyalternateunits","relativepermeability","relativepermeabilityvalue","relativepermeabilitybaseunits","relativepermeabilityderivedunits","relativepermeabilityalternateunits","relativepermeabilityonlybaseunits","relativepermeabilityonlyderivedunits","relativepermeabilityonlyalternateunits","relativepermittivity","relativepermittivityvalue","relativepermittivitybaseunits","relativepermittivityderivedunits","relativepermittivityalternateunits","relativepermittivityonlybaseunits","relativepermittivityonlyderivedunits","relativepermittivityonlyalternateunits","resistance","resistancevalue","resistancebaseunits","resistancederivedunits","resistancealternateunits","resistanceonlybaseunits","resistanceonlyderivedunits","resistanceonlyalternateunits","resistivity","resistivityvalue","resistivitybaseunits","resistivityderivedunits","resistivityalternateunits","resistivityonlybaseunits","resistivityonlyderivedunits","resistivityonlyalternateunits","solidangle","solidanglevalue","solidanglebaseunits","solidanglederivedunits","solidanglealternateunits","solidangleonlybaseunits","solidangleonlyderivedunits","solidangleonlyalternateunits","specificheatcapacity","specificheatcapacityvalue","specificheatcapacitybaseunits","specificheatcapacityderivedunits","specificheatcapacityalternateunits","specificheatcapacityonlybaseunits","specificheatcapacityonlyderivedunits","specificheatcapacityonlyalternateunits","springstiffness","springstiffnessvalue","springstiffnessbaseunits","springstiffnessderivedunits","springstiffnessalternateunits","springstiffnessonlybaseunits","springstiffnessonlyderivedunits","springstiffnessonlyalternateunits","springstretch","springstretchvalue","springstretchbaseunits","springstretchderivedunits","springstretchalternateunits","springstretchonlybaseunits","springstretchonlyderivedunits","springstretchonlyalternateunits","stress","stressvalue","stressbaseunits","stressderivedunits","stressalternateunits","stressonlybaseunits","stressonlyderivedunits","stressonlyalternateunits","strain","strainvalue","strainbaseunits","strainderivedunits","strainalternateunits","strainonlybaseunits","strainonlyderivedunits","strainonlyalternateunits","temperature","temperaturevalue","temperaturebaseunits","temperaturederivedunits","temperaturealternateunits","temperatureonlybaseunits","temperatureonlyderivedunits","temperatureonlyalternateunits","volume","volumevalue","volumebaseunits","volumederivedunits","volumealternateunits","volumeonlybaseunits","volumeonlyderivedunits","volumeonlyalternateunits","volumechargedensity","volumechargedensityvalue","volumechargedensitybaseunits","volumechargedensityderivedunits","volumechargedensityalternateunits","volumechargedensityonlybaseunits","volumechargedensityonlyderivedunits","volumechargedensityonlyalternateunits","volumemassdensity","volumemassdensityvalue","volumemassdensitybaseunits","volumemassdensityderivedunits","volumemassdensityalternateunits","volumemassdensityonlybaseunits","volumemassdensityonlyderivedunits","volumemassdensityonlyalternateunits","wavelength","wavelengthvalue","wavelengthbaseunits","wavelengthderivedunits","wavelengthalternateunits","wavelengthonlybaseunits","wavelengthonlyderivedunits","wavelengthonlyalternateunits","work","workvalue","workbaseunits","workderivedunits","workalternateunits","workonlybaseunits","workonlyderivedunits","workonlyalternateunits","youngsmodulus","youngsmodulusvalue","youngsmodulusbaseunits","youngsmodulusderivedunits","youngsmodulusalternateunits","youngsmodulusonlybaseunits","youngsmodulusonlyderivedunits","youngsmodulusonlyalternateunits","newscalarquantity","renewscalarquantity","newvectorquantity","renewvectorquantity","alwaysusebaseunits","alwaysusederivedunits","alwaysusealternateunits","hereusebaseunits","hereusederivedunits","hereusealternateunits","oofpez","oofpezapproximatevalue","oofpezprecisevalue","oofpezmathsymbol","oofpezbaseunits","oofpezderivedunits","oofpezalternateunits","oofpezonlybaseunits","oofpezonlyderivedunits","oofpezonlyalternateunits","checkconstant","avogadro","avogadroapproximatevalue","avogadroprecisevalue","avogadromathsymbol","avogadrobaseunits","avogadroderivedunits","avogadroalternateunits","avogadroonlybaseunits","avogadroonlyderivedunits","avogadroonlyalternateunits","biotsavartconstant","biotsavartconstantapproximatevalue","biotsavartconstantprecisevalue","biotsavartconstantmathsymbol","biotsavartconstantbaseunits","biotsavartconstantderivedunits","biotsavartconstantalternateunits","biotsavartconstantonlybaseunits","biotsavartconstantonlyderivedunits","biotsavartconstantonlyalternateunits","bohrradius","bohrradiusapproximatevalue","bohrradiusprecisevalue","bohrradiusmathsymbol","bohrradiusbaseunits","bohrradiusderivedunits","bohrradiusalternateunits","bohrradiusonlybaseunits","bohrradiusonlyderivedunits","bohrradiusonlyalternateunits","boltzmann","boltzmannapproximatevalue","boltzmannprecisevalue","boltzmannmathsymbol","boltzmannbaseunits","boltzmannderivedunits","boltzmannalternateunits","boltzmannonlybaseunits","boltzmannonlyderivedunits","boltzmannonlyalternateunits","coulombconstant","coulombconstantapproximatevalue","coulombconstantprecisevalue","coulombconstantmathsymbol","coulombconstantbaseunits","coulombconstantderivedunits","coulombconstantalternateunits","coulombconstantonlybaseunits","coulombconstantonlyderivedunits","coulombconstantonlyalternateunits","earthmass","earthmassapproximatevalue","earthmassprecisevalue","earthmassmathsymbol","earthmassbaseunits","earthmassderivedunits","earthmassalternateunits","earthmassonlybaseunits","earthmassonlyderivedunits","earthmassonlyalternateunits","earthmoondistance","earthmoondistanceapproximatevalue","earthmoondistanceprecisevalue","earthmoondistancemathsymbol","earthmoondistancebaseunits","earthmoondistancederivedunits","earthmoondistancealternateunits","earthmoondistanceonlybaseunits","earthmoondistanceonlyderivedunits","earthmoondistanceonlyalternateunits","earthradius","earthradiusapproximatevalue","earthradiusprecisevalue","earthradiusmathsymbol","earthradiusbaseunits","earthradiusderivedunits","earthradiusalternateunits","earthradiusonlybaseunits","earthradiusonlyderivedunits","earthradiusonlyalternateunits","earthsundistance","earthsundistanceapproximatevalue","earthsundistanceprecisevalue","earthsundistancemathsymbol","earthsundistancebaseunits","earthsundistancederivedunits","earthsundistancealternateunits","earthsundistanceonlybaseunits","earthsundistanceonlyderivedunits","earthsundistanceonlyalternateunits","electroncharge","electronchargeapproximatevalue","electronchargeprecisevalue","electronchargemathsymbol","electronchargebaseunits","electronchargederivedunits","electronchargealternateunits","electronchargeonlybaseunits","electronchargeonlyderivedunits","electronchargeonlyalternateunits","electronCharge","electronChargeapproximatevalue","electronChargeprecisevalue","electronChargemathsymbol","electronChargebaseunits","electronChargederivedunits","electronChargealternateunits","electronChargeonlybaseunits","electronChargeonlyderivedunits","electronChargeonlyalternateunits","electronmass","electronmassapproximatevalue","electronmassprecisevalue","electronmassmathsymbol","electronmassbaseunits","electronmassderivedunits","electronmassalternateunits","electronmassonlybaseunits","electronmassonlyderivedunits","electronmassonlyalternateunits","elementarycharge","elementarychargeapproximatevalue","elementarychargeprecisevalue","elementarychargemathsymbol","elementarychargebaseunits","elementarychargederivedunits","elementarychargealternateunits","elementarychargeonlybaseunits","elementarychargeonlyderivedunits","elementarychargeonlyalternateunits","finestructure","finestructureapproximatevalue","finestructureprecisevalue","finestructuremathsymbol","finestructurebaseunits","finestructurederivedunits","finestructurealternateunits","finestructureonlybaseunits","finestructureonlyderivedunits","finestructureonlyalternateunits","hydrogenmass","hydrogenmassapproximatevalue","hydrogenmassprecisevalue","hydrogenmassmathsymbol","hydrogenmassbaseunits","hydrogenmassderivedunits","hydrogenmassalternateunits","hydrogenmassonlybaseunits","hydrogenmassonlyderivedunits","hydrogenmassonlyalternateunits","moonearthdistance","moonearthdistanceapproximatevalue","moonearthdistanceprecisevalue","moonearthdistancemathsymbol","moonearthdistancebaseunits","moonearthdistancederivedunits","moonearthdistancealternateunits","moonearthdistanceonlybaseunits","moonearthdistanceonlyderivedunits","moonearthdistanceonlyalternateunits","moonmass","moonmassapproximatevalue","moonmassprecisevalue","moonmassmathsymbol","moonmassbaseunits","moonmassderivedunits","moonmassalternateunits","moonmassonlybaseunits","moonmassonlyderivedunits","moonmassonlyalternateunits","moonradius","moonradiusapproximatevalue","moonradiusprecisevalue","moonradiusmathsymbol","moonradiusbaseunits","moonradiusderivedunits","moonradiusalternateunits","moonradiusonlybaseunits","moonradiusonlyderivedunits","moonradiusonlyalternateunits","mzofp","mzofpapproximatevalue","mzofpprecisevalue","mzofpmathsymbol","mzofpbaseunits","mzofpderivedunits","mzofpalternateunits","mzofponlybaseunits","mzofponlyderivedunits","mzofponlyalternateunits","neutronmass","neutronmassapproximatevalue","neutronmassprecisevalue","neutronmassmathsymbol","neutronmassbaseunits","neutronmassderivedunits","neutronmassalternateunits","neutronmassonlybaseunits","neutronmassonlyderivedunits","neutronmassonlyalternateunits","oofpezcs","oofpezcsapproximatevalue","oofpezcsprecisevalue","oofpezcsmathsymbol","oofpezcsbaseunits","oofpezcsderivedunits","oofpezcsalternateunits","oofpezcsonlybaseunits","oofpezcsonlyderivedunits","oofpezcsonlyalternateunits","planck","planckapproximatevalue","planckprecisevalue","planckmathsymbol","planckbaseunits","planckderivedunits","planckalternateunits","planckonlybaseunits","planckonlyderivedunits","planckonlyalternateunits","planckbar","planckbarapproximatevalue","planckbarprecisevalue","planckbarmathsymbol","planckbarbaseunits","planckbarderivedunits","planckbaralternateunits","planckbaronlybaseunits","planckbaronlyderivedunits","planckbaronlyalternateunits","planckc","planckcapproximatevalue","planckcprecisevalue","planckcmathsymbol","planckcbaseunits","planckcderivedunits","planckcalternateunits","planckconlybaseunits","planckconlyderivedunits","planckconlyalternateunits","protoncharge","protonchargeapproximatevalue","protonchargeprecisevalue","protonchargemathsymbol","protonchargebaseunits","protonchargederivedunits","protonchargealternateunits","protonchargeonlybaseunits","protonchargeonlyderivedunits","protonchargeonlyalternateunits","protonCharge","protonChargeapproximatevalue","protonChargeprecisevalue","protonChargemathsymbol","protonChargebaseunits","protonChargederivedunits","protonChargealternateunits","protonChargeonlybaseunits","protonChargeonlyderivedunits","protonChargeonlyalternateunits","protonmass","protonmassapproximatevalue","protonmassprecisevalue","protonmassmathsymbol","protonmassbaseunits","protonmassderivedunits","protonmassalternateunits","protonmassonlybaseunits","protonmassonlyderivedunits","protonmassonlyalternateunits","rydberg","rydbergapproximatevalue","rydbergprecisevalue","rydbergmathsymbol","rydbergbaseunits","rydbergderivedunits","rydbergalternateunits","rydbergonlybaseunits","rydbergonlyderivedunits","rydbergonlyalternateunits","speedoflight","speedoflightapproximatevalue","speedoflightprecisevalue","speedoflightmathsymbol","speedoflightbaseunits","speedoflightderivedunits","speedoflightalternateunits","speedoflightonlybaseunits","speedoflightonlyderivedunits","speedoflightonlyalternateunits","stefanboltzmann","stefanboltzmannapproximatevalue","stefanboltzmannprecisevalue","stefanboltzmannmathsymbol","stefanboltzmannbaseunits","stefanboltzmannderivedunits","stefanboltzmannalternateunits","stefanboltzmannonlybaseunits","stefanboltzmannonlyderivedunits","stefanboltzmannonlyalternateunits","sunearthdistance","sunearthdistanceapproximatevalue","sunearthdistanceprecisevalue","sunearthdistancemathsymbol","sunearthdistancebaseunits","sunearthdistancederivedunits","sunearthdistancealternateunits","sunearthdistanceonlybaseunits","sunearthdistanceonlyderivedunits","sunearthdistanceonlyalternateunits","sunradius","sunradiusapproximatevalue","sunradiusprecisevalue","sunradiusmathsymbol","sunradiusbaseunits","sunradiusderivedunits","sunradiusalternateunits","sunradiusonlybaseunits","sunradiusonlyderivedunits","sunradiusonlyalternateunits","surfacegravfield","surfacegravfieldapproximatevalue","surfacegravfieldprecisevalue","surfacegravfieldmathsymbol","surfacegravfieldbaseunits","surfacegravfieldderivedunits","surfacegravfieldalternateunits","surfacegravfieldonlybaseunits","surfacegravfieldonlyderivedunits","surfacegravfieldonlyalternateunits","universalgrav","universalgravapproximatevalue","universalgravprecisevalue","universalgravmathsymbol","universalgravbaseunits","universalgravderivedunits","universalgravalternateunits","universalgravonlybaseunits","universalgravonlyderivedunits","universalgravonlyalternateunits","vacuumpermeability","vacuumpermeabilityapproximatevalue","vacuumpermeabilityprecisevalue","vacuumpermeabilitymathsymbol","vacuumpermeabilitybaseunits","vacuumpermeabilityderivedunits","vacuumpermeabilityalternateunits","vacuumpermeabilityonlybaseunits","vacuumpermeabilityonlyderivedunits","vacuumpermeabilityonlyalternateunits","vacuumpermittivity","vacuumpermittivityapproximatevalue","vacuumpermittivityprecisevalue","vacuumpermittivitymathsymbol","vacuumpermittivitybaseunits","vacuumpermittivityderivedunits","vacuumpermittivityalternateunits","vacuumpermittivityonlybaseunits","vacuumpermittivityonlyderivedunits","vacuumpermittivityonlyalternateunits","newphysicalconstant","renewphysicalconstant","alwaysuseapproximateconstants","alwaysusepreciseconstants","hereuseapproximateconstants","hereusepreciseconstants","per","usk","unit","emptyunit","ampere","atomicmassunit","candela","coulomb","degree","electronvolt","ev","farad","henry","hertz","joule","kelvin","kev","kiloelectronvolt","kilogram","lightspeed","megaelectronvolt","meter","metre","mev","mole","newton","ohm","pascal","radian","second","siemens","steradian","tesla","volt","watt","weber","tothetwo","tothethree","tothefour","inverse","totheinversetwo","totheinversethree","totheinversefour","tento","timestento","xtento","mivector"]}
-,
-"mandiexp.sty":{"envs":{},"deps":["mandi.sty"],"cmds":["mandiexpversion","lhsmomentumprinciple","rhsmomentumprinciple","lhsmomentumprincipleupdate","rhsmomentumprincipleupdate","momentumprinciple","momentumprincipleupdate","lhsenergyprinciple","rhsenergyprinciple","lhsenergyprincipleupdate","rhsenergyprincipleupdate","energyprinciple","energyprincipleupdate","lhsangularmomentumprinciple","rhsangularmomentumprinciple","lhsangularmomentumprincipleupdate","rhsangularmomentumprincipleupdate","angularmomentumprinciple","angularmomentumprincipleupdate","energyof","systemenergy","particleenergy","restenergy","internalenergy","chemicalenergy","thermalenergy","photonenergy","translationalkineticenergy","rotationalkineticenergy","vibrationalkineticenergy","gravitationalpotentialenergy","electricpotentialenergy","springpotentialenergy"]}
-,
-"mandistudent.sty":{"envs":["physicsproblem","physicsproblem*","parts","physicssolution","physicssolution*","webvpythonblock","webvpythonblock*","enumerate*","itemize*","description*"],"deps":["amsmath.sty","enumitem.sty","eso-pic.sty","esvect.sty","pgfopts.sty","iftex.sty","makebox.sty","mandi.sty","mathtools.sty","nicematrix.sty","qrcode.sty","tcolorbox.sty","tcolorboxlibrarymost.sty","tensor.sty","tikz.sty","tikzlibraryshapes.sty","tikzlibraryfit.sty","tikzlibrarytikzmark.sty","unicode-math.sty","hyperref.sty"],"cmds":["mandistudentversion","vec","dirvec","zerovec","changein","doublebars","singlebars","anglebrackets","parentheses","squarebrackets","curlybraces","magnitude","norm","absolutevalue","parallelto","perpendicularto","problempart","reason","hilite","image","colvec","rowvec","veccomp","tencomp","valence","contraction","slot","df","vpythonfile","webvpythoninline","vpythoninline","listofvpythonprograms","listofwebvpythonprograms","symsfitDelta","symsfitGamma","symsfitLambda","symsfitOmega","symsfitPhi","symsfitPi","symsfitPsi","symsfitSigma","symsfitTheta","symsfitUpsilon","symsfitXi","symsfitalpha","symsfitbeta","symsfitchi","symsfitdelta","symsfitepsilon","symsfiteta","symsfitgamma","symsfitiota","symsfitkappa","symsfitlambda","symsfitmu","symsfitnu","symsfitomega","symsfitomicron","symsfitphi","symsfitpi","symsfitpsi","symsfitrho","symsfitsigma","symsfittau","symsfittheta","symsfitupsilon","symsfitvarepsilon","symsfitvarphi","symsfitvarpi","symsfitvarrho","symsfitvarsigma","symsfitvartheta","symsfitxi","symsfitzeta","symsfupDelta","symsfupGamma","symsfupLambda","symsfupOmega","symsfupPhi","symsfupPi","symsfupPsi","symsfupSigma","symsfupTheta","symsfupUpsilon","symsfupXi","symsfupalpha","symsfupbeta","symsfupchi","symsfupdelta","symsfupepsilon","symsfupeta","symsfupgamma","symsfupiota","symsfupkappa","symsfuplambda","symsfupmu","symsfupnu","symsfupomega","symsfupomicron","symsfupphi","symsfuppi","symsfuppsi","symsfuprho","symsfupsigma","symsfuptau","symsfuptheta","symsfupupsilon","symsfupvarepsilon","symsfupvarphi","symsfupvarpi","symsfupvarrho","symsfupvarsigma","symsfupvartheta","symsfupxi","symsfupzeta","thetikzhighlightnode","symsfgreek","colordigits","gsfontfamily"]}
-,
-"manfnt.sty":{"envs":{},"deps":{},"cmds":["manfntsymbol","dbend","manboldkidney","manconcentriccircles","manconcentricdiamond","mancone","mancube","manerrarrow","manfilledquartercircle","manhpennib","manimpossiblecube","mankidney","manlhpenkidney","manpenkidney","manquadrifolium","manquartercircle","manrotatedquadrifolium","manrotatedquartercircle","manstar","mantiltpennib","mantriangledown","mantriangleright","mantriangleup","manvpennib","textdbend","textlhdbend","textreversedvideodbend"]}
-,
-"manuscript.sty":{"envs":["LaTeXflushleft","LaTeXcenter"],"deps":["setspace.sty","fontenc.sty","ragged2e.sty","soul.sty","fullpage.sty"],"cmds":["DH","dh","dj","DJ","guillemetleft","guillemetright","guillemotleft","guillemotright","guilsinglleft","guilsinglright","Hwithstroke","hwithstroke","k","NG","ng","quotedblbase","quotesinglbase","textogonekcentered","textquotedbl","th","TH","LaTeXcentering","LaTeXraggedleft","LaTeXraggedright"]}
-,
-"manyfoot.sty":{"envs":{},"deps":["nccfoots.sty","perpage.sty"],"cmds":["extrafootnoterule","defaultfootnoterule","newfootnote","DeclareNewFootnote","SelectFootnoteRule","footnoterulepriority","SetFootnoteHook","SplitNote","ExtraParaSkip"]}
-,
-"manyind.sty":{"envs":{},"deps":["makeidx.sty"],"cmds":["altsort","setindex","sindex","theindex","indexincontents","indexpreamble","mgobblepgeref","gobblepageref","nxtletre","extraheaders","themultindctr","themindexctr","mindcutpoint","untilmindcutpoint","mindchoice","indnr","multindpreamble","jmptonine","indexcapstyle"]}
-,
-"marathi.sty":{"envs":{},"deps":["iftex.sty","setspace.sty","pgfkeys.sty","fontspec.sty","babel.sty","csquotes.sty"],"cmds":["the"]}
-,
-"marcellus.sty":{"envs":{},"deps":["ifxetex.sty","ifluatex.sty","xkeyval.sty","textcomp.sty","fontenc.sty","fontaxes.sty","mweights.sty"],"cmds":["marcellus","marcellusfamily"]}
-,
-"marginfix.sty":{"envs":{},"deps":{},"cmds":["marginskip","clearmargin","softclearmargin","extendmargin","mparshift","marginheightadjustment","marginposadjustment","blockmargin","unblockmargin","marginphantom","dumpmargins"]}
-,
-"marginnote.sty":{"envs":{},"deps":{},"cmds":["marginnote","marginnotetextwidth","marginnotevadjust","raggedleftmarginnote","raggedrightmarginnote","marginfont"]}
-,
-"markdown.sty":{"envs":["markdown","markdown*"],"deps":["paralist.sty","amsmath.sty","amssymb.sty","csvsimple.sty","fancyvrb.sty","graphicx.sty","ltxcmds.sty","gobble.sty","url.sty","etoolbox.sty","lt3luabridge.sty","soulutf8.sty","grffile.sty","catchfile.sty","varioref.sty","verse.sty"],"cmds":["markdownInput","markdownSetup","markdownSetupSnippet","markdownIfSnippetExists","ifmarkdownLaTeXLoaded","markdownError","markdownInfo","markdownInputPlainTeX","markdownLaTeXBasicCitations","markdownLaTeXBasicTextCitations","markdownLaTeXBibLaTeXCitations","markdownLaTeXBibLaTeXTextCitations","markdownLaTeXBottomRule","markdownLaTeXCitationsCounter","markdownLaTeXCitationsTotal","markdownLaTeXColumnCounter","markdownLaTeXColumnTotal","markdownLaTeXLoadedfalse","markdownLaTeXLoadedtrue","markdownLaTeXMidRule","markdownLaTeXNatbibCitations","markdownLaTeXNatbibTextCitations","markdownLaTeXReadAlignments","markdownLaTeXRenderTableCell","markdownLaTeXRenderTableRow","markdownLaTeXRowCounter","markdownLaTeXRowTotal","markdownLATEXStrongEmphasis","markdownLaTeXTable","markdownLaTeXTableAlignment","markdownLaTeXTableEnd","markdownLaTeXThemeLoad","markdownLaTeXThemeName","markdownLaTeXThemePackageName","markdownLaTeXTopRule","markdownLaTeXUlItem","markdownMakeOther","markdownOptionCodeSpans","markdownOptionExpectJekyllData","markdownOptionRelativeReferences","markdownOptionTexComments","markdownOptionUnderscores","markdownVersionSpace","markdownWarning","markdown","endmarkdown","markdownBegin","markdownEnd","markdownEscape","markdownExecute","markdownExecuteDirect","markdownExecuteShellEscape","markdownIfOption","markdownInputFileStream","markdownLastModified","markdownLuaExecute","markdownLuaOptions","markdownOptionBlankBeforeBlockquote","markdownOptionBlankBeforeCodeFence","markdownOptionBlankBeforeHeading","markdownOptionBreakableBlockquotes","markdownOptionCacheDir","markdownOptionCitationNbsps","markdownOptionCitations","markdownOptionContentBlocks","markdownOptionContentBlocksLanguageMap","markdownOptionDefinitionLists","markdownOptionEagerCache","markdownOptionFencedCode","markdownOptionFinalizeCache","markdownOptionFootnotes","markdownOptionFrozenCache","markdownOptionFrozenCacheFileName","markdownOptionHardLineBreaks","markdownOptionHashEnumerators","markdownOptionHeaderAttributes","markdownOptionHtml","markdownOptionHybrid","markdownOptionInlineFootnotes","markdownOptionInputTempFileName","markdownOptionJekyllData","markdownOptionOutputDir","markdownOptionPipeTables","markdownOptionPreserveTabs","markdownOptionShiftHeadings","markdownOptionSlice","markdownOptionSmartEllipses","markdownOptionStartNumber","markdownOptionStripIndent","markdownOptionStripPercentSigns","markdownOptionTableCaptions","markdownOptionTaskLists","markdownOptionTeXComments","markdownOptionTightLists","markdownOutputFileStream","markdownPrepare","markdownPrepareLuaOptions","markdownReadAndConvert","markdownReadAndConvertProcessLine","markdownReadAndConvertStripPercentSign","markdownReadAndConvertTab","markdownRendererAmpersand","markdownRendererAmpersandPrototype","markdownRendererAttributeClassName","markdownRendererAttributeClassNamePrototype","markdownRendererAttributeIdentifier","markdownRendererAttributeIdentifierPrototype","markdownRendererAttributeKeyValue","markdownRendererBackslash","markdownRendererBackslashPrototype","markdownRendererBlockHtmlCommentBegin","markdownRendererBlockHtmlCommentEnd","markdownRendererBlockQuoteBegin","markdownRendererBlockQuoteBeginPrototype","markdownRendererBlockQuoteEnd","markdownRendererBlockQuoteEndPrototype","markdownRendererBracketedSpanAttributeContextBegin","markdownRendererBracketedSpanAttributeContextBeginPrototype","markdownRendererBracketedSpanAttributeContextEnd","markdownRendererBracketedSpanAttributeContextEndPrototype","markdownRendererCircumflex","markdownRendererCircumflexPrototype","markdownRendererCite","markdownRendererCitePrototype","markdownRendererCodeSpan","markdownRendererCodeSpanPrototype","markdownRendererContentBlock","markdownRendererContentBlockCode","markdownRendererContentBlockCodePrototype","markdownRendererContentBlockOnlineImage","markdownRendererContentBlockOnlineImagePrototype","markdownRendererContentBlockPrototype","markdownRendererDisplayMath","markdownRendererDisplayMathPrototype","markdownRendererDlBegin","markdownRendererDlBeginPrototype","markdownRendererDlBeginTight","markdownRendererDlBeginTightPrototype","markdownRendererDlDefinitionBegin","markdownRendererDlDefinitionBeginPrototype","markdownRendererDlDefinitionEnd","markdownRendererDlDefinitionEndPrototype","markdownRendererDlEnd","markdownRendererDlEndPrototype","markdownRendererDlEndTight","markdownRendererDlEndTightPrototype","markdownRendererDlItem","markdownRendererDlItemEnd","markdownRendererDlItemEndPrototype","markdownRendererDlItemPrototype","markdownRendererDocumentBegin","markdownRendererDocumentEnd","markdownRendererDollarSign","markdownRendererDollarSignPrototype","markdownRendererEllipsis","markdownRendererEllipsisPrototype","markdownRendererEmphasis","markdownRendererEmphasisPrototype","markdownRendererFancyOlBegin","markdownRendererFancyOlBeginPrototype","markdownRendererFancyOlBeginTight","markdownRendererFancyOlBeginTightPrototype","markdownRendererFancyOlEnd","markdownRendererFancyOlEndPrototype","markdownRendererFancyOlEndTight","markdownRendererFancyOlEndTightPrototype","markdownRendererFancyOlItem","markdownRendererFancyOlItemEnd","markdownRendererFancyOlItemEndPrototype","markdownRendererFancyOlItemPrototype","markdownRendererFancyOlItemWithNumber","markdownRendererFancyOlItemWithNumberPrototype","markdownRendererFencedCodeAttributeContextBegin","markdownRendererFencedCodeAttributeContextBeginPrototype","markdownRendererFencedCodeAttributeContextEnd","markdownRendererFencedCodeAttributeContextEndPrototype","markdownRendererFencedDivAttributeContextBegin","markdownRendererFencedDivAttributeContextBeginPrototype","markdownRendererFencedDivAttributeContextEnd","markdownRendererFencedDivAttributeContextEndPrototype","markdownRendererHalfTickedBox","markdownRendererHalfTickedBoxPrototype","markdownRendererHash","markdownRendererHashPrototype","markdownRendererHeaderAttributeContextBegin","markdownRendererHeaderAttributeContextBeginPrototype","markdownRendererHeaderAttributeContextEnd","markdownRendererHeaderAttributeContextEndPrototype","markdownRendererHeadingFive","markdownRendererHeadingFivePrototype","markdownRendererHeadingFour","markdownRendererHeadingFourPrototype","markdownRendererHeadingOne","markdownRendererHeadingOnePrototype","markdownRendererHeadingSix","markdownRendererHeadingSixPrototype","markdownRendererHeadingThree","markdownRendererHeadingThreePrototype","markdownRendererHeadingTwo","markdownRendererHeadingTwoPrototype","markdownRendererImage","markdownRendererImagePrototype","markdownRendererInlineHtmlComment","markdownRendererInlineHtmlCommentPrototype","markdownRendererInlineHtmlTag","markdownRendererInlineMath","markdownRendererInlineMathPrototype","markdownRendererInputBlockHtmlElement","markdownRendererInputFencedCode","markdownRendererInputFencedCodePrototype","markdownRendererInputRawBlock","markdownRendererInputRawInlinePrototype","markdownRendererInputRawInline","markdownRendererInputRawBlockPrototype","markdownRendererInputVerbatim","markdownRendererInputVerbatimPrototype","markdownRendererInterblockSeparator","markdownRendererInterblockSeparatorPrototype","markdownRendererJekyllDataBegin","markdownRendererJekyllDataBeginPrototype","markdownRendererJekyllDataBoolean","markdownRendererJekyllDataBooleanPrototype","markdownRendererJekyllDataEmpty","markdownRendererJekyllDataEmptyPrototype","markdownRendererJekyllDataEnd","markdownRendererJekyllDataEndPrototype","markdownRendererJekyllDataMappingBegin","markdownRendererJekyllDataMappingBeginPrototype","markdownRendererJekyllDataMappingEnd","markdownRendererJekyllDataMappingEndPrototype","markdownRendererJekyllDataNumber","markdownRendererJekyllDataNumberPrototype","markdownRendererJekyllDataSequenceBegin","markdownRendererJekyllDataSequenceBeginPrototype","markdownRendererJekyllDataSequenceEnd","markdownRendererJekyllDataSequenceEndPrototype","markdownRendererJekyllDataString","markdownRendererJekyllDataStringPrototype","markdownRendererLeftBrace","markdownRendererLeftBracePrototype","markdownRendererLineBlockBegin","markdownRendererLineBlockBeginPrototype","markdownRendererLineBlockEnd","markdownRendererLineBlockEndPrototype","markdownRendererHardLineBreak","markdownRendererHardLineBreakPrototype","markdownRendererLink","markdownRendererLinkPrototype","markdownRendererNbsp","markdownRendererNbspPrototype","markdownRendererNote","markdownRendererNotePrototype","markdownRendererOlBegin","markdownRendererOlBeginPrototype","markdownRendererOlBeginTight","markdownRendererOlBeginTightPrototype","markdownRendererOlEnd","markdownRendererOlEndPrototype","markdownRendererOlEndTight","markdownRendererOlEndTightPrototype","markdownRendererOlItem","markdownRendererOlItemEnd","markdownRendererOlItemEndPrototype","markdownRendererOlItemPrototype","markdownRendererOlItemWithNumber","markdownRendererOlItemWithNumberPrototype","markdownRendererPercentSign","markdownRendererPercentSignPrototype","markdownRendererPipe","markdownRendererPipePrototype","markdownRendererReplacementCharacter","markdownRendererReplacementCharacterPrototype","markdownRendererRightBrace","markdownRendererRightBracePrototype","markdownRendererSectionBegin","markdownRendererSectionBeginPrototype","markdownRendererSectionEnd","markdownRendererSectionEndPrototype","markdownRendererStrikeThrough","markdownRendererStrikeThroughPrototype","markdownRendererStrongEmphasis","markdownRendererStrongEmphasisPrototype","markdownRendererSubscript","markdownRendererSubscriptPrototype","markdownRendererSuperscript","markdownRendererSuperscriptPrototype","markdownRendererTable","markdownRendererTablePrototype","markdownRendererTextCite","markdownRendererTextCitePrototype","markdownRendererThematicBreak","markdownRendererThematicBreakPrototype","markdownRendererTickedBox","markdownRendererTickedBoxPrototype","markdownRendererTilde","markdownRendererTildePrototype","markdownRendererUlBegin","markdownRendererUlBeginPrototype","markdownRendererUlBeginTight","markdownRendererUlBeginTightPrototype","markdownRendererUlEnd","markdownRendererUlEndPrototype","markdownRendererUlEndTight","markdownRendererUlEndTightPrototype","markdownRendererUlItem","markdownRendererUlItemEnd","markdownRendererUlItemEndPrototype","markdownRendererUlItemPrototype","markdownRendererUnderscore","markdownRendererUnderscorePrototype","markdownRendererUntickedBox","markdownRendererUntickedBoxPrototype","markdownVersion","markdownRendererFootnote","markdownRendererFootnotePrototype","markdownRendererHorizontalRule","markdownRendererHorizontalRulePrototype"]}
-,
-"marvosym.sty":{"envs":{},"deps":{},"cmds":["Pickup","Letter","Mobilefone","Telefon","fax","FAX","Faxmachine","Email","Lightning","EmailCT","Beam","Bearing","LooseBearing","FixedBearing","LeftTorque","RightTorque","Lineload","MVArrowDown","OktoSteel","HexaSteel","SquareSteel","RectSteel","CircSteel","SquarePipe","RectPipe","CircPipe","LSteel","RoundedLSteel","TSteel","RoundedTSteel","TTSteel","RoundedTTSteel","FlatSteel","Valve","Industry","Coffeecup","LeftScissors","CuttingLine","RightScissors","Football","Bicycle","Info","ClockLogo","CutRight","CutLine","CutLeft","Wheelchair","Gentsroom","Ladiesroom","Checkedbox","CrossedBox","HollowBox","PointingHand","WritingHand","MineSign","Recycling","PackingWaste","WashCotton","WashSynthetics","WashWool","HandWash","NoWash","Tumbler","NoTumbler","NoChemicalCleaning","Bleech","NoBleech","CleaningA","CleaningP","CleaningPP","CleaningF","CleaningFF","IroningI","IroningII","IroningIII","NoIroning","AtNinetyFive","ShortNinetyFive","AtSixty","ShortSixty","ShortFifty","AtForty","ShortForty","SpecialForty","ShortThirty","EUR","EURdig","EURhv","EURcr","EURtm","Ecommerce","Shilling","Denarius","Pfund","EyesDollar","Florin","EurDig","EurHv","EurCr","EurTm","EstimatedSign","Deleatur","Stopsign","CESign","Estatically","Explosionsafe","Laserbeam","Biohazard","Radioactivity","BSEFree","RewindToIndex","RewindToStart","Rewind","Forward","ForwardToEnd","ForwardToIndex","MoveUp","MoveDown","ToTop","ToBottom","ComputerMouse","SerialInterface","Keyboard","SerialPort","ParallelPort","Printer","MVZero","MVOne","MVTwo","MVThree","MVFour","MVFive","MVSix","MVSeven","MVEight","MVNine","MVLeftBracket","MVRightBracket","MVComma","MVPeriod","MVMinus","MVPlus","MVDivision","MVMultiplication","Conclusion","Equivalence","barOver","BarOver","arrowOver","ArrowOver","StrikingThrough","MultiplicationDot","LessOrEqual","LargerOrEqual","AngleSign","Corresponds","Congruent","NotCongruent","Divides","DividesNot","Female","Male","Hermaphrodite","Neutral","FEMALE","MALE","HERMAPHRODITE","FemaleFemale","MaleMale","FemaleMale","Sun","Moon","Mercury","Venus","Mars","Jupiter","Saturn","Uranus","Neptune","Pluto","Earth","Aries","Taurus","Gemini","Cancer","Leo","Virgo","Libra","Scorpio","Sagittarius","Capricorn","Aquarius","Pisces","YinYang","MVRightArrow","MVAt","BOLogo","BOLogoL","BOLogoP","Mundus","Cross","CeltCross","Ankh","Heart","CircledA","Bouquet","Frowny","Smiley","PeaceDove","Bat","WomanFace","ManFace","Anglesign","BSEfree","Celtcross","CEsign","Circpipe","Circsteel","Clocklogo","Crossedbox","Cutleft","Cutline","Cutright","Dontwash","Emailct","Fax","FHBOlogo","FHBOLOGO","Fixedbearing","Flatsteel","Force","FullFHBO","Handwash","Hexasteel","ironing","Ironing","IRONING","Kutline","Leftscissors","Lefttorque","Loosebearing","Lsteel","MartinVogel","MVRightarrow","Octosteel","Pointinghand","Rectpipe","Rectsteel","Rightscissors","Righttorque","RoundedLsteel","RoundedTsteel","RoundedTTsteel","Squaredot","Squarepipe","Squaresteel","Tsteel","TTsteel","Vectorarrow","Vectorarrowhigh","Womanface","Writinghand","YingYang","Yingyang","Yinyang","mvs","mvchr","textmvs","Zodiac"]}
-,
-"matapli.cls":{"envs":["bloc","Important","theorem","definition","lemma","corollary","remark","soutenance","soutenanceHDR","matapliauteurtitre","matapliquote","descriptionFB"],"deps":["expl3.sty","s-book.cls","iftex.sty","latexsym.sty","amssymb.sty","subfig.sty","amsthm.sty","mathtools.sty","libertine.sty","babel.sty","adjustbox.sty","enumitem.sty","graphicx.sty","fancyhdr.sty","marvosym.sty","eurosym.sty","multicol.sty","xcolor.sty","tabularx.sty","booktabs.sty","url.sty","hyperref.sty","tikz.sty","tikzlibrarycalc.sty","ifthen.sty","titlesec.sty","titletoc.sty","caption.sty","biblatex.sty","calc.sty","geometry.sty","etoc.sty","bclogo.sty","lettrine.sty","tcolorbox.sty","tcolorboxlibrarymost.sty","incgraph.sty","listings.sty","listingsutf8.sty","shellesc.sty","pdfcol.sty"],"cmds":["titre","author","printauthors","partie","thelemma","thecorollary","MatapliQuestion","MatapliReponse","articletableofcontents","sommaire","correspondant","colloque","MatapliChapterFont","numero","mois","redacteurMatapli","creditcouverture","chapformat","corrsp","ruleundersub","ruleunder","thechapterpart","captionsenglish","dateenglish","extrasenglish","noextrasenglish","englishhyphenmins","britishhyphenmins","americanhyphenmins","prefacename","bibname","chaptername","enclname","ccname","headtoname","pagename","seename","alsoname","proofname","glossaryname","frenchsetup","frenchbsetup","AddThinSpaceBeforeFootnotes","at","AutoSpaceBeforeFDP","boi","bname","bsc","CaptionSeparator","captionsfrench","circonflexe","dateacadian","datefrench","DecimalMathComma","degre","degres","descindentFB","dotFFN","extrasfrench","FBcolonspace","FBdatebox","FBdatespace","FBeverylineguill","FBfigtabshape","FBfnindent","FBFrenchFootnotesfalse","FBFrenchFootnotestrue","FBFrenchSuperscriptstrue","FBGlobalLayoutFrenchtrue","FBgspchar","FBguillopen","FBguillspace","FBInnerGuillSinglefalse","FBInnerGuillSingletrue","FBListItemsAsParfalse","FBListItemsAsPartrue","FBLowercaseSuperscriptstrue","FBmedkern","FBPartNameFulltrue","FBsetspaces","FBSmallCapsFigTabCaptionstrue","FBStandardEnumerateEnvtrue","FBStandardItemizeEnvtrue","FBStandardItemLabelstrue","FBStandardLayouttrue","FBStandardListSpacingtrue","FBStandardListstrue","FBsupR","FBsupS","FBtextellipsis","FBthickkern","FBthinspace","FBthousandsep","FBWarning","fg","fgi","fgii","fprimo","frenchdate","FrenchEnumerate","FrenchFootnotes","FrenchLabelItem","frenchpartfirst","frenchpartsecond","FrenchPopularEnumerate","frenchtoday","Frlabelitemi","Frlabelitemii","Frlabelitemiii","Frlabelitemiv","frquote","fup","ieme","iemes","ier","iere","ieres","iers","ifFBAutoSpaceFootnotes","ifFBCompactItemize","ifFBCustomiseFigTabCaptions","ifFBfrench","ifFBFrenchFootnotes","ifFBFrenchSuperscripts","ifFBGlobalLayoutFrench","ifFBIndentFirst","ifFBINGuillSpace","ifFBListItemsAsPar","ifFBListOldLayout","ifFBLowercaseSuperscripts","ifFBLuaTeX","ifFBOldFigTabCaptions","ifFBOriginalTypewriter","ifFBPartNameFull","ifFBReduceListSpacing","ifFBShowOptions","ifFBSmallCapsFigTabCaptions","ifFBStandardEnumerateEnv","ifFBStandardItemizeEnv","ifFBStandardItemLabels","ifFBStandardLayout","ifFBStandardLists","ifFBStandardListSpacing","ifFBSuppressWarning","ifFBThinColonSpace","ifFBThinSpaceInFrenchNumbers","ifFBunicode","ifFBXeTeX","ifLaTeXe","kernFFN","labelindentFB","labelwidthFB","leftmarginFB","listfigurename","listindentFB","No","no","NoAutoSpaceBeforeFDP","NoAutoSpacing","NoEveryParQuote","noextrasfrench","nombre","nos","Nos","og","ogi","ogii","parindentFFN","partfirst","partnameord","partsecond","primo","quarto","rmfamilyFB","secundo","sffamilyFB","StandardFootnotes","StandardMathComma","tertio","tild","ttfamilyFB","up","xspace"]}
-,
-"mathabx.sty":{"envs":{},"deps":{},"cmds":["Aries","asterisk","Asterisk","barin","barleftharpoon","barrightharpoon","barwedge","because","between","bigast","bigboxasterisk","bigboxbackslash","bigboxbot","bigboxcirc","bigboxcoasterisk","bigboxdiv","bigboxdot","bigboxleft","bigboxminus","bigboxperp","bigboxplus","bigboxright","bigboxslash","bigboxtimes","bigboxtop","bigboxtriangleup","bigboxvoid","bigcoast","bigcomplement","bigcurlyvee","bigcurlywedge","bigoasterisk","bigobackslash","bigobot","bigocirc","bigocoasterisk","bigodiv","bigoleft","bigominus","bigoperp","bigoright","bigoslash","bigotop","bigotriangleup","bigovoid","bigplus","bigsqcap","bigsquplus","bigstar","bigtimes","bigvarstar","blackdiamond","blacktriangledown","blacktriangleleft","blacktriangleright","blacktriangleup","botdoteq","boxdiv","boxeddash","boxminus","boxplus","boxtimes","boy","bracemd","bracemu","bracexd","bracexu","bumpedeq","Bumpedeq","Cap","centerdot","circeq","circlearrowleft","circlearrowright","circledast","circledcirc","circleddash","circplus","coasterisk","coAsterisk","coloneq","complement","convolution","corresponds","Cup","curlyeqprec","curlyeqsucc","curlyvee","curlywedge","curvearrowbotleft","curvearrowbotleftright","curvearrowbotright","curvearrowleft","curvearrowleftright","curvearrowright","curvearrowtopleft","curvearrowtopleftright","curvearrowtopright","Dashv","dashV","DashV","dashVv","ddddot","dddot","degree","diagdown","diagup","diameter","divdot","divideontimes","divides","dlsh","dotdiv","Doteq","doteqdot","dotplus","dotseq","dottimes","doublebarwedge","doublecap","doublecup","downdownarrows","downdownharpoons","downharpoonleft","downharpoonright","downtouparrow","downuparrows","downupharpoons","drsh","Earth","eqbumped","eqcirc","eqcolon","fallingdotseq","Finv","fourth","fullmoon","Game","Gemini","geqq","geqslant","ggcurly","ggg","girl","gnapprox","gneq","gneqq","gtrapprox","gtrdot","hash","iiint","iiintop","iint","iintop","Join","Jupiter","lcorners","ldbrack","leftbarharpoon","leftleftarrows","leftleftharpoons","leftmoon","leftrightarrows","leftrightharpoon","leftrightharpoons","leftrightsquigarrow","leftsquigarrow","leftthreetimes","lefttorightarrow","Leo","leqq","leqslant","lessdot","lfilet","Libra","llcorner","llcurly","lll","lnapprox","lneq","lneqq","looparrowdownleft","looparrowdownright","looparrowleft","looparrowright","looparrowupleft","looparrowupright","lrcorner","lsemantic","Lsh","ltimes","mapsfromchar","Mapsfromchar","Mapstochar","Mars","measuredangle","Mercury","Moon","napprox","ncong","ncurlyeqprec","ncurlyeqsucc","ndashv","nDashv","ndashV","nDashV","ndashVv","ndivides","Neptune","nequiv","newmoon","nexists","ngeq","ngeqq","ngeqslant","ngtr","ngtrapprox","nibar","nleftarrow","nLeftarrow","nleftrightarrow","nLeftrightarrow","nleq","nleqq","nleqslant","nless","nlessapprox","notasymp","notbot","notdivides","notequiv","notni","notowner","notowns","notperp","notsign","nottop","nprec","nprecapprox","npreccurlyeq","npreceq","nprecsim","nrightarrow","nRightarrow","nsim","nsimeq","nsqsubset","nsqSubset","nsqsubseteq","nsqsubseteqq","nsqsupset","nsqSupset","nsqsupseteq","nsqsupseteqq","nsubset","nSubset","nsubseteq","nsubseteqq","nsucc","nsuccapprox","nsucccurlyeq","nsucceq","nsuccsim","nsupset","nSupset","nsupseteq","nsupseteqq","ntriangleleft","ntrianglelefteq","ntriangleright","ntrianglerighteq","nvargeq","nvarleq","nvdash","nvDash","nVdash","nVDash","nVvash","oasterisk","obackslash","obot","ocirc","ocoasterisk","odiv","oiint","oiintop","oleft","operp","oright","otop","otriangleup","ovoid","ownsbar","partialslash","pitchfork","pluscirc","Pluto","precapprox","preccurlyeq","precdot","precnapprox","precneq","precnsim","precsim","rcorners","rdbrack","restriction","rfilet","rightbarharpoon","rightleftarrows","rightleftharpoon","rightmoon","rightrightarrows","rightrightharpoons","rightsquigarrow","rightthreetimes","righttoleftarrow","ring","rip","risingdotseq","rsemantic","Rsh","rtimes","Saturn","scoprod","Scorpio","second","smalltriangledown","smalltriangleleft","smalltriangleright","smalltriangleup","sphericalangle","sprod","sqbullet","sqCap","sqCup","sqdoublecap","sqdoublecup","sqsubset","sqSubset","sqsubseteqq","sqsubsetneq","sqsubsetneqq","sqsupset","sqSupset","sqsupseteqq","sqsupsetneq","sqsupsetneqq","square","squplus","ssum","Subset","subseteqq","subsetneq","subsetneqq","succapprox","succcurlyeq","succdot","succnapprox","succneq","succnsim","succsim","Sun","Supset","supseteqq","supsetneq","supsetneqq","Taurus","therefore","thickvert","third","topdoteq","trianglelefteq","triangleq","trianglerighteq","udot","ulcorner","ulsh","updownarrows","updownharpoons","upharpoonleft","upharpoonright","uptodownarrow","upuparrows","upupharpoons","Uranus","urcorner","ursh","varEarth","vargeq","varhash","varleq","varnotin","varnotowner","varnotsign","varsqsubsetneq","varsqsubsetneqq","varsqsupsetneq","varsqsupsetneqq","varstar","varsubsetneq","varsubsetneqq","varsupsetneq","varsupsetneqq","vartriangleleft","vartriangleright","vDash","Vdash","VDash","veebar","veedoublebar","Venus","Vvdash","vvvert","widearrow","widebar","widecheck","wideparen","overgroup","undergroup","overleftrightarrow","underrightarrow","underleftarrow","underleftrightarrow","overRightarrow","overLeftarrow","overLeftRightarrow","underRightarrow","underLeftarrow","underLeftRightarrow","widering","widedot","wideddot","widedddot","wideddddot","varnot","mayadelimiters","maya","mayadigit","changenotsign"]}
-,
-"mathalfa.sty":{"envs":{},"deps":["xkeyval.sty","dsserif.sty","bboldx.sty"],"cmds":["mathbbb","mathbcal","mathbscr","mathbfrak","mathscr","mathbfscr","mathcal","mathbfcal","mathfrak","mathbffrak","mathbb","mathbfbb","txtbbGamma","txtbbgamma","txtbbPi","txtbbpi","txtbbdotlessi","txtbbdotlessj","txtbbzero","txtbbone","txtbbtwo","txtbbthree","txtbbfour","txtbbfive","txtbbsix","txtbbseven","txtbbeight","txtbbnine","mathbbi","mathbfbbi","imathbb","jmathbb","bbdotlessi","bbdotlessj","bbGamma","bbDelta","bbTheta","bbLambda","bbXi","bbPi","bbSigma","bbUpsilon","bbPhi","bbPsi","bbOmega","bbalpha","bbbeta","bbgamma","bbdelta","bbepsilon","bbzeta","bbeta","bbtheta","bbiota","bbkappa","bblambda","bbmu","bbnu","bbxi","bbpi","bbrho","bbsigma","bbtau","bbupsilon","bbphi","bbchi","bbpsi","bbomega","bbLbrack","bbRbrack","bbLangle","bbRangle","bbLparen","bbRparen","mathalphaVersion","mathalphaDate","amsloaded"]}
-,
-"mathalpha.sty":{"envs":{},"deps":["xkeyval.sty","dsserif.sty","bboldx.sty"],"cmds":["mathbbb","mathbcal","mathbscr","mathbfrak","mathscr","mathbfscr","mathcal","mathbfcal","mathfrak","mathbffrak","mathbb","mathbfbb","txtbbGamma","txtbbgamma","txtbbPi","txtbbpi","txtbbdotlessi","txtbbdotlessj","txtbbzero","txtbbone","txtbbtwo","txtbbthree","txtbbfour","txtbbfive","txtbbsix","txtbbseven","txtbbeight","txtbbnine","mathbbi","mathbfbbi","imathbb","jmathbb","bbdotlessi","bbdotlessj","bbGamma","bbDelta","bbTheta","bbLambda","bbXi","bbPi","bbSigma","bbUpsilon","bbPhi","bbPsi","bbOmega","bbalpha","bbbeta","bbgamma","bbdelta","bbepsilon","bbzeta","bbeta","bbtheta","bbiota","bbkappa","bblambda","bbmu","bbnu","bbxi","bbpi","bbrho","bbsigma","bbtau","bbupsilon","bbphi","bbchi","bbpsi","bbomega","bbLbrack","bbRbrack","bbLangle","bbRangle","bbLparen","bbRparen","mathalphaVersion","mathalphaDate","amsloaded"]}
-,
-"mathastext.sty":{"envs":{},"deps":["ncccomma.sty"],"cmds":["HUGE","Mathastext","mathastext","MTencoding","MTfamily","MTseries","MTshape","MTlettershape","MTWillUse","MathastextWillUse","Mathastextwilluse","MTDeclareVersion","MathastextDeclareVersion","MTboldvariant","MTEulerScale","MTSymbolScale","MTmathactiveletters","MTmathactiveLetters","MTmathstandardletters","MTicinmath","MTnoicinmath","MTICinmath","MTnoICinmath","MTicalsoinmathxx","MTnormalasterisk","MTactiveasterisk","MTeasynonlettersobeymathxx","MTeasynonlettersdonotobeymathxx","MTnonlettersobeymathxx","MTnonlettersdonotobeymathxx","MTexplicitbracesobeymathxx","MTexplicitbracesdonotobeymathxx","MTnormalprime","MTprimedoesskip","MTeverymathdefault","MTeverymathoff","MTfixfonts","MTdonotfixfonts","MTfixmathfonts","MTsetmathskips","MTunsetmathskips","MTexistsskip","MTnormalexists","MTexistsdoesskip","MTforallskip","MTnormalforall","MTforalldoesskip","MTprimeskip","MTlowerast","MTmathoperatorsobeymathxx","MTmathoperatorsdonotobeymathxx","MTversion","Mathastextversion","mathastextversion","MTcustomgreek","Mathastextcustomgreek","MTstandardgreek","Mathastextstandardgreek","MTgreekupdefault","MTgreekitdefault","MTrecordstandardgreek","MTresetnewmcodes","MTcustomizenewmcodes","pmvec","Mathnormal","Mathrm","Mathbf","Mathit","Mathsf","Mathtt","mathnormalbold","inodot","jnodot","MTitgreek","Mathastextitgreek","MTupgreek","Mathastextupgreek","MTitGreek","MathastextitGreek","MTupGreek","MathastextupGreek","MTgreekfont","Mathastextgreekfont","Digamma","digamma","Alpha","Beta","Epsilon","Zeta","Eta","Iota","Kappa","Mu","Nu","Omicron","Rho","Tau","Chi","omicron","mathgreekup","mathgreekit","Alphaup","Betaup","Epsilonup","Zetaup","Etaup","Iotaup","Kappaup","Muup","Nuup","Omicronup","Rhoup","Tauup","Chiup","Alphait","Betait","Epsilonit","Zetait","Etait","Iotait","Kappait","Muit","Nuit","Omicronit","Rhoit","Tauit","Chiit","Digammaup","Digammait","Gammaup","Deltaup","Thetaup","Lambdaup","Xiup","Piup","Sigmaup","Upsilonup","Phiup","Psiup","Omegaup","Gammait","Deltait","Thetait","Lambdait","Xiit","Piit","Sigmait","Upsilonit","Phiit","Psiit","Omegait","alphaup","betaup","gammaup","deltaup","epsilonup","zetaup","etaup","thetaup","iotaup","kappaup","lambdaup","muup","nuup","xiup","omicronup","piup","rhoup","sigmaup","tauup","upsilonup","phiup","chiup","psiup","omegaup","digammaup","varsigmaup","alphait","betait","gammait","deltait","epsilonit","zetait","etait","thetait","iotait","kappait","lambdait","muit","nuit","xiit","omicronit","piit","rhoit","sigmait","tauit","upsilonit","phiit","chiit","psiit","omegait","digammait","varsigmait","MathEuler","MathEulerBold","fouriervec","MathPSymbol","DotTriangle","implies","impliedby","shortiff","longto","inftypsy","proptopsy","MToriginalprod","MToriginalsum"]}
-,
-"mathbbol.sty":{"envs":{},"deps":{},"cmds":["mathbb","Langle","Lbrack","Lparen","Rangle","Rbrack","Rparen","Eins","bbalpha","bbbeta","bbgamma","bbdelta","bbespilon","bbzeta","bbeta","bbtheta","bbiota","bbkappa","bblambda","bbmu","bbnu","bbxi","bbpi","bbrho","bbsigma","bbtau","bbupsilon","bbphi","bbchi","bbpsi","bbomega","ifcspex","cspexfalse","cspextrue","ifbbgreekl","bbgreeklfalse","bbgreekltrue"]}
-,
-"mathcmd.sty":{"envs":{},"deps":{},"cmds":["text","Int","Sum","SUM","DerTot","DerPar","DerNorm","TendsTo","Grad","Div","Rot","ProdVett","UnderDot","FileName","docdate","filedate","filedescr","fileversion"]}
-,
-"mathcommand.sty":{"envs":{},"deps":["l3keys2e.sty","etoolbox.sty"],"cmds":["newmathcommand","newtextcommand","renewmathcommand","renewtextcommand","declaremathcommand","declaretextcommand","NewDocumentMathCommand","NewDocumentTextCommand","RenewDocumentMathCommand","RenewDocumentTextCommand","DeclareDocumentMathCommand","DeclareDocumentTextCommand","ProvideDocumentMathCommand","ProvideDocumentTextCommand","declarecommand","storecommand","IfEmptyTF","EmptyContent","GetIndex","GetExponent","newcommandPIE","renewcommandPIE","declarecommandPIE","NewDocumentCommandPIE","RenewDocumentCommandPIE","DeclareDocumentCommandPIE","ProvideDocumentCommandPIE","newmathcommandPIE","renewmathcommandPIE","declaremathcommandPIE","NewDocumentMathCommandPIE","RenewDocumentMathCommandPIE","DeclareDocumentMathCommandPIE","ProvideDocumentMathCommandPIE","LoopCommands","lettersUppercase","lettersLowercase","lettersAll","lettersGreekLowercase","lettersGreekUppercase","lettersGreekAll","disablecommand","suggestcommand","mathcommandconfigure"]}
-,
-"mathcomp.sty":{"envs":{},"deps":{},"cmds":["tcdigitoldstyle","tcohm","tcperthousand","tccelsius","tccentigrade","tcdegree","tcpertenthousand","tcmu"]}
-,
-"mathdesign.sty":{"envs":{},"deps":["keyval.sty","ifthen.sty","fontenc.sty"],"cmds":["ProcessUnusedOptions","selectgreekfamily","WarningIfLoaded","WarningIfLoadedNoOption","figurecircled","fscshape","ficshape","oldstylenums","semiseries","blackseries","checkmark","circledR","circledS","euro","maltese","mdlogo","rulethickness","yen","mathbb","mathfrak","mathscr","mdmathbb","alphait","alphaup","approxeq","backepsilon","backprime","backsim","backsimeq","barwedge","Bbbk","because","betait","betaup","beth","between","bigstar","blacklozenge","blacksquare","blacktriangle","blacktriangledown","blacktriangleleft","blacktriangleright","Box","boxdot","boxminus","boxplus","boxtimes","bumpeq","Bumpeq","Cap","centerdot","chiit","chiup","circeq","circlearrowleft","circlearrowright","circledast","circledcirc","circleddash","complement","Cup","curlyeqprec","curlyeqsucc","curlyvee","curlywedge","curvearrowleft","curvearrowright","daleth","dasharrow","dashleftarrow","dashrightarrow","deltait","Deltait","deltaup","Deltaup","diagdown","diagup","Diamond","digamma","digammait","digammaup","divideontimes","Doteq","doteqdot","dotplus","doublebarwedge","doublecap","doublecup","downdownarrows","downharpoonleft","downharpoonright","dtimes","epsilonit","epsilonup","eqcirc","eqsim","eqslantgtr","eqslantless","etait","etaup","eth","fallingdotseq","Finv","Game","gammait","Gammait","gammaup","Gammaup","geqq","geqslant","ggg","gggtr","gimel","gnapprox","gneq","gneqq","gnsim","gtrapprox","gtrdot","gtreqless","gtreqqless","gtrless","gtrsim","gvertneqq","hslash","iddots","intclockwise","intercal","iotait","iotaup","Join","kappait","kappaup","lambdait","Lambdait","lambdaup","Lambdaup","leadsto","leftarrowtail","leftevaw","leftleftarrows","leftrightarrows","leftrightharpoons","leftrightsquigarrow","leftthreetimes","leftwave","leqq","leqslant","lessapprox","lessdot","lesseqgtr","lesseqqgtr","lessgtr","lesssim","levaw","lhd","llbracket","llcorner","Lleftarrow","lll","llless","lnapprox","lneq","lneqq","lnsim","looparrowleft","looparrowright","lozenge","lrcorner","Lsh","ltimes","lvertneqq","lwave","measuredangle","mho","muit","multimap","muup","ncong","nexists","ngeq","ngeqq","ngeqslant","ngtr","nleftarrow","nLeftarrow","nLeftrightarrow","nleftrightarrow","nleq","nleqq","nleqslant","nless","nmid","notsmallin","notsmallowns","nparallel","nprec","npreceq","nrightarrow","nRightarrow","nshortmid","nshortparallel","nsim","nsubseteq","nsubseteqq","nsucc","nsucceq","nsupseteq","nsupseteqq","ntriangleleft","ntrianglelefteq","ntriangleright","ntrianglerighteq","nuit","nuup","nvdash","nVdash","nvDash","nVDash","oiiint","oiint","ointclockwise","ointctrclockwise","omegait","Omegait","omegaup","Omegaup","phiit","Phiit","phiup","Phiup","piit","Piit","pitchfork","piup","Piup","precapprox","preccurlyeq","precnapprox","precneqq","precnsim","precsim","psiit","Psiit","psiup","Psiup","restriction","revaw","rhd","rhoit","rhoup","rightangle","rightarrowtail","rightevaw","rightleftarrows","rightrightarrows","rightsquigarrow","rightthreetimes","rightwave","risingdotseq","rrbracket","Rrightarrow","Rsh","rtimes","rwave","shortmid","shortparallel","sigmait","Sigmait","sigmaup","Sigmaup","smallfrown","smallin","smallowns","smallsetminus","smallsmile","sphericalangle","sqsubset","sqsupset","square","Subset","subseteqq","subsetneq","subsetneqq","succapprox","succcurlyeq","succnapprox","succneqq","succnsim","succsim","Supset","supseteqq","supsetneq","supsetneqq","tauit","tauup","therefore","thetait","Thetait","thetaup","Thetaup","thickapprox","thicksim","triangledown","trianglelefteq","triangleq","trianglerighteq","twoheadleftarrow","twoheadrightarrow","udtimes","ulcorner","unlhd","unrhd","upharpoonleft","upharpoonright","upsilonit","Upsilonit","upsilonup","Upsilonup","upuparrows","urcorner","utimes","varepsilonit","varepsilonup","varkappa","varkappait","varkappaup","varnothing","varphiit","varphiup","varpiit","varpiup","varpropto","varrhoit","varrhoup","varsigmait","varsigmaup","varsubsetneq","varsubsetneqq","varsupsetneq","varsupsetneqq","varthetait","varthetaup","vartriangle","vartriangleleft","vartriangleright","Vdash","vDash","veebar","Vvdash","wideparen","widering","widetriangle","xiit","Xiit","xiup","Xiup","zetait","zetaup","DH","NG","dj","ng","k","guillemotleft","guillemotright","guilsinglleft","guilsinglright","quotedblbase","quotesinglbase","textquotedbl","DJ","th","TH","dh","Hwithstroke","hwithstroke","textogonekcentered","guillemetleft","guillemetright"]}
-,
-"mathdots.sty":{"envs":{},"deps":{},"cmds":["iddots","MDoprekern","MDodotkern","MDopostkern","fixedddots","fixedvdots","fixediddots","originalddots","originalvdots","originaliddots","originaldddot","originalddddot","MDoddots","MDovdots","MDoiddots","MDodddot","MDoddddot","mathdotsfiledate","mathdotsfileversion"]}
-,
-"mathenv.sty":{"envs":["eqlines*","eqnalign","spliteqn","spliteqn*","subsplit","pmatrix","dmatrix","smatrix","smatrix*","spmatrix","spmatrix*","sdmatrix","sdmatrix*","genmatrix","script","cases","smcases"],"deps":["mdwtab.sty"],"cmds":["eqnumber","eqaopenskip","eqacloseskip","eqacolskip","eqainskip","eqastyle","ddots","newmatrix"]}
-,
-"mathfixs.sty":{"envs":{},"deps":["keyval.sty"],"cmds":["ProvideMathFix","rfrac","vfrac","mathbold"]}
-,
-"mathfont.sty":{"envs":{},"deps":{},"cmds":["EasterEggUpdate","mathfont","setfont","mathbb","mathfrak","mathbcal","mathbfrak","mathbfit","mathsc","mathscit","mathbfsc","mathbfscit","newmathrm","newmathit","newmathbf","newmathbfit","newmathsc","newmathscit","newmathbfsc","newmathbfscit","newmathfontcommand","mathconstantsfont","CharmLine","CharmFile","RuleThicknessFactor","IntegralItalicFactor","SurdVerticalFactor","SurdHorizontalFactor","aacute","Alpha","approxeq","arceq","ayin","bclubsuit","bdiamondsuit","because","Beta","beth","bheartsuit","bigand","bigat","bigdiv","bigdollar","bighash","bigp","bigpercent","bigplus","bigq","bigS","bigsqcap","bigtimes","bspadesuit","Chi","circlearrowleft","circlearrowright","coloneq","comma","curvearrowleft","curvearrowright","cyrA","cyra","cyrBe","cyrbe","cyrChe","cyrche","cyrDe","cyrde","cyrE","cyre","cyrEf","cyref","cyrEl","cyrel","cyrEm","cyrem","cyrEn","cyren","cyrEr","cyrer","cyrEs","cyres","cyrGhe","cyrghe","cyrHa","cyrha","cyrHard","cyrhard","cyrI","cyri","cyrIe","cyrie","cyrKa","cyrka","cyrO","cyro","cyrPe","cyrpe","cyrSha","cyrsha","cyrShcha","cyrshcha","cyrSoft","cyrsoft","cyrTe","cyrte","cyrTse","cyrtse","cyrU","cyru","cyrvarI","cyrvari","cyrVe","cyrve","cyrYa","cyrya","cyrYeru","cyryeru","cyrYu","cyryu","cyrZe","cyrze","cyrZhe","cyrzhe","daleth","Ddownarrow","defeq","degree","Digamma","digamma","downarrowtobar","downbararrow","downdasharrow","downdownarrows","downharpoonleft","downharpoonright","downuparrows","downupharpoons","downwhitearrow","Epsilon","eqcolon","eqsim","Eta","fakelangle","fakellangle","fakerangle","fakerrangle","fflat","fractionslash","from","gapprox","geqq","ggg","gimel","gnapprox","gneq","gneqq","gnsim","gsim","he","het","Heta","heta","hourglass","iiint","iiintop","iint","iintop","increment","intop","Iota","kaf","Kappa","Koppa","koppa","lamed","lapprox","lcirclearrow","leftarrowtail","leftarrowtobar","leftbararrow","Leftbararrow","leftbrace","leftdasharrow","leftleftarrows","leftleftleftarrows","leftoplusarrow","leftrightarrows","leftrightarrowstobar","leftrightharpoons","leftrightwavearrow","leftsquigarrow","leftwavearrow","leftwhitearrow","leqq","lguil","lightningboltarrow","Lleftarrow","llguil","lll","lnapprox","lneq","lneqq","lnsim","longleftbararrow","Longleftbararrow","longleftsquigarrow","longmapsfrom","longrightbararrow","Longrightbararrow","longrightsquigarrow","looparrowleft","looparrowright","lsim","mapsfrom","mathand","mathbackslash","mathhash","mathpercent","mem","Mu","napprox","Nearrow","nequiv","neswarrow","ng","ngeq","ngsim","nin","nl","nleftarrow","nLeftarrow","nLeftrightarrow","nleq","nlsim","nni","nprec","npreceq","nrightarrow","nRightarrow","nsim","nsimeq","nsimeqq","nsqsubseteq","nsqsupseteq","nsubset","nsubseteq","nsucc","nsucceq","nsupset","nsupseteq","ntriangleleft","ntrianglelefteq","ntriangleright","ntrianglerighteq","Nu","nun","Nwarrow","nwsearrow","odiv","oiiint","oiiintop","oiint","oiintop","Omicron","omicron","pe","precapprox","preceqq","precnapprox","precneq","precneqq","precnsim","precprec","precsim","proportion","qeq","qof","ratio","rcirclearrow","resh","rguil","Rho","rightarrowtail","rightarrowtobar","rightbararrow","Rightbararrow","rightbrace","rightdasharrow","rightleftarrows","rightoplusarrow","rightrightarrows","rightrightrightarrows","rightsquigarrow","rightwavearrow","rightwhitearrow","ringeq","rrguil","Rrightarrow","samekh","Sampi","sampi","San","san","Searrow","seq","shin","Sho","sho","simeqq","simneqq","sqdot","sqminus","sqplus","sqsubset","sqsubsetneq","sqsupset","sqsupsetneq","sqtimes","ssharp","sssim","stareq","Stigma","stigma","subsetneq","succapprox","succeqq","succnapprox","succneq","succneqq","succnsim","succsim","succsucc","supsetneq","Swarrow","Tau","tav","tet","therefore","triangleeq","trianglelefteq","trianglerighteq","tsadi","twoheaddownarrow","twoheadleftarrow","twoheadrightarrow","twoheaduparrow","uparrowtobar","upbararrow","updasharrow","updownarrows","updownharpoons","upharpoonleft","upharpoonright","upuparrows","upwhitearrow","upwhitebararrow","Uuparrow","varbeta","varcdot","varDigamma","vardigamma","varkaf","varkappa","varKoppa","varkoppa","varmem","varnun","varpe","varSampi","varsampi","varsetminus","varTheta","vartsadi","vav","veeeq","wclubsuit","wdiamondsuit","wedgeeq","wheartsuit","wspadesuit","yod","zayin","Zeta","zigzagarrow","surdbox","radicandoffset","setmathfontcommands","restoremathinternals","newmathbold","newmathboldit"]}
-,
-"mathpartir.sty":{"envs":["mathpar"],"deps":["keyval.sty"],"cmds":["inferrule","infer","mprset","MathparLineskip","MathparNormalpar","MathparBindings"]}
-,
-"mathpazo.sty":{"envs":{},"deps":{},"cmds":["mathbold","mathbb","PazoBB","upGamma","upDelta","upTheta","upLambda","upXi","upPi","upSigma","upUpsilon","upPhi","upPsi","upOmega","ppleuro"]}
-,
-"mathpi.sty":{"envs":{},"deps":{},"cmds":["mathfrak","mathscr","mathbb"]}
-,
-"mathptmx.sty":{"envs":{},"deps":{},"cmds":["omicron","upGamma","upDelta","upTheta","upLambda","upXi","upPi","upSigma","upUpsilon","upPhi","upPsi","upOmega"]}
-,
-"mathpunctspace.sty":{"envs":{},"deps":["xkeyval.sty"],"cmds":["normalcolon","normalcomma","normalsemicolon"]}
-,
-"mathrsfs.sty":{"envs":{},"deps":{},"cmds":["mathscr"]}
-,
-"mathscinet.sty":{"envs":{},"deps":["textcmds.sty"],"cmds":["bold","scr","germ","romsup","asup","hslash","rasp","lasp","Dbar","dbar","cprime","cdprime","bud","cydot","utilde","uarc","lfhook","dudot","udot","polhk","soft"]}
-,
-"mathsemantics-abbreviations.sty":{"envs":{},"deps":["mathsemantics-commons.sty"],"cmds":["aa","cf","eg","Eg","ie","Ie","iid","st","wolog","wrt","bspw","bzgl","bzw","dah","Dah","etc","evtl","Evtl","fue","fs","iA","IA","idR","IdR","iW","IW","mE","oBdA","OBdA","og","oae","pa","spd","so","ua","ug","usw","Ua","uU","UnU","vgl","zB","ZB","zHd"]}
-,
-"mathsemantics-commons.sty":{"envs":{},"deps":["ifthen.sty","xifthen.sty","ifxetex.sty","xparse.sty","xspace.sty","amssymb.sty","mathtools.sty"],"cmds":{}}
-,
-"mathsemantics-manifolds.sty":{"envs":{},"deps":["mathsemantics-semantic.sty"],"cmds":["bitangentSpaceSymbol","cotangentSpaceSymbol","covariantDerivativeSymbol","secondCovariantDerivativeSymbol","geodesicSymbol","wideparen","geodesicArcSymbol","parallelTransportSymbol","retractionSymbol","tangentSpaceSymbol","tensorSpaceSymbol","vectorTransportSymbol","bitangentSpace","cotangentSpace","cotangentBundle","covariantDerivative","expOp","exponential","geodesic","logOp","logarithm","inverseRetract","lie","parallelTransport","parallelTransportDir","retract","riemannian","riemanniannorm","secondCovariantDerivative","tangentSpace","tangentBundle","tensorBundle","tensorSpace","vectorTransport","vectorTransportDir"]}
-,
-"mathsemantics-names.sty":{"envs":{},"deps":["mathsemantics-commons.sty"],"cmds":["namemd","adimat","ampl","BibTeX","BibLaTeX","cg","cpp","cppmat","dolfin","dolfinplot","dolfinadjoint","doxygen","femorph","fenics","ffc","fmg","fortran","gitlab","gmres","gmsh","ipopt","libsvm","liblinear","macmpec","manifoldsjl","manopt","manoptjl","mathematica","matlab","maple","maxima","meshio","metis","minres","mshr","mvirt","numapde","numpy","paraview","pdflatex","perl","petsc","pymat","python","scikit","scikitlearn","scipy","sphinx","subgmres","subminres","superlu","svmlight","TikZ","tritetmesh","ufl","uqlab","viper","xml"]}
-,
-"mathsemantics-optimization.sty":{"envs":{},"deps":["mathsemantics-semantic.sty"],"cmds":["normalCone","radialCone","tangentCone","linearizingCone","radialcone","tangentcone","linearizingcone","normalcone","polarcone"]}
-,
-"mathsemantics-semantic.sty":{"envs":{},"deps":["mathsemantics-commons.sty","mathsemantics-syntax.sty"],"cmds":["abs","ceil","dual","floor","avg","inner","jump","norm","restr","setMid","setDef","distOp","dist","projOp","proj","proxOp","prox","aff","arcosh","arcoth","arsinh","artanh","argmax","Argmax","argmin","Argmin","bdiv","card","clconv","closure","cofac","compactly","cone","conv","corresponds","cov","curl","dev","div","Div","dInt","d","diag","diam","dom","dotcup","dprod","e","embed","embeds","epi","eR","esssup","essinf","grad","Graph","id","image","interior","inj","laplace","limessinf","limesssup","lin","rank","range","ri","sgn","Sgn","Span","supp","sym","trace","transposeSymbol","transp","var","weakly","weaklystar","orcid"]}
-,
-"mathsemantics-syntax.sty":{"envs":{},"deps":["mathsemantics-commons.sty"],"cmds":["C","K","N","Q","R","Z","bA","bB","bC","bD","bE","bF","bG","bH","bI","bJ","bK","bL","bM","bN","bO","bP","bQ","bR","bS","bT","bU","bV","bW","bX","bY","bZ","ba","bb","bc","bd","be","bf","bg","bh","bi","bj","bk","bl","bm","bn","bo","bp","bq","br","bs","bt","bu","bv","bw","bx","by","bz","bnull","bone","balpha","bbeta","bgamma","bdelta","bepsilon","bvarepsilon","bzeta","boldeta","btheta","bvartheta","biota","bkappa","bvarkappa","blambda","bmu","bnu","bomicron","bxi","bpi","bvarpi","brho","bvarrho","bsigma","bvarsigma","btau","bupsilon","bphi","bvarphi","bchi","bpsi","bomega","bAlpha","bBeta","bGamma","bDelta","bEpsilon","bZeta","bEta","bTheta","bIota","bKappa","bLambda","bMu","bNu","bXi","bOmicron","bPi","bRho","bSigma","bTau","bUpsilon","bPhi","bChi","bPsi","bOmega","cA","cB","cC","cD","cE","cF","cG","cH","cI","cJ","cK","cL","cM","cN","cO","cP","cQ","cR","cS","cT","cU","cV","cW","cX","cY","cZ","fA","fB","fC","fD","fE","fF","fG","fH","fI","fJ","fK","fL","fM","fN","fO","fP","fQ","fR","fS","fT","fU","fV","fW","fX","fY","fZ","sA","sB","sC","sD","sE","sF","sG","sH","sI","sJ","sK","sL","sM","sN","sO","sP","sQ","sR","sS","sT","sU","sV","sW","sX","sY","sZ","va","vb","vc","vd","ve","vf","vg","vh","vi","vj","vk","vl","vm","vn","vo","vp","vq","vr","vs","vt","vu","vv","vw","vx","vy","vz","vA","vB","vC","vD","vE","vF","vG","vH","vI","vJ","vK","vL","vM","vN","vO","vP","vQ","vR","vS","vT","vU","vV","vW","vX","vY","vZ","vnull","vone","valpha","vbeta","vgamma","vdelta","vepsilon","vvarepsilon","vzeta","veta","vtheta","vvartheta","viota","vkappa","vvarkappa","vlambda","vmu","vnu","vomicron","vxi","vpi","vvarpi","vrho","vvarrho","vsigma","vvarsigma","vtau","vupsilon","vphi","vvarphi","vchi","vpsi","vomega","vAlpha","vBeta","vGamma","vDelta","vEpsilon","vZeta","vEta","vTheta","vIota","vKappa","vLambda","vMu","vNu","vOmicron","vXi","vPi","vRho","vSigma","vTau","vUpsilon","vPhi","vChi","vPsi","vOmega","bbA","bbB","bbC","bbD","bbE","bbF","bbG","bbH","bbI","bbJ","bbK","bbL","bbM","bbN","bbO","bbP","bbQ","bbR","bbS","bbT","bbU","bbV","bbW","bbX","bbY","bbZ","enclspacing","enclose","enclspacingSet","encloseSet","paren","clap","mathllap","mathrlap","mathclap","mathllapinternal","mathrlapinternal","mathclapinternal","mrepinternal","mrep"]}
-,
-"mathsemantics.sty":{"envs":{},"deps":["mathsemantics-commons.sty","mathsemantics-syntax.sty","mathsemantics-abbreviations.sty","mathsemantics-names.sty","mathsemantics-semantic.sty","mathsemantics-manifolds.sty","mathsemantics-optimization.sty"],"cmds":["C","K","N","Q","R","Z"]}
-,
-"mathspec.sty":{"envs":{},"deps":["xetex.sty","amstext.sty","etoolbox.sty","ifxetex.sty","fontspec.sty","xkeyval.sty","MnSymbol.sty"],"cmds":["setmathsfont","setmathfont","setmathrm","setmathsf","setmathtt","setmathcal","setmathbb","setmathfrak","setallmainfonts","setprimaryfont","setallsansfonts","setallmonofonts","exchangeforms","Alpha","Beta","Epsilon","Zeta","Eta","Iota","Kappa","Mu","Nu","Omicron","omicron","Rho","Tau","Chi","Digamma","digamma","varbeta","varkappa","varTheta","normalisevarforms","normalizevarforms","setminwhitespace","XeTeXDeclareMathSymbol","currentmathstyle","themkern","ernewcommand"]}
-,
-"mathstone.sty":{"envs":{},"deps":{},"cmds":["mathversion","textsb"]}
-,
-"mathstyle.sty":{"envs":{},"deps":{},"cmds":["mathstyle","mathstyledenom","currentmathstyle","fracstyle","genfrac","dfrac","tfrac","binom","tbinom","dbinom"]}
-,
-"mathswap.sty":{"envs":{},"deps":{},"cmds":["commaswap","dotswap","mathswapon","mathswapoff"]}
-,
-"mathtime.sty":{"envs":{},"deps":{},"cmds":["greekshape","enablesubscriptcorrection","disablesubscriptcorrection","heavymath","mathscr","mathbscr","mathbcal","varGamma","varDelta","varTheta","varLambda","varXi","varPi","varSigma","varUpsilon","varPhi","varPsi","varOmega","comp","setdif","cupprod","capprod","varkappa","widebar"]}
-,
-"mathtools.sty":{"envs":["crampedsubarray","dcases","multlined"],"deps":["keyval.sty","mhsetup.sty","graphicx.sty"],"cmds":["mathtoolsset","mathllap","mathrlap","mathmbox","mathclap","clap","mathmakebox","cramped","crampedllap","crampedrlap","crampedclap","crampedsubstack","smashoperator","adjustlimits","SwapAboveDisplaySkip","newtagform","renewtagform","usetagform","refeq","noeqref","xleftrightarrow","xLeftarrow","xhookleftarrow","xmapsto","xRightarrow","xLeftrightarrow","xhookrightarrow","xrightharpoondown","xleftharpoondown","xrightleftharpoons","xrightharpoonup","xleftharpoonup","xleftrightharpoons","xlongrightarrow","xlongleftarrow","underbracket","overbracket","underbrace","overbrace","LaTeXunderbrace","LaTeXoverbrace","newgathered","renewgathered","MultlinedHook","shoveleft","shoveright","MoveEqLeft","Aboxed","MakeAboxedCommand","ArrowBetweenLines","vdotswithin","shortvdotswithin","MTFlushSpaceAbove","MTFlushSpaceBelow","origjot","shortintertext","intertext","DeclarePairedDelimiter","DeclarePairedDelimiterX","DeclarePairedDelimiterXPP","reDeclarePairedDelimiterInnerWrapper","lparen","rparen","vcentcolon","ordinarycolon","coloneqq","eqqcolon","colonapprox","dblcolon","Coloneqq","Eqqcolon","Colonapprox","coloneq","eqcolon","colonsim","Coloneq","Eqcolon","Colonsim","approxcolon","Approxcolon","simcolon","Simcolon","colondash","Colondash","dashcolon","Dashcolon","nuparrow","ndownarrow","bigtimes","prescript","splitfrac","splitdfrac","xmathstrut","newcases","renewcases","upbracketfill","upbracketend","downbracketfill","downbracketend"]}
-,
-"matlab-prettifier.sty":{"envs":{},"deps":["textcomp.sty","xcolor.sty","listings.sty"],"cmds":["mlplaceholder","mlttfamily","mleditorphstyle","mlbwphstyle","mlpyglikephstyle"]}
-,
-"mattens.sty":{"envs":{},"deps":["amsmath.sty"],"cmds":["aS","Sa","bS","Sb","aSa","aSb","bSa","bSb","aCSa","bCSb","SetSymbFont","SetSymbStrut","SetArrowSkip","SetBarSkip","SetSymSubSkip","SetSymSupSkip","xusebox"]}
-,
-"mattex.sty":{"envs":{},"deps":["pgfkeys.sty","xstring.sty","siunitx.sty","xparse.sty","array.sty","collcell.sty"],"cmds":["Mset","Mval","Merr","Mnum","MSI","M","Mvallit","Merrlit","preparematrix","usematrix","header","noheader","mtdirectory","tabMval","tabMnum","tabMerr"]}
-,
-"maybemath.sty":{"envs":{},"deps":["amsmath.sty","bm.sty"],"cmds":["maybebmsf","maybebm","maybeitrm","maybeitsubscript","maybeit","mayberm","maybesf"]}
-,
-"maze.sty":{"envs":{},"deps":{},"cmds":["maze"]}
-,
-"mbboard.sty":{"envs":{},"deps":{},"cmds":["mathbb","bbfamily","textbb","Bbbk","bbAlpha","bbBeta","bbChi","bbDelta","bbEpsilon","bbEta","bbGamma","bbIota","bbKappa","bbLambda","bbMu","bbNu","bbOmega","bbOmicron","bbPhi","bbPi","bbPsi","bbRho","bbSigma","bbTau","bbTheta","bbUpsilon","bbXi","bbZeta","bbaleph","bbalpha","bbayin","bbbackslash","bbbeta","bbbeth","bbcent","bbchi","bbcoprod","bbdagesh","bbdalet","bbdelta","bbdigamma","bbdollar","bbepsilon","bbeta","bbeuro","bbfinalkaf","bbfinalmem","bbfinalnun","bbfinalpe","bbfinaltzadik","bbgamma","bbgimmel","bbhe","bbhet","bbiota","bbkaf","bbkappa","bblambda","bblamed","bblangle","bblbrace","bblbrack","bbmem","bbmho","bbmu","bbnabla","bbnu","bbnun","bbomega","bbomicron","bbpe","bbphi","bbpi","bbpound","bbpsi","bbqof","bbrangle","bbrbrace","bbrbrack","bbresh","bbrho","bbsamekh","bbshin","bbsigma","bbslash","bbslashSigma","bbslashlambda","bbslashnabla","bbtau","bbtav","bbtet","bbtheta","bbtzadik","bbupsilon","bbvarepsilon","bbvarkappa","bbvarphi","bbvarpi","bbvarrho","bbvarsigma","bbvartheta","bbvav","bbvert","bbxi","bbyen","bbyod","bbzayin","bbzeta","ctlig","stlig"]}
-,
-"mboxfill.sty":{"envs":{},"deps":{},"cmds":["mboxfill"]}
-,
-"mcaption.sty":{"envs":["margincap"],"deps":["changepage.sty"],"cmds":["margincapsep","margincap","endmargincap","margincapalign"]}
-,
-"mcexam.sty":{"envs":["mcquestions","mcanswerslist","mcanswers","mcquestioninstruction","mcexplanation","mcnotes"],"deps":["enumitem.sty","environ.sty","etoolbox.sty","longtable.sty","newfile.sty","pgffor.sty","xstring.sty"],"cmds":["mctheversion","mcexamoptions","question","answer","answernum","mcifoutput","mcsetupConcept","mcsetupExam","mcsetupKey","mcsetupAnswers","mcsetupAnalysis","mcversionlabelfmt","mcquestionlabelfmt","mcanswerlabelfmt"]}
-,
-"mciteplus.sty":{"envs":["mcitethebibliography"],"deps":{},"cmds":["ifmciteErrorOnUnknown","mciteErrorOnUnknowntrue","mciteErrorOnUnknownfalse","mcitedefaultmidpunct","mcitedefaultendpunct","mcitedefaultseppunct","mciteSetBstMidEndSepPunct","mciteSetMidEndSepPunct","mcitebstendpunct","mciteendpunct","mcitebstmidpunct","mcitemidpunct","mcitebstseppunct","mciteseppunct","themcitebibitemcount","themcitesubitemcount","ifmciteResetBibitemCount","mciteResetBibitemCountfalse","mciteResetBibitemCounttrue","mciteSetBstSublistMode","mciteSetSublistMode","mcitedefaultsublistlabel","mcitedefaultsublistbegin","mcitedefaultsublistend","mciteSetBstSublistLabelBeginEnd","mciteSetSublistLabelBeginEnd","mcitebstsublistbegin","mcitebstsublistend","mcitesublistbegin","mcitesublistend","mcitebstsublistlabel","mcitesublistlabel","mciteSubRef","mciteSubPageRef","mcitesubrefform","mciteBibitemArgI","mciteBibitemOptArgI","ifmciteBibitemOptArgI","mciteBibitemOptArgItrue","mciteBibitemOptArgIfalse","mciteCurheadBibitemArgI","mciteCurheadBibitemOptArgI","ifmciteCurheadBibitemOp","mciteCurheadBibitemOptrue","mciteCurheadBibitemOpfalse","mciteorgbibsamplelabel","mcitebibsamplelabel","mcitedefaultmaxwidthbibitemform","mcitedefaultmaxwidthsubitemform","mcitedefaultmaxwidthbibitemforminit","mcitedefaultmaxwidthsubitemforminit","mciteSetBstMaxWidthForm","mciteSetMaxWidthForm","mcitebstmaxwidthbibitemform","mcitebstmaxwidthsubitemform","mcitebstmaxwidthbibitemforminit","mcitebstmaxwidthsubitemforminit","mcitemaxwidthbibitem","mcitemaxwidthsubitem","mcitemaxwidthbibitemform","mcitemaxwidthsubitemform","mcitemaxcountbibitem","mcitemaxcountsubitem","EndOfBibitem","mciteOrgcite","mciteOrgnocite","mciteOrgbibitem","mcitetrackID","mcitebibtrackID","mciteauxout","mcitebibauxout","mciteCiteA","mciteCiteB","mciteCitePrehandlerArg","mciteCitePosthandlerArg","mciteCiteSecIDArg","mciteCiteFwdArg","mciteCiteOptArgI","mciteCiteOptArgII","mciteDoList","mciteExtraDoLists","mciteCiteAuxArg","mciteCiteTrackArg","mciteCiteListArg","mciteheadlist","mciteFwdCiteListArg","mciteBIBdecl","mciteBIBenddecl","mcitefwdBIBdecl","ifmciteBstWouldAddEndPunct","ifmciteCiteStarFwdArg","ifmciteCurheadBibitemOptArgI","ifmciteMacroOptArgI","ifmciteMacroOptArgII","ifmciteMacroStarForm","mcitebibitem","mciteBstWouldAddEndPunctfalse","mciteBstWouldAddEndPuncttrue","mciteCiteStarFwdArgfalse","mciteCiteStarFwdArgtrue","mciteCurheadBibitemOptArgIfalse","mciteCurheadBibitemOptArgItrue","mciteEndOfBibGroupPostsubcloseHook","mciteEndOfBibGroupPresubcloseHook","mciteGetMaxCount","mciteGetMaxWidth","mciteMacroOptArgIfalse","mciteMacroOptArgIIfalse","mciteMacroOptArgIItrue","mciteMacroOptArgItrue","mciteMacroStarFormfalse","mciteMacroStarFormtrue","mciteOrgbibliography","mciteSetMaxCount","mciteSetMaxWidth","mcitethebibliographyHook","mciteBACKREFform","mciteCITEREFform","mciteOrgBIBUNITSbibunit"]}
-,
-"mcmthesis.cls":{"envs":["Corollary","Definition","Example","Lemma","letter","keywords","memo","Proposition","Theorem"],"deps":["xkeyval.sty","etoolbox.sty","fancyhdr.sty","fancybox.sty","ifthen.sty","lastpage.sty","listings.sty","appendix.sty","paralist.sty","amsthm.sty","amsfonts.sty","amsmath.sty","bm.sty","amssymb.sty","mathrsfs.sty","latexsym.sty","longtable.sty","multirow.sty","hhline.sty","tabularx.sty","array.sty","flafter.sty","pifont.sty","calc.sty","colortbl.sty","booktabs.sty","geometry.sty","fontenc.sty","berasans.sty","hyperref.sty","ifpdf.sty","ifxetex.sty","environ.sty","graphicx.sty","epstopdf.sty","xcolor.sty"],"cmds":["mcmsetup","dif","headset","keywordsname","lhaddress","lstbasicfont","makesheet","MCMversion","me","memodate","memofrom","memologo","memosubject","memoto","mi","team","problem","DH","dh","dj","DJ","guillemetleft","guillemetright","guillemotleft","guillemotright","guilsinglleft","guilsinglright","Hwithstroke","hwithstroke","k","NG","ng","quotedblbase","quotesinglbase","textogonekcentered","textquotedbl","th","TH"]}
-,
-"mcode.sty":{"envs":{},"deps":["listings.sty","xcolor.sty"],"cmds":["mcode","mcodefn","lstbasicfont","mcommentfont","lbreakdots","fileversion","filedate"]}
-,
-"mcom-l.cls":{"envs":{},"deps":["s-amsart.cls"],"cmds":{}}
-,
-"mdframed.sty":{"envs":["mdframed"],"deps":["color.sty","kvoptions.sty","xparse.sty","xcolor.sty","tikz.sty","pstricks.sty"],"cmds":["newmdenv","renewmdenv","surroundwithmdframed","mdflength","mdfsetup","mdfdefinestyle","mdfapptodefinestyle","mdfsubtitle","mdfsubsubtitle","newmdtheoremenv","mdtheorem","mdfsplitboxwidth","mdfsplitboxtotalwidth","mdfsplitboxheight","mdfsplitboxdepth","mdfsplitboxtotalheight","mdfframetitleboxwidth","mdfframetitleboxtotalwidth","mdfframetitleboxheight","mdfframetitleboxdepth","mdfframetitleboxtotalheight","mdffootnoteboxwidth","mdffootnoteboxtotalwidth","mdffootnoteboxheight","mdffootnoteboxdepth","mdffootnoteboxtotalheight","mdftotallinewidth","mdfboundingboxwidth","mdfboundingboxtotalwidth","mdfboundingboxheight","mdfboundingboxdepth","mdfboundingboxtotalheight","mdfsubtitleheight","mdfsubsubtitleheight","themdfcountframes","mdfframedtitleenv","mdversion","mdframedpackagename","mdfmaindate","mdfrevision"]}
-,
-"mdputu.sty":{"envs":{},"deps":{},"cmds":["sishape","textsi","specialdigits"]}
-,
-"mdsymbol.sty":{"envs":{},"deps":["xkeyval.sty","amsmath.sty","textcomp.sty","etoolbox.sty","fltpoint.sty","calc.sty"],"cmds":["circledR","circledS","dagger","ddagger","mathdollar","mathparagraph","mathsection","mathsterling","yen","acwcirclearrowdown","acwcirclearrowleft","acwcirclearrowright","acwcirclearrowup","acwgapcirclearrow","acwleftarcarrow","acwnearcarrow","acwnwarcarrow","acwopencirclearrow","acwoverarcarrow","acwrightarcarrow","acwsearcarrow","acwswarcarrow","acwunderarcarrow","adots","approxeq","approxident","arceq","Assert","assert","awint","backcong","backneg","backprime","backpropto","backsim","backsimeq","backsimneqq","barV","Barv","barwedge","bdleftarcarrow","bdnearcarrow","bdnwarcarrow","bdoverarcarrow","bdrightarcarrow","bdsearcarrow","bdswarcarrow","bdunderarcarrow","because","beth","between","bigcapdot","bigcapplus","bigcupdot","bigcupplus","bigcurlyvee","bigcurlywedge","bigdoublevee","bigdoublewedge","bigoast","bigplus","bigsqcap","bigsqcapdot","bigsqcapplus","bigsqcupdot","bigsqcupplus","bigstar","bigtimes","bigveedot","bigwedgedot","blackdiamond","blacklozenge","blacktriangle","blacktriangledown","blacktriangleleft","blacktriangleright","blackwhitespoon","Box","boxbackslash","boxbar","boxbox","boxbslash","boxdiag","boxdot","boxminus","boxplus","boxslash","boxtimes","boxvert","bracemd","bracemid","bracemu","btimes","bumpeq","Bumpeq","bumpeqq","Cap","capdot","capplus","centerdot","checkmark","circeq","circlearrowleft","circlearrowright","circledast","circledcirc","circleddash","circledequal","circledvert","cirmid","closure","Colon","coloneq","coloneqq","complement","conjquant","coprodi","crossing","Cup","cupdot","cupplus","curlyeqprec","curlyeqsucc","curlyvee","curlywedge","curvearrowleft","curvearrowright","cwcirclearrowdown","cwcirclearrowleft","cwcirclearrowright","cwcirclearrowup","cwgapcirclearrow","cwleftarcarrow","cwnearcarrow","cwnwarcarrow","cwopencirclearrow","cwoverarcarrow","cwrightarcarrow","cwsearcarrow","cwswarcarrow","cwunderarcarrow","daleth","dasharrow","dashleftarrow","dashrightarrow","Dashv","dashV","DashV","dashVv","dawint","dbigcap","dbigcapdot","dbigcapplus","dbigcup","dbigcupdot","dbigcupplus","dbigcurlyvee","dbigcurlywedge","dbigdoublevee","dbigdoublewedge","dbigoast","dbigodot","dbigoplus","dbigotimes","dbigplus","dbigsqcap","dbigsqcapdot","dbigsqcapplus","dbigsqcup","dbigsqcupdot","dbigsqcupplus","dbigtimes","dbiguplus","dbigvee","dbigveedot","dbigwedge","dbigwedgedot","dconjquant","dcoprod","dcoprodi","Ddashv","ddisjquant","ddotdot","ddotsint","Ddownarrow","dfint","diameter","Diamond","diamondbackslash","diamondbslash","diamondcdot","diamonddiamond","diamonddot","diamondminus","diamondplus","diamondslash","diamondtimes","diamondvert","didotsint","diiiint","diiint","diint","dint","dintbar","dintBar","dintclockwise","dintctrclockwise","disjquant","divideontimes","divides","divslash","dlanddownint","dlandupint","dlcircleleftint","dlcirclerightint","dmodtwosum","doiiint","doiint","doint","dointclockwise","dointctrclockwise","dosum","dotcong","Doteq","doteqdot","dotminus","dotplus","dotsint","dotsminusdots","dottimes","doublebarwedge","doublecap","doublecup","doublesqcap","doublesqcup","doublevee","doublewedge","downarrowtail","downassert","downAssert","downbkarrow","downblackspoon","downdownarrows","downharpoonleft","downharpoonright","downlcurvearrow","downleftcurvedarrow","downlsquigarrow","downmapsto","Downmapsto","downmodels","downpitchfork","downrcurvearrow","downrightcurvedarrow","downrsquigarrow","downspoon","downtherefore","downuparrows","downupcurvearrow","downupharpoons","downupharpoonsleftright","downupsquigarrow","downvdash","downvDash","downVdash","downVDash","downwavearrow","downY","downzigzagarrow","dprod","dprodi","drcircleleftint","drcirclerightint","dsum","dsumint","dtimes","dualmap","dvarointclockwise","dvarointctrclockwise","eqcirc","eqcolon","eqdot","eqqcolon","eqsim","eqslantgtr","eqslantless","equal","fallingdotseq","fint","Finv","frowneq","frownsmile","Game","geqclosed","geqdot","geqq","geqslant","geqslantdot","geqslcc","gescc","gesdot","gesl","ggg","gggtr","gimel","gnapprox","gneq","gneqq","gnsim","gtcc","gtlpar","gtr","gtrapprox","gtrcc","gtrclosed","gtrdot","gtreqless","gtreqlessslant","gtreqqless","gtreqslantless","gtrless","gtrsim","gvertneqq","hateq","hdotdot","hdots","hknearrow","hknwarrow","hksearrow","hkswarrow","hookdownarrow","hookdownminus","hooknearrow","hooknwarrow","hooksearrow","hookswarrow","hookuparrow","hookupminus","hourglass","hslash","imageof","intbar","intBar","intclockwise","intctrclockwise","intercal","intprod","intprodr","invneg","invnot","Join","lambdabar","lambdaslash","landdownint","landupint","lAngle","langledot","largeblackcircle","largeblacksquare","largeblackstar","largecircle","largesquare","largetriangledown","largetriangleup","largewhitestar","lBrack","lcircleleftint","lcirclerightint","Ldsh","leadsto","leftarrowtail","leftassert","leftAssert","leftbkarrow","leftblackspoon","leftcurvedarrow","leftdowncurvedarrow","leftfootline","leftlcurvearrow","leftleftarrows","leftlsquigarrow","leftmapsto","Leftmapsto","leftmodels","leftpitchfork","leftrcurvearrow","leftrightarrows","leftrightblackspoon","leftrightcurvearrow","leftrightharpoondownup","leftrightharpoons","leftrightharpoonupdown","leftrightspoon","leftrightsquigarrow","leftrightwavearrow","leftrsquigarrow","leftspoon","leftsquigarrow","lefttherefore","leftthreetimes","leftupcurvedarrow","leftvdash","leftvDash","leftVdash","leftVDash","leftwavearrow","leftY","leqclosed","leqdot","leqq","leqslant","leqslantdot","leqslcc","lescc","lesdot","lesg","less","lessapprox","lesscc","lessclosed","lessdot","lesseqgtr","lesseqgtrslant","lesseqqgtr","lesseqslantgtr","lessgtr","lesssim","lgblkcircle","lgblksquare","lgwhtcircle","lgwhtsquare","lhd","lhookdownarrow","lhookleftarrow","lhooknearrow","lhooknwarrow","lhookrightarrow","lhooksearrow","lhookswarrow","lhookuparrow","lightning","lJoin","llcorner","Lleftarrow","lll","llless","lnapprox","lneq","lneqq","lnsim","longdashv","longleadsto","longleftfootline","longleftsquigarrow","longleftwavearrow","longmapsfrom","Longmapsfrom","Longmapsto","longrightfootline","longrightsquigarrow","longrightwavearrow","looparrowleft","looparrowright","lozenge","lozengeminus","lparen","lrcorner","lrtimes","lsem","Lsh","ltcc","ltimes","lvertneqq","lVvert","maltese","mapsdown","Mapsdown","mapsfrom","Mapsfrom","Mapsto","mapsup","Mapsup","mathcolon","mathratio","mathslash","mdblkdiamond","mdblklozenge","mdblksquare","mdlgblkcircle","mdlgblkdiamond","mdlgblklozenge","mdlgblksquare","mdlgwhtcircle","mdlgwhtdiamond","mdlgwhtlozenge","mdlgwhtsquare","mdwhtdiamond","mdwhtlozenge","mdwhtsquare","measuredangle","measuredangleleft","measuredrightangle","measuredrightangledot","medbackslash","medblackcircle","medblackdiamond","medblacklozenge","medblacksquare","medblackstar","medblacktriangledown","medblacktriangleleft","medblacktriangleright","medblacktriangleup","medcircle","meddiamond","medlozenge","medslash","medsquare","medstar","medtriangledown","medtriangleleft","medtriangleright","medtriangleup","medwhitestar","midcir","middlebar","middleslash","minus","minusdot","minusfdots","minushookdown","minushookup","minusrdots","modtwosum","multimap","multimapinv","nacwcirclearrowdown","nacwcirclearrowleft","nacwcirclearrowright","nacwcirclearrowup","nacwgapcirclearrow","nacwleftarcarrow","nacwnearcarrow","nacwnwarcarrow","nacwopencirclearrow","nacwoverarcarrow","nacwrightarcarrow","nacwsearcarrow","nacwswarcarrow","nacwunderarcarrow","napprox","napproxeq","napproxident","narceq","nassert","nAssert","nasymp","nbackcong","nbacksim","nbacksimeq","nbarV","nBarv","nbdleftarcarrow","nbdnearcarrow","nbdnwarcarrow","nbdoverarcarrow","nbdrightarcarrow","nbdsearcarrow","nbdswarcarrow","nbdunderarcarrow","nblackwhitespoon","nbumpeq","nBumpeq","nbumpeqq","ncirceq","ncirclearrowleft","ncirclearrowright","ncirmid","nclosure","ncong","ncurlyeqprec","ncurlyeqsucc","ncurvearrowleft","ncurvearrowright","ncwcirclearrowdown","ncwcirclearrowleft","ncwcirclearrowright","ncwcirclearrowup","ncwgapcirclearrow","ncwleftarcarrow","ncwnearcarrow","ncwnwarcarrow","ncwopencirclearrow","ncwoverarcarrow","ncwrightarcarrow","ncwsearcarrow","ncwswarcarrow","ncwunderarcarrow","ndasharrow","ndashleftarrow","ndashrightarrow","ndashv","nDashv","ndashV","nDashV","ndashVv","nDdashv","nDdownarrow","ndivides","ndoteq","nDoteq","ndownarrow","nDownarrow","ndownarrowtail","ndownassert","ndownAssert","ndownbkarrow","ndownblackspoon","ndowndownarrows","ndownharpoonleft","ndownharpoonright","ndownlcurvearrow","ndownleftcurvedarrow","ndownlsquigarrow","ndownmapsto","nDownmapsto","ndownmodels","ndownpitchfork","ndownrcurvearrow","ndownrightcurvedarrow","ndownrsquigarrow","ndownspoon","ndownuparrows","ndownupcurvearrow","ndownupharpoons","ndownupharpoonsleftright","ndownupsquigarrow","ndownvdash","ndownvDash","ndownVdash","ndownVDash","ndownwavearrow","ndualmap","Nearrow","nearrowtail","nebkarrow","neharpoonnw","neharpoonse","nelcurvearrow","nenearrows","neqcirc","neqdot","neqsim","neqslantgtr","neqslantless","nequal","nequiv","nercurvearrow","neswarrow","Neswarrow","neswarrows","neswcurvearrow","neswharpoonnwse","neswharpoons","neswharpoonsenw","nexists","nfallingdotseq","nfrown","nfrowneq","nfrownsmile","ngeq","ngeqclosed","ngeqdot","ngeqq","ngeqslant","ngeqslantdot","ngeqslcc","ngescc","ngesdot","ngesl","ngets","ngg","nggg","ngtcc","ngtr","ngtrapprox","ngtrcc","ngtrclosed","ngtrdot","ngtreqless","ngtreqlessslant","ngtreqqless","ngtreqslantless","ngtrless","ngtrsim","nhateq","nhknearrow","nhknwarrow","nhksearrow","nhkswarrow","nhookdownarrow","nhookleftarrow","nhooknearrow","nhooknwarrow","nhookrightarrow","nhooksearrow","nhookswarrow","nhookuparrow","nimageof","nin","nleadsto","nleftarrow","nLeftarrow","nleftarrowtail","nleftassert","nleftAssert","nleftbkarrow","nleftblackspoon","nleftcurvedarrow","nleftdowncurvedarrow","nleftfootline","nleftharpoondown","nleftharpoonup","nleftlcurvearrow","nleftleftarrows","nleftlsquigarrow","nleftmapsto","nLeftmapsto","nleftmodels","nleftpitchfork","nleftrcurvearrow","nleftrightarrow","nLeftrightarrow","nleftrightarrows","nleftrightblackspoon","nleftrightcurvearrow","nleftrightharpoondownup","nleftrightharpoons","nleftrightharpoonupdown","nleftrightspoon","nleftrightsquigarrow","nleftrightwavearrow","nleftrsquigarrow","nleftspoon","nleftsquigarrow","nleftupcurvedarrow","nleftvdash","nleftvDash","nleftVdash","nleftVDash","nleftwavearrow","nleq","nleqclosed","nleqdot","nleqq","nleqslant","nleqslantdot","nleqslcc","nlescc","nlesdot","nlesg","nless","nlessapprox","nlesscc","nlessclosed","nlessdot","nlesseqgtr","nlesseqgtrslant","nlesseqqgtr","nlesseqslantgtr","nlessgtr","nlesssim","nll","nLleftarrow","nlll","nlongdashv","nlongleadsto","nlongleftarrow","nLongleftarrow","nlongleftfootline","nlongleftrightarrow","nLongleftrightarrow","nlongleftsquigarrow","nlongleftwavearrow","nlongmapsfrom","nLongmapsfrom","nlongmapsto","nLongmapsto","nlongrightarrow","nLongrightarrow","nlongrightfootline","nlongrightsquigarrow","nlongrightwavearrow","nltcc","nmapsdown","nMapsdown","nmapsfrom","nMapsfrom","nmapsto","nMapsto","nmapsup","nMapsup","nmid","nmidcir","nmodels","nmultimap","nmultimapinv","nnearrow","nNearrow","nnearrowtail","nnebkarrow","nneharpoonnw","nneharpoonse","nnelcurvearrow","nnenearrows","nnercurvearrow","nneswarrow","nNeswarrow","nneswarrows","nneswcurvearrow","nneswharpoonnwse","nneswharpoons","nneswharpoonsenw","nni","nnwarrow","nNwarrow","nnwarrowtail","nnwbkarrow","nnwharpoonne","nnwharpoonsw","nnwlcurvearrow","nnwnwarrows","nnwrcurvearrow","nnwsearrow","nNwsearrow","nnwsearrows","nnwsecurvearrow","nnwseharpoonnesw","nnwseharpoons","nnwseharpoonswne","norigof","nowns","nparallel","nperp","npitchfork","nprec","nprecapprox","npreccurlyeq","npreceq","npreceqq","nprecsim","nrestriction","nrightarrow","nRightarrow","nrightarrowtail","nrightassert","nrightAssert","nrightbkarrow","nrightblackspoon","nrightcurvedarrow","nrightdowncurvedarrow","nrightfootline","nrightharpoondown","nrightharpoonup","nrightlcurvearrow","nrightleftarrows","nrightleftcurvearrow","nrightleftharpoons","nrightleftsquigarrow","nrightlsquigarrow","nrightmapsto","nRightmapsto","nrightmodels","nrightpitchfork","nrightrcurvearrow","nrightrightarrows","nrightrsquigarrow","nrightspoon","nrightsquigarrow","nrightupcurvedarrow","nrightvdash","nrightvDash","nrightVdash","nrightVDash","nrightwavearrow","nrisingdotseq","nRrightarrow","nsearrow","nSearrow","nsearrowtail","nsebkarrow","nseharpoonne","nseharpoonsw","nselcurvearrow","nsenwarrows","nsenwcurvearrow","nsenwharpoons","nsercurvearrow","nsesearrows","nshortdowntack","nshortlefttack","nshortmid","nshortparallel","nshortrighttack","nshortuptack","nsim","nsime","nsimeq","nsmile","nsmileeq","nsmilefrown","nsqsubset","nSqsubset","nsqsubseteq","nsqsubseteqq","nsqsupset","nSqsupset","nsqsupseteq","nsqsupseteqq","nstareq","nsubset","nSubset","nsubseteq","nsubseteqq","nsucc","nsuccapprox","nsucccurlyeq","nsucceq","nsucceqq","nsuccsim","nsupset","nSupset","nsupseteq","nsupseteqq","nswarrow","nSwarrow","nswarrowtail","nswbkarrow","nswharpoonnw","nswharpoonse","nswlcurvearrow","nswnearrows","nswnecurvearrow","nswneharpoons","nswrcurvearrow","nswswarrows","nto","ntriangleeq","ntriangleleft","ntrianglelefteq","ntriangleright","ntrianglerighteq","ntriplesim","ntwoheaddownarrow","ntwoheadleftarrow","ntwoheadnearrow","ntwoheadnwarrow","ntwoheadrightarrow","ntwoheadsearrow","ntwoheadswarrow","ntwoheaduparrow","nuparrow","nUparrow","nuparrowtail","nupassert","nupAssert","nupbkarrow","nupblackspoon","nupdownarrow","nUpdownarrow","nupdownarrows","nupdowncurvearrow","nupdownharpoonleftright","nupdownharpoonrightleft","nupdownharpoons","nupdownharpoonsleftright","nupdownsquigarrow","nupdownwavearrow","nupharpoonleft","nupharpoonright","nuplcurvearrow","nupleftcurvedarrow","nuplsquigarrow","nupmapsto","nUpmapsto","nupmodels","nuppitchfork","nuprcurvearrow","nuprightcurvearrow","nuprsquigarrow","nupspoon","nupuparrows","nupvdash","nupvDash","nupVdash","nupVDash","nupwavearrow","nUuparrow","nvardownwavearrow","nvarhookdownarrow","nvarhookleftarrow","nvarhooknearrow","nvarhooknwarrow","nvarhookrightarrow","nvarhooksearrow","nvarhookswarrow","nvarhookuparrow","nvarleftrightwavearrow","nvarleftwavearrow","nvarrightwavearrow","nvarupdownwavearrow","nvarupwavearrow","nVbar","nvBar","nvdash","nvDash","nVdash","nVDash","nvDdash","nveeeq","nvlongdash","nVvdash","Nwarrow","nwarrowtail","nwbkarrow","nwedgeq","nwharpoonne","nwharpoonsw","nwhiteblackspoon","nwlcurvearrow","nwnwarrows","nwrcurvearrow","nwsearrow","Nwsearrow","nwsearrows","nwsecurvearrow","nwseharpoonnesw","nwseharpoons","nwseharpoonswne","oast","obackslash","obslash","ocirc","odash","oequal","oiiint","oiint","ointclockwise","ointctrclockwise","origof","osum","overgroup","overleftharpoon","overlinesegment","overlining","overrightharpoon","overt","pitchfork","plusdot","precapprox","preccurlyeq","preceqq","precnapprox","precneq","precneqq","precnsim","precsim","prodi","propfrom","pullback","pushout","rAngle","rangledot","rBrack","rcircleleftint","rcirclerightint","Rdsh","restriction","revangle","revemptyset","revmeasuredangle","revsphericalangle","rhd","rhookdownarrow","rhookleftarrow","rhooknearrow","rhooknwarrow","rhookrightarrow","rhooksearrow","rhookswarrow","rhookuparrow","rightangle","rightanglemdot","rightanglesqr","rightanglesquare","rightarrowtail","rightassert","rightAssert","rightbkarrow","rightblackspoon","rightcurvedarrow","rightdowncurvedarrow","rightfootline","rightlcurvearrow","rightleftarrows","rightleftcurvearrow","rightleftsquigarrow","rightlsquigarrow","rightmapsto","Rightmapsto","rightmodels","rightpitchfork","rightrcurvearrow","rightrightarrows","rightrsquigarrow","rightspoon","rightsquigarrow","righttherefore","rightthreetimes","rightupcurvedarrow","rightvdash","rightvDash","rightVdash","rightVDash","rightwavearrow","rightY","risingdotseq","rJoin","rparen","Rrightarrow","rsem","Rsh","rtimes","rVvert","Searrow","searrowtail","sebkarrow","sector","seharpoonne","seharpoonsw","selcurvearrow","senwarrows","senwcurvearrow","senwharpoons","sercurvearrow","sesearrows","shortdowntack","shortlefttack","shortmid","shortparallel","shortrighttack","shortuptack","simneqq","smallblackcircle","smallblackdiamond","smallblacklozenge","smallblacksquare","smallblackstar","smallblacktriangledown","smallblacktriangleleft","smallblacktriangleright","smallblacktriangleup","smallcircle","smallcoprod","smallcoprodi","smalldiamond","smalldivslash","smallfrown","smalllozenge","smallprod","smallprodi","smallsetminus","smallsmile","smallsquare","smalltriangledown","smalltriangleleft","smalltriangleright","smalltriangleup","smallwhitestar","smblkcircle","smblkdiamond","smblklozenge","smblksquare","smileeq","smilefrown","smwhitestar","smwhtcircle","smwhtdiamond","smwhtlozenge","smwhtsquare","sphericalangle","sphericalangledown","sphericalangleleft","sphericalangleup","Sqcap","sqcapdot","sqcapplus","Sqcup","sqcupdot","sqcupplus","sqsubset","Sqsubset","sqsubseteqq","sqsubsetneq","sqsubsetneqq","sqsupset","Sqsupset","sqsupseteqq","sqsupsetneq","sqsupsetneqq","square","squaredots","stareq","starofdavid","strokethrough","Subset","subseteqq","subsetneq","subsetneqq","succapprox","succcurlyeq","succeqq","succnapprox","succneq","succneqq","succnsim","succsim","sumint","Supset","supseteqq","supsetneq","supsetneqq","Swarrow","swarrowtail","swbkarrow","swharpoonnw","swharpoonse","swlcurvearrow","swnearrows","swnecurvearrow","swneharpoons","swrcurvearrow","swswarrows","tawint","tbigcap","tbigcapdot","tbigcapplus","tbigcup","tbigcupdot","tbigcupplus","tbigcurlyvee","tbigcurlywedge","tbigdoublevee","tbigdoublewedge","tbigoast","tbigodot","tbigoplus","tbigotimes","tbigplus","tbigsqcap","tbigsqcapdot","tbigsqcapplus","tbigsqcup","tbigsqcupdot","tbigsqcupplus","tbigtimes","tbiguplus","tbigvee","tbigveedot","tbigwedge","tbigwedgedot","tconjquant","tcoprod","tcoprodi","tdisjquant","tdotsint","tfint","therefore","thickapprox","thicksim","tidotsint","tiiiint","tiiint","tiint","timesbar","tint","tintbar","tintBar","tintclockwise","tintctrclockwise","tlanddownint","tlandupint","tlcircleleftint","tlcirclerightint","tmodtwosum","toiiint","toiint","toint","tointclockwise","tointctrclockwise","tosum","tprod","tprodi","trcircleleftint","trcirclerightint","triangledown","triangleeq","trianglelefteq","triangleq","trianglerighteq","triplesim","tsum","tsumint","ttimes","turnedbackneg","turnedneg","turnednot","tvarointclockwise","tvarointctrclockwise","twoheaddownarrow","twoheadleftarrow","twoheadnearrow","twoheadnwarrow","twoheadrightarrow","twoheadsearrow","twoheadswarrow","twoheaduparrow","udotdot","udots","ulcorner","ullcorner","ulrcorner","undergroup","underlinesegment","unlhd","unrhd","uparrowtail","upassert","upAssert","upbkarrow","upblackspoon","upbowtie","updownarrows","updowncurvearrow","updownharpoonleftright","updownharpoonrightleft","updownharpoons","updownharpoonsleftright","updownsquigarrow","updownwavearrow","upharpoonleft","upharpoonright","uplcurvearrow","upleftcurvedarrow","uplsquigarrow","upmapsto","Upmapsto","upmodels","uppitchfork","uprcurvearrow","uprightcurvearrow","uprsquigarrow","upspoon","uptherefore","upuparrows","upvdash","upvDash","upVdash","upVDash","upwavearrow","upY","urcorner","utimes","Uuparrow","vardiamondsuit","vardownwavearrow","varheartsuit","varhookdownarrow","varhookleftarrow","varhooknearrow","varhooknwarrow","varhookrightarrow","varhooksearrow","varhookswarrow","varhookuparrow","varleftrightwavearrow","varleftwavearrow","varnothing","varointclockwise","varointctrclockwise","varpropto","varrightwavearrow","varsubsetneq","varsubsetneqq","varsupsetneq","varsupsetneqq","vartriangle","vartriangleleft","vartriangleright","varupdownwavearrow","varupwavearrow","Vbar","vBar","vDash","Vdash","VDash","vDdash","vdotdot","veebar","veedot","veedoublebar","veeeq","veeonvee","vlongdash","Vvdash","Vvert","wedgedot","wedgeonwedge","wedgeq","whiteblackspoon","wideparen","wreath","ifmathversionsans","overliningbox"]}
-,
-"mdwlist.sty":{"envs":["description*"],"deps":{},"cmds":["desclabelstyle","desclabelwidth","multilinelabel","nextlinelabel","pushlabel","resume","suspend"]}
-,
-"mdwmath.sty":{"envs":{},"deps":{},"cmds":["sqrt","sqrtdel","bitand","bitor","dblor","dbland","bbigg","bbiggl","bbiggr","bbiggm"]}
-,
-"mdwtab.sty":{"envs":["array","smarray","savenotes"],"deps":{},"cmds":["tabpause","vline","vgap","hlx","tabstyle","extrarowheight","tabextrasep","arrayextrasep","smarrayextrasep","smarraycolsep","newcolumntype","colset","colpush","colpop","coldef","tabcoltype","tabuserpretype","tabuserposttype","tabspctype","tabruletype","collet","hlxdef","ifinrange","ranges","showcol","showpream","savenotes","spewnotes","doafter"]}
-,
-"media4svg.sty":{"envs":{},"deps":["pdfbase.sty"],"cmds":["includemedia"]}
-,
-"media9.sty":{"envs":{},"deps":["ocgbase.sty","pdfbase.sty"],"cmds":["includemedia","addmediapath","mediabutton"]}
-,
-"meetingmins.cls":{"envs":["items","subitems","subsubitems","hiddenitems","hiddensubitems","hiddensubsubitems","hiddentext","emptysection","itemlist","subitemlist","subsubitemlist"],"deps":["geometry.sty","fontenc.sty","lmodern.sty","fancyhdr.sty","enumitem.sty","environ.sty","mathabx.sty","xstring.sty"],"cmds":["absent","alsopresent","chair","nextmeeting","priormins","role","secretary","setcommittee","setdate","setmembers","setpresent","DH","dh","dj","DJ","guillemetleft","guillemetright","guillemotleft","guillemotright","guilsinglleft","guilsinglright","Hwithstroke","hwithstroke","k","NG","ng","quotedblbase","quotesinglbase","textogonekcentered","textquotedbl","th","TH"]}
-,
-"membranecomputing.sty":{"envs":{},"deps":["ifthen.sty","xstring.sty"],"cmds":["wa","ia","ls","ms","im","rs","ps","vE","neuron","compartment","agent","degree","syn","iin","iout","yes","no","REG","mcREG","LIN","mcLIN","CF","CS","RE","mcRE","compSet","AM","mcAM","AMO","mcTC","TC","TDC","TSC","CC","CDC","CSC","TEC","TDEC","TSEC","CEC","CDEC","CSEC","Pfamily","PMC","PSPACEMC","EXPMC","EXPSPACEMC","complClass","psystem","psystemT","rpsystemT","psystemAM","rpsystemAM","psystemSA","rpsystemSA","SNpsystem","rSNpsystem","kpsystem","rkpsystem","pcolony","rpcolony","mcrule","rewriting","rewritingT","evolution","evolutionT","evolutionP","evolutionPT","pevolution","pevolutionT","pevolutionP","pevolutionPT","antiport","antiportT","symportT","antiportP","antiportPT","symportPT","sendin","sendinT","sendinP","sendinPT","psendin","psendinT","psendinP","psendinPT","sendout","sendoutT","sendoutP","sendoutPT","psendout","psendoutT","psendoutP","psendoutPT","dissolution","dissolutionT","dissolutionP","dissolutionPT","pdissolution","pdissolutionT","pdissolutionP","pdissolutionPT","division","divisionT","divisionP","divisionPT","pdivision","pdivisionT","pdivisionP","pdivisionPT","separation","separationT","separationP","separationPT","pseparation","pseparationT","pseparationP","pseparationPT","creation","creationT","creationP","creationPT","pcreation","pcreationT","pcreationP","pcreationPT","spiking","spikingT","forgettingT","spikingP","spikingPT","forgettingPT","krewriting","krewritingT","krewritingP","krewritingPT","linkcreation","linkcreationT","linkcreationP","linkcreationPT","linkdestruction","linkdestructionT","linkdestructionP","linkdestructionPT","tissueevolcomm","tissueevolcommT","tissueevolsympT","tissueevolcommP","tissueevolcommPT","tissueevolsympPT","evolcomm","evolcommT","evolsyminT","evolsymoutT","evolcommP","evolcommPT","evolsyminPT","evolsymoutPT"]}
-,
-"memhangul-common.sty":{"envs":{},"deps":["etoolbox.sty","xparse.sty","hologo.sty"],"cmds":["bnm","ccnm","cnm","cntrdot","cntrdots","cntrdotss","expldash","explpunc","LuaLaTeX","LuaTeX","obCaptionFont","obellipsis","obldots","oblivoirlist","oblivoirlists","ReleaseMacros","snm","trimKmarks","XeLaTeX","XeTeX","chapterindentfirst","defaultlist","divnote","divnotedelimclose","divnotedelimopen","divnoteskip","divnotestyle","HAlph","Halph","hchaptertitlehead","hfontfamilynameprefix","hparttitlehead","HROMAN","Hroman","htoffnt","Ktrimpicbl","Ktrimpicbr","Ktrimpictl","Ktrimpictr","memucsadjustwidthtopsep","obadjustlists","obCaptionnameClose","obCaptionnameOpen","oblivoirallowbreak","oblivoirdblquote","oblivoirquote","obparttitlealignment","pghgheadwidth","phantomchapter","postchapternum","postchaptertitle","postpartnum","prechapternum","prepartnum","refreshprepostchapters","SetFnmark","theAPPchapter","theAPPsection","theAPPsubsection","tmarkKbm","tmarkKml","tmarkKmr","tmarkKtm","XBrule","XErule"]}
-,
-"memhangul-x.sty":{"envs":{},"deps":["luatexko.sty","xob-font.sty","xob-dotemph.sty","hyperref.sty","memhfixc.sty","memhangul-common.sty","memucs-setspace.sty","polyglossia.sty","babel.sty","memucs-interword-x.sty"],"cmds":["sethangulfont","hangulfont","hangulfonttt","HUGE","kscntformat","regremph","ungremph","DisabledOption","ifKOTEXCJK","KOTEXCJKfalse","KOTEXCJKtrue","marginparswitchfalse","marginparswitchtrue","memucsinterwordchapterskiphook","memucsinterwordhook","nosetspace","reversemarginfalse","reversemargintrue","setxxxlength","subappendixname"]}
-,
-"memhfixc.sty":{"envs":{},"deps":{},"cmds":["bookautorefname","booknumberline","chapternumberline","endsidecaption","endsidecontcaption","endsubappendices","nameref","numberline","pagenoteanchor","partnumberline","printpageinnotes","theHchapter","theHmemhycontfloat","theHpagenote","theHsection","thememhycontfloat"]}
-,
-"memo-l.cls":{"envs":{},"deps":["s-amsbook.cls"],"cmds":["PII","revertcopyright","issuenote"]}
-,
-"memoir.cls":{"envs":["adjustwidth*"],"deps":["iftex.sty","dcolumn.sty","tabularx.sty","etoolbox.sty"],"cmds":["abnormalparskip","abovecaptionskip","abovecolumnspenalty","aboverulesep","abscolnamefont","abscoltextfont","abslabeldelim","absleftindent","absnamepos","absparindent","absparsep","absrightindent","abstitleskip","abstractcol","abstractintoc","abstractname","abstractnamefont","abstractnum","abstractrunin","abstracttextfont","addappheadtotoc","added","addlinespace","addperiod","addtodef","addtoiargdef","addtonotes","addtopsmarks","addtostream","afterbookskip","afterchapskip","afterchapternum","afterchaptertitle","afterepigraphskip","afterloftitle","afterlottitle","afterparaskip","afterpartskip","afterPoemTitle","afterPoemTitlenum","afterPoemTitleskip","afterpoemtitleskip","aftersecskip","aftersubparaskip","aftersubsecskip","aftersubsubsecskip","aftertoctitle","aliaspagestyle","alsoname","amname","and","andnext","anyptfilebase","anyptsize","appendixname","appendixpage","appendixpagename","appendixrefname","appendixtocname","Aref","arraybackslash","arraytostring","AtBeginClass","AtBeginFile","AtBeginPackage","atcentercr","AtEndClass","AtEndFile","AtEndPackage","atendtheglossaryhook","autocols","autorows","backmatter","baselinestretch","beforebookskip","beforechapskip","beforeepigraphskip","beforeparaskip","beforepartskip","beforePoemTitleskip","beforepoemtitleskip","beforesecskip","beforesubparaskip","beforesubsecskip","beforesubsubsecskip","begintheglossaryhook","belowcaptionskip","belowrulesep","bibintoc","bibitemsep","biblistextra","bibmark","bibname","bibsection","bicaption","bicontcaption","binding","bionenumcaption","bitwonumcaption","bktabrule","blockdescriptionlabel","book","bookblankpage","bookname","booknamefont","booknamenum","booknumberline","booknumberlinebox","booknumberlinehook","booknumfont","bookpageend","bookpagemark","bookrefname","booktitlefont","bottomrule","bottomsectionpenalty","bottomsectionskip","boxedverbatiminput","boxverbflag","Bref","bs","bvbox","bvboxsep","bvendofpage","bvendrulehook","bvleftsidehook","bvnumbersinside","bvnumbersoutside","bvnumlength","bvperpagefalse","bvperpagetrue","bvrightsidehook","bvsides","bvtopandtail","bvtopmidhook","bvtopofpage","bvtoprulehook","cal","calccentering","cancelthanksrule","caption","captiondelim","captionnamefont","captionsize","captionstyle","captiontitlefinal","captiontitlefont","captionwidth","cardinal","centerfloat","centerlastline","cftaddnumtitleline","cftaddtitleline","cftappendixname","cftbeforebookskip","cftbeforechapterskip","cftbeforefigureskip","cftbeforeparagraphskip","cftbeforepartskip","cftbeforesectionskip","cftbeforesubparagraphskip","cftbeforesubsectionskip","cftbeforesubsubsectionskip","cftbeforetableskip","cftbookafterpnum","cftbookaftersnum","cftbookaftersnumb","cftbookbreak","cftbookdotsep","cftbookfillnum","cftbookfont","cftbookformatpnum","cftbookformatpnumhook","cftbookindent","cftbookleader","cftbookname","cftbooknumwidth","cftbookpagefont","cftbookpresnum","cftchapterafterpnum","cftchapteraftersnum","cftchapteraftersnumb","cftchapterbreak","cftchapterdotsep","cftchapterfillnum","cftchapterfont","cftchapterformatpnum","cftchapterformatpnumhook","cftchapterindent","cftchapterleader","cftchaptername","cftchapternumwidth","cftchapterpagefont","cftchapterpresnum","cftdot","cftdotfill","cftdotsep","cftfigureafterpnum","cftfigureaftersnum","cftfigureaftersnumb","cftfiguredotsep","cftfigurefillnum","cftfigurefont","cftfigureformatpnum","cftfigureformatpnumhook","cftfigureindent","cftfigureleader","cftfigurename","cftfigurenumwidth","cftfigurepagefont","cftfigurepresnum","cftinsert","cftinsertcode","cftinserthook","cftlocalchange","cftnodots","cftpagenumbersoff","cftpagenumberson","cftparagraphafterpnum","cftparagraphaftersnum","cftparagraphaftersnumb","cftparagraphdotsep","cftparagraphfillnum","cftparagraphfont","cftparagraphformatpnum","cftparagraphformatpnumhook","cftparagraphindent","cftparagraphleader","cftparagraphname","cftparagraphnumwidth","cftparagraphpagefont","cftparagraphpresnum","cftparfillskip","cftparskip","cftpartafterpnum","cftpartaftersnum","cftpartaftersnumb","cftpartbreak","cftpartdotsep","cftpartfillnum","cftpartfont","cftpartformatpnum","cftpartformatpnumhook","cftpartindent","cftpartleader","cftpartname","cftpartnumwidth","cftpartpagefont","cftpartpresnum","cftsectionafterpnum","cftsectionaftersnum","cftsectionaftersnumb","cftsectiondotsep","cftsectionfillnum","cftsectionfont","cftsectionformatpnum","cftsectionformatpnumhook","cftsectionindent","cftsectionleader","cftsectionname","cftsectionnumwidth","cftsectionpagefont","cftsectionpresnum","cftsetindents","cftsubparagraphafterpnum","cftsubparagraphaftersnum","cftsubparagraphaftersnumb","cftsubparagraphdotsep","cftsubparagraphfillnum","cftsubparagraphfont","cftsubparagraphformatpnum","cftsubparagraphformatpnumhook","cftsubparagraphindent","cftsubparagraphleader","cftsubparagraphname","cftsubparagraphnumwidth","cftsubparagraphpagefont","cftsubparagraphpresnum","cftsubsectionafterpnum","cftsubsectionaftersnum","cftsubsectionaftersnumb","cftsubsectiondotsep","cftsubsectionfillnum","cftsubsectionfont","cftsubsectionformatpnum","cftsubsectionformatpnumhook","cftsubsectionindent","cftsubsectionleader","cftsubsectionname","cftsubsectionnumwidth","cftsubsectionpagefont","cftsubsectionpresnum","cftsubsubsectionafterpnum","cftsubsubsectionaftersnum","cftsubsubsectionaftersnumb","cftsubsubsectiondotsep","cftsubsubsectionfillnum","cftsubsubsectionfont","cftsubsubsectionformatpnum","cftsubsubsectionformatpnumhook","cftsubsubsectionindent","cftsubsubsectionleader","cftsubsubsectionname","cftsubsubsectionnumwidth","cftsubsubsectionpagefont","cftsubsubsectionpresnum","cfttableafterpnum","cfttableaftersnum","cfttableaftersnumb","cfttabledotsep","cfttablefillnum","cfttablefont","cfttableformatpnum","cfttableformatpnumhook","cfttableindent","cfttableleader","cfttablename","cfttablenumwidth","cfttablepagefont","cfttablepresnum","cftwhatismyname","changecaptionwidth","changed","changeglossactual","changeglossnum","changeglossnumformat","changeglossref","changemarks","changepage","changetext","changetocdepth","chapindent","chapnamefont","chapnumfont","chapter","chapterheadstart","chaptermark","chaptername","chapternamenum","chapternumberline","chapternumberlinebox","chapternumberlinehook","chapterprecis","chapterprecishere","chapterprecistoc","chapterrefname","chapterstyle","chaptitlefont","checkandfixthelayout","checkarrayindex","checkifinteger","checkoddpage","checkthelayout","cite","citeindexfile","cleardoublepage","clearforchapter","clearmark","clearplainmark","cleartoevenpage","cleartooddpage","cleartorecto","cleartoverso","closeinputstream","closeoutputstream","cmd","cmdprint","cmidrule","cmidrulekern","cmidrulewidth","cmrsideswitch","colorchapnum","colorchaptitle","commentsoff","commentson","contcaption","contentsname","continuousmarks","continuousnotenums","contsubbottom","contsubcaption","contsubtop","copypagestyle","counterwithin","counterwithout","cplabel","createmark","createplainmark","Cref","crtok","cs","ctableftskip","ctabrightskip","ctabsetlines","currenttitle","dashbox","date","defaultaddspace","defaultlists","defaultsecnum","deleted","DeleteShortVerb","descriptionlabel","DisemulatePackage","doccoltocetc","DoubleSpacing","downbracefill","dropchapter","droptitle","easypagecheck","eminnershape","emptythanks","EmulatedPackage","EmulatedPackageWithOptions","endMakeFramed","ensureonecol","epigraph","epigraphflush","epigraphfontsize","epigraphforheader","epigraphhead","epigraphpicture","epigraphposition","epigraphrule","epigraphsize","epigraphsourceposition","epigraphtextposition","epigraphwidth","everylistparindent","extrafeetendmini","extrafeetendminihook","extrafeetins","extrafeetinshook","extrafeetminihook","extrafeetreinshook","extratabsurround","fancybreak","fcardinal","feetabovefloat","feetatbottom","feetbelowfloat","feetbelowragged","figurename","figurerefname","firmlist","firmlists","FirstFrameCommand","firsthline","fixdvipslayout","fixheaderwidths","fixpdflayout","fixthelayout","flagverse","flegfigure","flegtable","flegtocfigure","flegtoctable","FloatBlock","FloatBlockAllowAbove","FloatBlockAllowBelow","flushleftright","fnumbersep","footfootmark","footfudgefiddle","footinsdim","footmarksep","footmarkstyle","footmarkwidth","footnote","footnotemark","footnoterule","footnotesatfoot","footnotesinmargin","footnotesize","footparindent","footref","footruleheight","footruleskip","footscript","foottextfont","foottopagenote","fordinal","foremargin","FrameCommand","framed","FrameHeightAdjust","framepichead","framepichook","framepictextfoot","FrameRestore","FrameRule","FrameSep","fref","frenchspacing","frontmatter","Ftrimpicbl","futurenonspacelet","getarrayelement","getthelinenumber","glossary","glossarycolsep","glossaryintoc","glossarymark","glossaryname","glossaryrule","glossaryspace","glossitem","gobm","hangcaption","hangfrom","hangpara","hangsecnum","hangsubcaption","hbadness","headdrop","headnameref","headstyles","headwidth","heavyrulewidth","hfuzz","hideindexmarks","hline","hmpunct","HUGE","hyperlink","hyperpage","hyperspindexpage","i","idtextinnotes","ifaltindent","altindenttrue","altindentfalse","ifanappendix","anappendixtrue","anappendixfalse","ifartopt","artopttrue","artoptfalse","ifbounderror","bounderrortrue","bounderrorfalse","ifbvcountinside","bvcountinsidetrue","bvcountinsidefalse","ifbvcountlines","bvcountlinestrue","bvcountlinesfalse","ifbvperpage","ifchangemarks","changemarkstrue","changemarksfalse","ifcntrmod","cntrmodtrue","cntrmodfalse","ifdonemaincaption","donemaincaptiontrue","donemaincaptionfalse","ifdraftdoc","draftdoctrue","draftdocfalse","ifextrafontsizes","extrafontsizestrue","extrafontsizesfalse","ifheadnameref","headnamereftrue","headnamereffalse","ifinteger","integertrue","integerfalse","iflowernumtoname","lowernumtonametrue","lowernumtonamefalse","ifmakeordinal","makeordinaltrue","makeordinalfalse","ifmemhyperindex","memhyperindextrue","memhyperindexfalse","ifmemlandscape","memlandscapetrue","memlandscapefalse","ifmempagenotes","mempagenotestrue","mempagenotesfalse","ifmemtortm","memtortmtrue","memtortmfalse","ifminusnumber","minusnumbertrue","minusnumberfalse","ifmsdoc","msdoctrue","msdocfalse","ifnamesubappendix","namesubappendixtrue","namesubappendixfalse","ifnobibintoc","nobibintoctrue","nobibintocfalse","ifnoglossaryintoc","noglossaryintoctrue","noglossaryintocfalse","ifnoindexintoc","noindexintoctrue","noindexintocfalse","ifnotcntrmod","notcntrmodtrue","notcntrmodfalse","ifnotnumtonameallcaps","notnumtonameallcapstrue","notnumtonameallcapsfalse","ifoddpage","oddpagetrue","oddpagefalse","ifonecolglossary","onecolglossarytrue","onecolglossaryfalse","ifonecolindex","onecolindextrue","onecolindexfalse","ifonlyfloats","ifpattern","patterntrue","patternfalse","ifpriornum","priornumtrue","priornumfalse","ifraggedbottomsection","raggedbottomsectiontrue","raggedbottomsectionfalse","ifreportnoidxfile","reportnoidxfiletrue","reportnoidxfilefalse","ifreversesidepar","ifsamename","samenametrue","samenamefalse","ifscapmargleft","scapmarglefttrue","scapmargleftfalse","ifshowheadfootloc","showheadfootloctrue","showheadfootlocfalse","ifshowindexmark","showindexmarktrue","showindexmarkfalse","ifshowtextblockloc","showtextblockloctrue","showtextblocklocfalse","ifshowtrims","showtrimstrue","showtrimsfalse","ifsidebaroneside","sidebaronesidetrue","sidebaronesidefalse","ifsideparswitch","sideparswitchtrue","sideparswitchfalse","ifstarpattern","starpatterntrue","starpatternfalse","IfStreamOpen","ifstrictpagecheck","ignorenoidxfile","iiirdstring","iindstring","indentafterchapter","indentcaption","indentpattern","indexcolsep","indexintoc","indexmark","indexmarkstyle","indexname","indexrule","indexspace","insertchapterspace","iscntrmod","isopage","iststring","itemsepi","itemsepii","itemsepiii","justlastraggedleft","KeepFromToc","keepthetitle","killtitle","LARGE","Large","LastFrameCommand","lasthline","lastlineparrule","lastlinerulefill","lcminusname","leadpagetoclevel","leavespergathering","leftbar","leftcenterright","leftspringright","legend","letcountercounter","lightrulewidth","linemodnum","linenottooshort","linenumberfont","linenumberfrequency","linespercol","listfigurename","listtablename","lofheadstart","lofmark","loosesubcaptions","lotheadstart","lotmark","lowermargin","Ltrimpicbl","Ltrimpicbr","Ltrimpictl","Ltrimpictr","lxvchars","m","mainmatter","makechapterstyle","makeevenfoot","makeevenhead","makefootmark","makefootmarkhook","makefootrule","MakeFramed","makeglossary","makeheadfootruleprefix","makeheadfootstrut","makeheadfootvposition","makeheadposition","makeheadrule","makeheadstyles","makeindex","makelabel","makememglossaryhook","makememindexhook","makeoddfoot","makeoddhead","makepagenote","makepagestyle","makepsmarks","makerunningfootwidth","makerunningheadwidth","makerunningwidth","MakeShortVerb","makesidefootmark","makesidefootmarkhook","MakeTextLowercase","MakeTextUppercase","makethanksmark","makethanksmarkhook","maketitle","maketitlehooka","maketitlehookb","maketitlehookc","maketitlehookd","marg","marginfloatmarginmacro","marginparmargin","markboth","markright","maxsecnumdepth","maxtocdepth","medievalpage","medspace","memappchapinfo","memappchapstarinfo","memapppageinfo","memapppagestarinfo","membicaptioninfo","membionenumcaptioninfo","membitwonumcaptioninfo","membookinfo","membookstarinfo","memcaptioninfo","memchapinfo","memchapstarinfo","memcline","memdskips","memdskipstretch","memendofchapterhook","memfblineboxa","memfblineboxtwo","memfblistfixparams","memfontenc","memfontfamily","memfontpack","memglodesc","memglofile","memglonum","memgloref","memgloterm","memgobble","memhline","memifmacroused","memjustarg","memleadpageinfo","memleadpagestarinfo","memlegendinfo","memletcmdtxt","memlettxttxt","memlettxtcmd","memlistsubcaptions","memnamedlegendinfo","memoirpostopthook","memorigdbs","memorigpar","mempartinfo","mempartstarinfo","memPD","mempnofilewarn","mempoeminfo","mempoemstarinfo","memPoemTitleinfo","memPoemTitlestarinfo","mempostaddapppagetotochook","mempostaddbooktotochook","mempostaddchaptertotochook","mempostaddparttotochook","mempreaddapppagetotochook","mempreaddbooktotochook","mempreaddchaptertotochook","mempreaddparttotochook","MemRestoreOrigMakecase","memRTLleftskip","memRTLmainraggedleft","memRTLmainraggedright","memRTLraggedleft","memRTLraggedright","memRTLrightskip","memRTLvleftskip","memRTLvrightskip","memsavefootnote","memsavepagenote","memsecinfo","memsecstarinfo","memsetcounter","memsetlengthmax","memsetlengthmin","memsetmacrounused","memsetmacroused","memUChead","memversion","memwritetoglo","mergepagefloatstyle","meta","midbicaption","midbookskip","midchapskip","MidFrameCommand","midpartskip","midPoemTitleskip","midrule","midsloppy","miniscule","minusname","mit","morecmidrules","movetoevenpage","movetooddpage","mpjustification","msdoublespacing","mssinglespacing","multfootsep","multiplefootnotemarker","multiput","namedlegend","namedsubappendices","namenumberand","namenumbercomma","namerefoff","namerefon","nametest","Needspace","needspace","newarray","newblock","newcomment","newfixedcaption","newfloat","newfootnoteseries","newinputstream","newleadpage","newlistentry","newlistof","newloglike","newoutputstream","newpmemlabel","newsubfloat","nexttoken","nNamec","nNamei","nNameii","nNameiii","nNameiv","nNameix","nNamel","nNamelx","nNamelxx","nNamelxxx","nNamem","nNamemm","nNamemmm","nNameo","nNamev","nNamevi","nNamevii","nNameviii","nNamex","nNamexc","nNamexi","nNamexii","nNamexiii","nNamexiv","nNamexix","nNamexl","nNamexv","nNamexvi","nNamexvii","nNamexviii","nNamexx","nNamexxx","nobibintoc","nobookblankpage","nobvbox","NoCaseChange","nochangemarks","noDisplayskipStretch","noglossaryintoc","noindentafterchapter","noindexintoc","nonzeroparskip","nopartblankpage","nopfbreakOutput","noprelistbreak","normalbottomsection","normalcaption","normalcaptionwidth","normalrulethickness","normalsubcaption","notedivision","noteidinnotes","noteinnotes","notenuminnotes","notenumintext","notepageref","notesname","nouppercaseheads","nthNamei","nthNameii","nthNameiii","nthNameiv","nthNameix","nthNamel","nthNamelx","nthNamelxx","nthNamelxxx","nthNameo","nthNamev","nthNamevi","nthNamevii","nthNameviii","nthNamexc","nthNamexii","nthNamexl","nthNamexx","nthNamexxx","nthstring","numberline","numberlinebox","numberlinehook","NumberPoemTitle","numdigits","NumToName","numtoName","numtoname","oarg","onecolglossary","onecolindex","onecoltocetc","OnehalfSpacing","onelineskip","openany","openinputfile","openleft","openoutputfile","openright","ordinal","OrdinalToName","ordinaltoName","ordinaltoname","ordscript","ordstring","oval","overridescapmargin","pageai","pageaii","pageaiii","pageaiv","pageao","pageav","pageavi","pageavii","pagebi","pagebii","pagebiii","pagebiv","pagebo","pagebroadsheet","pagebv","pagebvi","pagebvii","pagecrownvo","pagedbill","pagedemyvo","pageexecutive","pagefoolscapvo","pageimperialvo","pageinnotes","pagelargecrownvo","pagelargepostvo","pageledger","pagelegal","pageletter","pagemcrownvo","pagemdemyvo","pagemediumvo","pagemlargecrownvo","pagemsmallroyalvo","pagename","pagenote","pagenoteanchor","pagenotehyperanchor","pagenotesubhead","pagenotesubheadstarred","pageold","pagepostvo","pagepottvo","pagerefname","pageroyalvo","pagesmalldemyvo","pagesmallroyalvo","pagestatement","pagesuperroyalvo","pagetofootnote","paragraph","paragraphfootnotes","paragraphfootstyle","paraheadstyle","parahook","paraindent","parg","parnopar","parsepi","parsepii","part","partblankpage","partmark","partname","partnamefont","partnamenum","partnumberline","partnumberlinebox","partnumberlinehook","partnumfont","partopsepii","partopsepiii","partpageend","partrefname","parttitlefont","patchcmdError","patchcommand","pfbreak","pfbreakdisplay","pfbreakOutput","pfbreakskip","phantomsection","plainbreak","plainfancybreak","plainfootnotes","plainfootstyle","PlainPoemTitle","pmemlabel","pmemlabelref","pmname","pnchap","pnschap","PoemTitle","poemtitle","PoemTitlefont","poemtitlefont","PoemTitleheadstart","poemtitlemark","PoemTitlenumfont","poemtitlepstyle","poemtitlestarmark","poemtitlestarpstyle","poemtoc","postauthor","postautotab","postbibhook","postcaption","postchapterprecis","postdate","postitle","postnoteinnotes","postnotetext","posttitle","preauthor","preautotab","prebibhook","precaption","prechapterprecis","prechapterprecisshift","precisfont","precistocfont","precistocformat","precistoctext","predate","pref","Pref","preglossaryhook","preindexhook","prenoteinnotes","prenotetext","pretitle","printbookname","printbooknum","printbooktitle","printchaptername","printchapternonum","printchapternum","printchaptertitle","printglossary","printindex","printloftitle","printlottitle","printpageinnotes","printpageinnoteshyperref","printpagenotes","printpartname","printpartnum","printparttitle","printPoemTitlenonum","printPoemTitlenum","printPoemTitletitle","printtime","printtoctitle","protect","providecounter","provideenvironment","providefixedcaption","providelength","provideloglike","put","qbezier","qbeziermax","qitem","qitemlabel","quarkmarks","raggedbottomsection","raggedrightthenleft","raggedwrap","raggedyright","ragrparindent","readaline","readboxedverbatim","readstream","readverbatim","refixpagelayout","registrationColour","renewfixedcaption","renewleadpage","reparticle","reportnoidxfile","RequireAtEndClass","RequireAtEndPackage","RequireXeTeX","resetbvlinenumber","restoreapp","restorefromonecol","restorepagenumber","restoretrivseps","reversesideparfalse","reversesidepartrue","russianpar","savepagenumber","savetrivseps","saythanks","sc","scriptsize","secheadstyle","sechook","secindent","section","sectionmark","sectionname","sectionrefname","see","seealso","seename","semiisopage","setafterparaskip","setaftersecskip","setaftersubparaskip","setaftersubsecskip","setaftersubsubsecskip","setarrayelement","setbeforeparaskip","setbeforesecskip","setbeforesubparaskip","setbeforesubsecskip","setbeforesubsubsecskip","setbiblabel","setbinding","setbvlinenums","setcolsepandrule","setDisplayskipStretch","setfillsize","setfloatadjustment","setFloatBlockFor","setfloatlocations","setFloatSpacing","setfootins","setfootnoterule","sethangfrom","setheaderspaces","setheadfoot","setlrmargins","setlrmarginsandblock","setlxvchars","setmarginfloatcaptionadjustment","setmarginnotes","setmpbools","setmpjustification","setnzplist","setpagebl","setpagebm","setpagebr","setpagecc","setpagemm","setpageml","setpagemr","setPagenoteSpacing","setpagetl","setpagetm","setpagetr","setparaheadstyle","setparahook","setparaindent","setpnumwidth","setrectanglesize","setrmarg","setsecheadstyle","setsechook","setsecindent","setsecnumdepth","setsecnumformat","setsidebarheight","setsidebars","setsidecappos","setsidecaps","setsidefeet","setsidefootheight","setSingleSpace","setSpacing","setspbools","setspcode","setstocksize","setsubparaheadstyle","setsubparahook","setsubparaindent","setsubsecheadstyle","setsubsechook","setsubsecindent","setsubsubsecheadstyle","setsubsubsechook","setsubsubsecindent","setthesection","settocdepth","settocpreprocessor","settrimmedsize","settrims","settypeblocksize","settypeoutlayoutunit","setulmargins","setulmarginsandblock","setupcomment","setverbatimbreak","setverbatimfont","setverselinenums","setxlvchars","shaded","shortsubcaption","showcols","showheadfootlocoff","showheadfootlocon","showindexmarks","showtextblocklocoff","showtextblocklocon","showtextblockoff","showtrimsoff","showtrimson","sidcapwidth","sidebar","sidebarfont","sidebarform","sidebarhsep","sidebarmargin","sidebartopsep","sidebarvsep","sidebarwidth","sidecapfloatwidth","sidecapmargin","sidecapraise","sidecapsep","sidecapstyle","sidecapwidth","sidecontents","sidefootadjust","sidefootcontents","sidefootfootmark","sidefootform","sidefootheight","sidefoothsep","sidefootins","sidefootmargin","sidefootmarksep","sidefootmarkstyle","sidefootmarkwidth","sidefootnote","sidefootnotemark","sidefootnotetext","sidefootparindent","sidefootscript","sidefoottextfont","sidefootvsep","sidefootwidth","sideins","sidepar","sideparfont","sideparform","sideparmargin","sideparvshift","SingleSpacing","slashfrac","slashfracstyle","sloppybottom","snugshade","sourceatright","sourceflush","specialindex","specialrule","spinemargin","Sref","stanzaskip","startnoteentry","startnoteentrystart","stockai","stockaii","stockaiii","stockaiv","stockao","stockav","stockavi","stockavii","stockbi","stockbii","stockbiii","stockbiv","stockbo","stockbroadsheet","stockbv","stockbvi","stockbvii","stockcrownvo","stockdbill","stockdemyvo","stockexecutive","stockfoolscapvo","stockheight","stockimperialvo","stocklargecrownvo","stocklargepostvo","stockledger","stocklegal","stockletter","stockmcrownvo","stockmdemyvo","stockmediumvo","stockmlargecrownvo","stockmsmallroyalvo","stockold","stockpostvo","stockpottvo","stockroyalvo","stocksmalldemyvo","stocksmallroyalvo","stockstatement","stocksuperroyalvo","stockwidth","strictpagecheck","strictpagecheckfalse","strictpagechecktrue","stringtoarray","subbottom","subcaption","subcaptionfont","subcaptionlabelfont","subcaptionref","subcaptionsize","subcaptionstyle","subconcluded","subfloatbottomskip","subfloatcapmargin","subfloatcapskip","subfloatcaptopadj","subfloatlabelskip","subfloattopskip","subitem","subparagraph","subparaheadstyle","subparahook","subparaindent","subsecheadstyle","subsechook","subsecindent","subsection","subsubitem","subsubsecheadstyle","subsubsechook","subsubsecindent","subsubsection","subtop","symboldef","symbollabel","symbolthanksmark","tablename","tablerefname","tabsoff","tabson","tabularnewline","tabularxcolumn","tamark","teennumbername","teenordinalname","teenstring","tensnumbername","tensordinalname","tensunitsep","textflush","thanks","thanksfootextra","thanksfootmark","thanksgap","thanksheadextra","thanksmark","thanksmarksep","thanksmarkseries","thanksmarkstyle","thanksmarkwidth","thanksrule","thanksscript","theauthor","thebook","thebvlinectr","thechapter","thechrsinstr","thedate","theHbook","theHpoem","theHpoemline","thelastpage","thelastsheet","themaxsecnumdepth","thememfbvline","thememfvsline","thepagenote","thepagenoteshadow","theparagraph","thepart","thepoem","thepoemline","thesection","thesheetsequence","thesidefootnote","thesidempfn","thestoredpagenumber","thesubparagraph","thesubsection","thesubsubsection","thetitle","theTitleReference","theverse","thevslineno","thicklines","thinlines","threecolumnfootnotes","threecolumnfootstyle","tiethstring","tightlist","tightlists","tightsubcaptions","titleref","titlingpageend","tmarkbl","tmarkbm","tmarkbr","tmarkml","tmarkmr","tmarktl","tmarktm","tmarktr","tocbaseline","tocentryskip","tocheadstart","tocmark","tocnameref","tocskip","today","toprule","topsepi","topsepii","topsepiii","tracingtabularx","traditionalparskip","tref","trimedge","trimFrame","trimLmarks","trimmark","trimmarks","trimmarkscolor","trimNone","trimtop","trimXmarks","tt","twocolglossary","twocolindex","twocoltocetc","twocolumnfootnotes","twocolumnfootstyle","typeoutlayout","typeoutstandardlayout","ucminusname","undodrop","unitnumbername","unitordinalname","unletcounter","unnamedsubappendices","uppercaseheads","uppermargin","usethanksrule","vector","verb","verbatimbreakchar","verbatimindent","verbatiminput","verbfootnote","verselinebreak","verselinenumbersleft","verselinenumbersright","versewidth","vgap","vin","vindent","vinphantom","vleftmargin","vleftofline","vleftskip","vlvnumfont","vrightskip","width","wrappingoff","wrappingon","wrapright","x","xindyindex","xlvchars","zerotrivseps"]}
-,
-"memory.sty":{"envs":{},"deps":{},"cmds":["newdata"]}
-,
-"memorygraphs.sty":{"envs":{},"deps":["tikz.sty","tikzlibrarycalc.sty","tikzlibrarypositioning.sty","tikzlibraryshapes.sty"],"cmds":["arg","pgfaddtoshape"]}
-,
-"memucs-setspace.sty":{"envs":["singlespace","singlespace*","spacing","onehalfspace","doublespace"],"deps":{},"cmds":["displayskipstretch","setdisplayskipstretch","memucsfninterwordhook","noadjustquotespacing","adjustquotespacing","adjustfloatfnspacing","noadjustfloatfnspacing","setstretch","SetSinglespace","SetHangulspace","SetHangulVerbatimSpace","ResetHangulspace","RestoreHangulspace","singlespacing","hangulspacing","hangulfspacing","hangulverbspacing","onehalfspacing","doublespacing","epigraphspacinghook","epigraphspacing","filename","filedate","fileversion"]}
-,
-"mensa-tex.cls":{"envs":{},"deps":["array.sty","colortbl.sty","datetime2.sty","datetime2-calc.sty","geometry.sty","graphicx.sty","lmodern.sty","textcomp.sty","xcolor.sty"],"cmds":["mensaname","institute","setimage","startdate","monday","tuesday","wednesday","thursday","friday","longremarks","shortremarks","sup","vgt","vgn","setbgcolor","setcolorfg","setctextcolor","bgcolor","colorfg","ctextcolor","menuname","dessertname","dinnername","dietname","shortdate","dowshortdate","longdate","daterange","wdayname","swdayname"]}
-,
-"menu.sty":{"envs":["menufolder"],"deps":["xspace.sty","bbding.sty","fancybox.sty","color.sty"],"cmds":["menu","menuitem","menuitemactive","menuseparator","menutext","menumathsymbols","menusymbols","menufolderentry","menuitemactivesymbol","menuitemlength","menusep","ifmenuoptionhand","menuoptionhandtrue","menuoptionhandfalse","ifmenuoptionframed","menuoptionframedtrue","menuoptionframedfalse","ifmenuoptiongrey","menuoptiongreytrue","menuoptiongreyfalse","gt","filedate","fileversion"]}
-,
-"menucard.sty":{"envs":["Group","Group*","menugroup","menugroup*","menugroupsc","menugroupsc*"],"deps":["soul.sty","xcolor.sty"],"cmds":["ColTextColor","ColSubTextColor","zapf","Allergens","Entry","Entrycount","Expl","ColSubText","ColText","themenucount"]}
-,
-"menukeys.sty":{"envs":{},"deps":["adjustbox.sty","kvoptions.sty","tikz.sty","tikzlibraryshapes.symbols.sty","xcolor.sty"],"cmds":["menu","directory","keys","newmenustylesimple","renewmenustylesimple","providemenustylesimple","newmenustyle","renewmenustyle","providemenustyle","CurrentMenuElement","usemenucolor","drawtikzfolder","copymenustyle","changemenuelement","changemenucolortheme","newmenucolortheme","copymenucolortheme","changemenucolor","renewmenucolortheme","newmenumacro","renewmenumacro","providemenumacro","shift","capslock","tab","esc","oldesc","ctrl","Alt","AltGr","cmd","Space","SPACE","return","enter","winmenu","backspace","del","backdel","arrowkeyup","arrowkeydown","arrowkeyright","arrowkeyleft","arrowkey","ctrlname","delname","spacename"]}
-,
-"mercatormap.sty":{"envs":["mrcroute","mrcroute*"],"deps":["expl3.sty","graphicx.sty","pdftexcmds.sty","siunitx.sty","tikz.sty","tikzlibraryshadings.sty","xparse.sty"],"cmds":["mermapset","mrcdefinemap","mrcmapeast","mrcmapnorth","mrcmapsouth","mrcmapwest","mrcmapattribution","mrcmapattributionprint","mrcpixelheight","mrcpixelwidth","mrcpgfpoint","mrcNPdef","mrcNPfrompoint","mrcNPcs","mrcNPlat","mrcNPlon","ifmrcinmap","ifmrcNPinmap","ifmrcinvicinity","ifmrcNPinvicinity","mrcformlat","mrcformlon","mrcactivatescript","mrcsupplymap","mermapsetsupply","mrcsetapikey","mrcumlaut","mrcapplymap","mrcmap","mrcnewsupplysource","mrcdrawmap","mrcclipmap","mrcboundmap","mrcdrawnetwork","mrcdrawinfo","mrctexwidth","mrctexheight","mrcscale","mrctextokm","mrctextomile","mrckmtotex","mrcmiletotex","mrcmapscaledenominator","mrcprettymapscale","mrcprettymapwidth","mrcprettymapheight","mrcprettymapresolution","mrcprettytilesize","mrcdrawscalebar","mrcmarker","mermapsetmarker","mrcmarkerangle","mrcmarkercategory","mrcmarkercontents","mrcmarkerdistance","mrcmarkerfont","mrcmarkergeneric","mrcmarkerinnerradius","mrcmarkerlatitude","mrcmarkerlongitude","mrcmarkerpictocontents","mrcmarkerradius","mrcmarkershift","mrcmarkeruuid","mrcnewmarkertype","mrcnewmarkerstyle","mrcrouteinput","mrcpoint","mrcdraworthodrome","mrcNPdraworthodrome","mrcprettyorthodistance","mrcNPprettyorthodistance","mrcstoreorthodistance","mrcprettyloxodistance","mrcNPprettyloxodistance","mrcstoreloxodistance","mermaplastfivesum","mrcpkgprefix"]}
-,
-"merge.sty":{"envs":["merge"],"deps":{},"cmds":{}}
-,
-"mergeh.sty":{"envs":["merge"],"deps":{},"cmds":["perc"]}
-,
-"merriweather.sty":{"envs":{},"deps":["ifxetex.sty","ifluatex.sty","xkeyval.sty","textcomp.sty","fontenc.sty","fontaxes.sty"],"cmds":["merriweather","merriweathersans","merriweatherlight","merriweathersanslight","merriweatherblack","merriweathersansblack","merriweatherfamily","merriweathersffamily"]}
-,
-"messagebubbles.sty":{"envs":{},"deps":["pbox.sty","fancybox.sty"],"cmds":["messagebubbleleft","messagebubbleright","messagebubble","messagebubblewidth","adjustvspace","timestampright","timestampleft","timestamp"]}
-,
-"messagepassing.sty":{"envs":["messagepassing"],"deps":["tikz.sty","tikzlibraryquotes.sty","tikzlibrarycalc.sty","xparse.sty","float.sty"],"cmds":["newprocess","newprocesswithlength","processlength","newprocesswithstateinterval","newprocesswithcrash","drawtimeline","send","sendwithname","sendoutofband","crash","restart","checkpoint","checkpointspecial","stateinterval","stateintervalspecial","colouredbox","annotate","annotatexplicit","sendwithstateinterval","sendwithstateintervalandname","colouredboxcolor","oobcolor","themaxtime","theprocessnb","iftimeline","timelinetrue","timelinefalse"]}
-,
-"metainfo.sty":{"envs":{},"deps":{},"cmds":["typesetmetainfo"]}
-,
-"metalogo.sty":{"envs":{},"deps":["graphicx.sty","ifxetex.sty"],"cmds":["XeTeX","XeLaTeX","LuaTeX","LuaLaTeX","setlogokern","setlogodrop","setLaTeXa","setLaTeXee","seteverylogo","everylogo"]}
-,
-"metalogox.sty":{"envs":{},"deps":["metalogo.sty","xparse.sty","etoolbox.sty"],"cmds":["adjustlogos","autoadjustlogos"]}
-,
-"metanorma.cls":{"envs":["example","note","source","key","requirement","recommendation","permission","specification","measurement-target","verification","import","tip","important","caution","warning"],"deps":["graphicx.sty","hyperref.sty","amsmath.sty","subcaption.sty","enumitem.sty","verbatim.sty","xparse.sty","ulem.sty","mdframed.sty","tikz.sty"],"cmds":["set","get","mn","alt","deprecated","domain","mncite","att","lxRDFa","lxRDF"]}
-,
-"metastr.sty":{"envs":{},"deps":["hyperref.sty","hyperxmp.sty","keyval.sty"],"cmds":["metadef","metaset","metasetlang","metaget","metaif","metaunset","metaappend","metaprepend","metaaddsep","metapick","metaifpick","metacompose","metatitleline","metatitlelinetwo","metawritepdfinfo","metawritepdfaux","metawritepdfpreamble","metawritepdfcontact","metawritepdfrights","metawritepdf","metacopyright","metalicense","metalicensecc","metaterm","metatranslate","metasetterm","metasetup","metacomma","metatilde"]}
-,
-"method.sty":{"envs":["method","data"],"deps":{},"cmds":["head","para","precond","descr","postcond","error","return","see","headtabbed","headpara","init","del","textdel","textdescr","texterror","textinit","textpostcond","textprecond","textreturn","textsee"]}
-,
-"methylen.sty":{"envs":{},"deps":["chemstr.sty","aliphat.sty","carom.sty","hetaromh.sty"],"cmds":["decamethylene","decamethylenei","dimethylene","dimethylenei","heptamethylene","heptamethylenei","hexamethylene","hexamethylenei","nonamethylene","nonamethylenei","octamethylene","octamethylenei","pentamethylene","pentamethylenei","tetramethylene","tetramethylenecap","tetramethylenecup","tetramethylenei","trimethylene","trimethylenei","bondA","bondAA","bondAAi","bondAi","bondB","bondBB","bondBBi","bondBi","SKbondA","SKbondAi","SKbondB","SKbondBi","yldimethyleneiposition","yldimethyleneposition","yltrimethyleneiposition","yltrimethyleneposition"]}
-,
-"metre.sty":{"envs":["metrica","metrike"],"deps":["relsize.sty"],"cmds":["metra","r","R","t","T","s","v","k","K","q","Q","d","S","n","ni","N","numeri","m","b","a","ma","bba","bm","mb","bbmb","bbm","bbmx","bb","bbb","mbb","mbbx","pm","ppm","pppm","vppm","vpppm","tsmb","tsbm","tsmm","ps","oo","C","Ppp","Pp","Pxp","Pppp","Ppppp","Cc","Ccc","c","cc","ccc","ppp","pp","pxp","pppp","ppppp","p","x","M","gM","B","gB","Bm","gBm","Mb","gMb","Mbb","gMbb","mBb","gmBb","mbB","gmbB","BBm","gBBm","Bbm","gBbm","bBm","gbBm","BB","gBB","Bb","gBb","bB","gbB","MetraStyle","InterSigna","InterPedes","SubSigna","Intervallum","Magnitudo","ms","is","ip","ss","i","en","En","st","Elevatio","Translatio","e","MetrikeFont","sigla","charcolon","charslash","FaciesSiglorum","angus","Angus","angud","Angud","quadras","Quadras","quadrad","Quadrad","alas","Alas","alad","Alad","semi","crux","Crux","anaclasis","Anaclasis","antisigma","Antisigma","asteriscus","asteriskos","Asteriscus","Asteriskos","catalexis","Catalexis","diple","Diple","antidiple","Antidiple","obelus","obelos","Obelus","Obelos","respondens","Respondens","terminus","Terminus","margini","macron","breve","Breve","acutus","gravis","circumflexus","diaeresis","cons","dubia","dubiae","erasa","positio","pos","Positio","Pos","punctum","Punctum","tie","itie","linea","bifida","Bifida","lunata","Lunata","lineabifida","Lineabifida","linealunata","Linealunata","geminata","antelineam","postlineam","coronis","imago","novalinea","novageminata","lineola","Lineola","structa","D","metrike"]}
-,
-"metrix.sty":{"envs":["symbolline","metricverses"],"deps":["tikz.sty","xpatch.sty"],"cmds":["metricsymbols","metrics","acct","brv","lng","bow","verseref","setmetrixvar","usemetrixvar"]}
-,
-"mfirstuc.sty":{"envs":{},"deps":["etoolbox.sty"],"cmds":["MFUsentencecase","makefirstuc","xmakefirstuc","emakefirstuc","glsmakefirstuc","MFUexcl","MFUskippunc","MFUblocker","MFUaddmap","capitalisewords","xcapitalisewords","ecapitalisewords","MFUwordbreak","MFUcapword","ifMFUhyphen","MFUhyphencapword","MFUhyphentrue","MFUhyphenfalse","MFUcapwordfirstuc","capitalisefmtwords","xcapitalisefmtwords","ecapitalisefmtwords","MFUnocap","gMFUnocap","MFUclear","MFUsaveatend","MFUsave","mfirstucMakeUppercase","MFUapplytofirst","mfugrabfirstuc"]}
-,
-"mflogo.sty":{"envs":{},"deps":{},"cmds":["MF","MP","logofamily","textlogo"]}
-,
-"mfpic.sty":{"envs":["connect"],"deps":["graphics.sty"],"cmds":["getmfpicoffset","mfpdraftfont","mfpicllx","mfpiclly","preparemfpicgraphic","setmfpicgraphic","applyT","arc","arccomplement","areagradient","arrow","arrowhead","arrowmid","arrowtail","assignmfvalue","assignmpvalue","axes","axis","axisheadlen","axislabels","axisline","axismargin","axismarks","backgroundcolor","barchart","bargraph","bclosed","belowfcn","bmarks","boost","border","browniangraph","brownianmotion","btwnfcn","btwnplrfcn","cbclosed","cbeziers","chartbar","circle","clearsymbols","clipmfpic","closedcbeziers","closedcomputedspline","closedconvexcurve","closedcspline","closedcurve","closedmfbezier","closedpolyline","closedqbeziers","closedqspline","closegraphsfile","cmykcolorarray","coil","colorarray","coloredlines","computedspline","connect","convexcurve","convexcyclic","coords","corkscrew","cspline","curve","cutoffafter","cutoffbefore","cyclic","darkershade","dashed","dashedlines","dashlen","dashlineset","dashpattern","dashspace","datafile","datapointsonly","defaultplot","DEgraph","DEtrajectory","doaxes","dotlineset","dotsize","dotspace","dotted","doubledraw","draw","drawcolor","drawpen","ellipse","endconnect","endcoords","endmfpfor","endmfpframe","endmfpic","endmfpimage","endmfploop","endmfpwhile","endpatharr","endtile","everyendmfpic","everymfpic","everytlabel","fcncurve","fcnspline","fdef","fillcolor","fullellipse","function","gantt","ganttbar","gbrace","gclear","gclip","gendashed","gfill","globalassignmfvalue","globalassignmpvalue","globalsetarray","globalsetmfvariable","globalsetmpvariable","gradient","graphbar","grid","gridarcs","griddotsize","gridlines","gridpoints","gridrays","halfellipse","hashlen","hatch","hatchcolor","hatchspace","hatchwd","headcolor","headlen","headshape","hgridlines","histobar","histogram","hypergeodesic","ifmfpmpost","ifpointfill","interpolatepath","lattice","lclosed","levelcurve","lhatch","lightershade","lines","lmarks","makepercentcomment","makepercentother","makesector","mfbezier","mfcmd","mflist","mfmode","mfobj","mfpbarchart","mfpbargraph","mfpdatacomment","mfpdataperline","mfpdefinecolor","mfpfiledate","mfpfileversion","mfpfor","mfpframe","mfpframed","mfpgantt","mfphistogram","mfpic","mfpiccaptionskip","mfpicdebugfalse","mfpicdebugtrue","mfpicdraft","mfpicfinal","mfpicheight","mfpicnowrite","mfpicnumber","mfpicunit","mfpicvalue","mfpicversion","mfpicwidth","mfpimage","mfplinestyle","mfplinetype","mfploop","mfpmpostfalse","mfpmposttrue","mfppiechart","mfpreadlog","MFPsanitize","MFPsavecodes","mfpsaveplus","mfpuntil","mfpverbtex","mfpwhile","mfresolution","mfsrc","mftitle","mirror","mpobj","newdef","newfdim","newsavepic","nocenteredcaptions","noclearsymbols","noclipmfpic","nomplabels","nooverlaylabels","noraggedcaptions","norender","noship","notruebbox","numericarray","opengraphsfile","overlaylabels","pairarray","parafcn","parallelpath","partpath","patharr","pen","penwd","periodicfcnspline","piechart","piewedge","plot","plotdata","plotnodes","plotsymbol","plottext","plr","plrfcn","plrgrid","plrgridpoints","plrpatch","plrregion","plrvectorfield","point","pointcolor","pointdef","pointedlines","pointfillfalse","pointfilltrue","pointsize","polkadot","polkadotspace","polkadotwd","polygon","polyline","pshcircle","putmfpimage","qbclosed","qbeziers","qspline","quarterellipse","radialgradient","randomizepath","randomlines","randomwalk","reconfigureplot","rect","reflectabout","reflectpath","regpolygon","resumeshipping","reverse","reversepath","rgbcolorarray","rhatch","rmarks","rotate","rotatearound","rotatepath","savepic","scale","scalepath","sclosed","sector","sequence","setallaxismargins","setallbordermarks","setarray","setaxismargins","setaxismarks","setbordermarks","setfilename","setfilenametemplate","setmfboolean","setmfcolor","setmfnumeric","setmfpair","setmfvariable","setmpvariable","setrender","settension","setxmarks","setymarks","shade","shadespace","shadewd","shift","shiftpath","sideheadlen","sinewave","slantpath","smoothdata","startbacktext","stopbacktext","stopshipping","store","subpath","symbolspace","tcaption","tess","thatch","tile","tlabel","tlabelcircle","tlabelcolor","tlabelellipse","tlabeljustify","tlabeloffset","tlabeloval","tlabelrect","tlabels","tlabelsep","tlpathjustify","tlpathsep","tlpointsep","tmarks","tmtitle","transformpath","trimpath","turn","turtle","unsmoothdata","usecenteredcaptions","usemetafont","usemetapost","usemplabels","usepic","useraggedcaptions","usetruebbox","using","usingnumericdefault","usingpairdefault","vectorfield","vgridlines","xaxis","xfactor","xhatch","xmarks","xmax","xmin","xscale","xscalepath","xslant","xslantpath","xyswap","xyswappath","yaxis","yfactor","ymarks","ymax","ymin","yscale","yscalepath","yslant","yslantpath","zigzag","zscale","zslant","finishmpxshipout","MFPbegingroup","MFPendgroup","MFPtext","middlempxshipout","mpxshipout"]}
-,
-"mfpic4ode.sty":{"envs":{},"deps":{},"cmds":["ifcolorODEarrow","colorODEarrowtrue","colorODEarrowfalse","ODEdefineequation","trajectory","trajectoryRK","trajectoryRKF","trajectories","ODEarrow","ODEharrow","ODEvarrow","ODEarrows","ASdefineequations","AStrajectory","AStrajectoryRKF","AStrajectories","ASarrow","ASarrows","ODEline"]}
-,
-"mftinc.sty":{"envs":["explaincode","wrapcomment"],"deps":["chngpage.sty","keyval.sty","lineno.sty","rawfonts.sty"],"cmds":["setmftdefaults","mftinput","mfcomment","fonttable","centerlargechars","chartline","chartstrut","endchart","evenline","hex","morechart","next","oct","oddline","reposition","setdigs","table","testrow","ifskipping","skippingtrue","skippingfalse"]}
-,
-"mgltex.sty":{"envs":["mgl","mgladdon","mglfunc","mglcode","mglscript","mglsetupscript","mglsetup","mglblock","mglblock*","mglverbatim","mglverbatim*","mglcomment","mglcommon"],"deps":["keyval.sty","graphicx.sty","ifpdf.sty","verbatim.sty"],"cmds":["mglplot","mglgraphics","mglinclude","listofmglscripts","mglTeX","mglswitch","mglcomments","mglgray","mglscale","mglquality","mglvariant","mglimgext","mglname","mgldir","mglscriptsdir","mglgraphicsdir","mglbackupsdir","mglpaths","mglsettings","mglsetupscriptname","mglcommentname","listofmglscriptsname","mglverbatimname","mgllinenostyle","mgldashwidth","mgllinethickness","mglbreakindent"]}
-,
-"mhchem.sty":{"envs":{},"deps":["expl3.sty","calc.sty","chemgreek.sty","ifthen.sty","pgf.sty"],"cmds":["mhchemoptions","ce","bond","cesplit","hyphen","cee","cf","cmath","sbond","dbond","tbond"]}
-,
-"mhequ.sty":{"envs":["equ","equs","equa"],"deps":{},"cmds":["tag","notag","minilab","setlabtype","intertext","multicol","text","computelength","getlength","next","MHcenter","MHbig","openup","displaylines","MHsavelabel","sublabeltype","MHgobble","comm","strutdepth"]}
-,
-"mhsetup.sty":{"envs":{},"deps":{},"cmds":["MHInternalSyntaxOn","MHInternalSyntaxOff","MHPrecedingSpacesOff","MHPrecedingSpacesOn"]}
-,
-"mi-solns.sty":{"envs":{},"deps":["shellesc.sty"],"cmds":["addToMINullify","copyfileCmdEx","copyfileCmdQz","copySolnsOff","copySolnsOn","declQSLIn","declQSLOut","declSOLIn","declSOLOut","eqargi","eqMrkSolnCpyEx","eqMrkSolnCpyQz","eqMrkSolnCpySQ","examSolnHeadFmt","gobbleiiendgroup","gobbleiiendinput","gobbleiiterminex","ifmifound","ifnotamiop","ignoreques","ignoreterminex","insExSoln","insQzSoln","insSqSoln","mifoundfalse","mifoundtrue","miqslin","miqslout","miReadOffMsg","misolin","misolout","mrkForIns","notamiopfalse","notamioptrue","readSolnsOff","readSolnsOn","reqDate","writeToSolnFile"]}
-,
-"miama.sty":{"envs":{},"deps":{},"cmds":["fmmfamily","miama","fmmTeX","fmmLaTeX"]}
-,
-"microtype-show.sty":{"envs":{},"deps":["iftex.sty","graphicx.sty"],"cmds":["ifShowGlyphIndex","ShowGlyphIndextrue","ShowGlyphIndexfalse","ifShowMissingGlyphs","ShowMissingGlyphstrue","ShowMissingGlyphsfalse","GlyphScaleFactor","Showbaselinecolor","Showposcolor","Shownegcolor","ShowProtrusion","ShowCharacterInheritance","ShowProtrusionLineGlyph","ShowProtrusionLineIndex","ShowDummyLine","ShowProtrusionAll","ShowProtrusionDefined","ShowProtrusionMissing"]}
-,
-"microtype.sty":{"envs":["microtypecontext"],"deps":["keyval.sty","etoolbox.sty"],"cmds":["microtypesetup","DeclareMicrotypeSet","UseMicrotypeSet","DeclareMicrotypeSetDefault","SetProtrusion","SetExpansion","SetTracking","SetExtraKerning","SetExtraSpacing","DeclareCharacterInheritance","DeclareMicrotypeVariants","DeclareMicrotypeAlias","LoadMicrotypeFile","DeclareMicrotypeFilePrefix","microtypecontext","textmicrotypecontext","DeclareMicrotypeBabelHook","textls","lsstyle","lslig","DisableLigatures","leftprotrusion","rightprotrusion","noprotrusionifhmode"]}
-,
-"midfloat.sty":{"envs":["strip"],"deps":{},"cmds":["stripsep"]}
-,
-"midpage.sty":{"envs":["midpage"],"deps":{},"cmds":{}}
-,
-"miller.sty":{"envs":{},"deps":{},"cmds":["hkl","millerminus","millerskip"]}
-,
-"milog.cls":{"envs":{},"deps":["xkeyval.sty","xkvltxp.sty","geometry.sty","tabularx.sty","booktabs.sty","colortbl.sty","xifthen.sty","background.sty","transparent.sty","pgfplotstable.sty"],"cmds":["milog","Formular","milogsetup"]}
-,
-"milstd.sty":{"envs":{},"deps":{},"cmds":["BusWidth","ANDr","ANDd","ANDl","ANDu","NANDr","NANDd","NANDl","NANDu","ORr","ORd","ORl","ORu","NORr","NORd","NORl","NORu","BUFr","BUFd","BUFl","BUFu","INVr","INVd","INVl","INVu"]}
-,
-"mindflow.sty":{"envs":["mindflow"],"deps":["kvoptions.sty","lineno.sty","xcolor.sty","nowidow.sty","verbatim.sty","tcolorbox.sty","tcolorboxlibrarymany.sty"],"cmds":["mindflowset","mindflowTextFont","mindflowNumFont","mindflowMarkerFont","mindflowLeft","mindflowRight","mindflowLineHeight","AutoIncolumn","LocallyStopLineNumbers","ResumeIncolumn","ResumeLineNumbers","endmindflow","endmindflowOFF","endmindflowON","mfSepLine","mindflow","mindflowOFF","mindflowON","themfLN","therecordLN","ifLNturnsON","LNturnsONtrue","LNturnsONfalse","ifICturnsON","ICturnsONtrue","ICturnsONfalse"]}
-,
-"minibox.sty":{"envs":{},"deps":["expl3.sty"],"cmds":["minibox","miniboxsetup"]}
-,
-"minidocument.sty":{"envs":["minidocument"],"deps":["graphics.sty"],"cmds":["lastminidocument","minidocumentscale","minidocumentshipout"]}
-,
-"minifp.sty":{"envs":{},"deps":{},"cmds":["MFPloadextra","startMFPprogram","stopMFPprogram","MFPadd","MFPsub","MFPmul","MFPmpy","MFPdiv","MFPmin","MFPmax","MFPchs","MFPabs","MFPdbl","MFPhalve","MFPint","MFPfrac","MFPfloor","MFPceil","MFPsgn","MFPsq","MFPinv","MFPincr","MFPdecr","MFPzero","MFPstore","MFPnoop","MFPpi","MFPe","MFPphi","MFPchk","MFPcmp","IFneg","IFzero","IFpos","IFlt","IFeq","IFgt","MFPtruncate","MFPround","MFPstrip","Rpush","Rpop","Radd","Rsub","Rmul","Rmpy","Rdiv","Rmin","Rmax","Rchs","Rabs","Rdbl","Rhalve","Rint","Rfrac","Rfloor","Rceil","Rsgn","Rsq","Rinv","Rincr","Rdecr","Rzero","Rnoop","Rchk","Rcmp","Rdup","Rexch","Export","Global","ExportStack","GlobalStack","EndofStack","ZeroOverZeroInt","ZeroOverZeroFrac","xOverZeroInt","xOverZeroFrac","MaxRealInt","MaxRealFrac","MFPsin","MFPcos","MFPangle","MFPrad","MFPdeg","MFPlog","MFPln","MFPexp","MFPsqrt","MFPrand","MFPpow","MFPsetseed","MFPrandgenA","MFPrandgenB","MFPrandgenC","Rsin","Rcos","Rangle","Rrad","Rdeg","Rlog","Rln","Rexp","Rsqrt","Rrand","Rpow","LogOfZeroInt","LogOfZeroFrac"]}
-,
-"minijs.sty":{"envs":{},"deps":["platex.sty"],"cmds":["Cjascale"]}
-,
-"minimalist-plain.sty":{"envs":["keyword","emphasis","enumerate*","itemize*","description*"],"deps":["relsize.sty","anyfontsize.sty","tikz.sty","tikzlibrarycalc.sty","tikzlibraryshadings.sty","tikzpagenodes.sty","geometry.sty","fancyhdr.sty","extramarks.sty","titlesec.sty","ulem.sty","titletoc.sty","enumitem.sty","imakeidx.sty","silence.sty","projlib-draft.sty","mathtools.sty","amsthm.sty","bookmark.sty","hyperref.sty","projlib-theorem.sty","projlib-author.sty","projlib-titlepage.sty","tcolorbox.sty","tcolorboxlibrarymany.sty","projlib-language.sty","scontents.sty"],"cmds":["LocallyStopLineNumbers","ResumeLineNumbers","parttext","ifLNturnsON","keywordname","LNturnsONfalse","LNturnsONtrue","partstring","customqedsymbol","IndexDotfill","IndexLinebreak","IndexHeading","keywords","dedicatory","subjclass"]}
-,
-"minimalist.sty":{"envs":{},"deps":["amsmath.sty","lineno.sty","projlib-paper.sty","projlib-language.sty","minimalist-plain.sty"],"cmds":["desculine","seculine","simpleqedsymbol","subseculine"]}
-,
-"minimart.cls":{"envs":{},"deps":["silence.sty","geometry.sty","minimalist.sty","indentfirst.sty","projlib-font.sty","mathpazo.sty","newpxtext.sty","amssymb.sty","nowidow.sty","regexpatch.sty","embrac.sty","graphicx.sty","wrapfig.sty","float.sty","caption.sty","draftwatermark.sty","parskip.sty","lmodern.sty","newtxtext.sty","newtxmath.sty","ebgaramond-maths.sty","ebgaramond.sty","anyfontsize.sty","notomath.sty","eulervm.sty","biolinum.sty","mathastext.sty"],"cmds":["desculine","seculine","simpleqedsymbol","subseculine","captionsjapanese","datejapanese","extrasjapanese","noextrasjapanese","cyrdash","asbuk","Asbuk","Russian","sh","ch","tg","ctg","arctg","arcctg","th","cth","cosec","Prob","Variance","NOD","nod","NOK","nok","Proj","cyrillicencoding","cyrillictext","cyr","textcyrillic","dq","captionsrussian","daterussian","extrasrussian","noextrasrussian","CYRA","CYRB","CYRV","CYRG","CYRGUP","CYRD","CYRE","CYRIE","CYRZH","CYRZ","CYRI","CYRII","CYRYI","CYRISHRT","CYRK","CYRL","CYRM","CYRN","CYRO","CYRP","CYRR","CYRS","CYRT","CYRU","CYRF","CYRH","CYRC","CYRCH","CYRSH","CYRSHCH","CYRYU","CYRYA","CYRSFTSN","CYRERY","cyra","cyrb","cyrv","cyrg","cyrgup","cyrd","cyre","cyrie","cyrzh","cyrz","cyri","cyrii","cyryi","cyrishrt","cyrk","cyrl","cyrm","cyrn","cyro","cyrp","cyrr","cyrs","cyrt","cyru","cyrf","cyrh","cyrc","cyrch","cyrsh","cyrshch","cyryu","cyrya","cyrsftsn","cyrery","cdash","tocname","authorname","acronymname","lstlistingname","lstlistlistingname","notesname","nomname","IfPrintModeTF","IfPrintModeT","IfPrintModeF"]}
-,
-"minimbook.cls":{"envs":{},"deps":["s-book.cls","silence.sty","geometry.sty","minimalist.sty","indentfirst.sty","projlib-font.sty","mathpazo.sty","newpxtext.sty","amssymb.sty","nowidow.sty","regexpatch.sty","embrac.sty","graphicx.sty","wrapfig.sty","float.sty","caption.sty","draftwatermark.sty","parskip.sty","lmodern.sty","newtxtext.sty","newtxmath.sty","ebgaramond-maths.sty","ebgaramond.sty","anyfontsize.sty","notomath.sty","eulervm.sty","biolinum.sty","mathastext.sty"],"cmds":["desculine","seculine","simpleqedsymbol","subseculine","captionsjapanese","datejapanese","extrasjapanese","noextrasjapanese","cyrdash","asbuk","Asbuk","Russian","sh","ch","tg","ctg","arctg","arcctg","th","cth","cosec","Prob","Variance","NOD","nod","NOK","nok","Proj","cyrillicencoding","cyrillictext","cyr","textcyrillic","dq","captionsrussian","daterussian","extrasrussian","noextrasrussian","CYRA","CYRB","CYRV","CYRG","CYRGUP","CYRD","CYRE","CYRIE","CYRZH","CYRZ","CYRI","CYRII","CYRYI","CYRISHRT","CYRK","CYRL","CYRM","CYRN","CYRO","CYRP","CYRR","CYRS","CYRT","CYRU","CYRF","CYRH","CYRC","CYRCH","CYRSH","CYRSHCH","CYRYU","CYRYA","CYRSFTSN","CYRERY","cyra","cyrb","cyrv","cyrg","cyrgup","cyrd","cyre","cyrie","cyrzh","cyrz","cyri","cyrii","cyryi","cyrishrt","cyrk","cyrl","cyrm","cyrn","cyro","cyrp","cyrr","cyrs","cyrt","cyru","cyrf","cyrh","cyrc","cyrch","cyrsh","cyrshch","cyryu","cyrya","cyrsftsn","cyrery","cdash","tocname","authorname","acronymname","lstlistingname","lstlistlistingname","notesname","nomname","IfPrintModeTF","IfPrintModeT","IfPrintModeF"]}
-,
-"minipage-marginpar.sty":{"envs":["minipagewithmarginpars"],"deps":{},"cmds":{}}
-,
-"minted.sty":{"envs":["minted","listing"],"deps":["keyval.sty","fvextra.sty","calc.sty","ifplatform.sty","etoolbox.sty","lineno.sty","catchfile.sty","float.sty","newfloat.sty"],"cmds":["mint","mintinline","inputminted","usemintedstyle","setminted","setmintedinline","listoflistings","listingscaption","listoflistingscaption","newminted","newmint","newmintinline","newmintedfile","DeleteFile","ProvideDirectory","ifAppExists","TestAppExists","MintedPygmentize","MintedPython","PYG","PYGZsq","PYGZhy","RobustMintInline","RobustMintInlineProcess","RobustMint","RobustMintProcess","RobustNewMint","RobustNewMintInline"]}
-,
-"mintspirit.sty":{"envs":{},"deps":["ifxetex.sty","ifluatex.sty","xkeyval.sty","textcomp.sty","fontenc.sty","fontaxes.sty"],"cmds":["mintspirit","plstyle","textpl","postyle","textpo","tlstyle","texttl","tostyle","textto","sufigures","textsu","infigures","textin","useosf","mintspiritfamily"]}
-,
-"mintspirit2.sty":{"envs":{},"deps":["ifxetex.sty","ifluatex.sty","xkeyval.sty","textcomp.sty","fontenc.sty","fontaxes.sty"],"cmds":["mintspirit","plstyle","textpl","postyle","textpo","tlstyle","texttl","tostyle","textto","sufigures","textsu","infigures","textin","useosf","mintspiritfamily"]}
-,
-"minutes.sty":{"envs":["Minutes","Vote","Argumentation","Opinions","Secret","Postscript","Protokoll","Abstimmung","Meinungen","Geheim","Nachtrag","Notulen","Stemming","Naschrift"],"deps":["multicol.sty","url.sty","keyval.sty"],"cmds":["minutesstyle","foreignMinutes","subtitle","moderation","minutetaker","participant","guest","minutesdate","starttime","endtime","location","cc","missing","missingExcused","missingNoExcuse","topic","addtopic","subtopic","subsubtopic","minitopic","newcols","task","listoftasks","schedule","vote","decisiontheme","decision","listofdecisions","pro","Pro","contra","Contra","result","opinion","secret","attachment","listofattachments","postscript","inputminutes","protokollKopf","fremdProtokoll","untertitel","protokollant","teilnehmer","gaeste","sitzungsdatum","sitzungsbeginn","sitzungsende","sitzungsort","verteiler","fehlend","fehlendEntschuldigt","fehlendUnentschuldigt","zusatztopic","neueSpalte","aufgabe","aufgabenliste","termin","abstimmung","beschlussthema","beschluss","beschlussliste","ergebnis","meinung","geheim","anhang","anhangsliste","nachtrag","notulenkop","extranotulen","ondertitel","voorzitter","notulist","deelnemer","gast","bijeenkomstdatum","beginbijeenkomst","eindbijeenkomst","locatie","afwezig","afwezigBericht","afwezigZonderBericht","extrapunt","nieuweKolom","aktie","aktielijst","termijn","stemming","besluitonderwerp","besluit","besluitenlijst","resultaat","bijlage","bijlagenlijst","naschrift","hyperloadedfalse","hyperloadedtrue","ifhyperloaded","minfiledate","minfileversion","minutestask","prepareCal","responsiblelength","thecolumns","theHattachment","votelength"]}
-,
-"miscdoc.sty":{"envs":{},"deps":["lmodern.sty","fontenc.sty","booktabs.sty","hyperref.sty","bookmark.sty"],"cmds":["cs","csx","bsbs","cmdinvoke","delcmdinvoke","newitem","meta","environment","pkgoption","extension","Package","option","FontName","DH","dh","dj","DJ","guillemetleft","guillemetright","guillemotleft","guillemotright","guilsinglleft","guilsinglright","Hwithstroke","hwithstroke","k","NG","ng","quotedblbase","quotesinglbase","textogonekcentered","textquotedbl","th","TH"]}
-,
-"mismath.sty":{"envs":["system","spmatrix","mathcols"],"deps":["amsmath.sty","mathtools.sty","esvect.sty","ifthen.sty","xspace.sty","iftex.sty","ibrackets.sty"],"cmds":["abs","adj","apply","arccot","arcosh","arcoth","arcsch","arrowvect","arsech","arsinh","artanh","Aut","bigO","bigo","boldvect","boldvectcommand","C","codim","Conv","Cov","cov","csch","curl","dcap","dcup","di","divg","dlim","dprod","ds","dsum","e","E","End","eqdef","erf","F","grad","hlbar","hvec","hvect","id","Id","iif","im","itpi","K","lb","lbar","lcm","lfrac","lito","mathbfsfit","MathFamily","MathIt","MathNormal","MathNumbers","MathProba","mathset","MathUp","mathup","mul","N","norm","oldIm","oldi","oldj","oldRe","P","Par","pinormal","pinumber","pow","probastyle","Q","R","rank","Re","rot","sech","sgn","sinc","spa","then","tr","txt","unbr","V","var","Var","vect","Z","Zu","systemsep","systemstretch","changecol","bslash","enumber","inumber","jnumber","PEupright"]}
-,
-"missaali.sty":{"envs":["mstextura","mstexturablock","mstexturablocks"],"deps":["fontspec.sty","ifthen.sty","accsupp.sty","calc.sty","multicol.sty","geometry.sty"],"cmds":["ifOldFinnish","OldFinnishtrue","OldFinnishfalse","ifContextualAlternates","ContextualAlternatestrue","ContextualAlternatesfalse","ifLigatures","Ligaturestrue","Ligaturesfalse","ifMissaleAbbrStyle","MissaleAbbrStyletrue","MissaleAbbrStylefalse","ifAbbreviate","Abbreviatetrue","Abbreviatefalse","ifHistForms","HistFormstrue","HistFormsfalse","ifPoFusion","PoFusiontrue","PoFusionfalse","ifAlternateG","AlternateGtrue","AlternateGfalse","ifAlternateZ","AlternateZtrue","AlternateZfalse","ifAltPunctuation","AltPunctuationtrue","AltPunctuationfalse","ifAdditionalAbbrs","AdditionalAbbrstrue","AdditionalAbbrsfalse","ifManuscriptSpacing","ManuscriptSpacingtrue","ManuscriptSpacingfalse","msabbr","msabbra","msabbralt","mssetfontsize","mssetblockwidth","mssetblocklines","mssetgutterwidth","mssetsizes","mschapterinitial","mschapterinitialblue","mschapterinitialgreen","mschapterinitialwithcolor","msparinitial","msparinitialblue","msparinitialgreen","msparinitialwithcolor","msstartchapter","msstartchapterblue","msstartchaptergreen","msstartchapterwithcolor","msstartchapterwithrubric","msstartchapterwithrubricblue","msstartchapterwithrubricgreen","msstartchapterwithrubricandcolors","mstd","mstdacc","rmstd","rmstdacc","mstda","mstdaacc","rmstda","rmstdaacc","mstdr","mstdracc","rmstdr","rmstdracc","mstdo","mstdoacc","rmstdo","rmstdoacc","mstdt","mstdtacc","rmstdt","rmstdtacc","mstdst","mstdstacc","rmstdst","rmstdstacc","mstdd","mstddacc","rmstdd","rmstddacc","mstddg","mstddgacc","rmstddg","msmanualspacing","msaltpunctuation","msinit","msinita","msrubric","msrubricblue","msrubricgreen","mspara","mstdl","rotundar","straightr","shorts","longs","msnoliga","mspartialrubric","mspartialrubricblue","mspartialrubricgreen","mspartialrubricwithcolor","mspartialline","mstexturafamily","MsNormalStyle","MsAltAEStyle","MsAltPunctiationStyle","MsAltZStyle","MsAltGStyle","MsOldFinnishStyle","MsPoFusionStyle","MsAltAbbrStyle","MsNormalAbbrStyle","MsAdditionalAbbrStyle","Missaali","initialibox","rubricbox","initialI","missaali","mschapterindent","texturaemph"]}
-,
-"mkstmp_pro.sty":{"envs":{},"deps":["aeb_pro.sty","xkeyval.sty"],"cmds":["setStampPath","makeStamps","definePath","predocassemJS"]}
-,
-"mla.cls":{"envs":["noindent","blockquote","paper","notes","mlanotes","workscited"],"deps":["enumitem.sty","fancyhdr.sty","fullpage.sty","ragged2e.sty","newtxtext.sty","titlesec.sty","xstring.sty","babel.sty","csquotes.sty","hanging.sty","biblatex.sty","caption.sty","float.sty","graphicx.sty","enotez.sty","hyperref.sty","microtype.sty"],"cmds":["mladate","professor","course","makemlaheader","openrangeformat","openrangemark","mlanamedash","splitfootnoterule","pagefootnoterule","mlasymbolfootnote","themladraftnote","headlesscite","headlessfullcite","titleandsubtitle"]}
-,
-"mlcid.sty":{"envs":{},"deps":["platex.sty"],"cmds":["CIDK","CIDC","CIDT"]}
-,
-"mleftright.sty":{"envs":{},"deps":["infwarerr.sty","ltxcmds.sty"],"cmds":["mleft","mright","mleftright","mleftrightrestore"]}
-,
-"mlist.sty":{"envs":{},"deps":["ifmtarg.sty","xkeyval.sty"],"cmds":["newvect","newmatr","newfunc","newmset","setR","setC","setN","setZ","vect","matr","func","mset","MID","LAST","newmlist","renewmlist","mlistsetup","mlistsub","mlistsup","mlistelem","mlisthead","mlistnowrap","mlistparen","mlistbrack","mlistbrace","mlistangle","mlistheadparen","mlistheadbrack","mlistheadbrace","mlistheadangle"]}
-,
-"mlmodern.sty":{"envs":{},"deps":{},"cmds":{}}
-,
-"mlutf.sty":{"envs":{},"deps":["platex.sty"],"cmds":["UTFK","UTFC","UTFT","UTFM"]}
-,
-"mnotes.sty":{"envs":{},"deps":["kvoptions.sty","soul.sty","marginnote.sty","tikz.sty","ifoddpage.sty","sidenotes.sty"],"cmds":["MNOTE","Mnewauthor","HideMNOTES","ShowMNOTES","ReverseMNConnect","mnotespaperwidth","MNOTEWIDTH","MNCOLOUR","MNFONT","MNOTEon","mnoteseastlink","mnoteswestlink"]}
-,
-"mnras.cls":{"envs":["keywords","proof","lquote"],"deps":["geometry.sty","hyperref.sty","graphicx.sty","natbib.sty","dcolumn.sty"],"cmds":["title","author","newauthor","pubyear","journal","numberwithin","sun","earth","micron","degr","arcmin","arcsec","fdg","farcm","farcs","fd","fh","fm","fs","fp","diameter","sq","upi","umu","upartial","lid","gid","la","ga","loa","goa","cor","sol","sog","lse","gse","getsto","grole","leogr","geqslant","leqslant","bmath","mathbfit","mathbfss","ion","contcaption","aap","astap","aapr","aaps","actaa","afz","aj","ao","applopt","aplett","apj","apjl","apjlett","apjs","apjsupp","apss","araa","arep","aspc","azh","baas","bac","bain","caa","cjaa","fcp","gca","grl","iaucirc","icarus","japa","jcap","jcp","jgr","jqsrt","jrasc","memras","memsai","mnassa","mnras","na","nar","nat","nphysa","pra","prb","prc","prd","pre","prl","pasa","pasp","pasj","physrep","physscr","planss","procspie","rmxaa","qjras","sci","skytel","solphys","sovast","ssr","zap","boxit","sevensize","abslarge","nokeywords","volume","pagerange","bsp","mniiiauth","eprint","doi","aquery","authorquery","balpha","bbeta","bchi","bdelta","bepsilon","bgamma","bibhang","bibheadtitle","bibtitle","biota","bkappa","blambda","bld","bmu","bnu","boldeta","bomega","bphi","bpi","bpsi","brho","bsigma","BSLquery","btau","btheta","bupsilon","bvarepsilon","bvarphi","bvarpi","bvarrho","bvarsigma","bvartheta","bxi","bzeta","fixfootnotes","fullhline","hexnumber","itl","largeital","largerm","loadboldgreek","loadboldmathitalic","makenewlabel","makeRLlabel","makeRRlabel","mathch","microfiche","mniiiauthor","oldge","oldgeq","oldle","oldleq","plate","proofbox","realparindent","rmn","romn","shortcite","textbfit","textbfss","thedummy","tquery"]}
-,
-"moderncv.cls":{"envs":["cvcolumns"],"deps":["etoolbox.sty","ifthen.sty","xcolor.sty","iftex.sty","url.sty","hyperref.sty","graphicx.sty","fancyhdr.sty","tweaklist.sty","calc.sty","xparse.sty","microtype.sty","moderncvcollection.sty","moderncvcompatibility.sty","expl3.sty","colortbl.sty"],"cmds":["ifxetexorluatex","xetexorluatextrue","xetexorluatexfalse","pdfpagemode","nopagenumbers","pagenumberwidth","name","title","address","born","email","homepage","phone","SplitMyMacro","social","extrainfo","listitemsymbol","addresssymbol","bornsymbol","mobilephonesymbol","fixedphonesymbol","faxphonesymbol","emailsymbol","homepagesymbol","linkedinsocialsymbol","xingsocialsymbol","twittersocialsymbol","mastodonsocialsymbol","githubsocialsymbol","gitlabsocialsymbol","stackoverflowsocialsymbol","bitbucketsocialsymbol","skypesocialsymbol","orcidsocialsymbol","researchgatesocialsymbol","researcheridsocialsymbol","googlescholarsocialsymbol","telegramsocialsymbol","whatsappsocialsymbol","matrixsocialsymbol","signalsocialsymbol","codebergsocialsymbol","discordsocialsymbol","enclname","makefooter","moderncvstyle","moderncvhead","moderncvbody","moderncvfoot","moderncvcolor","moderncvicons","recomputeheadlengths","recomputebodylengths","recomputefootlengths","recomputelengths","photo","quote","namefont","titlefont","addressfont","quotefont","sectionfont","subsectionfont","hintfont","pagenumberfont","namestyle","titlestyle","addressstyle","quotestyle","sectionstyle","subsectionstyle","hintstyle","pagenumberstyle","recomputecvheadlengths","recomputecvbodylengths","recomputecvfootlengths","recomputecvlengths","makenewline","makecvtitle","makecvhead","makecvfoot","cvitem","cvdoubleitem","cvlistitem","cvlistdoubleitem","cventry","cvitemwithcomment","link","httplink","httpslink","emaillink","tellink","onlynumberslink","thecvcolumnscounter","thecvcolumnsautowidthcounter","thetmpiteratorcounter","cvcolumnsdummywidth","cvcolumnswidth","cvcolumnsautowidth","cvcolumnautowidth","cvcolumn","cvcolumncell","bibindent","bibliographyhead","recipient","opening","closing","enclosure","recomputeletterheadlengths","recomputeletterbodylengths","recomputeletterfootlengths","recomputeletterlengths","makelettertitle","makeletterhead","makeletterfoot","makeletterclosing","separatorcolumnwidth","maincolumnwidth","doubleitemcolumnwidth","separatorrulewidth","listitemsymbolwidth","listitemcolumnwidth","listdoubleitemcolumnwidth","cventryyearbox","cventrytitleboxwidth","cvskill","setcvskillcolumns","setcvskilllegendcolumns","cvskilllegend","cvskillplainlegend","cvskillhead","cvskillentry","footsymbol","footbox","foottempbox","footboxwidth","addtofoot","flushfoot","quotewidth","makecvheadnamewidth","makecvheadpicturebox","makecvheaddetailswidth","makecvheadpicturewidth","makecvheadnamebox","makeheaddetailssymbol","makeheaddetailsbox","makeheaddetailstempbox","makeheaddetailswidth","makeheaddetailsboxwidth","addtomakeheaddetails","flushmakeheaddetails","makehead","makecvheadinfo","makecvheadinfobox","makecvheadinfoheight","marvosymbol"]}
-,
-"moderncvcollection.sty":{"envs":{},"deps":["ifthen.sty"],"cmds":["collectionnew","collectionadd","collectioncount","collectiongetitem","collectiongetkey","collectionloopbreak","collectionloop","collectionloopid","collectionloopitem","collectionloopkey","collectionfindbykey"]}
-,
-"moderncvcompatibility.sty":{"envs":{},"deps":{},"cmds":["cvresume","closesection","emptysection","sethintscolumnlength","hintscolumnwidth","cvline","cvlanguage","moderncvtheme","maketitle","maketitlenamewidth","firstname","lastname","givenname","familyname","mobile","phone","fax","phonesymbol","mobilesymbol","faxsymbol","makecvtitlenamewidth"]}
-,
-"modernposter.cls":{"envs":["postercolumn"],"deps":["s-a0poster.cls","xcolor.sty","pgfkeys.sty","pgfopts.sty","relsize.sty","tikz.sty","tikzlibrarypositioning.sty","tikzlibrarybackgrounds.sty","tikzlibraryshapes.misc.sty","enumitem.sty","fontawesome.sty","sfmath.sty","etoolbox.sty","hyperref.sty","environ.sty","FiraSans.sty","helvet.sty"],"cmds":["highlight","colheight","colwidth","coltextwidth","colsep","boxheight","boxlinewidth","posterbox","doubleposterbox","oldparboxrestore","faiconold","email","thenumcols"]}
-,
-"moderntimeline.sty":{"envs":{},"deps":["tikz.sty","kvoptions.sty"],"cmds":["tlwidth","tlrunningwidth","tlrunningcolor","tltextstart","tltextend","tltextsingle","tltext","tlmaxdates","tlsince","tlsetnotshadedfraction","tlenablemonths","tldisablemonths","tlenablemarksmo","tlenablemarksyr","tldisablemarksyr","tldisablemarksmo","tlmarkheightmo","tlmarkheightyr","tlcventry","tllabelcventry","tldatecventry","tldatelabelcventry","fullcolorwidth","ifstartyear","startyeartrue","startyearfalse","ifissince","issincetrue","issincefalse"]}
-,
-"modiagram.sty":{"envs":["modiagram"],"deps":["l3keys2e.sty","tikz.sty","chemgreek.sty"],"cmds":["setmodiagram","atom","molecule","AO","connect","EnergyAxis"]}
-,
-"modroman.sty":{"envs":{},"deps":["etoolbox.sty"],"cmds":["shortroman","shortromannumeral","nbshortroman","longroman","longromannumeral","nblongroman","LongRoman","LongRomannumeral","nbLongRoman","nbroman","Romannumeral","nbRoman","modroman","modromannumeral","nbmodroman","RedefineMRmdclxvij","printntimes"]}
-,
-"modular.sty":{"envs":{},"deps":["coseoul.sty","ifthen.sty","import.sty"],"cmds":["subimportlevel","thecurrentimportdepth"]}
-,
-"modulus.sty":{"envs":{},"deps":{},"cmds":["modulo","remainder","quotient","intquotient"]}
-,
-"mol2chemfig.sty":{"envs":{},"deps":["xcolor.sty","chemfig.sty","twoopt.sty","ifmtarg.sty","calc.sty","xstring.sty","tikzlibrarydecorations.sty"],"cmds":["mcfinput","mcfpush","mcfabove","mcfaboveright","mcfatomno","mcfbelow","mcfbelowright","mcfcringle","mcfelmove","mcfleft","mcfminus","mcfplus","mcfright","mcfvspace"]}
-,
-"monofill.sty":{"envs":{},"deps":{},"cmds":["MFfieldtemplate","MFfillelement","MFspace","MFenspace","MFotherspace","MFleftinfield","MFrightinfield"]}
-,
-"montserrat.sty":{"envs":{},"deps":["fontaxes.sty","fontenc.sty","mweights.sty","textcomp.sty","xkeyval.sty"],"cmds":["montserratalt","defigures","textde","textdenominators","infigures","textin","textinferior","nufigures","textnu","textnumerators","sufigures","textsu","textsuperior","DH","NG","dj","ng","k","guillemotleft","guillemotright","guilsinglleft","guilsinglright","quotedblbase","quotesinglbase","textquotedbl","DJ","th","TH","dh","Hwithstroke","hwithstroke","textogonekcentered","guillemetleft","guillemetright"]}
-,
-"moodle.sty":{"envs":["quiz","truefalse","multi","numerical","shortanswer","essay","matching","cloze","description","",""],"deps":["xkeyval.sty","environ.sty","amssymb.sty","iftex.sty","etoolbox.sty","xpatch.sty","array.sty","ifplatform.sty","shellesc.sty","readprov.sty","fancybox.sty","getitems.sty","randomlist.sty","graphicx.sty","tikz.sty","varwidth.sty"],"cmds":["embedaspict","moodleset","setcategory","setsubcategory","item","blank","htmlonly","htmlregister","moodleregisternewcommands","ghostscriptcommand","imagemagickcommand","optipngcommand","PDFtoSVGcommand","SVGtoPDFcommand","optiSVGcommand","verbatiminput","VerbatimInput","BVerbatimInput","LVerbatimInput","inputminted","moodledate","moodleversion","ConvertToBaseLXIV","DeclareGraphicsAlien","DeclareMediaFormat","DeleteFilecommand","DevNullcommand","ExportTikz","OptimizeExport","OutputFile","SourceFile","TikzExportExtension","TikzExportMIME","advancemathmodecounter","aftertext","baselxivcommand","calculateindent","closemoodleout","cmdline","converttohtmlmacro","displaymathleftdelim","displaymathrightdelim","ds","endclozemode","filenamewithsuffixtomacro","gscmdline","includegraphics","inlinemathleftdelim","inlinemathrightdelim","jobnamewithsuffixtomacro","mathtext","MoveFilecommand","newxml","normalcatcodes","oldhref","oldincludegraphics","oldurl","openclozemode","openmoodleout","otherampersand","othercaret","otherdollar","otherequal","otherhash","otherlbrace","otherlbracket","otherpercent","otherrbracket","othersemicol","otherspace","othertilde","passvalueaftergroup","questiontext","retokenizingcatcodes","savebaselxivdata","saveclozemultichoiceanswer","saveclozenumericalanswer","saveclozeshortansweranswer","savematchinganswer","savemultianswer","savenumericalanswer","saveshortansweranswer","savetruefalseanswer","swaptotrueendenvironment","targetext","targetfmt","testforquote","texttorescan","tikzifexternalizing","toadd","verbcatcodes","writeclozequestion","writeessayquestion","writematchingquestion","writemultiquestion","writenumericalquestion","writeshortanswerquestion","writetomoodle","writetruefalsequestion","xa","xmlDisplayVerbatimBox"]}
-,
-"moredefs.sty":{"envs":{},"deps":{},"cmds":["IfElement","In","InitCS","InitName","ShortEmpty","LongEmpty","ReserveCS","ReserveName","SaveCS","RestoreCS","SaveName","RestoreName","requirecommand","newtokens","newlet","newboolean","providetokens","provideboolean","providesavebox","providecounter","providelength","UndefineCS","UndefineName","defcommand","NewName","DefName","Global","CheckName","RequireName","NewTextFontCommand","NewRobustCommand","Elet","EElet","NewUserInfo","EExpand","eExpand","eExecute","Gobble","GobbleM","GobbleO","GobbleMM","GobbleMO","GobbleOM","DeclareBooleanOptions","DeclareBooleanUserOptions","ToggleBoolean","VerboseErrors","GVerboseErrors","Debug","GDebug","DTypeout","DDTypeout","DDDTypeout","DGobbleM","FrankenError","FrankenWarning","FrankenInfo","DoXPackageS","PPOptArg","docdate","filedate","fileinfo","fileversion"]}
-,
-"moreenum.sty":{"envs":["enumHexzero","enumbinzero","enumhexzero","enumoctzero"],"deps":["amsmath.sty","alphalph.sty","enumitem.sty","fmtcount.sty"],"cmds":["greek","Greek","enumHex","enumhex","enumbinary","enumoctal","raisenth","levelnth","Nthwords","Nwords","NTHWORDS","NWORDS","nthwords","nwords"]}
-,
-"morefloats.sty":{"envs":{},"deps":["kvoptions.sty","ifetex.sty"],"cmds":{}}
-,
-"moresize.sty":{"envs":{},"deps":{},"cmds":["HUGE","ssmall"]}
-,
-"moreverb.sty":{"envs":["verbatimtab","listing","listingcont","verbatimwrite","boxedverbatim"],"deps":["verbatim.sty"],"cmds":["verbatimtabinput","verbatimtabsize","listinglabel","listinginput","listingoffset"]}
-,
-"morewrites.sty":{"envs":{},"deps":["expl3.sty","primargs.sty"],"cmds":["morewritessetup"]}
-,
-"morisawa.sty":{"envs":{},"deps":{},"cmds":["mgdefault","mgfamily","textmg"]}
-,
-"mosc-l.cls":{"envs":{},"deps":["s-amsart.cls","ams-rust.sty"],"cmds":["originfo","origvolume","origissue","origmonth","origyear","russianvolinfo","englishvolinfo","translnote","eo","rv","op","eb","origlang"]}
-,
-"mparhack.sty":{"envs":{},"deps":{},"cmds":{}}
-,
-"mpgraphics.sty":{"envs":["mpdisplay","mpinline","mpdefs","ltxpreamble"],"deps":["graphicx.sty","color.sty","moreverb.sty","xkeyval.sty","ifplatform.sty","iftex.sty","ifpdf.sty"],"cmds":["mpgOff","mpgOn","NoProcess","configure","ArrayIterator","Array","BeforeMPDEFSStream","BeforeMPGStream","DeclareArray","MPDEFSverbatimwrite","MPGCutFile","MPGgraphicsProcess","MPGgraphicsinclude","MPGinlinegraphicsinclude","MPGverbatimwrite","NotIfFileExists","OnlyIfFileExists","addToArray","clearArray","endMPDEFSverbatimwrite","endMPGhook","endMPGverbatimwrite","getArraylength","hyphencheck","mpgfigname","mpgnoprocess","theArrayIndex","theCtr","thearraylength","thempgfig","therecordCtr","thezeroCtr"]}
-,
-"mpostinl.sty":{"envs":["mpostfig","mpostdef","mposttex"],"deps":["graphicx.sty","keyval.sty","verbatim.sty"],"cmds":["mpostsetup","mpostuse","mpostgetname","mpostfigurename","mpostplaceholder","mpostdisplaylabel","mpostfilename","mpostfile","mpostdone"]}
-,
-"msc.sty":{"envs":["msc","hmsc","mscdoc"],"deps":["tikz.sty","tikzlibrarypositioning.sty","tikzlibraryfit.sty","tikzlibrarycalc.sty","tikzlibrarydecorations.markings.sty","tikzlibraryshapes.misc.sty","tikzlibraryshapes.geometric.sty","tikzlibraryshapes.symbols.sty","xstring.sty","calc.sty"],"cmds":["mscset","nextlevel","declinst","mess","msccomment","action","naction","settimer","timeout","stoptimer","settimeout","setstoptimer","mscmark","measure","measurestart","measureend","lost","found","condition","ncondition","order","regionstart","regionend","dummyinst","startinst","create","stop","referencestart","referenceend","inlinestart","inlineseparator","inlineend","gate","hmscstartsymbol","hmscendsymbol","hmscreference","hmsccondition","hmscconnection","reference","separator","mscdocreferenceheight","mscdocreferencewidth","topnamedist","coregionstart","coregionend","mscget","actionheight","actionwidth","addDdraw","adddraw","bottomfootdist","conditionheight","conditionoverlap","drawframe","drawinstfoot","drawinsthead","envinstdist","firstlevelheight","gatesymbolradius","hmscconditionheight","hmscconditionwidth","hmscconnectionradius","hmsckeywordstyle","hmscreferenceheight","hmscreferencewidth","hmscstartsymbolwidth","inlineoverlap","instbarwidth","instdist","instfootheight","instheadheight","inststart","inststop","instwidth","labeldist","lastlevelheight","leftnamedist","levelheight","lostsymbolradius","markdist","measuredist","measuresymbolwidth","messarrowscale","msccommentdist","mscdate","mscdockeywordstyle","mscgetx","mscgety","msckeywordstyle","mscunit","mscversion","nogrid","referenceoverlap","regionbarwidth","selfmesswidth","sethmsckeyword","setmscdockeyword","setmsckeyword","setmscscale","setmscvalues","showgrid","stopwidth","thickness","timerwidth","topheaddist"]}
-,
-"msu-thesis.cls":{"envs":["abbreviations","appendix"],"deps":["s-memoir.cls","etoolbox.sty","textpos.sty","pdflscape.sty","tikz.sty"],"cmds":["abbrev","bibpagename","bibtocname","dedication","dualmajor","fieldofstudy","listofabbreviations","listabbreviationsname","listalgorithmname","makebibliographypage","makecopyrightpage","makededicationpage","maketitlepage","msuabbrevdelim","msuabbrevfont","msuabbrevwidth","msuappendixnumformat","msucaptiondelim","msutocdelim","setabstractnamespace","usememdefaultlineskip"]}
-,
-"mtgreek.sty":{"envs":{},"deps":["mathtime.sty"],"cmds":["uprightupcasegreek","italicupcasegreek"]}
-,
-"mtpro2.sty":{"envs":{},"deps":{},"cmds":["enablesubscriptcorrection","disablesubscriptcorrection","heavymath","mbf","mathbold","mathscr","mathbscr","mathbcal","mathfrak","altC","altG","altI","altL","altM","altN","altQ","altS","altY","altZ","altr","altx","alty","altz","MTPsetupScript","MTPsetupFrak","MTPsetupCurly","MTPScript","MTPbScript","MTPCurly","MTPFrak","mathbb","varkappa","varbeta","vardelta","upGamma","upDelta","upTheta","upLambda","upXi","upPi","upSigma","upUpsilon","upPhi","upPsi","upOmega","upalpha","upbeta","upgamma","updelta","upepsilon","upzeta","upeta","uptheta","upiota","upkappa","uplambda","upmu","upnu","upxi","uppi","uprho","upsigma","uptau","upupsilon","upphi","upchi","uppsi","upomega","upvarepsilon","upvartheta","upvarpi","upvarrho","upvarsigma","upvarphi","upvarkappa","upvarbeta","upvardelta","curlybraces","straightbraces","morphedbraces","lcbrace","rcbrace","slsumop","slprodop","slcoprodop","upsumop","upprodop","upcoprodop","openclubsuit","shadedclubsuit","openspadesuit","shadedspadesuit","hslash","digamma","dbar","updbar","comp","setdif","cupprod","capprod","simarrow","varland","contraction","coloneq","eqcolon","hateq","circdashbullet","bulletdashcirc","bigcupprod","bigcapprod","bigvarland","bigast","dotup","ddotup","dddotup","ddddotup","what","wtilde","wcheck","wbar","wwhat","wwtilde","wwcheck","wwbar","oacc","notless","notleq","notprec","notpreceq","notsubset","notsubseteq","notsqsubseteq","notgr","notgeq","notsucc","notsucceq","notsupset","notsupseteq","notsqsupseteq","notequiv","notsim","notsimeq","notapprox","notcong","notasymp","nless","nleq","nprec","npreceq","nsubset","nsubseteq","nsqsubseteq","ngtr","ngeq","nsucc","nsucceq","nsupset","nsupseteq","nsqsupseteq","ncong","nasymp","nequiv","nsimeq","napprox","iintop","iiintop","oiintop","oiiintop","cwointop","awointop","cwintop","barintop","slashintop","iint","iiint","oiint","oiiint","cwoint","awoint","cwint","barint","slashint","slsum","slprod","slcoprod","upsum","upprod","upcoprod","dddot","ddddot","PARENS","LEFTRIGHT","vcorrection","ccases","widecheck","widehatdown","widetildedown","widecheckdown","arc","Arc","widearc","LEFTROOT","UPROOT","ROOT","OF","SQRT","xl","XL","XXL","XXXL","undercbrace","overcbrace","checkmark","circledR","maltese","yen","Diamond","leadsto","boxdot","boxplus","boxtimes","square","blacksquare","centerdot","lozenge","blacklozenge","circlearrowright","circlearrowleft","leftrightharpoons","boxminus","Vdash","Vvdash","vDash","twoheadrightarrow","twoheadleftarrow","leftleftarrows","rightrightarrows","upuparrows","downdownarrows","upharpoonright","downharpoonright","upharpoonleft","downharpoonleft","rightarrowtail","leftarrowtail","leftrightarrows","rightleftarrows","Lsh","Rsh","rightsquigarrow","leftrightsquigarrow","looparrowleft","looparrowright","circeq","succsim","gtrsim","gtrapprox","multimap","therefore","because","doteqdot","triangleq","precsim","lesssim","lessapprox","eqslantless","eqslantgtr","curlyeqprec","curlyeqsucc","preccurlyeq","leqq","leqslant","lessgtr","backprime","risingdotseq","fallingdotseq","succcurlyeq","geqq","geqslant","gtrless","sqsubset","sqsupset","vartriangleright","vartriangleleft","trianglerighteq","trianglelefteq","bigstar","between","blacktriangledown","blacktriangleright","blacktriangleleft","vartriangle","blacktriangle","triangledown","eqcirc","lesseqgtr","gtreqless","lesseqqgtr","gtreqqless","Rrightarrow","Lleftarrow","veebar","barwedge","doublebarwedge","measuredangle","sphericalangle","varpropto","smallsmile","smallfrown","Subset","Supset","Cup","Cap","curlywedge","curlyvee","leftthreetimes","rightthreetimes","subseteqq","supseteqq","bumpeq","Bumpeq","lll","ggg","circledS","pitchfork","dotplus","backsim","backsimeq","complement","intercal","circledcirc","circledast","circleddash","updownarrows","downuparrows","updownharpoons","downupharpoons","upupharpoons","downdownharpoons","undercurvearrowleft","undercurvearrowright","midshaft","rarrowhead","larrowhead","lvertneqq","gvertneqq","lneqq","gneqq","nleqslant","ngeqslant","lneq","gneq","precnsim","succnsim","lnsim","gnsim","nleqq","ngeqq","precneqq","succneqq","precnapprox","succnapprox","lnapprox","gnapprox","nsim","diagup","diagdown","varsubsetneq","varsupsetneq","nsubseteqq","nsupseteqq","subsetneqq","supsetneqq","varsubsetneqq","varsupsetneqq","subsetneq","supsetneq","nparallel","nmid","nshortmid","nshortparallel","nvdash","nVdash","nvDash","nVDash","ntrianglerighteq","ntrianglelefteq","ntriangleleft","ntriangleright","nleftarrow","nrightarrow","nLeftarrow","nRightarrow","nLeftrightarrow","nleftrightarrow","divideontimes","varnothing","nexists","Finv","Game","mho","eth","eqsim","beth","gimel","daleth","lessdot","gtrdot","ltimes","rtimes","shortmid","shortparallel","thicksim","thickapprox","approxeq","succapprox","precapprox","curvearrowleft","curvearrowright","backepsilon","nsqsubset","nsqsupset","ulcorner","urcorner","llcorner","lrcorner","dashleftarrow","dashrightarrow","dasharrow","restriction","Doteq","doublecup","doublecap","llless","gggtr","smallsetminus","Bbbk","Box","lhd","rhd","unrhd","unlhd","Join"]}
-,
-"mucproc.cls":{"envs":["authoraddendum"],"deps":["expl3.sty","xparse.sty","scrbase.sty","s-scrartcl.cls","graphicx.sty","babel.sty","csquotes.sty","geometry.sty","biblatex.sty","inputenc.sty","fontenc.sty","txfonts.sty","scrlayer-scrpage.sty","comment.sty","pdfx.sty"],"cmds":["captionsngerman","datengerman","extrasngerman","noextrasngerman","dq","ntosstrue","ntossfalse","prefacename","bibname","chaptername","enclname","ccname","headtoname","pagename","seename","alsoname","proofname","glossaryname","mdqon","mdqoff","captionsenglish","dateenglish","extrasenglish","noextrasenglish","englishhyphenmins","britishhyphenmins","americanhyphenmins","thanks","thanksref","mucprocVersion","foreverunspace","printtexte","maxprtauth","apanum","mkdaterangeapalong","mkdaterangeapalongextra","begrelateddelimcommenton","begrelateddelimreviewof","begrelateddelimreprintfrom","urldatecomma","apashortdash","citeresetapa","fullcitebib","nptextcite","nptextcites","DH","dh","dj","DJ","guillemetleft","guillemetright","guillemotleft","guillemotright","guilsinglleft","guilsinglright","Hwithstroke","hwithstroke","k","NG","ng","quotedblbase","quotesinglbase","textogonekcentered","textquotedbl","th","TH"]}
-,
-"mugsthesis.cls":{"envs":["acknowledgments","dedication"],"deps":["etoolbox.sty","indentfirst.sty","s-memoir.cls"],"cmds":["degree","degreemo","degreeyr","preheadskip","postheadskip"]}
-,
-"multiaudience.sty":{"envs":["shownto","Section","Subsection","Subsubsection","Paragraph","Subparagraph"],"deps":["environ.sty","xkeyval.sty"],"cmds":["CurrentAudience","DefCurrentAudience","SetNewAudience","showto","Footnote","DefMultiaudienceCommand","NewMultiaudienceSectionEnv"]}
-,
-"multibib.sty":{"envs":{},"deps":{},"cmds":["newcites","setbiblabelwidth","ifcontinuouslabels","continuouslabelstrue","continuouslabelsfalse","iflabeled","labeledtrue","labeledfalse","mylop","to","mylopoff","newusecounter","argdef","argedef","plugh","testchar"]}
-,
-"multibibliography.sty":{"envs":{},"deps":{},"cmds":["bibliographysequence","bibliographytimeline","MBbibcite","MBlabel"]}
-,
-"multicap.sty":{"envs":{},"deps":["ifthen.sty"],"cmds":["mfcaption","mtcaption","themcapsize","themcapskip","abvmcapskip","blwmcapskip"]}
-,
-"multicol.sty":{"envs":["multicols*"],"deps":{},"cmds":["columnbreak","columnseprulecolor","docolaction","flushcolumns","LRmulticolcolumns","maxbalancingoverflow","multicolbaselineskip","multicolpretolerance","multicolsep","multicoltolerance","newcolumn","postmulticols","premulticols","raggedcolumns","RLmulticolcolumns","setemergencystretch","vfilmaxdepth"]}
-,
-"multicolrule.sty":{"envs":{},"deps":["l3keys2e.sty","xparse.sty","xpatch.sty","xcolor.sty","scrlfile.sty","multicol.sty","tikz.sty"],"cmds":["SetMCRule","DeclareMCRulePattern","columnseprulecolor"]}
-,
-"multidef.sty":{"envs":{},"deps":["trimspaces.sty"],"cmds":["multidef"]}
-,
-"multido.sty":{"envs":{},"deps":{},"cmds":["multido","MultidoCheckNames","mmultido","Multido","MMultido","multidocount","multidostop","fpAdd","fpSub","MultidoLoaded","TheAtCode","fileversion","filedate","FPadd","FPsub"]}
-,
-"multienum.sty":{"envs":["multienumerate"],"deps":{},"cmds":["mitemx","mitemxx","mitemxxx","mitemxox","mitemxxo","mitemxxxx","mitemxoxx","mitemxxox","mitemxxxo","mitemxxoo","mitemxxxxx","usedx","remainx","usedxx","remainxx","usedxxx","remainxxx","usedxxxx","remainxxxx","remainxox","remainxoxx","usedxxxxx","remainxxxxx","labelname","itemx","itemxx","itemxxx","itemxox","itemxxo","itemxxxx","itemxoxx","itemxxox","itemxxxo","itemxxxxx","oddlist","evenlist","regularlist","listtype","regularlisti","regularlistii","regularlistiii","oddlisti","evenlisti","themultienum","themultienumdepth","themultienumi","themultienumii","themultienumiii","themultienumiv"]}
-,
-"multienv.sty":{"envs":["multienv","multienv*"],"deps":{},"cmds":["newmultienvironment","renewmultienvironment","providemultienvironment"]}
-,
-"multiexpand.sty":{"envs":{},"deps":{},"cmds":["MultiExpand","MultiExpandAfter","multiexpand","multiexpandafter"]}
-,
-"multifootnote.sty":{"envs":{},"deps":["l3keys2e.sty"],"cmds":["multifootnotemark","footnotenumber","multifootnotetext","multifootnote","multifootnotetag","footnotetag","multifootnotetagtext"]}
-,
-"multilang-sect.sty":{"envs":["Section","Section*","SubSection","SubSection*","SubSubSection","SubSubSection*","Paragraph","Paragraph*","SubParagraph","SubParagraph*"],"deps":{},"cmds":{}}
-,
-"multilang-tags.sty":{"envs":{},"deps":{},"cmds":["SetTagFilter","DefineTagFilter","UseTagFilter"]}
-,
-"multilang.sty":{"envs":{},"deps":["environ.sty","etoolbox.sty","pgfkeys.sty","pgfopts.sty"],"cmds":["NewMultilangCmd","NewMultilangEnv","NewMultilangType"]}
-,
-"multimedia.sty":{"envs":{},"deps":["keyval.sty"],"cmds":["movie","hyperlinkmovie","sound","hyperlinksound","hyperlinkmute"]}
-,
-"multind.sty":{"envs":{},"deps":{},"cmds":["makeindex","printindex","see"]}
-,
-"multiobjective.sty":{"envs":{},"deps":["amssymb.sty"],"cmds":["dom","negdom","weakdom","negweakdom","strictdom","negstrictdom","multepsilondom","addiepsilondom","better","vec","set","argmin","argmax"]}
-,
-"multiple-choice.sty":{"envs":["choices"],"deps":["biditools.sty"],"cmds":["choice","choicesdate","choicesversion"]}
-,
-"multiply.sty":{"envs":{},"deps":{},"cmds":["multnooverflow"]}
-,
-"multirow.sty":{"envs":{},"deps":{},"cmds":["multirow","multirowsetup","multirowdebugtrue","multirowdebugfalse","bigstrutjot","STneed"]}
-,
-"multitoc.sty":{"envs":{},"deps":["multicol.sty","ifthen.sty"],"cmds":["multicolumntoc","multicolumnlot","multicolumnlof","immediateaddtocontents"]}
-,
-"mup.sty":{"envs":["mup"],"deps":["abc.sty"],"cmds":["normalmupoutputfile","mupinput","mupwidth"]}
-,
-"musical.sty":{"envs":["script","spokentext","lyrictext"],"deps":["ifthen.sty","fancyhdr.sty","etoolbox.sty","xspace.sty","titlesec.sty","footmisc.sty","tcolorbox.sty","tcolorboxlibrarybreakable.sty","tcolorboxlibraryskins.sty"],"cmds":["scripttitles","themusicalpage","theactcounter","thescenecounter","act","scene","sectionname","setdescription","rehearsalmark","transition","speechmargin","dialogfootnote","dialog","charactername","lyrics","spacer","stdir","music","dance","pause","dialogue","listofsongs","listofdances","addcharacter","character","comment"]}
-,
-"musicography.sty":{"envs":{},"deps":["stackengine.sty","xparse.sty"],"cmds":["ifLargeFont","LargeFonttrue","LargeFontfalse","musFont","musFontBig","musFontLarge","musNumFont","musSymbol","musAccidental","musFlat","musDoubleFlat","musSharp","musDoubleSharp","musNatural","fl","sh","na","musStemmedNote","musFlaggedNote","musDottedNote","musStem","musSegno","musDot","musWhole","musHalf","musQuarter","musEighth","musSixteenth","musThirtySecond","musSixtyFourth","musWholeDotted","musHalfDotted","musQuarterDotted","musEighthDotted","musSixteenthDotted","musThirtySecondDotted","musSixtyFourthDotted","musStack","musSymbolMeter","meterCplus","musMeter","musFigFont","musFig","noFig","meterC","meterCutC","meterCThree","meterCThreeTwo","meterCZ","meterO","musSemibreve","musMinim","musSemiminim","musCorchea","musFusa","musSemibreveDotted","musMinimDotted","musSeminiminimDotted","musCorcheaDotted","musFusaDotted"]}
-,
-"musikui.sty":{"envs":["musikui"],"deps":["graphicx.sty"],"cmds":["kake","wari","musi","sen","bubunsen","eaten","noneaten","halfeaten","halfnoneaten","hhalfeaten","hhalfnoneaten","musiwidth","musiheight","musidepth","musihgap","musivgap","musirule","musiopsymbol","musiwarikakko"]}
-,
-"musixfll.sty":{"envs":{},"deps":{},"cmds":["longledgerlines","autoledgerlines"]}
-,
-"musixguit.sty":{"envs":["song"],"deps":["setspace.sty","musixtex.sty"],"cmds":["chord","B","K","T","lage","finger","Finger","barree","saite","strike","strk","pickd","picku","tpickd","tpicku","release","laen","len","lena","lenb","teil","thebarree","thebarreee","thelaenge","thelage","drumclef","dcqu","dcql","dcqb","dczq","dccu","dcccu","dccl","dcccl","dhqu","dhql","dhqb","dhzq","dhcu","dhccu","dhcl","dhccl","doqu","doql","doqb","dozq","docu","doccu","docl","doccl","xqu","xql","xqb","xzq","xcu","xccu","xcl","xccl","oxqu","oxql","oxqb","oxzq","oxcu","oxccu","oxcl","oxccl","roqu","roql","roqb","rozq","rocu","roccu","rocl","roccl","tgqu","tgql","tgqb","tgzq","tgcu","tgccu","tgcl","tgccl","kqu","kql","kqb","kzq","kcu","kccu","kcl","kccl","dnq","dznq","dqu","dqup","dqupp","dql","dqlp","dqlpp","dqb","dzq","dzqp","dzqpp","dcu","dccccu","dcl","dccccl","dcup","dcupp","dclp","dclpp","ynq","yznq","zynq","yqu","yqup","yqupp","yql","yqlp","yqlpp","yqb","yzq","yzqp","yzqpp","ycu","yccu","ycccu","yccccu","ycl","yccl","ycccl","yccccl","ycup","ycupp","yclp","yclpp","raiseguitar","guitar","gbarre","gdot"]}
-,
-"musixtex.sty":{"envs":["music"],"deps":{},"cmds":["absoluteaccid","accshift","addspace","afterruleskip","akkoladen","alaligne","alapage","allabreve","altitude","alto","altoclef","altplancher","altportee","arithmeticskipscale","arpeggio","atnextbar","atnextline","backturn","bar","barno","barnoadd","barnumbers","barre","bass","bassclef","basslowoct","bassoct","beforeruleskip","bhsk","bigaccid","bigdfl","bigdsh","bigfl","bigna","bigsh","bigtype","Bigtype","BIgtype","BIGtype","blppz","blpz","blsf","blsfz","blst","bltext","boxit","boxitsep","bqsk","bracket","breakslur","breve","bsk","btsk","buppz","bupz","busf","busfz","bust","butext","ca","caesura","catcodesmusic","cbreath","cca","ccca","cccca","ccccca","cccccl","cccccu","ccccl","ccccu","cccl","cccu","cchar","ccharnote","ccl","cclp","ccn","ccu","ccup","cdfl","cdsh","centerbar","centerhpause","centerHpause","centerpause","centerPAuse","centerPAUSe","cfl","changeclefs","Changeclefs","changecontext","Changecontext","changesignature","chpause","cHpause","circleit","cl","clp","clpp","cmidstaff","cna","coda","Coda","contpiece","Contpiece","cPAUSe","cPAuse","cpause","crescendo","csh","csong","cu","cup","cupp","curlybrackets","curve","decrescendo","DefaultStemlength","DEP","Dep","dfl","dhsong","dotted","doublebar","doublethumb","downbow","downtrio","downtuplet","Dqbbl","Dqbbu","Dqbl","Dqbu","ds","dsh","dsp","dspp","duevolte","eightbf","eightit","eightrm","elemskip","en","endcatcodesmusic","endextract","endmuflex","Endpiece","endpiece","endvolta","endvoltabox","enotes","everystaff","extractline","f","fermatadown","Fermatadown","Fermataup","fermataup","fetafont","fetalargefont","fetaLargefont","fetanorfont","fetasmallfont","fetatinyfont","ff","fff","ffff","fl","flageolett","fontbarno","fp","frtbf","generalmeter","generalsignature","geometricskipscale","grcl","grcu","groupbottom","grouptop","ha","hap","happ","hardlyrics","hardspace","hb","hbp","hbpp","hbsk","hidebarrule","Hidebarrule","hl","hloff","hlp","hlpp","hp","hpause","Hpause","hpausep","hpausepp","hpp","hppp","hqsk","hroff","hs","hsk","hsong","hsp","hspp","hu","hup","hupp","ibbbbbl","Ibbbbbl","ibbbbbu","Ibbbbbu","ibbbbl","Ibbbbl","ibbbbu","Ibbbbu","ibbbl","Ibbbl","ibbbu","Ibbbu","ibbl","Ibbl","ibbu","Ibbu","ibl","Ibl","ibslurd","ibsluru","ibu","Ibu","icresc","ifactiveinstrument","iftabstylespace","ignorenats","instrumentnumber","interbeam","interfacteur","interinstrument","Interligne","internote","Internote","interportee","interstaff","invertslur","Ioctfindown","ioctfindown","Ioctfinup","ioctfinup","islurd","Islurdbreak","isluru","Islurubreak","isslurd","issluru","itenl","Itenl","itenu","Itenu","itied","itieu","Itrille","ITrille","kernm","largemusicsize","Largemusicsize","largenotesize","Largenotesize","Largevalue","largevalue","larpeggio","lchar","lcharnote","lcl","lcn","lcu","ldfl","ldsh","leftrepeat","leftrightrepeat","lfl","lh","lhl","lhp","lhu","lifthpause","lifthpausep","Liftoctline","liftpause","liftpausep","Liftslur","linegoal","lmidstaff","lna","loff","loffset","longa","longaa","lpar","lpppt","lppt","lppz","lpt","lpz","lpzst","lql","lqp","lqu","lrlap","lsf","lsfz","lsh","lsong","lst","ltab","lw","maxima","meddyn","medtype","meterC","meterfont","meterfrac","meterlargefont","meterLargefont","meterN","meterplus","meterskip","metron","metronequiv","mf","midslur","mordent","Mordent","mp","mulooseness","multnoteskip","musicparskip","musixtex","na","nbbbbbl","nbbbbbu","nbbbbl","nbbbbu","nbbbl","nbbbu","nbbl","nbbu","nbinstruments","nextinstrument","nextstaff","nh","ninebf","nineit","ninerm","nnnotes","nnotes","nobarnumbers","normalmusicsize","normalnotesize","normaltranspose","normalvalue","normdyn","normtype","nostartrule","nostemcut","Notes","notes","NOtes","NOTes","NOTEs","NOTES","noteskip","notesp","Notesp","NOtesp","NOTesp","NOTEsp","nq","nqqb","nqqh","nqql","nqqqb","nqqqh","nqqql","nqqqu","nqqu","nspace","octfindown","octfinup","octnumberdown","octnumberup","off","ovbkt","p","pause","PAuse","PAUSe","pausep","pausepp","pdld","pdlu","pdlud","PED","Ped","pp","ppff","ppffsixteen","ppfftwelve","ppfftwenty","ppfftwentyfour","ppfftwentynine","ppp","pppp","pppt","ppt","prevstaff","pt","ptr","qa","qap","qapp","qb","qbp","qbpp","ql","qlp","qlpp","qp","qpp","qppp","Qqbbl","Qqbbu","Qqbl","Qqbu","qqs","qqsk","qqsp","qqspp","qs","qsk","qsp","qspace","qspp","qu","qup","qupp","raggedstoppiece","raisebarno","raiseped","raisevolta","rcl","rcu","relativeaccid","resetclefsymbols","resetlayout","reverseallabreve","reverseC","rh","rhl","rhp","rhu","rightrepeat","roff","roffset","rpar","rql","rqp","rqu","rtab","rw","scale","sDEP","sDep","Segno","segno","selectinstrument","selectstaff","sepbarrules","setaltoclefsymbol","setbassclefsymbol","setclef","setclefsymbol","setdoublebar","setdoubleBAR","setemptybar","setendvolta","setendvoltabox","setinterinstrument","setinterstaff","setleftrepeat","setleftrightrepeat","setlines","setmaxcclvibeams","setmaxcxxviiibeams","setmaxgroups","setmaxinstruments","setmaxoctlines","setmaxslurs","setmaxtrills","setmeter","setname","setrightrepeat","setsign","setsize","setsongraise","setstaffs","settrebleclefsymbol","Setvolta","setvolta","setvoltabox","sevenbf","sevenit","sevenrm","sF","sfz","sfzp","sh","shake","Shake","Shakel","Shakene","Shakenw","Shakesw","shiftbarno","showallbarrules","showbarrule","Showbarrule","sk","slide","slur","smallaccid","smallaltoclef","smallbassclef","smallbasslowoct","smallbassoct","smalldfl","smalldsh","smalldyn","smallfl","smallmusicsize","smallna","smallnotesize","smallsh","smalltrebleclef","smalltreblelowoct","smalltrebleoct","smalltype","Smalltype","smallvalue","softlyrics","songbottom","songtop","soupir","sPED","sPed","sslur","staffbotmarg","stafftopmarg","startbarno","startextract","startmuflex","startpiece","startrule","stdbarrules","stdstemfalse","stemcut","stemfactor","stemlength","stie","stoppiece","Stoppiece","svtbf","systemheight","systemnumbers","tab","tabclef","tabfnt","tabstringfnt","tabstylespacefalse","tabstylespacetrue","tbbbbbl","tbbbbbu","tbbbbl","tbbbbu","tbbbl","tbbbu","tbbl","tbbu","tbl","tbslurd","tbsluru","tbu","tcresc","tdbslur","tdecresc","tenbf","tenbi","tenit","tenrm","tensc","thelyrics","thsong","tie","tinydyn","tinynotesize","tinytype","tinyvalue","Toctfin","tqb","Tqbbl","Tqbbu","Tqbl","Tqbu","tqh","tql","tqqb","tqqh","tqql","tqqqb","tqqqh","tqqql","tqqqu","tqqu","tqsk","tqu","tr","transpose","treble","trebleclef","treblelowoct","trebleoct","trille","Trille","triolet","trml","Trml","trmu","Trmu","trrml","Trrml","trrmu","Trrmu","trrrml","Trrrml","trrrmu","Trrrmu","trt","tslur","Tslurbreak","tsslur","tten","Tten","ttie","TTrille","Ttrille","tubslur","tuplettxt","turn","twelvebf","twelvebi","twelveit","twelverm","twelvesc","twfvbf","twtybf","txt","txtfont","tzccu","tzcu","tzcup","tzhu","tzhup","tzqu","tzqup","tzwh","tzwhp","unbkt","upbow","upperfl","upperna","uppersh","uppz","uptext","Uptext","uptrio","uptuplet","upz","upzst","usf","usfz","ust","varaccid","varline","vnotes","voltadot","wh","wholeshift","whp","whpp","wq","wqq","writebarno","writethebarno","writezbarno","xbar","xtr","xtuplet","xxtuplet","zalaligne","zalapage","zbar","zbreath","zbreve","zcccccl","zcccccu","zccccl","zccccu","zcccl","zcccu","zccl","zcclp","zccu","zccup","zchangeclefs","zchangecontext","zchar","zcharnote","zcl","zclp","zclpp","zcn","zcu","zcup","zcupp","zdoublebar","zendextract","zendpiece","zh","zhl","zhlp","zhlpp","zhp","zhpp","zhu","zhup","zhupp","zleftrepeat","zleftrightrepeat","zlonga","zltab","zmaxima","zmidstaff","znh","znotes","znq","zq","zqb","zqbp","zqbpp","zql","zqlp","zqlpp","zqp","zqpp","zqu","zqup","zqupp","zrightrepeat","zrtab","zsong","zstoppiece","ztab","ztqb","ztqh","ztql","ztqu","zw","zwh","zwp","zwpp","zwq","zwqq","zzbar","zzdoublebar","zzleftrepeat","zzleftrightrepeat","zzrightrepeat","advancefalse","advancetrue","begininstrument","beginstaff","BIGfont","BIgfont","Bigfont","bigfont","bigwedgebox","catcodeat","catcodesmusicfalse","catcodesmusictrue","charnote","dppz","dpz","dpzst","dsf","dsfz","dst","eightbi","eightdc","eightsc","eightsl","eightss","eighttt","elevenbf","elevenbi","elevendc","elevenit","elevenrm","elevensc","elevenss","fivedc","fontid","fourdc","freqbarno","frtbi","frtdc","frtit","frtrm","frtsc","frtsl","frtss","frttt","getcurpos","halfwidthbigwedge","hardnotes","hchar","hcharnote","hlthick","hslurd","hslurdd","hslurdeleven","hslurdelevend","hslurdsixteen","hslurdsixteend","hslurdthirteen","hslurdthirteend","hslurdtwenty","hslurdtwentyd","hslurdtwentyfour","hslurdtwentyfourd","hslurdtwentynine","hslurdtwentynined","hsluru","hslurud","hslurueleven","hsluruelevend","hslurusixteen","hslurusixteend","hsluruthirteen","hsluruthirteend","hslurutwenty","hslurutwentyd","hslurutwentyfour","hslurutwentyfourd","hslurutwentynine","hslurutwentynined","ifadvance","ifcatcodesmusic","iflongDCfontnames","iflongECfontnames","ihslurd","ihsluru","inmux","IslurdbreakPrevBar","IslurubreakPrevBar","istied","istieu","itrille","keychar","lastbarno","lastbarpos","lhpp","lineset","longDCfontnamesfalse","longDCfontnamestrue","longECfontnamesfalse","longECfontnamestrue","lowersonginstrum","lqpp","ltabbox","lthick","lwp","lwpp","maxtrilles","medppff","meterbigfont","meternorfont","metersmallfont","mezzopiano","musiceleven","musickeyfont","musicLargefont","musiclargefont","musicnorfont","musicsixteen","musicsize","musicsmallfont","musicthirteen","musictinyfont","musictwenty","musictwentyfour","musictwentynine","musixchar","musixfont","mxdate","mxmajorvernumber","mxminorvernumber","mxsps","mxvernumber","mxversion","mxversuffix","nblines","ninebi","ninedc","ninesc","ninesl","niness","ninett","nobarmessages","nolinemessages","normppff","nslashes","numslashes","octnumber","octnumberdefault","outmux","pChangecontext","pchangecontext","qlrlap","rhpp","rqpp","rtabbox","rwp","rwpp","scalenoteskip","setclefs","sevenbi","sevendc","sevensc","sevenss","sixdc","sld","sldd","slu","slud","slurd","slurdd","slurdeleven","slurdelevend","slurdsixteen","slurdsixteend","slurdthirteen","slurdthirteend","slurdtwenty","slurdtwentyd","slurdtwentyfour","slurdtwentyfourd","slurdtwentynine","slurdtwentynined","sluru","slurud","slurueleven","sluruelevend","slurusixteen","slurusixteend","sluruthirteen","sluruthirteend","slurutwenty","slurutwentyd","slurutwentyfour","slurutwentyfourd","slurutwentynine","slurutwentynined","slurz","slurzd","slz","slzd","smallppff","stringnum","stringraise","svtbi","svtdc","svtit","svtrm","svtsc","svtsl","svttt","tabbox","tabcleffnt","tabfntsixteen","tabfntthirteen","tabfnttwenty","tabfnttwentyfour","tabfnttwentynine","tabLargecleffnt","tablargecleffnt","tabLargefnt","tablargefnt","tabnorcleffnt","tabnorfnt","tabsmallcleffnt","tabsmallfnt","tendc","tensl","tenss","tentt","threedc","tinyppff","Tleg","tleg","toctfin","TrilleX","trilleX","TslurbreakNextBar","tTrille","ttrille","twelvedc","twelvesl","twelvess","twelvett","twfvbi","twfvit","twfvrm","twfvsc","twfvsl","twfvtt","twtybi","twtydc","twtyit","twtyrm","twtysc","twtysl","twtytt","tzcccu","tzcccup","tzccup","uplap","uppersonginstrum","xgregfont","xgregLargefont","xgreglargefont","xgregnorfont","xgregsmallfont","xgregtinyfont","xtie","xtied"]}
-,
-"mwart.cls":{"envs":{},"deps":{},"cmds":["SetSectionFormatting","DeclareSectioningCommand","captionsettings","centeredlast","figuresettings","FormatBlockHeading","FormatChapterHeading","FormatHangHeading","FormatRigidChapterHeading","FormatRunInHeading","HeadingNumber","HeadingNumberedfalse","HeadingNumberedtrue","HeadingRHeadText","HeadingText","HeadingTOCText","ifHeadingNumbered","partmark","secondarysize","sectsettings","SetTOCIndents","tablesettings","titlesettings"]}
-,
-"mwbk.cls":{"envs":{},"deps":{},"cmds":["SetSectionFormatting","DeclareSectioningCommand","backmatter","bibname","captionsettings","centeredlast","chapter","chaptermark","chaptername","figuresettings","FormatBlockHeading","FormatChapterHeading","FormatHangHeading","FormatRigidChapterHeading","FormatRunInHeading","frontmatter","HeadingNumber","HeadingNumberedfalse","HeadingNumberedtrue","HeadingRHeadText","HeadingText","HeadingTOCText","ifHeadingNumbered","mainmatter","partmark","secondarysize","sectsettings","SetTOCIndents","tablesettings","thechapter","titlesettings"]}
-,
-"mwe.sty":{"envs":{},"deps":["graphicx.sty","blindtext.sty"],"cmds":{}}
-,
-"mwrep.cls":{"envs":{},"deps":{},"cmds":["SetSectionFormatting","DeclareSectioningCommand","bibname","captionsettings","centeredlast","chapter","chaptermark","chaptername","figuresettings","FormatBlockHeading","FormatChapterHeading","FormatHangHeading","FormatRigidChapterHeading","FormatRunInHeading","HeadingNumber","HeadingNumberedfalse","HeadingNumberedtrue","HeadingRHeadText","HeadingText","HeadingTOCText","ifHeadingNumbered","partmark","secondarysize","sectsettings","SetTOCIndents","tablesettings","thechapter","titlesettings"]}
-,
-"mxedruli.sty":{"envs":["mxedr","mxedb","mxedi","mxedc"],"deps":{},"cmds":["mxedr","mxedb","mxedi","mxedc","fmxedr","fmxedb","fmxedi","fmxedc","pmxedr","pmxedb","pmxedi","pmxedc"]}
-,
-"myfilist.sty":{"envs":{},"deps":["readprov.sty"],"cmds":["EmptyFileList","ListInfos","ListGenerator","NoStopListInfos","VarListInfos","WriteFileInfosTo","ReadListFileInfos","UseFindUtility","FindReadListFileInfos","FileListRemark","NoBottomLines"]}
-,
-"mynsfc.cls":{"envs":{},"deps":["kvoptions.sty","s-ctexart.cls","xeCJK.sty","geometry.sty","titlesec.sty","marvosym.sty","amsmath.sty","amssymb.sty","paralist.sty","graphicx.sty","caption.sty","subcaption.sty","xcolor.sty","calc.sty","hyperref.sty","biblatex.sty","xpatch.sty","subfig.sty"],"cmds":["boldnames","cemph","initauthors","oldsection","tocformat","mkpagegrouped","mkonepagegrouped"]}
-,
-"na-border.sty":{"envs":{},"deps":["amsmath.sty","amsfonts.sty","amssymb.sty","mathrsfs.sty","xcolor.sty","tikz.sty","tikzlibrarypatterns.sty","tikzlibraryshapes.sty","tikzlibraryshadings.sty","tikzlibraryshadows.sty","tikzlibraryshapes.geometric.sty","tikzlibrarydecorations.sty","tikzlibrarypositioning.sty","tikzlibrarydecorations.pathmorphing.sty","tikzlibrarycalc.sty","tikzlibraryfadings.sty","tikzlibraryshapes.misc.sty","tikzlibraryintersections.sty","fancyhdr.sty"],"cmds":["naborder","bordertitle"]}
-,
-"na-position.sty":{"envs":{},"deps":["tkz-tab.sty"],"cmds":["tkzTabPos","Nline","Nplot","line","plot"]}
-,
-"nabatean.sty":{"envs":{},"deps":{},"cmds":["nabfamily","Arq","Ab","Ag","Ad","Ah","Aw","Az","Ahd","Atd","Ay","Ak","Al","Am","An","As","Alq","Ap","Asd","Aq","Ar","Asv","At","Aa","Aaleph","Abeth","Agimel","Adaleth","Ahe","Avav","Azayin","Aheth","Ateth","Ayod","Akaph","Alamed","Amem","Anun","Asamekh","Ao","Aayin","Ape","Asade","Aqoph","Aresh","Ashin","Atav","translitnab","translitnabfont"]}
-,
-"nag.sty":{"envs":{},"deps":{},"cmds":["PackageInfoNoLine","ObsoleteCS","ObsoleteEnv","ObsoletePackage","SuggestedPackage","IncompatiblePackages","ObsoleteClass","BadFileLoadOrder","NotAnEnvironment","NotASwitch","FBsuboheight","NagDeclareFloat"]}
-,
-"nahuatl.sty":{"envs":{},"deps":["fontenc.sty"],"cmds":["Yolotl","Cipactli","Ehecatl","Calli","Cuetzpalin","Coatl","Miquiztli","Mazatl","Tochtli","Atl","Itzcuintli","Ozomahtli","Malinalli","Acatl","Ocelotl","Cuauhtli","Cozcacuauhtli","Ollin","Tecpatl","Quiahutl","Xochitl","nahuatlFamily","nahuatl","Nahuatl"]}
-,
-"naive-ebnf.sty":{"envs":["ebnf"],"deps":["pgfopts.sty","xcolor.sty"],"cmds":["terminal","nonterminal"]}
-,
-"nameauth.sty":{"envs":["nameauth"],"deps":["etoolbox.sty","trimspaces.sty","suffix.sty","xargs.sty"],"cmds":["AccentCapThis","AKA","AllCapsActive","AllCapsInactive","AltCaps","AltFormatActive","AltFormatInactive","AltOff","AltOn","CapName","CapThis","DropAffix","ExcludeName","FName","ForceFN","ForceName","ForgetName","ForgetThis","GlobalNames","GlobalNameTest","IfAKA","IfFrontName","IfMainName","IncludeName","IndexActive","IndexActual","IndexInactive","IndexName","IndexProtect","IndexRef","IndexWarnTerse","IndexWarnVerbose","JustIndex","KeepAffix","KeepName","LocalNames","LocalNameTest","Name","NameAddInfo","NameauthIndex","NameClearInfo","NameQueryInfo","NamesActive","NamesInactive","NoComma","PName","PretagName","RevComma","ReverseActive","ReverseCommaActive","ReverseCommaInactive","ReverseInactive","RevName","SeeAlso","ShowComma","SkipIndex","SubvertName","SubvertThis","TagName","textBF","textIT","textSC","textUC","UntagName","FrontNameHook","FrontNamesFormat","ifNameauthObsolete","ifNameauthWestern","MainNameHook","NameauthFName","NameauthLName","NameauthObsoletefalse","NameauthObsoletetrue","NameauthPattern","NameauthWesternfalse","NameauthWesterntrue","NameauthName","NameParser","NamesFormat","RevSpace","ShowIdxPageref","ShowNameInfo","ShowNameState","ShowPattern","Space","SpaceW"]}
-,
-"namedef.sty":{"envs":{},"deps":["expl3.sty"],"cmds":["named","NamedDelim","globalNamedDelim","namedefDate","namedefVersion"]}
-,
-"namedtensor.sty":{"envs":{},"deps":["amsmath.sty"],"cmds":["name","ndef","ndot","ncat","nbin","nsum","nfun","namedtensorstrut"]}
-,
-"nameref.sty":{"envs":{},"deps":["refcount.sty","ltxcmds.sty"],"cmds":["ref","pageref","Ref","nameref","Nameref","Sectionformat","vnameref"]}
-,
-"nanicolle.cls":{"envs":{},"deps":["s-ctexart.cls","graphicx.sty","geometry.sty","multicol.sty","xstring.sty","listofitems.sty","color.sty","calc.sty","rulerbox.sty","makebarcode.sty","qrcode.sty"],"cmds":["heading","subheading","collect","identify","Collect","Identify","Altitude","ChnName","ColDate","ColNum","Collector","DBH","DateIdentification","Descr","Family","Habitat","Height","Identifier","IdentifierStd","LatName","Latitude","LifeForm","Location","Longitude","NumDup","PhotoNum","RecNum","Remark","aster","degree","detchinesestyle","detcommonnamestyle","detlatinstyle","headerstyle","headingstyle","herbariumcode","identifierstyle","mapdef","mapseries","printbarcode","printform","printheadings","printmap","printqrcode","strsubs"]}
-,
-"natbib.sty":{"envs":{},"deps":{},"cmds":["citet","citep","cite","citealt","citealp","citenum","citetext","citeauthor","citefullauthor","citeyear","citeyearpar","Citet","Citep","Citealt","Citealp","Citeauthor","defcitealias","citetalias","citepalias","setcitestyle","bibpunct","shortcites","citestyle","appdef","bibAnnote","bibAnnoteFile","bibcite","bibcleanup","bibfield","bibfont","bibhang","bibinfo","bibitemContinue","bibitemNoStop","BibitemOpen","bibitemOpen","BibitemShut","bibitemStop","bibname","bibnumfmt","bibpostamble","bibpreamble","bibsection","bibsep","citeauthoryear","citeends","citeindexfalse","citeindextrue","citeindextype","citename","citenumfont","citestarts","ifciteindex","natexlab"]}
-,
-"nath.sty":{"envs":["cases","eqnarrayabc","eqns","eqnsabc","subabc","tight"],"deps":{},"cmds":["nathstyle","abbreviation","adot","arraycolsepdim","arrayrowsep","arrayrowsepdim","arraystrut","biggg","binom","delimgrowth","displaybaselineskip","displayed","displaylineskip","displaylineskiplimit","double","factorial","framed","gt","inline","interdisplayskip","intereqnsskip","lAngle","lBrack","lCeil","ldouble","lFloor","lnull","longleftarrowfill","longleftrightarrowfill","longrightarrowfill","lt","ltriple","lVert","lvert","makerobust","mex","Mid","Nath","natherrormark","niv","numbered","old","ot","otto","overleftrightarrow","padded","paritem","paritemwd","pdef","punctpenalty","qqquad","rAngle","rBrack","rCeil","rdouble","return","rFloor","rnull","rtriple","rVert","rvert","showverticaldimensionsofthebox","sizebox","text","triple","underleftarrow","underleftrightarrow","underrightarrow","uo","vin","wall","widebar","ifgeometry","geometrytrue","geometryfalse","iftensors","tensorstrue","tensorsfalse","ifleqno","leqnotrue","leqnofalse","ifdebug","debugtrue","debugfalse","ifsilent","silenttrue","silentfalse"]}
-,
-"natmove.sty":{"envs":{},"deps":["natbib.sty"],"cmds":["natmovechars"]}
-,
-"navigator.sty":{"envs":{},"deps":["yax.sty"],"cmds":["finishpdffile","anchor","anchorname","outline","pdfdef","jumplink","urllink","javascriptlink","actionlink","rawactionlink","annotation","urlaction","javascriptaction","embeddedfile","openfilelink","pdfobject","pdfdictobject","pdfstreamobject","pdffileobject","pdfreserveobject","pdfensureobject","pdfobjectnumber","pdfrefobject","pdfobjectstatus","ifpdfobject","pdfstring"]}
-,
-"nbaseprt.sty":{"envs":{},"deps":["numprint.sty","ifthen.sty"],"cmds":["np","nbp","nbaseprint","nbaseposttext","nbasepretext"]}
-,
-"ncc.cls":{"envs":["alloweqbreak","noeqbreak","theglossary"],"deps":["dcounter.sty","makeidx.sty","nccbiblist.sty","nccheadings.sty","ncclatex.sty","nccold.sty","ncctitlepage.sty","tocenter.sty","topsection.sty","watermark.sty","ncctitle.sty","afterpackage.sty"],"cmds":["setseries","theseries","setvolume","thevolume","setissue","theissue","preprintname","preprint","thepreprint","bookeditor","AuthorBeforeTitle","TitleBeforeAuthor","alloweqbreak","noeqbreak","bibname","chapter","thechapter","chaptername","glossaryname","mit","prefacename","printglossary","setyear","theyear","openrightorany"]}
-,
-"nccbbb.sty":{"envs":{},"deps":{},"cmds":["bbbb","bbbm","bbbc","bbbn","bbbd","bbbo","bbbe","bbbp","bbbf","bbbq","bbbg","bbbr","bbbh","bbbs","bbbi","bbbz","bbbk","bbbl","bbbzero","bbbone"]}
-,
-"nccbiblist.sty":{"envs":["biblist"],"deps":["topsection.sty"],"cmds":["bibliststyle"]}
-,
-"nccboxes.sty":{"envs":{},"deps":{},"cmds":["jhbox","jvbox","jparbox","addbox","pbox","picbox","Strut","Strutletter","tstrut","bstrut","tbstrut","Strutstretch","cbox","cboxstyle","tc"]}
-,
-"ncccropbox.sty":{"envs":{},"deps":{},"cmds":["cropbox","cropboxsep","croplinewidth","croplinelength"]}
-,
-"ncccropmark.sty":{"envs":{},"deps":["ncccropbox.sty","tocenter.sty"],"cmds":["cropmark"]}
-,
-"nccfloats.sty":{"envs":{},"deps":["nccboxes.sty"],"cmds":["FloatStyle","normalfloatstyle","minifig","minitabl","sidefig","sidetabl","ifleftsidefloat","fig","tabl","figs","tabls","newminifloat"]}
-,
-"nccfoots.sty":{"envs":{},"deps":{},"cmds":["Footnotemark","Footnotetext","Footnote"]}
-,
-"ncchdr.sty":{"envs":{},"deps":["nccheadings.sty","nccfancyhdr.sty"],"cmds":["lefttitlemark","titlemark","righttitlemark"]}
-,
-"nccheadings.sty":{"envs":{},"deps":{},"cmds":["chaptermark","partmark","sectionmark","subsectionmark"]}
-,
-"ncclatex.sty":{"envs":{},"deps":["nccdefaults.sty","dcounter.sty","desclist.sty","extdash.sty","nccmath.sty","nccsect.sty","ncctheorems.sty","nccthm.sty","nccboxes.sty","nccfoots.sty","nccpic.sty","nccfloats.sty"],"cmds":["acknowname","acknow","tg","arctg","ctg","arcctg","No","cref","mop","NCC"]}
-,
-"nccmath.sty":{"envs":["fleqn","ceqn","darray","medsize","mmatrix"],"deps":["amsmath.sty"],"cmds":["intertext","dmulticolumn","useshortskip","nr","mrel","underrel","medmath","medop","medint","medintcorr","mfrac","mbinom","eq","eqs","eqalign"]}
-,
-"nccparskip.sty":{"envs":{},"deps":{},"cmds":["SetParskip"]}
-,
-"nccpic.sty":{"envs":{},"deps":["graphicx.sty","nccboxes.sty"],"cmds":["ipic","draftgraphics","finalgraphics","putimage"]}
-,
-"nccrules.sty":{"envs":{},"deps":["mboxfill.sty"],"cmds":["dashrule","dashrulefill","newfootnoterule","newfootnotedashrule"]}
-,
-"nccsect.sty":{"envs":{},"deps":["afterpackage.sty"],"cmds":["startpart","startchapter","startsection","startsubsection","startsubsubsection","startparagraph","startsubparagraph","sectionstyle","sectiontagsuffix","indentaftersection","noindentaftersection","aftersectionvspace","adjustsectionmargins","norunninghead","runninghead","noheadingtag","headingtag","skipwritingtoaux","caption","captionstyle","captiontagstyle","captiontagsuffix","captionwidth","SetTOCStyle","ChapterPrefixStyle","newplainsectionstyle","newhangsectionstyle","DeclareSection","bff","SectionTagSuffix","RunningSectionSuffix","norunningsuffix","CaptionTagSuffix","DeclareTOCEntry","applystyle","NumberlineSuffix","PnumPrototype","TOCMarginDrift","runinsectionskip","RegisterFloatType","beforechapter","epigraph","epigraphparameters","epigraphwidth","StartFromTextArea","StartFromHeaderArea","DeclarePart","DeclareTOCPart","partmark"]}
-,
-"nccstretch.sty":{"envs":{},"deps":{},"cmds":["stretchwith"]}
-,
-"ncctheorems.sty":{"envs":["theorem","lemma","proposition","corollary","statement","definition","example","remark","atheorem","alemma","aproposition","acorollary","astatement","adefinition","anexample","aremark","Theorem","Lemma","Proposition","Corollary","Statement","Definition","Example","Remark"],"deps":["nccdefaults.sty"],"cmds":["theoremname","lemmaname","propositionname","corollaryname","definitionname","statementname","examplename","remarkname","theorem","lemma","proposition","corollary","statement","definition","example","remark","atheorem","alemma","aproposition","acorollary","astatement","adefinition","anexample","aremark","Theorem","Lemma","Proposition","Corollary","Statement","Definition","Example","Remark"]}
-,
-"nccthm.sty":{"envs":["proof"],"deps":["amsgen.sty","dcounter.sty"],"cmds":["qedsymbol","qed","qef","blackqed","blackqedsymbol","whiteqed","whiteqedsymbol","newtheoremtype","renewtheoremtype","liketheorem","likeremark","newtheorem","renewtheorem","TheoremBreakStyle","TheoremNoBreakStyle","breakafterheader","nobreakafterheader","proof","apar","TheoremCommentDelimiters","AfterTheoremHeaderChar","AfterTheoremHeaderSkip","ProofStyleParameters","AparStyleParameters"]}
-,
-"ncctitle.sty":{"envs":{},"deps":["ncctitlepage.sty"],"cmds":["titleareadefault","AuthorBeforeTitle","TitleBeforeAuthor","titlestretch","titlestyle","titlehead","titlesign","titlefoot","titlecomment","abstractstyle","bibindex","copyrighttable","fulltitle","makelastpage","lastpagestretch","lastpagestyle","lastpagehead","lastpageinfo"]}
-,
-"ncctitlepage.sty":{"envs":["titlepage*"],"deps":["textarea.sty"],"cmds":{}}
-,
-"nchairx.sty":{"envs":["claim","nnclaim","corollary","nncorollary","definition","nndefinition","lemma","nnlemma","proposition","nnproposition","theorem","nntheorem","conjecture","nnconjecture","convention","nnconvention","example","nnexample","notation","nnnotation","question","nnquestion","remark","nnremark","exercise","nnexercise","maintheorem","nnmaintheorem","proof","subproof","hint","claimlist","conjecturelist","conventionlist","corollarylist","definitionlist","examplelist","exerciselist","lemmalist","maintheoremlist","notationlist","propositionlist","questionlist","remarklist","theoremlist","prooflist","cptenum","cptitem","cptdesc"],"deps":["xkeyval.sty","amsmath.sty","amssymb.sty","suffix.sty","mathtools.sty","ntheorem.sty","graphicx.sty","enumitem.sty","tensor.sty","aliascnt.sty"],"cmds":["mathscr","nchairxheader","nchairxlogo","chairxfonts","vast","Vast","vastl","vastm","vastr","Vastl","Vastm","Vastr","decorate","deco","script","I","E","D","cc","sign","RE","IM","Unit","const","canonical","pt","at","Map","Bij","argument","domain","range","id","pr","inv","ev","image","graph","coimage","coker","operator","later","earlier","bigplus","bigtimes","biprod","smiley","frownie","heart","field","ring","group","algebra","module","liealg","MC","gerstenhaber","Pol","lmult","rmult","Lmult","Rmult","Center","ad","Ad","Conj","acts","racts","Char","modulo","Clifford","cClifford","Der","InnDer","OutDer","InnAut","OutAut","formal","laurent","sweedler","algebras","Algebras","reps","Reps","PoissonAlg","modules","Leftmodules","Rightmodules","Modules","LeftModules","RightModules","Bimodules","Rings","Groups","Ab","Lattices","Sets","Vect","LieAlgs","Posets","Directed","GSets","Groupoids","vol","complete","Ball","abs","norm","supnorm","expands","std","Weyl","Op","Opstd","OpWeyl","spacename","Bounded","Continuous","Contbound","Fun","Cinfty","Comega","Holomorphic","AntiHolomorphic","Schwartz","Riemann","singsupp","seminorm","ord","conv","extreme","hilbert","prehilb","Adjointable","Finite","Compact","opdomain","spec","closure","res","Res","specrad","slim","wlim","bra","ket","braket","ketbra","Spec","Rad","ind","Measurable","Meas","BoundMeas","Lp","Lone","Ltwo","Linfty","Intp","Intone","Inttwo","Intinfty","essrange","esssup","esssupnorm","ac","sing","indlim","projlim","category","categoryname","functor","groupoid","source","target","unit","opp","asso","Hom","End","Aut","Iso","Obj","Morph","colim","Lie","Schouten","Forms","ZdR","BdR","HdR","Diffeo","Diffop","loc","germ","prol","NRbracket","FNbracket","Manifolds","lefttriv","righttriv","Gau","Conn","ratio","Parallel","CE","HCE","fund","Universal","BCH","LieGroups","Principal","GPrincipal","Fiber","FFiber","Pin","Spin","nablaLC","Laplace","dAlembert","feynman","Dirac","rotation","curl","divergence","gradient","Tor","Ric","scal","Riem","Hessian","hodge","Nijenhuis","del","delbar","FS","Lift","ver","hor","Ver","Hor","Sec","Secinfty","HolSec","SymD","Densities","MeasurableSections","IntpSections","IntegrableSections","Translation","frames","Frames","FDiff","Sympl","Jacobiator","red","Hess","KKS","Courant","Dorfman","Dir","Forward","Backward","Tangent","MWreduction","Mon","Hol","tr","rank","codim","diag","Trans","Mat","SymMat","ann","Span","basis","tensor","Tensor","Anti","Sym","Symmetrizer","AntiSymmetrizer","ins","jns","insa","inss","degs","dega","SP","littlepara","IP","EX","Var","Cov","Cor","cl","scl","interior","boundary","supp","dist","topology","filter","sheaf","Sections","HOM","etale","topological","Topological","Sheaves","PreSheaves","Etale","claimautorefname","conjectureautorefname","conventionautorefname","corollaryautorefname","definitionautorefname","exampleautorefname","exerciseautorefname","lemmaautorefname","maintheoremautorefname","notationautorefname","propositionautorefname","questionautorefname","remarkautorefname","thmautorefname","originalleft","originalright","originaltensor","theoremsymbol","theendNonectr","thecurrNonectr","ifsetendmark","setendmarktrue","setendmarkfalse"]}
-,
-"nddiss2e.cls":{"envs":["acknowledge","copyrightpage","dedication","preface","symbols"],"deps":["s-book.cls","ifthen.sty","exscale.sty","etoolbox.sty","xpatch.sty","ifpdf.sty","ifluatex.sty","ifxetex.sty","hyperref.sty","longtable.sty","threeparttable.sty","threeparttablex.sty","xspace.sty","indentfirst.sty","tabularx.sty","enumitem.sty","latexsym.sty","textcase.sty","epsfig.sty","color.sty","graphicx.sty","natbib.sty","amsmath.sty","float.sty","booktabs.sty","rotating.sty","url.sty","setspace.sty","pdflscape.sty","metalogo.sty"],"cmds":["secondadvisor","acknowledgename","advisor","clearemptydoublepage","copyrightholder","copyrightlicense","copyrightyear","dedicationname","degaward","degdate","department","dissfiledate","dissfileversion","makecopyright","makepublicdomain","nddiss","normalspacing","prefacename","scaption","shortcaption","sym","symbolsname","timenow","unnumchapter","usedtextsize","work"]}
-,
-"needspace.sty":{"envs":{},"deps":{},"cmds":["Needspace","needspace"]}
-,
-"neo-euler.sty":{"envs":{},"deps":["iftex.sty","unicode-math.sty","xkeyval.sty"],"cmds":["backepsilon","bigstar","blacktriangle","blacktriangledown","cuberoot","cuberootsign","digamma","doublebarwedge","downdasharrow","eqqslantgtr","eqqslantless","Finv","fourthroot","fourthrootsign","Game","geqqslant","intextender","Join","leftcurvedarrow","leftdasharrow","leqqslant","lgblkcircle","lgblksquare","lgwhtsquare","mdblkcircle","mdblkdiamond","mdblklozenge","mdblksquare","mdlgblkdiamond","mdlgblklozenge","mdlgwhtdiamond","mdsmblkcircle","mdsmblksquare","mdsmwhtcircle","mdsmwhtsquare","mdwhtcircle","mdwhtdiamond","mdwhtlozenge","mdwhtsquare","pitchfork","precapprox","preceqq","precnapprox","precneq","precneqq","rightcurvedarrow","rightdasharrow","smallblacktriangleleft","smallblacktriangleright","smalltriangleleft","smalltriangleright","smblkdiamond","smblklozenge","smwhtlozenge","subseteqq","subsetneqq","succapprox","succeqq","succnapprox","succneq","succneqq","supseteqq","supsetneqq","triangledown","upand","upbackepsilon","updasharrow","updigamma","vartriangle","vysmblksquare","vysmwhtsquare","wedgebar","Zbar","muphbar","varemptyset","mbfwp","mbfdotlessi","mbfdotlessj","mbfhbar","lesseqslantgtr","gtreqslantless","lesseqqslantgtr","gtreqqslantless","nleqqslant","ngeqqslant","widearc","overrightarc","circledR","circledS","diagup","diagdown","shortmid","shortparallel","nshortmid","nshortparallel","lvertneqq","gvertneqq","nleqslant","ngeqslant","nleqq","ngeqq","varsubsetneq","varsupsetneq","nsubseteqq","nsupseteqq","varsubsetneqq","varsupsetneqq","npreceq","nsucceq","centerdot","restriction","doteqdot","doublecup","doublecap","llless","gggtr","circlearrowleft","circlearrowright","lozenge","blacklozenge","square","blacksquare","dashleftarrow","dashrightarrow","ntriangleleft","ntriangleright","varpropto","thicksim","thickapprox","smallsmile","smallfrown","lhd","rhd","unlhd","unrhd","leadsto","Box","Diamond","fileversion","filedate","NEUtoks"]}
-,
-"nestquot.sty":{"envs":{},"deps":{},"cmds":["nlq","nrq"]}
-,
-"newalg.sty":{"envs":["algorithm","IF","FOR","WHILE","REPEAT","SWITCH"],"deps":{},"cmds":["TO","EACH","IN","item","DEFAULT","CALL","ERROR","algkey","RETURN","NIL","text","alga","algalmostend","algarg","algb","algbegin","algCALL","algckenv","algconst","algDEFAULT","algEACH","algELSE","algend","algeol","algERROR","algFOR","algIF","algIN","algisenvfalse","algisenvtrue","algitem","alglenv","algline","algllop","alglpop","alglpsh","algltop","alglttop","algNIL","algorithm","algpop","algpush","algREPEAT","algRETURN","algset","algsol","algstack","algSWITCH","algtab","algtext","algTO","algWHILE","ELSE","endalgFOR","endalgIF","endalgorithm","endalgREPEAT","endalgSWITCH","endalgWHILE","endFOR","endIF","endREPEAT","endSWITCH","endWHILE","FOR","IF","ifalgisenv","REPEAT","SWITCH","UNTIL","WHILE"]}
-,
-"newclude.sty":{"envs":{},"deps":["moredefs.sty"],"cmds":["include","AtBeginInclude","AtEndInclude","IncludeSurround","DefaultIncludeSurround","includeall","IncludeEnv","includedoc","includedocskip","IfAllowed","IncludeName","ParentName","DeclareFormattingPackage","ifSkipPreamble","SkipPreambletrue","SkipPreamblefalse","Disable","DisableAll","NextAux","DynamicAux","StaticAux","InitWheel","DefWheel","Roll","Top","AddSpokes","IfTop"]}
-,
-"newcomputermodern.sty":{"envs":{},"deps":["fontspec.sty","unicode-math.sty"],"cmds":["textprosgegrammeni","prosgegrammeni","textivbce","ivbce","textvibce","vibce","textivbcealt","ivbcealt","textipa","ipatext","textoldipa","oldipatext","textuncial","uncial","atticonequarter","hermionianfifty","atticonehalf","thespianfifty","atticonedrachma","thespianonehundred","atticfive","thespianthreehundred","atticfifty","epidaurianfivehundred","atticfivehundred","troezenianfivehundred","atticfivethousand","thespianfivehundred","atticfiftythousand","carystianfivehundred","atticfivetalents","naxianfivehundred","attictentalents","thespianonethousand","atticfiftytalents","thespianfivethousand","atticonehundredtalents","delphicfivemnas","atticfivehundredtalents","stratianfiftymnas","atticonethousandtalents","greekonehalfsign","atticfivethousandtalents","greekonehalfsignalt","atticfivestaters","greektwothirdssign","attictenstaters","greekthreequarterssign","atticfiftystaters","greekyearsign","atticonehundredstaters","greektalentsign","atticfivehundredstaters","greekdrachmasign","atticonethousandstaters","greekobolsign","attictenthousandstaters","greektwoobolssign","atticfiftythousandstaters","greekthreeobolssign","attictenmnas","greekfourobolssign","heraleumoneplethron","greekfiveobolssign","thespianone","greekmetretessign","ermionianone","greekkyathosbasesign","epidauriantwo","greeklytrasign","thespiantwo","greekounkiasign","cyrenaictwodrachmas","greekxestessign","epidauriantwodrachmas","greekartabesign","troezenianfive","greekarourasign","troezenianten","greekgrammasign","troezeniantenalt","greektryblionbasesign","hermionianten","greekzerosign","messenianten","greekonequartersign","thespianten","greeksinusoidsign","thespianthirty","greekindictionsign","troezenianfifty","nomismasign","troezenianfiftyalt","chemalpha","chembeta","chemgamma","chemdelta","chemepsilon","chemzeta","chemeta","chemtheta","chemiota","chemkappa","chemlambda","chemmu","chemnu","chemxi","chemomicron","chempi","chemrho","chemrhoalt","chemsigma","chemsigmaalt","chemtau","chemupsilon","chemphi","chemchi","chempsi","chemomega","chemAlpha","chemBeta","chemGamma","chemDelta","chemEpsilon","chemZeta","chemEta","chemTheta","chemIota","chemKappa","chemLambda","chemMu","chemNu","chemXi","chemOmicron","chemPi","chemRho","chemSigma","chemTau","chemUpsilon","chemPhi","chemChi","chemPsi","chemOmega","accurrent","acidfree","acwcirclearrow","acwgapcirclearrow","acwleftarcarrow","acwoverarcarrow","acwunderarcarrow","angdnr","angles","angleubar","annuity","APLboxquestion","APLboxupcaret","APLnotbackslash","APLnotslash","approxeqq","arabichad","arabicmaj","asteq","astrosun","bagmember","barcap","barcup","bardownharpoonleft","bardownharpoonright","barleftarrow","barleftarrowrightarrowbar","barleftharpoondown","barleftharpoonup","barovernorthwestarrow","barrightarrowdiamond","barrightharpoondown","barrightharpoonup","baruparrow","barupharpoonleft","barupharpoonright","Barv","barV","bbrktbrk","bdtriplevdash","benzenr","biginterleave","bigslopedvee","bigslopedwedge","bigtalloblong","bigtriangleleft","bigwhitestar","blackcircledownarrow","blackcircledrightdot","blackcircledtwodots","blackcircleulquadwhite","blackdiamonddownarrow","blackhourglass","blackinwhitediamond","blackinwhitesquare","blacklefthalfcircle","blackpointerleft","blackpointerright","blackrighthalfcircle","blacksmiley","blkhorzoval","blkvertoval","blocklefthalf","blocklowhalf","blockrighthalf","blockuphalf","bNot","botsemicircle","boxast","boxbar","boxbox","boxbslash","boxcircle","boxdiag","boxonbox","bsimilarleftarrow","bsimilarrightarrow","bsolhsub","btimes","bullseye","bumpeqq","candra","capbarcup","capdot","capovercup","capwedge","caretinsert","ccwundercurvearrow","cirbot","circlebottomhalfblack","circledbullet","circledownarrow","circledparallel","circledrightdot","circledstar","circledtwodots","circledvert","circledwhitebullet","circlehbar","circlelefthalfblack","circlellquad","circlelrquad","circleonleftarrow","circleonrightarrow","circlerighthalfblack","circletophalfblack","circleulquad","circleurquad","circleurquadblack","circlevertfill","cirE","cirfnint","cirmid","cirscir","closedvarcap","closedvarcup","closedvarcupsmashprod","closure","Coloneq","commaminus","congdot","conictaper","conjquant","csub","csube","csup","csupe","cuberoot","cupbarcap","cupovercap","cupvee","curvearrowleftplus","curvearrowrightminus","cwcirclearrow","cwgapcirclearrow","cwrightarcarrow","cwundercurvearrow","danger","dashleftharpoondown","dashrightharpoondown","dashV","Dashv","DashV","dbkarrow","ddotseq","DDownarrow","Ddownarrow","diamondbotblack","diamondcdot","diamondleftarrow","diamondleftarrowbar","diamondleftblack","diamondrightblack","diamondtopblack","dicei","diceii","diceiii","diceiv","dicev","dicevi","dingasterisk","disin","disjquant","dotequiv","dotsim","dottedcircle","dottimes","doublebarvee","doubleplus","downarrowbar","downarrowbarred","downdasharrow","downfishtail","downharpoonleftbar","downharpoonrightbar","downharpoonsleftright","downrightcurvedarrow","downtriangleleftblack","downtrianglerightblack","downupharpoonsleftright","downzigzagarrow","draftingarrow","drbkarrow","droang","dsol","dsub","dualmap","egsdot","elinters","elsdot","emptysetoarr","emptysetoarrl","emptysetobar","emptysetocirc","enleadertwodots","eparsl","eqdot","eqeq","eqeqeq","eqqgtr","eqqless","eqqplus","eqqsim","eqqslantgtr","eqqslantless","equalleftarrow","equalrightarrow","equivDD","equivVert","equivVvert","eqvparsl","errbarblackcircle","errbarblackdiamond","errbarblacksquare","errbarcircle","errbardiamond","errbarsquare","Exclam","fbowtie","fcmp","fdiagovnearrow","fdiagovrdiag","female","fint","fisheye","fltns","forks","forksnot","forkv","fourthroot","fourvdots","fullouterjoin","geqqslant","gescc","gesdot","gesdoto","gesdotol","gesles","gggnest","gla","glE","gleichstark","glj","gsime","gsiml","Gt","gtcc","gtcir","gtlpar","gtquest","gtrarr","harrowextender","hatapprox","Hermaphrodite","hexagon","hexagonblack","hknearrow","hknwarrow","hksearrow","hkswarrow","hourglass","house","hyphenbullet","hzigzag","iinfin","intbar","intBar","intcap","intcup","interleave","intextender","intlarhk","intprod","intprodr","intx","inversebullet","inversewhitecircle","invwhitelowerhalfcircle","invwhiteupperhalfcircle","isindot","isinE","isinobar","isins","isinvb","Join","langledot","laplac","lat","late","lbag","lblkbrbrak","lBrace","lbracklltick","lbrackubar","lbrackultick","lbrbrak","Lbrbrak","lcurvyangle","leftarrowapprox","leftarrowbackapprox","leftarrowbsimilar","leftarrowless","leftarrowonoplus","leftarrowplus","leftarrowshortrightarrow","leftarrowsimilar","leftarrowsubset","leftarrowtriangle","leftarrowx","leftbkarrow","leftcurvedarrow","leftdasharrow","leftdbkarrow","leftdbltail","leftdotarrow","leftdowncurvedarrow","leftfishtail","leftharpoondownbar","leftharpoonsupdown","leftharpoonupbar","leftharpoonupdash","leftmoon","leftouterjoin","leftrightarrowcircle","leftrightarrowtriangle","leftrightharpoondowndown","leftrightharpoondownup","leftrightharpoonsdown","leftrightharpoonsup","leftrightharpoonupdown","leftrightharpoonupup","lefttail","leftwavearrow","leqqslant","lescc","lesdot","lesdoto","lesdotor","lesges","lfbowtie","lftimes","lgblkcircle","lgblksquare","lgE","lgwhtsquare","llangle","llarc","llblacktriangle","LLeftarrow","lllnest","llparenthesis","lltriangle","longdivision","lowint","lParen","Lparengtr","lparenless","lrarc","lrblacktriangle","lrtriangle","lrtriangleeq","lsime","lsimg","lsqhook","Lt","ltcc","ltcir","ltlarr","ltquest","ltrivb","lvboxline","lvzigzag","Lvzigzag","male","mbfDigamma","mbfdigamma","mbfscra","mbfscrb","mbfscrc","mbfscrd","mbfscre","mbfscrf","mbfscrg","mbfscrh","mbfscri","mbfscrj","mbfscrk","mbfscrl","mbfscrm","mbfscrn","mbfscro","mbfscrp","mbfscrq","mbfscrr","mbfscrs","mbfscrt","mbfscru","mbfscrv","mbfscrw","mbfscrx","mbfscry","mbfscrz","mdblkcircle","mdblkdiamond","mdblklozenge","mdblksquare","mdlgblkdiamond","mdlgblklozenge","mdlgwhtdiamond","mdsmblkcircle","mdsmblksquare","mdsmwhtcircle","mdsmwhtsquare","mdwhtcircle","mdwhtdiamond","mdwhtlozenge","mdwhtsquare","measangledltosw","measangledrtose","measangleldtosw","measanglelutonw","measanglerdtose","measanglerutone","measangleultonw","measangleurtone","measuredangleleft","medblackstar","medwhitestar","midbarvee","midbarwedge","midcir","minusdot","minusfdots","minusrdots","mitsansAlpha","mitsansalpha","mitsansBeta","mitsansbeta","mitsansChi","mitsanschi","mitsansDelta","mitsansdelta","mitsansEpsilon","mitsansepsilon","mitsansEta","mitsanseta","mitsansGamma","mitsansgamma","mitsansIota","mitsansiota","mitsansKappa","mitsanskappa","mitsansLambda","mitsanslambda","mitsansMu","mitsansmu","mitsansNu","mitsansnu","mitsansOmega","mitsansomega","mitsansOmicron","mitsansomicron","mitsansPhi","mitsansphi","mitsansPi","mitsanspi","mitsansPsi","mitsanspsi","mitsansRho","mitsansrho","mitsansSigma","mitsanssigma","mitsansTau","mitsanstau","mitsansTheta","mitsanstheta","mitsansUpsilon","mitsansupsilon","mitsansvarepsilon","mitsansvarsigma","mitsansXi","mitsansxi","mitsansZeta","mitsanszeta","mlcp","modtwosum","msansAlpha","msansalpha","msansBeta","msansbeta","msansChi","msanschi","msansDelta","msansdelta","msansEpsilon","msansepsilon","msansEta","msanseta","msansGamma","msansgamma","msansIota","msansiota","msansKappa","msanskappa","msansLambda","msanslambda","msansMu","msansmu","msansNu","msansnu","msansOmega","msansomega","msansOmicron","msansomicron","msansPhi","msansphi","msansPi","msanspi","msansPsi","msanspsi","msansRho","msansrho","msansSigma","msanssigma","msansTau","msanstau","msansTheta","msanstheta","msansUpsilon","msansupsilon","msansvarepsilon","msansvarsigma","msansXi","msansxi","msansZeta","msanszeta","mscra","mscrb","mscrc","mscrd","mscre","mscrf","mscrg","mscrh","mscri","mscrj","mscrk","mscrl","mscrm","mscrn","mscro","mscrp","mscrq","mscrr","mscrs","mscrt","mscru","mscrv","mscrw","mscrx","mscry","mscrz","neovnwarrow","neovsearrow","neswarrow","neuter","nHdownarrow","nhpar","nHuparrow","nhVvert","niobar","nis","nisd","nleftleftarrows","Not","npolint","nrightrightarrows","nvinfty","nvleftarrow","nVleftarrow","nvLeftarrow","nvleftarrowtail","nVleftarrowtail","nvleftrightarrow","nVleftrightarrow","nvLeftrightarrow","nvrightarrow","nVrightarrow","nvRightarrow","nvrightarrowtail","nVrightarrowtail","nvtwoheadleftarrow","nVtwoheadleftarrow","nvtwoheadleftarrowtail","nVtwoheadleftarrowtail","nvtwoheadrightarrow","nVtwoheadrightarrow","nvtwoheadrightarrowtail","nVtwoheadrightarrowtail","nwovnearrow","nwsearrow","obar","obot","obslash","ocommatopright","odiv","odotslashdot","ogreaterthan","olcross","olessthan","operp","opluslhrim","oplusrhrim","Otimes","otimeshat","otimeslhrim","otimesrhrim","oturnedcomma","parallelogram","parallelogramblack","parsim","partialmeetcontraction","pentagon","pentagonblack","perps","plusdot","pluseqq","plushat","plussim","plussubtwo","plustrif","pointint","postalmark","Prec","preceqq","precneq","profline","profsurf","PropertyLine","prurel","pullback","pushout","quarternote","Question","rangledot","rangledownzigzagarrow","rbag","rblkbrbrak","rBrace","rbracklrtick","rbrackubar","rbrackurtick","rbrbrak","Rbrbrak","rcurvyangle","rdiagovfdiag","rdiagovsearrow","revangle","revangleubar","revemptyset","revnmid","rfbowtie","rftimes","rightanglemdot","rightanglesqr","rightarrowapprox","rightarrowbackapprox","rightarrowbar","rightarrowbsimilar","rightarrowdiamond","rightarrowgtr","rightarrowplus","rightarrowshortleftarrow","rightarrowsimilar","rightarrowsupset","rightarrowtriangle","rightarrowx","rightbkarrow","rightcurvedarrow","rightdasharrow","rightdbltail","rightdotarrow","rightdowncurvedarrow","rightfishtail","rightharpoondownbar","rightharpoonsupdown","rightharpoonupbar","rightharpoonupdash","rightimply","rightleftharpoonsdown","rightleftharpoonsup","rightmoon","rightouterjoin","rightpentagon","rightpentagonblack","righttail","rightwavearrow","ringplus","rParen","rparengtr","Rparenless","rppolint","rrangle","RRightarrow","rrparenthesis","rsolbar","rsqhook","rsub","rtriltri","ruledelayed","rvboxline","rvzigzag","Rvzigzag","sansLmirrored","sansLturned","scpolint","scurel","seovnearrow","shortdowntack","shortlefttack","shortrightarrowleftarrow","shortuptack","shuffle","simgE","simgtr","similarleftarrow","similarrightarrow","simlE","simless","simminussim","simplus","simrdots","smallblacktriangleleft","smallblacktriangleright","smalltriangleleft","smalltriangleright","smashtimes","smblkdiamond","smblklozenge","smeparsl","smt","smte","smwhitestar","smwhtlozenge","sphericalangleup","Sqcap","Sqcup","sqint","sqlozenge","squarebotblack","squarecrossfill","squarehfill","squarehvfill","squareleftblack","squarellblack","squarellquad","squarelrblack","squarelrquad","squareneswfill","squarenwsefill","squarerightblack","squaretopblack","squareulblack","squareulquad","squareurblack","squareurquad","squarevfill","squoval","sslash","strns","subedot","submult","subrarr","subsetapprox","subsetcirc","subsetdot","subsetplus","subsim","subsub","subsup","Succ","succeqq","succneq","sumint","sun","supdsub","supedot","suphsol","suphsub","suplarr","supmult","supsetapprox","supsetcirc","supsetdot","supsetplus","supsim","supsub","supsup","talloblong","thermod","threedangle","threedotcolon","tieconcat","tieinfty","timesbar","tminus","toea","tona","topbot","topcir","topfork","topsemicircle","tosa","towa","tplus","trapezium","trianglecdot","triangleleftblack","triangleminus","triangleodot","triangleplus","trianglerightblack","triangles","triangleserifs","triangletimes","triangleubar","tripleplus","trslash","turnangle","turnediota","twocaps","twocups","twoheadleftarrowtail","twoheadleftdbkarrow","twoheadmapsfrom","twoheadmapsto","twoheadrightarrowtail","twoheaduparrowcircle","twonotes","typecolon","ularc","ulblacktriangle","ultriangle","uminus","upand","uparrowbarred","uparrowoncircle","upbackepsilon","updasharrow","upDigamma","updigamma","updownarrowbar","updownharpoonleftleft","updownharpoonleftright","updownharpoonrightleft","updownharpoonrightright","updownharpoonsleftright","upfishtail","upharpoonleftbar","upharpoonrightbar","upharpoonsleftright","upin","upint","uprightcurvearrow","urarc","urblacktriangle","urtriangle","UUparrow","Uuparrow","varcarriagereturn","varhexagon","varhexagonblack","varhexagonlrbonds","varisinobar","varisins","varniobar","varnis","varstar","varVdash","varveebar","vBar","Vbar","vBarv","vbrtri","vDdash","Vee","veedot","veedoublebar","veemidvert","veeodot","veeonvee","veeonwedge","viewdata","vrectangle","vrectangleblack","Vvert","vysmblksquare","vysmwhtsquare","vzigzag","Wedge","wedgebar","wedgedot","wedgedoublebar","wedgemidvert","wedgeodot","wedgeonwedge","whitearrowupfrombar","whiteinwhitetriangle","whitepointerleft","whitepointerright","whitesquaretickleft","whitesquaretickright","whthorzoval","whtvertoval","wideangledown","wideangleup","xbsol","xsol","Yup","Zbar","zcmp","zpipe","zproject"]}
-,
-"newfile.sty":{"envs":["writeverbatim"],"deps":["verbatim.sty"],"cmds":["newoutputstream","newinputstream","openoutputfile","closeoutputstream","addtostream","openinputfile","closeinputstream","readstream","readaline","readverbatim","streamvfont","numbervstream","marginnumbervstream","streamvnumfont","plainvstream"]}
-,
-"newfloat.sty":{"envs":{},"deps":["keyval.sty"],"cmds":["newfloatsetup","DeclareFloatingEnvironment","SetupFloatingEnvironment","ForEachFloatingEnvironment","PrepareListOf"]}
-,
-"newlfm.cls":{"envs":["newlfm"],"deps":["keyval.sty","ifthen.sty","ifpdf.sty","setdim.sty","fancyhdr.sty","eso-pic.sty","setspace.sty","lastpage.sty","calc.sty","graphicx.sty","rotating.sty","s-letter.cls","addrset.sty","afterpage.sty","envlab.sty"],"cmds":["newlfmP","addrf","addrfromskipafter","addrfromskipbefore","addrt","addrtoskipafter","addrtoskipbefore","adr","Alaba","Alabb","Alabc","Alabd","Alabe","background","Background","bottommarginskip","bottommarginskipbelow","boxht","boxwd","btwlb","cellodown","celloheight","celloleft","cellowidth","Cfooter","cfooter","Cheader","cheader","clearall","closeskipafter","closeskipbefore","closlfm","COfooter","CUheader","datecenter","dateleft","dateno","DatePhrase","dateright","dateskipafter","dateskipbefore","datestamp","Dimens","DimensP","doletter","doltr","faxblocka","faxblockb","FAXP","faxpage","FAZParam","fixcs","fixem","fixfs","fixhh","fixhs","fixom","fixphr","fixth","fixtm","fixtw","footermarginsize","Footlinewd","footlinewd","greettoskipafter","headermarginsize","headermarginskip","Headlinewd","headlinewd","ifempty","iffixf","iffixq","iffixt","ifpempty","labpl","labsize","Language","LanguageP","leftmarginsize","leftmarginskipleft","leftmarginskipright","leftmargintopdist","letrh","letterbody","LetterP","LetterParam","Lfooter","lfooter","lftwd","lheader","Lheader","Lmargin","lmargin","LOfooter","lth","ltrbody","LUheader","makeenvfn","makeenvst","MemoP","MemoParam","memosec","memoskipafter","memoskipbefore","MinFoot","minfoot","MinHead","minhead","MinLeft","minleft","MinRight","minright","monthname","multletter","newlfmParam","noFootline","nofootline","noheadline","noHeadline","nolines","noLines","npind","oneletter","openlfm","pgrph","PhrCc","PhrContact","PhrDocument","PhrEmail","PhrEncl","PhrFax","PhrFAXcovp","PhrFAXpgcnt","PhrFrom","PhrMessage","PhrMore","PhrPager","PhrPhone","PhrPpps","PhrPps","PhrPRend","PhrPs","PhrRe","PhrRegard","PhrRelease","PhrSubre","PhrTo","postsigskipafter","postsigskipbefore","pressbegin","restletter","restlettera","restletterb","restletterc","restletterd","restlettere","Rfooter","rfooter","rheader","Rheader","rightmarginsize","rightmarginskipleft","rightmarginskipright","rightmargintopdist","Rmargin","rmargin","ROfooter","RUheader","setsigc","setsigl","setsigr","showdim","sig","sigcenter","sigleft","signaturecenter","signatureleft","signatureno","signatureright","sigright","sigsize","sigskipafter","sigskipbefore","sigskipcolumn","sigskiprow","sigtr","textheightsize","textwidthsize","timestamp","timestring","topht","topmarginsize","topmarginskip","txb","unprbottom","unprleft","unprright","unprtop","waterpage"]}
-,
-"newpax.sty":{"envs":{},"deps":["graphicx.sty","ltxcmds.sty","kvsetkeys.sty","kvoptions.sty","auxhook.sty","etoolbox.sty","xfp.sty"],"cmds":["newpaxsetup"]}
-,
-"newproof.sty":{"envs":["proof"],"deps":["amsfonts.sty"],"cmds":["newproof","qed","qedtext"]}
-,
-"newpxmath.sty":{"envs":{},"deps":["amsmath.sty","etoolbox.sty","xkeyval.sty","centernot.sty"],"cmds":["checkmark","circledR","maltese","mathcent","mathsterling","openbox","textsquare","alphait","alphaup","angle","Angstrom","approxeq","backepsilon","backprime","backsim","backsimeq","barbar","barhat","bartilde","barwedge","Bbbk","because","betait","betaup","beth","between","bigcapop","bigcapplus","bigcapplusop","bigcupdot","bigcupdotop","bigcupop","bigcupplus","bignplus","bigodotop","bigoplusop","bigotimesop","bigsqcap","bigsqcapop","bigsqcapplus","bigsqcapplusop","bigsqcupop","bigsqcupplus","bigsqcupplusop","bigstar","bigtimes","bigtimesop","biguplusop","bigveeop","bigwedgeop","blacklozenge","blacksquare","blacktriangle","blacktriangledown","blacktriangleleft","blacktriangleright","Bot","Box","boxast","boxbar","boxbslash","boxdot","boxdotleft","boxdotLeft","boxdotright","boxdotRight","boxleft","boxLeft","boxminus","boxplus","boxright","boxRight","boxslash","boxtimes","bulletS","bulletSS","bulletSSS","bumpeq","Bumpeq","Cap","cdotB","cdotBB","centerdot","chiit","chiup","circeq","circlearrowleft","circlearrowright","circledast","circledbar","circledbslash","circledcirc","circleddash","circleddot","circleddotleft","circleddotright","circledgtr","circledless","circledminus","circledotleft","circledotright","circledplus","circledS","circledslash","circledtimes","circledvee","circledwedge","circleleft","circleright","circS","colonapprox","Colonapprox","Coloneq","coloneq","coloneqq","Coloneqq","colonsim","Colonsim","complement","coprodop","Cup","curlyeqprec","curlyeqsucc","curlyvee","curlywedge","curvearrowleft","curvearrowright","daleth","dasharrow","dashleftarrow","dashleftrightarrow","dashrightarrow","Deltait","deltait","Deltaup","deltaup","diagdown","diagup","Diamond","Diamondblack","Diamonddot","Diamonddotleft","DiamonddotLeft","Diamonddotright","DiamonddotRight","Diamondleft","DiamondLeft","Diamondright","DiamondRight","digamma","divideontimes","dlb","Doteq","doteqdot","dotplus","doublebarwedge","doublecap","doublecup","downdownarrows","downharpoonleft","downharpoonright","drb","emptysetAlt","epsilonit","epsilonup","eqcirc","Eqcolon","eqcolon","Eqqcolon","eqqcolon","eqsim","eqslantgtr","eqslantless","etait","etaup","eth","Euler","existsAlt","fallingdotseq","fint","fintop","fintsl","fintslop","fintup","fintupop","Finv","forallAlt","Game","Gammait","gammait","Gammaup","gammaup","geqq","geqslant","ggg","gggtr","gimel","gnapprox","gneq","gneqq","gnsim","groupld","grouplda","grouplu","grouplua","grouprd","grouprda","groupru","grouprua","gtrapprox","gtrdot","gtreqless","gtreqqless","gtrless","gtrsim","gvertneqq","harpoonacc","hatbar","hathat","hattilde","hbar","hermtransp","hslash","htransp","iiiintop","iiiintsl","iiiintslop","iiiintup","iiiintupop","iiintop","iiintsl","iiintslop","iiintup","iiintupop","iintop","iintsl","iintslop","iintup","iintupop","imathbb","imathfrak","imathscr","imathup","intercal","intop","intsl","intslop","intup","intupop","invamp","iotait","iotaup","jmathbb","jmathfrak","jmathscr","jmathup","Join","kappait","kappaup","lambdabar","Lambdait","lambdait","lambdaslash","Lambdaup","lambdaup","lbag","Lbag","lBrack","leadsto","leadstoext","leftarrowtail","leftleftarrows","leftrightarrows","leftrightharpoons","leftrightsquigarrow","leftsquigarrow","leftthreetimes","leqq","leqslant","lessapprox","lessdot","lesseqgtr","lesseqqgtr","lessgtr","lesssim","lharpoonacc","lhd","lJoin","llbracket","llcorner","Lleftarrow","lll","llless","lnapprox","lneq","lneqq","lnsim","Longmappedfrom","longmappedfrom","Longmapsto","Longmmappedfrom","longmmappedfrom","Longmmapsto","longmmapsto","looparrowleft","looparrowright","lozenge","lrcorner","lrharpoonacc","lrJoin","lrtimes","lrvec","Lsh","ltimes","lvertneqq","Mappedfrom","mappedfrom","Mapsfrom","mapsfrom","Mapsto","mathbb","mathfrak","mathscr","mathslscr","mathuscr","measuredangle","medbullet","medcirc","mho","Mmappedfrom","mmappedfrom","Mmapsto","mmapsto","muit","multimap","multimapboth","multimapbothvert","multimapdot","multimapdotboth","multimapdotbothA","multimapdotbothAvert","multimapdotbothB","multimapdotbothBvert","multimapdotbothvert","multimapdotinv","multimapinv","muup","napprox","napproxeq","nasymp","nbacksim","nbacksimeq","nBumpeq","nbumpeq","ncong","Nearrow","nequiv","nexists","nexistsAlt","ngeq","ngeqq","ngeqslant","ngg","ngtr","ngtrapprox","ngtrless","ngtrsim","nleftarrow","nLeftarrow","nleftrightarrow","nLeftrightarrow","nleq","nleqq","nleqslant","nless","nlessapprox","nlessgtr","nlesssim","nll","nmid","notni","notowns","nparallel","nPerp","nplus","nprec","nprecapprox","npreccurlyeq","npreceq","npreceqq","nprecsim","nrightarrow","nRightarrow","nshortmid","nshortparallel","nsim","nsimeq","nsqsubset","nsqsubseteq","nsqsupset","nsqsupseteq","nsubset","nSubset","nsubseteq","nsubseteqq","nsucc","nsuccapprox","nsucccurlyeq","nsucceq","nsucceqq","nsuccsim","nsupset","nSupset","nsupseteq","nsupseteqq","nthickapprox","ntriangleleft","ntrianglelefteq","ntriangleright","ntrianglerighteq","ntwoheadleftarrow","ntwoheadrightarrow","nuit","nuup","nvarparallel","nvarparallelinv","nvdash","nvDash","nVdash","nVDash","Nwarrow","oiiint","oiiintop","oiiintsl","oiiintslop","oiiintup","oiiintupop","oiint","oiintop","oiintsl","oiintslop","oiintup","oiintupop","ointctrclockwise","ointctrclockwiseop","ointctrclockwisesl","ointctrclockwiseslop","ointctrclockwiseup","ointctrclockwiseupop","ointop","ointsl","ointslop","ointup","ointupop","Omegait","omegait","Omegaup","omegaup","openJoin","opentimes","overgroup","overgroupla","overgroupra","Perp","Phiit","phiit","Phiup","phiup","Piit","piit","pitchfork","Piup","piup","precapprox","preccurlyeq","preceqq","precnapprox","precneqq","precnsim","precsim","primeS","prodop","Psiit","psiit","Psiup","psiup","rbag","Rbag","rBrack","restriction","rhd","rhoit","rhoup","rightarrowtail","rightleftarrows","rightleftharpoons","rightrightarrows","rightsquigarrow","rightthreetimes","risingdotseq","rJoin","rrbracket","Rrightarrow","Rsh","rtimes","Searrow","shortmid","shortparallel","Sigmait","sigmait","Sigmaup","sigmaup","smallcoprod","smallfint","smallfintsl","smallfintup","smallfrown","smalliiiint","smalliiiintsl","smalliiiintup","smalliiint","smalliiintsl","smalliiintup","smalliint","smalliintsl","smalliintup","smallintsl","smallintup","smalloiiint","smalloiiintsl","smalloiiintup","smalloiint","smalloiintsl","smalloiintup","smalloint","smallointctrclockwise","smallointctrclockwisesl","smallointctrclockwiseup","smallointsl","smallointup","smallprod","smallsetminus","smallsmile","smallsqint","smallsqintsl","smallsqintup","smallsum","smallsumint","smallsumintsl","smallsumintup","smallvarointclockwise","smallvarointclockwisesl","smallvarointclockwiseup","smlbrace","smrbrace","sphericalangle","sqcapplus","sqcupplus","sqint","sqintop","sqintsl","sqintslop","sqintup","sqintupop","sqsubset","sqsupset","square","strictfi","strictif","strictiff","Subset","subseteqq","subsetneq","subsetneqq","succapprox","succcurlyeq","succeqq","succnapprox","succneqq","succnsim","succsim","sumint","sumintop","sumintsl","sumintslop","sumintup","sumintupop","sumop","Supset","supseteqq","supsetneq","supsetneqq","Swarrow","tauit","tauup","therefore","Thetait","thetait","Thetaup","thetaup","thickapprox","thicksim","tildebar","tildehat","tildetilde","Top","transp","triangledown","trianglelefteq","triangleq","trianglerighteq","twoheadleftarrow","twoheadrightarrow","ulcorner","undergroup","undergroupla","undergroupra","unlhd","unrhd","upalpha","upbeta","upchi","upDelta","updelta","upepsilon","upeta","upGamma","upgamma","upharpoonleft","upharpoonright","upiota","upkappa","upLambda","uplambda","upmu","upnu","upOmega","upomega","uppartial","upPhi","upphi","upPi","uppi","upPsi","uppsi","uprho","upSigma","upsigma","Upsilonit","upsilonit","Upsilonup","upsilonup","uptau","upTheta","uptheta","upuparrows","upUpsilon","upupsilon","upvarepsilon","upvarkappa","upvarphi","upvarpi","upvarrho","upvarsigma","upvartheta","upXi","upxi","upzeta","urcorner","varclubsuit","vardiamondsuit","varepsilonit","varepsilonup","varheartsuit","varkappa","varkappait","varkappaup","varmathbb","varnothing","varointclockwise","varointclockwiseop","varointclockwisesl","varointclockwiseslop","varointclockwiseup","varointclockwiseupop","varparallel","varparallelinv","varphiit","varphiup","varpiit","varpiup","varprod","varpropto","varrhoit","varrhoup","varsigmait","varsigmaup","varspadesuit","varsubsetneq","varsubsetneqq","varsupsetneq","varsupsetneqq","varthetait","varthetaup","vartriangle","vartriangleleft","vartriangleright","VDash","vDash","Vdash","veebar","vmathbb","vv","VvDash","Vvdash","vvmathbb","widearc","wideOarc","widering","Wr","Xiit","xiit","Xiup","xiup","Zbar","zetait","zetaup","ShowMathFonts","setSYdimens","setEXdimens","ifiscseq","loadsubfile","readsufile","DeclareMathSymbolCtr"]}
-,
-"newpxtext.sty":{"envs":{},"deps":["fontenc.sty","ifxetex.sty","ifluatex.sty","xkeyval.sty","etoolbox.sty","textcomp.sty","xstring.sty","ifthen.sty","scalefnt.sty","mweight.sty","fontaxes.sty"],"cmds":["defigures","destyle","infigures","instyle","lfstyle","liningnums","nufigures","nustyle","oldstylenums","osfstyle","proportionalnums","sufigures","sustyle","tabularnums","textde","textdenominator","textfrac","textinf","textinferior","textlf","textnu","textnumerator","textosf","textsu","textsuperior","textth","textthit","texttlf","texttosf","thfamily","tlfstyle","tosfstyle","useosf","useproportional","DH","NG","dj","ng","k","guillemotleft","guillemotright","guilsinglleft","guilsinglright","quotedblbase","quotesinglbase","textquotedbl","DJ","th","TH","dh","Hwithstroke","hwithstroke","textogonekcentered","guillemetleft","guillemetright"]}
-,
-"newspaper.sty":{"envs":{},"deps":["yfonts.sty"],"cmds":["SetHeaderName","SetPaperLocation","SetPaperName","SetPaperPrice","SetPaperSlogan","byline","closearticle","currentissue","currentvolume","headline","theissue","thevolume"]}
-,
-"newtx.sty":{"envs":{},"deps":["newtxtext.sty","newtxmath.sty","libertinus.sty","ETbb.sty","ebgaramond.sty","MinionPro.sty","cochineal.sty","garamondx.sty","baskervillef.sty","baskervaldx.sty","heuristica.sty","erewhon.sty","XCharter.sty","stickstootext.sty","scholax.sty","amsthm.sty"],"cmds":["BIA","BIB","BIC","BID","BIE","BIF","BIG","BIH","BII","BIJ","BIK","BIL","BIM","BIN","BIO","BIP","BIQ","BIR","BIS","BIT","BIU","BIV","BIW","BIX","BIY","BIZ","BIa","BIb","BIc","BId","BIe","BIf","BIg","BIh","BIi","BIj","BIk","BIl","BIm","BIn","BIo","BIp","BIq","BIr","BIs","BIt","BIu","BIv","BIw","BIx","BIy","BIz","PassMathScale","PassMatchingScale","textsfrac","pliningnums"]}
-,
-"newtxmath.sty":{"envs":{},"deps":["amsmath.sty","ifthen.sty","etoolbox.sty","ifxetex.sty","ifluatex.sty","xkeyval.sty","centernot.sty","amsthm.sty"],"cmds":["checkmark","circledR","maltese","openbox","textsquare","alphait","alphaup","Angstrom","approxeq","backepsilon","backprime","backsim","backsimeq","barbar","barhat","bartilde","barwedge","Bbbk","bbdotlessi","bbdotlessj","because","betait","betaup","beth","between","bigcapop","bigcapplus","bigcapplusop","bigcupdot","bigcupdotop","bigcupop","bigcupplus","bignplus","bigodotop","bigoplusop","bigotimesop","bigsqcap","bigsqcapop","bigsqcapplus","bigsqcapplusop","bigsqcupop","bigsqcupplus","bigsqcupplusop","bigstar","bigtimes","bigtimesop","biguplusop","bigveeop","bigwedgeop","blacklozenge","blacksquare","blacktriangle","blacktriangledown","blacktriangleleft","blacktriangleright","Bot","Box","boxast","boxbar","boxbslash","boxdot","boxdotleft","boxdotLeft","boxdotright","boxdotRight","boxleft","boxLeft","boxminus","boxplus","boxright","boxRight","boxslash","boxtimes","bulletS","bulletSS","bulletSSS","bumpeq","Bumpeq","Cap","cdotB","cdotBB","centerdot","chiit","chiup","circeq","circlearrowleft","circlearrowright","circledast","circledbar","circledbslash","circledcirc","circleddash","circleddot","circleddotleft","circleddotright","circledgtr","circledless","circledminus","circledotleft","circledotright","circledplus","circledS","circledslash","circledtimes","circledvee","circledwedge","circleleft","circleright","circS","colonapprox","Colonapprox","Coloneq","coloneq","coloneqq","Coloneqq","colonsim","Colonsim","complement","coprodop","Cup","curlyeqprec","curlyeqsucc","curlyvee","curlywedge","curvearrowleft","curvearrowright","daleth","dasharrow","dashleftarrow","dashleftrightarrow","dashrightarrow","Deltait","deltait","Deltaup","deltaup","diagdown","diagup","Diamond","Diamondblack","Diamonddot","Diamonddotleft","DiamonddotLeft","Diamonddotright","DiamonddotRight","Diamondleft","DiamondLeft","Diamondright","DiamondRight","digamma","divideontimes","dlb","Doteq","doteqdot","dotplus","doublebarwedge","doublecap","doublecup","downdownarrows","downgroupfillla","downgroupfillra","downharpoonleft","downharpoonright","drb","emptysetAlt","epsilonit","epsilonup","eqcirc","Eqcolon","eqcolon","Eqqcolon","eqqcolon","eqsim","eqslantgtr","eqslantless","etait","etaup","eth","Euler","existsAlt","fallingdotseq","fint","fintop","fintsl","fintslop","fintup","fintupop","Finv","forallAlt","frakdotlessi","frakdotlessj","Game","Gammait","gammait","Gammaup","gammaup","geqq","geqslant","ggg","gggtr","gimel","gnapprox","gneq","gneqq","gnsim","groupld","grouplda","grouplu","grouplua","grouprd","grouprda","groupru","grouprua","gtrapprox","gtrdot","gtreqless","gtreqqless","gtrless","gtrsim","gvertneqq","harpoonacc","hatbar","hathat","hattilde","hermtransp","hslash","htransp","iiiintop","iiiintsl","iiiintslop","iiiintup","iiiintupop","iiintop","iiintsl","iiintslop","iiintup","iiintupop","iintop","iintsl","iintslop","iintup","iintupop","imathbb","imathfrak","imathscr","imathup","intercal","intop","intsl","intslop","intup","intupop","invamp","iotait","iotaup","italpha","itbeta","itchi","itDelta","itdelta","itepsilon","iteta","itGamma","itgamma","itiota","itkappa","itLambda","itlambda","itmu","itnu","itOmega","itomega","itPhi","itphi","itPi","itpi","itPsi","itpsi","itrho","itSigma","itsigma","ittau","itTheta","ittheta","itUpsilon","itupsilon","itvarepsilon","itvarkappa","itvarphi","itvarpi","itvarrho","itvarsigma","itvartheta","itXi","itxi","itzeta","jmathbb","jmathfrak","jmathscr","jmathup","Join","kappait","kappaup","lambdabar","Lambdait","lambdait","lambdaslash","Lambdaup","lambdaup","lbag","Lbag","lBrack","leadsto","leadstoext","leftarrowtail","leftleftarrows","leftrightarrows","leftrightharpoons","leftrightsquigarrow","leftsquigarrow","leftthreetimes","leqq","leqslant","lessapprox","lessdot","lesseqgtr","lesseqqgtr","lessgtr","lesssim","lharpoonacc","lhd","lJoin","llbracket","llcorner","Lleftarrow","lll","llless","lnapprox","lneq","lneqq","lnsim","Longmappedfrom","longmappedfrom","Longmapsto","Longmmappedfrom","longmmappedfrom","Longmmapsto","longmmapsto","looparrowleft","looparrowright","lozenge","lrcorner","lrharpoonacc","lrJoin","lrtimes","lrvec","Lsh","ltimes","lvec","lvertneqq","Mappedfrom","mappedfrom","mappedfromchar","Mappedfromchar","Mapsfrom","mapsfrom","Mapsto","Mapstochar","mathbb","mathfrak","mathscr","mathslscr","mathuscr","measuredangle","medbullet","medcirc","mho","Mmappedfrom","mmappedfrom","mmappedfromchar","Mmappedfromchar","Mmapsto","mmapsto","mmapstochar","Mmapstochar","muit","multimap","multimapboth","multimapbothvert","multimapdot","multimapdotboth","multimapdotbothA","multimapdotbothAvert","multimapdotbothB","multimapdotbothBvert","multimapdotbothvert","multimapdotinv","multimapinv","muup","napprox","napproxeq","nasymp","nbacksim","nbacksimeq","nBumpeq","nbumpeq","ncong","Nearrow","nequiv","nexists","nexistsAlt","ngeq","ngeqq","ngeqslant","ngg","ngtr","ngtrapprox","ngtrless","ngtrsim","nleftarrow","nLeftarrow","nLeftrightarrow","nleftrightarrow","nleq","nleqq","nleqslant","nless","nlessapprox","nlessgtr","nlesssim","nll","nmid","nni","notni","notowns","nparallel","nPerp","nplus","nprec","nprecapprox","npreccurlyeq","npreceq","npreceqq","nprecsim","nrightarrow","nRightarrow","nshortmid","nshortparallel","nsim","nsimeq","nsqsubset","nsqsubseteq","nsqsupset","nsqsupseteq","nsubset","nSubset","nsubseteq","nsubseteqq","nsucc","nsuccapprox","nsucccurlyeq","nsucceq","nsucceqq","nsuccsim","nsupset","nSupset","nsupseteq","nsupseteqq","nthickapprox","ntriangleleft","ntrianglelefteq","ntriangleright","ntrianglerighteq","ntwoheadleftarrow","ntwoheadrightarrow","nuit","nuup","nvarparallel","nvarparallelinv","nvdash","nVdash","nvDash","nVDash","Nwarrow","oiiint","oiiintop","oiiintsl","oiiintslop","oiiintup","oiiintupop","oiint","oiintop","oiintsl","oiintslop","oiintup","oiintupop","ointctrclockwise","ointctrclockwiseop","ointctrclockwisesl","ointctrclockwiseslop","ointctrclockwiseup","ointctrclockwiseupop","ointop","ointsl","ointslop","ointup","ointupop","Omegait","omegait","Omegaup","omegaup","openJoin","opentimes","overgroup","overgroupla","overgroupra","Perp","Phiit","phiit","Phiup","phiup","Piit","piit","pitchfork","Piup","piup","precapprox","preccurlyeq","preceqq","precnapprox","precneqq","precnsim","precsim","primeS","prodop","Psiit","psiit","Psiup","psiup","rbag","Rbag","rBrack","restriction","rhd","rhoit","rhoup","rightarrowtail","rightleftarrows","rightrightarrows","rightsquigarrow","rightthreetimes","risingdotseq","rJoin","rrbracket","Rrightarrow","Rsh","rtimes","scrdotlessi","scrdotlessj","Searrow","shortmid","shortparallel","Sigmait","sigmait","Sigmaup","sigmaup","smallcoprod","smallfint","smallfintsl","smallfintup","smallfrown","smalliiiint","smalliiiintsl","smalliiiintup","smalliiint","smalliiintsl","smalliiintup","smalliint","smalliintsl","smalliintup","smallintsl","smallintup","smalloiiint","smalloiiintsl","smalloiiintup","smalloiint","smalloiintsl","smalloiintup","smalloint","smallointctrclockwise","smallointctrclockwisesl","smallointctrclockwiseup","smallointsl","smallointup","smallprod","smallsetminus","smallsmile","smallsqint","smallsqintsl","smallsqintup","smallsum","smallsumint","smallsumintsl","smallsumintup","smallvarointclockwise","smallvarointclockwisesl","smallvarointclockwiseup","smlbrace","smrbrace","sphericalangle","sqcapplus","sqcupplus","sqint","sqintop","sqintsl","sqintslop","sqintup","sqintupop","sqsubset","sqsupset","square","strictfi","strictif","strictiff","Subset","subseteqq","subsetneq","subsetneqq","succapprox","succcurlyeq","succeqq","succnapprox","succneqq","succnsim","succsim","sumint","sumintop","sumintsl","sumintslop","sumintup","sumintupop","sumop","Supset","supseteqq","supsetneq","supsetneqq","Swarrow","tauit","tauup","therefore","Thetait","thetait","Thetaup","thetaup","thickapprox","thicksim","tildebar","tildehat","tildetilde","Top","transp","triangledown","trianglelefteq","triangleq","trianglerighteq","twoheadleftarrow","twoheadrightarrow","txvec","ulcorner","undergroup","undergroupla","undergroupra","unlhd","unrhd","upalpha","upbeta","upchi","upDelta","updelta","upepsilon","upeta","upGamma","upgamma","upgroupfillla","upgroupfillra","upharpoonleft","upharpoonright","upiota","upkappa","upLambda","uplambda","upmu","upnu","upOmega","upomega","uppartial","upPhi","upphi","upPi","uppi","upPsi","uppsi","uprho","upSigma","upsigma","Upsilonit","upsilonit","Upsilonup","upsilonup","uptau","upTheta","uptheta","upuparrows","upUpsilon","upupsilon","upvarepsilon","upvarkappa","upvarphi","upvarpi","upvarrho","upvarsigma","upvartheta","upXi","upxi","upzeta","urcorner","varclubsuit","vardiamondsuit","varepsilonit","varepsilonup","varg","varheartsuit","varkappa","varkappait","varkappaup","varmathbb","varnothing","varointclockwise","varointclockwiseop","varointclockwisesl","varointclockwiseslop","varointclockwiseup","varointclockwiseupop","varparallel","varparallelinv","varphiit","varphiup","varpiit","varpiup","varprod","varpropto","varrhoit","varrhoup","varsigmait","varsigmaup","varspadesuit","varsubsetneq","varsubsetneqq","varsupsetneq","varsupsetneqq","varthetait","varthetaup","vartriangle","vartriangleleft","vartriangleright","varv","varw","vary","VDash","Vdash","vDash","veebar","vmathbb","vv","VvDash","Vvdash","vvmathbb","vvstar","widearc","widebar","wideOarc","widering","Wr","Xiit","xiit","Xiup","xiup","Zbar","zetait","zetaup","BIA","BIB","BIC","BID","BIE","BIF","BIG","BIH","BII","BIJ","BIK","BIL","BIM","BIN","BIO","BIP","BIQ","BIR","BIS","BIT","BIU","BIV","BIW","BIX","BIY","BIZ","BIa","BIb","BIc","BId","BIe","BIf","BIg","BIh","BIi","BIj","BIk","BIl","BIm","BIn","BIo","BIp","BIq","BIr","BIs","BIt","BIu","BIv","BIw","BIx","BIy","BIz","fAlt","rhoAlt","highbar","slashbar","midbar","ShowMathFonts","setSYdimens","setEXdimens","loadsubfile","readsufile","rmdefaultB","DeclareMathSymbolCtr","ifiscseq","newtxmathLoaded","binary","nbinary","hex","nhex","oct","noct","tetra","ntetra","nbinbased"]}
-,
-"newtxsf.sty":{"envs":{},"deps":["amsmath.sty","xkeyval.sty"],"cmds":["checkmark","circledR","maltese","openbox","textsquare","alphaup","angle","approxeq","backepsilon","backprime","backsim","backsimeq","barbar","barhat","bartilde","barwedge","Bbbk","because","betaup","beth","between","bigcapop","bigcapplus","bigcapplusop","bigcupdot","bigcupdotop","bigcupop","bigcupplus","bignplus","bigodotop","bigoplusop","bigotimesop","bigsqcap","bigsqcapop","bigsqcapplus","bigsqcapplusop","bigsqcupop","bigsqcupplus","bigsqcupplusop","bigstar","bigtimes","bigtimesop","biguplusop","bigveeop","bigwedgeop","blacklozenge","blacksquare","blacktriangle","blacktriangledown","blacktriangleleft","blacktriangleright","Bot","Box","boxast","boxbar","boxbslash","boxdot","boxdotleft","boxdotLeft","boxdotright","boxdotRight","boxleft","boxLeft","boxminus","boxplus","boxright","boxRight","boxslash","boxtimes","bulletS","bulletSS","bulletSSS","bumpeq","Bumpeq","Cap","cdotB","cdotBB","centerdot","chiup","circeq","circlearrowleft","circlearrowright","circledast","circledbar","circledbslash","circledcirc","circleddash","circleddot","circleddotleft","circleddotright","circledgtr","circledless","circledminus","circledotleft","circledotright","circledplus","circledS","circledslash","circledtimes","circledvee","circledwedge","circleleft","circleright","circS","colonapprox","Colonapprox","Coloneq","coloneq","coloneqq","Coloneqq","colonsim","Colonsim","complement","coprodop","Cup","curlyeqprec","curlyeqsucc","curlyvee","curlywedge","curvearrowleft","curvearrowright","daleth","dasharrow","dashleftarrow","dashleftrightarrow","dashrightarrow","Deltaup","deltaup","diagdown","diagup","Diamond","Diamondblack","Diamonddot","Diamonddotleft","DiamonddotLeft","Diamonddotright","DiamonddotRight","Diamondleft","DiamondLeft","Diamondright","DiamondRight","digamma","divideontimes","dlb","Doteq","doteqdot","dotplus","doublebarwedge","doublecap","doublecup","downdownarrows","downgroupfill","downgroupfillla","downgroupfillra","downharpoonleft","downharpoonright","drb","emptysetAlt","epsilonup","eqcirc","Eqcolon","eqcolon","Eqqcolon","eqqcolon","eqsim","eqslantgtr","eqslantless","equalht","etaup","eth","existsAlt","fallingdotseq","fint","fintop","fintsl","fintslop","fintup","fintupop","Finv","forallAlt","Game","Gammaup","gammaup","geqq","geqslant","ggg","gggtr","gimel","gnapprox","gneq","gneqq","gnsim","groupld","grouplda","grouplu","grouplua","grouprd","grouprda","groupru","grouprua","gtrapprox","gtrdot","gtreqless","gtreqqless","gtrless","gtrsim","gvertneqq","harpoonacc","hatbar","hathat","hattilde","hbar","hermtransp","hslash","htransp","iiiintop","iiiintsl","iiiintslop","iiiintup","iiiintupop","iiintop","iiintsl","iiintslop","iiintup","iiintupop","iintop","iintsl","iintslop","iintup","iintupop","intercal","intop","intsl","intslop","intup","intupop","invamp","iotaup","Join","kappaup","lambdabar","lambdaslash","Lambdaup","lambdaup","lbag","Lbag","lBrack","leadsto","leadstoext","leftarrowtail","leftleftarrows","leftrightarrows","leftrightharpoons","leftrightsquigarrow","leftsquigarrow","leftthreetimes","leqq","leqslant","lessapprox","lessdot","lesseqgtr","lesseqqgtr","lessgtr","lesssim","lharpoonacc","lhd","lJoin","llbracket","llcorner","Lleftarrow","lll","llless","lnapprox","lneq","lneqq","lnsim","Longmappedfrom","longmappedfrom","Longmapsto","Longmmappedfrom","longmmappedfrom","Longmmapsto","longmmapsto","looparrowleft","looparrowright","lozenge","lrcorner","lrharpoonacc","lrJoin","lrtimes","lrvec","Lsh","ltimes","lvec","lvertneqq","Mappedfrom","mappedfrom","mappedfromchar","Mappedfromchar","Mapsfrom","mapsfrom","Mapsto","Mapstochar","mathbb","mathfrak","measuredangle","medbullet","medcirc","mho","Mmappedfrom","mmappedfrom","mmappedfromchar","Mmappedfromchar","Mmapsto","mmapsto","mmapstochar","Mmapstochar","multimap","multimapboth","multimapbothvert","multimapdot","multimapdotboth","multimapdotbothA","multimapdotbothAvert","multimapdotbothB","multimapdotbothBvert","multimapdotbothvert","multimapdotinv","multimapinv","muup","nablaup","napprox","napproxeq","nasymp","nbacksim","nbacksimeq","nBumpeq","nbumpeq","ncong","Nearrow","nequiv","nexists","nexistsAlt","ngeq","ngeqq","ngeqslant","ngg","ngtr","ngtrapprox","ngtrless","ngtrsim","nleftarrow","nLeftarrow","nleftrightarrow","nLeftrightarrow","nleq","nleqq","nleqslant","nless","nlessapprox","nlessgtr","nlesssim","nll","nmid","nni","notni","notowns","nparallel","nPerp","nplus","nprec","nprecapprox","npreccurlyeq","npreceq","npreceqq","nprecsim","nrightarrow","nRightarrow","nshortmid","nshortparallel","nsim","nsimeq","nsqsubset","nsqsubseteq","nsqsupset","nsqsupseteq","nsubset","nSubset","nsubseteq","nsubseteqq","nsucc","nsuccapprox","nsucccurlyeq","nsucceq","nsucceqq","nsuccsim","nsupset","nSupset","nsupseteq","nsupseteqq","nthickapprox","ntriangleleft","ntrianglelefteq","ntriangleright","ntrianglerighteq","ntwoheadleftarrow","ntwoheadrightarrow","nuup","nvarparallel","nvarparallelinv","nvdash","nvDash","nVdash","nVDash","Nwarrow","oiiint","oiiintop","oiiintsl","oiiintslop","oiiintup","oiiintupop","oiint","oiintop","oiintsl","oiintslop","oiintup","oiintupop","ointctrclockwise","ointctrclockwiseop","ointctrclockwisesl","ointctrclockwiseslop","ointctrclockwiseup","ointctrclockwiseupop","ointop","ointsl","ointslop","ointup","ointupop","Omegaup","omegaup","openJoin","opentimes","overgroup","overgroupla","overgroupra","Perp","Phiup","phiup","pitchfork","Piup","piup","precapprox","preccurlyeq","preceqq","precnapprox","precneqq","precnsim","precsim","primeS","prodop","Psiup","psiup","rbag","Rbag","rBrack","restriction","rhd","rhoup","rightarrowtail","rightleftarrows","rightleftharpoons","rightrightarrows","rightsquigarrow","rightthreetimes","risingdotseq","rJoin","rrbracket","Rrightarrow","Rsh","rtimes","Searrow","shortmid","shortparallel","Sigmaup","sigmaup","smallcoprod","smallfint","smallfintsl","smallfintup","smallfrown","smalliiiint","smalliiiintsl","smalliiiintup","smalliiint","smalliiintsl","smalliiintup","smalliint","smalliintsl","smalliintup","smallintsl","smallintup","smalloiiint","smalloiiintsl","smalloiiintup","smalloiint","smalloiintsl","smalloiintup","smalloint","smallointctrclockwise","smallointctrclockwisesl","smallointctrclockwiseup","smallointsl","smallointup","smallprod","smallsetminus","smallsmile","smallsqint","smallsqintsl","smallsqintup","smallsum","smallsumint","smallsumintsl","smallsumintup","smallvarointclockwise","smallvarointclockwisesl","smallvarointclockwiseup","sphericalangle","sqcapplus","sqcupplus","sqint","sqintop","sqintsl","sqintslop","sqintup","sqintupop","sqsubset","sqsupset","square","strictfi","strictif","strictiff","Subset","subseteqq","subsetneq","subsetneqq","succapprox","succcurlyeq","succeqq","succnapprox","succneqq","succnsim","succsim","sumint","sumintop","sumintsl","sumintslop","sumintup","sumintupop","sumop","Supset","supseteqq","supsetneq","supsetneqq","Swarrow","tauup","therefore","Thetaup","thetaup","thickapprox","thicksim","tildebar","tildehat","tildetilde","Top","transp","triangledown","trianglelefteq","triangleq","trianglerighteq","twoheadleftarrow","twoheadrightarrow","txvec","ulcorner","undergroup","undergroupla","undergroupra","unlhd","unrhd","upalpha","upbeta","upchi","upDelta","updelta","upepsilon","upeta","upGamma","upgamma","upgroupfillla","upgroupfillra","upharpoonleft","upharpoonright","upimath","upiota","upjmath","upkappa","upLambda","uplambda","upmu","upnu","upOmega","upomega","uppartial","upPhi","upphi","upPi","uppi","upPsi","uppsi","uprho","upSigma","upsigma","Upsilonup","upsilonup","uptau","upTheta","uptheta","upuparrows","upUpsilon","upupsilon","upvarepsilon","upvarkappa","upvarphi","upvarpi","upvarrho","upvarsigma","upvartheta","upXi","upxi","upzeta","urcorner","varclubsuit","vardiamondsuit","varepsilonup","varheartsuit","varkappa","varkappaup","varmathbb","varnothing","varointclockwise","varointclockwiseop","varointclockwisesl","varointclockwiseslop","varointclockwiseup","varointclockwiseupop","varparallel","varparallelinv","varphiup","varpiup","varprod","varpropto","varrhoup","varsigmaup","varspadesuit","varsubsetneq","varsubsetneqq","varsupsetneq","varsupsetneqq","varthetaup","vartriangle","vartriangleleft","vartriangleright","VDash","vDash","Vdash","veebar","vv","VvDash","Vvdash","vvstar","widearc","widehat","wideOarc","widering","widetilde","Wr","Xiup","xiup","zetaup","DoFutureLet","ShowMathFonts","DeclareMathSymbolCtr"]}
-,
-"newtxtext.sty":{"envs":{},"deps":["iftex.sty","xkeyval.sty","etoolbox.sty","textcomp.sty","xstring.sty","ifthen.sty","scalefnt.sty","mweight.sty","fontaxes.sty"],"cmds":["defigures","destyle","infigures","instyle","lfstyle","liningnums","nufigures","nustyle","oldstylenums","osfstyle","proportionalnums","sufigures","sustyle","tabularnums","textde","textdenominator","textfrac","textinf","textinferior","textlf","textnu","textnumerator","textosf","textsu","textsuperior","textth","textthit","texttlf","texttosf","thdefault","thfamily","tlfstyle","tosfstyle","useosf","useproportional","fileversion","filedate","binary","nbinary","hex","nhex","oct","noct","tetra","ntetra","nbinbased"]}
-,
-"newtxtt.sty":{"envs":{},"deps":["fontenc.sty","textcomp.sty","xkeyval.sty"],"cmds":["ttzdefault","ttzfamily","textttz","ttz","DH","NG","dj","ng","k","guillemotleft","guillemotright","guilsinglleft","guilsinglright","quotedblbase","quotesinglbase","textquotedbl","DJ","th","TH","dh","Hwithstroke","hwithstroke","textogonekcentered","guillemetleft","guillemetright"]}
-,
-"newunicodechar.sty":{"envs":{},"deps":{},"cmds":["newunicodechar"]}
-,
-"newvbtm.sty":{"envs":{},"deps":{},"cmds":["newverbatim","renewverbatim"]}
-,
-"newverbs.sty":{"envs":{},"deps":["shortvrb.sty"],"cmds":["newverbcommand","renewverbcommand","provideverbcommand","qverb","qverbbeginquote","qverbendquote","fverb","MakeSpecialShortVerb","collectverb","Collectverb","collectverbenv","Collectverbenv","newverbsfont","verbdef","Verbdef"]}
-,
-"nextpage.sty":{"envs":{},"deps":{},"cmds":["cleartoevenpage","movetoevenpage","cleartooddpage","movetooddpage"]}
-,
-"nexus-otf.sty":{"envs":{},"deps":["ifxetex.sty","ifluatex.sty","textcomp.sty","xkeyval.sty","unicode-math.sty"],"cmds":["sufigures","textsu","infigures","textin"]}
-,
-"ngerman.sty":{"envs":{},"deps":{},"cmds":{}}
-,
-"nicefilelist.sty":{"envs":{},"deps":["monofill.sty","myfilist.sty","hardwrap.sty","xstring.sty"],"cmds":["NFLspaceI","NFLspaceII","NFLspaceIII","NFLnodate","NFLnoversion","NFLnotfound","MaxBaseEmptyList","maxBaseEmptyList","ifNFLwrap","NFLwraptrue","NFLwrapfalse","ifNFLautolength","NFLautolengthtrue","NFLautolengthfalse"]}
-,
-"nicefrac.sty":{"envs":{},"deps":["ifthen.sty"],"cmds":["nicefrac"]}
-,
-"niceframe.sty":{"envs":{},"deps":["calc.sty"],"cmds":["niceframe","curlyframe","artdecoframe","generalframe","ding","thetimes"]}
-,
-"nicematrix.sty":{"envs":["NiceTabular","NiceTabular*","NiceTabularX","NiceArray","pNiceArray","bNiceArray","BNiceArray","vNiceArray","VNiceArray","NiceMatrix","pNiceMatrix","bNiceMatrix","BNiceMatrix","vNiceMatrix","VNiceMatrix","NiceMatrixBlock","TabularNote","NiceArrayWithDelims"],"deps":["amsmath.sty","l3keys2e.sty","xparse.sty","footnote.sty","footnotehyper.sty"],"cmds":["NiceMatrixOptions","Block","Hline","diagbox","hdottedline","cdottedline","CodeBefore","Body","cellcolor","rectanglecolor","arraycolor","chessboardcolors","rowcolor","columncolor","rowcolors","rowlistcolors","RowStyle","Ldots","Cdots","Vdots","Ddots","Iddots","iddots","line","Hspace","Hdotsfor","Vdotsfor","CodeAfter","SubMatrix","OverBrace","UnderBrace","tabularnote","rotate","ShowCellNames","AutoNiceMatrix","pAutoNiceMatrix","bAutoNiceMatrix","BAutoNiceMatrix","vAutoNiceMatrix","VAutoNiceMatrix","NiceMatrixLastEnv","OnlyMainNiceMatrix","NotEmpty","myfileversion","myfiledate"]}
-,
-"niceverb.sty":{"envs":{},"deps":["stacklet.sty","actcodes.sty"],"cmds":["NVerb","HardNVerb","cs","cstx","GenCmdBox","HardVerbBox","VerticalCmdBox","InlineCmdBox","cmdboxitem","lt","gt","qtd","dqtd","qtdnverb","newlet","CatCode","MakeActiveLetHere","do","MakeNormal","MakeNormalHere","IfTypesetting","nvSelfProtect","NewSelfProtectedCommand","nvShowProtectedEdef","SetNiceVerbSaveBox","TheNiceVerbSaveBox","NiceMaybeMetaVerb","LQverb","CmdSyntaxVerb","BuildCsSyntax","AutoCmdSyntaxVerb","EndAutoCmdSyntaxVerb","NormalCommand","niceverbNoVerbList","AddToMacro","AddToNoVerbList","AutoCmdInput","MetaVar","HashVerb","RQsansserif","DoRQsansserif","nvAllowRQSS","nvRightQuoteSansSerif","nvRightQuoteNormal","NiceVerbMove","nvAllRightQuotesSansSerif","nvCmdBox","SetOffInlineCmdBox","SetOffInlineCmdBoxInner","SetOffInlineCmdBoxOuter","AddQuotes","DontAddQuotes","nvResetPages","noNiceVerb","useNiceVerb"]}
-,
-"nidanfloat.sty":{"envs":{},"deps":{},"cmds":["dblbotfraction","balancenewpage","balanceclearpage"]}
-,
-"nimbusmono.sty":{"envs":{},"deps":["fontenc.sty","textcomp.sty","mweights.sty","xkeyval.sty"],"cmds":["DH","NG","dj","ng","k","guillemotleft","guillemotright","guilsinglleft","guilsinglright","quotedblbase","quotesinglbase","textquotedbl","DJ","th","TH","dh","Hwithstroke","hwithstroke","textogonekcentered","guillemetleft","guillemetright"]}
-,
-"nimbusmononarrow.sty":{"envs":{},"deps":["fontenc.sty","textcomp.sty","xkeyval.sty"],"cmds":["DH","NG","dj","ng","k","guillemotleft","guillemotright","guilsinglleft","guilsinglright","quotedblbase","quotesinglbase","textquotedbl","DJ","th","TH","dh","Hwithstroke","hwithstroke","textogonekcentered","guillemetleft","guillemetright"]}
-,
-"nimbussans.sty":{"envs":{},"deps":["fontenc.sty","textcomp.sty","xkeyval.sty"],"cmds":["DH","NG","dj","ng","k","guillemotleft","guillemotright","guilsinglleft","guilsinglright","quotedblbase","quotesinglbase","textquotedbl","DJ","th","TH","dh","Hwithstroke","hwithstroke","textogonekcentered","guillemetleft","guillemetright"]}
-,
-"nimbusserif.sty":{"envs":{},"deps":["fontenc.sty","textcomp.sty","xkeyval.sty"],"cmds":["NimbusSerifscale","DH","NG","dj","ng","k","guillemotleft","guillemotright","guilsinglleft","guilsinglright","quotedblbase","quotesinglbase","textquotedbl","DJ","th","TH","dh","Hwithstroke","hwithstroke","textogonekcentered","guillemetleft","guillemetright"]}
-,
-"nimsticks.sty":{"envs":{},"deps":["lcg.sty","tikz.sty","etoolbox.sty"],"cmds":["drawnimstick","nimgame","setnimstickcolour","nimstickcolour","setnimscale","nimstickheight","nimstickthickness","nimstickgap","nimheapgap","nimheapwobble","nimheaplift","nimrandrange","onenimstick","topx","botx","lift","listofgames","heap","heapindex"]}
-,
-"ninecolors.sty":{"envs":{},"deps":["xcolor.sty"],"cmds":["NineColors"]}
-,
-"njustthesis.cls":{"envs":["abstract","abstract*","acknowledgement","keyword","keyword*"],"deps":["kvdefinekeys.sty","kvsetkeys.sty","kvoptions.sty","s-ctexbook.cls","xeCJK.sty","csquotes.sty","indentfirst.sty","setspace.sty","titletoc.sty","tocbibind.sty","fancyhdr.sty","pifont.sty","footmisc.sty","natbib.sty","graphicx.sty","cnlogo.sty","tabu.sty","multicol.sty","newtxmath.sty","exercise.sty","enumitem.sty","boxedminipage.sty"],"cmds":["njustsetup","copyrightpage","reviewpage","filedate","filename","fileversion","njustwhole"]}
-,
-"njuthesis.cls":{"envs":["abstract","abstract*","preface","notation","notation*","acknowledgement","axiom","corollary","definition","example","lemma","proof","theorem"],"deps":["xtemplate.sty","l3keys2e.sty","s-ctexbook.cls","geometry.sty","fancyhdr.sty","footmisc.sty","setspace.sty","mathtools.sty","unicode-math.sty","booktabs.sty","caption.sty","graphicx.sty","enumitem.sty","hyperref.sty","cleveref.sty","emptypage.sty","xeCJKfntef.sty","lua-ul.sty","tabularray.sty","biblatex.sty","ntheorem.sty","njuvisual.sty","xstring.sty"],"cmds":["njusetup","njuline","njuchapter","njupaperlist","njusetname","njusettext","njusetlength","njusetformat","bigger","theoremsymbol","theendNonectr","thecurrNonectr","ifsetendmark","setendmarktrue","setendmarkfalse","versionofgbtstyle","versionofbiblatex","defversion","switchversion","testCJKfirst","multivolparser","multinumberparser","BracketLift","gbleftparen","gbrightparen","gbleftbracket","gbrightbracket","execgbfootbibfmt","SlashFont","footbibmargin","footbiblabelsep","execgbfootbib","thegbnamefmtcase","mkgbnumlabel","thegbalignlabel","thegbcitelocalcase","thegbbiblocalcase","lancnorder","lanjporder","lankrorder","lanenorder","lanfrorder","lanruorder","execlanodeah","thelanordernum","execlanodudf","setlocalbibstring","setlocalbiblstring","dealsortlan","bibitemindent","biblabelextend","setaligngbstyle","lengthid","lengthlw","itemcmd","setaligngbstyleay","publocpunct","bibtitlefont","bibauthorfont","bibpubfont","execgbfdfmtstd","aftertransdelim","gbcaselocalset","gbpinyinlocalset","gbquanpinlocalset","defdoublelangentry","entrykeya","entrykeyb","userfieldabcde","mkbibleftborder","mkbibrightborder","mkbibsuperbracket","mkbibsuperscriptusp","upcite","pagescite","yearpagescite","yearcite","authornumcite","citet","citep","citetns","citepns","inlinecite","citec","citecs","authornumcites"]}
-,
-"njuvisual.sty":{"envs":{},"deps":["tikz.sty"],"cmds":["njuemblem","njuname","njumotto","njuspirit"]}
-,
-"nl-interval.sty":{"envs":{},"deps":["tkz-fct.sty"],"cmds":["nlAxisX","nlinfnum","nlnuminf","nlnumnum"]}
-,
-"nlctdoc.cls":{"envs":["definition","important","prompt","display","labelledbox","example"],"deps":["ifpdf.sty","ifxetex.sty","xcolor.sty","inputenc.sty","fontenc.sty","cmap.sty","fourier.sty","etoolbox.sty","doc.sty","dox.sty","upquote.sty","s-scrartcl.cls","s-scrbook.cls","s-scrreprt.cls"],"cmds":["ifnlctdocinlinetitle","nlctdocinlinetitletrue","nlctdocinlinetitlefalse","ifwidecs","widecstrue","widecsfalse","ifwbprompt","wbprompttrue","wbpromptfalse","letterheading","nlctdocmarginfmt","nlctdocmargin","nlctdocmarginwide","cs","mgroup","marg","oarg","parg","PrintChanges","RecordChanges","main","usage","nlctdocmainencap","nlctdochyperencap","SpecialPageIndex","see","macrowidth","importantfmt","importantsymbolfont","importantpar","importantsymbol","defsbox","defwidth","tmpwidth","tmpheight","idxmarker","doidxmarker","appfmt","iapp","app","qt","termdef","term","iterm","tableref","Tableref","dequals","dcomma","dhyphen","idxmarkedfont","ics","csmeta","csmetameta","csoptfmt","icsopt","csopt","pkgoptfmt","ipkgopt","ideprecatedpkgopt","pkgopt","deprecatedpkgopt","pkgoptval","clsoptfmt","iclsopt","ideprecatedclsopt","clsopt","deprecatedclsopt","clsoptval","filetypefmt","ifiletype","filetype","styfmt","isty","sty","clsfmt","icls","cls","envfmt","ienv","env","ctrfmt","ictr","ctr","boolfmt","ibool","bool","bstfmt","ibst","bst","menu","ctandoc","theexample","examplename","toTop","oldlabel","sectionref","xrsectionref","qtdocref","docref","altdocref","urlref","urlfootref","submenu","listofexamples","nlcthlangle","nlcthrangle","aargh","promptsymbol","DH","dh","dj","DJ","guillemetleft","guillemetright","guillemotleft","guillemotright","guilsinglleft","guilsinglright","Hwithstroke","hwithstroke","k","NG","ng","quotedblbase","quotesinglbase","textogonekcentered","textquotedbl","th","TH"]}
-,
-"nlctuserguide.sty":{"envs":["itemdesc","deflist","warning","important","information","pinnedbox","defnbox","settingsbox","terminal","transcript","codebox","codebox*","badcodebox","unicodebox","compactcodebox","compactcodebox*","resultbox","coderesult","coderesult*","unicoderesult","unicoderesult*","example"],"deps":["iftex.sty","etoolbox.sty","fontspec.sty","fontawesome.sty","twemojis.sty","pifont.sty","amsfonts.sty","textcomp.sty","array.sty","upquote.sty","hologo.sty","varioref.sty","xcolor.sty","tcolorbox.sty","tcolorboxlibrarybreakable.sty","tcolorboxlibraryskins.sty","tcolorboxlibrarylistings.sty","hyperref.sty","mfirstuc.sty","glossaries-extra.sty","attachfile.sty","xr-hyper.sty","glossaries-accsupp.sty","glossaries-prefix.sty","glossaries-babel.sty","glossaries-extra-bib2gls.sty","glossaries-extra-stylemods.sty","glossary-mcols.sty","glossary-bookindex.sty","glossary-topic.sty","glossary-longextra.sty"],"cmds":["printabbreviations","printunsrtabbreviations","abbreviationsname","glsshowaccsupp","printnumbers","glsxtrnewnumber","printunsrtnumbers","glsxtrpostdescnumber","newterm","printindex","printunsrtindex","glsxtrpostdescindex","printacronyms","printunsrtacronyms","newentry","newsym","newnum","newabbr","GlsSetXdyLanguage","GlsSetXdyCodePage","GlsAddXdyCounters","GlsAddXdyAttribute","GlsAddXdyLocation","GlsSetXdyLocationClassOrder","GlsSetXdyMinRangeLength","GlsSetXdyFirstLetterAfterDigits","GlsSetXdyNumberGroupOrder","GlsAddLetterGroup","GlsAddSortRule","GlsAddXdyAlphabet","GlsAddXdyStyle","GlsSetXdyStyles","actext","app","appdef","appfmt","apptext","araracont","araraline","banned","BibTeX","blog","booktitle","cbeg","cend","cls","clsfmt","clsoptfmt","clstext","cmd","cmddef","cmddefsyntax","cmdmod","code","codebackslash","codepar","comment","common","conditionsyntax","conno","conyes","csfmt","csmetafmt","csmetametafmt","csoptfmt","ctanmirror","ctanmirrordocnofn","ctanmirrornofn","ctanpkg","CTANpkg","ctanpkgmirror","ctanref","ctansupportmirror","ctr","ctrdef","ctrfmt","ctrtext","dash","dcolon","dcomma","defsemanticcmd","defval","deprecated","dequals","desc","dfullstop","dhyphen","dickimawhref","dickimawhrefnofn","docref","dsb","dunderscore","env","envdef","envfmt","envtext","eTeX","exampleref","Exampleref","examplesref","Examplesref","ext","exttext","faqitem","faqpage","faqspkg","field","figureref","Figureref","figuresref","Figuresref","file","filedef","filefmt","fnsym","fnsymtext","gabbr","gacr","gallery","gallerypage","galleryref","gallerytopic","galleryurl","gapp","gcls","gclsboolopt","gclsopt","gcmd","gcmdmeta","gcmdmetameta","gcmds","gcmdsp","gcond","gcsboolopt","gcsopt","gctr","genv","gext","gfile","gfilemeta","gfilemetameta","gidx","gidxpl","glongswitch","glsbibwriteentry","gmod","gopt","goptval","gpkg","gpunc","gpunccmd","gshortswitch","gstyboolopt","gstyopt","gterm","gtermabbr","gtermacr","htmlavailable","idx","Idx","idxc","idxf","idxn","idxpl","Idxpl","ifnlctdownloadlinks","inapp","inclass","initval","initvalempty","initvalvaries","inlineglsdef","inlineidxdef","Inlineidxdef","inlineidxfdef","inlineidxpdef","inlineswitchdef","inpackage","itemtitle","keyval","keyvallist","listofexamples","longargfmt","longswitch","LuaLaTeX","LuaTeX","marg","margm","menu","meta","metafilefmt","MikTeX","mirrorsamplefile","name","nlctcloseparen","nlctclosesqbracket","nlctdownloadlinksfalse","nlctdownloadlinkstrue","nlctopenparen","nlctopensqbracket","no","note","oarg","oargm","opt","optdefsyntax","opteqvalref","optfmt","option","optiondef","options","optionsor","optionsto","optionvaldef","opttext","optval","optvalm","optvalref","parent","pdfLaTeX","pdfTeX","pkgdef","plabel","printicons","printsummary","prono","providedby","proyes","qt","qtdocref","qtt","sectionref","Sectionref","sectionsref","Sectionsref","settabcolsep","shortargfmt","starredcs","sty","styfmt","styoptfmt","stytext","switch","switchdef","switchtext","sym","syntax","tablefnmark","tablefns","tablefntext","tableref","Tableref","tablesref","Tablesref","texdocref","texfaq","TeXLive","texseref","tugboat","unlimited","urlfootref","XeLaTeX","XeTeX","yes","createexample","nlctuserguidegls","printabbrs","printcommonoptions","printterms","printuserguideindex","abbrpostnamehook","acrpostnamehook","addtoexamplepreamble","addtolistofexamples","advantagefmt","altdocref","appnotefmt","asteriskmarker","badcodedesc","badcodesym","badcodetext","banneddesc","bannedsym","bannedtext","bibglslocationgroup","bibglslocationgroupsep","bibglsothergroup","bibglsothergrouptitle","boxtitleshift","childoptval","childsummarypar","clsdef","clsdefbookmarklevel","clsdefcounter","clsentryname","clstitle","cmddefbookmarklevel","cmddefbookmarkleveloffset","cmddefcounter","cmddefmodifierhandler","cmdfont","cmdnotefmt","cmdtitle","codedesc","codefont","codesym","codetext","counterdesc","countersym","countertext","createexamplefirstline","createtarget","csfmtcolourfont","csfmtfont","ctrdefbookmarklevel","currentcounter","currentcounterlevel","currentsyntax","daggermarker","defaultoptdefbookmarklevel","definitiondesc","definitionsym","definitiontext","deprecatedbanned","deprecateddesc","deprecatedorbannedfmt","deprecatedsym","deprecatedtext","disadvantagefmt","doubledaggermarker","entrycountprehook","entrydefsection","entrynamebox","entrysec","entryskip","enventryname","envtitle","exampleattachpdficon","exampleattachtexicon","exampledownloadpdficon","exampledownloadtexicon","Examplename","examplename","Examplerefprefix","examplerefprefix","examplesdir","Examplesrefprefix","examplesrefprefix","extfmt","Figurerefprefix","figurerefprefix","Figuresrefprefix","figuresrefprefix","filedownloadlink","filedownloadsubpath","filetag","filteremptylocation","florettemarker","fmtorcode","fnsymmark","fnsymmarker","gathermodifiers","genericsummaryentryoption","getinitordefval","glsaddterm","glsbibwritefield","glsxtrchapterlocfmt","glsxtrfigurelocfmt","glsxtrparagraphlocfmt","glsxtrsectionlocfmt","glsxtrsubparagraphlocfmt","glsxtrsubsectionlocfmt","glsxtrsubsubsectionlocfmt","glsxtrtablelocfmt","goptmetaval","hashmarker","ifnlctattachpdf","ifnotdefaultstatus","ifshowsummarysubgroupheaders","ifshowsummarytopgroupheaders","importantdesc","importantsym","importanttext","informationdesc","informationsym","informationtext","initcodeenv","initordefval","initvalnotefmt","inlineoptionvaldef","keyeqvalue","keyeqvaluem","linkedentryname","listofexampleslabel","listofexamplesname","locationgroupencapchapter","locationgroupencapparagraph","locationgroupencapsection","locationgroupencapsubparagraph","locationgroupencapsubsection","locationgroupencapsubsubsection","locationgroupmarkerchapter","locationgroupmarkerfigure","locationgroupmarkerpage","locationgroupmarkerpages","locationgroupmarkerparagraph","locationgroupmarkersection","locationgroupmarkersubparagraph","locationgroupmarkersubsection","locationgroupmarkersubsubsection","locationgroupmarkertable","lozengemarker","maindef","mainfmt","mainglsadd","mainglsaddcounter","mainmatteronly","menufmt","menusep","metaboolean","metametafilefmt","nlctattachpdffalse","nlctattachpdftrue","nlctdefaultafter","nlctdocatnum","nlctdocsymbolgrouplabel","nlctdocsymbolgrouptitle","nlctdownloadlink","nlctexampledisablecmds","nlctexampleenvtitlefont","nlctexamplefilebasename","nlctexampleimagelist","nlctexamplelets","nlctexampletag","nlctexampletagattachfont","nlctexampletitlebox","nlctexampletitlefmt","nlctexampletitlefont","nlctguideindexinitpostnamehooks","nlctmodifierglslist","nlctmodifierlist","nlctmodifiertag","nlctnovref","nlctuserguidebib","nlctuserguidecustomentryaliases","nlctuserguideextrarules","nlctuserguideignoredpuncrules","nlctuserguideletterrules","nlctuserguideloadgls","nlctuserguidepreletterrules","nlctuserguidepuncrules","nlctusevref","novaluesettingdesc","novaluesettingsym","novaluesettingtext","optdefbookmarklevel","optionlistitemformat","optionlistprefix","optionlisttag","optionlisttags","optiontag","optionvaluedesc","optionvaluesym","optionvaluetext","optnotefmt","optvaldefbookmarklevel","optvaldefcounter","optvalrefeq","pdflongswitch","pilcrowmarker","pkgdefbookmarklevel","pkgdefcounter","pkgentryname","pkgnotefmt","pkgtitle","postnote","printcommandoptions","printcommandoptionsprocesshook","printcommonoptionsprocesshook","providedbyfmt","referencemarker","refslistlastsep","refslistsep","resultdesc","resultsym","resulttext","rootsummarypar","seclocfmt","sectionmarker","Sectionrefprefix","sectionrefprefix","Sectionsrefprefix","sectionsrefprefix","setcounterlevels","setexamplefontsize","setexamplepreamble","settermshook","settingstitle","setupcodeenvfmts","setwidestnamehook","showsummarysubgroupheadersfalse","showsummarysubgroupheaderstrue","showsummarytopgroupheadersfalse","showsummarytopgroupheaderstrue","sidenote","starmarker","statusbannedsym","statusbannedtext","statusdefaultsym","statusdefaulttext","statusdeprecatedbannedsym","statusdeprecatedbannedtext","statusdeprecatedsym","statusdeprecatedtext","statushook","statussym","statustext","summaryentryclass","summaryentryclassbookmark","summaryentryclassoption","summaryentrycommand","summaryentrycommandoption","summaryentryenvironment","summaryentryenvironmentoption","summaryentryoption","summaryentryoptionvalue","summaryentrypackage","summaryentrypackagebookmark","summaryentrypackageoption","summaryentryskip","summaryhook","summaryhookdoskip","summaryloc","summarylocfmt","summarylocfont","summarylocwidth","summarynotefmt","summarypar","summarypredesc","summarysec","summarysecnumdepth","summarysubitemindent","summarysubsec","summarysubsecnumdepth","summarytagfmt","symboldefinitions","symbolentry","tablefnfmt","Tablerefprefix","tablerefprefix","Tablesrefprefix","tablesrefprefix","tagsep","targetorhyperlink","terminaldesc","terminalsym","terminaltext","termslocfmt","texmeta","theexample","thispackage","thispackagename","tick","toggleoffsettingdesc","toggleoffsettingsym","toggleoffsettingtext","toggleonsettingdesc","toggleonsettingsym","toggleonsettingtext","totalclsopts","totalcmds","totalenvs","totalindexitems","totalpkgopts","totalterms","transcriptdesc","transcriptsym","transcripttext","unicodedesc","unicodesym","unicodetext","valuesettingdesc","valuesettingsym","valuesettingtext","vdoubleasteriskmarker","warningdesc","warningsym","warningtext","xrsectionref","printsymbols","glsxtrnewsymbol","printunsrtsymbols","glsxtrpostdescsymbol"]}
-,
-"nmbib.sty":{"envs":{},"deps":["natbib.sty"],"cmds":["multibibliography","multibibliographystyle","citealn","citeall","printbibliography","nmbibRedirectLinks","nmbibLink","timelinerefname","sequencerefname","authorsrefname","timelinebibname","sequencebibname","authorsbibname","multibibliographyfilename","nmbibBasetype","nmbibSetCiteall","nmbibKEY","nmbibNAME","nmbibDATE","nmbibNUM","nmbibSetBiblabel","nmbibYearSuffixOff","nmbibYearSuffixOn","nmbibcitenumber"]}
-,
-"nndraw.sty":{"envs":["fullyconnectednn"],"deps":["tikz.sty"],"cmds":["nnlayer","nnlayerNoText","ifnnlayerHasBias","nnlayerHasBiastrue","nnlayerHasBiasfalse","nnlayerTitle","nnlayerText","nnlayerBias","nnlayerColor","nnlayerBiasColor","thenumlayers","thenninputlayer","thelastnnsize","iffullyconnectednnInout","fullyconnectednnInouttrue","fullyconnectednnInoutfalse","fullyconnectednnInput","fullyconnectednnOutput","fullyconnectednnLayersep","fullyconnectednnBiasX","fullyconnectednnBiasY","fullyconnectednnTitleY","fullyconnectednnTextWidth"]}
-,
-"nnext.sty":{"envs":{},"deps":["ifthen.sty","xspace.sty"],"cmds":["Next","NNext","Last","LLast","nextx","anextx","lastx","blastx","bblastx","printtmpcounter","settmpcounter","thetmpcounter"]}
-,
-"nodetree-embed.sty":{"envs":["NodetreeEmbedView","NodetreeEmbedEnv"],"deps":["luatex.sty","xcolor.sty","mdframed.sty","expl3.sty","xparse.sty","fontspec.sty","kvoptions.sty"],"cmds":["NodetreeSet","nodetreeset","NodetreeEmbedCmd","NodetreeEmbedInput","nodetreeterminalemulator","NodetreeSetOption","nodetreeoption","NodetreeResetOption","NodetreeReset","nodetreereset","NodetreeRegisterCallback","nodetreeregister","NodetreeUnregisterCallback","nodetreeunregister"]}
-,
-"nodetree.sty":{"envs":{},"deps":["luatex.sty","kvoptions.sty"],"cmds":["NodetreeSet","nodetreeset","NodetreeSetOption","nodetreeoption","NodetreeResetOption","NodetreeReset","nodetreereset","NodetreeRegisterCallback","nodetreeregister","NodetreeUnregisterCallback","nodetreeunregister"]}
-,
-"noindentafter.sty":{"envs":{},"deps":["etoolbox.sty","xpatch.sty"],"cmds":["NoIndentAfterEnv","NoIndentAfterCmd","NoIndentAfterThis"]}
-,
-"noitcrul.sty":{"envs":{},"deps":["robustcommand.sty"],"cmds":["noitUnderline"]}
-,
-"nolbreaks.sty":{"envs":{},"deps":{},"cmds":["nolbreaks"]}
-,
-"nomencl.sty":{"envs":["thenomenclature"],"deps":["xkeyval.sty","tocbasic.sty","array.sty","siunitx.sty"],"cmds":["makenomenclature","printnomenclature","nomenclature","nomrefeq","nomrefpage","nomrefeqpage","nomnorefeq","nomnorefpage","nomnorefeqpage","setnomtableformat","nomlabelwidth","nomname","nomAname","nomGname","nomXname","nomZname","nomgroup","nompreamble","nompostamble","nomitemsep","nomprefix","nomlabel","nomentryend","eqdeclaration","pagedeclaration","nomeqref","nompageref","makeglossary","printglossary"]}
-,
-"nonfloat.sty":{"envs":["narrow"],"deps":["ifthen.sty"],"cmds":["tabcaption","figcaption","topcaption","filedate","filename","fileversion"]}
-,
-"normalcolor.sty":{"envs":{},"deps":{},"cmds":["setnormalcolor","resetnormalcolor"]}
-,
-"notes2bib.sty":{"envs":{},"deps":["l3keys2e.sty","xparse.sty"],"cmds":["bibnote","bibnotemark","bibnotetext","printbibnotes","bibnotesetup","recordnotes","TotalNotes","NotesAfterCitations","NotesBeforeCitations"]}
-,
-"notespages.sty":{"envs":{},"deps":["xkeyval.sty"],"cmds":["setnotespages","notespage","notespages","notesfill","definenotesoption","definenotesstyle","remainingtextheight","notesareatext","definetitlestyle","notestitletext","nppatchchapter","npunpatchchapter","npnotesname","npnotestext"]}
-,
-"noto-mono.sty":{"envs":{},"deps":["ifxetex.sty","ifluatex.sty","xkeyval.sty","textcomp.sty","fontenc.sty","fontaxes.sty","mweights.sty"],"cmds":["notomono","notomonolgr","sufigures","textsu","notomonofamily"]}
-,
-"noto-sans.sty":{"envs":{},"deps":["ifxetex.sty","ifluatex.sty","xkeyval.sty","textcomp.sty","fontenc.sty","fontaxes.sty","mweights.sty"],"cmds":["notosans","notosanslgr","sufigures","textsu","notosansfamily"]}
-,
-"noto-serif.sty":{"envs":{},"deps":["ifxetex.sty","ifluatex.sty","xkeyval.sty","textcomp.sty","fontenc.sty","fontaxes.sty","mweights.sty"],"cmds":["notoserif","notoseriflgr","sufigures","textsu","notoseriffamily"]}
-,
-"noto.sty":{"envs":{},"deps":["ifxetex.sty","ifluatex.sty","xkeyval.sty","textcomp.sty","fontenc.sty","fontaxes.sty","mweights.sty"],"cmds":["notomono","notomonolgr","notosans","notosanslgr","notoserif","notoseriflgr","sufigures","textsu","notosansfamily","notoseriffamily","notomonofamily"]}
-,
-"notocondensed-mono.sty":{"envs":{},"deps":["ifxetex.sty","ifluatex.sty","xkeyval.sty","textcomp.sty","fontenc.sty","fontaxes.sty","mweights.sty"],"cmds":["sufigures","textsu","notocondensedmono","notocondensedmonosemicondensed","notocondensedmonoextracondensed","notomonocondensedlgr","notocondensedmonofamily"]}
-,
-"notocondensed.sty":{"envs":{},"deps":["ifxetex.sty","ifluatex.sty","xkeyval.sty","textcomp.sty","fontenc.sty","fontaxes.sty","mweights.sty"],"cmds":["sufigures","textsu","notoserifcondensed","notosanscondensed","notomonocondensed","notoserifcondensedlgr","notosanscondensedlgr","notomonocondensedlgr","notosanssemicondensed","notosansextracondensed","notoserifsemicondensed","notoserifextracondensed","notomonosemicondensed","notomonoextracondensed","notocondensedsansfamily","notocondensedmonofamily","notosanscondensedfamily","notoserifcondensedfamily","notomonocondensedfamily"]}
-,
-"notomath.sty":{"envs":{},"deps":["fontenc.sty","fontaxes.sty","mweights.sty","textcomp.sty","xkeyval.sty","noto-serif.sty","noto-sans.sty","newtxmath.sty"],"cmds":["BIA","BIB","BIC","BID","BIE","BIF","BIG","BIH","BII","BIJ","BIK","BIL","BIM","BIN","BIO","BIP","BIQ","BIR","BIS","BIT","BIU","BIV","BIW","BIX","BIY","BIZ","BIa","BIb","BIc","BId","BIe","BIf","BIg","BIh","BIi","BIj","BIk","BIl","BIm","BIn","BIo","BIp","BIq","BIr","BIs","BIt","BIu","BIv","BIw","BIx","BIy","BIz"]}
-,
-"novel.cls":{"envs":["labeling","labeling*","parascale","toc","legalese","ChapterStart"],"deps":["luatex.sty","ifluatex.sty","ifxetex.sty","luatex85.sty","pdftexcmds.sty","etoolbox.sty","xifthen.sty","xstring.sty","fp.sty","xfp.sty","keyval.sty","silence.sty","textpos.sty","calc.sty","atbegshi.sty","letltxmacro.sty","xparse.sty","noindentafter.sty","changepage.sty","magaz.sty","xcolor.sty","adjustbox.sty","eso-pic.sty","pdfpages.sty","fontspec.sty","unicode-math.sty","polyglossia.sty","lipsum.sty","microtype.sty","fancyhdr.sty","luacode.sty","wrapfig.sty","hyperref.sty"],"cmds":["thepdfminorversion","gsetlength","ifdraftdoc","draftdoctrue","draftdocfalse","ifmsdoc","msdoctrue","msdocfalse","thesandboxcount","testsuiteoops","mustbelibertinus","mustbelmodern","SetTitle","theTitle","thetitle","SetAuthor","theAuthor","theauthor","SetSubtitle","subtitle","theSubtitle","thesubtitle","SetApplication","SetProducer","SetPDFX","SetTrimSize","SetMargins","SetMargin","SetUnsafeZone","SetMediaSize","SetLinesPerPage","SetFontSize","ifWithinFrontmatter","WithinFrontmattertrue","WithinFrontmatterfalse","ifWithinMainmatter","WithinMainmattertrue","WithinMainmatterfalse","mainmatter","backmatter","HUGE","frontmatter","chapter","CreateFontFeature","SetChapterFont","SetDecoFont","SetHeadFont","SetMasterFont","SetParentFont","SetSubchFont","NewFontFamily","NewFontFace","SetSansFont","SetMonoFont","SetMathFont","AddFontFeatures","AddFontFeature","SetDropCapColor","SetDropCapFont","mainfont","parentfontfeatures","parentfontname","smcp","theNDCDefaultLines","theNDCDefaultDepth","NDCDefaultVoffset","NDCDefaultHoffset","NDCDefaultScale","NDCDefaultBloat","NDCDefaultGap","NDCboxwidth","NDCboxheight","NDCboxdepth","dropcap","straightquote","straightdblquote","midcase","decoglyph","memo","stake","allsmcp","oldscshape","flexbox","bigemdash","charscale","TotalYpos","PosTolerance","getParapos","CurrentParapos","ParaHowdown","ParaLinesdown","ParaResidual","ParaComplain","ParaDeficit","tocitem","hangleft","showlength","lnum","yadacurrentcount","yadaendcount","novelyadayada","sidebyside","nfs","nbs","normalparindent","normalxheight","normalXheight","normalscxheight","normalAringheight","normaldescender","forceindent","backindent","SetHeadFootStyle","SetHeadStyle","SetHeadJump","SetFootJump","SetLooseHead","SetEmblems","SetEmblem","SetPageNumberStyle","pagenumberstyle","dropfolionow","NewVersoHeadText","versoheadtext","SetVersoHeadText","RenewVersoHeadText","NewRectoHeadText","rectoheadtext","SetRectoHeadText","RenewRectoHeadText","SetChapterStartStyle","SetChapterStart","SetChapterStartHeight","SetScenebreakIndent","scenebreak","sceneline","scenestars","getBreakpos","CurrentBreakpos","FirstLine","oldFirstLine","FirstLineFoo","thenovelcn","ChapterTitle","ChapterSubtitle","ChapterDeco","QuickChapter","cleartorecto","cleartoend","thisline","IndentAfterScenebreak","PDFHasDisallowedColorspaceTF","PDFVerifyInfoFieldTF","ScriptCoverImage","imagewidth","imageheight","imagehoffset","imagevoffset","imagestarred","imagefilename","InlineImage","floatlocation","FloatImage","WrapImage","wrapimage","novelgetbytes","novelbytesare","novelpngbitdepth","novelpngcolortype","SetKnownGoodImages","sups","subs","realmarker","fakemarker","SetMarkerStyle","SetMarkers","endnote","endnotetext","Resetendnote","ResetFootnoteSymbol","ResetFootnote","nentext"]}
-,
-"nowidow.sty":{"envs":{},"deps":["kvoptions.sty"],"cmds":["nowidow","setnowidow","noclub","setnoclub"]}
-,
-"nowtoaux.sty":{"envs":{},"deps":{},"cmds":["immediateaddtocontents","immediatewriteaux","macrotoaux","writeaux"]}
-,
-"ntabbing.sty":{"envs":["ntabbing"],"deps":{},"cmds":["reset","numboxsize"]}
-,
-"nth.sty":{"envs":{},"deps":{},"cmds":["nth","ordinal","nthM","nthSuff","nthscript","nthtest"]}
-,
-"ntheorem.sty":{"envs":["Theorem","theorem","Lemma","lemma","Proposition","proposition","Corollary","corollary","Satz","satz","Korollar","korollar","Definition","definition","Example","example","Beispiel","beispiel","Anmerkung","anmerkung","Bemerkung","bemerkung","Remark","remark","Proof","proof","Beweis","beweis","Theorem*","theorem*","Lemma*","lemma*","Proposition*","proposition*","Corollary*","corollary*","Satz*","satz*","Korollar*","korollar*","Definition*","definition*","Example*","example*","Beispiel*","beispiel*","Anmerkung*","anmerkung*","Bemerkung*","bemerkung*","Remark*","remark*","Proof*","proof*","Beweis*","beweis*","proof"],"deps":["ifthen.sty","amssymb.sty"],"cmds":["theoremsymbol","theendNonectr","thecurrNonectr","ifsetendmark","setendmarktrue","setendmarkfalse","label","thref","theproof","thecurrproofctr","theendproofctr","openbox","proofSymbol","proofname","newframedtheorem","newshadedtheorem","shadecolor","theoremframecommand","theoremframepreskip","theoremframepostskip","theoreminframepreskip","theoreminframepostskip","newtheorem","renewtheorem","theoremstyle","theoremheaderfont","theorembodyfont","theoremnumbering","theoremseparator","theorempreskip","theorempostskip","theoremindent","theoremprework","theorempostwork","theoremclass","theorempreskipamount","theorempostskipamount","theoremframepreskipamount","theoremframepostskipamount","theoreminframepreskipamount","theoreminframepostskipamount","theoremrightindent","listtheorems","theoremlisttype","addtheoremline","addtotheoremfile","newtheoremstyle","renewtheoremstyle","newtheoremlisttype","renewtheoremlisttype","qed","qedsymbol","NoEndMark","greek","Greek","basename","docdate","filedate","fileversion","getKeywordOf","InTheoType","mysavskip","None","NoneKeyword","NoneSymbol","OrganizeTheoremSymbol","PotEndMark","RestoreTags","SetEndMark","SetOnlyEndMark","SetTagPlusEndMark","TagsPlusEndmarks","tagwidth","theoremkeyword","theoremlistall","theoremlistallname","theoremlistdo","theoremlistoptional","theoremlistoptname"]}
-,
-"nucleardata.sty":{"envs":{},"deps":["pythontex.sty","siunitx.sty"],"cmds":["nucsymbol","nucname","nucName","nucz","nuchalflife","nuchalfvalue","nuchalfunit","nucspin","nucamassu","nucamassmev","nucamasskev","nuclearmassu","nuclearmassmev","nuclearmasskev","nucexcess","nucbea","nucisotopes","nucQalpha","nucQbeta","nucQposi","nucQec","nucisalpha","nucisbeta","nucisposi","nucisec","nucreactionqu","nucreactionqmev","nucreactionqkev","nucAran","nucrandom"]}
-,
-"numberedblock.sty":{"envs":["numVblock"],"deps":["verbatim.sty","verbatimbox.sty"],"cmds":["numblock","nblabel","nbVlabel","theblocknum","maxblocklabelsize","blockindent","codeblockwidth","parindentsave","blocklabel"]}
-,
-"numberpt.sty":{"envs":{},"deps":["expl3.sty","xparse.sty"],"cmds":["numberpt","Numberpt","NumberPt","NUMBERPT","NumberPTcatorze","NumberPTquatorze","NumberPTdezasseis"]}
-,
-"numerica-plus.sty":{"envs":{},"deps":["numerica.sty"],"cmds":["iter","nmcIterate","solve","nmcSolve","recur","nmcRecur"]}
-,
-"numerica-tables.sty":{"envs":{},"deps":["numerica.sty","booktabs.sty"],"cmds":["tabulate","nmcTabulate"]}
-,
-"numerica.sty":{"envs":{},"deps":["xparse.sty","l3keys2e.sty","amsmath.sty","mathtools.sty"],"cmds":["eval","nmcEvaluate","csch","sech","arccsc","arcsec","arccot","asinh","acosh","atanh","acsch","asech","acoth","lb","sgn","abs","floor","ceil","q","Q","info","nmcInfo","macros","nmcMacros","constants","nmcConstants","reuse","nmcReuse"]}
-,
-"numerus.sty":{"envs":{},"deps":{},"cmds":["propis","Propis","PROpis"]}
-,
-"numname.sty":{"envs":{},"deps":{},"cmds":["NumToName","OrdinalToName","cardinal","fcardinal","fnumbersep","fordinal","iiirdstring","iindstring","iststring","lcminusname","minusname","nNamec","nNamei","nNameii","nNameiii","nNameiv","nNameix","nNamel","nNamelx","nNamelxx","nNamelxxx","nNamem","nNamemm","nNamemmm","nNameo","nNamev","nNamevi","nNamevii","nNameviii","nNamex","nNamexc","nNamexi","nNamexii","nNamexiii","nNamexiv","nNamexix","nNamexl","nNamexv","nNamexvi","nNamexvii","nNamexviii","nNamexx","nNamexxx","namenumberand","namenumbercomma","nthNamei","nthNameii","nthNameiii","nthNameiv","nthNameix","nthNamel","nthNamelx","nthNamelxx","nthNamelxxx","nthNameo","nthNamev","nthNamevi","nthNamevii","nthNameviii","nthNamexc","nthNamexii","nthNamexl","nthNamexx","nthNamexxx","nthstring","numdigits","numtoName","numtoname","ordinaltoName","ordinaltoname","ordinal","ordscript","ordstring","teennumbername","teenordinalname","teenstring","tensnumbername","tensordinalname","tensunitsep","tiethstring","ucminusname","unitnumbername","unitordinalname","iflowernumtoname","lowernumtonametrue","lowernumtonamefalse","ifpriornum","priornumtrue","priornumfalse","ifminusnumber","minusnumbertrue","minusnumberfalse","ifnotnumtonameallcaps","notnumtonameallcapstrue","notnumtonameallcapsfalse","ifmakeordinal","makeordinaltrue","makeordinalfalse"]}
-,
-"numnameru.sty":{"envs":{},"deps":{},"cmds":["centnumbername","minusname","numdigits","numnameru","rNamenumberC","rNamenumberI","rNamenumberII","rNamenumberIIC","rNamenumberIID","rNamenumberIII","rNamenumberIIIC","rNamenumberIIID","rNamenumberIV","rNamenumberIVC","rNamenumberIVD","rNamenumberIX","rNamenumberIXC","rNamenumberIXD","rNamenumberO","rNamenumberV","rNamenumberVC","rNamenumberVD","rNamenumberVI","rNamenumberVIC","rNamenumberVID","rNamenumberVII","rNamenumberVIIC","rNamenumberVIID","rNamenumberVIII","rNamenumberVIIIC","rNamenumberVIIID","rNamenumberX","rNamenumberXI","rNamenumberXII","rNamenumberXIII","rNamenumberXIV","rNamenumberXIX","rNamenumberXV","rNamenumberXVI","rNamenumberXVII","rNamenumberXVIII","teennumbername","tensnumbername","unitnumbername","ifpriornum","priornumtrue","priornumfalse","ifminusnumber","minusnumbertrue","minusnumberfalse"]}
-,
-"numprint.sty":{"envs":{},"deps":["array.sty"],"cmds":["numprint","np","cntprint","lenprint","npfourdigitsep","npfourdigitnosep","npaddmissingzero","npnoaddmissingzero","npaddplus","npnoaddplus","npaddplusexponent","npnoaddplusexponent","nprounddigits","nproundexpdigits","npnoround","npnoroundexp","nplpadding","npnolpadding","npreplacenull","npprintnull","npunitcommand","npdefunit","selectlanguage","npmakebox","npboldmath","npafternum","npunit","npdigits","npexponentdigits","npnodigits","npnoexponentdigits","npthousandsep","npthousandthpartsep","npdecimalsign","npproductsign","npunitseparator","npdegreeseparator","npcelsiusseparator","nppercentseparator","npstyledefault","npstyleenglish","npstylegerman","npstylefrench","npstyleportuguese","npstyledutch","npaddtolanguage"]}
-,
-"numspell.sty":{"envs":{},"deps":["xstring.sty","iflang.sty"],"cmds":["numspell","thenumspell","numspellsave","numspelldashspace","Numspell","ordnumspell","Ordnumspell","numspellUS","numspellGB","numspellpremiere","numspellpremier","anumspell","Anumspell","aordnumspell","Aordnumspell","numspellitmasculine","numspelllamasculine","numspelllafeminine","numspelllaneuter"]}
-,
-"nunito.sty":{"envs":{},"deps":["xkeyval.sty","fontenc.sty","textcomp.sty","ifthen.sty","mweights.sty","fontaxes.sty"],"cmds":["sufigures","supfigures","textsu","textsup","textsuperior","nunitotabular"]}
-,
-"nwafuthesis.cls":{"envs":["axiom","corollary","definition","example","lemma","proof","theorem","acknowledgement","resume","publications","achievements","abstract*","notation"],"deps":["expl3.sty","xtemplate.sty","l3keys2e.sty","s-ctexbook.cls","xeCJK.sty","amsmath.sty","unicode-math.sty","geometry.sty","fancyhdr.sty","titletoc.sty","footmisc.sty","ntheorem.sty","enumitem.sty","graphicx.sty","caption.sty","bicaption.sty","xcolor.sty","biblatex.sty","hyperref.sty","pifont.sty","xstring.sty"],"cmds":["nwafuset","frontmatter","mainmatter","newtheorem","bibmatter","researchitem","nwafuthesis","datezh","dateen","fakebold","makecoveri","makecoverii","makecoveriii","makecoveriv","makecoverv","makecovervi","makecovervii","makecovers","makefront","cleardoublepage","gbcaselocalset","nwafufoot","nwafuhead","NWAFUNumberLine","publicationskip","resumitem","tocrule","theoremsymbol","theendNonectr","thecurrNonectr","ifsetendmark","setendmarktrue","setendmarkfalse","nwafubibfont","versionofgbtstyle","versionofbiblatex","defversion","switchversion","testCJKfirst","multivolparser","multinumberparser","BracketLift","gbleftparen","gbrightparen","gbleftbracket","gbrightbracket","execgbfootbibfmt","SlashFont","footbibmargin","footbiblabelsep","execgbfootbib","thegbnamefmtcase","mkgbnumlabel","thegbalignlabel","thegbcitelocalcase","thegbbiblocalcase","lancnorder","lanjporder","lankrorder","lanenorder","lanfrorder","lanruorder","execlanodeah","thelanordernum","execlanodudf","setlocalbibstring","setlocalbiblstring","dealsortlan","bibitemindent","biblabelextend","setaligngbstyle","lengthid","lengthlw","itemcmd","setaligngbstyleay","publocpunct","bibtitlefont","bibauthorfont","bibpubfont","execgbfdfmtstd","aftertransdelim","gbpinyinlocalset","gbquanpinlocalset","defdoublelangentry","entrykeya","entrykeyb","userfieldabcde","mkbibleftborder","mkbibrightborder","compextradelim","upcite","pagescite","yearpagescite","yearcite","authornumcite","citet","citep","citets","citetns","citepns","inlinecite","citec","citecs","authornumcites"]}
-,
-"nwejmart.cls":{"envs":["descriptionFB","theorem","theorem*","corollary","corollary*","conjecture","conjecture*","proposition","proposition*","lemma","lemma*","axiom","axiom*","definition","definition*","remark","remark*","example","example*","notation","notation*","proof","assertions","hypotheses","conditions","enumerate*","itemize*","description*"],"deps":["l3keys2e.sty","etoolbox.sty","s-book.cls","nag.sty","fontenc.sty","kpfonts.sty","titlesec.sty","graphicx.sty","adjustbox.sty","xr.sty","footmisc.sty","marginnote.sty","refcount.sty","xcolor.sty","afterpage.sty","ifoddpage.sty","placeins.sty","xspace.sty","csquotes.sty","array.sty","booktabs.sty","mathtools.sty","ntheorem.sty","esvect.sty","geometry.sty","translations.sty","currfile.sty","fmtcount.sty","babel.sty","varioref.sty","subcaption.sty","tocvsec2.sty","tocloft.sty","etoc.sty","microtype.sty","datetime2.sty","enumitem.sty","environ.sty","footnote.sty","biblatex.sty","hyperref.sty","hypcap.sty","bookmark.sty","glossaries.sty","cleveref.sty","titleps.sty"],"cmds":["frenchsetup","frenchbsetup","AddThinSpaceBeforeFootnotes","at","AutoSpaceBeforeFDP","bname","boi","bsc","CaptionSeparator","captionsfrench","circonflexe","dateacadian","datefrench","DecimalMathComma","degre","degres","descindentFB","dotFFN","extrasfrench","FBcolonspace","FBdatebox","FBdatespace","FBeverylineguill","FBfigtabshape","FBfnindent","FBFrenchFootnotesfalse","FBFrenchFootnotestrue","FBFrenchSuperscriptstrue","FBGlobalLayoutFrenchtrue","FBgspchar","FBguillopen","FBguillspace","FBInnerGuillSinglefalse","FBInnerGuillSingletrue","FBListItemsAsParfalse","FBListItemsAsPartrue","FBLowercaseSuperscriptstrue","FBmedkern","FBPartNameFulltrue","FBsetspaces","FBSmallCapsFigTabCaptionstrue","FBStandardEnumerateEnvtrue","FBStandardItemizeEnvtrue","FBStandardItemLabelstrue","FBStandardLayouttrue","FBStandardListSpacingtrue","FBStandardListstrue","FBsupR","FBsupS","FBtextellipsis","FBthickkern","FBthinspace","FBthousandsep","FBWarning","fg","fgi","fgii","fprimo","frenchdate","FrenchEnumerate","FrenchFootnotes","FrenchLabelItem","frenchpartfirst","frenchpartsecond","FrenchPopularEnumerate","frenchtoday","Frlabelitemi","Frlabelitemii","Frlabelitemiii","Frlabelitemiv","frquote","fup","ieme","iemes","ier","iere","ieres","iers","ifFBAutoSpaceFootnotes","ifFBCompactItemize","ifFBCustomiseFigTabCaptions","ifFBfrench","ifFBFrenchFootnotes","ifFBFrenchSuperscripts","ifFBGlobalLayoutFrench","ifFBIndentFirst","ifFBINGuillSpace","ifFBListItemsAsPar","ifFBListOldLayout","ifFBLowercaseSuperscripts","ifFBLuaTeX","ifFBOldFigTabCaptions","ifFBOriginalTypewriter","ifFBPartNameFull","ifFBReduceListSpacing","ifFBShowOptions","ifFBSmallCapsFigTabCaptions","ifFBStandardEnumerateEnv","ifFBStandardItemizeEnv","ifFBStandardItemLabels","ifFBStandardLayout","ifFBStandardLists","ifFBStandardListSpacing","ifFBSuppressWarning","ifFBThinColonSpace","ifFBThinSpaceInFrenchNumbers","ifFBunicode","ifFBXeTeX","ifLaTeXe","kernFFN","labelindentFB","labelwidthFB","leftmarginFB","listindentFB","No","no","NoAutoSpaceBeforeFDP","NoAutoSpacing","NoEveryParQuote","noextrasfrench","nombre","nos","Nos","og","ogi","ogii","parindentFFN","partfirst","partnameord","partsecond","primo","quarto","rmfamilyFB","secundo","sffamilyFB","StandardFootnotes","StandardMathComma","tertio","tild","ttfamilyFB","up","captionsngerman","datengerman","extrasngerman","noextrasngerman","dq","tosstrue","tossfalse","mdqon","mdqoff","ck","captionsdutch","datedutch","extrasdutch","noextrasdutch","dutchhyphenmins","refpagename","articlesetup","title","subtitle","author","keywords","msc","acknowledgments","section","I","E","log","ln","bbN","bbZ","bbD","bbQ","bbR","bbC","bbK","set","cotan","arccosh","arcsinh","ch","sh","Argch","Argsh","arctanh","Argth","norm","lnorm","llnorm","lpnorm","supnorm","abs","prt","brk","brc","leqgeq","lrangle","NewPairedDelimiter","dif","grad","Div","curl","supp","BinaryOperators","newtheorem","newenumeration","renewenumeration","ie","Ie","century","aside","nwejm","dates","fixpagenumber","fontdesignertext","graphicdesigntext","mkbibnamelast","DH","dh","dj","DJ","guillemetleft","guillemetright","guillemotleft","guillemotright","guilsinglleft","guilsinglright","Hwithstroke","hwithstroke","k","NG","ng","quotedblbase","quotesinglbase","textogonekcentered","textquotedbl","th","TH","theoremsymbol","captionsenglish","dateenglish","extrasenglish","noextrasenglish","englishhyphenmins","britishhyphenmins","americanhyphenmins","prefacename","bibname","chaptername","enclname","ccname","headtoname","pagename","seename","alsoname","proofname","glossaryname"]}
-,
-"oands.sty":{"envs":{},"deps":{},"cmds":["oandsfamily","textoands"]}
-,
-"ob-mathleading.sty":{"envs":["obMathLeading"],"deps":["amsmath.sty","etoolbox.sty","l3keys2e.sty"],"cmds":["obmathleading"]}
-,
-"obchaptertoc.sty":{"envs":{},"deps":["l3keys2e.sty","etoolbox.sty"],"cmds":["chaptertoc","ifChapterTOCafterskip","ChapterTOCafterskiptrue","ChapterTOCafterskipfalse","chaptertocmaxlevel","ChapterTOCFormat","chaptertocfont","chaptertocsecfont","TOCFormatsameas","thetocmarker","normalchangetocdepth","afterchaptertocskip","theobchaptocmaxdepth"]}
-,
-"oblivoir-misc.sty":{"envs":["hverse"],"deps":["etoolbox.sty"],"cmds":["texthl","obhlraisedim","obhlheight","obhlcolor","setpagenode","stanzaskip"]}
-,
-"oblivoir-xl.sty":{"envs":{},"deps":["s-memoir.cls","ifluatex.sty","ifxetex.sty","luatexko.sty","memhangul-x.sty","hyperref.sty","ob-toclof.sty","ob-koreanappendix.sty"],"cmds":["AppendixTitle","AppendixTitleToToc","appref","AttachAppendixTitleToSecnum","oblivoirchapterstyle","bookmarkpkgfalse","bookmarkpkgtrue","CallHyperref","DEFAULTskips","ensp","hyperrefwithlyxfalse","hyperrefwithlyxtrue","ifbookmarkpkg","ifhyperrefwithlyx","ifkosection","ifLwarp","ifnobookmarks","ifnokorean","ifopenrightdoc","ifPRELOAD","iftwosidedoc","kosectionfalse","kosectiontrue","LWARPlan","MarkDocTitle","memucshangulskips","memucsinterwordchapterskip","memucsinterwordskip","nobookmarksfalse","nobookmarkstrue","nokoreanfalse","nokoreantrue","openrightdocfalse","openrightdoctrue","PRELOADfalse","PRELOADstr","PRELOADtrue","twosidedocfalse","twosidedoctrue"]}
-,
-"oblivoir.cls":{"envs":{},"deps":["xkeyval.sty","iftex.sty","oblivoir-xl.sty","moreverb.sty","lwarp.sty","xob-lwarp.sty","amsmath.sty","xob-amssymb.sty","bookmark.sty","ob-nokoreanappendix.sty","polyglossia.sty","babel.sty"],"cmds":["ifLuaOrXeTeX","LuaOrXeTeXtrue","LuaOrXeTeXfalse","MSNormalSize","sethangulfont","hangulfont","hangulfonttt"]}
-,
-"ocg-p.sty":{"envs":["ocgtabular","ocg"],"deps":["eso-pic.sty","ifpdf.sty","ifxetex.sty","xkeyval.sty","datatool.sty","tikz.sty","listings.sty"],"cmds":["setocgtabularheader","toggleocgs","showocgs","hideocgs","setocgs","ocgpversion"]}
-,
-"ocg.sty":{"envs":["ocg"],"deps":["ifpdf.sty"],"cmds":{}}
-,
-"ocgtools.sty":{"envs":{},"deps":["color.sty","hyperref.sty","graphicx.sty","pifont.sty","ocg.sty","xkeyval.sty","atbegshi.sty","eforms.sty","transparent.sty"],"cmds":["ocgtext","defaultocgpapercolor","defaultocgfontcolor","ocgpicture","ocgminitext","ocgminitextrt","ocgminitextrb","ocgminitextlt","ocgminitextlb","ocgtextstart","ocgtextend","layerHshift","layerVshift","ocgclosechar"]}
-,
-"ocgx.sty":{"envs":{},"deps":["ocg-p.sty"],"cmds":["switchocg","showocg","hideocg","actionsocg","ocgxversion"]}
-,
-"ocgx2.sty":{"envs":["ocg","ocmd"],"deps":["ocgbase.sty","tikz.sty","tikzlibrarycalc.sty"],"cmds":["AllOn","AnyOn","AnyOff","AllOff","Not","And","Or","switchocg","showocg","hideocg","actionsocg","ocglinkprotect","toggleocgs","showocgs","hideocgs","setocgs"]}
-,
-"ocr.sty":{"envs":{},"deps":["ifthen.sty"],"cmds":["ocr","ocrfamily","ocrneg","ocrnegfamily","ocrdefault"]}
-,
-"octave.sty":{"envs":{},"deps":["xparse.sty"],"cmds":["octaveprimes","octavenumbers","pitch","pitchfont","octavetable"]}
-,
-"octavo.cls":{"envs":{},"deps":{},"cmds":["frontmatter","mainmatter","backmatter","thechapter","chaptername","bibname","chapter","chaptermark"]}
-,
-"odsfile.sty":{"envs":["AddRow"],"deps":["luacode.sty","xkeyval.sty"],"cmds":["includespread","tabletemplate","AddString","AddNumber","loadodsfile","savespreadsheet","OdsNl","OdsLastNl"]}
-,
-"ogonek.sty":{"envs":{},"deps":{},"cmds":["k","sob","aob","Aob","eob","Eob","iob","Iob","uob","Uob","fileversion","filedate","docdate"]}
-,
-"okumacro.sty":{"envs":["dangerous","namelist","mybibliography","FRAME","okuscreen","screen","EXAMPLE","IN","OUT","okushadebox","shadebox","sankou","toi"],"deps":["platex.sty"],"cmds":["rubyfamily","kanjistrut","ruby","kenten","kintou","myallowbreak","mytt","yen","BS","asciibar","removept","okukeytop","keytop","RETMARK","okureturn","return","upkey","downkey","rightkey","leftkey","MARU","PiC","PiCTeX","JTeX","JLaTeX","JBibTeX","pTeXsT","iTeX","MlTeX","namelistlabel","SHUTTEN","EXAMPLEWIDTH","INEX","OUTEX","ENDEX","ENDEXC","whichpage","migiake","rightfig","shaderule","sankoumark","toimark","eps","LEQQ","GEQQ","APPROX","FRAC","hk","hx","ANGLE"]}
-,
-"okuverb.sty":{"envs":{},"deps":["platex.sty"],"cmds":["yen","ttyen","ttbslash","BS","verbatimleftmargin","verbatimsize"]}
-,
-"old-arrows.sty":{"envs":{},"deps":{},"cmds":["joinrelaz","longhookleftarrow","longhookrightarrow","longleftharpoondown","longleftharpoonup","longrightharpoondown","longrightharpoonup","meno","relbarra","xmapsfrom","vardownarrow","vargets","varhookleftarrow","varhookrightarrow","varleftarrow","varleftarrowfill","varleftrightarrow","varlonghookleftarrow","varlonghookrightarrow","varlongleftarrow","varlongleftrightarrow","varlongmapsfrom","varlongmapsto","varlongrightarrow","varmapsfrom","varmapsto","varmapstochar","varnearrow","varnwarrow","varoverleftarrow","varoverleftrightarrow","varoverrightarrow","varrightarrow","varrightarrowfill","varsearrow","varswarrow","varto","varunderleftrightarrow","varunderleftarrow","varunderrightarrow","varuparrow","varupdownarrow","varvarinjlim","varvarprojlim","varxhookleftarrow","varxhookrightarrow","varxleftarrow","varxleftrightarrow","varxmapsfrom","varxmapsto","varxrightarrow"]}
-,
-"oldgerm.sty":{"envs":{},"deps":{},"cmds":["gothfamily","frakfamily","swabfamily","textgoth","textfrak","textswab"]}
-,
-"oldprsn.sty":{"envs":{},"deps":{},"cmds":["copsnfamily","textcopsn","Oa","Oi","Ou","Oka","Oku","Oxa","Oga","Ogu","Oca","Oja","Oji","Ota","Otu","Otha","Occa","Oda","Odi","Odu","Ona","Onu","Opa","Ofa","Oba","Oma","Omi","Omu","Oya","Ora","Oru","Ola","Ova","Ovi","Osa","Osva","Oza","Oha","Oking","Ocountrya","Ocountryb","Oearth","Ogod","OAura","OAurb","OAurc","Oone","Otwo","Oten","Otwenty","Ohundred","Owd","translitcopsn","translitcopsnfont"]}
-,
-"oldstyle.sty":{"envs":{},"deps":{},"cmds":["oldstyle","textos","mathos","oldstylefamily"]}
-,
-"onedash.sty":{"envs":{},"deps":{},"cmds":["dash","pdash","hyph"]}
-,
-"onedown.sty":{"envs":["bidding","biddingpair","play"],"deps":["expl3.sty","xcolor.sty","textcomp.sty","moresize.sty","relsize.sty","makecmds.sty","xparse.sty","xspace.sty","calc.sty","ifthen.sty","adjustbox.sty","translator.sty","array.sty","collcell.sty","pgfopts.sty","environ.sty","xstring.sty","tracklang.sty","pict2e.sty"],"cmds":["setdefaults","Cl","Di","He","Sp","NT","pass","allpass","double","redouble","north","east","south","west","northsouth","eastwest","HCP","HLP","LP","DP","TP","GF","SF","NMF","TSF","FSF","namesNS","namesEW","northhand","easthand","southhand","westhand","hand","onesuitAll","onesuitNS","onesuitEW","onesuitNE","onesuitNW","suit","showAll","showNS","showEW","showNE","showNW","headlinetext","footlinetext","leftupper","leftlower","rightupper","rightlower","dealer","vulner","dealertext","vulnertext","boardnr","boardtext","handskip","bidderfont","compassfont","gamefont","legendfont","namefont","otherfont","Ace","ace","King","king","Queen","queen","Jack","jack","nt","Pass","Allpass","Double","Redouble","North","East","South","West","NorthSouth","EastWest","hpts","tpts","lpts","dpts","gforce","sforce","nmforce","tsforce","fsforce","All","all","None","none","by","Board","board","Contract","contract","Declarer","declarer","Deal","deal","Lead","lead","alert","announce","markit","explainit","expertquiz","newgame","resetfonts","doubled","Hoffset","MidSize","ODwstyledate","ODwstyleversion","PicSize","redoubled","Ten","Voffset"]}
-,
-"onlyamsmath.sty":{"envs":{},"deps":["amsmath.sty"],"cmds":["checkdsp","dollarcode","dspcomplain"]}
-,
-"opacity-pro.sty":{"envs":["settransparency","settransparency*"],"deps":{},"cmds":["settransparency","settransparencyii","settransparencyi"]}
-,
-"opcit.sty":{"envs":{},"deps":["xspace.sty","hyperref.sty"],"cmds":["bibcase","bibhereafter","biblastnames","bibpunctuation","bibref","cite","cited","hereafter","idemtext","newBibCommand","nobibliography","opcitends","opcitstart","opcittext","opcitwarning","QuoteOrNot","resetcites","sameauthors","sameauthorsrule","toomit","with"]}
-,
-"opencolor.sty":{"envs":{},"deps":["xcolor.sty"],"cmds":{}}
-,
-"opensans.sty":{"envs":{},"deps":["fontaxes.sty","ifluatex.sty","ifxetex.sty","xkeyval.sty"],"cmds":["opensans","opensansfamily","fosfamily"]}
-,
-"oplotsymbl.sty":{"envs":{},"deps":["tikz.sty"],"cmds":["circletcross","circletdot","circletfillha","circletfillhb","circletfillhl","circletfillhr","circletfill","circletlineh","circletlinevh","circletlinev","circlet","hexagocross","hexagodot","hexagofillha","hexagofillhb","hexagofillhl","hexagofillhr","hexagofill","hexagolineh","hexagolinevh","hexagolinev","hexago","lineh","linevh","linev","pentagocross","pentagodot","pentagofillha","pentagofillhb","pentagofillhl","pentagofillhr","pentagofill","pentagolineh","pentagolinevh","pentagolinev","pentago","rhombuscross","rhombusdot","rhombusfillha","rhombusfillhb","rhombusfillhl","rhombusfillhr","rhombusfill","rhombuslineh","rhombuslinevh","rhombuslinev","rhombus","scrossvh","scross","squadcross","squaddot","squadfillha","squadfillhb","squadfillhl","squadfillhr","squadfill","squadlineh","squadlinevh","squadlinev","squad","starletcross","starletdot","starletfillha","starletfillhb","starletfillhl","starletfillhr","starletfill","starletlineh","starletlinevh","starletlinev","starlet","trianglepacross","trianglepadot","trianglepafillha","trianglepafillhb","trianglepafillhl","trianglepafillhr","trianglepafill","trianglepalineh","trianglepalinevh","trianglepalinev","trianglepa","trianglepbcross","trianglepbdot","trianglepbfillha","trianglepbfillhb","trianglepbfillhl","trianglepbfillhr","trianglepbfill","trianglepblineh","trianglepblinevh","trianglepblinev","trianglepb","triangleplcross","trianglepldot","triangleplfillha","triangleplfillhb","triangleplfillhl","triangleplfillhr","triangleplfill","trianglepllineh","trianglepllinevh","trianglepllinev","trianglepl","triangleprcross","triangleprdot","triangleprfillha","triangleprfillhb","triangleprfillhl","triangleprfillhr","triangleprfill","triangleprlineh","triangleprlinevh","triangleprlinev","trianglepr"]}
-,
-"optex.sty":{"envs":{},"deps":["plaintex.sty","luatex.sty"],"cmds":["margins","magscale","headlinedist","footlinedist","pgbackground","draft","fnote","fnotemark","fnotetext","mnote","fixmnotes","left","right","mnotesize","fnotenumglobal","fnotenumpages","fnotenumchapters","fontfam","fontfamsub","caps","cond","bi","currvar","em","typosize","ptunit","typoscale","mainfosize","mainbaselineskip","scalemain","thefontsize","thefontscale","setfontsize","noloadmath","loadmath","script","frak","bbchar","misans","mbisans","normalmath","boldmath","mathbox","cramped","mathstyles","currstyle","dobystyle","stylenum","omicron","vardelta","varkappa","Alpha","Beta","Epsilon","Zeta","Eta","Iota","Kappa","Mu","Nu","Omicron","Rho","Tau","Chi","adots","lmfil","displaylines","eqspace","eqlines","eqstyle","loadboldmath","addUmathfont","themathcodeclass","themathcodefam","themathcodechar","thedelcodefam","thedelcodechar","mathchars","tit","chap","sec","secc","nl","nonum","notoc","eqmark","caption","cskip","numberedpar","label","ref","pgref","wlabel","showlabels","hyperlinks","fnotelinks","dest","ilink","url","ulink","outlines","insertoutline","thisoutline","begitems","enditems","style","defaultitem","iindent","ilevel","everylist","novspaces","begblock","endblock","table","fL","fR","fC","fS","fX","crl","crll","crli","crlli","crlp","tskip","everytable","thistable","tabiteml","tabitemr","tabstrut","tablinespace","vvkern","hhkern","tabskipl","tabskipr","mspan","frame","vspan","rulewidth","begtt","endtt","verbchar","code","ttline","everytt","everyintt","ttindent","verbinput","hisyntax","commentchars","maketoc","regmacro","makeindex","ii","iid","iitype","begmulti","endmulti","iis","cite","shortcitations","sortcitations","nonumcitations","rcite","ecite","bib","usebib","nocite","bibpart","bibnum","Blue","Red","Brown","Green","Yellow","Cyan","Magenta","White","Grey","LightGrey","Black","setcmykcolor","setrgbcolor","setgreycolor","morecolors","onlyrgb","onlycmyk","colordef","rgbcolordef","cmykcolordef","transparency","inspic","picw","picwidth","picheight","picparams","picdir","inkinspic","pdfscale","pdfrotate","transformbox","rotbox","inoval","ovalparams","roundness","fcolor","lcolor","lwidth","shadow","overlapmargins","incircle","circleparams","ratio","ignoremargins","clipinoval","clipincircle","puttext","putpic","nospec","enlang","enuslang","engblang","belang","bglang","calang","hrlang","cslang","dalang","nllang","etlang","filang","fislang","frlang","delang","deolang","gswlang","elmlang","elplang","grclang","hulang","islang","galang","itlang","lalang","laclang","lallang","lvlang","ltlang","mklang","pllang","ptlang","rolang","rmlang","rulang","srllang","srclang","sklang","sllang","eslang","svlang","uklang","cylang","aflang","hylang","aslang","eulang","bnlang","nblang","coplang","culang","eolang","ethilang","furlang","gllang","kalang","gulang","hilang","idlang","ialang","knlang","kmrlang","mllang","mrlang","mnlang","nnlang","oclang","orlang","pilang","palang","pmslang","zhlang","salang","talang","telang","thlang","trlang","tklang","hsblang","langlist","uselanguage","ehyph","chyph","shyph","enquotes","csquotes","frquotes","dequotes","skquotes","altquotes","report","letter","slides","author","subject","address","load","lorem","lipsum","OpTeX","LaTeX","LuaTeX","XeTeX","lastpage","totalpages","useOpTeX","useoptex","addto","adef","afterfi","aheadto","basefilename","bp","casesof","cs","cstochar","currfile","eoldef","eqbox","expr","fontdef","fontlet","foreach","foreachdef","fornum","incr","decr","ignoreit","ignoresecond","isempty","istoksempty","isequal","iskv","ismacro","isdefined","isinlist","isfile","isfont","isnextchar","kv","kvdict","kvx","nokvx","nospaceafter","nospacefuturelet","opinput","optdef","opwarning","posx","posy","posg","private","public","readkv","replstring","sdef","setctable","restorectable","setpos","slet","sxdef","trycs","useit","usesecond","wterm","xargs","xcasesof","oldaccents","secant","activequotes","activettchar","addextgstate","addpageresource","ADDR","AU","backgroundpic","bibmark","biboptions","bibtexhook","bolder","boldify","boxlines","bracedparam","bslash","catalogexclude","catalogmathsample","catalogonly","catalogsample","clqq","cnvinfo","colnum","colsep","crqq","CS","csplain","defaultoptsize","docgen","doloadmath","dunhill","ea","ED","EDN","endlayers","eqboxsize","everycaptionf","everycaptiont","everyii","everyitem","everymnote","everytocline","famvardef","flqq","fnotenum","fontsel","fontspreload","fornumstep","frqq","fw","gpageno","hicolor","hicolors","ignorept","ignoreslash","ignslash","iindex","ilistskipamount","initunifonts","inlinkcolor","itemnum","itemskipamount","layernum","layers","letfont","link","lipsumtext","listskipamount","localcolor","mathcodes","mathsboff","mathsbon","mfontsrule","mnoteindent","mnoteskip","moddef","nbb","nbold","nbpar","newcurrfontsize","newmarks","newpublic","nextpages","NO","nobibwarning","nolanginput","nolocalcolor","normalcatcodes","olistskipamount","openref","OPmac","OPmacversion","opt","optexcatcodes","optexversion","outlinkcolor","pageresources","pcent","pdfunidef","pg","pgbottomskip","plaintexcatcodes","plaintexsetting","PP","promile","pshow","ptmunit","PUBL","quotes","quoteschars","quotset","refdecl","removespaces","replfromto","replthis","resetmod","resizethefont","rgbcmykmap","runningfnotes","sans","scantoeol","secl","setff","setfontcolor","setletterspace","setmathsizes","setwordspace","setwsp","sfont","shadowlevels","shordcitations","skiptoeol","slant","slideopen","slideshow","subtit","tabspaces","tenbi","thetransparency","titskip","tmpdim","tmpnum","tocrefnum","today","Transparent","tsize","ttcond","ttlight","ttprop","ttset","ttshift","ufont","upital","upper","Urange","useK","uslang","uv","visiblesp","voidbox","VOL","wideformat","xfontname","xlink","Xrefversion","YEAR","bgverbcolor","docfile","enddocument","fnamecolor","lt","maxlines","mlinkcolor","printdoc","printdoctail","seccc","secccc","ulinkcolor","vitt","bigp","Bigp","biggp","Biggp","autop","normalp","smartdots","smartvert","N","Z","Q","R","C","sgn","argmin","argmax","grad","rank","tr","diag","Span","Rng","Null","Ker","Res","tg","cotg","arctg","arccotg","frac","dfrac","tfrac","eqsystem","eqskip","eqsep","eqfil","toright","toleft","subeqmark","scriptspaces","bfserif","rmchars","vargreek","textvariables","textdigits","textmoremath","replacemissingchars","mathset","enablemte","disablemte","setfpfactor","setfxfactor","Adventor","alter","angular","Baskervald","Baskerville","Bonum","book","bs","calli","ccond","Comicneue","Cursor","Dejavu","displ","EBGaramond","eexpd","elight","Erewhon","expd","extend","Garamondl","GFSBodoni","hair","Heros","initials","Iwona","Kerkis","keybr","kf","ki","Kpfonts","Kurier","Lato","lf","li","Libertine","Libertinus","Librecaslon","Lido","light","LMfonts","medium","Merriweather","mono","Montserrat","NewCM","nocaps","nocond","noexpd","normal","noswash","onum","osize","Overlock","Pagella","Poltawski","Roboto","sanssemi","Schola","semibold","serif","Sourcepro","stencil","Stix","StixTwo","swash","Technika","Termes","tf","thin","ti","XCharter","Xits","xlight","ifpdfabsdim","ifpdfabsnum","ifpdfprimitive","pdfadjustspacing","pdfannot","pdfcatalog","pdfcolorstack","pdfcolorstackinit","pdfcompresslevel","pdfcopyfont","pdfcreationdate","pdfdecimaldigits","pdfdest","pdfdestmargin","pdfdraftmode","pdfendlink","pdfendthread","pdffontattr","pdffontexpand","pdffontname","pdffontobjnum","pdffontsize","pdfgamma","pdfgentounicode","pdfglyphtounicode","pdfhorigin","pdfimageaddfilename","pdfimageapplygamma","pdfimagegamma","pdfimagehicolor","pdfimageresolution","pdfincludechars","pdfinclusioncopyfonts","pdfinclusionerrorlevel","pdfinfo","pdfinsertht","pdflastannot","pdflastlinedepth","pdflastlink","pdflastobj","pdflastxform","pdflastximage","pdflastximagepages","pdflastxpos","pdflastypos","pdflinkmargin","pdfliteral","pdfmapfile","pdfmapline","pdfminorversion","pdfmovechars","pdfnames","pdfnoligatures","pdfnormaldeviate","pdfobj","pdfobjcompresslevel","pdfoutline","pdfoutput","pdfpageattr","pdfpagebox","pdfpageheight","pdfpageref","pdfpageresources","pdfpagesattr","pdfpagewidth","pdfpkmode","pdfpkresolution","pdfprimitive","pdfprotrudechars","pdfpxdimen","pdfrandomseed","pdfrefobj","pdfrefxform","pdfrefximage","pdfrestore","pdfretval","pdfsave","pdfsavepos","pdfsetmatrix","pdfsetrandomseed","pdfstartlink","pdfstartthread","pdftexrevision","pdftexversion","pdfthread","pdfthreadmargin","pdftrailer","pdfuniformdeviate","pdfuniqueresname","pdfvorigin","pdfxform","pdfxformattr","pdfxformname","pdfxformresources","pdfximage","Angstrom","ast","backdprime","backprime","backslash","backtrprime","blacksquare","blanksymbol","bullet","cdotp","checkmark","dagger","ddagger","div","divslash","downarrow","dprime","eighthnote","equal","eth","euro","fracslash","gets","greater","infty","ldotp","leftarrow","less","lnot","maltese","mathampersand","mathatsign","mathcolon","mathcomma","mathdollar","matheth","mathexclam","mathhyphen","mathoctothorpe","mathparagraph","mathpercent","mathperiod","mathplus","mathquestion","mathratio","mathsection","mathsemicolon","mathslash","mathsterling","mathvisiblespace","mathyen","mho","minus","neg","pm","prime","qprime","rightarrow","smblkcircle","smwhtcircle","sphericalangle","square","surd","tieconcat","times","to","trprime","unicodeadots","unicodecdots","unicodeddots","unicodeellipsis","unicodevdots","uparrow","centerdot","lozenge","longdivisionsign","upalpha","upbeta","upgamma","updelta","upepsilon","upvarepsilon","upzeta","upeta","uptheta","upiota","upkappa","uplambda","upmu","upnu","upxi","upomicron","uppi","uprho","upvarrho","upvarsigma","upsigma","uptau","upupsilon","upvarphi","upchi","uppsi","upomega","upvartheta","upphi","upvarpi","blacklozenge","circlearrowright","circlearrowleft","doteqdot","varpropto","smallsmile","smallfrown","circledplus","circledminus","circledtimes","circledslash","circleddot","circledS","lvertneqq","gvertneqq","nleqslant","ngeqslant","npreceq","nsucceq","nleqq","ngeqq","diagup","diagdown","varsubsetneq","varsupsetneq","nsubseteqq","nsupseteqq","varsubsetneqq","varsupsetneqq","llless","gggtr","Box","nshortmid","nshortparallel","ntriangleleft","ntriangleright","shortmid","shortparallel","thicksim","thickapprox","digamma","rhd","lhd","unrhd","unlhd","restriction","doublecup","doublecap","mathring","dbkarow","drbkarow","hksearow","hkswarow","lparen","rparen","lbrack","rbrack","lbrace","vert","rbrace","Zbar","grave","acute","hat","widehat","tilde","widetilde","bar","overbar","wideoverbar","breve","widebreve","dot","ddot","ovhook","ocirc","check","widecheck","candra","oturnedcomma","ocommatopright","droang","wideutilde","mathunderbar","notaccent","underleftrightarrow","mupAlpha","mupBeta","mupGamma","mupDelta","mupEpsilon","mupZeta","mupEta","mupTheta","mupIota","mupKappa","mupLambda","mupMu","mupNu","mupXi","mupOmicron","mupPi","mupRho","mupSigma","mupTau","mupUpsilon","mupPhi","mupChi","mupPsi","mupOmega","mupalpha","mupbeta","mupgamma","mupdelta","mupvarepsilon","mupzeta","mupeta","muptheta","mupiota","mupkappa","muplambda","mupmu","mupnu","mupxi","mupomicron","muppi","muprho","mupvarsigma","mupsigma","muptau","mupupsilon","mupvarphi","mupchi","muppsi","mupomega","mupvartheta","mupphi","mupvarpi","upDigamma","updigamma","mupvarkappa","mupvarrho","mupvarTheta","mupepsilon","upbackepsilon","backepsilon","horizbar","Vert","twolowline","enleadertwodots","caretinsert","Exclam","hyphenbullet","Question","closure","leftharpoonaccent","overleftharpoon","rightharpoonaccent","overrightharpoon","vertoverlay","overleftarrow","overrightarrow","vec","dddot","ddddot","enclosecircle","enclosesquare","enclosediamond","overleftrightarrow","enclosetriangle","annuity","threeunderdot","widebridgeabove","underrightharpoondown","underleftharpoondown","underleftarrow","underrightarrow","asteraccent","BbbC","Eulerconst","mscrg","mscrH","mfrakH","BbbH","Planckconst","hslash","mscrI","Im","mscrL","ell","BbbN","wp","BbbP","BbbQ","mscrR","Re","BbbR","BbbZ","mfrakZ","turnediota","mscrB","mfrakC","mscre","mscrE","mscrF","Finv","mscrM","mscro","aleph","beth","gimel","daleth","Bbbpi","Bbbgamma","BbbGamma","BbbPi","Bbbsum","Game","sansLturned","sansLmirrored","Yup","mitBbbD","mitBbbd","mitBbbe","mitBbbi","mitBbbj","PropertyLine","upand","leftrightarrow","updownarrow","nwarrow","nearrow","searrow","swarrow","nleftarrow","nrightarrow","leftwavearrow","rightwavearrow","twoheadleftarrow","twoheaduparrow","twoheadrightarrow","twoheaddownarrow","leftarrowtail","rightarrowtail","mapsfrom","mapsup","mapsto","mapsdown","updownarrowbar","hookleftarrow","hookrightarrow","looparrowleft","looparrowright","leftrightsquigarrow","nleftrightarrow","downzigzagarrow","Lsh","Rsh","Ldsh","Rdsh","linefeed","carriagereturn","curvearrowleft","curvearrowright","barovernorthwestarrow","barleftarrowrightarrowbar","acwopencirclearrow","cwopencirclearrow","leftharpoonup","leftharpoondown","upharpoonright","upharpoonleft","rightharpoonup","rightharpoondown","downharpoonright","downharpoonleft","rightleftarrows","updownarrows","leftrightarrows","leftleftarrows","upuparrows","rightrightarrows","downdownarrows","leftrightharpoons","rightleftharpoons","nLeftarrow","nLeftrightarrow","nRightarrow","Leftarrow","Uparrow","Rightarrow","Downarrow","Leftrightarrow","Updownarrow","Nwarrow","Nearrow","Searrow","Swarrow","Lleftarrow","Rrightarrow","leftsquigarrow","rightsquigarrow","nHuparrow","nHdownarrow","leftdasharrow","updasharrow","rightdasharrow","downdasharrow","barleftarrow","rightarrowbar","leftwhitearrow","upwhitearrow","rightwhitearrow","downwhitearrow","whitearrowupfrombar","circleonrightarrow","downuparrows","rightthreearrows","nvleftarrow","nvrightarrow","nvleftrightarrow","nVleftarrow","nVrightarrow","nVleftrightarrow","leftarrowtriangle","rightarrowtriangle","leftrightarrowtriangle","forall","complement","partial","exists","nexists","varnothing","increment","nabla","in","notin","smallin","ni","nni","smallni","QED","prod","coprod","sum","mp","dotplus","smallsetminus","vysmwhtcircle","vysmblkcircle","sqrt","cuberoot","fourthroot","propto","rightangle","angle","measuredangle","mid","nmid","parallel","nparallel","wedge","vee","cap","cup","int","iint","iiint","oint","oiint","oiiint","intclockwise","varointclockwise","ointctrclockwise","therefore","because","Colon","dotminus","dashcolon","dotsminusdots","kernelcontraction","sim","backsim","invlazys","sinewave","wr","nsim","eqsim","simeq","nsime","sime","nsimeq","cong","simneqq","ncong","approx","napprox","approxeq","approxident","backcong","asymp","Bumpeq","bumpeq","doteq","Doteq","fallingdotseq","risingdotseq","coloneq","eqcolon","eqcirc","circeq","arceq","wedgeq","veeeq","stareq","triangleq","eqdef","measeq","questeq","ne","equiv","nequiv","Equiv","leq","geq","leqq","geqq","lneqq","gneqq","ll","gg","between","nasymp","nless","ngtr","nleq","ngeq","lesssim","gtrsim","nlesssim","ngtrsim","lessgtr","gtrless","nlessgtr","ngtrless","prec","succ","preccurlyeq","succcurlyeq","precsim","succsim","nprec","nsucc","subset","supset","nsubset","nsupset","subseteq","supseteq","nsubseteq","nsupseteq","subsetneq","supsetneq","cupleftarrow","cupdot","uplus","sqsubset","sqsupset","sqsubseteq","sqsupseteq","sqcap","sqcup","oplus","ominus","otimes","oslash","odot","circledcirc","circledast","circledequal","circleddash","boxplus","boxminus","boxtimes","boxdot","vdash","dashv","top","bot","assert","models","vDash","Vdash","Vvdash","VDash","nvdash","nvDash","nVdash","nVDash","prurel","scurel","vartriangleleft","vartriangleright","trianglelefteq","trianglerighteq","origof","imageof","multimap","hermitmatrix","intercal","veebar","barwedge","barvee","measuredrightangle","varlrtriangle","bigwedge","bigvee","bigcap","bigcup","smwhtdiamond","cdot","star","divideontimes","bowtie","ltimes","rtimes","leftthreetimes","rightthreetimes","backsimeq","curlyvee","curlywedge","Subset","Supset","Cap","Cup","pitchfork","equalparallel","lessdot","gtrdot","lll","ggg","lesseqgtr","gtreqless","eqless","eqgtr","curlyeqprec","curlyeqsucc","npreccurlyeq","nsucccurlyeq","nsqsubseteq","nsqsupseteq","sqsubsetneq","sqsupsetneq","lnsim","gnsim","varTheta","precnsim","succnsim","nvartriangleleft","nvartriangleright","ntrianglelefteq","ntrianglerighteq","disin","varisins","isins","isindot","varisinobar","isinobar","isinvb","isinE","nisd","varnis","nis","varniobar","niobar","bagmember","diameter","house","varbarwedge","vardoublebarwedge","lceil","rceil","lfloor","rfloor","invnot","sqlozenge","profline","profsurf","viewdata","turnednot","ulcorner","urcorner","llcorner","lrcorner","inttop","intbottom","frown","smile","varhexagonlrbonds","conictaper","topbot","obar","APLnotslash","APLnotbackslash","APLboxupcaret","APLboxquestion","rangledownzigzagarrow","hexagon","lparenuend","lparenextender","lparenlend","rparenuend","rparenextender","rparenlend","lbrackuend","lbrackextender","lbracklend","rbrackuend","rbrackextender","rbracklend","lbraceuend","lbracemid","lbracelend","vbraceextender","rbraceuend","rbracemid","rbracelend","intextender","harrowextender","lmoustache","rmoustache","sumtop","sumbottom","overbracket","underbracket","bbrktbrk","sqrtbottom","lvboxline","rvboxline","varcarriagereturn","overparen","underparen","overbrace","underbrace","obrbrak","ubrbrak","trapezium","benzenr","strns","fltns","accurrent","elinters","bdtriplevdash","blockuphalf","blocklowhalf","blockfull","blocklefthalf","blockrighthalf","blockqtrshaded","blockhalfshaded","blockthreeqtrshaded","mdlgblksquare","mdlgwhtsquare","squoval","blackinwhitesquare","squarehfill","squarevfill","squarehvfill","squarenwsefill","squareneswfill","squarecrossfill","smblksquare","smwhtsquare","hrectangleblack","hrectangle","vrectangleblack","vrectangle","parallelogramblack","parallelogram","bigblacktriangleup","bigtriangleup","blacktriangle","vartriangle","blacktriangleright","triangleright","smallblacktriangleright","smalltriangleright","blackpointerright","whitepointerright","bigblacktriangledown","bigtriangledown","blacktriangledown","triangledown","blacktriangleleft","triangleleft","smallblacktriangleleft","smalltriangleleft","blackpointerleft","whitepointerleft","mdlgblkdiamond","mdlgwhtdiamond","blackinwhitediamond","fisheye","mdlgwhtlozenge","mdlgwhtcircle","dottedcircle","circlevertfill","bullseye","mdlgblkcircle","circlelefthalfblack","circlerighthalfblack","circlebottomhalfblack","circletophalfblack","circleurquadblack","blackcircleulquadwhite","blacklefthalfcircle","blackrighthalfcircle","inversebullet","inversewhitecircle","invwhiteupperhalfcircle","invwhitelowerhalfcircle","ularc","urarc","lrarc","llarc","topsemicircle","botsemicircle","lrblacktriangle","llblacktriangle","ulblacktriangle","urblacktriangle","squareleftblack","squarerightblack","squareulblack","squarelrblack","boxbar","trianglecdot","triangleleftblack","trianglerightblack","lgwhtcircle","squareulquad","squarellquad","squarelrquad","squareurquad","circleulquad","circlellquad","circlelrquad","circleurquad","ultriangle","urtriangle","lltriangle","mdwhtsquare","mdblksquare","mdsmwhtsquare","mdsmblksquare","lrtriangle","bigstar","bigwhitestar","astrosun","danger","blacksmiley","sun","rightmoon","leftmoon","female","male","spadesuit","heartsuit","diamondsuit","clubsuit","varspadesuit","varheartsuit","vardiamondsuit","varclubsuit","quarternote","twonotes","flat","natural","sharp","acidfree","dicei","diceii","diceiii","diceiv","dicev","dicevi","circledrightdot","circledtwodots","blackcircledrightdot","blackcircledtwodots","Hermaphrodite","mdwhtcircle","mdblkcircle","mdsmwhtcircle","neuter","circledstar","varstar","dingasterisk","lbrbrak","rbrbrak","draftingarrow","threedangle","whiteinwhitetriangle","perp","subsetcirc","supsetcirc","lbag","rbag","veedot","bsolhsub","suphsol","longdivision","diamondcdot","wedgedot","upin","pullback","pushout","leftouterjoin","rightouterjoin","fullouterjoin","bigbot","bigtop","DashVDash","dashVdash","multimapinv","vlongdash","longdashv","cirbot","lozengeminus","concavediamond","concavediamondtickleft","concavediamondtickright","whitesquaretickleft","whitesquaretickright","lBrack","rBrack","langle","rangle","lAngle","rAngle","Lbrbrak","Rbrbrak","lgroup","rgroup","UUparrow","DDownarrow","acwgapcirclearrow","cwgapcirclearrow","rightarrowonoplus","longleftarrow","longrightarrow","longleftrightarrow","Longleftarrow","Longrightarrow","Longleftrightarrow","longmapsfrom","longmapsto","Longmapsfrom","Longmapsto","longrightsquigarrow","nvtwoheadrightarrow","nVtwoheadrightarrow","nvLeftarrow","nvRightarrow","nvLeftrightarrow","twoheadmapsto","Mapsfrom","Mapsto","downarrowbarred","uparrowbarred","Uuparrow","Ddownarrow","leftbkarrow","rightbkarrow","leftdbkarrow","dbkarrow","drbkarrow","rightdotarrow","baruparrow","downarrowbar","nvrightarrowtail","nVrightarrowtail","twoheadrightarrowtail","nvtwoheadrightarrowtail","nVtwoheadrightarrowtail","lefttail","righttail","leftdbltail","rightdbltail","diamondleftarrow","rightarrowdiamond","diamondleftarrowbar","barrightarrowdiamond","nwsearrow","neswarrow","hknwarrow","hknearrow","hksearrow","hkswarrow","tona","toea","tosa","towa","rdiagovfdiag","fdiagovrdiag","seovnearrow","neovsearrow","fdiagovnearrow","rdiagovsearrow","neovnwarrow","nwovnearrow","rightcurvedarrow","uprightcurvearrow","downrightcurvedarrow","leftdowncurvedarrow","rightdowncurvedarrow","cwrightarcarrow","acwleftarcarrow","acwoverarcarrow","acwunderarcarrow","curvearrowrightminus","curvearrowleftplus","cwundercurvearrow","ccwundercurvearrow","acwcirclearrow","cwcirclearrow","rightarrowshortleftarrow","leftarrowshortrightarrow","shortrightarrowleftarrow","rightarrowplus","leftarrowplus","rightarrowx","leftrightarrowcircle","twoheaduparrowcircle","leftrightharpoonupdown","leftrightharpoondownup","updownharpoonrightleft","updownharpoonleftright","leftrightharpoonupup","updownharpoonrightright","leftrightharpoondowndown","updownharpoonleftleft","barleftharpoonup","rightharpoonupbar","barupharpoonright","downharpoonrightbar","barleftharpoondown","rightharpoondownbar","barupharpoonleft","downharpoonleftbar","leftharpoonupbar","barrightharpoonup","upharpoonrightbar","bardownharpoonright","leftharpoondownbar","barrightharpoondown","upharpoonleftbar","bardownharpoonleft","leftharpoonsupdown","upharpoonsleftright","rightharpoonsupdown","downharpoonsleftright","leftrightharpoonsup","leftrightharpoonsdown","rightleftharpoonsup","rightleftharpoonsdown","leftharpoonupdash","dashleftharpoondown","rightharpoonupdash","dashrightharpoondown","updownharpoonsleftright","downupharpoonsleftright","rightimply","equalrightarrow","similarrightarrow","leftarrowsimilar","rightarrowsimilar","rightarrowapprox","ltlarr","leftarrowless","gtrarr","subrarr","leftarrowsubset","suplarr","leftfishtail","rightfishtail","upfishtail","downfishtail","Vvert","mdsmblkcircle","typecolon","lBrace","rBrace","lParen","rParen","llparenthesis","rrparenthesis","llangle","rrangle","lbrackubar","rbrackubar","lbrackultick","rbracklrtick","lbracklltick","rbrackurtick","langledot","rangledot","lparenless","rparengtr","Lparengtr","Rparenless","lblkbrbrak","rblkbrbrak","fourvdots","vzigzag","measuredangleleft","rightanglesqr","rightanglemdot","angles","angdnr","gtlpar","sphericalangleup","turnangle","revangle","angleubar","revangleubar","wideangledown","wideangleup","measanglerutone","measanglelutonw","measanglerdtose","measangleldtosw","measangleurtone","measangleultonw","measangledrtose","measangledltosw","revemptyset","emptysetobar","emptysetocirc","emptysetoarr","emptysetoarrl","circlehbar","circledvert","circledparallel","obslash","operp","obot","olcross","odotslashdot","uparrowoncircle","circledwhitebullet","circledbullet","olessthan","ogreaterthan","cirscir","cirE","boxdiag","boxbslash","boxast","boxcircle","boxbox","boxonbox","triangleodot","triangleubar","triangles","triangleserifs","rtriltri","ltrivb","vbrtri","lfbowtie","rfbowtie","fbowtie","lftimes","rftimes","hourglass","blackhourglass","lvzigzag","rvzigzag","Lvzigzag","Rvzigzag","iinfin","tieinfty","nvinfty","dualmap","laplac","lrtriangleeq","shuffle","eparsl","smeparsl","eqvparsl","gleichstark","thermod","downtriangleleftblack","downtrianglerightblack","blackdiamonddownarrow","mdlgblklozenge","circledownarrow","blackcircledownarrow","errbarsquare","errbarblacksquare","errbardiamond","errbarblackdiamond","errbarcircle","errbarblackcircle","ruledelayed","setminus","dsol","rsolbar","xsol","xbsol","doubleplus","tripleplus","lcurvyangle","rcurvyangle","tplus","tminus","bigodot","bigoplus","bigotimes","bigcupdot","biguplus","bigsqcap","bigsqcup","conjquant","disjquant","bigtimes","modtwosum","sumint","iiiint","intbar","intBar","fint","cirfnint","awint","rppolint","scpolint","npolint","pointint","sqint","intlarhk","intx","intcap","intcup","upint","lowint","Join","bigtriangleleft","zcmp","zpipe","zproject","ringplus","plushat","simplus","plusdot","plussim","plussubtwo","plustrif","commaminus","minusdot","minusfdots","minusrdots","opluslhrim","oplusrhrim","vectimes","dottimes","timesbar","btimes","smashtimes","otimeslhrim","otimesrhrim","otimeshat","Otimes","odiv","triangleplus","triangleminus","triangletimes","intprod","intprodr","fcmp","amalg","capdot","uminus","barcup","barcap","capwedge","cupvee","cupovercap","capovercup","cupbarcap","capbarcup","twocups","twocaps","closedvarcup","closedvarcap","Sqcap","Sqcup","closedvarcupsmashprod","wedgeodot","veeodot","Wedge","Vee","wedgeonwedge","veeonvee","bigslopedvee","bigslopedwedge","veeonwedge","wedgemidvert","veemidvert","midbarwedge","midbarvee","doublebarwedge","wedgebar","wedgedoublebar","varveebar","doublebarvee","veedoublebar","dsub","rsub","eqdot","dotequiv","equivVert","equivVvert","dotsim","simrdots","simminussim","congdot","asteq","hatapprox","approxeqq","eqqplus","pluseqq","eqqsim","Coloneq","eqeq","eqeqeq","ddotseq","equivDD","ltcir","gtcir","ltquest","gtquest","leqslant","geqslant","lesdot","gesdot","lesdoto","gesdoto","lesdotor","gesdotol","lessapprox","gtrapprox","lneq","gneq","lnapprox","gnapprox","lesseqqgtr","gtreqqless","lsime","gsime","lsimg","gsiml","lgE","glE","lesges","gesles","eqslantless","eqslantgtr","elsdot","egsdot","eqqless","eqqgtr","eqqslantless","eqqslantgtr","simless","simgtr","simlE","simgE","Lt","Gt","partialmeetcontraction","glj","gla","ltcc","gtcc","lescc","gescc","smt","lat","smte","late","bumpeqq","preceq","succeq","precneq","succneq","preceqq","succeqq","precneqq","succneqq","precapprox","succapprox","precnapprox","succnapprox","Prec","Succ","subsetdot","supsetdot","subsetplus","supsetplus","submult","supmult","subedot","supedot","subseteqq","supseteqq","subsim","supsim","subsetapprox","supsetapprox","subsetneqq","supsetneqq","lsqhook","rsqhook","csub","csup","csube","csupe","subsup","supsub","subsub","supsup","suphsub","supdsub","forkv","topfork","mlcp","forks","forksnot","shortlefttack","shortdowntack","shortuptack","perps","vDdash","dashV","Dashv","DashV","varVdash","Barv","vBar","vBarv","barV","Vbar","Not","bNot","revnmid","cirmid","midcir","topcir","nhpar","parsim","interleave","nhVvert","threedotcolon","lllnest","gggnest","leqqslant","geqqslant","trslash","biginterleave","sslash","talloblong","bigtalloblong","squaretopblack","squarebotblack","squareurblack","squarellblack","diamondleftblack","diamondrightblack","diamondtopblack","diamondbotblack","dottedsquare","lgblksquare","lgwhtsquare","vysmblksquare","vysmwhtsquare","pentagonblack","pentagon","varhexagon","varhexagonblack","hexagonblack","lgblkcircle","mdblkdiamond","mdwhtdiamond","mdblklozenge","mdwhtlozenge","smblkdiamond","smblklozenge","smwhtlozenge","blkhorzoval","whthorzoval","blkvertoval","whtvertoval","circleonleftarrow","leftthreearrows","leftarrowonoplus","longleftsquigarrow","nvtwoheadleftarrow","nVtwoheadleftarrow","twoheadmapsfrom","twoheadleftdbkarrow","leftdotarrow","nvleftarrowtail","nVleftarrowtail","twoheadleftarrowtail","nvtwoheadleftarrowtail","nVtwoheadleftarrowtail","leftarrowx","leftcurvedarrow","equalleftarrow","bsimilarleftarrow","leftarrowbackapprox","rightarrowgtr","rightarrowsupset","LLeftarrow","RRightarrow","bsimilarrightarrow","rightarrowbackapprox","similarleftarrow","leftarrowapprox","leftarrowbsimilar","rightarrowbsimilar","medwhitestar","medblackstar","smwhitestar","rightpentagonblack","rightpentagon","postalmark","hzigzag","mbfA","mbfB","mbfC","mbfD","mbfE","mbfF","mbfG","mbfH","mbfI","mbfJ","mbfK","mbfL","mbfM","mbfN","mbfO","mbfP","mbfQ","mbfR","mbfS","mbfT","mbfU","mbfV","mbfW","mbfX","mbfY","mbfZ","mbfa","mbfb","mbfc","mbfd","mbfe","mbff","mbfg","mbfh","mbfi","mbfj","mbfk","mbfl","mbfm","mbfn","mbfo","mbfp","mbfq","mbfr","mbfs","mbft","mbfu","mbfv","mbfw","mbfx","mbfy","mbfz","mitA","mitB","mitC","mitD","mitE","mitF","mitG","mitH","mitI","mitJ","mitK","mitL","mitM","mitN","mitO","mitP","mitQ","mitR","mitS","mitT","mitU","mitV","mitW","mitX","mitY","mitZ","mita","mitb","mitc","mitd","mite","mitf","mitg","miti","mitj","mitk","mitl","mitm","mitn","mito","mitp","mitq","mitr","mits","mitt","mitu","mitv","mitw","mitx","mity","mitz","mbfitA","mbfitB","mbfitC","mbfitD","mbfitE","mbfitF","mbfitG","mbfitH","mbfitI","mbfitJ","mbfitK","mbfitL","mbfitM","mbfitN","mbfitO","mbfitP","mbfitQ","mbfitR","mbfitS","mbfitT","mbfitU","mbfitV","mbfitW","mbfitX","mbfitY","mbfitZ","mbfita","mbfitb","mbfitc","mbfitd","mbfite","mbfitf","mbfitg","mbfith","mbfiti","mbfitj","mbfitk","mbfitl","mbfitm","mbfitn","mbfito","mbfitp","mbfitq","mbfitr","mbfits","mbfitt","mbfitu","mbfitv","mbfitw","mbfitx","mbfity","mbfitz","mscrA","mscrC","mscrD","mscrG","mscrJ","mscrK","mscrN","mscrO","mscrP","mscrQ","mscrS","mscrT","mscrU","mscrV","mscrW","mscrX","mscrY","mscrZ","mscra","mscrb","mscrc","mscrd","mscrf","mscrh","mscri","mscrj","mscrk","mscrl","mscrm","mscrn","mscrp","mscrq","mscrr","mscrs","mscrt","mscru","mscrv","mscrw","mscrx","mscry","mscrz","mbfscrA","mbfscrB","mbfscrC","mbfscrD","mbfscrE","mbfscrF","mbfscrG","mbfscrH","mbfscrI","mbfscrJ","mbfscrK","mbfscrL","mbfscrM","mbfscrN","mbfscrO","mbfscrP","mbfscrQ","mbfscrR","mbfscrS","mbfscrT","mbfscrU","mbfscrV","mbfscrW","mbfscrX","mbfscrY","mbfscrZ","mbfscra","mbfscrb","mbfscrc","mbfscrd","mbfscre","mbfscrf","mbfscrg","mbfscrh","mbfscri","mbfscrj","mbfscrk","mbfscrl","mbfscrm","mbfscrn","mbfscro","mbfscrp","mbfscrq","mbfscrr","mbfscrs","mbfscrt","mbfscru","mbfscrv","mbfscrw","mbfscrx","mbfscry","mbfscrz","mfrakA","mfrakB","mfrakD","mfrakE","mfrakF","mfrakG","mfrakJ","mfrakK","mfrakL","mfrakM","mfrakN","mfrakO","mfrakP","mfrakQ","mfrakS","mfrakT","mfrakU","mfrakV","mfrakW","mfrakX","mfrakY","mfraka","mfrakb","mfrakc","mfrakd","mfrake","mfrakf","mfrakg","mfrakh","mfraki","mfrakj","mfrakk","mfrakl","mfrakm","mfrakn","mfrako","mfrakp","mfrakq","mfrakr","mfraks","mfrakt","mfraku","mfrakv","mfrakw","mfrakx","mfraky","mfrakz","BbbA","BbbB","BbbD","BbbE","BbbF","BbbG","BbbI","BbbJ","BbbK","BbbL","BbbM","BbbO","BbbS","BbbT","BbbU","BbbV","BbbW","BbbX","BbbY","Bbba","Bbbb","Bbbc","Bbbd","Bbbe","Bbbf","Bbbg","Bbbh","Bbbi","Bbbj","Bbbk","Bbbl","Bbbm","Bbbn","Bbbo","Bbbp","Bbbq","Bbbr","Bbbs","Bbbt","Bbbu","Bbbv","Bbbw","Bbbx","Bbby","Bbbz","mbffrakA","mbffrakB","mbffrakC","mbffrakD","mbffrakE","mbffrakF","mbffrakG","mbffrakH","mbffrakI","mbffrakJ","mbffrakK","mbffrakL","mbffrakM","mbffrakN","mbffrakO","mbffrakP","mbffrakQ","mbffrakR","mbffrakS","mbffrakT","mbffrakU","mbffrakV","mbffrakW","mbffrakX","mbffrakY","mbffrakZ","mbffraka","mbffrakb","mbffrakc","mbffrakd","mbffrake","mbffrakf","mbffrakg","mbffrakh","mbffraki","mbffrakj","mbffrakk","mbffrakl","mbffrakm","mbffrakn","mbffrako","mbffrakp","mbffrakq","mbffrakr","mbffraks","mbffrakt","mbffraku","mbffrakv","mbffrakw","mbffrakx","mbffraky","mbffrakz","msansA","msansB","msansC","msansD","msansE","msansF","msansG","msansH","msansI","msansJ","msansK","msansL","msansM","msansN","msansO","msansP","msansQ","msansR","msansS","msansT","msansU","msansV","msansW","msansX","msansY","msansZ","msansa","msansb","msansc","msansd","msanse","msansf","msansg","msansh","msansi","msansj","msansk","msansl","msansm","msansn","msanso","msansp","msansq","msansr","msanss","msanst","msansu","msansv","msansw","msansx","msansy","msansz","mbfsansA","mbfsansB","mbfsansC","mbfsansD","mbfsansE","mbfsansF","mbfsansG","mbfsansH","mbfsansI","mbfsansJ","mbfsansK","mbfsansL","mbfsansM","mbfsansN","mbfsansO","mbfsansP","mbfsansQ","mbfsansR","mbfsansS","mbfsansT","mbfsansU","mbfsansV","mbfsansW","mbfsansX","mbfsansY","mbfsansZ","mbfsansa","mbfsansb","mbfsansc","mbfsansd","mbfsanse","mbfsansf","mbfsansg","mbfsansh","mbfsansi","mbfsansj","mbfsansk","mbfsansl","mbfsansm","mbfsansn","mbfsanso","mbfsansp","mbfsansq","mbfsansr","mbfsanss","mbfsanst","mbfsansu","mbfsansv","mbfsansw","mbfsansx","mbfsansy","mbfsansz","mitsansA","mitsansB","mitsansC","mitsansD","mitsansE","mitsansF","mitsansG","mitsansH","mitsansI","mitsansJ","mitsansK","mitsansL","mitsansM","mitsansN","mitsansO","mitsansP","mitsansQ","mitsansR","mitsansS","mitsansT","mitsansU","mitsansV","mitsansW","mitsansX","mitsansY","mitsansZ","mitsansa","mitsansb","mitsansc","mitsansd","mitsanse","mitsansf","mitsansg","mitsansh","mitsansi","mitsansj","mitsansk","mitsansl","mitsansm","mitsansn","mitsanso","mitsansp","mitsansq","mitsansr","mitsanss","mitsanst","mitsansu","mitsansv","mitsansw","mitsansx","mitsansy","mitsansz","mbfitsansA","mbfitsansB","mbfitsansC","mbfitsansD","mbfitsansE","mbfitsansF","mbfitsansG","mbfitsansH","mbfitsansI","mbfitsansJ","mbfitsansK","mbfitsansL","mbfitsansM","mbfitsansN","mbfitsansO","mbfitsansP","mbfitsansQ","mbfitsansR","mbfitsansS","mbfitsansT","mbfitsansU","mbfitsansV","mbfitsansW","mbfitsansX","mbfitsansY","mbfitsansZ","mbfitsansa","mbfitsansb","mbfitsansc","mbfitsansd","mbfitsanse","mbfitsansf","mbfitsansg","mbfitsansh","mbfitsansi","mbfitsansj","mbfitsansk","mbfitsansl","mbfitsansm","mbfitsansn","mbfitsanso","mbfitsansp","mbfitsansq","mbfitsansr","mbfitsanss","mbfitsanst","mbfitsansu","mbfitsansv","mbfitsansw","mbfitsansx","mbfitsansy","mbfitsansz","mttA","mttB","mttC","mttD","mttE","mttF","mttG","mttH","mttI","mttJ","mttK","mttL","mttM","mttN","mttO","mttP","mttQ","mttR","mttS","mttT","mttU","mttV","mttW","mttX","mttY","mttZ","mtta","mttb","mttc","mttd","mtte","mttf","mttg","mtth","mtti","mttj","mttk","mttl","mttm","mttn","mtto","mttp","mttq","mttr","mtts","mttt","mttu","mttv","mttw","mttx","mtty","mttz","imath","jmath","mbfAlpha","mbfBeta","mbfGamma","mbfDelta","mbfEpsilon","mbfZeta","mbfEta","mbfTheta","mbfIota","mbfKappa","mbfLambda","mbfMu","mbfNu","mbfXi","mbfOmicron","mbfPi","mbfRho","mbfvarTheta","mbfSigma","mbfTau","mbfUpsilon","mbfPhi","mbfChi","mbfPsi","mbfOmega","mbfnabla","mbfalpha","mbfbeta","mbfgamma","mbfdelta","mbfvarepsilon","mbfzeta","mbfeta","mbftheta","mbfiota","mbfkappa","mbflambda","mbfmu","mbfnu","mbfxi","mbfomicron","mbfpi","mbfrho","mbfvarsigma","mbfsigma","mbftau","mbfupsilon","mbfvarphi","mbfchi","mbfpsi","mbfomega","mbfpartial","mbfepsilon","mbfvartheta","mbfvarkappa","mbfphi","mbfvarrho","mbfvarpi","mitAlpha","mitBeta","mitGamma","mitDelta","mitEpsilon","mitZeta","mitEta","mitTheta","mitIota","mitKappa","mitLambda","mitMu","mitNu","mitXi","mitOmicron","mitPi","mitRho","mitvarTheta","mitSigma","mitTau","mitUpsilon","mitPhi","mitChi","mitPsi","mitOmega","mitnabla","mitalpha","mitbeta","mitgamma","mitdelta","mitvarepsilon","mitzeta","miteta","mittheta","mitiota","mitkappa","mitlambda","mitmu","mitnu","mitxi","mitomicron","mitpi","mitrho","mitvarsigma","mitsigma","mittau","mitupsilon","mitvarphi","mitchi","mitpsi","mitomega","mitpartial","mitepsilon","mitvartheta","mitvarkappa","mitphi","mitvarrho","mitvarpi","mbfitAlpha","mbfitBeta","mbfitGamma","mbfitDelta","mbfitEpsilon","mbfitZeta","mbfitEta","mbfitTheta","mbfitIota","mbfitKappa","mbfitLambda","mbfitMu","mbfitNu","mbfitXi","mbfitOmicron","mbfitPi","mbfitRho","mbfitvarTheta","mbfitSigma","mbfitTau","mbfitUpsilon","mbfitPhi","mbfitChi","mbfitPsi","mbfitOmega","mbfitnabla","mbfitalpha","mbfitbeta","mbfitgamma","mbfitdelta","mbfitvarepsilon","mbfitzeta","mbfiteta","mbfittheta","mbfitiota","mbfitkappa","mbfitlambda","mbfitmu","mbfitnu","mbfitxi","mbfitomicron","mbfitpi","mbfitrho","mbfitvarsigma","mbfitsigma","mbfittau","mbfitupsilon","mbfitvarphi","mbfitchi","mbfitpsi","mbfitomega","mbfitpartial","mbfitepsilon","mbfitvartheta","mbfitvarkappa","mbfitphi","mbfitvarrho","mbfitvarpi","mbfsansAlpha","mbfsansBeta","mbfsansGamma","mbfsansDelta","mbfsansEpsilon","mbfsansZeta","mbfsansEta","mbfsansTheta","mbfsansIota","mbfsansKappa","mbfsansLambda","mbfsansMu","mbfsansNu","mbfsansXi","mbfsansOmicron","mbfsansPi","mbfsansRho","mbfsansvarTheta","mbfsansSigma","mbfsansTau","mbfsansUpsilon","mbfsansPhi","mbfsansChi","mbfsansPsi","mbfsansOmega","mbfsansnabla","mbfsansalpha","mbfsansbeta","mbfsansgamma","mbfsansdelta","mbfsansvarepsilon","mbfsanszeta","mbfsanseta","mbfsanstheta","mbfsansiota","mbfsanskappa","mbfsanslambda","mbfsansmu","mbfsansnu","mbfsansxi","mbfsansomicron","mbfsanspi","mbfsansrho","mbfsansvarsigma","mbfsanssigma","mbfsanstau","mbfsansupsilon","mbfsansvarphi","mbfsanschi","mbfsanspsi","mbfsansomega","mbfsanspartial","mbfsansepsilon","mbfsansvartheta","mbfsansvarkappa","mbfsansphi","mbfsansvarrho","mbfsansvarpi","mbfitsansAlpha","mbfitsansBeta","mbfitsansGamma","mbfitsansDelta","mbfitsansEpsilon","mbfitsansZeta","mbfitsansEta","mbfitsansTheta","mbfitsansIota","mbfitsansKappa","mbfitsansLambda","mbfitsansMu","mbfitsansNu","mbfitsansXi","mbfitsansOmicron","mbfitsansPi","mbfitsansRho","mbfitsansvarTheta","mbfitsansSigma","mbfitsansTau","mbfitsansUpsilon","mbfitsansPhi","mbfitsansChi","mbfitsansPsi","mbfitsansOmega","mbfitsansnabla","mbfitsansalpha","mbfitsansbeta","mbfitsansgamma","mbfitsansdelta","mbfitsansvarepsilon","mbfitsanszeta","mbfitsanseta","mbfitsanstheta","mbfitsansiota","mbfitsanskappa","mbfitsanslambda","mbfitsansmu","mbfitsansnu","mbfitsansxi","mbfitsansomicron","mbfitsanspi","mbfitsansrho","mbfitsansvarsigma","mbfitsanssigma","mbfitsanstau","mbfitsansupsilon","mbfitsansvarphi","mbfitsanschi","mbfitsanspsi","mbfitsansomega","mbfitsanspartial","mbfitsansepsilon","mbfitsansvartheta","mbfitsansvarkappa","mbfitsansphi","mbfitsansvarrho","mbfitsansvarpi","mbfDigamma","mbfdigamma","mbfzero","mbfone","mbftwo","mbfthree","mbffour","mbffive","mbfsix","mbfseven","mbfeight","mbfnine","Bbbzero","Bbbone","Bbbtwo","Bbbthree","Bbbfour","Bbbfive","Bbbsix","Bbbseven","Bbbeight","Bbbnine","msanszero","msansone","msanstwo","msansthree","msansfour","msansfive","msanssix","msansseven","msanseight","msansnine","mbfsanszero","mbfsansone","mbfsanstwo","mbfsansthree","mbfsansfour","mbfsansfive","mbfsanssix","mbfsansseven","mbfsanseight","mbfsansnine","mttzero","mttone","mtttwo","mttthree","mttfour","mttfive","mttsix","mttseven","mtteight","mttnine","arabicmaj","arabichad","AntiqueWhite","AntiqueWhiteB","AntiqueWhiteC","AntiqueWhiteD","Aquamarine","AquamarineB","AquamarineC","AquamarineD","Azure","AzureB","AzureC","AzureD","Bisque","BisqueB","BisqueC","BisqueD","BlueB","BlueC","BlueD","BrownB","BrownC","BrownD","Burlywood","BurlywoodB","BurlywoodC","BurlywoodD","CadetBlue","CadetBlueB","CadetBlueC","CadetBlueD","Chartreuse","ChartreuseB","ChartreuseC","ChartreuseD","Chocolate","ChocolateB","ChocolateC","ChocolateD","Coral","CoralB","CoralC","CoralD","Cornsilk","CornsilkB","CornsilkC","CornsilkD","CyanB","CyanC","CyanD","DarkGoldenrod","DarkGoldenrodB","DarkGoldenrodC","DarkGoldenrodD","DarkOliveGreen","DarkOliveGreenB","DarkOliveGreenC","DarkOliveGreenD","DarkOrange","DarkOrangeB","DarkOrangeC","DarkOrangeD","DarkOrchid","DarkOrchidB","DarkOrchidC","DarkOrchidD","DarkSeaGreen","DarkSeaGreenB","DarkSeaGreenC","DarkSeaGreenD","DarkSlateGray","DarkSlateGrayB","DarkSlateGrayC","DarkSlateGrayD","DeepPink","DeepPinkB","DeepPinkC","DeepPinkD","DeepSkyBlue","DeepSkyBlueB","DeepSkyBlueC","DeepSkyBlueD","DodgerBlue","DodgerBlueB","DodgerBlueC","DodgerBlueD","Firebrick","FirebrickB","FirebrickC","FirebrickD","Gold","GoldB","GoldC","GoldD","Goldenrod","GoldenrodB","GoldenrodC","GoldenrodD","GreenB","GreenC","GreenD","Honeydew","HoneydewB","HoneydewC","HoneydewD","HotPink","HotPinkB","HotPinkC","HotPinkD","IndianRed","IndianRedB","IndianRedC","IndianRedD","Ivory","IvoryB","IvoryC","IvoryD","Khaki","KhakiB","KhakiC","KhakiD","LavenderBlush","LavenderBlushB","LavenderBlushC","LavenderBlushD","LemonChiffon","LemonChiffonB","LemonChiffonC","LemonChiffonD","LightBlue","LightBlueB","LightBlueC","LightBlueD","LightCyan","LightCyanB","LightCyanC","LightCyanD","LightGoldenrod","LightGoldenrodB","LightGoldenrodC","LightGoldenrodD","LightPink","LightPinkB","LightPinkC","LightPinkD","LightSalmon","LightSalmonB","LightSalmonC","LightSalmonD","LightSkyBlue","LightSkyBlueB","LightSkyBlueC","LightSkyBlueD","LightSteelBlue","LightSteelBlueB","LightSteelBlueC","LightSteelBlueD","LightYellow","LightYellowB","LightYellowC","LightYellowD","MagentaB","MagentaC","MagentaD","Maroon","MaroonB","MaroonC","MaroonD","MediumOrchid","MediumOrchidB","MediumOrchidC","MediumOrchidD","MediumPurple","MediumPurpleB","MediumPurpleC","MediumPurpleD","MistyRose","MistyRoseB","MistyRoseC","MistyRoseD","NavajoWhite","NavajoWhiteB","NavajoWhiteC","NavajoWhiteD","OliveDrab","OliveDrabB","OliveDrabC","OliveDrabD","Orange","OrangeB","OrangeC","OrangeD","OrangeRed","OrangeRedB","OrangeRedC","OrangeRedD","Orchid","OrchidB","OrchidC","OrchidD","PaleGreen","PaleGreenB","PaleGreenC","PaleGreenD","PaleTurquoise","PaleTurquoiseB","PaleTurquoiseC","PaleTurquoiseD","PaleVioletRed","PaleVioletRedB","PaleVioletRedC","PaleVioletRedD","PeachPuff","PeachPuffB","PeachPuffC","PeachPuffD","Pink","PinkB","PinkC","PinkD","Plum","PlumB","PlumC","PlumD","Purple","PurpleB","PurpleC","PurpleD","RedB","RedC","RedD","RosyBrown","RosyBrownB","RosyBrownC","RosyBrownD","RoyalBlue","RoyalBlueB","RoyalBlueC","RoyalBlueD","Salmon","SalmonB","SalmonC","SalmonD","SeaGreen","SeaGreenB","SeaGreenC","SeaGreenD","Seashell","SeashellB","SeashellC","SeashellD","Sienna","SiennaB","SiennaC","SiennaD","SkyBlue","SkyBlueB","SkyBlueC","SkyBlueD","SlateBlue","SlateBlueB","SlateBlueC","SlateBlueD","SlateGray","SlateGrayB","SlateGrayC","SlateGrayD","Snow","SnowB","SnowC","SnowD","SpringGreen","SpringGreenB","SpringGreenC","SpringGreenD","SteelBlue","SteelBlueB","SteelBlueC","SteelBlueD","Tan","TanB","TanC","TanD","Thistle","ThistleB","ThistleC","ThistleD","Tomato","TomatoB","TomatoC","TomatoD","Turquoise","TurquoiseB","TurquoiseC","TurquoiseD","VioletRed","VioletRedB","VioletRedC","VioletRedD","Wheat","WheatB","WheatC","WheatD","YellowB","YellowC","YellowD"]}
-,
-"optidef.sty":{"envs":["mini","mini*","mini!","minie","maxi","maxi*","maxi!","maxie","argmini","argmini*","argmini!","argminie","argmaxi","argmaxi*","argmaxi!","argmaxie","BaseMini","BaseMiniStar","BaseMiniExclam"],"deps":["calc.sty","environ.sty","etoolbox.sty","mathtools.sty","xifthen.sty","xparse.sty"],"cmds":["addConstraint","labelOP","breakObjective","defaultConstraintFormat","defaultOCPConstraint","defaultProblemFormat","equalsNothing","spanit","bodySubjectTo","BelowAddConstraint","BelowAddConstraintMult","oneAlignAddConstraint","oneAlignBelowAddConstraint","oneAlignBelowAddConstraintMult","standardAddConstraint","selectConstraint","selectConstraintMult","setStandardMini","setFormatShort","setFormatLong","localProblemFormat","localOptimalVariable","localProblemType","bodyBreakObjectiveDefinition","bodyBreakObjective","BaseMini","endBaseMini","BaseMiniStar","endBaseMiniStar","BaseMiniExclam","endBaseMiniExclam","widthInit","bodyobjLong","bodyobjShort","bodyobj","bodyconstBelowMult","bodyconstBelow","bodyconstOneAlignBelowMult","bodyconstOneAlignBelow","bodyconstOneAlign","bodyconstRight","bodyconst","bodySubjectToDefinition"]}
-,
-"optional.sty":{"envs":{},"deps":{},"cmds":["opt","optv","AskOption","UseOption"]}
-,
-"options.sty":{"envs":{},"deps":["etoolbox.sty","xcolor.sty"],"cmds":["options","optionsalso","optionswithremaining","option","letoption","edefoption","ifoptiondefined","ifoptionvoid","ifoptionblank","ifoptionequal","ifoptionanyof","ifoptiontype","ifoptionnil","ifoptioniscode","optionlistdo","letoptionlist","ifoptioncontains","optionshow","optionshowall","optionshowpath","optionerror","optionwarning","letoptiontype","optionname","optionprependcode","optionnewcode","optionnewhandler","optionvalue","optionnovalue","eifblank","eifstrequal","expandnextcmds","expandnextsingle","expandnext","ifoptioncmd","ifoptioncolortransparent","ifoptionisabsolute","letoptionchoices","ontoggle","optioncolorbox","optioncolor","optionlist","optionparamcount","optionshowtype","optiontextcolor","optiontypeout","optionunit"]}
-,
-"optparams.sty":{"envs":{},"deps":{},"cmds":["optparams"]}
-,
-"orcidlink.sty":{"envs":{},"deps":["hyperref.sty","tikz.sty","tikzlibrarysvg.path.sty"],"cmds":["orcidlink"]}
-,
-"ordinalpt.sty":{"envs":{},"deps":{},"cmds":["ORDPTFEM","ORDPTMASC","Ordptfem","Ordptmasc","ordptfem","ordptmasc"]}
-,
-"orientation.sty":{"envs":{},"deps":["everypage.sty"],"cmds":["setportrait","setlandscape","setupsidedown","setcounterlandscape","thispageportrait","thispagelandscape","thispageupsidedown","thispagecounterlandscape"]}
-,
-"ot-tableau.sty":{"envs":["tableau"],"deps":["xstring.sty","amssymb.sty","bbding.sty","suffix.sty","colortbl.sty","rotating.sty","arydshln.sty","hhline.sty"],"cmds":["inp","ips","const","cand","vio","SetCellShading","Optimal","OptimalMarker","ViolationMarker","CircledViolationMarker","TipaOn","TipaOff","CircledViolationsOn","CircledViolationsOff","ShadingOn","ShadingOff","FingerBeforeLetter","LetterBeforeFinger","CellShading","ConstraintString","DoubleLine","ExclOff","ExclOn","OptimalOff","OptimalOn","ShadeTheCell","TopOrBottomLine","UnshadeTheCell","ipa","ip","properlines","rowletter","thetableaurow"]}
-,
-"otf.sty":{"envs":{},"deps":["platex.sty","keyval.sty","ajmacros.sty","mlutf.sty","mlcid.sty","uplatex.sty"],"cmds":["rubydefault","rubyfamily","rubykatuji","mgdefault","propdefault","ebdefault","ltdefault","mathmg","mgfamily","textmg","propshape","ebseries","ltseries","UTF","CID","ajKunoji","ajKunojiwithBou","ajDKunoji","ajDKunojiwithBou","ajNinoji","ajvarNinoji","ajYusuriten","ajMasu","ajYori","ajKoto","ajUta","ajCommandKey","ajReturnKey","ajCheckmark","ajVisibleSpace","ajSenteMark","ajGoteMark","ajClub","ajHeart","ajSpade","ajDiamond","ajvarClub","ajvarHeart","ajvarSpade","ajvarDiamond","ajPhone","ajPostal","ajvarPostal","ajSun","ajCloud","ajUmbrella","ajSnowman","ajJIS","ajJAS","ajBall","ajHotSpring","ajWhiteSesame","ajBlackSesame","ajWhiteFlorette","ajBlackFlorette","ajRightBArrow","ajLeftBArrow","ajUpBArrow","ajDownBArrow","ajRightHand","ajLeftHand","ajUpHand","ajDownHand","ajRightScissors","ajLeftScissors","ajUpScissors","ajDownScissors","ajRightWArrow","ajLeftWArrow","ajUpWArrow","ajDownWArrow","ajRightDownArrow","ajLeftDownArrow","ajLeftUpArrow","ajRightUpArrow"]}
-,
-"otfontdef.sty":{"envs":{},"deps":["keyval.sty"],"cmds":["DeclareFontNamingScheme"]}
-,
-"othelloboard.sty":{"envs":["othelloboard","othelloboardnorefs"],"deps":["color.sty","graphicx.sty","ifthen.sty","pict2e.sty","stringstrings.sty","xstring.sty"],"cmds":["dotmarkings","othelloarrayfirstrow","othelloarraysecondrow","othelloarraythirdrow","othelloarrayfourthrow","othelloarrayfifthrow","othelloarraysixthrow","othelloarrayseventhrow","othelloarrayeighthrow","annotationsfirstrow","annotationssecondrow","annotationsthirdrow","annotationsfourthrow","annotationsfifthrow","annotationssixthrow","annotationsseventhrow","annotationseighthrow","posannotation","drawtranscript","drawboardfromstring","blackdiamond","blackdisc","countblackdiscs","countwhitediscs","gridrefs","othelloannotation","othellodiscfromstring","othellodisc","othellogrid","othellonormaltext","othellowhitetext","resetalldisccolours","scalefactor","thedisccolouraa","thedisccolourad","thedisccolourag","thedisccolourbb","thedisccolourbe","thedisccolourbh","thedisccolourcc","thedisccolourcf","thedisccolourda","thedisccolourdd","thedisccolourdg","thedisccoloureb","thedisccolouree","thedisccoloureh","thedisccolourfc","thedisccolourff","thedisccolourga","thedisccolourgd","thedisccolourgg","thedisccolourhb","thedisccolourhe","thedisccolourhh","thenumberbdiscs","thenumberwdiscs","whitediamond","whitedisc"]}
-,
-"oubraces.sty":{"envs":{},"deps":{},"cmds":["overunderbraces","br"]}
-,
-"oup-authoring-template.cls":{"envs":["appendices","methods"],"deps":["crop.sty","graphicx.sty","caption.sty","amsmath.sty","array.sty","color.sty","xcolor.sty","amssymb.sty","flushend.sty","stfloats.sty","rotating.sty","chngpage.sty","totcount.sty","fix-cm.sty","natbib.sty","wrapfig.sty","amsthm.sty","subfloat.sty","anyfontsize.sty","multirow.sty","footnote.sty","url.sty","mathrsfs.sty","algorithm.sty","algorithmicx.sty","algpseudocode.sty","listings.sty","hyperref.sty","tikz.sty","tikzlibrarysvg.path.sty"],"cmds":["abstract","accepted","access","addappheadtotoc","address","appendicestocpagenum","appendixheaderoff","appendixheaderon","appendixname","appendixpage","appendixpagename","appendixpageoff","appendixpageon","appendixtitleoff","appendixtitleon","appendixtitletocoff","appendixtitletocon","appendixtocname","appendixtocoff","appendixtocon","appnotes","author","authormark","botrule","boxedtext","city","copyrightyear","corresp","country","DOI","editor","firstpage","journaltitle","keywords","midrule","noappendicestocpagenum","ORCID","orgaddress","orgdiv","orgname","postcode","pubyear","received","restoreapp","revised","setthesection","setthesubsection","state","street","subtitle","title","titlemark","toprule","aboveskipchk","absection","addressandsep","addresscommasep","application","authbiotextfont","authorandsep","authorcommasep","backmatter","classname","clearemptydoublepage","croppaperheight","croppaperwidth","Croppdfheight","Croppdfwidth","dbond","defcase","dropfromtop","enumargs","evensideskip","extraspace","frontmatter","history","historycommasep","iflastpagegiven","IsBleedSet","IsCropSet","issue","IsTrimSet","itemargs","keywordsname","lastmodifieddate","lastpagegivenfalse","lastpagegiventrue","mainmatter","medline","myswitch","oddsideskip","opensquare","query","rotatecenter","rotateendcenter","rotdimen","rotfinish","rotl","rotr","rotstart","sbond","secsize","SetBleed","SetCrop","setlastpage","SetTrim","sffamilyfont","sffamilyfontbold","sffamilyfontbolditalic","sffamilyfontcn","sffamilyfontcnbold","sffamilyfontcnbolditalic","sffamilyfontcnitalic","sffamilyfontitalic","subsecsize","subsubsecsize","tablesize","tbond","tempdime","temptbox","textcolon","thefirstpage","thelastpage","themyaddcount","themyauthcount","themyhistorycount","thepagerange","titlepagewd","Trimpdfheight","Trimpdfwidth","versionnumber","vol","wraplines","writelastpage"]}
-,
-"outlines.sty":{"envs":["outline"],"deps":["ifthen.sty"],"cmds":["outlinei","outlineii","outlineiii","outlineiiii"]}
-,
-"outlining.sty":{"envs":{},"deps":["todonotes.sty"],"cmds":["outlineTopics","outlineTopicsMajors","outlineTopicsMajorsMinors","topic","major","minor","listOutline"]}
-,
-"overarrows.sty":{"envs":{},"deps":["amsmath.sty","etoolbox.sty","esvect.sty","pgfkeys.sty","old-arrows.sty","tikz.sty","pict2e.sty"],"cmds":["vardownarrow","vargets","varhookleftarrow","varhookrightarrow","varleftarrow","varleftarrowfill","varleftrightarrow","varlonghookleftarrow","varlonghookrightarrow","varlongleftarrow","varlongleftrightarrow","varlongmapsfrom","varlongmapsto","varlongrightarrow","varmapsfrom","varmapsto","varmapstochar","varnearrow","varnwarrow","varoverleftarrow","varoverleftrightarrow","varoverrightarrow","varrightarrow","varrightarrowfill","varsearrow","varswarrow","varto","varunderleftrightarrow","varunderleftarrow","varunderrightarrow","varuparrow","varupdownarrow","varvarinjlim","varvarprojlim","varxhookleftarrow","varxhookrightarrow","varxleftarrow","varxleftrightarrow","varxmapsfrom","varxmapsto","varxrightarrow","overrightarrow","underrightarrow","overleftarrow","underleftarrow","overleftrightarrow","underleftrightarrow","overrightharpoonup","overrightharpoondown","underrightharpoondown","overleftharpoonup","underleftharpoonup","overleftharpoondown","underleftharpoondown","overbar","underbar","underrightharpoonup","NewOverArrowCommand","RenewOverArrowCommand","ProvideOverArrowCommand","DeclareOverArrowCommand","TestOverArrow","xjoinrel","smallermathstyle","overarrowlength","overarrowthickness","overarrowsmallerthickness","esvectvv","SetOverArrowsSubscriptCommand","SetOverArrowsMethod"]}
-,
-"overcite.sty":{"envs":{},"deps":["cite.sty"],"cmds":{}}
-,
-"overlays.sty":{"envs":["overlays","fragileoverlays"],"deps":["xcolor.sty","environ.sty","pgffor.sty"],"cmds":["alert","visible","only","savecounterbetweenoverlays","savebetweenoverlays","saveseriesbetweenoverlays","overlaysoff","alertsoff","psalert","psvisible","next","processslidefirstline","processslideline","stopslide","stopslidefirst"]}
-,
-"overlock.sty":{"envs":{},"deps":["ifxetex.sty","ifluatex.sty","textcomp.sty","xkeyval.sty","fontenc.sty","fontaxes.sty","mweights.sty"],"cmds":["overlock","overlockBlack","oldstylenums","liningnums","overlockfamily"]}
-,
-"overpic.sty":{"envs":{},"deps":["epic.sty","graphicx.sty"],"cmds":["setOverpic"]}
-,
-"oz.sty":{"envs":["argue","axdef","class","classcom","gendef","genschema","infrule","init","op","schema","sidebyside","sidebyside","state","syntax","uniqdef","zed","zpar","const"],"deps":["calc.sty"],"cmds":["also","Also","ALSO","comment","derive","leftschemas","M","nextside","ST","where","zbreak","Zbreak","ZBREAK","zedbar","zedbaselinestretch","zedcornerheight","zedindent","zedleftsep","zedlinethickness","zedsize","zedtab","znewpage","checkmark","circledR","intern","maltese","sectionsymbol","String","STRING","varemptyset","yen","all","always","approxeq","atlast","atnext","backepsilon","backprime","backsim","backsimeq","bag","bagcount","barwedge","bbar","because","beth","between","bigstar","bij","blacklozenge","BLACKQED","blacksquare","blacktriangle","blacktriangledown","blacktriangleleft","blacktriangleright","boldword","bool","Box","boxdot","boxminus","boxplus","boxtimes","bumpeq","Bumpeq","buni","Cap","cat","cbar","centerdot","circeq","circlearrowleft","circlearrowright","circledast","circledcirc","circleddash","circledS","cmp","comp","complement","cross","Cup","curlyeqprec","curlyeqsucc","curlyvee","curlywedge","curvearrowleft","curvearrowright","daleth","dcat","dcmp","ddef","defs","Diamond","digamma","dint","dinter","disjoint","divideontimes","divides","dom","dotaccent","Doteq","doteqdot","dotplus","doublebarwedge","doublecap","doublecup","dovr","downdownarrows","downharpoonleft","downharpoonright","dres","dsub","duni","dunion","emptybag","emptyseq","eqcirc","eqsim","eqslantgtr","eqslantless","ETH","eth","eventually","exi","exione","Exit","expon","fallingdotseq","false","fcmp","ffun","filter","finj","finset","fovr","front","fset","fsetone","fun","geqq","geqslant","ggg","gggtr","gimel","gnapprox","gneq","gneqq","gnsim","gtrapprox","gtrdot","gtreqless","gtreqqless","gtrless","gtrsim","gvertneqq","hasa","head","henceforth","hide","hslash","id","imp","implies","inbag","infix","Init","inj","inseq","instancein","instantiates","integer","integral","inter","intercal","interleave","inv","ires","isa","islikea","items","iter","Join","keyword","lang","last","lbag","lblot","LE","leadsto","leftarrowtail","leftleftarrows","leftrightarrows","leftrightharpoons","leftrightsquigarrow","leftthreetimes","leqq","leqslant","lessapprox","lessdot","lesseqgtr","lesseqqgtr","lessgtr","lesssim","lhd","limg","llcorner","Lleftarrow","lll","llless","lnapprox","lneq","lneqq","lnsim","looparrowleft","looparrowright","lozenge","lrcorner","lsch","lseq","Lsh","ltimes","lvertneqq","map","mathbb","measuredangle","mem","mho","mod","mono","multimap","napprox","nat","natone","ncong","ndres","nem","nexi","nexists","next","ngeq","ngeqq","ngeqslant","ngtr","nleftarrow","nLeftarrow","nLeftrightarrow","nleftrightarrow","nleq","nleqq","nleqslant","nless","nmem","nmid","nparallel","nplus","nprec","npreceq","nrightarrow","nRightarrow","nrres","nshortmid","nshortparallel","nsim","nsubseteq","nsubseteqq","nsucc","nsucceq","nsupseteq","nsupseteqq","ntriangleleft","ntrianglelefteq","ntriangleright","ntrianglerighteq","num","nvdash","nVdash","nvDash","nVDash","partitions","pfun","pinj","pitchfork","porder","post","power","PR","pre","precapprox","preccurlyeq","precnapprox","precneqq","precnsim","precsim","pred","prefix","previously","product","project","pset","psetone","psubs","psups","psur","psurj","qed","Qed","QED","ran","rang","rbag","rblot","refines","rel","restriction","rev","rhd","rightarrowtail","rightleftarrows","rightrightarrows","rightsquigarrow","rightthreetimes","rimg","risingdotseq","rres","Rrightarrow","rsch","rseq","Rsh","rsub","rtcl","rtimes","sdef","semi","seq","seqone","shortinterleave","shortmid","shortparallel","shows","smallfrown","smallsetminus","smallsmile","sphericalangle","spot","sqsubset","sqsupset","square","squash","sres","subclass","subs","Subset","subseteqq","subsetneq","subsetneqq","subtype","subtypeeq","succapprox","succcurlyeq","succnapprox","succneqq","succnsim","succsim","suffix","supclass","sups","Supset","supseteqq","supsetneq","supsetneqq","suptype","suptypeeq","surj","tail","tcl","tfun","TH","therefore","thickapprox","thicksim","thrm","tinj","torder","triangledown","trianglelefteq","triangleq","trianglerighteq","true","tsur","twoheadleftarrow","twoheadrightarrow","ulcorner","underboldword","underkeyword","underword","uni","union","unlhd","unrhd","upharpoonleft","upharpoonright","uptilnow","upto","upuparrows","urcorner","varkappa","varnothing","varpropto","varsdef","vartriangle","vartriangleleft","vartriangleright","Vdash","vDash","veebar","Vvdash","weakrefine","weaksubclass","weaksupclass","word","xprec","xsucc","zall","zand","zbar","zbig","zBig","zBIG","zcmp","zeq","zexi","zfor","zhide","zimp","zin","zlet","znot","zor","zovr","zpipe","zproject","zsmall","zSmall","zwhere","Aux","bbold","childof","cid","classbreak","classuni","cnj","cond","contained","dcnj","defines","Derive","dgch","diff","docdate","dparallel","dpll","dplo","dsqc","eid","enh","env","f","filedate","fileversion","flushr","forcepagepenalty","fuzzcompatible","gch","HOLE","ifleftnames","IMP","import","inherits","Internal","interzedlinepenalty","invisibility","iseq","isub","landd","ldata","leftnamesfalse","leftnamestrue","nexim","oid","ozit","p","parentof","partition","pll","plo","poly","preboxpenalty","qua","rdata","redef","rename","sdefs","self","semicolon","semid","seqi","sid","sqc","sset","ssub","subseq","visibility","weakdefine","widen","xexists","xforall","xlambda","xmu","zedbaselineskip","zedline","zimg","zimgset","zsch","zseq","zset","zstrut","zstrutbox"]}
-,
-"pacioli.sty":{"envs":{},"deps":{},"cmds":["cpcfamily","textcpc"]}
-,
-"padcount.sty":{"envs":{},"deps":{},"cmds":["padnum","setpadnum","setpadchar"]}
-,
-"pagecolor.sty":{"envs":{},"deps":["hardwrap.sty","kvoptions.sty","xcolor.sty"],"cmds":["thepagecolor","thepagecolornone","newpagecolor","restorepagecolor","backgroundpagecolor","newbackgroundpagecolor","restorebackgroundpagecolor"]}
-,
-"pagecont.sty":{"envs":{},"deps":["keyval.sty"],"cmds":{}}
-,
-"pagegrid.sty":{"envs":{},"deps":["tikz.sty","atbegshi.sty","kvoptions.sty"],"cmds":["pagegridsetup","pagegridShipoutDoubleBegin","pagegridShipoutDoubleEnd"]}
-,
-"pagelayout.cls":{"envs":{},"deps":["pgfopts.sty","tikz.sty","tcolorbox.sty","tcolorboxlibrarymagazine.sty","s-standalone.cls"],"cmds":["twoside","beginleft","fanfold","cover","beginright","pagewidth","pageheight","bleed","outerbleed","innerbleed","topbleed","bottombleed","safetymargin","topsafetymargin","bottomsafetymargin","innersafetymargin","outersafetymargin","margin","innermargin","bottommargin","outermargin","gutter","coverwidth","coverheight","spinewidth","bindingoffset","coverbleed","coverouterbleed","coverinnerbleed","covertopbleed","coverbottombleed","coversafetymargin","covertopsafetymargin","coverbottomsafetymargin","coverinnersafetymargin","coveroutersafetymargin","grid","nogrid","safezone","nosafezone","cuttingmarks","nocuttingmarks","graphpaper","nographpaper","placeholders","noplaceholders","fillpages","nofillpages","page","pagecolor","setpagecolor","setpagegraphic","newbeforepage","setbeforepage","ifleftpage","ifrightpage","leftpage","rightpage","ifspine","setgrid","place","text","usetext","newgraphic","graphic","xput","tikzgraphic","newborder","setborder","newshadow","setshadow","newtemplate","placeholder","template","optimize","import","preflight","nopreflight","density","isoptimizable","loopcells","looprows","nobeforepage","noborder","nopagegraphic","noshadow","originaltcbset","posx","posxcell","posxrow","posy","posycell","posyrow","quality","rowsF","rowsFlex","rowsH","sectioncalled","setcolor","setgraphpaper","pagelayoutversion"]}
-,
-"pagella-otf.sty":{"envs":{},"deps":["iftex.sty","xkeyval.sty","textcomp.sty","unicode-math.sty"],"cmds":["pagellaOsF","pagellaTLF","Lctosc","LCtoSC","Lctosmcp","LCtoSMCP","Lliga","LLIGA","Lhlig","LHLIG","Ldlig","LDLIG","Lcpsp","LCPSP","Lsalt","LSALT","Lss","LSS","Lsup","Lsinf","Land","Lcase","LCASE","Lfrac","LFRAC","pagella","sufigures","textsup","textinit","mbfscra","mbfscrb","mbfscrc","mbfscrd","mbfscre","mbfscrf","mbfscrg","mbfscrh","mbfscri","mbfscrj","mbfscrk","mbfscrl","mbfscrm","mbfscrn","mbfscro","mbfscrp","mbfscrq","mbfscrr","mbfscrs","mbfscrt","mbfscru","mbfscrv","mbfscrw","mbfscrx","mbfscry","mbfscrz","mscra","mscrb","mscrc","mscrd","mscre","mscrf","mscrg","mscrh","mscri","mscrj","mscrk","mscrl","mscrm","mscrn","mscro","mscrp","mscrq","mscrr","mscrs","mscrt","mscru","mscrv","mscrw","mscrx","mscry","mscrz"]}
-,
-"pagenote.sty":{"envs":{},"deps":["ifmtarg.sty"],"cmds":["makepagenote","printnotes","pagenote","notenumintext","noteentry","prenoteinnotes","noteidinnotes","pageinnotes","noteinnotes","postnoteinnotes","notedivision","notesname","addtonotes","pagenotesubhead","chaptername","sectionname","pagename","ifpnhaschapter","pnhaschapterfalse","pnhaschaptertrue","ifpnpageopt","pnpageoptfalse","pnpageopttrue","ifpncontopt","pncontoptfalse","pncontopttrue","thepagenote","ifmakingpagenotes","makingpagenotesfalse","makingpagenotestrue","pnofilewarn"]}
-,
-"pagerange.sty":{"envs":{},"deps":["lastpage.sty","xkeyval.sty"],"cmds":["pagerangeoptions","pagerange","pagestart","pageend","getpagenumber"]}
-,
-"pagesel.sty":{"envs":{},"deps":{},"cmds":{}}
-,
-"pageslts.sty":{"envs":{},"deps":["ltxcmds.sty","atveryend.sty","everyshi.sty","letltxmacro.sty","kvoptions.sty","undolabl.sty","rerunfilecheck.sty","alphalph.sty"],"cmds":["theCurrentPage","theCurrentPageLocal","lastpageref","lastpages","AlphMult","alphMult","erroralphalph","expandPagenumbering","extract","fnsymbolmult","lastpagerefend","lastpagereftext","lastpagereftextstar","lastpagereftxt","OrigPagenumbering","Origthepage","overrideLTSlabel","pagesLTStmpA","pagesLTStmpB","pncmissing","XRoman","xroman","XXRoman"]}
-,
-"pandora.sty":{"envs":{},"deps":{},"cmds":["pnrmfamily","pnsffamily","pnttfamily","textpnrm","textpnsf","textpntt","textpnsl","textpnbf","textpnssl","textpnsbf"]}
-,
-"pangram.sty":{"envs":{},"deps":{},"cmds":["pangram","PangramSetup","NewPangramClass"]}
-,
-"papermas.sty":{"envs":{},"deps":["kvoptions.sty","pageslts.sty","intcalc.sty"],"cmds":["unit","papermasstotal","papermasformat","papermasmasss","papermaspagespersheet","papermassheets"]}
-,
-"papertex.cls":{"envs":["authorblock","editorial","frontpage","indexblock","news","shortnews","weatherblock"],"deps":["ifthen.sty","ifpdf.sty","multido.sty","datetime.sty","multicol.sty","fancyhdr.sty","fancybox.sty","geometry.sty","graphicx.sty","color.sty","hyperref.sty","textpos.sty","hyphenat.sty","wrapfig.sty","lastpage.sty","setspace.sty","ragged2e.sty"],"cmds":["authorandplace","columntitle","edition","expandedtitle","firstimage","firstnews","foot","heading","image","indexitem","minraggedcols","newsection","newssep","secondnews","shortnewsitem","thirdnews","timestamp","weatheritem","columnlines","editionFormat","editorialAuthorFormat","editorialTitleFormat","firstTextFormat","firstTitleFormat","grid","headDateTimeFormat","indexEntryFormat","indexEntryPageFormat","indexEntryPageTxt","indexEntrySeparator","indexFormat","innerAuthorFormat","innerPlaceFormat","innerSubtitleFormat","innerTextFinalMark","innerTitleFormat","logo","minilogo","mylogo","pagesFormat","papertexInit","pictureCaptionFormat","raggedFormat","secondSubtitleFormat","secondTextFormat","secondTitleFormat","shortnewsItemTitleFormat","shortnewsSubtitleFormat","shortnewsTitleFormat","thirdSubtitleFormat","thirdTextFormat","thirdTitleFormat","timestampFormat","timestampSeparator","timestampTxt","weatherFormat","weatherTempFormat","weatherUnits"]}
-,
-"paracol.sty":{"envs":["paracol","column","leftcolumn","rightcolumn"],"deps":{},"cmds":["switchcolumn","thecolumn","definecolumnpreamble","ensurevspace","columnratio","setcolumnwidth","twosided","marginparthreshold","globalcounter","localcounter","definethecounter","synccounter","syncallcounters","footnotelayout","footnote","footnotemark","footnotetext","fncounteradjustment","nofncounteradjustment","belowfootnoteskip","columncolor","normalcolumncolor","coloredwordhyphenated","nocoloredwordhyphenated","colseprulecolor","normalcolseprulecolor","backgroundcolor","nobackgroundcolor","resetbackgroundcolor","pagerim","addcontentsonly","flushpage"]}
-,
-"paralist.sty":{"envs":["itemize","enumerate","inparaenum","compactenum","inparaitem","compactitem","inparadesc","compactdesc","asparablank","inparablank"],"deps":{},"cmds":["setdefaultitem","setdefaultenum","setdefaultleftmargin","pointedenum","pointlessenum","paradescriptionlabel","pltopsep","plpartopsep","plitemsep","plparsep"]}
-,
-"parallel.sty":{"envs":["Parallel","ParallelFNEnviron"],"deps":{},"cmds":["ParallelLText","ParallelRText","ParallelPar","ParallelLWidth","ParallelRWidth","ParallelTextWidth","ParallelLeftMargin","ParallelUserMidSkip","ParallelMainMidSkip","ParallelLBox","ParallelRBox","ParallelBoxVar","ParallelLTok","ParallelRTok","ParallelBoolVar","ParallelBoolMid","ParallelWhichBox","ParallelMainMode","ParallelFNMode","ParallelLFNCounter","ParallelRFNCounter","ParallelMaxFN","ParallelFNNumMode","ParallelMessage","ParallelLFootnote","ParallelRFootnote","ParallelShowFNList","ParallelParOnePage","ParallelParTwoPages","ParallelAfterText","ParallelCheckOpenBrace","ParallelAtEnd","ParallelDot"]}
-,
-"paravesp.sty":{"envs":{},"deps":{},"cmds":["ParaSpaceAbove","ParaSpaceBelow","IssueParaSpace","IgnoreSpaceAboveNextPara","CancelIgnoreSpaceAboveNextPara"]}
-,
-"parcolumns.sty":{"envs":["parcolumns"],"deps":["processkv.sty"],"cmds":["colchunk","colplacechunks"]}
-,
-"paresse.sty":{"envs":["ParesseActive"],"deps":["xparse.sty","l3keys2e.sty","iftex.sty"],"cmds":["makeparesseletter","makeparesseother","ActiveLaParesse","declareunicodecharacter"]}
-,
-"parnotes.sty":{"envs":["autopn"],"deps":{},"cmds":["parnote","parnotes","parnotereset","parnoteclear","parnoteref","parnotemark","parnotefmt","theparnotemark","parnotevskip","parnoteintercmd","parnotecusmarkfmt"]}
-,
-"parrun.sty":{"envs":["fframe","sframe"],"deps":["ifthen.sty","calc.sty"],"cmds":["Place","ffram","sfram","k","cnum","flength","slength","ffrac","sfrac","nop","total","actualheight","initskip","colframsep","h","test","temp","rigidbalance","dosplits","splitoff","dobalance","finalbalance","myline","UserDefWidths","AutoCompute","UsefulLengthsTable","firsterror"]}
-,
-"parseargs.sty":{"envs":{},"deps":{},"cmds":["parseOpt","parseMand","parseFlag"]}
-,
-"parselines.sty":{"envs":["parse lines"],"deps":{},"cmds":["dofilebyline"]}
-,
-"parskip.sty":{"envs":{},"deps":{},"cmds":{}}
-,
-"pas-cours.sty":{"envs":["ant","pasbox","prerequis","aretenir","warning","attention","ifactors","ifactorstable","fracsimplify","exprsimplify","xcas","ifactors","ifactorstable","fracsimplify","exprsimplify","xcas"],"deps":["xkeyval.sty","xstring.sty","amssymb.sty","tikz.sty","tikzlibrarycalc.sty","tikzlibraryfadings.sty","enumitem.sty","numprint.sty","fancyvrb.sty","ifplatform.sty","pst-plot.sty","auto-pst-pdf.sty"],"cmds":["patronprismereg","pasPatronprismereg","patronpyramreg","pasPatronpyramreg","patroncone","pasPatroncone","patroncylindre","pasPatroncylindre","patronpave","pasPatronpave","prismereg","pasPrismereg","pyramreg","pasPyramreg","boule","pasBoule","cone","pasCone","cylindre","pasCylindre","cube","pasCube","env","pasEnv","breakbox","chap","pasChap","definmot","itemclass","bonus","titreFONT","tocFONT","prerequisBox","imgPrerequis","largeurimgPrerequis","imageBox","largeurimageBox","aretenirBox","attentionBox","thebonus","graphsuite","executGiac"]}
-,
-"pas-crosswords.sty":{"envs":["crossgrid"],"deps":["fp.sty","tikz.sty","xstring.sty"],"cmds":["blackcase","blackcases","word","words","gridcross","printDef","symbsep","symbnext","cRM","newlist","theL","thecntdef","debutX","debutY","namecase","num","pos","posX","posY","pr"]}
-,
-"pas-cv.sty":{"envs":{},"deps":["xkeyval.sty","tikz.sty","tikzlibrarycalc.sty","tikzlibraryshapes.geometric.sty","tikzlibrarydecorations.pathmorphing.sty","fp.sty"],"cmds":["CVbg","infoLeft","infoRight","CVmargins","CVtitle","CVclearpage","CVh"]}
-,
-"pas-tableur.sty":{"envs":{},"deps":["tikz.sty","xstring.sty"],"cmds":["tableur","tabcolwidth","tabnumlinewidth","tablineheight","helvbx","celtxt","selecCell","multiSelec","fileversion","filedate"]}
-,
-"pascaltriangle.sty":{"envs":{},"deps":["expl3.sty","xparse.sty","amsmath.sty","tikz.sty","tikzlibraryshapes.geometric.sty","etoolbox.sty"],"cmds":["pascal","pascalset","binomc"]}
-,
-"patch-common.sty":{"envs":{},"deps":{},"cmds":["xpatchcmd","xpretocmd","xapptocmd","xpatchbibmacro","xpretobibmacro","xapptobibmacro","xpatchbibdriver","xpretobibdriver","xapptobibdriver","xpatchfieldformat","xpretofieldformat","xapptofieldformat","xpatchnameformat","xpretonameformat","xapptonameformat","xpatchlistformat","xpretolistformat","xapptolistformat","xpatchindexfieldformat","xpretoindexfieldformat","xapptoindexfieldformat","xpatchindexnameformat","xpretoindexnameformat","xapptoindexnameformat","xpatchindexlistformat","xpretoindexlistformat","xapptoindexlistformat","xshowcmd","xshowbibname","xshowbibdriver","xshowfieldformat","xshownameformat","xshowlistformat","xshowindexfieldformat","xshowindexnameformat","xshowindexlistformat"]}
-,
-"patchcmd.sty":{"envs":{},"deps":{},"cmds":["patchcommand","patchcmdError"]}
-,
-"path.sty":{"envs":{},"deps":{},"cmds":["path","discretionaries","pathafterhook","ifspecialpathdelimiters","specialpathdelimiterstrue","specialpathdelimitersfalse"]}
-,
-"pbalance.sty":{"envs":{},"deps":["etoolbox.sty","expl3.sty","atbegshi.sty","atveryend.sty","zref-abspage.sty","filehook.sty","balance.sty"],"cmds":["shrinkLastPage","balancePageNum","nopbalance"]}
-,
-"pbox.sty":{"envs":{},"deps":["calc.sty"],"cmds":["pbox","settominwidth","widthofpbox"]}
-,
-"pbsi.sty":{"envs":{},"deps":{},"cmds":["bsifamily","textbsi"]}
-,
-"pcarl.sty":{"envs":{},"deps":["xkeyval.sty"],"cmds":["offamily","textof","offamilydefault"]}
-,
-"pdfArticle.cls":{"envs":{},"deps":["s-extarticle.cls","kvoptions.sty","fontspec.sty","graphicx.sty","graphbox.sty","xcolor.sty","fifo-stack.sty","geometry.sty","fancyvrb.sty","fvextra.sty","ulem.sty","contour.sty","shadowtext.sty","enumitem.sty","alphalph.sty","pbox.sty","varwidth.sty","overpic.sty","wrapfig.sty","array.sty","dcolumn.sty","tabto.sty","changepage.sty","ragged2e.sty","setspace.sty","amsmath.sty","unicode-math.sty","adjustbox.sty","hyperref.sty","minted.sty","tcolorbox.sty","tcolorboxlibrarymany.sty","tcolorboxlibraryvignette.sty","tcolorboxlibraryminted.sty","tcolorboxlibrarymagazine.sty","tcolorboxlibraryposter.sty","tcolorboxlibraryexternal.sty"],"cmds":["forceNewPageGeometry","hl","st","ul","namedLabel","DoNotLoadEpstopdf","oldref"]}
-,
-"pdfbase.sty":{"envs":{},"deps":{},"cmds":{}}
-,
-"pdfcol.sty":{"envs":{},"deps":["ltxcmds.sty","infwarerr.sty","iftex.sty","color.sty"],"cmds":["ifpdfcolAvailable","pdfcolAvailabletrue","pdfcolAvailablefalse","pdfcolErrorNoStacks","pdfcolInitStack","pdfcolIfStackExists","pdfcolSwitchStack","pdfcolSetCurrentColor","pdfcolSetCurrent"]}
-,
-"pdfcolparallel.sty":{"envs":{},"deps":["parallel.sty","infwarerr.sty","pdfcol.sty","keyval.sty"],"cmds":{}}
-,
-"pdfcolparcolumns.sty":{"envs":{},"deps":["parcolumns.sty","pdfcol.sty","infwarerr.sty"],"cmds":{}}
-,
-"pdfcomment.sty":{"envs":["pdfsidelinecomment"],"deps":["xkeyval.sty","etoolbox.sty","luatex85.sty","datetime2.sty","zref-savepos.sty","refcount.sty","ifthen.sty","calc.sty","marginnote.sty","ifpdf.sty","ifluatex.sty","soulpos.sty","hyperref.sty"],"cmds":["pdfcomment","pdfmargincomment","textHT","textLF","textCR","pdfmarkupcomment","pdffreetextcomment","pdfsquarecomment","pdfcirclecomment","pdflinecomment","pdftooltip","pdfcommentsetup","listofpdfcomments","setliststyle","defineliststyle","defineavatar","definestyle"]}
-,
-"pdfcrypt.sty":{"envs":{},"deps":["infwarerr.sty","keyval.sty"],"cmds":["pdfcryptsetup","nopdfcrypt","pdfcrypt"]}
-,
-"pdfescape.sty":{"envs":{},"deps":["ltxcmds.sty","pdftexcmds.sty"],"cmds":["EdefEscapeHex","EdefUnescapeHex","EdefEscapeName","EdefEscapeString","EdefUnescapeName","EdefUnescapeString","EdefSanitize"]}
-,
-"pdfextra.sty":{"envs":{},"deps":["luatex.sty"],"cmds":["attach","DDDannot","DDDcontext","DDDview","defaultpageactions","defaultpageduration","defaultpagerotate","dljavascript","duplexdisplay","filedef","fullscreen","hlink","hyperlinks","initpageattributes","lininglinks","nolininglinks","openaction","pageactions","pageattributes","pageduration","pagerotate","pdfaction","pdfextraloaded","render","renditionautoplay","RM","sdef","showattached","showoutlines","transition","transitions"]}
-,
-"pdflscape.sty":{"envs":{},"deps":["iftex.sty","lscape.sty","atbegshi.sty"],"cmds":{}}
-,
-"pdfmanagement-testphase.sty":{"envs":{},"deps":["tagpdf-base.sty","l3bitset.sty","pdfmanagement-firstaid.sty"],"cmds":["PDFManagementAdd","AddToDocumentProperties","GetDocumentProperties","ShowDocumentProperties","documentmetadatasupportversion","documentmetadatasupportdate","DeclareDocumentMetadata"]}
-,
-"pdfmarginpar.sty":{"envs":{},"deps":["pgfkeys.sty"],"cmds":["pdfmarginpar","pdfmarginparset"]}
-,
-"pdfmsym.sty":{"envs":{},"deps":["luatex.sty"],"cmds":["pdfmsymsetscalefactor","aint","bigcircwedge","bigdcup","bigdwedge","bigexists","bigforall","circwedge","dcup","divs","dwedge","lightning","ndivs","oiNint","biNint","lvecc","overleftharp","overleftrightharp","overleftrightvecc","overrightharp","overrightleftharp","straightlvecc","straightvecc","underleftharp","underleftrightharp","underleftrightvecc","underlvecc","underrightharp","underrightleftharp","understraightlvecc","understraightvecc","undervecc","vecc","shortlvecc","shortoverleftharp","shortoverleftrightharp","shortoverleftrightvecc","shortoverrightharp","shortoverrightleftharp","shortstraightlvecc","shortstraightvecc","shortunderleftharp","shortunderleftrightharp","shortunderleftrightvecc","shortunderlvecc","shortunderrightharp","shortunderrightleftharp","shortunderstraightlvecc","shortunderstraightvecc","shortundervecc","shortvecc","constvec","varrightarrow","varleftarrow","varrightharp","varleftharp","varleftrightarrow","varleftrightharp","varrightleftharp","varmapsto","varmapsfrom","varuphookrightarrow","varuphookleftarrow","vardownhookrightarrow","vardownhookleftarrow","varhookrightarrow","varhookleftarrow","vardoublerightarrow","vardoubleleftarrow","varcirclerightarrow","varcircleleftarrow","varRightarrow","varLeftarrow","varCirclerightarrow","varCircleleftarrow","varSquarerightarrow","varSquareleftarrow","varRibbonrightarrow","varRibbonleftarrow","squaredarrow","roundedarrow","varrightarrows","varleftarrows","varrightleftarrows","varleftrightarrows","varRrightarrow","varLleftarrow","varLleftRrightarrow","longvarrightarrow","longvarleftarrow","longvarrightharp","longvarleftharp","longvarleftrightarrow","longvarleftrightharp","longvarrightleftharp","longvarmapsto","longvarmapsfrom","longvaruphookrightarrow","longvaruphookleftarrow","longvardownhookrightarrow","longvardownhookleftarrow","longvarhookrightarrow","longvarhookleftarrow","longvardoublerightarrow","longvardoubleleftarrow","longvarcirclerightarrow","longvarcircleleftarrow","longvarRightarrow","longvarLeftarrow","longvarCirclerightarrow","longvarCircleleftarrow","longvarSquarerightarrow","longvarSquareleftarrow","longvarRibbonrightarrow","longvarRibbonleftarrow","longsquaredarrow","longroundedarrow","longvarrightarrows","longvarleftarrows","longvarrightleftarrows","longvarleftrightarrows","longvarRrightarrow","longvarLleftarrow","longvarLleftRrightarrow","xvarrightarrow","xvarleftarrow","xvarrightharp","xvarleftharp","xvarleftrightarrow","xvarleftrightharp","xvarrightleftharp","xvarmapsto","xvarmapsfrom","xvaruphookrightarrow","xvaruphookleftarrow","xvardownhookrightarrow","xvardownhookleftarrow","xvarhookrightarrow","xvarhookleftarrow","xvardoublerightarrow","xvardoubleleftarrow","xvarcirclerightarrow","xvarcircleleftarrow","xvarRightarrow","xvarLeftarrow","xvarCirclerightarrow","xvarCircleleftarrow","xvarSquarerightarrow","xvarSquareleftarrow","xvarRibbonrightarrow","xvarRibbonleftarrow","xsquaredarrow","xroundedarrow","xvarrightarrows","xvarleftarrows","xvarrightleftarrows","xvarleftrightarrows","xvarRrightarrow","xvarLleftarrow","xvarLleftRrightarrow","varwidehat","varwidecheck","varwidetilde","suum","prood","putsym","putexsym","iNint","pdfMsym","pdfmsymsettransforms","pdfMsymupdate","pdfMsymversion","smallcircle","strudelccode"]}
-,
-"pdfoverlay.sty":{"envs":{},"deps":["graphicx.sty"],"cmds":["pdfoverlaySetPDF","pdfoverlaySetGraphicsOptions","pdfoverlayIncludeToPage","pdfoverlayIncludeToLastPage","pdfoverlaySkipToPage","pdfoverlayPauseOutput","pdfoverlayResumeOutput"]}
-,
-"pdfpagediff.sty":{"envs":{},"deps":["geometry.sty","graphicx.sty","color.sty","substr.sty"],"cmds":["layerPages","FirstDoc","SecondDoc","obj","objref","doobjref","objrefs","lastobjref","thisobjref","nextobjref","openlayer","closelayer","PPDonercname","PPDoneobjnum","PPDone","PPDtworcname","PPDtwoobjnum","PPDtwo","layersnames","next","layersorder","layerson","layersoff","layersconfig","layersOn","thecpages","thepages","vlength","hoddlength","hevenlength","buildPageList","processNormal","processComma","processOther","processHyphen","findPages","ifFiles","Filestrue","Filesfalse","PPDfirstdoc","PPDseconddoc","PPDfirstlastpage","PPDsecondlastpage","lastpage","pdflastpage","placepages","definejnldata","normaljnldata","starjnldata","nameUse","Fileversion","Filedate"]}
-,
-"pdfpages.sty":{"envs":{},"deps":["eso-pic.sty","pdflscape.sty","ifthen.sty","count1to.sty"],"cmds":["includepdf","includepdfmerge","includepdfset","threadinfodict","AddToSurvey"]}
-,
-"pdfpc-movie.sty":{"envs":{},"deps":["etoolbox.sty","hyperref.sty","pgfkeys.sty"],"cmds":["pdfpcmovie"]}
-,
-"pdfpc.sty":{"envs":{},"deps":["kvoptions.sty","xstring.sty","iftex.sty","hyperxmp.sty"],"cmds":["pdfpcsetup","pdfpcnote"]}
-,
-"pdfprivacy.sty":{"envs":{},"deps":["ifthen.sty","kvoptions.sty"],"cmds":{}}
-,
-"pdfrender.sty":{"envs":{},"deps":["iftex.sty","infwarerr.sty","ltxcmds.sty","kvsetkeys.sty"],"cmds":["pdfrender","textpdfrender"]}
-,
-"pdfreview.sty":{"envs":["page","leftnotes","rightnotes","insertpage","listofnotes"],"deps":["adjustbox.sty","environ.sty","fp.sty","kvoptions.sty","tikzlibrarycalc.sty","twoopt.sty","grffile.sty","hyperref.sty","geometry.sty"],"cmds":["note","bnote","cnote","tnote","sourcedoc","pagegrid","gsetlength","thenote","resettrim","remark","ssout"]}
-,
-"pdfscreen.sty":{"envs":["decl","slide","screen","print"],"deps":["graphicx.sty","color.sty","calc.sty","comment.sty","hyperref.sty","shortvrb.sty","amssymb.sty","amsbsy.sty","truncate.sty","fancybox.sty"],"cmds":["arg","Arg","oarg","Oarg","emblema","urlid","screensize","margins","addButton","Acrobatmenu","imageButton","panelwidth","overlay","backgroundcolor","paneloverlay","overlayempty","paneloverlayempty","changeoverlay","bottombuttons","nobottombuttons","topbuttons","notopbuttons","realnormalsize","realsmall","realfootnotesize","realscriptsize","realtiny","reallarge","realLarge","realLARGE","realhuge","realHuge","notesname","pagedissolve","AddToOverlay","affname","Black","btl","buttonbox","buttonwidth","calfactor","change","ContPage","DBlack","divname","emailid","FBlack","fileversion","InitLayout","LBlack","LLX","LLY","marginbottom","marginleft","marginright","marginsize","margintop","NavigationPanel","overlayheight","overlaywidth","panel","panelclosename","panelcontentsname","panelfont","panelfullscreenname","panelgobackname","panelheight","panelhomepagename","panelofname","panelpagename","panelquitname","paneltitlepagename","panlabstractname","PDFBox","PDFSout","pfill","rtl","ScreenLastPage","scrNormalButton","scrShadowButton","Sectionformat","shorttitle","smallbuttonwidth","ST","st","Textmarginbottom","Textmarginleft","Textmarginright","Textmargintop","thedriver","theNUM","theoverlay","thepanel","theslide","theslideoverlay","URX","URY"]}
-,
-"pdfswitch.sty":{"envs":{},"deps":["ae.sty","aeguill.sty","ifthen.sty","ifpdf.sty","etoolbox.sty","hyperref.sty","xcolor.sty","graphicx.sty","thumbpdf.sty","backref.sty"],"cmds":{}}
-,
-"pdfsync.sty":{"envs":{},"deps":{},"cmds":["pdfsync","pdfsyncstart","pdfsyncstop"]}
-,
-"pdftexcmds.sty":{"envs":{},"deps":["infwarerr.sty","iftex.sty"],"cmds":{}}
-,
-"pdfx.sty":{"envs":{},"deps":["iftex.sty","ifpdf.sty","ifxetex.sty","everyshi.sty","ifluatex.sty","pdftexcmds.sty","xcolor.sty","inputenc.sty","hyperref.sty","colorprofiles.sty","stringenc.sty","ifthen.sty","xmpincl.sty"],"cmds":["sep","Author","Title","Language","Keywords","Publisher","Subject","Copyright","CopyrightURL","Copyrighted","Owner","CertificateURL","Contributor","Coverage","Date","PublicationType","Relation","Source","Doi","ISBN","URLlink","Journaltitle","Journalnumber","Volume","Issue","Firstpage","Lastpage","CoverDisplayDate","CoverDate","AuthoritativeDomain","Creator","CreatorTool","Org","WebStatement","Advisory","BaseURL","Identifier","Nickname","Thumbnails","MMversionID","Producer","textLAT","textLII","textLIII","textLIV","textLTV","textLVI","textLVII","textLIIX","textLIX","textKOI","textLGR","textARM","textHEB","textHEBO","textLF","pdfxEnableCommands","pdfxDisableCommands","setRGBcolorprofile","setCMYKcolorprofile","setEXTERNALprofile","pdfxSetRGBcolorProfileDir","pdfxSetCMYKcolorProfileDir","MacOSColordir","MacOSLibraryColordir","AdobeMacOSdir","WindowsColordir","showLICRs","pdfxBookmark","pdfxBookmarkString","LIIXUmapTeXnames","LIIXUscriptcommands","LIIXUtipacommands","LIIXUmapmathletterlikes","LIIXUmapmathspaces","ifcyrxmp","ifcyrKOIxmp","ifgrkxmp","ifgrkLGRxmp","ifhebxmp","ifhebHEBxmp","ifarbxmp","ifarmxmp","ifarmSCIxmp","ifdevxmp","ifvnmxmp","iflatEXTxmp","iflatLATxmp","ifipaxmp","ifmathxmp","ifexternalICCprofiles","cyrxmptrue","cyrKOIxmptrue","grkxmptrue","grkLGRxmptrue","hebxmptrue","hebHEBxmptrue","arbxmptrue","armxmptrue","armSCIxmptrue","devxmptrue","vnmxmptrue","latEXTxmptrue","latLATxmptrue","ipaxmptrue","mathxmptrue","externalICCprofilestrue","cyrxmpfalse","cyrKOIxmpfalse","grkxmpfalse","grkLGRxmpfalse","hebxmpfalse","hebHEBxmpfalse","arbxmpfalse","armxmpfalse","armSCIxmpfalse","devxmpfalse","vnmxmpfalse","latEXTxmpfalse","latLATxmpfalse","ipaxmpfalse","mathxmpfalse","externalICCprofilesfalse","LIIXUmaparabicletters","LIIXUmaparmenianletters","LIIXUmapdevaccents","LIIXUmapgreekletters","LIIXUmaphebrewletters","LIIXUmaplatinchars","LIIXUcancelfontswitches","LIIXUmapmathaccents","LIIXUmapisomathgreek","LIIXUmapmatharrowsA","LIIXUmapmathoperatorsA","LIIXUmapmathoperatorsB","LIIXUmapmiscmathsymbolsA","LIIXUmapsupparrowsA","LIIXUmapsupparrowsB","LIIXUmapmiscmathsymbolsB","LIIXUmapsuppmathoperators","LIIXUmapunimathgreek","LIIXUmapmathalphabets","AcrobatMenu","TextCopyright","insertbackfindforwardnavigationsymbol","insertslidenavigationsymbol","mathaccentV","paddingline","pdfinterwordspace","pdfstringdefPreHook","pdfxProducer","pdfxSetColorProfileDir","setCUSTOMcolorprofile","setGRAYcolorprofile","thepdfminorversion","Type"]}
-,
-"penlight.sty":{"envs":{},"deps":["luacode.sty"],"cmds":["writePDFmetadata","writePDFmetadatakv"]}
-,
-"perfectcut.sty":{"envs":{},"deps":["calc.sty","graphicx.sty","scalerel.sty","mathstyle.sty"],"cmds":["perfectcut","perfectbra","perfectket","perfectcase","perfectbrackets","perfectparens","perfectunary","perfectbinary","cutbarskip","cutangleskip","cutangleouterskip","cutinterbarskip","nthleft","nthmiddle","nthright","lenleft","lenmiddle","lenright","reallenleft","reallenmiddle","reallenright","ifcutdebug","cutdebugtrue","cutdebugfalse","bugfix","cutbraprimitive","cutketprimitive","cutprimitive"]}
-,
-"perltex.sty":{"envs":{},"deps":{},"cmds":["ifperl","perltrue","perlfalse","perlnewcommand","perlrenewcommand","perlnewenvironment","perlrenewenvironment","perldo"]}
-,
-"permute.sty":{"envs":{},"deps":{},"cmds":["pmt","pmtv","pmttable","pmtvtable","pmtshorttrue","pmtshortfalse","pmtload","pmtsave","pmtid","pmtdo","pmtcirc","pmtprint","pmtvprint","pmtimageof","pmtpreimageof","pmtprintorder","pmtseparator","pmtidname","pmtldelim","pmtrdelim","pmttableborders","pmtarraystretch"]}
-,
-"perpage.sty":{"envs":{},"deps":{},"cmds":["MakePerPage","theperpage","theabspage","MakeSorted","MakeSortedPerPage","AddAbsoluteCounter"]}
-,
-"person.sty":{"envs":{},"deps":["ifthen.sty","datatool.sty"],"cmds":["newperson","malelabels","femalelabels","addmalelabel","addfemalelabel","thepeople","removeperson","removeallpeople","removepeople","personfullname","personname","personpronoun","personobjpronoun","personpossadj","personposspronoun","personchild","personparent","personsibling","Personpronoun","Personobjpronoun","Personpossadj","Personposspronoun","Personchild","Personparent","Personsibling","peoplefullname","peoplename","peoplepronoun","Peoplepronoun","peopleobjpronoun","Peopleobjpronoun","peoplepossadj","Peoplepossadj","peopleposspronoun","Peopleposspronoun","peoplechild","Peoplechild","peopleparent","Peopleparent","peoplesibling","Peoplesibling","ifpersonexists","ifmale","iffemale","ifallmale","ifallfemale","ifmalelabel","iffemalelabel","foreachperson","do","in","malename","femalename","getpersongender","getpersonname","getpersonfullname","andname","femalechild","femalechildren","femaleobjpronoun","femaleparent","femalepossadj","femaleposspronoun","femalepronoun","femalesibling","femalesiblings","malechild","malechildren","maleobjpronoun","maleparent","malepossadj","maleposspronoun","malepronoun","malesibling","malesiblings","persongender","personlastsep","personsep","pluralchild","pluralobjpronoun","pluralparent","pluralpossadj","pluralposspronoun","pluralpronoun","pluralsibling","theperson","twopeoplesep"]}
-,
-"petiteannonce.cls":{"envs":{},"deps":["graphicx.sty","keyval.sty"],"cmds":["petiteannonce","petiteannoncewidth","petiteannonceaddtowidth"]}
-,
-"pfarrei.sty":{"envs":["bookletfrontpage","bookletbackpage","bookletemptypage","samedoublepage","prayer"],"deps":["ifpdf.sty","pdfpages.sty","keyval.sty"],"cmds":["AvToAiv","ifbooklet","bookletfrontpagestyle","motto","titlepicture","parish","makebooklettitlepage","bookletbackpagestyle","bookletemptypagestyle","setupprayer","noresponder","bookletbackpagebox","bookletemptypagebox","bookletfrontpagebox","bookletpagebox","bookletpagestyle","endbookletpagebox","pfarreirevision","pfarreirevisiondate","printbookletbackpage","printbookletpagebox","revision","revisiondate","bookletpage","endbookletpage"]}
-,
-"pfdicons.sty":{"envs":{},"deps":["tikz.sty","ifthen.sty","tikzlibrarypositioning.sty","tikzlibraryspath3.sty","tikzlibraryshapes.sty","tikzlibraryintersections.sty"],"cmds":{}}
-,
-"pfltrace.sty":{"envs":{},"deps":["platex.sty"],"cmds":{}}
-,
-"pgf-PeriodicTable.sty":{"envs":{},"deps":["tikz.sty","tikzlibraryfadings.sty","fontenc.sty"],"cmds":["pgfPT","pgfPTstyle","pgfPTresetstyle","pgfPTbuildcell","pgfPTresetcell","pgfPTbuildcellstyle","pgfPTpreviewcell","pgfPTpreviewcellstyle","pgfPTnewColorScheme","pgfPTnewZlist","usepgfPTlibrary","pgfPTGroupColors","pgfPTPeriodColors","pgfPTCScombine","pgfPTCSwrite","DH","dh","dj","DJ","guillemetleft","guillemetright","guillemotleft","guillemotright","guilsinglleft","guilsinglright","Hwithstroke","hwithstroke","k","NG","ng","quotedblbase","quotesinglbase","textogonekcentered","textquotedbl","th","TH","ifpgfPTblocos","ifpgfPTexCapitals","ifpgfPTexMode","ifpgfPTfamilias","ifpgfPTgrlabels","ifpgfPTIUPACMMIX","ifpgfPTLaAclabels","ifpgfPTlegacro","ifpgfPTlegenda","ifpgfPTlegendaextra","ifpgfPTlegendapins","ifpgfPTMNMline","ifpgfPTonlycells","ifpgfPTonlycellsPerAndGroupNum","ifpgfPTonlycellsPerAndGroupNumZ","ifpgfPTonlycellsZ","ifpgfPTperlabels","ifpgfPTtitulo","ifpgfPTvariations","ifpgfZuseboxwidth","loadcell","pgfPTArcolor","pgfPTArfont","pgfPTArlabel","pgfPTArprecision","pgfPTArstarcolor","pgfPTbcs","pgfPTbcsolid","pgfPTblocksfont","pgfPTblocosfalse","pgfPTblocostrue","pgfPTcellht","pgfPTcellinewd","pgfPTcelllinecolor","pgfPTcelllinewd","pgfPTcells","pgfPTcellstyle","pgfPTcellwd","pgfPTcolorSchemeInfo","pgfPTCpcolor","pgfPTCpfont","pgfPTCpprecision","pgfPTCScolor","pgfPTCSfont","pgfPTCSolc","pgfPTCSolwd","pgfPTcSQgas","pgfPTcSQliq","pgfPTcSQsint","pgfPTcSQsol","pgfPTCSrender","pgfPTdblockcolor","pgfPTdblockfontcolor","pgfPTdblocklinewidth","pgfPTdcolor","pgfPTdfont","pgfPTDiscCcolor","pgfPTDiscCfont","pgfPTDiscYBCscale","pgfPTDiscYcolor","pgfPTDiscYfont","pgfPTdprecision","pgfPTdunit","pgfPTeaffcolor","pgfPTeafffont","pgfPTeConfigncolor","pgfPTeConfignfont","pgfPTeConfignlcolor","pgfPTeConfignlfont","pgfPTeDistcolor","pgfPTeDistfont","pgfPTeDistsep","pgfPTEicolor","pgfPTEifont","pgfPTenegcolor","pgfPTenegfont","pgfPTEprecision","pgfPTexCapitalsfalse","pgfPTexCapitalstrue","pgfPTexModefalse","pgfPTexModetrue","pgfPTfamiliasfalse","pgfPTfamiliastrue","pgfPTfamiliesfont","pgfPTfblockcolor","pgfPTfblockfontcolor","pgfPTfblocklinewidth","pgfPTglobalfont","pgfPTgrlabelsfalse","pgfPTgrlabelstrue","pgfPTiblockcolor","pgfPTiblockfontcolor","pgfPTiblocklinewidth","pgfPTIUPACMMIXfalse","pgfPTIUPACMMIXtrue","pgfPTkTcolor","pgfPTkTfont","pgfPTkTprecision","pgfPTLaAclabelsfalse","pgfPTLaAclabelstrue","pgfPTLaAclabelsUSER","pgfPTlabfont","pgfPTlabgrcolor","pgfPTlabLaAcfont","pgfPTlabpercolor","pgfPTlanguages","pgfPTlegacrofalse","pgfPTlegacrotrue","pgfPTlegendaextrafalse","pgfPTlegendaextratrue","pgfPTlegendafalse","pgfPTlegendapinsfalse","pgfPTlegendapinstrue","pgfPTlegendatrue","pgfPTlegendbackcolor","pgfPTlegendCScolor","pgfPTlegendradiocolor","pgfPTlegendZcolor","pgfPTlsacolor","pgfPTlsafont","pgfPTlsalign","pgfPTlsbcolor","pgfPTlsbfont","pgfPTlscacolor","pgfPTlscafont","pgfPTlsccolor","pgfPTlscfont","pgfPTlscolor","pgfPTlsfont","pgfPTlsprecision","pgfPTlstxtfig","pgfPTlsunit","pgfPTMNMlinecolor","pgfPTMNMlinefalse","pgfPTMNMlinetrue","pgfPTMNMlinewidth","pgfPTnamealign","pgfPTnamecolor","pgfPTnamefont","pgfPTNames","pgfPTOcolor","pgfPTOfont","pgfPTonlycellsfalse","pgfPTonlycellsPerAndGroupNumfalse","pgfPTonlycellsPerAndGroupNumtrue","pgfPTonlycellsPerAndGroupNumZfalse","pgfPTonlycellsPerAndGroupNumZtrue","pgfPTonlycellstrue","pgfPTonlycellsZfalse","pgfPTonlycellsZtrue","pgfPTotherLangColor","pgfPTotherLangFont","pgfPTpblockcolor","pgfPTpblockfontcolor","pgfPTpblocklinewidth","pgfPTperlabelsfalse","pgfPTperlabelstrue","pgfPTradiocolor","pgfPTrblockcolor","pgfPTrblockfontcolor","pgfPTrblocklinewidth","pgfPTRcolor","pgfPTRcovcolor","pgfPTRcovfont","pgfPTRfont","pgfPTRioncolor","pgfPTRionfont","pgfPTsblockcolor","pgfPTsblockfontcolor","pgfPTsblocklinewidth","pgfPTsetLanguage","pgfPTspectracolor","pgfPTspectrafont","pgfPTtblockcolor","pgfPTtblockfontcolor","pgfPTtblocklinewidth","pgfPTTboilCcolor","pgfPTTboilCfont","pgfPTTboilcolor","pgfPTTboilfont","pgfPTtitlecolor","pgfPTtitlefont","pgfPTtitulofalse","pgfPTtitulotrue","pgfPTTmeltCcolor","pgfPTTmeltCfont","pgfPTTmeltcolor","pgfPTTmeltfont","pgfPTTprecision","pgfPTtxtcolor","pgfPTvareaffcolor","pgfPTvareafffont","pgfPTvareafffontcolor","pgfPTvarEicolor","pgfPTvarEifont","pgfPTvarEifontcolor","pgfPTvariationsfalse","pgfPTvariationstrue","pgfPTvarRcolor","pgfPTvarRfont","pgfPTvarRfontcolor","pgfPTZalign","pgfPTZback","pgfPTZcolor","pgfPTZexlist","pgfPTZexlistcolor","pgfPTZexlistfont","pgfPTZfont","pgfPTZspace","pgfZuseboxwidthfalse","pgfZuseboxwidthtrue","thetinysize"]}
-,
-"pgf-filehook.sty":{"envs":{},"deps":["filehook.sty","pgfkeys.sty"],"cmds":["pgffilehook"]}
-,
-"pgf-interference.sty":{"envs":{},"deps":["tikz.sty"],"cmds":["pgfinterferencepattern","pgfinterferenceoptions"]}
-,
-"pgf-pie.sty":{"envs":{},"deps":["tikz.sty","scalefnt.sty"],"cmds":["pie"]}
-,
-"pgf-soroban.sty":{"envs":{},"deps":["calc.sty","ifthen.sty","tikz.sty"],"cmds":["ladj","tige","cadre","barres","binoire","barbil","colbil","coltig","thexx","theyy","unba","eplia","eplib","eplic","eplid","bille","support"]}
-,
-"pgf-spectra.sty":{"envs":{},"deps":["tikz.sty"],"cmds":["pgfspectra","wlcolor","pgfspectraStyle","pgfspectraStyleReset","tempercolor","pgfspectrashade","pgfspectraplotshade","pgfspectraplotmap","pgfspectrarainbow","rO","wldez","wlquatromil","xI","xLI","xscale"]}
-,
-"pgf-umlcd.sty":{"envs":["class","abstractclass","interface","object","package","classAndInterfaceCommon"],"deps":["tikz.sty","tikzlibraryshapes.multipart.sty","tikzlibrarybackgrounds.sty","tikzlibraryfit.sty"],"cmds":["attribute","operation","instanceOf","switchUmlcdSchool","umlnote","inherit","implement","association","unidirectionalAssociation","aggregation","composition","calcuateNumberOfParts","insertAttributesAndOperations","theumlcdClassAbstractClassNum","theumlcdClassAttributesNum","theumlcdClassInterfaceNum","theumlcdClassOperationsNum","theumlcdClassSplitPartNum","umlcdClassAbstractClass","umlcdClassAbstractClassOld","umlcdClassAttributes","umlcdClassAttributesOld","umlcdClassInterface","umlcdClassInterfaceOld","umlcdClassName","umlcdClassOperations","umlcdClassOperationsOld","umlcdClassPos","umlcdPackageFit","umlcdPackageFitOld","umlcdPackageName","umldObjectName","umldrawcolor","umlfillcolor","umltextcolor","virtualoperation"]}
-,
-"pgf-umlsd.sty":{"envs":["sequencediagram","call","messcall","sdblock","callself","callanother"],"deps":["tikz.sty","tikzlibraryshadows.sty","ifthen.sty"],"cmds":["newthread","newinst","messcall","mess","prelevel","postlevel","setthreadbias","blockcolor","blockcomm","blockname","drawthread","returnvalue","theblocklevel","thecallevel","thecallselflevel","theinstnum","thepreinst","theseqlevel","thethreadnum","threadbias"]}
-,
-"pgf.sty":{"envs":{},"deps":["pgfrcs.sty"],"cmds":["pgfplotstreamstart","pgfplotstreampoint","pgfplotstreampointoutlier","pgfplotstreampointundefined","pgfplotstreamnewdataset","pgfplotstreamspecial","pgfplotstreamend","pgfdeclareplothandler","pgfsetlinetofirstplotpoint","pgfsetmovetofirstplotpoint","pgfplothandlerlineto","pgfplothandlerpolygon","pgfplothandlerdiscard","pgfplothandlerrecord","pgfplotxyfile","pgfplotxyzfile","pgfplotgnuplot","pgfplotfunction","pgfnodeparttextbox","pgfmultipartnode","pgfnode","pgfpositionnodelater","pgfpositionnodelatername","pgfpositionnodelaterminx","pgfpositionnodelatermaxx","pgfpositionnodelaterminy","pgfpositionnodelatermaxy","ifpgflatenodepositioning","pgflatenodepositioningtrue","pgflatenodepositioningfalse","pgfpositionnodelaterbox","pgfpositionnodenow","pgffakenode","pgfnodepostsetupcode","pgfnodealias","pgfnoderename","pgfcoordinate","pgfdeclaregenericanchor","pgfpointanchor","pgfpointshapeborder","pgfgetnodeparts","pgfdeclareshape","centerpoint","ifpgfshapeborderusesincircle","pgfshapeborderusesincircletrue","pgfshapeborderusesincirclefalse","northeast","southwest","radius","nodeparts","savedanchor","saveddimen","savedmacro","addtosavedmacro","anchor","deferredanchor","anchorborder","backgroundpath","foregroundpath","behindbackgroundpath","beforebackgroundpath","behindforegroundpath","beforeforegroundpath","inheritsavedanchors","inheritbehindbackgroundpath","inheritbackgroundpath","inheritbeforebackgroundpath","inheritbehindforegroundpath","inheritforegroundpath","inheritbeforeforegroundpath","inheritanchor","inheritanchorborder"]}
-,
-"pgfcalendar-ext.sty":{"envs":{},"deps":["pgfcalendar.sty"],"cmds":["pgfcalendarjulianyeartoweek","pgfcalendarcurrentweek","pgfcalendarifdateweek","pgfcalendarendjulianplus"]}
-,
-"pgfcalendar.sty":{"envs":{},"deps":["pgfrcs.sty","pgfkeys.sty"],"cmds":["pgfcalendardatetojulian","pgfcalendarjuliantodate","pgfcalendarjuliantoweekday","pgfcalendareastersunday","pgfcalendarifdate","pgfcalendarifdatejulian","pgfcalendarifdateweekday","pgfcalendarifdateyear","pgfcalendarifdatemonth","pgfcalendarifdateday","pgfcalendarweekdayname","pgfcalendarweekdayshortname","pgfcalendarmonthname","pgfcalendarmonthshortname","pgfcalendar","pgfcalendarprefix","pgfcalendarbeginiso","pgfcalendarbeginjulian","pgfcalendarendiso","pgfcalendarendjulian","pgfcalendarcurrentjulian","pgfcalendarcurrentweekday","pgfcalendarcurrentyear","pgfcalendarcurrentmonth","pgfcalendarcurrentday","ifdate","pgfcalendarshorthand","pgfcalendarsuggestedname","ifpgfcalendarmatches","pgfcalendarmatchestrue","pgfcalendarmatchesfalse","pgfinteval","pgfintabs","pgfintmax","pgfintmin","pgfintdivtruncate","pgfintdivfloor","pgfintdivround","pgfintmod","pgfintset"]}
-,
-"pgfcore.sty":{"envs":["pgfscope","pgfpicture","pgfinterruptpath","pgfinterruptboundingbox","pgfidscope","pgfinterruptpicture","pgflowlevelscope","pgfviewboxscope","pgfonlayer","pgftransparencygroup","pgfdecoration","pgfmetadecoration"],"deps":["graphicx.sty","keyval.sty","pgfmath.sty"],"cmds":["pgfintloaded","pgfinteval","pgfintabs","pgfintmax","pgfintmin","pgfintdivtruncate","pgfintdivfloor","pgfintdivround","pgfintmod","pgfintset","pgfpoint","pgfqpoint","pgfpointorigin","pgfpointtransformed","pgfpointdiff","pgfpointadd","pgfpointscale","pgfqpointscale","pgfpointintersectionoflines","pgfpointintersectionofcircles","pgfpointlineattime","pgfpointlineatdistance","pgfpointcurveattime","pgfpointarcaxesattime","pgfpointpolar","pgfqpointpolar","pgfpointpolarxy","pgfpointcylindrical","pgfpointspherical","pgfpointxy","pgfqpointxy","pgfpointxyz","pgfqpointxyz","pgfsetxvec","pgfsetyvec","pgfsetzvec","pgfpointnormalised","pgfpointborderrectangle","pgfpointborderellipse","pgfextractx","pgfextracty","pgfgetlastxy","pgfpointtransformednonlinear","pgfgetpath","pgfsetpath","pgfsetcornersarced","pgfpathmoveto","pgfpathlineto","pgfpathclose","pgfpathcurveto","pgfpathquadraticcurveto","pgfpatharc","pgfpatharcaxes","pgfpatharcto","pgfpatharctomaxstepsize","pgfpatharctoprecomputed","pgfpathellipse","pgfpathcircle","pgfpathrectangle","pgfpathrectanglecorners","pgfpathgrid","pgfpathparabola","pgfpathsine","pgfpathcosine","pgfpathcurvebetweentime","pgfpathcurvebetweentimecontinue","pgfusepath","pgfsetshortenstart","pgfsetshortenend","pgfpic","ifpgfrememberpicturepositiononpage","pgfrememberpicturepositiononpagetrue","pgfrememberpicturepositiononpagefalse","pgfscope","endpgfscope","pgfqbox","pgfqboxsynced","pgftext","pgfresetboundingbox","pgfpicture","endpgfpicture","pgfsetbaselinepointlater","pgfsetbaselinepointnow","pgfsetbaseline","pgfsettrimleftpointlater","pgfsettrimleftpointnow","pgfsettrimleft","pgfsettrimrightpointlater","pgfsettrimrightpointnow","pgfsettrimright","pgfinterruptpath","endpgfinterruptpath","pgfinterruptboundingbox","endpgfinterruptboundingbox","pgfidscope","endpgfidscope","pgfuseid","pgfclearid","pgfidrefnextuse","pgfidrefprevuse","pgfusetype","pgfpushtype","pgfpoptype","pgfaliasid","pgfgaliasid","pgfifidreferenced","pgfinterruptpicture","endpgfinterruptpicture","pgflinewidth","pgfsetlinewidth","pgfsetinnerlinewidth","pgfinnerlinewidth","pgfsetinnerstrokecolor","pgfinnerstrokecolor","pgfsetmiterlimit","pgfsetdash","pgfsetstrokecolor","pgfsetfillcolor","pgfsetcolor","pgfsetbuttcap","pgfsetroundcap","pgfsetrectcap","pgfsetmiterjoin","pgfsetbeveljoin","pgfsetroundjoin","pgfseteorule","pgfsetnonzerorule","pgfgettransform","pgfgettransformentries","pgfsettransformentries","pgfsettransform","pgftransforminvert","pgftransformcm","pgftransformtriangle","pgftransformreset","pgftransformresetnontranslations","pgftransformshift","pgftransformxshift","pgftransformyshift","pgftransformscale","pgftransformxscale","pgftransformyscale","pgftransformxslant","pgftransformyslant","pgftransformrotate","ifpgfslopedattime","pgfslopedattimetrue","pgfslopedattimefalse","ifpgfallowupsidedownattime","pgfallowupsidedownattimetrue","pgfallowupsidedownattimefalse","ifpgfresetnontranslationattime","pgfresetnontranslationattimetrue","pgfresetnontranslationattimefalse","pgftransformlineattime","pgftransformarcaxesattime","pgftransformcurveattime","pgftransformarrow","pgftransformationadjustments","pgfhorizontaltransformationadjustment","pgfverticaltransformationadjustment","pgflowlevelsynccm","pgflowlevel","pgflowlevelscope","endpgflowlevelscope","pgflowlevelobj","pgfviewboxscope","endpgfviewboxscope","pgfapproximatenonlineartranslation","pgfapproximatenonlineartransformation","pgftransformnonlinear","pgfpathqmoveto","pgfpathqlineto","pgfpathqcurveto","pgfpathqcircle","pgfusepathqstroke","pgfusepathqfill","pgfusepathqfillstroke","pgfusepathqclip","pgfdefobject","pgfuseobject","pgfuseobjectmagnify","pgfprocesssplitpath","pgfprocesssplitsubpath","pgfprocessresultsubpathprefix","pgfprocessresultsubpathsuffix","pgfprocesspathextractpoints","pgfpointfirstonpath","pgfpointsecondonpath","pgfpointsecondlastonpath","pgfpointlastonpath","pgfprocesscheckclosed","pgfprocessround","pgfprocesspathreplacestartandend","pgfdeclarearrow","pgfarrowdraw","pgfarrowtotallength","pgfsetarrowsend","pgfsetarrowsstart","pgfarrowsep","ifpgfarrowswap","pgfarrowswaptrue","pgfarrowswapfalse","ifpgfarrowreversed","pgfarrowreversedtrue","pgfarrowreversedfalse","ifpgfarrowharpoon","pgfarrowharpoontrue","pgfarrowharpoonfalse","ifpgfarrowopen","pgfarrowopentrue","pgfarrowopenfalse","pgfarrowsaddtolengthscalelist","pgfarrowsaddtowidthscalelist","pgfarrowsaddtooptions","pgfarrowsaddtolateoptions","pgfarrowlength","pgfarrowsthreeparameters","pgfarrowstheparameters","pgfarrowsfourparameters","pgfarrowslinewidthdependent","pgfarrowslengthdependent","pgfarrowssavethe","pgfarrowssave","pgfarrowshullpoint","pgfarrowsupperhullpoint","pgfarrowssettipend","pgfarrowssetbackend","pgfarrowssetlineend","pgfarrowssetvisualtipend","pgfarrowssetvisualbackend","pgfsetarrows","pgfsetarrowoptions","pgfgetarrowoptions","pgfarrowsdeclare","pgfarrowsleftextend","pgfarrowsrightextend","pgfarrowsdeclarealias","pgfarrowsdeclarereversed","pgfarrowsdeclarecombine","pgfarrowsdeclaredouble","pgfarrowsdeclaretriple","ifpgfshadingmodelrgb","pgfshadingmodelrgbtrue","pgfshadingmodelrgbfalse","ifpgfshadingmodelcmyk","pgfshadingmodelcmyktrue","pgfshadingmodelcmykfalse","ifpgfshadingmodelgray","pgfshadingmodelgraytrue","pgfshadingmodelgrayfalse","pgfdeclarehorizontalshading","pgfdeclareverticalshading","pgfdeclareradialshading","pgfdeclarefunctionalshading","pgfshadecolortorgb","pgfshadecolortocmyk","pgfshadecolortogray","pgffuncshadingrgbtocmyk","pgffuncshadingrgbtogray","pgffuncshadingcmyktorgb","pgffuncshadingcmyktogray","pgffuncshadinggraytorgb","pgffuncshadinggraytocmyk","pgfuseshading","pgfaliasshading","pgfshadepath","pgfsetadditionalshadetransform","pgfdeclareimage","pgfdeclaremask","pgfaliasimage","pgfuseimage","pgfalternateextension","pgfimage","ifpgfexternalreadmainaux","pgfexternalreadmainauxtrue","pgfexternalreadmainauxfalse","pgfrealjobname","pgfactualjobname","beginpgfgraphicnamed","endpgfgraphicnamed","pgfincludeexternalgraphics","pgfexternalreaddpth","pgfexternaldepth","pgfexternaltrimleft","pgfexternaltrimright","dpthimport","pgfexternalstorecommand","pgfexternalwidth","pgfexternalheight","pgfdeclarelayer","pgfsetlayers","pgfonlayer","endpgfonlayer","pgfdiscardlayername","pgfsetstrokeopacity","pgfsetfillopacity","pgfsetblendmode","pgfdeclarefading","pgfsetfading","pgfsetfadingforcurrentpath","pgfsetfadingforcurrentpathstroked","pgftransparencygroup","endpgftransparencygroup","pgfdeclarepatternformonly","pgfdeclarepatterninherentlycolored","pgfpatternreleasename","pgfsetfillpattern","pgfrdfabout","pgfrdfcontent","pgfrdfdatatype","pgfrdfhref","pgfrdfinlist","pgfrdfprefix","pgfrdfproperty","pgfrdfrel","pgfrdfresource","pgfrdfrev","pgfrdfsrc","pgfrdftypeof","pgfrdfvocab","arrowsize","pgfarrowinset","pgfarrowwidth","pgfarrowlinewidth","ifpgfarrowroundcap","pgfarrowroundcaptrue","pgfarrowroundcapfalse","ifpgfarrowroundjoin","pgfarrowroundjointrue","pgfarrowroundjoinfalse","pgfarrowarc","pgfarrown","pgfsetcurvilinearbeziercurve","pgfcurvilineardistancetotime","pgfpointcurvilinearbezierorthogonal","pgfpointcurvilinearbezierpolar","ifpgfshapedecorationsloped","pgfshapedecorationslopedtrue","pgfshapedecorationslopedfalse","ifpgfshapedecorationscaled","pgfshapedecorationscaledtrue","pgfshapedecorationscaledfalse","pgfdecorationrestoftext","pgfdecorationtext","pgfsetdecoratetextformatdelimiters","pgfmathfpscale","pgfmathfpparse","pgfmathfpscientific","pgfmathfplessthan","pgfmathfpgreaterthan","pgfmathfpequalto","pgfmathfpadd","pgfmathfpsubtract","pgfmathfpmultiply","pgfmathfpdivide","pgfmathfpabs","pgfmathfpneg","pgfmathfpround","pgfmathfpfloor","pgfmathfpceil","pgfmathfpmod","pgfmathfpmax","pgfmathfpmin","pgfmathfppow","pgfmathfpexp","pgfmathfpln","pgfmathfpsqrt","pgfmathfpveclen","pgfmathfpsin","pgfmathfpcos","pgfmathfptan","pgfmathfpacos","pgfmathfpasin","pgfmathfpatan","pgfmathfpcot","pgfmathfpsec","pgfmathfpcosec","pgfmathfpdeg","pgfmathfprad","pgfmathfpsetseed","pgfmathfprnd","pgfmathfprand","ifpgfmathfloatparseactive","pgfmathfloatparseactivetrue","pgfmathfloatparseactivefalse","pgflibraryfpuifactive","pgfmathfloatscale","pgfmathfloatone","pgfmathfloatparse","pgfmathfloatscientific","pgfmathfloatlessthan","pgfmathfloatgreaterthan","pgfmathfloatmaxtwo","pgfmathfloatmax","pgfmathfloatmin","pgfmathfloatmintwo","pgfmathfloattoextentedprecision","pgfmathfloatsetextprecision","pgfmathfloatifzero","pgfmathfloatiffinite","pgfmathfloatifapproxequalrel","pgfmathfloatifflags","pgfmathfloatadd","pgfmathfloatsubtract","pgfmathfloatmultiplyfixed","pgfmathfloatmultiply","pgfmathfloatdivide","pgfmathfloatsqrt","pgfmathfloatint","pgfmathfloatfloor","pgfmathfloatceil","pgfmathfloatshift","pgfmathfloatsign","pgfmathfloatabserror","pgfmathfloatrelerror","pgfmathfloatmod","pgfmathfloatmodknowsinverse","pgfmathfloatpi","pgfmathfloate","pgfmathfloatdeg","pgfmathfloatrad","pgfmathfloatsin","pgfmathfloatcos","pgfmathfloattan","pgfmathfloatcot","pgfmathfloatatan","pgfmathfloatatantwo","pgfmathfloatsec","pgfmathfloatcosec","pgfmathfloatln","pgfmathlog","pgfmathfloatexp","pgfmathfloatrand","pgfmathfloatrnd","pgfgdset","pgfgdappendtoforwardinglist","pgfgdcallbackdeclareparameter","pgfgdtriggerrequest","pgfgdcallbackrendercollectionkindstart","pgfgdcallbackrendercollectionkindstop","pgfgdcallbackrendercollection","pgfgdevent","pgfgdbegineventgroup","pgfgdendeventgroup","pgfgdeventgroup","pgfgdsetlatenodeoption","pgfgdcallbackrendernode","pgfpositionnodelatername","pgfpositionnodelaterminx","pgfpositionnodelatermaxx","pgfpositionnodelaterminy","pgfpositionnodelatermaxy","pgfgdedge","pgfgdprepareedge","pgfgdaddprepareedgehook","pgfgdsetedgecallback","pgfgddefaultedgecallback","pgfgdcallbackbeginshipout","pgfgdcallbackendshipout","pgfgdcallbackbeginnodeshipout","pgfgdcallbackendnodeshipout","pgfgdcallbackbeginedgeshipout","pgfgdcallbackendedgeshipout","pgfgdcallbackcreatevertex","pgfgdbeginlayout","pgfgdendlayout","pgfgdsubgraphnode","pgfgdsubgraphnodecontents","pgfgdbeginrequest","pgfgdendrequest","ifpgfgdlayoutscopeactive","pgfgdlayoutscopeactivetrue","pgfgdlayoutscopeactivefalse","pgfgdsetrequestcallback","ifpgfgdgraphdrawingscopeactive","pgfgdgraphdrawingscopeactivetrue","pgfgdgraphdrawingscopeactivefalse","pgfgdbeginscope","ifpgfgdresumecoroutine","pgfgdresumecoroutinetrue","pgfgdresumecoroutinefalse","pgfgdendscope","pgfgdaddspecificationhook","usegdlibrary","pgfintersectionsortbyfirstpath","pgfintersectionsortbysecondpath","pgfpointintersectionsolution","pgfintersectiongetsolutionsegmentindices","pgfintersectionsolutions","pgfintersectiongetsolutiontimes","pgfintersectionofpaths","pgfiflinesintersect","pgfintersectionoflineandcurve","pgfintersectiontolerance","pgfintersectiontoleranceupperbound","pgfintersectiontolerancefactor","pgfpointintersectionofcurves","pgfintersectionofcurves","pgfintersectionsolutionsortbytime","pgflsystemstep","pgflsystemrandomizesteppercent","pgflsystemrandomizeanglepercent","pgfdeclarelindenmayersystem","pgflsystemcurrentstep","pgflsystemcurrentleftangle","pgflsystemcurrentrightangle","pgflsystemrandomizestep","pgflsystemrandomizerightangle","pgflsystemrandomizeleftangle","pgflsystemdrawforward","pgflsystemmoveforward","pgflsystemturnright","pgflsystemturnleft","pgflsystemsavestate","pgflsystemrestorestate","pgflindenmayersystem","ifpgfluamathshowerrormessage","pgfluamathshowerrormessagetrue","pgfluamathshowerrormessagefalse","ifpgfluamathenableTeXfallback","pgfluamathenableTeXfallbacktrue","pgfluamathenableTeXfallbackfalse","ifpgfluamathcomputationactive","pgfluamathcomputationactivetrue","pgfluamathcomputationactivefalse","ifpgfluamathparseractive","pgfluamathparseractivetrue","pgfluamathparseractivefalse","pgfluamathgetresult","pgfluamathone","pgfluamathfloatone","pgfluamathreciprocal","pgfluamathpointnormalised","ifpgfluamathunitsdeclared","pgfluamathunitsdeclaredtrue","pgfluamathunitsdeclaredfalse","ifpgfluamathusedTeXfallback","pgfluamathusedTeXfallbacktrue","pgfluamathusedTeXfallbackfalse","pgfluamathparse","pgfifpatternundefined","pgfdeclarepattern","pgfpatternalias","pgfplothandlercurveto","pgfsetplottension","pgfplothandlerclosedcurve","pgfplothandlerxcomb","pgfplothandlerycomb","pgfplotxzerolevelstreamstart","pgfplotxzerolevelstreamend","pgfplotxzerolevelstreamnext","pgfplotyzerolevelstreamstart","pgfplotyzerolevelstreamend","pgfplotyzerolevelstreamnext","pgfplotxzerolevelstreamconstant","pgfplotyzerolevelstreamconstant","pgfplotbarwidth","pgfplotbarshift","pgfplothandlerybar","pgfplothandlerxbar","pgfplothandlerybarinterval","pgfplothandlerxbarinterval","pgfplothandlerconstantlineto","pgfplothandlerconstantlinetomarkright","pgfplothandlerconstantlinetomarkmid","pgfplothandlerjumpmarkright","pgfplothandlerjumpmarkleft","pgfplothandlerjumpmarkmid","pgfplothandlerpolarcomb","pgfplothandlermark","pgfsetplotmarkrepeat","pgfsetplotmarkphase","pgfplothandlermarklisted","pgfdeclareplotmark","pgfsetplotmarksize","pgfplotmarksize","pgfuseplotmark","pgfplothandlergaplineto","pgfplothandlergapcycle","pgfprofilenew","pgfprofilenewforenvironment","pgfprofilecs","pgfprofileenv","pgfprofilenewforcommand","pgfprofilenewforcommandpattern","pgfprofileshowinvocationsfor","pgfprofileshowinvocationsexpandedfor","pgfprofileinvokecommand","pgfprofilestart","pgfprofileend","pgfprofileifisrunning","pgfprofilesetrel","pgfprofilepostprocess","pgfprofileforeachentryinCSV","pgfprofilestackpush","pgfprofilestackpop","pgfprofilestacktop","pgfprofilestackifempty","pgfprofiletotwodigitstr","getsinglearrowpoints","xoutersep","youtersep","cosechalftipangle","sechalftipangle","tanhalftipangle","arrowtip","beforearrowtip","beforearrowhead","afterarrowtail","arrowtipanchor","beforearrowtipanchor","beforearrowheadanchor","afterarrowtailanchor","getdoublearrowpoints","shaftwidth","arrowboxpoints","halfboxwidth","halfboxheight","westextend","eastextend","northextend","southextend","arrowheadextend","arrowheadindent","arrowtipmiterangle","arrowheadangles","cosecarrowtipmiterangle","beforearrowheadmiterangle","cosecbeforearrowheadmiterangle","beforearrowtipmiterangle","cosecbeforearrowtipmiterangle","arrowboxcorner","ellipsecalloutpoints","xpathradius","ypathradius","pointerarc","calloutpointer","pointerradius","calloutpointeranchor","beforecalloutangle","aftercalloutangle","beforecalloutpointer","aftercalloutpointer","sinpointerangle","cospointerangle","rectanglecalloutpoints","xtemp","ytemp","xlength","ylength","pointerwidth","borderpoint","fourthpoint","borderangle","northeast","southwest","innerhalfwidth","innerhalfheight","ifpgfgateanchorsuseboundingrectangle","pgfgateanchorsuseboundingrectangletrue","pgfgateanchorsuseboundingrectanglefalse","halfside","outerxsep","outerysep","halfwidth","halfheight","tipanchor","numinputs","invertedradius","outerinvertedradius","dimensions","centerpoint","midpoint","basepoint","externalangle","halflinewidth","radius","pgfsetshapeaspect","pgfshapeaspect","pgfshapeaspectinverse","outernortheast","totalstarpoints","anglestep","calculateradii","outerradius","angletofirstpoint","angletosecondpoint","anchorouterradius","anchorinnerradius","innerradius","startangle","angle","externalx","externaly","firstangle","secondangle","sides","anchorradius","installtrapeziumparameters","rotate","leftangle","rightangle","leftextension","rightextension","outersep","externalradius","lowerleftpoint","upperleftpoint","upperrightpoint","lowerrightpoint","lowerleftmiter","upperleftmiter","upperrightmiter","lowerrightmiter","lowerleftborderpoint","upperleftborderpoint","upperrightborderpoint","lowerrightborderpoint","angletolowerleft","angletoupperleft","angletoupperright","angletolowerright","rotatedbasepoint","baseangletolowerleft","baseangletoupperleft","baseangletoupperright","baseangletolowerright","rotatedmidpoint","midangletolowerleft","midangletoupperleft","midangletoupperright","midangletolowerright","referencepoint","installsemicircleparameters","defaultradius","semicircleradius","semicirclecenterpoint","centerpointdiff","arcstartborder","arcendborder","arcstartcorner","arcendcorner","angletoarcstartborder","angletoarcendborder","angletoarcstartcorner","angletoarcendcorner","baseangletoarcstartborder","baseangletoarcendborder","baseangletoarcstartcorner","baseangletoarcendcorner","midangletoarcstartborder","midangletoarcendborder","midangletoarcstartcorner","midangletoarcendcorner","basesemicirclecenterdiff","midsemicirclecenterdiff","firstpoint","secondpoint","sineangle","reciprocalradius","trianglepoints","halfapexangle","tanhalfapexangle","cothalfapexangle","sinhalfapexangle","cosechalfapexangle","apex","lowerleft","apexanchor","lowerleftanchor","lowerrightanchor","installkiteparameters","halfuppervertexangle","halflowervertexangle","sinehalfuppervertexangle","cosechalfuppervertexangle","sinehalflowervertexangle","deltay","kitehalfwidth","kiteheight","kitedepth","toppoint","bottompoint","leftpoint","rightpoint","topmiter","bottommiter","topborderpoint","bottomborderpoint","leftborderpoint","rightborderpoint","angletotoppoint","angletoleftpoint","angletobottompoint","angletorightpoint","baseangletotoppoint","baseangletoleftpoint","baseangletobottompoint","baseangletorightpoint","midangletotoppoint","midangletoleftpoint","midangletobottompoint","midangletorightpoint","installdartparameters","halftipangle","halftailangle","cothalftipangle","dartlength","deltax","taillength","halftailseparation","tippoint","tailcenterpoint","lefttailpoint","righttailpoint","tipmiter","tailcentermiter","righttailmiter","tipborderpoint","tailcenterborderpoint","lefttailborderpoint","righttailborderpoint","angletotip","angletotailcenter","angletolefttail","angletorighttail","baseangletotip","baseangletotailcenter","baseangletolefttail","baseangletorighttail","midangletotip","midangletotailcenter","midangletolefttail","midangletorighttail","installcircularsectorparameters","halfangle","sinehalfangle","cosechalfangle","coshalfangle","cothalfangle","centermiter","centeroffset","borderradius","cornerradius","sectorcenter","arcstart","sectorcenterborder","angletosectorcenterborder","ifpgfcylinderusescustomfill","pgfcylinderusescustomfilltrue","pgfcylinderusescustomfillfalse","getcylinderpoints","xradius","yradius","cylindercenter","beforetop","afterbottom","beforetopanchor","afterbottomanchor","externalpoint","westarc","eastarc","roundedrectanglepoints","halftextwidth","halftextheight","xoffset","arcwidth","chordwidth","concavexshift","convexxshift","northeastcorner","southeastcorner","southwestcorner","northwestcorner","getchamferedrectanglepoints","tanangle","cotangle","beforenortheast","afternortheast","beforesouthwest","aftersouthwest","pgfnodepartlowerbox","loweranchor","pgfnodeparttwobox","pgfnodepartthreebox","pgfnodepartfourbox","pgfnodepartonebox","pgfnodepartsecondbox","pgfnodepartthirdbox","pgfnodepartfourthbox","ifpgfrectanglesplithorizontal","pgfrectanglesplithorizontaltrue","pgfrectanglesplithorizontalfalse","ifpgfrectanglesplitdrawsplits","pgfrectanglesplitdrawsplitstrue","pgfrectanglesplitdrawsplitsfalse","ifpgfrectanglesplitignoreemptyparts","pgfrectanglesplitignoreemptypartstrue","pgfrectanglesplitignoreemptypartsfalse","ifpgfrectanglesplitusecustomfill","pgfrectanglesplitusecustomfilltrue","pgfrectanglesplitusecustomfillfalse","rectanglesplitparameters","parts","innerxsep","innerysep","radii","calculatestarburstpoints","totalpoints","xinnerradius","yinnerradius","looppoints","thirdpoint","miterlength","angletemp","miterangle","first","second","ifpgfcloudanchorsuseellipse","pgfcloudanchorsuseellipsetrue","pgfcloudanchorsuseellipsefalse","ifpgfcloudignoresaspect","pgfcloudignoresaspecttrue","pgfcloudignoresaspectfalse","getradii","puffs","tempangle","arcradiusquotient","archeightquotient","halfarcangle","coshalfanglestep","xouterradius","youterradius","quarterarc","halfcomplementarc","arc","sechalfcomplementarc","sinhalfcomplementarc","sinquarterarc","cosquarterarc","tanquarterarc","arcendpoint","arcfirstpoint","arcstartpoint","arcrotate","sinarcrotate","cosarcrotate","arcradius","controlscale","controlone","arcmidpoint","halfchordlength","segmentheight","controltwo","arcslope","halfanglestep","endangle","lastangle","miterpoint","anglealpha","anglebeta","miterradius","anchorangle","outerarcradius","circlecenterpoint","installsignalparameters","pointerangle","halfpointerangle","cosechalfpointerangle","quarterpointerangle","cosecquarterpointerangle","secquarterpointerangle","complementquarterpointerangle","pointerapexmiter","tocornermiter","fromcornermiter","north","south","east","west","southeast","northwest","northmiter","southmiter","eastmiter","westmiter","northeastmiter","southeastmiter","southwestmiter","northwestmiter","anchornorth","anchorsouth","anchoreast","anchorwest","anchornortheast","anchorsouthwest","anchorsoutheast","anchornorthwest","tapedimensions","topbendstyle","bottombendstyle","bendyradius","outerbendyradius","innerbendyradius","bendxradius","outerbendxradius","innerbendxradius","outerhalfwidth","cothalfanglein","cothalfangleout","installparameters","tailheight","tailextend","tailangle","tailbottomangle","tailtopangle","base","mid","pgfpathsvg","pgftimelinebegin","pgftimelineend","pgftimelineentry","pgfsysanimationsloaded","pgfsysanimsnapshot","pgfsysanimsnapshotafter","pgfsysanimate","pgfsysanimkeyrestartalways","pgfsysanimkeyrestartnever","pgfsysanimkeyrestartwhennotactive","pgfsysanimkeyrepeat","pgfsysanimkeyrepeatindefinite","pgfsysanimkeyrepeatdur","pgfsysanimkeyfreezeatend","pgfsysanimkeyremoveatend","pgfsysanimkeytime","pgfsysanimkeybase","pgfsysanimkeysnapshotstart","pgfsysanimkeyoffset","pgfsysanimkeysyncbegin","pgfsysanimkeysyncend","pgfsysanimkeyevent","pgfsysanimkeyrepeatevent","pgfsysanimkeyaccesskey","pgfsysanimkeyaccumulate","pgfsysanimkeynoaccumulate","pgfsysanimkeywhom","pgfsysanimkeyrotatealong","pgfsysanimkeymovealong","pgfsysanimkeytipmarkers","pgfsysanimkeycanvastransform","pgfsysanimvalcurrent","pgfsysanimvalnone","pgfsysanimvaltext","pgfsysanimvalscalar","pgfsysanimvaldimension","pgfsysanimvalcolor","pgfsysanimvalcolorrgb","pgfsysanimvalcolorcmyk","pgfsysanimvalcolorcmy","pgfsysanimvalcolorgray","pgfsysanimvalpath","pgfsysanimvaltranslate","pgfsysanimvalscale","pgfsysanimvalviewbox","pgfsysanimvaldash","pgfanimateattribute","pgfanimateattributecode","pgfsnapshot","pgfsnapshotafter","pgfparsetime","pgfanimationset","pgfdvbeforesurvey","pgfdvbeginsurvey","pgfdvendsurvey","pgfdvaftersurvey","pgfdvbeforevisualization","pgfdvbeginvisualization","pgfdvendvisualization","pgfdvaftervisualization","pgfdvpathmovetotoken","pgfdvpathlinetotoken","pgfdvdirectionfromtoken","pgfdvdirectiontotoken","pgfdvdirectionattoken","pgfdatapoint","pgfdvmapdatapointtocanvas","pgfpointdvdatapoint","pgfpointdvlocaldatapoint","ifpgfdvhandled","pgfdvhandledtrue","pgfdvhandledfalse","pgfpathdvmoveto","pgfpathdvlineto","pgfpointdvdirection","pgfdata","pgfdeclaredataformat","pgfeoltext","pgfeol","pgfdvmathenter","pgfdvmathvalue","pgfdvmathexitbyprinting","pgfdvmathexitbyscientificformat","pgfdvmathexitbyserializing","pgfdvmathadd","pgfdvmathsub","pgfdvmathmul","pgfdvmathdiv","pgfdvmathmulfixed","pgfdvmathln","pgfdvmathlog","pgfdvmathexp","pgfdvmathpowten","pgfdvmathfloor","pgfdvmathunaryop","pgfdvmathbinop","pgfdvmathifless","ifpgfdvnewstream","pgfdvnewstreamtrue","pgfdvnewstreamfalse","pgfdvvisualizerfilter","pgfdvnamedvisualizerfilter","pgfdvdeclarestylesheet","ifpgfdvfilterpassed","pgfdvfilterpassedtrue","pgfdvfilterpassedfalse","pgfdvmathalwaysloge","pgfdvmathalwayslnten","pgfdvmathalwayszero","pgfdvmathalwaysone","pgfdecoratedcompleteddistance","pgfdecoratedremainingdistance","pgfdecoratedinputsegmentcompleteddistance","pgfdecoratedinputsegmentremainingdistance","pgfdecorationsegmentamplitude","pgfdecorationsegmentlength","pgfdecorationsegmentangle","pgfdecorationsegmentaspect","pgfmetadecorationsegmentamplitude","pgfmetadecorationsegmentlength","ifpgfdecoratepathhascorners","pgfdecoratepathhascornerstrue","pgfdecoratepathhascornersfalse","pgfdeclaredecoration","state","pgfifdecoration","pgfdeclaremetadecoration","pgfifmetadecoration","decoration","beforedecoration","afterdecoration","pgfmetadecoratedpathlength","pgfmetadecoratedcompleteddistance","pgfmetadecoratedinputsegmentcompleteddistance","pgfmetadecoratedinputsegmentremainingdistance","pgfdecoratebeforecode","pgfdecorateaftercode","pgfdecoratepath","pgfdecoratecurrentpath","pgfdecoration","endpgfdecoration","pgfdecorationpath","pgfdecoratedpath","pgfdecorateexistingpath","pgfdecoratedpathlength","pgfpointdecoratedpathfirst","pgfpointdecoratedpathlast","pgfpointdecoratedinputsegmentfirst","pgfpointdecoratedinputsegmentlast","pgfsetdecorationsegmenttransformation","pgfmetadecoratedremainingdistance","pgfpointmetadecoratedpathfirst","pgfpointmetadecoratedpathlast","pgfdecoratedinputsegmentlength","pgfdecoratedangle","pgfdecoratedinputsegmentstartangle","pgfdecoratedinputsegmentendangle","pgfdecorationcurrentinputsegment","pgfdecorationnextinputsegmentobject","pgfdecorationinputsegmentmoveto","pgfdecorationinputsegmentlineto","pgfdecorationinputsegmentcurveto","pgfdecorationinputsegmentclosepath","pgfdecorationinputsegmentlast","ifpgfdecoraterectangleclockwise","pgfdecoraterectangleclockwisetrue","pgfdecoraterectangleclockwisefalse","pgfmetadecoration","endpgfmetadecoration","ifpgfmatrix","pgfmatrixtrue","pgfmatrixfalse","pgfmatrixcurrentrow","pgfmatrixcurrentcolumn","pgfmatrixbeforeassemblenode","pgfsetmatrixrowsep","pgfsetmatrixcolumnsep","pgfmatrixrowsep","pgfmatrixcolumnsep","pgfmatrix","pgfmatrixnextcell","pgfmatrixbegincode","pgfmatrixendcode","pgfmatrixemptycode","pgfmatrixendrow","pgftransformnonlinearflatness","pgfsettransformnonlinearflatness","pgfooclass","attribute","method","pgfoosuper","pgfoovalueof","pgfooget","pgfooset","pgfooeset","pgfoolet","pgfooappend","pgfooprefix","pgfoonew","pgfoothis","pgfooobj","pgfoogc","pgfparserparse","pgfparserdef","pgfparserlet","pgfparserdefunknown","pgfparserdeffinal","pgfparserswitch","pgfparserifmark","pgfparserreinsert","pgfparserstate","pgfparsertoken","pgfparserletter","pgfparserset","pgfplotstreamstart","pgfplotstreampoint","pgfplotstreampointoutlier","pgfplotstreampointundefined","pgfplotstreamnewdataset","pgfplotstreamspecial","pgfplotstreamend","pgfdeclareplothandler","pgfsetlinetofirstplotpoint","pgfsetmovetofirstplotpoint","pgfplothandlerlineto","pgfplothandlerpolygon","pgfplothandlerdiscard","pgfplothandlerrecord","pgfplotxyfile","pgfplotxyzfile","pgfplotgnuplot","pgfplotfunction","pgfnodeparttextbox","pgfmultipartnode","pgfnode","pgfpositionnodelater","ifpgflatenodepositioning","pgflatenodepositioningtrue","pgflatenodepositioningfalse","pgfpositionnodelaterbox","pgfpositionnodenow","pgffakenode","pgfnodepostsetupcode","pgfnodealias","pgfnoderename","pgfcoordinate","pgfdeclaregenericanchor","pgfpointanchor","pgfpointshapeborder","pgfgetnodeparts","pgfdeclareshape","ifpgfshapeborderusesincircle","pgfshapeborderusesincircletrue","pgfshapeborderusesincirclefalse","nodeparts","savedanchor","saveddimen","savedmacro","addtosavedmacro","anchor","deferredanchor","anchorborder","backgroundpath","foregroundpath","behindbackgroundpath","beforebackgroundpath","behindforegroundpath","beforeforegroundpath","inheritsavedanchors","inheritbehindbackgroundpath","inheritbackgroundpath","inheritbeforebackgroundpath","inheritbehindforegroundpath","inheritforegroundpath","inheritbeforeforegroundpath","inheritanchor","inheritanchorborder","pgfsortingbuckets","pgfsortinginit","pgfsortinginsert","pgfsortingexecute"]}
-,
-"pgffor-ext.sty":{"envs":{},"deps":["pgffor.sty"],"cmds":{}}
-,
-"pgffor.sty":{"envs":{},"deps":["pgfrcs.sty","pgfmath.sty"],"cmds":["foreach","breakforeach"]}
-,
-"pgfgantt.sty":{"envs":["ganttchart"],"deps":["tikz.sty","pgfcalendar.sty","tikzlibrarybackgrounds.sty","tikzlibrarycalc.sty","tikzlibrarypatterns.sty","tikzlibrarypositioning.sty","tikzlibraryshapes.geometric.sty"],"cmds":["ganttset","newgantttimeslotformat","ganttnewline","ganttalignnewline","gantttitle","gantttitlelist","gantttitlecalendar","currentweek","startyear","startmonth","startday","ganttvrule","ganttbar","ganttgroup","ganttmilestone","ganttlinkedbar","ganttlinkedgroup","ganttlinkedmilestone","newganttchartelement","ganttlink","newganttlinktype","ganttsetstartanchor","ganttsetendanchor","xLeft","yUpper","xRight","yLower","ganttlinklabel","ganttvalueof","newganttlinktypealias","setganttlinklabel","endofdecade","querydecade"]}
-,
-"pgfkeys.sty":{"envs":{},"deps":{},"cmds":["pgfkeyssetvalue","pgfkeyssetevalue","pgfkeysaddvalue","pgfkeyslet","pgfkeysgetvalue","pgfkeysvalueof","pgfkeysifdefined","pgfkeysifassignable","pgfkeys","pgfqkeys","pgfkeysalso","pgfqkeysalso","pgfeov","pgfkeysdef","pgfkeysedef","pgfkeysdefnargs","pgfkeysedefnargs","pgfkeysdefargs","pgfkeysedefargs","pgfkeysdefaultpath","pgfkeyscurrentpath","pgfkeyscurrentname","pgfkeyscurrentkey","pgfkeyscurrentkeyRAW","pgfkeyscurrentvalue","pgfkeysnovalue","pgfkeysvaluerequired","pgfkeysaddhandleonlyexistingexception","usepgfkeyslibrary","pgfkeysfiltered","pgfqkeysfiltered","pgfkeysalsofrom","pgfkeysalsofiltered","pgfkeysalsofilteredfrom","pgfkeysactivatefamiliesandfilteroptions","pgfqkeysactivatefamiliesandfilteroptions","pgfkeysactivatesinglefamilyandfilteroptions","pgfqkeysactivatesinglefamilyandfilteroptions","pgfkeysinterruptkeyfilter","endpgfkeysinterruptkeyfilter","pgfkeyssavekeyfilterstateto","pgfkeysinstallkeyfilter","pgfkeysinstallkeyfilterhandler","pgfkeysactivatefamily","pgfkeysdeactivatefamily","pgfkeysactivatefamilies","pgfkeysiffamilydefined","pgfkeysisfamilyactive","pgfkeysgetfamily","pgfkeyssetfamily","pgfkeysevalkeyfilterwith","pgfkeyssplitpath","pgfkeyscasenumber","pgfkeyscurrentkeyfilter","pgfkeyscurrentkeyfilterargs","pgfkeyscurrentkeyfilterhandler","pgfkeyscurrentkeyfilterhandlerargs","ifpgfkeysaddeddefaultpath","pgfkeysaddeddefaultpathtrue","pgfkeysaddeddefaultpathfalse","ifpgfkeyssuccess","pgfkeyssuccesstrue","pgfkeyssuccessfalse","ifpgfkeysfilteringisactive","pgfkeysfilteringisactivetrue","pgfkeysfilteringisactivefalse","ifpgfkeysfiltercontinue","pgfkeysfiltercontinuetrue","pgfkeysfiltercontinuefalse"]}
-,
-"pgfmanual.sty":{"envs":["pgfmanualentry","pgflayout","sysanimateattribute","animateattribute","tikzanimateattribute","command","luageneric","luatable","luafield","lualibrary","luadeclare","luadeclarestyle","luanamespace","luafiledescription","luacommand","luaparameters","luareturns","parameterdescription","commandlist","internallist","math-function","math-operator","math-operators","math-keyword","contextenvironment","shape","pictype","shading","graph","gdalgorithm","dataformat","stylesheet","handler","stylekey","key","keylist","predefinedmethod","ooclass","method","classattribute","predefinednode","coordinatesystem","snake","decoration","pathoperation","datavisualizationoperation","package","pgfmodule","pgflibrary","purepgflibrary","tikzlibrary","pgfkeyslibrary","filedescription","packageoption","textoken","class","arrowtipsimple","arrowtip","arrowcap","pattern","arrowexamples","arrowcapexamples","codeexample"],"deps":{},"cmds":["ifpgfmanualprettyenabled","pgfmanualprettyenabledtrue","pgfmanualprettyenabledfalse","pgfmanualclosebrace","pgfmanualprettyprintcode","pgfmanualprettyprintstyles","ifpgfmanualprettycommentactive","pgfmanualprettycommentactivetrue","pgfmanualprettycommentactivefalse","pgfmanualprettyprinterhandlecollectedargs","pgfmanualprettyprinterhandlecollectedargsVtwo","ifpgfmanualprettyprinterarghasunmatchedbraces","pgfmanualprettyprinterarghasunmatchedbracestrue","pgfmanualprettyprinterarghasunmatchedbracesfalse","pgfmanualprettyprintercollectargcount","ifpgfmanualprettyprinterfoundterminator","pgfmanualprettyprinterfoundterminatortrue","pgfmanualprettyprinterfoundterminatorfalse","pgfmanualprettyprintercollectupto","pgfmanualprettyprinterterminator","pgfmanualprettyprintpgfkeys","ifpgfmanualpdfwarnings","pgfmanualpdfwarningstrue","pgfmanualpdfwarningsfalse","ifpgfmanualshowlabels","pgfmanualshowlabelstrue","pgfmanualshowlabelsfalse","pgfmanualpdflabel","pgfmanualpdfref","declareandlabel","verbpdfref","pgfmanualtargetcount","thepgfmanualentry","pgfmanualentryheadline","pgfmanualbody","origtexttt","exclamationmarktext","atmarktext","pgfmanualnormalbar","includeluadocumentationof","parametercount","saveditemcommand","savedlistcommand","denselist","restorelist","parameteritem","extractinternalcommand","mvar","extractmathfunctionname","mathdefaultname","mathurl","pgfmanualemptytext","pgfmanualvbarvbar","mathtest","mathtype","mathinfixoperator","mathprefixoperator","mathpostfixoperator","mathgroupoperator","mathconditionaloperator","mathcommand","makemathcommand","calcname","extracttikzmathkeyword","extractcommand","luaextractcommand","extractenvironement","extractplainenvironement","extractcontextenvironement","gobble","extracthandler","choicesep","choicearg","iffirstchoice","firstchoicetrue","firstchoicefalse","mchoice","insertpathifneeded","extractkey","extractkeyequal","extractdefault","extractinitial","extractequalinitial","keyalias","iffirsttime","firsttimetrue","firsttimefalse","pgfmanualdecomposecount","decompose","decomposetoodeep","decomposefindlast","indexkey","extractpredefinedmethod","extractmethod","extractattribute","pgfmanualbar","pgfmanualtest","doublebs","opt","ooarg","pgfmanualopt","beamer","pdf","eps","pgfname","tikzname","pstricks","prosper","seminar","texpower","foils","getridofats","getridtest","removeats","strippedat","strippedtext","stripcommand","printanat","declare","pgfmanualdeclare","myprintocmmand","example","themeauthor","indexoption","itemcalendaroption","extractclass","noindexing","processaction","arrowcapexample","arrowexample","arrowexampledup","arrowexampledupdot","arrowexampledouble","symarrow","symarrowdouble","sarrow","sarrowdouble","carrow","myvbar","plotmarkentry","plotmarkentrytikz","returntospace","showreturn","commenthandler","typesetcomment","ifpgfmanualtikzsyntaxhilighting","pgfmanualtikzsyntaxhilightingtrue","pgfmanualtikzsyntaxhilightingfalse","pgfmanualanimscale","examplesource","opensource","examplelines","exampleline","readexamplelines","ifcodeexamplefromfile","codeexamplefromfiletrue","codeexamplefromfilefalse","codeexamplewidth","codeexamplebox","codeexampleboxanim","pgfmanualdolisting","pgfmanualcslinkpreskip","pgfmanualswitchoncolors","pgfmanualwordstartup","noligs","pgfmanualnoligs"]}
-,
-"pgfmath-xfp.sty":{"envs":{},"deps":["pgfmath.sty"],"cmds":["pgfmxfpdeclarefunction","pgfmxfpDate","pgfmxfpVersion"]}
-,
-"pgfmath.sty":{"envs":{},"deps":["pgfrcs.sty"],"cmds":["pgfmathloaded","pgfmathsetlength","pgfmathaddtolength","pgfmathsetcount","pgfmathaddtocount","pgfmathsetcounter","pgfmathaddtocounter","pgfmathsetmacro","pgfmathsetlengthmacro","pgfmathtruncatemacro","pgfmathnewcounter","pgfmathmakecounterglobal","pgfmathanglebetweenpoints","pgfmathanglebetweenlines","pgfmathrotatepointaround","pgfmathreflectpointalongaxis","pgfmathpointintersectionoflineandarc","pgfmathangleonellipse","pgfmathincluded","ifpgfmathcontinueloop","pgfmathcontinuelooptrue","pgfmathcontinueloopfalse","pgfmathloop","repeatpgfmathloop","pgfmathbreakloop","pgfmathreturn","pgfmathcounter","pgfmathsmuggle","ifpgfmathfloat","pgfmathfloattrue","pgfmathfloatfalse","ifpgfmathunitsdeclared","pgfmathunitsdeclaredtrue","pgfmathunitsdeclaredfalse","ifpgfmathmathunitsdeclared","pgfmathmathunitsdeclaredtrue","pgfmathmathunitsdeclaredfalse","ifpgfmathignoreunitscale","pgfmathignoreunitscaletrue","pgfmathignoreunitscalefalse","pgfmathprint","pgfmathparse","pgfmathqparse","pgfmathpostparse","pgfmathscaleresult","pgfmathsetresultunitscale","pgfmathresultunitscale","pgfmathifexpression","pgfmathdeclareoperator","pgfmathdeclarefunction","pgfmathredeclarefunction","pgfmathnotifynewdeclarefunction","pgfmathdeclarepseudoconstant","pgfmathredeclarepseudoconstant","pgfmathadd","pgfmathsubtract","pgfmathneg","pgfmathmultiply","pgfmathdivide","pgfmathreciprocal","pgfmathdiv","pgfmathmod","pgfmathMod","pgfmathabs","pgfmathsign","pgfmathe","pgfmathln","pgfmathlogten","pgfmathlogtwo","pgfmathexp","pgfmathsqrt","pgfmathpow","pgfmathfactorial","pgfmathpi","pgfmathiftrigonometricusesdeg","pgfmathradians","pgfmathdeg","pgfmathrad","pgfmathsin","pgfmathcos","pgfmathsincos","pgfmathtan","pgfmathcosec","pgfmathsec","pgfmathcot","pgfmathasin","pgfmathacos","pgfmathatan","pgfmathatantwo","pgfmathsetseed","pgfmathgeneratepseudorandomnumber","pgfmathrnd","pgfmathrand","pgfmathrandom","pgfmathrandominteger","pgfmathdeclarerandomlist","pgfmathrandomitem","pgfmathgreater","pgfmathgreaterthan","pgfmathless","pgfmathlessthan","pgfmathequal","pgfmathequalto","ifpgfmathcomparison","pgfmathcomparisontrue","pgfmathcomparisonfalse","pgfmathapproxequalto","pgfmathifthenelse","pgfmathnotequal","pgfmathnotless","pgfmathnotgreater","pgfmathand","pgfmathor","pgfmathnot","pgfmathtrue","pgfmathfalse","pgfmathbin","pgfmathhex","pgfmathHex","pgfmathoct","pgfmathbasetodec","pgfmathdectobase","pgfmathdectoBase","pgfmathbasetobase","pgfmathbasetoBase","pgfmathsetbasenumberlength","pgfmathtodigitlist","pgfmathround","pgfmathfloor","pgfmathceil","pgfmathint","pgfmathfrac","pgfmathreal","pgfmathveclen","pgfmathcosh","pgfmathsinh","pgfmathtanh","pgfmathscientific","pgfmathwidth","pgfmathheight","pgfmathdepth","pgfmatharray","pgfmathdim","pgfmathmax","pgfmathmin","pgfmathscalar","pgfmathgcd","pgfmathisprime","pgfmathisodd","pgfmathiseven","ifpgfmathfloatcomparison","pgfmathfloatcomparisontrue","pgfmathfloatcomparisonfalse","ifpgfmathfloatroundhasperiod","pgfmathfloatroundhasperiodtrue","pgfmathfloatroundhasperiodfalse","ifpgfmathprintnumberskipzeroperiod","pgfmathprintnumberskipzeroperiodtrue","pgfmathprintnumberskipzeroperiodfalse","ifpgfmathfloatroundmayneedrenormalize","pgfmathfloatroundmayneedrenormalizetrue","pgfmathfloatroundmayneedrenormalizefalse","pgfmathfloatparsenumber","pgfmathfloatqparsenumber","pgfmathfloattomacro","pgfmathfloattoregisters","pgfmathfloattoregisterstok","pgfmathfloatgetflags","pgfmathfloatgetflagstomacro","pgfmathfloatgetmantissa","pgfmathfloatgetmantisse","pgfmathfloatgetmantissatok","pgfmathfloatgetmantissetok","pgfmathfloatgetexponent","pgfmathfloatcreate","pgfmathfloattofixed","pgfmathfloattoint","pgfmathfloattosci","pgfmathfloatvalueof","pgfmathroundto","pgfmathroundtozerofill","pgfmathfloatround","pgfmathfloatroundzerofill","pgfmathfloatrounddisplaystyle","pgfmathfloatgetfrac","pgfmathgreatestcommondivisor","pgfmathifisint","pgfmathprintnumber","pgfmathprintnumberto","ifpgfmathfloatparsenumberpendingperiod","pgfmathfloatparsenumberpendingperiodtrue","pgfmathfloatparsenumberpendingperiodfalse","pgfretval","pgfmathresult","pgfmathresulty","pgfmathresultx","pgfmathresultdenom","pgfmathresultfractional","pgfmathresultnumerator","pgfmathresultX"]}
-,
-"pgfmolbio.sty":{"envs":["pmbdomains"],"deps":["ifluatex.sty","luatexbase.sty","xcolor.sty","tikz.sty","tikzlibrarypositioning.sty","tikzlibrarysvg.path.sty"],"cmds":["pgfmolbioset","pmbprotocolsizes","pmbchromatogram","addfeature","setfeaturestyle","setfeaturestylealias","setfeatureshape","xLeft","xMid","xRight","yMid","pmbdomvalueof","featureSequence","residueNumber","currentResidue","setfeatureshapealias","setfeaturealias","setdisulfidefeatures","adddisulfidefeatures","removedisulfidefeatures","setfeatureprintfunction","removefeatureprintfunction","pmbdomdrawfeature","inputuniprot","inputgff"]}
-,
-"pgfmorepages.sty":{"envs":{},"deps":["pgfcore.sty","calc.sty"],"cmds":["pgfpagesuselayout","pgfpagesdeclarelayout","pgfpagesphysicalpageoptions","pgfpageslogicalpageoptions","pgfpagesshipoutlogicalpage","pgfpagescurrentpagewillbelogicalpage","pgfshipoutphysicalpage","pgfhookintoshipout","pgfsetupphysicalpagesizes","ifpgfphysicalpageempty","pgfphysicalpageemptytrue","pgfphysicalpageemptyfalse","pgfphysicalheight","pgfphysicalwidth","pgfpageoptionheight","pgfpageoptionwidth","pgfpageoptionborder","pgfpageoptioncornerwidth","pgfpageoptionfirstshipout","pgfpageoptionfirstcenter","pgfpageoptionsecondcenter","pgfpageoptiontwoheight","pgfpageoptiontwowidth","ifpgfpagesship","pgfpagesshiptrue","pgfpagesshipfalse","pgfactualpage","pgfpageoptionbordercode","pgfmorepagesloadextralayouts","pgfpagesphysicalpage","pgfpagessetdefaults"]}
-,
-"pgfopts.sty":{"envs":{},"deps":["pgfkeys.sty"],"cmds":["ProcessPgfOptions","ProcessPgfPackageOptions"]}
-,
-"pgfornament-han.sty":{"envs":{},"deps":["xpatch.sty","pgfornament.sty"],"cmds":["pgfornamenthan","pgfOrnamentsHanObject"]}
-,
-"pgfornament.sty":{"envs":["newfamily"],"deps":["tikz.sty"],"cmds":["newpgfornamentfamily","pgfornament","pgfornamentline","pgfornamenthline","pgfornamentvline","getornamentlength","resetpgfornamentstyle","callornament","pgfornamentscale","pgfornamentwidth","pgfornamentheight","pgfornamentcolor","pgfornamentopacity","pgfornamentanchor","pgfornamentydelta","ornamenttopos","ornamenttoanchor","ornamenttosymmetry","ornamentlen","nbo","pgfOrnamentsObject","OrnamentsFamily","SavedOrnamentsFamily"]}
-,
-"pgfpages-rl.sty":{"envs":{},"deps":["luatex.sty","pgfpages.sty","ifluatex.sty"],"cmds":["pgfpagespoint"]}
-,
-"pgfpages.sty":{"envs":{},"deps":["pgfcore.sty","calc.sty"],"cmds":["pgfpagesuselayout","pgfpagesdeclarelayout","pgfpagesphysicalpageoptions","pgfpageslogicalpageoptions","pgfpagesshipoutlogicalpage","pgfpagescurrentpagewillbelogicalpage","pgfshipoutphysicalpage","pgfhookintoshipout","pgfsetupphysicalpagesizes","ifpgfphysicalpageempty","pgfphysicalpageemptytrue","pgfphysicalpageemptyfalse","pgfphysicalheight","pgfphysicalwidth","pgfpageoptionheight","pgfpageoptionwidth","pgfpageoptionborder","pgfpageoptioncornerwidth","pgfpageoptionfirstshipout","pgfpageoptionfirstcenter","pgfpageoptionsecondcenter","pgfpageoptiontwoheight","pgfpageoptiontwowidth"]}
-,
-"pgfparser.sty":{"envs":{},"deps":["pgfrcs.sty","pgfkeys.sty"],"cmds":["pgfparserparse","pgfparserdef","pgfparserlet","pgfparserdefunknown","pgfparserdeffinal","pgfparserswitch","pgfparserifmark","pgfparserreinsert","pgfparserstate","pgfparsertoken","pgfparserletter","pgfparserset"]}
-,
-"pgfplots.sty":{"envs":["axis","loglogaxis","semilogxaxis","semilogyaxis","pgfplotsinterruptdatabb"],"deps":["graphicx.sty","tikzlibraryplotmarks.sty","tikzlibrarydecorations.pathmorphing.sty"],"cmds":["addplot","pgfplotsset","nextlist","pgfplotslegendfromname","pgfplotscolorbarfromname","pgfplotsrevision","pgfplotsversion","pgfplotsversiondatetime","pgfplotsrevisiondatetime","pgfplotsversiondate","pgfplotsrevisiondate","ifpgfplotsthreedim","pgfplotsthreedimtrue","pgfplotsthreedimfalse","pgfnodepartimagebox","axisdefaultwidth","axisdefaultheight","pgfplotsifaxisthreedim","pgfplotsifcurplotthreedim","pgfplotsifcyclelistexists","pgfplotscreateplotcyclelist","pgfplotsmarklistfill","pgfplotsdeprecatedstylecheck","pgfplotspointmeta","pgfplotspointmetarange","pgfplotspointmetatransformed","pgfplotspointmetatransformedrange","length","disstart","disend","discontstyle","pgfplotsretval","pgfplotsextra","curcolumnNum","maxcolumnCount","legendplotpos","theHpgfplotslink","pgfmathlogtologten","upperrightcorner","lowerleftinnercorner","innerdiagonal","origin","xaxisvec","yaxisvec","pgfplotsdefineaxistype","pgfplotssetaxistype","pgfplotssetlayers","pgfplotsonlayer","endpgfplotsonlayer","pgfplotsgetlayerforstyle","pgfplotspointorigininternal","pgfplotspointupperrightcorner","pgfplotspointaxisorigin","pgfplotspointdescriptionbyanchor","pgfplotspointbblowerleft","pgfplotspointbbupperright","pgfplotspointbbdiagonal","pgfplotspathaxisoutline","pgfplotspointaxisxy","pgfplotspointaxisxyz","pgfplotsqpointaxisxy","pgfplotsqpointaxisxyz","pgfplotspointnormalizedaxisxy","pgfplotspointnormalizedaxisxyz","pgfplotspointaxisdirectionxy","pgfplotspointaxisdirectionxyz","pgfplotspointdescriptionxy","pgfplotsqpointdescriptionxy","pgfplotspointrelaxisxy","pgfplotspointrelaxisxyz","pgfplotstransformcoordinatex","pgfplotstransformcoordinatey","pgfplotstransformcoordinatez","pgfplotstransformdirectionx","pgfplotstransformdirectiony","pgfplotstransformdirectionz","ifpgfplotscolorbarCMYKworkaround","pgfplotscolorbarCMYKworkaroundtrue","pgfplotscolorbarCMYKworkaroundfalse","pgfplotscolorbardrawstandalone","pgfplotsifnodeexists","axispath","pgfplotsinterruptdatabb","endpgfplotsinterruptdatabb","logten","reciproclogten","logi","axisdefaultticklabel","axisdefaultticklabellog","legend","addlegendimage","addlegendentry","addlegendentryexpanded","pgfplotssetlateoptions","pgfplotsifissurveyphase","pgfplotsifisvisualizationphase","pgfplotsifinaxis","numplots","numplotsofactualtype","closedcycle","pgfplotsaxisplotphase","pgfplotsreplacepdfmark","axis","endaxis","semilogxaxis","endsemilogxaxis","semilogyaxis","endsemilogyaxis","loglogaxis","endloglogaxis","pgfplotsloglevel","pgfplotsglobalretval","pgfplotsthrow","pgfplotswarning","pgfplotstry","endpgfplotstry","pgfplotsrethrow","pgfplotsexceptionmsg","pgfplotsiffileexists","usepgfplotslibrary","pgfplotsiflibraryloaded","pgfplotsusecompatibilityfile","pgfplotsqaftergroupeach","pgfplotsaftergroupcollectinto","pgfplotscommandtostring","pgfplotsmathmin","pgfplotsmathmax","pgfplotsmathlessthan","pgfplotsmathfloatmax","pgfplotsmathfloatmin","pgfplotsscalarproductofvectors","pgfplotsqpointxy","pgfplotsqpointxyz","pgfplotsutilforeachcommasep","as","pgfplotsforeachentryinCSV","pgfplotsforeachentryinCSVisterminated","pgfplotsforeachungrouped","pgfplotsforeachtodomain","ifpgfplotsforeachungroupedassumenumeric","pgfplotsforeachungroupedassumenumerictrue","pgfplotsforeachungroupedassumenumericfalse","pgfplotsinvokeforeach","pgfplotsforeachlogarithmicformatresultwith","pgfplotsforeachlogarithmicungrouped","pgfplotsforeachlogarithmicmathid","pgfplotsmathmodint","ifpgfplotsloopcontinue","pgfplotsloopcontinuetrue","pgfplotsloopcontinuefalse","pgfplotsloop","pgfplotsutilstrcmp","pgfplotsmathcarttopol","pgfplotsmathcarttopolbasic","pgfplotsmathpoltocart","pgfplotsmathpoltocartbasic","pgfplotsmathdeclarepseudoconstant","pgfplotsmathredeclarepseudoconstant","pgfplotsmathdefinemacrolnbase","pgfplotsutilifstartswith","pgfplotsutilstrreplace","pgfplotsutilifstringequal","pgfplotsutilifcontainsmacro","pgfmathparsex","pgfplotsutilifdatelessthan","cmp","pgfplotsutilifdategreaterthan","pgfplotsutilsortthree","pgfplotsutilsortfour","pgfplotsmathvectortostring","pgfplotsmathvectorfromstring","pgfplotsmathvectorsubtract","pgfplotsmathvectoradd","pgfplotsmathvectorcompwise","pgfplotsmathvectorsum","pgfplotsmathvectorscalarproduct","pgfplotsmathvectortocomponents","pgfplotsmathvectorcrossprod","pgfplotsmathvectorscaleindividually","pgfplotspointfromcsvvector","pgfplotsmathvectorlength","pgfplotsmathvectorscale","pgfplotsmathvectordatascaletrafoinverse","pgfplotsDQ","pgfplotsVERTBAR","pgfplotsHASH","pgfplotsPERCENT","CATCODE","LONG","ifpgfplotslistempty","pgfplotslistemptytrue","pgfplotslistemptyfalse","pgfplotslistnewempty","pgfplotslistnew","pgfplotslistcopy","to","pgfplotslistpushfront","pgfplotslistpushfrontglobal","pgfplotslistpushback","pgfplotslistpushbackglobal","pgfplotslistconcat","pgfplotslistpopfront","pgfplotslistfront","pgfplotslistsize","pgfplotslistselect","of","pgfplotslistselectorempty","pgfplotslistset","pgfplotslistcheckempty","pgfplotslistforeach","pgfplotslistforeachungrouped","pgfplotsapplistnewempty","pgfplotsapplistpushback","pgfplotsapplistedefcontenttomacro","pgfplotsapplistxdefcontenttomacro","pgfplotsapplistexecute","pgfplotsapplistXnewempty","pgfplotsapplistXpushback","pgfplotsapplistXflushbuffers","pgfplotsapplistXedefcontenttomacro","pgfplotsapplistXxdefcontenttomacro","pgfplotsapplistXlet","pgfplotsapplistXexecute","pgfplotsprependlistXnewempty","pgfplotsprependlistXpushfront","pgfplotsprependlistXflushbuffers","pgfplotsprependlistXlet","pgfplotsapplistXXnewempty","pgfplotsapplistXX","pgfplotsapplistXXclear","pgfplotsapplistXXpushback","pgfplotsapplistXXflushbuffers","pgfplotsapplistXXedefcontenttomacro","pgfplotsapplistXXxdefcontenttomacro","pgfplotsapplistXXlet","pgfplotsapplistXXexecute","pgfplotsapplistXXglobalnewempty","pgfplotsapplistXXglobal","pgfplotsapplistXXglobalclear","pgfplotsapplistXXglobalpushback","pgfplotsapplistXXglobalflushbuffers","pgfplotsapplistXXglobaledefcontenttomacro","pgfplotsapplistXXglobalxdefcontenttomacro","pgfplotsapplistXXgloballet","pgfplotsapplistXXglobalexecute","pgfplotsgloballet","pgfplotsapplistXglobalnewempty","pgfplotsapplistXglobalpushback","pgfplotsapplistXglobalflushbuffers","pgfplotsapplistXgloballet","ifpgfplotsarrayempty","pgfplotsarrayemptytrue","pgfplotsarrayemptyfalse","pgfplotsarraynewempty","pgfplotsarraynewemptyglobal","pgfplotsarrayresize","pgfplotsarrayresizeglobal","pgfplotsarrayifdefined","pgfplotsarraynew","pgfplotsarrayfrompgfplotslist","pgfplotsarraycopy","pgfplotsarraypushback","pgfplotsarraypushbackglobal","pgfplotsarraysize","pgfplotsarraysizetomacro","pgfplotsarraysizeof","pgfplotsarrayselect","pgfplotsarrayvalueofelem","pgfplotsarrayset","pgfplotsarraysetglobal","pgfplotsarrayletentry","pgfplotsarrayletentryglobal","pgfplotsarraytotext","pgfplotsarraycheckempty","pgfplotsarrayforeach","pgfplotsarrayforeachindex","pgfplotsarrayforeachungrouped","pgfplotsarrayforeachreversed","pgfplotsarrayforeachreversedungrouped","pgfplotsarraysort","pgfplotsarrayinsertionsort","pgfplotsarraybinarysearch","pgfplotsmatrixnewempty","pgfplotsmatrixresize","pgfplotsmatrixifdefined","pgfplotsmatrixsize","pgfplotsmatrixsizetomacro","pgfplotsmatrixselect","pgfplotsmatrixvalueofelem","pgfplotsmatrixset","pgfplotsmatrixletentry","pgfplotsmatrixforeach","pgfplotsmatrixforeachrowindex","pgfplotsmatrixforeachcolindex","pgfplotsmatrixforeachrowend","pgfplotsmatrixtotext","pgfplotsmatrixLUdecomp","perm","sign","pgfplotsmatrixLUdecompwarnsingular","pgfplotsmatrixLUbacksubst","inout","pgfplotsmatrixsolveLEQS","pgfplotstableread","pgfnumtableread","pgfplotstableifiscreateonuse","pgfplotstablegenerateuniquecolnamefor","pgfplotstablegetcolumnbyname","pgfplotstableresolvecolname","pgfplotstablegetcolumn","pgfplotstablegetcolumnnamebyindex","pgfplotstablegetcolumnindexforname","pgfplotstablegetcolumnbyindex","pgfplotstablecopy","pgfplotstablegetname","pgfplotstablenameof","pgfplotstablegetscanlinelength","pgfplotstablescanlinelengthof","pgfplotstablereadpreparecatcodes","pgfplotstablecollectoneargwithpreparecatcodes","pgfplotstablecollectoneargwithpreparecatcodesnorestore","pgfplotstableinstallignorechars","pgfplotstableuninstallignorechars","pgfplotstablename","pgfplotstablerow","pgfplotstablelineno","pgfplotstablereadgetcolindex","pgfplotstablereadgetcolname","pgfplotstablereadgetptrtocolname","pgfplotstablereadgetptrtocolindex","pgfplotstablereadevalptr","pgfplotstablereadvalueofptr","pgfplotstableforeachcolumn","pgfplotstablereadvalueofcolname","pgfplotstablereadvalueofcolindex","getthisrow","thisrow","thisrowno","lineno","getthisrowno","pgfplotstableset","pgfplotstabletypeset","pgfplotstabletypesetfile","pgfplotstablecreatecol","pgfplotstablecol","pgfplotstableforeachcolumnelement","pgfplotstablemodifyeachcolumnelement","pgfplotstablegetelem","pgfplotstablegetcolumnlist","pgfplotstablegetrowsof","pgfplotstablegetcolsof","pgfplotsdequenewempty","pgfplotsdequecopy","pgfplotsdequepushback","pgfplotsdequepopfront","pgfplotsdequecheckempty","pgfplotsdequeforeach","pgfplotsbinaryatcode","pgfplotscharno","pgfplotsbinarytoluabinary","pgfplotsgetchar","pgfplotsbinarysetbytes","pgfplotsbinaryempty","pgfplotsbinaryencodeunsigned","pgfplotsbinaryencodesignedmaplinearly","pgfplotsbinaryencodedimenmaplinearly","beginpgfplotsverbatim","endpgfplotsverbatim","pgfplotslibrarysurfprocesscoordinate","pgfplotslibrarysurfusepath","pgfplotslibrarysurfstreamstart","pgfplotslibrarysurfstreamend","pgfplotslibrarysurfdraw","pgfplotslibrarysurfstreamcoord","pgfplotslibrarysurfdrawinpicture","pgflibrarysurfshadingifactive","pgfplotscreatecolormap","pgfplotscolormapsetadditionalintervalwidth","pgfplotscolormapifisuniform","pgfplotscolormaptodatafile","pgfplotscolormapgetmeshwidth","pgfplotscolormapserializecomponentstomacro","pgfplotscolormapserializeXtomacro","pgfplotscolormapserializetomacro","pgfplotscolormapgetpositions","pgfplotscolormappdfmax","pgfplotscolormapsizeof","pgfplotscolormapgetcolor","pgfplotscolormaplastindexof","pgfplotscolormapifrequiresextrainterval","pgfplotscolormapifdrawslastcolor","pgfplotscolormaptopdffunction","pgfplotscolormapifdefined","pgfplotscolormapassertexists","pgfplotscolormaptoshadingspec","pgfplotscolormaptoshadingspectorgb","pgfplotscolormapreversedtoshadingspec","pgfplotscolormaprange","pgfplotscolormapgetcolorspace","pgfplotscolormapgetcolorcomps","pgfplotscolormapcolorspaceof","pgfplotscolormapcolorcompsof","pgfplotscolormapfind","pgfplotscolormapfindpiecewiseconst","pgfplotscolormapgetindex","pgfplotscolormapaccess","pgfplotscolormapdefinemappedcolor","pgfplotscolornormalizesequence","endpgfplotscolornormalizesequence","pgfplotscolornormalizesequencenextbycomponents","pgfplotsretvalb","pgfplotscolorspacegetcomponents","pgfplotscolornormalizesequencegetnumcomponents","pgfplotscolornormalizesequencenext","pgfplotscolornormalizesequencezero","pgfplotscolorzero","pgfplotscolornormalizesequenceaddweighted","pgfplotscoloraddweighted","pgfplotspointgetzerolevelcoordinates","pgfplotspointgetnormalizedzerolevelcoordinates","pgfplotssurveyphaseinputclass","pgfplotsresetplothandler","pgfplotsplothandlerserializepointto","pgfplotsplothandlerdeserializepointfrom","pgfplotsplothandlerpointtokeys","pgfplotsplothandlerserializestateto","pgfplotsplothandlervisualizejump","pgfplotsplothandlersurveypointattime","pgfplotsplothandlersurveydifflen","pgfplotsplothandlertransformslopedattime","pgfplotsplothandlerifcurrentpointcanbefirstlast","pgfplotsaxisupdatelimitsforcoordinatethreedim","pgfplotsaxisparsecoordinatethreedim","pgfplotsaxisupdatelimitsforcoordinatetwodim","pgfplotsaxisparsecoordinatetwodim","pgfplotsaxisupdatelimitsforcoordinate","pgfplotsaxisparsecoordinate","pgfplotsplothandlerquiver","pgfplotsplothandlerquivererror","pgfplotsplothandlerhistogram","pgfplotsplothandlerhistadvancebin","pgfplotsplothandlerhistgetintervalstartfor","pgfplotsplothandlerhistgetbinfor","pgfplotsplothandlerhistsettol","pgfplotsplothandlercontourprepared","pgfplotsplothandlersurveybeforesetpointmeta","pgfplotsplothandlersurveyaftersetpointmeta","pgfplotsplothandlercontourexternal","pgfplotscontourpopulateallkeys","numcoords","ordering","infile","outfile","pgfplotsmetamin","pgfplotsmetamax","script","scriptbase","scriptext","thecontourlevels","thecontournumber","pgfplotsplothandlertofile","pgfplotsplothandlertofilegeneratedscanlinemarks","pgfplotsplothandlercontourfilled","pgfplotscontourfilledcolormap","pgfplotsplothandlermesh","pgfplotsplothandlername","pgfplotsplothandlersurveystart","pgfplotsplothandlersurveypoint","pgfplotsplothandlersurveyend","pgfplotsplothandlernotifyscanlinecomplete","pgfplotsplothandlerLUAfactory","pgfplotsplothandlerLUAvisualizerfactory","pgfplotspreparemeshkeydefaults","pgfplotsautocompletemeshkeys","pgfplotspatchvertex","endvertex","pgfplotspatchvertexstruct","pgfplotspatchvertexx","pgfplotspatchvertexy","pgfplotspatchvertexmeta","pgfplotspatchvertexdepth","pgfplotspatchvertexcoords","pgfplotspatchvertexcopymeta","pgfplotspatchvertexcopymetaifbounded","pgfplotspointpatchvertex","pgfplotspatchvertexaccumstart","pgfplotspatchvertexadd","times","pgfplotspatchvertexfinish","pgfplotspatchvertexaddXY","pgfplotspatchvertexfinishXY","pgfplotspatchclass","pgfplotspatchclassname","pgfplotspatchclasserror","pgfplotsdeclarepatchclass","pgfplotspatchready","pgfplotsrefinedpatchready","pointlast","diffA","diffB","crossAB","normal","pgfplotspatchclassx","pgfplotspatchclassy","PA","PB","PC","PD","toCHAR","Pnext","pgfplotsplothandlermeshusepathstroke","pgfplotsplothandlermeshusepathfill","pgfplotsplothandlermeshusepathfillstroke","rangea","rangeb","factor","simplecoordinate","curelem","pgfplotssetaxesfromazel","sinaz","cosaz","sinel","cosel","pgfplotsgetnormalforcurrentview","pgfplotscoordmathnotifydatascalesetfor","pgfplotspointmaxminmin","pgfplotspointminmaxmin","pgfplotspointminminmin","pgfplotspointxaxis","pgfplotspointxaxislength","pgfplotspointyaxis","pgfplotspointyaxislength","pgfplotspointzaxis","pgfplotspointzaxislength","pgfplotspointcenter","pgfplotspointunitx","pgfplotspointunity","pgfplotsunitxlength","pgfplotsunitylength","pgfplotsunitxinvlength","pgfplotsunityinvlength","pgfplotspointunitz","pgfplotsunitzlength","pgfplotsunitzinvlength","pgfplotspointticklabelcs","pgfplotspointticklabelnoshiftcs","pgfplotsconvertunittocoordinate","pgfplotsqpointxyzabsolutesize","pgfplotspointonorientedsurfaceab","pgfplotspointonorientedsurfaceabwithbshift","pgfplotspointonorientedsurfacespec","pgfplotspointonorientedsurfacespecunordered","pgfplotspointonorientedsurfacespecsymbol","pgfplotspointonorientedsurfaceabsetupfor","pgfplotspointonorientedsurfaceabsetupforsetx","pgfplotspointonorientedsurfaceabsetupforsety","pgfplotspointonorientedsurfaceabsetupforsetz","pgfplotspointonorientedsurfaceA","pgfplotspointonorientedsurfaceB","pgfplotspointonorientedsurfaceN","pgfplotspointonorientedsurfaceabtolinespec","pgfplotspointonorientedsurfaceabgetcontainedaxisline","pgfplotsgetadjacentsurfsforaxisline","pgfplotsifaxissurfaceisforeground","pgfplotsifaxislineisonconvexhull","pgfplotspointonorientedsurfaceabmatchaxisline","pgfplotsmatchcubeparts","pgfplotsqpointoutsideofaxis","pgfplotsqpointoutsideofaxisrel","pgfplotsqpointoutsideofaxistransformed","pgfplotspointouternormalvectorofaxis","pgfplotspointouternormalvectorofaxissetv","pgfplotspointouternormalvectorofaxisgetv","pgfplotstransformtoaxisdirection","pgfplotsdeclareborderanchorforaxis","pgfplotspointviewdir","pgfplotsdeclarecoordmath","pgfplotscoordmathid","pgfplotscoordmathparsemacro","pgfplotscoordmath","pgfplotscoordmathclassfor","pgfplotssetcoordmathfor","pgfplotsgetcoordmathfor","pgfplotssetpointmetainput","pgfplotspointmetainputhandler","pgfplotsaxisifhaspointmeta","pgfplotsifpointmetaisbounded","pgfplotsaxisifcontainspoint","pgfplotsdeclarepointmetasource","pgfplotsscanlinelengthinitzero","pgfplotsscanlinelength","pgfplotsdetermineemptylinehandler","pgfplotsscanlinedisablechanges","pgfplotsscanlinecomplete","pgfplotsscanlinelengthincrease","pgfplotsscanlinelengthcleanup","pgfplotsscanlineendofinput","pgfplotsplothandlerappendjumpmarker","pgfplotsaxisfilteredcoordsaway","pgfplotsaxisplothasjumps","pgfplotsaxisplothasunboundedpointmeta","ifpgfplotsaxisparsecoordinateok","pgfplotsaxisparsecoordinateoktrue","pgfplotsaxisparsecoordinateokfalse","pgfplotsifinplot","pgfplotsaxispreparecoordinate","pgfplotsaxisdatapointsurveyed","pgfplotsaxissurveysetpointmeta","pgfplotsaxisupdatelimitsforpointmeta","pgfplotsaxistransformfromdatacs","pgfplotsaxistransformcs","pgfplotsdefinecstransform","pgfplotsaxisserializedatapointtostring","pgfplotsaxisserializedatapoint","pgfplotsaxisdeserializedatapointfrom","pgfplotsaxisvisphasetransformpointmeta","pgfplotsaxisvisphasetransformpointmetaifany","pgfplotssurveyphaseaddoptionsbeforesurveybegins","pgfplotsplothandlersurveyaddoptions","pgfplotsifinaddplottablestruct","coordindex","columnerrorx","columnerrory","columnerrorz","plotnum","plotnumofactualtype","pgfplotsaxisvisphasegetpoint","pgfplotspointgetcoordinates","pgfplotspointgetnormalizedcoordinates","pgfplotspointgetcoordinatesfromnormalized","pgfplotsaxisvisphasetransformcoordinate","pgfplotsaxisvisphasepreparedatapoint","pgfplotsaxisvisphasetransformcoordinateentry","pgfplotstransformplotattime","pgfplotspointplotattimeclearcache","pgfplotspointplotattimegetfromcache","pgfplotspointplotattimeaddtocache","pgfplotspointplotattime","pgfplotsplothandlergraphics","pgfplotsplothandlergraphicspointmappoint","pgfplotsplothandlergraphicspointmapcomputerequiredview","pgfplotsE","pgfplotsmathfloatviewdepthxyz","pgfplotsmathvectorviewdepth","pgfplotsmathviewdepthxyz","pgfshell","ticknum","tick","nexttick","pgfplotsvalueoflargesttickdimen","pgfplotsqpointoutsideofticklabelaxis","pgfplotsqpointoutsideofticklabelaxisrel","pgfplotsqpointoutsideofticklabelaxistransformed","pgfplotsticklabelaxisspec","pgfplotspointouternormalvectorofticklabelaxis","Hmacro","Hmacrobaseten","MIN","MAX","MINH","desirednumticks","Wr","pgfplotsdeclareborderanchorforticklabelaxis"]}
-,
-"pgfplotslibraryclickable.sty":{"envs":{},"deps":["insdljs.sty","eforms.sty"],"cmds":["pgfplotsclickablecreate","pgfplotscatcodeDQ"]}
-,
-"pgfplotslibrarycolorbrewer.sty":{"envs":{},"deps":["tikzlibrarycolorbrewer.sty"],"cmds":{}}
-,
-"pgfplotslibrarydateplot.sty":{"envs":{},"deps":["pgfcalendar.sty"],"cmds":["year","month","day","hour","Hour","minute","Minute","lowlevel","Second","julianto","hourto","minuteto","pgfplotstempjuliandate","pgfplotstemptime","pgfplotstempjuliandatenumeric"]}
-,
-"pgfplotslibrarydecorations.softclip.sty":{"envs":{},"deps":["tikzlibraryintersections.sty"],"cmds":["pgfpathcomputesoftclippath","tikzifisnamedpath","pgfcomputeintersectionsegments","pgfgetintersectionsegmentpath","pgfcomputereversepath","pgfaddpath","pgfsetpathandBB","pgfaddpathandBB","pgfpathreplacefirstmoveto","pgfintersectionsegments","pgfpointlastofsetpath"]}
-,
-"pgfplotslibraryexternal.sty":{"envs":{},"deps":{},"cmds":{}}
-,
-"pgfplotslibraryfillbetween.sty":{"envs":{},"deps":["pgfplotslibrarydecorations.softclip.sty"],"cmds":["addplot","pgfplotslibraryfillbetweenpreparecurrentlayer","tikzsegmentindex","tikzfillbetween","tikzgetnamedpath","tikznamecurrentpath","tikzpathintersectionsegments","tikzsegmentlastindex"]}
-,
-"pgfplotslibrarygroupplots.sty":{"envs":["groupplot"],"deps":["tikzlibrarycalc.sty"],"cmds":["nextgroupplot","groupplot","endgroupplot"]}
-,
-"pgfplotslibrarypatchplots.sty":{"envs":{},"deps":{},"cmds":["pgfplotspathcubicfrominterpolation","Pcur","Pstart","Pnextseq","Pstartidx"]}
-,
-"pgfplotslibrarypolar.sty":{"envs":["polaraxis"],"deps":{},"cmds":{}}
-,
-"pgfplotslibrarysmithchart.sty":{"envs":["smithchart"],"deps":{},"cmds":["ifpgfplotspointisinsmithchartCS","pgfplotspointisinsmithchartCStrue","pgfplotspointisinsmithchartCSfalse","pgfplotscoordmathcomplexdivision","pgfmathresultim","smithchart","endsmithchart","smithchartaxis","endsmithchartaxis"]}
-,
-"pgfplotslibrarystatistics.sty":{"envs":{},"deps":{},"cmds":["pgfplotsboxplotvalue","boxplotvalue","pgfplotsplothandlerboxplot","pgfplotsplothandlerboxplotprepared","pgfplotsboxplotpointabbox","pgfplotsboxplotpointabwhisker","pgfplotsboxplotpointab"]}
-,
-"pgfplotslibraryternary.sty":{"envs":["ternaryaxis"],"deps":{},"cmds":["pgfplotsplothandlertieline"]}
-,
-"pgfplotslibraryunits.sty":{"envs":{},"deps":{},"cmds":{}}
-,
-"pgfplotstable.sty":{"envs":{},"deps":["pgfplots.sty"],"cmds":["pgfplotstableset","pgfplotstabletypeset","pgfplotstabletypesetfile","pgfplotstableread","pgfplotstablecol","pgfplotstablecolname","pgfplotstablerow","pgfplotstablecols","pgfplotstablerows","pgfplotstablename","pgfplotstablepartno","pgfplotstablenew","pgfplotstablevertcat","pgfplotstableclear","pgfplotstablecreatecol","prevrow","getprevrow","thisrow","getthisrow","nextrow","getnextrow","pgfmathaccuma","pgfmathaccumb","pgfplotstablesave","pgfplotstableforeachcolumn","pgfplotstableforeachcolumnelement","pgfplotstablemodifyeachcolumnelement","pgfplotstablegetelem","pgfplotstablegetcolumnnamebyindex","pgfplotstablegetrowsof","pgfplotstablegetcolsof","pgfplotstabletranspose","pgfplotstablesort","monthname","monthshortname","weekday","weekdayname","weekdayshortname","ifpgfplotstabletypesetdebug","pgfplotstabletypesetdebugtrue","pgfplotstabletypesetdebugfalse","ifpgfplotstabletypesetskipcoltypes","pgfplotstabletypesetskipcoltypestrue","pgfplotstabletypesetskipcoltypesfalse","ifpgfplotstabletypesetresult","pgfplotstabletypesetresulttrue","pgfplotstabletypesetresultfalse","ifpgfplotstableuserow","pgfplotstableuserowtrue","pgfplotstableuserowfalse","prevrowno","thisrowno","nextrowno","pgfplotstableresetcolortbloverhangright","pgfplotstableresetcolortbloverhangleft","pgfmatharga","pgfmathargb","pgfplotstablecoltype","endpgfplotstablecoltype"]}
-,
-"pgfrcs.sty":{"envs":{},"deps":["everyshi.sty"],"cmds":["pgferror","pgfwarning","usepgflibrary","usepgfmodule","pgfutilensuremath","pgfutilpreparefilename","pgfretvalquoted","pgfutilconvertdcolon","pgfutilifcontainsmacro","pgfutilifstartswith","pgfutilstrreplace","pgfutilsolvetwotwoleq","pgfutilsolvetwotwoleqfloat","pgftypesetversion","pgfrcsloaded","pgfrcsatcode","ProvidesFileRCS","ProvidesPackageRCS","ProvidesClassRCS","pgfrevision","pgfversion","pgfversiondate","pgfrevisiondate"]}
-,
-"pgfsubpic.sty":{"envs":["pgfsubpicture"],"deps":["pgf.sty"],"cmds":["pgfsubpicture","endpgfsubpicture","subpictureid","pgfnewsubpicture","pgfsavesubpicture","pgfmergesubpicture","pgfrestoresubpicture","pgfplacesubpicture","fallback","pgffitsubpicture","pgfnodedelete","pgfnodeifexists"]}
-,
-"pgfsys.sty":{"envs":{},"deps":["pgffrcs.sty","pgfkeys.sty"],"cmds":["pgfset","ifpgfpicture","pgfpicturetrue","pgfpicturefalse","ifpgfsysanimationsupported","pgfsysanimationsupportedtrue","pgfsysanimationsupportedfalse","pgfsysdriver","ifpgfsyssoftpathmovetorelevant","pgfsyssoftpathmovetorelevanttrue","pgfsyssoftpathmovetorelevantfalse"]}
-,
-"pgftree.sty":{"envs":{},"deps":["pgf.sty","pgffor.sty","pgfsubpic.sty"],"cmds":["levelsep","subtreesep","leveldirection","siblingdirection","drawnode","drawedge","pgftree","nodename","pgfsubtree","parentnodename","subtreeof"]}
-,
-"pgothic.sty":{"envs":{},"deps":{},"cmds":["textpgoth","pgothfamily","Tienc"]}
-,
-"phaistos.sty":{"envs":{},"deps":{},"cmds":["PHarrow","PHbee","PHbeehive","PHboomerang","PHbow","PHbullLeg","PHcaptive","PHcarpentryPlane","PHcat","PHchild","PHclub","PHcolumn","PHcomb","PHdolium","PHdove","PHeagle","PHflute","PHgaunlet","PHgrater","PHhelmet","PHhide","PHhorn","PHlid","PHlily","PHmanacles","PHmattock","PHoxBack","PHpapyrus","PHpedestrian","PHplaneTree","PHplumedHead","PHram","PHrosette","PHsaw","PHshield","PHship","PHsling","PHsmallAxe","PHstrainer","PHtattooedHead","PHtiara","PHtunny","PHvine","PHwavyBand","PHwoman"]}
-,
-"phfcc.sty":{"envs":{},"deps":["xkeyval.sty","kvoptions.sty","etoolbox.sty","xparse.sty","xcolor.sty","marginnote.sty"],"cmds":["phfMakeCommentingCommand","phfDisableCommentingCommands","phfDefineCommentingStyle","phfSetDefaultCommentingStyle","phfccformatmargininitials","phfccmargininitialssep","phfccformatboxinitials","phfCCChangesBy","phfCommentingDefaultStartCmds","phfCommentingDefaultEndCmds","phfCommentingDefaultFont","phfCommentingDefaultSpacing","phfCommentingDefaultBegin","phfCommentingDefaultEnd","phfCommentingDefaultCFont","phfCommentingDefaultCSpacing","phfCommentingDefaultCBegin","phfCommentingDefaultCEnd","phfCommentingDefaultRmFont","phfCommentingDefaultRmSpacing","phfCommentingDefaultRmBegin","phfCommentingDefaultRmEnd","phfCommentingDefaultIFont","phfCommentingDefaultISpacing","phfCommentingDefaultIBegin","phfCommentingDefaultIEnd","phfccfootcommenttextstyle","newphfccmarginnote"]}
-,
-"phfextendedabstract.cls":{"envs":["enumerate*"],"deps":["s-revtex4-2.cls","geometry.sty","kvoptions.sty","phfnote.sty","phfthm.sty","xparse.sty","float.sty","verbdef.sty","csquotes.sty","dsfont.sty","bbm.sty","mathtools.sty"],"cmds":["section","paragraph","phfeaSectionDecoration","phfeaParagraphDecoration","phfeaSectionDecorationSymbol","phfeaParagraphDecorationSymbol","phfeaSectionBeforeSkip","phfeaSectionAfterHSkip","phfeaParagraphBeforeSkip","phfeaParagraphAfterHSkip","phfeaSectionStyle","phfeaParagraphStyle","phfeaSectionFormatHeading","phfeaParagraphFormatHeading","phfeaVerticalSpacingCompressionFactor","phfeaDefineTheoremStyle","phfeaDisplayVerticalSpacingFactorWeight","phfeaParskipVerticalSpacingFactorWeight","phfeaListsVerticalSkip","phfeaListsItemSep","phfeaListsParSep","phfeaHeadingStyle","phfeaTitleStyle"]}
-,
-"phffullpagefigure.sty":{"envs":["fullpagefigure"],"deps":["etoolbox.sty","ifoddpage.sty","afterpage.sty","placeins.sty","pdfpages.sty"],"cmds":["figcontent","figpdf","figpageside","figplacement","figcapmaxheight","fullpagefigurecaptionfmt","FlushAllFullPageFigures","phffpfFloatBarrier"]}
-,
-"phfnote.sty":{"envs":["pkgoptions","cmdoptions","pkgnote","pkgwarning","pkgtip","noteabstract","notedefaultabstract"],"deps":["xkeyval.sty","kvoptions.sty","etoolbox.sty","xparse.sty","xcolor.sty","geometry.sty","sectsty.sty","amsmath.sty","amsfonts.sty","amssymb.sty","amsthm.sty","setspace.sty","caption.sty","enumitem.sty","graphicx.sty","fontenc.sty","inputenc.sty","iftex.sty","microtype.sty","hyperref.sty","float.sty","verbdef.sty","csquotes.sty","dsfont.sty","bbm.sty","mathtools.sty","opensans.sty","fourier.sty","MnSymbol.sty","MinionPro.sty","MyriadPro.sty","tcolorbox.sty"],"cmds":["PrintChangesAndIndexSpacing","PrintChangesAndIndex","ScaleHorizontallyAndHyphenateAnywhere","PrintMarginLabelContents","PrintMarginLabel","pkgname","pkgnamefmt","thephfnotechanged","changed","changedreftext","changedtextfmt","metatruefalsearg","pkgoptionfmt","handleitemindex","pkgoptname","packageoptionsname","cmdoptname","commandoptionsname","setcmdnotpkgoptions","cmdoptionsfbox","pkgoptattrib","pkgoptattribnodots","pkgoptattribempty","phfqitltxPkgTitle","pkgfmtdate","notetitlefont","notetitleauthorfont","notetitledatefont","notetitlebelowspace","notetitlebottomspace","notetitletopspace","notetitlehrule","notetitleinnervsep","notetitlewidth","notetitleparskip","notetitlefontparsetup","notetitleaftertitleskip","notetitleauthorfontparsetup","notetitledatefontparsetup","notetitledonextvskip","notetitlemakecontents","notetitlemakecontentstop","notetitlemakecontentsbottom","notetitlebeginrender","notetitleendrender","notetitleusemainbox","ifnotetitleusempfootnotes","notetitleusempfootnotestrue","notetitleusempfootnotesfalse","singlespace","thanks","thanksmark","notetitleprettylsiderulewidth","notetitleprettylsidespacewidth","notetitleprettyrsiderulewidth","notetitleprettyrsidespacewidth","notetitleprettytopspace","notetitleprettybottomspace","notetitleprettytophrulewidth","notetitleprettybottomhrulewidth","notetitlesmallauthordatesep","noteabstracttextfont","noteabstractnamefont","noteabstracttextwidth","noteabstractafterspacing","noteabstractbeforespacing","notesectionallfont","notesectionallfontfamily","notesectionfont","notesubsectionfont","notesubsubsectionfont","noteparagraphfont","notesubparagraphfont","notesectionsetfonts","noteparagraphsetfonts","email","phfnoteEmail","phfnotePdfLinkColor","eprint","doibase","notesmaller","notesmallerfrac","inlinetoc","phfnoteHackSectionStarWithTOC","phfnoteHackSectionStarWithTOCInCommand","phfnoteSaveDefs","phfnoteRestoreDefs","phfverb","phfverbfmt","DH","NG","dj","ng","k","guillemotleft","guillemotright","guilsinglleft","guilsinglright","quotedblbase","quotesinglbase","textquotedbl","DJ","th","TH","dh","Hwithstroke","hwithstroke","textogonekcentered","guillemetleft","guillemetright"]}
-,
-"phfparen.sty":{"envs":{},"deps":["etoolbox.sty","kvoptions.sty","xparse.sty","amsmath.sty","mathtools.sty","xstring.sty"],"cmds":["paren","backtick","parenMakeBacktickActiveParen","parenMakeNormalBacktick","parenRegister","parenRegsiterSimpleBraces","parenRegisterDefaults"]}
-,
-"phfqit.sty":{"envs":{},"deps":["calc.sty","etoolbox.sty","dsfont.sty","mathrsfs.sty","mathtools.sty","xparse.sty","kvoptions.sty"],"cmds":["Hs","Ident","IdentProc","ee","tr","supp","rank","linspan","spec","diag","poly","bit","bitstring","gate","AND","XOR","CNOT","NOT","NOOP","uu","UU","su","SU","so","SO","SN","ket","bra","braket","ketbra","proj","matrixel","dmatrixel","innerprod","abs","avg","norm","intervalc","intervalo","intervalco","intervaloc","Hmin","HH","Hzero","Hmaxf","HSym","Hbase","Hfn","Hfunc","Hfnbase","DD","Dmax","Dminz","Dminf","Dr","Dsym","Dbase","DCohx","emptysystem","DCohxRefSystemName","DCSym","DCoh","DCohbase","qitobjAddArg","qitobjAddArgx","qitobjParseDone","qitobjDone","DefineQitObject","DefineTunedQitObject","phfqitParen","phfqitSquareBrackets","phfqitCurlyBrackets"]}
-,
-"phfquotetext.sty":{"envs":["quotetext"],"deps":{},"cmds":["quotetextfont","quotetextstart","quotetextend","quotetextcatcodedefs"]}
-,
-"phfsvnwatermark.sty":{"envs":{},"deps":["kvoptions.sty","calc.sty","xcolor.sty","eso-pic.sty","svn.sty","svn-multi.sty","currfile.sty"],"cmds":["phfsvnShipoutWatermarkXposRight","phfsvnShipoutWatermarkYposBaseline","phfsvnVersionIdTag","phfsvnVersionIdTagInnerFont","phfsvnVersionIdTagOuterFont"]}
-,
-"phfthm.sty":{"envs":["thm","prop","lem","cor","conj","rem","defn","thm*","prop*","lem*","cor*","conj*","rem*","defn*","theorem","proposition","lemma","corollary","definition","conjecture","remark","proposition","idea","question","problem","theorem*","proposition*","lemma*","corollary*","definition*","conjecture*","remark*","proposition*","idea*","question*","problem*","thmheading"],"deps":["xkeyval.sty","etoolbox.sty","aliascnt.sty","amsmath.sty","amsthm.sty","amssymb.sty"],"cmds":["phfMakeTheorem","phfLoadThmSet","theoremname","propositionname","lemmaname","corollaryname","conjecturename","remarkname","definitionname","ideaname","questionname","claimname","observationname","problemname","proofname","proofofname","phfMakeProofEnv","phfPinProofAnchor","noproofref","phfMakeThmheadingEnvironment","proofrefsize","filledsquare","phfProofrefPageAheadTolerance","phfProofrefPageBackTolerance","phfthmLoadThmSet","phfthmMakeThmheadingEnvironment","phfthmPinProofAnchor","proofonname","thephfthmheadingcounter","thephfthmInternalProofrefCounter"]}
-,
-"philex.sty":{"envs":{},"deps":["xspace.sty","calc.sty","cgloss4e.sty","linguex.sty","ifthen.sty","suffix.sty"],"cmds":["km","kmt","p","pt","q","qt","s","stp","bpaformat","bpbformat","bpcformat","bpdformat","broff","bron","lb","lba","lbb","lbp","lbpa","lbpb","lbpc","lbpd","lbpsep","lbu","lbusep","lbz","ml","narrowcenter","oddity","philbrackets","philcomma","phildashes","philempty","philexclaim","philfullstop","philpunct","philquestion","philsubcomma","philsubempty","philsubexclaim","philsubpunct","philsubquestion","philsubstop","phlabelsep","phlabelsepdefault","rf","rff","rffnot","rfx","rn","rnx","rp","sepset","subformat","subsubformat","widecenter","bn","bns","bota","botb","botc","botd","bpasize","bpbsize","bpcsize","bpdsize","centro","firstphildash","grlen","hyperreffalse","hyperreftrue","ifhyperref","ifoldpunct","ifphildraft","lbpaStar","lbpbStar","lbpcStar","lbpdStar","lbpStar","lbuStar","lebrack","ncentro","oldpunctfalse","oldpuncttrue","phildraftfalse","phildrafttrue","philmarginfactor","philsemi","rfp","ribrack","rsep","sa","sab","seba","sebatemp","secondphildash","sr","subettan","tempa","tempb","tempc","thealtsub","thealtsubsub","thebna","thebpa","thebpb","thebpc","thebpd","wcentro"]}
-,
-"philokalia.sty":{"envs":{},"deps":["xltxtra.sty","lettrine.sty"],"cmds":["textinit","phkl","textphlk","dsubop","dUnit","dunit","dunknown"]}
-,
-"philosophersimprint.cls":{"envs":{},"deps":["ifpdf.sty","color.sty","graphicx.sty","fancyhdr.sty","mathpazo.sty","courier.sty","helvet.sty","fontenc.sty","textcomp.sty","microtype.sty","trajan.sty","flushend.sty"],"cmds":["HUGE","affiliation","author","copyrightinfo","copyrightlicense","journalnumber","journalvolume","keywords","subject","title","titleimage","DH","dh","dj","DJ","guillemetleft","guillemetright","guillemotleft","guillemotright","guilsinglleft","guilsinglright","Hwithstroke","hwithstroke","k","NG","ng","quotedblbase","quotesinglbase","textogonekcentered","textquotedbl","th","TH"]}
-,
-"phoenician.sty":{"envs":{},"deps":{},"cmds":["phncfamily","textphnc","Arq","ARrq","Aaleph","ARaleph","Aa","ARa","Ab","ARb","Abeth","ARbeth","Ag","ARg","Agimel","ARgimel","Ad","ARd","Adaleth","ARdaleth","Ah","ARh","Ahe","ARhe","Af","ARf","Avaf","ARvaf","Az","ARz","Azayin","ARzayin","Ahd","ARhd","Aheth","ARheth","Atd","ARtd","Ateth","ARteth","Ay","ARy","Ayod","ARyod","Ak","ARk","Akaph","ARkaph","Al","ARl","Alamed","ARlamed","Am","ARm","Amem","ARmem","An","ARn","Anun","ARnun","As","ARs","Asamekh","ARsamekh","Alq","ARlq","Aayin","ARayin","Ao","ARo","Ap","ARp","Ape","ARpe","Asd","ARsd","Asade","ARsade","Aq","ARq","Aqoph","ARqoph","Ar","ARr","Aresh","ARresh","Asv","ARsv","Ashin","ARshin","At","ARt","Atav","ARtav","Aw","ARw","Avav","ARvav","translitphnc","translitphncfont"]}
-,
-"phonenumbers.sty":{"envs":{},"deps":["l3keys2e.sty"],"cmds":["phonenumber","setphonenumbers","AreaCodesGeographic","AreaCodesNonGeographic","CountryCodes"]}
-,
-"phonetic.sty":{"envs":{},"deps":{},"cmds":["barj","barlambda","emgma","engma","enya","epsi","esh","eth","fj","flap","glottal","hausab","hausaB","hausad","hausaD","hausak","hausaK","hookB","hookb","hookd","hookD","hookh","hookK","hookk","ibar","omicron","openo","palpha","pbeta","pchi","pdelta","pepsilon","peta","pgamma","piota","pkappa","plambda","planck","pmu","pnu","pomega","pomicron","pphi","ppi","ppsi","prho","psigma","ptau","ptheta","pupsilon","pwedge","pxi","pzeta","rbar","revD","riota","rotc","roth","rotm","rotOmega","rotr","rotvara","rotw","roty","schwa","taild","thorn","ubar","udesc","upbar","vara","varg","vari","varomega","varopeno","varU","varu","vod","voicedh","yogh","acarc","acbar","hill","labvel","od","ohill","rc","ssc","syl","td","uplett","ut","hideheight","onalign","overchar","pc","pcchar","textpc"]}
-,
-"phonrule.sty":{"envs":{},"deps":{},"cmds":["phon","phonc","phonl","phonr","phonb","oneof","phonfeat","phold","env","envl","envr","envb"]}
-,
-"photo.sty":{"envs":["photo","photo*","Photo"],"deps":{},"cmds":["ifoddpage","ifoddpagelabel","boxbaset","boxbasec","boxbaseb","defaultphotoplacement","thephoto","photoname","listphotoname","listofphotos","putphoto","oecaptionsep","minoecaptionwidth","photographerfont","phref","Phref"]}
-,
-"photobook.cls":{"envs":["adjustcell","adjustcell*","backcover","backflap","bottomup","cell","cell*","CellContent","CellContent*","cliptocell","foldout","foldoutcell","foldoutcell*","frontcover","frontflap","inlinecell","inlinecell*","leftpage","leftside","minipagecell","minipagecell*","MinipageCellContent","MinipageCellContent*","page","pagebleedcell","pagecell","pagecell*","paperbleedcell","papercell","rightside","spine","spreadtopages","spreadtopages*","textcell","topdown","vspine","zinlinecell","zinlinecell*","resizedpages","shipoutbgcell"],"deps":["kvoptions.sty","s-book.cls","calc.sty","xargs.sty","ifthen.sty","iftex.sty","pgffor.sty","xint.sty","xinttools.sty","listofitems.sty","xkeyval.sty","etoolbox.sty","atbegshi.sty","hyperref.sty","eso-pic.sty","environ.sty","numprint.sty","trimclip.sty","xcolor.sty","pagecolor.sty","colorspace.sty","graphicx.sty","adjustbox.sty","textpos.sty","fancyvrb.sty","tikz.sty","rotating.sty","fancyhdr.sty","pdfpages.sty","geometry.sty"],"cmds":["bindingoffset","bleed","bleedblockheight","bleedblockwidth","blockheight","blockwidth","BookAuthors","BookEdition","BookFonts","BookFullInfoPage","BookInfo","BookInfoPage","BookSoftwareInfoPage","BookTitle","BookVersion","BookYear","ByNotice","captionblockcell","captioncell","captioncellspacing","captionclearpage","captionformat","captionsize","CellContentOptions","cellheight","celloffsetleft","celloffsettop","cellparentheight","cellparentwidth","cellwidth","clearance","clearcaption","clearfoldoutbinding","clearfoldoutedge","clearfoldoutfold","clearimage","cleartoleftpage","CopyrightNotice","coverboardgrow","coverflap","defaultfoldout","emptypage","flatfold","foldmarkoffset","foldmarksfalse","foldmarkstrue","foldoutwidth","GenerateTemplate","gsavecell","iffoldmarks","ifwriteimagelist","imageblockheight","imageblockoffsettop","imageblockwidth","imagecell","ImageHalfPageL","ImageHalfPageLCaption","ImageHalfPageR","ImageHalfPageRCaption","imageoffsetleft","imageoffsettop","ImagePage","ImagePageCaption","ImagePageClear","ImagePageClearB","ImagePageClearBCaption","ImagePageClearCaption","ImagePageClearL","ImagePageClearLCaption","ImagePageClearR","ImagePageClearRCaption","ImagePageClearT","ImagePageClearTCaption","ImagePageFill","ImagePageFillCaption","ImagePageFit","ImagePageFitB","ImagePageFitBCaption","ImagePageFitCaption","ImagePageFitL","ImagePageFitLCaption","ImagePageFitR","ImagePageFitRCaption","ImagePageFitT","ImagePageFitTCaption","ImagePageTemplate","imagescale","ImageSpread","ImageSpreadB","ImageSpreadBCaption","ImageSpreadCaption","ImageSpreadFill","ImageSpreadFillCaption","ImageSpreadFit","ImageSpreadFitB","ImageSpreadFitBCaption","ImageSpreadFitCaption","ImageSpreadFitL","ImageSpreadFitLCaption","ImageSpreadFitR","ImageSpreadFitRCaption","ImageSpreadFitT","ImageSpreadFitTCaption","ImageSpreadL","ImageSpreadLCaption","ImageSpreadR","ImageSpreadRCaption","ImageSpreadT","ImageSpreadTCaption","InitPages","ISBN","jacketflap","jacketflapback","jacketflapfront","jacketwrap","keywords","layoutmode","License","maxdim","mindim","OtherSoftware","pageblockheight","pageblockwidth","pagefold","pagefoldpanelfolds","pagefoldpanels","PageInfo","pagetextheight","pagetextwidth","pdfboxesset","pdfcommentcell","pdfpagecount","pdfpagelayout","pdfspinewidth","rcaptioncell","ReInitPages","ChangeLayout","resetImageHalfPageLCaption","resetImageHalfPageRCaption","resetImagePageCaption","resetImagePageClearBCaption","resetImagePageClearCaption","resetImagePageClearLCaption","resetImagePageClearRCaption","resetImagePageClearTCaption","resetImagePageFillCaption","resetImagePageFitBCaption","resetImagePageFitCaption","resetImagePageFitLCaption","resetImagePageFitRCaption","resetImagePageFitTCaption","resetImageSpreadBCaption","resetImageSpreadCaption","resetImageSpreadFillCaption","resetImageSpreadFitBCaption","resetImageSpreadFitCaption","resetImageSpreadFitLCaption","resetImageSpreadFitRCaption","resetImageSpreadFitTCaption","resetImageSpreadLCaption","resetImageSpreadRCaption","resetImageSpreadTCaption","resetimagetweaks","ResettableMacro","savecell","SoftwareInfo","SoftwareNotice","spinefold","spinewidth","subject","ThanksTo","tweakimageoffsetleft","tweakimageoffsettop","tweakimagescale","usecell","usespreadpage","vcaptioncell","writeimagelisttrue","writeimagelistfalse","blocklayoutfalse","blocklayouttrue","coverlayoutfalse","coverlayouttrue","coverlikelayoutfalse","coverlikelayouttrue","endpaperlayoutfalse","endpaperlayouttrue","foldinmark","foldoutmark","hardcoverlayoutfalse","hardcoverlayouttrue","ifblocklayout","ifcoverlayout","ifcoverlikelayout","ifendpaperlayout","ifhardcoverlayout","ifjacketlayout","ifsoftcoverlayout","jacketlayoutfalse","jacketlayouttrue","LATEX","pagefoldpanelslen","ResetFoldMarks","restorepdfboxes","ShowMarks","softcoverlayoutfalse","softcoverlayouttrue","storepdfboxes","TEX","thefoldoutpanel"]}
-,
-"physconst.sty":{"envs":{},"deps":["physunits.sty"],"cmds":["kMassElectron","keVMassElectron","kMassElectronNumeric","keVMassElectronNumeric","kMassProton","keVMassProton","kMassProtonNumeric","keVMassProtonNumeric","kMassHydrogen","keVMassHydrogen","kMassHydrogenNumeric","keVMassHydrogenNumeric","kMassSun","kMassSunNumeric","kMassEarth","kMassEarthNumeric","kMassJupiter","kMassJupiterNumeric","kMassAMU","keVMassAMU","kMassAMUNumeric","keVMassAMUNumeric","kChargeFundamental","kChargeFundamentalNumeric","kChargeElectron","kChargeElectronNumeric","kChargeProton","kChargeProtonNumeric","kRadiusBohr","kRadiusBohrNumeric","kAstronomicalUnit","kAstronomicalUnitNumeric","kParsec","kParsecNumeric","kRadiusSun","kRadiusSunNumeric","kRadiusEarth","kRadiusEarthNumeric","kRadiusJupiter","kRadiusJupiterNumeric","kRydberg","keVRydberg","kRydbergNumeric","keVRydbergNumeric","kLuminositySun","kLuminositySunNumeric","kPressureAtmosphere","kPressureAtmosphereNumeric","kPressureStandard","kPressureStandardNumeric","kSpeedLight","kSpeedLightNumeric","kAccelGravity","kAccelGravityNumeric","kCoulomb","kCoulombNumeric","kVacuumPermittivity","kVacuumPermittivityNumeric","kVacuumPermeability","kVacuumPermeabilityNumeric","kVacuumImpedance","kVacuumImpedanceNumeric","kBoltzmann","keVBoltzmann","kBoltzmannNumeric","keVBoltzmannNumeric","kPlanck","keVPlanck","kPlanckNumeric","keVPlanckNumeric","kPlanckReduced","keVPlanckReduced","kPlanckReducedNumeric","keVPlanckReducedNumeric","kGravity","kGravityNumeric","kStefanBoltzmann","kStefanBoltzmannNumeric","kRadiation","kRadiationNumeric","kFineStructure","kFineStructureNumeric","kFineStructureReciprocal","kFineStructureReciprocalNumeric","kAvogadro","kAvogadroNumeric"]}
-,
-"physics.sty":{"envs":{},"deps":["amsmath.sty","xparse.sty"],"cmds":["Bqty","Im","PV","Pmqty","Pr","Probability","Res","Re","Residue","Tr","Trace","abs","absolutevalue","acomm","acommutator","acos","acosecant","acosine","acot","acotangent","acsc","admat","anticommutator","antidiagonalmatrix","arccos","arccosecant","arccosine","arccot","arccotangent","arccsc","arcsec","arcsecant","arcsin","arcsine","arctan","arctangent","argclose","argopen","asec","asecant","asin","asine","atan","atangent","bmqty","bqty","bra","braces","braket","colcount","comm","commutator","cos","cosecant","cosh","cosine","cot","cotangent","coth","cp","cross","crossproduct","csc","csch","curl","dd","derivative","det","determinant","diagonalmatrix","differential","div","divergence","divisionsymbol","dmat","dotproduct","dv","dyad","erf","ev","eval","evaluated","exp","expectationvalue","exponential","expval","fbraces","fderivative","fdv","flatfrac","functionalderivative","grad","gradient","homework","hypcosecant","hypcosine","hypcotangent","hypsecant","hypsine","hyptangent","identitymatrix","imaginary","imat","innerproduct","ip","ket","ketbra","laplacian","ln","log","logarithm","lparen","matrixdeterminant","matrixel","matrixelement","matrixquantity","matrixtoks","mdet","mel","mqty","naturallogarithm","norm","op","opbraces","order","ordersymbol","outerproduct","partialderivative","paulimatrix","paulixmatrix","pauliymatrix","paulizmatrix","pb","pderivative","pdv","pmat","pmqty","poissonbracket","pqty","principalvalue","pv","qall","qand","qas","qassume","qc","qcc","qcomma","qelse","qeven","qfor","qgiven","qif","qin","qinteger","qlet","qodd","qor","qotherwise","qq","qqtext","qsince","qthen","qty","quantity","qunless","qusing","rank","real","rowcount","rparen","sbmqty","sec","secant","sech","sin","sine","sinh","smallmatrixdeterminant","smallmatrixquantity","smdet","smqty","sPmqty","spmqty","svmqty","tan","tangent","tanh","tr","trace","trigbraces","trigopt","va","var","varE","variation","vb","vdot","vectorarrow","vectorbold","vectorunit","vev","vmqty","vnabla","vqty","vu","xmat","xmatrix","zeromatrix","zmat"]}
-,
-"physics2.sty":{"envs":{},"deps":["keyval.sty","amsmath.sty"],"cmds":["usephysicsmodule","delopen","delclose","biggg","Biggg","bigggl","bigggm","bigggr","Bigggl","Bigggm","Bigggr","ab","pab","bab","Bab","vab","aab","Vab","bra","ket","braket","ketbra","diagmat","pdiagmat","bdiagmat","Bdiagmat","vdiagmat","Vdiagmat","doublecross","doubledot","xmat","pxmat","bxmat","Bxmat","vxmat","Vxmat","abs","norm","order","eval","bm","grad","div","curl","laplacian","asin","acos","atan","acsc","asec","acot","Tr","tr","rank","erf","Res","res","PV","pv","Resymbol","Imsymbol","qqtext","qq","qcomma","qc","qcc","qif","qthen","qelse","qotherwise","qunless","qgive","qusing","qassume","qsince","qlet","qfor","qall","qeven","qodd","qinteger","qand","qor","qas","qin"]}
-,
-"physunits.sty":{"envs":{},"deps":{},"cmds":["micro","V","Volt","Coulomb","esu","Ohm","Amp","Farad","Tesla","Gauss","Henry","eV","keV","MeV","J","Joule","erg","kcal","Cal","calorie","BTU","tnt","Watt","hpi","hpm","hp","meter","m","km","au","pc","ly","cm","nm","ft","inch","mi","s","Sec","Min","h","y","Day","gm","kg","lb","amu","N","Newton","dyne","lbf","kmps","kmph","mps","miph","kts","mpss","gacc","ftpss","K","Kelvin","Celsius","Celcius","centigrade","Rankine","Fahrenheit","rpm","Hz","barP","atm","Pa","mmHg","inHg","lbsi","lbsf","Ba","Torr","mol"]}
-,
-"piano.sty":{"envs":{},"deps":["color.sty","ifthen.sty","xargs.sty"],"cmds":["keyboard"]}
-,
-"picinpar.sty":{"envs":["window","figwindow","tabwindow"],"deps":{},"cmds":["computeilg","createparshapespec","framepic","prune","wframepic","wincaption","winrefstepcounter","winstepcounter","wstrut","br","bl","na","nb","tcdsav","tcl","tcd","tcn","cumtcl","cumpartcl","lftside","rtside","hpic","vpic","strutilg","picwd","topheight","ilg","lpic","lwindowsep","rwindowsep","cumpar","twa","la","ra","ha","pictoc","rawtext","holder","windowbox","wartext","finaltext","aslice","bslice","wbox","wstrutbox","picbox","waslice","wbslice","fslice"]}
-,
-"picins.sty":{"envs":["frameenv","dashenv","ovalenv","shadowenv"],"deps":{},"cmds":["parpic","hpic","picskip","pichskip","shadowthickness","dashlength","boxlength","piccaption","newcaption","piccaptionoutside","piccaptioninside","piccaptionside","piccaptiontopside","picchangemode","nopicchangemode","ptoti","ptotii","iparpic","iiparpic","iiiparpic","ivparpic","ihpic","iihpic","iiihpic","ivhpic","Rahmen","Schatten","Oval","Strich","Kasten"]}
-,
-"pict2e.sty":{"envs":{},"deps":["trig.sty"],"cmds":["line","vector","circle","oval","maxovalrad","bezier","qbezier","cbezier","qbeziermax","arc","Line","polyline","Vector","polyvector","polygon","moveto","lineto","curveto","circlearc","closepath","strokepath","fillpath","buttcap","roundcap","squarecap","miterjoin","roundjoin","beveljoin","thicklines","thinlines","ltxarrows","pstarrows","OriginalPictureCmds"]}
-,
-"picture.sty":{"envs":{},"deps":["calc.sty"],"cmds":{}}
-,
-"pifont.sty":{"envs":["dinglist","dingautolist","Pilist","Piautolist"],"deps":{},"cmds":["ding","dingfill","dingline","Pifont","Pisymbol","Pifill","Piline"]}
-,
-"pigpen.sty":{"envs":{},"deps":{},"cmds":["pigpenfont","LaTeXpigpen","TeXpigpen"]}
-,
-"pinlabel.sty":{"envs":{},"deps":["graphicx.sty"],"cmds":["endlabellist","hair","hyperactivelabels","labellist","pinlabel","psfig","reallyincludegraphics","atcatcode","dvifalse","dvitrue","ifdvi","ifoldlabels","includegraphicsplain","includegraphicswithoptions","maxheaderlines","oldlabelsfalse","oldlabelstrue","partest","psdraft","psfull","psnoisy","pssilent","setlabel","thelabellist"]}
-,
-"pinoutikz.sty":{"envs":{},"deps":["ifthen.sty","lmodern.sty","xstring.sty","upquote.sty","amsmath.sty","amssymb.sty","amsfonts.sty","forarray.sty","arrayjob.sty","pgf.sty","tikz.sty","tikzlibraryshapes.misc.sty","tikzlibraryshapes.geometric.sty"],"cmds":["PDIP","pctPDIP","TQFP","pctTQFP","PLCC","pctPLCC","pinoutikzname","pinoutikzversion","pinoutikzdate","FormatPinLabel","CASE","PIN","GENFOUREDGE","pardefault","neverindent","autoindent"]}
-,
-"pinyin.sty":{"envs":{},"deps":{},"cmds":["PYactivate","PYdeactivate","a","A","ai","Ai","an","An","ang","Ang","ao","Ao","ba","Ba","bai","Bai","ban","Ban","bang","Bang","bao","Bao","bei","Bei","ben","Ben","beng","Beng","bi","Bi","bian","Bian","biao","Biao","bie","Bie","bin","Bin","bing","Bing","bo","Bo","bu","Bu","ca","Ca","cai","Cai","can","Can","cang","Cang","cao","Cao","ce","Ce","cen","Cen","ceng","Ceng","cha","Cha","chai","Chai","chan","Chan","chang","Chang","chao","Chao","che","Che","chen","Chen","cheng","Cheng","chi","Chi","chong","Chong","chou","Chou","chu","Chu","chua","chuai","Chuai","chuan","Chuan","chuang","Chuang","chui","Chui","chun","Chun","chuo","Chuo","ci","Ci","cong","Cong","cou","Cou","cu","Cu","cuan","Cuan","cui","Cui","cun","Cun","cuo","Cuo","da","Da","dai","Dai","dan","Dan","dang","Dang","dao","Dao","de","De","dei","Dei","den","deng","Deng","di","Di","dian","Dian","diao","Diao","die","Die","ding","Ding","diu","Diu","dong","Dong","dou","Dou","du","Du","duan","Duan","dui","Dui","dun","Dun","duo","Duo","e","E","ei","Ei","en","En","eng","Eng","er","Er","fa","Fa","fan","Fan","fang","Fang","fei","Fei","fen","Fen","feng","Feng","fiao","Fiao","fo","Fo","fou","Fou","fu","Fu","ga","Ga","gai","Gai","gan","Gan","gang","Gang","gao","Gao","ge","Ge","gei","Gei","gen","Gen","geng","Geng","gong","Gong","gou","Gou","gu","Gu","gua","Gua","guai","Guai","guan","Guan","guang","Guang","gui","Gui","gun","Gun","guo","Guo","ha","Ha","hai","Hai","han","Han","hang","Hang","hao","Hao","he","He","hei","Hei","hen","Hen","heng","Heng","hong","Hong","hou","Hou","hu","Hu","hua","Hua","huai","Huai","huan","Huan","huang","Huang","hui","Hui","hun","Hun","huo","Huo","ji","Ji","jia","Jia","jian","Jian","jiang","Jiang","jiao","Jiao","jie","Jie","jin","Jin","jing","Jing","jiong","Jiong","jiu","Jiu","ju","Ju","juan","Juan","jue","Jue","jun","Jun","ka","Ka","kai","Kai","kan","Kan","kang","Kang","kao","Kao","ke","Ke","kei","Kei","ken","Ken","keng","Keng","kong","Kong","kou","Kou","ku","Ku","kua","Kua","kuai","Kuai","kuan","Kuan","kuang","Kuang","kui","Kui","kun","Kun","kuo","Kuo","la","La","lai","Lai","lan","Lan","lang","Lang","lao","Lao","le","Le","lei","Lei","leng","Leng","li","Li","lia","Lia","lian","Lian","liang","Liang","liao","Liao","lie","Lie","lin","Lin","ling","Ling","liu","Liu","Long","LONG","lou","Lou","lu","Lu","luan","Luan","lun","Lun","luo","Luo","lv","Lv","lve","Lve","ma","Ma","mai","Mai","man","Man","mang","Mang","mao","Mao","me","mei","Mei","men","Men","meng","Meng","mi","Mi","mian","Mian","miao","Miao","mie","Mie","min","Min","ming","Ming","miu","Miu","mo","Mo","mou","Mou","mu","Mu","na","Na","nai","Nai","nan","Nan","nang","Nang","nao","Nao","ne","Ne","nei","Nei","nen","Nen","neng","Neng","ni","Ni","nian","Nian","niang","Niang","niao","Niao","nie","Nie","nin","Nin","ning","Ning","niu","Niu","nong","Nong","nou","Nou","nu","Nu","nuan","Nuan","nuo","Nuo","nv","Nv","nve","Nve","o","O","ou","Ou","pa","Pa","pai","Pai","pan","Pan","pang","Pang","pao","Pao","pei","Pei","pen","Pen","peng","Peng","pi","Pi","pian","Pian","piao","Piao","pie","Pie","pin","Pin","ping","Ping","po","Po","pou","Pou","pu","Pu","qi","Qi","qia","Qia","qian","Qian","qiang","Qiang","qiao","Qiao","qie","Qie","qin","Qin","qing","Qing","qiong","Qiong","qiu","Qiu","qu","Qu","quan","Quan","que","Que","qun","Qun","ran","Ran","rang","Rang","rao","Rao","Re","re","ren","Ren","reng","Reng","ri","Ri","rong","Rong","rou","Rou","ru","Ru","rua","ruan","Ruan","rui","Rui","run","Run","ruo","Ruo","sa","Sa","sai","Sai","san","San","sang","Sang","sao","Sao","se","Se","sen","Sen","seng","Seng","sha","Sha","shai","Shai","shan","Shan","shang","Shang","shao","Shao","she","She","shei","Shei","shen","Shen","sheng","Sheng","shi","Shi","shou","Shou","shu","Shu","shua","Shua","shuai","Shuai","shuan","Shuan","shuang","Shuang","shui","Shui","shun","Shun","shuo","Shuo","si","Si","song","Song","sou","Sou","su","Su","suan","Suan","sui","Sui","sun","Sun","suo","Suo","ta","Ta","tai","Tai","tan","Tan","tang","Tang","tao","Tao","te","Te","tei","Tei","teng","Teng","ti","Ti","tian","Tian","tiao","Tiao","tie","Tie","ting","Ting","tong","Tong","tou","Tou","tu","Tu","tuan","Tuan","tui","Tui","tun","Tun","tuo","Tuo","wa","Wa","wai","Wai","wan","Wan","wang","Wang","wei","Wei","wen","Wen","weng","Weng","wo","Wo","wu","Wu","xi","Xi","xia","Xia","xian","Xian","xiang","Xiang","xiao","Xiao","xie","Xie","xin","Xin","xing","Xing","xiong","Xiong","xiu","Xiu","xu","Xu","xuan","Xuan","xue","Xue","xun","Xun","ya","Ya","yan","Yan","yang","Yang","yao","Yao","ye","Ye","yi","Yi","yin","Yin","ying","Ying","yo","Yo","yong","Yong","you","You","yu","Yu","yuan","Yuan","yue","Yue","yun","Yun","za","Za","zai","Zai","zan","Zan","zang","Zang","zao","Zao","ze","Ze","zei","Zei","zen","Zen","zeng","Zeng","zha","Zha","zhai","Zhai","zhan","Zhan","zhang","Zhang","zhao","Zhao","zhe","Zhe","zhei","Zhei","zhen","Zhen","zheng","Zheng","zhi","Zhi","zhong","Zhong","zhou","Zhou","zhu","Zhu","zhua","Zhua","zhuai","Zhuai","zhuan","Zhuan","zhuang","Zhuang","zhui","Zhui","zhun","Zhun","zhuo","Zhuo","zi","Zi","zong","Zong","zou","Zou","zu","Zu","zuan","Zuan","zui","Zui","zun","Zun","zuo","Zuo","PYa","PYchi","PYcong","PYding","PYge","PYhang","PYle","PYmin","PYmu","PYne","PYni","PYnu","PYo","PYO","PYpi","PYPi","PYRe","PYtan","PYxi","PYXi"]}
-,
-"piton.sty":{"envs":["Piton"],"deps":["l3keys2e.sty","luatexbase.sty","luacode.sty","footnote.sty","footnotehyper.sty"],"cmds":["piton","PitonInputFile","PitonOptions","SetPitonStyle","PitonStyle","NewPitonEnvironment","myfiledate","myfileversion"]}
-,
-"pixelart.sty":{"envs":{},"deps":["iftex.sty","luacode.sty","tikz.sty","tikzlibrarypatterns.sty"],"cmds":["pixelart","tikzpixelart","setpixelartdefault","pixelartlogo","pixelartheart","pixelartname","pixelartlogobw","pixelartheartbw","pixelartnamebw","newpixelartcolors","renewpixelartcolors","setpixelartdebugon","setpixelartdebugoff"]}
-,
-"pkgloader.sty":{"envs":{},"deps":["expl3.sty","xparse.sty","l3keys2e.sty","lt3graph.sty"],"cmds":["LoadPackagesNow","Load"]}
-,
-"pkuthss.cls":{"envs":["cabstract","eabstract","beabstract"],"deps":["amsmath.sty","s-ctexbook.cls","xeCJK.sty","ifpdf.sty","ifxetex.sty","keyval.sty","graphicx.sty","geometry.sty","fancyhdr.sty","ulem.sty","hyperref.sty","unicode-math.sty","latexsym.sty","tikz.sty","scrextend.sty","tocloft.sty","caption.sty","subcaption.sty","setspace.sty","enumitem.sty"],"cmds":["setpdfproperties","ctitle","etitle","cauthor","eauthor","date","studentid","school","cmajor","emajor","direction","cmentor","ementor","ckeywords","ekeywords","blindid","discipline","makeblind","cuniversity","euniversity","cthesisname","ethesisname","thesiscover","mentorlines","cabstractname","eabstractname","pkuthssinfo","specialchap","thssnl","prodop","sumop","titlepagename"]}
-,
-"placeat.sty":{"envs":{},"deps":["luatexbase.sty","luacode.sty","atbegshi.sty"],"cmds":["placeat","placerelto","placeminipageat","placeatsetup","placelineat","placearrowat","placecircleat","placefilledcircleat","placesquareat","placerectangleat","placefilledrectangleat","placecurveat","placeroundedat","placeatthreenumbers","firstof","secondof","drawgridnum","drawgrid"]}
-,
-"placeins.sty":{"envs":{},"deps":{},"cmds":["FloatBarrier"]}
-,
-"plaintex.sty":{"envs":{},"deps":{},"cmds":["aa","AA","above","abovedisplayshortskip","abovedisplayskip","abovewithdelims","accent","active","acute","adjdemerits","advance","advancepageno","ae","AE","afterassignment","aftergroup","aleph","allocationnumber","allowbreak","alpha","amalg","angle","approx","arccos","arcsin","arctan","arg","arrowvert","Arrowvert","ast","asymp","atop","atopwithdelims","b","backslash","badness","bar","baselineskip","batchmode","begingroup","beginsection","belowdisplayshortskip","belowdisplayskip","beta","bf","bffam","bgroup","big","Big","bigbreak","bigcap","bigcirc","bigcup","bigg","Bigg","biggl","Biggl","biggm","Biggm","biggr","Biggr","bigl","Bigl","bigm","Bigm","bigodot","bigoplus","bigotimes","bigr","Bigr","bigskip","bigskipamount","bigsqcup","bigtriangledown","bigtriangleup","biguplus","bigvee","bigwedge","binoppenalty","bmod","bordermatrix","bot","botmark","bowtie","box","boxmaxdepth","brace","braceld","bracelu","bracerd","braceru","bracevert","brack","break","breve","brokenpenalty","buildrel","bullet","bye","c","cal","cap","cases","catcode","cdot","cdotp","cdots","centering","centerline","char","chardef","check","chi","choose","circ","clap","cleaders","cleartabs","closein","closeout","clubpenalty","clubsuit","colon","columns","cong","coprod","copy","copyright","cos","cosh","cot","coth","count","countdef","cr","crcr","csc","csname","cup","d","dag","dagger","dashv","day","ddag","ddagger","ddot","ddots","deadcycles","def","defaulthyphenchar","defaultskewchar","deg","delcode","delimiter","delimiterfactor","delimitershortfall","delta","Delta","det","diamond","diamondsuit","dim","dimen","dimendef","discretionary","displayindent","displaylimits","displaylines","displaystyle","displaywidowpenalty","displaywidth","div","divide","do","dospecials","dosupereject","dot","doteq","dotfill","dots","doublehyphendemerits","downarrow","Downarrow","downbracefill","dp","dump","edef","egroup","eject","ell","else","emergencystretch","empty","emptyset","endcsname","endgraf","endgroup","endinput","endinsert","endline","endlinechar","enskip","enspace","epsilon","eqalign","eqalignno","eqno","equiv","errhelp","errmessage","errorcontextlines","errorstopmode","escapechar","eta","everycr","everydisplay","everyhbox","everyjob","everymath","everypar","everyvbox","exhyphenpenalty","exists","exp","expandafter","fam","fi","filbreak","finalhyphendemerits","firstmark","fivebf","fivei","fiverm","fivesy","flat","floatingpenalty","fmtname","fmtversion","folio","font","fontdimen","fontname","footins","footline","footnote","footnoterule","footstrut","forall","frenchspacing","frown","futurelet","gamma","Gamma","gcd","gdef","ge","geq","gets","gg","global","globaldefs","goodbreak","grave","H","halign","hang","hangafter","hangindent","hat","hbadness","hbar","hbox","headline","heartsuit","hfil","hfill","hfilneg","hfuzz","hglue","hideskip","hidewidth","hoffset","holdinginserts","hom","hookleftarrow","hookrightarrow","hphantom","hrule","hrulefill","hsize","hskip","hss","ht","hyphenation","hyphenchar","hyphenpenalty","i","ialign","if","ifcase","ifcat","ifdim","ifeof","iff","iffalse","ifhbox","ifhmode","ifinner","ifmmode","ifnum","ifodd","iftrue","ifvbox","ifvmode","ifvoid","ifx","ignorespaces","Im","imath","immediate","in","indent","inf","infty","input","inputlineno","insert","insertpenalties","int","interdisplaylinepenalty","interfootnotelinepenalty","interlinepenalty","intop","iota","it","item","itemitem","itfam","j","jmath","jobname","joinrel","jot","kappa","ker","kern","l","L","lambda","Lambda","land","langle","language","lastbox","lastkern","lastpenalty","lastskip","lbrace","lbrack","lccode","lceil","ldotp","ldots","le","leaders","leavevmode","left","leftarrow","Leftarrow","leftarrowfill","leftharpoondown","leftharpoonup","lefthyphenmin","leftline","leftrightarrow","Leftrightarrow","leftskip","leq","leqalignno","leqno","let","lfloor","lg","lgroup","lhook","lim","liminf","limits","limsup","line","linepenalty","lineskip","lineskiplimit","ll","llap","lmoustache","ln","lnot","log","loggingall","long","longleftarrow","Longleftarrow","longleftrightarrow","Longleftrightarrow","longmapsto","longrightarrow","Longrightarrow","loop","looseness","lor","lower","lowercase","lq","mag","magnification","magstep","magstephalf","makefootline","makeheadline","mapsto","mapstochar","mark","mathaccent","mathbin","mathchar","mathchardef","mathchoice","mathclose","mathcode","mathhexbox","mathinner","mathop","mathopen","mathord","mathpalette","mathpunct","mathrel","mathstrut","mathsurround","matrix","max","maxdeadcycles","maxdepth","maxdimen","meaning","medbreak","medmuskip","medskip","medskipamount","message","mid","midinsert","min","mit","mkern","models","month","moveleft","moveright","mp","mscount","mskip","mu","multiply","multispan","muskip","muskipdef","nabla","narrower","natural","ne","nearrow","neg","negthinspace","neq","newbox","newcount","newdimen","newfam","newhelp","newif","newinsert","newlanguage","newlinechar","newmuskip","newread","newskip","newtoks","newwrite","ni","noalign","noboundary","nobreak","noexpand","noindent","nointerlineskip","nolimits","nonfrenchspacing","nonscript","nonstopmode","nopagenumbers","normalbaselines","normalbaselineskip","normalbottom","normallineskip","normallineskiplimit","not","notin","nu","null","nulldelimiterspace","nullfont","number","nwarrow","o","O","oalign","obeylines","obeyspaces","odot","oe","OE","of","offinterlineskip","oint","ointop","oldstyle","omega","Omega","ominus","omit","ooalign","openin","openout","openup","oplus","or","Orb","oslash","otimes","outer","output","outputpenalty","over","overbrace","overfullrule","overleftarrow","overline","overrightarrow","overwithdelims","owns","P","pagebody","pagecontents","pagedepth","pagefilllstretch","pagefillstretch","pagefilstretch","pagegoal","pageinsert","pageno","pageshrink","pagestretch","pagetotal","par","parallel","parfillskip","parindent","parshape","parskip","partial","patterns","pausing","penalty","perp","phantom","phi","Phi","pi","Pi","plainoutput","pm","pmatrix","pmod","postdisplaypenalty","Pr","prec","preceq","predisplaypenalty","predisplaysize","pretolerance","prevdepth","prevgraf","prime","proclaim","prod","propto","psi","Psi","qquad","quad","radical","raggedbottom","raggedright","raise","rangle","rbrace","rbrack","rceil","Re","read","relax","relbar","Relbar","relpenalty","removelastskip","repeat","rfloor","rgroup","rho","rhook","right","rightarrow","Rightarrow","rightarrowfill","rightharpoondown","rightharpoonup","righthyphenmin","rightleftharpoons","rightline","rightskip","rlap","rm","rmoustache","romannumeral","root","rootbox","rq","S","sb","scriptfont","scriptscriptfont","scriptscriptstyle","scriptspace","scriptstyle","scrollmode","searrow","sec","setbox","setlanguage","setminus","settabs","sevenbf","seveni","sevenrm","sevensy","sfcode","sharp","shipout","show","showbox","showboxbreadth","showboxdepth","showhyphens","showlists","showthe","sigma","Sigma","sim","simeq","sin","sinh","skew","skewchar","skip","skipdef","sl","slash","slfam","smallbreak","smallint","smallskip","smallskipamount","smash","smile","sp","space","spacefactor","spaceskip","spadesuit","span","special","splitbotmark","splitfirstmark","splitmaxdepth","splittopskip","sqcap","sqcup","sqrt","sqsubseteq","sqsupseteq","ss","star","string","strut","strutbox","subset","subseteq","succ","succeq","sum","sup","supereject","supset","supseteq","surd","swarrow","t","tabalign","tabs","tabsdone","tabskip","tabsyet","tan","tanh","tau","tenbf","tenex","teni","tenit","tenrm","tensl","tensy","tentt","TeX","textfont","textindent","textstyle","the","theta","Theta","thickmuskip","thinmuskip","thinspace","tilde","time","times","to","toks","toksdef","tolerance","top","topglue","topins","topinsert","topmark","topskip","tracingall","tracingcommands","tracinglostchars","tracingmacros","tracingonline","tracingoutput","tracingpages","tracingparagraphs","tracingrestores","tracingstats","triangle","triangleleft","triangleright","tt","ttfam","ttraggedright","u","uccode","uchyph","underbar","underbrace","underline","unhbox","unhcopy","unkern","unpenalty","unskip","unvbox","unvcopy","uparrow","Uparrow","upbracefill","updownarrow","Updownarrow","uplus","uppercase","upsilon","Upsilon","v","vadjust","valign","varepsilon","varphi","varpi","varrho","varsigma","vartheta","vbadness","vbox","vcenter","vdash","vdots","vec","vee","vert","Vert","vfil","vfill","vfilneg","vfootnote","vfuzz","vglue","voffset","vphantom","vrule","vsize","vskip","vsplit","vss","vtop","wd","wedge","widehat","widetilde","widowpenalty","wlog","wp","wr","write","xdef","xi","Xi","xleaders","xspaceskip","year","zeta","beginL","beginR","botmarks","detokenize","endL","endR","eTeXrevision","eTeXversion","everyeof","firstmarks","fontcharht","fontcharwd","fontchardp","fontcharic","currentgrouplevel","currentgrouptype","currentiflevel","currentiftype","currentifbranch","ifcsname","ifdefined","interactionmode","lastlinefit","lastnodetype","marks","middle","numexpr","parshapedimen","parshapeindent","parshapelength","predisplaydirection","protected","readline","scantokens","showgroups","showtokens","splitfirstmarks","splitbotmarks","TeXXeTstate","topmarks","tracingassigns","tracinggroups","tracingifs","tracingscantokens","unexpanded","unless","dimexpr","glueexpr","muexpr","gluestretch","glueshrink","gluestretchorder","glueshrinkorder","gluetomu","mutoglue","interlinepenalties","clubpenalties","widowpenalties","displaywidowpenalties","tracingnesting","savingvdiscards","savinghyphcodes","showifs","pagediscards","splitdiscards","iffontchar"]}
-,
-"planets.sty":{"envs":{},"deps":["xcolor.sty","pgfkeys.sty","tikz.sty","tikzlibrarydecorations.pathmorphing.sty","xstring.sty"],"cmds":["planet"]}
-,
-"plantuml.sty":{"envs":["plantuml"],"deps":["adjustbox.sty","fancyvrb.sty","ifthen.sty","l3keys2e.sty","luacode.sty","pdftexcmds.sty","tikz.sty","xparse.sty"],"cmds":["PlantUMLJobname","PlantUmlMode","maxwidth","thePlantUmlFigureNumber"]}
-,
-"plarray.sty":{"envs":{},"deps":["platex.sty"],"cmds":{}}
-,
-"platex.sty":{"envs":{},"deps":["ptex.sty","latex-document.sty","latex-dev.sty"],"cmds":["pfmtname","pfmtversion","plIncludeInRelease","plEndIncludeInRelease","Cht","cht","Cdp","cdp","Cwd","cwd","Cvs","cvs","Chs","chs","cHT","afont","tstrutbox","zstrutbox","ystrutbox","tstrut","zstrut","ystrut","DeclareYokoKanjiEncoding","DeclareTateKanjiEncoding","DeclareKanjiEncodingDefaults","KanjiEncodingPair","DeclareKanjiFamily","DeclareKanjiSubstitution","DeclareErrorKanjiFont","reDeclareMathAlphabet","DeclareRelationFont","SetRelationFont","userelfont","adjustbaseline","romanencoding","kanjiencoding","romanfamily","kanjifamily","romanseries","kanjiseries","romanseriesforce","kanjiseriesforce","romanshape","kanjishape","romanshapeforce","kanjishapeforce","usekanji","useroman","kanjiseriesdefault","mcfamily","gtfamily","mathmc","mathgt","textmc","textgt","fixcompositeaccent","nofixcompositeaccent","removejfmglue","iftombow","tombowfalse","tombowtrue","iftombowdate","tombowdatetrue","tombowdatefalse","maketombowbox","printglossary","hour","minute","DeclareKanjiEncoding","mcdefault","gtdefault","kanjiencodingdefault","kanjifamilydefault","kanjishapedefault"]}
-,
-"plautopatch.sty":{"envs":{},"deps":["platex.sty"],"cmds":["plautopatchdisable"]}
-,
-"pldocverb.sty":{"envs":{},"deps":["doc.sty"],"cmds":{}}
-,
-"plex-mono.sty":{"envs":{},"deps":["ifxetex.sty","ifluatex.sty","textcomp.sty","xkeyval.sty","fontenc.sty","fontaxes.sty","mweights.sty"],"cmds":["plexmono","plexmonofamily"]}
-,
-"plex-otf.sty":{"envs":{},"deps":["ifxetex.sty","ifluatex.sty","xkeyval.sty","textcomp.sty","fontspec.sty"],"cmds":["slshapeRM","PlexExtraLightRM","PlexLightRM","PlexThinRM","PlexMediumRM","PlexTextRM","PlexSemiBoldRM","slshapeSS","PlexExtraLightSS","PlexLightSS","PlexThinSS","PlexMediumSS","PlexTextSS","PlexSemiBoldSS","sffamilyCon","slshapeSScon","PlexExtraLightSScon","PlexLightSScon","PlexThinSScon","PlexMediumSScon","PlexTextSScon","PlexSemiBoldSScon","slshapeTT","PlexExtraLightTT","PlexLightTT","PlexThinTT","PlexMediumTT","PlexTextTT","PlexSemiBoldTT","IBM","CE","FCC","upleftarrow","uprightarrow","downleftarrow","downrightarrow","leftturn","rightturn","fullleftturn","fullrightturn"]}
-,
-"plex-sans.sty":{"envs":{},"deps":["ifxetex.sty","ifluatex.sty","textcomp.sty","xkeyval.sty","fontenc.sty","fontaxes.sty","mweights.sty"],"cmds":["plexsans","plexsanscondensed","plexsansfamily","plexsanslgr"]}
-,
-"plex-serif.sty":{"envs":{},"deps":["ifxetex.sty","ifluatex.sty","textcomp.sty","xkeyval.sty","fontenc.sty","fontaxes.sty","mweights.sty"],"cmds":["plexserif","plexseriffamily"]}
-,
-"plext.sty":{"envs":{},"deps":["platex.sty"],"cmds":["floatwidth","floatheight","floatruletick","captionfloatsep","captiondir","captionwidth","captionfontsetup","layoutfloat","DeclareLayoutCaption","layoutcaption","pcaption","pbox","rensuji","rensujiskip","Rensuji","prensuji","Kanji","kanji","boutenchar","bou","kasen"]}
-,
-"plextarray.sty":{"envs":{},"deps":["plext.sty"],"cmds":{}}
-,
-"plextcolortbl.sty":{"envs":{},"deps":["plextarray.sty","colortbl.sty"],"cmds":{}}
-,
-"plextdelarray.sty":{"envs":{},"deps":["plextarray.sty"],"cmds":{}}
-,
-"plimsoll.sty":{"envs":{},"deps":{},"cmds":["plimsoll","plimsollsans","plimsollroman","stst"]}
-,
-"plprefix.sty":{"envs":{},"deps":{},"cmds":["ThePrefixChar","prefixing","nonprefixing","SetPrefixChar","PrefixMacro","PrefixingError","Prefix","PlPrIeC","dywiz","prefZisZkropka","prefZisZkreska"]}
-,
-"pm-isomath.sty":{"envs":{},"deps":["alphabeta.sty","amsmath.sty","etoolbox.sty","iftex.sty","xparse.sty"],"cmds":["MathLatin","MathGreek","ISOalpha","ISObeta","ISOgamma","ISOdelta","ISOepsilon","ISOzeta","ISOeta","ISOtheta","ISOiota","ISOkappa","ISOlambda","ISOmu","ISOnu","ISOxi","ISOomicron","ISOpi","ISOrho","ISOsigma","ISOtau","ISOupsilon","ISOphi","ISOchi","ISOpsi","ISOomega","ISOGamma","ISODelta","ISOEta","ISOTheta","ISOLambda","ISOXi","ISOPi","ISORho","ISOSigma","ISOUpsilon","ISOPhi","ISOChi","ISOPsi","ISOOmega","vectorsymbol","matrixsymbol","tensorsymbol","switchvarsymbols","switchvarlowercasegreekletters","switchvaruppercasegreekletters","ISOser","ISOsha","ISOfam","MLatin","MGreek","mathrmbf","mathbfit","mathsfit","mathsfbfit","mathsfbf","iunit","junit","iu","ju","eu","uppi","diff","PMpartialbox","uppartial","micro","ohm","ISOohm","textormath","ped","ap","unit","ifengineer","engineertrue","engineerfalse"]}
-,
-"pmat.sty":{"envs":["pmat"],"deps":{},"cmds":["pmat","endpmat","pmatcross","pmatnocross","pmatget","pmatset"]}
-,
-"pmboxdraw.sty":{"envs":{},"deps":{},"cmds":["pmboxdrawbox","pmboxdrawrulewidth","pmboxdrawdoublerulesep","pmboxdrawuni","textblock","textdkshade","textdnblock","textlfblock","textltshade","textrtblock","textSFi","textSFii","textSFiii","textSFiv","textSFix","textSFl","textSFli","textSFlii","textSFliii","textSFliv","textSFv","textSFvi","textSFvii","textSFviii","textSFx","textSFxi","textSFxix","textSFxl","textSFxli","textSFxlii","textSFxliii","textSFxliv","textSFxlix","textSFxlv","textSFxlvi","textSFxlvii","textSFxlviii","textSFxx","textSFxxi","textSFxxii","textSFxxiii","textSFxxiv","textSFxxv","textSFxxvi","textSFxxvii","textSFxxviii","textSFxxxix","textSFxxxvi","textSFxxxvii","textSFxxxviii","textshade","textupblock"]}
-,
-"pmdb.sty":{"envs":{},"deps":["eforms.sty"],"cmds":["pmInput","InputParas","InputQuizItems","InputItems","InputProbs","ifpmdbtight","pmdbtighttrue","pmdbtightfalse","pmCBPresets","useEditLnk","useEditBtn","editSourceBtn","editSourceOn","editSourceOff","editSourceLnk","displayChoices","clrChoices","displayChoiceCA","displayChoiceTU","clrChoicesCA","clrChoicesTU","altCBMargins","cbInQzMargin","cbSelectInput","ckBxInput","doinput","donext","editSourcefalse","editSourcetrue","ifeditSource","ifpmdbDQs","ifpmdbFP","ifpmdbmode","ifqzInput","Input","inputConta","inputConti","inputContii","insertCkBx","isItFullPath","ItemHook","pmAlignCB","pmAlignCBAlt","pmdbDQsfalse","pmdbDQstrue","pmdbFPfalse","pmdbFPtrue","pmdbmodefalse","pmdbmodetrue","pmHook","pmiarg","pmInputChk","pmInputWarni","pmInputWarnii","qzInputfalse","qzInputtrue","removedqs","removesemis","saveQNo","setCBsMarg"]}
-,
-"pmhanguljamo-frkim.sty":{"envs":["jamotext"],"deps":["l3keys2e.sty"],"cmds":["hg","hangul","endhangul","jamoword","frcc","rq","zeroisx","zeroisrq","frdash","frendash","fremdash","frkhangulfont","frkhangulfontfeature","activatefrcccmds","setpmhangulfont","AddRule","jamoul","frccg","frccG","frccn","frccd","frccD","frccr","frccm","frccb","frccB","frccs","frccS","frccq","frccQ","frccj","frccJ","frccc","frcck","frcct","frccp","frcch","frccz","frccX","frccv","frcca","frccai","frccia","frcciai","frcce","frccei","frccie","frcciei","frcco","frccoi","frccio","frccoa","frccoai","frccu","frccui","frcciu","frccue","frccuei","frcci","frccy","frccyi"]}
-,
-"pmhanguljamo.sty":{"envs":["jamotext"],"deps":["l3keys2e.sty"],"cmds":["jamoword","jmcc","jamoul","jamotextcmd","ColonMark","SemiColonMark","SlashMark","CntrdotMark","usepmfont","unusepmfont","setpmhangulfont","hg","hangul","endhangul","frcc","rq","zeroisx","zeroisrq","frdash","frendash","fremdash","frkhangulfont","frkhangulfontfeature","activatefrcccmds","AddRule","frccg","frccG","frccn","frccd","frccD","frccr","frccm","frccb","frccB","frccs","frccS","frccq","frccQ","frccj","frccJ","frccc","frcck","frcct","frccp","frcch","frccz","frccX","frccv","frcca","frccai","frccia","frcciai","frcce","frccei","frccie","frcciei","frcco","frccoi","frccio","frccoa","frccoai","frccu","frccui","frcciu","frccue","frccuei","frcci","frccy","frccyi"]}
-,
-"poemscol.sty":{"envs":["poem","pmclverse","stanza","indentedverse","rightflushverse","volumetitlepage","maintitlepage","quotedverse","prosesection","prosesectionnoreset","pmsection","parallelverse","parallelprose","marginenvironment","contentsentryenvironment","titleentryenvironment","booksectionpage","epigraphenvironment","cjquotation","epigraphquote","volumetitlepagequote"],"deps":{},"cmds":["ifnormaltitleindentation","normaltitleindentationtrue","normaltitleindentationfalse","normaltitleindentationscheme","iftitlesatleftversemargin","titlesatleftversemargintrue","titlesatleftversemarginfalse","titlesatleftversemarginscheme","iftitlescenteredonleftverseblock","titlescenteredonleftverseblocktrue","titlescenteredonleftverseblockfalse","titlescenteredonleftverseblockscheme","iftitlesatleftmarginofcenteredblock","titlesatleftmarginofcenteredblocktrue","titlesatleftmarginofcenteredblockfalse","titlesatleftmarginofcenteredblockscheme","ifcentertitleson","centertitlesontrue","centertitlesonfalse","centertitlesscheme","poemtitlewidth","ifleftalignepigraphs","leftalignepigraphstrue","leftalignepigraphsfalse","poemtitlefont","contentspoemtitlefont","afterpoemtitleskip","afterpoemskip","poemtitlepenalty","titleindent","versewidth","iflinenumberscenteredwithverse","linenumberscenteredwithversetrue","linenumberscenteredwithversefalse","ifcenterepigraphson","centerepigraphsontrue","centerepigraphsonfalse","iftextcenteringturnedon","textcenteringturnedontrue","textcenteringturnedonfalse","versemarginadjust","startparalleltexts","stanzaatbottom","nostanzaatbottom","verseline","setverselinemodulo","makeverselinenumbers","ifverselinenumbers","verselinenumberstrue","verselinenumbersfalse","verselinenumberstoright","verselinenumberstoleft","verselinenumbersouter","verselinenumbersgutter","headoffsetlength","marginparsepmin","pmclsideparvshift","verseindent","verseindentamount","indentedstanzaamount","linebend","runoverindent","brokenline","versephantom","stanzalinestraddle","tweakbrokenline","brokenlineatbeginning","startverseline","tweakstartverseline","rightversebegin","poemlinelabel","makepoemcontents","putpoemcontents","resetpagestyle","puttextnotes","putemendations","putexplanatory","putpoemindex","putmultiplepoemindex","setcontentsleaders","contentsleaders","poemdotfill","contentsindentoneamount","pmclcontentsentry","contentsindentone","contentsindenttwo","contentsindentthree","ifputpagenumbersincontents","putpagenumbersincontentstrue","putpagenumbersincontentsfalse","pmclecontentsentrydefaults","ifindexingon","indexingontrue","indexingonfalse","wholebooktitle","volumetitle","volumetitlefirstline","volumetitlemiddleline","volumetitlelastline","volumesubtitle","volumesectiontitle","volumededication","volumeepigraph","volumeattribution","volumeheader","leftheader","rightheader","maketextnotes","makeemendations","makeexplanatorynotes","iftextnotessinglepar","textnotessinglepartrue","textnotessingleparfalse","ifemendationssinglepar","emendationssinglepartrue","emendationssingleparfalse","ifexplanationssinglepar","explanationssinglepartrue","explanationssingleparfalse","noteindentation","noteparbreak","iftextnotestwocol","textnotestwocoltrue","textnotestwocolfalse","ifemendationstwocol","emendationstwocoltrue","emendationstwocolfalse","ifexplanationstwocol","explanationstwocoltrue","explanationstwocolfalse","ifputpagenumberinnotes","putpagenumberinnotestrue","putpagenumberinnotesfalse","ifputtitleinnotes","puttitleinnotestrue","puttitleinnotesfalse","contentsendnotesindent","contentsendnotesfont","sources","literaltextnote","literalemend","literalexplain","literalcontents","textnote","emendation","explanatory","sameword","missingpunct","accidental","ifincludeaccidentals","includeaccidentalstrue","includeaccidentalsfalse","tsvariant","tsentry","ifincludetypescripts","includetypescriptstrue","includetypescriptsfalse","margreftextnote","margrefexplanatory","margrefemendation","JHmarksleft","JHmarksright","JHmarksouter","JHmarksgutter","quotedversecorrectiontextnote","quotedversecorrectionexplanatory","quotedversecorrectionemendation","definenewnotetype","textnotesatfoot","emendationsatfoot","explanationsatfoot","iftextfootnotespara","textfootnotesparatrue","textfootnotesparafalse","ifsourcesfootnotespara","sourcesfootnotesparatrue","sourcesfootnotesparafalse","ifemendationfootnotespara","emendationfootnotesparatrue","emendationfootnotesparafalse","ifexplanfootnotespara","explanfootnotesparatrue","explanfootnotesparafalse","poemendnote","makepoemendnotes","putpoemendnotes","ifpoemendnotessinglepar","poemendnotessinglepartrue","poemendnotessingleparfalse","poemendemendationnote","makepoemendemendationnotes","putpoemendemendationnotes","poemendexplanatorynote","makepoemendexplanatorynotes","putpoemendexplanatorynotes","poemendtextnote","makepoemendtextnotes","putpoemendtextnotes","ifpoemendtextnotessinglepar","poemendtextnotessinglepartrue","poemendtextnotessingleparfalse","testforauxonfirstrun","makeappendix","appendixtitle","makesubappendix","subappendixtitle","ifappendixincontents","appendixincontentstrue","appendixincontentsfalse","makeforeword","forewordtitle","epigraph","headnote","attribution","dedication","poemdedication","shortpoemepigraph","shortpoemdedication","shortpoemattribution","JHshortepigraph","JHshortdedication","poemdate","dateindent","saveverselinenumber","restoreverselinenumber","poemtitle","poemtitlefirstline","poemtitlemiddleline","poemtitlelastline","poemsubtitle","poemtitlenotitle","poemtitlenocontents","poemtitlebaretitle","poemtitleonlycontents","poemtitleonlynotes","poemsectiontitle","poemsectiontitlefirstline","poemsectiontitlemiddleline","poemsectiontitlelastline","poemsectiontitlenocontents","poemsectiontitlebaretitle","poemfirstsectiontitle","poemfirstsectiontitlebaretitle","poemsubsectiontitle","sequencetitle","sequencetitlefirstline","sequencetitlemiddleline","sequencetitlelastline","sequencetitlenonotes","sequencesubtitle","sequencesubtitlefirstline","sequencesubtitlemiddleline","sequencesubtitlelastline","sequencesectiontitle","sequencesectiontitlenocontents","sequencesectiontitlenonotes","sequencesectiontitlebaretitle","sequencesectiontitlefirstline","sequencesectiontitlemiddleline","sequencesectiontitlelastline","sequencefirstsectiontitle","sequencefirstsectiontitlenocontents","sequencefirstsectiontitlenonotes","sequencefirstsectiontitlefirstline","sequencefirstsectiontitlemiddleline","sequencefirstsectiontitlelastline","sequencesectionsubtitle","sequencesectionsubtitlefirstline","sequencesectionsubtitlemiddleline","sequencesectionsubtitlelastline","sequencesubsectiontitle","sequencesubsectiontitlenocontents","sequencefirstsubsectiontitle","sequencefirstsubsectiontitlenocontents","sequencesubsectiontitlefirstline","sequencesubsectiontitlemiddleline","sequencesubsectiontitlelastline","sequencefirstsubsectiontitlefirstline","sequencefirstsubsectiontitlemiddleline","sequencefirstsubsectiontitlelastline","sequencesubsubsectiontitle","sequencesubsubsectiontitlenocontents","sequencefirstsubsubsectiontitlenocontents","JHpoemtitle","JHsequencetitle","JHsequencefirstsectiontitle","JHsequencesectiontitle","JHsequencesubsectiontitle","JHpoemsectiontitle","JHpoemfirstsectiontitle","JHpoemsubtitle","JHepigraph","JHprosesectiontitle","JHdedication","setmargpoemtitle","setmargrefmarker","settitlemargrefmarker","footnotepoemtitle","footnotepoemtitlefirstline","footnotepoemtitlemiddleline","footnotepoemtitlelastline","footnotesplitpoemtitle","maketitlefootnoteslayered","maketitlefootnotesatpoemend","maketitlefootnotesplain","poemtitlenonotes","firstlinesettings","middlelinesettings","lastlinesettings","restoresinglelinesettings","volumetitleindentamount","volumetitlesecondlineindentamount","volumesubtitleindentamount","volumesubtitlesecondlineindentamount","volumesectiontitleindentamount","volumesectiontitlesecondlineindentamount","poemtitleindentamount","poemtitlesecondlineindentamount","poemsubtitleindentamount","poemsectiontitleindentamount","poemsectiontitlesecondlineindentamount","poemsubsectiontitleindentamount","sequencetitleindentamount","sequencetitlesecondlineindentamount","sequencesubtitleindent","sequencesubtitlesecondlineindentamount","sequencesectiontitleindentamount","sequencesectiontitlesecondlineindentamount","sequencesectionsubtitleindentamount","sequencesectionsubtitlesecondlineindentamount","sequencesubsectiontitleindentamount","sequencesubsubsectiontitleindentamount","appendixtitleindentamount","subappendixtitleindentamount","forewordtitleindentamount","notestitleindentamount","titleindentamount","titleindenttwoamount","titleindentthreeamount","longpage","shortpage","contentsvolumetitleindentamount","contentsvolumetitlesecondlineindentamount","contentsvolumesubtitleindentamount","contentsvolumesubtitlesecondlineindentamount","contentsvolumesectiontitleindentamount","contentsvolumesectiontitlesecondlineindentamount","contentspoemtitleindentamount","contentspoemtitlesecondlineindentamount","contentspoemsectiontitleindentamount","contentssequencetitleindentamount","contentssequencetitlesecondlineindentamount","contentssequencesectiontitleindentamount","contentssequencesectiontitlesecondlineindentamount","contentssequencesubsectiontitleindentamount","contentsappendixtitleindentamount","contentsnotestitleindentamount","contentsindenttwoamount","contentsindentthreeamount","prosesectiontitle","prosesectiontitlenotitle","setprosemodulo","proselinelabel","prosetextnote","proseemendation","proseexplanatory","prosetsvariant","proseaccidental","prosetsaccidental","setprosebysentence","verselinenumbersswitch","pmsentence","ifrunningsentencenumbers","runningsentencenumberstrue","runningsentencenumbersfalse","ifmarginsentencenumbers","marginsentencenumberstrue","marginsentencenumbersfalse","setpmmodulo","pmsentencetwo","pmsentencethree","pmsentencefour","pmnumberstoright","pmnumberstoleft","pmnumbersgutter","pmnumbersouter","runningsentencenumberformat","marginsentencenumberformat","pmpara","ifpmparas","pmparastrue","pmparasfalse","ifpmsentencebypara","pmsentencebyparatrue","pmsentencebyparafalse","ifpmparainmar","pmparainmartrue","pmparainmarfalse","ifpmpararunning","pmpararunningtrue","pmpararunningfalse","pmpararunningformat","pmparmarformat","ifsuppressfirstpara","suppressfirstparatrue","suppressfirstparafalse","ifsuppressfirstsentence","suppressfirstsentencetrue","suppressfirstsentencefalse","sentencelabel","pmtextnote","pmexplanatory","pmemendation","pmaccidental","pmtsvariant","pmtsaccidental","biblechapter","bibleverse","finishparalleltexts","startrectopage","finishrectopage","startversopage","finishversopage","versopoemtitle","rectopoemtitle","versopoemtitlenocontents","rectopoemtitlenocontents","rectotextnote","rectoemendation","rectoexplanatory","versotextnote","versoemendation","versoexplanatory","versoprosetextnote","versoproseemendation","versoproseexplanatory","rectoprosetextnote","rectoproseemendation","rectoproseexplanatory","makerectotextnotes","makerectoemendations","makerectoexplanatorynotes","makeversotextnotes","makeversoemendations","makeversoexplanatorynotes","changerectotextnotesname","changerectotextnotesheader","changerectotextnotescontentsname","changeversotextnotesname","changeversotextnotesheader","changeversotextnotescontentsname","ifrectotextnotessinglepar","rectotextnotessinglepartrue","rectotextnotessingleparfalse","ifrectotextnotestwocol","rectotextnotestwocoltrue","rectotextnotestwocolfalse","ifversotextnotestwocol","versotextnotestwocoltrue","versotextnotestwocolfalse","versotextnotes","ifversotextnotessinglepar","versotextnotessinglepartrue","versotextnotessingleparfalse","putrectotextnotes","putversotextnotes","putversoemendations","putrectoemendations","putversoexplanatorynotes","putrectoexplanatorynotes","synchrolabel","synchroref","setsynchroflag","startparalleltextprose","finishparalleltextprose","startversoprosepage","finishversoprosepage","startrectoprosepage","finishrectoprosepage","parastart","paraend","changecontentsname","changecontentsheader","changenotesname","changenotesheader","changetextnotescontentsname","changesinglepageabbrev","changemultiplepageabbrev","changesinglelineabbrev","changemultiplelineabbrev","changeemendationsname","changeemendationsheader","changeemendationscontentsname","changeexplanationsname","changeexplanationsheader","changeexplanationscontentsname","changepoemindexname","changepoemindexheader","changepoemindexcontentsname","tightgeometry","tightleading","volumetitlefont","volumesubtitlefont","sequencetitlefont","subsectiontitlefont","backmatterheaderfont","volumetitlesink","backmattersink","backmatterafterheadersink","backmattertextfont","backmatterintrofont","backmattervolumefont","backmattervolumesubtitlefont","contentsvolumefont","contentsvolumesubtitlefont","contentssequencetitlefont","notespoemclubpenalty","notessequenceclubpenalty","notesvolumetitlepenalty","repeatedindent","variablestanzaamount","ifinindentedverse","inindentedversetrue","inindentedversefalse","runoverindentvalue","volumetitleindent","volumetitlesecondlineindent","volumesubtitleindent","volumesubtitlesecondlineindent","volumesectiontitleindent","volumesectiontitlesecondlineindent","poemtitleindent","poemtitlesecondlineindent","poemsubtitleindent","poemsectiontitleindent","poemsectiontitlesecondlineindent","poemsubsectiontitleindent","sequencetitleindent","sequencetitlesecondlineindent","sequencesubtitleindentamount","sequencesubtitlesecondlineindent","sequencesectiontitleindent","sequencesectiontitlesecondlineindent","sequencesectionsubtitleindent","sequencesectionsubtitlesecondlineindent","sequencesubsectiontitleindent","sequencesubsubsectiontitleindent","appendixtitleindent","subappendixtitleindent","forewordtitleindent","notestitleindent","volumetitleshiftamount","volumetitleshift","voladditionalamount","contentsindentfouramount","contentsindentfour","contentsindentfiveamount","contentsindentfive","contentsvolumetitleindent","contentsvolumetitlesecondlineindent","contentsvolumesubtitleindent","contentsvolumesubtitlesecondlineindent","contentsvolumesectiontitleindent","contentsvolumesectiontitlesecondlineindent","contentspoemtitleindent","contentspoemtitlesecondlineindent","contentspoemsubtitleindentamount","contentspoemsubtitleindent","contentspoemsectiontitleindent","contentspoemsectiontitlesecondlineindentamount","contentspoemsectiontitlesecondlineindent","contentspoemsubsectiontitleindentamount","contentspoemsubsectiontitleindent","contentssequencetitleindent","contentssequencetitlesecondlineindent","contentssequencesubtitleindentamount","contentssequencesubtitleindent","contentssequencesubtitlesecondlineindentamount","contentssequencesubtitlesecondlineindent","contentssequencesectiontitleindent","contentssequencesectiontitlesecondlineindent","contentssequencesectionsubtitleindentamount","contentssequencesectionsubtitleindent","contentssequencesectionsubtitlesecondlineindentamount","contentssequencesectionsubtitlesecondlineindent","contentssequencesubsectiontitleindent","contentssequencesubsubsectiontitleindentamount","contentssequencesubsubsectiontitleindent","aftersequencetitleskip","stanzaskip","multilinetitlepenalty","sequencetitlepenalty","multilinesequencepenalty","lefttitleaddition","iflastpoemcentered","lastpoemcenteredtrue","lastpoemcenteredfalse","ifinquotedverse","inquotedversetrue","inquotedversefalse","fulltitleholder","titlesofar","titleincrement","ifinstanza","instanzatrue","instanzafalse","ifinpoem","inpoemtrue","inpoemfalse","ifpoemcontentson","poemcontentsontrue","poemcontentsonfalse","iftextnoteson","textnotesontrue","textnotesonfalse","ifexplanon","explanontrue","explanonfalse","ifemendationson","emendationsontrue","emendationsonfalse","ifredundantemendations","redundantemendationstrue","redundantemendationsfalse","ifnoemendyet","noemendyettrue","noemendyetfalse","ifnoexplainyet","noexplainyettrue","noexplainyetfalse","ifmiddlecontentsline","middlecontentslinetrue","middlecontentslinefalse","iflastcontentsline","lastcontentslinetrue","lastcontentslinefalse","ifputpagenumberincontents","putpagenumberincontentstrue","putpagenumberincontentsfalse","ifsinglelinetitle","singlelinetitletrue","singlelinetitlefalse","iftitlefirstline","titlefirstlinetrue","titlefirstlinefalse","titleconcat","iftitlemiddleline","titlemiddlelinetrue","titlemiddlelinefalse","iftitlelastline","titlelastlinetrue","titlelastlinefalse","ifverserightflush","verserightflushtrue","verserightflushfalse","ifrangelemma","rangelemmatrue","rangelemmafalse","iftextnotesatend","textnotesatendtrue","textnotesatendfalse","ifemendationsatend","emendationsatendtrue","emendationsatendfalse","ifexplanatend","explanatendtrue","explanatendfalse","volumeheadervalue","leftheadervalue","singlelineabbrev","multiplelineabbrev","myversemarks","clearemptydoublepage","singlepageabbrev","multiplepageabbrev","mymarks","contentsentryoverrun","titleentryoverrun","oldleftskip","ifnumbersswitch","numbersswitchtrue","numbersswitchfalse","ifnumbersright","numbersrighttrue","numbersrightfalse","pmclsidepar","pmemlabel","newpmemlabel","pmemlabelref","checkoddpage","ifpmclreversesidepar","pmclreversesidepartrue","pmclreversesideparfalse","ifpmclsideparswitch","pmclsideparswitchtrue","pmclsideparswitchfalse","ifoddpage","oddpagetrue","oddpagefalse","ifstrictpagecheck","strictpagechecktrue","strictpagecheckfalse","cplabel","ifnumbersgutter","numbersguttertrue","numbersgutterfalse","putverselinenumber","ifspeciallinelock","speciallinelocktrue","speciallinelockfalse","incrementverselinenumber","hour","pmclcontentsname","pmclcontentsheader","poemcontents","setendnotessectiontitledefaults","setendnotessectiontitle","contentsendnotesdefaults","contentsendnotestitle","pmclnotesname","notesheadername","textnotescontentsname","textnotes","emendationsname","emendationsheadername","emendationscontentsname","emendations","explanationsname","explanationsheadername","explanationscontentsname","explanations","ifforewordincontents","forewordincontentstrue","forewordincontentsfalse","appendixdividerpage","contentsendnotessubtitle","foreworddividerpage","pmclcontentsentrydefaults","booksection","volumesubtitlefirstline","volumesubtitlemiddleline","volumesubtitlelastline","volumesectiontitlefirstline","volumesectiontitlemiddleline","volumesectiontitlelastline","makepoemlabel","argpageref","lefttitlemargin","leftaligntitlespace","ifleftaligntitles","leftaligntitlestrue","leftaligntitlesfalse","interjectiontitlefirstline","interjectiontitlemiddleline","interjectiontitlelastline","JHtextwidth","JHmarginparsep","JHmarginparvshift","JHmarginparwidth","JHmarginparsepmin","JHtitlemarginparsep","ifJHmarkstoleft","JHmarkstolefttrue","JHmarkstoleftfalse","ifJHmarkstoright","JHmarkstorighttrue","JHmarkstorightfalse","ifJHmarkstoouter","JHmarkstooutertrue","JHmarkstoouterfalse","ifJHmarkstogutter","JHmarkstoguttertrue","JHmarkstogutterfalse","ifJHmarginparswitch","JHmarginparswitchtrue","JHmarginparswitchfalse","ifJHreversemarginpar","JHreversemarginpartrue","JHreversemarginparfalse","JHrightmarginpar","JHleftmarginpar","JHoutermarginpar","JHswitchmarginpar","JHguttermarginpar","JHrighttitlemarginpar","JHlefttitlemarginpar","JHswitchtitlemarginpar","JHlabel","JHsequencesectionsubtitle","backmattersectiontitle","margrefmarker","titlemargrefmarker","makemargreflabel","ifmargrefstomargin","margrefstomargintrue","margrefstomarginfalse","setmargref","margrefspecial","iftitlefootnotesatpoemend","titlefootnotesatpoemendtrue","titlefootnotesatpoemendfalse","iftitlefootnotesplain","titlefootnotesplaintrue","titlefootnotesplainfalse","iftitlefootnoteslayered","titlefootnoteslayeredtrue","titlefootnoteslayeredfalse","placetitlefootnote","poemendnotes","centerepigraphindentation","normalepigraphindentation","centerepigraphquote","normalepigraphquote","testforcenterepigraph","variabledateindent","poemattributionindent","variablepoemattributionindent","poemattribution","strip","literaltextnoteshort","literalemendshort","literalexplainshort","literalcontentsshort","pmccheckifinteger","ifinteger","integertrue","integerfalse","pmcgobm","setlemmarange","citerange","resetlemmacounters","checknoteheaders","tsaccidental","titletoothernotes","firstemendation","firstexplanatory","appendtomacro","ifinprosesection","inprosesectiontrue","inprosesectionfalse","linenumberfont","ifrefundefined","setcounterfromref","setcounterfrompageref","setproselemmastart","setproselemmarange","proseciterange","checkprosenoteheaders","ifprosebysentence","prosebysentencetrue","prosebysentencefalse","pmnoteheader","pmnumbersswitch","putpmsentencenumber","putpmmarginnumber","noteheaderconcat","putpmsentencenumbertwo","putpmsentencenumberthree","putpmsentencenumberfour","putpmmarparanumber","pmrangeend","setpmlemmarange","pmciterange","pmchecknoteheaders","pmresetlemmacounters","footnoteH","FootnotetextA","FootnotetextB","FootnotetextC","FootnotetextD","ifpoemendnoteson","poemendnotesontrue","poemendnotesonfalse","literalpoemendnote","ifpoemendemendationnoteson","poemendemendationnotesontrue","poemendemendationnotesonfalse","ifpoemendemendationnotessinglepar","poemendemendationnotessinglepartrue","poemendemendationnotessingleparfalse","poemendemendationnotes","literalpoemendemendationnote","ifpoemendexplanatorynoteson","poemendexplanatorynotesontrue","poemendexplanatorynotesonfalse","ifpoemendexplanatorynotessinglepar","poemendexplanatorynotessinglepartrue","poemendexplanatorynotessingleparfalse","poemendexplanatorynotes","literalpoemendexplanatorynote","ifpoemendtextnoteson","poemendtextnotesontrue","poemendtextnotesonfalse","poemendtextnotes","literalpoemendtextnote","stanzaatbottomvalue","nostanzaatbottomvalue","cleartorecto","cleartoverso","ifenv","pmclsavsk","pmclsavsf","pmclbsphack","pmclesphack","pmclleftsidepar","pmclrightsidepar","ifparalleltexts","paralleltextstrue","paralleltextsfalse","ifrecto","rectotrue","rectofalse","ifverso","versotrue","versofalse","ifrectopoempending","rectopoempendingtrue","rectopoempendingfalse","ifversopoempending","versopoempendingtrue","versopoempendingfalse","ifrectostanzapending","rectostanzapendingtrue","rectostanzapendingfalse","ifversostanzapending","versostanzapendingtrue","versostanzapendingfalse","ifrectostanzastillopen","rectostanzastillopentrue","rectostanzastillopenfalse","ifversostanzastillopen","versostanzastillopentrue","versostanzastillopenfalse","ifrectopoemstillopen","rectopoemstillopentrue","rectopoemstillopenfalse","ifversopoemstillopen","versopoemstillopentrue","versopoemstillopenfalse","ifrectoprosesectionpending","rectoprosesectionpendingtrue","rectoprosesectionpendingfalse","ifversoprosesectionpending","versoprosesectionpendingtrue","versoprosesectionpendingfalse","ifrectoprosesectionstillopen","rectoprosesectionstillopentrue","rectoprosesectionstillopenfalse","ifversoprosesectionstillopen","versoprosesectionstillopentrue","versoprosesectionstillopenfalse","ifrectoquotedversepending","rectoquotedversependingtrue","rectoquotedversependingfalse","ifversoquotedversepending","versoquotedversependingtrue","versoquotedversependingfalse","ifrectoquotedversestillopen","rectoquotedversestillopentrue","rectoquotedversestillopenfalse","ifversoquotedversestillopen","versoquotedversestillopentrue","versoquotedversestillopenfalse","ifrectoemendationspending","rectoemendationspendingtrue","rectoemendationspendingfalse","ifversoemendationspending","versoemendationspendingtrue","versoemendationspendingfalse","ifrectoexplanationspending","rectoexplanationspendingtrue","rectoexplanationspendingfalse","ifversoexplanationspending","versoexplanationspendingtrue","versoexplanationspendingfalse","versotitleholder","rectotitleholder","makeversotitleholder","makerectotitleholder","versotitletoothernotes","versotitleinnotescheck","rectotitletoothernotes","rectotitleinnotescheck","saveversoline","restoreversoline","saverectoline","restorerectoline","synchroflag","hfilll","versotextnotesname","versotextnotesheadername","versotextnotescontentsname","ifnoversotextnoteyet","noversotextnoteyettrue","noversotextnoteyetfalse","literalversotextnote","firstversotextnote","rectotextnotesname","rectotextnotesheadername","rectotextnotescontentsname","rectotextnotes","ifnorectotextnoteyet","norectotextnoteyettrue","norectotextnoteyetfalse","literalrectotextnote","firstrectotextnote","versoemendationsname","changeversoemendationsname","versoemendationsheadername","changeversoemendationsheader","versoemendationscontentsname","changeversoemendationscontentsname","ifversoemendationstwocol","versoemendationstwocoltrue","versoemendationstwocolfalse","versoemendations","ifversoemendationssinglepar","versoemendationssinglepartrue","versoemendationssingleparfalse","ifnoversoemendationyet","noversoemendationyettrue","noversoemendationyetfalse","literalversoemendation","firstversoemendation","rectoemendationsname","changerectoemendationsname","rectoemendationsheadername","changerectoemendationsheader","rectoemendationscontentsname","changerectoemendationscontentsname","ifrectoemendationstwocol","rectoemendationstwocoltrue","rectoemendationstwocolfalse","rectoemendations","ifrectoemendationssinglepar","rectoemendationssinglepartrue","rectoemendationssingleparfalse","ifnorectoemendationyet","norectoemendationyettrue","norectoemendationyetfalse","literalrectoemendation","firstrectoemendation","versoexplanationsname","changeversoexplanationsname","versoexplanationsheadername","changeversoexplanationsheader","versoexplanationscontentsname","changeversoexplanationscontentsname","ifversoexplanationstwocol","versoexplanationstwocoltrue","versoexplanationstwocolfalse","versoexplanations","literalversoexplain","ifversoexplanationssinglepar","versoexplanationssinglepartrue","versoexplanationssingleparfalse","firstversoexplanatory","ifnoversoexplainyet","noversoexplainyettrue","noversoexplainyetfalse","rectoexplanationsname","changerectoexplanationsname","rectoexplanationsheadername","changerectoexplanationsheader","rectoexplanationscontentsname","changerectoexplanationscontentsname","ifrectoexplanationstwocol","rectoexplanationstwocoltrue","rectoexplanationstwocolfalse","rectoexplanations","literalrectoexplain","ifrectoexplanationssinglepar","rectoexplanationssinglepartrue","rectoexplanationssingleparfalse","firstrectoexplanatory","ifnorectoexplainyet","norectoexplainyettrue","norectoexplainyetfalse","pmclresetsettitleinnotes","pmclversoresetsettitleinnotes","pmclrectoresetsettitleinnotes","literalexplanatory","literalversoexplanatory","literalrectoexplanatory","ifversopassagestillopen","versopassagestillopentrue","versopassagestillopenfalse","ifrectopassagestillopen","rectopassagestillopentrue","rectopassagestillopenfalse","ifinpara","inparatrue","inparafalse","ifrectoparapending","rectoparapendingtrue","rectoparapendingfalse","ifrectoparaopen","rectoparaopentrue","rectoparaopenfalse","ifversoparapending","versoparapendingtrue","versoparapendingfalse","ifversoparaopen","versoparaopentrue","versoparaopenfalse","makeprosepagelabel","saveversoproseline","restoreversoproseline","saverectoproseline","restorerectoproseline","startparalleltextsprose","finishparalleltextsprose","hyphenationforsmall","poemindexname","poemindexheadername","poemindexcontentsname","noteaboutstanzamarkpage","poemindexlabelname","changepoemindexlabelname","pmclidxitem","epigraphquoteleftmargin","epigraphquoterightmargin","thelemmaend","thelemmalines","thelineindexrepeat","themargrefnumber","thenotepageholdernote","thenotepageholdertitle","thepmindexcount","thepmmodulo","thepmparagraph","thepmsentencenumber","thepoemnumber","theprintlineindex","theprintlineindexscratch","theproselinenumber","theprosemodulo","theprosepage","therectoindexscratch","therectolinecounter","therectoproselinecounter","theverselinenumber","theverselinenumberscratch","theversoindexscratch","theversolinecounter","theversoproselinecounter","centertitles","finish","poemtitleitalic","poemtitlenotitleitalic","makelinenumbers","sequencesectiontitleitalicnonotes","sequencesectiontitleitalic","sequencesectiontitlefirstlineitalic"]}
-,
-"poetry.sty":{"envs":["poem","poemgroup"],"deps":["modulus.sty","imakeidx.sty"],"cmds":["addgrouptolop","addtolop","blap","centerpoemoff","centerpoemon","endpoem","endpoemgroup","hin","ifpoemlinenums","ifpoemrtlinenums","iofl","listofpoems","loopcommand","lopname","placelineno","poem","poemauthorposthook","poemauthorprehook","poemauthorstyle","poemblankauthor","poemblanktitle","poembotskip","poemdefaultlicense","poemfirstline","poemgroup","poemgroupblankname","poemgroupheading","poemgrouplopformat","poemgroupname","poemgroupotherposthook","poemgroupotherprehook","poemgroupotherstyle","poemgrouptitleposthook","poemgrouptitleprehook","poemgrouptitlestyle","poemhangindent","poemhinwd","poemindent","poemioflname","poemlineno","poemlinenumboxgap","poemlinenumboxwd","poemlinenumright","poemlinenumrightfalse","poemlinenumrighttrue","poemlinenumsfalse","poemlinenumstrue","poemlinenumstyle","poemlopformat","poemmaxlinewd","poemnew","poemnumlines","poemrtlineno","poemrtlinenumboxgap","poemrtlinenumboxwd","poemrtlinenumsfalse","poemrtlinenumstrue","poemrtlinenumstyle","poemrtmaxlinewd","poemrtnumlines","poemtitleposthook","poemtitleprehook","poemtitlestyle","poemtopskip","poemverseskip","poemvsindentlines","printiofl","stanzano","theabspoemno","thepoemauthor","thepoemgroupname","thepoemgroupno","thepoemindentevery","thepoemlicense","thepoemline","thepoemlinenumsevery","thepoemno","thepoempubdate","thepoemrtline","thepoemrtlinenumsevery","thepoemtitle","thestanzacount","theverseline","titleauthorpoem","titlepoem","tlap","vslineno"]}
-,
-"poetrytex.sty":{"envs":["poem","annotation"],"deps":["expl3.sty","tocloft.sty"],"cmds":["pttitle","ptsubtitle","ptauthor","ptdate","poemvspace","pttitleleftspace","pttitlerightspace","ptsubtitleleftspace","ptsubtitlerightspace","usedefaulttitles","nousedefaulttitles","ptdefaulttitle","useincipits","nouseincipits","ptdefaultenv","pttitleenv","ptdefaultgroupenv","grouppagestyle","pregroupvspace","postgroupvspace","ptannotationenv","ptdedication","makededication","listofpoem","listofpoems","resetnumon","topname","topentrytype","toptocentrytype","listpoemsintoc","nolistpoemsintoc","tocentrytype","maketoc","maketop","numbertop","numbertoc","nonumbertop","nonumbertoc","beforetitle","aftertitle","beforesubtitle","aftersubtitle","beforeauthor","afterauthor","beforedate","afterdate","dedicationformat","prededicationvspace","postdedicationvspace","beforededication","afterdedication","beforetoc","aftertoc","beforetop","aftertop","beforepoemgroup","afterpoemgroup","incipit","theincipit","poetryheadings","numberpoems","nonumberpoems","titlepoemnum","toppoemnum","tocpoemnum","stanzaparskip","clearpageafterpoem","noclearpageafterpoem","clearpageafterannotation","noclearpageafterannotation","ptgap","ptind","poemtitleformat","incipittopformat","incipittocformat","ptspacergap","ptspacerchar","ptspacer","linktopoem","ptgroup","poemgroup","setpoemgroup","annotationheadings","theabsolutepoemnum","theabsoluteannotationnum","theabsolutetitledpoemnum","theabsoluteuntitledpoemnum","theannotationnum","thepoemgroupnum","thepoemnum","theptspacernum","thetitledpoemnum","theuntitledpoemnum"]}
-,
-"polexpr.sty":{"envs":{},"deps":["xintexpr.sty"],"cmds":["poldef","PolDef","PolGenFloatVariant","PolTypeset","PolTypesetCmd","PolIfCoeffIsPlusOrMinusOne","PolTypesetOne","PolTypesetMonomialCmd","PolTypesetCmdPrefix","PolIndex","PolVar","PolToSturm","PolSturmIsolateZeros","PolSturmIsolateZerosAndGetMultiplicities","PolSturmIsolateZerosGetMultiplicitiesAndRationalRoots","PolSturmIsolateZerosAndFindRationalRoots","PolRefineInterval","PolEnsureIntervalLength","PolEnsureIntervalLengths","PolPrintIntervals","PolPrintIntervalsNoRealRoots","PolPrintIntervalsBeginEnv","PolPrintIntervalsEndEnv","PolPrintIntervalsRowSeparator","PolPrintIntervalsKnownRoot","PolPrintIntervalsUnknownRoot","PolPrintIntervalsPrintExactZero","PolPrintIntervalsPrintLeftEndPoint","PolPrintIntervalsPrintRightEndPoint","PolPrintIntervalsPrintMultiplicity","PolSetToSturmChainSignChangesAt","PolSetToNbOfZerosWithin","PolLet","PolGlobalLet","PolAssign","toarray","PolGet","fromarray","PolFromCSV","PolMapCoeffs","PolReduceCoeffs","PolMakeMonic","PolMakePrimitive","PolDiff","PolAntiDiff","PolDivide","PolQuo","PolRem","PolGCD","PolToExpr","PolToExprVar","PolToExprInVar","PolToExprTimes","PolToExprCaret","PolToExprCmd","PolToExprOneTerm","PolToExprOneTermStyleA","PolToExprOneTermStyleB","PolToExprTermPrefix","PolToFloatExpr","PolToFloatExprOneTerm","PolToFloatExprCmd","PolNthCoeff","PolLeadingCoeff","PolDegree","PolIContent","PolToList","PolToCSV","PolEval","AtExpr","At","PolEvalReduced","PolFloatEval","PolSturmChainLength","PolSturmIfZeroExactlyKnown","PolSturmIsolatedZeroLeft","PolSturmIsolatedZeroRight","PolSturmIsolatedZeroMultiplicity","PolSturmNbOfIsolatedZeros","PolSturmNbOfRootsOf","PolSturmNbWithMultOfRootsOf","PolSturmNbOfRationalRoots","PolSturmNbOfRationalRootsWithMultiplicities","PolSturmRationalRoot","PolSturmRationalRootIndex","PolSturmRationalRootMultiplicity","PolIntervalWidth","PolPrintIntervalsTheVar","PolPrintIntervalsTheIndex","PolPrintIntervalsTheSturmName","PolPrintIntervalsTheLeftEndPoint","PolPrintIntervalsTheRightEndPoint","PolPrintIntervalsTheMultiplicity","ifpolnewpolverbose","polnewpolverbosetrue","polnewpolverbosefalse","ifpoltypesetall","poltypesetalltrue","poltypesetallfalse","ifpoltoexprall","poltoexpralltrue","poltoexprallfalse","PolDecToString","polexprsetup","ifxintveryverbose","xintveryverbosetrue","xintveryverbosefalse","next","PolNbOfRootsLessThanOrEqualToExpr","PolNbOfRootsLessThanOrEqualTo","PolNbWithMultOfRootsLessThanOrEqualToExpr","PolNbWithMultOfRootsLessThanOrEqualTo","PolPrintIntervalsArrayStretch","PolSturmIntervalIndexAtExpr","PolSturmIntervalIndexAt","PolSturmIntervalIndex","PolToExprAscending","PolToExprDescending","PolToFloatExprAscending","PolToFloatExprDescending","xintPolAdd","xintPolAntiOne","xintPolCoeffs","xintPolCoeff","xintPolCont","xintPolDeg","xintPolDiffN","xintPolDiffOne","xintPolDiffTwo","xintPolDivModQ","xintPolDivModR","xintPolDivMod","xintPolEvalAt","xintPolGCDof","xintPolIntFrom","xintPolIntegral","xintPolLCoeffs","xintPolLC","xintPolLPol","xintPolMonicPart","xintPolMul","xintPolOpp","xintPolPRem","xintPolPol","xintPolPow","xintPolPrimPart","xintPolQuoRem","xintPolQuo","xintPolRedCoeffs","xintPolRem","xintPolSRedCoeffs","xintPolSqr","xintPolSub","xintiiifNeg","xintiiifneg","PolEvalAtExpr","PolEvalAt","PolEvalReducedAtExpr","PolEvalReducedAt","PolFloatEvalAtExpr","PolFloatEvalAt","POL"]}
-,
-"polski.sty":{"envs":{},"deps":{},"cmds":["guillemetleft","guillemetright","guillemotleft","guillemotright","k","quotedblbase","DH","dh","dj","DJ","guilsinglleft","guilsinglright","Hwithstroke","hwithstroke","NG","ng","quotesinglbase","textogonekcentered","textquotedbl","th","TH","textalpha","textanglearc","textapprox","textbeta","textDelta","textdelta","textdiameter","textell","textEuro","textinfty","textOmega","textpi","textPi","textSigma","textxgeq","textxleq","LaMeX","MeX","english","polish","macron","xge","xle","PLdateending","dywiz","pauza","tg","tgh","ctg","ctgh","nwd","arc","ar","arccot","bibname","ccname","chaptername","enclname","headtoname","nonprefixing","pagename","PlPrIeC","PLSlash","ppauza","prefacename","prefixing","proofname","seename","selecthyphenation","Slash","xgeq","xleq"]}
-,
-"polyglossia.sty":{"envs":["lang","afrikaans","otherlanguage","otherlanguage*","hyphenrules"],"deps":["etoolbox.sty","makecmds.sty","xkeyval.sty","fontspec.sty","iftex.sty","expl3.sty","l3keys2e.sty","xparse.sty","bidi.sty","luabidi.sty","calc.sty","arabicnumbers.sty","hijrical.sty","xpg-cyrillicnumbers.sty","devanagaridigits.sty","bengalidigits.sty","luavlna.sty","hebrewcal.sty","farsical.sty","nkonumbers.sty"],"cmds":["setdefaultlanguage","setmainlanguage","setotherlanguage","setotherlanguages","textlang","textafrikaans","textalbanian","textamharic","textarabic","textarmenian","textasturian","textbasque","textbelarusian","textbengali","textbosnian","textbreton","textbulgarian","textcatalan","textchinese","textcoptic","textcroatian","textczech","textdanish","textdivehi","textdutch","textenglish","textesperanto","textestonian","textfinnish","textfrench","textfriulian","textgaelic","textgalician","textgeorgian","textgerman","textgreek","texthebrew","texthindi","texthungarian","texticelandic","textinterlingua","textitalian","textjapanese","textkannada","textkhmer","textkorean","textkurdish","textlao","textlatin","textlatvian","textlithuanian","textmacedonian","textmalay","textmalayalam","textmarathi","textmongolian","textnko","textnorwegian","textoccitan","textpersian","textpiedmontese","textpolish","textportuguese","textpunjabi","textromanian","textromansh","textrussian","textsami","textsanskrit","textserbian","textslovak","textslovenian","textsorbian","textspanish","textswedish","textsyriac","texttamil","texttelugu","textthai","texttibetan","textturkish","textturkmen","textukrainian","texturdu","textuyghur","textvietnamese","textwelsh","selectlanguage","foreignlanguage","selectbackgroundlanguage","resetdefaultlanguage","normalfontlatin","rmfamilylatin","sffamilylatin","ttfamilylatin","latinalph","latinAlph","setlanguagealias","pghyphenation","setlanghyphenmins","disablehyphenation","enablehyphenation","abjad","abjadmaghribi","abjadalph","aemph","Asbuk","asbuk","AsbukTrad","asbukTrad","hodiau","hodiaun","NoAutoSpacing","AutoSpacing","Greeknumber","greeknumber","atticnumeral","atticnum","hebrewnumeral","hebrewalph","ontoday","ondatehungarian","oldtoday","arcsen","arctg","sen","senh","tg","tgh","spanishoperator","abjadsyriac","uyghurordinal","uyghurord","captionsafrikaans","captionsalbanian","captionsamharic","captionsarabic","captionsarmenian","captionsasturian","captionsbasque","captionsbelarusian","captionsbengali","captionsbosnian","captionsbreton","captionsbulgarian","captionscatalan","captionschinese","captionscoptic","captionscroatian","captionsczech","captionsdanish","captionsdivehi","captionsdutch","captionsenglish","captionsesperanto","captionsestonian","captionsfinnish","captionsfrench","captionsfriulian","captionsgaelic","captionsgalician","captionsgeorgian","captionsgerman","captionsgreek","captionshebrew","captionshindi","captionshungarian","captionsicelandic","captionsinterlingua","captionsitalian","captionsjapanese","captionskannada","captionskhmer","captionskorean","captionskurdish","captionslao","captionslatin","captionslatvian","captionslithuanian","captionsmacedonian","captionsmalay","captionsmalayalam","captionsmarathi","captionsmongolian","captionsnko","captionsnorwegian","captionsoccitan","captionspersian","captionspiedmontese","captionspolish","captionsportuguese","captionspunjabi","captionsromanian","captionsromansh","captionsrussian","captionssami","captionssanskrit","captionsserbian","captionsslovak","captionsslovenian","captionssorbian","captionsspanish","captionsswedish","captionssyriac","captionstamil","captionstelugu","captionsthai","captionstibetan","captionsturkish","captionsturkmen","captionsukrainian","captionsurdu","captionsuyghur","captionsvietnamese","captionswelsh","dateafrikaans","datealbanian","dateamharic","datearabic","datearmenian","dateasturian","datebasque","datebelarusian","datebengali","datebosnian","datebreton","datebulgarian","datecatalan","datechinese","datecoptic","datecroatian","dateczech","datedanish","datedivehi","datedutch","dateenglish","dateesperanto","dateestonian","datefinnish","datefrench","datefriulian","dategaelic","dategalician","dategeorgian","dategerman","dategreek","datehebrew","datehindi","datehungarian","dateicelandic","dateinterlingua","dateitalian","datejapanese","datekannada","datekhmer","datekorean","datekurdish","datelao","datelatin","datelatvian","datelithuanian","datemacedonian","datemalay","datemalayalam","datemarathi","datemongolian","datenko","datenorwegian","dateoccitan","datepersian","datepiedmontese","datepolish","dateportuguese","datepunjabi","dateromanian","dateromansh","daterussian","datesami","datesanskrit","dateserbian","dateslovak","dateslovenian","datesorbian","datespanish","dateswedish","datesyriac","datetamil","datetelugu","datethai","datetibetan","dateturkish","dateturkmen","dateukrainian","dateurdu","dateuyghur","datevietnamese","datewelsh","localnumeral","Localnumeral","arabicdigits","bengalidigits","devanagaridigits","farsidigits","gurmukhidigits","kannadadigits","khmerdigits","laodigits","nkodigits","thaidigits","tibetandigits","armeniannumeral","belarusiannumeral","Belarusiannumeral","chinesenumeral","georgiannumeral","greeknumeral","Greeknumeral","Hebrewnumeral","Hebrewnumeralfinal","mongoliannumeral","Mongoliannumeral","punjabinumeral","russiannumeral","Russiannumeral","serbiannumeral","Serbiannumeral","ukrainiannumeral","Ukrainiannumeral","RTLfootnote","LTRfootnote","leftfootnoterule","rightfootnoterule","autofootnoterule","textwidthfootnoterule","charifavailable","languagename","mainlanguagename","languagevariant","mainlanguagevariant","babelname","mainbabelname","languageid","mainlanguageid","iflanguageloaded","ifbabellanguageloaded","iflanguageidloaded","iflanguageoption","setforeignlanguage","ifxpglanginaux","xpglanginauxfalse","xpglanginauxtrue","prefacename","bibname","chaptername","enclname","ccname","headtoname","pagename","seename","alsoname","proofname","ethiop","ethnum","leftllkern","rightllkern","raiselldim","lgem","Lgem","lslash","Lslash","chinesenumber","ier","iers","iere","ieres","ieme","iemes","nd","nds","nde","ndes","no","nos","mme","mmes","mr","mrs","monogreekcaptions","datemonogreek","polygreekcaptions","datepolygreek","greektoday","Greektoday","ancientgreekcaptions","dateancientgreek","koreanAlph","koreanalph","kurdishmonthkurmanji","hebrewgregmonth","todayRoman","hijrimonthmalay","occitanday","farsigregmonth","farsimonth","punjabinumber","nkodayprefix","nkoday","abeceda","Abeceda","wbr","hijrimonthturkish","urdugregmonth","urduhijrimonth","uyghurmonth","formaltoday","standardtoday"]}
-,
-"polymers.sty":{"envs":{},"deps":["chemstr.sty","aliphat.sty","carom.sty"],"cmds":["leftPolymer","leftpolymer","leftSqrpolymer","leftsqrpolymer","lsqrdelimiter","mpolymer","polyethylene","polystyrene","rightPolymer","rightpolymer","rightSqrpolymer","rightsqrpolymer","sbond","Sqrpolymer","sqrpolymer","EastPbond","leftpmdelim","leftPMdelim","leftsqrPolymer","numrepeated","rightpmdelim","rightPMdelim","rightsqrPolymer","rsqrdelimiter","WestPbond"]}
-,
-"polynom.sty":{"envs":{},"deps":["keyval.sty"],"cmds":["polyset","polylongdiv","polyhornerscheme","polylonggcd","polyfactorize","polyadd","polysub","polymul","polydiv","polygcd","polyprint","polyremainder"]}
-,
-"polynomial.sty":{"envs":{},"deps":["keyval.sty"],"cmds":["polynomial","polynomialfrac","polynomialstyle"]}
-,
-"polytable.sty":{"envs":["pboxed","ptboxed","pmboxed","ptabular","parray"],"deps":["lazylist.sty","array.sty"],"cmds":["nodefaultcolumn","defaultcolumn","column","fromto","savecolumns","restorecolumns","beginpolytable","disktables","maxcolumn","memorytables","nextline"]}
-,
-"poormanlog.sty":{"envs":{},"deps":{},"cmds":["PMLogZ","PMPowTen"]}
-,
-"popupmenu.sty":{"envs":["popupmenu","submenu"],"deps":["xkeyval.sty","eforms.sty"],"cmds":["item","puUseMenus","popUpMenu","puProcessMenu","urlPath","Esc","cs","itemindex","submenuLevel","csiv","msarg","msargEx","puUseTheseMenus","puMenuCmds","puNone","puTracking","iftrackingPU","trackingPUfalse","trackingPUtrue"]}
-,
-"postage.sty":{"envs":{},"deps":["graphicx.sty","tikz.sty","calc.sty","keyval.sty"],"cmds":["includestamp"]}
-,
-"poster.sty":{"envs":["Poster"],"deps":{},"cmds":["poster","PosterPage","POSTERclip","POSTERcrop","POSTERhcenter","POSTERimageheight","POSTERimagewidth","POSTERlandscape","POSTERpaperheight","POSTERpaperwidth","POSTERvcenter","filedate","fileversion","Poster","endPoster","PosterLoaded","TheAtCode"]}
-,
-"postnotes.sty":{"envs":{},"deps":{},"cmds":["postnote","postnotesection","printpostnotes","postnoteref","postnotezref","postnotesetup","pnhdchapfirst","pnhdchaplast","pnhdnamefirst","pnhdnamelast","pnhdnotes","pnhdpagefirst","pnhdpagelast","pnhdsectfirst","pnhdsectlast","pnhdtopage","pnhdtopages","pnheaderdefault","pnheading","pnthechapter","pnthechapternextnote","pnthepage","pnthesection","pnthesectionnextnote","pntitle","thepostnote","thepostnotesection","thepostnotetext","postnotesectionx"]}
-,
-"powerdot-BerlinFU.sty":{"envs":["titleslide","basic","wideslide","slide","sectionslide","sectionwideslide","LaTeXflushleft","LaTeXcenter"],"deps":["pifont.sty","calc.sty","graphicx.sty","tabularx.sty","ragged2e.sty","helvet.sty"],"cmds":["inst","framelogo","insertframelogo","titlelogo","inserttitlelogo","fachbereich","insertfachbereich","subtitle","insertsubtitle","institute","insertinstitute","titlegraphic","inserttitlegraphic","LaTeXcentering","LaTeXraggedleft","LaTeXraggedright"]}
-,
-"powerdot-aggie.sty":{"envs":["titleslide","basic","wideslide","slide","sectionslide","sectionwideslide"],"deps":["times.sty","pifont.sty","pst-grad.sty"],"cmds":{}}
-,
-"powerdot-bframe.sty":{"envs":["titleslide","basic","wideslide","slide","sectionslide","sectionwideslide"],"deps":["pifont.sty","pst-blur.sty"],"cmds":{}}
-,
-"powerdot-ciment.sty":{"envs":["titleslide","basic","wideslide","slide","sectionslide","sectionwideslide"],"deps":["pifont.sty"],"cmds":{}}
-,
-"powerdot-default.sty":{"envs":["titleslide","basic","wideslide","slide","sectionslide","sectionwideslide"],"deps":["pifont.sty"],"cmds":{}}
-,
-"powerdot-elcolors.sty":{"envs":["titleslide","basic","wideslide","slide","sectionslide","sectionwideslide"],"deps":["pifont.sty"],"cmds":{}}
-,
-"powerdot-fyma.sty":{"envs":["titleslide","basic","wideslide","slide","sectionslide","sectionwideslide"],"deps":["pst-grad.sty"],"cmds":{}}
-,
-"powerdot-horatio.sty":{"envs":["titleslide","basic","wideslide","slide","sectionslide","sectionwideslide"],"deps":["pifont.sty"],"cmds":{}}
-,
-"powerdot-husky.sty":{"envs":["titleslide","basic","wideslide","slide","sectionslide","sectionwideslide"],"deps":["times.sty","pifont.sty","pst-grad.sty"],"cmds":{}}
-,
-"powerdot-ikeda.sty":{"envs":["titleslide","basic","wideslide","slide","sectionslide","sectionwideslide"],"deps":["calc.sty","pifont.sty"],"cmds":{}}
-,
-"powerdot-jefka.sty":{"envs":["titleslide","wideslide","slide","sectionslide"],"deps":["pifont.sty"],"cmds":{}}
-,
-"powerdot-klope.sty":{"envs":["titleslide","basic","wideslide","slide","sectionslide"],"deps":["pifont.sty","pst-slpe.sty"],"cmds":{}}
-,
-"powerdot-paintings.sty":{"envs":["titleslide","basic","wideslide","slide","sectionslide"],"deps":["times.sty","pifont.sty"],"cmds":{}}
-,
-"powerdot-pazik.sty":{"envs":["titleslide","basic","wideslide","slide","sectionslide","sectionwideslide"],"deps":["pifont.sty","pst-char.sty","pst-grad.sty","type1cm.sty"],"cmds":{}}
-,
-"powerdot-sailor.sty":{"envs":["titleslide","basic","topframe","wideslide","slide","sectionslide","sectionwideslide"],"deps":["calc.sty","amssymb.sty","pst-grad.sty"],"cmds":{}}
-,
-"powerdot-simple.sty":{"envs":["titleslide","basic","wideslide","slide","sectionslide","sectionwideslide"],"deps":["pifont.sty","amssymb.sty"],"cmds":{}}
-,
-"powerdot-tuliplab.sty":{"envs":["titleslide","basic","wideslide","slide","sectionslide","sectionwideslide"],"deps":["pifont.sty"],"cmds":{}}
-,
-"powerdot-tycja.sty":{"envs":["titleslide","basic","wideslide","slide","sectionslide","sectionwideslide"],"deps":["pifont.sty","pst-grad.sty"],"cmds":{}}
-,
-"powerdot-upen.sty":{"envs":["titleslide","basic","wideslide","slide","sectionslide","sectionwideslide"],"deps":["calc.sty","pifont.sty","pst-grad.sty"],"cmds":{}}
-,
-"powerdot.cls":{"envs":["emptyslide","pauseslide"],"deps":["xkeyval.sty","geometry.sty","ifxetex.sty","hyperref.sty","graphicx.sty","pstricks.sty","pst-ovl.sty","xcolor.sty","enumitem.sty","verbatim.sty","powerdot-default.sty","pdfbase.sty","powerdot-aggie.sty","powerdot-BerlinFU.sty","powerdot-bframe.sty","powerdot-ciment.sty","powerdot-elcolors.sty","powerdot-fyma.sty","powerdot-horatio.sty","powerdot-husky.sty","powerdot-ikeda.sty","powerdot-jefka.sty","powerdot-klope.sty","powerdot-paintings.sty","powerdot-pazik.sty","powerdot-sailor.sty","powerdot-simple.sty","powerdot-tuliplab.sty","powerdot-tycja.sty","powerdot-upen.sty"],"cmds":["pdsetup","maketitle","pause","item","onslide","section","tableofcontents","slidewidth","slideheight","thenote","theslide","twocolumn","pddefinepalettes","pddefinetemplate","pdifsetup","pddefinelyxtemplate","lyxend","lyxnote","lyxslide","lyxwideslide","lyxemptyslide","pdbookmark","pdcontentsline"]}
-,
-"ppt-slides.sty":{"envs":["pptMiddle","pptWideOne","pptWide","enumerate*","itemize*","description*"],"deps":["pgfopts.sty","xcolor.sty","ifthen.sty","href-ul.sty","pagecolor.sty","varwidth.sty","qrcode.sty","tikz.sty","tikzlibrarycalc.sty","tikzpagenodes.sty","enumitem.sty","crumbs.sty","tabularx.sty","seqsplit.sty","geometry.sty","textpos.sty","libertine.sty","microtype.sty","anyfontsize.sty","multicol.sty","fontsize.sty","changepage.sty","soul.sty","lastpage.sty","fancyhdr.sty"],"cmds":["pptLeft","pptRight","pptBanner","pptChapter","pptSection","pptHeader","pptTitle","pptTOC","pptToc","param","pptQuote","pptPic","pptPin","pptThought","pptSnippet","pptQR","pptPinQR"]}
-,
-"precattl.sty":{"envs":{},"deps":{},"cmds":["precattlExec","precattlSet","execinside","execinsideSet","execinsideGset"]}
-,
-"prelim2e.sty":{"envs":{},"deps":["scrtime.sty"],"cmds":["PrelimText","PrelimWords","PrelimTextStyle"]}
-,
-"preparefont.sty":{"envs":{},"deps":["ifplatform.sty"],"cmds":["preparefontfile","PFWgetCommand","PFWgetWithName"]}
-,
-"prerex.sty":{"envs":["chart"],"deps":["relsize.sty","calc.sty","pgf.sty","tikz.sty","textcomp.sty","hyperref.sty","xcolor.sty"],"cmds":["halfcourse","reqhalfcourse","opthalfcourse","fullcourse","reqfullcourse","optfullcourse","halfcoursec","reqhalfcoursec","opthalfcoursec","fullcoursec","reqfullcoursec","optfullcoursec","mini","text","prereq","coreq","recomm","prereqc","coreqc","recommc","grid","solidarrow","dottedarrow","dashedarrow","lightbox","boldbox","dottedbox","unit","DefaultCurvature","CourseURL","background","dpi","PixelsPerUnit","thediagheight","solidwidth","boldwidth","dottedwidth","dashedwidth","smallersize","baselineAdj","ifgridon","gridonfalse","gridontrue"]}
-,
-"pressrelease-symbols.sty":{"envs":{},"deps":["marvosym.sty","tikz.sty"],"cmds":["paperclip"]}
-,
-"pressrelease.cls":{"envs":["pressrelease","about"],"deps":["xkeyval.sty","etoolbox.sty","setspace.sty","geometry.sty","url.sty","refcount.sty","pressrelease-symbols.sty"],"cmds":["PRset","PRusevar","PRheadline","PRsubheadline","PRrelease","PRlogo","PRcompany","PRdepartment","PRlocation","PRcontact","PRaddress","PRphone","PRmobile","PRfax","PRurl","PRemail","PRemailformat","PRhours","PRencl","PRtagformat","PRinfotopline","PRinfobottomline","PRinfoline","PRinfoentry","PRenclformat","PRurlformat","PRcontacttext","PRphonetext","PRmobiletext","PRemailtext","PRurltext","PRfaxtext","PRcompanytext","PRdepartmenttext","PRaddresstext","PRhourstext","PRdatetext","PRlocationtext","PRencltext","PRabouttext","PRreleasetext","PRnOfm","ifPRheadabove","ifPRloadsymbols","ifPRruled","PRaboutposturlhook","PRdohrule","PRendsignal","PRformatendsignal","PRheadabovefalse","PRheadabovetrue","PRheadalign","PRheaderfont","PRheadformat","PRinfobottomalign","PRinfobottombeginhook","PRinfobottomblock","PRinfobottomendhook","PRinfotopalign","PRinfotopbeginhook","PRinfotopblock","PRinfotopendhook","PRloadsymbolsfalse","PRloadsymbolstrue","PRlogoalign","PRlogoformat","PRreleasealign","PRreleaseformat","PRruledfalse","PRruledtrue","PRsubheadformat","PRthelastpage","thepressrelease"]}
-,
-"prettyref.sty":{"envs":{},"deps":{},"cmds":["newrefformat","prettyref"]}
-,
-"prettytok.sty":{"envs":{},"deps":["precattl.sty"],"cmds":["prettyN","prettyX","prettyO","prettyV","prettyinit","prettyshowN","prettyshowC","prettyeN","prettyeW","prettystop","prettyfilename","prettyrefreshstrategy","prettyrefreshduration"]}
-,
-"preview.sty":{"envs":["preview","nopreview"],"deps":["luatex85.sty"],"cmds":["PreviewBorder","PreviewBbAdjust","PreviewMacro","PreviewEnvironment","PreviewSnarfEnvironment","PreviewOpen","PreviewClose","ifPreview"]}
-,
-"prftree.sty":{"envs":["prfenv"],"deps":{},"cmds":["prftree","prfassumption","prfboundedassumption","prfaxiom","prfbyaxiom","prfsummary","prflinepadbefore","prflinepadafter","prflineextra","prflinethickness","prfemptylinethickness","prfrulenameskip","prflabelskip","prfinterspace","prfdoublelineinterspace","prffancyline","ifprfIMPOption","prfIMPOptiontrue","prfIMPOptionfalse","ifprfSTRUToption","prfSTRUToptiontrue","prfSTRUToptionfalse","ifprfSTRUTlabeloption","prfSTRUTlabeloptiontrue","prfSTRUTlabeloptionfalse","prfboundedstyle","prfdiscargedassumption","prfsummarystyle","prffancysummarybox","prfConclusionBox","prfAssumptionBox","prfRuleNameBox","prfLabelBox","prfref","theprfassumptioncounter","theprfsummarycounter","prflabelledassumptionbox","prflabelleddiscargedassumption","prfauxlabel","NDA","NDAL","NDD","NDDL","NDP","NDAX","NDANDI","NDANDER","NDANDEL","NDANDE","NDORIR","NDORIL","NDORI","NDOREL","NDORE","NDIMPIL","NDIMPI","NDIMPE","NDNOTIL","NDNOTI","NDNOTE","NDALLI","NDALLE","NDEXI","NDEXEL","NDEXE","NDTI","NDFE","NDLEM","SEQA","SEQD","SEQP","SEQAX","SEQLF","SEQLW","SEQRW","SEQLC","SEQRC","SEQLAND","SEQLANDL","SEQLANDR","SEQRAND","SEQLOR","SEQROR","SEQRORL","SEQRORR","SEQLIMP","SEQRIMP","SEQLALL","SEQRALL","SEQLEX","SEQREX","SEQCUT","EQREFL","EQSYM","EQTRANS","EQSUBST","type","universe","judgementaldef","propositionaldef","emptytype","unittype","booleantype","context","identitytype","refl","axiomofchoice","accessibility","ap","apd","basepoint","biinv","cardtype","cocone","cons","contr","equivtype","ext","fiber","funext","glue","happly","hom","id","idtoeqv","im","idtoiso","ind","inj","inl","inr","iscontr","isequiv","ishae","isotoid","isntype","isprop","isset","ker","LEM","linv","listtype","loopcons","Map","merid","nil","ordtype","pair","pred","pr","Prop","qinv","rec","rinv","seg","Set","Succ","sup","total","transport","ua","Wtype","transportconst","MLctxEMPrule","MLctxEXTrule","MLVblerule","MLSubstrule","MLWkgrule","MLEQreflrule","MLEQsymrule","MLEQtransrule","MLEQsubstrule","MLEQsubsteqrule","MLUintrorule","MLUcumulrule","MLUcumuleqrule","MLpiformrule","MLpiformeqrule","MLpiintrorule","MLpiintroeqrule","MLpielimrule","MLpielimeqrule","MLpicomprule","MLpiuniqrule","MLKintrorule","MLsigmaformrule","MLsigmaintrorule","MLsigmaelimrule","MLsigmacomprule","MLsigmauniqrule","MLplusformrule","MLplusintrolrule","MLplusintrorrule","MLpluselimrule","MLpluscomplrule","MLpluscomprrule","MLplusuniqrule","MLzeroformrule","MLzeroelimrule","MLzerouniqrule","MLunitformrule","MLunitintrorule","MLunitelimrule","MLunitcomprule","MLunituniqrule","MLnatformrule","MLnatintrozerorule","MLnatintrosuccrule","MLnatelimrule","MLnatcompzerorule","MLnatcompsuccrule","MLnatuniqrule","MLidformrule","MLidintrorule","MLidelimrule","MLidcomprule","MLiduniqrule","MLwformrule","MLwintrorule","MLwelimrule","MLwcomprule","MLwuniqrule","MLListformrule","MLListintronrule","MLListintrocrule","MLListelimrule","MLListcompnrule","MLListcompcrule","MLListuniqrule","MLfunextrule","MLunivrule","MLSformrule","MLSintrorule","MLSelimrule","MLScomprule","MLSuniqrule","MLSpeqintrorule","MLSpeqcomprule","MLIformrule","MLIintroarule","MLIintrobrule","MLIelimrule","MLIcomparule","MLIcompbrule","MLIuniqrule","MLIpeqintrorule","MLIpeqcomprule","MLsigmaintroarule","MLsigmaintrobrule","MLsigmacomparule","MLsigmacompbrule","MLsigmapeqintrorule","MLsigmapeqcomprule","MLPOformrule","MLPOintroarule","MLPOintrobrule","MLPOelimrule","MLPOcomparule","MLPOcompbrule","MLPOuniqrule","MLPOpeqintrorule","MLPOpeqcomprule","MLTformrule","MLTintrorule","MLTelimrule","MLTcomprule","MLTuniqrule","MLTpeqintrorule","MLTpeqcomprule","MLtorusformrule","MLtorusintrorule","MLtoruselimrule","MLtoruscomprule","MLtoruspeqintroarule","MLtoruspeqintrobrule","MLtoruspeqintrocrule","MLtoruspeqcomparule","MLtoruspeqcompbrule","MLtoruspeqcompcrule","MLctxEMP","MLctxEXT","MLVble","MLSubst","MLWkg","MLEQrefl","MLEQsym","MLEQtrans","MLEQsubst","MLEQsubsteq","MLUintro","MLUcumul","MLUcumuleq","MLpiform","MLpiformeq","MLpiintro","MLpiintroeq","MLpielim","MLpielimeq","MLpicomp","MLpiuniq","MLKintro","MLsigmaform","MLsigmaintro","MLsigmaelim","MLsigmacomp","MLsigmauniq","MLplusform","MLplusintrol","MLplusintror","MLpluselim","MLpluscompl","MLpluscompr","MLplusuniq","MLzeroform","MLzeroelim","MLzerouniq","MLunitform","MLunitintro","MLunitelim","MLunitcomp","MLunituniq","MLnatform","MLnatintrozero","MLnatintrosucc","MLnatelim","MLnatcompzero","MLnatcompsucc","MLnatuniq","MLidform","MLidintro","MLidelim","MLidcomp","MLiduniq","MLwform","MLwintro","MLwelim","MLwcomp","MLwuniq","MLListform","MLListintron","MLListintroc","MLListelim","MLListcompn","MLListcompc","MLListuniq","MLfunext","MLuniv","MLSform","MLSintro","MLSelim","MLScomp","MLSuniq","MLSpeqintro","MLSpeqcomp","MLIform","MLIintroa","MLIintrob","MLIelim","MLIcompa","MLIcompb","MLIuniq","MLIpeqintro","MLIpeqcomp","MLsigmaintroa","MLsigmaintrob","MLsigmacompa","MLsigmacompb","MLsigmapeqintro","MLsigmapeqcomp","MLPOform","MLPOintroa","MLPOintrob","MLPOelim","MLPOcompa","MLPOcompb","MLPOuniq","MLPOpeqintro","MLPOpeqcomp","MLTform","MLTintro","MLTelim","MLTcomp","MLTuniq","MLTpeqintro","MLTpeqcomp","MLtorusform","MLtorusintro","MLtoruselim","MLtoruscomp","MLtoruspeqintroa","MLtoruspeqintrob","MLtoruspeqintroc","MLtoruspeqcompa","MLtoruspeqcompb","MLtoruspeqcompc","prfMakeInferenceRule","prfMakeInferenceRuleRef","prfStackPremises"]}
-,
-"principia.sty":{"envs":{},"deps":["amssymb.sty","amsmath.sty","graphicx.sty","pifont.sty"],"cmds":["pma","pmabel","pmalephn","pmall","pmanc","pmancc","pmand","pmandd","pmanddd","pmandddd","pmanddddd","pmandddddd","pmarcls","pmarexp","pmarg","pmargeq","pmarl","pmarleq","pmarncexp","pmarprodc","pmarprodcc","pmarprodcnc","pmarprodnc","pmarsubt","pmarsumc","pmarsumcc","pmarsumcnc","pmarsumnc","pmarvs","pmast","pmaw","pmB","pmbord","pmccap","pmccmp","pmccprd","pmccsum","pmccup","pmCdm","pmcdm","pmcdot","pmcexists","pmch","pmchh","pmcin","pmcinc","pmcl","pmcll","pmCls","pmcls","pmclsd","pmClsinduct","pmclsinduct","pmClsn","pmclsrefl","pmcmin","pmCmp","pmcmp","pmcn","pmcnull","pmCnv","pmComp","pmconc","pmconnex","pmcontin","pmcontinf","pmConv","pmconv","pmconx","pmconxfm","pmcr","pmcrel","pmcror","pmcrp","pmcrprd","pmcrsum","pmcser","pmcsercl","pmcsercls","pmCsercls","pmctf","pmcuni","pmcUnit","pmcunit","pmcunits","pmcycl","pmcycli","pmded","pmdem","pmden","pmDer","pmders","pmdf","pmDm","pmdm","pmdn","pmdot","pmdott","pmdottt","pmdotttt","pmdottttt","pmdotttttt","pmdsc","pmdscf","pmdscfe","pmdscff","pmdscfff","pmdscfR","pmdscfr","pmefr","pmexc","pmexcc","pmexcn","pmexists","pmfin","pmfinid","pmfinord","pmFld","pmfld","pmfmap","pmfmapconx","pmfmasym","pmfmconnex","pmfmcx","pmfmcycl","pmfmg","pmfmgrp","pmfminit","pmfmrt","pmfmrtcx","pmfmsr","pmfmsubm","pmfmtrs","pmfopen","pmfopennid","pmfr","pmfrep","pmgen","pmGs","pmgs","pmhat","pmhcf","pmiddf","pmiff","pmimp","pmInfinax","pminfinax","pminit","pmintcc","pmintco","pmintf","pmintnc","pmintoc","pmintoo","pmintsecvser","pmintt","pmipr","pmjpr","pmlcm","pmLess","pmLimax","pmLimf","pmLimin","pmLmx","pmlsc","pmlscl","pmlt","pmm","pmmanyone","pmmax","pmmed","pmmin","pmmultax","pmmultc","pmmultr","pmn","pmNc","pmNC","pmnc","pmNca","pmnca","pmncaa","pmNCat","pmNcd","pmncd","pmncdd","pmnchh","pmncind","pmNCinduct","pmncinduct","pmNCll","pmncll","pmncmult","pmncrefl","pmnid","pmNoC","pmnoc","pmnoo","pmNoR","pmnor","pmnot","pmNr","pmNR","pmnr","pmNRat","pmoc","pmom","pmomn","pmonemany","pmoneone","pmop","pmopc","pmopsc","pmor","pmordn","pmordnfin","pmordninf","pmorgr","pmorgrq","pmorle","pmorleq","pmorn","pmosc","pmoscl","pmosf","pmperf","pmpf","pmpff","pmpfff","pmpo","pmpot","pmpotid","pmpp","pmpr","pmPrec","pmpred","pmpredd","pmpreddd","pmprime","pmPrm","pmprm","pmprodgr","pmprodsr","pmprog","pmprrt","pmPsc","pmqn","pmqnil","pmqnLe","pmqnle","pmqnlez","pmrarrel","pmRat","pmrat","pmRatdef","pmratg","pmRatggr","pmRatgle","pmratgLe","pmratn","pmRatngr","pmRatnle","pmratnLe","pmrats","pmratssub","pmrcap","pmrcmp","pmrcup","pmrdc","pmrdiv","pmRel","pmrel","pmrele","pmrelep","pmReln","pmrems","pmreng","pmrenn","pmrennz","pmrenp","pmrenproda","pmrenpz","pmrenr","pmrenrprod","pmrenrsprod","pmrenrssum","pmrenrsum","pmrensub","pmrensuma","pmrensumc","pmrexists","pmrexp","pmRexp","pmRfdcl","pmRfddf","pmRfdfd","pmRfdlc","pmrfprod","pmRfprod","pmrid","pmrin","pmrinc","pmrl","pmrlcd","pmrld","pmrlF","pmrlf","pmrmin","pmrn","pmrndsum","pmrnexp","pmrnprod","pmrnprodf","pmrnsm","pmrnsmd","pmrnsum","pmrnsumf","pmrnsumru","pmrnsumur","pmrnull","pmrnum","pmrnumid","pmRprd","pmrprd","pmRprdd","pmrprdd","pmrprdn","pmrprm","pmrprod","pmrpwr","pmRrf","pmrrf","pmRrl","pmrrl","pmrsep","pmrst","pmrsum","pmrsumb","pmrsume","pmrsumr","pmrsumrex","pmrt","pmrtc","pmrtdc","pmrtdi","pmrtdrc","pmrtdri","pmrti","pmrtnet","pmrtrc","pmrtrci","pmrtri","pmrtric","pmrts","pmruni","pmscf","pmsCl","pmscl","pmsCle","pmsded","pmsect","pmsectr","pmseg","pmselc","pmSele","pmsele","pmSelf","pmself","pmSelp","pmselp","pmSeq","pmser","pmserfin","pmserinf","pmsfcls","pmsfclsm","pmsfclsmp","pmsfclsp","pmsfmid","pmSg","pmsg","pmshr","pmsimp","pmSimp","pmSimps","pmsimps","pmsm","pmsmbar","pmsmltid","pmSmor","pmsmorb","pmSmorsmor","pmsmorsmorb","pmsmsm","pmsmsmb","pmSome","pmsome","pmspec","pmsRl","pmsrl","pmsRle","pmsrrn","pmstr","pmSub","pmsub","pmSubb","pmsubb","pmSubbb","pmsubbb","pmSubbbb","pmsubbbb","pmsucc","pmsumgr","pmsumsr","pmsym","pmthm","pmtl","pmtranc","pmtrans","pmtrpot","pmtrsp","pmu","pmvffb","pmvfm","pmvfmcl","pmvr","pmvrm","pmvrmg","pmvrnid","pmvser","pmwa","pmword","pmwordfin","pmwordind","pmwordinf","eg","Eg","Female","ie","Ie","Male","pmaleph","pmArexp","pmArsubt","pmatngr","pmbr","pmbreve","pmcinn","pmcirc","pmClsd","pmcnv","pmcomp","pmConc","pmContin","pmConvg","pmconvg","pmcorr","pmCr","pmCror","pmdemi","pmDen","pmder","pmdern","pmDers","pmDf","pmDsc","pmdscfcR","pmdscfcr","pmex","pmfd","pmGen","pmHcf","pmhp","pmid","pminc","pmiota","pmithm","pmLcm","pmless","pmlimax","pmlimf","pmlimin","pmlmx","pmMax","pmMed","pmMin","pmNChh","pmncr","pmNoc","pmNocind","pmnocind","pmNor","pmnsn","pmPerf","pmpffff","pmppf","pmppff","pmprec","pmpredddd","pmpreddddd","pmpredddddd","pmprod","pmProdsr","pmprop","pmpsc","pmpsn","pmpsnn","pmQnle","pmratggr","pmratgle","pmratnle","pmrfdcl","pmrfddf","pmrfdfd","pmrfdlc","pmRndsum","pmRnexp","pmRnprod","pmrnsmdf","pmRnsum","pmRnsumru","pmRnsumur","pmRsum","pmRsumb","pmRsume","pmRsumr","pmsch","pmschs","pmscle","pmscls","pmSect","pmSeg","pmseq","pmSM","pmsmarr","pmsmor","pmSmorb","pmsmorsmor","pmSmorsmorb","pmsn","pmsnb","pmsnn","pmsnnb","pmsnnn","pmsnnnb","pmsnnnn","pmsnnnnb","pmsnnnnn","pmsnnnnnb","pmsns","pmsrel","pmsrle","pmStr","pmSUb","pmsUb","pmSUbb","pmsUbb","pmSUbbb","pmsUbbb","pmSUbbbb","pmsUbbbb","pmSumsr","pmSym","pmthe","pmtheb","pmTranc","pmVfm"]}
-,
-"printlen.sty":{"envs":{},"deps":{},"cmds":["printlength","uselengthunit","unitspace","rndprintlength"]}
-,
-"printsudoku.sty":{"envs":{},"deps":{},"cmds":["sudoku","cluefont","cellsize","writepuzzle","puzzlefile","sudpuzznewline","gettwo","nowt","istchar","restchars","splitoff"]}
-,
-"prnthyph.sty":{"envs":{},"deps":{},"cmds":["printhyphens","breakafterword","getlastline","nomorelines"]}
-,
-"proba.sty":{"envs":{},"deps":["amsfonts.sty"],"cmds":["A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z","calA","calB","calC","calD","calE","calF","calG","calH","calI","calJ","calK","calL","calM","calN","calO","calP","calQ","calR","calS","calT","calU","calV","calW","calX","calY","calZ","prob","probX","cprobX","EX","cEX","Var","VarX","cVarX","eqlaw","tolaw","qvar","cqvar"]}
-,
-"probsoln.sty":{"envs":["defproblem","onlyproblem","onlysolution","solution","textenum","PSNitem"],"deps":["ifthen.sty","amsmath.sty","etoolbox.sty","xkeyval.sty"],"cmds":["ClearUsedFile","correctitem","correctitemformat","doforrandN","draftproblemlabel","DTLifinlist","ExcludePreviousFile","firstpassfalse","firstpasstrue","foreachdataset","foreachproblem","foreachsolution","GetStartYear","hideanswers","iffirstpass","ifshowanswers","ifusedefaultprobargs","incorrectitem","incorrectitemformat","loadallproblems","loadexceptproblems","loadrandomexcept","loadrandomproblems","loadselectedproblems","moveproblem","newproblem","previousproblem","ProbSolnFragileExt","ProbSolnFragileFile","PSNgetrandseed","PSNrand","PSNrandom","PSNrandseed","PSNuseoldrandom","random","selectallproblems","selectrandomly","setprobargs","SetStartMonth","SetStartYear","SetUsedFileName","showanswers","showanswersfalse","showanswerstrue","shuffle","solutionname","thisproblem","thisproblemargs","thisproblemlabel","usedefaultprobargsfalse","usedefaultprobargstrue","usedproblem","useproblem"]}
-,
-"proc-l.cls":{"envs":{},"deps":["s-amsart.cls"],"cmds":{}}
-,
-"proc.cls":{"envs":{},"deps":{},"cmds":["copyrightspace","pagename"]}
-,
-"procIAGssymp.sty":{"envs":{},"deps":{},"cmds":["linea","ifafterthanks","afterthankstrue","afterthanksfalse"]}
-,
-"processkv.sty":{"envs":{},"deps":["keyval.sty"],"cmds":["processkeyvalues"]}
-,
-"prodint.sty":{"envs":{},"deps":{},"cmds":["prodi","Prodi","PRODI"]}
-,
-"productbox.sty":{"envs":["ProductBox","FrontFace","BackFace","LeftFace","RightFace","TopFace","BottomFace","Front","Back","Left","Right","Top","Bottom"],"deps":["keyval.sty","tikz.sty","tikzlibrarycalc.sty","tikzlibraryfadings.sty"],"cmds":["ProductBoxSet","ProductBoxThreeDStartHook","ProductBoxThreeDEndHook"]}
-,
-"program.sty":{"envs":["Cases"],"deps":{},"cmds":["A","ABORT","ACTIONEQ","ACTIONS","aeq","AND","AR","ARRAY","ATEACH","atspec","AWAIT","B","BAR","BarDonefalse","BarDonetrue","barsymbol","Bbb","bdiv","BEGIN","bfvariables","bigcaps","bigseq","bigset","bigsqcap","bigsub","bigsubseq","bij","bitand","bitexor","bitnot","bitor","BODY","boldsub","boldsubm","boldsymbol","boldvar","br","bstar","C","CALL","CASES","choice","closexp","COMMENT","concat","d","dashes","ddiv","deq","dgreat","dgreq","DIV","dleq","dless","dminus","dmult","dneq","DO","dplus","e","edf","EDIT","EDITPARENT","ELSE","ELSF","ELSIF","END","ENDACTION","ENDACTIONS","ENDCALL","ENDEDIT","ENDEXP","ENDFILL","ENDFUNCT","ENDJOIN","ENDMATCH","ENDPROC","ENDREP","ENDVAR","EOR","EQ","eqnarrayqed","eqnqed","EQspace","EQsymbol","EQT","Exists","EXIT","exor","EXP","f","false","fdiv","feq","ffun","fgreat","fgreq","FI","FILL","finj","fleq","fless","fminus","fmult","fneq","FOENO","FOR","Forall","FOREACH","fplus","fullstop","FUNCT","grefstepcounter","gt","IF","ifBarDone","IFMATCH","ifMathsModeStrings","ifMmode","ifNumberPrograms","ifTHEN","ifVBarOutsideProgram","ifwasinmmode","im","implies","intersect","JOIN","join","keyword","lar","last","ldiv","LE","lequ","lgreat","lgreq","LIKE","LLAC","llapm","llapr","lleq","lless","lminus","lmult","lneq","lowundertext","lplus","lt","MathsModeStringsfalse","MathsModeStringstrue","Mmodefalse","Mmodetrue","MOD","modbar","myroman","NIOJ","normalbaroutside","NOT","NULL","nullset","NumberProgramsfalse","NumberProgramstrue","OD","oldwp","ONEOF","openexp","operatorname","OR","origbar","overset","p","P","pBbb","pfun","pick","pinj","pop","powerset","powersetbox","powersetsymbol","PROC","progbox","prognumstyle","programnewpage","programsize","proof","psur","push","Q","QE","qed","qedsymbol","qtab","R","rar","rcomment","rdots","rel","REP","restoretab","rmtiny","S","safeat","savetab","sbs","scriptvar","scriptvariablefont","seq","set","sfvariables","SKIP","SLE","snugbox","STEP","sub","subseq","succeqstar","succstar","T","t","tab","text","textqed","textvcenter","tfun","THEN","THENfalse","THENtrue","theprogramline","tinj","tl","TO","true","tsur","tw","twoline","TYPEDEF","undertext","union","untab","utdots","VAR","var","variable","variablefont","variablefontend","VBarOutsideProgramfalse","VBarOutsideProgramtrue","w","wasinmmodefalse","wasinmmodetrue","wfle","wflt","WHERE","WHILE","WITHIN","WP","www","x","y","Z","z"]}
-,
-"progressbar.sty":{"envs":{},"deps":["tikz.sty","calc.sty"],"cmds":["progressbar","progressbarchange"]}
-,
-"projlib-author.sty":{"envs":{},"deps":["regexpatch.sty","projlib-language.sty","scontents.sty"],"cmds":["keywords","dedicatory","subjclass","institute","address","curraddr","email"]}
-,
-"projlib-datetime.sty":{"envs":{},"deps":["relsize.sty"],"cmds":["ProjLibSetDatetimeInputFormat","ProjLibtoday","ProjLibToday","ProjLibdate","ProjLibDate","Thedate","TheDate"]}
-,
-"projlib-draft.sty":{"envs":{},"deps":["projlib-language.sty","xcolor.sty","ulem.sty","tikz.sty"],"cmds":["blindtext","DNF"]}
-,
-"projlib-font.sty":{"envs":{},"deps":["anyfontsize.sty","setspace.sty","microtype.sty","amssymb.sty","lmodern.sty","mathpazo.sty","newpxtext.sty","newtxtext.sty","newtxmath.sty","ebgaramond-maths.sty","ebgaramond.sty","notomath.sty","eulervm.sty","biolinum.sty","mathastext.sty"],"cmds":{}}
-,
-"projlib-language.sty":{"envs":["descriptionFB"],"deps":["fontenc.sty","babel.sty","silence.sty","setspace.sty","csquotes.sty"],"cmds":["AddLanguageSetting","DefineMultilingualText","ProjLibLanguageSet","UseLanguage","UseOtherLanguage","DH","dh","dj","DJ","guillemetleft","guillemetright","guillemotleft","guillemotright","guilsinglleft","guilsinglright","Hwithstroke","hwithstroke","k","NG","ng","quotedblbase","quotesinglbase","textogonekcentered","textquotedbl","th","TH","frenchsetup","frenchbsetup","AddThinSpaceBeforeFootnotes","alsoname","at","AutoSpaceBeforeFDP","bibname","boi","bname","bsc","CaptionSeparator","captionsfrench","ccname","chaptername","circonflexe","dateacadian","datefrench","DecimalMathComma","degre","degres","descindentFB","dotFFN","enclname","extrasfrench","FBcolonspace","FBdatebox","FBdatespace","FBeverylineguill","FBfigtabshape","FBfnindent","FBFrenchFootnotesfalse","FBFrenchFootnotestrue","FBFrenchSuperscriptstrue","FBGlobalLayoutFrenchtrue","FBgspchar","FBguillopen","FBguillspace","FBInnerGuillSinglefalse","FBInnerGuillSingletrue","FBListItemsAsParfalse","FBListItemsAsPartrue","FBLowercaseSuperscriptstrue","FBmedkern","FBPartNameFulltrue","FBsetspaces","FBSmallCapsFigTabCaptionstrue","FBStandardEnumerateEnvtrue","FBStandardItemizeEnvtrue","FBStandardItemLabelstrue","FBStandardLayouttrue","FBStandardListSpacingtrue","FBStandardListstrue","FBsupR","FBsupS","FBtextellipsis","FBthickkern","FBthinspace","FBthousandsep","FBWarning","fg","fgi","fgii","fprimo","frenchdate","FrenchEnumerate","FrenchFootnotes","FrenchLabelItem","frenchpartfirst","frenchpartsecond","FrenchPopularEnumerate","frenchtoday","Frlabelitemi","Frlabelitemii","Frlabelitemiii","Frlabelitemiv","frquote","fup","glossaryname","headtoname","ieme","iemes","ier","iere","ieres","iers","ifFBAutoSpaceFootnotes","ifFBCompactItemize","ifFBCustomiseFigTabCaptions","ifFBfrench","ifFBFrenchFootnotes","ifFBFrenchSuperscripts","ifFBGlobalLayoutFrench","ifFBIndentFirst","ifFBINGuillSpace","ifFBListItemsAsPar","ifFBListOldLayout","ifFBLowercaseSuperscripts","ifFBLuaTeX","ifFBOldFigTabCaptions","ifFBOriginalTypewriter","ifFBPartNameFull","ifFBReduceListSpacing","ifFBShowOptions","ifFBSmallCapsFigTabCaptions","ifFBStandardEnumerateEnv","ifFBStandardItemizeEnv","ifFBStandardItemLabels","ifFBStandardLayout","ifFBStandardLists","ifFBStandardListSpacing","ifFBSuppressWarning","ifFBThinColonSpace","ifFBThinSpaceInFrenchNumbers","ifFBunicode","ifFBXeTeX","ifLaTeXe","kernFFN","labelindentFB","labelwidthFB","leftmarginFB","listfigurename","listindentFB","No","no","NoAutoSpaceBeforeFDP","NoAutoSpacing","NoEveryParQuote","noextrasfrench","nombre","nos","Nos","og","ogi","ogii","pagename","parindentFFN","partfirst","partnameord","partsecond","prefacename","primo","proofname","quarto","rmfamilyFB","secundo","seename","sffamilyFB","StandardFootnotes","StandardMathComma","tertio","tild","ttfamilyFB","up","xspace","captionsportuguese","dateportuguese","extrasportuguese","noextrasportuguese","ord","orda","ro","ra","captionsbrazilian","datebrazilian","extrasbrazilian","noextrasbrazilian","captionsitalian","dateitalian","extrasitalian","noextrasitalian","italianhyphenmins","setactivedoublequote","setISOcompliance","IntelligentComma","NoIntelligentComma","XXIletters","XXVIletters","ap","ped","unit","virgola","virgoladecimale","LtxSymbCaporali","CaporaliFrom","captionsngerman","datengerman","extrasngerman","noextrasngerman","dq","ntosstrue","ntossfalse","mdqon","mdqoff","captionsenglish","dateenglish","extrasenglish","noextrasenglish","englishhyphenmins","britishhyphenmins","americanhyphenmins","captionsjapanese","datejapanese","extrasjapanese","noextrasjapanese","cyrdash","asbuk","Asbuk","Russian","sh","ch","tg","ctg","arctg","arcctg","cth","cosec","Prob","Variance","NOD","nod","NOK","nok","Proj","cyrillicencoding","cyrillictext","cyr","textcyrillic","captionsrussian","daterussian","extrasrussian","noextrasrussian","CYRA","CYRB","CYRV","CYRG","CYRGUP","CYRD","CYRE","CYRIE","CYRZH","CYRZ","CYRI","CYRII","CYRYI","CYRISHRT","CYRK","CYRL","CYRM","CYRN","CYRO","CYRP","CYRR","CYRS","CYRT","CYRU","CYRF","CYRH","CYRC","CYRCH","CYRSH","CYRSHCH","CYRYU","CYRYA","CYRSFTSN","CYRERY","cyra","cyrb","cyrv","cyrg","cyrgup","cyrd","cyre","cyrie","cyrzh","cyrz","cyri","cyrii","cyryi","cyrishrt","cyrk","cyrl","cyrm","cyrn","cyro","cyrp","cyrr","cyrs","cyrt","cyru","cyrf","cyrh","cyrc","cyrch","cyrsh","cyrshch","cyryu","cyrya","cyrsftsn","cyrery","cdash","tocname","authorname","acronymname","lstlistingname","lstlistlistingname","notesname","nomname"]}
-,
-"projlib-logo.sty":{"envs":{},"deps":["tikz.sty"],"cmds":["ProjLib","ProjLibText"]}
-,
-"projlib-math.sty":{"envs":{},"deps":["mathtools.sty","mathrsfs.sty","amssymb.sty"],"cmds":["DefineMathOperator","DefineOperator","ProjLibDefineMathOperator","DefineMathSymbol","DefineShortcut","ProjLibDefineMathSymbol","RedefineInMathMode","ProjLibRedefineInMathMode","ListOfSymbols","ProjLibListOfSymbols","ProvideCommandCopy"]}
-,
-"projlib-paper.sty":{"envs":{},"deps":["xcolor.sty"],"cmds":{}}
-,
-"projlib-text.sty":{"envs":{},"deps":["projlib-paper.sty"],"cmds":["ItemDescription","ie","eg","cf","etc"]}
-,
-"projlib-theorem.sty":{"envs":["application","application*","assertion","assertion*","assumption","assumption*","axiom","axiom*","claim","claim*","conclusion","conclusion*","conjecture","conjecture*","construction","construction*","convention","convention*","corollary","corollary*","definition","definition*","example","example*","exercise","exercise*","fact","fact*","hypothesis","hypothesis*","lemma","lemma*","notation","notation*","observation","observation*","postulate","postulate*","problem","problem*","property","property*","proposition","proposition*","question","question*","recall","recall*","remark","remark*","theorem","theorem*","definition-corollary","definition-corollary*","corollary-definition","corollary-definition*","definition-proposition","definition-proposition*","definition-theorem","definition-theorem*","proposition-definition","proposition-definition*","theorem-definition","theorem-definition*","theorem-with-name","theorem-with-name*"],"deps":["projlib-language.sty","amsthm.sty","create-theorem.sty"],"cmds":["DisableTheoremNumbering","SwitchTheoremNumbering","theapplication","theassertion","theassumption","theaxiom","theclaim","theconclusion","theconjecture","theconstruction","theconvention","thecorollary","thedefinition","theexample","theexercise","thefact","thehypothesis","thelemma","thenotation","theobservation","thepostulate","theproblem","theproof","theproperty","theproposition","thequestion","therecall","theremark","thetheorem"]}
-,
-"projlib-titlepage.sty":{"envs":{},"deps":["projlib-logo.sty","projlib-paper.sty","tikz.sty","tikzlibrarycalc.sty"],"cmds":["TitlePage","ProjLibTitlePage"]}
-,
-"proof-at-the-end.sty":{"envs":["proofE","thmE","lemmaE","theoremE","corollaryE","propositionE","propertyE","factE","proofED","thmED","lemmaED","theoremED","corollaryED","propositionED","propertyED","factED","thmE","lemmaE","theoremE","corollaryE","propositionE","propertyE","factE","proofED","thmED","lemmaED","theoremED","corollaryED","propositionED","propertyED","factED","textAtEnd","proofEnd","theoremEnd","theoremEndRestateBefore","proofEndDebug"],"deps":["etoolbox.sty","thmtools.sty","thm-restate.sty","catchfile.sty","pgfkeys.sty","xparse.sty","hyperref.sty","kvoptions.sty"],"cmds":["includeExternalAppendix","newEndProof","newEndThm","pratendAddLabel","pratendRef","pratendSectionlikeCref","pratendSetGlobal","pratendSetLocal","printProofs","textEnd","allattheendfalse","allattheendtrue","appendtofile","appendwrite","bothfalse","bothtrue","category","currcounterval","eraseIfNeeded","externalAppendixfalse","externalAppendixtrue","fileContent","ifallattheend","ifboth","ifexternalAppendix","iflinktoproof","ifpratendOptcreateShortEnv","ifpratendOptdisablePatchSection","ifproofend","ifproofhere","ifrestatedbefore","ifrestatethm","linktoprooffalse","linktoprooftrue","makeallother","pratendcountercurrent","pratendcustomrestate","pratendDisableDebugSynctex","pratendEnableDebugSynctex","pratendGeneratePrefixFile","pratendLabelProofSection","pratendlastoptions","pratendtextlink","pratendtextproof","prefixPrAtEndFiles","proofendfalse","proofendtrue","proofherefalse","proofheretrue","restatedbeforefalse","restatedbeforetrue","restatethmfalse","restatethmtrue","temprest","thecounterAllProofEnd"]}
-,
-"proof.sty":{"envs":{},"deps":{},"cmds":["deduce","infer"]}
-,
-"proofread.sty":{"envs":{},"deps":["marginnote.sty","soul.sty","tikzlibrarycalc.sty"],"cmds":["skp","del","yel","add","rep","com","hilite"]}
-,
-"prooftrees.sty":{"envs":["tableau","tableau","prooftree","tableau"],"deps":["svn-prov.sty","etoolbox.sty","forest.sty","amssymb.sty"],"cmds":["tikzexternalize","tikzexternalenable","tikzexternaldisable","standardnodestrut","standardnodestrutbox","text","linenumberstyle"]}
-,
-"properties.sty":{"envs":{},"deps":["datatool.sty"],"cmds":["loadDefaultProperties","loadOtherProperties","getDefaultProperty","getOtherProperty","setDefaultProperty","setOtherProperty"]}
-,
-"protecteddef.sty":{"envs":{},"deps":["ltxcmds.sty","infwarerr.sty"],"cmds":["ProtectedDef"]}
-,
-"protocol.cls":{"envs":["Persons","Absent"],"deps":["s-scrartcl.cls"],"cmds":["groupname","chair","writer","place","begintime","endtime","nextdate","nexttime","nextplace","actionitem","vote","makehead","ProtocolGroupName"]}
-,
-"protosem.sty":{"envs":{},"deps":{},"cmds":["Aa","AAa","AAaleph","AAayin","AAb","AAbeth","AAd","AAdaleth","AAh","AAhd","AAhe","AAhelmet","AAheth","AAk","AAkaph","AAl","AAlamed","Aaleph","AAo","AAp","AApe","AAq","AAqoph","AAr","AAresh","AAsade","AAsd","AAv","AAy","Aayin","AAyod","Ab","Abeth","Ad","Adaleth","Ag","Agimel","Ah","Ahd","Ahe","Ahelmet","Aheth","Ak","Akaph","Al","Alamed","Alq","Am","Amem","An","Anun","Ao","Ap","Ape","Aq","Aqoph","Ar","Aresh","Arq","As","Asade","Asamekh","Asd","Ashin","Asv","At","Atav","Atd","Ateth","Av","Avav","Aw","Ay","Ayod","Az","Azayin","protofamily","textproto","translitproto","translitprotofont"]}
-,
-"prtec.cls":{"envs":["nomenclature"],"deps":["ifthen.sty","kvoptions.sty","kvsetkeys.sty","geometry.sty","parskip.sty","natbib.sty","graphicx.sty","xcolor.sty","xparse.sty","booktabs.sty","array.sty","dcolumn.sty","mathtools.sty","inputenc.sty","newtxtext.sty","newtxmath.sty","bm.sty","fancyhdr.sty","fnpos.sty","caption.sty","subcaption.sty","textcase.sty","titlesec.sty","hyperxmp.sty","hyperref.sty","doi.sty","etoolbox.sty","xpatch.sty","multicol.sty","xcoffins.sty","metalogo.sty","hologo.sty"],"cmds":["confname","confdate","confcity","paperno","papertitle","SetAuthors","affil","JointFirstAuthor","CorrespondingAuthor","SetAffiliation","MakeTitlePage","SetAuthorBlock","keywords","nomenwidth","entry","section","svsection","ifCD","CDtrue","CDfalse","HeaderConfName","PaperNo","PaperTitle","theauthorno","AffiliationBlock","AuthorBlock","AffiliationsBlock","ifCA","CAtrue","CAfalse","CAemail","ifJA","JAtrue","JAfalse","oldaffil","isOthernote","nextToken","oldCorrespondingAuthor","oldJointFirstAuthor","savethefootnote"]}
-,
-"ps-trees.sty":{"envs":["treetab","psTree"],"deps":["tree-dvips.sty"],"cmds":["Node","NodeWidthNo","NodeNo","NodeZ","nodeZ","NodeTNo","NodeTZNo","NodeZTNo","MinNodeWidth","NodeTZ","NodeT","NodeZT","NodeWidth","AddToToks","AllNodes","CollectedNodes","CollectedTNodes","Compare","ConnectNode","ConnectTNode","EveryNode","EveryTNode","ifIsElement","IfIsNodeName","ifTNode","IsElementfalse","IsElementOf","IsElementtrue","NoNodeWarning","oldnode","OptionNode","OptionNodeNo","TestAndAdd","TNodefalse","TNodetrue","xx","yy"]}
-,
-"pseudo.sty":{"envs":["pseudo","pseudo*"],"deps":["expl3.sty","xparse.sty","pgfkeys.sty","array.sty","xcolor.sty","colortbl.sty","l3keys2e.sty","aliascnt.sty","etoolbox.sty","tcolorboxlibraryhooks.sty"],"cmds":["pseudoset","pseudodefinestyle","cn","cnfont","ct","ctfont","fn","fnfont","hd","id","idfont","kw","kwfont","pr","prfont","pseudocn","pseudoct","pseudofn","pseudohd","pseudoid","pseudokw","pseudopr","pseudost","st","stfont","tn","DeclarePseudoComment","DeclarePseudoConstant","DeclarePseudoFunction","DeclarePseudoIdentifier","DeclarePseudoKeyword","DeclarePseudoNormal","DeclarePseudoProcedure","DeclarePseudoString","RestorePseudoBackslash","RestorePseudoEq","rng","dts","eqs","nf","pseudobol","pseudodimcolor","pseudoeol","pseudofont","pseudohdpreamble","pseudohl","pseudohlcolor","pseudohpad","pseudoindent","pseudoindentlength","pseudolabel","pseudolabelalign","pseudopos","pseudopreamble","pseudoprefix","pseudosavelabel","pseudosetup","thepseudoenv","thepseudoline","pseudodate","pseudoversion","aboverulesep","belowrulesep","heavyrulewidth","lightrulewidth","pseudoeq","pseudoslash"]}
-,
-"pseudocode.sty":{"envs":["pseudocode"],"deps":["fancybox.sty","ifthen.sty"],"cmds":["ADO","AND","BEGIN","BREAK","CALL","CASE","CELSE","COMMENT","CTHEN","DO","DOWNTO","ELSE","ELSEIF","END","ENDCASE","ENDMAIN","ENDPROCEDURE","EXIT","EXTERNAL","FAIL","FALSE","FOR","FORALL","FOREACH","GETS","GLOBAL","GOTO","IF","LET","LOCAL","MAIN","NOT","OF","OR","OUTPUT","PROCEDURE","REPEAT","RETURN","STMTNUM","SUCCESS","THEN","thepseudocode","thepseudonum","TO","TRUE","UNTIL","WHILE"]}
-,
-"psfont.sty":{"envs":["Pilist","Piautolist","dinglist","dingautolist"],"deps":{},"cmds":["AvailableRMFont","AvailableSFFont","AvailableTTFont","AvailableFont","DefaultRMFont","DefaultSFFont","DefaultTTFont","Pifont","Pisymbol","Pifill","Piline","Pinumber","ding","dingfill","dingline","omicron","filedate","fileversion"]}
-,
-"psfrag.sty":{"envs":["psfrags"],"deps":["graphics.sty"],"cmds":["psfrag","psfragscanon","psfragscanoff","psfragdebugon","psfragdebugoff"]}
-,
-"psfragx.sty":{"envs":["overpix","onlylanguage"],"deps":["graphicx.sty","psfrag.sty","overpic.sty"],"cmds":["includegraphicx","iflanguage","allmetacomments","selectedmetacomments","copypfxfromto","setpfxinput","setpfxoutput","copypfxlines","pfxinput","ovpinput","overpix","endoverpix","onlylanguage","endonlylanguage","providecolorcommands","Beforepfxinput","Afterpfxinput","Beforeovpinput","Afterovpinput"]}
-,
-"psgo.sty":{"envs":["psgoboard","psgoboard*","psgopartialboard","psgopartialboard*","gomoves"],"deps":["pstricks.sty","pst-node.sty","calc.sty","ifthen.sty"],"cmds":["setgounit","stone","move","pass","markpos","markma","marktr","markcr","marksq","marklb","marksl","markdd","goline","goarrow","psgo","blackstone","factor","golabelformat","goxposition","goxunit","goyposition","goyunit","hatchangle","mdd","movenostar","movestar","nomark","passnostar","passstar","placesymbol","pointbox","psgollx","psgollxval","psgolly","psgollyval","psgosetboardsizes","psgourx","psgourxval","psgoury","psgouryval","stmark","stmarkbox","theboardsize","thegomove","thegotmpc","tmplx","tmply","tmpxa","tmpxb","tmpya","tmpyb","toggleblackmove","whitestone","xoffset","xpositionmarks","ypos","ypositionmarks"]}
-,
-"pst-2dplot.sty":{"envs":["pstgraph"],"deps":["pstricks.sty","pst-plot.sty","multido.sty","xkeyval.sty"],"cmds":["setpstgraph","pstlabel","pstfileplot"]}
-,
-"pst-3d.sty":{"envs":{},"deps":["pstricks.sty"],"cmds":["psAffinTransform","pssetzlength","psshadow","pstilt","psTilt","PSTthreeDLoaded","ThreeDput"]}
-,
-"pst-3dplot.sty":{"envs":{},"deps":["pstricks.sty","pst-3d.sty","pst-plot.sty","pst-node.sty","multido.sty","pst-xkey.sty"],"cmds":["pstThreeDCoor","psxyzlabel","pstThreeDPlaneGrid","pstThreeDPut","pstPlanePut","pstThreeDNode","pstThreeDDot","pstThreeDLine","pstThreeDTriangle","pstThreeDSquare","pstThreeDBox","psBox","pstThreeDEllipse","pstThreeDCircle","pstIIIDCylinder","psCylinder","pstParaboloid","pstThreeDSphere","psplotThreeD","parametricplotThreeD","fileplotThreeD","dataplotThreeD","listplotThreeD","ScalePointsThreeD","pstRotPointIIID","getThreeDCoor","pstaddThreeDVec","pstsubThreeDVec","setIIIDplotDefaults","ABinterCD","Arrows","CalculateCos","CalculateSin","IIIDplotfiledate","IIIDplotfileversion","NormalIIIDCoor","Parallel","UseCos","UseSin","arrowLine","noPT","nodeBetween","psBeforeLine","psOutLine","psplotImpIIID","pstAdd","pstDiv","pstIIIDNode","pstMul","pstRotNodeIIID","pstSinCos","pstSub","pstThreeDCone","pstThreeDPrism","pstThreeDmoveto","pstUThreeDPut","rotateFrame","rotateNode","rotateTriangle","PSTThreeDplotLoaded","pszunit","pstThreeDPlotFunc"]}
-,
-"pst-abspos.sty":{"envs":{},"deps":["pstricks.sty","pst-node.sty","pst-xkey.sty"],"cmds":["pstSetRelativeOrigin","pstSetAbsoluteOrigin","pstSetPostScriptOrigin","pstPutAbs","PSTabsposLoaded"]}
-,
-"pst-all.sty":{"envs":{},"deps":["pstricks.sty","pst-plot.sty","pst-node.sty","pst-tree.sty","pst-grad.sty","pst-coil.sty","pst-text.sty","pst-3d.sty","pst-eps.sty","pst-fill.sty","pstricks-add.sty"],"cmds":{}}
-,
-"pst-am.sty":{"envs":{},"deps":["pstricks.sty","pst-plot.sty","pst-node.sty","pst-xkey.sty","numprint.sty","multido.sty"],"cmds":["psAM"]}
-,
-"pst-antiprism.sty":{"envs":{},"deps":["pstricks.sty","pst-solides3d.sty","pst-xkey.sty"],"cmds":["psAntiprism","PSTANTIPRISMLoaded"]}
-,
-"pst-arrow.sty":{"envs":{},"deps":["pstricks.sty"],"cmds":["psBigArrow","PSTarrowLoaded"]}
-,
-"pst-bar.sty":{"envs":{},"deps":["pstricks.sty","pst-plot.sty","pst-xkey.sty"],"cmds":["readpsbardata","psbarchart","newpsbarstyle","psbarlabel","psbarlabelsep","psbarscale","setbarstyle","trimb","trimc","PSTBarLoaded"]}
-,
-"pst-barcode.sty":{"envs":{},"deps":["pstricks.sty","pst-xkey.sty","marginnote.sty"],"cmds":["psbarcode","QR","PSTBarcodeLoaded"]}
-,
-"pst-bezier.sty":{"envs":{},"deps":["pstricks.sty","expl3.sty","pst-xkey.sty","pst-plot.sty","pst-node.sty"],"cmds":["psbcurve","psRQBCmasse","pscalculate","PSTbezierLoaded","defopt"]}
-,
-"pst-blur.sty":{"envs":{},"deps":["pstricks.sty"],"cmds":["psblurbox","ifpsblur","psblurtrue","psblurfalse","PstBlurLoaded"]}
-,
-"pst-bspline.sty":{"envs":{},"deps":["multido.sty","pstricks.sty","pst-node.sty","pst-xkey.sty"],"cmds":["psbspline","psBspline","psBsplineE","psBsplineC","psBsplineNodes","psBsplineNodesE","psBsplineNodesC","bspcurvepoints","bspcurvepointsE","bspNode","bspFnNode","psBsplineInterp","psBsplineInterpC","bspcurvenodes","thickBspline","thickBEspline","thickBdraw","thickBsplinePen","thickBsplinePenE","refreshbspopts","psBsplineMain","pnodesX","noderoot","PSTBsplineLoaded"]}
-,
-"pst-calculate.sty":{"envs":{},"deps":["xkeyval.sty","siunitx.sty","xparse.sty"],"cmds":["psCalculate","pscalculate"]}
-,
-"pst-calendar.sty":{"envs":{},"deps":["fp.sty","pstricks.sty","pst-3d.sty","multido.sty","pst-xkey.sty"],"cmds":["psCalendar","psCalDodecaeder","RA","rb","ra","rc","rd","faceA","faceB","faceC","faceD","Test","colonne","ligne","Year","GY","Cent","Iter","Iterdiv","Hepact","Inbre","Jnbreinter","Jnbre","Lnbre","Month","Day","DayAscension","MonthAscension","TestJourPentecote","DayPentecote","MonthPentecote","TestSiJourAvril","YearBissextil","adddays","NbreJours","NbYearBissextil","Name","NbDays","Frac","Quotient","firstDay"]}
-,
-"pst-char.sty":{"envs":["charclip"],"deps":{},"cmds":["endpscharclip","pscharclip","pscharpath"]}
-,
-"pst-cie.sty":{"envs":{},"deps":["pstricks.sty","pst-plot.sty","pst-node.sty"],"cmds":["psChromaticityDiagram","pstCIEcontour","pstPlanck","txCIEdictBegin","CIEdefaultYear","PSTcieLoaded"]}
-,
-"pst-circ.sty":{"envs":{},"deps":["pstricks.sty","pst-node.sty","pst-xkey.sty","multido.sty"],"cmds":["wire","tension","ground","resistor","RFLine","capacitor","battery","coil","Ucc","Icc","switch","arrowswitch","diode","Zener","lamp","circledipole","LED","SQUID","RelayNOP","Suppressor","Arrestor","cell","igbt","OA","GM","Tswitch","potentiometer","transistor","quadripole","transformer","newtransformer","newtransformerquad","optoCoupler","multidipole","OpenDipol","OpenTripol","dashpot","newground","newdiode","newZener","newLED","newSwitch","newcapacitor","newarmature","vdc","vac","antenna","oscillator","filter","isolator","freqmult","phaseshifter","vco","amplifier","detector","attenuator","mixer","splitter","circulator","agc","coupler","logic","logicnot","logicand","logicor","logicxor","logicff","logicic","sevensegmentdisplay","xic","xio","ote","osr","res","swpb","swtog","contact","armature","newCircDipole","icheight","icwidth","icleft","icmid","icright","node","modulator","plug","ampsinu","powermeter","PSTcircLoaded"]}
-,
-"pst-coil.sty":{"envs":{},"deps":["pstricks.sty","pst-xkey.sty"],"cmds":["pscoil","psCoil","pszigzag","pssin","nccoil","nczigzag","pccoil","pczigzag","ncsin","pcsin","PSTcoilsLoaded"]}
-,
-"pst-contourplot.sty":{"envs":{},"deps":["pstricks.sty","pst-xkey.sty"],"cmds":["psContourPlot","psReadData","PSTCONTOURPLOTLoaded"]}
-,
-"pst-coxcoor.sty":{"envs":{},"deps":["pstricks.sty","pst-xkey.sty"],"cmds":["CoxeterCoordinates","pscolorVertices","pscolorCenters","pscolorCentersFaces","pscolorCentersCells","pssizeVertices","pssizeCenters","pssizeCentersFaces","pssizeCentersCells","PstCoxeterCoordinatesLoaded"]}
-,
-"pst-coxeterp.sty":{"envs":{},"deps":["pstricks.sty","pst-xkey.sty"],"cmds":["Polygon","Simplex","gammapn","betapn","gammaptwo","betaptwo","pscolorVertices","pscolorCenters","pssizeVertices","pssizeCenters","PstCoxeter"]}
-,
-"pst-dart.sty":{"envs":{},"deps":["pstricks.sty","multido.sty","pst-xkey.sty"],"cmds":["psDartBoard","psDart"]}
-,
-"pst-dbicons.sty":{"envs":{},"deps":{},"cmds":["seticonparams","entity","attribute","attributeof","attrdist","relationship","relationshipbetween","inrelationship","rolepos","cardpos","annote","nodeconnections","database","relationtype","filedate","docdate","fileversion","basename"]}
-,
-"pst-diffraction.sty":{"envs":{},"deps":["pstricks.sty","pst-3dplot.sty","pst-xkey.sty"],"cmds":["psdiffractionRectangle","psdiffractionCircular","psdiffractionTriangle","PSTDiffractionLoaded"]}
-,
-"pst-electricfield.sty":{"envs":{},"deps":["pstricks.sty","multido.sty","pst-xkey.sty"],"cmds":["psElectricfield","psEquipotential","PSTElectricFieldLoaded"]}
-,
-"pst-eps.sty":{"envs":["TeXtoEPS"],"deps":["pstricks.sty"],"cmds":["TeXtoEPS","endTeXtoEPS","PSTtoEPS","PSTfilesLoaded"]}
-,
-"pst-eucl.sty":{"envs":{},"deps":["pstricks.sty","pst-node.sty","pst-tools.sty","pst-calculate.sty","pst-arrow.sty","pst-plot.sty","multido.sty"],"cmds":["pstGeonode","pstAbscissa","pstOrdinate","pstMoveNode","pstOIJGeonode","pstSegmentMark","pstLabelAB","pstTriangle","pstTriangleSSS","pstTriangleSAS","pstTriangleAAS","pstTriangleASA","pstTriangleIC","pstTriangleOC","pstTriangleGC","pstTriangleHC","pstTriangleEC","pstTriangleNC","pstTriangleLC","pstRightAngle","pstMarkAngle","pstLineAB","pstLine","pstLineAA","pstLineAS","pstLineCoef","pstLineAbsNode","pstLineOrdNode","pstProportionNode","pstBisectorAOB","pstFourthHarmonicNode","pstLocateAB","pstExtendAB","pstInversion","pstGoldenMean","pstGeometricMean","pstHarmonicMean","pstDistAB","pstDistVal","pstDistCalc","pstDist","pstDistConst","pstDistExpr","pstDistCoef","pstUserDist","pstScreenDist","pstDistMul","pstDistAdd","pstDistAddVal","pstDistAddCoef","pstDistSub","pstDistSubVal","pstDistSubCoef","pstDistDiv","pstDistABC","pstCircleOA","pstCircleAB","pstCircleABR","pstArcOAB","pstArcnOAB","pstCircleNode","pstCircleRotNode","pstCircleChordNode","pstCircleAbsNode","pstCircleOrdNode","pstCurvAbsNode","pstCircleTangentLine","pstCircleTangentNode","pstCircleExternalCommonTangent","pstCircleInternalCommonTangent","pstCircleRadicalAxis","pstETriangleAB","pstSquareAB","pstRegularPolygonAB","pstRegularPolygonOA","pstGenericCurve","pstEllipse","pstEllipseNode","pstEllipseRotNode","pstEllipseAbsNode","pstEllipseOrdNode","pstEllipseFocusNode","pstEllipseDirectrixLine","pstEllipseLineInter","pstEllipsePolarNode","pstEllipseTangentNode","pstGeneralEllipse","pstGeneralEllipseFle","pstGeneralEllipseFFN","pstGeneralEllipseCoef","pstGeneralEllipseABCDE","pstGeneralEllipseNode","pstGeneralEllipseRotNode","pstGeneralEllipseAbsNode","pstGeneralEllipseOrdNode","pstGeneralEllipseFocusNode","pstGeneralEllipseDirectrixLine","pstGeneralEllipseLineInter","pstGeneralEllipsePolarNode","pstGeneralEllipseTangentNode","pstParabola","pstParabolaNode","pstParabolaAbsNode","pstParabolaOrdNode","pstParabolaFocusNode","pstParabolaDirectrixLine","pstParabolaLineInter","pstParabolaPolarNode","pstParabolaTangentNode","pstIParabola","pstIParabolaNode","pstIParabolaAbsNode","pstIParabolaOrdNode","pstIParabolaFocusNode","pstIParabolaDirectrixLine","pstIParabolaLineInter","pstIParabolaPolarNode","pstIParabolaTangentNode","pstGeneralParabola","pstGeneralParabolaNode","pstGeneralParabolaAbsNode","pstGeneralParabolaOrdNode","pstGeneralParabolaFl","pstGeneralParabolaCoef","pstGeneralParabolaABCDE","pstGeneralParabolaFocusNode","pstGeneralParabolaDirectrixLine","pstGeneralParabolaLineInter","pstGeneralParabolaPolarNode","pstGeneralParabolaTangentNode","pstGeneralIParabola","pstGeneralIParabolaNode","pstGeneralIParabolaAbsNode","pstGeneralIParabolaOrdNode","pstGeneralIParabolaFocusNode","pstGeneralIParabolaDirectrixLine","pstGeneralIParabolaLineInter","pstGeneralIParabolaPolarNode","pstGeneralIParabolaTangentNode","pstHyperbola","pstHyperbolaNode","pstHyperbolaAbsNode","pstHyperbolaOrdNode","pstHyperbolaFocusNode","pstHyperbolaDirectrixLine","pstHyperbolaAsymptoteLine","pstHyperbolaLineInter","pstHyperbolaPolarNode","pstHyperbolaTangentNode","pstIHyperbola","pstIHyperbolaNode","pstIHyperbolaAbsNode","pstIHyperbolaOrdNode","pstIHyperbolaFocusNode","pstIHyperbolaDirectrixLine","pstIHyperbolaAsymptoteLine","pstIHyperbolaLineInter","pstIHyperbolaPolarNode","pstIHyperbolaTangentNode","pstGeneralHyperbola","pstGeneralHyperbolaFle","pstGeneralHyperbolaFFN","pstGeneralHyperbolaCoef","pstGeneralHyperbolaABCDE","pstGeneralHyperbolaNode","pstGeneralHyperbolaAbsNode","pstGeneralHyperbolaOrdNode","pstGeneralHyperbolaFocusNode","pstGeneralHyperbolaVertexNode","pstGeneralHyperbolaDirectrixLine","pstGeneralHyperbolaLineInter","pstGeneralHyperbolaPolarNode","pstGeneralHyperbolaTangentNode","pstGeneralIHyperbola","pstGeneralIHyperbolaNode","pstGeneralIHyperbolaAbsNode","pstGeneralIHyperbolaOrdNode","pstGeneralIHyperbolaFocusNode","pstGeneralIHyperbolaVertexNode","pstGeneralIHyperbolaDirectrixLine","pstGeneralIHyperbolaAsymptoteLine","pstGeneralIHyperbolaLineInter","pstGeneralIHyperbolaPolarNode","pstGeneralIHyperbolaTangentNode","pstGeneralConicEquation","pstGeneralEllipseEquation","pstGeneralHyperbolaEquation","pstGeneralParabolaEquation","pstGeneralConicLineInter","pstGeneralConicCircleInter","pstGeneralConicEllipseInter","pstGeneralConicHyperbolaInter","pstGeneralConicIHyperbolaInter","pstGeneralConicParabolaInter","pstGeneralConicIParabolaInter","pstGeneralConicInter","pstGeneralConicTangentLine","pstGeneralConicTangentChord","pstSymO","pstOrtSym","pstRotation","pstAngleAOB","pstTranslation","pstHomO","pstProjection","pstMiddleAB","pstCGravABC","pstCircleABC","pstMediatorAB","pstBissectBAC","pstOutBissectBAC","pstInterLL","pstInterLC","pstInterCC","pstInterFF","pstInterFL","pstInterFC","psGetDistanceAB","psGetAngleABC","AngleMarkCirc","AngleMarkCros","AngleMarkCross","AngleMarkHash","AngleMarkHashh","AngleMarkHashhh","Anglepstslash","Anglepstslashh","Anglepstslashhh","Anglepstslashslash","Anglepstslashslashslash","LastValidPN","LastValidSS","MarkArrow","MarkArroww","MarkArrowww","MarkCirc","MarkCros","MarkCross","MarkHash","MarkHashh","MarkHashhh","OldPointName","OldPointNameSep","OldPointSymbol","OldPosAngle","PstParamListFirst","PstParamListLasts","SegSymLst","pstParseArg","pstPolygon","pstShowCoor","pstslash","pstslashh","pstslashhh","pstslashslash","pstslashslashslash","resetEUCLvalues","psMarkHashLength","psMarkHashSep","PSTEuclideLoaded"]}
-,
-"pst-exa.sty":{"envs":["PSTcode","PSTexample"],"deps":["etoolbox.sty","xcolor.sty","showexpl.sty","accsupp.sty","changepage.sty","tcolorbox.sty","tcolorboxlibrarylistings.sty","tcolorboxlibrarybreakable.sty","tcolorboxlibraryskins.sty"],"cmds":["hwidth","noaccsupp","filedate","fileversion"]}
-,
-"pst-feyn.sty":{"envs":{},"deps":["pstricks.sty","pst-xkey.sty"],"cmds":["psArrowArc","psArrowArcn","psArrowLine","psBCirc","psBText","psCArc","psCCirc","psCText","psGluonArc","psGluon","psPhoton","psPhotonArc","psPText","psText","psZigZag","psLinAxis","psLogAxis","axoxoff","axoyoff","axoxo","axoyo","psLongArrowArc","DashArrowArc","LongArrowArcn","DashArrowArcn","LongArrow","DashArrowLine","psGCirc","psGText","PSTFeynLoaded"]}
-,
-"pst-fill.sty":{"envs":{},"deps":["pstricks.sty"],"cmds":["psboxfill","PstTiling","txfillDict","pstFillSetDefaults","PSTboxfillLoaded"]}
-,
-"pst-fit.sty":{"envs":{},"deps":["pstricks.sty","pstricks-add.sty","pst-xkey.sty"],"cmds":["PSTfitLoaded"]}
-,
-"pst-flags-colors-html.sty":{"envs":{},"deps":["xcolor.sty"],"cmds":{}}
-,
-"pst-flags.sty":{"envs":{},"deps":["fp.sty","pstricks.sty","pst-all.sty","xcolor.sty"],"cmds":["flagAE","flagAI","flagAM","flagAU","flagAZ","flagBA","flagBM","flagBN","flagBS","flagBY","flagCA","flagCC","flagCK","flagCU","flagCX","flagDM","flagER","flagET","flagFJ","flagGB","flagHR","flagHU","flagIE","flagIO","flagJM","flagJO","flagKP","flagKW","flagKY","flagKZ","flagLK","flagLV","flagLY","flagMD","flagME","flagMK","flagMN","flagMY","flagNG","flagNR","flagNZ","flagOM","flagPH","flagPS","flagSB","flagSC","flagSD","flagSI","flagSS","flagTJ","flagTL","flagTO","flagUK","flagUZ","flagVG","flagZW","flagAG","flagAO","flagAW","flagBB","flagBF","flagBJ","flagBT","flagBW","flagCD","flagCF","flagCL","flagCM","flagCN","flagCO","flagCY","flagCZ","flagDJ","flagDZ","flagEC","flagEG","flagES","flagFR","flagGE","flagGH","flagGM","flagGN","flagGQ","flagGR","flagHK","flagID","flagIN","flagIQ","flagIT","flagJP","flagKE","flagKN","flagKR","flagLB","flagLS","flagMA","flagMG","flagML","flagMM","flagMR","flagMT","flagMU","flagMV","flagMW","flagMZ","flagNA","flagNL","flagPA","flagPE","flagPK","flagPR","flagPT","flagRO","flagRS","flagRU","flagRW","flagSA","flagSG","flagSK","flagSL","flagSN","flagSO","flagSR","flagSY","flagTD","flagTH","flagTN","flagTR","flagTW","flagTZ","flagUA","flagUG","flagUY","flagVE","flagVN","flagYE","flagZA","flagZM","flagAD","flagAL","flagAR","flagBD","flagBG","flagBH","flagBI","flagBR","flagBZ","flagCG","flagCR","flagDE","flagDK","flagDO","flagEE","flagGA","flagGY","flagIL","flagIR","flagKG","flagKM","flagLI","flagLT","flagLU","flagMC","flagMX","flagNE","flagNI","flagNO","flagNP","flagPG","flagPL","flagPW","flagSE","flagTT","flagAS","flagUS","flagAT","flagCH","flagIS","flagFI","flagPY","flagBE","flagTG","flagQA","flagBO","flagKH","flagSV","flagLR","ammCharSpacing","crownLily","crownLilyDouble","flagBEO","flagBYPattern","flagGECross","flagHKSeal","flagIOCrown","flagIOTree","flagIOWave","flagIranEmblem","flagIranSlogan","flagPYseal","iconStar","iconStarXN","iconStarXNPoints","iconStarXS","textphv"]}
-,
-"pst-fr3d.sty":{"envs":{},"deps":["pstricks.sty","pst-xkey.sty"],"cmds":["PstFrameBoxThreeD","PstFrameBoxThreeDLoaded"]}
-,
-"pst-fractal.sty":{"envs":{},"deps":["pstricks.sty","pst-func.sty","pstricks-add.sty","pst-xkey.sty"],"cmds":["psCantor","psSier","psSierCarpet","psfractal","psPhyllotaxis","psFern","psKochflake","psAppolonius","psPTree","psFArrow","psFibonacciWord","psFibonacci","psNewFibonacci","psiFibonacci","pskFibonacci","psBiperiodicFibonacci","psFibonacciPolyominoes","psHilbert","psHenon","psHugo","psdotcolor","pscolorF","PSTfractalLoaded"]}
-,
-"pst-fun.sty":{"envs":{},"deps":["pstricks.sty","pst-grad.sty","pst-slpe.sty","multido.sty","pst-node.sty","pst-xkey.sty"],"cmds":["psParrot","psBill","psFish","psLouisXIII","psPulpo","Datas","psBranch","psBird","psLuke","psAnt","psKangaroo","psPig","PSTfunLoaded"]}
-,
-"pst-func.sty":{"envs":{},"deps":["pstricks.sty","pst-plot.sty","pst-math.sty","pst-tools.sty","pstricks-add.sty","pst-xkey.sty"],"cmds":["ChebyshevT","ChebyshevU","psPolynomial","psBernstein","psLaguerre","psLegendre","psZero","psFourier","psBessel","psModBessel","psSi","pssi","psCi","psci","psIntegral","psCumIntegral","psConv","psGauss","psGaussI","psBinomial","psBinomialC","psBinomialN","psBinomialF","psBinomialFS","psPoisson","psGammaDist","psChiIIDist","psTDist","psFDist","psBetaDist","psCauchy","psCauchyI","psWeibull","psWeibullI","psVasicek","psLorenz","psLame","psThomae","psWeierstrass","psplotImp","psVolume","psGetZeros","psLaguerreC","psLaguerreCC","psLaguerreCCC","psLaguerreCCCC","psContourLaguerre","cplotstyle","psCplot","PSTfuncLoaded"]}
-,
-"pst-gantt.sty":{"envs":["PstGanttChart"],"deps":["pstricks.sty","pst-node.sty","pst-grad.sty","pst-xkey.sty","multido.sty"],"cmds":["PstGanttChart","endPstGanttChart","PstGanttTask","PSTganttLoaded"]}
-,
-"pst-geo.sty":{"envs":{},"deps":["pstricks.sty","pst-node.sty","pst-xkey.sty"],"cmds":["WorldMap","WorldMapII","WorldMapThreeD","WorldMapThreeDII","psNodeLabelStyle","TypeProjection","pnodeMap","mapput","psmeridiencolor","psmapcolor","psparallelcolor","psislandcolor","pscoastcolor","psoceancolor","psrivercolor","pswfraczoncolor","pswmaglincolor","psridgecolor","pstransfrmcolor","pstrenchcolor","psgridmapcolor","pscirclecolor","psmeridienwidth","psparallelwidth","pscirclewidth","psgridmapwidth","psborderwidth","pscoastwidth","pswfraczonwidth","pswmaglinwidth","psridgewidth","pnodeMapIIID","mapputIIID","psmeridien","psparallel","psGlobeTellure","psepicenter","PSTGeoLoaded"]}
-,
-"pst-geometrictools.sty":{"envs":{},"deps":["pstricks.sty","pst-xkey.sty","pst-node.sty"],"cmds":["psProtractor","ProLineCol","ProFillCol","psPencil","pencilColA","pencilColB","psRuler","RulerFillCol","psCompass","PoCFillCol","PoCMineCol","psDistAB","psAngleAB","psAngleAOB","psParallels","PSTgeometrictoolsLoaded"]}
-,
-"pst-gr3d.sty":{"envs":{},"deps":["pstricks.sty","pst-node.sty","pst-3d.sty","multido.sty","pst-xkey.sty"],"cmds":["PstGridThreeD","PstGridThreeDYFace","PstGridThreeDHookNode","PstGridThreeDHookXFace","PstGridThreeDHookYFace","PstGridThreeDHookZFace","PstGridThreeDHookEnd","PstGridThreeDNodeProcessor","PSTGridThreeDLoaded"]}
-,
-"pst-hsb.sty":{"envs":{},"deps":["pstricks.sty","pst-plot.sty","pst-xkey.sty"],"cmds":["psparametricplotHSB","pslineHSB","PSThsbLoaded"]}
-,
-"pst-infixplot.sty":{"envs":{},"deps":["pst-plot.sty","infix-RPN.sty"],"cmds":["psPlot","parametricPlot","PSTPlotLoaded"]}
-,
-"pst-intersect.sty":{"envs":{},"deps":["pstricks.sty","pst-xkey.sty","pst-node.sty","pst-func.sty"],"cmds":["pssavepath","pssavebezier","psintersect","pstracecurve","psGetCurvePoint","psGetIsectCenter","PSTintersectLoaded"]}
-,
-"pst-jtree.sty":{"envs":["jtree","multiline"],"deps":["pstricks.sty","pst-node.sty","pst-xkey.sty"],"cmds":["jtree","endjtree","defbranch","deftriangle","triline","triwd","defvartriangle","jtlong","jtshort","jtwide","jtbig","jtjot","jteverytree","jtEverytree","jteverylabel","blank","brokenbranch","etcbranch","etc","stuff","defstuff","multiline","endmultiline","psinterpolate","elc","adjoinop","expandaftertwice","filedate","fileversion","jRestoreCat","jStoreCat","jTempChangeCat","JTreeLoaded","jtreevalue","NormalLabelStrut","OtherAt","testlabel","start","adjoin"]}
-,
-"pst-key.sty":{"envs":{},"deps":["pstricks.sty"],"cmds":["psset","setkeys"]}
-,
-"pst-knot.sty":{"envs":{},"deps":["pstricks.sty","pst-xkey.sty"],"cmds":["psKnot","psBorromean","PSTknotLoaded"]}
-,
-"pst-labo.sty":{"envs":{},"deps":["pstricks.sty","pst-plot.sty","multido.sty","pst-grad.sty","pst-xkey.sty"],"cmds":["pstBullesChampagne","pstFilaments","pstBilles","pstBULLES","pstTournureCuivre","pstClouFer","pstGrenailleZinc","pstTubeEssais","pstChauffageTube","pstBallon","pstChauffageBallon","pstEntonnoir","pstEprouvette","pstpipette","pstDosage","pstDistillation","chauffe","Cristallisoir","InterieurCristallisoir","BulleX","BulleY","GrenailleX","GrenailleY","TournureX","TournureY","RAYONBULLE","ClouX","ClouY","randomi","nextrandom","setrannum","setrandim","pointless","PoinTless","ranval","PSTLaboLoaded"]}
-,
-"pst-layout.sty":{"envs":["pslayout","pslayout*"],"deps":["graphicx.sty","ifthen.sty","pstricks-add.sty","arrayjobx.sty"],"cmds":["NumGraphics","NumFragments","NumLines","NumFrames","NumPoints","NumDots","Graphic","GraphicPos","GraphicOpts","GraphicRefPt","Frag","FragPos","FragRefPt","FragRotation","FragBlankBG","PointName","PointPos","PointSeries","PointInc","DotPos","DotOpts","DotType","FrameStart","FrameEnd","FrameDelta","FrameOpts","FrameSolid","FrameType","LOpts","LArrow","LStart","LEnd","LDelta","LType","pslayout","endpslayout","showRC","xmin","ymin","parsedelta","MaxR","MaxC","parseFragRP","parseSeries","PSTLayoutLoaded"]}
-,
-"pst-lens.sty":{"envs":{},"deps":["pstricks.sty","pst-grad.sty","pst-xkey.sty"],"cmds":["PstLens","PstLensShape","PSTLensLoaded"]}
-,
-"pst-light3d.sty":{"envs":{},"deps":["pstricks.sty","pst-xkey.sty"],"cmds":["PstLightThreeDGraphic","PstLightThreeDText","PSTLightThreeDLoaded","FileVersion","FileDate"]}
-,
-"pst-lsystem.sty":{"envs":{},"deps":["pstricks.sty","pst-xkey.sty"],"cmds":["pslsystem","PSTlsystemLoaded"]}
-,
-"pst-magneticfield.sty":{"envs":{},"deps":["pstricks.sty","pst-3d.sty","multido.sty","pst-node.sty","pst-arrow.sty","pst-xkey.sty"],"cmds":["psmagneticfield","psmagneticfieldThreeD","psBarMagnet","CalcIntermediaire","yA","PSTMagneticFieldLoaded"]}
-,
-"pst-marble.sty":{"envs":{},"deps":["pstricks.sty","pst-xkey.sty"],"cmds":["psMarble","PSTMARBLELoaded"]}
-,
-"pst-math.sty":{"envs":{},"deps":["pst-calculate.sty","ifluatex.sty","xstring.sty","xkeyval.sty"],"cmds":["pstPI","defineRandIntervall","makeSimpleRandomNumberList","makeRandomNumberList","getNumberFromList","PSTmathLoaded","fileversion","filedate"]}
-,
-"pst-mirror.sty":{"envs":{},"deps":["pstricks.sty","pst-node.sty","pst-tools.sty","multido.sty","pst-xkey.sty"],"cmds":["pstSphereText","pstSphereCube","pstSphereDie","pstSphereTetraedre","pstSpherePoint","NormalIIIDCoor","pstSphereLine","pstSpherePolygon","pstSphereCircle","pstSphereArc","pstSphereFrame","pstSphereGrid","pstMirrorSphere","pstSphereCylinder","pstSphereCone","pstSpherePyramide","pstSphereImage","parametricplotSphere","pstFaceSAB","pstFaceSBC","pstFaceSCD","pstFaceSDA","pstFaceABCD","PSTMirrorLoaded","psparametricplotSphere"]}
-,
-"pst-moire.sty":{"envs":{},"deps":["pstricks.sty","pst-xkey.sty","multido.sty"],"cmds":["psmoire","addtomoirelisttype","psRandomDotPatterns","psRandomDot","psGlassPattern","variablesMoirages"]}
-,
-"pst-node.sty":{"envs":["psmatrix"],"deps":["pstricks.sty"],"cmds":["actualscale","algparnode","AplusB","ArrowNotch","AtoB","Circlenode","circlenode","Cnode","cnode","Cnodeput","cnodeput","curvepnode","curvepnodes","defaultvalue","dianode","dotnode","dotnodes","endpsmatrix","equalwhat","fnode","fnpnode","fnpnodes","getnodelist","hasparen","hasequal","hascolon","MakeShortNab","MakeShortTab","MakeShortTablr","midAB","naput","nbput","ncangle","ncangles","ncarc","ncarcbox","ncbar","ncbarr","ncbox","nccircle","nccoil","nccurve","ncdiag","ncdiagg","ncline","ncLine","nclines","ncloop","ncput","nczigzag","nlput","nodenameA","nodenameB","nodex","nodexn","normalvec","nput","ovalnode","parsenodexn","pcangle","pcangles","pcarc","pcarcbox","pcbar","pcbox","pccurve","pcdiag","pcdiagg","pcline","pcloop","pnode","pnodes","polyIntersections","pscloseNodeFile","pscolhooki","pscolhookii","pscolhookiii","pscolhookiv","pscolhookix","pscolhookv","pscolhookvi","pscolhookvii","pscolhookviii","pscolhookx","psDefBoxNodes","psDefPSPNodes","psGetCenter","psGetEdgeA","psGetEdgeB","psGetNodeCenter","psGetNodeEdgeA","psGetNodeEdgeB","psLCNode","psLCNodeVar","psLDNode","psLNode","psmatrix","psncurve","psnccurve","psnline","psnode","psnpolygon","psopenNodeFile","psparnode","psRelLineVar","psRelNode","psRelNodeVar","psrline","psrowhooki","psrowhookii","psrowhookiii","psrowhookiv","psrowhookix","psrowhookv","psrowhookvi","psrowhookvii","psrowhookviii","psrowhookx","psspan","pstiterate","pstloop","PSTnodesLoaded","psxline","rhombus","rnode","Rnode","saveDataAsNodes","shownode","taput","tbput","testAlg","thput","tlput","trim","trinode","trput","tvput","unbrace","Aput","aput","Bput","bput","Lput","lput","Mput","mput"]}
-,
-"pst-ob3d.sty":{"envs":{},"deps":["pstricks.sty","pst-xkey.sty","pst-3d.sty","pst-tools.sty"],"cmds":["PstCube","PstDie","PstObjectsThreeDFaceA","PstObjectsThreeDFaceB","PstObjectsThreeDFaceC","PstObjectsThreeDFaceD","PstObjectsThreeDFaceE","PstObjectsThreeDFaceF","PstObjectsThreeDFaceCenterA","PstObjectsThreeDFaceCenterB","PstObjectsThreeDFaceCenterC","PstObjectsThreeDFaceCenterD","PstObjectsThreeDFaceCenterE","PstObjectsThreeDFaceCenterF","PstObjectsThreeDLoaded"]}
-,
-"pst-ode.sty":{"envs":{},"deps":["pstricks.sty"],"cmds":["pstODEsolve","pstODEsaveState","pstODErestoreState","PSTODELoaded"]}
-,
-"pst-optexp.sty":{"envs":["optexp"],"deps":["ifthen.sty","pstricks.sty","pst-xkey.sty","pst-node.sty","pst-plot.sty","multido.sty","pst-eucl.sty","pst-intersect.sty","pstricks-add.sty","environ.sty"],"cmds":["lens","asphericlens","optplate","optretplate","pinhole","optbox","optarrowcomp","optbarcomp","optsource","crystal","optdiode","doveprism","glanthompson","polarization","optwedge","axicon","mirror","parabolicmirror","oapmirror","beamsplitter","optgrating","transmissiongrating","optaom","optprism","rightangleprism","pentaprism","optfiber","optamp","optmzm","polcontrol","optisolator","optswitch","fiberdelayline","optfiberpolarizer","optcirculator","optcoupler","wdmcoupler","wdmsplitter","fiberbox","eleccoupler","elecsynthesizer","elecmixer","optfilter","fibercollimator","optdetector","oenode","oenodeRefA","oenodeRefB","oenodeTrefA","oenodeTrefB","oenodeCenter","oenodeLabel","oenodeExt","oenodeIfc","oenodeIn","oenodeOut","oenodeRotref","oenodeBeam","oenodeBeamUp","oenodeBeamLow","oeBeamCenter","oeBeamVec","oeBeamVecUp","oeBeamVecLow","oeBeamVecMedian","drawbeam","drawwidebeam","optplane","drawfiber","drawwire","backlayer","frontlayer","optdipole","opttripole","newOptexpDipole","newOptexpTripole","newOptexpFiberDipole","newOptexpElecDipole","newOptexpComp","newOptexpCompAmb","newOptexpElecComp","newOptexpFiberComp","oelabel"]}
-,
-"pst-optic.sty":{"envs":{},"deps":["pstricks.sty","pst-node.sty","pst-plot.sty","pst-3d.sty","pst-grad.sty","pst-math.sty","multido.sty","pst-xkey.sty"],"cmds":["resetOpticOptions","lens","lensCVG","lensDVG","Transform","rayInterLens","telescope","mirrorCVG","mirrorDVG","mirrorCVGRay","mirrorDVGRay","planMirrorRay","symPlan","beamLight","refractionRay","psprism","lensSPH","ABinterSPHLens","lensSPHRay","reflectionRay","eye","Arrows","psOutLine","psBeforeLine","Parallel","ABinterCD","nodeBetween","rotateNode","rotateTriangle","rotateFrame","arrowLine","mirrorTwo","pslensDVG","pslensCVG","lensTypeCVG","lensTypeDVG","lensTypePCVG","lensTypePDVG","mirrorType","psprismColor","PSTopticLoaded"]}
-,
-"pst-osci.sty":{"envs":{},"deps":["pstricks.sty","pst-plot.sty","multido.sty","pst-xkey.sty"],"cmds":["Oscillo","TriangleA","TriangleB","RectangleA","RectangleB","RDogToothA","RDogToothB","LDogToothA","LDogToothB","SinusA","SinusB","ssf","PSTOscilloLoaded"]}
-,
-"pst-ovl.sty":{"envs":["psoverlaybox"],"deps":["pstricks.sty"],"cmds":["AltOverlayMode","thepsoverlaybox","psoverlaybox","endpsoverlaybox","psoverlay","psputoverlaybox","PSTovlloaded"]}
-,
-"pst-pad.sty":{"envs":{},"deps":["pstricks.sty","multido.sty","pst-node.sty","pst-xkey.sty"],"cmds":["PstWallToWall","PstSphereToWall","PstPad","PstFluid","PstWall","PstWallRough","PstSphere","PstFlattenedSphere","PSTpadLoaded"]}
-,
-"pst-pdf.sty":{"envs":["postscript","pst-pdf-defs"],"deps":["ifpdf.sty","ifxetex.sty","ifvtex.sty","luatex85.sty","graphicx.sty","pstricks.sty","preview.sty","environ.sty","pst-calculate.sty","pdfcolmk.sty"],"cmds":["PDFcontainer","savepicture","usepicture","thepspicture"]}
-,
-"pst-pdgr.sty":{"envs":{},"deps":["pstricks.sty","pst-node.sty","pst-tree.sty","pst-xkey.sty"],"cmds":["affectedstyle","affectedbgcolor","affectedfgcolor","pstPerson","pstAbortion","pstChildless","pstRelationship","pstDescent","pstTwins","TpstPerson","TpstAbortion","TpstChildless","ncAngles","PSTPedigreeLoaded"]}
-,
-"pst-perspective.sty":{"envs":{},"deps":["pstricks.sty","pst-grad.sty","pstricks-add.sty"],"cmds":["pstransTS","pstransTSX","pstransTSK","psboxTS","psCircleTS","psCircleTSX","psArcTS","psArcTSX","psZylinderTS","ba","punkte","punkteA","punkteB","punkteC","punkteD","PSTperspectiveLoaded"]}
-,
-"pst-platon.sty":{"envs":{},"deps":["pstricks.sty","pst-3d.sty","pst-xkey.sty"],"cmds":["psTetrahedron","psHexahedron","psOctahedron","psDodecahedron","psIcosahedron","colorTypeA","colorTypeB","face","faceA","faceB","faceC","faceD","faceE","faceF","faceG","faceH","Nx","nx","Ny","ny","Nz","nz","Ox","ox","Oy","oy","Oz","oz","RA","ra","rb","rc","rd"]}
-,
-"pst-plot.sty":{"envs":["psgraph"],"deps":["pstricks.sty","multido.sty","pst-tools.sty"],"cmds":["dataplot","endpsgraph","fileplot","ifSpecialLabelsDone","listplot","parametricplot","psaxes","psBoxplot","psCoordinates","psdataplot","psfileplot","psFixpoint","psgraph","psgraphLLx","psgraphLLy","psgraphURx","psgraphURy","pshlabel","pslegend","pslistplot","psNewton","psparametricplot","psPi","psPiFour","psPiH","psPiTwo","psplot","psplotinit","psplotstyle","psPutXLabel","psPutYLabel","psreadDataColumn","psResetPlotValues","psrotatebox","PSTplotLoaded","pstRadUnit","pstRadUnitInv","pstScalePoints","pstXPSScale","pstXScale","pstYPSScale","pstYScale","psVectorfield","psvlabel","psxlabelsep","psxsubticklinestyle","psxTick","psxticklinestyle","psylabelsep","psysubticklinestyle","psyTick","psyticklinestyle","readdata","savedata","setDefaulthLabels","setDefaultvLabels","setFractionhLabels","setFractionvLabels","setTrighLabels","setTrigvLabels","SpecialLabelsDonefalse","SpecialLabelsDonetrue","stripDecimals"]}
-,
-"pst-poker.sty":{"envs":{},"deps":["pstricks.sty","pst-blur.sty","multido.sty","graphicx.sty","pst-fill.sty"],"cmds":["crdback","colorbgname","colorbackname","varclubsuit","vardiamondsuit","varheartsuit","varspadesuit","pspade","pheart","pdiamond","pclub","As","Ah","Ad","Ac","Ks","Kh","Kd","Kc","Qs","Qh","Qd","Qc","Js","Jh","Jd","Jc","tens","tenh","tend","tenc","nines","nineh","nined","ninec","eigs","eigh","eigd","eigc","sevs","sevh","sevd","sevc","sixs","sixh","sixd","sixc","fives","fiveh","fived","fivec","fours","fourh","fourd","fourc","tres","treh","tred","trec","twos","twoh","twod","twoc","icard","crdAs","crdAh","crdAd","crdAc","crdKs","crdKh","crdKd","crdKc","crdQs","crdQh","crdQd","crdQc","crdJs","crdJh","crdJd","crdJc","crdtens","crdtenh","crdtend","crdtenc","crdnines","crdnineh","crdnined","crdninec","crdeigs","crdeigh","crdeigd","crdeigc","crdsevs","crdsevh","crdsevd","crdsevc","crdsixs","crdsixh","crdsixd","crdsixc","crdfives","crdfiveh","crdfived","crdfivec","crdfours","crdfourh","crdfourd","crdfourc","crdtres","crdtreh","crdtred","crdtrec","crdtwos","crdtwoh","crdtwod","crdtwoc","drawcard","fournier","crdpair","crdflop"]}
-,
-"pst-poly.sty":{"envs":{},"deps":["pstricks.sty","pst-node.sty","multido.sty","pst-xkey.sty"],"cmds":["PstPolygon","PstTriangle","PstSquare","PstPentagon","PstHexagon","PstHeptagon","PstOctogon","PstNonagon","PstDecagon","PstDodecagon","PstStarFiveLines","PstStarFive","pspolygonbox","PSTPolygonLoaded"]}
-,
-"pst-pulley.sty":{"envs":{},"deps":["pstricks.sty","pst-grad.sty","pst-slpe.sty","pst-eucl.sty","pstricks-add.sty"],"cmds":["pspulleys","pulleyA","pulleyB","pulleyC","radianAI","radianBI","radianCI","poulieA","poulieB","poulieC","poulieD","poulieE","poulieF","flzlx","Npulleys","PSTpulleyLoaded"]}
-,
-"pst-rputover.sty":{"envs":{},"deps":["pstricks.sty","pst-node.sty","pst-xkey.sty"],"cmds":["rputover","coverable","pclineover","pcarrowC","PSTRPUTOVERLoaded"]}
-,
-"pst-rubans.sty":{"envs":{},"deps":["pstricks.sty","pst-solides3d.sty","pst-xkey.sty"],"cmds":["pshelices","psSpiralRing","psSphericalSpiral","psSpiralParaboloid","psSpiralCone","PSTRubansLoaded"]}
-,
-"pst-shell.sty":{"envs":{},"deps":["pstricks.sty","pst-solides3d.sty"],"cmds":["psShell","PSTSHELLLoaded"]}
-,
-"pst-sigsys.sty":{"envs":{},"deps":["pstricks.sty","pst-node.sty","pst-xkey.sty"],"cmds":["psaxeslabels","pstick","psTick","pssignal","psstem","pszero","pspole","pscircleop","psframeop","psdisk","psring","psdiskc","psldots","ldotsnode","psblock","psfblock","psadaptive","psknob","psusampler","psdsampler","nclist","ncstar","psBraceUp","psBraceDown","psBraceRight","psBraceLeft","pstsigsysFV","pstsigsysFD","PSTsigsysLoaded"]}
-,
-"pst-slpe.sty":{"envs":{},"deps":["pstricks.sty","pst-xkey.sty"],"cmds":["psBall","psslopesteps","pstslpefileversion","pstslpefiledate","PstSlopeLoaded"]}
-,
-"pst-solarsystem.sty":{"envs":{},"deps":["pstricks.sty","pst-node.sty","pst-plot.sty","pst-3d.sty","pst-grad.sty","pst-tools.sty","pst-xkey.sty"],"cmds":["SolarSystem","Jupiter","Saturne","PSTSOLARSYSTEMELoaded"]}
-,
-"pst-solides3d.sty":{"envs":{},"deps":["pstricks.sty","pst-node.sty","pst-xkey.sty","multido.sty"],"cmds":["axesIIID","psSolid","codejps","defFunction","psSurface","psImplicitSurface","composeSolid","psPoint","psLineIIID","psPolygonIIID","psTransformPoint","psProjection","psResetSolidKeys","gridIIID","psImage","Normale","addtosolideslistobject","PSTSOLIDESIIIDLoaded"]}
-,
-"pst-soroban.sty":{"envs":{},"deps":["pstricks-add.sty","calc.sty","ifthen.sty"],"cmds":["tige","cadre","barres","binoire","barbil","colbil","coltig","thexx","theyy","bille","support"]}
-,
-"pst-spectra.sty":{"envs":{},"deps":["pstricks.sty","multido.sty","pst-xkey.sty"],"cmds":["psspectrum","PSTwlLoaded","pstwlfileversion","pstwlfiledate"]}
-,
-"pst-spinner.sty":{"envs":{},"deps":["pstricks.sty","pst-node.sty","pst-xkey.sty"],"cmds":["psFidgetSpinner","pstspinnerFV","PSTSPINNERLoaded"]}
-,
-"pst-stru.sty":{"envs":{},"deps":["pstricks.sty","multido.sty","pst-node.sty","pst-plot.sty","pst-xkey.sty"],"cmds":["arrow","circput","clockCouple","debut","fin","fixedend","guide","hinge","interhinge","noclockCouple","node","nStart","PAS","Position","psArrowCivil","roller","Start","triload"]}
-,
-"pst-text.sty":{"envs":["pscharclip","pscharclip*"],"deps":["pstricks.sty"],"cmds":["pstextpath","pscharpath","pscharclip","endpscharclip","psCircleText","psWarp","TPoffset","PSTextPathLoaded"]}
-,
-"pst-thick.sty":{"envs":{},"deps":["pstricks.sty","pst-plot.sty","pst-node.sty","pst-xkey.sty"],"cmds":["psthick","fonctionSinus","CalculsCurves"]}
-,
-"pst-tools.sty":{"envs":{},"deps":["pstricks.sty","pst-xkey.sty"],"cmds":["psPrintValue","psPrintValueNew","psRegisterList","randomi","nextrandom","setrannum","setrandim","pointless","PoinTless","ranval","txG","etxG","PSTtoolsLoaded"]}
-,
-"pst-tree.sty":{"envs":["psTree"],"deps":["pstricks.sty","pst-xkey.sty"],"cmds":["endpsTree","endskiplevels","MakeShortTnput","psedge","psnodecnt","pspred","pssucc","pstree","psTree","pstreecnt","pstreehooki","pstreehookii","pstreehookiii","pstreehookiv","pstreehookix","pstreehookv","pstreehookvi","pstreehookvii","pstreehookviii","pstreehookx","pstreelevel","PSTreeLoaded","skiplevel","skiplevels","TC","Tc","Tcircle","TCircle","Tdia","Tdot","Tf","Tfan","Tn","Toval","Tp","Tr","TR","tspace","Ttri"]}
-,
-"pst-turtle.sty":{"envs":{},"deps":["pstricks.sty","pst-xkey.sty"],"cmds":["psTurtle"]}
-,
-"pst-tvz.sty":{"envs":["psTree"],"deps":["pstricks.sty","pst-node.sty","pst-xkey.sty"],"cmds":["pstree","psTree","endpsTree","Tp","Tc","TC","Tf","Tdot","Tr","TR","Tcircle","TCircle","Toval","Tdia","Ttri","Tn","Tfan","pspred","pssucc","psedge","MakeShortTnput","addtreesep","pstreehooki","pstreehookii","pstreehookiii","pstreehookiv","pstreehookv","pstreehookvi","pstreehookvii","pstreehookviii","pstreehookix","pstreehookx","psPred","psskiplevels","psroot","ifpstreeflip","treecenter","pstreeframe","pstreecurve","pstreepyramid","skipedge","PStvzLoaded"]}
-,
-"pst-vehicle.sty":{"envs":{},"deps":["pstricks.sty","pst-xkey.sty","pst-plot.sty","pst-node.sty"],"cmds":["psVehicle","Bike","Tractor","HighWheeler","Truck","Segway","UniCycle","wheelA","wheelB","wheelC","wheelD","arrowWheel","TruckWheel","segWheel","SpokesWheelCrossed","SpokesWheelA","SpokesWheelB","TractorFrontWheel","TractorRearWheel","SlopeoMeter","SelfDefinedVehicle","PSTvehicleLoaded"]}
-,
-"pst-venn.sty":{"envs":{},"deps":["pstricks.sty","pst-xkey.sty"],"cmds":["psVenn"]}
-,
-"pst-vowel.sty":{"envs":{},"deps":["pst-node.sty"],"cmds":{}}
-,
-"pst-xkey.sty":{"envs":{},"deps":["xkeyval.sty"],"cmds":["psset","PSTXKeyLoaded","PSTXKeyCatcodes"]}
-,
-"pstool.sty":{"envs":{},"deps":["catchfile.sty","color.sty","ifpdf.sty","ifplatform.sty","filemod.sty","graphicx.sty","psfrag.sty","shellesc.sty","suffix.sty","trimspaces.sty","xkeyval.sty","expl3.sty"],"cmds":["pstool","psfragfig","pstoolsetup","EndPreamble"]}
-,
-"pstricks-add.sty":{"envs":{},"deps":["pstricks.sty","pst-plot.sty","pst-node.sty","pst-3d.sty","pst-math.sty","multido.sty","pst-calculate.sty","pst-xkey.sty","pst-arrow.sty"],"cmds":["BeginSaveFinalState","defineTColor","EndSaveFinalState","parseRP","psBrace","psbrace","psCallout","psCancel","psChart","psCircleTangents","psComment","pscurvepoints","psdice","psDiffSumValue","psEllipseTangents","psEllipseTangentsN","psFormatInt","psGetDistance","psGetSlope","psGTriangle","psHomothetie","psIntersectionPoint","psKiviat","psKiviatAxes","psKiviatLine","psKiviatTicklines","psLeftSumValue","pslineByHand","psMatrixPlot","psMiddleSumValue","psOlympicRings","psParallelLine","psColorLine","psparallelogrambox","psplotDiffEqn","psplotTangent","pspolylineticks","psRandom","psRandomPointArea","psRelLine","psRiemannSum","psRightSumValue","psrotate","psStartPoint","psStep","psTangentLine","pstContour","pstricksaddFV","PSTricksAddLoaded","psVector","psVectorName","pswavelengthToGRAY","pswavelengthToRGB","Put","resetOptions","rmultiput"]}
-,
-"pstricks-pdf.sty":{"envs":{},"deps":["ifpdf.sty","xkeyval.sty","ifplatform.sty","pst-pdf.sty","pst-calculate.sty"],"cmds":["OnlyIfFileExists","NotIfFileExists"]}
-,
-"pstricks.sty":{"envs":["psclip"],"deps":["iftex.sty","pgffor.sty","pst-calculate.sty","luatex.sty","xetex.sty","colortbl.sty","pdfcolmk.sty"],"cmds":["addtopsstyle","AltClipMode","altcolormode","arrows","black","blue","Cartesian","clipbox","closedshadow","closepath","code","coor","cput","Cput","curveto","cyan","darkgray","degrees","dim","DontKillGlue","endoverlaybox","endpsclip","endpspicture","everypsbox","file","fill","gray","green","grestore","gsave","ifpsmathbox","ifPSTlualatex","ifPSTricks","ifpstUndefined","ifshowgrid","KillGlue","lightgray","lineto","magenta","movepath","moveto","mrestore","msave","multips","multirput","newcmykcolor","newcmykcolorx","newgray","newhsbcolor","newhsbcolorx","newpath","newpsfontdot","newpsfontdotH","newpsobject","NewPsput","newpsstyle","newrgbcolor","newrgbcolorx","NormalCoor","oldpsput","OldPsput","openshadow","overlaybox","parabola","pgfforeach","Polar","psaddtolength","psarc","psarcAB","psarcn","psarcnAB","psarrowlinestyle","psbezier","psBezier","psbordercolor","pscbezier","psccurve","pscircle","psCircle","pscirclebox","psCirclebox","pscircleOA","psclip","pscoor","pscspline","pscurve","pscustom","psdashcolor","psdblframebox","psDEBUG","psdiabox","psdiamond","psdot","psdots","psdoublecolor","psdoublesep","psecurve","psellipse","psellipseAB","psellipticarc","psellipticarcn","psellipticwedge","psfillcolor","psforeach","psForeach","psframe","psframebox","psframesep","psgetCMYKColorValues","psgetColorValues","psgetRGBColorValues","psgrid","psgridcolor","psgridlabelcolor","pshatchcolor","pshooklength","pshookwidth","pshskip","pslabelsep","pslbrace","psline","psLine","pslinearc","pslinecolor","psLineSegments","pslinestyle","pslinetype","pslinewidth","pslongbox","psLoop","psLoopIndex","psmathboxfalse","psmathboxtrue","psovalbox","psoverlay","psparabola","pspicture","psPline","pspolygon","psrbrace","psresetColor","psRing","psrotatedown","psrotateleft","psrotateright","psrunit","psscalebox","psscaleboxto","pssetGrayscale","pssetlength","pssetMonochrome","pssetxlength","pssetylength","psshadowbox","psshadowcolor","pssubgridcolor","PstAtCode","pstCheckCoorType","pstcustomize","pstdriver","psTextFrame","pstheader","PSTlualatexfalse","PSTlualatextrue","pstnodescale","pstriangle","pstribox","PSTricksfalse","PSTricksLoaded","PSTricksOff","PSTrickstrue","pstrotate","pstunit","pstverb","pstVerb","pstverbscale","psunit","psverbboxfalse","psverbboxtrue","pswedge","psxunit","psyunit","putoverlaybox","qdisk","qline","radians","rcoor","rcurveto","red","resetArrowOptions","reversepath","rlineto","rmoveto","rotate","rotatedown","rotateleft","rotateright","rput","Rput","scale","setcolor","showgridfalse","showgridtrue","SpecialCoor","stroke","swapaxes","translate","uput","white","yellow","psarcOA","psSquare","psset","setkeys","PSTFPloaded","pstFPadd","pstFPsub","pstFPmul","pstFPdiv","pstFPMul","pstFPDiv","pstFPstripZeros"]}
-,
-"pstring.sty":{"envs":{},"deps":["ifpdf.sty","pgfcore.sty","pstricks.sty","pst-node.sty"],"cmds":["pstr","pstrSetLabelStyle","pstrSetArrowColor","pstrSetArrowLineWidth","pstrSetArrowAngle","pstrSetArrowLabel","pstrSetArrowLineStyle","Pstr","nd","arrow","txt","TheAtCode","act","angleA","angleB","bendpt","cptC","cptD","linestyle","link","linkNoStar","linkStar","linkparam","lnklabel","lnklabelNoStar","lnklabelStar","maxdim","ncHarc","opt","options","percentchar","ptA","ptB","reste","suite","text","ifRequestPSengine","RequestPSenginetrue","RequestPSenginefalse","ifRequestPGFengine","RequestPGFenginetrue","RequestPGFenginefalse","ifLoadPSengine","LoadPSenginetrue","LoadPSenginefalse","ifLoadPGFengine","LoadPGFenginetrue","LoadPGFenginefalse","ifwriteprologuefile","writeprologuefiletrue","writeprologuefilefalse"]}
-,
-"psvectorian.sty":{"envs":{},"deps":["graphicx.sty","pstricks.sty"],"cmds":["psvectorian","psvectorianDefaultColor"]}
-,
-"ptex.sty":{"envs":{},"deps":["tex.sty"],"cmds":["kcatcode","ptexlineendmode","prebreakpenalty","postbreakpenalty","jcharwidowpenalty","kanjiskip","xkanjiskip","xspcode","inhibitxspcode","autospacing","noautospacing","autoxspacing","noautoxspacing","showmode","inhibitglue","disinhibitglue","tate","yoko","dtou","iftdir","ifydir","ifddir","ifmdir","iftbox","ifybox","ifdbox","ifmbox","tbaselineshift","ybaselineshift","textbaselineshiftfactor","scriptbaselineshiftfactor","scriptscriptbaselineshiftfactor","jfont","tfont","ifjfont","iftfont","jfam","ptextracingfonts","ptexfontname","kuten","jis","euc","sjis","ucs","toucs","tojis","kansuji","kansujichar","ptexversion","ptexminorversion","ptexrevision","omathcode","omathchar","omathaccent","omathchardef","odelcode","odelimiter","oradical","pagefistretch","hfi","vfi","pdfstrcmp","pdfpagewidth","pdfpageheight","pdflastxpos","pdflastypos","pdfcreationdate","pdffilemoddate","pdffilesize","pdffiledump","pdfshellescape","pdfmdfivesum","pdfprimitive","ifpdfprimitive","pdfuniformdeviate","pdfnormaldeviate","pdfrandomseed","pdfsetrandomseed","pdfelapsedtime","pdfresettimer","expanded","ifincsname","epTeXversion","lastnodechar","lastnodefont","lastnodesubtype","epTeXinputencoding","readpapersizespecial","currentspacingmode","currentxspacingmode","Uchar","Ucharcat","suppresslongerror","suppressoutererror","suppressmathparerror","tracingstacklevels","partokenname","partokencontext","showstream","synctex"]}
-,
-"ptext.sty":{"envs":{},"deps":["biditools.sty"],"cmds":["setptextdefault","ptext","ChangePtextPar"]}
-,
-"ptolemaicastronomy.sty":{"envs":{},"deps":["tikz.sty"],"cmds":["spheresystem","spherelayer","spherefill","proposition","propositionintersect","spherepos","sphereintersect","propositionplot","sphereplot"]}
-,
-"punk.sty":{"envs":{},"deps":{},"cmds":["punkfamily","textpunk","textpunksl","textpunkbf"]}
-,
-"puyotikz.sty":{"envs":["puyotikz"],"deps":["pythontex.sty","tikz.sty","keyval.sty"],"cmds":["puyosmallscale","puyobigscale","puyoboard","puyomarker","puyogrid","puyocolor"]}
-,
-"pvscript.sty":{"envs":{},"deps":{},"cmds":["pvscript","textpvscript","filename","fileversion","filedate","docversion","docdate"]}
-,
-"px-ds.sty":{"envs":{},"deps":["xkeyval.sty"],"cmds":["mathbb","mathbbb"]}
-,
-"pxbabel.sty":{"envs":{},"deps":["pxbase.sty","ifptex.sty","babel.sty","ifuptex.sty"],"cmds":["cjklanguagename","UTFJ","pxUTFJ","pxInNonJaLanguage","pxDeclareCJKEncoding","pxDeclareBasicCJKEncoding","pxDeclareBasicCJKFamily","pxDeclareExtraCJKFamily","pxDeclareBasicCJKFallback","pxDeclareBasicCJKShape","pxDeclareCJKShape","pxDefineFontSubst","pxFontSubst","pxDeclareSimpleShape","pxDeclareExtraCJKShapeBF","pxForceFontDeclaration","pxDeclareKanjiFamily","pxDeclareFontShape","pxUndeclareFontShape","pxDeclareEncodingDispatcher","pxDispatchEncodings","pxIsEncodingDispatched","pxBothEncodingsFromName","pxEncodingFromName","pxTateEncodingFromName","pxSetEncodingName","pxDeclareCJKEncodingNE","pxDeclareExtraCJKFamilyNE","pxDeclareBasicCJKShapeNE","pxDeclareCJKShapeNE","pxDeclareJSFEncoding","DeclareJSFFamily","AppendToJSFFamily","JSFBasicShapeSet","JSFFallback","JSFBasicShape","JSFShape","JSFShapeRaw","pxStdYEnc","pxStdTEnc","selectjaencoding","normaljaencoding","standardjaencoding","pxBDHookEncSwitchOTF","pxEncSwitchOTF","captionsenglish","dateenglish","extrasenglish","noextrasenglish","englishhyphenmins","britishhyphenmins","americanhyphenmins","prefacename","bibname","chaptername","enclname","ccname","headtoname","pagename","seename","alsoname","proofname","glossaryname"]}
-,
-"pxbase.sty":{"envs":{},"deps":["platex.sty"],"cmds":{}}
-,
-"pxchfon.sty":{"envs":{},"deps":["platex.sty","uplatex.sty","pxufont.sty"],"cmds":["gid","pxchfonDeclareOneWeightPreset","pxchfonDeclareMultiWeightPreset","setminchofont","setgothicfont","setlightminchofont","setmediumminchofont","setboldminchofont","setmediumgothicfont","setboldgothicfont","setxboldgothicfont","setoneweightgothicfont","setmarugothicfont","setkoreanminchofont","setkoreangothicfont","setkoreanlightminchofont","setkoreanmediumminchofont","setkoreanboldminchofont","setkoreanmediumgothicfont","setkoreanboldgothicfont","setkoreanxboldgothicfont","setkoreanoneweightgothicfont","setkoreanmarugothicfont","setschineseminchofont","setschinesegothicfont","setschineselightminchofont","setschinesemediumminchofont","setschineseboldminchofont","setschinesemediumgothicfont","setschineseboldgothicfont","setschinesexboldgothicfont","setschineseoneweightgothicfont","setschinesemarugothicfont","settchineseminchofont","settchinesegothicfont","settchineselightminchofont","settchinesemediumminchofont","settchineseboldminchofont","settchinesemediumgothicfont","settchineseboldgothicfont","settchinesexboldgothicfont","settchineseoneweightgothicfont","settchinesemarugothicfont","usecmapforalphabet","nousecmapforalphabet","JaFontReplacementFor","JaFontReplacementHook","JaFontUserDefinedMap","usefontmapline","usefontmapfile","setnewglyphcmapprefix","Entry","diruni","textdiruni","asUTF"]}
-,
-"pxcjkcat.sty":{"envs":{},"deps":["uplatex.sty","keyval.sty"],"cmds":["cjkcategorymode","cjkcategory","showcjkcategory","getcjktokenmode","thecjktokenmode","setcjktokenmode","withcjktokendisabled","withcjktokenenabled","withcjktokenforced","withcjktokendisabledex","withcjktokenenabledex","withcjktokenforcedex"]}
-,
-"pxfonts.sty":{"envs":{},"deps":{},"cmds":["alphaup","approxeq","backepsilon","backprime","backsim","backsimeq","barwedge","Bbbk","because","betaup","beth","between","bignplus","bigsqcap","bigsqcapplus","bigsqcupplus","bigstar","blacklozenge","blacksquare","blacktriangle","blacktriangledown","blacktriangleleft","blacktriangleright","Bot","Box","boxast","boxbar","boxbslash","boxdot","boxdotleft","boxdotLeft","boxdotright","boxdotRight","boxleft","boxLeft","boxminus","boxplus","boxright","boxRight","boxslash","boxtimes","bumpeq","Bumpeq","Cap","centerdot","chiup","circeq","circlearrowleft","circlearrowright","circledast","circledbar","circledbslash","circledcirc","circleddash","circleddot","circleddotleft","circleddotright","circledgtr","circledless","circledminus","circledotleft","circledotright","circledplus","circledS","circledslash","circledtimes","circledvee","circledwedge","circleleft","circleright","colonapprox","Colonapprox","coloneq","Coloneq","coloneqq","Coloneqq","colonsim","Colonsim","complement","Cup","curlyeqprec","curlyeqsucc","curlyvee","curlywedge","curvearrowleft","curvearrowright","daleth","dasharrow","dashleftarrow","dashleftrightarrow","dashrightarrow","deltaup","diagdown","diagup","Diamond","Diamondblack","Diamonddot","Diamonddotleft","DiamonddotLeft","Diamonddotright","DiamonddotRight","Diamondleft","DiamondLeft","Diamondright","DiamondRight","digamma","divideontimes","Doteq","doteqdot","dotplus","doublebarwedge","doublecap","doublecup","downdownarrows","downharpoonleft","downharpoonright","epsilonup","eqcirc","eqcolon","Eqcolon","eqqcolon","Eqqcolon","eqsim","eqslantgtr","eqslantless","etaup","eth","fallingdotseq","fint","fintop","Finv","Game","gammaup","geqq","geqslant","ggg","gggtr","gimel","gnapprox","gneq","gneqq","gnsim","gtrapprox","gtrdot","gtreqless","gtreqqless","gtrless","gtrsim","gvertneqq","hslash","idotsint","idotsintop","iiiint","iiiintop","iiint","iiintop","iint","iintop","intercal","invamp","iotaup","Join","kappaup","lambdabar","lambdaslash","lambdaup","lbag","Lbag","leadsto","leadstoext","leftarrowtail","leftleftarrows","leftrightarrows","leftrightharpoons","leftrightsquigarrow","leftsquigarrow","leftthreetimes","leqq","leqslant","lessapprox","lessdot","lesseqgtr","lesseqqgtr","lessgtr","lesssim","lhd","lJoin","llbracket","llcorner","Lleftarrow","lll","llless","lnapprox","lneq","lneqq","lnsim","longmappedfrom","Longmappedfrom","Longmapsto","Longmmappedfrom","longmmappedfrom","longmmapsto","Longmmapsto","looparrowleft","looparrowright","lozenge","lrcorner","lrJoin","lrtimes","Lsh","ltimes","lvertneqq","mappedfrom","Mappedfrom","mappedfromchar","Mappedfromchar","Mapsto","Mapstochar","mathbb","mathcent","mathfrak","measuredangle","medbullet","medcirc","mho","mmappedfrom","Mmappedfrom","mmappedfromchar","Mmappedfromchar","mmapsto","Mmapsto","mmapstochar","Mmapstochar","multimap","multimapboth","multimapbothvert","multimapdot","multimapdotboth","multimapdotbothA","multimapdotbothAvert","multimapdotbothB","multimapdotbothBvert","multimapdotbothvert","multimapdotinv","multimapinv","muup","napprox","napproxeq","nasymp","nbacksim","nbacksimeq","nbumpeq","nBumpeq","ncong","Nearrow","nequiv","nexists","ngeq","ngeqq","ngeqslant","ngg","ngtr","ngtrapprox","ngtrless","ngtrsim","nleftarrow","nLeftarrow","nLeftrightarrow","nleftrightarrow","nleq","nleqq","nleqslant","nless","nlessapprox","nlessgtr","nlesssim","nll","nmid","notni","notowns","nparallel","nplus","nprec","nprecapprox","npreccurlyeq","npreceq","npreceqq","nprecsim","nrightarrow","nRightarrow","nshortmid","nshortparallel","nsim","nsimeq","nsqsubset","nsqsubseteq","nsqsupset","nsqsupseteq","nsubset","nSubset","nsubseteq","nsubseteqq","nsucc","nsuccapprox","nsucccurlyeq","nsucceq","nsucceqq","nsuccsim","nsupset","nSupset","nsupseteq","nsupseteqq","nthickapprox","ntriangleleft","ntrianglelefteq","ntriangleright","ntrianglerighteq","ntwoheadleftarrow","ntwoheadrightarrow","nuup","nvarparallel","nvarparallelinv","nvdash","nVdash","nvDash","nVDash","Nwarrow","oiiint","oiiintclockwise","oiiintclockwiseop","oiiintctrclockwise","oiiintctrclockwiseop","oiiintop","oiint","oiintclockwise","oiintclockwiseop","oiintctrclockwise","oiintctrclockwiseop","oiintop","ointclockwise","ointclockwiseop","ointctrclockwise","ointctrclockwiseop","omegaup","openJoin","opentimes","Perp","phiup","pitchfork","piup","precapprox","preccurlyeq","preceqq","precnapprox","precneqq","precnsim","precsim","psiup","rbag","Rbag","restriction","rhd","rhoup","rightarrowtail","rightleftarrows","rightrightarrows","rightsquigarrow","rightthreetimes","risingdotseq","rJoin","rrbracket","Rrightarrow","Rsh","rtimes","Searrow","shortmid","shortparallel","sigmaup","smallfrown","smallsetminus","smallsmile","sphericalangle","sqcapplus","sqcupplus","sqiiint","sqiiintop","sqiint","sqiintop","sqint","sqintop","sqsubset","sqsupset","square","strictfi","strictif","strictiff","Subset","subseteqq","subsetneq","subsetneqq","succapprox","succcurlyeq","succeqq","succnapprox","succneqq","succnsim","succsim","Supset","supseteqq","supsetneq","supsetneqq","Swarrow","tauup","therefore","thetaup","thickapprox","thicksim","Top","triangledown","trianglelefteq","triangleq","trianglerighteq","twoheadleftarrow","twoheadrightarrow","ulcorner","unlhd","unrhd","upharpoonleft","upharpoonright","upsilonup","upuparrows","urcorner","varclubsuit","vardiamondsuit","varepsilonup","varg","varheartsuit","varkappa","varnothing","varoiiintclockwise","varoiiintclockwiseop","varoiiintctrclockwise","varoiiintctrclockwiseop","varoiintclockwise","varoiintclockwiseop","varoiintctrclockwise","varoiintctrclockwiseop","varointclockwise","varointclockwiseop","varointctrclockwise","varointctrclockwiseop","varparallel","varparallelinv","varphiup","varpiup","varprod","varpropto","varrhoup","varsigmaup","varspadesuit","varsubsetneq","varsubsetneqq","varsupsetneq","varsupsetneqq","varthetaup","vartriangle","vartriangleleft","vartriangleright","Vdash","vDash","VDash","veebar","Vvdash","VvDash","Wr","xiup","zetaup","textsquare","openbox","DeclareMathSymbolCtr"]}
-,
-"pxftnright.sty":{"envs":{},"deps":["platex.sty"],"cmds":{}}
-,
-"pxgreeks.sty":{"envs":{},"deps":["pxfonts.sty"],"cmds":["omicron","omicronup","otheralpha","otherbeta","otherchi","otherdelta","otherDelta","otherepsilon","othereta","othergamma","otherGamma","otheriota","otherkappa","otherlambda","otherLambda","othermu","othernu","otheromega","otherOmega","otheromicron","otherphi","otherPhi","otherpi","otherPi","otherpsi","otherPsi","otherrho","othersigma","otherSigma","othertau","othertheta","otherTheta","otherupsilon","otherUpsilon","othervarepsilon","othervarphi","othervarpi","othervarrho","othervarsigma","othervartheta","otherxi","otherXi","otherzeta","varDelta","varGamma","varLambda","varOmega","varPhi","varPi","varPsi","varSigma","varTheta","varUpsilon","varXi"]}
-,
-"pxjahyper-enc.sty":{"envs":{},"deps":["platex.sty"],"cmds":["suppressbigcode","suppressdefaulttounicode","pxjahyperToUnicodeSpecial"]}
-,
-"pxjahyper.sty":{"envs":{},"deps":["platex.sty","keyval.sty","ltxcmds.sty","etoolbox.sty","bxjatoucs.sty","pxjahyper-enc.sty","uplatex.sty"],"cmds":["pxjahypersetup","Ux","pxDeclarePdfTextCommand","pxDeclarePdfTextComposite","pxHyperrefUnicodePatched"]}
-,
-"pxjodel.sty":{"envs":{},"deps":["xkeyval.sty","ifuptex.sty","otf.sty","mlutf.sty","mlcid.sty","uplatex.sty"],"cmds":["rubydefault","rubyfamily","rubykatuji","mgdefault","propdefault","ebdefault","ltdefault","mathmg","mgfamily","textmg","propshape","ebseries","ltseries","bxDebug"]}
-,
-"pxmulticol.sty":{"envs":{},"deps":["platex.sty","multicol.sty"],"cmds":{}}
-,
-"pxpic.sty":{"envs":{},"deps":["xcolor.sty"],"cmds":["pxpic","pxpicsetup","pxpicnewmode","pxpicsetmode","pxpicnewcolorlist","pxpicsetcolorlist","pxpicaddcolorlist","pxpicforget","px","pxskip","pxpicHT","pxpicWD","pxpiclogo"]}
-,
-"pxrubrica.sty":{"envs":{},"deps":["keyval.sty"],"cmds":["ruby","jruby","aruby","truby","atruby","rubysetup","rubyfontsetup","rubybigintrusion","rubysmallintrusion","rubymaxmargin","rubyintergap","rubyusejghost","rubynousejghost","rubyuseaghost","rubynouseaghost","rubysafemode","rubynosafemode","rubysizeratio","rubystretchprop","rubystretchprophead","rubystretchpropend","rubyyheightratio","rubytheightratio","kenten","jkenten","kentensetup","kspan","kentenmarkinyoko","kentensubmarkinyoko","kentenmarkintate","kentensubmarkintate","kentenfontsetup","kentenintergap","kentensizeratio","kentenrubycombination","kentenrubyintergap","pdfstringdefPreHook","rubyadjustatlineedge","rubybreakjukugo","rubyfontsize","rubynoadjustatlineedge","rubynobreakjukugo","rubyuseextra"]}
-,
-"pxtx-cal.sty":{"envs":{},"deps":["xkeyval.sty"],"cmds":["mathbcal"]}
-,
-"pxtx-frak.sty":{"envs":{},"deps":["xkeyval.sty"],"cmds":["mathfrak","mathbfrak","frakdotlessi","frakdotlessj"]}
-,
-"pxxspace.sty":{"envs":{},"deps":["platex.sty","etoolbox.sty","xspace.sty"],"cmds":{}}
-,
-"pygmentex.sty":{"envs":["pygmented","VerbatimOutAppend"],"deps":["fancyvrb.sty","color.sty","ifthen.sty","caption.sty","shellesc.sty","pgfkeys.sty","efbox.sty","mdframed.sty","tikz.sty"],"cmds":["inputpygmented","pyginline","setpygmented","widest","VerbatimOutAppend","remainingglobaloptions","remaininguseroptions","remainingoptions","FormatLineNumber"]}
-,
-"pylatex.cls":{"envs":{},"deps":["pylatex.sty","geometry.sty","amsmath.sty","amssymb.sty","hyperref.sty"],"cmds":{}}
-,
-"pylatex.sty":{"envs":["python"],"deps":["comment.sty","listings.sty","keyval.sty","etoolbox.sty","xcolor.sty","pymacros.sty"],"cmds":["pyverb","PySetup"]}
-,
-"pyluatex.sty":{"envs":["python","pythonq","pythonrepl"],"deps":["luatex.sty","expl3.sty","kvoptions.sty","atveryend.sty"],"cmds":["py","pyq","pyc","pycq","pyfile","pyfileq","pyfilerepl","pysession","pyoption","pyif","PyLTVerbatimEnv"]}
-,
-"pymacros.sty":{"envs":{},"deps":{},"cmds":["colonEq","pytag","py","Py","Dmath","ttTag","pglabel"]}
-,
-"python.sty":{"envs":["python"],"deps":{},"cmds":{}}
-,
-"pythonhighlight.sty":{"envs":["python"],"deps":["listings.sty","xcolor.sty"],"cmds":["framemargin","pythonprompt","literatecolour","inputpython","pyth"]}
-,
-"pythonimmediate.sty":{"envs":["pycode","pycodeq"],"deps":["saveenv.sty","currfile.sty","precattl.sty"],"cmds":["py","pyc","pycq","pyfile","pythonimmediatecontinue","pythonimmediatecontinuenoarg","pyv","pycv"]}
-,
-"pythontex.sty":{"envs":["pycode","pysub","pyverbatim","pyblock","pyconsole","pyconcode","pyconsub","pyconverbatim","pylabcode","pylabsub","pylabverbatim","pylabblock","pylabconsole","pylabconcode","pylabconsub","pylabconverbatim","sympycode","sympysub","sympyverbatim","sympyblock","sympyconsole","sympyconcode","sympyconsub","sympyconverbatim","pythontexcustomcode","pygments","listing","rbcode","rbsub","rbverbatim","rbblock","rbcode","rbsub","rbverbatim","rbblock","rubycode","rubysub","rubyverbatim","rubyblock","rubycode","rubysub","rubyverbatim","rubyblock","juliacode","juliasub","juliaverbatim","juliablock","juliacode","juliasub","juliaverbatim","juliablock","juliaconsole","juliaconcode","juliaconsole","juliaconcode","jlcode","jlsub","jlverbatim","jlblock","jlcode","jlsub","jlverbatim","jlblock","matlabcode","matlabsub","matlabverbatim","matlabblock","matlabcode","matlabsub","matlabverbatim","matlabblock","octavecode","octavesub","octaveverbatim","octaveblock","octavecode","octavesub","octaveverbatim","octaveblock","bashcode","bashsub","bashverbatim","bashblock","bashcode","bashsub","bashverbatim","bashblock","sagecode","sagesub","sageverbatim","sageblock","sagecode","sagesub","sageverbatim","sageblock","rustcode","rustsub","rustverbatim","rustblock","rustcode","rustsub","rustverbatim","rustblock","rscode","rssub","rsverbatim","rsblock","rscode","rssub","rsverbatim","rsblock","Rcode","Rsub","Rverbatim","Rblock","Rcode","Rsub","Rverbatim","Rblock","Rconsole","Rconcode","Rconsole","Rconcode","perlcode","perlsub","perlverbatim","perlblock","perlcode","perlsub","perlverbatim","perlblock","perlsixcode","perlsixsub","perlsixverbatim","perlsixblock","perlsixcode","perlsixsub","perlsixverbatim","perlsixblock","psixcode","psixsub","psixverbatim","psixblock","psixcode","psixsub","psixverbatim","psixblock","javascriptcode","javascriptsub","javascriptverbatim","javascriptblock","javascriptcode","javascriptsub","javascriptverbatim","javascriptblock","jscode","jssub","jsverbatim","jsblock","jscode","jssub","jsverbatim","jsblock"],"deps":["fvextra.sty","etoolbox.sty","xstring.sty","pgfopts.sty","newfloat.sty","currfile.sty","xcolor.sty","upquote.sty"],"cmds":["py","pyc","pys","pyv","pyb","pycon","pycons","pyconc","pyconv","pylab","pylabc","pylabs","pylabv","pylabb","pylabcon","pylabconc","pylabcons","pylabconv","sympy","sympyc","sympys","sympyv","sympyb","sympycon","sympycons","sympyconc","sympyconv","pythontexcustomc","setpythontexfv","setpythontexprettyprinter","setpythontexpyglexer","setpythontexpygopt","printpythontex","stdoutpythontex","saveprintpythontex","savestdoutpythontex","useprintpythontex","usestdoutpythontex","stderrpythontex","savestderrpythontex","usestderrpythontex","setpythontexautoprint","setpythontexautostdout","pygment","inputpygments","setpygmentsfv","setpygmentspygopt","setpygmentsprettyprinter","setpythontexlistingenv","setpythontexcontext","restartpythontexsession","setpythontexoutputdir","setpythontexworkingdir","rb","rbc","rbs","rbv","rbb","ruby","rubyc","rubys","rubyv","rubyb","julia","juliac","julias","juliav","juliab","jl","jlc","jls","jlv","jlb","matlab","matlabc","matlabs","matlabv","matlabb","octave","octavec","octaves","octavev","octaveb","bash","bashc","bashs","bashv","bashb","sage","sagec","sages","sagev","sageb","rust","rustc","rusts","rustv","rustb","rs","rsc","rss","rsv","rsb","R","Rc","Rs","Rv","Rb","perl","perlc","perls","perlv","perlb","perlsix","perlsixc","perlsixs","perlsixv","perlsixb","psix","psixc","psixs","psixv","psixb","javascript","javascriptc","javascripts","javascriptv","javascriptb","js","jsc","jss","jsv","jsb","makepythontexfamily","DepyFile","DepyListing","DepyMacro","Depythontex","DepythontexOff","DepythontexOn","makepygments","makepygmentsfv","makepygmentspyg","oldFancyVerbLine","originalleft","originalright"]}
-,
-"qam-l.cls":{"envs":{},"deps":["s-amsart.cls"],"cmds":["ifprintonly","printonlytrue","printonlyfalse","thevolume","issinfo","oneaddress","sepaddresses"]}
-,
-"qcm.cls":{"envs":{},"deps":["qcm.sty"],"cmds":["titlefont","titlespace","questiontitle","questiontitlefont","questiontitlespace","questionsepspace"]}
-,
-"qcm.sty":{"envs":["question","correction"],"deps":["ifthen.sty","calc.sty","verbatim.sty","tabularx.sty"],"cmds":["headerfont","X","pbs","questionspace","answerstitle","answerstitlefont","answernumberfont","thequestion","truesymbol","falsesymbol","true","false","correctionstyle","makeform","makemask"]}
-,
-"qqru.sty":{"envs":{},"deps":{},"cmds":["beginconvertquotes","endconvertquotes","xxx"]}
-,
-"qrbill.sty":{"envs":{},"deps":["iftex.sty","l3keys2e.sty","fontspec.sty","anyfontsize.sty","scrbase.sty","graphicx.sty","numprint.sty","qrcode.sty","luatex.sty","marvosym.sty"],"cmds":["QRbill","qrbillsetdata","SetupQrBill","qrbillsetup","QRbillParseDate","QRbillAddCustomReplacement","insertcreditor","insertcurrency","insertdebtor","SetStaticData","SetBillingInfoScheme","SetQrScheme","qrbillfont","qrblack","qrwhite","qrnewline"]}
-,
-"qrcode.sty":{"envs":{},"deps":["xcolor.sty"],"cmds":["qrcode","qrset"]}
-,
-"qrcstamps.sty":{"envs":{},"deps":["annot_pro.sty","xkeyval.sty"],"cmds":["qrCode","QRBase"]}
-,
-"qsharp.sty":{"envs":{},"deps":["listings.sty","xcolor.sty"],"cmds":["qs"]}
-,
-"qstest.sty":{"envs":["qstest","ExpectCallSequence"],"deps":["makematch.sty","verbatim.sty"],"cmds":["IncludeTests","TestErrors","LogTests","LogClose","Expect","ExpectIfThen","InRange","NearTo","SaveValueFile","CloseValueFile","SaveValue","InternalSetValue","SavedValue","CalledName"]}
-,
-"qtree.sty":{"envs":{},"deps":["pict2e.sty"],"cmds":["qtreecentertrue","qtreecenterfalse","qtreepadding","qroofpadding","qtreeunaryht","qtreeinithook","qtreefinalhook","qleafhook","qlabelhook","Tree","qroof","qroofx","qroofy","automath","noautomath","qtreeprimes","qsetw","faketreewidth","qbalance","qframesubtree","qtreeshowframes","leaf","branch","qobitree","nbranches","qTreeVersion"]}
-,
-"quantikz.sty":{"envs":{},"deps":["tikz.sty"],"cmds":{}}
-,
-"quantumarticle.cls":{"envs":["acknowledgements","widetext"],"deps":["xkeyval.sty","etoolbox.sty","geometry.sty","ltxgrid.sty","fancyhdr.sty","caption.sty","lmodern.sty","bbm.sty","xcolor.sty","xstring.sty","tikz.sty","tikzlibrarycalc.sty","hyperref.sty","amsfonts.sty","amsmath.sty","amssymb.sty"],"cmds":["acknowledgments","acknowledgmentsname","addauthortolabel","address","affil","affiliation","altaffiliation","author","collaboration","ead","email","homepage","keywords","nocontentsline","openone","orcid","Quantum","quantumarticleversion","thanks","ao","ap","apl","apj","bell","jqe","assp","aprop","mtt","iovs","jcp","jmo","josa","josaa","josab","jpp","nat","oc","ol","pl","pra","prb","prc","prd","pre","prl","rmp","pspie","sjqe","vr","pacs","preprint","volumeyear","volumenumber","issuenumber","eid","startpage","endpage"]}
-,
-"quantumview.cls":{"envs":["acknowledgements"],"deps":["xkeyval.sty","etoolbox.sty","soul.sty","fancyhdr.sty","caption.sty","lmodern.sty","bbm.sty","xcolor.sty","xstring.sty","tikz.sty","tikzlibrarycalc.sty","hyperref.sty","verbatim.sty","graphicx.sty"],"cmds":["acknowledgments","acknowledgmentsname","addauthortolabel","address","affil","affiliation","altaffiliation","author","collaboration","corr","ead","email","homepage","ins","keywords","nocontentsline","openone","orcid","Quantum","quantumarticleversion","thanks"]}
-,
-"quattrocento.sty":{"envs":{},"deps":["ifxetex.sty","ifluatex.sty","textcomp.sty","xkeyval.sty","fontenc.sty","fontaxes.sty"],"cmds":["quattrocento","quattrocentosans","quattrocentofamily","quattrocentosffamily"]}
-,
-"quiz2socrative.sty":{"envs":{},"deps":["calc.sty","tikz.sty","etoolbox.sty","pgfmath.sty","graphicx.sty","xcolor.sty","moresize.sty","listofitems.sty","xparse.sty","ifthen.sty","tikzlibrarypositioning.sty","tikzlibraryshapes.misc.sty","tikzlibraryshapes.geometric.sty","tikzlibrarybackgrounds.sty","tikzlibraryfit.sty"],"cmds":["socrativeMC","socrativeTwoMC","socrativeThreeMC","socrativeFourMC","socrativeFiveMC","socrativeTF","socrativeSA","hideBorder","showBorder","showSolution","hideSolution","useNumbers","useLetters","useEnglish","useItalian","usePdf","useSocrative","therispostaCorrente","therispostaGiusta"]}
-,
-"quotchap.sty":{"envs":["savequote"],"deps":["color.sty"],"cmds":["qauthor","qsetcnfont","quotefont","qauthorfont","chapnumfont","sectfont","chapterheadendvskip","chapterheadstartvskip"]}
-,
-"quoted.sty":{"envs":{},"deps":{},"cmds":["lquote","rquote","inquote","quoted"]}
-,
-"quoting.sty":{"envs":["quoting"],"deps":["etoolbox.sty","kvoptions.sty"],"cmds":["quotingsetup","quotingfont"]}
-,
-"quran-bn.sty":{"envs":{},"deps":["xstring.sty","biditools.sty","xkeyval.sty","quran.sty"],"cmds":["bnSetTrans","bnGetTrans","quransurahbn","quranayahbn","quranpagebn","quranjuzbn","quranhizbbn","quranquarterbn","quranrukubn","quranmanzilbn","qurantextbn","basmalahbn","Basmalahbn","quranayah","qurantext","quransurahlt","quranayahlt","quranpagelt","quranjuzlt","quranhizblt","quranquarterlt","quranrukult","quranmanzillt","qurantextlt","basmalahlt","Basmalahlt","quransurahde","quranayahde","quranpagede","quranjuzde","quranhizbde","quranquarterde","quranrukude","quranmanzilde","qurantextde","basmalahde","Basmalahde","quransurahen","quranayahen","quranpageen","quranjuzen","quranhizben","quranquarteren","quranrukuen","quranmanzilen","qurantexten","basmalahen","Basmalahen","quransurahfr","quranayahfr","quranpagefr","quranjuzfr","quranhizbfr","quranquarterfr","quranrukufr","quranmanzilfr","qurantextfr","basmalahfr","Basmalahfr","quransurahfa","quranayahfa","quranpagefa","quranjuzfa","quranhizbfa","quranquarterfa","quranrukufa","quranmanzilfa","qurantextfa","basmalahfa","Basmalahfa","quranbndate","quranbnversion"]}
-,
-"quran-de.sty":{"envs":{},"deps":["xstring.sty","xkeyval.sty","quran.sty"],"cmds":["deSetTrans","deGetTrans","quransurahde","quranayahde","quranpagede","quranjuzde","quranhizbde","quranquarterde","quranrukude","quranmanzilde","qurantextde","basmalahde","Basmalahde","quranayah","qurantext","quransurahlt","quranayahlt","quranpagelt","quranjuzlt","quranhizblt","quranquarterlt","quranrukult","quranmanzillt","qurantextlt","basmalahlt","Basmalahlt","quransurahen","quranayahen","quranpageen","quranjuzen","quranhizben","quranquarteren","quranrukuen","quranmanzilen","qurantexten","basmalahen","Basmalahen","quransurahfr","quranayahfr","quranpagefr","quranjuzfr","quranhizbfr","quranquarterfr","quranrukufr","quranmanzilfr","qurantextfr","basmalahfr","Basmalahfr","quransurahfa","quranayahfa","quranpagefa","quranjuzfa","quranhizbfa","quranquarterfa","quranrukufa","quranmanzilfa","qurantextfa","basmalahfa","Basmalahfa","qurandedate","qurandeversion"]}
-,
-"quran-ur.sty":{"envs":{},"deps":["xstring.sty","biditools.sty","xkeyval.sty","quran.sty"],"cmds":["urSetTrans","urGetTrans","quransurahur","quranayahur","quranpageur","quranjuzur","quranhizbur","quranquarterur","quranrukuur","quranmanzilur","qurantextur","basmalahur","Basmalahur","quransurahlt","quranayahlt","quranpagelt","quranjuzlt","quranhizblt","quranquarterlt","quranrukult","quranmanzillt","qurantextlt","basmalahlt","Basmalahlt","quransurahde","quranayahde","quranpagede","quranjuzde","quranhizbde","quranquarterde","quranrukude","quranmanzilde","qurantextde","basmalahde","Basmalahde","quransurahen","quranayahen","quranpageen","quranjuzen","quranhizben","quranquarteren","quranrukuen","quranmanzilen","qurantexten","basmalahen","Basmalahen","quransurahfr","quranayahfr","quranpagefr","quranjuzfr","quranhizbfr","quranquarterfr","quranrukufr","quranmanzilfr","qurantextfr","basmalahfr","Basmalahfr","quransurahfa","quranayahfa","quranpagefa","quranjuzfa","quranhizbfa","quranquarterfa","quranrukufa","quranmanzilfa","qurantextfa","basmalahfa","Basmalahfa","quranurdate","quranurversion"]}
-,
-"quran.sty":{"envs":{},"deps":["ifxetex.sty","biditools.sty","xkeyval.sty","listofitems.sty","xparse.sty","xstring.sty","xspace.sty"],"cmds":["quransurah","setsurahdefault","quranayah","quranpage","quranjuz","quranhizb","quranquarter","quranruku","quranmanzil","qurantext","setqurantextdefault","surahname","basmalah","Basmalah","indexconvert","surahcount","ayahcount","ToggleAyahNumber","ToggleBasmalah","quransurahlt","quranayahlt","quranpagelt","quranjuzlt","quranhizblt","quranquarterlt","quranrukult","quranmanzillt","qurantextlt","basmalahlt","Basmalahlt","quransurahde","quranayahde","quranpagede","quranjuzde","quranhizbde","quranquarterde","quranrukude","quranmanzilde","qurantextde","basmalahde","Basmalahde","quransurahen","quranayahen","quranpageen","quranjuzen","quranhizben","quranquarteren","quranrukuen","quranmanzilen","qurantexten","basmalahen","Basmalahen","quransurahfr","quranayahfr","quranpagefr","quranjuzfr","quranhizbfr","quranquarterfr","quranrukufr","quranmanzilfr","qurantextfr","basmalahfr","Basmalahfr","quransurahfa","quranayahfa","quranpagefa","quranjuzfa","quranhizbfa","quranquarterfa","quranrukufa","quranmanzilfa","qurantextfa","basmalahfa","Basmalahfa","qurandate","quranversion","showitemsmacro","ChangeQtPar"]}
-,
-"ragged2e.sty":{"envs":["Center","FlushLeft","FlushRight","justify","LaTeXflushleft","LaTeXcenter"],"deps":["footmisc.sty"],"cmds":["Centering","RaggedLeft","RaggedRight","justifying","CenteringLeftskip","CenteringRightskip","CenteringParfillskip","CenteringParindent","RaggedLeftLeftskip","RaggedLeftRightskip","RaggedLeftParfillskip","RaggedLeftParindent","RaggedRightLeftskip","RaggedRightRightskip","RaggedRightParfillskip","RaggedRightParindent","JustifyingParfillskip","JustifyingParindent","LaTeXcentering","LaTeXraggedleft","LaTeXraggedright"]}
-,
-"raleway.sty":{"envs":{},"deps":["ifxetex.sty","ifluatex.sty","xkeyval.sty","fontenc.sty","mweights.sty"],"cmds":["raleway","ralewaymedium","ralewaylight","ralewayextra","ralewaythin","ralewayLF","DH","NG","dj","ng","k","guillemotleft","guillemotright","guilsinglleft","guilsinglright","quotedblbase","quotesinglbase","textquotedbl","DJ","th","TH","dh","Hwithstroke","hwithstroke","textogonekcentered","guillemetleft","guillemetright"]}
-,
-"ran_toks.sty":{"envs":["rtVW","rtVWi","rtVWii","verbatimwrite"],"deps":["verbatim.sty"],"cmds":["ranToks","nToksFor","useRanTok","useRTName","reorderRanToks","copyRanToks","bRTVToks","eRTVToks","RTVWHook","rtVWHook","displayListRandomly","first","last","lessone","rtTokByNum","ranToksOff","ranToksOn","useLastAsSeed","useThisSeed","useTheseDBs","useProbDBs","ProbDBWarningMsg","viewDB","nSTOP","ranIndex","uniqueXDBChoicesOn","uniqueXDBChoicesOff","InputUsedIDs","ifrtdebug","rtdebugtrue","rtdebugfalse","ifwerandomize","werandomizetrue","werandomizefalse","ifsaveseed","saveseedtrue","saveseedfalse","rtPkgInpt","readsavfile","InitSeedValue","lastRandomNum","inputRandomSeed","useRandomSeed","verbatimwrite","endverbatimwrite","reVerbEnd","wrtprobids","ifviewIDs","viewIDstrue","viewIDsfalse","ifxDBUnique","xDBUniquetrue","xDBUniquefalse","xdbunique","wrtProbIds","rtVWId","rtVW","endrtVW","rtVWi","endrtVWi","rtVWii","endrtVWii","makeInfoAWarning","pkgNotifType","rtcsarg","Indx","randomi","nextrandom","setrannum","setrandim","pointless","PoinTless","ranval"]}
-,
-"randomlist.sty":{"envs":{},"deps":["xkeyval.sty"],"cmds":["NewList","ShowList","ShiftList","InsertFirstItem","InsertLastItem","InsertItem","InsertRandomItem","InsertList","ExtractFirstItem","ExtractLastItem","ExtractItem","ExtractRandomItem","ExtractList","SetFirstItem","SetLastItem","SetItem","SetRandomItem","SetList","ClearList","CopyList","GetFirstItem","GetLastItem","GetItem","GetRandomItem","GetList","ForEachFirstItem","ForEachLastItem","ForEachRandomItem","ReadFieldItem","ReadFileList","RLuniformdeviate","RLsetrandomseed","CountList","RandomItemizeList","RandomEnumerateList","RandomListLoaded","RLAtCatcode","RLfor"]}
-,
-"randomwalk.sty":{"envs":{},"deps":["expl3.sty","xparse.sty","pgfcore.sty","lcg.sty"],"cmds":["RandomWalk"]}
-,
-"randtext.sty":{"envs":{},"deps":{},"cmds":["randomize"]}
-,
-"rangen.sty":{"envs":["writeRVsTo"],"deps":["lcg.sty"],"cmds":["RandomZ","nOf","dOf","fmt","ds","RandomQ","RandomR","RNGpowerOfTen","nDivisionsPowerOfTen","RandomL","RandomI","RandomP","iOf","RandomS","cfmt","efmt","cds","eds","typeOf","defineZ","defineQ","defineR","reduceFrac","rfNumer","rfDenom","gcd","thegcd","lcm","thelcm","RNGprintf","defineDepQJS","js","RNGadd","zZero","zOne","zMinusOne","rPI","rE","amodb","cntNumDec","convertRatTo","decPls","loopCnt","maxLoopLimit","reseedEachRun","retnmod","rndnDec","rndPower","RNGparseRat","RNGround","seedCnt","simplifyCurrentQ","simplifyCurrentR","syncronizeQs","theseDigits","thisseed","typeCodeForq","typeCodeForr","typeCodeForz","updateQ","updateZ","varType"]}
-,
-"rank-2-roots.sty":{"envs":["rootSystem"],"deps":["tikz.sty","xparse.sty","xstring.sty","etoolbox.sty","expl3.sty","pgfkeys.sty","pgfopts.sty","tikzlibrarycalc.sty","tikzlibrarydecorations.markings.sty","tikzlibrarypositioning.sty","tikzlibraryfadings.sty","tikzlibrarybackgrounds.sty","tikzlibrarydecorations.pathreplacing.sty","tikzlibraryshadings.sty"],"cmds":["roots","wt","hexwt","squarewt","WeylChamber","positiveRootHyperplane","parabolic","parabolicgrading","weightLattice","weight","hexgrid","hexclip","weightLength","weightRadius","gradingDot","defaultWeightLatticeSize","ifAutoSizeWeightLattice","AutoSizeWeightLatticetrue","AutoSizeWeightLatticefalse"]}
-,
-"rapport1.cls":{"envs":{},"deps":{},"cmds":["andname","bibname","CaptionFonts","CaptionLabelFont","CaptionTextFont","ChapFont","chapter","chaptermark","chaptername","HeadingFonts","MarkFont","othermargin","PageFont","ParaFont","PartFont","RunningFonts","SectFont","seename","SParaFont","SSectFont","SSSectFont","thechapter","Thispagestyle","TitleFont","unitindent"]}
-,
-"rapport3.cls":{"envs":{},"deps":{},"cmds":["andname","bibname","CaptionFonts","CaptionLabelFont","CaptionTextFont","ChapFont","chapter","chaptermark","chaptername","HeadingFonts","MarkFont","othermargin","PageFont","ParaFont","PartFont","RunningFonts","SectFont","seename","SParaFont","SSectFont","SSSectFont","thechapter","Thispagestyle","TitleFont","unitindent"]}
-,
-"rawfonts.sty":{"envs":{},"deps":["somedefs.sty"],"cmds":["fivrm","fivmi","fivsy","fivly","sixrm","sixmi","sixsy","sixly","sevrm","sevmi","sevsy","sevit","sevly","egtrm","egtmi","egtsy","egtly","ninrm","ninsy","ninit","ninbf","nintt","ninly","tenrm","tenmi","tensy","tenit","tensl","tenbf","tentt","tensf","tenly","tenex","elvrm","elvmi","elvsy","elvit","elvsl","elvbf","elvtt","elvsf","elvly","twlrm","twlmi","twlsy","twlit","twlsl","twlbf","twltt","twlsf","twlly","frtnrm","frtnmi","frtnsy","frtnbf","frtnly","svtnrm","svtnmi","svtnsy","svtnbf","svtnly","twtyrm","twtymi","twtysy","twtyly","twfvrm"]}
-,
-"rccol.sty":{"envs":{},"deps":["array.sty","fltpoint.sty"],"cmds":["rcRoundingtrue","rcRoundingfalse","rcDecimalSign","rcDecimalSignInput","rcDecimalSignOutput","ifrcRounding"]}
-,
-"rcs-multi.sty":{"envs":{},"deps":{},"cmds":["rcsid","rcs","rcskwsave","rcsrev","rcsdate","rcsauthor","rcsfilerev","rcsfiledate","rcsfileauthor","rcsmainfilename","rcssetmainfile","rcskw","rcskwdef","rcsyear","rcsfileyear","rcsmonth","rcsfilemonth","rcsday","rcsfileday","rcshour","rcsfilehour","rcsminute","rcsfileminute","rcssecond","rcsfilesecond","rcstime","rcsfiletime","rcspdfdate","rcstoday","rcsfiletoday","rcsRegisterAuthor","rcsFullAuthor","rcsRegisterRevision","rcsFullRevision","rcsnolinkurl","rcsfilename","rcsfileurl","rcsmainfileurl","rcsmainurl","rcsname","rcsurl","filedate","filerev","fileversion"]}
-,
-"rcsinfo.sty":{"envs":{},"deps":["fancyhdr.sty","scrpage2.sty"],"cmds":["rcsInfo","rcsInfoFile","rcsInfoRevision","rcsInfoDate","rcsInfoTime","rcsInfoOwner","rcsInfoStatus","rcsInfoLocker","rcsInfoYear","rcsInfoMonth","rcsInfoDay","rcsInfoLongDate"]}
-,
-"readarray.sty":{"envs":{},"deps":["forloop.sty","listofitems.sty"],"cmds":["readdef","readrecordarray","readarray","initarray","mergearray","typesetarray","arraytomacro","setvalue","readarraysepchar","readarrayendlinechar","readarrayinitvalue","typesetcell","typesetplanesepchar","typesetrowsepchar","typesetcolsepchar","nocheckbounds","checkbounds","hypercheckbounds","ifignoreblankreadarrayrecords","ignoreblankreadarrayrecordstrue","ignoreblankreadarrayrecordsfalse","nrows","ncols","nrecords","ArrayRecord","readarraybackslash","readarrayPackageVersion","readarrayPackageDate","arraydump","scalardump"]}
-,
-"readhanja.sty":{"envs":["readhanja"],"deps":["luatex.sty"],"cmds":["readhanjahangulfont","readhanjaraise","readhanjalocate","readhanjaunit","readhanjareading","readhanjadictionary","readhanjatohangul"]}
-,
-"readprov.sty":{"envs":{},"deps":{},"cmds":["GetFileInfo","UseDateOf","UseVersionOf","ReadPackageInfos","ReadClassInfo","ReadFileInfos","ReadShInfos"]}
-,
-"realboxes.sty":{"envs":{},"deps":["collectbox.sty","adjcalc.sty","color.sty","xcolor.sty","graphics.sty","graphicx.sty","dashbox.sty","fancybox.sty"],"cmds":["Mbox","Makebox","Fbox","Framebox","Raisebox","Centerline","Leftline","Rightline","Rlap","Llap","parbox","Sbox","Savebox","Colorbox","Fcolorbox","Rotatebox","Scalebox","Reflectbox","Resizebox","Dbox","Dashbox","Lbox","Dlbox"]}
-,
-"realhats.sty":{"envs":{},"deps":["amsmath.sty","calc.sty","graphicx.sty","ifthen.sty","lcg.sty","stackengine.sty"],"cmds":["hat","myhat","hatwidth","hshif","vshif","hatused","gethat","hatn","hatnoptions"]}
-,
-"realscripts.sty":{"envs":{},"deps":["fontspec.sty"],"cmds":["fakesubscript","fakesuperscript","textsubscript","textsuperscript","realsubscript","realsuperscript","footnotemarkfont","textsubsuperscript","textsupersubscript","subsupersep"]}
-,
-"realtranspose.sty":{"envs":{},"deps":["graphicx.sty"],"cmds":["realtranspose"]}
-,
-"rec-thy.sty":{"envs":["steps","BeamerRequirements"],"deps":["expl3.sty","ltxcmds.sty","iftex.sty","ifpdf.sty","suffix.sty","ifmtarg.sty","xifthen.sty","xkeyval.sty","etoolbox.sty","pict2e.sty","picture.sty","xparse.sty","mathrsfs.sty","mathtools.sty","enumitem.sty"],"cmds":["step","abs","Adegvar","Aeq","Aequiv","Ageq","Agneq","Agtr","Aleq","Aless","Alneq","aut","Azero","Azeroj","Azerojj","Azerojjj","Azeron","Azerosym","baire","Baire","ball","bstrs","cantor","card","case","CBderiv","CdeltaIi","CdeltaIii","CdeltaIiii","CdeltaIn","Cdeltan","CdeltaOneN","Cdeltaoneone","CdeltaOneOne","CdeltaOneThree","CdeltaOneTwo","Cdeltaz","CdeltaZeroN","CdeltaZeroOne","CdeltaZeroThree","CdeltaZeroTwo","CdeltaZeroZero","Cdeltazi","Cdeltazii","Cdeltaziii","Cdeltazn","Cdeltazz","ce","CEA","cequiv","closedn","code","compat","compose","computable","Computable","computablyEnumerable","ComputablyEnumerable","concat","conv","converge","cornerquote","CpiIi","CpiIii","CpiIiii","CpiIn","Cpin","CpiOneN","CpiOneOne","CpiOneThree","CpiOneTwo","CpiZeroN","CpiZeroOne","CpiZeroThree","CpiZeroTwo","Cpizi","Cpizii","Cpiziii","Cpizn","cross","Cross","CrossOrig","crossOrig","CsigmaIi","CsigmaIii","CsigmaIiii","CsigmaIn","Csigman","CsigmaOneN","CsigmaOneOne","CsigmaOneThree","CsigmaOneTwo","CsigmaZeroN","CsigmaZeroOne","CsigmaZeroThree","CsigmaZeroTwo","Csigmazi","Csigmazii","Csigmaziii","Csigmazn","decode","DeltaIi","deltaIi","DeltaIii","deltaIii","DeltaIiii","deltaIiii","DeltaIn","deltaIn","deltan","Deltan","deltaOneN","DeltaOneN","Deltaoneone","deltaoneone","deltaOneOne","DeltaOneOne","deltaOneThree","DeltaOneThree","deltaOneTwo","DeltaOneTwo","Deltaz","deltaz","deltaZeroN","DeltaZeroN","deltaZeroOne","DeltaZeroOne","deltaZeroThree","DeltaZeroThree","deltaZeroTwo","DeltaZeroTwo","DeltaZeroZero","deltaZeroZero","Deltazi","deltazi","Deltazii","deltazii","Deltaziii","deltaziii","Deltazn","deltazn","Deltazz","deltazz","diverge","dom","EmptyStr","ensuretext","entersat","eq","eqae","eqdef","eset","estr","existsinf","existsuniq","False","FinParFuncs","finsets","finSsets","forall","forallae","forces","fpmapsfrom","fpmapsto","frc","gcode","godelnum","godelpair","gpair","hgt","Hop","iffdef","incomp","incompat","infsubset","infsupset","isect","Isect","jjjump","jjump","join","jump","jumpn","kleeneg","kleenegeq","kleenegtr","kleeneHgt","kleenehgt","kleenel","kleeneleq","kleeneless","kleenelim","kleeneMul","kleeneng","kleenengeq","kleenengtr","kleenenl","kleenenleq","kleenenless","kleeneNum","kleeneO","kleeneOne","kleeneOSYM","kleeneOuniq","kleenePlus","kleenepred","kleeneZero","Land","leftof","leftofeq","lh","liff","limplies","LLand","llangle","LLor","logic","Lor","Low","LowN","lowN","majsubset","majsupset","meet","Meet","MnJoin","module","murec","myhalign","nAgeq","nAleq","ncequiv","nconv","neqae","nexistsinf","nexistsuniq","nforall","nforallae","nin","nincomp","nincompat","nleftof","nleftofeq","nrightof","nrightofeq","nsubfun","nsubfuneq","nsubset","nsupfun","nsupfuneq","nsupset","nTeq","nTequiv","nTgeq","nTincomp","nTincompat","nTleq","Ord","ordNotations","ordpair","ordzero","overbar","pair","ParFuncs","PiIi","piIi","PiIii","piIii","PiIiii","piIiii","PiIn","piIn","pin","Pin","piOneN","PiOneN","piOneOne","PiOneOne","piOneThree","PiOneThree","piOneTwo","PiOneTwo","piZeroN","PiZeroN","piZeroOne","PiZeroOne","piZeroThree","PiZeroThree","piZeroTwo","PiZeroTwo","pizi","Pizi","Pizii","pizii","Piziii","piziii","Pizn","pizn","pmapsfrom","pmapsto","powset","PriorityTree","PriorityTreeModule","promptdif","promptminus","promptsetminus","pruneTree","re","REA","REAop","recf","recfnl","recthyVersion","recursive","Recursive","recursivelyEnumerable","RecursivelyEnumerable","REdegrees","refreq","req","require","REset","restr","rightof","rightofeq","rng","rrangle","set","setbefore","setcmp","setcol","setdiff","SigmaIi","sigmaIi","SigmaIii","sigmaIii","SigmaIiii","sigmaIiii","SigmaIn","sigmaIn","sigman","Sigman","sigmaOneN","SigmaOneN","sigmaOneOne","SigmaOneOne","sigmaOneThree","SigmaOneThree","sigmaOneTwo","SigmaOneTwo","sigmaZeroN","SigmaZeroN","sigmaZeroOne","SigmaZeroOne","sigmaZeroThree","SigmaZeroThree","sigmaZeroTwo","SigmaZeroTwo","Sigmazi","sigmazi","Sigmazii","sigmazii","Sigmaziii","sigmaziii","Sigmazn","sigmazn","splitby","splitof","ssetsOfsize","st","str","StrcD","StrcE","StrcL","StrcR","StrcStarL","strpred","strucE","subfun","subfuneq","subfunneq","subsetnaeq","supfun","supfuneq","supfunneq","supsetnaeq","symbf","symdiff","Tcompat","Tdeg","Tdegjoin","Tdegmeet","Tdegof","Tdegrees","Tdegvar","Teq","Tequiv","Tgeq","Tgneq","Tgtr","thiscase","Tincomp","Tincompat","Tjoin","TJoin","Tjump","Tleq","Tless","Tlneq","Tmeet","tpath","Tplus","TPlus","True","Tsetjoin","TsetJoin","ttgeq","ttgneq","ttgtr","ttleq","ttless","ttlneq","ttngeq","ttnleq","ttSYM","Tzero","Tzeroj","Tzerojj","Tzerojjj","Tzerosym","union","Union","uniqOrdNotations","use","utilde","wck","wjump","wstrs","xor","zeroj","zerojj","zerojjj","zeron","zerow"]}
-,
-"recorder-fingering.sty":{"envs":{},"deps":["tikz.sty","tikzlibrarycalc.sty","graphicx.sty"],"cmds":["Sopranino","Soprano","Alto","Tenor","Bass","fingeringSetup","NewFfingering","NewCfingering","AddFingerings"]}
-,
-"rectopma.sty":{"envs":{},"deps":{},"cmds":["ifintitle","intitletrue","intitlefalse","intitlebreak","intitlebreakvs","OLDmaketitle","SaveTopMatter","SavedTitle","SavedAuthor"]}
-,
-"recycle.sty":{"envs":{},"deps":{},"cmds":["recycle","Recycle","RECYCLE"]}
-,
-"refcheck.sty":{"envs":{},"deps":{},"cmds":["showrefnames","norefnames","showcitenames","nocitenames","refcheckxrdoc","setonmsgs","setoffmsgs","checkunlbld","ignoreunlbld","cleanprefix","usedref","wrtusdrf","btoks","filedate","filename","fileversion"]}
-,
-"refcount.sty":{"envs":{},"deps":["ltxcmds.sty","infwarerr.sty"],"cmds":["setcounterref","addtocounterref","setcounterpageref","addtocounterpageref","getrefnumber","getpagerefnumber","setrefcountdefault","getrefbykeydefault","refused","IfRefUndefinedExpandable","IfRefUndefinedBabel"]}
-,
-"refenums.sty":{"envs":{},"deps":["cleveref.sty","csquotes.sty","hyperref.sty","ifthen.sty"],"cmds":["setupRefEnums","defRefEnum","defRefEnumHelper","defRefEnumInline","refEnumFull","refEnumFullP","refEnumFullT","refEnum","refenumenclosing","refenuminlineenclosing","labelname"]}
-,
-"reflectgraphics.sty":{"envs":{},"deps":["kvoptions.sty","keyval.sty","graphicx.sty","calc.sty","tikz.sty","tikzlibraryfadings.sty"],"cmds":["reflectgraphics"]}
-,
-"refstyle.sty":{"envs":{},"deps":["keyval.sty"],"cmds":["newref","partkey","chapkey","seckey","eqkey","figkey","tabkey","fnkey","partlabel","chaplabel","seclabel","eqlabel","figlabel","tablabel","fnlabel","partref","Partref","chapref","Chapref","secref","Secref","eqref","Eqref","figref","Figref","tabref","Tabref","fnref","Fnref","partrangeref","Partrangeref","chaprangeref","Chaprangeref","secrangeref","Secrangeref","eqrangeref","Eqrangeref","figrangeref","Figrangeref","tabrangeref","Tabrangeref","fnrangeref","Fnrangeref","partpageref","chappageref","secpageref","eqpageref","figpageref","tabpageref","fnpageref","DeclareLangOpt","RSaddto","RSukenglish","RSenglish","RSafrikaans","RSdanish","RSfrench","RSgerman","RSitalian","RSnorwegian","RSportuguese","RSbrazilian","RSswedish","RSrngtxt","RSlsttwotxt","RSlsttxt","RSparttxt","RSpartstxt","RSParttxt","RSPartstxt","RSappendixname","RSappendicesname","RSAppendixname","RSAppendicesname","RSchaptername","RSchaptersname","RSChaptername","RSChaptersname","RSsectxt","RSsecstxt","RSSectxt","RSSecstxt","RSeqtxt","RSeqstxt","RSEqtxt","RSEqstxt","RSfigtxt","RSfigstxt","RSFigtxt","RSFigstxt","RStabtxt","RStabstxt","RSTabtxt","RSTabstxt","RSfootntxt","RSfootnstxt","RSFootntxt","RSFootnstxt","chpname","RSeqrefform","RSeqref","AMSeqref","RSfnmark","ifRSstar","RSstartrue","RSstarfalse","ifRSnameon","RSnameontrue","RSnameonfalse","ifRScapname","RScapnametrue","RScapnamefalse","ifRSplural","RSpluraltrue","RSpluralfalse","ifRSlsttwo","RSlsttwotrue","RSlsttwofalse","RefstyleFileDate","RefstyleFileVersion"]}
-,
-"regcount.sty":{"envs":{},"deps":{},"cmds":["rgcounts"]}
-,
-"regexpatch.sty":{"envs":{},"deps":["expl3.sty","patch-common.sty"],"cmds":["xpatchcmd","xpatchbibmacro","xpatchbibdriver","xpatchfieldformat","xpatchnameformat","xpatchlistformat","xpatchindexfieldformat","xpatchindexnameformat","xpatchindexlistformat","regexpatchcmd","regexpatchbibmacro","xshowcmd","xpatchoptarg","xpatchparametertext","checkpatchable","tracingxpatches"]}
-,
-"register.sty":{"envs":["register","register*","regdesc","reglist"],"deps":["calc.sty","float.sty","graphicx.sty","ifthen.sty","xcolor.sty"],"cmds":["listofregisters","regfield","regfieldb","regbits","regnewline","reglabel","reglabelb","TR","GetTRPageRef","TRfamily","TRleftlabel","TRrightlabel","TRwidth","TRwriteout","aux","oldregdescsep","regBitFamily","regBitSize","regBitWidth","regDescFamily","regDescSkip","regFboxSep","regFieldLen","regFiller","regFloatName","regLabelAdjust","regLabelFamily","regLabelSize","regListName","regMakeFieldName","regResetDepth","regResetDrop","regResetHeight","regResetName","regResetSize","regRotateFieldName","regRsvdDrop","regRsvdHeight","regSpreadaux","regSpread","regUnderScore","regWidth","regdescsep","regfieldColor","regfieldNoColor","regfieldbColor","regfieldbNoColor","regspace","setRegLengths","thelowerbit","theupperbit","typesetRegBits","typesetRegColorBits","typesetRegColorReset","typesetRegReset"]}
-,
-"regstats.sty":{"envs":{},"deps":["kvoptions.sty","atveryend.sty","ltxcmds.sty","intcalc.sty","ifluatex.sty","ifpdf.sty"],"cmds":["regstatselapsedtime","regstatsseconds","theregstatscount","regstatsdimen","regstatsskip","regstatsmuskip","regstatsbox","regstatstoks","regstatsread","regstatswrite","regstatsfam","regstatslanguage","regstatsinsert"]}
-,
-"relaycircuit.sty":{"envs":{},"deps":["tikz.sty","circuitikz.sty","tikzlibraryshadows.sty","tikzlibraryshapes.misc.sty","xstring.sty"],"cmds":{}}
-,
-"reledmac.sty":{"envs":["ledgroup","ledgroupsized","edarrayl","edarrayc","edarrayr","edtabularl","edtabularc","edtabularr"],"deps":["xkeyval.sty","xargs.sty","xparse.sty","etoolbox.sty","suffix.sty","xstring.sty","ifluatex.sty","ragged2e.sty","ifxetex.sty"],"cmds":["beginnumbering","endnumbering","pstart","pend","autopar","AtEveryPstart","AtEveryPend","AtStartEveryPstart","AtEndEveryPend","numberpstarttrue","numberpstartfalse","thepstart","sidepstartnumtrue","sidepstartnumfalse","labelpstarttrue","labelpstartfalse","pausenumbering","resumenumbering","numberlinetrue","numberlinefalse","firstlinenum","linenumincrement","firstsublinenum","sublinenumincrement","linenumberlist","lineation","linenummargin","leftlinenum","rightlinenum","linenumsep","startsub","endsub","Xsublinesep","Xsublinesepside","startlock","endlock","lockdisp","setline","advanceline","setlinenum","linenumberstyle","sublinenumberstyle","skipnumbering","hidenumbering","hidenumberingonleftpage","hidenumberingonrightpage","linenumannotation","lineannot","Xlinenumannotationposition","Xlinenumannotationpositionside","Xendlinenumannotationposition","linenumannotationothersidetrue","linenumannotationothersidefalse","Xwraplinenumannotation","Xwraplinenumannotationside","Xwraplinenumannotationref","Xendwraplinenumannotation","Xnoidenticallinenumannotation","Xendnoidenticallinenumannotation","setlinenumannotationsep","dolinehook","doinsidelinehook","doinsidethislinehook","edtext","Afootnote","Bfootnote","Cfootnote","Dfootnote","Efootnote","Aendnote","Bendnote","Cendnote","Dendnote","Eendnote","doendnotes","doendnotesbysection","toendnotes","Atoendnotes","Btoendnotes","Ctoendnotes","Dtoendnotes","Etoendnotes","lemma","linenum","sameword","showwordrank","swnoexpands","msdata","stopmsdata","setmsdataseries","setmsdatalabel","setmsdataposition","footnoteA","footnoteB","footnoteC","footnoteD","footnoteE","thefootnoteA","thefootnoteB","thefootnoteC","thefootnoteD","thefootnoteE","bodyfootmarkA","bodyfootmarkB","bodyfootmarkC","bodyfootmarkD","bodyfootmarkE","footfootmarkA","footfootmarkB","footfootmarkC","footfootmarkD","footfootmarkE","multfootsep","footnoteAmark","footnoteBmark","footnoteCmark","footnoteDmark","footnoteEmark","footnoteAtext","footnoteBtext","footnoteCtext","footnoteDtext","footnoteEtext","seriesatbegin","seriesatend","fnpos","mpfnpos","Xarrangement","arrangementX","Xnonote","nonoteX","Xnumberonlyfirstinline","Xnumberonlyfirstintwolines","Xsymlinenum","Xendnumberonlyfirstinline","Xendnumberonlyfirstintwolines","Xendsymlinenum","Xendpagenumberonlyfirst","Xendpagenumberonlyfirstifsingle","Xendpagenumberonlyfirstintwo","Xendsympagenum","Xendinplaceofpagenumber","Xtxtbeforenumber","Xbeforepagenumber","Xendbeforepagenumber","Xendafterpagenumber","Xendlineprefixsingle","Xendlineprefixmore","Xlinerangeseparator","Xendlinerangeseparator","Xtwolines","Xmorethantwolines","Xtwolinesbutnotmore","Xtwolinesonlyinsamepage","Xendtwolines","Xendmorethantwolines","Xendtwolinesbutnotmore","Xendtwolinesonlyinsamepage","Xnonumber","Xendnonumber","Xnopagenumberifcurrent","Xpstart","Xpstarteverytime","Xonlypstart","Xpstartonlyfirst","Xpstartseparator","Xstanza","Xstanzaseparator","Xstanzaonlyfirst","Xlinenumannotationonlyfirst","Xlinenumannotationonlyfirstintwo","Xsymlinenumannotation","Xendlinenumannotationonlyfirst","Xendlinenumannotationonlyfirstintwo","Xendsymlinenumannotation","Xnolinenumber","Xendnolinenumber","Xnolinenumberifannotation","Xendnolinenumberifannotation","Xendsublinesep","Xpagelinesep","Xbeforenumber","Xafternumber","Xendbeforenumber","Xendafternumber","Xnonbreakableafternumber","Xbeforesymlinenum","Xaftersymlinenum","Xendbeforesymlinenum","Xendaftersymlinenum","Xinplaceofnumber","Xendinplaceofnumber","Xboxlinenum","Xboxsymlinenum","Xendboxsymlinenum","Xboxlinenumalign","Xendboxlinenumalign","Xboxstartlinenum","Xboxendlinenum","Xnotboxingsubline","Xendboxlinenum","Xendboxstartlinenum","Xendboxendlinenum","Xendnotboxingsubline","Xlemmaseparator","Xbeforelemmaseparator","Xafterlemmaseparator","Xnolemmaseparator","Xinplaceoflemmaseparator","Xendlemmaseparator","Xendbeforelemmaseparator","Xendafterlemmaseparator","Xendinplaceoflemmaseparator","Xnotenumfont","Xendnotenumfont","notenumfontX","Xlemmadisablefontselection","Xendlemmadisablefontselection","Xlemmafont","Xendlemmafont","Xnotefontsize","notefontsizeX","Xendnotefontsize","Xwraplemma","Xwrapendlemma","Xwrapcontent","Xendwrapcontent","wrapcontentX","Xparindent","parindentX","Xhangindent","hangindentX","Xendhangindent","Xendbhooklinenumber","Xendahooklinenumber","Xendbhookinplaceofnumber","Xendahookinplaceofnumber","Xbhooknote","bhooknoteX","Xendbhooknote","Xbeforeinserting","beforeinsertingX","Xcolalign","colalignX","Xhsizetwocol","Xhsizethreecol","hsizetwocolX","hsizethreecolX","Xafternote","afternoteX","Xparafootsep","parafootsepX","Xragged","raggedX","Xgroupbyline","Xgroupbylineseparetwolines","Xtxtbeforenotes","txtbeforenotesX","Xendtxtbeforenotes","Xtxtbeforenotesonlyonce","txtbeforenotesonlyonceX","Xbhookgroup","bhookgroupX","Xbeforenotes","beforenotesX","Xprenotes","prenotesX","Xafterrule","afterruleX","Xmaxhnotes","maxhnotesX","Xwidth","widthX","Xnoteswidthliketwocolumns","noteswidthliketwocolumnsX","Xendparagraph","Xendafternote","Xendsep","numlabfont","stanza","stanzaindentbase","setstanzaindents","stanzaindent","setstanzapenalties","sethangingsymbol","AtEveryStanza","AtStartEveryStanza","AtEveryStopStanza","BeforeEveryStopStanza","numberstanzatrue","numberstanzafalse","thestanza","stanzanumwrapper","antilabe","beforeantilabe","afterantilabe","ampersand","flagstanza","edlabel","edpageref","edlineref","sublineref","pstartref","annotationref","xpageref","xlineref","xsublineref","xpstartref","xannotationref","xflagref","xxref","edmakelabel","edlabelS","edlabelE","edlabelSE","SEref","SErefwithpage","SErefonlypage","applabel","appref","apprefwithpage","setapprefprefixsingle","setapprefprefixmore","setSErefprefixsingle","setSErefprefixmore","setSErefonlypageprefixsingle","setSErefonlypageprefixmore","ledinnernote","ledouternote","ledleftnote","ledrightnote","ledsidenote","sidenotemargin","ledlsnotewidth","ledrsnotewidth","rightnoteupfalse","leftnoteupfalse","ledlsnotesep","ledrsnotesep","ledlsnotefontsetup","ledrsnotefontsetup","setsidenotesep","edindex","Xinnotemark","innotemarkX","pagelinesep","edindexlab","edtabcolsep","spreadmath","spreadtext","edrowfill","edatleft","edatright","edbeforetab","edaftertab","edvertline","edvertdots","eledchapter","eledsection","eledsubsection","eledsubsubsection","ledpb","lednopb","ledpbsetting","lednopbinversetrue","lednopbinversefalse","extensionchars","ifledfinal","showlemma","theballast","footfudgefiddle","morenoexpands","edgls","edGls","edGLS","edglspl","edGlspl","edGLSpl","edglstext","edGlstext","edGLStext","edGlsfirst","edGLSfirst","edglsplural","edGlsplural","edGLSplural","edglsfirstplural","edGlsfirstplural","edGLSfirstplural","edglsname","edGlsname","edGLSname","edglssymbol","edGlssymbol","edGLSsymbol","edglsdesc","edGlsdesc","edGLSdesc","edglsuseri","edGlsuseri","edGLSuseri","edglsuserii","edGlsuserii","edGLSuserii","edglsuseriii","edGlsuseriii","edGLSuseriii","edglsuseriv","edGlsuseriv","edGLSuseriv","edglsuserv","edGlsuserv","edGLSuserv","edglsuservi","edGlsuservi","edGLSuservi","edglsdisp","edglslink","edglsadd","Afootfmt","Afootgroup","Afootins","Afootnoterule","Afootstart","afterendnumberingRfalse","afterendnumberingRtrue","autoparfalse","autopartrue","beforeeledchapter","beginnumberingR","Bfootfmt","Bfootgroup","Bfootins","Bfootnoterule","Bfootstart","boxfootnotenumbers","Cfootfmt","Cfootgroup","Cfootins","Cfootnoterule","Cfootstart","content","ctab","ctabtext","dcoli","dcolii","dcoliii","dcoliv","dcolv","dcolvi","dcolvii","dcolviii","dcolix","dcolx","dcolxi","dcolxii","dcolxiii","dcolxiv","dcolxv","dcolxvi","dcolxvii","dcolxviii","dcolxix","dcolxx","dcolxxi","dcolxxii","dcolxxiii","dcolxxiv","dcolxxv","dcolxxvi","dcolxxvii","dcolxxviii","dcolxxix","dcolxxx","dcolerr","Dfootfmt","Dfootgroup","Dfootins","Dfootnoterule","Dfootstart","disablel","doedindexlabel","dosplits","edfilldimen","edglsom","edglsomm","edglsomo","EDLABEL","EDTAB","EDTABINDENT","edtabindent","EDTABtext","EDTEXT","Efootfmt","Efootgroup","Efootins","Efootnoterule","Efootstart","eledmacmarkuplocrefdepth","enablel","endashchar","endprint","footsplitskips","fullstop","Hilfsbox","hilfsbox","hilfscount","HILFSskip","Hilfsskip","hilfsskip","hyperlinkformat","hyperlinkformatR","hyperlinkR","HyperRaiseLinkLength","ifafterendnumberingR","ifautopar","ifinastanzaL","ifinastanzaR","ifinserthangingsymbol","ifinserthangingymbol","ifinstanza","ifinstanzaL","ifinstanzaR","ifistwofollowinglines","iflednopbinverse","ifledRcol","iflinenumannotationotherside","ifnumbering","ifnumberingR","ifnumberline","ifnumberstanza","ifparledgroup","ifprevpgnotnumbered","ifsameparallelpagenumber","ifseriesbefore","ifsidepstartnum","ifwidthliketwocolumns","inastanzaLfalse","inastanzaLtrue","inastanzaRfalse","inastanzaRtrue","inserthangingsymbol","inserthangingsymbolfalse","inserthangingsymboltrue","insertparafootsepX","instanzafalse","instanzaLfalse","instanzaLtrue","instanzaRfalse","instanzaRtrue","instanzatrue","istwofollowinglinesfalse","istwofollowinglinestrue","labelrefsparseabsline","labelrefsparseline","labelrefsparsesubline","ledinnote","ledinnotemark","ledlinenum","ledllfill","lednopbnum","ledpbnum","ledRcolfalse","ledRcoltrue","ledrlfill","ledsectnomark","ledsectnotoc","ledsetnormalparstuffX","leftctab","leftlinenumannotation","leftlinenumR","leftltab","leftpstartnum","leftrtab","letsforverteilen","linenumrep","ltab","ltabtext","makehboxofhboxes","measurembody","measuremcell","measuremrow","measuretbody","measuretcell","measuretrow","mpnormalfootgroup","mpnormalfootgroupX","mpnormalvfootnote","mpnormalvfootnoteX","mpparafootgroup","mpparavfootnote","mpthreecolfootgroup","mpthreecolfootgroupX","mpthreecolfootsetup","mpthreecolfootsetupX","mptwocolfootgroup","mptwocolfootgroupX","mptwocolfootsetup","mptwocolfootsetupX","multiplefootnotemarker","newseries","newverse","NEXT","Next","next","normalbfnoteX","normalbodyfootmarkX","normalfootfmt","normalfootfmtX","normalfootfootmarkX","normalfootgroup","normalfootgroupX","normalfootnoterule","normalfootnoteruleX","normalfootstart","normalfootstartX","normalvfootnote","normalvfootnoteX","nulledindex","nullsetzen","numberingfalse","numberingRfalse","numberingRtrue","numberingtrue","parafootfmt","parafootfmtX","parafootgroup","parafootstart","parafootstartX","paravfootnote","parledgroupfalse","parledgrouptrue","postbodyfootmark","prebodyfootmark","prevpgnotnumberedfalse","prevpgnotnumberedtrue","preXnotes","printendlines","printlineendnote","printlineendnotearea","printlinefootnote","printlinefootnotearea","printlinefootnotenumbers","printlines","printnpnum","printpstart","printstanza","printsymlineendnotearea","printsymlinefootnotearea","printXafternumber","printXbeforenumber","pstartnumtrue","pstartnumtruefalse","rbracket","Relax","removehboxes","resetlinenumannotation","rightctab","rightlinenumannotation","rightlinenumR","rightltab","rightpstartnum","rightrtab","rigidbalance","rigidbalanceX","rtab","rtabtext","sameparallelpagenumberfalse","sameparallelpagenumbertrue","sethangindentX","setistwofollowinglines","setmcellcenter","setmcellleft","setmcellright","setmrowcenter","setmrowleft","setmrowright","setparindentX","setprintendlines","setprintlines","settcellcenter","settcellleft","settcellright","settrowcenter","settrowleft","settrowright","splitoff","sublinenumrep","sublockdisp","tabHilfbox","tabhilfbox","theabsline","theaddcolcount","theedtext","theendpageline","thefirstlinenum","thefirstsublinenum","thelabidx","theline","thelinenumincrement","thepageline","thepstartL","thepstartR","thestanzaindentsrepetition","thestartpageline","thestartstanzaindentsrepetition","thesubline","thesublinenumincrement","threecolfootfmt","threecolfootfmtX","threecolfootgroup","threecolfootgroupX","threecolfootsetup","threecolfootsetupX","threecolvfootnote","threecolvfootnoteX","twocolfootfmt","twocolfootfmtX","twocolfootgroup","twocolfootgroupX","twocolfootsetup","twocolfootsetupX","twocolvfootnote","twocolvfootnoteX","unvxhX","vAfootnote","variab","vbfnoteX","vBfootnote","vCfootnote","vDfootnote","vEfootnote","vnumfootnoteX","widthliketwocolumnsfalse","widthliketwocolumnstrue","xabslineref","xedindex","xedlabel","xedtext","Xendstorelineinfo","Xendwraplemma","Xinsertparafootsep","Xledsetnormalparstuff","Xrigidbalance","Xsethangindent","Xsetparindent","Xstorelineinfo","Xunvxh","footnormalX","footparagraphX","foottwocolX","footthreecolX","footnormal","footparagraph","foottwocol","footthreecol","hsizetwocol","hsizethreecol","bhookXnote","boxsymlinenum","symlinenum","beforenumberinfootnote","afternumberinfootnote","beforeXsymlinenum","afterXsymlinenum","inplaceofnumber","lemmaseparator","afterlemmaseparator","beforelemmaseparator","inplaceoflemmaseparator","txtbeforeXnotes","afterXrule","numberonlyfirstinline","numberonlyfirstintwolines","nonumberinfootnote","pstartinfootnote","pstartinfootnoteeverytime","onlyXpstart","Xnonumberinfootnote","nonbreakableafternumber","maxhXnotes","beforeXnotes","boxlinenum","boxlinenumalign","boxstartlinenum","boxendlinenum","twolines","morethantwolines","twolinesbutnotmore","twolinesonlyinsamepage","notesXwidthliketwocolumns","parafootsep","afternote","XendXtwolines","XendXmorethantwolines","bhookXendnote","boxXendlinenum","boxXendlinenumalign","boxXendstartlinenum","boxXendendlinenum","XendXlemmaseparator","XendXbeforelemmaseparator","XendXafterlemmaseparator","XendXinplaceoflemmaseparator","lineref"]}
-,
-"reledpar.sty":{"envs":["pages","pairs","Rightside","Leftside","astanza"],"deps":["xspace.sty","xkeyval.sty"],"cmds":["advancedshiftedpstartsfalse","advancedshiftedpstartstrue","aftercolumnseparator","AtBeginPairs","AtEveryPstartCall","beforecolumnseparator","checkpageL","checkpageR","checkpbL","checkpbR","checkverseL","checkverseR","cleartoevenpage","columnrulewidth","Columns","columnseparator","columnsposition","countLline","countRline","doinsidelineLhook","doinsidelineRhook","dolineLhook","dolineRhook","edtextlater","edtextnow","eledsectmark","eledsectnotoc","endnumberingR","firstlinenum","firstlinenumR","firstsublinenum","firstsublinenumR","footnoteAmk","footnoteAnomk","footnoteBmk","footnoteBnomk","footnoteCmk","footnoteCnomk","footnoteDmk","footnoteDnomk","footnoteEmk","footnoteEnomk","getlinesfrompagelistL","getlinesfrompagelistR","getlinesfromparlistL","getlinesfromparlistR","ifadvancedshiftedpstarts","ifcsboxvoid","ifinserthangingsymbolR","iflinenumberLevenifblank","iflinenumberRevenifblank","ifmovecolumnspositiononrightpage","ifnomaxlines","ifnosyncpstarts","ifnumberpstart","ifpstartnumR","ifshiftedpstarts","ifwrittenlinesL","ifwrittenlinesR","inserthangingsymbolL","inserthangingsymbolR","inserthangingsymbolRfalse","inserthangingsymbolRtrue","Lcolwidth","lednopbnumR","lednopbR","ledpbnumR","ledpbR","ledstrutL","ledstrutR","ledthegoal","leftlinenumannotationR","Leftpagehook","leftpstartnumL","leftpstartnumR","Leftsidehook","Leftsidehookend","lineation","lineationR","linenumberLevenifblankfalse","linenumberLevenifblanktrue","linenumberlistR","linenumberRevenifblankfalse","linenumberRevenifblanktrue","linenumberstyle","linenumberstyleR","linenumincrement","linenumincrementR","linenummargin","linenummarginColumns","linenummarginColumnsR","linenummarginR","linenumOnlyPagesForColumns","linenumOnlyPagesForColumnsR","linenumrepL","linenumrepR","maxchunks","memorydump","memorydumpL","memorydumpR","movecolumnspositiononrightpagefalse","movecolumnspositiononrightpagetrue","namebox","newnamebox","newnamecount","nomaxlinesfalse","nomaxlinestrue","nosyncpstartsfalse","nosyncpstartstrue","numpagelinesL","numpagelinesR","onlysideX","onlyXside","Pages","pausenumberingR","pendL","pendR","prevpgstyle","pstartL","pstartnumRfalse","pstartnumRtrue","pstartR","Rcolwidth","resumenumberingR","rightlinenumannotationR","Rightpagehook","rightpstartnumL","rightpstartnumR","Rightsidehook","Rightsidehookend","setgoalfraction","setnamebox","setparledgroupnotespacing","setRlineflag","setwidthliketwocolumns","shiftedpstartsfalse","shiftedpstartstrue","sidenotemargin","sidenotemarginR","sublinenumberstyle","sublinenumberstyleR","sublinenumincrement","sublinenumincrementR","sublinenumrepL","sublinenumrepR","thechapterR","thefirstlinenumR","thefirstsublinenumR","theledlanguageL","theledlanguageR","thelinenumincrementR","thesectionR","thestanzaL","thestanzaR","thesublinenumincrementR","thesubsectionR","thesubsubsectionR","unhnamebox","unvnamebox","usenamecount","writtenlinesLfalse","writtenlinesLtrue","writtenlinesRfalse","writtenlinesRtrue","Xendlineflag","Xlineflag","Xonlyside"]}
-,
-"relinput.sty":{"envs":{},"deps":["stack.sty"],"cmds":["relinput"]}
-,
-"relsize.sty":{"envs":{},"deps":{},"cmds":["relsize","larger","smaller","relscale","textlarger","textsmaller","textscale","mathsmaller","mathlarger","RSsmallest","RSlargest","RSpercentTolerance"]}
-,
-"renditions.sty":{"envs":["rendition1","rendition2","rendition3","rendition4","rendition5","rendition6","rendition7","rendition8","rendition9"],"deps":["xkeyval.sty","comment.sty"],"cmds":["rendition","thisrendition"]}
-,
-"reotex.sty":{"envs":{},"deps":["ifthen.sty","tikz.sty","verbatim.sty","tikzlibrarydecorations.pathmorphing.sty","tikzlibrarydecorations.shapes.sty","tikzlibrarycalc.sty"],"cmds":["sync","lossysync","syncdrain","syncspout","filter","fifoe","fifof","asyncdrain","asyncspout","fifon","shiftfifon","lossyfifon","timer","ordered","orderedn","bag","bagn","set","setn","delayset","delaysetn","keyedset","keyedsetn","ionode","mixednode","xrouter","Lchannel","Uchannel","component","reader","writer"]}
-,
-"repltext.sty":{"envs":{},"deps":["etoolbox.sty","graphicx.sty"],"cmds":["repltext","prevrepl"]}
-,
-"report.cls":{"envs":{},"deps":{},"cmds":["thechapter","chaptername","bibname","chapter","chaptermark"]}
-,
-"rerunfilecheck.sty":{"envs":{},"deps":["kvoptions.sty","infwarerr.sty","pdftexcmds.sty","atveryend.sty","uniquecounter.sty"],"cmds":["RerunFileCheckSetup","RerunFileCheck"]}
-,
-"rescansync.sty":{"envs":["rescansyncSaveenvPacked","rescansyncSaveenvghostPacked"],"deps":{},"cmds":["rescansyncPacked"]}
-,
-"resizegather.sty":{"envs":{},"deps":["kvoptions.sty","amsmath.sty","graphics.sty"],"cmds":["resizegathersetup"]}
-,
-"resmes.sty":{"envs":{},"deps":["tikz.sty"],"cmds":["resmes"]}
-,
-"resphilosophica.cls":{"envs":["notes"],"deps":["xkeyval.sty","s-amsart.cls","microtype.sty","fancyhdr.sty","xcolor.sty","lastpage.sty","collect.sty","footmisc.sty","hyperref.sty","mathdesign.sty","lsabon.sty","natbib.sty"],"cmds":["AddtoEndMatter","articleentry","authornote","copyrightnote","copyrightyear","doinumber","ECSelect","EditorialComment","endpage","issuenumber","manuscriptid","onlinedate","papernumber","paperUrl","prevpaper","publicationmonth","publicationyear","rpdefault","startpage","TC","TCSelect","titlenote","volumenumber"]}
-,
-"rest-api.sty":{"envs":["apiRoute","routeParameter","routeRequest","routeRequestBody","routeResponse","routeResponseItem","routeResponseItemBody"],"deps":["fontenc.sty","tabularx.sty","colortbl.sty","transparent.sty","xcolor.sty","color.sty","xifthen.sty","xstring.sty","tikz.sty","mdframed.sty","array.sty","verbatim.sty","listings.sty"],"cmds":["bodyFormat","breakRoute","getDeleteBorderColor","getDeleteColor","getDeleteLightColor","getGetBorderColor","getGetColor","getGetLightColor","getPostBorderColor","getPostColor","getPostLightColor","getPutBorderColor","getPutColor","getPutLightColor","method","methodBorderColor","methodColor","methodJson","methodLightColor","methodXml","noBreakRoute","noRouteParameter","noRouteResponse","printDescription","routeBreakValue","routeDescription","routeParamItem","urlPath","DH","dh","dj","DJ","guillemetleft","guillemetright","guillemotleft","guillemotright","guilsinglleft","guilsinglright","Hwithstroke","hwithstroke","k","NG","ng","quotedblbase","quotesinglbase","textogonekcentered","textquotedbl","th","TH"]}
-,
-"resumecls.cls":{"envs":{},"deps":["s-ctexart.cls","xeCJK.sty","geometry.sty","hyperref.sty","tabularx.sty","color.sty","fancyhdr.sty","natbib.sty"],"cmds":["heading","entry","name","organization","address","mobile","mail","homepage","leftfooter","rightfooter","ifrclscolor","rclscolortrue","rclscolorfalse","rclsaddress","rclshomepage","rclsleftfooter","rclsmail","rclsmobile","rclsname","rclsorganization","rclsrightfooter"]}
-,
-"returntogrid.sty":{"envs":{},"deps":["xparse.sty","eso-pic.sty","zref-savepos.sty","zref-abspage.sty"],"cmds":["returntogrid","showdebugpagegrid","returntogridsetup"]}
-,
-"revquantum.sty":{"envs":["theorem","lemma"],"deps":["ifthen.sty","iftex.sty","stmaryrd.sty","amsmath.sty","amsfonts.sty","amsthm.sty","amssymb.sty","amsbsy.sty","color.sty","braket.sty","graphicx.sty","babel.sty","letltxmacro.sty","etoolbox.sty","algorithm.sty","algpseudocode.sty","hyperref.sty","mathpazo.sty","xcolor.sty","listings.sty","textcomp.sty"],"cmds":["todo","TODO","todolist","ii","dd","defeq","expect","id","llbracket","rrbracket","newaffil","affilTODO","affilEQuSUSyd","affilEQuSMacq","affilUSydPhys","affilIQC","affilUWPhys","affilUWAMath","affilUWChem","affilPI","affilCIFAR","affilCQuIC","affilIBMTJW","inlinecomment","linecomment","booloption","newnew","algorithmautorefname","lemmaautorefname","citeneed","definelanguagealias","ORIGselectlanguage","captionsenglish","dateenglish","extrasenglish","noextrasenglish","englishhyphenmins","britishhyphenmins","americanhyphenmins","prefacename","bibname","chaptername","enclname","ccname","headtoname","pagename","seename","alsoname","proofname","glossaryname"]}
-,
-"revsymb4-2.sty":{"envs":{},"deps":{},"cmds":["agt","alt","altprecsim","altsuccsim","Bigglb","bigglb","Biggrb","biggrb","Biglb","biglb","Bigrb","bigrb","corresponds","dddot","gtrsim","lambdabar","lesssim","loarrow","mathbb","mathfrak","openone","overcirc","overdots","overstar","precsim","roarrow","succsim","tensor","triangleq","vereq"]}
-,
-"revtex4-2.cls":{"envs":["acknowledgments","acknowledgements","ruledtabular","turnpage","video","video*","widetext","longtable*","quasitable"],"deps":["textcase.sty","url.sty","natbib.sty","revsymb4-2.sty","amsfonts.sty","amssymb.sty","amsmath.sty","lineno.sty"],"cmds":["absbox","accepted","acknowledgmentsname","addstuff","affiliation","altaffiliation","andname","appdef","appendixesname","blankaffiliation","botrule","checkindate","collaboration","colrule","copyrightname","doauthor","doi","doibase","eid","email","endpage","eprint","eqncolsep","figuresname","firstname","flushing","footsofar","frstrut","fullinterlineskip","gappdef","homepage","href","intertabularlinepenalty","issuenumber","journalname","keywords","linefoot","lineloop","listofvideos","lofname","loopuntil","loopwhile","lotname","lovname","lrstrut","mit","noaffiliation","numbername","oneapage","onecolumngrid","onlinecite","other","pacs","pagesofar","phantomsection","ppname","prepdef","preprint","printfigures","printindex","printtables","printvideos","published","received","removephantombox","removestuff","replacestuff","restorecolumngrid","revised","say","saythe","setfloatlink","squeezetable","startpage","surname","tableftsep","tablesname","tabmidsep","tabrightsep","text","textcite","theaffil","thecollab","theHvideo","thelinecount","thepagegrid","thevideo","title","tocname","toprule","traceoutput","tracingplain","triggerpar","twocolumngrid","volumename","volumenumber","volumeyear","endfirstfoot","endlastfoot","endfirsthead","endfoot","endhead","adv","ao","ap","apl","apm","apj","bell","bmf","cha","jqe","assp","aprop","mtt","iovs","jcp","jap","jmp","jmo","josa","josaa","josab","jpp","jpr","ltp","nat","oc","ol","pl","pop","pof","pra","prb","prc","prd","pre","prl","rmp","rsi","rse","pspie","sjqe","vr","sd","jor","cp","byrevtex","aapmreprint","aapmpreprint","aipreprint","aippreprint","address","altaddress","case","draft","slantfrac","tablenote","tablenotemark","tablenotetext"]}
-,
-"rgltxdoc.sty":{"envs":["itemize*","description*"],"deps":["ifluatex.sty","etoolbox.sty","inputenc.sty","babel.sty","geometry.sty","typearea.sty","fontenc.sty","lmodern.sty","microtype.sty","csquotes.sty","enumitem.sty","idxlayout.sty","amsmath.sty","varioref.sty","hypdoc.sty","cleveref.sty","doc.sty","pbox.sty","keyvaltable.sty","hologo.sty","showexpl.sty"],"cmds":["NiceDescribeMacro","NiceDescribeMacros","NiceDescribeEnv","NiceDescribeEnvs","NiceDescribeCounter","NiceDescribeCounters","NiceDescribeKey","NiceDescribeKeys","NewNiceDescription","SpecialOtherIndex","env","pkgname","pkgnames","cmarg","coarg","vmeta","captionsenglish","dateenglish","extrasenglish","noextrasenglish","englishhyphenmins","britishhyphenmins","americanhyphenmins","prefacename","bibname","chaptername","enclname","ccname","headtoname","pagename","seename","alsoname","proofname","glossaryname","DH","NG","dj","ng","k","guillemotleft","guillemotright","guilsinglleft","guilsinglright","quotedblbase","quotesinglbase","textquotedbl","DJ","th","TH","dh","Hwithstroke","hwithstroke","textogonekcentered","guillemetleft","guillemetright"]}
-,
-"ribbonproofs.sty":{"envs":["ribbonproof"],"deps":["xcolor.sty","tikz.sty","xstring.sty","etextools.sty"],"cmds":["com","jus","startblock","finishblock","ribbonpagebreak","continueblock","moveribbons","swapribbons","moveboxes","extendboxes","jusColor","comColor","ribColor","varribColor","ribTextColor","boxTextColor","guideTextColor","defaultStepHeight","defaultRowHeight","ribTextVOffset","boxTextVOffset","boxTextHOffset","guideTextVOffset","roundingRadius","boxRoundingRadius","blockLineWidth","boxLineWidth","shadowHeight","shadowColor","zigzagHeight","zigzagLength","twistiness"]}
-,
-"richtext.sty":{"envs":["displayRtPara","displayRtPara*"],"deps":["xkeyval.sty","ifpdf.sty","ifxetex.sty","eforms.sty"],"cmds":["rtpara","span","useRV","useV","sub","sup","spc","br","RV","DS","useDefaultDS","setDefaultStyle","useDS","setRVVContent","useRVContent","useVContent","displayRV","displayV","contName","displayRtParaName","makePDFSp","makeTeXSp","makeTeXSpPrnt","resetRtFontKeys","rtpdfSPDef","rtpdfSPDefPrnt","rvorvstring"]}
-,
-"rjlpshap.sty":{"envs":["parshapecollect"],"deps":["arrayjob.sty","forloop.sty"],"cmds":["parshapelenout","parshapearrlenout","parshapeary","parshapearray","Parshapearray"]}
-,
-"rmannot.sty":{"envs":{},"deps":["xkeyval.sty","ifpdf.sty","ifxetex.sty","eforms.sty","graphicxsp.sty","ifthen.sty","fp.sty"],"cmds":["AcroVer","pathToSkins","saveNamedPath","defineRMPath","makePoster","defaultPoster","setPosterProps","rmAnnot","cntrlbrWd","cntrlbrHt","setWindowDimPos","resetWindowDimPos","setRmOptions","AcrobatVer","appType","audCtrlHt","audCtrlWd","FileStrmAudioPlayer","FileStrmVideoPlayer","getargsiii","ifuseWinAcrobat","ifVideoPlayerEx","mmGetMetaData","mmGetSource","mmGetVersion","mmGetVideoState","mmIsLooping","mmMute","mmNextCuePoint","mmPause","mmPlay","mmPrevCuePoint","mmRewind","mmSeek","mmSeekCuePoint","mmSetScaleMode","mmSetStageColor","mmShowLoopButton","mmSkin","mmSkinAlpha","mmSkinAutoHide","mmSkinColor","mmSource","mmUseLocal","mmVolume","Name","pathToPlayers","PathToSkins","RefObjRm","rmaName","rmaNameP","rmaUrlName","rmaUrlNameP","rmDC","rmSkinPath","romanVer","urlName","useVideoPlayerPlus","useVideoPlayerX","useWinAcrobatfalse","useWinAcrobattrue","VideoPlayerExfalse","VideoPlayerExtrue"]}
-,
-"rmathbr.sty":{"envs":{},"deps":["expl3.sty","ifetex.sty","ifluatex.sty","xkeyval.sty"],"cmds":["cdott","nobr","SetBreakableRel","SetBreakableBin","SetBreakableInner","SetOpenBracket","SetMathOperator","SetPunctuation","UnsetBrokenCmd","BrokenBinOff","BrokenBinOn","brokenbin","brokeninner","brokenrel","xDeclareBoolOptionX","xDeclareChoiceOptionX"]}
-,
-"robotarm.sty":{"envs":{},"deps":["tikz.sty","tikzlibrarypatterns.sty"],"cmds":["robotArm","robotArmBaseLink","robotArmLink","robotArmEndEffector","robotarmset","angleannotationcase"]}
-,
-"roboto-mono.sty":{"envs":{},"deps":["ifxetex.sty","ifluatex.sty","textcomp.sty","xkeyval.sty","fontenc.sty","fontaxes.sty","mweights.sty"],"cmds":["robotomonoThin","robotomonoLight","robotomonoRegular","robotomonoMedium","robotomonoBold","robotomono","robotomonoregular","robotomonomedium","robotomonothin","robotomonolight","robotomonobold","robotomonolgr","robotomonofamily"]}
-,
-"roboto-serif.sty":{"envs":{},"deps":["ifxetex.sty","ifluatex.sty","xkeyval.sty","textcomp.sty","fontenc.sty","fontaxes.sty","mweights.sty"],"cmds":["robotoserifBlack","robotoserifBold","robotoserifLF","robotoserifLight","robotoserifMedium","robotoserifOsF","robotoserifRegular","robotoserifThin","robotoserifTLF","robotoserifTOsF","robotoserif","robotoserifblack","robotoserifbold","robotoserifboldcondensed","robotoserifcondensed","robotoseriflf","robotoseriflight","robotoserifmedium","robotoserifosf","robotoserifregular","robotoserifthin","robotoseriftlf","robotoseriftosf","robotoseriffamily"]}
-,
-"roboto.sty":{"envs":{},"deps":["ifxetex.sty","ifluatex.sty","textcomp.sty","xkeyval.sty","fontenc.sty","fontaxes.sty","mweights.sty"],"cmds":["robotoLF","robotoTLF","robotoOsF","robotoTOsF","robotoThin","robotoLight","robotoRegular","robotoMedium","robotoBold","robotoBlack","roboto","robotocondensed","robotoboldcondensed","robotoslab","robotoregular","robotolight","robotobold","robotoosf","robotolf","robototlf","robototosf","robotothin","robotomedium","robotoblack","robotolgr","robotoslablgr","robotofamily","robotoslabfamily"]}
-,
-"robustglossary.sty":{"envs":{},"deps":{},"cmds":["glopageref","glostring","thegloctr","themaxgloctr"]}
-,
-"robustindex.sty":{"envs":{},"deps":["makeidx.sty"],"cmds":["gobblepageref","indexincontents","setindex","sindex","indexcapstyle","altsort","capitalsinindex","cndhyprndxwrng","encpageref","extraheaders","findEndPageRange","findencap","gobbleindpageref","gobbletillnine","indexcapitalhead","indexpreamble","indnr","indpageref","indstring","jmptonine","newindex","olditem","robustchoice","robustcutpoint","theindexctr","themaxindctr","themultindctr","untilrobustcutpoint","wrapindpageref","wrappageref"]}
-,
-"rojud.sty":{"envs":{},"deps":{},"cmds":["jAB","jAG","jAR","jBC","jBH","jBI","jBN","jBR","jBT","jBV","jBZ","jCJ","jCL","jCS","jCT","jCV","jDB","jDJ","jGJ","jGL","jGR","jHD","jHR","jIF","jIL","jIS","jMH","jMM","jMS","jNT","jOT","jPH","jSB","jSJ","jSM","jSV","jTL","jTM","jTR","jVL","jVN","jVS","paintt"]}
-,
-"romanbar.sty":{"envs":{},"deps":{},"cmds":["Romanbar","romannum","Romannum","ifnumeric"]}
-,
-"romande.sty":{"envs":{},"deps":["xkeyval.sty","fontenc.sty","textcomp.sty","nfssext-cfr.sty"],"cmds":["altstyle","textalt","swashstyle","textswash","DH","NG","dj","ng","k","guillemotleft","guillemotright","guilsinglleft","guilsinglright","quotedblbase","quotesinglbase","textquotedbl","DJ","th","TH","dh","Hwithstroke","hwithstroke","textogonekcentered","guillemetleft","guillemetright"]}
-,
-"romannum.sty":{"envs":{},"deps":["stdclsdv.sty"],"cmds":["Romannum","romannum"]}
-,
-"rotating.sty":{"envs":["sidewaystable","sidewaystable*","sidewaysfigure","sidewaysfigure*","sideways","turn","rotate"],"deps":["graphicx.sty"],"cmds":["turnbox","rotFPtop","rotFPbot"]}
-,
-"rotchiffre.sty":{"envs":{},"deps":["infwarerr.sty","ltxcmds.sty","pdfescape.sty"],"cmds":["EdefRot"]}
-,
-"rotpages.sty":{"envs":{},"deps":["calc.sty","graphics.sty","ifthen.sty"],"cmds":["rotboxpages","endrotboxpages","rotboxheight","rotboxwidth","rotboxAtRotationHook","rotboxAtShippingHook"]}
-,
-"rotunda.sty":{"envs":{},"deps":{},"cmds":["textrtnd","rtndfamily","Tienc"]}
-,
-"roundbox.sty":{"envs":{},"deps":{},"cmds":["roundbox"]}
-,
-"rsfso.sty":{"envs":{},"deps":["xkeyval.sty"],"cmds":["mathscr"]}
-,
-"rsphrase.sty":{"envs":{},"deps":["ifthen.sty","textcomp.sty"],"cmds":["rsnumber","rsphrase","iflanguage"]}
-,
-"rterface.sty":{"envs":{},"deps":["newfile.sty"],"cmds":["Rtilde","Rcmd","Rvalue","Rtable","Rset","Rcode"]}
-,
-"rubikcube.sty":{"envs":{},"deps":["forarray.sty","ifthen.sty","tikz.sty"],"cmds":["Blb","Blm","Blt","Cubiedx","Cubiedy","Dlb","Dlm","Dlt","DrawCubieLD","DrawCubieLU","DrawCubieRD","DrawCubieRU","DrawNCubeAll","DrawNotationBox","DrawRubikCube","DrawRubikCubeF","DrawRubikCubeFrontFace","DrawRubikCubeLD","DrawRubikCubeLU","DrawRubikCubeRD","DrawRubikCubeRU","DrawRubikCubeSF","DrawRubikCubeSidebarBD","DrawRubikCubeSidebarBDLD","DrawRubikCubeSidebarBDRD","DrawRubikCubeSidebarBL","DrawRubikCubeSidebarBLLD","DrawRubikCubeSidebarBLLU","DrawRubikCubeSidebarBR","DrawRubikCubeSidebarBRRD","DrawRubikCubeSidebarBRRU","DrawRubikCubeSidebarBU","DrawRubikCubeSidebarBULU","DrawRubikCubeSidebarBURU","DrawRubikCubeSidebarDB","DrawRubikCubeSidebarDBLD","DrawRubikCubeSidebarDBRD","DrawRubikCubeSidebarDF","DrawRubikCubeSidebarDFLU","DrawRubikCubeSidebarDFRU","DrawRubikCubeSidebarFD","DrawRubikCubeSidebarFDLU","DrawRubikCubeSidebarFDRU","DrawRubikCubeSidebarFL","DrawRubikCubeSidebarFLRD","DrawRubikCubeSidebarFLRU","DrawRubikCubeSidebarFR","DrawRubikCubeSidebarFRLD","DrawRubikCubeSidebarFRLU","DrawRubikCubeSidebarFU","DrawRubikCubeSidebarFULD","DrawRubikCubeSidebarFURD","DrawRubikCubeSidebarLB","DrawRubikCubeSidebarLBLD","DrawRubikCubeSidebarLBLU","DrawRubikCubeSidebarLF","DrawRubikCubeSidebarLFRD","DrawRubikCubeSidebarLFRU","DrawRubikCubeSidebarRB","DrawRubikCubeSidebarRBRD","DrawRubikCubeSidebarRBRU","DrawRubikCubeSidebarRF","DrawRubikCubeSidebarRFLD","DrawRubikCubeSidebarRFLU","DrawRubikCubeSidebarUB","DrawRubikCubeSidebarUBLU","DrawRubikCubeSidebarUBRU","DrawRubikCubeSidebarUF","DrawRubikCubeSidebarUFLD","DrawRubikCubeSidebarUFRD","DrawRubikFaceB","DrawRubikFaceBack","DrawRubikFaceBackSide","DrawRubikFaceBS","DrawRubikFaceD","DrawRubikFaceDown","DrawRubikFaceDownSide","DrawRubikFaceDS","DrawRubikFaceF","DrawRubikFaceFront","DrawRubikFaceFrontSide","DrawRubikFaceFS","DrawRubikFaceL","DrawRubikFaceLeft","DrawRubikFaceLeftSide","DrawRubikFaceLS","DrawRubikFaceR","DrawRubikFaceRight","DrawRubikFaceRightSide","DrawRubikFaceRS","DrawRubikFaceU","DrawRubikFaceUp","DrawRubikFaceUpSide","DrawRubikFaceUS","DrawRubikFlatBack","DrawRubikFlatDown","DrawRubikFlatFront","DrawRubikFlatLeft","DrawRubikFlatRight","DrawRubikFlatUp","Flb","Flm","Flt","Llb","Llm","Llt","NoSidebar","RCfiledate","RCfileversion","Rlb","Rlm","Rlt","rr","rrB","rrb","rrBa","rrBap","rrBc","rrBcp","rrBm","rrBmp","rrBp","rrbp","rrBs","rrBsp","rrBw","rrBwp","rrCB","rrCBp","rrCD","rrCDp","rrCF","rrCFp","rrCL","rrCLp","rrCR","rrCRp","rrCU","rrCUp","rrD","rrd","rrDa","rrDap","rrDc","rrDcp","rrDm","rrDmp","rrDp","rrdp","rrDs","rrDsp","rrDw","rrDwp","rrE","rrEp","rrF","rrf","rrFa","rrFap","rrFc","rrFcp","rrFm","rrFmp","rrFp","rrfp","rrFs","rrFsp","rrFw","rrFwp","rrh","rrhB","rrhb","rrhBa","rrhBap","rrhBc","rrhBcp","rrhBm","rrhBmp","rrhBp","rrhbp","rrhBs","rrhBsp","rrhBw","rrhBwp","rrhCB","rrhCBp","rrhCD","rrhCDp","rrhCF","rrhCFp","rrhCL","rrhCLp","rrhCR","rrhCRp","rrhCU","rrhCUp","rrhD","rrhd","rrhDa","rrhDap","rrhDc","rrhDcp","rrhDm","rrhDmp","rrhDp","rrhdp","rrhDs","rrhDsp","rrhDw","rrhDwp","rrhE","rrhEp","rrhF","rrhf","rrhFa","rrhFap","rrhFc","rrhFcp","rrhFm","rrhFmp","rrhFp","rrhfp","rrhFs","rrhFsp","rrhFw","rrhFwp","rrhL","rrhl","rrhLa","rrhLap","rrhLc","rrhLcp","rrhLm","rrhLmp","rrhLp","rrhlp","rrhLs","rrhLsp","rrhLw","rrhLwp","rrhM","rrhMB","rrhMBp","rrhMD","rrhMDp","rrhMF","rrhMFp","rrhML","rrhMLp","rrhMp","rrhMR","rrhMRp","rrhMU","rrhMUp","rrhR","rrhr","rrhRa","rrhRap","rrhRc","rrhRcp","rrhRm","rrhRmp","rrhRp","rrhrp","rrhRs","rrhRsp","rrhRw","rrhRwp","rrhS","rrhSB","rrhSb","rrhSBp","rrhSbp","rrhSD","rrhSd","rrhSDp","rrhSdp","rrhSF","rrhSf","rrhSFp","rrhSfp","rrhSL","rrhSl","rrhSLp","rrhSlp","rrhSp","rrhSR","rrhSr","rrhSRp","rrhSrp","rrhSU","rrhSu","rrhSUp","rrhSup","rrhTB","rrhTBp","rrhTD","rrhTDp","rrhTF","rrhTFp","rrhTL","rrhTLp","rrhTR","rrhTRp","rrhTU","rrhTUp","rrhU","rrhu","rrhUa","rrhUap","rrhUc","rrhUcp","rrhUm","rrhUmp","rrhUp","rrhup","rrhUs","rrhUsp","rrhUw","rrhUwp","rrhx","rrhxp","rrhy","rrhyp","rrhz","rrhzp","rrL","rrl","rrLa","rrLap","rrLc","rrLcp","rrLm","rrLmp","rrLp","rrlp","rrLs","rrLsp","rrLw","rrLwp","rrM","rrMB","rrMBp","rrMD","rrMDp","rrMF","rrMFp","rrML","rrMLp","rrMp","rrMR","rrMRp","rrMU","rrMUp","rrR","rrr","rrRa","rrRap","rrRc","rrRcp","rrRm","rrRmp","rrRp","rrrp","rrRs","rrRsp","rrRw","rrRwp","rrS","rrSB","rrSb","rrSBp","rrSbp","rrSD","rrSd","rrSDp","rrSdp","rrSF","rrSf","rrSFp","rrSfp","rrSL","rrSl","rrSLp","rrSlp","rrSp","rrSR","rrSr","rrSRp","rrSrp","rrSU","rrSu","rrSUp","rrSup","rrTB","rrTBp","rrTD","rrTDp","rrTF","rrTFp","rrTL","rrTLp","rrTR","rrTRp","rrTU","rrTUp","rrU","rru","rrUa","rrUap","rrUc","rrUcp","rrUm","rrUmp","rrUp","rrup","rrUs","rrUsp","rrUw","rrUwp","rrx","rrxp","rry","rryp","rrz","rrzp","Rubik","RubikB","Rubikb","RubikBa","RubikBap","RubikBc","RubikBcp","RubikBm","RubikBmp","RubikBp","Rubikbp","RubikBs","RubikBsp","RubikBw","RubikBwp","RubikCB","RubikCBp","RubikCD","RubikCDp","RubikCF","RubikCFp","RubikCL","RubikCLp","RubikCR","RubikCRp","RubikCU","Rubikcube","rubikcube","RubikCubeGray","RubikCubeGrayAll","RubikCubeGrayWB","RubikCubeGrayWY","RubikCubeGrey","RubikCubeGreyAll","RubikCubeGreyWB","RubikCubeGreyWY","RubikCubeSolved","RubikCubeSolvedWB","RubikCubeSolvedWY","RubikCUp","RubikD","Rubikd","RubikDa","RubikDap","RubikDc","RubikDcp","RubikDm","RubikDmp","RubikDp","Rubikdp","RubikDs","RubikDsp","RubikDw","RubikDwp","RubikE","RubikEp","RubikF","Rubikf","RubikFa","RubikFaceBack","RubikFaceBackAll","RubikFaceDown","RubikFaceDownAll","RubikFaceFront","RubikFaceFrontAll","RubikFaceLeft","RubikFaceLeftAll","RubikFaceRight","RubikFaceRightAll","RubikFaceUp","RubikFaceUpAll","RubikFap","RubikFc","RubikFcp","RubikFm","RubikFmp","RubikFp","Rubikfp","RubikFs","RubikFsp","RubikFw","RubikFwp","RubikL","Rubikl","RubikLa","RubikLap","RubikLc","RubikLcp","RubikLm","RubikLmp","RubikLp","Rubiklp","RubikLs","RubikLsp","RubikLw","RubikLwp","RubikM","RubikMB","RubikMBp","RubikMD","RubikMDp","RubikMF","RubikMFp","RubikML","RubikMLp","RubikMp","RubikMR","RubikMRp","RubikMU","RubikMUp","RubikR","Rubikr","RubikRa","RubikRap","RubikRc","RubikRcp","RubikRm","RubikRmp","RubikRp","Rubikrp","RubikRs","RubikRsp","RubikRw","RubikRwp","RubikS","RubikSB","RubikSb","RubikSBp","RubikSbp","RubikSD","RubikSd","RubikSDp","RubikSdp","RubikSF","RubikSf","RubikSFp","RubikSfp","RubikSidebarLength","RubikSideBarLength","RubikSidebarSep","RubikSideBarSep","RubikSidebarWidth","RubikSideBarWidth","RubikSL","RubikSl","RubikSliceBottomL","RubikSliceBottomR","RubikSliceEquatorL","RubikSliceEquatorR","RubikSliceMiddleL","RubikSliceMiddleR","RubikSliceTopL","RubikSliceTopR","RubikSLp","RubikSlp","RubikSolvedConfig","RubikSp","RubikSR","RubikSr","RubikSRp","RubikSrp","RubikSU","RubikSu","RubikSUp","RubikSup","RubikTB","RubikTBp","RubikTD","RubikTDp","RubikTF","RubikTFp","RubikTL","RubikTLp","RubikTR","RubikTRp","RubikTU","RubikTUp","RubikU","Rubiku","RubikUa","RubikUap","RubikUc","RubikUcp","RubikUm","RubikUmp","RubikUp","Rubikup","RubikUs","RubikUsp","RubikUw","RubikUwp","Rubikx","Rubikxp","Rubiky","Rubikyp","Rubikz","Rubikzp","SequenceBraceA","SequenceBraceAF","SequenceBraceB","SequenceBraceBF","SequenceInfo","SequenceLong","SequenceName","SequenceShort","ShowCube","ShowCubeF","ShowSequence","ShowSequenceF","ShowSequencef","SquareB","SquareBa","SquareBap","SquareBm","SquareBmp","SquareBp","SquareBs","SquareBsp","SquareBw","SquareBwp","SquareD","SquareDa","SquareDap","SquareDp","SquareDs","SquareDsp","SquareDw","SquareDwp","SquareE","SquareEp","SquareF","SquareFa","SquareFap","SquareFm","SquareFmp","SquareFp","SquareFs","SquareFsp","SquareFw","SquareFwp","SquareL","SquareLa","SquareLap","SquareLp","SquareLs","SquareLsp","SquareLw","SquareLwp","SquareM","SquareMB","SquareMBp","SquareMF","SquareMFp","SquareMp","SquareR","SquareRa","SquareRap","SquareRp","SquareRs","SquareRsp","SquareRw","SquareRwp","SquareS","SquareSB","SquareSb","SquareSBp","SquareSbp","SquareSF","SquareSf","SquareSFp","SquareSfp","SquareSp","SquareTB","SquareTBp","SquareU","SquareUa","SquareUap","SquareUp","SquareUs","SquareUsp","SquareUw","SquareUwp","textCubieLD","textCubieLU","textCubieRD","textCubieRU","textRubik","textRubikB","textRubikb","textRubikBa","textRubikBap","textRubikBc","textRubikBcp","textRubikBm","textRubikBmp","textRubikBp","textRubikbp","textRubikBs","textRubikBsp","textRubikBw","textRubikBwp","textRubikCB","textRubikCBp","textRubikCD","textRubikCDp","textRubikCF","textRubikCFp","textRubikCL","textRubikCLp","textRubikCR","textRubikCRp","textRubikCU","textRubikCUp","textRubikD","textRubikd","textRubikDa","textRubikDap","textRubikDc","textRubikDcp","textRubikDm","textRubikDmp","textRubikDp","textRubikdp","textRubikDs","textRubikDsp","textRubikDw","textRubikDwp","textRubikE","textRubikEp","textRubikF","textRubikf","textRubikFa","textRubikFap","textRubikFc","textRubikFcp","textRubikFm","textRubikFmp","textRubikFp","textRubikfp","textRubikFs","textRubikFsp","textRubikFw","textRubikFwp","textRubikL","textRubikl","textRubikLa","textRubikLap","textRubikLc","textRubikLcp","textRubikLm","textRubikLmp","textRubikLp","textRubiklp","textRubikLs","textRubikLsp","textRubikLw","textRubikLwp","textRubikM","textRubikMB","textRubikMBp","textRubikMD","textRubikMDp","textRubikMF","textRubikMFp","textRubikML","textRubikMLp","textRubikMp","textRubikMR","textRubikMRp","textRubikMU","textRubikMUp","textRubikR","textRubikr","textRubikRa","textRubikRap","textRubikRc","textRubikRcp","textRubikRm","textRubikRmp","textRubikRp","textRubikrp","textRubikRs","textRubikRsp","textRubikRw","textRubikRwp","textRubikS","textRubikSB","textRubikSb","textRubikSBp","textRubikSbp","textRubikSD","textRubikSd","textRubikSDp","textRubikSdp","textRubikSF","textRubikSf","textRubikSFp","textRubikSfp","textRubikSL","textRubikSl","textRubikSLp","textRubikSlp","textRubikSp","textRubikSR","textRubikSr","textRubikSRp","textRubikSrp","textRubikSU","textRubikSu","textRubikSUp","textRubikSup","textRubikTB","textRubikTBp","textRubikTD","textRubikTDp","textRubikTF","textRubikTFp","textRubikTL","textRubikTLp","textRubikTR","textRubikTRp","textRubikTU","textRubikTUp","textRubikU","textRubiku","textRubikUa","textRubikUap","textRubikUc","textRubikUcp","textRubikUm","textRubikUmp","textRubikUp","textRubikup","textRubikUs","textRubikUsp","textRubikUw","textRubikUwp","textRubikx","textRubikxp","textRubiky","textRubikyp","textRubikz","textRubikzp","Ulb","Ulm","Ult","x","xcount"]}
-,
-"rubikpatterns.sty":{"envs":{},"deps":{},"cmds":["Anaconda","BlackMamba","CheckerboardsSix","CheckerboardsThree","ChristmasCross","CubeInCube","CubeInCubeInCube","EdgeHexagonThree","EdgeHexagonTwo","ExchangedChickenFeet","ExchangedDuckFeet","ExchangedPeaks","ExchangedRings","FemaleBoa","FemaleRattlesnake","FourSpot","FourTwistedPeaks","GreenMamba","MaleBoa","MaleRattlesnake","OrthogonalBars","PlummersCross","PonsAsinorum","Python","RPfiledate","RPfileversion","RonsCubeInCube","SixSpot","SixTs","SixTwoOne","Stripes","Superflip","TomParksPattern","TwistedChickenFeet","TwistedDuckFeet","TwistedRings","TwoTwistedPeaks","anaconda","blackmamba","checkerboardssix","checkerboardsthree","christmascross","cubeincube","cubeincubeincube","edgehexagonthree","edgehexagontwo","exchangedchickenfeet","exchangedduckfeet","exchangedpeaks","exchangedrings","femaleboa","femalerattlesnake","fourspot","fourtwistedpeaks","greenmamba","maleboa","malerattlesnake","orthogonalbars","plummerscross","ponsasinorum","python","ronscubeincube","rubikpatterns","sixspot","sixts","sixtwoone","stripes","superflip","tomparkspattern","twistedchickenfeet","twistedduckfeet","twistedrings","twotwistedpeaks"]}
-,
-"rubikrotation.sty":{"envs":{},"deps":["fancyvrb.sty","ifluatex.sty","shellesc.sty"],"cmds":["CheckRubikState","CheckState","RRfiledate","RRfileversion","RubikRotation","Rubikrotation","SaveRubikState","ShowErrors","ShowRubikErrors","next","rubikpercentchar","rubikperlcmd","rubikperlname","rubikrotation"]}
-,
-"rubiktwocube.sty":{"envs":{},"deps":["tikz.sty"],"cmds":["Blt","Dlt","DrawTwoCube","DrawTwoCubeF","DrawTwoCubeFrontFace","DrawTwoCubeLD","DrawTwoCubeLU","DrawTwoCubeRD","DrawTwoCubeRU","DrawTwoCubeSF","DrawTwoCubeSidebarBD","DrawTwoCubeSidebarBDLD","DrawTwoCubeSidebarBDRD","DrawTwoCubeSidebarBL","DrawTwoCubeSidebarBLLD","DrawTwoCubeSidebarBLLU","DrawTwoCubeSidebarBR","DrawTwoCubeSidebarBRRD","DrawTwoCubeSidebarBRRU","DrawTwoCubeSidebarBU","DrawTwoCubeSidebarBULU","DrawTwoCubeSidebarBURU","DrawTwoCubeSidebarDB","DrawTwoCubeSidebarDBLD","DrawTwoCubeSidebarDBRD","DrawTwoCubeSidebarDF","DrawTwoCubeSidebarDFLU","DrawTwoCubeSidebarDFRU","DrawTwoCubeSidebarFD","DrawTwoCubeSidebarFDLU","DrawTwoCubeSidebarFDRU","DrawTwoCubeSidebarFL","DrawTwoCubeSidebarFLRD","DrawTwoCubeSidebarFLRU","DrawTwoCubeSidebarFR","DrawTwoCubeSidebarFRLD","DrawTwoCubeSidebarFRLU","DrawTwoCubeSidebarFU","DrawTwoCubeSidebarFULD","DrawTwoCubeSidebarFURD","DrawTwoCubeSidebarLB","DrawTwoCubeSidebarLBLD","DrawTwoCubeSidebarLBLU","DrawTwoCubeSidebarLF","DrawTwoCubeSidebarLFRD","DrawTwoCubeSidebarLFRU","DrawTwoCubeSidebarRB","DrawTwoCubeSidebarRBRD","DrawTwoCubeSidebarRBRU","DrawTwoCubeSidebarRF","DrawTwoCubeSidebarRFLD","DrawTwoCubeSidebarRFLU","DrawTwoCubeSidebarUB","DrawTwoCubeSidebarUBLU","DrawTwoCubeSidebarUBRU","DrawTwoCubeSidebarUF","DrawTwoCubeSidebarUFLD","DrawTwoCubeSidebarUFRD","DrawTwoFaceB","DrawTwoFaceBack","DrawTwoFaceBackSide","DrawTwoFaceBS","DrawTwoFaceD","DrawTwoFaceDown","DrawTwoFaceDownSide","DrawTwoFaceDS","DrawTwoFaceF","DrawTwoFaceFront","DrawTwoFaceFrontSide","DrawTwoFaceFS","DrawTwoFaceL","DrawTwoFaceLeft","DrawTwoFaceLeftSide","DrawTwoFaceLS","DrawTwoFaceR","DrawTwoFaceRight","DrawTwoFaceRightSide","DrawTwoFaceRS","DrawTwoFaceU","DrawTwoFaceUp","DrawTwoFaceUpSide","DrawTwoFaceUS","DrawTwoFlatBack","DrawTwoFlatDown","DrawTwoFlatFront","DrawTwoFlatLeft","DrawTwoFlatRight","DrawTwoFlatUp","Flb","Flt","Llb","Llt","NoSidebar","Rlt","RTCfiledate","RTCfileversion","rubiktwocube","SaveTwoState","SquaretD","SquaretDp","SquaretL","SquaretLp","SquaretR","SquaretRp","SquaretU","SquaretUp","textTwo","textTwoB","textTwob","textTwoBc","textTwoBcp","textTwoBp","textTwobp","textTwoCB","textTwoCBp","textTwoCD","textTwoCDp","textTwoCF","textTwoCFp","textTwoCL","textTwoCLp","textTwoCR","textTwoCRp","textTwoCU","textTwoCUp","textTwoD","textTwod","textTwoDc","textTwoDcp","textTwoDp","textTwodp","textTwoF","textTwof","textTwoFc","textTwoFcp","textTwoFp","textTwofp","textTwoL","textTwol","textTwoLc","textTwoLcp","textTwoLp","textTwolp","textTwoR","textTwor","textTwoRc","textTwoRcp","textTwoRp","textTworp","textTwoU","textTwou","textTwoUc","textTwoUcp","textTwoUp","textTwoup","textTwox","textTwoxp","textTwoy","textTwoyp","textTwoz","textTwozp","tr","trB","trb","trBc","trBcp","trBp","trbp","trCB","trCBp","trCD","trCDp","trCF","trCFp","trCL","trCLp","trCR","trCRp","trCU","trCUp","trD","trd","trDc","trDcp","trDp","trdp","trF","trf","trFc","trFcp","trFp","trfp","trh","trhB","trhb","trhBc","trhBcp","trhBp","trhbp","trhCB","trhCBp","trhCD","trhCDp","trhCF","trhCFp","trhCL","trhCLp","trhCR","trhCRp","trhCU","trhCUp","trhD","trhd","trhDc","trhDcp","trhDp","trhdp","trhF","trhf","trhFc","trhFcp","trhFp","trhfp","trhL","trhl","trhLc","trhLcp","trhLp","trhlp","trhR","trhr","trhRc","trhRcp","trhRp","trhrp","trhU","trhu","trhUc","trhUcp","trhUp","trhup","trhx","trhxp","trhy","trhyp","trhz","trhzp","trL","trl","trLc","trLcp","trLp","trlp","trR","trr","trRc","trRcp","trRp","trrp","trU","tru","trUc","trUcp","trUp","trup","trx","trxp","try","tryp","trz","trzp","Two","TwoB","Twob","TwoBc","TwoBcp","TwoBp","Twobp","TwoCB","TwoCBp","TwoCD","TwoCDp","TwoCF","TwoCFp","TwoCL","TwoCLp","TwoCR","TwoCRp","TwoCU","TwoCubeGray","TwoCubeGrayAll","TwoCubeGrey","TwoCubeGreyAll","TwoCubeSolved","TwoCubeSolvedWB","TwoCubeSolvedWY","TwoCUp","TwoD","Twod","TwoDc","TwoDcp","TwoDp","Twodp","TwoF","Twof","TwoFaceBack","TwoFaceBackAll","TwoFaceDown","TwoFaceDownAll","TwoFaceFront","TwoFaceFrontAll","TwoFaceLeft","TwoFaceLeftAll","TwoFaceRight","TwoFaceRightAll","TwoFaceUp","TwoFaceUpAll","TwoFc","TwoFcp","TwoFp","Twofp","TwoL","Twol","TwoLc","TwoLcp","TwoLp","Twolp","TwoR","Twor","TwoRc","TwoRcp","TwoRotation","TwoRp","Tworp","TwoSidebarLength","TwoSidebarSep","TwoSidebarWidth","TwoSliceBottomL","TwoSliceBottomR","TwoSliceTopL","TwoSliceTopR","TwoSolvedConfig","TwoU","Twou","TwoUc","TwoUcp","TwoUp","Twoup","Twox","Twoxp","Twoy","Twoyp","Twoz","Twozp","Ult"]}
-,
-"ruby.sty":{"envs":{},"deps":["CJK.sty"],"cmds":["rubysize","rubysep","rubyoverlap","rubynooverlap","rubyCJK","rubylatin","ruby"]}
-,
-"rulerbox.sty":{"envs":{},"deps":{},"cmds":["rulerbox","rulerleftfalse","rulerlefttrue","rulerrightfalse","rulerrighttrue","rulertopfalse","rulertoptrue","rulerbottomfalse","rulerbottomtrue","rulerunit","rulersep","rulerwidth","rtickrule"]}
-,
-"runcode.sty":{"envs":["codelisting"],"deps":["morewrites.sty","tcolorbox.sty","tcolorboxlibrarymany.sty","xcolor.sty","inputenc.sty","textgreek.sty","filecontents.sty","xifthen.sty","xparse.sty","xstring.sty","minted.sty","listings.sty"],"cmds":["runExtCode","showCode","includeOutput","inln","runJulia","inlnJulia","runMatlab","inlnMatlab","runR","inlnR","runPython","inlnPython","runPythonBatch","checkZeroBytes","runcmd","setvalue","thecodeOutput","thecodelisting","generated","tempfile","tmpname","ifruncode","runcodetrue","runcodefalse","ifminted","mintedtrue","mintedfalse","ifreducedspace","reducedspacetrue","reducedspacefalse","ifnotnohup","notnohuptrue","notnohupfalse"]}
-,
-"runic.sty":{"envs":{},"deps":{},"cmds":["futfamily","textfut","Fthorn","Fng"]}
-,
-"rustex.sty":{"envs":{},"deps":["xspace.sty"],"cmds":["RusTeX","rustex","rustexBREAK"]}
-,
-"rustic.sty":{"envs":{},"deps":{},"cmds":["textrust","rustfamily","Tienc"]}
-,
-"rviewport.sty":{"envs":{},"deps":["keyval.sty"],"cmds":{}}
-,
-"rvwrite.sty":{"envs":{},"deps":{},"cmds":["newrvwrite","rvwrite","ervwrite","dlrchr","hshchr","bslchr","lbrchr","rbrchr","tldchr","ampchr","rvtwrite","Filedate","Fileversion","fileversion","filedate"]}
-,
-"ryersonSGSThesis.cls":{"envs":["ryersonSGSThesis"],"deps":["s-report.cls","geometry.sty","float.sty","hyperref.sty","cite.sty","amsfonts.sty","amssymb.sty","amsmath.sty","verbatim.sty","lmodern.sty","setspace.sty","longtable.sty","array.sty","ragged2e.sty","appendix.sty","listings.sty","algpseudocode.sty","algorithm.sty","algorithmicx.sty","xcolor.sty","todonotes.sty","makeidx.sty","subfiles.sty","blindtext.sty","glossaries.sty","graphicx.sty","caption.sty","subcaption.sty","charter.sty","IEEEtrantools.sty","sectsty.sty","csquotes.sty","titlesec.sty","colortbl.sty"],"cmds":["B","backmatter","define","frontmatter","indexText","mainmatter","setAbstract","setAcknowledgements","setAuthor","setAuthorsDeclaration","setDedication","setDepartment","setLocation","setPastDegreeA","setPastDegreeB","setPastDegreeC","setPastDegreeD","setThesisDegree","setThesisYear","setTitle","setUniversity","T","printacronyms"]}
-,
-"sa-tikz.sty":{"envs":{},"deps":["tikz.sty"],"cmds":{}}
-,
-"sacsymb.sty":{"envs":{},"deps":["tikz.sty"],"cmds":["ca","cb","cc","cd","ce","cf","cg","ch","ci","cj","ck","cl","cm","cn","co","cq","cs","ct","cu","cv","cw"]}
-,
-"sagej.cls":{"envs":["acks","biog","biogs","dci","funding"],"deps":["graphicx.sty","latexsym.sty","ifthen.sty","rotating.sty","calc.sty","textcase.sty","booktabs.sty","color.sty","endnotes.sty","amsfonts.sty","amssymb.sty","amsbsy.sty","amsmath.sty","amsthm.sty","tracefnt.sty","caption.sty","times.sty","helvet.sty","setspace.sty","natbib.sty","mslapa.sty","geometry.sty","ftnright.sty"],"cmds":["absbox","affiliation","affilnum","corrauth","email","endpage","issuenumber","journalclass","journalclassshort","journalname","keywords","refsize","runninghead","sagesf","startpage","titlesize","update","volumenumber","volumeyear"]}
-,
-"sagetex.sty":{"envs":["sageblock","sagesilent","sageverbatim","sageexample","sagecommandline","NoHyper"],"deps":["verbatim.sty","fancyvrb.sty","listings.sty","xcolor.sty","graphicx.sty","makecmds.sty","ifpdf.sty","ifthen.sty"],"cmds":["sage","sagestr","percent","sageplot","sagetexindent","sagetexpause","sagetexunpause","sageexampleincludetextoutput","sagecommandlinetextoutput","sagecommandlineskip"]}
-,
-"sankey.sty":{"envs":["sankeydiagram"],"deps":["etoolbox.sty","tikz.sty","tikzlibrarycalc.sty","tikzlibrarydecorations.markings.sty","tikzlibrarydubins.sty","xfp.sty","xparse.sty"],"cmds":["sankeyset","sankeynode","sankeynodestart","sankeynodeend","sankeygetnodeqty","sankeyqtytolen","sankeygetnodeorient","sankeyadvance","sankeyturn","sankeyturnleft","sankeyturnleftbackward","sankeyturnright","sankeyturnrightbackward","sankeyoutin","sankeydubins","sankeystart","sankeyend","sankeyfork","sankeynodealias","name","qty","orient","pos"]}
-,
-"sansmath.sty":{"envs":["sansmath"],"deps":{},"cmds":["sansmath","unsansmath","mathsfsl","sfsl","mathsfbf","sfbf","matheug","sansmathencoding","EulGreek","EuUCGreek","NonEulGreek","EulGreekList","sfMathSwitch"]}
-,
-"sansmathfonts.sty":{"envs":{},"deps":{},"cmds":["mathserif"]}
-,
-"sapthesis.cls":{"envs":["abstract","acknowledgments"],"deps":["xkeyval.sty","s-book.cls","geometry.sty","ifxetex.sty","fontenc.sty","textcomp.sty","lmodern.sty","caption.sty","graphicx.sty","color.sty","booktabs.sty","amsmath.sty","etoolbox.sty","fancyhdr.sty"],"cmds":["subtitle","alttitle","IDnumber","course","cycle","courseorganizer","AcademicYear","advisor","customadvisorlabel","coadvisor","customcoadvisorlabel","director","customdirectorlabel","examdate","examiner","thesistype","ISBN","copyyear","copyrightstatement","versiondate","website","authoremail","reviewer","extrainfo","dedication","eu","iu","der","pder","rb","rp","tb","tp","un","g","degree","C","celsius","A","angstrom","micro","ohm","di","x","DH","dh","dj","DJ","guillemetleft","guillemetright","guillemotleft","guillemotright","guilsinglleft","guilsinglright","Hwithstroke","hwithstroke","k","NG","ng","quotedblbase","quotesinglbase","textogonekcentered","textquotedbl","th","TH"]}
-,
-"sarabian.sty":{"envs":{},"deps":{},"cmds":["sarabfamily","textsarab","SAa","SAb","SAd","SAdb","SAdd","SAf","SAg","SAga","SAh","SAhd","SAhu","SAk","SAl","SAlq","SAm","SAn","SAo","SAq","SAr","SArq","SAs","SAsa","SAsd","SAsv","SAt","SAtb","SAtd","SAw","SAy","SAz","SAzd","translitsarab","translitsarabfont"]}
-,
-"saveenv.sty":{"envs":["saveenv","saveenvghost","saveenvkeeplast","saveenvreinsert","saveenvkeeplastreinsert"],"deps":["precattl.sty"],"cmds":{}}
-,
-"savesym.sty":{"envs":{},"deps":{},"cmds":["savesymbol","restoresymbol"]}
-,
-"savetrees.sty":{"envs":{},"deps":["xkeyval.sty","ifpdf.sty","ifluatex.sty","titlesec.sty","geometry.sty","calc.sty","microtype.sty"],"cmds":["markeverypar","savetreesbibnote"]}
-,
-"sbl-paper.sty":{"envs":{},"deps":["geometry.sty","textcase.sty","setspace.sty","titlesec.sty","titletoc.sty","fancyhdr.sty","footmisc.sty","bibleref-parse.sty","biblatex.sty","imakeidx.sty","hyperref.sty"],"cmds":["firstsection","institution","professor","course","Pbibleverse","Pibibleverse","printsblversion","printsbldate","xprintsbldateiso","xprintsbldateau","ifciteidemsbl","namedashpunct","lexiconfinalnamedelim","volpostnotedelim","mkibid","addskipentry","addincludeentry","abbrevwidth","setmaxlength","iffirstcharsec","iffirstcharnum","thecurrentpublisher","thecurrentlocation","thecurrentorganization","thecurrentinstitution","thepublishertotal","thelocationtotal","theorganizationtotal","theinstitutiontotal","savepostnotes","postnotefirst","postnotelast","splitpostnote","volsplitpostnote","volvol","setuppostnotes","citefullauthor","Citefullauthor","citejournal","citeseries","citeshorthand","bibentrycite","biblistcite","DeclareNestableCiteCommand"]}
-,
-"scalebar.sty":{"envs":{},"deps":["ifthen.sty","calc.sty","fp.sty"],"cmds":["scalebar","SBRound"]}
-,
-"scalefnt.sty":{"envs":{},"deps":{},"cmds":["scalefont"]}
-,
-"scalerel.sty":{"envs":{},"deps":["calc.sty","graphicx.sty","etoolbox.sty"],"cmds":["scalerel","stretchrel","scaleto","stretchto","scaleleftright","stretchleftright","hstretch","vstretch","scaleobj","ThisStyle","SavedStyle","LMex","LMpt","scriptstyleScaleFactor","scriptscriptstyleScaleFactor","Isnextbyte","theresult","ignoremathstyle","discernmathstyle","thesrwidth","thesrheight","srblobheight","srblobdepth","mnxsrwidth"]}
-,
-"scanpages.sty":{"envs":{},"deps":["ifpdf.sty","pgffor.sty","xcolor.sty","xkeyval.sty","fp-basic.sty","graphicx.sty","etoolbox.sty"],"cmds":["scanpage","initviewport","whitesq","whitecirc","origpgcmd","origpgnum","putn","thegrid","fileversion","filedate"]}
-,
-"schedule.sty":{"envs":["schedule"],"deps":["calc.sty","xcolor.sty"],"cmds":["class","CellHeight","CellWidth","TimeRange","SubUnits","BeginOn","TextSize","FiveDay","SevenDay","TwelveHour","TwentyFourHour","NewAppointment","LineThickness","IncludeWeekends","NoWeekends","ifweekends","weekendstrue","weekendsfalse","iftwelve","twelvetrue","twelvefalse","ifsetboxdepth","setboxdepthtrue","setboxdepthfalse","ifinrange","inrangetrue","inrangefalse","thexcoords","theycoords"]}
-,
-"schemata.sty":{"envs":{},"deps":{},"cmds":["DoBraces","DoBrackets","DoGroups","DoParens","LCschema","NudgeSB","SBNudgeFactor","Schema","schema","schemabox","schemataLaTeX","SwitchSB","UCschema"]}
-,
-"schola-otf.sty":{"envs":{},"deps":["iftex.sty","xkeyval.sty","textcomp.sty","unicode-math.sty"],"cmds":["scholaOsF","scholaTLF","Lctosc","LCtoSC","Lctosmcp","LCtoSMCP","Lliga","LLIGA","Lhlig","LHLIG","Ldlig","LDLIG","Lcpsp","LCPSP","Lsalt","LSALT","Lss","LSS","Lsup","Lsinf","Land","Lcase","LCASE","Lfrac","LFRAC","schola","sufigures","textsup","textinit","mbfscra","mbfscrb","mbfscrc","mbfscrd","mbfscre","mbfscrf","mbfscrg","mbfscrh","mbfscri","mbfscrj","mbfscrk","mbfscrl","mbfscrm","mbfscrn","mbfscro","mbfscrp","mbfscrq","mbfscrr","mbfscrs","mbfscrt","mbfscru","mbfscrv","mbfscrw","mbfscrx","mbfscry","mbfscrz","mscra","mscrb","mscrc","mscrd","mscre","mscrf","mscrg","mscrh","mscri","mscrj","mscrk","mscrl","mscrm","mscrn","mscro","mscrp","mscrq","mscrr","mscrs","mscrt","mscru","mscrv","mscrw","mscrx","mscry","mscrz"]}
-,
-"scholax.sty":{"envs":{},"deps":["textcomp.sty","xstring.sty","fontenc.sty","mweights.sty","fontaxes.sty","etoolbox.sty","xkeyval.sty","ifthen.sty"],"cmds":["infigures","lfstyle","osfstyle","sufigures","textfrac","textin","textinferior","textlf","textosf","textsu","textsuperior","texttlf","texttosf","thfamily","tlfstyle","tosfstyle","useosf","useproportional","DH","NG","dj","ng","k","guillemotleft","guillemotright","guilsinglleft","guilsinglright","quotedblbase","quotesinglbase","textquotedbl","DJ","th","TH","dh","Hwithstroke","hwithstroke","textogonekcentered","guillemetleft","guillemetright"]}
-,
-"schooldocs.sty":{"envs":{},"deps":["geometry.sty","fancyhdr.sty","ifthen.sty","lastpage.sty","fancybox.sty","xcolor.sty","translations.sty"],"cmds":["title","subject","school","institute","subtitle","maketitle","seprule","correct","makesmalltitle","titlestyle","subjectstyle","datestyle","smalltitledatestyle","titleflush","titletopskip","smalltitletopskip","titlebottomskip","titlesep","seprulewidth","seprulelength","subtitlestyle","titlecorrectstyle","boxedshape","headstyle","footstyle","headtitlestyle","headsubjectstyle","schoolstyle","headdatestyle","authorstyle","pagenamestyle","pagename","correctname","identityname","identityforename"]}
-,
-"schule.sty":{"envs":["aufgabe","aufgabe*","teilaufgaben","loesung","loesung*","mcumgebung","bearbeitungshinweis","erwartungen","enumerate*","itemize*","description*","smalldescription","smallenumerate","smallitemize","mehrspaltig","zeilenNr","zeilenNrMehrspaltig","zeilenNrZweispaltig","scMaterial","scNeedSkillCards","scAufgabe","scLoesung","scStoryCard","scSkillCard","klassenDokumentation","hinweisBox","greyFrame","handlungsfeld1","handlungsfeld2","handlungsfeld3","handlungsfeld4","handlungsfeld5","handlungsfeld6"],"deps":["pgfopts.sty","xifthen.sty","xstring.sty","forarray.sty","babel.sty","inputenc.sty","fontenc.sty","environ.sty","amsmath.sty","xcolor.sty","tikz.sty","graphicx.sty","hyperref.sty","schulealt.sty","xsim.sty","tcolorbox.sty","utfsym.sty","enumitem.sty","multirow.sty","longtable.sty","ctable.sty","array.sty","tasks.sty","csquotes.sty","setspace.sty","ulem.sty","xspace.sty","amssymb.sty","eurosym.sty","zref-totpages.sty","refcount.sty","doclicense.sty","ccicons.sty","lineno.sty","multicol.sty","struktex.sty","relaycircuit.sty","pgf-umlcd.sty","pgf-umlsd.sty","syntaxdi.sty","tikzlibraryer.sty","listings.sty","tikzlibraryshapes.sty","tikzlibraryshadows.blur.sty","units.sty","mhchem.sty","ziffer.sty","biblatex.sty","marginnote.sty","scrlayer-scrpage.sty","scrhack.sty","standalone.sty","mdframed.sty","geometry.sty","tcolorboxlibrarybreakable.sty","tcolorboxlibraryskins.sty","colortbl.sty"],"cmds":["swarnung","sfehler","sinfo","sdwarnung","sdinfo","setzeSymbol","punkteAufgabe","punkteTotal","punktuebersicht","setzeAufgabentemplate","teilaufgabe","teilaufgabeOhneLoesung","luecke","textluecke","choice","mcrichtig","mcloesung","bearbeitungshinweisZuAufgabe","bearbeitungshinweisliste","erwartung","erwartungshorizont","notenverteilung","achtung","chb","hinweis","person","so","Seitenzahlen","diastring","hierkeineseitenzahl","abhierkeineseitenzahl","feldLinFormular","Lkr","Lkre","Lpr","Lprn","EuE","EuEn","EK","GK","LK","EKe","GKe","LKe","EKen","GKen","LKen","SuS","SuSn","LuL","LuLn","KuK","KuKn","lizenzName","lizenzNameKurz","lizenzSymbol","Autor","Datum","Titel","Fach","Lerngruppe","Kurs","DokumentNummer","feldLin","feldKar","feldMil","symNase","symAuge","symAugen","symMund","symZunge","symOhr","symDaumenHoch","symDaumenRunter","symZeigefinger","symApplaus","symSprechblase","symZweiSprechblasen","symDreiSprechblasen","symDenkblase","symPalette","symBleistift","symFueller","symKuli","symBuntstift","symLineal","symGeodreieck","symBueroklammer","symBueroklammern","symPin","symNadel","symPinsel","symBuch","symBild","symMikroskop","symHeft","symBuecher","symKlemmbrett","symCD","symZeitung","symThermometer","symSchere","symSchloss","symSchlossOffen","symSchluessel","symGlocke","symKeineGlocke","symLupe","symNote","symNoten","symSmileyLachend","symSmileyNeutral","symSmileyTraurig","symSmileyGrinsend","symSmileySchlafend","symSmileyZwinkernd","symKlee","symSonne","symMond","symStern","symUhr","symHaken","symSpielkarte","symPik","symHerz","symKaro","symKreuz","symPikAss","symPikZwei","symPikDrei","symPikVier","symPikFuenf","symPikSechs","symPikSieben","symPikAcht","symPikNeun","symPikZehn","symPikBube","symPikDame","symPikKoenig","symHerzAss","symHerzZwei","symHerzDrei","symHerzVier","symHerzFuenf","symHerzSechs","symHerzSieben","symHerzAcht","symHerzNeun","symHerzZehn","symHerzBube","symHerzDame","symHerzKoenig","symKaroAss","symKaroZwei","symKaroDrei","symKaroVier","symKaroFuenf","symKaroSechs","symKaroSieben","symKaroAcht","symKaroNeun","symKaroZehn","symKaroBube","symKaroDame","symKaroKoenig","symKreuzAss","symKreuzZwei","symKreuzDrei","symKreuzVier","symKreuzFuenf","symKreuzSechs","symKreuzSieben","symKreuzAcht","symKreuzNeun","symKreuzZehn","symKreuzBube","symKreuzDame","symKreuzKoenig","symBaseball","symBasketball","symFussball","symVolleyball","symHockey","symLaufen","symReiten","symSchwimmen","symSki","symSnowboard","symSurfen","symTennis","symTischtennis","symPokal","symMedaille","symZielflagge","symHandy","symKeinHandy","symTheater","symAuto","symBus","symBahn","symStrassenbahn","symSchwebebahn","symSeilbahn","symSchiff","symBoot","symFahrrad","symFussgaenger","symRollstuhl","symWuerfelEins","symWuerfelZwei","symWuerfelDrei","symWuerfelVier","symWuerfelFuenf","symWuerfelSechs","resetZeilenNr","anchormark","skaliereSequenzdiagramm","newthreadtwo","nextlevel","methodenDokumentation","elementarladung","plankscheEV","plankscheJ","elektronenmasse","protonenmasse","material","quelle","vt","thematcounter","thequelcounter","thevtcounter","dokumententypName","TextFeld","monatWort","uebungBild","hinweisBild","headingpar","besuchtitel","lehrer","schulform","lerngruppe","zeit","schule","raum","setzeGrundlagen","captionsngerman","datengerman","extrasngerman","noextrasngerman","dq","ntosstrue","ntossfalse","prefacename","bibname","chaptername","enclname","ccname","headtoname","pagename","seename","alsoname","proofname","glossaryname","mdqon","mdqoff","DH","dh","dj","DJ","guillemetleft","guillemetright","guillemotleft","guillemotright","guilsinglleft","guilsinglright","Hwithstroke","hwithstroke","k","NG","ng","quotedblbase","quotesinglbase","textogonekcentered","textquotedbl","th","TH"]}
-,
-"schulma-ab.cls":{"envs":["Kreisliste","Aufgaben","Teilaufgaben","Lsg"],"deps":["s-scrartcl.cls","adjustbox.sty","babel.sty","isodate.sty","schulma.sty","schulma-physik.sty","tasks.sty","enumitem.sty","scrlayer-scrpage.sty","comment.sty"],"cmds":["Kurs","Datum","Thema","Bearbeiter","schulmaalph","Aufgabentitel","Aufgabenabstand","Aufgabe","Uebung","theAufgabe","theTeilaufgabe","Teilaufgabenabstand","Luecke","NurAufgabe","NurLoesung","captionsngerman","datengerman","extrasngerman","noextrasngerman","dq","ntosstrue","ntossfalse","prefacename","bibname","chaptername","enclname","ccname","headtoname","pagename","seename","alsoname","proofname","glossaryname","mdqon","mdqoff","captionsnaustrian","datenaustrian","extrasnaustrian","noextrasnaustrian"]}
-,
-"schulma-gutachten.cls":{"envs":["Gutachten"],"deps":["s-scrartcl.cls","babel.sty","datetime2.sty","siunitx.sty"],"cmds":["Schule","Ort","Datum","Fach","Gesamtpunktzahl","Name","NameDativ","captionsngerman","datengerman","extrasngerman","noextrasngerman","dq","ntosstrue","ntossfalse","prefacename","bibname","chaptername","enclname","ccname","headtoname","pagename","seename","alsoname","proofname","glossaryname","mdqon","mdqoff","captionsnaustrian","datenaustrian","extrasnaustrian","noextrasnaustrian"]}
-,
-"schulma-klausur.cls":{"envs":["Teilaufgaben","Lsg"],"deps":["etoolbox.sty","schulma.sty","schulma-physik.sty","s-scrartcl.cls","scrlayer-scrpage.sty","pdfpages.sty","geometry.sty","comment.sty","beamerarticle.sty","tasks.sty","adjustbox.sty","babel.sty","datetime2.sty","s-schulma-praes.cls","pgfpages.sty"],"cmds":["Nr","theAufgabe","theTeilaufgabe","Aufgabenabstand","Teilaufgabenabstand","Kurs","Datum","Aufgabe","schulmaalph","Klausurtitel","Klausuruntertitel","Klausurteiltitel","Bearbeitungszeit","Hilfsmittel","Loesungsdatum","Formeldokument","Gruppen","Aufgabentitel","Notenspiegel","Notenpunktspiegel","FarbeAufgabe","FarbeLoesung","NurAufgabe","NurLoesung","captionsngerman","datengerman","extrasngerman","noextrasngerman","dq","ntosstrue","ntossfalse","prefacename","bibname","chaptername","enclname","ccname","headtoname","pagename","seename","alsoname","proofname","glossaryname","mdqon","mdqoff","captionsnaustrian","datenaustrian","extrasnaustrian","noextrasnaustrian"]}
-,
-"schulma-komp.cls":{"envs":{},"deps":["s-schulma-ab.cls"],"cmds":["Abschnitt","Unterabschnitt","Unterunterabschnitt"]}
-,
-"schulma-mdlprf.cls":{"envs":{},"deps":["s-scrartcl.cls","babel.sty","datetime2.sty","schulma.sty","schulma-physik.sty"],"cmds":["Schule","Datum","Fach","Vorbereitungsraum","Vorbereitungszeit","Pruefungsraum","Pruefer","PNummer","Hilfsmittel","Aufgabe","Erwartungshorizont","WeitereThemen","Pruefung","captionsngerman","datengerman","extrasngerman","noextrasngerman","dq","ntosstrue","ntossfalse","prefacename","bibname","chaptername","enclname","ccname","headtoname","pagename","seename","alsoname","proofname","glossaryname","mdqon","mdqoff","captionsnaustrian","datenaustrian","extrasnaustrian","noextrasnaustrian"]}
-,
-"schulma-physik.sty":{"envs":{},"deps":["siunitx.sty","tikz.sty","tikzlibrarycircuits.ee.IEC.sty","circuitikz.sty"],"cmds":["Massstab","tqty","tunit","Beschl","Erdb","Ortsf","Elem","Elekm","Lichtg","Planck","EFK","MFK","Messschieber","Messschraube","Kraftmesser","tSI","tsi"]}
-,
-"schulma-praes.cls":{"envs":{},"deps":["s-beamer.cls","etoolbox.sty","adjustbox.sty","babel.sty","isodate.sty","schulma.sty","schulma-physik.sty","tasks.sty","pgfpages.sty"],"cmds":["Kurs","Datum","Thema","schulmaalph","Unterklammer","Produktregel","captionsngerman","datengerman","extrasngerman","noextrasngerman","dq","ntosstrue","ntossfalse","prefacename","bibname","chaptername","enclname","ccname","headtoname","pagename","seename","alsoname","proofname","glossaryname","mdqon","mdqoff","captionsnaustrian","datenaustrian","extrasnaustrian","noextrasnaustrian"]}
-,
-"schulma.sty":{"envs":["Kosy"],"deps":["mathtools.sty","autoaligne.sty","icomma.sty","pgfplots.sty","tikzlibraryshapes.misc.sty"],"cmds":["LGS","ehoch","diff","Pkt","PktR","Vek","VekBr","GTRY"]}
-,
-"schwalbe.cls":{"envs":["Editorial","aktuell","InformalEntscheid","Aufsatz","Titel","Untertitel","Urdrucke","maerchenlexikon","retrolexikon","Loesungen","BuB","turnierberichte","Buecher","WebSites","Briefkasten","Turnierbericht","Entscheid","Loeserliste","Bericht","Gruss","Tagung"],"deps":["schwalbe.sty","fontenc.sty","inputenc.sty","babel.sty","eurosym.sty","ifthen.sty","times.sty","multicol.sty","url.sty","paralist.sty","afterpage.sty"],"cmds":["Heft","Abteilung","maerchenart","retroart","Loeser","ListeLoeserKuerzel","Loesung","showsol","Buch","WebSite","TurnierAusschreibung","Nachruf","dauerkonto","loesungswettbewerb","dh","ua","zB","su","ep","seedia","bsol","esol","figline","foto","mal","MeasureNewpage","Briefkasten","Einladung","Entscheid","Geburtstag","Inhalt","LoesungenBis","SchwalbeCopyright","Turnierberichte","Verstorben","aTurnier","aufsatz","bTurnier","eEntscheid","editorial","turnier","wK","Ruler","ShowRuler","DH","dj","DJ","guillemetleft","guillemetright","guillemotleft","guillemotright","guilsinglleft","guilsinglright","Hwithstroke","hwithstroke","k","NG","ng","quotedblbase","quotesinglbase","textogonekcentered","textquotedbl","th","TH","C","CYRA","cyra","CYRAE","cyrae","CYRB","cyrb","CYRC","cyrc","CYRCH","cyrch","CYRCHRDSC","cyrchrdsc","CYRCHVCRS","cyrchvcrs","CYRD","cyrd","cyrdash","CYRDJE","cyrdje","CYRDZE","cyrdze","CYRDZHE","cyrdzhe","CYRE","cyre","CYREREV","cyrerev","CYRERY","cyrery","CYRF","cyrf","CYRG","cyrg","CYRGHCRS","cyrghcrs","CYRGUP","cyrgup","CYRH","cyrh","CYRHDSC","cyrhdsc","CYRHRDSN","cyrhrdsn","CYRI","cyri","CYRIE","cyrie","CYRII","cyrii","CYRISHRT","cyrishrt","CYRJE","cyrje","CYRK","cyrk","CYRKBEAK","cyrkbeak","CYRKDSC","cyrkdsc","CYRKVCRS","cyrkvcrs","CYRL","cyrl","cyrlangle","CYRLJE","cyrlje","CYRM","cyrm","CYRN","cyrn","CYRNDSC","cyrndsc","CYRNG","cyrng","CYRNJE","cyrnje","CYRO","cyro","CYROTLD","cyrotld","CYRP","cyrp","CYRpalochka","CYRQ","cyrq","CYRR","cyrr","cyrrangle","CYRS","cyrs","CYRSCHWA","cyrschwa","CYRSDSC","cyrsdsc","CYRSFTSN","cyrsftsn","CYRSH","cyrsh","CYRSHCH","cyrshch","CYRSHHA","cyrshha","CYRT","cyrt","CYRTSHE","cyrtshe","CYRU","cyru","CYRUSHRT","cyrushrt","CYRV","cyrv","CYRW","cyrw","CYRY","cyry","CYRYA","cyrya","CYRYHCRS","cyryhcrs","CYRYI","cyryi","CYRYO","cyryo","CYRYU","cyryu","CYRZ","cyrz","CYRZDSC","cyrzdsc","CYRZH","cyrzh","CYRZHDSC","cyrzhdsc","f","U","asbuk","Asbuk","Russian","sh","ch","tg","ctg","arctg","arcctg","cth","cosec","Prob","Variance","NOD","nod","NOK","nok","Proj","cyrillicencoding","cyrillictext","cyr","textcyrillic","dq","captionsrussian","daterussian","extrasrussian","noextrasrussian","cdash","prefacename","bibname","chaptername","tocname","authorname","enclname","ccname","headtoname","pagename","seename","alsoname","proofname","glossaryname","acronymname","lstlistingname","lstlistlistingname","notesname","nomname","captionsgerman","dategerman","extrasgerman","noextrasgerman","tosstrue","tossfalse","mdqon","mdqoff","ck","captionsenglish","dateenglish","extrasenglish","noextrasenglish","englishhyphenmins","britishhyphenmins","americanhyphenmins","captionsngerman","datengerman","extrasngerman","noextrasngerman","ntosstrue","ntossfalse"]}
-,
-"schwalbe.sty":{"envs":{},"deps":["diagram.sty"],"cmds":["rb","normaldia","smalldia","urdruck","windowpar","bel","ferner","reprint","helplength","boardskip","doublediagram"]}
-,
-"scientific-thesis-cover.sty":{"envs":{},"deps":["kvoptions.sty","ifthen.sty"],"cmds":["Coverpage","Affirmation","ifinputencloaded","inputencloadedtrue","inputencloadedfalse","labelsenglish","labelsgerman","Titelblatt","Versicherung"]}
-,
-"scikgtex.sty":{"envs":{},"deps":["luatex.sty","suffix.sty","hyperref.sty"],"cmds":["researchproblem","objective","method","result","conclusion","metatitle","metaauthor","researchfield","contribution","uri","addmetaproperty","useignorespacesandallpars","ignorespacesandallpars","newpropertycommand"]}
-,
-"sciposter.cls":{"envs":["algorithm"],"deps":["ifthen.sty","lettrine.sty","graphics.sty","color.sty","shadow.sty","a0size.sty","times.sty","boxedminipage.sty"],"cmds":["institute","leftlogo","rightlogo","noleftlogo","norightlogo","nologos","email","titlesize","authorsize","instsize","VERYHuge","VeryHuge","veryHuge","conference","footlogo","logowidth","LEFTSIDEfootlogo","setmargins","PARstart","subfigure","capstart","algorithmname","mastercapstartstyle","figcapstartstyle","tablecapstartstyle","algcapstartstyle","mastercapbodystyle","figcapbodystyle","tablecapbodystyle","algcapbodystyle","thealgorithm","papertype","fontpointsize","setpspagesize","orientation","sectionsize","subsectionsize","PlainBoxSection","PlainSection","RuledSection","Section","SubSection","capbodystyle","capfirstskip","caplastskip","figbotskip","figtopskip","papermargin","parstartskip","printemail","printleftlogo","printrightlogo","printstyle","requestpointsize","sPlainBoxSection","sPlainSection","sRuledSection","sSection","sSubSection","secboxwidth","secrulewidth","secskip","secstyle","setfooter","tempsize","theinstitute","thesubfig","titleskip","titlewidth"]}
-,
-"sclang-prettifier.sty":{"envs":{},"deps":["textcomp.sty","xcolor.sty","listings.sty"],"cmds":["scttfamily"]}
-,
-"scontents.sty":{"envs":["scontents","verbatimsc"],"deps":["l3keys2e.sty"],"cmds":["setupsc","newenvsc","Scontents","getstored","foreachsc","typestored","meaningsc","countsc","cleanseqsc","ScontentsFileDate","ScontentsFileVersion","ScontentsFileDescription"]}
-,
-"scraddr.sty":{"envs":{},"deps":["scrlogo.sty"],"cmds":["InputAddressFile","adrentry","addrentry","addrchar","adrchar","Name","FirstName","LastName","Address","Telephone","FreeI","FreeII","Comment","FreeIII","FreeIV"]}
-,
-"scrambledenvs.sty":{"envs":{},"deps":["ifthen.sty","forloop.sty","pgfmath.sty"],"cmds":["newscrambledenv","defaultlabelfont","defaultrefprefix","defaultreffont","defaultprintenv","defaultprintitem"]}
-,
-"scrartcl,scrreprt,scrbook.cls":{"envs":["addmargin"],"deps":["scrpage2.sty"],"cmds":["addchap","addpart","addsec","addtokomafont","areaset","captionabove","captionbelow","chapappifchapterprefix","dedication","deffootnote","deffootnotemark","dictumauthorformat","dictum","enlargethispage","extratitle","ifpdfoutput","ifthispageodd","ifthispagewasodd","linespread","lowertitleback","maketitle","marginline","markboth","markleft","markright","minisec","othersectionlevelsformat","publishers","setbibpreamble","setcapindent","setcapmargin","setcapwidth","setchapterpreamble","SetDIVList","setindexpreamble","setkomafont","setpartpreamble","subject","subtitle","textsubscript","textsuperscript","titlehead","typearea","uppertitleback","usekomafont","appendixmore","autodot","backmatter","capfont","caplabelfont","captionformat","chapapp","chapterformat","chaptermarkformat","chapterpagestyle","contentsname","descfont","dictumwidth","figureformat","frontmatter","indexpagestyle","listfigurename","listtablename","mainmatter","partformat","partpagestyle","raggeddictum","raggeddictumauthor","raggeddictumtext","raggedsection","sectfont","sectionmarkformat","setcaphanging","subsectionmarkformat","tableformat","titlepagestyle","pdfoutput","pdfpageheight","pdfpagewidth","KOMAScript","clearpage","cleardoublepage","cleardoublepageusingstyle","cleardoubleemptypage","cleardoubleplainpage","cleardoublestandardpage","cleardoubleoddusingstyle","cleardoubleoddemptypage","cleardoubleoddpage","cleardoubleoddplainpage","cleardoubleoddstandardpage","cleardoubleevenusingstyle","cleardoubleevenemptypage","cleardoubleevenpage","cleardoubleevenplainpage","cleardoubleevenstandardpage","defpagestyle","newpagestyle","renewpagestyle","providepagestyle"]}
-,
-"scrartcl.cls":{"envs":["addmargin*"],"deps":["scrkbase.sty","tocbasic.sty","typearea.sty","scrlogo.sty","scrlayer-scrpage.sty"],"cmds":["defaultpapersize","addparagraphtocentry","addpart","addpartmark","addparttocentry","addsec","addsecmark","addsectiontocentry","addsubparagraphtocentry","addsubsectiontocentry","addsubsubsectiontocentry","addtocentrydefault","AddToSectionCommandOptionsDoList","AfterBibliographyPreamble","AtEndBibliography","autodot","bibpreamble","BreakBibliography","capfont","caplabelfont","captionabove","captionaboveof","captionbelow","captionbelowof","captionformat","captionof","changefontsizes","ClassName","cleardoubleemptypage","cleardoubleevenemptypage","cleardoubleevenpage","cleardoubleevenpageusingstyle","cleardoubleevenplainpage","cleardoubleevenstandardpage","cleardoubleoddemptypage","cleardoubleoddpage","cleardoubleoddpageusingstyle","cleardoubleoddplainpage","cleardoubleoddstandardpage","cleardoublepageusingstyle","cleardoubleplainpage","cleardoublestandardpage","coverpagebottommargin","coverpageleftmargin","coverpagerightmargin","coverpagetopmargin","DeclareNewSectionCommand","DeclareNewSectionCommands","DeclareSectionCommand","DeclareSectionCommands","DeclareSectionCommandStyleFontOption","DeclareSectionCommandStyleFuzzyOption","DeclareSectionCommandStyleLengthOption","DeclareSectionCommandStyleNumberOption","DeclareSectionCommandStyleOption","dedication","deffootnote","deffootnotemark","descfont","dictum","dictumauthorformat","dictumrule","dictumwidth","extratitle","FamilyElseValue","figureformat","footfont","frontispiece","headfont","Ifnumbered","ifonelinecaptions","IfSectionCommandStyleIs","Ifthispageodd","ifthispagewasodd","Ifunnumbered","IfUseNumber","IfUsePrefixLine","indexpagestyle","KOMAClassFileName","KOMAClassName","labelinglabel","listoftocname","lowertitleback","maketitle","marginline","minisec","multfootsep","multiplefootnotemarker","multiplefootnoteseparator","newbibstyle","onelinecaptionsfalse","onelinecaptionstrue","pagemark","paragraphformat","paragraphnumdepth","paragraphtocdepth","partformat","partheadendvskip","partheadmidvskip","partheadstartvskip","partlineswithprefixformat","partmark","partnumdepth","parttocdepth","pnumfont","ProvideSectionCommand","ProvideSectionCommands","publishers","raggedcaption","raggeddictum","raggeddictumauthor","raggeddictumtext","raggedfootnote","raggedpart","raggedsection","raggedsectionentry","RedeclareSectionCommand","RedeclareSectionCommands","RelaxSectionCommandOptions","SecDef","sectfont","sectioncatchphraseformat","sectionformat","sectionlinesformat","sectionmarkformat","sectionnumdepth","sectiontocdepth","setbibpreamble","setcapdynwidth","setcaphanging","setcapindent","setcapmargin","setcaptionalignment","setcapwidth","setfootnoterule","setindexpreamble","setparsizes","subject","subparagraphformat","subparagraphnumdepth","subparagraphtocdepth","subsectionformat","subsectionmarkformat","subsectionnumdepth","subsectiontocdepth","subsubsectionformat","subsubsectionnumdepth","subsubsectiontocdepth","subtitle","tableformat","thefootnotemark","thispagewasoddfalse","thispagewasoddtrue","titlefont","titlehead","titlepagestyle","uppertitleback","UseNumberUsageError","ifnumbered","ifthispageodd","ifunnumbered","othersectionlevelsformat"]}
-,
-"scratch3.sty":{"envs":["scratch"],"deps":["simplekv.sty","tikz.sty","tikzlibraryshapes.misc.sty","tikzlibrarybending.sty"],"cmds":["blockmove","blocklook","blocksound","blockpen","blockvariable","blocklist","blockevent","blockcontrol","blocksensing","ovalnum","ovalmove","ovallook","ovalsound","ovalpen","ovalvariable","ovallist","ovalcontrol","ovalsensing","ovaloperator","turnleft","turnright","pencolor","blockinit","blockinitclone","greenflag","selectmenu","blockif","blockifelse","booloperator","boolsensing","boollist","boolempty","blockstop","blockrepeat","blockinfloop","initmoreblocks","namemoreblocks","ovalmoreblocks","blockmoreblocks","boolmoreblocks","blockspace","setscratch","setdefaultscratch","resetscratch","numblock","scrdate","scrname","scrver"]}
-,
-"scrbase.sty":{"envs":{},"deps":["scrlfile.sty","keyval.sty","scrlogo.sty"],"cmds":["KOMAScriptVersion","rloop","IfLTXAtLeastTF","DefineFamily","DefineFamilyMember","DefineFamilyKey","RelaxFamilyKey","FamilyKeyState","FamilyKeyStateUnknown","FamilyKeyStateUnknownValue","FamilyKeyStateNeedValue","FamilyKeyStateProcessed","FamilyOfKey","FamilyMemberOfKey","FamilyProcessOptions","AtEndOfFamilyOptions","IfArgIsEmpty","XdivY","XmodY","Ifundefinedorrelax","Ifnotundefined","Ifstr","Ifstrstart","Ifislengthprimitive","Ifisdimen","Ifisskip","Ifiscount","Ifisdimexpr","Ifisglueexpr","Ifisnumexpr","Ifisdefchar","Ifiscounter","Ifisinteger","Ifisdimension","Ifisglue","Ifnumber","Ifintnumber","Ifdimen","Ifpdfoutput","Ifpsoutput","Ifdvioutput","IfRTL","IfLTR","PackageInfoNoLine","ClassInfoNoLine","IfActiveMkBoth","BeforeFamilyProcessOptions","FamilyExecuteOptions","FamilyOptions","FamilyOption","FamilyUnknownKeyValue","FamilyElseValues","FamilyBoolKey","FamilySetBool","FamilyInverseBoolKey","FamilySetInverseBool","FamilyCounterKey","FamilySetCounter","FamilyCounterMacroKey","FamilySetCounterMacro","FamilyLengthKey","FamilySetLength","FamilyLengthMacroKey","FamilySetLengthMacro","FamilyUseLengthMacroKey","FamilySetUseLengthMacro","FamilyNumericalKey","FamilySetNumerical","FamilyStringKey","FamilyCSKey","ForDoHook","SplitDoHook","ExecuteDoHook","AddtoDoHook","AddtoOneTimeDoHook","defcaptionname","providecaptionname","newcaptionname","renewcaptionname","ifnotundefined","ifislengthprimitive","ifisdefchar","ifstr","ifstrstart","ifisdimen","ifisskip","ifiscount","ifisdimexpr","ifisglueexpr","ifisnumexpr","ifiscounter","ifisinteger","ifisdimension","ifisglue","ifnumber","ifintnumber","ifdimen","ifpdfoutput","ifpsoutput","ifdvioutput"]}
-,
-"scrbook.cls":{"envs":["addmargin*"],"deps":["scrkbase.sty","typearea.sty","scrlayer-scrpage.sty"],"cmds":["defaultpapersize","addchap","addchapmark","addchaptertocentry","addparagraphtocentry","addpart","addpartmark","addparttocentry","addsec","addsecmark","addsectiontocentry","addsubparagraphtocentry","addsubsectiontocentry","addsubsubsectiontocentry","addtocentrydefault","AddToSectionCommandOptionsDoList","AfterBibliographyPreamble","appendixmore","AtEndBibliography","autodot","backmatter","bibpreamble","BreakBibliography","capfont","caplabelfont","captionabove","captionaboveof","captionbelow","captionbelowof","captionformat","captionof","changefontsizes","chapapp","chapappifchapterprefix","chapter","chapterformat","chapterheadendvskip","chapterheadmidvskip","chapterheadstartvskip","chapterlinesformat","chapterlineswithprefixformat","chaptermarkformat","chapternumdepth","chapterpagestyle","ClassName","cleardoubleemptypage","cleardoubleevenemptypage","cleardoubleevenpage","cleardoubleevenpageusingstyle","cleardoubleevenplainpage","cleardoubleevenstandardpage","cleardoubleoddemptypage","cleardoubleoddpage","cleardoubleoddpageusingstyle","cleardoubleoddplainpage","cleardoubleoddstandardpage","cleardoublepageusingstyle","cleardoubleplainpage","cleardoublestandardpage","coverpagebottommargin","coverpageleftmargin","coverpagerightmargin","coverpagetopmargin","DeclareNewSectionCommand","DeclareNewSectionCommands","DeclareSectionCommand","DeclareSectionCommands","DeclareSectionCommandStyleFontOption","DeclareSectionCommandStyleFuzzyOption","DeclareSectionCommandStyleLengthOption","DeclareSectionCommandStyleNumberOption","DeclareSectionCommandStyleOption","dedication","deffootnote","deffootnotemark","descfont","dictum","dictumauthorformat","dictumrule","dictumwidth","extratitle","FamilyElseValue","figureformat","footfont","frontispiece","frontmatter","headfont","IfChapterUsesPrefixLine","Ifnumbered","ifonelinecaptions","IfSectionCommandStyleIs","Ifthispageodd","ifthispagewasodd","Ifunnumbered","IfUseNumber","IfUsePrefixLine","indexpagestyle","KOMAClassFileName","KOMAClassName","labelinglabel","listoftocname","lowertitleback","mainmatter","maketitle","marginline","minisec","multfootsep","multiplefootnotemarker","multiplefootnoteseparator","newbibstyle","onelinecaptionsfalse","onelinecaptionstrue","pagemark","paragraphformat","paragraphnumdepth","paragraphtocdepth","partformat","partheademptypage","partheadendvskip","partheadmidvskip","partheadstartvskip","partlineswithprefixformat","partmark","partnumdepth","partpagestyle","parttocdepth","pnumfont","ProvideSectionCommand","ProvideSectionCommands","publishers","raggedcaption","raggedchapter","raggedchapterentry","raggeddictum","raggeddictumauthor","raggeddictumtext","raggedfootnote","raggedpart","raggedsection","raggedsectionentry","RedeclareSectionCommand","RedeclareSectionCommands","RelaxSectionCommandOptions","SecDef","sectfont","sectioncatchphraseformat","sectionformat","sectionlinesformat","sectionmarkformat","sectionnumdepth","sectiontocdepth","setbibpreamble","setcapdynwidth","setcaphanging","setcapindent","setcapmargin","setcaptionalignment","setcapwidth","setchapterpreamble","setfootnoterule","setindexpreamble","setparsizes","setpartpreamble","subject","subparagraphformat","subparagraphnumdepth","subparagraphtocdepth","subsectionformat","subsectionmarkformat","subsectionnumdepth","subsectiontocdepth","subsubsectionformat","subsubsectionnumdepth","subsubsectiontocdepth","subtitle","tableformat","thechapter","thefootnotemark","thispagestyle","thispagewasoddfalse","thispagewasoddtrue","titlefont","titlehead","titlepagestyle","uppertitleback","UseNumberUsageError","ifnumbered","ifthispageodd","ifunnumbered","othersectionlevelsformat"]}
-,
-"scrdate.sty":{"envs":{},"deps":["scrkbase.sty"],"cmds":["CenturyPart","DecadePart","DayNumber","ISODayNumber","DayName","ISODayName","DayNameByNumber","ISOToday","IsoToday","todaysname","todaysnumber","nameday","newdaylanguage"]}
-,
-"scrdoc.cls":{"envs":["Counter"],"deps":["s-ltxdoc.cls","s-scrartcl.cls"],"cmds":["Class","CounterName","CountersName","EnvName","EnvsName","eTeX","File","KOMAfontName","KOMAfontsName","KOMAvarName","KOMAvarsName","LengthName","LengthsName","Macro","newDescribe","Option","OptionName","OptionsName","Package","PrintCounterName","PrintDescribeCounter","PrintDescribeKOMAfont","PrintDescribeKOMAvar","PrintDescribeLength","PrintDescribeOption","PrintKOMAfontName","PrintKOMAvarName","PrintLengthName","PrintOptionName","SpecialCounterIndex","SpecialKOMAvarIndex","SpecialLengthIndex","SpecialMainCounterIndex","SpecialMainKOMAfontIndex","SpecialMainKOMAvarIndex","SpecialMainLengthIndex","SpecialMainOptionIndex","SpecialOptionIndex"]}
-,
-"screenplay-pkg.sty":{"envs":["screenplay","dialogue","titleover"],"deps":["ifthen.sty","setspace.sty"],"cmds":["fadein","intslug","extslug","intextslug","extintslug","paren","dialbreak","titbreak","centertitle","centretitle","intercut","pov","revert","fadeout","theend","screenspacing","screenfont","contd","dialfix","dialgutter","dialnametab","dialtab","dialwidth","exttext","fadeintext","fadeouttext","intercuttext","inttext","more","parentab","parenwidth","placesep","punctchar","sccenter","sccentre","sepintext","scflushright","slugspace","slug","thirty","titleovertext","widthgutter"]}
-,
-"screenplay.cls":{"envs":["dialogue","titleover"],"deps":["ifthen.sty","geometry.sty","courier.sty"],"cmds":["realauthor","address","agent","coverpage","nicholl","fadein","intslug","extslug","intextslug","extintslug","paren","dialbreak","titbreak","centretitle","intercut","pov","revert","fadeout","theend","addrseplen","addrwidth","byskip","bytext","contd","dialfix","dialgutter","dialnametab","dialtab","dialwidth","exttext","fadeintext","fadeouttext","intercuttext","inttext","more","parentab","parenwidth","placesep","punctchar","sccentre","sepintext","scflushright","slugspace","slug","thirty","titheadskip","titleovertext","titskip","widthgutter"]}
-,
-"scrextend.sty":{"envs":["addmargin*"],"deps":["scrkbase.sty","scrlogo.sty"],"cmds":["changefontsizes","cleardoubleemptypage","cleardoubleevenemptypage","cleardoubleevenpage","cleardoubleevenpageusingstyle","cleardoubleevenplainpage","cleardoubleevenstandardpage","cleardoubleoddemptypage","cleardoubleoddpage","cleardoubleoddpageusingstyle","cleardoubleoddplainpage","cleardoubleoddstandardpage","cleardoublepageusingstyle","cleardoubleplainpage","cleardoublestandardpage","coverpagebottommargin","coverpageleftmargin","coverpagerightmargin","coverpagetopmargin","dedication","deffootnote","deffootnotemark","dictum","dictumauthorformat","dictumrule","dictumwidth","extratitle","FamilyElseValue","frontispiece","Ifthispageodd","ifthispagewasodd","labelinglabel","lowertitleback","maketitle","marginline","multfootsep","multiplefootnotemarker","multiplefootnoteseparator","publishers","raggeddictum","raggeddictumauthor","raggeddictumtext","raggedfootnote","sectfont","subject","subtitle","thefootnotemark","thispagewasoddfalse","thispagewasoddtrue","titlefont","titlehead","uppertitleback","ifthispageodd"]}
-,
-"scrfontsizes.sty":{"envs":{},"deps":["scrextend.sty","scrlogo.sty"],"cmds":["generatefontfile"]}
-,
-"scrhack.sty":{"envs":{},"deps":["scrkbase.sty","xpatch.sty","scrlogo.sty"],"cmds":{}}
-,
-"scripture.sty":{"envs":["midparachap","narrow","poetry","scripture"],"deps":{},"cmds":["ch","extraskip","added","name","LORD","GOD","nofirstverse","nohang","redletteron","redletteroff","scripturecurrentchapter","scripturecurrentverse","selah","scripturesetup","textright","textscripture","vs"]}
-,
-"scrjura.sty":{"envs":["contract"],"deps":["scrkbase.sty","tocbasic.sty","scrlogo.sty"],"cmds":["Clausemark","ellipsispar","parellipsis","thecontractClause","Clauseformat","thecontractSubClause","DeclareNewJuraEnvironment","Clause","SubClause","Sentence","refClause","refClauseN","refL","refS","refN","refPar","refParL","refParS","refParN","refSentence","refSentenceL","refSentenceS","refSentenceN","theClause","theSubClause","theHClause","theHSubClause","thepar","theHpar","AutoPar","ManualPar","parformat","parformatseparation","withoutparnumber","thisparnumber","thesentence","theHsentence","sentencenumberformat","parciteformat","sentenceciteformat","parlongformat","parshortformat","parnumericformat","sentencelongformat","sentenceshortformat","sentencenumericformat","parname","parshortname","sentencename","sentenceshortname","newmaxpar","getmaxpar","DeprecatedParagraph","ParagraphCompatibilityHacks","Paragraph","SubParagraph","refParagraph","refParagraphN"]}
-,
-"scrkbase.sty":{"envs":{},"deps":["scrbase.sty","scrlogo.sty"],"cmds":["KOMAProcessOptions","KOMAExecuteOptions","KOMAoptions","KOMAoption","KOMAoptionsOf","KOMAoptionOf","AfterKOMAoptions","IfExistskomafont","IfIsAliaskomafont","setkomafont","addtokomafont","usekomafont","usesizeofkomafont","usefamilyofkomafont","useseriesofkomafont","useshapeofkomafont","useencodingofkomafont","usefontofkomafont","addtokomafontrelaxlist","addtokomafontgobblelist","addtokomafontonearglist","newkomafont","aliaskomafont"]}
-,
-"scrlayer-fancyhdr.sty":{"envs":{},"deps":["scrlayer.sty","fancyhdr.sty"],"cmds":{}}
-,
-"scrlayer-notecolumn.sty":{"envs":{},"deps":["scrlayer.sty","scrlogo.sty"],"cmds":["DeclareNoteColumn","DeclareNewNoteColumn","ProvideNoteColumn","RedeclareNoteColumn","makenote","restoreinnote","clearnotecolumn","clearnotecolumns","syncwithnotecolumn","syncwithnotecolumns"]}
-,
-"scrlayer-scrpage.sty":{"envs":{},"deps":["scrlayer.sty","scrlogo.sty"],"cmds":["LaTeXcentering","LaTeXraggedleft","LaTeXraggedright","headfont","footfont","defpagestyle","newpagestyle","renewpagestyle","providepagestyle","deftriplepagestyle","newtriplepagestyle","renewtriplepagestyle","providetriplepagestyle","defpairofpagestyles","newpairofpagestyles","renewpairofpagestyles","providepairofpagestyles","ihead","ohead","chead","lehead","lohead","rehead","rohead","cehead","cohead","ifoot","ofoot","cfoot","lefoot","lofoot","refoot","rofoot","cefoot","cofoot","clearmainofpairofpagestyles","clearplainofpairofpagestyles","clearpairofpagestyles","setheadwidth","setfootwidth","setheadtopline","setheadsepline","setfootsepline","setfootbotline","deftripstyle","clearscrheadings","clearscrplain","clearscrheadfoot"]}
-,
-"scrlayer.sty":{"envs":{},"deps":["scrkbase.sty","scrlfile.sty","scrlogo.sty"],"cmds":["footheight","MakeMarkcase","rightfirstmark","rightbotmark","righttopmark","leftfirstmark","leftbotmark","lefttopmark","headmark","pagemark","pnumfont","partmarkformat","chaptermarkformat","sectionmarkformat","subsectionmarkformat","subsubsectionmarkformat","paragraphmarkformat","subparagraphmarkformat","GenericMarkFormat","partmark","markleft","markdouble","manualmark","automark","DeclareSectionNumberDepth","DeclareLayer","DeclareNewLayer","ProvideLayer","RedeclareLayer","ModifyLayer","ModifyLayers","layerhalign","layervalign","layerxoffset","layeryoffset","layerwidth","layerheight","IfLayerExists","GetLayerContents","DestroyLayer","layercontentsmeasure","LenToUnit","ForEachLayerOfPageStyle","layerrawmode","layertextmode","layerpicturemode","putLL","putUL","putLR","putUR","putC","DeclarePageStyleByLayers","DeclareNewPageStyleByLayers","ProvidePageStyleByLayers","RedeclarePageStyleByLayers","AddLayersToPageStyle","AddLayersAtEndOfPageStyle","AddLayersAtBeginOfPageStyle","RemoveLayersFromPageStyle","AddLayersToPageStyleAfterLayer","AddLayersToPageStyleBeforeLayer","UnifyLayersAtPageStyle","ModifyLayerPageStyleOptions","AddToLayerPageStyleOptions","DeclarePageStyleAlias","DeclareNewPageStyleAlias","ProvidePageStyleAlias","RedeclarePageStyleAlias","DestroyPageStyleAlias","GetRealPageStyle","IfLayerPageStyleExists","IfRealLayerPageStyleExists","IfLayerAtPageStyle","IfSomeLayersAtPageStyle","IfLayersAtPageStyle","DestroyRealLayerPageStyle","currentpagestyle","toplevelpagestyle","iftoplevelpagestyle","toplevelpagestyletrue","toplevelpagestylefalse","BeforeSelectAnyPageStyle","AfterSelectAnyPageStyle","scrlayerAddToInterface","scrlayerAddCsToInterface","scrlayerInitInterface","scrlayerOnAutoRemoveInterface"]}
-,
-"scrletter.sty":{"envs":["letter"],"deps":["scrkbase.sty","scrextend.sty","scrlayer-scrpage.sty","scrlogo.sty"],"cmds":["addrchar","addrentry","addtolengthplength","addtoplength","addtoreffields","AtBeginLetter","AtEndLetter","bankname","cc","ccname","closing","customername","datename","defaultreffields","emailname","encl","enclname","faxname","foreachemptykomavar","foreachkomavar","foreachkomavarifempty","foreachnonemptykomavar","headfromname","headtoname","Ifkomavar","Ifkomavarempty","Ifplength","invoicename","letterlastpage","LetterOptionNeedsPapersize","letterpagemark","letterpagestyle","LoadLetterOption","LoadLetterOptions","mobilephonename","myrefname","newkomavar","newplength","opening","pagename","phonename","ps","raggedsignature","raggedsubject","removereffields","setkomavar","setlengthtoplength","setparsizes","setplength","setplengthtodepth","setplengthtoheight","setplengthtototalheight","setplengthtowidth","startbreaks","stopbreaks","stopletter","subjectname","thisletter","usekomavar","useplength","wwwname","yourmailname","yourrefname","showfields","setshowstyle","edgesize","showenvelope","showISOenvelope","showUScommercial","showUScheck","unitfactor","adrentry","adrchar","ifkomavar","ifkomavarempty"]}
-,
-"scrlfile-hook.sty":{"envs":{},"deps":["scrlogo.sty"],"cmds":["BeforeFile","AfterFile","BeforeClass","BeforePackage","AfterAtEndOfClass","AfterAtEndOfPackage","AfterClass","AfterPackage","ReplaceInput","ReplaceClass","ReplacePackage","UnReplaceInput","UnReplaceClass","UnReplacePackage","PreventPackageFromLoading","StorePreventPackageFromLoading","ResetPreventPackageFromLoading","UnPreventPackageFromLoading","BeforeClosingMainAux","AfterReadingMainAux"]}
-,
-"scrlfile.sty":{"envs":{},"deps":["scrlfile-hook.sty"],"cmds":{}}
-,
-"scrlogo.sty":{"envs":{},"deps":{},"cmds":["KOMAScript"]}
-,
-"scrlttr2.cls":{"envs":["addmargin*"],"deps":["scrkbase.sty","scrlogo.sty","eso-pic.sty","xcolor.sty"],"cmds":["addrchar","addrentry","addtolengthplength","addtoplength","addtoreffields","AtBeginLetter","AtEndLetter","bankname","cc","ccname","ClassName","cleardoubleemptypage","cleardoubleevenemptypage","cleardoubleevenpage","cleardoubleevenpageusingstyle","cleardoubleevenplainpage","cleardoubleevenstandardpage","cleardoubleoddemptypage","cleardoubleoddpage","cleardoubleoddpageusingstyle","cleardoubleoddplainpage","cleardoubleoddstandardpage","cleardoublepageusingstyle","cleardoubleplainpage","cleardoublestandardpage","closing","customername","datename","defaultreffields","deffootnote","deffootnotemark","descfont","emailname","encl","enclname","faxname","footfont","foreachemptykomavar","foreachkomavar","foreachkomavarifempty","foreachnonemptykomavar","headfont","headfromname","headtoname","Ifkomavar","Ifkomavarempty","Ifplength","Ifthispageodd","ifthispagewasodd","invoicename","KOMAClassFileName","KOMAClassName","labelinglabel","labelitemfont","letterlastpage","LetterOptionNeedsPapersize","letterpagemark","letterpagestyle","LoadLetterOption","LoadLetterOptions","marginline","mobilephonename","multfootsep","multiplefootnotemarker","multiplefootnoteseparator","myrefname","newkomavar","newplength","opening","pagename","phonename","pnumfont","ps","raggedfootnote","raggedsignature","raggedsubject","removereffields","setfootnoterule","setkomavar","setlengthtoplength","setparsizes","setplength","setplengthtodepth","setplengthtoheight","setplengthtototalheight","setplengthtowidth","startbreaks","stopbreaks","stopletter","subjectname","thefootnotemark","thisletter","thispagewasoddfalse","thispagewasoddtrue","usekomavar","useplength","wwwname","yourmailname","yourrefname","showfields","setshowstyle","edgesize","showenvelope","showISOenvelope","showUScommercial","showUScheck","unitfactor","adrchar","adrentry","ifkomavar","ifkomavarempty","ifthispageodd","firsthead","firstfoot","nexthead","nextfoot","makelabels","selectlabeltype","startlabels","mlabel","mlabeltype","LetterCopyMarker","copyname"]}
-,
-"scrpage2.sty":{"envs":{},"deps":{},"cmds":["automark","cefoot","cehead","cfoot","chead","clearscrheadfoot","clearscrheadings","clearscrplain","cofoot","cohead","headfont","headmark","ifoot","ihead","lefoot","lehead","lofoot","lohead","manualmark","ofoot","ohead","pagemark","pnumfont","refoot","rehead","rofoot","rohead","setfootbotline","setfootsepline","setfootwidth","setheadsepline","setheadtopline","setheadwidth"]}
-,
-"scrreprt.cls":{"envs":["addmargin*"],"deps":["scrkbase.sty","tocbasic.sty","typearea.sty","scrlogo.sty","scrlayer-scrpage.sty"],"cmds":["defaultpapersize","addchap","addchapmark","addchaptertocentry","addparagraphtocentry","addpart","addpartmark","addparttocentry","addsec","addsecmark","addsectiontocentry","addsubparagraphtocentry","addsubsectiontocentry","addsubsubsectiontocentry","addtocentrydefault","AddToSectionCommandOptionsDoList","AfterBibliographyPreamble","appendixmore","AtEndBibliography","autodot","backmatter","bibpreamble","BreakBibliography","capfont","caplabelfont","captionabove","captionaboveof","captionbelow","captionbelowof","captionformat","captionof","changefontsizes","chapapp","chapappifchapterprefix","chapter","chapterformat","chapterheadendvskip","chapterheadmidvskip","chapterheadstartvskip","chapterlinesformat","chapterlineswithprefixformat","chaptermarkformat","chapternumdepth","chapterpagestyle","ClassName","cleardoubleemptypage","cleardoubleevenemptypage","cleardoubleevenpage","cleardoubleevenpageusingstyle","cleardoubleevenplainpage","cleardoubleevenstandardpage","cleardoubleoddemptypage","cleardoubleoddpage","cleardoubleoddpageusingstyle","cleardoubleoddplainpage","cleardoubleoddstandardpage","cleardoublepageusingstyle","cleardoubleplainpage","cleardoublestandardpage","coverpagebottommargin","coverpageleftmargin","coverpagerightmargin","coverpagetopmargin","DeclareNewSectionCommand","DeclareNewSectionCommands","DeclareSectionCommand","DeclareSectionCommands","DeclareSectionCommandStyleFontOption","DeclareSectionCommandStyleFuzzyOption","DeclareSectionCommandStyleLengthOption","DeclareSectionCommandStyleNumberOption","DeclareSectionCommandStyleOption","dedication","deffootnote","deffootnotemark","descfont","dictum","dictumauthorformat","dictumrule","dictumwidth","extratitle","FamilyElseValue","figureformat","footfont","frontispiece","frontmatter","headfont","IfChapterUsesPrefixLine","Ifnumbered","ifonelinecaptions","IfSectionCommandStyleIs","Ifthispageodd","ifthispagewasodd","Ifunnumbered","IfUseNumber","IfUsePrefixLine","indexpagestyle","KOMAClassFileName","KOMAClassName","labelinglabel","listoftocname","lowertitleback","mainmatter","maketitle","marginline","minisec","multfootsep","multiplefootnotemarker","multiplefootnoteseparator","newbibstyle","onelinecaptionsfalse","onelinecaptionstrue","pagemark","paragraphformat","paragraphnumdepth","paragraphtocdepth","partformat","partheademptypage","partheadendvskip","partheadmidvskip","partheadstartvskip","partlineswithprefixformat","partmark","partnumdepth","partpagestyle","parttocdepth","pnumfont","ProvideSectionCommand","ProvideSectionCommands","publishers","raggedcaption","raggedchapter","raggedchapterentry","raggeddictum","raggeddictumauthor","raggeddictumtext","raggedfootnote","raggedpart","raggedsection","raggedsectionentry","RedeclareSectionCommand","RedeclareSectionCommands","RelaxSectionCommandOptions","SecDef","sectfont","sectioncatchphraseformat","sectionformat","sectionlinesformat","sectionmarkformat","sectionnumdepth","sectiontocdepth","setbibpreamble","setcapdynwidth","setcaphanging","setcapindent","setcapmargin","setcaptionalignment","setcapwidth","setchapterpreamble","setfootnoterule","setindexpreamble","setparsizes","setpartpreamble","subject","subparagraphformat","subparagraphnumdepth","subparagraphtocdepth","subsectionformat","subsectionmarkformat","subsectionnumdepth","subsectiontocdepth","subsubsectionformat","subsubsectionnumdepth","subsubsectiontocdepth","subtitle","tableformat","thechapter","thefootnotemark","thispagewasoddfalse","thispagewasoddtrue","titlefont","titlehead","titlepagestyle","uppertitleback","UseNumberUsageError","ifnumbered","ifthispageodd","ifunnumbered","othersectionlevelsformat"]}
-,
-"scrtime.sty":{"envs":{},"deps":["scrkbase.sty"],"cmds":["thistime","settime"]}
-,
-"scrwfile.sty":{"envs":{},"deps":["scrbase.sty","scrlfile.sty","iftex.sty","tocbasic.sty","scrlogo.sty"],"cmds":["TOCclone"]}
-,
-"scsnowman.sty":{"envs":{},"deps":["tikz.sty","keyval.sty"],"cmds":["scsnowman","scsnowmandefault","scsnowmannumeral","usescsnowmanlibrary","makeitemsnowman","makeitemother","makeqedsnowman","makeqedother","enumsnowman","makedocumentsnowman","scsnowmanNumeral"]}
-,
-"sdapsarray.sty":{"envs":["sdapsarray"],"deps":["expl3.sty","xparse.sty","sdapsbase.sty"],"cmds":["sdapsnested"]}
-,
-"sdapsbase.sty":{"envs":{},"deps":["expl3.sty","qrcode.sty","tikz.sty","tikzlibrarycalc.sty","tikzlibrarypositioning.sty","tikzlibrarydecorations.pathmorphing.sty"],"cmds":["X","bcorr","workdimen","barheight","inputtext","icode","tempnum","chnum","chtotal","ifnext","ifchar","End","definetable","repeatdefine","tableofcode","startA","startB","startC","testchar","numofdigits","cyklnumber","testA","testnext","tempA","tempB","cyklcontrol","addtok","addtoks","addchar","code","codeA","codeB","codeC","separate","switchtoAorB","finalcode","addchecksum","makecode","cyklcode","makebars","begcode","endcode","codeothertext","codetext","Next","act","finalmakecode","internalcode","temp"]}
-,
-"sdapsclassic.cls":{"envs":["questionnaire","choicequestion","optionquestion","info","markgroup","choicegroup","optiongroup"],"deps":["s-scrartcl.cls","expl3.sty","sdapsbase.sty","sdapslayout.sty","verbatim.sty","scrkbase.sty","geometry.sty","ifthen.sty","fontenc.sty","color.sty","amssymb.sty","refcount.sty","lastpage.sty","environ.sty","scrlayer-scrpage.sty","url.sty","hyperref.sty","graphicx.sty","sectsty.sty","tabularx.sty","babel.sty","translator.sty"],"cmds":["addinfo","sdapsinfo","sdapspagemark","checkbox","checkedbox","filledbox","correctedbox","singlemark","singlemarkother","textbox","choiceitem","choicemulticolitem","choiceitemtext","markline","groupaddchoice","choiceline","qid","sectbox","themarkcheckboxcount","DH","NG","dj","ng","k","guillemotleft","guillemotright","guilsinglleft","guilsinglright","quotedblbase","quotesinglbase","textquotedbl","DJ","th","TH","dh","Hwithstroke","hwithstroke","textogonekcentered","guillemetleft","guillemetright"]}
-,
-"sdapslayout.sty":{"envs":["choicearray","optionarray","rangearray"],"deps":["expl3.sty","sdapsbase.sty","sdapsarray.sty","xparse.sty"],"cmds":["choice","question","range"]}
-,
-"se2colors.sty":{"envs":{},"deps":["xcolor.sty"],"cmds":{}}
-,
-"se2fonts.sty":{"envs":{},"deps":["unicode-math.sty","libertinus-otf.sty"],"cmds":["pdftexengine","xetexengine","luatexengine","ifengineTF","ifengineT","ifengineF"]}
-,
-"se2thesis.cls":{"envs":["resq","hyp","summary"],"deps":["graphicx.sty","translations.sty","s-scrreprt.cls","se2colors.sty","se2fonts.sty","microtype.sty","lua-widow-control.sty","selnolig.sty","scrlayer-scrpage.sty","ifthen.sty","ntheorem.sty","tcolorbox.sty","s-scrartcl.cls","s-scrbook.cls","biblatex.sty"],"cmds":["version","degreeprogramme","matrnumber","supervisor","cosupervisor","advisor","coadvisor","department","institute","external","location","authorshipDeclaration","signatureBox","headingdot"]}
-,
-"secdot.sty":{"envs":{},"deps":{},"cmds":["sectiondot","sectionpunct"]}
-,
-"secnum.sty":{"envs":{},"deps":["expl3.sty","xparse.sty","l3keys2e.sty"],"cmds":["setsecnum"]}
-,
-"secsty.sty":{"envs":{},"deps":{},"cmds":["allsectionsfont","partfont","chapterfont","sectionfont","subsectionfont","subsubsectionfont","paragraphfont","subparagrahfont","minisecfont","partnumberfont","parttitlefont","chapternumberfont","chaptertitlefont","nohang","ulemheading"]}
-,
-"sectionbox.sty":{"envs":["sectionbox","subsectionbox","subsubsectionbox"],"deps":["ifthen.sty","calc.sty","fancybox.sty","color.sty"],"cmds":["framesectionbox","doublesectionbox","shadowsectionbox","framesubsectionbox","doublesubsectionbox","shadowsubsectionbox","framesubsubsectionbox","doublesubsubsectionbox","shadowsubsubsectionbox","colboxsep","makesectionbox","makesubsectionbox","makesubsubsectionbox","sectboxskip","sectsavebox","subsectboxskip","subsectmargin","subsectsavebox","subsubsectboxskip","subsubsectmargin","subsubsectsavebox"]}
-,
-"sectionbreak.sty":{"envs":{},"deps":["kvoptions.sty"],"cmds":["sectionbreak","sectionbreakmark","asterism"]}
-,
-"sectsty.sty":{"envs":{},"deps":{},"cmds":["allsectionsfont","partfont","chapterfont","sectionfont","subsectionfont","subsubsectionfont","paragraphfont","subparagraphfont","minisecfont","partnumberfont","parttitlefont","chapternumberfont","chaptertitlefont","nohang","ulemheading","sectionrule","SSifnumberpart","SSiftitlepart","SSsectlevel","chapterformat","ifcentering","ifraggedleft"]}
-,
-"seealso.sty":{"envs":{},"deps":["etoolbox.sty","kvoptions.sty"],"cmds":["seepage","seealsopage","seenopage","seealsonopage","see","seealso","SeealsoPrintList","DeclareSeealsoMacro","seealsosetup","SeealsoGobble"]}
-,
-"selectp.sty":{"envs":{},"deps":{},"cmds":["outputonly","AbsVal"]}
-,
-"selinput.sty":{"envs":{},"deps":["inputenc.sty","kvsetkeys.sty","stringenc.sty","kvoptions.sty"],"cmds":["SelectInputEncodingList","SelectInputMappings","SelectInputDefineMapping"]}
-,
-"selnolig.sty":{"envs":{},"deps":["ifluatex.sty","luatexbase.sty","selnolig-english-patterns.sty","selnolig-english-hyphex.sty","selnolig-german-patterns.sty","selnolig-german-hyphex.sty"],"cmds":["nolig","keeplig","uselig","breaklig","debugoff","debugon","selnoligoff","selnoligon","selnoligpackagename","selnoligpackageversion","selnoligpackagedate"]}
-,
-"semantex.sty":{"envs":{},"deps":["xparse.sty","l3keys2e.sty","leftindex.sty","semtex.sty"],"cmds":["NewVariableClass","DeclareVariableClass","NewSymbolClass","DeclareSymbolClass","NewSimpleClass","DeclareSimpleClass","SemantexBaseObject","NewObject","DeclareObject","SetupClass","SetupObject","UseClassInCommand","SemantexSetup","SemantexRecordObject","SemantexRecordSource","SemantexDelimiterSize","SemantexThis","SemantexSetKeys","SemantexKeysSet","SemantexSetKeysx","SemantexKeysSetx","SemantexSetArgKeys","SemantexArgKeysSet","SemantexSetArgKeysx","SemantexArgKeysSetx","SemantexSetArgSingleKeys","SemantexArgSingleKeysSet","SemantexSetArgSingleKeysx","SemantexArgSingleKeysSetx","SemantexSetOneArgSingleKey","SemantexOneSingleArgKeySet","SemantexSetOneArgSingleKeyx","SemantexOneSingleArgKeySetx","SemantexSetArgWithoutKeyval","SemantexArgWithoutKeyvalSet","SemantexSetArgWithoutKeyvalx","SemantexArgWithoutKeyvalSetx","SemantexDataProvide","SemantexDataSet","SemantexDataSetx","SemantexDataPutLeft","SemantexDataPutLeftx","SemantexDataPutRight","SemantexDataPutRightx","SemantexDataGet","SemantexDataGetExpNot","SemantexDataClear","SemantexBoolProvide","SemantexBoolSetTrue","SemantexBoolSetFalse","SemantexBoolIfTF","SemantexBoolIfT","SemantexBoolIfF","SemantexIntProvide","SemantexIntGet","SemantexIntSet","SemantexIntIncr","SemantexIntIfEqTF","SemantexIntIfEqT","SemantexIntIfEqF","SemantexIntIfGreaterTF","SemantexIntIfGreaterT","SemantexIntIfGreaterF","SemantexIntIfLessTF","SemantexIntIfLessT","SemantexIntIfLessF","SemantexIntClear","SemantexIfBlankTF","SemantexIfBlankT","SemantexIfBlankF","SemantexStrIfEqTF","SemantexStrIfEqT","SemantexStrIfEqF","SemantexERROR","SemantexERRORKeyValueNotFound","SemantexERRORArgKeyValueNotFound","SemantexExpNot","RecordSemantexDelimiterSize","SemantexDelimiterSizeNoRecord","SemantexMathCloseAuto","SemantexMathCloseNoPar","SemantexMathClose","SemantexMathOpenAuto","SemantexMathOpenNoPar","SemantexMathOpen","SemantexVersion","SemantexAddToRecordedSource","SemantexRecordOutput","SemantexID"]}
-,
-"semantic-markup.sty":{"envs":["Footnote"],"deps":["xparse.sty","csquotes.sty","environ.sty","stackengine.sty","endnotes.sty"],"cmds":["DoBeforeEndnotes","EndnoteFont","SetupEndnotes","ifdefaultquotes","defaultquotestrue","defaultquotesfalse","ifendnotes","endnotestrue","endnotesfalse","strong","quoted","soCalled","code","term","mentioned","foreign","worktitle","parttitle","wtitle","ptitle","add","Dots","gloss","quotedgloss","XXX","citXXX","fl","na","sh","octave","musfig","meter"]}
-,
-"semantic.sty":{"envs":{},"deps":{},"cmds":["mathlig","mathligson","mathligsoff","mathligprotect","inference","setpremisesend","setpremisesspace","setnamespace","predicate","predicatebegin","predicateend","compiler","interpreter","program","machine","reservestyle","comp","eval","evalsymbol","compsymbol","exe","TestForConflict","semanticDate","semanticVersion"]}
-,
-"semesterplanner.sty":{"envs":["timetable","legend","appointments","deadlines","exams"],"deps":["fontawesome.sty","color.sty","schedule.sty","tikz.sty","tikzlibraryshapes.sty"],"cmds":["lecture","seminar","meeting","officehour","tutorial","ttlegend","appointment","deadline","exam","pnone","plow","pmid","phigh","pmandatory","teams","zoom","youtube","written","oral","tba","tbd"]}
-,
-"semioneside.sty":{"envs":{},"deps":["afterpage.sty"],"cmds":["leftpagecontent","leftpagecontrolend","leftpagecontrolstart","rightpagecontrolstart","semionesideoff","semionesideon"]}
-,
-"semtex.sty":{"envs":{},"deps":["xparse.sty"],"cmds":["SemantexBullet","SemantexDoubleBullet","SemantexLeft","SemantexRight"]}
-,
-"semtrans.sty":{"envs":{},"deps":["graphicx.sty"],"cmds":["Alif","Ayn","U","D","T","lhook","rhook"]}
-,
-"sepfootnotes.sty":{"envs":{},"deps":{},"cmds":["sepfootnotecontent","sepfootnote","sepfootnotemark","sepfootnotetext","printsepfootnote","sepfootquicknote","newfootnotes","newsymbolfootnotes","newendnotes","newcommentnotes","newsymbolcommentnotes"]}
-,
-"sepnum.sty":{"envs":{},"deps":{},"cmds":["sepnum","sepnumform","printnum","printnumKomma","printnumTrenner","sepnumReturnElseFi","sepnumReturnFi","sepnumReturnOrFi"]}
-,
-"seqsplit.sty":{"envs":{},"deps":{},"cmds":["seqsplit","seqinsert"]}
-,
-"serbian-lig.sty":{"envs":{},"deps":["xspace.sty"],"cmds":["nj","spfi","spfl","alfi","alfija","amfibija","amfibijama","amfilohija","amfilohije","amfilohiju","amfiteatar","amfiteatra","amfiteatru","anglofil","anglofilom","anfilade","apokrifi","atrofija","atrofirano","autentifikacija","autentifikacije","autentifikaciju","autofilter","afinitet","afiniteta","afinitete","afiniteti","afinitetom","afinitetu","afirmacija","afirmacije","afirmaciji","afirmaciju","afirmira","afirmirali","afirmirati","afirmisala","afirmisale","afirmisali","afirmisalo","afirmisan","afirmisana","afirmisane","afirmisani","afirmisano","afirmisanja","afirmisanje","afirmisanju","afirmisao","afirmisati","afirmisace","afirmise","afirmisem","afirmisemo","afirmisuci","afirmisu","amfibijski","apostrofirati","autobiografija","beneficija","beneficije","benfika","bibliografija","biografi","biografija","biografije","biografiji","biografiju","biografijom","biografika","biografike","biografima","biofizika","biofizike","biofiziku","biofizicka","biofizicke","biofizicki","blefira","blefirajte","blefiraju","blefirala","blefirate","blefirati","blefiras","brifing","brifinga","brifingu","brifinzima","biblofil","cinkografija","charshafima","delfi","delfima","delfin","delfina","delfine","delfini","delfinima","demografi","defile","defilea","defileom","defileu","defilovala","defilovali","defilovao","defiluje","defiluju","definira","definiran","definirane","definirani","definirao","definirati","definisala","definisale","definisali","definisan","definisana","definisane","definisani","definisanim","definisanih","definisano","definisanom","definisanu","definisanja","definisanje","definisanjem","definisanju","definisao","definisati","definisace","definitivno","definicija","definicije","definiciji","definiciju","definise","definisem","definisemo","definisete","definises","definisi","definisimo","definisite","definisu","definisuca","definisuci","deficit","deficita","deficite","deficiti","deficitom","deficitu","distrofije","defilirati","demografija","definitivnog","definitivna","diskvalifikacijom","definitivne","evrofili","evrofimi","ekofin","epitafi","esnafi","esnafima","efikasan","efikasna","efikasne","efikasni","efikasnija","efikasnije","efikasniji","efikasniju","efikasnim","efikasnih","efikasno","efikasnog","efikasnoj","efikasnom","efikasnost","efikasnosti","efikasnu","efikasnoscu","etnografija","elektrificirati","elektrifikacijama","falsifikat","fiar","fibroza","fibroze","fibula","fibulama","fibule","fibulu","figura","figuralna","figuralne","figuralni","figuralnih","figuralno","figurama","figuracija","figuracije","figuraciji","figuraciju","figure","figuri","figuricu","figurina","figurinama","figurine","figurinom","figurira","figuriraju","figurirala","figuriralo","figurirao","figurica","figuricama","figurice","figurise","figurisu","figurom","figuru","fizijatar","fizika","fizikalna","fizikalne","fizikalni","fizikalnim","fizikalnu","fizikalcima","fizike","fizikom","fiziku","fiziolog","fiziologa","fizioloska","fizioloske","fizioloski","fiziolosko","fizici","fizicar","fizicara","fizicare","fizicari","fizicarima","fizicarka","fizicarku","fizicka","fizicke","fizicki","fizickim","fizickih","fizicko","fizickog","fizickoga","fizickoj","fizickom","fizicku","fijaker","fijakera","fijakere","fijakeri","fijakerima","fijakerom","fijakeru","fijaska","fijasko","fijaskom","fijesta","fijoke","fijoku","fijoci","fijuk","fijuka","fijukale","fijuke","fijukom","fijuce","fijucu","fiks","fiksa","fiksan","fiksacija","fiksacije","fiksaciji","fiksacijom","fiksaciju","fiksatorima","fiksatore","fiksatori","fiksira","fiksiraj","fiksiraju","fiksirala","fiksiralo","fiksiram","fiksiramo","fiksiran","fiksirana","fiksirane","fiksirani","fiksiranim","fiksirano","fiksiranog","fiksiranu","fiksiranja","fiksiranje","fiksiranju","fiksirao","fiksirate","fiksirati","fiksna","fiksne","fiksni","fiksnim","fiksnih","fiksno","fiksnog","fiksnoj","fiksnom","fiksnu","fiksu","fiktivan","fiktivna","fiktivne","fiktivni","fiktivnim","fiktivnih","fiktivno","fiktivnog","fiktivnom","fiktivnu","fikus","fikusa","fikuse","fikusi","fikcija","fikcijama","fikcije","fikciji","fikcijom","fikciju","fil","fila","filantrop","filantropa","filantropi","filaret","filareta","filaretom","filaretu","filatelija","filatelije","filateliju","file","fileta","filete","fileti","filetima","fili","filigran","filigrana","filigranom","filijala","filijalama","filijale","filijali","filijalom","filijalu","film","filma","filmadzija","filmadziju","filmicnost","filmova","filmove","filmovi","filmovima","filmom","filmofil","filmofili","filmska","filmske","filmski","filmskim","filmskih","filmsko","filmskog","filmskoj","filmskom","filmsku","filmu","filozof","filozofa","filozofe","filozofi","filozofija","filozofije","filozofiji","filozofijom","filozofiju","filozofima","filozofira","filozofiranja","filozofom","filozofska","filozofske","filozofski","filozofskih","filozofsko","filozofskog","filozofsku","filozofu","filolog","filologa","filologe","filologija","filologije","filologiji","filologiju","filologom","filolozi","filolozima","filoloska","filoloske","filoloski","filoloskim","filoloskih","filolosko","filoloskog","filoloskoj","filoloskom","filom","filter","filtera","filtere","filteri","filterima","filterom","filteru","filtra","filtracija","filtracije","filtraciji","filtraciju","filtre","filtri","filtrira","filtriraj","filtriraju","filtrirale","filtrirana","filtrirane","filtrirano","filtriranja","filtriranje","filtriranjem","filtrirate","filu","filc","filcani","filcom","fildzana","fildzanom","fin","fina","finala","finale","finalizuje","finalista","finaliste","finalisti","finalistu","finalna","finalne","finalni","finalnim","finalnih","finalno","finalnog","finalnoj","finalnom","finalnu","finalu","finansija","finansije","finansijer","finansijska","finansijske","finansijski","finansijskim","finansijskih","finansijskog","finansijskoj","finansijskom","finansijsku","finansira","finansiraju","finansiram","finansiran","finansiranih","finansiranja","finansiranje","finansiranju","finansirao","finansirate","fingira","fingiranjem","fine","finesa","finesama","finese","fini","finija","finije","finijeg","finijem","finiji","finijih","finijoj","finiju","finim","finih","finish","finisha","finishe","finishiraju","finishu","fino","finog","finoj","finom","finoca","finoce","finoci","finocom","finocu","finu","finte","fioka","fiokama","fioke","fioku","fioci","fiokicama","firma","firmama","firme","firmi","firmom","firmu","fisija","fisije","fiskalna","fiskalne","fiskalni","fiskalnim","fiskalnih","fiskalno","fiskalnog","fiskalnoj","fiskalnom","fiskalnu","fiskultura","fiskulture","fiskulturi","fiskulturu","fit","fitilj","fitilja","fitilje","fitnes","fotografi","fotografija","fotografije","fotografishe","fotografijom","fotografijama","fotografiju","fotografiji","fuficama","fimoza","ficfiric","fitiljaca","frankofil","filatelist","filtrirati","figurativan","filingranski","fizionomija","fizioloskoj","fizikalac","fizikalca","fonografija","fortifikacija","filatelisticki","filharmonijski","filharmonijsko","fitnesa","filozofskim","figurativno","filcanim","filcanog","filozofiranje","gasifikacije","geografi","geografija","geografije","geografiji","geografiju","geografima","geofizikom","geofiziku","geofizicka","geofizicki","germanofil","grafija","grafije","grafiji","grafijom","grafijska","grafijske","grafijski","grafijskih","grafijskoj","grafijskom","grafiju","grafika","grafikama","grafike","grafikom","grafikon","grafikona","grafikone","grafikoni","grafikonom","grafikonu","grafiku","grafit","grafita","grafite","grafiti","grafitima","grafitom","grafitnom","grafitu","grafici","graficar","graficara","graficari","graficka","graficke","graficki","grafickim","grafickih","graficko","grafickog","grafickoj","grafickom","graficku","grofica","grofice","grofici","groficom","groficu","geofizika","glorifikovati","harfi","hatiserifi","hemofilije","hiperfina","hiperfinog","hipertrofirani","hipofize","hlorofila","harfist","hipofiza","hemofilija","hijeroglifi","hijeroglifima","hidrografija","hipertrofija","identifikacije","identifikovati","identifikuje","identifikujete","identifikuju","infiltrira","infinitiv","infinitiva","infinitivi","infinitivu","inficiraju","inficirale","inficiran","inficirana","inficirane","inficirani","inficirano","inficiranu","infinitivni","ikonografija","identificiranja","identifikaciji","kadifi","kalfi","karanfil","karanfila","karanfile","karanfilic","kartografi","karfiol","karfiola","karfiolu","katastrofi","kafi","kafilerije","kafileriji","kafileriju","kafich","kaficha","kafiche","kafichi","kafichima","kafichu","kafica","kafice","kaficu","kvalifikacije","kvalifikovali","kefir","klasifikacija","klasifikacije","klasifikaciji","klasifikuje","kodifikuje","kodifikuju","koeficijent","koeficijentima","konfiguracija","konfiguracije","konfiguraciji","konfiguraciju","konfiskuje","koreografi","kofi","kofice","kodifikator","kartografija","kodificirati","kodifikacija","koreografija","klasificirati","klasifikujem","kinematografija","kvalifikacijski","karanfilima","kalfinoj","karanfilce","litografija","litografije","leksikografija","mafija","mafijama","mafijas","mafijasa","mafijase","mafijasi","mafijasima","mafijaska","mafijaske","mafijaski","mafijaskim","mafijaskih","mafijaskog","mafijaskoj","mafijaskom","mafijasku","mafijasu","mafije","mafiji","mafijom","mafiju","metafizika","metafizike","metafiziku","metafizici","metafizicka","mefistofelovskog","mikrofilm","mikrofilma","mikrofilmu","modifikova","modifikuj","modifikuje","modifikuju","modifikacija","morfij","morfijum","morfijuma","morfijumom","morfijumu","monografija","modificirana","najfinija","najfinije","najfinijeg","najfiniji","najfinijim","najfinijih","najfinijoj","najfiniju","najefikasniji","neefikasan","neefikasna","neefikasne","neefikasni","neefikasno","neefikasnosti","neefikasnu","neprofitna","neprofitne","neprofitni","neprofitno","neprofitnu","nimfi","nimfice","nimfici","nimficu","notifikuju","neefikasnost","neklasificiran","nekvalifikovan","najprefinjeniji","nedefinisana","odsrafio","odsrafiti","orfizam","orfizma","ofis","ofisa","ofisu","ofisnog","ofisnom","oficijelna","oficijelne","oficijelni","oficijelno","oficijelnu","oficir","oficira","oficire","oficiri","oficirima","oficirov","oficirovim","oficirovu","oficirom","oficirska","oficirske","oficirski","oficirskim","oficirskih","oficirsko","oficirskog","oficirskoj","oficirskom","oficirsku","oficiru","oficircina","paragrafi","parafin","parafina","parafiniranja","parafinom","parafinske","parafinsku","parafira","parafirala","parafirale","parafirali","parafiran","parafirani","parafiranje","parafirao","pacifizam","pacifizma","pacifik","pacifika","pacifikom","pacifiku","pacifist","pacifista","pacifiste","pacifisti","pacificka","pacificke","pacificki","pacifickim","pacifickih","pacificko","pacifickog","pacifickoj","pacifickom","perfidan","perfidije","perfidna","perfidne","perfidni","perfidnije","perfidniji","perfidnim","perfidnih","perfidno","perfidnog","perfidnom","perfidnost","perfidnu","personifikovan","plastificiranim","plastificiranog","podoficir","podoficira","podoficire","podoficiri","podoficiru","polufinala","polufinale","polufinalu","pontifikat","porfira","porfire","porfiri","porfirija","porfirije","porfirom","porfiru","potrefilo","prefiks","prefiksa","prefiksi","prefiksima","prefiksom","prefinjen","prefinjena","prefinjene","prefinjeni","prefinjenim","prefinjenih","prefinjeno","prefinjenog","prefinjenoj","prefinjenom","prefinjenu","prefinjenost","prefinjenosti","profi","profil","profila","profilaksi","profile","profili","profilima","profilisan","profilise","profilisu","profilom","profilu","profini","profinjen","profinjena","profinjene","profinjeni","profinjenim","profinjenih","profinjenog","profinjenom","profinjenu","profira","profit","profita","profitabilno","profite","profiter","profitera","profitere","profiteri","profiterom","profiteru","profiti","profitima","profitira","profitirao","profitna","profitne","profitni","profitnim","profitnih","profitnu","profitom","profitu","profilaksa","profinjeno","paleografija","piktografija","polufinalist","pornografija","profinjenost","profilaktican","personifikacija","personificiranje","ratifikovala","ratifikuje","ratifikuju","rafinacije","rafinerija","rafinerijama","rafinerije","rafineriji","rafineriju","rafiniran","rafinirana","rafinirane","rafinirani","rafinirano","rafiniranom","rafiniranu","rafiniranja","rafinisana","rafinisanu","rafinisani","rafinise","rafinovan","rafinovane","rafinovani","reafirmise","reafirmisu","redefinisanje","redefinise","redefinisu","reljefi","reljefima","rusofila","rusofile","rusofili","rafiniranog","radiografija","ratifikacija","samoidentifikacija","safir","safira","safirima","safirno","safirom","safiru","serafim","serafima","serafime","serafimi","serafimidi","serafimov","serafimovo","serafimom","serafimu","serafina","serafita","sertifikat","sertifikata","sertifikatima","sertifikaciono","sifilis","sifilisa","sifilisom","sofi","sofizmima","sofist","sofista","sofisti","sofistike","sofistima","sofisticka","sofisticke","sofisticki","sofisticko","specifikacija","specifikacije","specifikaciji","specifikum","specifican","specificna","specificne","specificni","specificno","specificnosti","specificnostima","specificnu","stenografi","strofi","strofici","sulfid","sulfida","sulfide","surfing","sufizam","sufiks","sufiksa","sufikse","sufiksi","sufiksima","sufiksom","sufiksu","sufijskim","suficit","suficita","suficitom","suficitu","sfinga","sfinge","sfingom","scenografi","sofizam","safirski","sifiliticar","scenografija","stenografija","sofisticirani","specifikacijom","sofistika","sherifi","shefica","shefice","shefici","sheficom","shrafiran","shrafiranja","shrafiranje","shrafirana","tarifi","tartufi","tartufima","teozofi","teozofija","trandafil","trandafir","trafika","trafikama","trafikant","trafikanti","trafike","trafikinga","trafiku","trafici","trijumfima","trijumfira","trofima","trofimov","trofimu","trofin","telegrafija","telegrafist","tipografija","topografija","telegrafijom","unificira","unificirao","ufitiljenih","ufitiljio","verifikuje","verifikuju","zafir","zafira","zafijuche","zasrafim","zasrafiti","zefir","zefira","zulufi","zasarafiti","zalfija","zalfije","zalfijom","zalfiju","aeroflot","aeroflota","baterflaj","bofl","chifluk","deflatorna","deflacija","deflacije","deflaciju","deflacijski","defloracija","flagrantna","flagrantni","flagrantno","flanel","flaster","flastera","flasteri","flasterima","flasterom","flastere","flasterchic","flauta","flautama","flaute","flauti","flautista","flautiste","flautisti","flautistu","flautom","flautu","flasa","flasama","flase","flasi","flasirane","flasirano","flasiranoj","flasiranu","flasiranje","flasica","flasicama","flasice","flasici","flasicom","flasicu","flasom","flasu","flegmom","fleka","flekama","fleke","flekice","flekicu","fleksibilnijoj","fleksibilno","fleku","flert","flerta","flertovale","flertovalo","flertovati","flertovanja","flertovanje","flertovao","flertu","flertuje","flertujete","flertujte","flertuju","fleci","flesh","fleshevi","flik","fliperu","flomaster","flomastera","flomasteri","flop","flor","flora","flore","floret","floreti","floretom","floreta","floretu","flori","florin","florina","florini","florinu","floro","florom","floru","floskula","floskulama","floskule","floskulom","floskulu","flota","flotama","flotantna","flotantnoj","flotacija","flotacije","flotaciju","flote","floti","flotila","flotile","flotilu","flotom","flotu","fluid","fluida","fluide","fluidi","fluidna","fluidne","fluidni","fluidnim","fluidnih","fluidno","fluidnosti","fluks","fluktuira","fluor","fluora","fluorom","frflja","frfljate","flamingo","flautist","fliper","frfljati","flamanski","flanelski","flegmatican","fluktuacija","fluorescentan","inflatorna","inflatorne","inflatorni","inflatorno","inflatornu","inflacija","inflacije","inflaciji","inflacijom","inflaciju","inflaciona","inflacione","infleksija","infleksije","infleksiju","influence","isflekan","inflacijski","kamuflaza","kamuflaze","kamuflazne","kamuflaznu","kamuflazom","kamuflazu","kamuflira","kamufliran","kifla","kiflar","kifle","kifli","kiflica","kiflice","kiflicu","kiflom","kiflu","konflikata","konflikt","konflikta","konflikte","konflikti","konfliktna","konfliktne","konfliktni","konfliktno","konfliktnu","konfliktom","konfliktu","kamuflirati","mikroflore","muflon","muflona","nefleksibilnost","pamflet","pamfleta","pamflete","pamfleti","pamfletima","pamfletist","pamfletic","pamfletu","persiflaza","persiflaze","persiflazi","persiflazu","refleks","refleksa","reflekse","refleksi","refleksija","refleksije","refleksiji","refleksiju","refleksima","refleksna","refleksnim","refleksno","refleksom","refleksu","reflektor","reflektora","reflektore","reflektori","reflektuje","reflektuju","refleksni","refleksivan","reflektorom","reflektirati","sufler","suflera","sufleri","sufliranja","teleflore","vafl","vafle","vafli","zhirofle","Gadafi","Gadafija","Gadafijev","Gadafijem","Gadafiju","Zamfirova","Zamfirove","Zamfirovic","Zafirovic","Zafirovica","Zafirovicu","Zafirovski","Jefimija","Jefimije","Jefimiji","Jefimijin","Jefimijina","Jefimijine","Jefimijinu","Jefimijice","Jefimijom","Jefimiju","Jozefina","Koperfilda","Marfi","Memfist","Memfista","Mustafina","Mustafinim","Mustafino","Mustafinoj","Mustafica","Mefista","Mefisto","Mefistotel","Jefimovic","Jefimovica","Sofija","Sofijana","Sofije","Sofiji","Sofijin","Sofijina","Sofijinih","Sofijinom","Sofijinu","Sofijom","Sofiju","Teofil","Teofila","Teofilo","Teofilovica","Teofilom","Teofilu","Trifica","Culafic","Gertelfingenu","Gertelfingen"]}
-,
-"sesstime.sty":{"envs":{},"deps":["keyval.sty"],"cmds":["timingconfigure","timingstart","timingsplit","timingstop","timingnext","timinglapse","timinggauge","timingblocktotal","timingchapter","timingchapterend","timingchapterlabel","timingchaptertotal","timingreturn","timingsession","timingsessionend","timinglistofsessions","timingcomment","timingif","timingprint","timingprintblock","timingprintchapter","timingprintmark","timingprintremark","timingprintsession","timingsessionline","timingsessiontotal"]}
-,
-"setdeck.sty":{"envs":{},"deps":["xcolor.sty","tikz.sty","tikzlibrarypatterns.sty"],"cmds":["setcard","smallsetcard"]}
-,
-"setdim.sty":{"envs":{},"deps":{},"cmds":["ifta","iftb","txa","settext","lsettext","retdims","rstdims","setpage","lsetpage","changetext","changepage"]}
-,
-"setouterhbox.sty":{"envs":["setouterhbox"],"deps":{},"cmds":["setouterhbox","endsetouterhbox","setouterhboxFailure","setouterhboxRemove","setouterhboxFinish","setouterhboxAfter","setouterhboxReturnAfterFi"]}
-,
-"sets.sty":{"envs":{},"deps":{},"cmds":["newset","newsetsimple","listset","setseparator","sizeofset","is","iselementofset","unionsets","to","minussets","minus","intersectsets","sortset","deleteduplicates"]}
-,
-"setspace.sty":{"envs":["singlespace"],"deps":{},"cmds":["singlespacing","onehalfspacing","doublespacing","SetSinglespace","setstretch","displayskipstretch","setdisplayskipstretch"]}
-,
-"settobox.sty":{"envs":{},"deps":{},"cmds":["settoboxwidth","settoboxheight","settoboxdepth","settoboxtotalheight","setboxwidth","setboxheight","setboxdepth","setboxmoveleft","setboxmoveright","setboxlower","setboxright"]}
-,
-"sf298.sty":{"envs":{},"deps":["totpages.sty","multicol.sty","fancyhdr.sty"],"cmds":["Abstract","AbstractClassification","AbstractLimitation","Acronyms","Author","ContractNumber","DatesCovered","DistributionStatement","DownShift","eg","GeneralInstructions","GrantNumber","LeftShift","MakeGenInsPage","MakeRptDocPage","NumberPages","PageClassification","PerformingOrg","POReportNumber","ProgramElementNumber","ProjectNumber","ReportClassification","ReportDate","ReportDescription","ReportType","ResponsiblePerson","RPTelephone","SMReportNumber","SponsoringAgency","SubjectTerms","SupplementaryNotes","TaskNumber","Title","WorkUnitNumber"]}
-,
-"sgame.sty":{"envs":["game","game*","gtabular","gstartabular"],"deps":["color.sty"],"cmds":["gamestretch","sgcolsep","sglabelsep","ifirpawcgl","irpawcgltrue","irpawcglfalse","ifirplwcgl","irplwcgltrue","irplwcglfalse","ifgamemath","gamemathtrue","gamemathfalse","ifgamevalign","gamevaligntrue","gamevalignfalse","ifssual","ssualtrue","ssualfalse","sglinecolor","sgtextcolor","enoughcols","tempstretch"]}
-,
-"sgamevar.sty":{"envs":["game","game*","gtabular","gstartabular"],"deps":["color.sty"],"cmds":["gamestretch","sgcolsep","sglabelsep","ifirpawcgl","irpawcgltrue","irpawcglfalse","ifirplwcgl","irplwcgltrue","irplwcglfalse","ifgamemath","gamemathtrue","gamemathfalse","ifgamevalign","gamevaligntrue","gamevalignfalse","ifssual","ssualtrue","ssualfalse","sglinecolor","sgtextcolor","enoughcols","tempstretch"]}
-,
-"shadethm.sty":{"envs":["shadebox"],"deps":["color.sty"],"cmds":["newshadetheorem","shadeboxrule","shadeboxsep","shadesetinsideminipage","saveparindent","shadedtextwidth","shadeleftshift","shaderightshift","shadesavebox"]}
-,
-"shadow.sty":{"envs":{},"deps":{},"cmds":["shabox","sboxrule","sboxsep","sdim"]}
-,
-"shadowtext.sty":{"envs":{},"deps":["color.sty"],"cmds":["shadowtext","shadowoffset","shadowoffsetx","shadowoffsety","shadowcolor","shadowrgb"]}
-,
-"shapepar.sty":{"envs":{},"deps":{},"cmds":["shapepar","Shapepar","cutout","squareshape","squarepar","circleshape","circlepar","CDlabshape","CDlabel","diamondshape","diamondpar","heartshape","heartpar","starshape","starpar","hexagonshape","hexagonpar","nutshape","nutpar","rectangleshape","cutoutsep","cutoutsepstretch","RefineBaselines","ScaleMaxTries","SmallestGap","SmallGap","SmallestSegment","Pointless","AbsVal","fpdivide","sqrtofdim","specA","specB","sqrtcount","sqrtofcount","squinitial","squiterate"]}
-,
-"shdoc.sty":{"envs":["sh","shbox"],"deps":["xcolor.sty","float.sty","caption.sty","mdframed.sty","kvoptions.sty","relsize.sty","stringstrings.sty","ifthen.sty"],"cmds":["shchange","shchangecolor","shchangesymbol","shpreset","shpresetdef","shuser","shmachine","shline","shpath","shoutput","shlistname","shfloatname","shread","shrun","shautoread","shautorun","shautopath","shautoformat","shclearfiles","listofsh","theshlinenumber"]}
-,
-"shellesc.sty":{"envs":{},"deps":{},"cmds":["ShellEscapeStatus","DelayedShellEscape","ShellEscape"]}
-,
-"shortmathj.sty":{"envs":{},"deps":["ifthen.sty","xstring.sty"],"cmds":["shortifyAMSjournalname","shortifiedAMSjournalname","givenAMSjournalname","firstletter"]}
-,
-"shorttoc.sty":{"envs":{},"deps":{},"cmds":["shorttableofcontents","shorttoc","anothertableofcontents","anothertoc"]}
-,
-"shortvrb.sty":{"envs":{},"deps":{},"cmds":["MakeShortVerb","DeleteShortVerb"]}
-,
-"show2e.sty":{"envs":{},"deps":{},"cmds":["showcmd","showcs","showenv"]}
-,
-"showcharinbox.sty":{"envs":{},"deps":{},"cmds":["ShowCharInBox"]}
-,
-"showdim.sty":{"envs":{},"deps":{},"cmds":["tenthpt","tenthpc","hundredthpc","tenthpcpt","pttenthpc","pthundredthpc","points","negpoints","picas"]}
-,
-"showexpl.sty":{"envs":["LTXexample"],"deps":["refcount.sty","listings.sty","graphicx.sty","varwidth.sty","float.sty","attachfile.sty"],"cmds":["LTXinputExample","ResultBox","ResultBoxSep","ResultBoxRule","theltxexample","MakePercentIgnore","MakePercentComment","lstlgrindeffile","lstdefineformat"]}
-,
-"showframe.sty":{"envs":{},"deps":["eso-pic.sty"],"cmds":["ShowFrameColor","ShowFrameLinethickness","ShowFramePicture"]}
-,
-"showhyphenation.sty":{"envs":{},"deps":["ifluatex.sty","luatexbase.sty"],"cmds":{}}
-,
-"showhyphens.sty":{"envs":{},"deps":["ifluatex.sty","luatexbase.sty"],"cmds":{}}
-,
-"showkerning.sty":{"envs":{},"deps":["ifluatex.sty","luatexbase.sty"],"cmds":{}}
-,
-"showkeys.sty":{"envs":{},"deps":["color.sty"],"cmds":["showkeyslabelformat"]}
-,
-"showlabels.sty":{"envs":{},"deps":{},"cmds":["showlabels","showlabelsinline","showlabelsmarginal","showlabelsfont","showlabelsetlabel","showlabeltype","showlabelrefline"]}
-,
-"shtthesis.cls":{"envs":["nomenclatures","theorem","lemma","corollary","proposition","conjecture","definition","axiom","example","problem","exercise","remark","acknowledgement","resume","publications","publications*","patents","patents*","projects","enumerate*","itemize*","description*"],"deps":["iftex.sty","kvdefinekeys.sty","kvsetkeys.sty","kvoptions.sty","datetime.sty","s-ctexbook.cls","xeCJK.sty","expl3.sty","xparse.sty","xcolor.sty","geometry.sty","calc.sty","verbatim.sty","etoolbox.sty","ifthen.sty","graphicx.sty","indentfirst.sty","ulem.sty","fancyhdr.sty","lastpage.sty","tocvsec2.sty","letltxmacro.sty","fontspec.sty","caption.sty","enumitem.sty","mathtools.sty","amsthm.sty","unicode-math.sty","biblatex.sty","hyperref.sty","colortbl.sty"],"cmds":["shtsetup","artxaux","artxmaincnt","bm","checkmark","currentfontset","header","inlinecite","intobmk","intobmknostar","intobmkstar","intotoc","intotocnostar","intotocstar","makebiblio","makedeclarations","makeindices","OriginCleardoublepage","ShtThesis","shtthesis","square","TmpFrontmatter","TmpMainmatter","version","versiondate","citet","citep","citealt","citealp","citeauthor","citeyearpar","Citet","Citep","Citealt","Citealp","citefullauthor","Citefullauthor","citetext","defcitealias","citetalias","citepalias"]}
-,
-"shuffle.sty":{"envs":{},"deps":{},"cmds":["shuffle","cshuffle"]}
-,
-"sidebars.sty":{"envs":{},"deps":{},"cmds":["backgroundcolor","sidebarcolor","highlightcolor","titlecolor","sidebartitlecolor"]}
-,
-"sidecap.sty":{"envs":["SCtable","SCfigure","SCtable*","SCfigure*","wide"],"deps":["ifthen.sty","ragged2e.sty"],"cmds":["sidecaptionsep","sidecaptionrelwidth","sidecaptionvpos"]}
-,
-"sidenotes.sty":{"envs":["marginfigure","margintable"],"deps":["l3keys2e.sty","marginnote.sty","caption.sty","xparse.sty","changepage.sty"],"cmds":["sidenote","sidenotemark","sidenotetext","sidecaption","thesidenote"]}
-,
-"sidenotesplus.sty":{"envs":["marginfigure","margintable","text*"],"deps":["marginnote.sty","caption.sty","xparse.sty","calc.sty","etoolbox.sty","l3keys2e.sty","ifoddpage.sty","mparhack.sty","xspace.sty","changepage.sty","ragged2e.sty"],"cmds":["sidenote","sidenotetext","sidenotetextbefore","sidenotemark","sidealert","sidepar","sidecaption","raggedinner","raggedouter","margincaption","sidecite","sidecitet","snptest","IfNoValueOrEmptyTF","thesidenote","thesidealert","oldmarginpar","IfsTF","istwosided","marginparsepodd","marginparsepeven","patcherr","patchok","patch"]}
-,
-"signchart.sty":{"envs":{},"deps":["tikz.sty","pgfplots.sty","xstring.sty","xkeyval.sty"],"cmds":["signchart","signHeightKey","valNorthSouthKey","valSepKey","signChartWidth","signHeight","valNorthSouth","valSep","snht","wid","vals","signs","valsarray","theArrow","thisVal","len","k","pos","leftParti","rightPart","aLength","cutAmount","leftPartii","valpos","signpos","s"]}
-,
-"silence.sty":{"envs":{},"deps":{},"cmds":["WarningsOff","ErrorsOff","WarningsOn","ErrorsOn","WarningFilter","ErrorFilter","ActivateWarningFilters","ActivateErrorFilters","DeactivateWarningFilters","DeactivateErrorFilters","ActivateFilters","DeactivateFilters","SafeMode","BoldMode"]}
-,
-"sillypage.sty":{"envs":{},"deps":["graphicx.sty"],"cmds":["silly","sillystep","sillynumeral","sillypageDate","sillypageVersion"]}
-,
-"simplebnf.sty":{"envs":["bnfgrammar"],"deps":["mathtools.sty"],"cmds":["SimpleBNFDefEq","SimpleBNFDefOr","SimpleBNFStretch","bnfexpr","bnfannot"]}
-,
-"simpleicons.sty":{"envs":{},"deps":["ifxetex.sty","ifluatex.sty"],"cmds":["simpleicon","simpleiconsmap","simpleiconsmapOne","simpleiconsmapTwo","simpleiconsmapThree","simpleiconsmapFour","simpleiconsmapFive","simpleiconsmapSix","simpleiconsmapSeven","simpleiconsmapEight","simpleiconsmapNine","simpleiconsmapOneZero"]}
-,
-"simpleinvoice.sty":{"envs":{},"deps":["advdate.sty","url.sty","etoolbox.sty","colortbl.sty"],"cmds":["setinvoicetitle","setinvoicenumber","setreceivername","setreceiveraddress","setname","setaddress","setphonenumber","setemail","setyourref","setourref","setinvoicedate","setdeadline","additem","setsubtotal","setvat","settotal","setaccountnumber","makeinvoice","linesep"]}
-,
-"simplekv.sty":{"envs":{},"deps":{},"cmds":["setKV","setKVdefault","useKV","restoreKV","useKVdefault","ifboolKV","showKV","defKV","testboolKV","skvname","skvver","skvdate"]}
-,
-"simplenodes.sty":{"envs":{},"deps":["kvoptions.sty","tikz.sty","tikzlibrarymath.sty","color.sty"],"cmds":["simplenode","examplenode","alertnode","warnnode","link","gettikzxy","mynode","myline"]}
-,
-"simpleoptics.sty":{"envs":{},"deps":["tikz.sty"],"cmds":["mirror","leftplanoconvexlens","rightplanoconvexlens","leftplanoconcavelens","rightplanoconcavelens","biconvexlens","biconcavelens","convexconcavelens","concaveconvexlens","lens","straightline","mirrorX","mirrorY","mirrorRadius","mirrorHeight","startAngle","lensX","lensY","lensRadius","lensHeight","lensThickness","lensXright","lensXleft"]}
-,
-"simpler-wick.sty":{"envs":{},"deps":["tikz.sty","pgfopts.sty","tikzlibrarycalc.sty","tikzlibraryexternal.sty"],"cmds":["wick","c"]}
-,
-"simples-matrices.sty":{"envs":{},"deps":["expl3.sty","l3keys2e.sty","xparse.sty","amsmath.sty"],"cmds":["simplesmatricessetup","matrice","declarermatrice","lamatrice","MatriceInterieur","LaMatriceInterieur","matid","matnulle"]}
-,
-"simplethesisdissertation.cls":{"envs":["Thm:Theorem","Thm:Lemma","Thm:Corollary","Thm:Claim","Thm:Proposition","Thm:Conjecture","Thm:Problem","Thm:Definition","ResizedAlign*","CodeBlock"],"deps":["s-report.cls","geometry.sty","babel.sty","cite.sty","environ.sty","rotating.sty","framed.sty","hyperref.sty","color.sty","fontspec.sty","xunicode.sty","xltxtra.sty","lmodern.sty","textcomp.sty","underscore.sty","titlesec.sty","setspace.sty","graphicx.sty","longtable.sty","multirow.sty","booktabs.sty","array.sty","arydshln.sty","datetime2.sty","amsmath.sty","amsfonts.sty","amsbsy.sty","amssymb.sty","amsthm.sty","algpseudocode.sty","lipsum.sty"],"cmds":["BlankFootnote","Break","CaptionFontSize","Chapter","Chaptermark","Chaptername","Chapters","Claim","Claims","code","CommentLeft","CommentRight","Conjecture","Conjectures","Corollaries","Corollary","cref","dashhorizontal","dashvertical","DefineItem","Definition","Definitions","DisableTOCUpdates","DummyThree","EnableTOCUpdates","Example","Examples","Figure","Figures","FooterText","fref","Goto","Hide","IndentBlock","IndentHanging","Lemma","Lemmas","mathbbold","mref","one","Part","Parts","pref","Problem","Problems","Proposition","Propositions","qedmarker","Section","Sectionmark","Sectionname","Sections","sref","Stateu","Subsectionmark","Subsectionname","Subsubsectionmark","Subsubsectionname","Table","Tables","tempaddcontentsline","Theorem","Theorems","Timestamp","TODO","tref","TypesetInDraftMode","UseHeaderFooterFont","captionsenglish","dateenglish","extrasenglish","noextrasenglish","englishhyphenmins","britishhyphenmins","americanhyphenmins","prefacename","bibname","chaptername","enclname","ccname","headtoname","pagename","seename","alsoname","proofname","glossaryname"]}
-,
-"simplivre.cls":{"envs":{},"deps":["s-book.cls","silence.sty","geometry.sty","minimalist.sty","projlib-font.sty","fontspec.sty","ctex.sty","unicode-math.sty","tikz-cd.sty","nowidow.sty","embrac.sty","graphicx.sty","wrapfig.sty","float.sty","caption.sty","draftwatermark.sty","parskip.sty","amssymb.sty","lmodern.sty","newtxmath.sty","ebgaramond-maths.sty","ebgaramond.sty","anyfontsize.sty","notomath.sty","eulervm.sty","mathastext.sty"],"cmds":["desculine","seculine","simpleqedsymbol","subseculine","xlongequal","xtwoheadrightarrow","xtwoheadleftarrow","IfPrintModeTF","IfPrintModeT","IfPrintModeF","captionsjapanese","datejapanese","extrasjapanese","noextrasjapanese","cyrdash","asbuk","Asbuk","Russian","sh","ch","tg","ctg","arctg","arcctg","th","cth","cosec","Prob","Variance","NOD","nod","NOK","nok","Proj","cyrillicencoding","cyrillictext","cyr","textcyrillic","dq","captionsrussian","daterussian","extrasrussian","noextrasrussian","CYRA","CYRB","CYRV","CYRG","CYRGUP","CYRD","CYRE","CYRIE","CYRZH","CYRZ","CYRI","CYRII","CYRYI","CYRISHRT","CYRK","CYRL","CYRM","CYRN","CYRO","CYRP","CYRR","CYRS","CYRT","CYRU","CYRF","CYRH","CYRC","CYRCH","CYRSH","CYRSHCH","CYRYU","CYRYA","CYRSFTSN","CYRERY","cyra","cyrb","cyrv","cyrg","cyrgup","cyrd","cyre","cyrie","cyrzh","cyrz","cyri","cyrii","cyryi","cyrishrt","cyrk","cyrl","cyrm","cyrn","cyro","cyrp","cyrr","cyrs","cyrt","cyru","cyrf","cyrh","cyrc","cyrch","cyrsh","cyrshch","cyryu","cyrya","cyrsftsn","cyrery","cdash","tocname","authorname","acronymname","lstlistingname","lstlistlistingname","notesname","nomname"]}
-,
-"simpsons.sty":{"envs":{},"deps":{},"cmds":["Left","Lisa","Homer","Bart","Marge","Maggie","Burns","SNPP"]}
-,
-"sitem.sty":{"envs":{},"deps":{},"cmds":["sitem"]}
-,
-"siunitx-special.sty":{"envs":{},"deps":{},"cmds":["bit","byte","mmHg","molar","Molar","torr","dalton","clight","eVperc","yoctobarn","yb","zeptobarn","zb","attobarn","ab","femtobarn","fb","picobarn","pb","nanobarn","nb","micron","mrad","gauss","parsec","lightyear"]}
-,
-"siunitx.sty":{"envs":{},"deps":["translations.sty","color.sty","xspace.sty"],"cmds":["A","ampere","amu","ang","arcminute","arcsecond","as","astronomicalunit","atto","becquerel","bel","bit","byte","C","candela","centi","cm","complexnum","complexqty","coulomb","cubed","cubic","dalton","dB","deca","deci","decibel","DeclareSIPower","DeclareSIPrefix","DeclareSIQualifier","DeclareSIUnit","degreeCelsius","degree","deka","dm","electronvolt","eV","exa","exbi","F","farad","femto","fF","fg","fH","fmol","fs","g","GeV","GHz","gibi","giga","GPa","gram","gray","GW","hectare","hecto","henry","hertz","highlight","hL","hl","hour","Hz","J","joule","K","kA","katal","kelvin","keV","kg","kHz","kibi","kilo","kilogram","kJ","km","kmol","kN","kohm","kPa","kV","kW","kWh","L","l","liter","litre","lumen","lux","m","mA","mC","mebi","mega","meter","metre","MeV","meV","mF","mg","mH","MHz","mHz","micro","milli","minute","mJ","mL","ml","mm","mmol","MN","mN","Mohm","mohm","mol","mole","mp","MPa","ms","mV","MW","mW","N","nA","nano","nC","neper","newton","nF","ng","nm","nmol","ns","num","numlist","numproduct","numrange","nV","nW","of","ohm","Pa","pA","pascal","pebi","per","percent","peta","pF","pg","pH","pico","pm","pmol","ps","pV","qty","qtylist","qtyproduct","qtyrange","quecto","quetta","radian","raiseto","ronna","ronto","s","second","siemens","sievert","sisetup","square","squared","steradian","tablenum","tebi","tera","tesla","TeV","THz","tonne","tothe","uA","uC","uF","ug","uH","uJ","uL","ul","um","umol","unit","us","uV","uW","V","volt","W","watt","weber","yobi","yocto","yotta","zebi","zepto","zetta","angstrom","atomicmassunit","bar","barn","bohr","celsius","clight","DeclareBinaryPrefix","DeclareSIPostPower","DeclareSIPrePower","electronmass","elementarycharge","hartree","knot","mmHg","nauticalmile","planckbar","SendSettingsToPgf","SI","si","SIlist","SIrange","SIUnitSymbolAngstrom","SIUnitSymbolArcminute","SIUnitSymbolArcsecond","SIUnitSymbolCelsius","SIUnitSymbolDegree","SIUnitSymbolMicro","SIUnitSymbolOhm","ll","gg","le","ge"]}
-,
-"sizeredc.sty":{"envs":["sfpicture"],"deps":["epic.sty"],"cmds":["changeunitlength","ifsizereduction","reducedsizepicture","sizereductionfalse","sizereductiontrue","substfontsize","thicklines","thinlines","DIVIDE","dotorline","ifseifuflag","LineTemp","oldlineslope","RR","seifuflagfalse","seifuflagtrue"]}
-,
-"skak.sty":{"envs":{},"deps":["chessfss.sty","lambda.sty","ifthen.sty","calc.sty","textcomp.sty","pstricks.sty","pst-node.sty"],"cmds":["newgame","mainline","variation","showboard","hidemoves","storegame","restoregame","savegame","loadgame","notationon","notationoff","notationOn","notationOff","showinverseboard","wmove","bmove","lastmove","showonlywhite","showonlyblack","showonly","showallbut","fenboard","styleA","styleB","styleC","variationstyle","mainlinestyle","longmoves","shortmoves","newskaklanguage","skaklanguage","boardasfen","EnPassantSquare","variationcurrent","continuevariation","continuevariationcurrent","tinyboard","smallboard","normalboard","largeboard","movecomment","showall","showonlypawns","showmoveron","showmoveroff","showmoverOn","showmoverOff","printarrow","highlight","printknightmove","afterblack","AfterBlack","aftergrouplength","afterwhite","AfterWhite","Apply","arga","argb","BackwardDirection","beforeblack","beforenumber","beforewhite","BlackCastling","BlackKingSquare","blackopen","BlackPiece","BlackSquarePiece","BoolToString","Capture","CastleDone","CastleKingFile","CastleRookFromFile","CastleRookToFile","Castling","CheckTest","closecommands","currentlanguage","currentstyle","DoTheMove","DoTheMoveList","EatNumber","EatNumberA","EmptyBoard","EqPiece","EqSquare","EqStr","ExecuteCastling","ExecuteKingMove","ExecuteMoves","ExecutePawnMove","ExecutePieceMove","ExpectedColour","Explode","ExplodeA","ExtractBlackCastling","ExtractBlackCastlingA","ExtractWhiteCastling","ExtractWhiteCastlingA","FenBoard","FenConvert","FF","File","FileDiscriminator","FileNames","FileOf","FilterShowOnly","FindPieceSquares","FirstChar","FirstRank","ForwardDirection","FromRank","Get","GetBool","GetNeighbour","Glue","HandleMove","InitBoard","InitialRank","InitRank","IsBishopQueen","IsCapture","IsDash","IsFile","IsNil","IsO","IsPieceName","IsPromotion","IsRank","IsRightPiece","IsRookQueen","KingSquare","KnightSquares","LambdaAnd","LastCharWasCastle","LastMoveString","leavestylec","LeftDirection","LegalMove","LongCastling","LookFor","LookForA","LookForMove","Mainline","MakeMove","MakeMoveMainline","MateTest","Member","MemberA","MoveFrom","movehyphen","MoveRest","MoveTo","MoveToFile","MoveToRank","movewhite","MyEqual","MyEqualB","MyFirst","myrestore","myrightfile","MySecond","mystore","next","NoEnemiesFound","normalstyles","NotMember","NumberNext","oldpiece","opencommands","pap","ParseCastling","ParseCastlingA","ParseCoordinates","ParseFenRank","ParseFenRankA","ParseMove","ParseMoveA","ParseMoveInit","PawnFrom","PieceNames","PieceNameToMove","PieceNameToPiece","PieceToFen","PieceToMove","PrintCastling","printfileangle","printmove","PrintMoves","printrankangle","Promotion","PromotionPieceName","Rank","RankDiscriminator","ranklift","RankNames","RankOf","RemoveLongCastling","RemoveShortCastling","RestChars","RightDirection","RightFile","RightRank","runmoves","ScanDirections","Set","SetCheckKing","SetDownLeftNeighbour","SetDownNeighbour","SetDownRightNeighbour","SetKingSquare","SetKnightSquares","SetLeftNeighbour","SetNeighbour","SetRank","SetRightNeighbour","setupboard","SetUpLeftNeighbour","SetUpNeighbour","SetUpRightNeighbour","Showchar","Showfile","Showfiles","ShowMover","ShowMoverBlackInverse","ShowMoverBlackNormal","ShowMoverWhiteInverse","ShowMoverWhiteNormal","ShowOnlyList","ShowParseInfo","Showrank","ShowrankInverse","ShowrankInverseWithNumber","ShowrankNumber","ShowrankWithNumber","showskaklanguage","Sideeffect","skakstore","squarelength","StoreBool","StoreLastMove","StringToTokens","StripMove","StrToTokens","tempCastling","TeXifx","thefileFrom","thefileTo","thehalfmove","thehelpgobble","thehelpnumber","thehelpnumberMove","themove","therankFrom","therankTo","tmpCastling","ToggleWhiteSquare","trimhelp","TrimMoveList","TypeSetAfterBlack","TypeSetAfterWhite","TypeSetColour","TypeSetNumberNext","UndoMove","UniqueMove","UpdateCastling","WhiteCastling","WhiteKingSquare","whiteopen","WhiteSquare","WhiteSquarePiece","WhiteToMove"]}
-,
-"skdoc.cls":{"envs":["example","macro*","environment*","option","option*","bibentry","bibentry*","theme","theme*","MacroCode","enum"],"deps":["expl3.sty","s-scrartcl.cls","etoolbox.sty","xstring.sty","xparse.sty","atbegshi.sty","kvoptions.sty","pdftexcmds.sty","everyhook.sty","verbatim.sty","needspace.sty","marginnote.sty","calc.sty","hyperref.sty","multicol.sty","hologo.sty","glossaries.sty","ydoc-code.sty","ydoc-desc.sty","scrlayer-scrpage.sty","babel.sty","csquotes.sty","caption.sty","PTSerif.sty","sourcecodepro.sty","opensans.sty","microtype.sty","minted.sty"],"cmds":["package","version","ctan","repository","email","theversion","thepackage","thepkg","PrintLPPL","Notice","Warning","LongWarning","cs","env","pkg","opt","bib","thm","file","Option","Options","WithValues","AndDefault","BibEntry","WithFields","Theme","DescribeFile","DeclareFile","PreambleTo","SelfPreambleTo","Implementation","Finale","OnlyDescription","changes","PrintChanges","PrintIndex","LPPL","LPPLdocfile","LPPLfile","LPPLicense","LPPLparagraph","LPPLsection","LPPLsubsection","LPPLsubsubsection","PY","PYZam","PYZat","PYZbs","PYZca","PYZcb","PYZdl","PYZdq","PYZgt","PYZhy","PYZlb","PYZlt","PYZob","PYZpc","PYZrb","PYZsh","PYZsq","PYZti","PYZus","descframe","endDescribeEnv","endLPPLicense","generalname","hyperul","name","oldmakeatletter","skdocpdfsettings","captionsenglish","dateenglish","extrasenglish","noextrasenglish","englishhyphenmins","britishhyphenmins","americanhyphenmins","prefacename","bibname","chaptername","enclname","ccname","headtoname","pagename","seename","alsoname","proofname","glossaryname"]}
-,
-"skeldoc.sty":{"envs":{},"deps":["expl3.sty","xcolor.sty","xparse.sty","tabularx.sty","booktabs.sty","hyperref.sty","enotez.sty","marginnote.sty","enumitem.sty"],"cmds":["skelset","skelline","skelref","skelcite","skelpar","skelfig","skelcaption","skelpars","skelitems","skelenum","skeltabular","skelbib","skelpseudo","skelnote","printskelnotes","skelversion","skeldate"]}
-,
-"skills.sty":{"envs":["skillquestions"],"deps":["iftex.sty","kvoptions.sty","glossaries.sty","tabularx.sty","etoolbox.sty","marginnote.sty"],"cmds":["skilldef","skillquestion","skills","globalskills","skillstable","putglobalskills","skillssep","skillsinmargin","skillsinleftmargin","skillsinrightmargin","noskillsinmargin","noskillsinrightmargin","skillsinmarginvadjust","bracketedskills","nobracketedskills","boxedskills","noboxedskills","onlyskills","notonlyskills","skillsenclosement","skilllevelname","FrenchLocalization","PrintingSkillsConfiguration","defaultskillsclosing","defaultskillsenclosement","defaultskillsopening","globalskill","glsgobblenumber","multiskills","nextitem","skillcounter","skillsclosing","skillsopening","skill"]}
-,
-"skmath.sty":{"envs":{},"deps":["expl3.sty","l3keys2e.sty","xparse.sty","amssymb.sty","mathtools.sty","xfrac.sty","isomath.sty"],"cmds":["N","Z","Q","R","C","ii","jj","ee","norm","abs","d","pd","td","E","P","given","var","cov","sin","arcsin","cos","arccos","tan","arctan","cot","sinh","cosh","tanh","ln","log","exp","min","argmin","max","argmax","sup","inf","bar","Re","Im"]}
-,
-"skrapport.cls":{"envs":["onecol","onecol","figcenter"],"deps":["expl3.sty","l3keys2e.sty","xparse.sty","xstring.sty","etoolbox.sty","typearea.sty","multicol.sty","babel.sty","amsmath.sty","amssymb.sty","calc.sty","isodate.sty","isomath.sty","microtype.sty","skmath.sty","textcomp.sty","xcolor.sty","xkeyval.sty","fontenc.sty","grid.sty","kpfonts.sty","lmodern.sty","sourcecodepro.sty","arev.sty","pxfonts.sty","tgpagella.sty","MinionPro.sty","MnSymbol.sty","MyriadPro.sty","PTSerif.sty","opensans.sty","fontspec.sty"],"cmds":["captionsbritish","datebritish","extrasbritish","noextrasbritish","englishhyphenmins","britishhyphenmins","americanhyphenmins","prefacename","bibname","chaptername","enclname","ccname","headtoname","pagename","seename","alsoname","proofname","glossaryname","captionsswedish","dateswedish","extrasswedish","noextrasswedish","swedishhyphenmins","datesymd","datesdmy","dq","captionsngerman","datengerman","extrasngerman","noextrasngerman","ntosstrue","ntossfalse","mdqon","mdqoff","author","regarding","license","maketitle","comment","note","com","eg","ie","etc","cf","viz","dash","colortheme","DH","NG","dj","ng","k","guillemotleft","guillemotright","guilsinglleft","guilsinglright","quotedblbase","quotesinglbase","textquotedbl","DJ","th","TH","dh","Hwithstroke","hwithstroke","textogonekcentered","guillemetleft","guillemetright"]}
-,
-"skt.sty":{"envs":{},"deps":["relsize.sty","ifthen.sty"],"cmds":["skt","sktb","sktbs","sktf","sktfs","skti","sktI","skts","sktt","sktT","sktu","sktU","sktx","sktX","SKTBOXA","SKTBOXB","sktcommon","SKTDIMH","SKTDIMS","SKTDIMV","theSKTCNTS","theSKTCNTX","theSKTCNTY","theSKTCNTZ","ZA","ZB","ZC","ZD","ZF","ZH","ZK","ZL","ZM","ZN","ZP","ZR","ZS","ZT","ZV","ZW","ZX","ZY","ZZ"]}
-,
-"skull.sty":{"envs":{},"deps":{},"cmds":["skull"]}
-,
-"slantsc.sty":{"envs":{},"deps":["ifthen.sty"],"cmds":["scitdefault","scsldefault","noscshape"]}
-,
-"slashbox.sty":{"envs":{},"deps":{},"cmds":["backslashbox","slashbox"]}
-,
-"slashed.sty":{"envs":{},"deps":{},"cmds":["slashed","declareslashed"]}
-,
-"slemph.sty":{"envs":{},"deps":{},"cmds":["itswitch","slswitch","textitswitch","textslswitch","fileinfo","DoXUsepackagE","HaveECitationS","fileversion","filedate","docdate","PPOptArg"]}
-,
-"slides.cls":{"envs":["slide","overlay","note"],"deps":{},"cmds":["theminutes","theseconds","settime","addtime","ifourteenpt","iseventeenpt","itwentypt","itwentyfourpt","itwentyninept","ithirtyfourpt","ifortyonept","newifG","theslide","theoverlay","thenote","onlyslides","onlynotes","invisible","visible"]}
-,
-"sltables.sty":{"envs":["stable","stableto","stablesp"],"deps":{},"cmds":["vt","vtt","vttt","vtr","vttr","vtttr","stpar","el","elt","eltt","elttt","elspec","trule","ttrule","tttrule","multirow","multicolumn","stparrow","borderrule","emultirow","estpar","estparrow","ifstablemode","ifstablesborderthin","ifstablesin","ifstablesinternalthin","ifstablesomit","ifstablesright","internalrule","mscount","stablelinehelp","stablemodefalse","stablemodetrue","stablesadj","stablesbaselineskip","stablesborderthinfalse","stablesborderthintrue","stablesborderwidth","stablescount","stablesdef","stablesdummy","stablesdummyc","stablesel","stablesend","stablesinfalse","stablesinternalthinfalse","stablesinternalthintrue","stablesinternalwidth","stablesintrue","stablesleft","stableslines","stableslineskip","stableslineskiplimit","stableslinet","stablesmode","stablesmultiplehelp","stablesomitfalse","stablesomittrue","stablesright","stablesrightfalse","stablesrighttrue","stablestart","stablestemp","stablesthickline","stablesthinline","stablestrut","stablestrutbox","stablestrutsize","stablestyle","stablestylehelp","stmultispan","stspan","thickline","thinline"]}
-,
-"smalltableof.sty":{"envs":{},"deps":{},"cmds":["chapterNoNumber","sectionNoNumber","toc","tablesname","sectiontable","sectiontableoffigure","sectiontableoftable","tablechapter","stdtables","mabibliographie"]}
-,
-"smart-eqn.sty":{"envs":{},"deps":["fancyvrb.sty","xparse.sty"],"cmds":["smesetsym","smeclearsym","makeatmath","smenewenv","smeraw","smeDefineVerbatimEnvironment"]}
-,
-"smartdiagram.sty":{"envs":{},"deps":["tikz.sty","xparse.sty","etoolbox.sty","xstring.sty"],"cmds":["smartdiagram","smartdiagramanimated","usesmartdiagramlibrary","smartdiagramadd","smartdiagramconnect","smartdiagramset"]}
-,
-"smartref.sty":{"envs":{},"deps":{},"cmds":["newnamelabel","byname","byshortname","sgetequationval","equationref","ifequationchanged","isequationchanged","sequationref","srefequationref","sgetfigureval","figureref","iffigurechanged","isfigurechanged","sfigureref","sreffigureref","sgetfootnoteval","footnoteref","iffootnotechanged","isfootnotechanged","sfootnoteref","sreffootnoteref","sgetparagraphval","paragraphref","ifparagraphchanged","isparagraphchanged","sparagraphref","srefparagraphref","sgetpartval","partref","ifpartchanged","ispartchanged","spartref","shortpartname","srefpartref","smartref","sgetsectionval","sectionref","ifsectionchanged","issectionchanged","ssectionref","srefsectionref","sgetsubparagraphval","subparagraphref","ifsubparagraphchanged","issubparagraphchanged","ssubparagraphref","srefsubparagraphref","sgetsubsectionval","subsectionref","ifsubsectionchanged","issubsectionchanged","ssubsectionref","srefsubsectionref","sgetsubsubsectionval","subsubsectionref","ifsubsubsectionchanged","issubsubsectionchanged","ssubsubsectionref","srefsubsubsectionref","sgettableval","tableref","iftablechanged","istablechanged","stableref","sreftableref","sgetchapterval","chapterref","ifchapterchanged","ischapterchanged","schapterref","shortchaptername","srefchapterref","sgetpageval","ifpagechanged","ispagechanged","spageref","shortpagename","srefpageref","addtoreflist","newsmartlabel","filedate","fileversion"]}
-,
-"smartunits.sty":{"envs":{},"deps":["siunitx.sty","pgfmath.sty","pgfkeys.sty"],"cmds":["SmartUnit","SmartUnitSettings"]}
-,
-"smfart.cls":{"envs":["altabstract"],"deps":["amsgen.sty","amsfonts.sty","amsmath.sty","multicol.sty","amsthm.sty"],"cmds":["address","altkeywords","alttitle","backmatter","curraddr","dedicatory","email","frontmatter","guillemotleft","guillemotright","ISBN","ISSN","keywords","larger","mainmatter","SMALL","Small","smaller","specialsection","subjclass","Subsection","Subsubsection","Tiny","title","translator","urladdr","abstractfont","abstractheadfont","abstractmargin","addresses","altabstractname","altkeywordsname","andify","bibliofont","bibliosection","bibname","bysame","calclayout","captionindent","chaptername","conjname","coroname","dedicatoryfont","definame","enumerate","exemname","firstaddress","fullwidthdisplay","ifsmfabstracta","indentlabel","indexsection","keywordsname","lemmname","linespacing","listtableename","MakePointrait","MakeQed","nonbreakingspace","normalparindent","nxandlist","otheraddress","paragraphname","partmark","partrunhead","pointrait","printindex","propname","remaname","sectionname","sectionrunhead","see","seename","shortauthors","shorttitle","signature","skippointrait","skipqed","smfabstractafalse","smfabstractatrue","smfandname","smfbyname","smfedbyname","smfedname","smfmastersthesisname","smfphdthesisname","subjclassname","subsectionname","subsubsectionname","theoname","thmnewline","tochyphenpenalty","tocmark","tocparagraph","tocpart","tocsection","tocsubsection","tocsubsubsection","translatedby","uppercasenonmath","xandlist"]}
-,
-"smfbook.cls":{"envs":["altabstract"],"deps":["amsgen.sty","amsfonts.sty","amsmath.sty","multicol.sty","amsthm.sty"],"cmds":["address","altkeywords","alttitle","backmatter","chapter","curraddr","dedicatory","email","frontmatter","guillemotleft","guillemotright","ISBN","ISSN","keywords","larger","mainmatter","SMALL","Small","smaller","specialchapter","specialsection","subjclass","Subsection","Subsubsection","Tiny","title","translator","urladdr","abstractfont","abstractheadfont","abstractmargin","addresses","altabstractname","altkeywordsname","andify","bibliochapter","bibliofont","bibname","bysame","calclayout","captionindent","chapterheight","chaptermark","chapterrunhead","chapterspace","chaptername","conjname","coroname","dedicatoryfont","definame","enumerate","exemname","firstaddress","fullwidthdisplay","ifsmfabstracta","indentlabel","indexchapter","indexmark","indexrunhead","keywordsname","lemmname","linespacing","listtableename","MakePointrait","MakeQed","nonbreakingspace","normalparindent","nxandlist","otheraddress","paragraphname","partmark","partrunhead","pointrait","printindex","propname","remaname","sectionname","sectionrunhead","see","seename","shortauthors","shorttitle","signature","skippointrait","skipqed","smfabstractafalse","smfabstractatrue","smfandname","smfbyname","smfedbyname","smfedname","smfmastersthesisname","smfphdthesisname","subjclassname","subsectionname","subsubsectionname","thechapter","theoname","thmnewline","tocappendix","tocchapter","tochyphenpenalty","tocmark","tocparagraph","tocpart","tocsection","tocsubsection","tocsubsubsection","translatedby","uppercasenonmath","xandlist"]}
-,
-"smfthm.sty":{"envs":["theo","prop","conj","coro","lemm","defi","rema","exem","enonce","enonce*"],"deps":{},"cmds":["NoSwapTheoremNumbers","NumberTheoremsAs","NumberTheoremsIn","SwapTheoremNumbers","thesmfthm"]}
-,
-"sn-jnl.cls":{"envs":["biography","tablenotes","unenumerate","unnumfigure","glos"],"deps":["geometry.sty","graphicx.sty","multirow.sty","amsmath.sty","amssymb.sty","amsfonts.sty","amsthm.sty","mathrsfs.sty","rotating.sty","appendix.sty","xcolor.sty","textcomp.sty","manyfoot.sty","booktabs.sty","algorithm.sty","algorithmicx.sty","algpseudocode.sty","program.sty","listings.sty","hyperref.sty","breakurl.sty","wrapfig.sty","setspace.sty","natbib.sty","apacite.sty","vruler.sty"],"cmds":["refdoi","citeauthorp","citeauthort","Citeauthorp","Citeauthort","Citefullauthor","citefullauthort","citefullauthorp","Citefullauthort","Citefullauthorp","maskcitep","maskcitet","maskciteyearpar","maskcitealp","maskcitealt","maskcitenum","maskcitetalias","maskcitepalias","maskCitep","maskCitet","maskCiteauthor","maskCitealp","maskCitealt","maskciteauthorp","maskciteauthort","maskCiteauthorp","maskCiteauthort","maskcitefullauthor","maskCitefullauthor","linenoon","absraggedcenter","abstract","abstractfont","abstracthead","abstractheadfont","abstractsubheadfont","accepted","addcount","addressfont","affil","affnum","artauthors","artcatbox","Artcatfont","articletype","artnote","ArtType","auaddress","aucount","authbiotextfont","authemail","author","Authorfont","authorsep","backmatter","backmatterfalse","backmattertrue","bibcommenthead","biofigadjskip","bmhead","bmheadfont","botrule","breakurldefns","capbox","city","columnhsize","copytext","corraucount","corrauthemail","country","dgr","Doublecolfalse","Doublecoltrue","email","emailcnt","enumargs","eqnhead","eqnheadfont","equalcont","equalcontfalse","equalconttrue","equalcontxt","FIG","figcapbox","figheight","FigName","figurebox","figurecaptionfont","figwidth","FMremark","fmremarkbox","FMremarkdim","fnm","footerfont","footinsA","footnoteA","FootnoteA","footnotemarkA","FootnotemarkA","footnotetextA","FootnotetextA","GetRoman","gloshead","hb","headerfont","headwidthskip","historyfont","ifbackmatter","ifDoublecol","ifequalcont","ifpagebody","ifpresentaddress","itemargs","jmkLabel","jmkRef","jyear","keywordfont","keywordhead","keywordname","keywords","labelwidthi","labelwidthii","labelwidthiii","labelwidthiv","larg","listfont","medsize","miscnote","motto","mottofont","mottoraggedright","Newlabel","nomail","numbered","oldpacs","opensquare","opheaderfont","opshortpage","orgaddress","orgdiv","orgname","pacs","pacsbullet","PacsCount","pacsname","PacsTmpCnt","pagebodyfalse","pagebodytrue","paragraphfont","pfx","postcode","presentaddress","presentaddressfalse","presentaddresstrue","presentaddresstxt","printabstract","printcopyright","printhistory","printkeywords","punctcount","quotefont","raggedcenter","received","refereedefns","revised","scrisize","sectionfont","sep","setleftmargin","sfx","sidecapwidth","sidewaystablefn","spfx","state","StepDownCounter","StepUpCounter","StorePacsText","street","subabstracthead","subparagraphfont","subsectionfont","subsubsectionfont","subtitle","SubTitlefont","sur","tabcapbox","tabhtdime","tablebodyfont","tablecaptionfont","tablecolheadfont","tablefootnotefont","tabraggedcenter","tanm","TBL","TCH","tempdime","temptbox","theaffn","thefootnoteA","title","Titlefont","titraggedcenter","tnote","totalwrapline","unenumargs","unnumbered","wrapcapline","wrapfigcapbox","wraplines","wraptotline"]}
-,
-"snapshot.sty":{"envs":{},"deps":{},"cmds":["RequireVersions","SpecialInput"]}
-,
-"snaptodo.sty":{"envs":{},"deps":["tikzpagenodes.sty"],"cmds":["snaptodo","snaptodoset"]}
-,
-"snotez.sty":{"envs":["sidefigure","sidetable"],"deps":["etoolbox.sty","pgfopts.sty","marginnote.sty","perpage.sty"],"cmds":["sidenote","sidenotemark","sidenotetext","newsnotezfloat","setsidenotes"]}
-,
-"sobolev.sty":{"envs":{},"deps":{},"cmds":["H","Hdiv","L","W","D","Norm","SemiNorm","Scalar","Crochet","DefaultSet","NoDefaultSet","HAccent","Lbar"]}
-,
-"software-biblatex.sty":{"envs":{},"deps":["xurl.sty"],"cmds":{}}
-,
-"solvesudoku.sty":{"envs":{},"deps":["printsudoku.sty"],"cmds":["sudokusolve","getproblem","reduceallcells","keepreducing","writegame","sudsolnfile","numcluesctr","difficultyctr","anychangefalse","anychangetrue","asetctr","boxctr","changedfalse","changedtrue","checkboxes","checkcols","checkkeepon","checkrows","checksetforpair","checksimplereductions","checksolution","commentary","createsudsets","deleteboxpairdigits","deletecolpairdigits","deletenumfromset","deleterowpairdigits","digitictr","digitiictr","displaystatus","findboxpair","findcolpair","findrowpair","firstcharfalse","firstchartrue","fixentry","gatherline","getloner","getnthboxcell","hideprogress","ifanychange","ifchanged","iffirstchar","ifkeepon","iflonerchanged","ifnotgotthechar","ifpairchanged","ifsetchanged","ifstilldigits","initialisesuddata","initialsoln","keeponfalse","keepontrue","keepreducingcells","lonecellctr","lonerchangedfalse","lonerchangedtrue","maxrangectr","newknt","notgotthecharfalse","notgotthechartrue","numdigitsctr","numlistctr","numofnuminset","pairchangedfalse","pairchangedtrue","reduceaboxpair","reduceacell","reduceacolpair","reducearowpair","reducebox","reduceboxloners","reduceboxpairs","reducecol","reducecolloners","reducecolpairs","reducedctr","reducelonerboxcell","reducelonercolcell","reducelonerrowcell","reduceloners","reducepairs","reducerow","reducerowloners","reducerowpairs","secondctr","setchangedfalse","setchangedtrue","settonum","settonumcnt","showprogress","solcnt","stilldigitsfalse","stilldigitstrue","sudaline","sumboxsets","sumcolsets","sumctr","sumrowsets","tempcnty","tempcntz","tenscnt","tmpsetansctr","tmpsetctr","toprangectr","typelonestatus","typelonestatusX","typesimplestatus","typesimplestatusX","useknt"]}
-,
-"somedefs.sty":{"envs":{},"deps":{},"cmds":["UseAllDefinitions","UseSomeDefinitions","UseDefinition","ProvidesDefinition"]}
-,
-"songbook.sty":{"envs":["SBBracket","SBBracket*","SBChorus","SBChorus*","SBExtraKeys","SBOccurs","SBOpGroup","SBSection","SBSection*","SBVerse","SBVerse*","song","songTranslation","xlatn"],"deps":["calc.sty","conditionals.sty","ifthen.sty","xstring.sty","multicol.sty"],"cmds":["CBExcl","OHExcl","WBExcl","WOExcl","CBPageBrk","Ch","Chr","ChX","CSColBrk","makeArtistIndex","artistIndex","makeKeyIndex","keyIndex","makeTitleContents","titleContents","makeTitleContentsSkip","titleContentsSkip","makeTitleIndex","titleIndex","NotWOPageBrk","OHContPgFtr","OHContPgHdr","OHPageBrk","SBBridge","SBEnd","SBIntro","SBMargNote","SBRef","SBem","SBen","STitle","WBPageBrk","WOPageBrk","CpyRt","FLineIdx","SBChorusMarkright","SBContinueMark","SBSectionMarkright","SBVerseMarkright","SongMarkboth","STitleMarkboth","ScriptRef","WAndM","ifSBinSongEnv","SBinSongEnvtrue","SBinSongEnvfalse","ifChordBk","ChordBktrue","ChordBkfalse","ifOverhead","Overheadtrue","Overheadfalse","ifWordBk","WordBktrue","WordBkfalse","ifWordsOnly","WordsOnlytrue","WordsOnlyfalse","ifNotWordsOnly","NotWordsOnlytrue","NotWordsOnlyfalse","ifCompactSongMode","CompactSongModetrue","CompactSongModefalse","ifSongEject","SongEjecttrue","SongEjectfalse","ifCompactAllMode","CompactAllModetrue","CompactAllModefalse","ifExcludeSong","ExcludeSongtrue","ExcludeSongfalse","ifPrintAllSongs","PrintAllSongstrue","PrintAllSongsfalse","ifSamepageMode","SamepageModetrue","SamepageModefalse","ifSBpaperAfour","SBpaperAfourtrue","SBpaperAfourfalse","ifSBpaperAfive","SBpaperAfivetrue","SBpaperAfivefalse","ifSBpaperBfive","SBpaperBfivetrue","SBpaperBfivefalse","ifSBpaperLtr","SBpaperLtrtrue","SBpaperLtrfalse","ifSBpaperLgl","SBpaperLgltrue","SBpaperLglfalse","ifSBpaperExc","SBpaperExctrue","SBpaperExcfalse","theSBSongCnt","theSBSectionCnt","theSBVerseCnt","HangAmt","LeftMarginSBBracket","LeftMarginSBChorus","LeftMarginSBSection","LeftMarginSBVerse","SBChordRaise","SBRuleRaiseAmount","SpaceAboveSTitle","SpaceAfterTitleBlk","SpaceAfterChorus","SpaceAfterOpGroup","SpaceAfterSection","SpaceAfterSBBracket","SpaceAfterSong","SpaceAfterVerse","SpaceBeforeSBBracket","OHContPgFtrTag","OHContPgHdrTag","SBBaseLang","SBBridgeTag","SBChorusTag","SBContinueTag","SBEndTag","SBIntersyllableRule","SBIntroTag","SBPubDom","SBUnknownTag","SBWAndMTag","ChBassFont","ChBkFont","ChFont","CpyRtFont","CpyRtInfoFont","SBBracketTagFont","SBBridgeTagFont","SBChorusTagFont","SBDefaultFont","SBEndTagFont","SBIntroTagFont","SBLyricNoteFont","SBMargNoteFont","SBOccursBrktFont","SBOccursTagFont","SBRefFont","SBVerseNumberFont","SBSectionNumberFont","STitleFont","STitleKeyFont","STitleNumberFont","ScriptRefFont","WandMFont","ChordBk","False","Overhead","SongEject","True","WordBk","WordsOnly","ChBassFontCS","ChBassFontSav","ChBkFontCS","ChBkFontSav","chCriticDim","ChFontCS","ChFontSav","chMiniSpace","chSpaceDim","chSpaceTolerance","chSpaceToleranceSav","evensidemarginSav","HangAmtSav","LeftMarginSBChorusSav","LeftMarginSBSectionSav","LeftMarginSBVerseSav","marginparsepSav","marginparwidthSav","sbBaselineSkipAmt","sbChord","SBDefaultFontCS","SBDefaultFontSav","SBFontSavVar","SBinSongEnv","SBOccursBrktFontCS","SBOccursBrktFontSav","SBOHContTagFont","SBOldChordRaise","sbSetsbBaselineSkipAmt","SBtocSEntry","Songbook","textwidthSav","theSongComposer","theSongComposerU","theSongCopyRt","theSongKey","theSongLicense","theSongScriptRef","theSongTitle","theXlatnBy","theXlatnLang","theXlatnPerm","theXlatnTitle"]}
-,
-"songproj.sty":{"envs":["song","intro","refrain","couplet","final"],"deps":["verse.sty"],"cmds":["longest","inputsong"]}
-,
-"songs.sty":{"envs":["songs","intersong","intersong*","songgroup","chorus"],"deps":["ifpdf.sty","keyval.sty","color.sty"],"cmds":["chordson","chordsoff","slides","measureson","measuresoff","indexeson","indexesoff","scriptureon","scriptureoff","includeonlysongs","beginsong","endsong","setlicense","beginverse","endverse","beginchorus","endchorus","nolyrics","DeclareLyricChar","DeclareNonLyric","DeclareNoHyphen","MultiwordChords","shrp","flt","memorize","newchords","replay","repchoruses","norepchoruses","brk","nextcol","sclearpage","scleardpage","echo","rep","lrep","rrep","measurebar","meter","mbar","textnote","musicnote","capo","ch","mch","gtab","minfrets","transpose","preferflats","prefersharps","trchordformat","solfedge","alphascale","notenames","notenamesin","notenamesout","transposehere","notrans","gtabtrans","beginscripture","endscripture","Acolon","Bcolon","strophe","scripindent","scripoutdent","songsection","songchapter","newindex","newauthorindex","newscripindex","showindex","indexentry","indextitleentry","thesongnum","printsongnum","songnumwidth","nosongnumbers","theversenum","printversenum","versenumwidth","noversenumbers","placeversenum","lyricfont","stitlefont","versefont","chorusfont","meterfont","echofont","notefont","notebgcolor","snumbgcolor","printchord","sharpsymbol","flatsymbol","everyverse","everychorus","versesep","afterpreludeskip","beforepostludeskip","baselineadj","clineparams","cbarwidth","sbarheight","extendprelude","showauthors","showrefs","extendpostlude","makeprelude","makepostlude","vvpenalty","ccpenalty","vcpenalty","cvpenalty","brkpenalty","sepverses","versejustify","chorusjustify","justifyleft","justifycenter","notejustify","placenote","scripturefont","printscrcite","ifchorded","chordedtrue","chordedfalse","iflyric","lyrictrue","lyricfalse","ifslides","slidestrue","slidesfalse","ifpartiallist","partiallisttrue","partiallistfalse","ifpartial","partialtrue","partialfalse","ifsongindexes","songindexestrue","songindexesfalse","ifmeasures","measurestrue","measuresfalse","ifrawtext","rawtexttrue","rawtextfalse","iftranscapos","transcapostrue","transcaposfalse","ifnolyrics","nolyricstrue","nolyricsfalse","ifpagepreludes","pagepreludestrue","pagepreludesfalse","ifvnumbered","vnumberedtrue","vnumberedfalse","songcolumns","pagepreludes","colbotglue","lastcolglue","songpos","spenalty","sepindexestrue","sepindexesfalse","idxheadwidth","idxrefsfont","idxtitlefont","idxlyricfont","idxheadfont","idxbgcolor","idxauthfont","idxscripfont","idxbook","idxcont","indexsongsas","songtarget","songlink","titleprefixword","authsepword","authbyword","authignoreword","songmark","versemark","chorusmark","newsongkey","chordlocals","shiftdblquotes","songauthors","songrefs","songcopyright","songlicense","songtitle","resettitles","nexttitle","foreachtitle","songlist","BarreDelims","commitsongs","DeclareFlatSize","idxaltentry","idxentry","ifrepchorus","ifsepindexes","notenameA","notenameB","notenameC","notenameD","notenameE","notenameF","notenameG","onesongcolumn","printnoteA","printnoteB","printnoteC","printnoteD","printnoteE","printnoteF","printnoteG","repchorusfalse","repchorustrue","scitehere","songnumstyle","twosongcolumns","versenumstyle"]}
-,
-"soul.sty":{"envs":{},"deps":{},"cmds":["so","textso","caps","textcaps","capsfont","ul","textul","st","textst","hl","texthl","soulaccent","soulregister","soulfont","soulomit","sloppyword","sodef","resetso","capsdef","capssave","capsselect","capsreset","capsdefault","setul","resetul","setuldepth","setuloverlap","setulcolor","setstcolor","sethlcolor"]}
-,
-"soulpos.sty":{"envs":{},"deps":["soulutf8.sty","keyval.sty"],"cmds":["ulposdef","ifulstarttype","ifulendtype","ulstarttype","ulendtype","ulpostolerance","ulwidth"]}
-,
-"soulutf8.sty":{"envs":{},"deps":["soul.sty","infwarerr.sty","etexcmds.sty"],"cmds":{}}
-,
-"soup.sty":{"envs":["alphabetsoup","Alphabetsoup","numbersoup","homemadesoup"],"deps":["expl3.sty","l3keys2e.sty","tikz.sty","xparse.sty"],"cmds":["hideinsoup","highlightinsoup","listofclues","theclue","showlist"]}
-,
-"sourcecodepro.sty":{"envs":{},"deps":["ifxetex.sty","ifluatex.sty","xkeyval.sty","fontenc.sty","mweights.sty"],"cmds":["sourcecodepro","sourcecodepromedium","sourcecodeprolight","sourcecodeproextreme","sourcecodeprolf","nativeoldstylenums","DH","NG","dj","ng","k","guillemotleft","guillemotright","guilsinglleft","guilsinglright","quotedblbase","quotesinglbase","textquotedbl","DJ","th","TH","dh","Hwithstroke","hwithstroke","textogonekcentered","guillemetleft","guillemetright"]}
-,
-"sourcesanspro.sty":{"envs":{},"deps":["ifxetex.sty","ifluatex.sty","xkeyval.sty","fontenc.sty","mweights.sty"],"cmds":["sourcesanspro","sourcesansprolight","sourcesansproextreme","sourcesansprolf","nativeoldstylenums","DH","NG","dj","ng","k","guillemotleft","guillemotright","guilsinglleft","guilsinglright","quotedblbase","quotesinglbase","textquotedbl","DJ","th","TH","dh","Hwithstroke","hwithstroke","textogonekcentered","guillemetleft","guillemetright"]}
-,
-"sourceserifpro.sty":{"envs":{},"deps":["ifxetex.sty","ifluatex.sty","xkeyval.sty","fontenc.sty","mweights.sty"],"cmds":["sourceserifpro","sourceserifprolight","sourceserifproextreme","sourceserifprolf","nativeoldstylenums","DH","NG","dj","ng","k","guillemotleft","guillemotright","guilsinglleft","guilsinglright","quotedblbase","quotesinglbase","textquotedbl","DJ","th","TH","dh","Hwithstroke","hwithstroke","textogonekcentered","guillemetleft","guillemetright"]}
-,
-"spacekern.sty":{"envs":{},"deps":["ifluatex.sty","luatexbase.sty"],"cmds":["semicolon","redef","tmp"]}
-,
-"spacingtricks.sty":{"envs":["indentblock","compactlist","juxtapose"],"deps":["ifthen.sty","setspace.sty","calc.sty","xspace.sty","centeredline.sty","pifont.sty"],"cmds":["centered","footnotespace","footnoteindent","footnt","strutheight","vstrut","parindentlength","bul","dash","ddash","aster","hand","checksymb","arrowsymb","compactlistindent","ie","eg","dualboxes","otherside","juxtopskip","juxbottomskip","juxsepspace"]}
-,
-"spalign.sty":{"envs":{},"deps":["kvoptions.sty"],"cmds":["spalignarray","spalignmat","spalignvector","spalignaugmatn","spalignaugmat","spalignaugmathalf","spalignsys","spaligntabular","spaligndelims","spalignsysdelims","spalignmatdelimskip","spalignvecdelimskip","spalignsysdelimskip","spalignsystabspace","spalignendofrow","spalignseparator","spalignendline","spalignaligntab","spalignretokenize","spalignrun","spalignenv","spaligntoks","spalignmaxcols"]}
-,
-"spark-otf.sty":{"envs":{},"deps":["ifxetex.sty","ifluatex.sty","xkeyval.sty","xparse.sty","luacode.sty"],"cmds":["sparkBarMedium","sparkBarNarrow","sparkBarExtranarrow","sparkBarWide","sparkBarExtrawide","sparkDotLineMedium","sparkDotLineThick","sparkDotLineExtrathick","sparkDotLineThin","sparkDotLineExtrathin","sparkDotMedium","sparkDotSmall","sparkDotExtralarge","sparkDotExtrasmall","sparkBar","sparkDot","sparkDotline","setSparkColor"]}
-,
-"sparklines.sty":{"envs":["sparkline"],"deps":["pgf.sty"],"cmds":["spark","sparkrectangle","sparkdot","sparkspike","sparkbottomline","sparkbottomlinex","sparklinethickness","sparkdotwidth","sparkspikewidth","sparkbottomlinethickness","sparklineclipsep","sparklineheight"]}
-,
-"spbmark.sty":{"envs":{},"deps":["xparse.sty","l3keys2e.sty"],"cmds":["super","sub","llastwd","clastwd","rlastwd","supersub","superwd","subwd","maxwd","spb","defspbstyle","spbifmath","spbshortkv","sp","sb","textsuperscript","textsubscript","spbset","fnmarkfont"]}
-,
-"spdef.sty":{"envs":{},"deps":{},"cmds":["ifsmartphone","smartphonetrue","smartphonefalse","ifsp","expexe"]}
-,
-"spectral.sty":{"envs":{},"deps":["ifxetex.sty","ifluatex.sty","textcomp.sty","xkeyval.sty","fontenc.sty","fontaxes.sty","mweights.sty"],"cmds":["spectralextralight","spectrallight","spectralmedium","spectralsemibold","spectralextrabold","oldstylenums","liningnums","tabularnums","proportionalnums","swshape","textsw","sufigures","textsu"]}
-,
-"spectralsequences.sty":{"envs":["sseqdata","sseqpage","quiet"],"deps":["tikz.sty","etoolbox.sty","verbatim.sty","tikzlibraryquotes.sty","tikzlibraryfit.sty","tikzlibrarypositioning.sty","tikzlibraryintersections.sty","tikzlibrarybackgrounds.sty","tikzlibraryshapes.sty","pdfcomment.sty"],"cmds":["sseqtooltip","printpage","class","replaceclass","replacesource","replacetarget","replacestructlines","classoptions","d","doptions","kill","structline","structlineoptions","extension","extensionoptions","circleclasses","xcoord","ycoord","isalive","sseqset","SseqErrorToWarning","Do","DoUntilOutOfBounds","DoUntilOutOfBoundsThenNMore","iteration","NewSseqCommand","DeclareSseqCommand","NewSseqGroup","DeclareSseqGroup","SseqCopyPage","SseqNewFamily","sseqnewfamily","SseqParseInt","sseqparseint","SseqIfEmptyTF","SseqIfEmptyT","SseqIfEmptyF","IfExistsTF","IfExistsT","IfExistsF","IfAliveTF","IfAliveT","IfAliveF","IfOutOfBoundsTF","IfOutOfBoundsT","IfOutOfBoundsF","IfInBoundsTF","IfInBoundsT","IfInBoundsF","IfValidDifferentialTF","IfValidDifferentialT","IfValidDifferentialF","DrawIfValidDifferentialTF","DrawIfValidDifferentialT","DrawIfValidDifferentialF","DrawIfValidDifferential","SseqNormalizeMonomial","result","SseqNormalizeMonomialSetVariables","SseqAHSSNameHandler","parsecoordinate","getdtarget","parsedifferential","nameclass","tagclass","gettag","lastx","lasty","lastclass","pushstack","savestack","restorestack","SseqNewClassPattern","sseqnewclasspattern","SseqOrientationNormal","SseqOrientationSideways","SseqOrientationToggle","source","sourcecoord","target","targetcoord","circleclassobjname","classname","coord","coordnopar","handledname","next","nodenum","oldclassname","page","partialcoord","rawindex","sourcename","sseqifempty","sseqpower","sseqpowerempty","ymax","ymin","xmax","xmin"]}
-,
-"spelling.sty":{"envs":{},"deps":["ifluatex.sty","luatexbase.sty","atbegshi.sty"],"cmds":["spellingreadgood","spellingmatchrules","spellinghighlight","spellinghighlightcolor","spellingoutput","spellingoutputname","spellingoutputlinelength","spellingextract","spellingmapping","spellingclearallmappings","spellingtablepar","spellingreadLT","spellingreadbad"]}
-,
-"splitidx.sty":{"envs":{},"deps":{},"cmds":["newindex","sindex","index","AtWriteToIndex","AtNextWriteToIndex","newprotectedindex","printindex","printsubindex","setindexpreamble","useindexpreamble","indexshortcut","extendtheindex","printindices","see","seealso","seename","alsoname"]}
-,
-"spmj-l.cls":{"envs":{},"deps":["s-amsart.cls","ams-rust.sty"],"cmds":["originfo","origvolume","origissue","origmonth","origyear","russianvolinfo","englishvolinfo","translnote","eo","rv","op","eb","origlang"]}
-,
-"spot.sty":{"envs":{},"deps":["tikz.sty","tikzlibraryshapes.sty","tikzlibraryfadings.sty","afterpage.sty"],"cmds":["spot","setspotlightcolor","resetspotlightcolor","spotlightcolor","setspotlightstyle","resetspotlightstyle","spotlightnodeoptions","dospots","dospotsheader","dospotsfooter","AtEndFrame","AtEveryBeginFrame","AtEveryEndFrame","xa"]}
-,
-"spotcolor.sty":{"envs":{},"deps":["graphics.sty"],"cmds":["NewSpotColorSpace","AddSpotColor","SpotSpace","SetPageColorSpace","SpotColor","SetPageColorResource","thecolorprofile","thecolor","act","csgrab","obj","tempcs","ifhks","hkstrue","hksfalse","ifpantone","pantonetrue","pantonefalse"]}
-,
-"spreadtab.sty":{"envs":["spreadtab"],"deps":["xstring.sty","fp.sty","xfp.sty"],"cmds":["STeol","STcopy","STsetdecimalsep","STautoround","hhline","toprule","midrule","bottomrule","cmidrule","morecmidrules","specialrule","addlinespace","SThiderow","SThidecol","STsavecell","STsetdisplaymarks","STtag","STmakegtag","STmessage","STdebug","STusefp","STusexfp","STtextcell","STnumericfieldmarker","STtransposecar","STprintnum","STeval","STround","STclip","STtrunc","STadd","STmul","STdiv","STseed","STrandom","STifzero","STifgt","STiflt","STifeq","STifint","STifneg","STaddcol","STaddrow","STrounddigit","STdatetonum","STdisplaytab","STname","STver","STdate"]}
-,
-"spverbatim.sty":{"envs":["spverbatim"],"deps":{},"cmds":["spverb"]}
-,
-"sqrcaps.sty":{"envs":{},"deps":{},"cmds":["textsqrc","sqrcfamily","Tienc"]}
-,
-"sr-vorl.cls":{"envs":["widmung","zusammenfassung"],"deps":["s-scrbook.cls","xkeyval.sty","etoolbox.sty","xstring.sty","babel.sty","geometry.sty","scrlayer-scrpage.sty","caption.sty","ragged2e.sty","enumitem.sty","chngcntr.sty","varwidth.sty","onlyamsmath.sty","microtype.sty","mathptmx.sty"],"cmds":["captionsngerman","datengerman","extrasngerman","noextrasngerman","dq","ntosstrue","ntossfalse","prefacename","bibname","chaptername","enclname","ccname","headtoname","pagename","seename","alsoname","proofname","glossaryname","mdqon","mdqoff","captionsgerman","dategerman","extrasgerman","noextrasgerman","tosstrue","tossfalse","ck","captionsbritish","datebritish","extrasbritish","noextrasbritish","englishhyphenmins","britishhyphenmins","americanhyphenmins","AutorinTOCFormatierung","chaptermituntertitel","geleitwort","GeleitwortTitel","kapitel","KapitelAutor","KapitelimTOC","KapitelKurztitel","kapitelmituntertitel","KapitelTitel","KapitelUntertitel","verfasser","vorwort","VorwortTitel","ifMicrotype","Microtypetrue","Microtypefalse","ifAMS","AMStrue","AMSfalse","ifautorintoc","autorintoctrue","autorintocfalse","ifGermanshorthands","Germanshorthandstrue","Germanshorthandsfalse"]}
-,
-"srbtiks.sty":{"envs":{},"deps":["stix2.sty"],"cmds":["LAT","CYR","lat","cyr","U","C","f","AKS","ADS","AKU","ADU","AGZ","ADZ","AKZ"]}
-,
-"srcltx.sty":{"envs":{},"deps":["ifthen.sty"],"cmds":["Input","MainFile","srcIncludeHook","CurrentInput","srcInputHook","ifSRCOK","SRCOKtrue","SRCOKfalse","WinEdt"]}
-,
-"srdp-tables.sty":{"envs":["tabu","longtabu"],"deps":["delarray.sty","linegoal.sty"],"cmds":["tabulinestyle","usetabu","tabucline","savetabu","preamble","tabuphantomline","tabulinesep","extrarowdepth","abovetabulinesep","belowtabulinesep","tabustrutrule","extrarowsep","taburulecolor","tabureset","newtabulinestyle","everyrow","taburowcolors","rowfont","tabudecimal","firstline","lastline","iftabuscantokens","tabuscantokenstrue","tabuscantokensfalse","tabucolumn","tabucolX","tabudefaulttarget","tabuDisableCommands","tabuendlongtrial","tabulineoff","tabulineon","tabuthepreamble","thetaburow","tracingtabu"]}
-,
-"sseq.sty":{"envs":["sseq","pgfdecoration","pgfmetadecoration"],"deps":["ifthen.sty","calc.sty","pifont.sty","pgf.sty","xkeyval.sty"],"cmds":["sseqpacking","sspacksmart","sspackhorizontal","sspackvertical","sspackdiagonal","ssmoveto","ssmove","ssdrop","ssname","ssgoto","ssprefix","ssresetprefix","ssabsgoto","ssdroplabel","ssdropextension","ssstroke","ssarrowhead","ssinversearrowhead","ssline","ssarrow","ssbullstring","ssinfbullstring","ssdropbull","ssdropboxed","ssdropcircled","sscurve","ssdashedstroke","ssdashedcurve","ssdottedstroke","ssdottedcurve","sscurvedline","ssdashedline","sscurveddashedline","sscurvedarrow","ssdashedarrow","sscurveddashedarrow","ssvoidline","ssvoidarrow","ssinversevoidarrow","ssplaceboxed","ssplacecircled","ssplace","currprefix","dropvarname","extractcoords","ifcurroutofrange","ifoutofrange","outofrangetrue","outofrangefalse","ifnodrop","ifuniquedrop","ntimes","putxyq","putxy","setcnt","ssassertsource","ssconncolor","ssdroperrormsg","sseqbullcnt","sseqconcludeconnection","sseqconncommand","sseqgridstyle","sseqpack","sseqrearrange","sseqsavecnti","sseqsavecntii","sseqsavecntiii","sseqsavecntiv","sseqsavecntix","sseqsavecnto","sseqsavecntv","sseqsavecntvi","sseqsavecntvii","sseqsavecntviii","sseqstacking","sseqwritecolor","sseqxlabel","sseqylabel","ssfinishpos","ssglobalname","ssgridchess","ssgridcrossword","ssgriddots","ssgridgo","ssgridnone","sslabelcolor","ssplacecolor","ssprepareline","sssetglobalname","act","for","lst","temp","tempcmd","tempoutercmd","temptwo","tmpcnt","tmpname","tmpval","pgfdecoratedcompleteddistance","pgfdecoratedremainingdistance","pgfdecoratedinputsegmentcompleteddistance","pgfdecoratedinputsegmentremainingdistance","pgfdecorationsegmentamplitude","pgfdecorationsegmentlength","pgfdecorationsegmentangle","pgfdecorationsegmentaspect","pgfmetadecorationsegmentamplitude","pgfmetadecorationsegmentlength","ifpgfdecoratepathhascorners","pgfdecoratepathhascornerstrue","pgfdecoratepathhascornersfalse","pgfdeclaredecoration","state","pgfifdecoration","pgfdeclaremetadecoration","pgfifmetadecoration","decoration","beforedecoration","afterdecoration","pgfmetadecoratedpathlength","pgfmetadecoratedcompleteddistance","pgfmetadecoratedinputsegmentcompleteddistance","pgfmetadecoratedinputsegmentremainingdistance","pgfdecoratebeforecode","pgfdecorateaftercode","pgfdecoratepath","pgfdecoratecurrentpath","pgfdecoration","endpgfdecoration","pgfdecorationpath","pgfdecoratedpath","pgfdecorateexistingpath","pgfdecoratedpathlength","pgfpointdecoratedpathfirst","pgfpointdecoratedpathlast","pgfpointdecoratedinputsegmentfirst","pgfpointdecoratedinputsegmentlast","pgfsetdecorationsegmenttransformation","pgfmetadecoratedremainingdistance","pgfpointmetadecoratedpathfirst","pgfpointmetadecoratedpathlast","pgfdecoratedinputsegmentlength","pgfdecoratedangle","pgfdecoratedinputsegmentstartangle","pgfdecoratedinputsegmentendangle","pgfdecorationcurrentinputsegment","pgfdecorationnextinputsegmentobject","pgfdecorationinputsegmentmoveto","pgfdecorationinputsegmentlineto","pgfdecorationinputsegmentcurveto","pgfdecorationinputsegmentclosepath","pgfdecorationinputsegmentlast","ifpgfdecoraterectangleclockwise","pgfdecoraterectangleclockwisetrue","pgfdecoraterectangleclockwisefalse","pgfmetadecoration","endpgfmetadecoration"]}
-,
-"sslides.cls":{"envs":{},"deps":["s-slides.cls"],"cmds":["oddh","oddf","evenh","evenf"]}
-,
-"stabular.sty":{"envs":["stabular","stabular*"],"deps":["array.sty"],"cmds":{}}
-,
-"stack.sty":{"envs":{},"deps":{},"cmds":["NewStack","Stack","Push","Pop","ShowTop"]}
-,
-"stackengine.sty":{"envs":{},"deps":["etoolbox.sty","listofitems.sty","calc.sty"],"cmds":["Sstackgap","Lstackgap","setstackgap","stackgap","stackalignment","quietstack","useanchorwidth","stacktype","stackMath","lstackMath","stackText","lstackText","strutlongstacks","strutshortanchors","setstackEOL","stackengine","stackon","stackunder","Shortstack","Longstack","Shortunderstack","Longunderstack","tllap","tclap","trlap","bllap","bclap","brlap","toplap","bottomlap","stackanchor","Centerstack","Vectorstack","parenVectorstack","bracketVectorstack","braceVectorstack","vertVectorstack","ensurestackMath","abovebaseline","belowbaseline","stackinset","addstackgap","hsmash","savestack","stackengineversionnumber","removebs","stackedbox","bottominset","topinset"]}
-,
-"stacklet.sty":{"envs":{},"deps":{},"cmds":["PushCatMakeLetter","PopLetterCat","PushCatMakeLetterAt","PopLetterCatAt","withcsname","ifltx","plainpkginfo"]}
-,
-"stackrel.sty":{"envs":{},"deps":{},"cmds":["stackrel","stackbin"]}
-,
-"stage.cls":{"envs":["castpage"],"deps":["s-book.cls","ifthen.sty","fancyhdr.sty","extramarks.sty","needspace.sty","changepage.sty"],"cmds":["address","addcharacter","act","dialog","dialogue","introduce","pause","scene","charsd","opensd","open","stage","actname","castname","continuedname","scenename","theactcounter","theendname","thescenecounter","paren","saveparskip","stageoldep","initsd"]}
-,
-"standalone.cls":{"envs":["standaloneframe","standaloneframe","multimath","multidisplaymath","multimath","multidisplaymath","standalone"],"deps":["ifluatex.sty","ifpdf.sty","ifxetex.sty","shellesc.sty","xkeyval.sty","s-beamer.cls","multido.sty","preview.sty","pstricks.sty","tikz.sty","varwidth.sty"],"cmds":["multimathsep","multidisplaymathsep","standaloneconfig","standaloneenv","standaloneignore","thesapage","ifstandalone","standalonetrue","standalonefalse","ifstandalonebeamer","standalonebeamertrue","standalonebeamerfalse","IfStandalone","onlyifstandalone"]}
-,
-"standalone.sty":{"envs":["standalone"],"deps":["adjustbox.sty","filemod-expmin.sty","ifluatex.sty","ifxetex.sty","trimclip.sty","xkeyval.sty"],"cmds":["includestandalone","standaloneconfig","standaloneignore","ifstandalone","standalonetrue","standalonefalse","ifstandalonebeamer","standalonebeamertrue","standalonebeamerfalse","IfStandalone","onlyifstandalone"]}
-,
-"stanli.sty":{"envs":{},"deps":["ifthen.sty","tikzlibraryshapes.sty","tikzlibraryautomata.sty","tikzlibrary3d.sty","tikzlibrarydecorations.pathmorphing.sty","xargs.sty"],"cmds":["point","beam","support","hinge","load","lineload","temperature","internalforces","dimensioning","influenceline","notation","addon","scaling","dpoint","dbeam","daxis","dsupport","dhinge","dload","dlineload","dinternalforces","ddimensioning","dnotation","daddon","setcoords","setaxis","showpoint","dscaling","DaddonLength","DaxisDistance","DaxisLength","DbigLineWidth","DdimensioningBar","DforceDistance","DforceLength","DhelpVarA","DhelpVarB","DhelpVarC","DhingeAxialHeight","DhingeAxialLength","DhingeBigRadius","DhingeCornerLength","DhingeRadius","DhugeLineWidth","DlineloadDistance","DlineloadDistanceMM","DlineloadForce","DlineloadInterval","DlocalaxisLength","DnormalLineWidth","DnoteRadius","DscalingParameter","DshowPointParameter","DsmallLineWidth","DspringAmplitude","DspringLength","DspringPostLength","DspringPreLength","DspringSegmentLength","DsupportGap","DsupportLength","DtinyLineWidth","DxAngle","DxLength","DxNodePos","DxVarA","DxVarB","DyAngle","DyLength","DyNodePos","DyVarA","DyVarB","DzAngle","DzLength","DzNodePos","DzVarA","DzVarB","barAngle","barGap","bigLineWidth","colorGray","dimensioningBar","forceDistance","forceLength","hatchingAmplitude","hatchingAngle","hatchingLength","helpVarA","helpVarB","hingeAxialHeight","hingeAxialLength","hingeCornerLength","hingeRadius","hugeLineWidth","lineloadDistance","lineloadForce","lineloadInterval","momentAngle","momentDistance","normalLineWidth","pathdrawcolor","pathfillcolor","scalingParameter","smallLineWidth","springAmplitude","springLength","springPostLength","springPreLength","springSegmentLength","supportBasicHeight","supportBasicLength","supportGap","supportHatchingHeight","supportHatchingLength","supportHeight","supportLength","temperatureHeight","tinyLineWidth","tdplotmult","tdplotresetrotatedcoordsorigin","tdplotsetrotatedcoordsorigin","tdplotsetrotatedcoords","tdplotsinandcos"]}
-,
-"starfont.sty":{"envs":{},"deps":{},"cmds":["starfontsans","starfontserif","Sun","Jupiter","Moon","Saturn","Mercury","Uranus","Venus","Neptune","Terra","Pluto","Mars","varTerra","Aries","Libra","Taurus","Scorpio","Gemini","Sagittarius","Cancer","Capricorn","Leo","Aquarius","Virgo","Pisces","varCapricorn","Zodiac","Ceres","Amor","Pallas","Eros","Juno","Hidalgo","Vesta","Hygiea","Chiron","Psyche","Sappho","Cupido","Apollon","Hades","Admetos","Zeus","Vulkanus","Kronos","Poseidon","NorthNode","SouthNode","Lilith","Fortune","Conjunction","Quincunx","Opposition","Semisextile","Trine","Semisquare","Square","Sesquiquadrate","Sextile","ASC","DSC","MC","IC","Vertex","EastPoint","Retrograde","Station","Direct","Fire","Earth","Air","Water","Natal","Radix","Pentagram","varMoon","varUranus","varPluto","stf","stchr","textstf"]}
-,
-"statistics.sty":{"envs":{},"deps":["etoolbox.sty","expl3.sty","siunitx.sty","tikz.sty","xparse.sty","tikzlibrarydatavisualization.sty","tikzlibraryfit.sty"],"cmds":["StatsSortData","StatsRangeData","statisticssetup","StatsTable","IN","currentcolumn","valuename","countname","freqname","iccname","icfname","dccname","dcfname","firsthline","lasthline","StatsGraph","ccountname","cfreqname","min","max","range","xstep","total"]}
-,
-"statmath.sty":{"envs":{},"deps":["amsmath.sty","bbm.sty","bm.sty"],"cmds":["abcbf","greekbf","bfA","bfB","bfC","bfD","bfE","bfF","bfG","bfH","bfI","bfJ","bfK","bfL","bfM","bfN","bfO","bfP","bfQ","bfR","bfS","bfT","bfU","bfV","bfW","bfX","bfY","bfZ","bfa","bfb","bfc","bfd","bfe","bff","bfg","bfh","bfi","bfj","bfk","bfl","bfm","bfn","bfo","bfp","bfq","bfr","bfs","bft","bfu","bfv","bfw","bfx","bfy","bfz","bfalpha","bfbeta","bfdelta","bfepsilon","bfvarepsilon","bfzeta","bfeta","bftheta","bfvartheta","bfgamma","bfkappa","bflambda","bfmu","bfnu","bfxi","bfpi","bfvarpi","bfrho","bfvarrho","bfsigma","bfvarsigma","bftau","bfupsilon","bfphi","bfvarphi","bfchi","bfpsi","bfomega","bfiota","bfGamma","bfDelta","bfTheta","bfLambda","bfXi","bfPi","bfSigma","bfUpsilon","bfPhi","bfPsi","bfOmega","bfzero","cov","E","V","inas","inprob","indist","plim","tr","vc","vcs","vch","diag","argmin","argmax"]}
-,
-"statrep.sty":{"envs":["Datastep","Sascode"],"deps":["verbatim.sty","graphicx.sty","xkeyval.sty","calc.sty","ifthen.sty","sas.sty","longfigure.sty"],"cmds":["Listing","Graphic","SRcaptionfont","SRcaptioncontinuedfont","SRcontinuedname","SRdefaultdests","SRdpi","SRgraphicdir","SRgraphtype","SRlatexdir","SRlatexstyle","SRodsgraphopts","SRintertext","SRlinesize","SRlistingdir","SRmacropath","SRmacroinclude","SRpagesize","SRparindent","SRprogramline","SRprogramname","SRstyle","SRtempfilename","SRverbfont","dosloppy","unsloppy","Boxlisting","Boxgraphic"]}
-,
-"staves.sty":{"envs":{},"deps":{},"cmds":["icelandicFamily","runictext","staveI","staveII","staveIII","staveIV","staveIX","staveL","staveLI","staveLII","staveLIII","staveLIV","staveLIX","staveLV","staveLVI","staveLVII","staveLVIII","staveLX","staveLXI","staveLXII","staveLXIII","staveLXIV","staveLXV","staveLXVI","staveLXVII","staveLXVIII","staveV","staveVI","staveVII","staveVIII","staveX","staveXI","staveXII","staveXIII","staveXIV","staveXIX","staveXL","staveXLI","staveXLII","staveXLIII","staveXLIV","staveXLIX","staveXLV","staveXLVI","staveXLVII","staveXLVIII","staveXV","staveXVI","staveXVII","staveXVIII","staveXX","staveXXI","staveXXII","staveXXIII","staveXXIV","staveXXIX","staveXXV","staveXXVI","staveXXVII","staveXXVIII","staveXXX","staveXXXI","staveXXXII","staveXXXIII","staveXXXIV","staveXXXIX","staveXXXV","staveXXXVI","staveXXXVII","staveXXXVIII"]}
-,
-"stdclsdv.sty":{"envs":{},"deps":{},"cmds":["ifSCDknownclass","SCDknownclasstrue","SCDknownclassfalse","ifSCDchapter","SCDchaptertrue","SCDchapterfalse","ifSCDpart","SCDparttrue","SCDpartfalse","ifSCDsection","SCDsectiontrue","SCDsectionfalse","ifSCDnodivs","SCDnodivstrue","SCDnodivsfalse","SCDquit","SCDCheckCommand","ifSCDSameDefinition","SCDSameDefinitiontrue","SCDSameDefinitionfalse"]}
-,
-"stdpage.sty":{"envs":{},"deps":["typearea.sty","ragged2e.sty","ifthen.sty","keyval.sty","lineno.sty","hyphenat.sty","titlesec.sty"],"cmds":["CharsX","CharsI","zeichenzahl","zeilenzahl","ProcessOptionsWithKV"]}
-,
-"stealcaps.sty":{"envs":{},"deps":["pgfopts.sty","iftex.sty","fontspec.sty"],"cmds":["renewcaps"]}
-,
-"steinmetz.sty":{"envs":{},"deps":["pict2e.sty"],"cmds":["phase"]}
-,
-"step.sty":{"envs":{},"deps":["textcomp.sty","fontaxes.sty","mweights.sty","xkeyval.sty"],"cmds":["lining","oldstyle","textsc","textsu","textsuperior","textin","textinferior","sufigures","infigures"]}
-,
-"steroid.sty":{"envs":{},"deps":["chemstr.sty","carom.sty","ccycle.sty"],"cmds":["androstane","androstanealpha","androstanebeta","campestanE","campestane","campestaneAlpha","campestaneBeta","campestanealpha","campestanebeta","cholanE","cholane","cholaneAlpha","cholaneBeta","cholanealpha","cholanebeta","cholestanE","cholestane","cholestaneAlpha","cholestaneBeta","cholestanealpha","cholestanebeta","ergostanE","ergostane","ergostaneAlpha","ergostaneBeta","ergostanealpha","ergostanebeta","estrane","estranealpha","estranebeta","furostan","furostanalpha","furostanbeta","gonane","gonanealpha","gonanebeta","poriferastanE","poriferastane","poriferastaneAlpha","poriferastaneBeta","poriferastanealpha","poriferastanebeta","pregnane","pregnanealpha","pregnanebeta","pyranoseChairi","pyranoseChairii","spirostan","spirostanalpha","spirostanbeta","spirostannor","steroidChain","steroidShortChain","steroidethylchain","steroidfuros","steroidshortchain","steroidspiro","stigmastanE","stigmastane","stigmastaneAlpha","stigmastaneBeta","stigmastanealpha","stigmastanebeta","ifpyranoseChairalpha","pyranoseChairalphafalse","pyranoseChairalphatrue","steroidChaindiMe","steroidchaindiMe","steroidethylchainpregnane","steroidfurostriMe","steroidnochainandrostane","steroidshortchainMe","steroidShortChainMe","steroidspirotriMe"]}
-,
-"stex-logo.sty":{"envs":{},"deps":["xspace.sty"],"cmds":["sTeX","stex"]}
-,
-"stex-tikzinput.sty":{"envs":{},"deps":["stex.sty","tikzinput.sty"],"cmds":["mhtikzinput","cmhtikzinput","libusetikzlibrary"]}
-,
-"stex.cls":{"envs":{},"deps":["expl3.sty","l3keys2e.sty","stex.sty","standalone.sty"],"cmds":{}}
-,
-"stex.sty":{"envs":["smodule","mathstructure","usestructure","copymodule","interpretmodule","sdefinition","sassertion","sexample","sparagraph","sproof","subproof","spfblock","extstructure*"],"deps":["expl3.sty","l3keys2e.sty","ltxcmds.sty","standalone.sty","stex-logo.sty","babel.sty","stex-tikzinput.sty"],"cmds":["mhinput","inputref","ifinputref","inputreftrue","inputreffalse","addmhbibresource","libinput","libusepackage","stexpatchmodule","symdecl","notation","comp","symdef","setnotation","textsymdecl","infprec","neginfprec","svar","vardef","varseq","importmodule","usemodule","STEXexport","instantiate","varinstantiate","assign","symref","symname","Symname","arg","sref","extref","definiendum","definame","Definame","definiens","yield","eqstep","assumption","conclude","spfstep","spfidea","spfsketch","spfjust","premise","sproofend","stexpatchdefinition","stexpatchassertion","stexpatchexample","stexpatchparagraph","stexpatchproof","compemph","varemph","symrefemph","defemph","ellipses","clstinputmhlisting","cmhgraphics","conclusion","copynotation","dobrackets","donotcopy","ifstexhtml","ignorespacesandpars","inlineass","inlinedef","inlineex","inlinepara","livar","lstinputmhlisting","mathhub","maybephline","mhgraphics","mhpath","mmtdecl","mmtdef","MMTinclude","MMTrule","MSC","nappli","nappui","naseqli","nasequi","parray","parraycell","parrayline","parraylineh","pmrow","prmatrix","renamedecl","slabel","smoduleid","smoduletitle","smoduletype","spfstepid","spftitle","spftype","srefsym","srefsymuri","stexcommentfont","stexhtmlfalse","stexhtmltrue","STEXInternalAuxAddDocRef","STEXInternalCurrentSymbolStr","STEXInternalSrefRestoreTarget","STEXInternalSymbolAfterInvokationTL","STEXInternalTermMathArgiii","STEXInternalTermMathAssocArgiiiii","STEXInternalTermMathOMAiiii","STEXInternalTermMathOMBiiii","STEXInternalTermMathOMSiiii","STEXinvisible","STEXModule","STEXsymbol","STEXtitle","synonym","titleemph","uivar","varbindforall","withbrackets"]}
-,
-"stexthm.sty":{"envs":["theorem","observation","corollary","lemma","axiom","remark","example","definition"],"deps":["stex.sty","amsthm.sty","thmtools.sty","pdfcomment.sty","xcolor.sty"],"cmds":["compemph","symrefemph","defemph","varemph"]}
-,
-"stfloats.sty":{"envs":{},"deps":{},"cmds":["fnbelowfloat","fnunderfloat","setbaselinefloat","setbaselinefixed"]}
-,
-"stickstootext.sty":{"envs":{},"deps":["fontenc.sty","textcomp.sty","mweights.sty","etoolbox.sty","fontaxes.sty","xkeyval.sty"],"cmds":["defigures","infigures","lfstyle","nufigures","osfstyle","sufigures","textde","textdenominators","textfrac","textinf","textinferior","textlf","textnu","textnumerators","textosf","textsu","textsuperior","texttlf","texttosf","tlfstyle","tosfstyle","useosf","useproportional","DH","NG","dj","ng","k","guillemotleft","guillemotright","guilsinglleft","guilsinglright","quotedblbase","quotesinglbase","textquotedbl","DJ","th","TH","dh","Hwithstroke","hwithstroke","textogonekcentered","guillemetleft","guillemetright"]}
-,
-"stix2.sty":{"envs":{},"deps":["textcomp.sty"],"cmds":["yen","circledR","checkmark","maltese","accurrent","acidfree","acwcirclearrow","acwgapcirclearrow","acwleftarcarrow","acwopencirclearrow","acwoverarcarrow","acwunderarcarrow","adots","angdnr","angles","angleubar","Angstrom","annuity","APLboxquestion","APLboxupcaret","APLnotbackslash","APLnotslash","approxeq","approxeqq","approxident","arceq","arrowaccentex","arrowaccentlt","arrowaccentrt","assert","asteq","asteraccent","astrosun","awint","awintslop","awintupop","backcong","backdprime","backepsilon","backprime","backsim","backsimeq","backtrprime","bagmember","barcap","barcup","bardownharpoonleft","bardownharpoonright","barleftarrow","barleftarrowrightarrowbar","barleftharpoondown","barleftharpoonup","barovernorthwestarrow","barrightarrowdiamond","barrightharpoondown","barrightharpoonup","baruparrow","barupharpoonleft","barupharpoonright","Barv","barV","barvee","barwedge","Bbbk","Bbbsum","Bbbsumop","bbrktbrk","because","benzenr","beth","between","bigblacktriangledown","bigblacktriangleup","bigbot","bigcapop","bigcupdot","bigcupdotop","bigcupop","biginterleave","bigodotop","bigoplusop","bigotimesop","bigslopedvee","bigslopedwedge","bigsqcap","bigsqcapop","bigsqcupop","bigstar","bigtalloblong","bigtalloblongop","bigtimes","bigtimesop","bigtop","bigtriangleleft","biguplusop","bigveeop","bigwedgeop","bigwhitestar","blackcircledownarrow","blackcircledrightdot","blackcircledtwodots","blackcircleulquadwhite","blackdiamonddownarrow","blackhourglass","blackinwhitediamond","blackinwhitesquare","blacklefthalfcircle","blacklozenge","blackpointerleft","blackpointerright","blackrighthalfcircle","blacksmiley","blacksquare","blacktriangle","blacktriangledown","blacktriangleleft","blacktriangleright","blkhorzoval","blkvertoval","bNot","botsemicircle","Box","boxast","boxbar","boxbox","boxbslash","boxcircle","boxdiag","boxdot","boxminus","boxonbox","boxplus","boxtimes","braceex","bracemd","bracemu","bracketld","bracketlu","bracketrd","bracketru","bsimilarleftarrow","bsimilarrightarrow","bsolhsub","btimes","bullseye","Bumpeq","bumpeq","bumpeqq","candra","Cap","capbarcup","capdot","capovercup","capwedge","caretinsert","carriagereturn","ccwundercurvearrow","centerdot","checkmarkmath","cirbot","circeq","circlearrowleft","circlearrowright","circlebottomhalfblack","circledast","circledbullet","circledcirc","circleddash","circledequal","circledownarrow","circledparallel","circledrightdot","circledRmath","circledS","circledstar","circledtwodots","circledvert","circledwhitebullet","circlehbar","circlelefthalfblack","circlellquad","circlelrquad","circleonleftarrow","circleonrightarrow","circlerighthalfblack","circletophalfblack","circleulquad","circleurquad","circleurquadblack","circlevertfill","cirE","cirfnint","cirfnintslop","cirfnintupop","cirmid","cirscir","closedvarcap","closedvarcup","closedvarcupsmashprod","closure","Colon","coloneq","Coloneq","commaminus","complement","concavediamond","concavediamondtickleft","concavediamondtickright","congdot","conictaper","conjquant","conjquantop","coprodop","csub","csube","csup","csupe","Cup","cupbarcap","cupdot","cupleftarrow","cupovercap","cupvee","curlyeqprec","curlyeqsucc","curlyvee","curlywedge","curvearrowleft","curvearrowleftplus","curvearrowright","curvearrowrightminus","cwcirclearrow","cwgapcirclearrow","cwopencirclearrow","cwrightarcarrow","cwundercurvearrow","daleth","danger","dasharrow","dashcolon","dashleftarrow","dashleftharpoondown","dashrightarrow","dashrightharpoondown","dashV","Dashv","DashV","DashVDash","dashVdash","dbkarow","ddddot","dddot","ddotseq","DDownarrow","Ddownarrow","diagdown","diagup","diameter","Diamond","diamondbotblack","diamondcdot","diamondleftarrow","diamondleftarrowbar","diamondleftblack","diamondrightblack","diamondtopblack","dicei","diceii","diceiii","diceiv","dicev","dicevi","digamma","dingasterisk","disin","disjquant","disjquantop","divideontimes","Doteq","doteqdot","dotequiv","dotminus","dotplus","dotsim","dotsminusdots","dottedcircle","dottedsquare","dottimes","doublebarvee","doublebarwedge","doublecap","doublecup","doubleplus","downarrowbar","downarrowbarred","downdasharrow","downdownarrows","downfishtail","downharpoonleft","downharpoonleftbar","downharpoonright","downharpoonrightbar","downharpoonsleftright","downrightcurvedarrow","downtriangleleftblack","downtrianglerightblack","downuparrows","downupharpoonsleftright","downwhitearrow","downzigzagarrow","dprime","draftingarrow","drbkarow","droang","dsol","dsub","dualmap","egsdot","eighthnote","elinters","elsdot","emptysetoarr","emptysetoarrl","emptysetobar","emptysetocirc","enclosecircle","enclosediamond","enclosesquare","enclosetriangle","enleadertwodots","eparsl","eqcirc","eqcolon","eqdef","eqdot","eqeq","eqeqeq","eqgtr","eqless","eqqgtr","eqqless","eqqplus","eqqsim","eqqslantgtr","eqqslantless","eqsim","eqslantgtr","eqslantless","equalleftarrow","equalparallel","equalrightarrow","Equiv","equivDD","equivVert","equivVvert","eqvparsl","errbarblackcircle","errbarblackdiamond","errbarblacksquare","errbarcircle","errbardiamond","errbarsquare","eth","Eulerconst","Exclam","fallingdotseq","fbowtie","fcmp","fdiagovnearrow","fdiagovrdiag","female","fint","fintslop","fintupop","Finv","fisheye","fltns","forks","forksnot","forkv","fourvdots","fracslash","fullouterjoin","Game","geqq","geqqslant","geqslant","gescc","gesdot","gesdoto","gesdotol","gesles","ggg","gggnest","gggtr","gimel","gla","glE","gleichstark","glj","gnapprox","gneq","gneqq","gnsim","gsime","gsiml","Gt","gtcc","gtcir","gtlpar","gtquest","gtrapprox","gtrarr","gtrdot","gtreqless","gtreqqless","gtrless","gtrsim","gvertneqq","harpoonaccentlt","harpoonaccentrt","hatapprox","Hermaphrodite","hermitmatrix","hexagon","hexagonblack","hknearrow","hknwarrow","hksearow","hkswarow","hourglass","house","hrectangle","hrectangleblack","hslash","hyphenbullet","hzigzag","iiiint","iiiintslop","iiiintupop","iiint","iiintslop","iiintupop","iinfin","iint","iintslop","iintupop","imageof","increment","intbar","intBar","intbarslop","intBarslop","intbarupop","intBarupop","intcap","intcapslop","intcapupop","intclockwise","intclockwiseslop","intclockwiseupop","intcup","intcupslop","intcupupop","intercal","interleave","intlarhk","intlarhkslop","intlarhkupop","intprod","intprodr","intslop","intupop","intx","intxslop","intxupop","inversebullet","inversewhitecircle","invlazys","invnot","invwhitelowerhalfcircle","invwhiteupperhalfcircle","isindot","isinE","isinobar","isins","isinvb","Join","kernelcontraction","lAngle","langledot","laplac","lat","late","lbag","lblkbrbrak","lBrace","lBrack","lbracklltick","lbrackubar","lbrackultick","lbrbrak","Lbrbrak","lcurvyangle","Ldsh","leadsto","leftarrowaccent","leftarrowapprox","leftarrowbackapprox","leftarrowbsimilar","leftarrowless","leftarrowonoplus","leftarrowplus","leftarrowshortrightarrow","leftarrowsimilar","leftarrowsubset","leftarrowtail","leftarrowtriangle","leftarrowx","leftbkarrow","leftcurvedarrow","leftdasharrow","leftdbkarrow","leftdbltail","leftdotarrow","leftdowncurvedarrow","leftfishtail","leftharpoonaccent","leftharpoondownbar","leftharpoonsupdown","leftharpoonupbar","leftharpoonupdash","leftleftarrows","leftmoon","leftouterjoin","leftrightarrowaccent","leftrightarrowcircle","leftrightarrows","leftrightarrowtriangle","leftrightharpoondowndown","leftrightharpoondownup","leftrightharpoons","leftrightharpoonsdown","leftrightharpoonsup","leftrightharpoonupdown","leftrightharpoonupup","leftrightsquigarrow","leftsquigarrow","lefttail","leftthreearrows","leftthreetimes","leftwavearrow","leftwhitearrow","leqq","leqqslant","leqslant","lescc","lesdot","lesdoto","lesdotor","lesges","lessapprox","lessdot","lesseqgtr","lesseqqgtr","lessgtr","lesssim","lfbowtie","lftimes","lgblkcircle","lgblksquare","lgE","lgwhtcircle","lgwhtsquare","lhd","linefeed","llangle","llarc","llblacktriangle","llcorner","Lleftarrow","LLeftarrow","lll","llless","lllnest","llparenthesis","lltriangle","lnapprox","lneq","lneqq","lnsim","longdashv","longdivision","longleftsquigarrow","longmapsfrom","Longmapsfrom","Longmapsto","longrightsquigarrow","looparrowleft","looparrowright","lowint","lowintslop","lowintupop","lozenge","lozengeminus","lParen","Lparengtr","lparenless","lrarc","lrblacktriangle","lrcorner","lrtriangle","lrtriangleeq","Lsh","lsime","lsimg","lsqhook","Lt","ltcc","ltcir","ltimes","ltlarr","ltquest","ltrivb","lvertneqq","lvzigzag","Lvzigzag","male","maltesemath","mapsdown","mapsfrom","Mapsfrom","mapsfromchar","Mapsto","mapsup","mathbb","mathbffrak","mathbfit","mathbfscr","mathbfsf","mathbfsfit","mathfrak","mathscr","mathsfit","mathvisiblespace","mdblkcircle","mdblkdiamond","mdblklozenge","mdblksquare","mdlgblkcircle","mdlgblkdiamond","mdlgblklozenge","mdlgblksquare","mdlgwhtcircle","mdlgwhtdiamond","mdlgwhtlozenge","mdlgwhtsquare","mdsmblkcircle","mdsmblksquare","mdsmwhtcircle","mdsmwhtsquare","mdwhtcircle","mdwhtdiamond","mdwhtlozenge","mdwhtsquare","measangledltosw","measangledrtose","measangleldtosw","measanglelutonw","measanglerdtose","measanglerutone","measangleultonw","measangleurtone","measeq","measuredangle","measuredangleleft","measuredrightangle","medblackstar","medwhitestar","mho","midbarvee","midbarwedge","midcir","minusdot","minusfdots","minusrdots","mlcp","modtwosum","modtwosumop","multimap","multimapinv","napprox","napproxeqq","nasymp","nBumpeq","nbumpeq","ncong","ncongdot","Nearrow","neovnwarrow","neovsearrow","neqsim","neqslantgtr","neqslantless","nequiv","neswarrow","neuter","nexists","nforksnot","nge","ngeq","ngeqq","ngeqslant","ngets","ngg","ngtr","ngtrless","ngtrsim","nHdownarrow","nhpar","nHuparrow","nhVvert","niobar","nis","nisd","nle","nleftarrow","nLeftarrow","nleftrightarrow","nLeftrightarrow","nleq","nleqq","nleqslant","nless","nlessgtr","nlesssim","nll","nmid","nni","Not","notchar","nparallel","npolint","npolintslop","npolintupop","nprec","npreccurlyeq","npreceq","nrightarrow","nRightarrow","nshortmid","nshortparallel","nsim","nsime","nsimeq","nsqsubset","nsqsubseteq","nsqsupset","nsqsupseteq","nsubset","nsubseteq","nsubseteqq","nsucc","nsucccurlyeq","nsucceq","nsupset","nsupseteq","nsupseteqq","ntrianglelefteq","ntrianglerighteq","nvarisinobar","nvarniobar","nvartriangleleft","nvartriangleright","nvdash","nvDash","nVdash","nVDash","nvinfty","nvleftarrow","nVleftarrow","nvLeftarrow","nvleftarrowtail","nVleftarrowtail","nvleftrightarrow","nVleftrightarrow","nvLeftrightarrow","nvrightarrow","nVrightarrow","nvRightarrow","nvrightarrowtail","nVrightarrowtail","nvtwoheadleftarrow","nVtwoheadleftarrow","nvtwoheadleftarrowtail","nVtwoheadleftarrowtail","nvtwoheadrightarrow","nVtwoheadrightarrow","nvtwoheadrightarrowtail","nVtwoheadrightarrowtail","Nwarrow","nwovnearrow","nwsearrow","obar","obot","obrbrak","obslash","ocommatopright","odiv","odotslashdot","ogreaterthan","oiiint","oiiintslop","oiiintupop","oiint","oiintslop","oiintupop","ointctrclockwise","ointctrclockwiseslop","ointctrclockwiseupop","ointslop","ointupop","olcross","olessthan","operp","opluslhrim","oplusrhrim","origof","Otimes","otimeshat","otimeslhrim","otimesrhrim","oturnedcomma","overbracket","overleftharpoon","overleftrightarrow","overparen","overrightharpoon","ovhook","parallelogram","parallelogramblack","parenld","parenlu","parenrd","parenru","parsim","partialmeetcontraction","pentagon","pentagonblack","perps","pitchfork","plusdot","pluseqq","plushat","plussim","plussubtwo","plustrif","pointint","pointintslop","pointintupop","postalmark","Prec","precapprox","preccurlyeq","preceqq","precnapprox","precneq","precneqq","precnsim","precsim","prodop","profline","profsurf","PropertyLine","prurel","pullback","pushout","QED","qprime","quarternote","questeq","Question","rAngle","rangledot","rangledownzigzagarrow","rbag","rblkbrbrak","rBrace","rBrack","rbracklrtick","rbrackubar","rbrackurtick","rbrbrak","Rbrbrak","rcurvyangle","rdiagovfdiag","rdiagovsearrow","Rdsh","restriction","revangle","revangleubar","revemptyset","revnmid","rfbowtie","rftimes","rhd","rightangle","rightanglemdot","rightanglesqr","rightarrowaccent","rightarrowapprox","rightarrowbackapprox","rightarrowbar","rightarrowbsimilar","rightarrowdiamond","rightarrowgtr","rightarrowonoplus","rightarrowplus","rightarrowshortleftarrow","rightarrowsimilar","rightarrowsupset","rightarrowtail","rightarrowtriangle","rightarrowx","rightbkarrow","rightcurvedarrow","rightdasharrow","rightdbltail","rightdotarrow","rightdowncurvedarrow","rightfishtail","rightharpoonaccent","rightharpoondownbar","rightharpoonsupdown","rightharpoonupbar","rightharpoonupdash","rightimply","rightleftarrows","rightleftharpoonsdown","rightleftharpoonsup","rightmoon","rightouterjoin","rightpentagon","rightpentagonblack","rightrightarrows","rightsquigarrow","righttail","rightthreearrows","rightthreetimes","rightwavearrow","rightwhitearrow","ringplus","risingdotseq","rParen","rparengtr","Rparenless","rppolint","rppolintslop","rppolintupop","rrangle","Rrelbar","RRelbar","Rrightarrow","RRightarrow","rrparenthesis","Rsh","rsolbar","rsqhook","rsub","rtimes","rtriltri","ruledelayed","rvzigzag","Rvzigzag","sansLmirrored","sansLturned","scpolint","scpolintslop","scpolintupop","scurel","Searrow","seovnearrow","shortdowntack","shortlefttack","shortmid","shortparallel","shortrightarrowleftarrow","shortuptack","shuffle","simgE","simgtr","similarleftarrow","similarrightarrow","simlE","simless","simminussim","simneqq","simplus","simrdots","sinewave","smallawint","smallawintsl","smallawintup","smallblacktriangleleft","smallblacktriangleright","smallcirfnint","smallcirfnintsl","smallcirfnintup","smallfint","smallfintsl","smallfintup","smallfrown","smalliiiint","smalliiiintsl","smalliiiintup","smalliiint","smalliiintsl","smalliiintup","smalliint","smalliintsl","smalliintup","smallin","smallintbar","smallintBar","smallintbarsl","smallintBarsl","smallintbarup","smallintBarup","smallintcap","smallintcapsl","smallintcapup","smallintclockwise","smallintclockwisesl","smallintclockwiseup","smallintcup","smallintcupsl","smallintcupup","smallintlarhk","smallintlarhksl","smallintlarhkup","smallintsl","smallintup","smallintx","smallintxsl","smallintxup","smalllowint","smalllowintsl","smalllowintup","smallni","smallnpolint","smallnpolintsl","smallnpolintup","smalloiiint","smalloiiintsl","smalloiiintup","smalloiint","smalloiintsl","smalloiintup","smalloint","smallointctrclockwise","smallointctrclockwisesl","smallointctrclockwiseup","smallointsl","smallointup","smallpointint","smallpointintsl","smallpointintup","smallrppolint","smallrppolintsl","smallrppolintup","smallscpolint","smallscpolintsl","smallscpolintup","smallsetminus","smallsmile","smallsqint","smallsqintsl","smallsqintup","smallsumint","smallsumintsl","smallsumintup","smalltriangleleft","smalltriangleright","smallupint","smallupintsl","smallupintup","smallvarointclockwise","smallvarointclockwisesl","smallvarointclockwiseup","smashtimes","smblkcircle","smblkdiamond","smblklozenge","smblksquare","smeparsl","smt","smte","smwhitestar","smwhtcircle","smwhtdiamond","smwhtlozenge","smwhtsquare","sphericalangle","sphericalangleup","Sqcap","Sqcup","sqint","sqintslop","sqintupop","sqlozenge","sqsubset","sqsubsetneq","sqsupset","sqsupsetneq","square","squarebotblack","squarecrossfill","squarehfill","squarehvfill","squareleftblack","squarellblack","squarellquad","squarelrblack","squarelrquad","squareneswfill","squarenwsefill","squarerightblack","squaretopblack","squareulblack","squareulquad","squareurblack","squareurquad","squarevfill","squoval","sslash","stareq","strns","subedot","submult","subrarr","Subset","subsetapprox","subsetcirc","subsetdot","subseteqq","subsetneq","subsetneqq","subsetplus","subsim","subsub","subsup","Succ","succapprox","succcurlyeq","succeqq","succnapprox","succneq","succneqq","succnsim","succsim","sumint","sumintslop","sumintupop","sumop","sun","supdsub","supedot","suphsol","suphsub","suplarr","supmult","Supset","supsetapprox","supsetcirc","supsetdot","supseteqq","supsetneq","supsetneqq","supsetplus","supsim","supsub","supsup","Swarrow","talloblong","therefore","thermod","thickapprox","thicksim","threedangle","threedotcolon","tieinfty","timesbar","tminus","toea","tona","topbot","topcir","topfork","topsemicircle","tosa","towa","tplus","trapezium","trianglecdot","triangledown","triangleleftblack","trianglelefteq","triangleminus","triangleodot","triangleplus","triangleq","trianglerightblack","trianglerighteq","triangles","triangleserifs","triangletimes","triangleubar","tripleplus","trprime","trslash","turnangle","turnediota","turnednot","twocaps","twocups","twoheaddownarrow","twoheadleftarrow","twoheadleftarrowtail","twoheadleftdbkarrow","twoheadmapsfrom","twoheadmapsto","twoheadrightarrow","twoheadrightarrowtail","twoheaduparrow","twoheaduparrowcircle","twonotes","typecolon","ubrbrak","ularc","ulblacktriangle","ulcorner","ultriangle","uminus","underbracket","underleftarrow","underleftharpoon","underleftrightarrow","underparen","underrightarrow","underrightharpoon","unicodeellipsis","unlhd","unrhd","upand","uparrowbarred","uparrowoncircle","upbackepsilon","updasharrow","updownarrowbar","updownarrows","updownharpoonleftleft","updownharpoonleftright","updownharpoonrightleft","updownharpoonrightright","updownharpoonsleftright","upfishtail","upharpoonleft","upharpoonleftbar","upharpoonright","upharpoonrightbar","upharpoonsleftright","upin","upint","upintslop","upintupop","uprightcurvearrow","upuparrows","upwhitearrow","urarc","urblacktriangle","urcorner","urtriangle","UUparrow","Uuparrow","varbarwedge","varcarriagereturn","varclubsuit","vardiamondsuit","vardoublebarwedge","varheartsuit","varhexagon","varhexagonblack","varhexagonlrbonds","varisinobar","varisins","varkappa","varlrtriangle","varniobar","varnis","varnothing","varointclockwise","varointclockwiseslop","varointclockwiseupop","varpropto","varspadesuit","varstar","varsubsetneq","varsubsetneqq","varsupsetneq","varsupsetneqq","vartriangle","vartriangleleft","vartriangleright","varVdash","varveebar","vBar","Vbar","vBarv","vbrtri","vDash","Vdash","VDash","vDdash","vdotsmath","vectimes","Vee","veebar","veedot","veedoublebar","veeeq","veemidvert","veeodot","veeonvee","veeonwedge","vertoverlay","viewdata","vlongdash","vrectangle","vrectangleblack","Vvdash","Vvert","vysmblkcircle","vysmblksquare","vysmwhtcircle","vysmwhtsquare","vzigzag","Wedge","wedgebar","wedgedot","wedgedoublebar","wedgemidvert","wedgeodot","wedgeonwedge","wedgeq","whitearrowupfrombar","whiteinwhitetriangle","whitepointerleft","whitepointerright","whitesquaretickleft","whitesquaretickright","whthorzoval","whtvertoval","wideangledown","wideangleup","widebridgeabove","widecheck","xbsol","xbsolop","xsol","xsolop","yenmath","Yup","Zbar","zcmp","zpipe","zproject","DOTSI","downparenfill","upparenfill","downbracketfill","upbracketfill","overleftarrowfill","overrightarrowfill","overleftrightarrowfill","overleftharpoonfill","overrightharpoonfill","DH","dh","dj","DJ","guillemetleft","guillemetright","guillemotleft","guillemotright","guilsinglleft","guilsinglright","Hwithstroke","hwithstroke","k","NG","ng","quotedblbase","quotesinglbase","textogonekcentered","textquotedbl","th","TH"]}
-,
-"stmaryrd.sty":{"envs":{},"deps":{},"cmds":["Ydown","Yleft","Yright","Yup","baro","bbslash","binampersand","bindnasrepma","boxast","boxbar","boxbox","boxbslash","boxcircle","boxdot","boxempty","boxslash","curlyveedownarrow","curlyveeuparrow","curlywedgedownarrow","curlywedgeuparrow","fatbslash","fatsemi","fatslash","interleave","leftslice","merge","minuso","moo","nplus","obar","oblong","obslash","ogreaterthan","olessthan","ovee","owedge","rightslice","sslash","talloblong","varbigcirc","varcurlyvee","varcurlywedge","varoast","varobar","varobslash","varocircle","varodot","varogreaterthan","varolessthan","varominus","varoplus","varoslash","varotimes","varovee","varowedge","vartimes","oast","ocircle","bigbox","bigcurlyvee","bigcurlywedge","biginterleave","bignplus","bigparallel","bigsqcap","bigtriangledown","bigtriangleup","inplus","niplus","ntrianglelefteqslant","ntrianglerighteqslant","subsetplus","subsetpluseq","supsetplus","supsetpluseq","trianglelefteqslant","trianglerighteqslant","Longmapsfrom","Longmapsto","Mapsfrom","Mapsto","leftarrowtriangle","leftrightarroweq","leftrightarrowtriangle","lightning","longmapsfrom","mapsfrom","nnearrow","nnwarrow","rightarrowtriangle","rrparenthesis","shortdownarrow","shortleftarrow","shortrightarrow","shortuparrow","ssearrow","sswarrow","Lbag","Rbag","lbag","llbracket","llceil","llfloor","llparenthesis","rbag","rrbracket","rrceil","rrfloor","Arrownot","Mapsfromchar","Mapstochar","arrownot","mapsfromchar","longarrownot","Longarrownot","varcopyright"]}
-,
-"stoneipa.sty":{"envs":{},"deps":["fontspec.sty","newunicodechar.sty","pdftexcmds.sty","kvoptions.sty"],"cmds":["sipafont","sipaalternatefont","sipachoosephoneticchar","sipachoosealternatechar","sipasetup","sipaalternatesetup"]}
-,
-"storebox.sty":{"envs":["storebox"],"deps":["ifpdf.sty","collectbox.sty"],"cmds":["newstorebox","storebox","usestorebox","ifstorebox","endstorebox"]}
-,
-"strands.sty":{"envs":{},"deps":["forarray.sty","ifthen.sty","tikz.sty","xfp.sty","xstring.sty","xkeyval.sty","tikzlibraryexternal.sty"],"cmds":["vpartition","arcpartition","permutation","tiedpair","tie","strands","getelem","decoratestrands","vvpartition","oldnumstrands","bbackstrands","lleftstrand","rrightstrand","ccrossback","bbraidgen","ttanglegen","aaddgen","thelevelscounter","sstrands"]}
-,
-"stricttex.sty":{"envs":{},"deps":["luatex.sty"],"cmds":["StrictBracketsOn","StrictBracketsOff","NumbersInCommandsOn","NumbersInCommandsOff","NumbersAndPrimesInCommandsOn","NumbersAndPrimesInCommandsOff"]}
-,
-"stringenc.sty":{"envs":{},"deps":["infwarerr.sty","ltxcmds.sty","pdfescape.sty","pdftexcmds.sty"],"cmds":["StringEncodingConvert","StringEncodingSuccessFailure","StringEncodingConvertTest","StringEncodingList","StringEncodingLoad"]}
-,
-"stringstrings.sty":{"envs":{},"deps":["ifthen.sty"],"cmds":["thestring","theresult","Treatments","defaultTreatments","encodetoken","decodetoken","substring","caseupper","caselower","solelyuppercase","solelylowercase","changecase","noblanks","nosymbolsnumerals","alphabetic","capitalize","capitalizewords","capitalizetitle","addlcword","addlcwords","resetlcwords","reversestring","convertchar","convertword","rotateword","removeword","getnextword","getaword","rotateleadingspaces","removeleadingspaces","stringencode","stringdecode","gobblechar","gobblechars","retokenize","stringlength","findchars","findwords","whereischar","whereisword","wordcount","getargs","isnextbyte","testmatchingchar","testcapitalized","testuncapitalized","testleadingalpha","testuppercase","testsolelyuppercase","testlowercase","testsolelylowercase","testalphabetic","AEsc","AEscCode","Acute","AcuteCode","AlphaCapsTreatment","AlphaTreatment","Angstrom","AngstromCode","ArchJoin","ArchJoinCode","BarredL","BarredLCode","Barredl","BarredlCode","BlankSpace","BlankTreatment","Breve","BreveCode","CapitalizeString","Carat","CaratCode","Caron","CaronCode","Cedilla","CedillaCode","Circumflex","CircumflexCode","Copyright","CopyrightCode","Dagger","DaggerCode","Dollar","DollarCode","DoubleAcute","DoubleAcuteCode","DoubleDagger","DoubleDaggerCode","ESCrotate","EncodedAEsc","EncodedAcute","EncodedAngstrom","EncodedArchJoin","EncodedBarredL","EncodedBarredl","EncodedBlankSpace","EncodedBreve","EncodedCarat","EncodedCaron","EncodedCedilla","EncodedCircumflex","EncodedCopyright","EncodedDagger","EncodedDollar","EncodedDoubleAcute","EncodedDoubleDagger","EncodedEszett","EncodedGrave","EncodedLB","EncodedLeftBrace","EncodedLineUnder","EncodedMacron","EncodedOEthel","EncodedOverdot","EncodedPilcrow","EncodedPipe","EncodedPounds","EncodedRB","EncodedRightBrace","EncodedSectionSymbol","EncodedSlashedO","EncodedSlashedo","EncodedTilde","EncodedUmlaut","EncodedUnderdot","EncodedUnderscore","EncodedUvari","EncodedUvarii","EncodedUvariii","Encodedaesc","Encodedangstrom","Encodedoethel","EncodingTreatment","EscapeChar","Eszett","EszettCode","Grave","GraveCode","LB","LBCode","LeftBrace","LeftBraceCode","LineUnder","LineUnderCode","Macron","MacronCode","NumeralTreatment","OEthel","OEthelCode","Overdot","OverdotCode","Pilcrow","PilcrowCode","Pipe","PipeCode","Pounds","PoundsCode","PrimarySignalChar","PunctuationTreatment","RB","RBCode","RightBrace","RightBraceCode","SaveAEsc","SaveAcute","SaveAlphaCapsTreatment","SaveAlphaTreatment","SaveAngstrom","SaveArchJoin","SaveBarredL","SaveBarredl","SaveBreve","SaveCaron","SaveCedilla","SaveCircumflex","SaveCopyright","SaveDagger","SaveDollar","SaveDoubleAcute","SaveDoubleDagger","SaveEszett","SaveGrave","SaveHardspace","SaveLB","SaveLeftBrace","SaveLineUnder","SaveMacron","SaveOEthel","SaveOverdot","SavePilcrow","SavePounds","SaveRB","SaveRightBrace","SaveSectionSymbol","SaveSlashedO","SaveSlashedo","SaveTilde","SaveUmlaut","SaveUnderdot","SaveUnderscore","Saveaesc","Saveangstrom","Saveoethel","SecondarySignalChar","SectionSymbol","SectionSymbolCode","SeekBlankSpace","SignalChar","SlashedO","SlashedOCode","Slashedo","SlashedoCode","SymbolTreatment","Tilde","TildeCode","Umlaut","UmlautCode","Underdot","UnderdotCode","Underscore","UnderscoreCode","UnencodedLB","UnencodedRB","Uvari","UvariCode","Uvarii","UvariiCode","Uvariii","UvariiiCode","aesc","aescCode","angstrom","angstromCode","buildtoken","carat","encodedfromarg","encodedstring","encodedtoarg","endofstring","gobbledword","lcword","matchchar","mystring","narg","oethel","oethelCode","rotatingword","ucword","undecipherable","uvari","uvarii","uvariii","ifmatchingchar","matchingchartrue","matchingcharfalse","ifcapitalized","capitalizedtrue","capitalizedfalse","ifuncapitalized","uncapitalizedtrue","uncapitalizedfalse","ifleadingalpha","leadingalphatrue","leadingalphafalse","ifuppercase","uppercasetrue","uppercasefalse","ifsolelyuppercase","solelyuppercasetrue","solelyuppercasefalse","iflowercase","lowercasetrue","lowercasefalse","ifsolelylowercase","solelylowercasetrue","solelylowercasefalse","ifalphabetic","alphabetictrue","alphabeticfalse"]}
-,
-"stripsemantex.sty":{"envs":{},"deps":["luatex.sty","xparse.sty"],"cmds":["StripSemantex","StripSemantexStripComments","RegisterID","BeginOutput","BeginSource","RegisterClass","RegisterObject","EndOutput","EndSource"]}
-,
-"structmech.sty":{"envs":{},"deps":["ifthen.sty","kvoptions.sty","tikz.sty","tikzlibrarycalc.sty","tikzlibrarydecorations.pathreplacing.sty","tikzlibrarypositioning.sty","xkeyval.sty","xparse.sty","xstring.sty"],"cmds":["setstructmech","NodalForce","BasicForce","UDL","HingeSupport","FixedSupport","RollerSupport","SliderSupport","SleeveSupport","Rigid","CoorOrigin","IForceA","IForceB","BeamDeformP","BeamDeformR","Angle","AngleB","FAC","Length","LengthB","absvalue","axisColor","convention","fillColor","fillOpacity","lineColor","lineWidth","nodeColor","rotationColor","showvalue"]}
-,
-"struktex.sty":{"envs":["struktogramm","declaration","centernss"],"deps":["ifthen.sty","struktxf.sty","struktxp.sty","pict2e.sty","curves.sty","emlines2.sty"],"cmds":["assert","StrukTeX","sProofOn","sProofOff","PositionNSS","assign","declarationtitle","description","descriptionindent","descriptionwidth","descriptionsep","sub","return","while","whileend","until","untilend","forallin","forallinend","forever","foreverend","exit","ifthenelse","change","ifend","case","switch","caseend","inparallel","task","inparallelend","CenterNssFile","centernssfile","dimtomm","getnum","getoption","openstrukt","closestrukt","dfr","dfrend"]}
-,
-"struktxf.sty":{"envs":{},"deps":{},"cmds":["mathbb","nat","integer","real","complex","MathItalics","MathNormal","btt"]}
-,
-"struktxp.sty":{"envs":{},"deps":["url.sty"],"cmds":["pVariable","pVar","pKeyword","pKey","pExpression","pExp","pComment","pTrue","pFalse","pFonts","pBoolValue","sVar","sKey","sTrue","sFalse","sBoolValue"]}
-,
-"stubs.sty":{"envs":{},"deps":["textpos.sty","graphicx.sty"],"cmds":["stubs","stublmargin","stubrmargin","stubbmargin"]}
-,
-"studenthandouts.sty":{"envs":{},"deps":["changepage.sty","ifthen.sty","fmtcount.sty","tocloft.sty","geometry.sty","fancyhdr.sty"],"cmds":["sethandouttitle","importhandout","importall","importnone","importonlyunits","importallunits","importonlyhandouts","importallhandouts","thehandoutsdirectory","thehandoutslabel","thehandoutscredit","setunittitle","thehandoutsgeometry","thehandoutnumber","thehandouttitle","thehandoutfulltitle","thehandoutpage","theunitnumber","theunittitle","theunitfulltitle","allhandoutinfo","gnewcommand","grenewcommand"]}
-,
-"styledcmd.sty":{"envs":{},"deps":["lt3rawobjects.sty"],"cmds":["newstyledcmd","renewstyledcmd","providestyledcmd","setGlobalStyle","NewDocStyledCMD","RenewDocStyledCMD","ProvideDocStyledCMD","newstyledcmdExp","renewstyledcmdExp","providestyledcmdExp","AddCMDToGroup","SetGroupStyle","styBeginGroup","styEndGroup","styBeginStyle","styEndStyle","newGstyledcmd","NewGDocStyledCMD","setGroupStyle"]}
-,
-"subcaption.sty":{"envs":["subfigure","subcaptionblock","subcaptiongroup","subcaptiongroup*"],"deps":["caption.sty","setspace.sty","sansmath.sty","ragged2e.sty"],"cmds":["subcaptionsetup","subcaptionbox","subcaption","subref","thesubfigure","thesubtable","phantomsubcaption","subfloat","subcaptionlistentry","subcaptiontext"]}
-,
-"subdepth.sty":{"envs":{},"deps":{},"cmds":{}}
-,
-"subdocs.sty":{"envs":{},"deps":["keyval.sty"],"cmds":["subdocuments"]}
-,
-"subeqn.sty":{"envs":["subequations","subeqnarray"],"deps":{},"cmds":["thesubequation","themainequation"]}
-,
-"subfig.sty":{"envs":{},"deps":["keyval.sty","ragged2e.sty"],"cmds":["subfigure","subtable","Subref","newsubfloat","DeclareCaptionListOfFormat","DeclareSubrefFormat","subfloat","subref","listsubcaptions","thesubfigure","thesubtable","subfigurename","subtablename","theKVtest","ifhyperrefloaded","hyperrefloadedtrue","hyperrefloadedfalse","ifmaincaptiontop","maincaptiontoptrue","maincaptiontopfalse"]}
-,
-"subfigmat.sty":{"envs":["subfigmatrix"],"deps":["subfigure.sty"],"cmds":["sfmcolsep"]}
-,
-"subfigure.sty":{"envs":{},"deps":{},"cmds":["subfigure","subtable","thesubfigure","thesubtable","theHsubfigure","theHsubtable","subfigtopskip","subfigcapskip","subfigcaptopadj","subfigbottomskip","subfigcapmargin","subfiglabelskip","subref","Subref","listsubcaptions","ifsubfiguretopcap","subfiguretopcaptrue","subfiguretopcapfalse","ifsubtabletopcap","subtabletopcaptrue","subtabletopcapfalse","iffiguretopcap","figuretopcaptrue","figuretopcapfalse","figureotopcapfalse","iftabletopcap","tabletopcaptrue","tabletopcapfalse","label","subcapfont","subcaplabelfont","subcapsize","thelofdepth","thelotdepth","ifhyperrefloaded","hyperrefloadedtrue","hyperrefloadedfalse","ifsubcaphang","subcaphangtrue","subcaphangfalse","ifsubcapcenter","subcapcentertrue","subcapcenterfalse","ifsubcapcenterlast","subcapcenterlasttrue","subcapcenterlastfalse","ifsubcapnooneline","subcapnoonelinetrue","subcapnoonelinefalse","ifsubcapraggedright","subcapraggedrighttrue","subcapraggedrightfalse"]}
-,
-"subfiles.sty":{"envs":{},"deps":["import.sty"],"cmds":["subfile","subfileinclude","subfix","ifSubfilesClassLoaded"]}
-,
-"subfloat.sty":{"envs":["subfigures","subtables"],"deps":{},"cmds":["subfiguresbegin","subfiguresend","subtablesbegin","subtablesend","thesubfloatfigure","thesubfloattable","themainfigure","themaintable","ifinsubfloatfigures","insubfloatfigurestrue","insubfloatfiguresfalse","ifinsubfloattables","insubfloattablestrue","insubfloattablesfalse","thesubfloatfiguremax","thesubfloattablemax"]}
-,
-"substances.sty":{"envs":{},"deps":["expl3.sty","xparse.sty","l3keys2e.sty","xtemplate.sty","chemmacros.sty","chemfig.sty","ghsystem.sty","siunitx.sty"],"cmds":["DeclareSubstance","LoadSubstances","SubstancesDatabase","CAS","SubstancesStyle","LoadSubstancesStyle","DeclareSubstanceProperty","chem","GetSubstanceProperty","RetrieveSubstanceProperty","ForAllSubstancesDo","AllSubstancesSequence","AllSubstancesClist","IfSubstancePropertyTF","IfSubstancePropertyT","IfSubstancePropertyF","IfSubstanceFieldTF","IfSubstanceFieldT","IfSubstanceFieldF","IfSubstanceExistTF","IfSubstanceExistT","IfSubstanceExistF","SubstanceIndex","SubstanceIndexNameEntry","SubstanceIndexNameAltEntry","SubstanceIndexAltEntry","ghspictograms","ghsstatements"]}
-,
-"substitutefont.sty":{"envs":{},"deps":{},"cmds":["substitutefont"]}
-,
-"substr.sty":{"envs":{},"deps":{},"cmds":["IfSubStringInString","IfCharInString","BehindSubString","BeforeSubString","CountSubStrings","SubStringsToCounter","IfBeforeSubStringEmpty","IfBehindSubStringEmpty"]}
-,
-"subsupscripts.sty":{"envs":{},"deps":{},"cmds":["fourscripts","lrsubscripts","lrsuperscripts","twolscripts","tworscripts","lsubscript","lsuperscript","rsubscript","rsuperscript","largerSkips","setDblLSkip","setDblRSkip","setSingleLSkip","setSingleRSkip","fourscriptsC","lrsubscriptsC","lrsuperscriptsC","dblleftscriptskip","dblrightscriptskip","singleleftscriptskip","singlerightscriptskip"]}
-,
-"subtext.sty":{"envs":{},"deps":["amstext.sty"],"cmds":{}}
-,
-"sudoku.sty":{"envs":["sudoku-block","sudoku"],"deps":{},"cmds":["sudokuformat","sudokusize","sudokuthickline","sudokuthinline"]}
-,
-"suetterl.sty":{"envs":{},"deps":{},"cmds":["suetterlin","s","textsuetterlin","filename","fileversion","filedate","docversion","docdate"]}
-,
-"suffix.sty":{"envs":{},"deps":{},"cmds":["WithSuffix","SuffixName","NoSuffixName"]}
-,
-"suftesi.cls":{"envs":["enumerate*","itemize*","description*","article","bibliografia","sigle"],"deps":["xkeyval.sty","s-book.cls","fontsize.sty","geometry.sty","enumitem.sty","caption.sty","multicol.sty","emptypage.sty","microtype.sty","color.sty","iftex.sty","etoolbox.sty","crop.sty","fontenc.sty","substitutefont.sty","titlesec.sty","appendix.sty","titletoc.sty","fancyhdr.sty","cochineal.sty","inconsolata.sty","biolinum.sty","newtxmath.sty","zref-perpage.sty","lmodern.sty","textcomp.sty","newpxtext.sty","newpxmath.sty","libertine.sty","libertinust1math.sty","mathpazo.sty","beramono.sty","amsthm.sty","mathalpha.sty","cclicenses.sty"],"cmds":["DH","NG","dj","ng","k","guillemotleft","guillemotright","guilsinglleft","guilsinglright","quotedblbase","quotesinglbase","textquotedbl","DJ","th","TH","dh","Hwithstroke","hwithstroke","textogonekcentered","guillemetleft","guillemetright","fAlt","rhoAlt","mathcal","mathbfcal","greektext","textgreek","FSPLcolophon","partfont","chapfont","secfont","subsecfont","subsubsecfont","parfont","subparfont","partnumfont","chapnumfont","secnumfont","subsecnumfont","subsubsecnumfont","parnumfont","subparnumfont","breakintoc","breakinbody","breakinbodyleft","chapterintro","chapterintroname","tocpartfont","tocchapfont","tocsecfont","tocsubsecfont","tocsubsubsecfont","tocparfont","tocsubparfont","tocpartnumfont","tocchapnumfont","tocsecnumfont","tocsubsecnumfont","tocsubsubsecnumfont","tocparnumfont","tocsubparnumfont","toclabelwidth","tocpartname","printpartialtoc","partialtocsecfont","partialtocsubsecfont","partialtocsubsubsecfont","partialtocparfont","partialtocsubparfont","partialtocseclabelfont","partialtocsubseclabelfont","partialtocsubsubseclabelfont","partialtocparlabelfont","partialtocsubparlabelfont","partialtocsize","partialtocbeforespace","partialtocafterpace","partialtocbeforecode","partialtocaftercode","partialtocafterspace","partialtocseclabel","partialtocsubseclabel","partialtocsubsubseclabel","startchappartialtoc","startsecpartialtoc","xfootnote","title","titlefont","authorfont","datefont","makecover","Cauthor","Ctitle","Csubtitle","Ceditor","Cfoot","Cpagecolor","Ctextcolor","Cfootcolor","colophon","bookcolophon","artcolophon","finalcolophon","collectiontitlepage","collectiontitle","collectioneditor","fulljournal","issue","issuename","journalname","journalnumber","journalvolume","journalwebsite","journalyear","theissue","thejournalnumber","thejournalvolume","thearticle","SUFfntscale","adjtoclabelsep","adjtocpagesep","appendicesname","doi","isbn","itlabel","lmfntscale","sectionsep","origtableofcontents","oldmarginpar","headbreak","hemph","frontispiece","losname","texorpdfstring","xheadbreak","yheadbreak"]}
-,
-"superiors.sty":{"envs":{},"deps":["pgffor.sty","xkeyval.sty"],"cmds":["sustyle","textsu"]}
-,
-"supertabular.sty":{"envs":["mpsupertabular"],"deps":{},"cmds":["bottomcaption","setSTheight","shrinkheight","tablecaption","tablefirsthead","tablehead","tablelasttail","tabletail","topcaption","sttraceon","sttraceoff"]}
-,
-"suppose.sty":{"envs":{},"deps":["amsmath.sty","euscript.sty","graphicx.sty"],"cmds":["supp","bsup","plainsupp","plainbsup","ssup","sbsup","csup","bcsup","scsup","sbcsup","dsup","bdsup","sdsup","sbdsup","esup","besup","sesup","sbesup","tsup","btsup","stsup","sbtsup","vsup","bvsup","svsup","sbvsup","mathbfcal","mathdutchcal","mathdutchbfcal","itt","sansserif","bfeuscript","bfsansserif","bolditt","Swidth","bcshift","bdshift","beshift","boldrulelength","boldrulewidth","bplainshift","bshift","btshift","bvshift","cshift","curboldfont","curfont","dshift","eshift","hardsvshift","hardvshift","plainshift","rulelength","rulewidth","sbcshift","sbdshift","sbeshift","sbshift","sbtshift","sbvshift","scshift","sdshift","seshift","shift","sshift","stshift","svshift","theangle","theslantselected","tshift","vshift"]}
-,
-"surv-l.cls":{"envs":{},"deps":["s-amsbook.cls"],"cmds":{}}
-,
-"susy.sty":{"envs":{},"deps":{},"cmds":["sfer","sqk","squ","sqd","sqc","sqs","sqt","sqb","slep","sle","slmu","sltau","slneu","Hu","Hd","Ho","Hou","Hod","No","Co","Cop","Com","tbeta","go","Wo","Zo","pho"]}
-,
-"sverb.sty":{"envs":["listing","demo","ignore"],"deps":{},"cmds":["listingsize","listingindent","verbinput","matcher"]}
-,
-"svg-extract.sty":{"envs":{},"deps":["svg.sty"],"cmds":["svghidepreamblestart","svghidepreambleend","svgxoutputbox","svgxsetbox","svgxsetpapersize"]}
-,
-"svg.sty":{"envs":{},"deps":["iftex.sty","scrbase.sty","pdftexcmds.sty","trimspaces.sty","graphicx.sty","shellesc.sty","ifplatform.sty","xcolor.sty","transparent.sty","pgfsys.sty"],"cmds":["svgsetup","svgpath","includesvg","includeinkscape","setsvg"]}
-,
-"svgcolor.sty":{"envs":{},"deps":{},"cmds":{}}
-,
-"svmono.cls":{"envs":["tinted","acknowledgement","backgroundinformation","case","claim","conjecture","corollary","dedication","definition","important","legaltext","lemma","newshaded","note","noteadd","overview","partbacktext","petit","prob","problem","programcode","proof","property","proposition","question","refguide","remark","sol","solution","svgraybox","svtintedbox","thecontriblist","theopargself","theopargself*","theorem","tips","trailer","warning"],"deps":["xcolor.sty","ntheorem.sty","natbib.sty","framed.sty"],"cmds":["abstract","ackname","addcontentsmark","addcontentsmarkwop","addnumcontentsmark","addtocmark","aftertext","allmodesymb","andname","at","authorrunning","authrun","backmatter","bbbc","bbbf","bbbh","bbbk","bbbm","bbbn","bbbone","bbbp","bbbq","bbbr","bbbs","bbbt","bbbz","betweenumberspace","biblstarthook","bibname","bibsection","boxtext","calctocindent","capstrut","captionstyle","chapauthor","chapauthsize","chapauthstyle","chapnumsize","chapnumstyle","chapsize","chapstyle","chapsubtitle","chapter","chaptermark","chaptername","secbibl","circledmark","claimname","ClassInfoNoLine","clearemptydoublepage","clearheadinfo","conjecturename","contriblistname","corollaryname","customizhead","D","definitionname","describelabel","E","email","emailname","envankh","etal","eul","examplename","exercisename","extrachap","Extrachap","figcapgap","figgap","floatcounterend","floatlegendstyle","fnmsep","foreword","forewordname","formtmp","frontmatter","getsto","gid","greeksym","greeksymbold","grole","guidelinedefn","guidemaketitle","guidetitle","guisection","guisubsection","headlineindent","I","iand","idxquad","imag","indexstarthook","inst","instindent","institute","institutename","keywordname","keywords","LArge","lastand","lastandname","leftcaption","leftfigure","leftlegendglue","lemmaname","lid","mailname","mainmatter","makereferee","maketimestamp","MiniTOC","minitoc","motto","mottosize","mottostyle","mottowidth","mpicplace","nand","nixchapnum","nocaption","NoneSymbol","normalthmheadings","noteaddname","notename","numstyle","oribibl","partnumsize","partnumstyle","partsize","partstyle","preface","prefacename","problemname","probref","processchapauthor","processchapsubtit","processmotto","proofname","propertyname","propositionname","questionname","refereebox","remarkname","resetsubfig","reversethmheadings","rightcaption","rightfigure","runheadsize","runheadstyle","runinhead","runinsep","samenumber","scratch","seccounterend","seccountergap","secsize","secstyle","seename","setitemindent","setitemitemindent","sidecaption","smartqed","solutionname","spdefaulttheorem","spnewtheorem","SpringerMacroPackageNameA","spthmsep","startnewpage","stmtopen","subclassname","subfigures","subruninhead","subsecsize","subsecstyle","subsubruninhead","subsubsecstyle","subtitle","svhline","svitemindent","svlanginfo","SVMonoOpt","svparindent","tabcapgap","tens","theauco","thechapter","thechapterend","thecontribution","thedate","themerk","theminitocdepth","theoremname","thesubequation","thetime","thisbottomragged","threecolindex","timstamp","title","titlerunning","titrun","tocauthor","tocchpnum","tocparanum","tocparatotal","tocsecnum","tocsectotal","tocsubparanum","tocsubsecnum","tocsubsectotal","tocsubsubsecnum","tocsubsubsectotal","toctitle","ts","twocaptionwidth","ualpha","ubeta","uchi","udelta","ugamma","umu","unu","upi","url","utau","varDelta","varGamma","varLambda","varOmega","varPhi","varPi","varPsi","varSigma","varTheta","varUpsilon","varXi","vec","verbatimindent","theoremsymbol","label","thref"]}
-,
-"svmult.cls":{"envs":["tinted","abbrsymblist","acknowledgement","backgroundinformation","case","claim","conjecture","corollary","dedication","definition","important","legaltext","lemma","newshaded","note","noteadd","overview","partbacktext","petit","prob","problem","programcode","proof","property","proposition","question","refguide","remark","sol","solution","svgraybox","svtintedbox","thecontriblist","theopargself","theopargself*","theorem","tips","trailer","warning"],"deps":["xcolor.sty","ntheorem.sty","natbib.sty","framed.sty"],"cmds":["abbrsymbname","abstract","ackname","addcontentsmark","addcontentsmarkwop","addnumcontentsmark","addtocmark","aftertext","allmodesymb","andname","at","authcount","authorrunning","authrun","backmatter","bbbc","bbbf","bbbh","bbbk","bbbm","bbbn","bbbone","bbbp","bbbq","bbbr","bbbs","bbbt","bbbz","betweenumberspace","biblstarthook","bibname","bibsection","boxtext","bppendix","calctocindent","capstrut","captionstyle","chapauthor","chapauthsize","chapauthstyle","chapnumsize","chapnumstyle","chapsize","chapstyle","chapsubtitle","chapter","chaptermark","chaptername","chpbibl","circledmark","claimname","ClassInfoNoLine","clearemptydoublepage","clearheadinfo","conjecturename","contriblistname","contributors","corollaryname","customizhead","D","definitionname","describelabel","dominitoc","E","email","emailname","envankh","etal","eul","examplename","exercisename","extrachap","Extrachap","figcapgap","figgap","floatcounterend","floatlegendstyle","fnmsep","foreword","forewordname","formtmp","frontmatter","getsto","gid","greeksym","greeksymbold","grole","guisection","guisubsection","headlineindent","hyperhrefextend","I","iand","idxquad","imag","indexstarthook","inst","instindent","institute","institutename","keywordname","keywords","LArge","lastand","lastandname","leftcaption","leftfigure","leftlegendglue","lemmaname","lid","mailname","mainmatter","makereferee","maketimestamp","MiniTOC","minitoc","motto","mottosize","mottostyle","mottowidth","mpicplace","mtaddtocont","nand","nixchapnum","nocaption","NoneSymbol","normalthmheadings","noteaddname","notename","numstyle","oribibl","partnumsize","partnumstyle","partsize","partstyle","preface","prefacename","problemname","probref","processchapauthor","processchapsubtit","processmotto","proofname","propertyname","propositionname","questionname","refereebox","remarkname","resetsubfig","reversethmheadings","rightcaption","rightfigure","runheadsize","runheadstyle","runinhead","runinsep","samenumber","scratch","seccounterend","seccountergap","secsize","secstyle","seename","setitemindent","setitemitemindent","sidecaption","smartqed","solutionname","spdefaulttheorem","spnewtheorem","SpringerMacroPackageNameA","spthmsep","startnewpage","stmtopen","subclassname","subfigures","subruninhead","subsecsize","subsecstyle","subsubruninhead","subsubsecstyle","subtitle","svhline","svitemindent","svlanginfo","SVMultOpt","svparindent","tabcapgap","tens","theauco","thechapter","thechapterend","thecontribution","thedate","themerk","theminitocdepth","theoremname","thesubequation","thetime","thisbottomragged","threecolindex","timstamp","title","titlerunning","titrun","tocaftauthskip","tocauthor","tocauthorstyle","tocchpnum","tocparanum","tocparatotal","tocsecnum","tocsectotal","tocsubparanum","tocsubsecnum","tocsubsectotal","tocsubsubsecnum","tocsubsubsectotal","toctitle","toctitlestyle","ts","twocaptionwidth","ualpha","ubeta","uchi","udelta","ugamma","umu","unu","upi","url","utau","varDelta","varGamma","varLambda","varOmega","varPhi","varPi","varPsi","varSigma","varTheta","varUpsilon","varXi","vec","verbatimindent","theoremsymbol","label","thref"]}
-,
-"svn-multi.sty":{"envs":{},"deps":["kvoptions.sty","currfile.sty","graphics.sty","pgf.sty"],"cmds":["svngraphicsgroup","svnignoregraphic","svnconsidergraphic","svnid","svnidlong","svn","svnkwsave","svngroup","thesvngroup","svnsetcg","thesvncg","svnsubgroup","svnignoreextensions","svnconsiderextensions","svnrev","svndate","svnauthor","svnfilerev","svnfiledate","svnfileauthor","svncgrev","svncgauthor","svncgdate","svng","svnmainurl","svnmainfilename","svnsetmainfile","svnkw","svnkwdef","ifsvnfilemodified","ifsvnmodified","svnyear","svnfileyear","svncgyear","svnmonth","svnfilemonth","svncgmonth","svnday","svnfileday","svncgday","svnhour","svnfilehour","svncghour","svnminute","svnfileminute","svncgminute","svnsecond","svnfilesecond","svncgsecond","svntimezone","svnfiletimezone","svncgtimezone","svntimezonehour","svnfiletimezonehour","svncgtimezonehour","svntimezoneminute","svnfiletimezoneminute","svncgtimezoneminute","svntime","svnfiletime","svncgtime","svnpdfdate","svntoday","svnfiletoday","svncgtoday","svnfilefname","svnfileurl","svncgfname","svnurl","svnfname","svncgurl","svnRegisterAuthor","svnFullAuthor","svnRegisterRevision","svnFullRevision","svnnolinkurl","tableofrevisions","svnrevisionsname","svnbeforetable","svnaftertable","svntable","endsvntable","svntablehead","svntablefoot","svnglobalrow","endsvnglobalrow","svngrouprow","endsvngrouprow","svnsubgrouprow","endsvnsubgrouprow","svnfilerow","endsvnfilerow","svntabglobal","svntabgroup","svntabsubgroup","svntabfile","svntabrev","svntabauthor","svntabdate","svnexternal","svnexternalpath"]}
-,
-"svn-prov.sty":{"envs":{},"deps":{},"cmds":["ProvidesPackageSVN","ProvidesClassSVN","ProvidesFileSVN","rev","Rev","revinfo","filebase","fileext","filename","filedate","filerev","fileversion","filetoday","GetFileInfoSVN","DefineFileInfoSVN"]}
-,
-"svn.sty":{"envs":{},"deps":{},"cmds":["SVN","SVNDate","SVNRawDate","SVNTime","SVNdate","SVNempty"]}
-,
-"svninfo.sty":{"envs":{},"deps":{},"cmds":["svnInfo","svnInfoFile","svnInfoRevision","svnInfoMinRevision","svnInfoMaxRevision","svnInfoDate","svnInfoTime","svnInfoOwner","svnInfoYear","svnInfoMonth","svnInfoDay","svnInfoLongDate","svnId","svnToday","svnInfoMaxToday","svnKeyword"]}
-,
-"svrsymbols.sty":{"envs":{},"deps":{},"cmds":["adsorbate","adsorbent","antimuon","antineutrino","antineutron","antiproton","antiquark","antiquarkb","antiquarkc","antiquarkd","antiquarks","antiquarkt","antiquarku","anyon","assumption","atom","bigassumption","Bigassumption","biggassumption","Bmesonminus","Bmesonnull","Bmesonplus","bond","boseDistrib","boson","conductivity","covbond","dipole","Dmesonminus","Dmesonnull","Dmesonplus","doublecovbond","electron","errorsym","etameson","etamesonprime","exciton","experimentalsym","externalsym","fermiDistrib","fermion","Gluon","graphene","graviton","hbond","Higgsboson","hole","interaction","internalsym","ion","ionicbond","Jpsimeson","Kaonminus","Kaonnull","Kaonplus","magnon","maxwellDistrib","metalbond","method","muon","neutrino","neutron","nucleus","orbit","phimeson","phimesonnull","phonon","pionminus","pionnull","pionplus","plasmon","polariton","polaron","positron","protein","proton","quadrupole","quark","quarkb","quarkc","quarkd","quarks","quarkt","quarku","reference","resistivity","rhomesonminus","rhomesonnull","rhomesonplus","solid","spin","spindown","spinup","surface","svrexample","svrphoton","tachyon","tauleptonminus","tauleptonplus","Tmesonminus","Tmesonnull","Tmesonplus","triplecovbond","Upsilonmeson","varphoton","water","Wboson","Wbosonminus","Wbosonplus","Zboson"]}
-,
-"swfigure.sty":{"envs":["DFimage"],"deps":["etoolbox.sty","xfp.sty","graphicx.sty","afterpage.sty","wrapfig2.sty"],"cmds":["DFimage","cleartoeven","cleartopage","CompStrings","DFcaption","DFcaptionP","DFhalfheight","DFhalfwidth","DFheight","DFscalefactor","DFwarning","DFwidth","DisplayModeList","externalmargin","FigSpace","fptest","FScaptionShift","FSfigure","HSfigure","internalmargin","NFfigure","RFfigure","RFx","RFy","SetList","spreadwidth","SWcaptionShift","SWfigure","TestList","THfigure","TScaptionwidth","TWfigure","VSfigure"]}
-,
-"swungdash.sty":{"envs":{},"deps":["accsupp.sty","graphicx.sty","iftex.sty"],"cmds":["swungdash","thetilde","twiddle","swungdashversionnumber"]}
-,
-"symbats3.sty":{"envs":{},"deps":["fontspec.sty","calc.sty"],"cmds":["symbats","admetos","aegishjalmur","airelement","angleacute","ankh","apollon","aquarius","aries","ascendingnode","astraea","athameeast","athamenorth","athamesouth","athamewest","awen","beltane","blackdiamondoncross","blackmoonlilith","cancer","capricorn","celtictrefoilknotopen","celtictrefoilknotsolid","ceres","chiron","circleplus","conjunction","crossedstaff","cupido","descendingnode","doubledfemale","doubledmale","dupsun","dupsunfourspokes","earthelement","earth","eightsabbats","eostre","female","fireelement","fylfotilkley","gemini","goddessasmoon","hades","hammer","horizontalmalewithstroke","hygiea","imbolc","interlockedmalefemale","juno","jupiter","kronos","labrys","leo","libra","lightning","lughnasadh","male","maleandfemale","malewithstroke","malewithstrokemalefemale","mars","mazeround","mazesquarebase","mercury","moonfirstquarteroutline","moonfirstquartersolid","moonfull","moonlastquarteroutline","moonlastquartersolid","moonnew","moonwaningoutline","moonwaningsolid","moonwaxfullwaneoutline","moonwaxfullwanesolid","moonwaxingoutline","moonwaxingsolid","neptuneformtwo","neptune","nessus","neuter","octile","OGailm","OGbeith","OGceirt","OGcoll","OGdair","OGeabhadh","OGeadhadh","OGeamhancholl","OGfearn","OGfeather","OGgort","OGifin","OGiodhadh","OGluis","OGmuin","OGngeadal","OGnion","OGonn","OGor","OGpeith","OGreversedfeather","OGruis","OGsail","OGstraif","OGtinne","OGuath","OGuilleann","OGur","oldankh","oldaquarius","oldaries","oldascendingnode","oldcancer","oldcapricorn","oldceres","oldconjunction","olddescendingnode","oldearth","oldgemini","oldjupiter","oldleo","oldlibra","oldmercury","oldmoonwaningoutline","oldmoonwaxingoutline","oldneptune","oldopposition","oldpentagramintL","oldpentagramintRsolid","oldpentagramintR","oldpentagraminvsolid","oldpentagraminv","oldpentagram","oldpisces","oldpluto","oldsaggitarius","oldsaturn","oldsextile","oldsquare","oldsuncoronafourspokes","oldtaurus","olduranus","oldvirgo","opposition","pallas","parting","pentagramcircled","pentagramintLcircled","pentagramintL","pentagramintR","pentagramintRcircled","pentagramintRsolid","pentagramintRtriangle","pentagraminvcircled","pentagraminvintLcircled","pentagraminvintL","pentagraminvintRcircled","pentagraminvintRsolid","pentagraminvintR","pentagraminvsolid","pentagraminv","pentagramrough","pentagramroughcircled","pentagramroughinv","pentagramroughinvcircled","pentagramroughinvsolid","pentagramroughsolid","pentagramsolid","pentagram","pentagramwithtriangle","perfectcouple","perfectcouplethirddegree","pholus","pisces","plutoformfive","plutoformfour","plutoformthree","plutoformtwo","pluto","poseidon","powergoingforth","prescription","proserpina","quincunx","recipe","rockartgoddess","rockarthorse","RUaca","RUaesc","RUalgizeolhx","RUansuza","RUarlaugsymbol","RUbelgthorsymbol","RUberkananbeorcbjarkanb","RUc","RUcalc","RUcealc","RUcen","RUcrosspunctuation","RUcweorth","RUd","RUdagazdaegd","RUdottedl","RUdottedn","RUdottedp","RUe","RUear","RUehwazehe","RUeng","RUeth","RUfehufeohfef","RUfrankscasketac","RUfrankscasketaesc","RUfrankscasketeh","RUfrankscasketis","RUfrankscasketos","RUg","RUgar","RUgebogyfug","RUger","RUhaeglh","RUhaglazh","RUicelandicyr","RUing","RUingwaz","RUior","RUisazisissi","RUiwazeoh","RUjeranj","RUk","RUkauna","RUkaunk","RUlaukazlagulogrl","RUlongbrancharae","RUlongbranchhagallh","RUlongbranchmadrm","RUlongbranchosso","RUlongbranchyr","RUmannazmanm","RUmultiplepunctuation","RUnaudiznydnaudn","RUo","RUoe","RUon","RUoo","RUopenp","RUoso","RUothalanethelo","RUperthopeorthp","RUq","RUraidoradreidr","RUsh","RUshorttwigara","RUshorttwigbjarkanb","RUshorttwighagallh","RUshorttwigmadrm","RUshorttwignaudn","RUshorttwigosso","RUshorttwigsols","RUshorttwigtyrt","RUshorttwigyr","RUsigellongbranchsols","RUsinglepunctuation","RUsowilos","RUstan","RUthurisazthursthorn","RUtiwaztirtyrt","RUtvimadursymbol","RUuruzuru","RUv","RUw","RUwunjowynnw","RUx","RUy","RUyr","RUz","saggitarius","salute","samhuinn","saturn","scorpio","scorpius","scourge","selena","semisextile","serpentimpaled","sesquiquadrate","sextile","square","stareightarrows","sulphur","sun","suncoronafourspokes","suncoronahubfourspokes","suncoronasixspokes","suneightspokes","sunfourdoublespokes","sunfourspokes","sunrays","sunthreedoublespokes","sunwithrays","sunwithraysfourspokes","taurus","transpluto","truelightmoonarta","uranus","valknutoutline","valknutsolid","vargemini","varuranus","venus","venusfigureoutline","venusfiguresolid","verticalmalewithstroke","vesta","virgo","vulcanus","waterelement","whiteknifeeast","whiteknifenorth","whiteknifesouth","whiteknifewest","yule","zeus"]}
-,
-"symbolpalette.sty":{"envs":{},"deps":["xcolor.sty","macrolist.sty"],"cmds":["newsuitetheme","addsymboltotheme","newsuite","setsuitesymbol","activesuite","printsymbol"]}
-,
-"sympytex.sty":{"envs":["sympyblock","sympysilent","sympyverbatim","comment"],"deps":["verbatim.sty","graphicx.sty","makecmds.sty","ifpdf.sty","ifthen.sty"],"cmds":["sympy","percent","sympyplot","sympytexindent"]}
-,
-"synproof.sty":{"envs":["synproof"],"deps":["ifthen.sty","pstricks.sty","pst-node.sty","keyval.sty"],"cmds":["Exists","Forall","Neg","And","Or","Falsum","Implies","SetDim","step","LineNum","assumption","assumend","AssumeLine","ExToRule","LineSpace","newctr","Num","NumToEx","OutLine","ResetDim","Start","theembedding","theendassumption","theinfline","thelab","thestep"]}
-,
-"syntaxdi.sty":{"envs":{},"deps":["tikz.sty","tikzlibrarychains.sty","tikzlibraryshadows.sty","tikzlibraryshapes.misc.sty"],"cmds":{}}
-,
-"syntonly.sty":{"envs":{},"deps":{},"cmds":["syntaxonly"]}
-,
-"systeme.sty":{"envs":{},"deps":["xstring.sty"],"cmds":["systeme","syslineskipcoeff","sysdelim","sysequivsign","sysaddeqsign","sysremoveeqsign","syseqsep","sysalign","syssignspace","syseqspace","sysextracolsign","syscodeextracol","sysautonum","SYSeqnum","sysreseteqnum","syssubstitute","sysnosubstitute","SYSunder","SYSstyfile","SYSname","SYSver","SYSdate"]}
-,
-"t1enc.sty":{"envs":{},"deps":{},"cmds":["DH","dh","dj","DJ","guillemetleft","guillemetright","guillemotleft","guillemotright","guilsinglleft","guilsinglright","Hwithstroke","hwithstroke","k","NG","ng","quotedblbase","quotesinglbase","textogonekcentered","textquotedbl","th","TH"]}
-,
-"t4phonet.sty":{"envs":{},"deps":{},"cmds":["textcrd","textcrh","textdoublegrave","textdoublevbaraccent","textepsilon","textesh","textfjlig","texthtb","texthtc","texthtd","texthtk","texthtp","texthtt","textiota","textltailn","textopeno","textpipe","textrtaild","textrtailt","textschwa","textscriptv","textteshlig","textvbaraccent","textyogh"]}
-,
-"tabfigures.sty":{"envs":{},"deps":["etoolbox.sty","xcolor.sty"],"cmds":{}}
-,
-"table-fct.sty":{"envs":["table-type1","table-type2"],"deps":["xcolor.sty","graphicx.sty","pstricks.sty","pstricks-add.sty","xifthen.sty","environ.sty","xkeyval.sty","xargs.sty","colortbl.sty"],"cmds":["colX","colND","colNDV","colV","colC","colD","colCvx","colCcv","colIflx","collX","Zro","collNd","collNdv","collND","collNDV","collV","collC","collD","collCvx","collCcv","collIflx","collCz","collDz","collCvxz","collCcvz","Bcolor","Pos","Scal","TTpos","Tpos","Xunit","Yunit","colF","collF","linF","linM","linS","linnF","linnM","linnS"]}
-,
-"tablefootnote.sty":{"envs":{},"deps":["ltxcmds.sty","letltxmacro.sty","xifthen.sty","etoolbox.sty"],"cmds":["tablefootnote","swtablemakefntext","tablemakefntext","tfnendorigsidewaystable","tfnorigsidewaystable"]}
-,
-"tableof.sty":{"envs":{},"deps":["atveryend.sty"],"cmds":["toftagstart","toftagstop","toftagthis","tofuntagthis","nexttocwithtags","tableoftaggedcontents","tableof","tablenotof","tofOpenTocFileForWrite"]}
-,
-"tablestyles.sty":{"envs":{},"deps":["array.sty","etoolbox.sty","xcolor.sty","ragged2e.sty","colortbl.sty"],"cmds":["tablestyle","tbegin","tend","tbody","theadstart","tsubheadstart","theadend","tsubheadend","thead","tsubhead","theadrow","tsubheadrow","tlinetop","tlinemid","tlinebottom","setuptablefontsize","tablefontsize","setuptablecolor","tablecolor","tablealtcolored","disablealternatecolors","coloredhline","coloredvline","setuptablestyle","resettablestyle","tableitemize"]}
-,
-"tablists.sty":{"envs":["tabenum","subtabenum"],"deps":["makecell.sty"],"cmds":["tabenumitem","notabenumitem","noitem","skipitem","tabenumsep","tabenumindent","subtabenumitem","subitem","restorelistitem"]}
-,
-"tablor.sty":{"envs":["TV","TSq","TVS","TVZ","TVI","TVIex","TVapp","TVIapp","TVPC","TVP","TSa","TS","TSc","TS*","TV*","TSq*","TVS*","TVZ*","TVI*","TVIex*","TVapp*","TVIapp*","TVPC*","TVP*","TSc*"],"deps":["ifthen.sty","fancyvrb.sty","ifpdf.sty"],"cmds":["initablor","nettoyer","ech","tv","tvbis","coultab","dresse","dressetoile","executGiacmp","couleurtab","cp","cat","echod","echelle","echof","nomtravail","rem","theTVn","theTVnbis","editeur"]}
-,
-"tabls.sty":{"envs":{},"deps":{},"cmds":["tablinesep","tablineskip","arraylinesep","arraylineskip","extrarulesep","hline"]}
-,
-"tablvar.sty":{"envs":["tablvar","tablvar*"],"deps":["array.sty","colortbl.sty","ifthen.sty","multido.sty","pst-node.sty","tikz.sty","tikzlibrarypatterns.sty"],"cmds":["haut","bas","mil","pos","variations","fleche","barre","bb","discont","bblim","tablvarinit","vr","tablvarstretch","vdecal","noeud","vrconnect","ZIc","zbox","ZIh","ZIinit","hachure","intervalwidth","bordercolsep","innercolsep","themaxdiscont","tvbarrewidth","theligne","thenoeud","thenumvr","thenumdiscont","ZIheight","ZIdepth","ZIwidth","theZI","theZIstar","theZIvarlignes","varloop"]}
-,
-"taborder.sty":{"envs":{},"deps":{},"cmds":["setTabOrder","setTabOrderByList","setTabOrderByNumber","setStructTabOrder"]}
-,
-"tabstackengine.sty":{"envs":{},"deps":["stackengine.sty","listofitems.sty","etoolbox.sty"],"cmds":["TABstackText","TABstackMath","TABstackMathstyle","TABstackTextstyle","clearTABstyle","fixTABwidth","setstacktabbedgap","setstackaligngap","setstacktabulargap","TABrule","TABruleshift","TABcline","relaxTABsyntax","tabbedVectorstack","tabbedCenterstack","tabbedLongunderstack","tabbedLongstack","tabbedShortunderstack","tabbedShortstack","alignVectorstack","alignCenterstack","alignLongunderstack","alignLongstack","alignShortunderstack","alignShortstack","Matrixstack","parenMatrixstack","braceMatrixstack","bracketMatrixstack","vertMatrixstack","tabularVectorstack","tabularCenterstack","tabularLongunderstack","tabularLongstack","tabularShortunderstack","tabularShortstack","tabbedstackon","tabbedstackunder","tabbedstackanchor","alignstackon","alignstackunder","alignstackanchor","tabularstackon","tabularstackunder","tabularstackanchor","ensureTABstackMath","setstackTAB","TABunaryLeft","TABbinaryRight","TABunaryRight","TABbinaryLeft","TABbinary","readTABstack","TABwd","TABht","TABdp","TABcellRaw","TABcell","TABstrut","TABcellBox","getTABcelltoks","TABcelltoks","TABcells","maxTABwd","setTABrulecolumn","tabstackengineversionnumber"]}
-,
-"tabto.sty":{"envs":{},"deps":{},"cmds":["tabto","CurrentLineWidth","TabPrevPos","tab","TabPositions","NumTabs","NextTabStop"]}
-,
-"tabu.sty":{"envs":["tabu","longtabu"],"deps":["array.sty","delarray.sty","linegoal.sty"],"cmds":["tabulinestyle","usetabu","tabucline","savetabu","preamble","tabuphantomline","tabulinesep","extrarowdepth","abovetabulinesep","belowtabulinesep","tabustrutrule","extrarowsep","taburulecolor","tabureset","newtabulinestyle","everyrow","taburowcolors","rowfont","tabudecimal","firstline","lastline","iftabuscantokens","tabuscantokenstrue","tabuscantokensfalse","tabucolumn","tabucolX","tabudefaulttarget","tabuDisableCommands","tabuendlongtrial","tabulineoff","tabulineon","tabuthepreamble","thetaburow","tracingtabu"]}
-,
-"tabularborder.sty":{"envs":{},"deps":["booktabs.sty","array.sty"],"cmds":["tbon","tboff","tabcolwidthi","tabcolwidthii","tabcolwidthiii","tabcolwidthiv"]}
-,
-"tabularcalc.sty":{"envs":{},"deps":["fp.sty","xstring.sty","numprint.sty"],"cmds":["htablecalc","tclistsep","vtablecalc","tcnoshowmark","tcatbeginrow","tcsethrule","tcresethrule","tcsetcoltype","tcresetcoltype","defcellcode","edefcellcode","tcresetcellcode","tcprintvalue","tcprintresult","tcprintroundresult","tcprintroundvalue","tcwritetofile","tccol","tclin","tabularcalcversion","tabularcalcdate","tabularcalcfrenchdate","tabularcalcenglishdate"]}
-,
-"tabularew.sty":{"envs":["tabularew"],"deps":["array.sty"],"cmds":["GetExcessWidth","ExcessWidth","spew","CurrentColumn","NumberOfColumns","tabularew","endtabularew"]}
-,
-"tabularht.sty":{"envs":["tabularht","tabularht*","arrayht","tabularhtx"],"deps":["iftex.sty"],"cmds":["interrowspace","interrowfill","interrowstart","interrowstop"]}
-,
-"tabularkv.sty":{"envs":["tabularkv"],"deps":["keyval.sty","tabularht.sty"],"cmds":{}}
-,
-"tabularray.sty":{"envs":["tblr","longtblr","talltblr","tblrNoHyper"],"deps":["ninecolors.sty"],"cmds":["SetTblrOuter","SetTblrInner","SetHline","SetHlines","SetVspace","hline","cline","therownum","thecolnum","therowcount","thecolcount","tablewidth","SetVline","SetVlines","vline","rline","SetCell","SetCells","SetRow","SetRows","SetColumn","SetColumns","hborder","vborder","NewColumnType","NewRowType","NewColumnRowType","NewTblrEnviron","NewTableCommand","NewChildSelector","leftsep","rightsep","abovesep","belowsep","SetTblrTracing","SetTabularrayTracing","DefTblrTemplate","DeclareTblrTemplate","SetTblrTemplate","UseTblrTemplate","ExpTblrTemplate","tblrcontfootname","tblrcontheadname","SetTblrStyle","NewTblrTheme","TblrNote","InsertTblrText","InsertTblrNoteTag","InsertTblrNoteText","InsertTblrRemarkTag","InsertTblrRemarkText","MapTblrNotes","MapTblrRemarks","NewTblrLibrary","UseTblrLibrary","LogTblrTracing","LogTabularrayTracing","GetTblrStyle","UseTblrAlign","UseTblrIndent","UseTblrHang","UseTblrColor","UseTblrFont","InsertTblrMore","NewDashStyle","NewContentCommand","TblrParboxRestore","TblrAlignBoth","TblrAlignLeft","TblrAlignCenter","TblrAlignRight","TblrNewPage","rulewidth","SetTblrDefault","TblrOverlap","pagebreak","nopagebreak","lTblrCaptionTl","lTblrEntryTl","lTblrLabelTl","lTblrMeasuringBool","lTblrRefMoreClist"]}
-,
-"tabularraylibraryamsmath.sty":{"envs":["+array","+matrix","+bmatrix","+Bmatrix","+pmatrix","+vmatrix","+Vmatrix","+cases"],"deps":["amsmath.sty"],"cmds":{}}
-,
-"tabularraylibrarybooktabs.sty":{"envs":["booktabs","longtabs","talltabs"],"deps":["booktabs.sty","etoolbox.sty"],"cmds":["toprule","midrule","cmidrule","bottomrule","cmidrulemore","morecmidrules","specialrule","addrowspace","addlinespace"]}
-,
-"tabularraylibrarydiagbox.sty":{"envs":{},"deps":["diagbox.sty"],"cmds":["diagboxthree"]}
-,
-"tabularraylibraryfunctional.sty":{"envs":{},"deps":["functional.sty"],"cmds":["cellGetText","cellSetText","cellSetStyle","rowSetStyle","columnSetStyle"]}
-,
-"tabularraylibrarynameref.sty":{"envs":{},"deps":{},"cmds":{}}
-,
-"tabularraylibrarysiunitx.sty":{"envs":{},"deps":["siunitx.sty"],"cmds":["TblrNum","TblrUnit"]}
-,
-"tabularraylibraryvarwidth.sty":{"envs":{},"deps":["varwidth.sty"],"cmds":{}}
-,
-"tabularraylibraryzref.sty":{"envs":{},"deps":{},"cmds":{}}
-,
-"tabularx.sty":{"envs":["tabularx"],"deps":["array.sty"],"cmds":["arraybackslash","tabularxcolumn","tracingtabularx"]}
-,
-"tabulary.sty":{"envs":["tabulary"],"deps":{},"cmds":["arraybackslash","tyformat","tymin","tymax"]}
-,
-"tabvar.sty":{"envs":["tabvar"],"deps":["array.sty","colortbl.sty","varwidth.sty","ifthen.sty","graphicx.sty","ifpdf.sty"],"cmds":["niveau","croit","decroit","constante","dbarre","discont","barre","FlechesPS","TVcenter","TVstretch","TVarrowscale","ardown","arhor","arup","eastarrow","eastarrowi","eastarrowii","eastarrowiii","eastarrowiv","enearrow","enearrowi","enearrowii","enearrowiii","enearrowiv","esearrow","esearrowi","esearrowii","esearrowiii","esearrowiv","FlecheC","FlecheD","FlecheH","FlechesMPfalse","FlechesMPtrue","ifFlechesMP","TVarraycolsep","TVarraystretch","TVarrowscolstretch","TVbox","TVcolorLeftSep","TVcolorRightSep","TVextradepth","TVextraheight","TVmaxcolwidth","TVnl","TVtabularnewline"]}
-,
-"tagging.sty":{"envs":["taggedblock","untaggedblock"],"deps":["etoolbox.sty","verbatim.sty"],"cmds":["tagged","untagged","iftagged","usetag","droptag","taggedy","taggedn"]}
-,
-"tagpair.sty":{"envs":["pairingline","taggedline"],"deps":["varwidth.sty"],"cmds":["pairing","bottomline","narrowraggedleft"]}
-,
-"tagpdf.sty":{"envs":{},"deps":["pdfmanagement-testphase.sty"],"cmds":["tagpdfsetup","tagtool","tagmcbegin","tagmcend","tagmcuse","tagmcifinTF","tagpdfparaOn","tagpdfparaOff","tagstructbegin","tagstructend","tagstructuse","ShowTagging","tagpdfsuppressmarks"]}
-,
-"talk.cls":{"envs":["slide","notes","multislide"],"deps":["multido.sty","amsmath.sty","graphicx.sty","pgf.sty","hyperref.sty"],"cmds":["title","author","slidesmag","slidestyle","fromslide","toslide","onlyslide","tableofcontents","slidewidth","slideheight","theslide","thesubslide","theslidelabel","slidesadjust"]}
-,
-"tameflts.sty":{"envs":{},"deps":{},"cmds":["releasefloats","tamefloats","filedate","fileversion"]}
-,
-"tarticle.cls":{"envs":{},"deps":["platex.sty","plext.sty"],"cmds":["Cjascale","heisei","if","postpartname","prepartname","mc","gt"]}
-,
-"tascmac.sty":{"envs":["boxnote","screen","itembox","shadebox"],"deps":{},"cmds":["mask","maskbox","Maskbox","keytop","yen","return","Return","ascii","Ascii","ASCII"]}
-,
-"tasks.sty":{"envs":["tasks"],"deps":["expl3.sty","xtemplate.sty"],"cmds":["task","startnewitemline","settasks","NewTasksEnvironment","RenewTasksEnvironment","tasksifmeasuringTF","tasksifmeasuringT","tasksifmeasuringF","tasklabel","thetask","theHtask"]}
-,
-"tbook.cls":{"envs":{},"deps":["platex.sty","plext.sty"],"cmds":["backmatter","bibname","chapter","chaptermark","Cjascale","frontmatter","heisei","if","mainmatter","postchaptername","postpartname","prechaptername","prepartname","mc","gt"]}
-,
-"tcolorbox.sty":{"envs":["tcolorbox","tcbverbatimwrite","tcbwritetemp"],"deps":["environ.sty","pgf.sty","tcolorboxlibraryskins.sty","tcolorboxlibraryvignette.sty","tcolorboxlibraryraster.sty","tcolorboxlibrarylistings.sty","tcolorboxlibrarylistingsutf8.sty","tcolorboxlibraryminted.sty","tcolorboxlibrarytheorems.sty","tcolorboxlibrarybreakable.sty","tcolorboxlibrarymagazine.sty","tcolorboxlibraryposter.sty","tcolorboxlibraryfitting.sty","tcolorboxlibraryhooks.sty","tcolorboxlibraryexternal.sty","tcolorboxlibrarydocumentation.sty","tcolorboxlibrarymany.sty","tcolorboxlibrarymost.sty","tcolorboxlibraryall.sty"],"cmds":["tcbuselibrary","tcblower","tcbset","tcbsetforeverylayer","tcbox","newtcolorbox","renewtcolorbox","DeclareTColorBox","NewTColorBox","RenewTColorBox","ProvideTColorBox","DeclareTotalTColorBox","NewTotalTColorBox","RenewTotalTColorBox","ProvideTotalTColorBox","newtcbox","renewtcbox","DeclareTCBox","NewTCBox","RenewTCBox","ProvideTCBox","DeclareTotalTCBox","NewTotalTCBox","RenewTotalTCBox","ProvideTotalTCBox","tcboxverb","tcolorboxenvironment","tcbtitletext","tcbtitle","tcbsubtitle","tcbheightfromgroup","tcbsetmanagedlayers","tcbifoddpage","tcbifoddpageoroneside","thetcolorboxnumber","thetcolorboxpage","thetcbcounter","tcbcounter","tcblistof","tcbsidebyside","tcbverbatimwrite","endtcbverbatimwrite","tcbusetemp","tcbstartrecording","tcbrecord","tcbstoprecording","tcbinputrecords","tcbsubskin","tcbheightspace","tcbtextwidth","tcbtextheight","tcbsegmentstate","tcbpatcharcangular","tcbpatcharcround","tcbdimto","tcbglueto","tcbpkgprefix"]}
-,
-"tcolorboxlibraryall.sty":{"envs":{},"deps":["tcolorboxlibrarymany.sty","tcolorboxlibraryminted.sty","tcolorboxlibrarylistingsutf8.sty","tcolorboxlibraryexternal.sty","tcolorboxlibrarymagazine.sty","tcolorboxlibraryvignette.sty","tcolorboxlibraryposter.sty"],"cmds":{}}
-,
-"tcolorboxlibrarybreakable.sty":{"envs":{},"deps":["pdfcol.sty"],"cmds":["tcbbreak"]}
-,
-"tcolorboxlibrarydocumentation.sty":{"envs":["docCommand","docCommand*","docCommands","docEnvironment","docEnvironment*","docEnvironments","docKey","docKey*","docKeys","docPathOperation","docPathOperation*","docPathOperations","dispExample","dispExample*","dispListing","dispListing*","absquote"],"deps":["tcolorboxlibrarylistings.sty","tcolorboxlibraryskins.sty","tcolorboxlibraryexternal.sty","tcolorboxlibraryraster.sty","makeidx.sty","refcount.sty","hyperref.sty","marginnote.sty"],"cmds":["docValue","docAuxCommand","docAuxEnvironment","docAuxKey","docCounter","docLength","docColor","cs","meta","marg","oarg","sarg","brackets","tcbmakedocSubKey","tcbmakedocSubKeys","refCom","refEnv","refKey","refPathOperation","refAux","refAuxcs","colDef","colOpt","colFade","tcbdocmarginnote","tcbdocnew","tcbdocupdated"]}
-,
-"tcolorboxlibraryexternal.sty":{"envs":["tcbexternal","extcolorbox","extikzpicture"],"deps":["incgraph.sty","pdftexcmds.sty","shellesc.sty"],"cmds":["tcbEXTERNALIZE","tcbifexternal","newtcbexternalizeenvironment","renewtcbexternalizeenvironment","newtcbexternalizetcolorbox","renewtcbexternalizetcolorbox","tcbprocmdfivesum","tcbiffileprocess"]}
-,
-"tcolorboxlibraryfitting.sty":{"envs":{},"deps":{},"cmds":["tcboxfit","newtcboxfit","renewtcboxfit","DeclareTCBoxFit","NewTCBoxFit","RenewTCBoxFit","ProvideTCBoxFit","DeclareTotalTCBoxFit","NewTotalTCBoxFit","RenewTotalTCBoxFit","ProvideTotalTCBoxFit","tcbfitdim","tcbfontsize","tcbfitsteps"]}
-,
-"tcolorboxlibraryhooks.sty":{"envs":{},"deps":{},"cmds":{}}
-,
-"tcolorboxlibrarylistings.sty":{"envs":["tcblisting","tcboutputlisting"],"deps":["listings.sty","pdftexcmds.sty","shellesc.sty"],"cmds":["tcbinputlisting","tcbuselistingtext","tcbuselistinglisting","tcbusetemplisting","newtcblisting","renewtcblisting","DeclareTCBListing","NewTCBListing","RenewTCBListing","ProvideTCBListing","newtcbinputlisting","renewtcbinputlisting","DeclareTCBInputListing","NewTCBInputListing","RenewTCBInputListing","ProvideTCBInputListing","thetcblisting","tcbprocmdfivesum","tcbiffileprocess"]}
-,
-"tcolorboxlibrarylistingsutf8.sty":{"envs":{},"deps":["tcolorboxlibrarylistings.sty","iftex.sty","listingsutf8.sty"],"cmds":{}}
-,
-"tcolorboxlibrarymagazine.sty":{"envs":["boxarraystore"],"deps":["tcolorboxlibrarybreakable.sty"],"cmds":["newboxarray","boxarrayreset","boxarrayclear","boxarraygetsize","useboxarray","usetcboxarray","consumeboxarray","consumetcboxarray","boxarraygetbox","ifboxarrayempty","boxarraygetwidth","boxarraygetheight","boxarraygetdepth","boxarraygettotalheight"]}
-,
-"tcolorboxlibrarymany.sty":{"envs":{},"deps":["tcolorboxlibraryraster.sty","tcolorboxlibraryskins.sty","tcolorboxlibrarybreakable.sty","tcolorboxlibraryhooks.sty","tcolorboxlibrarytheorems.sty"],"cmds":{}}
-,
-"tcolorboxlibraryminted.sty":{"envs":["tcblisting","tcboutputlisting"],"deps":["minted.sty","pdftexcmds.sty","shellesc.sty"],"cmds":["tcbinputlisting","tcbuselistingtext","tcbuselistinglisting","tcbusetemplisting","newtcblisting","renewtcblisting","DeclareTCBListing","NewTCBListing","RenewTCBListing","ProvideTCBListing","newtcbinputlisting","renewtcbinputlisting","DeclareTCBInputListing","NewTCBInputListing","RenewTCBInputListing","ProvideTCBInputListing","thetcblisting","tcbprocmdfivesum","tcbiffileprocess"]}
-,
-"tcolorboxlibrarymost.sty":{"envs":{},"deps":["tcolorboxlibrarymany.sty","tcolorboxlibrarylistingsutf8.sty","tcolorboxlibraryexternal.sty","tcolorboxlibrarymagazine.sty","tcolorboxlibraryvignette.sty"],"cmds":{}}
-,
-"tcolorboxlibraryposter.sty":{"envs":["tcbposter","posterboxenv"],"deps":["tcolorboxlibrarybreakable.sty","tcolorboxlibrarymagazine.sty","tcolorboxlibraryskins.sty","tcolorboxlibraryfitting.sty"],"cmds":["tcbposterwidth","tcbposterheight","tcbpostercolspacing","tcbposterrowspacing","tcbpostercolumns","tcbposterrows","tcbpostercolwidth","tcbposterrowheight","tcbposterset","posterbox"]}
-,
-"tcolorboxlibraryraster.sty":{"envs":["tcbraster","tcbitemize","tcboxedraster","tcboxeditemize"],"deps":{},"cmds":["thetcbrasternum","thetcbrastercolumn","thetcbrasterrow","tcbitem"]}
-,
-"tcolorboxlibraryskins.sty":{"envs":["tcbclipframe","tcbinvclipframe","tcbclipinterior","tcbcliptitle"],"deps":["tikz.sty","tikzfill.image.sty"],"cmds":["tcboxedtitlewidth","tcboxedtitleheight","tcbstartdraftmode","tcbstopdraftmode","tcbinterruptdraftmode","tcbcontinuedraftmode","tcbline","tcboverlaplower","tcbincludegraphics","imagename","tcbincludepdf","imagepage","pdfpages","tcbsettowidthofnode","tcbsetmacrotowidthofnode","tcbsettoheightofnode","tcbsetmacrotoheightofnode","tcbhypernode"]}
-,
-"tcolorboxlibrarytheorems.sty":{"envs":{},"deps":["amsmath.sty"],"cmds":["NewTcbTheorem","newtcbtheorem","RenewTcbTheorem","renewtcbtheorem","ProvideTcbTheorem","DeclareTcbTheorem","tcboxmath","tcbhighmath"]}
-,
-"tcolorboxlibraryvignette.sty":{"envs":{},"deps":["tcolorboxlibraryskins.sty","tikzlibraryfadings.sty"],"cmds":["tcbvignette"]}
-,
-"tdclock.sty":{"envs":{},"deps":["hyperref.sty","xcolor.sty","xkeyval.sty"],"cmds":["initclock","tdclock","tdtime","tddate","tdday","tdmonth","tdyear","tdhours","tdminutes","tdseconds","crono","cronohours","cronominutes","cronoseconds","resetcrono","toggleclock","factorclockfont","hhmmss","hhmm","timeseparator","ddmmyyyy","mmddyyyy","dateseparator","pdfslash","pdfcolon","colorninety","colorninetyfive","fillcolorninety","fillcolorninetyfive","auxiliar","resetclock","tdwarningbox","mm","sizebox","clockfield","initfields","startclock"]}
-,
-"tdsfrmath.sty":{"envs":{},"deps":["ifthen.sty","xstring.sty","amssymb.sty","xargs.sty","mathrsfs.sty","stmaryrd.sty"],"cmds":["nuplet","anuplet","rnuplet","parent","accol","crochet","varabs","norme","EncloreExtensible","EnsembleDeNombre","grastab","C","N","Q","R","Z","K","definirvecteur","redefinirvecteur","vecti","vectj","vectk","vectu","vectv","vecteur","V","base","repere","rog","ron","rond","repcom","roncom","rondcom","Repere","Rog","Ron","Rond","E","eu","I","D","FixeAvanceDx","FixeReculIntegrande","intgen","integrer","integrale","intabfx","plusinf","moinsinf","interff","interoo","interfo","interof","intferab","manus","ensemble","vide","dans","donne","ppq","pgq","cnp","mdfrac","mfrac","suite","suitar","suitgeo","prodscal","Ker","Img","tendversen","devlim","drv","ddrv","derpart","interent","interzn","parties","argsh","argch","argth","TdSMDerPartSepar","TdSMnuplet","TdSMReculParenthese","TdSMsepdefens","filedate","fileversion"]}
-,
-"ted.sty":{"envs":{},"deps":{},"cmds":["Substitute","ShowTokens","ShowTokensLogonly","ShowTokensOnline"]}
-,
-"telprint.sty":{"envs":{},"deps":{},"cmds":["telprint","telspace","telhyphen","telslash","telleftparen","telrightparen","telplus","teltilde","telnumber","TELAtEnd","TELdosplit","TELsplitEND","TELfirst","TELfuture","TELhyphen","TELleftparen","TELnumber","TELnumberEND","TELplus","TELreset","TELrightparen","TELslash","TELsp","TELspace","TELsplit","TELswitch","TELtemp","TELtilde","TELx","UnDeFiNeD"]}
-,
-"templatetools.sty":{"envs":{},"deps":["array.sty","etoolbox.sty","ifdraft.sty","ifpdf.sty","ltxcmds.sty","scrlfile.sty"],"cmds":["IfDefined","IfUndefined","IfElseDefined","IfElseUndefined","IfMultDefined","IfDraft","IfNotDraft","IfNotDraftElse","IfPackageLoaded","IfPackageNotLoaded","IfPackagesLoaded","IfPackagesNotLoaded","IfElsePackageLoaded","ExecuteAfterPackage","ExecuteBeforePackage","IfTikzLibraryLoaded","IfColumntypeDefined","IfColumntypesDefined","IfColorDefined","IfColorsDefined","IfMathVersionDefined","IfGlossariesStyleDefined","SetTemplateDefinition","UseDefinition","CheckIfColumntypeDefined","isColumntypeDefined"]}
-,
-"tempora.sty":{"envs":{},"deps":["textcomp.sty","fontaxes.sty","fontenc.sty","xkeyval.sty"],"cmds":["sufigures","textsu","textsuperior","LGCscale","DH","NG","dj","ng","k","guillemotleft","guillemotright","guilsinglleft","guilsinglright","quotedblbase","quotesinglbase","textquotedbl","DJ","th","TH","dh","Hwithstroke","hwithstroke","textogonekcentered","guillemetleft","guillemetright"]}
-,
-"tengwarscript.sty":{"envs":["tengwar"],"deps":["fp-basic.sty","fp-snap.sty"],"cmds":["tengwarparmaite","tengwarunicodeparmaite","tengwarelfica","tengwargothika","tengwarformal","tengwarannatar","tengwarannatarbold","tengwarannataritalic","tengwarannatarbolditalic","tengwarquenya","tengwarquenyacapI","tengwarquenyacapII","tengwarsindarin","tengwarsindarincapI","tengwarsindarincapII","tengwarnoldor","tengwarnoldorcapI","tengwarnoldorcapII","tengwarteleri","Taara","Taha","Talda","Tampa","Tanca","Tando","Tanga","Tanna","Tanto","Tarda","Tardaalt","Tbox","Tcalma","Tcentereddot","Tcenteredlongtilde","Tcenteredtilde","Tcolon","Tcurlyhook","Teight","Televen","Tempty","tengmag","tengwa","Tesse","Tessealt","Tessenuquerna","Tessenuquernaalt","Texclamation","Textendedando","Textendedanga","Textendedcalma","Textendedparma","Textendedquesse","Textendedtinco","Textendedumbar","Textendedungwe","Tfive","Tformen","Tfour","Thalla","Thwesta","Thwestasindarinwa","Thyarmen","Tkern","Tlambe","Tlambealt","Tlefthook","Tmalta","Tnine","Tnoldo","Tnuumen","Tnwalme","Tone","Toore","Tosse","Tparenthesis","Tparma","Tquesse","Tquestion","Trighthook","Tromancomma","Tromandblquoteleft","Tromandblquoteright","Tromanexclamation","Tromanparenleft","Tromanparenright","Tromanperiod","Tromanquestion","Tromanquoteleft","Tromanquoteright","Tromansemicolon","Troomen","Troomenalt","Ts","Tseven","Tsilme","Tsilmealt","Tsilmenuquerna","Tsilmenuquernaalt","Tsix","TTacute","TTbreve","TTcaron","TTdecimal","TTdot","TTdotbelow","TTdoubleacute","TTdoubleacutebelow","TTdoubleleftcurl","TTdoubler","TTdoublerightcurl","TTduodecimal","Ttelco","Tten","Tthree","Tthreeverticaldots","Tthuule","Ttinco","TTleastsignificant","TTleftcurl","TTleftcurlbelow","TTlefttilde","TTlefttwodotsbelow","TTnasalizer","TTrightcurl","TTrightcurlbelow","TTthreedots","TTthreedotsbelow","TTtilde","TTtwodots","TTtwodotsbelow","TTverticalbarbelow","Ttwo","Tumbar","Tungwe","Tunque","Tuphook","Tuure","Tvala","Tvilya","Tyanta","Tzero"]}
-,
-"tensind.sty":{"envs":["tensor"],"deps":{},"cmds":["tensordelimiter","tensorformat","indexdot","whenindex"]}
-,
-"tensor.sty":{"envs":{},"deps":{},"cmds":["indices","tensor","indexmarker","nuclide","nuclideFont"]}
-,
-"termcal.sty":{"envs":["calendar"],"deps":["longtable.sty","ifthen.sty"],"cmds":["skipday","calday","classday","noclassday","weeklytext","options","caltext","caltexton","caltextnext","calboxdepth","calwidth","calprintdate","calprintclass","addtotoks","advancedate","advancemonth","classdayfalse","classdaytrue","curdate","ifclassday","ifleap","ifnewmonth","leapfalse","leaptrue","monthlength","monthname","newmonthfalse","newmonthtrue","ordinal","ordinaldate","setdate","setleap","theclassnum","thedate","themonth","thetextdaycount","theyear","RCSID","docdate","fileversion","filedate"]}
-,
-"termes-otf.sty":{"envs":{},"deps":["iftex.sty","xkeyval.sty","textcomp.sty","unicode-math.sty"],"cmds":["termesOsF","termesTLF","Lctosc","LCtoSC","Lctosmcp","LCtoSMCP","Lliga","LLIGA","Lhlig","LHLIG","Ldlig","LDLIG","Lcpsp","LCPSP","Lsalt","LSALT","Lss","LSS","Lsup","Lsinf","Land","Lcase","LCASE","Lfrac","LFRAC","termes","sufigures","textsup","textinit","mbfscra","mbfscrb","mbfscrc","mbfscrd","mbfscre","mbfscrf","mbfscrg","mbfscrh","mbfscri","mbfscrj","mbfscrk","mbfscrl","mbfscrm","mbfscrn","mbfscro","mbfscrp","mbfscrq","mbfscrr","mbfscrs","mbfscrt","mbfscru","mbfscrv","mbfscrw","mbfscrx","mbfscry","mbfscrz","mscra","mscrb","mscrc","mscrd","mscre","mscrf","mscrg","mscrh","mscri","mscrj","mscrk","mscrl","mscrm","mscrn","mscro","mscrp","mscrq","mscrr","mscrs","mscrt","mscru","mscrv","mscrw","mscrx","mscry","mscrz"]}
-,
-"termlist.sty":{"envs":["termlist","termlist*","term","term*"],"deps":{},"cmds":["termlabel","termlabelfont","termindent"]}
-,
-"termsim.sty":{"envs":["terminal","terminal*"],"deps":["expl3.sty","xtemplate.sty","l3keys2e.sty","xparse.sty","fontawesome5.sty","varwidth.sty","amssymb.sty","xcolor.sty","etoolbox.sty","minted.sty","tcolorbox.sty","tcolorboxlibraryskins.sty","tcolorboxlibrarybreakable.sty","tikzlibraryshapes.geometric.sty"],"cmds":["termfile","termset","UbuntuMin","UbuntuClose","UbuntuMax","WindowsLogo"]}
-,
-"testhyphens.sty":{"envs":["checkhyphens"],"deps":{},"cmds":["testhyphens","breakafterword","getlastline","nomorelines"]}
-,
-"testidx-glossaries.sty":{"envs":{},"deps":["testidx.sty","glossaries.sty","glossaries-mcols.sty","glossaries-extra.sty","glossaries-extra-bib2gls.sty"],"cmds":["GlsSetXdyLanguage","GlsSetXdyCodePage","GlsAddXdyCounters","GlsAddXdyAttribute","GlsAddXdyLocation","GlsSetXdyLocationClassOrder","GlsSetXdyMinRangeLength","GlsSetXdyFirstLetterAfterDigits","GlsSetXdyNumberGroupOrder","GlsAddLetterGroup","GlsAddSortRule","GlsAddXdyAlphabet","GlsAddXdyStyle","GlsSetXdyStyles","tstidxloadsamples","tstidxmakegloss","tstidxprintglossaries","tstidxprintglossary","seealsoname","tstidx","tstidxasciibibfiles","tstidxbasebibfiles","tstidxbibmakegloss","tstidxdefaultmakegloss","tstidxglyphfile","tstidxloadglsresource","tstidxnewappopt","tstidxnewapp","tstidxnewartbook","tstidxnewartfilm","tstidxnewartphrase","tstidxnewartplace","tstidxnewbook","tstidxnewcs","tstidxnewdigraph","tstidxnewencapcsn","tstidxnewentry","tstidxnewenv","tstidxnewfilm","tstidxnewindexmarker","tstidxnewmathsym","tstidxnewmath","tstidxnewnumber","tstidxnewperson","tstidxnewphraseseealso","tstidxnewphrasesee","tstidxnewphrase","tstidxnewplace","tstidxnewstyopt","tstidxnewstyseealso","tstidxnewsty","tstidxnewsubphrase","tstidxnewsubwordseealso","tstidxnewsubwordsee","tstidxnewsubword","tstidxnewsym","tstidxnewtrigraph","tstidxnewutfdigraph","tstidxnewutfentrytext","tstidxnewutfentry","tstidxnewutfperson","tstidxnewutfphrase","tstidxnewutfplace","tstidxnewutfwordseealso","tstidxnewutfwordsee","tstidxnewutfword","tstidxnewwordseealso","tstidxnewwordsee","tstidxnewword","tstidxnoidxmakegloss","tstidxtexfiles","tstidxtogls","tstidxtoidx","tstidxutfbibfiles"]}
-,
-"testidx.sty":{"envs":{},"deps":["color.sty","ifxetex.sty","ifluatex.sty"],"cmds":["testidxGermanOn","testidxGermanOff","testidxStripAccents","testidxNoStripAccents","testidxSanitizeOn","testidxSanitizeOff","testidxshowmarkstrue","testidxshowmarksfalse","iftestidxverbose","testidxverbosetrue","testidxverbosefalse","iftestidxdiglyphs","testidxdiglyphstrue","testidxdiglyphsfalse","iftestidxprefix","testidxprefixtrue","testidxprefixfalse","testidx","tstidxmaxblocks","tstidxprefixblock","tstindex","tstidxmarker","tstidxopenmarker","tstidxclosemarker","tstidxsubmarker","tstidxopensubmarker","tstidxclosesubmarker","tstidxsubsubmarker","tstidxopensubsubmarker","tstidxclosesubsubmarker","tstidxseemarker","tstidxsubseemarker","tstidxsubseesep","tstidxencapi","tstidxencapii","tstidxencapiii","tstidxSetSeeEncap","tstidxSetSeeAlsoEncap","tstidxtext","tstidxquote","tstidxactual","tstidxlevel","tstidxencap","tstidxopenrange","tstidxcloserange","testidxverbosefmt","tstidxapp","tstidxappfmt","tstidxappopt","tstidxappoptfmt","tstidxartbook","tstidxartfilm","tstidxartphrase","tstidxartplace","tstidxbook","tstidxbookfmt","tstidxcloseapp","tstidxcloseappopt","tstidxcloseartbook","tstidxcloseartphrase","tstidxclosebook","tstidxclosecs","tstidxclosecsn","tstidxcloseenv","tstidxclosefilm","tstidxcloseperson","tstidxclosephrase","tstidxclosesty","tstidxclosestyopt","tstidxclosesym","tstidxcloseutfphrase","tstidxcloseutf","tstidxcloseword","tstidxcs","tstidxcsfmt","tstidxdash","tstidxdefblocksep","tstidxencapcsn","tstidxencaptext","tstidxensuretext","tstidxenv","tstidxenvfmt","tstidxfilm","tstidxfilmfmt","tstidxfmtclosepost","tstidxfmtclosepre","tstidxfmtopenpost","tstidxfmtopenpre","tstidxfmtpost","tstidxfmtpre","tstidxfootnote","tstidxgphword","tstidxindexmarkerprefix","tstidxindexmarker","tstidxmath","tstidxmathsym","tstidxmathsymprefix","tstidxnewblock","tstidxnumber","tstidxopenapp","tstidxopenappopt","tstidxopenartbook","tstidxopenartphrase","tstidxopenbook","tstidxopencs","tstidxopencsn","tstidxopenenv","tstidxopenfilm","tstidxopenperson","tstidxopenphrase","tstidxopensty","tstidxopenstyopt","tstidxopensym","tstidxopenutfphrase","tstidxopenutf","tstidxopenword","tstidxperson","tstidxphrasepl","tstidxphrase","tstidxplace","tstidxprocessasciisort","tstidxprocessasciisortnostrip","tstidxprocessasciisortstrip","tstidxprocessascii","tstidxprocessutf","tstidxprocessutfnosanitize","tstidxprocessutfsanitize","tstidxqt","tstidxseeref","tstidxsortumlaut","tstidxsortumlautstrip","tstidxsty","tstidxstyfmt","tstidxstyopt","tstidxstyoptfmt","tstidxsubseeref","tstidxsubutf","tstidxsubword","tstidxsym","tstidxumlaut","tstidxutf","tstidxutfcloseperson","tstidxutfclosepost","tstidxutfclosepre","tstidxutfopenperson","tstidxutfopenpost","tstidxutfopenpre","tstidxutfperson","tstidxutfphrase","tstidxutfplace","tstidxutfpost","tstidxutfpre","tstidxutfsubclosepost","tstidxutfsubclosepre","tstidxutfsubopenpost","tstidxutfsubopenpre","tstidxutfsubpost","tstidxutfsubpre","tstidxutfword","tstidxwordpl","tstidxword","tstindexclosepost","tstindexclosepre","tstindexopenpost","tstindexopenpre","tstindexpost","tstindexpre","tstindexsee","tstindexstysee","tstindexsubsee","tstindexutfsee","tstsubindexclosepost","tstsubindexclosepre","tstsubindexopenpost","tstsubindexopenpre","tstsubindexpost","tstsubindexpre","tstsubsubindexclosepost","tstsubsubindexclosepre","tstsubsubindexopenpost","tstsubsubindexopenpre","tstsubsubindexpost","tstsubsubindexpre"]}
-,
-"tetragonos.sty":{"envs":{},"deps":{},"cmds":["getTG","saveTG","loadTG"]}
-,
-"teubner.sty":{"envs":["bracedmetrics"],"deps":["iftex.sty","graphicx.sty","ifthen.sty","etoolbox.sty","exscale.sty","textalpha.sty","trace.sty"],"cmds":["A","Ab","acapo","accacuto","accbreve","acccircon","accdieresi","accgrave","accmacron","Ad","aeolchorsor","aeolicbii","aeolicbiii","aeolicbiv","Am","anceps","ancepsdbrevis","antilabe","ap","apex","apici","Ar","Arb","Arm","As","Asb","Asm","AtticNumeral","B","banceps","barbbrevis","barbrevis","bbrevis","bcutbar","bd","boldLipsianfalse","boldLipsiantrue","BreakVersofalse","BreakVersotrue","brevis","C","c","cap","catal","Cd","chor","Cm","coppa","Coppa","corona","coronainv","Coronis","coronis","Cr","Crm","crux","Cs","Csm","cut","D","d","Dashes","DASHES","dBar","dcutbar","denarius","Digamma","Dots","DOTS","downfill","dparagr","dracma","dstar","dz","ElemInd","ENcdq","ENdqtext","ENodq","enopl","etos","euro","Euro","f","F","fHigh","FinisCarmen","FinCar","fLow","frapar","G","Gb","gcutbar","Gd","GEcdq","GEcq","GEdqtext","GEodq","GEoq","GEqtext","GlyphNamesfalse","GlyphNamestrue","Gm","Gr","Grb","GreekName","greeknumeral","Greeknumeral","Grm","grtoday","Gs","Gsb","Gsm","GTROF","GTRON","gusv","gw","h","hemiobelion","hexam","Hfill","hiatus","Hiatus","hv","iam","ifboldLipsian","ifBreakVersi","ifCMLM","ifFamily","ifGlyphNames","ifLipsian","ifonesizetypeone","ifor","ifPDF","ifSubVerso","Int","iod","ipercatal","iS","itclosedquotes","itcq","itopenquotes","itoq","kclick","koppa","Koppa","ladd","Ladd","lbrk","ldel","lesp","Lipsiakostext","Lipsianfalse","Lipsiantrue","lishape","LitNil","litnil","lladd","LLadd","LLaddKern","lmqi","lmqs","longa","lpar","M","mcap","md","metricsfont","metricstack","mezzeq","mO","mqi","mqs","MutPers","mutpers","nasal","nbs","nesso","newmetrics","nexus","NoLipsiakostext","NoSubVerso","onesizetypeonefalse","onesizetypeonetrue","Open","orfalse","ortrue","OSN","palat","paragr","pentam","permill","positio","posthindspace","posthinspace","previousencoding","previouslanguage","q","qmark","qu","qusv","qw","r","Rb","rbrk","responsio","ring","Rm","rmqi","rmqs","rpar","rsshape","rszeugma","s","sampi","Sampi","Sb","schwa","semiv","shva","shwa","sinafia","siner","siniz","skewstack","slzeugm","slzeugma","Sm","smallvert","splus","star","stater","stigma","Stigma","stimes","substitutefontfamily","SubVerso","SubVersofalse","SubVersotrue","sva","svert","tBar","tenaspir","tetartemorion","textDidot","textdigamma","textli","textLipsias","textmtr","textoverline","textrs","textui","thesubverso","theverso","thorn","Thorn","TROF","TRON","tstar","U","ubarbbrevis","ubarbrevis","ubarsbrevis","ubrevislonga","Ud","uishape","UO","upfill","ut","Utie","varkoppa","varstigma","Vdeka","verseskip","verso","versoskip","Vetto","Vkilo","Vmiria","X","yod","zeugma","aa","aai","ac","aci","ag","agi","ai","ar","ara","arai","arc","arci","arg","argi","ari","as","asa","asai","asc","asci","asg","asgi","asi","ea","eg","er","era","erg","es","esa","esg","ha","hai","hc","hci","hg","hgi","hi","hr","hra","hrai","hrc","hrci","hrg","hrgi","hri","hs","hsa","hsai","hsc","hsci","hsg","hsgi","hsi","ia","ic","id","Id","ida","idc","idg","ig","ir","ira","irc","irg","is","isa","isc","isg","oa","oG","oR","ora","org","os","osa","osg","rr","rs","ua","uc","ud","uda","udc","udg","ug","ur","ura","urc","urg","us","usa","usc","usg","wa","wai","wc","wci","wg","wgi","wi","wr","wra","wrai","wrc","wrci","wrg","wrgi","wri","ws","wsa","wsai","wsc","wsci","wsg","wsgi","wsi"]}
-,
-"tex-locale.sty":{"envs":{},"deps":["etoolbox.sty","xfor.sty","tracklang.sty","ifxetex.sty","ifluatex.sty","xkeyval.sty","texosquery.sty","fontenc.sty","fontawesome.sty","babel.sty","polyglossia.sty","CJK.sty","inputenc.sty","ucs.sty","datetime2.sty"],"cmds":["DH","NG","dj","ng","k","guillemotleft","guillemotright","guilsinglleft","guilsinglright","quotedblbase","quotesinglbase","textquotedbl","DJ","th","TH","dh","Hwithstroke","hwithstroke","textogonekcentered","guillemetleft","guillemetright","LocaleQueryFile","LocaleStyQueryFile","localeprequery","localepostquery","LocaleMain","LocaleOther","selectlocale","LocaleOSname","LocaleOSversion","LocaleOSarch","LocaleOScodeset","LocaleQueryCodesetParam","LocaleOStag","LocaleNowStamp","LocaleMainFile","LocaleFileMod","LocaleSetAttribute","LocaleGetAttribute","LocaleSetDialectAttribute","LocaleGetDialectAttribute","LocaleSetRegionAttribute","LocaleGetRegionAttribute","LocaleSetCurrencyAttribute","LocaleGetCurrencyAttribute","localeshowattribute","localeshowdialectattribute","localeshowregionattribute","localeshowcurrencyattribute","LocaleAddToAttributeList","LocaleXpAddToAttributeList","LocaleIfInAttributeList","LocaleIfXpInAttributeList","LocaleForEachInAttributeList","LocaleAddToDialectAttributeList","LocaleXpAddToDialectAttributeList","LocaleIfInDialectAttributeList","LocaleIfXpInDialectAttributeList","LocaleForEachInDialectAttributeList","LocaleAddToRegionAttributeList","LocaleXpAddToRegionAttributeList","LocaleIfInRegionAttributeList","LocaleIfXpInRegionAttributeList","LocaleForEachInRegionAttributeList","LocaleAddToCurrencyAttributeList","LocaleXpAddToCurrencyAttributeList","LocaleIfInCurrencyAttributeList","LocaleIfXpInCurrencyAttributeList","LocaleForEachInCurrencyAttributeList","localenumfmt","localenumfmtneg","localenumfmtzero","localenumfmtpos","localeint","localedec","localecur","localeper","LocaleIfDateTimePatternsSupported","LocaleDateTimeInfo","LocaleApplyDateTimePattern","LocaleMainDialect","LocaleMainRegion","LocaleLanguageTag","LocaleLanguageName","LocaleLanguageNativeName","LocaleRegionName","LocaleRegionNativeName","LocaleVariantName","LocaleVariantNativeName","LocaleIfHasLanguageName","LocaleIfHasRegionName","LocaleIfHasVariantName","localedatetimefmt","LocaleFullDate","LocaleLongDate","LocaleMediumDate","LocaleShortDate","dtmMondayIndex","dtmTuesdayIndex","dtmWednesdayIndex","dtmThursdayIndex","dtmFridayIndex","dtmSaturdayIndex","dtmSundayIndex","LocaleDayName","LocaleShortDayName","LocaleStandaloneDayName","LocaleStandaloneShortDayName","LocaleFirstDayIndex","LocaleDayIndexFromZeroMonToOneSun","LocaleDayIndexFromZeroMonToOneMon","LocaleDayIndexFromOneSunToZeroMon","LocaleDayIndexFromOneMonToZeroMon","LocaleDayIndexFromRegion","LocaleDayIndexToRegion","LocaleMonthName","LocaleShortMonthName","LocaleStandaloneMonthName","LocaleStandaloneShortMonthName","LocaleFullTime","LocaleLongTime","LocaleMediumTime","LocaleShortTime","LocaleFullDateTime","LocaleLongDateTime","LocaleMediumDateTime","LocaleShortDateTime","LocaleNumericGroupSep","LocaleIfNumericUsesGroup","LocaleNumericDecimalSep","LocaleNumericMonetarySep","LocaleNumericExponent","LocaleNumericPercent","LocaleNumericPermill","LocaleCurrencyLabel","LocaleCurrencyRegionalLabel","LocaleCurrencySymbol","LocaleCurrencyTeXSymbol","CurrentLocaleLanguageName","CurrentLocaleLanguageNativeName","CurrentLocaleRegionName","CurrentLocaleRegionNativeName","CurrentLocaleVariantName","CurrentLocaleVariantNativeName","CurrentLocaleFirstDayIndex","CurrentLocaleDayIndexFromRegion","CurrentLocaleDayName","CurrentLocaleShortDayName","CurrentLocaleStandaloneDayName","CurrentLocaleStandaloneShortDayName","CurrentLocaleMonthName","CurrentLocaleShortMonthName","CurrentLocaleStandaloneMonthName","CurrentLocaleStandaloneShortMonthName","CurrentLocaleDate","localedatechoice","CurrentLocaleTime","localetimechoice","CurrentLocaleDateTime","CurrentLocaleFullDate","CurrentLocaleLongDate","CurrentLocaleMediumDate","CurrentLocaleShortDate","CurrentLocaleFullTime","CurrentLocaleLongTime","CurrentLocaleMediumTime","CurrentLocaleShortTime","CurrentLocaleFullDateTime","CurrentLocaleLongDateTime","CurrentLocaleMediumDateTime","CurrentLocaleShortDateTime","CurrentLocaleCurrency","localecurrchoice","CurrentLocaleNumericGroupSep","CurrentLocaleIfNumericUsesGroup","CurrentLocaleDecimalSep","CurrentLocaleMonetarySep","CurrentLocaleExponent","CurrentLocalePercent","CurrentLocalePermill","CurrentLocaleIntegerPattern","CurrentLocaleDecimalPattern","CurrentLocaleCurrencyPattern","CurrentLocalePercentPattern","CurrentLocaleApplyDateTimePattern","LocaleSupportPackageCase","LocaleAppToAttribute","LocaleAppToCurrencyAttribute","LocaleAppToDialectAttribute","LocaleAppToRegionAttribute","LocaleGetAttributeOrDefValue","LocaleGetCurrencyAttributeOrDefValue","LocaleGetDialectAttributeOrDefValue","LocaleGetRegionAttributeOrDefValue","LocaleIfAttributeEqCsName","LocaleIfAttributeEqCs","LocaleIfAttributeEqNum","LocaleIfCurrencyAttributeEqCsName","LocaleIfCurrencyAttributeEqCs","LocaleIfCurrencyAttributeEqNum","LocaleIfDialectAttributeEqCsName","LocaleIfDialectAttributeEqCs","LocaleIfDialectAttributeEqNum","LocaleIfHasAttribute","LocaleIfHasCurrencyAttribute","LocaleIfHasCurrencyNonEmptyAttribute","LocaleIfHasDialectAttribute","LocaleIfHasDialectNonEmptyAttribute","LocaleIfHasNonEmptyAttribute","LocaleIfHasRegionAttribute","LocaleIfHasRegionNonEmptyAttribute","LocaleIfRegionAttributeEqCsName","LocaleIfRegionAttributeEqCs","LocaleIfRegionAttributeEqNum","LocaleIfSameAttributeValues","LocaleIfSameCurrencyAttributeValues","LocaleIfSameDialectAttributeValues","LocaleIfSameRegionAttributeValues","LocaleLetAttribute","LocaleLetCurrencyAttribute","LocaleLetDialectAttribute","LocaleLetRegionAttribute","LocaleProvideAttribute","LocaleProvideCurrencyAttribute","LocaleProvideDialectAttribute","LocaleProvideRegionAttribute","LocaleXpAppToAttribute","LocaleXpAppToCurrencyAttribute","LocaleXpAppToDialectAttribute","LocaleXpAppToRegionAttribute","localenopolypunct","texosqueryfmtpatEEEE","texosqueryfmtpatEEE","texosqueryfmtpatLLLL","texosqueryfmtpatLLL","texosqueryfmtpatMMMM","texosqueryfmtpatMMM","texosquerytimezonefmt"]}
-,
-"tex.sty":{"envs":{},"deps":{},"cmds":["above","abovedisplayshortskip","abovedisplayskip","abovewithdelims","accent","adjdemerits","advance","afterassignment","aftergroup","atop","atopwithdelims","badness","baselineskip","batchmode","begingroup","belowdisplayshortskip","belowdisplayskip","binoppenalty","botmark","box","boxmaxdepth","brokenpenalty","catcode","char","chardef","cleaders","closein","closeout","clubpenalty","copy","count","countdef","cr","crcr","csname","day","deadcycles","def","defaulthyphenchar","defaultskewchar","delcode","delimiter","delimiterfactor","delimitershortfall","dimen","dimendef","discretionary","displayindent","displaylimits","displaystyle","displaywidowpenalty","displaywidth","divide","doublehyphendemerits","dp","dump","edef","else","emergencystretch","endcsname","endgroup","endinput","endlinechar","eqno","errhelp","errmessage","errorcontextlines","errorstopmode","escapechar","everycr","everydisplay","everyhbox","everyjob","everymath","everypar","everyvbox","exhyphenpenalty","expandafter","fam","fi","finalhyphendemerits","firstmark","floatingpenalty","font","fontdimen","fontname","futurelet","gdef","global","globaldefs","halign","hangafter","hangindent","hbadness","hbox","hfil","hfill","hfilneg","hfuzz","hoffset","holdinginserts","hrule","hsize","hskip","hss","ht","hyphenation","hyphenchar","hyphenpenalty","if","ifcase","ifcat","ifdim","ifeof","iffalse","ifhbox","ifhmode","ifinner","ifmmode","ifnum","ifodd","iftrue","ifvbox","ifvmode","ifvoid","ifx","ignorespaces","immediate","indent","input","inputlineno","insert","insertpenalties","interlinepenalty","jobname","kern","language","lastbox","lastkern","lastpenalty","lastskip","lccode","leaders","left","lefthyphenmin","leftskip","leqno","let","limits","linepenalty","lineskip","lineskiplimit","long","looseness","lower","lowercase","mag","mark","mathaccent","mathbin","mathchar","mathchardef","mathchoice","mathclose","mathcode","mathinner","mathop","mathopen","mathord","mathpunct","mathrel","mathsurround","maxdeadcycles","maxdepth","meaning","medmuskip","message","mkern","month","moveleft","moveright","mskip","multiply","muskip","muskipdef","newlinechar","noalign","noboundary","noexpand","noindent","nolimits","nonscript","nonstopmode","nulldelimiterspace","nullfont","number","omit","oalign","ooalign","openin","openout","or","outer","output","outputpenalty","over","overfullrule","overline","overwithdelims","pagedepth","pagefilllstretch","pagefillstretch","pagefilstretch","pagegoal","pageshrink","pagestretch","pagetotal","par","parfillskip","parindent","parshape","parskip","pausing","penalty","postdisplaypenalty","predisplaypenalty","predisplaysize","pretolerance","prevdepth","prevgraf","radical","raise","read","relax","relpenalty","right","rightskip","righthyphenmin","scriptfont","scriptscriptfont","scriptscriptstyle","scriptspace","scriptstyle","scrollmode","setbox","setlanguage","sfcode","shipout","show","showbox","showboxbreadth","showboxdepth","showlists","showthe","skewchar","skip","skipdef","spacefactor","spaceskip","span","special","splitbotmark","splitfirstmark","splitmaxdepth","splittopskip","string","tabskip","textfont","textstyle","the","thickmuskip","thinmuskip","time","toks","toksdef","tolerance","topmark","topskip","tracingcommands","tracinglostchars","tracingmacros","tracingonline","tracingoutput","tracingpages","tracingparagraphs","tracingrestores","tracingstats","uccode","uchyph","underline","unhbox","unhcopy","unkern","unpenalty","unskip","unvbox","unvcopy","uppercase","vadjust","valign","vbadness","vbox","vcenter","vfil","vfill","vfilneg","vfuzz","voffset","vrule","vsize","vskip","vsplit","vss","vtop","wd","widowpenalty","write","xdef","xleaders","xspaceskip","year","aa","AA","active","acute","ae","AE","aleph","allowbreak","alpha","amalg","angle","approx","arccos","arcsin","arctan","arg","arrowvert","Arrowvert","ast","asymp","b","backslash","bar","beta","bf","bgroup","big","Big","bigbreak","bigcap","bigcirc","bigcup","bigg","Bigg","biggl","Biggl","biggm","Biggm","biggr","Biggr","bigl","Bigl","bigm","Bigm","bigodot","bigoplus","bigotimes","bigr","Bigr","bigskip","bigskipamount","bigsqcup","bigtriangledown","bigtriangleup","biguplus","bigvee","bigwedge","bmod","bordermatrix","bot","bowtie","brace","bracevert","brack","break","breve","buildrel","bullet","c","cal","cap","cases","cdot","cdotp","cdots","check","chi","choose","circ","clap","clubsuit","colon","cong","coprod","copyright","cos","cosh","cot","coth","csc","cup","d","dag","dagger","dashv","ddag","ddagger","ddot","ddots","deg","delta","Delta","det","diamond","diamondsuit","dim","displaylines","div","dot","doteq","dotfill","dots","downarrow","Downarrow","downbracefill","egroup","eject","ell","empty","emptyset","endgraf","endline","enskip","enspace","epsilon","equiv","eta","exists","exp","filbreak","flat","fmtname","fmtversion","footnote","forall","frenchspacing","frown","gamma","Gamma","gcd","ge","geq","gets","gg","goodbreak","grave","H","hat","hbar","heartsuit","hglue","hidewidth","hom","hookleftarrow","hookrightarrow","hphantom","hrulefill","i","ialign","iff","Im","imath","in","inf","infty","int","iota","it","j","jmath","jot","kappa","ker","l","L","lambda","Lambda","land","langle","lbrace","lbrack","lceil","ldotp","ldots","le","leftarrow","Leftarrow","leftarrowfill","leftharpoondown","leftharpoonup","leftline","leftrightarrow","Leftrightarrow","leq","lfloor","lg","lgroup","lim","liminf","limsup","line","ll","llap","lmoustache","ln","lnot","log","loggingall","longleftarrow","Longleftarrow","longleftrightarrow","Longleftrightarrow","longmapsto","longrightarrow","Longrightarrow","loop","lor","lq","magstep","magstephalf","mapsto","mathpalette","mathstrut","matrix","max","maxdimen","medbreak","medskip","medskipamount","mid","min","mit","models","mp","mu","multispan","nabla","narrower","natural","nearrow","ne","neg","negthinspace","neq","newbox","newcount","newdimen","newfam","newhelp","newif","newinsert","newlanguage","newmuskip","newread","newskip","newtoks","newwrite","ni","nobreak","nointerlineskip","nonfrenchspacing","normalbaselines","normalbaselineskip","normallineskip","normallineskiplimit","not","notin","nu","null","nwarrow","o","O","obeylines","obeyspaces","odot","oe","OE","offinterlineskip","oint","omega","Omega","ominus","openup","oplus","oslash","otimes","overbrace","overleftarrow","overrightarrow","owns","P","parallel","partial","perp","phantom","phi","Phi","pi","Pi","pm","pmatrix","pmod","Pr","prec","preceq","prime","prod","propto","psi","Psi","qquad","quad","raggedbottom","raggedright","rangle","rbrace","rbrack","rceil","Re","repeat","rfloor","rgroup","rho","rightarrow","Rightarrow","rightarrowfill","rightharpoondown","rightharpoonup","rightleftharpoons","rightline","rlap","rm","rmoustache","romannumeral","root","rq","S","sb","searrow","sec","setminus","sharp","showhyphens","sigma","Sigma","sim","simeq","sin","sinh","skew","sl","slash","smallbreak","smallint","smallskip","smallskipamount","smash","smile","sp","space","spadesuit","sqcap","sqcup","sqrt","sqsubseteq","sqsupseteq","ss","star","strut","strutbox","subset","subseteq","succ","succeq","sum","sup","supset","supseteq","surd","swarrow","t","tan","tanh","tau","TeX","theta","Theta","thinspace","tilde","times","to","top","tracingall","triangle","triangleleft","triangleright","tt","u","underbar","underbrace","uparrow","Uparrow","upbracefill","updownarrow","Updownarrow","uplus","upsilon","Upsilon","v","varepsilon","varphi","varpi","varrho","varsigma","vartheta","vdash","vec","vee","vert","Vert","vglue","vphantom","wedge","widehat","widetilde","wlog","wp","wr","xi","Xi","zeta","allocationnumber","braceld","bracelu","bracerd","braceru","centering","do","dospecials","footins","footnoterule","hideskip","interdisplaylinepenalty","interfootnotelinepenalty","intop","joinrel","leavevmode","lhook","mapstochar","mathhexbox","ointop","patterns","relbar","Relbar","removelastskip","rhook","rootbox","vdots","settabs","beginL","beginR","botmarks","detokenize","endL","endR","eTeXrevision","eTeXversion","everyeof","firstmarks","fontcharht","fontcharwd","fontchardp","fontcharic","currentgrouplevel","currentgrouptype","currentiflevel","currentiftype","currentifbranch","ifcsname","ifdefined","interactionmode","lastlinefit","lastnodetype","marks","middle","numexpr","parshapedimen","parshapeindent","parshapelength","predisplaydirection","protected","readline","scantokens","showgroups","showtokens","splitfirstmarks","splitbotmarks","TeXXeTstate","topmarks","tracingassigns","tracinggroups","tracingifs","tracingscantokens","unexpanded","unless","dimexpr","glueexpr","muexpr","gluestretch","glueshrink","gluestretchorder","glueshrinkorder","gluetomu","mutoglue","interlinepenalties","clubpenalties","widowpenalties","displaywidowpenalties","tracingnesting","savingvdiscards","savinghyphcodes","showifs","pagediscards","splitdiscards","iffontchar"]}
-,
-"tex4ebook.sty":{"envs":{},"deps":["etoolbox.sty","kvoptions.sty","graphicx.sty"],"cmds":["coverimage","DeclareLanguageEbook","GetLanguage","ncxtable","opftable","Title","Author","Date","origdate"]}
-,
-"tex4ht.sty":{"envs":{},"deps":{},"cmds":["AnchorLabel","BlockElementEnd","BlockElementStart","Configure","ConfigureEnv","ConfigureList","ConfigureMark","ConfigureToc","ContCutAt","Css","CssFile","CutAt","EndCss","EndCssFile","EndHPage","EndJavaScript","EndLink","EndNoFonts","EndP","EndPicture","EndPreamble","HCode","HPage","HtmlParOff","HtmlParOn","ifOption","ifTag","IgnoreIndent","IgnorePar","InlineElementEnd","InlineElementStart","JavaScript","LikeRef","Link","LinkCommand","NewConfigure","NewLogicalBlock","NewSection","NextPictureFile","NoFonts","NoLink","PauseCutAt","Picture","PictureFile","Preamble","RecallEndP","RecallHtmlPar","Ref","SaveEndP","SaveHtmlPar","ScriptCommand","ScriptEnv","SetBlockProperty","SetTag","ShowIndent","ShowPar","ShowRefstepAnchor","SkipRefstepAnchor","TableOfContents","tableofcontents","Tag","Tg","TitleCount","TitleMark","TocAt","TocCount","AddFontFace","afterGetClass","AfterHPageButton","AfterPicture","AllColMargins","AtEndHPage","AutoRefstepAnchor","BeforeHPageButton","BeginHPage","Canvas","childFile","ChildOf","ConfigureHinput","ConfigureSec","ContHPage","CurSecHaddr","CutGroup","DeleteMark","doTocEntry","DviMath","DviSend","EncMathSymbol","EndCanvas","EndDviMath","EndDviSend","EndFileStream","EndHideBACK","EndHTrace","EndMathClass","EndMiniBACK","EndMiniHalign","EndMkHalign","EndPauseBACK","EndPauseMathClass","EndPicDisplay","EndPicMath","EndPMath","EndVerify","ExitHPage","ExtractHLabel","FileName","FileNumber","FileStream","FNnum","getClass","GetHname","GetHref","gHAdvance","gHAssign","gHDivide","gHMultiply","HAdvance","HAlign","halignTB","halignTBL","halignTD","halignTR","HAssign","HBorder","HBorderspace","Hbrakets","HChar","HCol","HColAlign","HCondfalse","HCondtrue","HDivide","HideBACK","Hinclude","Hinput","HLet","HMultiply","HMultispan","Hnewline","HPageAnchors","HPageButton","HPageDepth","HPageFiles","HPageHeader","HPageInFile","HRestore","HRow","HtmlEnv","Htmlfalse","HtmlPar","Htmltrue","HTrace","HTraceHPageOff","HTraceHPageOn","ifHCond","ifHtml","ifProperTr","ignoreEndTr","InitHBorder","InsertTagEnd","InsertTagStart","InsertTitle","Jobname","jsHash","ListParSkip","LoadLabels","LoadRef","MathClass","MathPar","MathSymbol","MiniBACK","MiniHalign","MkHalign","Needs","NewFileName","NewHaddr","NewLineChar","NewPictureDomain","nextChildFile","nextCut","nextCutAt","NextFile","NoHPageInFile","NOHREF","NoHtmlEnv","Odef","parentFile","ParentOf","PauseBACK","PauseMathClass","PauseMkHalign","PicDisplay","PicMath","PictExt","PictureOff","PictureOn","PMath","PopConfigure","PopMacro","PopStack","prevChildFile","prevCut","prevCutAt","ProperTrTrue","Protect","ProtectedMathSymbol","PushConfigure","PushMacro","PushStack","PutHLabel","recallcatcodes","RecallEverypar","RecallMkHalignConfig","RecallTeXcr","RefArg","RefFile","RefFileNumber","RefHPage","RefLabel","SaveEverypar","SaveMkHalignConfig","SavePicture","Send","ShowConfigure","SUBOff","SUBOn","SUPOff","SUPOn","TagFile","TeXhalign","TeXivht","TivhTcats","tocParentOf","TocTitle","Verify","VerifyClose","VerifyEmpty","VerifyOpen","writesixteen","VerbMath","fixmathjaxtoc","AltlMath","AltlDisplay","AltMathOne","AltlDisplayDollars","VerbMathToks","fixmathjaxsec","NewConfigureOO","ConfigureOO","xeuniregisterchar","xeuniunregisterchar","xeuniregisterblock","xeuniregisterblockhex","xeuniblockdef","xeuniuseblock","xenunidelblock"]}
-,
-"texapi.sty":{"envs":{},"deps":{},"cmds":["texapiversion","texenginenumber","formatnumber","priminput","primunexpanded","loadmacrofile","senderror","emptycs","spacecs","spacechar","gobbleone","gobbletwo","gobblethree","gobblefour","gobblefive","gobblesix","gobbleseven","gobbleeight","gobblenine","gobbleoneand","gobbletwoand","gobblethreeand","gobblefourand","gobblefiveand","gobblesixand","gobblesevenand","gobbleeightand","gobblenineand","unbrace","swapargs","swapbraced","swapleftbraced","swaprightbraced","passexpanded","passexpandednobraces","defcs","edefcs","gdefcs","xdefcs","letcs","lettocs","letcstocs","addleft","addleftcs","eaddleft","eaddleftcs","addright","addrightcs","eaddright","eaddrightcs","usecs","usecsafter","passcs","passexpandedcs","noexpandcs","unexpandedcs","commandtoname","reverse","ifcommand","iffcommand","ifcs","iffcs","ifemptycommand","iffemptycommand","ifemptycs","iffemptycs","ifxcs","iffxcs","ifxcscs","iffxcscs","newife","straightenif","straighteniff","ifwhatever","iffwhatever","ifexpression","iffexpression","ifelseif","afterfi","afterdummyfi","skipspace","ifnext","iffnext","ifnextnospace","iffnextnospace","ifcatnext","iffcatnext","ifcatnextnospace","iffcatnextnospace","ifxnext","iffxnext","ifxnextnospace","iffxnextnospace","ifstring","iffstring","ifemptystring","iffemptystring","newstring","ifprefix","iffprefix","ifsuffix","iffsuffix","ifcontains","iffcontains","removeprefix","removesuffix","removeprefixand","removesuffixand","removeprefixin","removesuffixin","splitstringat","setcatcodes","restorecatcodes","trimleft","trimright","trim","passtrimleft","passtrimright","passtrim","deftrimleft","deftrimright","deftrim","repeatuntil","dowhile","newwhile","breakwhile","changewhile","dofor","dofornoempty","breakfor","retrieverest","pausefor","resumefor","newfor","newfornoempty","passarguments","pdef","firstoftwo","secondoftwo","breakdofor","pausedofor"]}
-,
-"texdate.sty":{"envs":{},"deps":["padcount.sty","modulus.sty","iflang.sty"],"cmds":["printdate","initcurrdate","initdate","printfdate","setdateformat","nameddateformat","texdatenumformat","advancebydays","advancebyweeks","advancebymonths","regressbydays","regressbyweeks","regressbymonths","savedate","restoredate","texdcal","texdcalyear"]}
-,
-"texdepends.sty":{"envs":{},"deps":["ifthen.sty","ifxetex.sty","ifpdf.sty","xstring.sty"],"cmds":["RequireFile"]}
-,
-"texdimens.sty":{"envs":{},"deps":{},"cmds":["texdimenpt","texdimenbp","texdimenbpdown","texdimenbpup","texdimennd","texdimennddown","texdimenndup","texdimendd","texdimendddown","texdimenddup","texdimenmm","texdimenmmdown","texdimenmmup","texdimenpc","texdimenpcdown","texdimenpcup","texdimennc","texdimenncdown","texdimenncup","texdimencc","texdimenccdown","texdimenccup","texdimencm","texdimencmdown","texdimencmup","texdimenin","texdimenindown","texdimeninup","texdimenbothcmin","texdimenbothincm","texdimenbothcminpt","texdimenbothincmpt","texdimenbothcminsp","texdimenbothincmsp","texdimenbothmmbp","texdimenbothbpmm","texdimenbothbpmmpt","texdimenbothmmbppt","texdimenbothbpmmsp","texdimenbothmmbpsp","texdimenwithunit","texdimenfirstofone","texdimenstrippt","texdimendown","texdimenup","texdimenboth","texdimenbothsp"]}
-,
-"texdraw.sty":{"envs":["texdraw"],"deps":["graphics.sty"],"cmds":["centertexdraw","everytexdraw","drawdim","move","lvec","avec","rmove","rlvec","ravec","linewd","lpatt","setgray","arrowheadtype","arrowheadsize","htext","vtext","rtext","textref","lcir","fcir","lellip","fellip","larc","clvec","lfill","ifill","bsegment","esegment","savecurrpos","savepos","setunitscale","relunitscale","setsegscale","relsegscale","drawbb","writeps","getpos","realmult","btexdraw","etexdraw","TeXdrawId","coordtopix","getsympos","intdiv","listtopix","pixtobp","pixtocoord","pixtodim","rottxt","setRevDate","sppix","writetx"]}
-,
-"texlinks.sty":{"envs":{},"deps":["domore.sty","langcode.sty"],"cmds":["newlet","htm","html","pdf","DoubleArg","urlfmt","filenamefmt","pkgnamefmt","httpref","httpsref","NormalHTTPref","ithttpref","httpprefix","theHTTPprefix","urlhttpsref","urlhttpref","domainref","prefixref","foothttpurlref","urlfoot","urlpkgfoot","httpbaseref","httpsbaseref","MakeBasedHref","googlecom","googleref","googlemapsref","wikilangref","Wikilangdisambref","Wikilangref","wikideref","wikienref","Wikideref","Wikienref","Wikidedisambref","Wikiendisambref","langcode","wikiref","Wikiref","Wikidisambref","ancuml","nullctanorg","ctanorg","wwwctanorg","wwwctanorgbaseref","nullctanorgbaseref","ctanorgbaseref","texarchive","ltxcontrib","wwwctanref","nullctanref","tugctanref","dantectanref","sciservref","mirrorctanref","ctanref","usemirrorctan","usewwwctan","usenullctan","usetugctan","usedantectani","usesciservctan","CTANfileref","mirrorctanfileref","ctanfileref","dirctanref","catalogueref","cataloguestartref","bytopicref","catpkgref","CatPkgRef","catpkggenref","wwwctanpkggenref","nullctanpkggenref","wwwctanpkgref","WwwCtanPkgRef","wwwctanpkgstyref","nullctanpkgstyref","nullctanpkgref","NullCtanPkgRef","ctanpkgstyref","ctanpkgref","CtanPkgRef","ctanpkggenref","useWWWpkgpages","useOpkgpages","useCATpkgpages","AllPkgRefs","allpkgrefs","useALLpkgpages","wwwctanpkgauref","nullctanpkgauref","ctanpkgauref","wwwctanpkgtopicref","nullctanpkgtopicref","nullctanpkgsearchref","wwwctanpkgsearchref","ctanpkgtopicref","ctanpkgsearchref","texlistyearmonthref","texlanglistmonthref","detexlistmonthref","entexlistmonthref","texlistmonthref","ctanannref","ctanannpref","ctanannyearmonthref","ctanannmonthref","stackexref","stackquestionref","stackoverref","tugref","texhaxref","THref","texhaxpref","THpref","texhaxyearmonthref","texhaxmonthref","tugbartref","tugbArtref","tugiref","TUGIref","ukfaqref","wikilangbooksref","latexwikibookref","texwikibookref"]}
-,
-"texmate.sty":{"envs":["texmate","variations","variations*"],"deps":["amssymb.sty","chessfss.sty","skak.sty"],"cmds":["afterb","afterno","afterw","ahead","analysistop","attack","backlevel","bBetter","BBetter","beforeb","beforeno","bishops","blackelo","blackname","blackturnmarker","blackwins","bname","boardcenter","boarddiagonal","boardfile","bottomdiagramnames","Castle","CastleO","checksign","chessdiagi","chessdiagibottom","chessdiagii","chessdiagiibottom","chessdiagiii","chessdiagiiibottom","chessdiagiiimove","chessdiagiiitop","chessdiagiiiturn","chessdiagiimove","chessdiagiitop","chessdiagiiturn","chessdiagimove","chessdiagitop","chessdiagiturn","chessdiagivturn","chessevent","chessopening","development","diagrambottom","DiagramCache","diagrammove","diagramnames","diagramnumber","diagramsign","diagramtop","doubledpawns","drawn","ECO","iclose","icloset","ifont","iiclose","iicloset","iifont","iiiclose","iiicloset","iiifont","iiiopen","iiiopent","iiopen","iiopent","initiative","iopen","iopent","ivclose","ivcloset","ivfont","ivopen","ivopent","kingside","leftdiagramturn","makebarchess","makebarother","makediagrams","makediagramsfont","makegametitle","nextdiagrambottom","nextdiagramtop","nodiagrammove","nodiagramnames","nodiagramnumber","nodiagramturn","oppositebishops","pawnsno","pieceinitials","position","preparediagram","queenside","resigns","result","rightdiagramturn","separatedpawns","SkakOff","SkakOn","spaceadv","steplevel","takes","TheDiagram","thediagram","Threat","threat","timetrouble","toD","topdiagramnames","var","varfont","VariationsEnvironment","wBetter","WBetter","weak","whiteelo","whitename","whiteturnmarker","whitewins","wname","black","ddummy","diagram","drawdiagram","dummy","fenposition","white","MaxDiagramCache","move","TeXmate"]}
-,
-"texments.sty":{"envs":["pygmented"],"deps":["color.sty","fancyvrb.sty","ifthen.sty"],"cmds":["usestyle","pygment","includecode","proglang","lexercommand"]}
-,
-"texnames.sty":{"envs":{},"deps":{},"cmds":["AmS","AmSLaTeX","AMSLaTeX","AMSTEX","AMSTeX","AmSTeX","BIBTEX","BIBTeX","BibTeX","LAMSTeX","LAmSTeX","LamSTeX","LATEX","LaTeXo","METAFONT","MF","SLITEX","SLITeX","SLiTeX","SliTeX","manfnt","manfntsl","PiC","PiCTeX","VorTeX"]}
-,
-"texnegar.sty":{"envs":{},"deps":["xparse.sty","l3keys2e.sty","graphicx.sty","array.sty","xcolor.sty","fontspec.sty","newverbs.sty","environ.sty","zref-savepos.sty"],"cmds":["KashidaOff","KashidaOn","KashidaHMFixOn","KashidaHMFixOff","discouragebadlinebreaks","TeXNegar"]}
-,
-"texosquery.sty":{"envs":{},"deps":{},"cmds":["TeXOSQuery","TeXOSQueryFromFile","TeXOSQueryLocale","TeXOSQueryLangTag","TeXOSQueryNumeric","TeXOSQueryLocaleData","TeXOSQueryName","TeXOSQueryVersion","TeXOSQueryArch","TeXOSQueryDateTime","TeXOSQueryTimeZones","TeXOSQueryNow","TeXOSQueryFileDate","TeXOSQueryCwd","TeXOSQueryHome","TeXOSQueryTmpDir","TeXOSQueryFileSize","TeXOSQueryFileURI","TeXOSQueryFilePath","TeXOSQueryDirName","TeXOSQueryFileList","TeXOSQueryRegularFileList","TeXOSQuerySubDirList","TeXOSQueryFilterFileList","TeXOSQueryFilterRegularFileList","TeXOSQueryFilterSubDirList","TeXOSQueryFileListDateAsc","TeXOSQueryRegularFileListDateAsc","TeXOSQuerySubDirListDateAsc","TeXOSQueryFilterFileListDateAsc","TeXOSQueryFilterRegularFileListDateAsc","TeXOSQueryFilterSubDirListDateAsc","TeXOSQueryFileListDateDes","TeXOSQueryRegularFileListDateDes","TeXOSQuerySubDirListDateDes","TeXOSQueryFilterFileListDateDes","TeXOSQueryFilterRegularFileListDateDes","TeXOSQueryFilterSubDirListDateDes","TeXOSQueryFileListSizeAsc","TeXOSQueryRegularFileListSizeAsc","TeXOSQuerySubDirListSizeAsc","TeXOSQueryFilterFileListSizeAsc","TeXOSQueryFilterRegularFileListSizeAsc","TeXOSQueryFilterSubDirListSizeAsc","TeXOSQueryFileListSizeDes","TeXOSQueryRegularFileListSizeDes","TeXOSQuerySubDirListSizeDes","TeXOSQueryFilterFileListSizeDes","TeXOSQueryFilterRegularFileListSizeDes","TeXOSQueryFilterSubDirListSizeDes","TeXOSQueryFileListNameAsc","TeXOSQueryRegularFileListNameAsc","TeXOSQuerySubDirListNameAsc","TeXOSQueryFilterFileListNameAsc","TeXOSQueryFilterRegularFileListNameAsc","TeXOSQueryFilterSubDirListNameAsc","TeXOSQueryFileListNameDes","TeXOSQueryRegularFileListNameDes","TeXOSQuerySubDirListNameDes","TeXOSQueryFilterFileListNameDes","TeXOSQueryFilterRegularFileListNameDes","TeXOSQueryFilterSubDirListNameDes","TeXOSQueryFileListNameIgnoreCaseAsc","TeXOSQueryRegularFileListNameIgnoreCaseAsc","TeXOSQuerySubDirListNameIgnoreCaseAsc","TeXOSQueryFilterFileListNameIgnoreCaseAsc","TeXOSQueryFilterRegularFileListNameIgnoreCaseAsc","TeXOSQueryFilterSubDirListNameIgnoreCaseAsc","TeXOSQueryFileListNameIgnoreCaseDes","TeXOSQueryRegularFileListNameIgnoreCaseDes","TeXOSQuerySubDirListNameIgnoreCaseDes","TeXOSQueryFilterFileListNameIgnoreCaseDes","TeXOSQueryFilterRegularFileListNameIgnoreCaseDes","TeXOSQueryFilterSubDirListNameIgnoreCaseDes","TeXOSQueryFileListExtAsc","TeXOSQueryRegularFileListExtAsc","TeXOSQuerySubDirListExtAsc","TeXOSQueryFilterFileListExtAsc","TeXOSQueryFilterRegularFileListExtAsc","TeXOSQueryFilterSubDirListExtAsc","TeXOSQueryFileListExtDes","TeXOSQueryRegularFileListExtDes","TeXOSQuerySubDirListExtDes","TeXOSQueryFilterFileListExtDes","TeXOSQueryFilterRegularFileListExtDes","TeXOSQueryFilterSubDirListExtDes","TeXOSQueryWalk","TeXOSQueryWalkDateAsc","TeXOSQueryWalkDateDes","TeXOSQueryWalkSizeAsc","TeXOSQueryWalkSizeDes","TeXOSQueryWalkNameAsc","TeXOSQueryWalkNameDes","TeXOSQueryWalkNameIgnoreCaseAsc","TeXOSQueryWalkNameIgnoreCaseDes","TeXOSQueryWalkExtAsc","TeXOSQueryWalkExtDes","TeXOSInvokerName","TeXOSQueryInvoker","ifTeXOSQueryDryRun","TeXOSQueryDryRuntrue","TeXOSQueryDryRunfalse","TeXOSQueryAllowRestricted","TeXOSQueryDenyRestricted","TeXOSInvokerRestrictedMessage","texosquerynonasciiwrap","twrp","texosquerynonasciidetokwrap","fwrp","texosquerybackslash","texosquerytextbackslash","texosqueryleftbrace","texosquerytextleftbrace","texosqueryrightbrace","texosquerytextrightbrace","texosqueryhash","texosquerytexthash","texosqueryunderscore","texosquerytextunderscore","texosquerybacktick","texosquerytextbacktick","texosqueryclosequote","texosquerytextclosequote","texosquerydoublequote","texosquerytextdoublequote","texosquerycolon","texosquerytextcolon","texosquerysemicolon","texosquerytextsemicolon","texosqueryequals","texosquerytextequals","texosqueryslash","texosquerytextslash","texosqueryhyphen","texosquerytexthyphen","texosqueryplus","texosquerytextplus","texosqueryperiod","texosquerytextperiod","texosquerycomma","texosquerytextcomma","texosqueryopenparen","texosquerytextopenparen","texosquerycloseparen","texosquerytextcloseparen","texosqueryopensq","texosquerytextopensq","texosqueryclosesq","texosquerytextclosesq","texosqueryasterisk","texosquerytextasterisk","texosqueryatchar","texosquerytextatchar","texosquerybar","texosquerytextbar","texosquerylessthan","texosquerytextlessthan","texosquerygreaterthan","texosquerytextgreaterthan","texosquerytilde","texosquerytexttilde","texosquerycircum","texosquerytextcircum","texosqueryampersand","texosquerytextampersand","texosquerydollar","texosquerytextdollar","texosquerypercent","texosquerytextpercent","texosqueryexclam","texosquerytextexclam","texosqueryquestion","texosquerytextquestion","texosqueryliteralspace","texosquerytextspace","texosquerycurrency","texosquerycurrencydollar","texosquerycurrencycent","texosquerycurrencypound","texosquerycurrencysign","texosquerycurrencyyen","texosquerycurrencyecu","texosquerycurrencycolon","texosquerycurrencycruzeiro","texosquerycurrencyfranc","texosquerycurrencylira","texosquerycurrencymill","texosquerycurrencynaira","texosquerycurrencypeseta","texosquerycurrencyrupee","texosquerycurrencywon","texosquerycurrencynewsheqel","texosquerycurrencydong","texosquerycurrencyeuro","texosquerycurrencykip","texosquerycurrencytugrik","texosquerycurrencydrachma","texosquerycurrencygermanpenny","texosquerycurrencypeso","texosquerycurrencyguarani","texosquerycurrencyaustral","texosquerycurrencyhryvnia","texosquerycurrencycedi","texosquerycurrencylivretournois","texosquerycurrencyspesmilo","texosquerycurrencytenge","texosquerycurrencyturkishlira","texosquerycurrencynordicmark","texosquerycurrencymanat","texosquerycurrencyruble","famp","fapo","fast","fatc","fbks","fcir","fclb","fcln","fcom","fcsb","fdol","fdot","fdqt","feql","fexc","fgre","fgrv","fhsh","fhyn","flbr","fles","fopb","fosb","fpct","fpls","fque","frbr","fscl","fslh","fspc","ftld","fusc","pdfd","tamp","tapo","tast","tatc","tbks","tcir","tclb","tcln","tcom","tcsb","tdol","tdot","tdqt","teql","texc","tgre","tgrv","thsh","thyn","tlbr","tles","topb","tosb","tpct","tpls","tque","trbr","tscl","tslh","tspc","ttld","tusc","texosquerystripquotes","texosquerydefpattern","texosquerydtf","patdtf","texosquerypatnum","numfmt","patnumfmt","texosquerypatplusminus","pmnumfmt","patpmnumfmt","texosquerypatsinum","sinumfmt","patsinumfmt","texosquerypatdec","decfmt","patdecfmt","texosquerypatprefixcurrency","pcur","patpcur","texosquerypatprefixicurrency","picur","patpicur","texosquerypatsuffixcurrency","scur","patscur","texosquerypatsuffixicurrency","sicur","patsicur","texosquerypatprefixpercent","ppct","patppct","texosquerypatsuffixpercent","spct","patspct","texosquerypatprefixpermill","ppml","patppml","texosquerypatsuffixpermill","spml","patspml","texosquerypatstr","patstr","texosquerypatquote","patapo","texosquerypatdigit","patdgt","texosquerypatdigitnozero","patdgtnz","texosquerypatgroupsep","patngp","texosquerypatminus","patmsg","texosqueryfmtdatetime","texosqueryfmttimezonehr","texosqueryfmttimezonenumhr","texosqueryfmttimezonemin","texosqueryshorttimezone","texosqueryshortdstzone","texosquerylongtimezone","texosquerylongdstzone","texosquerytimesep","texosqueryfmtpatz","texosqueryfmtpatzz","texosqueryfmtpatzzz","texosqueryfmtpatzzzz","texosqueryfmtpatZ","texosqueryfmtpatZZ","texosqueryfmtpatZZZ","texosqueryfmtpatZZZZ","texosqueryfmtpatX","texosqueryfmtpatXX","texosqueryfmtpatXXX","texosqueryfmtpatXXXX","texosqueryfmtpata","texosqueryfmtpataa","texosqueryfmtpataaa","texosqueryfmtpataaaa","texosqueryfmtpatG","texosqueryfmtpatGG","texosqueryfmtpatGGG","texosqueryfmtpatGGGG","texosqueryfmtnumber","texosquerypatfmtstr","texosquerypatfmtquote","texosquerypatfmtexp","texosquerypatfmtdecsep","texosquerypatfmtcurdecsep","texosquerypatfmtint","texosquerypatfmtcurrencysign","texosquerypatfmticurrencysign","texosquerypatfmtminus","texosquerypatfmtplus","texosquerypatfmtgroupsep","texosquerypatfmtpercentsign","texosquerypatfmtpermillsign"]}
-,
-"texshade.sty":{"envs":["texshade"],"deps":["color.sty","graphics.sty","amssymb.sty"],"cmds":["alignment","allmatchspecial","allowzero","alphacount","Alphacount","appearance","backtranslabel","backtranstext","bargraphstretch","bbbbottomspace","bbbottomspace","bbottomspace","bigblockskip","bigsepline","bottomspace","changeshadingcolors","charge","charstretch","chimeraaxisdistance","chimeraballScale","chimerachain","clearfuncgroups","clearlogocolors","codon","colorscalestretch","constoallseqs","constosingleseq","defconsensus","defshadingcolors","disallowzero","DNAgroups","DNAsims","dofrequencycorrection","domaingaprule","donotshade","echostructurefile","emphblock","emphdefault","emphregion","englishlanguage","exportconsensus","feature","featurenamecolor","featurenamesbf","featurenamescolor","featurenamesfootnotesize","featurenameshuge","featurenamesHuge","featurenamesit","featurenameslarge","featurenamesLarge","featurenamesLARGE","featurenamesmd","featurenamesnormalsize","featurenamesrm","featurenamessc","featurenamesscriptsize","featurenamessf","featurenamessl","featurenamessmall","featurenamestiny","featurenamestt","featurenamesup","featurerule","featuresbf","featuresfootnotesize","featureshuge","featuresHuge","featuresit","featureslarge","featuresLarge","featuresLARGE","featuresmd","featuresnormalsize","featuresrm","featuressc","featuresscriptsize","featuressf","featuressl","featuressmall","featurestiny","featurestt","featurestylenamecolor","featurestylenamesbf","featurestylenamescolor","featurestylenamesfootnotesize","featurestylenameshuge","featurestylenamesHuge","featurestylenamesit","featurestylenameslarge","featurestylenamesLarge","featurestylenamesLARGE","featurestylenamesmd","featurestylenamesnormalsize","featurestylenamesrm","featurestylenamessc","featurestylenamesscriptsize","featurestylenamessf","featurestylenamessl","featurestylenamessmall","featurestylenamestiny","featurestylenamestt","featurestylenamesup","featurestylesbf","featurestylesfootnotesize","featurestyleshuge","featurestylesHuge","featurestylesit","featurestyleslarge","featurestylesLarge","featurestylesLARGE","featurestylesmd","featurestylesnormalsize","featurestylesrm","featurestylessc","featurestylesscriptsize","featurestylessf","featurestylessl","featurestylessmall","featurestylestiny","featurestylestt","featurestylesup","featuresup","fingerprint","firstcolumnDSSP","fixblockspace","flexblockspace","frameblock","gapchar","gappenalty","gaprule","geneticcode","germanlanguage","hideallmatchpositions","hideconsensus","hidefeaturename","hidefeaturenames","hidefeaturestylename","hidefeaturestylenames","hideleadinggaps","hidelegend","hidelogoscale","hidename","hidenames","hidenegatives","hidenumber","hidenumbering","hideonDSSP","hideonHMMTOP","hideonPHDsec","hideonPHDtopo","hideonSTRIDE","hiderelevance","hideresidues","hideruler","hideseq","hideseqs","hidesequencelogo","hidesubfamilylogo","includeDSSP","includeHMMTOP","includePHDsec","includePHDtopo","includeSTRIDE","includeTCoffee","killseq","legendbf","legendcolor","legendfootnotesize","legendhuge","legendHuge","legendit","legendlarge","legendLarge","legendLARGE","legendmd","legendnormalsize","legendrm","legendsc","legendscriptsize","legendsf","legendsl","legendsmall","legendtiny","legendtt","legendup","linestretch","logocolor","logostretch","lowerblock","lowerregion","medblockskip","medsepline","memeBlack","memeBlue","memelabelcutoff","memeRed","memeStandardcolors","memeWhite","memeYellow","messagePDBlist","molweight","movelegend","namecolor","nameconsensus","namerulerpos","namesbf","namescolor","nameseq","namesequencelogo","namesfootnotesize","nameshuge","namesHuge","namesit","nameslarge","namesLarge","namesLARGE","namesmd","namesnormalsize","namesrm","namessc","namesscriptsize","namessf","namessl","namessmall","namestiny","namestt","namesubfamilylogo","namesup","noblockskip","nosepline","numbercolor","numberingbf","numberingcolor","numberingfootnotesize","numberinghuge","numberingHuge","numberingit","numberinglarge","numberingLarge","numberingLARGE","numberingmd","numberingnormalsize","numberingrm","numberingsc","numberingscriptsize","numberingsf","numberingsl","numberingsmall","numberingtiny","numberingtt","numberingup","numberingwidth","numcount","orderseqs","pepgroups","pepsims","percentidentity","percentsimilarity","printPDBlist","relevance","residuesbf","residuesfootnotesize","residueshuge","residuesHuge","residuesit","residueslarge","residuesLarge","residuesLARGE","residuesmd","residuesnormalsize","residuesperline","residuesrm","residuessc","residuesscriptsize","residuessf","residuessl","residuessmall","residuestiny","residuestt","residuesup","romancount","Romancount","rotateruler","rulercolor","rulerfootnotesize","rulerhuge","rulerHuge","rulerlarge","rulerLarge","rulerLARGE","rulernormalsize","rulerrm","rulerscriptsize","rulersf","rulersmall","rulerspace","rulersteps","rulertiny","rulertt","secondcolumnDSSP","separationline","seqlength","seqtype","setdomain","setends","setfamily","setfont","setseries","setshape","setsize","setsubfamily","setweight","shadeallresidues","shadebox","shadingcolors","shadingmode","shortcaption","showcaption","showconsensus","showfeaturename","showfeaturestylename","showleadinggaps","showlegend","showlogoscale","shownames","shownegatives","shownumbering","showonDSSP","showonHMMTOP","showonPHDsec","showonPHDtopo","showonSTRIDE","showrelevance","showresidues","showruler","showseqs","showsequencelogo","showsubfamilylogo","similaritytable","smallblockskip","smallsepline","spanishlanguage","startnumber","stopchar","structurememe","TeXshade","threshold","tintblock","tintdefault","tintregion","topspace","ttopspace","tttopspace","ttttopspace","undofrequencycorrection","unrotateruler","vblockspace","vsepspace","weighttable","nomatchresidues","conservedresidues","allmatchresidues","similarresidues","funcshadingstyle","funcgroup","consensuscolors","gapcolors","domaingapcolors","shaderegion","shadeblock","alignfile","alignfilename","Allmatch","allmatchspecialoff","alnline","bbbbottomfeaturefalse","bbbbottomfeaturenowfalse","bbbbottomfeaturenowtrue","bbbbottomfeaturetrue","bbbottomfeaturefalse","bbbottomfeaturenowfalse","bbbottomfeaturenowtrue","bbbottomfeaturetrue","bbottomfeaturefalse","bbottomfeaturenowfalse","bbottomfeaturenowtrue","bbottomfeaturetrue","bottomfeaturefalse","bottomfeaturenowfalse","bottomfeaturenowtrue","bottomfeaturetrue","chargeA","chargeB","chargeC","chargeCterm","chargeD","chargeE","chargeF","chargeG","chargeH","chargeI","chargeJ","chargeK","chargeL","chargeM","chargeN","chargeNterm","chargeO","chargeP","chargeQ","chargeR","chargeS","chargeT","chargeU","chargeV","chargeW","chargeX","chargeY","chargeZ","chimeraballscale","consAA","consAB","consAC","consAD","consAE","consAF","consAG","consAH","consAI","consAJ","consAK","consAL","ConsAllmatch","consAM","consAN","consAO","consAP","consAQ","consAR","consAS","consAT","consAU","consAV","consAW","consAX","consAY","consAZ","consBA","consBB","consBC","consBD","consBE","consBF","consBG","consBH","consBI","consBJ","consBK","consBL","consBM","consBN","consBO","consBP","consBQ","consBR","consBS","consBT","consBU","consBV","consBW","consBX","consBY","consBZ","consCA","consCB","consCC","consCD","consCE","consCF","consCG","consCH","consCI","consCJ","consCK","consCL","consCM","consCN","consCO","consCP","consCQ","consCR","consCS","consCT","consCU","consCV","consCW","consCX","consCY","consCZ","consDA","consDB","consDC","consDD","consDE","consDF","consDG","consDH","consDI","consDJ","consDK","consDL","consDM","consDN","consDO","consDP","consDQ","consDR","consDS","consDT","consDU","consDV","consDW","consDX","consDY","consDZ","consEA","consEB","consEC","consED","consEE","consEF","consEG","consEH","consEI","consEJ","consEK","consEL","consEM","consEN","consensus","consEO","consEP","consEQ","consER","consES","consET","consEU","consEV","consEW","consEX","consEY","consEZ","consFA","consFB","consFC","consFD","consFE","consFF","consFG","consFH","consFI","consFJ","consFK","consFL","consFM","consFN","consFO","consFP","consFQ","consFR","consFS","consFT","consFU","consFV","consFW","consFX","consFY","consFZ","consGA","consGB","consGC","consGD","consGE","consGF","consGG","consGH","consGI","consGJ","consGK","consGL","consGM","consGN","consGO","consGP","consGQ","consGR","consGS","consGT","consGU","consGV","consGW","consGX","consGY","consGZ","consHA","consHB","consHC","consHD","consHE","consHF","consHG","consHH","consHI","consHJ","consHK","consHL","consHM","consHN","consHO","consHP","consHQ","consHR","consHS","consHT","consHU","consHV","consHW","consHX","consHY","consHZ","consIA","consIB","consIC","consID","consIE","consIF","consIG","consIH","consII","consIJ","consIK","consIL","consIM","consIN","consIO","consIP","consIQ","consIR","consIS","consIT","consIU","consIV","consIW","consIX","consIY","consIZ","consJA","consJB","consJC","consJD","consJE","consJF","consJG","consJH","consJI","consJJ","consJK","consJL","consJM","consJN","consJO","consJP","consJQ","consJR","consJS","consJT","consJU","consJV","consJW","consJX","consJY","consJZ","consKA","consKB","consKC","consKD","consKE","consKF","consKG","consKH","consKI","consKJ","consKK","consKL","consKM","consKN","consKO","consKP","consKQ","consKR","consKS","consKT","consKU","consKV","consKW","consKX","consKY","consKZ","consLA","consLB","consLC","consLD","consLE","consLF","consLG","consLH","consLI","consLJ","consLK","consLL","consLM","consLN","consLO","consLP","consLQ","consLR","consLS","consLT","consLU","consLV","consLW","consLX","consLY","consLZ","consMA","ConsMatch","consMB","consMC","consMD","consME","consMF","consMG","consMH","consMI","consMJ","consMK","consML","consMM","consMN","consMO","consMP","consMQ","consMR","consMS","consMT","consMU","consMV","consMW","consMX","consMY","consMZ","consNA","consNB","consNC","consND","consNE","consNF","consNG","consNH","consNI","consNJ","consNK","consNL","consNM","consNN","consNO","ConsNomatch","consNP","consNQ","consNR","consNS","consNT","consNU","consNV","consNW","consNX","consNY","consNZ","consOA","consOB","consOC","consOD","consOE","consOF","consOG","consOH","consOI","consOJ","consOK","consOL","consOM","consON","consOO","consOP","consOQ","consOR","consOS","consOT","consOU","consOV","consOW","consOX","consOY","consOZ","consPA","consPB","consPC","consPD","consPE","consPF","consPG","consPH","consPI","consPJ","consPK","consPL","consPM","consPN","consPO","consPP","consPQ","consPR","consPS","consPT","consPU","consPV","consPW","consPX","consPY","consPZ","consQA","consQB","consQC","consQD","consQE","consQF","consQG","consQH","consQI","consQJ","consQK","consQL","consQM","consQN","consQO","consQP","consQQ","consQR","consQS","consQT","consQU","consQV","consQW","consQX","consQY","consQZ","consRA","consRB","consRC","consRD","consRE","consRF","consRG","consRH","consRI","consRJ","consRK","consRL","consRM","consRN","consRO","consRP","consRQ","consRR","consRS","consRT","consRU","consRV","consRW","consRX","consRY","consRZ","consSA","consSB","consSC","consSD","consSE","consSF","consSG","consSH","consSI","consSJ","consSK","consSL","consSM","consSN","consSO","consSP","consSQ","consSR","consSS","consST","consSU","consSV","consSW","consSX","consSY","consSZ","consTA","consTB","consTC","consTD","consTE","ConsTextAllmatch","ConsTextMatch","ConsTextNomatch","consTF","consTG","consTH","consTI","consTJ","consTK","consTL","consTM","consTN","consTO","constopo","consTP","consTQ","consTR","consTS","consTT","consTU","consTV","consTW","consTX","consTY","consTZ","consUA","consUB","consUC","consUD","consUE","consUF","consUG","consUH","consUI","consUJ","consUK","consUL","consUM","consUN","consUO","consUP","consUQ","consUR","consUS","consUT","consUU","consUV","consUW","consUX","consUY","consUZ","consVA","consVB","consVC","consVD","consVE","consVF","consVG","consVH","consVI","consVJ","consVK","consVL","consVM","consVN","consVO","consVP","consVQ","consVR","consVS","consVT","consVU","consVV","consVW","consVX","consVY","consVZ","consWA","consWB","consWC","consWD","consWE","consWF","consWG","consWH","consWI","consWJ","consWK","consWL","consWM","consWN","consWO","consWP","consWQ","consWR","consWS","consWT","consWU","consWV","consWW","consWX","consWY","consWZ","consXA","consXB","consXC","consXD","consXE","consXF","consXG","consXH","consXI","consXJ","consXK","consXL","consXM","consXN","consXO","consXP","consXQ","consXR","consXS","consXT","consXU","consXV","consXW","consXX","consXY","consXZ","consYA","consYB","consYC","consYD","consYE","consYF","consYG","consYH","consYI","consYJ","consYK","consYL","consYM","consYN","consYO","consYP","consYQ","consYR","consYS","consYT","consYU","consYV","consYW","consYX","consYY","consYZ","consZA","consZB","consZC","consZD","consZE","consZF","consZG","consZH","consZI","consZJ","consZK","consZL","consZM","consZN","consZO","consZP","consZQ","consZR","consZS","consZT","consZU","consZV","consZW","consZX","consZY","consZZ","DNAmwA","DNAmwB","DNAmwC","DNAmwD","DNAmwE","DNAmwF","DNAmwG","DNAmwH","DNAmwI","DNAmwJ","DNAmwK","DNAmwL","DNAmwM","DNAmwN","DNAmwO","DNAmwP","DNAmwQ","DNAmwR","DNAmwS","DNAmwT","DNAmwU","DNAmwV","DNAmwW","DNAmwX","DNAmwY","DNAmwZ","endrotopo","featurefile","featureonbbbbottom","featureonbbbottom","featureonbbottom","featureonbottom","featureontop","featureonttop","featureontttop","featureonttttop","featureposbbbbottom","featureposbbbottom","featureposbbottom","featureposbottom","featurepostop","featureposttop","featurepostttop","featureposttttop","findsubfamily","framenowfalse","framenowtrue","funcmodefalse","funcmodetrue","hardnessA","hardnessB","hardnessC","hardnessD","hardnessE","hardnessF","hardnessG","hardnessH","hardnessI","hardnessJ","hardnessK","hardnessL","hardnessM","hardnessN","hardnessO","hardnessP","hardnessQ","hardnessR","hardnessS","hardnessT","hardnessU","hardnessV","hardnessW","hardnessX","hardnessY","hardnessZ","helixhook","hidecharfalse","hidechartrue","HydroA","HydroB","HydroC","HydroD","HydroE","HydroF","HydroG","HydroH","HydroI","HydroJ","HydroK","HydroL","HydroM","HydroN","HydroO","HydroP","HydroQ","HydroR","HydroS","HydroT","HydroU","HydroV","HydroW","HydroX","HydroY","HydroZ","Identical","identitytable","ifbbbbottomfeature","ifbbbbottomfeaturenow","ifbbbottomfeature","ifbbbottomfeaturenow","ifbbottomfeature","ifbbottomfeaturenow","ifbottomfeature","ifbottomfeaturenow","ifframenow","iffuncmode","ifhidechar","ifletter","ifnewres","ifnumber","ifregionalemph","ifregionalemphnow","ifregionallower","ifregionallowernow","ifregionalshade","ifregionalshadenow","ifregionaltint","ifregionaltintnow","ifshadingnow","ifsimmode","iftopfeature","iftopfeaturenow","ifttopfeature","ifttopfeaturenow","iftttopfeature","iftttopfeaturenow","ifttttopfeature","ifttttopfeaturenow","inline","innerloopcount","letterfalse","lettertrue","loopcount","memeblack","memeblue","memeNone","memenone","memered","memewhite","memeyellow","molwA","molwB","molwC","molwD","molwE","molwF","molwG","molwH","molwI","molwJ","molwK","molwL","molwM","molwN","molwO","molwP","molwQ","molwR","molwS","molwT","molwU","molwV","molwW","molwX","molwY","molwZ","msfline","newresfalse","newrestrue","Nomatch","numberfalse","numbertrue","outerloopcount","pepchargeA","pepchargeB","pepchargeC","pepchargeD","pepchargeE","pepchargeF","pepchargeG","pepchargeH","pepchargeI","pepchargeJ","pepchargeK","pepchargeL","pepchargeM","pepchargeN","pepchargeO","pepchargeP","pepchargeQ","pepchargeR","pepchargeS","pepchargeT","pepchargeU","pepchargeV","pepchargeW","pepchargeX","pepchargeY","pepchargeZ","pepmwA","pepmwB","pepmwC","pepmwD","pepmwE","pepmwF","pepmwG","pepmwH","pepmwI","pepmwJ","pepmwK","pepmwL","pepmwM","pepmwN","pepmwO","pepmwP","pepmwQ","pepmwR","pepmwS","pepmwT","pepmwU","pepmwV","pepmwW","pepmwX","pepmwY","pepmwZ","prfx","readalignfile","regionalemphfalse","regionalemphnowfalse","regionalemphnowtrue","regionalemphtrue","regionallowerfalse","regionallowernowfalse","regionallowernowtrue","regionallowertrue","regionalshadefalse","regionalshadenowfalse","regionalshadenowtrue","regionalshadetrue","regionaltintfalse","regionaltintnowfalse","regionaltintnowtrue","regionaltinttrue","rotopo","savedseqlength","shadingnowfalse","shadingnowtrue","showallmatchpositions","Similar","simmodefalse","simmodetrue","simpairAA","simpairAB","simpairAC","simpairAD","simpairAE","simpairAF","simpairAG","simpairAH","simpairAI","simpairAJ","simpairAK","simpairAL","simpairAM","simpairAN","simpairAO","simpairAP","simpairAQ","simpairAR","simpairAS","simpairAT","simpairAU","simpairAV","simpairAW","simpairAX","simpairAY","simpairAZ","simpairBA","simpairBB","simpairBC","simpairBD","simpairBE","simpairBF","simpairBG","simpairBH","simpairBI","simpairBJ","simpairBK","simpairBL","simpairBM","simpairBN","simpairBO","simpairBP","simpairBQ","simpairBR","simpairBS","simpairBT","simpairBU","simpairBV","simpairBW","simpairBX","simpairBY","simpairBZ","simpairCA","simpairCB","simpairCC","simpairCD","simpairCE","simpairCF","simpairCG","simpairCH","simpairCI","simpairCJ","simpairCK","simpairCL","simpairCM","simpairCN","simpairCO","simpairCP","simpairCQ","simpairCR","simpairCS","simpairCT","simpairCU","simpairCV","simpairCW","simpairCX","simpairCY","simpairCZ","simpairDA","simpairDB","simpairDC","simpairDD","simpairDE","simpairDF","simpairDG","simpairDH","simpairDI","simpairDJ","simpairDK","simpairDL","simpairDM","simpairDN","simpairDO","simpairDP","simpairDQ","simpairDR","simpairDS","simpairDT","simpairDU","simpairDV","simpairDW","simpairDX","simpairDY","simpairDZ","simpairEA","simpairEB","simpairEC","simpairED","simpairEE","simpairEF","simpairEG","simpairEH","simpairEI","simpairEJ","simpairEK","simpairEL","simpairEM","simpairEN","simpairEO","simpairEP","simpairEQ","simpairER","simpairES","simpairET","simpairEU","simpairEV","simpairEW","simpairEX","simpairEY","simpairEZ","simpairFA","simpairFB","simpairFC","simpairFD","simpairFE","simpairFF","simpairFG","simpairFH","simpairFI","simpairFJ","simpairFK","simpairFL","simpairFM","simpairFN","simpairFO","simpairFP","simpairFQ","simpairFR","simpairFS","simpairFT","simpairFU","simpairFV","simpairFW","simpairFX","simpairFY","simpairFZ","simpairGA","simpairGB","simpairGC","simpairGD","simpairGE","simpairGF","simpairGG","simpairGH","simpairGI","simpairGJ","simpairGK","simpairGL","simpairGM","simpairGN","simpairGO","simpairGP","simpairGQ","simpairGR","simpairGS","simpairGT","simpairGU","simpairGV","simpairGW","simpairGX","simpairGY","simpairGZ","simpairHA","simpairHB","simpairHC","simpairHD","simpairHE","simpairHF","simpairHG","simpairHH","simpairHI","simpairHJ","simpairHK","simpairHL","simpairHM","simpairHN","simpairHO","simpairHP","simpairHQ","simpairHR","simpairHS","simpairHT","simpairHU","simpairHV","simpairHW","simpairHX","simpairHY","simpairHZ","simpairIA","simpairIB","simpairIC","simpairID","simpairIE","simpairIF","simpairIG","simpairIH","simpairII","simpairIJ","simpairIK","simpairIL","simpairIM","simpairIN","simpairIO","simpairIP","simpairIQ","simpairIR","simpairIS","simpairIT","simpairIU","simpairIV","simpairIW","simpairIX","simpairIY","simpairIZ","simpairJA","simpairJB","simpairJC","simpairJD","simpairJE","simpairJF","simpairJG","simpairJH","simpairJI","simpairJJ","simpairJK","simpairJL","simpairJM","simpairJN","simpairJO","simpairJP","simpairJQ","simpairJR","simpairJS","simpairJT","simpairJU","simpairJV","simpairJW","simpairJX","simpairJY","simpairJZ","simpairKA","simpairKB","simpairKC","simpairKD","simpairKE","simpairKF","simpairKG","simpairKH","simpairKI","simpairKJ","simpairKK","simpairKL","simpairKM","simpairKN","simpairKO","simpairKP","simpairKQ","simpairKR","simpairKS","simpairKT","simpairKU","simpairKV","simpairKW","simpairKX","simpairKY","simpairKZ","simpairLA","simpairLB","simpairLC","simpairLD","simpairLE","simpairLF","simpairLG","simpairLH","simpairLI","simpairLJ","simpairLK","simpairLL","simpairLM","simpairLN","simpairLO","simpairLP","simpairLQ","simpairLR","simpairLS","simpairLT","simpairLU","simpairLV","simpairLW","simpairLX","simpairLY","simpairLZ","simpairMA","simpairMB","simpairMC","simpairMD","simpairME","simpairMF","simpairMG","simpairMH","simpairMI","simpairMJ","simpairMK","simpairML","simpairMM","simpairMN","simpairMO","simpairMP","simpairMQ","simpairMR","simpairMS","simpairMT","simpairMU","simpairMV","simpairMW","simpairMX","simpairMY","simpairMZ","simpairNA","simpairNB","simpairNC","simpairND","simpairNE","simpairNF","simpairNG","simpairNH","simpairNI","simpairNJ","simpairNK","simpairNL","simpairNM","simpairNN","simpairNO","simpairNP","simpairNQ","simpairNR","simpairNS","simpairNT","simpairNU","simpairNV","simpairNW","simpairNX","simpairNY","simpairNZ","simpairOA","simpairOB","simpairOC","simpairOD","simpairOE","simpairOF","simpairOG","simpairOH","simpairOI","simpairOJ","simpairOK","simpairOL","simpairOM","simpairON","simpairOO","simpairOP","simpairOQ","simpairOR","simpairOS","simpairOT","simpairOU","simpairOV","simpairOW","simpairOX","simpairOY","simpairOZ","simpairPA","simpairPB","simpairPC","simpairPD","simpairPE","simpairPF","simpairPG","simpairPH","simpairPI","simpairPJ","simpairPK","simpairPL","simpairPM","simpairPN","simpairPO","simpairPP","simpairPQ","simpairPR","simpairPS","simpairPT","simpairPU","simpairPV","simpairPW","simpairPX","simpairPY","simpairPZ","simpairQA","simpairQB","simpairQC","simpairQD","simpairQE","simpairQF","simpairQG","simpairQH","simpairQI","simpairQJ","simpairQK","simpairQL","simpairQM","simpairQN","simpairQO","simpairQP","simpairQQ","simpairQR","simpairQS","simpairQT","simpairQU","simpairQV","simpairQW","simpairQX","simpairQY","simpairQZ","simpairRA","simpairRB","simpairRC","simpairRD","simpairRE","simpairRF","simpairRG","simpairRH","simpairRI","simpairRJ","simpairRK","simpairRL","simpairRM","simpairRN","simpairRO","simpairRP","simpairRQ","simpairRR","simpairRS","simpairRT","simpairRU","simpairRV","simpairRW","simpairRX","simpairRY","simpairRZ","simpairSA","simpairSB","simpairSC","simpairSD","simpairSE","simpairSF","simpairSG","simpairSH","simpairSI","simpairSJ","simpairSK","simpairSL","simpairSM","simpairSN","simpairSO","simpairSP","simpairSQ","simpairSR","simpairSS","simpairST","simpairSU","simpairSV","simpairSW","simpairSX","simpairSY","simpairSZ","simpairTA","simpairTB","simpairTC","simpairTD","simpairTE","simpairTF","simpairTG","simpairTH","simpairTI","simpairTJ","simpairTK","simpairTL","simpairTM","simpairTN","simpairTO","simpairTP","simpairTQ","simpairTR","simpairTS","simpairTT","simpairTU","simpairTV","simpairTW","simpairTX","simpairTY","simpairTZ","simpairUA","simpairUB","simpairUC","simpairUD","simpairUE","simpairUF","simpairUG","simpairUH","simpairUI","simpairUJ","simpairUK","simpairUL","simpairUM","simpairUN","simpairUO","simpairUP","simpairUQ","simpairUR","simpairUS","simpairUT","simpairUU","simpairUV","simpairUW","simpairUX","simpairUY","simpairUZ","simpairVA","simpairVB","simpairVC","simpairVD","simpairVE","simpairVF","simpairVG","simpairVH","simpairVI","simpairVJ","simpairVK","simpairVL","simpairVM","simpairVN","simpairVO","simpairVP","simpairVQ","simpairVR","simpairVS","simpairVT","simpairVU","simpairVV","simpairVW","simpairVX","simpairVY","simpairVZ","simpairWA","simpairWB","simpairWC","simpairWD","simpairWE","simpairWF","simpairWG","simpairWH","simpairWI","simpairWJ","simpairWK","simpairWL","simpairWM","simpairWN","simpairWO","simpairWP","simpairWQ","simpairWR","simpairWS","simpairWT","simpairWU","simpairWV","simpairWW","simpairWX","simpairWY","simpairWZ","simpairXA","simpairXB","simpairXC","simpairXD","simpairXE","simpairXF","simpairXG","simpairXH","simpairXI","simpairXJ","simpairXK","simpairXL","simpairXM","simpairXN","simpairXO","simpairXP","simpairXQ","simpairXR","simpairXS","simpairXT","simpairXU","simpairXV","simpairXW","simpairXX","simpairXY","simpairXZ","simpairYA","simpairYB","simpairYC","simpairYD","simpairYE","simpairYF","simpairYG","simpairYH","simpairYI","simpairYJ","simpairYK","simpairYL","simpairYM","simpairYN","simpairYO","simpairYP","simpairYQ","simpairYR","simpairYS","simpairYT","simpairYU","simpairYV","simpairYW","simpairYX","simpairYY","simpairYZ","simpairZA","simpairZB","simpairZC","simpairZD","simpairZE","simpairZF","simpairZG","simpairZH","simpairZI","simpairZJ","simpairZK","simpairZL","simpairZM","simpairZN","simpairZO","simpairZP","simpairZQ","simpairZR","simpairZS","simpairZT","simpairZU","simpairZV","simpairZW","simpairZX","simpairZY","simpairZZ","standarddefinitions","structurefile","structurefilename","structureline","stylefeaturebbbbottom","stylefeaturebbbottom","stylefeaturebbottom","stylefeaturebottom","stylefeaturetop","stylefeaturettop","stylefeaturetttop","stylefeaturettttop","styleframe","subfamilythreshold","sublogofile","TextAllmatch","textfeaturebbbbottom","textfeaturebbbottom","textfeaturebbottom","textfeaturebottom","textfeaturetop","textfeaturettop","textfeaturetttop","textfeaturettttop","TextIdentical","TextNomatch","TextSimilar","tmpstack","topfeaturefalse","topfeaturenowfalse","topfeaturenowtrue","topfeaturetrue","ttopfeaturefalse","ttopfeaturenowfalse","ttopfeaturenowtrue","ttopfeaturetrue","tttopfeaturefalse","tttopfeaturenowfalse","tttopfeaturenowtrue","tttopfeaturetrue","ttttopfeaturefalse","ttttopfeaturenowfalse","ttttopfeaturenowtrue","ttttopfeaturetrue"]}
-,
-"texsort.sty":{"envs":{},"deps":{},"cmds":["sortlist","to","sep","compresslist","initarray","outarray","getarrayitem","setarrayitem","getarraylenght","setarraylenght","upheap","insertheapelem","downheap","removetop","sortlistarray"]}
-,
-"texsurgery.sty":{"envs":["run","runsilent"],"deps":["verbatim.sty","listings.sty","xcolor.sty","environ.sty","hyperref.sty"],"cmds":["theTSeval","theTSrun","theTSrunsilent","lstinlinesafe","eval","sage"]}
-,
-"textalpha.sty":{"envs":{},"deps":{},"cmds":["ensuregreek","greekscript","textAlpha","textBeta","textGamma","textDelta","textEpsilon","textZeta","textEta","textTheta","textIota","textKappa","textLambda","textMu","textNu","textXi","textOmicron","textPi","textRho","textSigma","textTau","textUpsilon","textPhi","textChi","textPsi","textOmega","textalpha","textbeta","textgamma","textdelta","textepsilon","textzeta","texteta","texttheta","textiota","textkappa","textlambda","textmu","textnu","textxi","textomicron","textpi","textrho","textsigma","textfinalsigma","textautosigma","texttau","textupsilon","textphi","textchi","textpsi","textomega","textpentedeka","textpentehekaton","textpenteqilioi","textpentemurioi","textstigma","textvarstigma","textKoppa","textkoppa","textqoppa","textQoppa","textStigma","textSampi","textsampi","textanoteleia","texterotimatiko","textdigamma","textDigamma","textdexiakeraia","textaristerikeraia","textmicro","textvarsigma","textstigmagreek","textkoppagreek","textKoppagreek","textStigmagreek","textSampigreek","textsampigreek","textdigammagreek","textDigammagreek","textmugreek","textnumeralsigngreek","textnumeralsignlowergreek","accdialytika","acctonos","accdasia","accpsili","accvaria","accperispomeni","prosgegrammeni","ypogegrammeni","accdialytikaperispomeni","accdialytikatonos","accdialytikavaria","accdasiaperispomeni","accdasiavaria","accdasiaoxia","accpsiliperispomeni","accpsilioxia","accpsilivaria","accinvertedbrevebelow","textsubarch","accbrevebelow","textsemicolon","textbetasymbol","textthetasymbol","textphisymbol","textpisymbol","textkappasymbol","textrhosymbol","textThetasymbol","textepsilonsymbol","textvarbeta","textvarkappa","textvarTheta","textvartheta","textvarpi","textvarrho"]}
-,
-"textarea.sty":{"envs":{},"deps":{},"cmds":["StartFromTextArea","StartFromHeaderArea","ExpandTextArea","RestoreTextArea"]}
-,
-"textcase.sty":{"envs":{},"deps":{},"cmds":["MakeTextUppercase","MakeTextLowercase","NoCaseChange"]}
-,
-"textcmds.sty":{"envs":{},"deps":{},"cmds":["mdash","ndash","qd","xd","ldq","rdq","lsq","rsq","bul","vsp","pdc","vrt","cir","til","bsl","cwm","qq","q","supsize","tsup","tsub","textprimechar","tprime","lara"]}
-,
-"textcomp.sty":{"envs":{},"deps":{},"cmds":["capitalacute","capitalbreve","capitalcaron","capitalcedilla","capitalcircumflex","capitaldieresis","capitaldotaccent","capitalgrave","capitalhungarumlaut","capitalmacron","capitalnewtie","capitalogonek","capitalring","capitaltie","capitaltilde","newtie","oldstylenums","textacutedbl","textascendercompwordmark","textasciiacute","textasciibreve","textasciicaron","textasciidieresis","textasciigrave","textasciimacron","textasteriskcentered","textbaht","textbardbl","textbigcircle","textblank","textborn","textbrokenbar","textbullet","textcapitalcompwordmark","textcelsius","textcent","textcentoldstyle","textcircled","textcircledP","textcolonmonetary","textcopyleft","textcopyright","textcurrency","textdagger","textdaggerdbl","textdblhyphen","textdblhyphenchar","textdegree","textdied","textdiscount","textdiv","textdivorced","textdollar","textdollaroldstyle","textdong","textdownarrow","texteightoldstyle","textestimated","texteuro","textfiveoldstyle","textflorin","textfouroldstyle","textfractionsolidus","textgravedbl","textguarani","textinterrobang","textinterrobangdown","textlangle","textlbrackdbl","textleaf","textleftarrow","textlegacyasteriskcentered","textlegacybardbl","textlegacybullet","textlegacydagger","textlegacydaggerdbl","textlegacyparagraph","textlegacyperiodcentered","textlegacysection","textlira","textlnot","textlquill","textmarried","textmho","textminus","textmu","textmusicalnote","textnaira","textnineoldstyle","textnumero","textohm","textonehalf","textoneoldstyle","textonequarter","textonesuperior","textopenbullet","textordfeminine","textordmasculine","textparagraph","textperiodcentered","textpertenthousand","textperthousand","textpeso","textpilcrow","textpm","textquotesingle","textquotestraightbase","textquotestraightdblbase","textrangle","textrbrackdbl","textrecipe","textreferencemark","textregistered","textrightarrow","textrquill","textsection","textservicemark","textsevenoldstyle","textsixoldstyle","textsterling","textsurd","textthreeoldstyle","textthreequarters","textthreequartersemdash","textthreesuperior","texttildelow","texttimes","texttrademark","texttwelveudash","texttwooldstyle","texttwosuperior","textuparrow","textwon","textyen","textzerooldstyle","t"]}
-,
-"textcsc.sty":{"envs":{},"deps":["iftex.sty","fontspec.sty"],"cmds":["cscshape","textcsc","textcscversionnumber"]}
-,
-"textfit.sty":{"envs":{},"deps":{},"cmds":["scaletoheight","scaletowidth","ifScalebyMagsteps","ScalebyMagstepstrue","ScalebyMagstepsfalse","ifNoisyFitting","NoisyFittingtrue","NoisyFittingfalse","magsteps","Fontname","docdate","filedate","fileversion"]}
-,
-"textfrac.sty":{"envs":{},"deps":{},"cmds":["textfrac","TextFrac"]}
-,
-"textglos.sty":{"envs":{},"deps":["graphicx.sty"],"cmds":["gl","xo","xt","xm","xv","xh","lingprestyle","lingpoststyle","lingexample","shorteq","nbrhyph","nbreq","nbrpunct"]}
-,
-"textgreek.sty":{"envs":{},"deps":{},"cmds":["scripttheta","straightepsilon","straightphi","straighttheta","textalpha","textAlpha","textbeta","textBeta","textchi","textChi","textdelta","textDelta","textepsilon","textEpsilon","texteta","textEta","textgamma","textGamma","textiota","textIota","textkappa","textKappa","textlambda","textLambda","textmu","textMu","textmugreek","textnu","textNu","textomega","textOmega","textomikron","textOmikron","textphi","textPhi","textpi","textPi","textpsi","textPsi","textrho","textRho","textsigma","textSigma","texttau","textTau","texttheta","textTheta","textupsilon","textUpsilon","textvarsigma","textxi","textXi","textzeta","textZeta","textgreekfontmap","textgreekfont","TextGreek","DeclareTextGreekSymbol"]}
-,
-"textopo.sty":{"envs":["textopo","helicalwheel","rotopo"],"deps":["color.sty","graphics.sty"],"cmds":["getsequence","MRs","Nterm","sequence","scaletopo","loopextent","loopfoot","flipNterm","flipCterm","clearMRs","anchor","membranecolors","borderthickness","labeloutside","labelinside","moveinsidelabel","moveoutsidelabel","broadenmembrane","thickenmembrane","hidemembrane","showmembrane","labelTMs","numcount","alphacount","Alphacount","romancount","Romancount","labelTM","moveTMlabel","TMlabelcolor","hideTMlabels","labelloops","labelloop","movelooplabel","looplabelcolor","hidelooplabels","showNterm","hideNterm","showCterm","hideCterm","labelstyle","labelregion","phosphorylation","glycosylation","countercolor","rulethickness","place","addtagtoNterm","addtagtoCterm","seqstart","applyshading","shadingcolors","allmatchspecial","allmatchspecialoff","standardresidues","similarpositions","conservedpositions","invariablepositions","donotshadestartMet","shadestartMet","hidelegend","showlegend","movelegend","helixstyle","scalewheel","symbolsize","wheelsperline","viewfromextra","viewfromintra","showmoment","hidemoment","Hmean","muH","muHmean","mudelta","momentcolor","scalemoment","showwheelnumbering","hidewheelnumbering","showbonds","hidebonds","setfamily","setseries","setshape","setsize","setfont","labelsrm","labelstiny","labelssf","labelsscriptsize","labelstt","labelsfootnotesize","labelsbf","labelssmall","labelsmd","labelsnormalsize","labelsit","labelslarge","labelssl","labelsLarge","labelssc","labelsLARGE","labelsup","labelshuge","labelsHuge","membranelabelsrm","membranelabelssf","membranelabelstt","membranelabelsmd","membranelabelsbf","membranelabelsup","membranelabelsit","membranelabelssl","membranelabelssc","membranelabelstiny","membranelabelsscriptsize","membranelabelsfootnotesize","membranelabelssmall","membranelabelsnormalsize","membranelabelslarge","membranelabelsLarge","membranelabelsLARGE","membranelabelshuge","membranelabelsHuge","looplabelsrm","looplabelssf","looplabelstt","looplabelsmd","looplabelsbf","looplabelsup","looplabelsit","looplabelssl","looplabelssc","looplabelstiny","looplabelsscriptsize","looplabelsfootnotesize","looplabelssmall","looplabelsnormalsize","looplabelslarge","looplabelsLarge","looplabelsLARGE","looplabelshuge","looplabelsHuge","TMlabelsrm","TMlabelssf","TMlabelstt","TMlabelsmd","TMlabelsbf","TMlabelsup","TMlabelsit","TMlabelssl","TMlabelssc","TMlabelstiny","TMlabelsscriptsize","TMlabelsfootnotesize","TMlabelssmall","TMlabelsnormalsize","TMlabelslarge","TMlabelsLarge","TMlabelsLARGE","TMlabelshuge","TMlabelsHuge","TeXtopo","alignname","Allmatch","allmatchresidues","analyzefalse","analyzetopo","analyzetrue","bsymA","bsymB","bsymC","bsymD","bsymE","bsymF","bsymG","bsymH","bsymI","bsymJ","bsymK","clearvariables","conservedresidues","cosE","cosENE","cosESE","cosN","cosNE","cosNNE","cosNNW","cosNW","cosS","cosSE","cosSSE","cosSSW","cosSW","cosW","cosWNW","cosWSW","directE","directENE","directESE","directN","directNE","directNNE","directNNW","directNW","directS","directSE","directSSE","directSSW","directSW","directW","directWNW","directWSW","displaysection","dotopo","filenameHMMTOP","filenamephd","filenameswiss","funcmodefalse","funcmodetrue","gapcolors","hidegrid","Identical","ifanalyze","iffuncmode","ifletter","ifshade","iloopcount","innerloopcount","legendcolor","letterfalse","lettertrue","lipoA","lipoB","lipoC","lipoD","lipoE","lipoF","lipoG","lipoH","lipoI","lipoJ","lipoK","loopcount","moveres","msfline","newelement","Nomatch","nomatchresidues","noPT","optionHMMTOP","optionphd","optionswiss","remodel","sfdcA","sfdcB","sfdcC","sfdcD","sfdcE","sfdcF","sfdcG","sfdcH","sfdcI","sfdcJ","sfdcK","shadefalse","shadetrue","showgrid","Similar","similarresidues","sincos","sinE","sinENE","sinESE","sinN","sinNE","sinNNE","sinNNW","sinNW","sinS","sinSE","sinSSE","sinSSW","sinSW","sinW","sinWNW","sinWSW","squareA","squareB","squareC","squareD","squareE","squareF","squareG","squareH","squareI","squareJ","squareK","standardparameters","structurefilename","structureline","TextAllmatch","TextIdentical","TextNomatch","TextSimilar","TM","tmpstack","treeA","treeB","treeC","treeD","treeE","treeF","treeG","treeH","treeI","treeJ","treeK"]}
-,
-"textpos.sty":{"envs":["textblock","textblock*"],"deps":["everyshi.sty","keyval.sty"],"cmds":["TPoptions","TPGrid","TPShowGrid","TPMargin","TPReferencePosition","TPHorizModule","TPVertModule","ifTPshowboxes","TPshowboxestrue","TPshowboxesfalse","TPboxrulesize","textblocklabel","showtextsize","textblockorigin","textblockcolour","textblockcolor","textblockrulecolour","textblockrulecolor","tekstblokkulur","tekstblokroolkulur"]}
-,
-"textualicomma.sty":{"envs":{},"deps":["amstext.sty"],"cmds":["textualicommafont","mathcomma"]}
-,
-"texvc.sty":{"envs":{},"deps":["amsfonts.sty","amsmath.sty","amssymb.sty","babel.sty","cancel.sty","color.sty","eurosym.sty","teubner.sty"],"cmds":["Alpha","Beta","Chi","Complex","Dagger","Darr","Epsilon","Eta","Harr","Iota","Kappa","Larr","Lrarr","Mu","N","Nu","Omicron","Q","R","Rarr","Reals","Rho","Tau","Uarr","Z","Zeta","alef","alefsym","ang","bull","clubs","cnums","dArr","darr","diamonds","exist","hAar","harr","hearts","image","infin","isin","lArr","lang","larr","lrArr","lrarr","natnums","omicron","plusmn","rArr","rang","rarr","real","reals","sdot","sect","spades","sub","sube","supe","thetasym","uArr","uarr","varcoppa","weierp","captionsgreek","dategreek","extrasgreek","noextrasgreek","greekscript","greektext","ensuregreek","textgreek","greeknumeral","Greeknumeral","greekfontencoding","textol","outlfamily","greekhyphenmins","Grtoday","anwtonos","katwtonos","qoppa","varqoppa","stigma","sampi","Digamma","ddigamma","euro","permill","textAlpha","textBeta","textGamma","textDelta","textEpsilon","textZeta","textEta","textTheta","textIota","textKappa","textLambda","textMu","textNu","textXi","textOmicron","textPi","textRho","textSigma","textTau","textUpsilon","textPhi","textChi","textPsi","textOmega","textalpha","textbeta","textgamma","textdelta","textepsilon","textzeta","texteta","texttheta","textiota","textkappa","textlambda","textmu","textnu","textxi","textomicron","textpi","textrho","textsigma","textfinalsigma","textautosigma","texttau","textupsilon","textphi","textchi","textpsi","textomega","textpentedeka","textpentehekaton","textpenteqilioi","textstigma","textvarstigma","textKoppa","textkoppa","textqoppa","textQoppa","textStigma","textSampi","textsampi","textanoteleia","texterotimatiko","textdigamma","textDigamma","textdexiakeraia","textaristerikeraia","textvarsigma","textstigmagreek","textkoppagreek","textStigmagreek","textSampigreek","textsampigreek","textdigammagreek","textDigammagreek","textnumeralsigngreek","textnumeralsignlowergreek","textpentemuria","textpercent","textmicro","textschwa","textampersand","accdialytika","acctonos","accdasia","accpsili","accvaria","accperispomeni","prosgegrammeni","ypogegrammeni","accdialytikaperispomeni","accdialytikatonos","accdialytikavaria","accdasiaperispomeni","accdasiavaria","accdasiaoxia","accpsiliperispomeni","accpsilioxia","accpsilivaria","accinvertedbrevebelow","textsubarch","accbrevebelow","prefacename","bibname","chaptername","enclname","ccname","headtoname","pagename","seename","alsoname","proofname","glossaryname","captionsenglish","dateenglish","extrasenglish","noextrasenglish","englishhyphenmins","britishhyphenmins","americanhyphenmins"]}
-,
-"tfrupee.sty":{"envs":{},"deps":{},"cmds":["rupee","rupeefont"]}
-,
-"tgadventor.sty":{"envs":{},"deps":["kvoptions.sty"],"cmds":{}}
-,
-"tgbonum.sty":{"envs":{},"deps":["kvoptions.sty"],"cmds":{}}
-,
-"tgchorus.sty":{"envs":{},"deps":["kvoptions.sty"],"cmds":{}}
-,
-"tgcursor.sty":{"envs":{},"deps":["kvoptions.sty"],"cmds":{}}
-,
-"tgheros.sty":{"envs":{},"deps":["kvoptions.sty"],"cmds":{}}
-,
-"tgothic.sty":{"envs":{},"deps":{},"cmds":["texttgoth","tgothfamily","Tienc"]}
-,
-"tgpagella.sty":{"envs":{},"deps":["kvoptions.sty"],"cmds":{}}
-,
-"tgschola.sty":{"envs":{},"deps":["kvoptions.sty"],"cmds":{}}
-,
-"tgtermes.sty":{"envs":{},"deps":["kvoptions.sty"],"cmds":{}}
-,
-"thaienum.sty":{"envs":{},"deps":["alphalph.sty","enumitem.sty"],"cmds":["thaimultialph","thaimultiAlph"]}
-,
-"thaispec.sty":{"envs":["thailang","theorem","lemma","corollary","proposition","definition","axiom","example","remark","note"],"deps":["kvoptions.sty","fontspec.sty","ucharclasses.sty","setspace.sty","polyglossia.sty","xstring.sty","xpatch.sty","mathtools.sty","amssymb.sty","amsthm.sty","mathspec.sty"],"cmds":["thaifont","thaialph","thalph","thainum","thainumber","thaidigits","thdigits","thaispecver"]}
-,
-"thalie.sty":{"envs":["dramatis","charactergroup","castgroup","dramatisenv","dramatischaractergroup","dramatischaractercastgroup","dida"],"deps":["etoolbox.sty","pgfopts.sty","tabularx.sty","xspace.sty"],"cmds":["setthalieoptions","play","act","scene","interlude","curtain","customplay","customact","customscene","theact","theplay","thescene","playmark","actmark","scenemark","character","cast","characterspace","dramatischaracter","dramatischaractername","dramatischaracterdescription","dramatischaractercast","dramatiscast","disposablecharacter","setcharactername","speakswithoutdirection","speakswithdirection","did","onstage","pause","pauseverse","resumeverse","adjustverse","playname","actname","scenename","interludename","pausename","curtainname"]}
-,
-"theatre.sty":{"envs":["theatre"],"deps":["enumitem.sty"],"cmds":["TheatreComment","TheatreCreerUnRole","TheatreIniCpteReplique","TheatreMvt","TheatreNomDuRole","TheatreEcarterRepliques","TheatreEntreNomEtReplique","TheatreTailleRoleCpte","TheatreTailleRoleNom","TheatreSerrerRepliques","TheatreXparagraph","TheatreXparindent","TheatreXparskip","theTheatreCpteReplique"]}
-,
-"theorem.sty":{"envs":{},"deps":{},"cmds":["theoremstyle","theorembodyfont","theoremheaderfont","theorempreskipamount","theorempostskipamount"]}
-,
-"theoremref.sty":{"envs":{},"deps":{},"cmds":["thlabel","thref","thnameref","th"]}
-,
-"thepdfnumber.sty":{"envs":{},"deps":{},"cmds":["thepdfnumber","thepdfnumberNormZeroOne"]}
-,
-"thermodynamics.sty":{"envs":["thermobar"],"deps":["amstext.sty"],"cmds":["allbut","allbutlastand","allcomponents","allMs","allMsbut","allmus","allmusbut","allNs","allNsbut","allWs","allWsbut","allXs","allXsbut","allYs","allYsbut","alphaP","alphaS","Am","Apm","As","At","Bm","Bpm","Bs","Bt","compressibilitysymbol","cP","cPpm","cPs","cPt","cV","cVpm","cVs","cVt","dbar","DeclareSubscrSymbol","Deltaf","Deltafus","Deltamix","Deltarxn","Deltasub","Deltavap","Em","Epm","Es","Et","excess","expansivitysymbol","FE","FEpm","FEs","FEt","Fm","fmix","formation","Fpm","fpure","FR","FRpm","FRs","FRt","Fs","fsat","fstd","Ft","fusion","gammamol","gammarat","GE","GEpm","GEs","GEt","Gm","Gpm","GR","GRpm","GRs","GRt","Gs","Gt","HE","heatcapacitysymbol","Henrymol","Henryrat","HEpm","HEs","HEt","Hm","Hpm","HR","HRpm","HRs","HRt","Hs","Ht","IG","IGM","IS","Jacobian","kappaS","kappaT","Lm","Lpm","Ls","Lt","mixing","Mm","Mpm","Ms","Mt","ncomponents","Nt","Partial","PartialBigg","Partialbigg","PartialClose","PartialEmptyClose","PartialMixSecond","PartialMixSecondBigg","PartialMixSecondbigg","partialmolar","PartialOpen","PartialSecond","PartialSecondBigg","PartialSecondbigg","phimix","phipure","phisat","prodall","Psat","Pstd","Pvap","Qm","Qs","Qt","reaction","residual","sat","SE","SEpm","SEs","SEt","Sm","Spm","square","SR","SRpm","SRs","SRt","Ss","St","std","sublimation","sumall","sumallbutlast","UE","UEpm","UEs","UEt","Um","Upm","UR","URpm","URs","URt","Us","Ut","vaporization","VE","VEpm","VEs","VEt","Vm","Vpm","VR","VRpm","VRs","VRt","Vs","Vt","Wm","Ws","Wt"]}
-,
-"thesis-ekf.cls":{"envs":{},"deps":["kvoptions.sty","s-report.cls","iftex.sty","cmap.sty","setspace.sty","hyperref.sty","geometry.sty","lmodern.sty","fixcmex.sty","etoolbox.sty","graphicx.sty","upquote.sty","color.sty","cmupint.sty","newtxtext.sty","newtxmath.sty"],"cmds":["authorcaption","city","collaborator","institute","logo","supervisor","supervisorcaption"]}
-,
-"thinsp.sty":{"envs":{},"deps":{},"cmds":["stretchthinspace","stretchnegthinspace","stretchthinthinspace","thinthinspace"]}
-,
-"thm-autoref.sty":{"envs":{},"deps":["thm-patch.sty","aliasctr.sty","parseargs.sty","keyval.sty"],"cmds":["Autoref"]}
-,
-"thm-kv.sty":{"envs":{},"deps":["keyval.sty","kvsetkeys.sty","thm-patch.sty"],"cmds":["declaretheoremstyle","declaretheorem","thmcontinues"]}
-,
-"thm-listof.sty":{"envs":{},"deps":["thm-patch.sty","keyval.sty","kvsetkeys.sty"],"cmds":["listoftheorems","listtheoremname","setlisttheoremstyle","thmtformatoptarg","showtheorems","ignoretheorems","onlynamedtheorems"]}
-,
-"thm-patch.sty":{"envs":{},"deps":["parseargs.sty"],"cmds":["addtotheorempreheadhook","addtotheorempostheadhook","addtotheoremprefoothook","addtotheorempostfoothook"]}
-,
-"thm-restate.sty":{"envs":["restatable","restatable*"],"deps":["thmtools.sty"],"cmds":["restatable","endrestatable"]}
-,
-"thmbox.sty":{"envs":["thmbox","leftbar","proof","example"],"deps":["keyval.sty"],"cmds":["thmboxoptions","newtheorem","examplename","proofname","newboxtheorem"]}
-,
-"thmtools.sty":{"envs":{},"deps":["thm-patch.sty","thm-autoref.sty","thm-restate.sty"],"cmds":["NAME","NUMBER","NOTE"]}
-,
-"thorshammer.sty":{"envs":["docassembly","makeClassFiles"],"deps":["xkeyval.sty","insdljs.sty","exerquiz.sty","eq-save.sty"],"cmds":["autoCopyOff","autoCopyOn","bClassData","classMember","classPath","completeMsgFld","DeclareCoverPage","declareQuizBody","distrQuizzes","distrToInstrOff","distrToInstrOn","distrToStudentsOff","distrToStudentsOn","enumQuizzes","EsH","essayitem","essayQ","EsW","FirstName","flattenOff","flattenOn","freezeOrSave","FullName","InputClassData","InputFormattedClass","InputQuizBody","instrAutoCloseOff","instrAutoCloseOn","instrAutoSaveOff","instrAutoSaveOn","instrPath","LastName","LngPtsFld","markQz","oct","QzVer","rhPgNumsOnly","sadQuizzes","setInitMag","ShrtPtsFld","stuAutoCloseOff","stuAutoCloseOn","stuAutoSaveOff","stuAutoSaveOn","studentGrade","studentReport","stuSaveBtn","thfullnameFmt","thQuizHeader","thQuizHeaderLayout","thQuizName","thQuizTrailer","thQzHeaderCQ","thQzHeaderCS","thQzHeaderL","thQzHeaderR","thqzname","thQzName","TotalsFld","useEndQuizThor","useNameToCustomize","AbsPth","autoCopy","basicmethodsfalse","basicmethodstrue","bDistrQuizzes","bEnumQuizzes","bFlattenState","bUseClass","cFS","cFSth","classEntries","classEntriesDef","ClassEntriesfalse","ClassEntriestrue","classmember","ClassPath","ClassPathFull","classPathIsCHTTP","completeMsgFldV","DeclareQuizSAVE","distrToInstr","distrToStudents","doNotShirtSonsHdrs","EndQzWarningMsg","essayQFldTU","executeSave","fmtclass","freezeQuiz","freezeQuizFldCA","freezeQuizFldTU","ifbasicmethods","IfbQzChkSnippet","ifClassEntries","ifthCoverPage","ifthordinary","ifthtestmode","ifuseclassOpt","ifUseStuSaveAsDialog","InitQzMsg","inputWebCfg","instrAutoClose","instrAutoSave","InstrPath","InstrPathFull","instrPathIsCHTTP","instrSave","instrSaveFldCA","instrSaveFldTU","ISSTAR","LngPtsFldFmt","markQzFldCA","markQzFldTU","MarkWarningMsg","mkClFlsSpcls","myFQHFmt","NoNumEnteredMsg","nQs","procThisLine","pwdInstrFld","pwdInstrFldTU","qzLtr","rasSolns","rmSTAR","sadMultQuizzes","SecondSaveMsg","setArrayLength","setClassArray","setfilesuffix","ShrtPtsFldFmt","stmarkupbox","stmarkupHeight","stmarkupTextSize","stmarkupWidth","stuASOn","stuAutoClose","stuAutoCloseScript","stuAutoSave","stuAutoSaveScript","stuSaveBtnCA","stuSaveBtnTU","thClassFS","thCoverPagefalse","thCoverPagetrue","thCvrPg","thEnumQuizzes","thInstrFS","thIsCP","thisQuizOrig","thordinaryfalse","thordinarytrue","thOrdQz","ThorsAlertTitle","thPageOne","thQHFirstName","thQHGrade","thQHLastName","thQHPoints","thQzSolnMrkr","thtestmodefalse","thtestmodetrue","thUseNameToCustomize","TooMuchCreditMsg","TotalsFldFmt","tstForSTAR","useclassOptfalse","useclassOpttrue","UseStuSaveAsDialogfalse","useStuSaveAsDialogOff","useStuSaveAsDialogOn","UseStuSaveAsDialogtrue","wrtQzInfo"]}
-,
-"threadcol.sty":{"envs":{},"deps":["ifpdf.sty","etoolbox.sty"],"cmds":["setthreadname"]}
-,
-"threeparttable.sty":{"envs":["threeparttable","measuredfigure","tablenotes"],"deps":{},"cmds":["tnote","TPTminimum","TPTrlap","TPTtagStyle","TPTnoteLabel","TPTnoteSettings","TPTdoTablenotes"]}
-,
-"threeparttablex.sty":{"envs":["ThreePartTable","TableNotes"],"deps":["threeparttable.sty","environ.sty"],"cmds":["insertTableNotes","tnotex","setTableNoteFont","note","source","TPTLnotename","TPTLsourcename","TPTLnotesnamefontcommand"]}
-,
-"thsmc.sty":{"envs":{},"deps":["fontenc.sty","textcomp.sty","keyval.sty"],"cmds":["ProcessOptionsWithKV","DH","NG","dj","ng","k","guillemotleft","guillemotright","guilsinglleft","guilsinglright","quotedblbase","quotesinglbase","textquotedbl","DJ","th","TH","dh","Hwithstroke","hwithstroke","textogonekcentered","guillemetleft","guillemetright"]}
-,
-"thumb.sty":{"envs":{},"deps":["fancyhdr.sty","minitoc.sty"],"cmds":["thumbmini","Overviewpage","thumbwidth","thumbheight","thumbskip","overviewskip","thumbchap","thumbHskip","thethumbheight","thethumbwidth","thelthumbskip","therthumbskip","theoverviewskip","Prefacename","ifPreface","Prefacetrue","Prefacefalse","preface","thumbfilledbox","rthumb","lthumb","ovrthumb","thumbbox","thumbfilledoval","thumboval","thumbheaderfont","Overviewtitlefont","Overviewauthorfont","Overviewdatefont","thumbtitlefont","thumbauthorfont","thumbdatefont","thumbtitle","thumbauthor","thumbdate","Overviewtitle","ifAppendix","Appendixtrue","Appendixfalse","theappendix","thumbspace","thumbsecnum","Overviewname","Overviewfont","secname","thumboverview","thethumbhskip","theOverviewnumber","theline","thethumbline","ifOverview","Overviewtrue","Overviewfalse","OverviewPage","thethumbovrwidth","thumbtmp","ovrout","HOLD","tmptitlefont","tmpauthorfont","tmpdatefont","tmpand","thumbovr","tempa","thethumbtmp","filedate","fileversion"]}
-,
-"thumbs.sty":{"envs":{},"deps":["kvoptions.sty","atbegshi.sty","xcolor.sty","picture.sty","alphalph.sty","pageslts.sty","pagecolor.sty","rerunfilecheck.sty","infwarerr.sty","ltxcmds.sty","atveryend.sty"],"cmds":["thumbsinfo","addthumb","addtitlethumb","stopthumb","continuethumb","thumbsoverview","thumbsoverviewback","thumbsoverviewverso","thumbsoverviewdouble","thumbnewcolumn","addthumbsoverviewtocontents","thumbsnophantom","clearotherdoublepage","thumbcontents","thumborigaddthumb","thumbsorigglossary","thumbsorigindex","thumbsoriglabel","thumbsoverviewprint"]}
-,
-"thumby.sty":{"envs":{},"deps":["tikz.sty","perltex.sty","bophook.sty"],"cmds":["thumbyNumberFormat","thumbySides","thumbyBackground","thumbyForeground","thumbyPageHeight","thumbyThumbWidth","thumbySetup","thumbyTotalChapters","thumbychapnum","thumbyprintthumb","thumbyprintthumbleft","thumbyprintthumbright"]}
-,
-"thuthesis.cls":{"envs":["committee","abstract","abstract*","denotation","axiom","theorem","definition","proposition","lemma","conjecture","proof","corollary","example","exercise","assumption","remark","problem","acknowledgements","survey","translation","translation-index","resume","achievements","comments","resolution","acknowledgement","publications"],"deps":["iftex.sty","kvdefinekeys.sty","kvsetkeys.sty","kvoptions.sty","s-ctexbook.cls","etoolbox.sty","filehook.sty","xparse.sty","geometry.sty","fancyhdr.sty","titletoc.sty","notoccite.sty","amsmath.sty","graphicx.sty","subcaption.sty","pdfpages.sty","enumitem.sty","environ.sty","footmisc.sty","xeCJKfntef.sty","array.sty","booktabs.sty","url.sty","natbib.sty","unicode-math.sty","bibunits.sty","newtxmath.sty","bm.sty","newtxtext.sty"],"cmds":["thusetup","copyrightpage","listoffigures","listoftables","listofequations","listofalgorithms","equcaption","inlinecite","statement","record","spine","blacksquare","bm","checkmark","cls","cs","env","file","pkg","square","CJKmove","CJKmovesymbol","CJKpunctsymbol","CJKsymbol","listequationname","listoffiguresandtables","thuthesis","version","onlinecite"]}
-,
-"ticket.sty":{"envs":{},"deps":["ifthen.sty","calc.sty"],"cmds":["ticketdefault","ticket","ticketreset","backside","ticketskip","ticketNumbers","ticketWidth","ticketHeight","ticketSize","ticketDistance","ticketToUse","filedate","fileversion"]}
-,
-"ticollege.sty":{"envs":{},"deps":["xcolor.sty","newtxtt.sty","tikz.sty","tikzlibrarycalc.sty","tikzlibraryshapes.sty","tikzlibraryshadows.sty","tikzlibrarybackgrounds.sty","tikzlibrarybabel.sty","ifthen.sty","xkeyval.sty","mathtools.sty","amssymb.sty","multido.sty","multirow.sty"],"cmds":["TiC","Aff","TiRacine","ContrastDown","ContrastUp","Div","TiCMenu","TiCScreen","TiCCalc"]}
-,
-"tikz-3dplot.sty":{"envs":{},"deps":["pgf.sty","ifthen.sty","tikzlibrarycalc.sty","tikzlibrary3d.sty"],"cmds":["tdplotsetmaincoords","tdplotsetrotatedcoords","tdplotsetrotatedcoordsorigin","tdplotresetrotatedcoordsorigin","tdplotsetthetaplanecoords","tdplotsetrotatedthetaplanecoords","tdplotsetcoord","tdplottransformmainrot","tdplotresx","tdplotresy","tdplotresz","tdplotresphi","tdplotrestheta","tdplottransformrotmain","tdplottransformmainscreen","tdplotgetpolarcoords","tdplotcrossprod","tdplotdefinepoints","tdplotdrawarc","tdplotdrawpolytopearc","tdplotvertexx","tdplotvertexy","tdplotvertexz","tdplotax","tdplotay","tdplotaz","tdplotbx","tdplotby","tdplotbz","tdplotsphericalsurfaceplot","tdplottheta","tdplotphi","tdplotr","tdplotsetpolarplotrange","tdplotresetpolarplotrange","tdplotshowargcolorguide","tdplotsinandcos","tdplotmult","tdplotdiv","tdplotlowerphi","tdplotupperphi","tdplotlowertheta","tdplotuppertheta","tdplotcalctransformmainrot","tdplotcalctransformrotmain","tdplotcalctransformmainscreen","tdplotcheckdiff","tdplotdosurfaceplot","tdplotsimplesetcoord","tdplotmaintheta","tdplotmainphi","sintheta","sinphi","stsp","stcp","ctsp","ctcp","raarot","rabrot","racrot","rbarot","rbbrot","rbcrot","rcarot","rcbrot","rccrot","sinalpha","sinbeta","singamma","cosalpha","cosbeta","cosgamma","sasb","sbsg","sasg","sasbsg","sacb","sacg","sacbsg","sacbcg","casb","cacb","cacg","casg","cacbsg","cacbcg","raaeul","rabeul","raceul","rbaeul","rbbeul","rbceul","rcaeul","rcbeul","rcceul","tdplotalpha","tdplotbeta","tdplotgamma","raaeaa","rabeba","raceca","raaeab","rabebb","racecb","raaeac","rabebc","racecc","rbaeaa","rbbeba","rbceca","rbaeab","rbbebb","rbcecb","rbaeac","rbbebc","rbcecc","raarc","rabrc","racrc","rbarc","rbbrc","rbcrc","sinthetavec","costhetavec","stcpv","stspv","sinphivec","cosphivec","tdplottemp","ax","ay","az","bx","by","bz","tdplotstartphi","origviewthetastep","origviewphistep","originalphi","originaltheta","tdplotsuperfudge","viewphistart","viewphistep","viewphiinc","viewphiend","viewthetastep","viewthetastart","viewthetaend","viewthetainc","nextphi","curlongitude","curlatitude","curphi","logictest","phaseshift","colorarg","tdplotx","tdploty","tdplothuestep","tdplotxsize","tdplotysize","tdplotyscale","tdplotstarty","tdplotstopy","tdplotstartx","tdplotstopx","vxcalc","vycalc","vzcalc","vcalc","vxycalc"]}
-,
-"tikz-among-us-fancyhdr.sty":{"envs":{},"deps":["tikz-among-us.sty"],"cmds":{}}
-,
-"tikz-among-us-watermark-eso-pic.sty":{"envs":{},"deps":["tikz-among-us.sty","eso-pic.sty","kvoptions.sty"],"cmds":["ifFG","FGtrue","FGfalse","myboxAmongUs"]}
-,
-"tikz-among-us.sty":{"envs":{},"deps":["tikz.sty","tikzlibrarycalc.sty","tikzlibraryshadings.sty","xifthen.sty"],"cmds":["amongUsOriginal","amongUsEyesI","amongUsEyesAngryI","amongUsEyesVeryangryI","amongUsEyesHappyI","amongUsEyesScaredI","amongUsBackpackI","amongUsBodyI","amongUsI","impostorSmile","impostorTeethUp","impostorTeethLw","impostorTeeth","impostorI","amongUsGhostBodyI","amongUsGhostI","amoongussCapInnerDetail","amoongussCapWhite","amoongussCapI","amoongussBodyI","amoongussNoseI","amoongussLeftHandI","amoongussRightHandI","amoongussI","amoongussGhostBodyI","amoongussGhostI","amongUsHandsA","amongUsHandsB","amongUsHandsC","amongUsHandsD","amongUsHandsE","amongUsHandsF","amongUsHandsG","amongUsEyesII","amongUsEyesAngryII","amongUsEyesVeryangryII","amongUsEyesHappyII","amongUsEyesScaredII","amongUsBackpackII","amongUsBodyII","amongUsII","amongUsGhostBodyII","amongUsGhostII","impostorII","amoongussCapII","amoongussBodyII","amoongussNoseII","amoongussLeftHandII","amoongussRightHandII","amoongussII","amoongussGhostBodyII","amoongussGhostII","amongUsEyesIII","amongUsBodyIII","amongUsIII"]}
-,
-"tikz-bagua.sty":{"envs":{},"deps":["tikz.sty","xstring.sty","bitset.sty","xparse.sty","xintexpr.sty"],"cmds":["taiji","xtaiji","drawliangyi","liangyi","sixiang","bagua","Bagua"]}
-,
-"tikz-cd.sty":{"envs":{},"deps":["tikz.sty"],"cmds":{}}
-,
-"tikz-dependency.sty":{"envs":["dependency","deptext"],"deps":["environ.sty","tikz.sty","tikzlibrarymatrix.sty","tikzlibrarybackgrounds.sty","tikzlibrarycalc.sty","tikzlibrarypatterns.sty","tikzlibrarypositioning.sty","tikzlibraryfit.sty","tikzlibraryshapes.sty"],"cmds":["depkeys","depedge","deproot","wordgroup","groupedge","depstyle","matrixref","wordref","rootref","storelabelnode","storefirstcorner","storesecondcorner","settgtlayer","anchorpoint","distance","source","offa","offb","dest","depname","xca","xcb","yca","ycb"]}
-,
-"tikz-dimline.sty":{"envs":{},"deps":["tikz.sty","pgfplots.sty","ifthen.sty","tikzlibrarycalc.sty","tikzlibrarydecorations.markings.sty"],"cmds":["dimline"]}
-,
-"tikz-feynhand.sty":{"envs":["feynhand"],"deps":["tikz.sty","pgfopts.sty","tikzlibrarygraphs.sty","tikzlibrarycalc.sty","tikzlibrarydecorations.sty","tikzlibrarydecorations.markings.sty","tikzlibrarydecorations.pathmorphing.sty","tikzlibrarydecorations.pathreplacing.sty","tikzlibraryexternal.sty","tikzlibrarypatterns.sty","tikzlibrarypositioning.sty","tikzlibraryshapes.geometric.sty"],"cmds":["tikzfeynhandset","feynhand","endfeynhand","vertex","propagator","propag","iftikzfeynhandallowemptynode","tikzfeynhandallowemptynodetrue","tikzfeynhandallowemptynodefalse","iftikzfeynhandvertex","tikzfeynhandvertextrue","tikzfeynhandvertexfalse","feynhanddotsize","feynhandblobsize","feynhandlinesize","feynhandarrowsize","feynhandtopsep","feynhandtopsepcolor"]}
-,
-"tikz-feynman.sty":{"envs":["feynman"],"deps":["tikz.sty","ifluatex.sty","pgfopts.sty","tikzlibrarycalc.sty","tikzlibrarydecorations.sty","tikzlibrarydecorations.markings.sty","tikzlibrarydecorations.pathmorphing.sty","tikzlibrarydecorations.pathreplacing.sty","tikzlibrarygraphs.sty","tikzlibrarypatterns.sty","tikzlibrarypositioning.sty","tikzlibraryshapes.geometric.sty","tikzlibrarygraphdrawing.sty"],"cmds":["feynmandiagram","tikzfeynmanset","vertex","diagram"]}
-,
-"tikz-imagelabels.sty":{"envs":["annotationimage"],"deps":["tikz.sty","tikzlibrarycalc.sty","tikzlibrarydecorations.sty","tikzlibrarymath.sty"],"cmds":["imagelabelset"]}
-,
-"tikz-inet.sty":{"envs":{},"deps":["tikz.sty","ifthen.sty"],"cmds":["inetcell","inetwire","inetloop","inetwirecoords","inetwirefree","inetbox","inetprombox","inetnofancy","inetfancy","inetcellstyle","inetwirestyle","inetboxstyle","inetcolor","inetsetfancycellstyle","inetsetfancywirestyle","inetoptions"]}
-,
-"tikz-kalender.cls":{"envs":{},"deps":["ifluatex.sty","ifxetex.sty","pgfkeys.sty","etoolbox.sty","ragged2e.sty","fontenc.sty","textcomp.sty","lmodern.sty","tgheros.sty","geometry.sty","inputenc.sty","babel.sty","translator.sty","tikz.sty","tikzlibrarycalendar.sty"],"cmds":["setup","makeKalender","period","event","theweeknumber","DH","dh","dj","DJ","guillemetleft","guillemetright","guillemotleft","guillemotright","guilsinglleft","guilsinglright","Hwithstroke","hwithstroke","k","NG","ng","quotedblbase","quotesinglbase","textogonekcentered","textquotedbl","th","TH"]}
-,
-"tikz-lake-fig.sty":{"envs":{},"deps":["xcolor.sty","tikz.sty","tikzlibrarycalc.sty","pbox.sty","tabularx.sty","array.sty"],"cmds":["mystrut","lakediagramgreen","lakediagramblue","isolated","headwater","primary","secondary","secondarypluswatershed","connectivitydiagram","secondaryprofile","secondaryprofileflatequal","primaryprofileflatequal","headwaterprofileflatequal","isolatedprofileflatequal","headwaterprofile","primaryprofile","isolatedprofile","primaryprofileplus","secondaryprofileplus","primaryprofileblue","primaryprofilegreen","isolatedflux","isolatedwireframe","secondarywireframe","watershedconnectivity","incrementalcumulativeloads","retentiontrapping"]}
-,
-"tikz-layers.sty":{"envs":{},"deps":["tikz.sty"],"cmds":{}}
-,
-"tikz-mirror-lens.sty":{"envs":{},"deps":["tikz.sty","tikzlibrarycalc.sty","tikzlibrarymath.sty","tikzlibrarydecorations.sty","tikzlibrarydecorations.markings.sty"],"cmds":["mirrorSphGauss","mirrorSphGaussCoord","mirrorSphGaussFixed","mirrorSphGaussFixedCoord","lensSphGauss","lensSphGaussCoord","lensSphGaussFixed","lensSphGaussFixedCoord","mirrorLensObjIma","mirrorLensCoord","mirrorBase","mirrorPts","mirrorRays","lensBase","lensPts","lensRays","mirrorMath","lensMath","lensMathL","lensSphGaussL","lensSphGaussLCoord","lensSphGaussLFixed","lensSphGaussLFixedCoord"]}
-,
-"tikz-network.sty":{"envs":["Layer"],"deps":["xifthen.sty","xkeyval.sty","tikz.sty","datatool.sty","graphicx.sty","trimspaces.sty","tikzlibrarypositioning.sty","tikzlibrary3d.sty","tikzlibraryfit.sty","tikzlibrarycalc.sty","tikzlibrarybackgrounds.sty","tikzlibraryarrows.meta.sty","tikzlibraryshapes.geometric.sty"],"cmds":["Vertex","Edge","Text","Vertices","Edges","Plane","SetDefaultUnit","SetDistanceScale","SetLayerDistance","SetCoordinates","SetVertexStyle","SetEdgeStyle","EdgesNotInBG","EdgesInBG","SetTextStyle","SetPlaneStyle","SetPlaneWidth","SetPlaneHeight"]}
-,
-"tikz-opm.sty":{"envs":{},"deps":["tikz.sty","tikzlibraryshapes.geometric.sty","tikzlibrarycalc.sty","tikzlibrarypositioning .sty","tikzlibraryshapes.multipart.sty","makeshape.sty","amsmath.sty"],"cmds":["defaulttriangleanchors","defaulttrianglelengths","opmInstance","trianglepath"]}
-,
-"tikz-page.sty":{"envs":{},"deps":["calc.sty","fancyhdr.sty","graphicx.sty","tikz.sty","tikzlibraryplotmarks.sty","tikzlibrarycalc.sty","tikzlibraryshapes.sty","tikzlibrarypositioning.sty","tikzlibrarydecorations.text.sty","textpos.sty"],"cmds":["tpflip","tikzpageputanchorsdefaults","tikzpageputanchorsbody","tikzpageputanchorsmarginpar","tikzpageputanchorsheader","tikzpageputanchorsfooter","tikzpageputanchorstop","tikzpageputanchorsright","tikzpageputanchorsbottom","tikzpageputanchorsleft","tikzpageputanchors","tpshowframes","tpfancyhdrdefault","tikzpage","pkgfiledate","pkgfileversion"]}
-,
-"tikz-palattice.sty":{"envs":["lattice","labeldistance","fade"],"deps":["tikz.sty","ifthen.sty","siunitx.sty","xargs.sty","etoolbox.sty","iflang.sty","tikzlibrarycalc.sty","tikzlibrarypositioning.sty","tikzlibraryfit.sty","tikzlibrarychains.sty"],"cmds":["drift","dipole","quadrupole","sextupole","corrector","kicker","cavity","solenoid","beamdump","source","screen","valve","marker","start","rotate","setangle","goto","drawrule","legend","completelegend","setlegendtext","addlegendentry","turnlabels","northlabels","southlabels","rotatelabels","setlabeldistance","resetlabeldistance","setlabelfont","setlinecolor","resetlinecolor","setelementcolor","resetelementcolor","setlabelcolor","savecoordinate","angleinc","corners","declarecoords","dist","elementheight","elementlabel","elementwidth","emptycustomlegendkeys","h","iang","iinc","jinc","labelanchor","labelang","labelcolor","labeldist","labelfont","labelrot","len","markerlen","marklabelang","mylist","points","ra","rectangleelement","ri","saveang","savelabeldist","savescal","scal","straightlength","updatelabelanchor","updatemarkerlabelanchor","winkel"]}
-,
-"tikz-qtree.sty":{"envs":{},"deps":["tikz.sty","pgftree.sty"],"cmds":["Tree","edge"]}
-,
-"tikz-timing.sty":{"envs":["tikztimingtable","extracode","background"],"deps":["tikz.sty","tikzlibrarybackgrounds.sty","environ.sty"],"cmds":["texttiming","timing","extracode","endextracode","tablegrid","fulltablegrid","nrows","rowdist","coldist","twidth","horlines","vertlines","tableheader","tablerules","background","endbackground","tikztimingsetwscale","setwscale","wscale","xunit","yunit","slope","lslope","zslope","dslope","tikztimingmetachar","usetikztiminglibrary","celltiming","endcelltiming","tikztimingcounter","tikztimingsetcounter","RaisingEdge","FallingEdge","ShortPulseHigh","ShortPulseLow","PulseHigh","PulseLow","LongPulseHigh","LongPulseLow","textifsym","anchoralias","anchorpoints","anchorpoint","fromchar","tochar","tikztimingwidth","timingwidth","timingheight","charc","charb","abc","list","fwidth","gslope","style","bgstyle","nstyle","newdraw","newdrawns","code","tikztimingsetslope","tikztimingsetdslope","tikztimingsetzslope","tikztiminguse","tikztimingdef","tikztimingcpy","tikztiminglet","tikztimingchar","tikztimingecopy"]}
-,
-"tikz-trackschematic.sty":{"envs":{},"deps":["tikz.sty","xkeyval.sty","etoolbox.sty","tikzlibrarycalc.sty","tikzlibraryintersections.sty","tikzlibrarypatterns.sty","booktabs.sty","xltabular.sty","multicol.sty","adjustbox.sty"],"cmds":["tsFullSymbology","tsSymbol","maintrack","secondarytrack","sidetrack","tracklabel","bufferstop","trackclosure","turnout","crossing","slipturnout","derailer","parkedvehicles","shunting","train","signal","distantsignal","speedsignal","speedsign","blocksignal","routesignal","shuntsignal","shuntlimit","berthsignal","berthsign","viewpoint","clearingpoint","standardclearing","blockclearing","routeclearing","brakingpoint","movementauthority","dangerpoint","route","directioncontrol","balise","transmitter","trackloop","platform","levelcrossing","bridge","interlocking","hump","pylon","distantpoweroff","poweroff","poweron","distantpantographdown","pantographdown","pantographup","wirelimit","trackdistance","berth","measureline","hectometer","trackmarking","background","barrier","foreground","objectwidth","roadwidth","shiftleft","shiftright","side","sidefactor","trafficfactor","trafficpractice","align","coordcommand","facefactor","labelcommand","labelcontent","labelcoord","signalcolor","basecoord","hectometercolor","objectlength","backwardpoints","branch","branchfactor","forwardpoints","friction","labelcontentleft","labelcontentright","operationmode","patterntype","points","along","alongswitched","distantspeed","face","oppose","opposeswitched","speed","trafficfactorTEST","trafficfactorX","type","baseX","baseY","bendfactor","bendleftcoord","bendlength","bendrightcoord","bendrightX","bendrightY","bendX","bendY","frontBendfactor","frontBendX","labelalign","labelanchor","rearBendfactor","rearBendX","rearBendY","trainrun"]}
-,
-"tikz-truchet.sty":{"envs":["rotatehex"],"deps":["tikz.sty"],"cmds":["truchetsquare","diagonalsquare","tileA","tileB","tileC","tileD","truchethex","truchetsplithex","truchetcube"]}
-,
-"tikz-uml.sty":{"envs":["umlpackage","umlsystem","umlstate","umlseqdiag","umlcall","umlcallself","umlfragment","umlcomponent"],"deps":["ifthen.sty","tikz.sty","tikzlibrarybackgrounds.sty","tikzlibraryshapes.sty","tikzlibraryfit.sty","tikzlibraryshadows.sty","tikzlibrarydecorations.markings.sty","xstring.sty","calc.sty","pgfopts.sty"],"cmds":["umlemptypackage","umlclass","umlstatic","umlvirt","umlemptyclass","umlsimpleclass","umlabstract","umltypedef","umlenum","umlinterface","umlsimpleinterface","umldep","umlassoc","umluniassoc","umlbiassoc","umlaggreg","umluniaggreg","umlcompo","umlunicompo","umlimport","umlinherit","umlimpl","umlnest","umlreal","umlHVinherit","umlHVimpl","umlHVreal","umlHVassoc","umlHVuniassoc","umlHVaggreg","umlHVuniaggreg","umlHVcompo","umlHVunicompo","umlHVimport","umlHVnest","umlHVdep","umlVHinherit","umlVHimpl","umlVHreal","umlVHassoc","umlVHuniassoc","umlVHaggreg","umlVHuniaggreg","umlVHcompo","umlVHunicompo","umlVHimport","umlVHnest","umlVHdep","umlHVHinherit","umlHVHimpl","umlHVHreal","umlHVHassoc","umlHVHuniassoc","umlHVHaggreg","umlHVHuniaggreg","umlHVHcompo","umlHVHunicompo","umlHVHimport","umlHVHnest","umlHVHdep","umlVHVinherit","umlVHVimpl","umlVHVreal","umlVHVassoc","umlVHVuniassoc","umlVHVaggreg","umlVHVuniaggreg","umlVHVcompo","umlVHVunicompo","umlVHVimport","umlVHVnest","umlVHVdep","umlrelation","umlHVrelation","umlVHrelation","umlHVHrelation","umlVHVrelation","umlCNrelation","umlCNinherit","umlCNimpl","umlCNreal","umlCNassoc","umlCNuniassoc","umlCNaggreg","umlCNuniaggreg","umlCNcompo","umlCNunicompo","umlCNimport","umlCNnest","umlCNdep","umlpoint","umlNarynode","umlnote","umlHVHnote","umlHVnote","umlVHVnote","umlVHnote","umlassocclass","tikzumlset","umlactor","umlusecase","umlinclude","umlHVinclude","umlVHinclude","umlHVHinclude","umlVHVinclude","umlCNinclude","umlextend","umlHVextend","umlVHextend","umlHVHextend","umlVHVextend","umlCNextend","umlbasicstate","umlstateinitial","umlstatefinal","umlstatejoin","umlstatedecision","umlstateenter","umlstateexit","umlstateend","umlstatehistory","umlstatedeephistory","umltrans","umlHVtrans","umlVHtrans","umlVHVtrans","umlHVHtrans","umlCNtrans","umlobject","umlbasicobject","umldatabase","umlmulti","umlentity","umlboundary","umlcontrol","umlcreatecall","umlfpart","umlbasiccomponent","umlprovidedinterface","umlrequiredinterface","umlassemblyconnector","umlHVassemblyconnector","umlVHassemblyconnector","umlHVHassemblyconnector","umlVHVassemblyconnector","umldelegateconnector","umlHVdelegateconnector","umlVHdelegateconnector","umlHVHdelegateconnector","umlVHVdelegateconnector","umlport","umlCNfriend","umlHVHfriend","umlHVfriend","umlVHVfriend","umlVHfriend","umlfriend","umlassemblyconnectorsymbol","umlnode","umlsdnode","umlstatetext","arcNum","arcNumT","attrAlign","attrAlignT","iftikzumlactorWithoutCoords","iftikzumlassocclassWithoutCoords","iftikzumlclassCircleShape","iftikzumlclassSimpleStyle","iftikzumlclassWithoutCoords","iftikzumlcomponentWithoutCoords","iftikzumlcreatecallNoDDots","iftikzumlnoteWithoutCoords","iftikzumlobjectNoDDots","iftikzumlpackageSimpleStyle","iftikzumlpackageWithoutCoords","iftikzumlstatedecisionWithoutCoords","iftikzumlstatedeephistoryWithoutCoords","iftikzumlstateendWithoutCoords","iftikzumlstateenterWithoutCoords","iftikzumlstateexitWithoutCoords","iftikzumlstatefinalWithoutCoords","iftikzumlstatehistoryWithoutCoords","iftikzumlstateinitialWithoutCoords","iftikzumlstatejoinWithoutCoords","iftikzumlstateWithoutCoords","iftikzumlusecaseWithoutCoords","keyname","keyvalue","multAlign","multAlignT","numArcs","orientationT","pgfsetlayersArg","picturedactor","picturedboundary","picturedcomponent","picturedcontrol","pictureddatabase","pictureddeephistory","picturedentity","picturedhistory","posAttrName","posAttrNameT","posMultiplicity","posMultiplicityT","stereotype","thepos","theposStereo","theposT","thetikzumlActorNum","thetikzumlCallEndFragmentNum","thetikzumlCallLevel","thetikzumlCallNum","thetikzumlCallStartFragmentNum","thetikzumlComponentLayers","thetikzumlComponentLevel","thetikzumlComponentSubComponentNum","thetikzumlConnectorNum","thetikzumlFragmentLayers","thetikzumlFragmentLevel","thetikzumlFragmentLevelNum","thetikzumlFragmentNum","thetikzumlFragmentPartNum","thetikzumlNoteNum","thetikzumlObjectNum","thetikzumlPackageClassNum","thetikzumlPackageLayers","thetikzumlPackageLevel","thetikzumlPackageSubPackageNum","thetikzumlRelationNum","thetikzumlSDNodeNum","thetikzumlStateDecisionNum","thetikzumlStateDeepHistoryNum","thetikzumlStateEndNum","thetikzumlStateEnterNum","thetikzumlStateExitNum","thetikzumlStateFinalNum","thetikzumlStateHistoryNum","thetikzumlStateInitialNum","thetikzumlStateJoinNum","thetikzumlStateLayers","thetikzumlStateLevel","thetikzumlStateSubStateNum","thetikzumlStateText","thetikzumlSystemLevel","thetikzumlSystemUseCaseNum","thetikzumlUseCaseNum","tikzumlActorBelow","tikzumlActorDefaultBelow","tikzumlActorDrawColor","tikzumlActorName","tikzumlActorNodeName","tikzumlActorPos","tikzumlActorScale","tikzumlActorTextColor","tikzumlactorWithoutCoordsfalse","tikzumlactorWithoutCoordstrue","tikzumlActorX","tikzumlActorY","tikzumlAssemblyConnectorDefaultFillColor","tikzumlAssemblyConnectorDrawColor","tikzumlAssemblyConnectorEndAnchor","tikzumlAssemblyConnectorEndAnchorTmp","tikzumlAssemblyConnectorEndArm","tikzumlAssemblyConnectorFillColor","tikzumlAssemblyConnectorFirstArm","tikzumlAssemblyConnectorGeometry","tikzumlAssemblyConnectorLabel","tikzumlAssemblyConnectorLastArm","tikzumlAssemblyConnectorMiddleArm","tikzumlAssemblyConnectorName","tikzumlAssemblyConnectorPortFillColor","tikzumlAssemblyConnectorSecondArm","tikzumlAssemblyConnectorStartAnchor","tikzumlAssemblyConnectorStartAnchorTmp","tikzumlAssemblyConnectorStartArm","tikzumlAssemblyConnectorSymbolName","tikzumlAssemblyConnectorWidth","tikzumlAssemblyConnectorWithPort","tikzumlAssocClassArm","tikzumlAssocClassAttributes","tikzumlAssocClassDestAnchor","tikzumlAssocClassDestAnchorold","tikzumlAssocClassDrawColor","tikzumlAssocClassFillColor","tikzumlAssocClassGeometry","tikzumlAssocClassHPadding","tikzumlAssocClassMinimumWidth","tikzumlAssocClassName","tikzumlAssocClassNameOld","tikzumlAssocClassNodeName","tikzumlAssocClassOperations","tikzumlassocclasspath","tikzumlAssocClassPos","tikzumlAssocClassRelationName","tikzumlAssocClassRelationNodeName","tikzumlAssocClassSrcAnchor","tikzumlAssocClassSrcAnchorold","tikzumlAssocClassTemplateFillColor","tikzumlAssocClassTemplateParam","tikzumlAssocClassTextColor","tikzumlAssocClassType","tikzumlAssocClassTypeTmp","tikzumlAssocClassVPadding","tikzumlAssocClassWeight","tikzumlassocclassWithoutCoordsfalse","tikzumlassocclassWithoutCoordstrue","tikzumlAssocClassX","tikzumlAssocClassY","tikzumlBoundaryScale","tikzumlCallBottom","tikzumlCallBottomSrc","tikzumlCallDefaultDT","tikzumlCallDefaultFillColor","tikzumlCallDefaultPadding","tikzumlCallDefaultType","tikzumlCallDrawColor","tikzumlCallDT","tikzumlCallDTold","tikzumlCallEndNodeName","tikzumlCallEndNodeNameold","tikzumlCallFillColor","tikzumlcallheight","tikzumlcallheightold","tikzumlCallName","tikzumlCallOp","tikzumlCallPadding","tikzumlCallReturn","tikzumlcallSrc","tikzumlCallStartNodeName","tikzumlCallStartNodeNameold","tikzumlcallstyle","tikzumlCallTextColor","tikzumlCallType","tikzumlCallWithReturn","tikzumlClassAttributes","tikzumlclassCircleShapefalse","tikzumlclassCircleShapetrue","tikzumlClassDefaultFillColor","tikzumlClassDefaultType","tikzumlClassDefaultWidth","tikzumlClassDrawColor","tikzumlClassFillColor","tikzumlClassHPadding","tikzumlClassMinimumWidth","tikzumlClassName","tikzumlClassNameOld","tikzumlClassNodeName","tikzumlClassOperations","tikzumlClassPos","tikzumlclassSimpleStylefalse","tikzumlclassSimpleStyletrue","tikzumlClassTags","tikzumlClassTagsTmp","tikzumlClassTemplateFillColor","tikzumlClassTemplateFillColorDefaultFillColor","tikzumlClassTemplateFillColorParam","tikzumlClassTextColor","tikzumlClassType","tikzumlClassTypeTmp","tikzumlClassVPadding","tikzumlclassWithoutCoordsfalse","tikzumlclassWithoutCoordstrue","tikzumlClassX","tikzumlClassY","tikzumlCNRelationAlign","tikzumlCNRelationAlignT","tikzumlCNRelationAlignTO","tikzumlCNRelationAlignTT","tikzumlCNRelationAttrName","tikzumlCNRelationAttrNameT","tikzumlCNRelationAttrNameTO","tikzumlCNRelationAttrNameTT","tikzumlCNRelationDestAnchor","tikzumlCNRelationDestAnchorold","tikzumlCNRelationMultiplicity","tikzumlCNRelationMultiplicityT","tikzumlCNRelationMultiplicityTO","tikzumlCNRelationMultiplicityTT","tikzumlCNRelationName","tikzumlCNRelationPositionT","tikzumlCNRelationPositionTO","tikzumlCNRelationPositionTT","tikzumlCNRelationSrcAnchor","tikzumlCNRelationSrcAnchorold","tikzumlCNRelationStereoType","tikzumlCNRelationStyle","tikzumlComponentDefaultFillColor","tikzumlComponentDefaultWidth","tikzumlComponentDrawColor","tikzumlComponentFillColor","tikzumlComponentFitTmp","tikzumlComponentLayersNum","tikzumlComponentMinimumWidth","tikzumlComponentName","tikzumlComponentScale","tikzumlComponentTextColor","tikzumlcomponentWithoutCoordsfalse","tikzumlcomponentWithoutCoordstrue","tikzumlComponentXShift","tikzumlComponentYShift","tikzumlControlScale","tikzumlCreateCallClass","tikzumlCreateCallDefaultDT","tikzumlCreateCallDrawColor","tikzumlCreateCallDT","tikzumlCreateCallDTold","tikzumlCreateCallFillColor","tikzumlCreateCallName","tikzumlcreatecallNoDDotsfalse","tikzumlcreatecallNoDDotstrue","tikzumlCreateCallObjectDrawColor","tikzumlCreateCallObjectFillColor","tikzumlCreateCallObjectSrc","tikzumlCreateCallObjectTextColor","tikzumlCreateCallStereo","tikzumlCreateCallTextColor","tikzumlCreateCallX","tikzumlDatabaseScale","tikzumlDefaultDrawColor","tikzumlDefaultFont","tikzumlDefaultTextColor","tikzumlDefaultX","tikzumlDefaultY","tikzumlDelegateConnectorWithEndPort","tikzumlDelegateConnectorWithStartPort","tikzumlDestClassName","tikzumlDestClassNodeName","tikzumldrawcall","tikzumlEntityScale","tikzumlfillcall","tikzumlFirstArc","tikzumlFragmentDefaultFillColor","tikzumlFragmentDefaultType","tikzumlFragmentDefaultXSep","tikzumlFragmentDefaultYSep","tikzumlFragmentDrawColor","tikzumlFragmentFillColor","tikzumlFragmentFitOld","tikzumlFragmentLabel","tikzumlFragmentLabelold","tikzumlFragmentLayersNum","tikzumlFragmentName","tikzumlFragmentTextColor","tikzumlFragmentType","tikzumlFragmentXSep","tikzumlFragmentYSep","tikzumlIdList","tikzumlIdListOld","tikzumlInCreateCall","tikzumlInterfaceWithPort","tikzumlLastArc","tikzumlMidOneArc","tikzumlMidTwoArc","tikzumlNaryName","tikzumlNaryNodeAnchor","tikzumlNaryNodeDefaultWidth","tikzumlNaryNodeDrawColor","tikzumlNaryNodeFillColor","tikzumlNaryNodeLabelPos","tikzumlNaryNodeMinimumWidth","tikzumlNaryNodeName","tikzumlNarynodePos","tikzumlNaryNodeTextColor","tikzumlNaryNodeWidth","tikzumlNaryNodeX","tikzumlNaryNodeY","tikzumlNestingSymbolSize","tikzumlNoteArm","tikzumlNoteDefaultFillColor","tikzumlNoteDefaultWidth","tikzumlNoteDestAnchor","tikzumlNoteDestAnchorold","tikzumlNoteDrawColor","tikzumlNoteFillColor","tikzumlNoteGeometry","tikzumlnotepath","tikzumlNoteSrcAnchor","tikzumlNoteSrcAnchorold","tikzumlNoteTextColor","tikzumlNoteTextWidth","tikzumlNoteWeight","tikzumlnoteWithoutCoordsfalse","tikzumlnoteWithoutCoordstrue","tikzumlNoteX","tikzumlNoteY","tikzumlObjectClass","tikzumlObjectDefaultFillColor","tikzumlObjectDefaultStereo","tikzumlObjectDrawColor","tikzumlObjectFillColor","tikzumlObjectName","tikzumlobjectNoDDotsfalse","tikzumlobjectNoDDotstrue","tikzumlObjectScale","tikzumlObjectStereo","tikzumlObjectTextColor","tikzumlObjectY","tikzumlPackageDefaultFillColor","tikzumlPackageDefaultType","tikzumlPackageDrawColor","tikzumlPackageFillColor","tikzumlPackageFitOld","tikzumlPackageFitTmp","tikzumlPackageLayersNum","tikzumlPackageName","tikzumlpackageSimpleStylefalse","tikzumlpackageSimpleStyletrue","tikzumlPackageTextColor","tikzumlPackageType","tikzumlPackageTypeTmp","tikzumlpackageWithoutCoordsfalse","tikzumlpackageWithoutCoordstrue","tikzumlPackageXShift","tikzumlPackageYShift","tikzumlPath","tikzumlPicturedActorScale","tikzumlPortDefaultFillColor","tikzumlPortDefaultWidth","tikzumlPortDrawColor","tikzumlPortFillColor","tikzumlPortWidth","tikzumlProvidedInterfaceDefaultDistance","tikzumlProvidedInterfaceDefaultPadding","tikzumlProvidedInterfaceDefaultWidth","tikzumlProvidedInterfaceDistance","tikzumlProvidedInterfaceDrawColor","tikzumlProvidedInterfaceFillColor","tikzumlProvidedInterfaceLabel","tikzumlProvidedInterfaceName","tikzumlProvidedInterfacePadding","tikzumlProvidedInterfaceWidth","tikzumlRelationAlign","tikzumlRelationAlignT","tikzumlRelationAlignTO","tikzumlRelationAlignTT","tikzumlRelationArmO","tikzumlRelationArmT","tikzumlRelationAttrName","tikzumlRelationAttrNameT","tikzumlRelationAttrNameTO","tikzumlRelationAttrNameTT","tikzumlRelationDefaultAngleO","tikzumlRelationDefaultAngleT","tikzumlRelationDefaultGeometry","tikzumlRelationDefaultLoopSize","tikzumlRelationDefaultPosO","tikzumlRelationDefaultPosStereo","tikzumlRelationDefaultPosT","tikzumlRelationDefaultWeight","tikzumlRelationDestAnchor","tikzumlRelationDestAnchorold","tikzumlRelationEndAngle","tikzumlRelationGeometry","tikzumlRelationLoopSize","tikzumlRelationMultiplicity","tikzumlRelationMultiplicityT","tikzumlRelationMultiplicityTO","tikzumlRelationMultiplicityTT","tikzumlRelationName","tikzumlRelationPositionT","tikzumlRelationPositionTO","tikzumlRelationPositionTT","tikzumlRelationRecursiveDirectionEnd","tikzumlRelationRecursiveDirectionStart","tikzumlRelationRecursiveMode","tikzumlRelationSrcAnchor","tikzumlRelationSrcAnchorold","tikzumlRelationStartAngle","tikzumlRelationStereoType","tikzumlRelationStyle","tikzumlRelationWeight","tikzumlRequiredInterfaceDefaultDistance","tikzumlRequiredInterfaceDefaultPadding","tikzumlRequiredInterfaceDefaultWidth","tikzumlRequiredInterfaceDistance","tikzumlRequiredInterfaceDrawColor","tikzumlRequiredInterfaceFillColor","tikzumlRequiredInterfaceLabel","tikzumlRequiredInterfaceName","tikzumlRequiredInterfacePadding","tikzumlRequiredInterfaceWidth","tikzumlSDNodeDT","tikzumlSDNodeName","tikzumlSimpleInterfaceDefaultWidth","tikzumlskipescape","tikzumlSrcClassName","tikzumlSrcClassNodeName","tikzumlstatebodyinnerysep","tikzumlStateDecisionColor","tikzumlStateDecisionDefaultWidth","tikzumlStateDecisionMinimumWidth","tikzumlStateDecisionName","tikzumlStateDecisionPos","tikzumlstatedecisionWithoutCoordsfalse","tikzumlstatedecisionWithoutCoordstrue","tikzumlStateDecisionX","tikzumlStateDecisionY","tikzumlStateDeepHistoryColor","tikzumlStateDeepHistoryDefaultWidth","tikzumlStateDeepHistoryMinimumWidth","tikzumlStateDeepHistoryName","tikzumlStateDeepHistoryPos","tikzumlstatedeephistoryWithoutCoordsfalse","tikzumlstatedeephistoryWithoutCoordstrue","tikzumlStateDeepHistoryX","tikzumlStateDeepHistoryY","tikzumlStateDefaultFillColor","tikzumlStateDefaultWidth","tikzumlStateDo","tikzumlStateDrawColor","tikzumlStateEndColor","tikzumlStateEndDefaultWidth","tikzumlStateEndMinimumWidth","tikzumlStateEndName","tikzumlStateEndPos","tikzumlstateendWithoutCoordsfalse","tikzumlstateendWithoutCoordstrue","tikzumlStateEndX","tikzumlStateEndY","tikzumlStateEnterColor","tikzumlStateEnterDefaultWidth","tikzumlStateEnterMinimumWidth","tikzumlStateEnterName","tikzumlStateEnterPos","tikzumlstateenterWithoutCoordsfalse","tikzumlstateenterWithoutCoordstrue","tikzumlStateEnterX","tikzumlStateEnterY","tikzumlStateEntry","tikzumlStateExit","tikzumlStateExitColor","tikzumlStateExitDefaultWidth","tikzumlStateExitMinimumWidth","tikzumlStateExitName","tikzumlStateExitPos","tikzumlstateexitWithoutCoordsfalse","tikzumlstateexitWithoutCoordstrue","tikzumlStateExitX","tikzumlStateExitY","tikzumlStateFillColor","tikzumlStateFinalColor","tikzumlStateFinalDefaultWidth","tikzumlStateFinalMinimumWidth","tikzumlStateFinalName","tikzumlStateFinalPos","tikzumlstatefinalWithoutCoordsfalse","tikzumlstatefinalWithoutCoordstrue","tikzumlStateFinalX","tikzumlStateFinalY","tikzumlStateFitOld","tikzumlStateFitTmp","tikzumlStateHistoryColor","tikzumlStateHistoryDefaultWidth","tikzumlStateHistoryMinimumWidth","tikzumlStateHistoryName","tikzumlStateHistoryPos","tikzumlstatehistoryWithoutCoordsfalse","tikzumlstatehistoryWithoutCoordstrue","tikzumlStateHistoryX","tikzumlStateHistoryY","tikzumlStateInitialColor","tikzumlStateInitialDefaultWidth","tikzumlStateInitialMinimumWidth","tikzumlStateInitialName","tikzumlStateInitialPos","tikzumlstateinitialWithoutCoordsfalse","tikzumlstateinitialWithoutCoordstrue","tikzumlStateInitialX","tikzumlStateInitialY","tikzumlStateJoinColor","tikzumlStateJoinDefaultWidth","tikzumlStateJoinMinimumWidth","tikzumlStateJoinName","tikzumlStateJoinPos","tikzumlstatejoinWithoutCoordsfalse","tikzumlstatejoinWithoutCoordstrue","tikzumlStateJoinX","tikzumlStateJoinY","tikzumlStateLayersNum","tikzumlStateMinimumWidth","tikzumlStateName","tikzumlstaterootinnerysep","tikzumlstaterootlabel","tikzumlStateText","tikzumlStateTextColor","tikzumlStateTextOld","tikzumlstateWithoutCoordsfalse","tikzumlstateWithoutCoordstrue","tikzumlStateXShift","tikzumlStateYShift","tikzumlSystemDefaultFillColor","tikzumlSystemDrawColor","tikzumlSystemFillColor","tikzumlSystemFit","tikzumlSystemFitOld","tikzumlSystemName","tikzumlSystemTextColor","tikzumlSystemXShift","tikzumlSystemYShift","tikzumltextcall","tikzumltypecall","tikzumlUseCaseDefaultFillColor","tikzumlUseCaseDrawColor","tikzumlUseCaseFillColor","tikzumlUseCaseName","tikzumlUseCasePos","tikzumlUseCaseText","tikzumlUseCaseTextColor","tikzumlUseCaseTextWidth","tikzumlusecaseWithoutCoordsfalse","tikzumlusecaseWithoutCoordstrue","tikzumlUseCaseX","tikzumlUseCaseY"]}
-,
-"tikz.sty":{"envs":["scope","tikzpicture"],"deps":["pgf.sty"],"cmds":["scoped","tikzset","tikzoption","tikzaddafternodepathoption","tikzparentanchor","tikzchildanchor","tikzparentnode","tikzchildnode","tikzstyle","tikzpicture","endtikzpicture","tikz","tikzdeclarecoordinatesystem","tikzaliascoordinatesystem","tikzifinpicture","tikzaddtikzonlycommandshortcutlet","tikzaddtikzonlycommandshortcutdef","path","draw","fill","filldraw","pattern","shade","shadedraw","clip","useasboundingbox","node","coordinate","nodepart","pic","matrix","pgfextra","endpgfextra","pgfstrokehook","tikztostart","tikztotarget","tikztonodes","tikzlastnode","pgfplotlastpoint","tikzerror","tikzleveldistance","tikzsiblingdistance","tikztreelevel","tikznumberofchildren","tikznumberofcurrentchild","tikzpathuptonow","tikzpictext","tikzpictextoptions","tikzdeclarepic","p","x","y","tikzgdeventcallback","tikzgdeventgroupcallback","tikzgdlatenodeoptionacallback","usetikzlibrary","pgfplothandlercurveto","pgfsetplottension","pgfplothandlerclosedcurve","pgfplothandlerxcomb","pgfplothandlerycomb","pgfplotxzerolevelstreamstart","pgfplotxzerolevelstreamend","pgfplotxzerolevelstreamnext","pgfplotyzerolevelstreamstart","pgfplotyzerolevelstreamend","pgfplotyzerolevelstreamnext","pgfplotxzerolevelstreamconstant","pgfplotyzerolevelstreamconstant","pgfplotbarwidth","pgfplotbarshift","pgfplothandlerybar","pgfplothandlerxbar","pgfplothandlerybarinterval","pgfplothandlerxbarinterval","pgfplothandlerconstantlineto","pgfplothandlerconstantlinetomarkright","pgfplothandlerconstantlinetomarkmid","pgfplothandlerjumpmarkright","pgfplothandlerjumpmarkleft","pgfplothandlerjumpmarkmid","pgfplothandlerpolarcomb","pgfplothandlermark","pgfsetplotmarkrepeat","pgfsetplotmarkphase","pgfplothandlermarklisted","pgfdeclareplotmark","pgfsetplotmarksize","pgfplotmarksize","pgfuseplotmark","pgfplothandlergaplineto","pgfplothandlergapcycle","ifpgfmatrix","pgfmatrixtrue","pgfmatrixfalse","pgfmatrixcurrentrow","pgfmatrixcurrentcolumn","pgfmatrixbeforeassemblenode","pgfsetmatrixrowsep","pgfsetmatrixcolumnsep","pgfmatrixrowsep","pgfmatrixcolumnsep","pgfmatrix","pgfmatrixnextcell","pgfmatrixbegincode","pgfmatrixendcode","pgfmatrixemptycode","pgfmatrixendrow"]}
-,
-"tikzPackets.sty":{"envs":{},"deps":["tikz.sty","tcolorbox.sty","pbox.sty"],"cmds":["packetsInit","packetsPrintBitScale","packetsBitFont","packetsPrintBitNumber","packetsPutField","packetsPrintRangeOnLeft","packetsPrintRangeOnRight","packetsNextLine","packetsEndLine","packetsLastNode","packetsFirstNodeInLastLine","packetsBitWidth"]}
-,
-"tikzbricks.sty":{"envs":["wall"],"deps":["tikz.sty","tikz-3dplot.sty","xkeyval.sty"],"cmds":["brick","wallbrick","newrow","thebrickx","thebricky","thebrickz","tmpscaleA","tmpscaleB","tmpscaleC","tmpscaleD","tmp","scalingfactor"]}
-,
-"tikzcodeblocks.sty":{"envs":{},"deps":["adjustbox.sty","xcolor.sty","colortbl.sty","fontawesome.sty","tikz.sty","longtable.sty","tikzlibrarymatrix.sty","tikzlibrarypositioning.sty","tikzlibraryfit.sty","tikzlibrarycalc.sty","tikzlibraryshapes.sty","tikzlibrarybackgrounds.sty","tikzlibrarymath.sty","tikzlibrarytrees.sty","tikzlibrarydecorations.markings.sty","tikzlibrarydecorations.sty","tikzlibrarydecorations.pathmorphing.sty","translations.sty","xspace.sty","ifthen.sty"],"cmds":["setcolor","dropdown","intbox","stringbox","boolbox","bild","emptyled","fullled","X","wenndann","wenndannsonst","schleife","ifthenblocks","ifthenelseblocks","loopblocks","einruecken","moveindent","usb","farbe","setupquotes","myspace","myshift","blockhspace","blockhspaceoben","blockhspaceunten","blockvspace","dreieckseite"]}
-,
-"tikzducks.sty":{"envs":{},"deps":["tikz.sty","tikzlibrarypatterns.sty","tikzlibrarycalc.sty"],"cmds":["duck","picduck","randuck","randomhead","randomaccessories","shuffleducks","duckpathbody","duckpathgrumpybill","duckpathbill","duckpathtshirt","duckpathjacket","duckpathcape","duckpathshorthair","duckpathlonghair","duckpathcrazyhair","duckpathrecedinghair","duckpathcrown","duckpathmohican","duckpathmullet","duckpathqueencrown","duckpathkingcrown","duckpathdarthvader","duckpathhorsetail","duckhookbackground","duckhookbody","duckhookclothing","duckhookhair","duckhookhat","duckhookforeground","stripes"]}
-,
-"tikzexternal.sty":{"envs":["tikzpicture"],"deps":["graphicx.sty"],"cmds":["tikzexternalize","tikzsetnextfilename","tikzsetexternalprefix","tikzsetfigurename","tikzappendtofigurename","tikzpicture","endtikzpicture","tikz","tikzset","beginpgfgraphicnamed","endpgfgraphicnamed","tikzifinpicture","pgfincludeexternalgraphics","pgfexternalreaddpth","pgfretval"]}
-,
-"tikzfill.hexagon.sty":{"envs":{},"deps":["tikz.sty","tikzlibraryfill.hexagon.sty"],"cmds":{}}
-,
-"tikzfill.image.sty":{"envs":{},"deps":["tikz.sty","tikzlibraryfill.image.sty"],"cmds":{}}
-,
-"tikzfill.rhombus.sty":{"envs":{},"deps":["tikz.sty","tikzlibraryfill.rhombus.sty"],"cmds":{}}
-,
-"tikzfill.sty":{"envs":{},"deps":["tikz.sty","tikzlibraryfill.image.sty","tikzlibraryfill.hexagon.sty","tikzlibraryfill.rhombus.sty"],"cmds":{}}
-,
-"tikzinclude.sty":{"envs":{},"deps":["tikz.sty","ifthen.sty","etoolbox.sty"],"cmds":["includetikzgraphics"]}
-,
-"tikzinput.sty":{"envs":{},"deps":["l3keys2e.sty","graphicx.sty","tikz.sty","standalone.sty"],"cmds":["tikzinput","ctikzinput"]}
-,
-"tikzlibrary3d.sty":{"envs":{},"deps":{},"cmds":{}}
-,
-"tikzlibraryangles.sty":{"envs":{},"deps":{},"cmds":{}}
-,
-"tikzlibraryanimations.sty":{"envs":{},"deps":{},"cmds":["tikzanimateset","tikzanimationattributesset","tikzanimationdefineattribute","tikzanimationdefineattributelist","tikzanimationattachto","pgfanimateattribute","pgfanimateattributecode","pgfparsetime","pgfsnapshot","pgfsnapshotafter"]}
-,
-"tikzlibraryautomata.sty":{"envs":{},"deps":["tikzlibraryshapes.multipart.sty"],"cmds":{}}
-,
-"tikzlibrarybabel.sty":{"envs":{},"deps":{},"cmds":{}}
-,
-"tikzlibrarybackgrounds.sty":{"envs":{},"deps":{},"cmds":{}}
-,
-"tikzlibrarybayesnet.sty":{"envs":{},"deps":["tikzlibraryshapes.sty","tikzlibraryfit.sty","tikzlibrarychains.sty"],"cmds":["factor","plate","gate","vgate","hgate","edge","factoredge"]}
-,
-"tikzlibrarybbox.sty":{"envs":{},"deps":["tikzlibraryfpu.sty"],"cmds":{}}
-,
-"tikzlibrarybending.sty":{"envs":{},"deps":{},"cmds":{}}
-,
-"tikzlibrarybraids.sty":{"envs":{},"deps":{},"cmds":{}}
-,
-"tikzlibrarycalendar.sty":{"envs":{},"deps":["pgfcalendar.sty"],"cmds":["calendar","tikzdaycode","tikzdaytext","tikzmonthcode","tikzmonthtext","tikzyearcode","tikzyeartext"]}
-,
-"tikzlibrarycalligraphy.sty":{"envs":{},"deps":["spath3.sty"],"cmds":["calligraphy","pen","definepen"]}
-,
-"tikzlibrarycd.sty":{"envs":["tikzcd"],"deps":["tikzlibrarymatrix.sty","tikzlibraryquotes.sty","tikzlibraryarrows.meta.sty"],"cmds":["arrow","ar","rar","lar","dar","uar","drar","urar","dlar","ular","tikzcdset","tikzcd","endtikzcd","tikzcdmatrixname"]}
-,
-"tikzlibraryceltic.sty":{"envs":{},"deps":{},"cmds":["CelticDrawPath"]}
-,
-"tikzlibrarychains.sty":{"envs":{},"deps":["tikzlibrarypositioning.sty"],"cmds":["chainin","tikzchaincount","tikzchaincurrent","tikzchainprevious"]}
-,
-"tikzlibrarycircuits.ee.IEC.relay.sty":{"envs":{},"deps":["tikzlibrarycircuits.ee.IEC.sty","tikzlibraryshapes.geometric.sty"],"cmds":{}}
-,
-"tikzlibrarycircuits.ee.IEC.sty":{"envs":{},"deps":["tikzlibrarycircuits.ee.sty","tikzlibraryshapes.gates.ee.IEC.sty"],"cmds":{}}
-,
-"tikzlibrarycircuits.ee.sty":{"envs":{},"deps":["tikzlibrarycircuits.sty","tikzlibraryshapes.gates.ee.sty"],"cmds":{}}
-,
-"tikzlibrarycircuits.logic.CDH.sty":{"envs":{},"deps":["tikzlibrarycircuits.logic.US.sty"],"cmds":{}}
-,
-"tikzlibrarycircuits.logic.IEC.sty":{"envs":{},"deps":["tikzlibrarycircuits.logic.sty","tikzlibraryshapes.gates.logic.IEC.sty"],"cmds":{}}
-,
-"tikzlibrarycircuits.logic.US.sty":{"envs":{},"deps":["tikzlibrarycircuits.logic.sty","tikzlibraryshapes.gates.logic.US.sty"],"cmds":{}}
-,
-"tikzlibrarycircuits.logic.sty":{"envs":{},"deps":["tikzlibrarycircuits.sty"],"cmds":{}}
-,
-"tikzlibrarycircuits.plc.ladder.sty":{"envs":{},"deps":["tikzlibrarycircuits.sty"],"cmds":["ladderskip","ladderrungend","ladderpowerrails"]}
-,
-"tikzlibrarycircuits.plc.sfc.sty":{"envs":{},"deps":["tikzlibrarycircuits.sty","tikzlibraryshapes.gates.ee.sty"],"cmds":{}}
-,
-"tikzlibrarycircuits.sty":{"envs":{},"deps":["tikzlibrarycalc.sty","tikzlibrarydecorations.marking.sty"],"cmds":["tikzcircuitssizeunit"]}
-,
-"tikzlibrarycolorbrewer.sty":{"envs":{},"deps":{},"cmds":{}}
-,
-"tikzlibrarycommutative-diagrams.sty":{"envs":{},"deps":["tikzlibrarymatrix.sty","tikzlibrarycalc.sty"],"cmds":["obj","mor","kDAct","ifkDRammaObjIsMatrix","kDRammaObjIsMatrixtrue","kDRammaObjIsMatrixfalse","kDRammaObjDecideWhetherIsMatrixThen","kDRammaObjDWIM","kDRammaObjDWIMSightThen","kDRammaObjDWIMGobThen","kDRammaObjOutput","kDRammaObj","kDRammaMor","kDRamma","kDRammaOpen","kDRammaShut","kDRammaOptTok","kDRammaTmpTok","kDRammaMaybeFetchOptionsThen","kDRammaFetchOptionsThen","kDRammaOutput","kDEktropiDefaultToksBackup","kDEktropiRestore","kDKatharizoStringified","kDKatharizoStringify","kDKatharizoSanitized","kDKatharizoSanitize","kDKatharizoSSpace","kDKatharizoSAppendSpace","kDKatharizoSString","kDKatharizoSWord","kDKatharizoSCharacter","kDFoo","kDEscapecharCounter","kDEscapecharDisable","kDEscapecharEnable","kDStoreCatcodeOf","kDRestoreCatcodeOf","kDGobbleHardTok","kDGobbleSoftTok","kDIfNextHardCh","kDIfNextSoftCh","kDINCToken","kDINCTrue","kDINC","kDAppend","kDFetchOptAndGrpThen","kDOptTok","kDGrpTok","kDFetchGrpThen","kDExit","kDLoop","kDTmpTok","kDFetchTilGrpThen","kDTrimTrailingSpace","kDRTS","kDRTSAct","kDDetectTrailingSpace","ifkDDTSHasTrail","kDDTSHasTrailtrue","kDDTSHasTrailfalse","kDDTSGob","ifkDDTSPrevSpace","kDDTSPrevSpacetrue","kDDTSPrevSpacefalse","kDTrimLeadingSpace","kDGobbleSpaceThen","kDGSGroupThen","kDGSOtherThen","ifConTeXt","ConTeXttrue","ConTeXtfalse","ifkDDumping","kDDumpingtrue","kDDumpingfalse","kDDumpFile","kDDumpOpen","kDDump","kDDumpClose","kDOzos","kDOzosFetchThen","kDOzosMaybeDumpThen","kDOzosOutput","kDMitra","kDMitraTmpTok","kDMitraFetchMatrixThen","kDMitraMatOutTok","kDMitraParseMatrixTableThen","kDMitraParseTable","kDMitraParseAllRowsThen","kDMitraParseOneRowThen","kDMitraMarkRowEndBefore","kDMitraParseAllColsThen","kDMitraParseRowEndThen","kDMitraFetchRowEndThen","kDMitraRowOptTok","kDMitraPrintRowEndThen","kDMitraMaybeFetchRowOptionsThen","kDMitraFetchRowOptionsThen","kDMitraParseOneColThen","kDMitraParseColEndThen","kDMitraColOptTok","kDMitraMaybeFetchColOptionsThen","kDMitraFetchColOptionsThen","kDMitraMaybePrintColEndThen","kDMitraParseCellThen","kDMitraCelOptTok","kDMitraMaybeFetchCellOptionsThen","kDMitraFetchCellOptionsThen","kDMitraCelCntTok","kDMitraFetchCellContentThen","kDMitraMaybeDoCellThen","kDMitraPrintCellThen","kDMitraMaybeDumpCell","kDMitraOutput","kDVelosQuoteHandler","kDVelosUnquote","kDVelosTemp","kDVelosGlobalLabelOptions","kDVelosGlobalEdgeOptions","ifkDVelosGOAfterColon","kDVelosGOAfterColontrue","kDVelosGOAfterColonfalse","kDVelosFetchGlobalOptionsThen","kDVelosGOMaybeFetchThen","kDVelosGOFetchThen","kDVelosGOThinkThen","kDVelosDoFirstEdgeThen","kDVelosSource","kDVelosCurFstSrc","kDVelosPrvFstSrc","kDVelosFetchFirstSourceThen","kDVelosFFSBracketsThen","kDVelosFFSTillOverThen","kDVelosFetchFirstEdgeThen","kDVelosEdge","kDVelosFetchEdgeThen","kDVelosFEThen","ifkDVelosTempIsKeysList","kDVelosTempIsKeysListtrue","kDVelosTempIsKeysListfalse","kDVelosFEEnquotedThen","kDVelosFEKeysListThen","kDVelosFETillOverThen","kDVelosFETOThen","kDVelosFEAppendThen","kDVelosFEEdgePrepend","kDVelosFEEdgePrependNode","kDVelosFEThinkThen","kDVelosFELoop","kDVelosFEBreak","kDVelosTarget","kDVelosCurLstTar","kDVelosPrvLstTar","kDVelosFetchTargetThen","kDVelosFTBracketsThen","kDVelosFTTillOverThen","kDVelosFTTOThen","kDVelosFTTOLoop","kDVelosFTTOExit","kDVelosFTAppendThen","kDVelosAlias","kDVelosSaila","kDVelosDerefSrc","kDVelosDerefTar","kDVelosDrawFetchedEdgeThen","kDVelos","kDVelosMaybeChainEdge"]}
-,
-"tikzlibrarycurvilinear.sty":{"envs":{},"deps":{},"cmds":["pgfsetcurvilinearbeziercurve","pgfcurvilineardistancetotime","pgfpointcurvilinearbezierorthogonal","pgfpointcurvilinearbezierpolar"]}
-,
-"tikzlibrarydatavisualization.3d.sty":{"envs":{},"deps":["tikzlibrarydatavisualization.sty"],"cmds":{}}
-,
-"tikzlibrarydatavisualization.barcharts.sty":{"envs":{},"deps":["tikzlibrarydatavisualization.sty"],"cmds":{}}
-,
-"tikzlibrarydatavisualization.formats.functions.sty":{"envs":{},"deps":["tikzlibrarydatavisualization.sty"],"cmds":["value"]}
-,
-"tikzlibrarydatavisualization.polar.sty":{"envs":{},"deps":["tikzlibrarydatavisualization.sty"],"cmds":{}}
-,
-"tikzlibrarydatavisualization.sparklines.sty":{"envs":{},"deps":["tikzlibrarydatavisualization.sty"],"cmds":{}}
-,
-"tikzlibrarydatavisualization.sty":{"envs":{},"deps":["tikzlibrarybackgrounds.sty","tikzlibraryfpu.sty"],"cmds":["datavisualization","tikzdatavisualizationset","tikzdvdeclarestylesheetcolorseries","tikzpointandanchordirection","tikzdvvisualizercounter","pgfdatapoint","pgfdata","pgfdeclaredataformat","pgfdvdeclarestylesheet","pgfooclass","pgfoonew","pgfoogc","method","pgfoothis","pgfoosuper","attribute","pgfooset","pgfooeset","pgfooappend","pgfooprefix","pgfoolet","pgfoovalueof","pgfooget","pgfooobj"]}
-,
-"tikzlibrarydecorations.footprints.sty":{"envs":{},"deps":{},"cmds":{}}
-,
-"tikzlibrarydecorations.fractals.sty":{"envs":{},"deps":{},"cmds":{}}
-,
-"tikzlibrarydecorations.markings.sty":{"envs":{},"deps":["tikzlibrarydecorations.sty"],"cmds":["arrow","arrowreversed"]}
-,
-"tikzlibrarydecorations.pathmorphing.sty":{"envs":{},"deps":{},"cmds":{}}
-,
-"tikzlibrarydecorations.pathreplacing.sty":{"envs":{},"deps":["tikzlibrarydecorations.sty"],"cmds":["tikzinputsegmentfirst","tikzinputsegmentlast","tikzinputsegmentsupporta","tikzinputsegmentsupportb"]}
-,
-"tikzlibrarydecorations.shapes.sty":{"envs":{},"deps":{},"cmds":{}}
-,
-"tikzlibrarydecorations.sty":{"envs":["pgfdecoration","pgfmetadecoration"],"deps":{},"cmds":["pgfdecoratedcompleteddistance","pgfdecoratedremainingdistance","pgfdecoratedinputsegmentcompleteddistance","pgfdecoratedinputsegmentremainingdistance","pgfdecorationsegmentamplitude","pgfdecorationsegmentlength","pgfdecorationsegmentangle","pgfdecorationsegmentaspect","pgfmetadecorationsegmentamplitude","pgfmetadecorationsegmentlength","ifpgfdecoratepathhascorners","pgfdeclaredecoration","state","pgfdeclaremetadecoration","decoration","beforedecoration","afterdecoration","pgfmetadecoratedpathlength","pgfmetadecoratedcompleteddistance","pgfmetadecoratedinputsegmentcompleteddistance","pgfmetadecoratedinputsegmentremainingdistance","pgfdecoratebeforecode","pgfdecorateaftercode","pgfdecoratepath","pgfdecoratecurrentpath","pgfdecorationpath","pgfdecoratedpath","pgfdecorateexistingpath","pgfdecoratedpathlength","pgfpointdecoratedpathfirst","pgfpointdecoratedpathlast","pgfpointdecoratedinputsegmentfirst","pgfpointdecoratedinputsegmentlast","pgfsetdecorationsegmenttransformation","pgfmetadecoratedremainingdistance","pgfpointmetadecoratedpathfirst","pgfpointmetadecoratedpathlast","pgfdecoratedinputsegmentlength","pgfdecoratedangle"]}
-,
-"tikzlibrarydecorations.text.sty":{"envs":{},"deps":["tikzlibrarydecorations.sty"],"cmds":["tikzdecorationcharactercount","tikzdecorationcharactertotal","tikzdecorationlettercount","tikzdecorationlettertotal","tikzdecorationwordcount","tikzdecorationwordtotal","tikzdecorationcharacter","pgfdecorationrestoftext","pgfdecorationtext"]}
-,
-"tikzlibrarydubins.sty":{"envs":{},"deps":["tikzlibrarycalc.sty","etoolbox.sty","xfp.sty"],"cmds":["ifpgfmathcond","dubinspath","dubinspathset","dubinspathcalc"]}
-,
-"tikzlibraryducks.sty":{"envs":{},"deps":{},"cmds":{}}
-,
-"tikzlibraryer.sty":{"envs":{},"deps":["tikzlibraryshapes.geometric.sty"],"cmds":{}}
-,
-"tikzlibraryext.calendar-plus.sty":{"envs":{},"deps":["tikzlibrarycalendar.sty","pgfcalendar-ext.sty"],"cmds":["pgfmathweeksinmonthofyear","pgfmathlastdayinmonthofyear","tikzweekcode","tikzweektext"]}
-,
-"tikzlibraryext.misc.sty":{"envs":{},"deps":{},"cmds":["pgfmathstrrepeat","pgfmathisInString","pgfmathstrcat","pgfmathisEmpty","pgfmathatanXY","pgfmathatanYX","pgfmathanglebetween","pgfmathqanglebetween","pgfmathdistancebetween","pgfmathqdistancebetween"]}
-,
-"tikzlibraryext.node-families.shapes.geometric.sty":{"envs":{},"deps":["tikzlibraryext.node-families.sty"],"cmds":{}}
-,
-"tikzlibraryext.node-families.sty":{"envs":{},"deps":{},"cmds":["tikzextnodefamiliesgetwidth","tikzextnodefamiliesgetheight","tikzextnodefamiliesgettextwidth","tikzextnodefamiliesgettextdepth","tikzextnodefamiliesgettextheight"]}
-,
-"tikzlibraryext.nodes.sty":{"envs":{},"deps":{},"cmds":{}}
-,
-"tikzlibraryext.paths.arcto.sty":{"envs":{},"deps":{},"cmds":{}}
-,
-"tikzlibraryext.paths.timer.sty":{"envs":{},"deps":{},"cmds":{}}
-,
-"tikzlibraryext.patterns.images.sty":{"envs":{},"deps":{},"cmds":["pgfsetupimageaspattern"]}
-,
-"tikzlibraryext.positioning-plus.sty":{"envs":{},"deps":["tikzlibrarypositioning.sty","tikzlibraryfit.sty"],"cmds":{}}
-,
-"tikzlibraryext.scalepicture.sty":{"envs":{},"deps":{},"cmds":["tikzextpicturewidth","tikzextpictureheight"]}
-,
-"tikzlibraryext.shapes.circlearrow.sty":{"envs":{},"deps":{},"cmds":{}}
-,
-"tikzlibraryext.shapes.circlecrosssplit.sty":{"envs":{},"deps":{},"cmds":{}}
-,
-"tikzlibraryext.shapes.heatmark.sty":{"envs":{},"deps":{},"cmds":{}}
-,
-"tikzlibraryext.shapes.rectangleroundedcorners.sty":{"envs":{},"deps":{},"cmds":{}}
-,
-"tikzlibraryext.shapes.superellipse.sty":{"envs":{},"deps":["tikzlibraryshapes.geometric.sty","tikzlibraryintersections.sty"],"cmds":["pgfmathsuperellipsex","pgfmathsuperellipsey","pgfmathsuperellipseXY"]}
-,
-"tikzlibraryext.shapes.uncenteredrectangle.sty":{"envs":{},"deps":{},"cmds":{}}
-,
-"tikzlibraryext.transformations.mirror.sty":{"envs":{},"deps":{},"cmds":["pgftransformxmirror","pgftransformymirror","pgftransformmirror","pgfqtransformmirror","pgftransformxMirror","pgftransformyMirror","pgftransformMirror","pgfqtransformMirror"]}
-,
-"tikzlibraryexternal.sty":{"envs":{},"deps":["pdftexcmds.sty","atveryend.sty"],"cmds":["tikzexternalize","tikzexternalrealjob","tikzexternalcheckshellescape","tikzsetexternalprefix","tikzsetnextfilename","tikzsetfigurename","tikzappendtofigurename","tikzpicturedependsonfile","tikzexternalimgextension","tikzexternalfiledependsonfile","tikzexternaldisable","tikzexternalenable","tikzifexternalizing","tikzifexternalizingnext","iftikzexternalremakenext","tikzexternalremakenexttrue","tikzexternalremakenextfalse","iftikzexternalexportnext","tikzexternalexportnexttrue","tikzexternalexportnextfalse","tikzifexternalizingcurrent","tikzifexternaljobnamematches","tikzifexternalizehasbeencalled","tikzexternallocked","tikzexternalgetnextfilename","tikzexternalgetcurrentfilename","tikzexternaldepext","tikzexternalmakefiledefaultdeprule","tikzexternalifwritesmakefile","tikzexternalwritetomakefile"]}
-,
-"tikzlibraryfadings.sty":{"envs":["tikzfadingfrompicture"],"deps":{},"cmds":["tikzfadingfrompicture","endtikzfadingfrompicture","tikzfading"]}
-,
-"tikzlibraryfill.hexagon.sty":{"envs":{},"deps":["tikzlibrarypatterns.meta.sty"],"cmds":{}}
-,
-"tikzlibraryfill.image.sty":{"envs":{},"deps":{},"cmds":{}}
-,
-"tikzlibraryfill.rhombus.sty":{"envs":{},"deps":["tikzlibrarypatterns.meta.sty"],"cmds":{}}
-,
-"tikzlibraryfit.sty":{"envs":{},"deps":{},"cmds":{}}
-,
-"tikzlibraryfixedpointarithmetic.sty":{"envs":{},"deps":{},"cmds":["pgfmathfpscale","pgfmathfpparse","pgfmathfpscientific","pgfmathfplessthan","pgfmathfpgreaterthan","pgfmathfpequalto","pgfmathfpadd","pgfmathfpsubtract","pgfmathfpmultiply","pgfmathfpdivide","pgfmathfpabs","pgfmathfpneg","pgfmathfpround","pgfmathfpfloor","pgfmathfpceil","pgfmathfpmod","pgfmathfpmax","pgfmathfpmin","pgfmathfppow","pgfmathfpexp","pgfmathfpln","pgfmathfpsqrt","pgfmathfpveclen","pgfmathfpsin","pgfmathfpcos","pgfmathfptan","pgfmathfpacos","pgfmathfpasin","pgfmathfpatan","pgfmathfpcot","pgfmathfpsec","pgfmathfpcosec","pgfmathfpdeg","pgfmathfprad","pgfmathfpsetseed","pgfmathfprnd","pgfmathfprand"]}
-,
-"tikzlibraryfolding.sty":{"envs":{},"deps":{},"cmds":["tikzfoldingdodecahedron","tikzfoldingalternatedodecahedron","tikzfoldingtetrahedron","tikzfoldingcube","tikzfoldingoctahedron","tikzfoldingicosahedron","tikzfoldingtruncatedtetrahedron","tikzfoldingcuboctahedron","tikzfoldingtruncatedcube","tikzfoldingtruncatedoctahedron","tikzfoldingrhombicuboctahedron","tikzfoldingtruncatedcuboctahedron","tikzfoldingsnubcube","tikzfoldingicosidodecahedron","tikzfoldingrhombicdodecahedron","tikzfoldinggoldenrhombicdodecahedron","tikzfoldingrhombictricontahedron"]}
-,
-"tikzlibraryfpu.sty":{"envs":{},"deps":{},"cmds":["pgflibraryfpuifactive","pgfmathfloatscale","pgfmathfloatone","pgfmathfloatparse","pgfmathfloatscientific","pgfmathfloatlessthan","pgfmathfloatgreaterthan","pgfmathfloatmaxtwo","pgfmathfloatmax","pgfmathfloatmin","pgfmathfloatmintwo","pgfmathfloattoextentedprecision","pgfmathfloatsetextprecision","pgfmathfloatifapproxequalrel","pgfmathfloatifflags","pgfmathfloatadd","pgfmathfloatsubtract","pgfmathfloatmultiplyfixed","pgfmathfloatmultiply","pgfmathfloatdivide","pgfmathfloatsqrt","pgfmathfloatint","pgfmathfloatfloor","pgfmathfloatceil","pgfmathfloatshift","pgfmathfloatsign","pgfmathfloatabserror","pgfmathfloatrelerror","pgfmathfloatmod","pgfmathfloatmodknowsinverse","pgfmathfloatpi","pgfmathfloate","pgfmathfloatdeg","pgfmathfloatrad","pgfmathfloatsin","pgfmathfloatcos","pgfmathfloattan","pgfmathfloatcot","pgfmathfloatatan","pgfmathfloatatantwo","pgfmathfloatsec","pgfmathfloatcosec","pgfmathfloatln","pgfmathlog","pgfmathfloatexp","pgfmathfloatrand","pgfmathfloatrnd"]}
-,
-"tikzlibrarygraphdrawing.sty":{"envs":{},"deps":["luatex.sty"],"cmds":["pgfgdtikzedgecallback","usegdlibrary","pgfgdset","pgfgdevent","pgfgdbegineventgroup","pgfgdendeventgroup","pgfgdeventgroup","pgfgdsetlatenodeoption","pgfgdcallbackrendernode","pgfpositionnodelatername","pgfpositionnodelaterminx","pgfpositionnodelatermaxx","pgfpositionnodelaterminy","pgfpositionnodelatermaxy","pgfgdedge","pgfgdsetedgecallback","pgfgddefaultedgecallback","pgfgdcallbackbeginshipout","pgfgdcallbackendshipout","pgfgdbeginlayout","pgfgdendlayout","pgfgdsubgraphnode","pgfgdsetrequestcallback","ifpgfgdgraphdrawingscopeactive","pgfgdbeginscope","pgfgdendscope","pgfgdaddspecificationhook"]}
-,
-"tikzlibrarygraphs.standard.sty":{"envs":{},"deps":{},"cmds":{}}
-,
-"tikzlibrarygraphs.sty":{"envs":{},"deps":{},"cmds":["graph","tikzgraphsset","tikzgraphnodetext","tikzgraphnodename","tikzgraphnodepath","tikzgraphnodefullname","tikzgraphforeachcolorednode","tikzgraphpreparecolor","tikzgraphinvokeoperator","tikzlibgraphactivations","tikzlibgraphscommercialat","tikzlibgraphactivationsbrace","tikzgraphnodeas","iftikzgraphsautonumbernodes","tikzgraphsautonumbernodestrue","tikzgraphsautonumbernodesfalse","tikzgraphpreparewrapafter","tikzgraphV","tikzgraphVnum","tikzgraphW","tikzgraphWnum"]}
-,
-"tikzlibraryhobby.sty":{"envs":{},"deps":{},"cmds":["curvethrough","pgfpathhobby","pgfpathhobbypt","pgfpathhobbyptparams","pgfpathhobbyend","pgfplothanderhobby","pgfplothandlerclosedhobby","pgfplothandlerquickhobby","hobbyVersion","hobbyDate","hobbyinit","hobbyaddpoint","hobbysetparams","hobbygenpath","hobbygenifnecpath","hobbyusepath","hobbysavepath","hobbyrestorepath","hobbyshowpath","hobbygenusepath","hobbyclearpath"]}
-,
-"tikzlibraryintersections.sty":{"envs":{},"deps":{},"cmds":{}}
-,
-"tikzlibrarykarnaugh.sty":{"envs":{},"deps":{},"cmds":["karnaughmap","karnaughmaptab","karnaughmapvert","karnaughmaptabvert","pgfmathdectoGray","kmdectobin","kmdectoKG","kmvarno","kmdectoKGdec","kmindexcounter","kmunitlength","kmxsize","kmysize","Americanstylefalse","Americanstyletrue","disablebarsfalse","disablebarstrue","enableindicesfalse","enableindicestrue","ifAmericanstyle","ifdisablebars","ifenableindices","ifindexbin","ifindexGray","indexbinfalse","indexbintrue","indexGrayfalse","indexGraytrue","karnaughmakebars","karnaughmakebarstab","karnaughmakebarstabvert","karnaughmakebarsvert","karnaughmakelabels","karnaughmakelabelstab","karnaughmakelabelstabvert","karnaughmakelabelsvert","karnaughmakeleftbar","karnaughmakemap","karnaughmakemapvert","karnaughmaketopbar","kmargumentstring","kmbarlength","kmbarmove","kmbarnum","kmbarstart","kmcurrentindex","kmcurrentindexbin","kmcurrentindexdec","kmcurrentindexGray","kmcurrentindexGraytab","kmcurrentindexGraytabvert","kmcurrentindexGrayvert","kmdectoKGtab","kmdectoKGtabvert","kmdectoKGvert","kmgetonetok","kmleftlabels","kmoptstrmake","kmpoweroftwo","kmrecursiondepth","kmsetoptstr","kmsplittok","kmstr","kmstringbuf","kmtemplength","kmtemppos","kmtoplabels","kmxvarno","kmyvarno"]}
-,
-"tikzlibraryknots.sty":{"envs":["knot"],"deps":["tikzlibraryintersections.sty","tikzlibraryspath3.sty"],"cmds":["strand","flipcrossings","redraw"]}
-,
-"tikzlibrarylindenmayersystems.sty":{"envs":{},"deps":{},"cmds":["pgfdeclarelindenmayersystem","symbol","pgflsystemcurrentstep","pgflsystemcurrentleftangle","pgflsystemcurrentrightangle","pgflsystemrandomizestep","pgflsystemrandomizeleftangle","pgflsystemrandomizerightangle","pgflsystemdrawforward","pgflsystemmoveforward","pgflsystemturnleft","pgflsystemturnright","pgflsystemsavestate","pgflsystemrestorestate","pgflsystemstep","pgflsystemrandomizesteppercent","pgflsystemrandomizeanglepercent","rule","pgflindenmayersystem"]}
-,
-"tikzlibrarymath.sty":{"envs":{},"deps":["tikzlibraryfpu.sty"],"cmds":["tikzmath","tikzmathfor"]}
-,
-"tikzlibrarymatrix.skeleton.sty":{"envs":{},"deps":["tikzlibrarymatrix.sty","tikzlibraryfit.sty","tikzlibrarybackgrounds.sty"],"cmds":["matrix","fitandstyle","pgfmatrixlabelskeleton","stylecontour","stylegrid","styletilinggrid"]}
-,
-"tikzlibrarymatrix.sty":{"envs":{},"deps":{},"cmds":{}}
-,
-"tikzlibrarymindmap.sty":{"envs":{},"deps":["tikzlibrarytrees.sty","tikzlibrarydecorations.sty"],"cmds":{}}
-,
-"tikzlibrarynef.sty":{"envs":{},"deps":["tikzlibraryshadows.sty","tikzlibraryshapes.geometric.sty"],"cmds":["fileversion","filedate"]}
-,
-"tikzlibraryocgx.sty":{"envs":{},"deps":["ocgx.sty","tikzlibrarycalc.sty"],"cmds":{}}
-,
-"tikzlibraryoptics.sty":{"envs":{},"deps":["tikzlibrarydecorations.sty","tikzlibrarydecorations.markings.sty","tikzlibrarydecorations.pathreplacing.sty","etoolbox.sty"],"cmds":["tikzopticsversiondate","tikzopticsversion"]}
-,
-"tikzlibraryoverlay-beamer-styles.sty":{"envs":{},"deps":{},"cmds":{}}
-,
-"tikzlibrarypatterns.meta.sty":{"envs":{},"deps":{},"cmds":["tikzdeclarepattern","pgfdeclarepattern"]}
-,
-"tikzlibrarypenrose.sty":{"envs":{},"deps":["tikzlibraryspath3.sty"],"cmds":["BakePenroseTile","PenroseDecomposition","DefineTile","SetPenrosePath","UsePenroseTile","TransformAlongSide","CoordinatesAtVertices","MakePenroseTile"]}
-,
-"tikzlibraryperspective.sty":{"envs":{},"deps":{},"cmds":["pgfpointperspectivexyz"]}
-,
-"tikzlibrarypetri.sty":{"envs":{},"deps":{},"cmds":{}}
-,
-"tikzlibraryplotmarks.sty":{"envs":{},"deps":{},"cmds":{}}
-,
-"tikzlibrarypositioning.sty":{"envs":{},"deps":{},"cmds":{}}
-,
-"tikzlibraryprofiler.sty":{"envs":{},"deps":{},"cmds":["pgfprofilenew","pgfprofilenewforcommand","pgfprofilecs","pgfprofilenewforcommandpattern","pgfprofileshowinvocationsfor","pgfprofileshowinvocationsexpandedfor","pgfprofilenewforenvironment","pgfprofileenv","pgfprofilestart","pgfprofileend","pgfprofilepostprocess","pgfprofilesetrel","pgfprofileifisrunning"]}
-,
-"tikzlibraryquantikz.sty":{"envs":["quantikz"],"deps":["xargs.sty","ifthen.sty","xstring.sty","xparse.sty","etoolbox.sty","mathtools.sty","pgfmath.sty","environ.sty","tikzlibrarycd.sty","tikzlibrarydecorations.pathreplacing.sty","tikzlibrarycalc.sty","tikzlibrarypositioning.sty","tikzlibraryfit.sty","tikzlibraryshapes.symbols.sty","tikzlibraryshapes.misc.sty","tikzlibrarydecorations.pathmorphing.sty","tikzlibrarybackgrounds.sty","tikzlibrarydecorations.markings.sty","tikzlibrarymath.sty"],"cmds":["gate","phase","lstick","rstick","qw","cw","push","alias","trash","qwbundle","ctrl","octrl","targ","control","ocontrol","targX","swap","vqw","vcw","cwbend","ctrlbundle","gateinput","gateoutput","slice","phantomgate","hphantomgate","ghost","midstick","linethrough","meter","measuretab","meterD","measure","gategroup","wave","makeebit","ket","bra","proj","braket","myl","myh","myd","theaaa","IfInList","ifnodedefined","MathAxis","DisableMinSize","quantwires","dotikzset","undotikzset","sliceallr","sliceallvr","DivideRowsCols","setmiddle","vqwexplicit","vqbundleexplicit","vcwexplicit","vcwhexplicit","vqwexplicitcenter","resetstyles","maketransparent","row","col","arrow","ar","rar","lar","dar","uar","drar","urar","dlar","ular"]}
-,
-"tikzlibraryquotes.sty":{"envs":{},"deps":{},"cmds":{}}
-,
-"tikzlibraryrdf.sty":{"envs":{},"deps":{},"cmds":["tikzrdfhashmark","tikzrdfcontext"]}
-,
-"tikzlibraryrulercompass.sty":{"envs":{},"deps":["intersections.sty","calc.sty"],"cmds":["thepointlabels","point","ruler","compass","constrain"]}
-,
-"tikzlibraryshadings.sty":{"envs":{},"deps":{},"cmds":{}}
-,
-"tikzlibraryshadows.blur.sty":{"envs":{},"deps":["shadows.sty","calc.sty"],"cmds":["fileversion","filedate"]}
-,
-"tikzlibraryshadows.sty":{"envs":{},"deps":["tikzlibraryfadings.sty"],"cmds":{}}
-,
-"tikzlibraryshapes.arrows.sty":{"envs":{},"deps":{},"cmds":{}}
-,
-"tikzlibraryshapes.callouts.sty":{"envs":{},"deps":{},"cmds":{}}
-,
-"tikzlibraryshapes.gates.ee.IEC.sty":{"envs":{},"deps":{},"cmds":{}}
-,
-"tikzlibraryshapes.gates.ee.sty":{"envs":{},"deps":{},"cmds":{}}
-,
-"tikzlibraryshapes.gates.logic.IEC.sty":{"envs":{},"deps":["tikzlibraryshapes.gates.logic.sty"],"cmds":{}}
-,
-"tikzlibraryshapes.gates.logic.US.sty":{"envs":{},"deps":["tikzlibraryshapes.gates.logic.sty"],"cmds":{}}
-,
-"tikzlibraryshapes.gates.logic.sty":{"envs":{},"deps":{},"cmds":{}}
-,
-"tikzlibraryshapes.geometric.sty":{"envs":{},"deps":{},"cmds":{}}
-,
-"tikzlibraryshapes.misc.sty":{"envs":{},"deps":{},"cmds":{}}
-,
-"tikzlibraryshapes.multipart.sty":{"envs":{},"deps":{},"cmds":{}}
-,
-"tikzlibraryshapes.sty":{"envs":{},"deps":["tikzlibraryshapes.geometric.sty","tikzlibraryshapes.misc.sty","tikzlibraryshapes.symbols.sty","tikzlibraryshapes.arrows.sty","tikzlibraryshapes.callouts.sty"],"cmds":{}}
-,
-"tikzlibraryshapes.symbols.sty":{"envs":{},"deps":{},"cmds":{}}
-,
-"tikzlibraryspath3.sty":{"envs":{},"deps":["spath3.sty"],"cmds":["getComponentOf"]}
-,
-"tikzlibraryspy.sty":{"envs":{},"deps":{},"cmds":["spy"]}
-,
-"tikzlibrarysvg.path.sty":{"envs":{},"deps":["pgfparser.sty"],"cmds":["pgfpathsvg"]}
-,
-"tikzlibraryswigs.sty":{"envs":{},"deps":{},"cmds":["pgfnodepartlowerbox","pgfnodepartupperbox","upper","uppercolor","lowercolor","upperfillcolor","lowerfillcolor","linewidthupper","linewidthlower","uppercenterpoint","greaterlinewidth","gapcenter","basepointlower","midpointlower","defaultpgflinewidth","pgfnodepartleftbox","pgfnodepartrightbox","leftcolor","rightcolor","leftfillcolor","rightfillcolor","gap","linewidthleft","linewidthright","vsplitangle","centerleftgapside","globalcenterpoint","linewidthatwidestcenter","leftcenter","rightcenter","basepointright","midpointleft","midpointright"]}
-,
-"tikzlibraryswitching-architectures.sty":{"envs":{},"deps":["tikzlibrarybackgrounds.sty","tikzlibrarycalc.sty","tikzlibrarypositioning.sty","tikzlibrarydecorations.pathreplacing.sty"],"cmds":["pgfmathomegarotation","rone","ronelabel","monelabel","rtwolabel","M","Mlabel","rthree","rthreelabel","mthreelabel","P","modulesize","moduleysep","modulexsep","modulefont","modulelabelopacity","pinlength","ifconnectiondisabled","connectiondisabledtrue","connectiondisabledfalse"]}
-,
-"tikzlibrarythrough.sty":{"envs":{},"deps":{},"cmds":{}}
-,
-"tikzlibrarytikzlings.sty":{"envs":{},"deps":{},"cmds":{}}
-,
-"tikzlibrarytikzmark.sty":{"envs":["tikzmarkmath"],"deps":{},"cmds":["tikzmark","pgfmark","iftikzmark","iftikzmarkexists","iftikzmarkoncurrentpage","iftikzmarkonpage","tikzmarknode","subnode","SaveNode","usetikzmarklibrary","tikzmarkmath","endtikzmarkmath","thetikzmarkequation","StartHighlighting","StopHighlighting","Highlight","savepointas","savepicturepage","tikzmarkalias"]}
-,
-"tikzlibrarytqft.sty":{"envs":{},"deps":["tikzlibraryshapes.geometric.sty"],"cmds":{}}
-,
-"tikzlibrarytrees.sty":{"envs":{},"deps":{},"cmds":{}}
-,
-"tikzlibraryturtle.sty":{"envs":{},"deps":{},"cmds":{}}
-,
-"tikzlibraryviews.sty":{"envs":{},"deps":{},"cmds":{}}
-,
-"tikzlibraryzx-calculus.sty":{"envs":["ZX"],"deps":["amssymb.sty","etoolbox.sty","ifthen.sty","xparse.sty","bm.sty","tikzlibrarycd.sty","tikzlibrarybackgrounds.sty","tikzlibrarypositioning.sty","tikzlibraryshapes.sty","tikzlibrarycalc.sty","tikzlibraryintersections.sty"],"cmds":["zx","zxEmptyDiagram","zxNone","zxN","zxNoneDouble","zxFracZ","zxFracX","zxZ","zxX","zxH","leftManyDots","rightManyDots","middleManyDots","zxLoop","zxLoopAboveDots","zxDebugMode","arrow","ar","rar","lar","dar","uar","drar","urar","dlar","ular","zxConvertToFracInContent","zxConvertToFracInLabel","zxMinusInShort","zxHCol","zxHRow","zxHColFlat","zxHRowFlat","zxSCol","zxSRow","zxSColFlat","zxSRowFlat","zxHSCol","zxHSRow","zxHSColFlat","zxHSRowFlat","zxWCol","zxWRow","zxwCol","zxwRow","zxDotsCol","zxDotsRow","zxZeroCol","zxZeroRow","zxNCol","zxNRow","zxDefaultColumnSep","zxDefaultRowSep","zxDefaultSoftAngleS","zxDefaultSoftAngleN","zxDefaultSoftAngleO","zxDefaultSoftAngleChevron","zxScaleDots","zxMinus","zxEdgesAbove","zxControlPointsVisible","zxEnableIntersections","zxDisableIntersections","zxEnableIntersectionsNodes","zxEnableIntersectionsWires","zxIntersectionLineBetweenStartEnd","zxDefaultLineWidth","zxSaveDiagram","chdots","controlOne","controlTwo","cvdots","cvdotsAboveBaseline","cvdotsCenterBaseline","cvdotsCenterMathline","ifAnchorExists","ifAnchorExistsFromShape","ifPgfpointOrNode","StartPoint","TargetPoint","zxChooseStyle","zxMaxDepthPlusHeight","zxMaxRatio","zxUseDiagram","zxWireInsideIfNoIntersectionName"]}
-,
-"tikzlings-addons.sty":{"envs":{},"deps":["tikz.sty","tikzlibrarypatterns.sty","expl3.sty"],"cmds":["thing","scalingfactor","xscalefactor","yscalefactor"]}
-,
-"tikzlings-anteaters.sty":{"envs":{},"deps":["tikz.sty","tikzlings-addons.sty"],"cmds":["anteater","anteaterhookbackground","anteaterhookbelly","anteaterhookbody","anteaterhookforeground","tikzlinghookbackground","tikzlinghookbelly","tikzlinghookbody","tikzlinghookforeground"]}
-,
-"tikzlings-bats.sty":{"envs":{},"deps":["tikz.sty","tikzlings-addons.sty"],"cmds":["bat","bathookbackground","bathookbelly","bathookbody","bathookforeground","tikzlinghookbackground","tikzlinghookbelly","tikzlinghookbody","tikzlinghookforeground"]}
-,
-"tikzlings-bears.sty":{"envs":{},"deps":["tikz.sty","tikzlings-addons.sty"],"cmds":["bear","bearhookbackground","bearhookbelly","bearhookbody","bearhookforeground","tikzlinghookbackground","tikzlinghookbelly","tikzlinghookbody","tikzlinghookforeground"]}
-,
-"tikzlings-bees.sty":{"envs":{},"deps":["tikz.sty","tikzlings-addons.sty"],"cmds":["bee","beehookbackground","beehookbelly","beehookbody","beehookforeground","tikzlinghookbackground","tikzlinghookbelly","tikzlinghookbody","tikzlinghookforeground"]}
-,
-"tikzlings-bugs.sty":{"envs":{},"deps":["tikz.sty","tikzlings-addons.sty"],"cmds":["bug","bughookbackground","bughookbelly","bughookbody","bughookforeground","tikzlinghookbackground","tikzlinghookbelly","tikzlinghookbody","tikzlinghookforeground"]}
-,
-"tikzlings-cats.sty":{"envs":{},"deps":["tikz.sty","tikzlings-addons.sty"],"cmds":["cat","cathookbackground","cathookbelly","cathookbody","cathookforeground","tikzlinghookbackground","tikzlinghookbelly","tikzlinghookbody","tikzlinghookforeground"]}
-,
-"tikzlings-chickens.sty":{"envs":{},"deps":["tikz.sty","tikzlings-addons.sty","tikzlibrarydecorations.pathmorphing.sty"],"cmds":["chicken","chickenhookbackground","chickenhookbelly","chickenhookbody","chickenhookforeground","tikzlinghookbackground","tikzlinghookbelly","tikzlinghookbody","tikzlinghookforeground"]}
-,
-"tikzlings-coatis.sty":{"envs":{},"deps":["tikz.sty","tikzlings-addons.sty"],"cmds":["coati","coatihookbackground","coatihookbelly","coatihookbody","coatihookforeground","tikzlinghookbackground","tikzlinghookbelly","tikzlinghookbody","tikzlinghookforeground"]}
-,
-"tikzlings-elephants.sty":{"envs":{},"deps":["tikz.sty","tikzlings-addons.sty"],"cmds":["elephant","elephanthookbackground","elephanthookbelly","elephanthookbody","elephanthookforeground","tikzlinghookbackground","tikzlinghookbelly","tikzlinghookbody","tikzlinghookforeground"]}
-,
-"tikzlings-hippos.sty":{"envs":{},"deps":["tikz.sty","tikzlings-addons.sty"],"cmds":["hippo","hippohookbackground","hippohookbelly","hippohookbody","hippohookforeground","tikzlinghookbackground","tikzlinghookbelly","tikzlinghookbody","tikzlinghookforeground"]}
-,
-"tikzlings-koalas.sty":{"envs":{},"deps":["tikz.sty","tikzlings-addons.sty","tikzlibraryshadows.blur.sty","tikzlibraryfadings.sty"],"cmds":["koala","koalahookbackground","koalahookbelly","koalahookbody","koalahookforeground","tikzlinghookbackground","tikzlinghookbelly","tikzlinghookbody","tikzlinghookforeground"]}
-,
-"tikzlings-marmots.sty":{"envs":{},"deps":["tikz.sty","tikzlings-addons.sty","tikzlibraryshadows.blur.sty","tikzlibraryfadings.sty"],"cmds":["marmot","marmothookbackground","marmothookbelly","marmothookbody","marmothookforeground","tikzlinghookbackground","tikzlinghookbelly","tikzlinghookbody","tikzlinghookforeground"]}
-,
-"tikzlings-mice.sty":{"envs":{},"deps":["tikz.sty","tikzlings-addons.sty"],"cmds":["mouse","mousehookbackground","mousehookbelly","mousehookbody","mousehookforeground","tikzlinghookbackground","tikzlinghookbelly","tikzlinghookbody","tikzlinghookforeground"]}
-,
-"tikzlings-moles.sty":{"envs":{},"deps":["tikz.sty","tikzlings-addons.sty"],"cmds":["moles","moleshookbackground","moleshookbelly","moleshookbody","moleshookforeground","tikzlinghookbackground","tikzlinghookbelly","tikzlinghookbody","tikzlinghookforeground"]}
-,
-"tikzlings-owls.sty":{"envs":{},"deps":["tikz.sty","tikzlings-addons.sty"],"cmds":["owl","owlhookbackground","owlhookbelly","owlhookbody","owlhookforeground","tikzlinghookbackground","tikzlinghookbelly","tikzlinghookbody","tikzlinghookforeground"]}
-,
-"tikzlings-pandas.sty":{"envs":{},"deps":["tikz.sty","tikzlings-addons.sty"],"cmds":["panda","pandahookbackground","pandahookbelly","pandahookbody","pandahookforeground","tikzlinghookbackground","tikzlinghookbelly","tikzlinghookbody","tikzlinghookforeground"]}
-,
-"tikzlings-penguins.sty":{"envs":{},"deps":["tikz.sty","tikzlings-addons.sty"],"cmds":["penguin","penguinhookbackground","penguinhookbelly","penguinhookbody","penguinhookforeground","tikzlinghookbackground","tikzlinghookbelly","tikzlinghookbody","tikzlinghookforeground"]}
-,
-"tikzlings-pigs.sty":{"envs":{},"deps":["tikz.sty","tikzlings-addons.sty"],"cmds":["pig","pighookbackground","pighookbelly","pighookbody","pighookforeground","tikzlinghookbackground","tikzlinghookbelly","tikzlinghookbody","tikzlinghookforeground"]}
-,
-"tikzlings-rhinos.sty":{"envs":{},"deps":["tikz.sty","tikzlings-addons.sty"],"cmds":["rhino","rhinohookbackground","rhinohookbelly","rhinohookbody","rhinohookforeground","tikzlinghookbackground","tikzlinghookbelly","tikzlinghookbody","tikzlinghookforeground"]}
-,
-"tikzlings-sheep.sty":{"envs":{},"deps":["tikz.sty","tikzlings-addons.sty","tikzlibrarydecorations.pathmorphing.sty","tikzlibraryfadings.sty"],"cmds":["sheep","sheephookbackground","sheephookbelly","sheephookbody","sheephookforeground","tikzlinghookbackground","tikzlinghookbelly","tikzlinghookbody","tikzlinghookforeground"]}
-,
-"tikzlings-sloths.sty":{"envs":{},"deps":["tikz.sty","tikzlings-addons.sty"],"cmds":["sloth","slothhookbackground","slothhookbelly","slothhookbody","slothhookforeground","tikzlinghookbackground","tikzlinghookbelly","tikzlinghookbody","tikzlinghookforeground"]}
-,
-"tikzlings-snowmen.sty":{"envs":{},"deps":["tikz.sty","tikzlings-addons.sty"],"cmds":["snowman","snowmanhookbackground","snowmanhookbelly","snowmanhookbody","snowmanhookforeground","tikzlinghookbackground","tikzlinghookbelly","tikzlinghookbody","tikzlinghookforeground"]}
-,
-"tikzlings-squirrels.sty":{"envs":{},"deps":["tikz.sty","tikzlings-addons.sty"],"cmds":["squirrel","squirrelhookbackground","squirrelhookbelly","squirrelhookbody","squirrelhookforeground","tikzlinghookbackground","tikzlinghookbelly","tikzlinghookbody","tikzlinghookforeground"]}
-,
-"tikzlings-wolves.sty":{"envs":{},"deps":["tikz.sty","tikzlings-addons.sty","tikzlibrarydecorations.pathmorphing.sty"],"cmds":["wolf","wolfhookbackground","wolfhookbelly","wolfhookbody","wolfhookforeground","tikzlinghookbackground","tikzlinghookbelly","tikzlinghookbody","tikzlinghookforeground"]}
-,
-"tikzlings.sty":{"envs":{},"deps":["tikz.sty","tikzlings-anteaters.sty","tikzlings-bats.sty","tikzlings-bears.sty","tikzlings-bees.sty","tikzlings-bugs.sty","tikzlings-cats.sty","tikzlings-chickens.sty","tikzlings-coatis\u0009.sty","tikzlings-elephants.sty","tikzlings-hippos\u0009.sty","tikzlings-koalas.sty","tikzlings-marmots.sty","tikzlings-mice.sty","tikzlings-moles.sty","tikzlings-owls.sty","tikzlings-pandas\u0009.sty","tikzlings-penguins.sty","tikzlings-pigs.sty","tikzlings-rhinos.sty","tikzlings-sheep.sty","tikzlings-sloths.sty","tikzlings-snowmen\u0009.sty","tikzlings-squirrels.sty","tikzlings-wolves.sty","tikzlings-addons.sty","expl3.sty"],"cmds":["tikzling","ExpArgsNnx"]}
-,
-"tikzorbital.sty":{"envs":{},"deps":["ifthen.sty","tikzlibraryshapes.sty"],"cmds":["drawLevel","orbital","satom","atom","setOrbitalDrawing"]}
-,
-"tikzpagenodes.sty":{"envs":{},"deps":["tikz.sty","ifoddpage.sty"],"cmds":["currentsidemargin"]}
-,
-"tikzpeople.sty":{"envs":{},"deps":["tikz.sty","calc.sty","etoolbox.sty","tikzlibrarydecorations.markings.sty","tikzlibrarydecorations.pathmorphing.sty","tikzlibrarycalc.sty","tikzlibrarypositioning.sty"],"cmds":["alltikzpeople","tikzpeoplecolors"]}
-,
-"tikzpfeile.sty":{"envs":{},"deps":["tikz.sty"],"cmds":["ra","la","mapsto","lmapsto","inj","linj","surj","lsurj","isom","lisom","lra","ppf","lppf","smapsto","lsmapsto","oldmapsto"]}
-,
-"tikzpingus.sty":{"envs":{},"deps":["etoolbox.sty","tikz.sty","tikzlibraryintersections.sty","tikzlibraryshadings.sty","tikzlibrarypatterns.meta.sty","tikzlibrarydecorations.pathmorphing.sty","tikzlibraryshapes.symbols.sty","tikzlibraryshapes.geometric.sty","tikzlibraryfadings.sty"],"cmds":["pingu","pingudefaults","pingudefaultsappend","pinguloadlibrary","pinguloadlibraries","basew","basicfeetbend","eyebaseang","pengu","pinguanglehl","pinguanglehr","pingulightsaberfactor","pingupathxbowtieknot","pingupathxbowtieleft","pingupathxbowtieright","pingupathxtie","pingupathxtieknot"]}
-,
-"tikzposter.cls":{"envs":["settitle","columns","subcolumns","tikzfigure"],"deps":["xkeyval.sty","calc.sty","ifthen.sty","ae.sty","xstring.sty","etoolbox.sty","tikz.sty","tikzlibraryshapes.sty","tikzlibrarydecorations.sty","tikzlibraryshadows.sty","tikzlibrarybackgrounds.sty","tikzlibrarycalc.sty","tikzlibraryfadings.sty","tikzlibraryfit.sty","tikzlibrarydecorations.pathmorphing.sty","s-extarticle.cls","geometry.sty"],"cmds":["titlewidth","titlelinewidth","titleroundedcorners","titleinnersep","titletotopverticalspace","titleheight","titlegraphicheight","titleposleft","titleposright","titlepostop","titleposbottom","colwidth","subcolwidth","blocktitleinnersep","blockbodyinnersep","ifBlockHasTitle","BlockHasTitletrue","BlockHasTitlefalse","blockroundedcorners","blocklinewidth","innerblocktitleinnersep","innerblockbodyinnersep","ifInnerblockHasTitle","InnerblockHasTitletrue","InnerblockHasTitlefalse","innerblockroundedcorners","innerblocklinewidth","noteinnersep","ifNoteHasConnection","NoteHasConnectiontrue","NoteHasConnectionfalse","noterotate","noteroundedcorners","notelinewidth","definebackgroundstyle","usebackgroundstyle","definetitlestyle","usetitlestyle","maketitle","institute","titlegraphic","settitle","defineblockstyle","useblockstyle","block","defineinnerblockstyle","useinnerblockstyle","innerblock","coloredbox","definenotestyle","usenotestyle","note","definecolorpalette","usecolorpalette","definecolorstyle","usecolorstyle","definelayouttheme","usetheme","column","subcolumn","tikzposterlatexaffectionproofon","tikzposterlatexaffectionproofoff","thefigurecounter","rememberparameter"]}
-,
-"tikzrput.sty":{"envs":{},"deps":["tikz.sty","iftex.sty"],"cmds":["rput","tikzrputPtVirCode","tikzrputAtCode","tikzrputTwoPtCode","mybox"]}
-,
-"tikzscale.sty":{"envs":{},"deps":["graphicx.sty","etoolbox.sty","pgfkeys.sty","xparse.sty","letltxmacro.sty","xstring.sty"],"cmds":["pgfmathsetglobalmacro","ifTikzLibraryLoaded","ifExternalizationLoaded","ifedefequal","edocsvlist","eforcsvlist","forgrouplist","grouplistbreak","eforgrouplist","elseif","IfNoValueOrSplitEmptyTF","maxTestIterations","requestedSize","requestedWidth","requestedHeight","measuredFirst","measuredSecond","fixedSize","measuredFinal","pgfexternalsize","pgfexternalwidth","pgfexternalheight","originalRequestedSize","fileName","content","widthDifference","heightDifference","dimension","variable","measuredSize","sizeDifference"]}
-,
-"tikzsymbols.sty":{"envs":{},"deps":["xparse.sty","expl3.sty","tikz.sty","xcolor.sty","xspace.sty","l3keys2e.sty","tikzlibrarydecorations.pathmorphing.sty","tikzlibrarytrees.sty"],"cmds":["tikzsymbolsset","tikzsymbolsuse","Kochtopf","pot","Bratpfanne","fryingpan","Schneebesen","eggbeater","Sieb","sieve","Purierstab","blender","Dreizack","trident","Backblech","bakingplate","Ofen","oven","Pfanne","pan","Herd","cooker","Saftpresse","squeezer","Schussel","bowl","Schaler","peeler","Reibe","grater","Flasche","bottle","Nudelholz","rollingpin","Knoblauchpresse","garlicpress","Smiley","Sadey","Neutrey","Annoey","Laughey","Winkey","oldWinkey","Sey","Xey","Innocey","wInnocey","Cooley","Tongey","Nursey","Vomey","Walley","rWalley","Cat","Ninja","Sleepey","Maskey","NiceReapey","Changey","cChangey","SchrodingersCat","dSmiley","dSadey","dNeutrey","dAnnoey","dLaughey","dWinkey","dSey","dXey","dInnocey","dCooley","dNinja","drWalley","dWalley","dVomey","dNursey","dTongey","dSleepey","olddWinkey","dChangey","dcChangey","Strichmaxerl","Heart","dHeart","Candle","Fire","Coffeecup","Chair","Bed","Tribar","Moai","Snowman","BasicTree","Springtree","Summertree","Autumntree","Wintertree","WorstTree","tikzsymbolsdefinesymbol","tikzsymbolsprovideandusesavebox","tikzsymbolssetscaleabs","tikzsymbolsscaleabs"]}
-,
-"tikzviolinplots.sty":{"envs":{},"deps":["pgfplots.sty","pgfplotstable.sty","ifthen.sty","stringstrings.sty","pgfkeys.sty"],"cmds":["violinsetoptions","violinplot","violinplotwholefile"]}
-,
-"tile-graphic.sty":{"envs":{},"deps":["xkeyval.sty","shellesc.sty","web.sty","graphicx.sty","multido.sty"],"cmds":["setTileParams","tileTheGraphic","fullPathToSource","afterPkgCreationHook","afterTileCreationHook","bpHttile","bpWdtile","compileTileFiles","definePath","dvipsappArgs","ifpassthruTG","iftgfolder","IWTD","latexappArgs","nCols","nFilesCreated","nRows","oX","oY","packagesuffix","passthruTGfalse","passthruTGtrue","pathToPic","pkgappArgs","syscopy","sysdel","sysmove","tgBaseName","tgfolderfalse","tgfoldertrue","tgInFolder","tgInputContent","tgTileBaseIndx","tileappArgs","WriteBookmarks","wrtTileCuts","wrttiledoc"]}
-,
-"time.sty":{"envs":{},"deps":{},"cmds":["now","hour","minute"]}
-,
-"timing-diagrams.sty":{"envs":{},"deps":["tikz.sty","tikzlibraryshadows.sty","tikzlibraryshape.callouts.sty","tikzlibrarydecorations.pathreplacing.sty","tikzlibrarydecorations.text.sty","ifthen.sty"],"cmds":["boxheight","tadvance","tarrowCoord","tarrowLU","tarrowUL","tbox","tcalloutL","tcalloutU","tcaption","tcatchup","tendbrace","tevent","teventA","tlighttick","tline","tlonglighttick","trecall","tremember","tsetcurrent","tsetcurrentabs","tskip","tskiparrowL","tskiparrowU","tskiptext","tskiptextCONF","tskiptextinbox","tskiptextL","tsmallbox","tstartbrace","tstrongtick","ttextarrowU","ttextL","ttextM","ttextU","ttick","ttimeline"]}
-,
-"tinos.sty":{"envs":{},"deps":["ifxetex.sty","ifluatex.sty","textcomp.sty","xkeyval.sty","fontenc.sty","fontaxes.sty"],"cmds":["tinos","tinosfamily"]}
-,
-"tipa.sty":{"envs":["IPA"],"deps":["tone.sty","extraipa.sty"],"cmds":["DH","NG","dj","ng","k","guillemotleft","guillemotright","guilsinglleft","guilsinglright","quotedblbase","quotesinglbase","textquotedbl","DJ","th","TH","dh","Hwithstroke","hwithstroke","textogonekcentered","guillemetleft","guillemetright","IJ","ij","ipabar","ipaclap","s","SS","textacutemacron","textacutewedge","textadvancing","textbabygamma","textbarb","textbarc","textbard","textbardotlessj","textbarg","textbarglotstop","textbari","textbarl","textbaro","textbarrevglotstop","textbaru","textbeltl","textbeta","textbottomtiebar","textbrevemacron","textbullseye","textceltpal","textchi","textcircumacute","textcircumdot","textcloseepsilon","textcloseomega","textcloserevepsilon","textcommatailz","textcorner","textcrb","textcrd","textcrg","textcrh","textcrinvglotstop","textcrlambda","textcrtwo","textctc","textctd","textctdctzlig","textctesh","textctj","textctn","textctt","textcttctclig","textctyogh","textctz","textdctzlig","textdotacute","textdotbreve","textdoublebaresh","textdoublebarpipe","textdoublebarslash","textdoublegrave","textdoublepipe","textdoublevbaraccent","textdoublevertline","textdownstep","textdyoghlig","textdzlig","textepsilon","textesh","textfallrise","textfishhookr","textg","textgamma","textglobfall","textglobrise","textglotstop","textgravecircum","textgravedot","textgravemacron","textgravemid","texthalflength","texthardsign","texthighrise","texthooktop","texthtb","texthtbardotlessj","texthtc","texthtd","texthtg","texthth","texththeng","texthtk","texthtp","texthtq","texthtrtaild","texthtscg","texthtt","texthvlig","textinvglotstop","textinvscr","textinvsubbridge","textiota","textipa","textlambda","textlengthmark","textlhookt","textlhtlongi","textlhtlongy","textlonglegr","textlowering","textlowrise","textlptr","textltailm","textltailn","textltilde","textlyoghlig","textmidacute","textObardotlessj","textOlyoghlig","textomega","textopencorner","textopeno","textovercross","textoverw","textpalhook","textphi","textpipe","textpolhook","textprimstress","textraiseglotstop","textraisevibyi","textraising","textramshorns","textretracting","textrevapostrophe","textreve","textrevepsilon","textrevglotstop","textrevyogh","textrhookrevepsilon","textrhookschwa","textrhoticity","textringmacron","textrisefall","textroundcap","textrptr","textrtaild","textrtaill","textrtailn","textrtailr","textrtails","textrtailt","textrtailz","textrthook","textsca","textscb","textsce","textscg","textsch","textschwa","textsci","textscj","textscl","textscn","textscoelig","textscomega","textscr","textscripta","textscriptg","textscriptv","textscu","textscy","textseagull","textsecstress","textsoftsign","textstretchc","textsubacute","textsubarch","textsubbar","textsubbridge","textsubcircum","textsubdot","textsubgrave","textsublhalfring","textsubplus","textsubrhalfring","textsubring","textsubsquare","textsubtilde","textsubumlaut","textsubw","textsubwedge","textsuperimposetilde","textsyllabic","texttctclig","textteshlig","texttheta","textthorn","texttildedot","texttoneletterstem","texttoptiebar","texttslig","textturna","textturncelig","textturnh","textturnk","textturnlonglegr","textturnm","textturnmrleg","textturnr","textturnrrtail","textturnscripta","textturnt","textturnv","textturnw","textturny","textupsilon","textupstep","textvbaraccent","textvertline","textvibyi","textvibyy","textwynn","textyogh","tipaencoding","tipamedspace","tipanegthinspace","tipasafemode","tipathickspace","tsipa","tipa","tipx","super","nrsuper","sups","upperaccent","Upperaccent","loweraccent","Loweraccent","tipaupperaccent","tipaUpperaccent","tipaloweraccent","tipaLoweraccent","tipasterisktmp","tipapipetmp"]}
-,
-"tipauni.sty":{"envs":["IPA"],"deps":["fontspec.sty","xparse.sty","expkv-def.sty","expkv-opt.sty"],"cmds":["textrtailt","textrtaild","textipa","textbardotlessj","textscg","textglotstop","textltailm","textrtailn","textltailn","textscn","textscb","textscr","labdentflap","textfishhookr","textrtailr","textphi","textbeta","texttheta","textyogh","textrtails","textrtailz","textctj","textgamma","textchi","textinvscr","textcrh","textrevglotstop","texthth","textbeltl","textlyoghlig","labdentapp","textturnr","textturnrrtail","textturnmrleg","textrtaill","textturny","textscl","textbullseye","pstalvclick","textdoublebarpipe","textdoublepipe","texthtb","texthtd","texthtbardotlessj","texthtg","texthtscg","textturnw","textturnh","textsch","textbarrevglotstop","textturnlonglegr","textbarglotstop","textctc","textctz","texththeng","textsci","textscy","textepsilon","textbari","textbaru","textupsilon","textreve","textbaro","textschwa","textrevepsilon","textcloserevepsilon","textturna","textturnm","textramshorns","textturnv","textopeno","textscripta","textturnscripta","textrhoticity","textcorner","textesh","textdzlig","textdyoghlig","texttslig","textteshlig","textdblig","textqplig","texthvlig","texttctclig","stdlnetiebar","textsubring","textsupring","textsubwedge","textsupwedge","textsubrhalfring","textsublhalfring","textsubplus","textsubbar","textsupbar","textovercross","textsyllabic","textsubarch","textsubumlaut","textsupumlaut","textsubtilde","textsuptilde","textseagull","textsuperimposetilde","textraising","textlowering","textadvancing","textretracting","textsubbridge","textinvsubbridge","textsubsquare","texttoptiebar","textbottomtiebar","super","tipaunistar","tipaunisemicolon","tipaunicolon","tipaunibang","tipaunipipe","tipaunitextbottomtiebar","tipaunits","tipaunisubbridge","tipauniinvsubbridge","tipaunisublhalfring","tipaunisubrhalfring","tipaunisubplus","tipauniraising","tipaunilowering","tipauniadvancing","tipauniretracting","tipauniovercross","tipauniseagull","tipauniring","TipaUniSupRing","TipaUniSubRing","tipauniwedge","TipaUniSubWedge","TipaUniSupWedge","tipaunibar","TipaUniSubBar","TipaUniSupBar","tipauniumlaut","TipaUniSubUmlaut","TipaUniSupUmlaut","tipaunitilde","TipaUniSubTilde","TipaUniSupTilde","tipaunisuperimposetilde","tipaunitexttoptiebar","tipaunit","ifnontipa","nontipatrue","nontipafalse","tipaunicmd","tipauniname","tipauniversion","tipaunidate","tipaunidescription","tr","tc","ts","s","ns","vl","lmn"]}
-,
-"tipfr.sty":{"envs":{},"deps":["xcolor.sty","newtxtt.sty","tikz.sty","tikzlibrarycalc.sty","tikzlibraryshapes.sty","tikzlibraryshadows.sty","tikzlibrarybackgrounds.sty","tikzlibrarybabel.sty","ifthen.sty","xkeyval.sty","mathtools.sty","amssymb.sty","multido.sty","colortbl.sty"],"cmds":["Touche","Menu","Ecran","x","Calculatrice","Circonflexe","Racine","theLineCommand","theLineResult","DefBool","courbe","domain","fileauthor","filedate","fileversion"]}
-,
-"tipx.sty":{"envs":{},"deps":["tipa.sty"],"cmds":["textaolig","textbenttailyogh","textbktailgamma","textctinvglotstop","textctjvar","textctstretchc","textctstretchcvar","textctturnt","textdblig","textdoublebarpipevar","textdoublepipevar","textdownfullarrow","textfemale","textfrbarn","textfrhookd","textfrhookdvar","textfrhookt","textfrtailgamma","textglotstopvari","textglotstopvarii","textglotstopvariii","textgrgamma","textheng","texthmlig","texthtbardotlessjvar","textinvomega","textinvsca","textinvscripta","textlfishhookrlig","textlhookfour","textlhookp","textlhti","textlooptoprevesh","textnrleg","textObullseye","textpalhooklong","textpalhookvar","textpipevar","textqplig","textrectangle","textretractingvar","textrevpolhook","textrevscl","textrevscr","textrhooka","textrhooke","textrhookepsilon","textrhookopeno","textrtailhth","textrthooklong","textscaolig","textscdelta","textscf","textsck","textscm","textscp","textscq","textspleftarrow","textstretchcvar","textsubdoublearrow","textsubrightarrow","textthornvari","textthornvarii","textthornvariii","textthornvariv","textturnglotstop","textturnsck","textturnscu","textturnthree","textturntwo","textuncrfemale","textupfullarrow","tipxloweraccent","tipxupperaccent"]}
-,
-"tiscreen.sty":{"envs":{},"deps":["lcd.sty","tikz.sty","tcolorbox.sty","array.sty","xcolor.sty","tipa.sty","textgreek.sty","wasysym.sty"],"cmds":["tiscreenX","tiscreenY","tiscreen","tibtn","tibtnextra","tibtnalpha","tibtnsecond","tibtnenter","tibtnextraalpha","tibtnextrasecond","tibtnextraenter","tibtndiv","tibtntimes","tibtnminus","tibtnplus","tibtnextradiv","tibtnextratimes","tibtnextraminus","tibtnextraplus","tibtnzero","tibtnone","tibtntwo","tibtnthree","tibtnfour","tibtnfive","tibtnsix","tibtnseven","tibtneight","tibtnnine","tibtnextrazero","tibtnextraone","tibtnextratwo","tibtnextrathree","tibtnextrafour","tibtnextrafive","tibtnextrasix","tibtnextraseven","tibtnextraeight","tibtnextranine","tibtnmode","tibtndel","tibtnxton","tibtnstat","tibtnmath","tibtnmatrix","tibtnprgm","tibtnvars","tibtnclear","tibtnxnone","tibtnsin","tibtncos","tibtntan","tibtnpower","tibtnxtwo","tibtncomma","tibtnleftparen","tibtnrightparen","tibtnlog","tibtnln","tibtnsto","tibtnon","tibtndot","tibtnneg","tibtnextramode","tibtnextradel","tibtnextraxton","tibtnextrastat","tibtnextramath","tibtnextramatrix","tibtnextraprgm","tibtnextravars","tibtnextraclear","tibtnextraxnone","tibtnextrasin","tibtnextracos","tibtnextratan","tibtnextrapower","tibtnextraxtwo","tibtnextracomma","tibtnextraleftparen","tibtnextrarightparen","tibtnextralog","tibtnextraln","tibtnextrasto","tibtnextraon","tibtnextradot","tibtnextraneg"]}
-,
-"titlecaps.sty":{"envs":{},"deps":["ifnextok.sty","ifthen.sty"],"cmds":["titlecap","Addlcwords","Resetlcwords","textnc","converttilde","noatinsidetc","usestringstringsnames","SaveHardspace","SoftSpace","addlcwords","resetlcwords","addlcword","getargs","capitalizetitle"]}
-,
-"titlefoot.sty":{"envs":{},"deps":{},"cmds":["keywords","runningtitle","amssubj","authorfootnote","keywordsname","runningtitlename","amssubjname","authorfnname","unmarkedfntext","footnotecomma"]}
-,
-"titlepic.sty":{"envs":{},"deps":{},"cmds":["titlepic"]}
-,
-"titleps.sty":{"envs":{},"deps":{},"cmds":["newpagestyle","renewpagestyle","sethead","setfoot","parttitle","chaptertitle","sectiontitle","subsectiontitle","subsubsectiontitle","paragraphtitle","subparagraphtitle","ifthepart","ifthechapter","ifthesection","ifthesubsection","ifthesubsubsection","iftheparagraph","ifthesubparagraph","settitlemarks","headrule","footrule","setheadrule","setfootrule","makeheadrule","makefootrule","setmarkboth","resetmarkboth","widenhead","setheadindent","TitlepsPatchSection","bottitlemarks","toptitlemarks","firsttitlemarks","nexttoptitlemarks","outertitlemarks","innertitlemarks","newtitlemark","pretitlemark","ifsamemark","setfloathead","setfloatfoot","nextfloathead","nextfloatfoot","newshortmark","botshortmark","firstshortmark","nexttopshortmark","preshortmark","shortmark","topshortmark","newmarkset","newextramark","botextramarks","topextramarks","firstextramarks","nexttopextramarks","outerextramarks","innerextramarks","extramark","preextramark","iftitle","usepage","setmarks"]}
-,
-"titleref.sty":{"envs":{},"deps":{},"cmds":["theTitleReference","titleref","currenttitle"]}
-,
-"titles.sty":{"envs":{},"deps":["moredefs.sty","slemph.sty"],"cmds":["word","phrase","foreign","foreignword","term","defn","book","journal","music","article","storytitle","poemtitle","play","craft","species","Wrapquotes","WrapquotesNS","WrapquotesIS","WrapquotesNN","WrapquotesIN","WrapquotesSN","WrapquotesDN","WrapquotesSK","IfQuestionOrExclamation","longpoem","film","essaytitle","chaptertitle"]}
-,
-"titlesec.sty":{"envs":{},"deps":["titleps.sty"],"cmds":["titlelabel","thetitle","titleformat","chaptertitlename","titlespacing","beforetitleunit","aftertitleunit","filright","filcenter","filleft","fillast","filinner","filouter","wordsep","bottomtitlespace","nostruts","titleline","titlerule","titlewidth","titlewidthfirst","titlewidthlast","iftitlemeasuring","assignpagestyle","sectionbreak","subsectionbreak","subsubsectionbreak","paragraphbreak","subparagraphbreak","chaptertolists","titleclass"]}
-,
-"titletoc.sty":{"envs":{},"deps":{},"cmds":["dottedcontents","titlecontents","contentsmargin","thecontentslabel","thecontentspage","contentslabel","contentspage","contentspush","contentsuse","contentsfinish","startcontents","stopcontents","resumecontents","printcontents","startlist","stoplist","resumelist","printlist","titleline","titlerule","filright","filleft","filcenter","fillast"]}
-,
-"titling.sty":{"envs":["titlingpage"],"deps":{},"cmds":["pretitle","posttitle","preauthor","postauthor","predate","postdate","droptitle","maketitlehooka","maketitlehookb","maketitlehookc","maketitlehookd","calccentering","thetitle","theauthor","thedate","killtitle","keepthetitle","emptythanks","thanksmarkseries","symbolthanksmark","continuousmarks","thanksheadextra","thanksfootextra","thanksmark","thanksgap","tamark","thanksmarkwidth","thanksmargin","thanksfootmark","thanksfootpre","thanksfootpost","thanksscript","makethanksmarkhook","makethanksmark","thanksrule","usethanksrule","cancelthanksrule","appendiargdef"]}
-,
-"tkz-base.sty":{"envs":{},"deps":["tikz.sty","tikzlibraryangles.sty","tikzlibrarybackgrounds.sty","tikzlibrarycalc.sty","tikzlibrarydecorations.sty","tikzlibrarydecorations.markings.sty","tikzlibrarydecorations.pathreplacing.sty","tikzlibrarydecorations.shapes.sty","tikzlibrarydecorations.text.sty","tikzlibrarydecorations.pathmorphing.sty","tikzlibraryintersections.sty","tikzlibrarypatterns.sty","tikzlibraryplotmarks.sty","tikzlibrarypositioning.sty","tikzlibraryquotes.sty","tikzlibraryshapes.misc.sty","tikzlibraryshadows.sty","tikzlibrarythrough.sty","numprint.sty","xfp.sty","fp.sty"],"cmds":["tkzInit","tkzDrawX","tkzLabelX","tkzDrawY","tkzLabelY","tkzAxeX","tkzAxeY","tkzAxeXY","tkzDrawXY","tkzLabelXY","tkzSetUpAxis","tkzGrid","tkzDefPoint","tkzDefPoints","tkzDefShiftPoint","tkzDefShiftPointCoord","tkzDrawPoint","tkzDrawPoints","tkzLabelPoint","tkzLabelPoints","tkzAutoLabelPoints","tkzSetUpPoint","tkzPointShowCoord","tkzShowPointCoord","tkzClip","tkzShowBB","tkzClipBB","tkzSetBB","tkzSaveBB","tkzRestoreBB","tkzRep","tkzHLine","tkzHLines","tkzVLine","tkzVLines","tkzHTick","tkzHTicks","tkzVTick","tkzVTicks","tkzDefSetOfPoints","tkzDrawSetOfPoints","tkzJoinSetOfPoints","tkzDrawMark","tkzDrawMarks","tkzSetUpMark","tkzText","tkzLegend","tkzGetPoint","tkzGetFirstPoint","tkzGetSecondPoint","tkzmathstyle","fileversion","filedate","tkzInvPhi","tkzPhi","tkzSqrtPhi","tkzSqrTwo","tkzSqrThree","tkzSqrFive","tkzSqrTwobyTwo","tkzPi","tkzEuler","tkzSetUpStyle","usetkzobj","usetkztool","tkzPrintFrac","tkzPrintFracWithPi","tkzprintfrac","tkzfactors","tkzReducFrac","tkzMathFirstResult","tkzMathSecondResult","extractxy","iftkznodedefined","tkzActivOff","tkzActivOn","tkzTwoPtCode","tkzPtExCode","tkzPtVirCode","CountToken","SubStringConditional","RecursionMacroEnd","ReplaceSubStrings","DisabledNumprint","EnabledNumprint","tkzSwapPoints","tkzPermute","tkzDotProduct","tkzGetResult","tkzIsLinear","tkzIsOrtho","tkzHelpGrid","setupcolorkeys","tkzSetUpColors","tkzSetUpAllColors","tkzAddName","ifinteger","integertrue","integerfalse","removedot","tkzgetinteger","tkzSetUpGrid","tkzRenamePoint","tkzGetPoints","tkzSetUpLabel","tkzGetPointCoord","tkzGetPointxy"]}
-,
-"tkz-berge.sty":{"envs":{},"deps":["tkz-graph.sty"],"cmds":["grEmptyPath","EdgeInGraphLoop","EdgeInGraphSeq","EdgeInGraphMod","EdgeInGraphModLoop","EdgeIdentity","EdgeFromOneToAll","EdgeFromOneToSeq","EdgeFromOneToSel","EdgeFromOneToComp","EdgeMod","EdgeDoubleMod","EdgeInGraphFromOneToComp","grEmptyCycle","grCycle","grComplete","grCirculant","grStar","grSQCycle","grWheel","grLadder","grPrism","grCompleteBipartite","grTriangularGrid","grLCF","tkzSetUpColors","AssignVertexLabel","grAndrasfai","grBalaban","grChvatal","grCocktailParty","grCrown","grCubicalGraph","grDesargues","grDodecahedral","grDoyle","grEmptyGrid","grEmptyLadder","grEmptyStar","grFolkman","grFoster","grFranklin","grGeneralizedPetersen","grGrotzsch","grHeawood","grIcosahedral","grKonisberg","grLevi","grMcGee","grMobiusKantor","grMobiusLadder","grOctahedral","grPappus","grPath","grPetersen","grRobertson","grRobertsonWegner","grTetrahedral","grTutteCoxeter","grWong","grWriteExplicitLabel","grWriteExplicitLabels"]}
-,
-"tkz-doc.cls":{"envs":["NewEnvBox","NewMacroBox"],"deps":["s-scrartcl.cls","tikz.sty","tikzlibrarydecorations.shapes.sty","tikzlibrarydecorations.text.sty","tikzlibrarydecorations.pathreplacing.sty","tikzlibrarydecorations.pathmorphing.sty","tikzlibrarydecorations.markings.sty","tikzlibraryshadows.sty","ragged2e.sty","footmisc.sty","framed.sty","eso-pic.sty","scrlayer-scrpage.sty","datetime.sty","booktabs.sty","cellspace.sty","multicol.sty"],"cmds":["ActivBoxName","addbs","BS","bslash","cmd","cn","cs","defoffile","env","filedate","fn","Iaccent","Iarg","IargEnv","IargName","IargNameEnv","Ienv","Ilib","Imacro","Iopt","IoptEnv","IoptName","IoptNameEnv","Istyle","IstyleEnv","LATEX","marg","meta","NameDist","NameFonct","NameLib","nameoffile","NamePack","NameSys","nodeshadowedone","ntt","oarg","ooarg","opt","PackageName","PackageVersion","parg","pdf","PGF","pgfname","pkg","presentation","restorelastnode","savelastnode","SectionFontStyle","TAline","tbody","TEX","thead","thecnt","TIKZ","tikzname","titleinframe","tkz","tkzAttention","tkzBomb","tkzbox","tkzcname","tkzdft","tkzHand","tkzHandBomb","tkzhname","tkzimp","tkzname","tkzNameDist","tkzNameEnv","tkzNameMacro","tkzNamePack","tkzNameSys","tkzSetUpColors","tkzsubf","tkzTitleFrame","tkzTwoBomb","TMline","TOenvline","TOline","var","vara","varp"]}
-,
-"tkz-euclide.sty":{"envs":{},"deps":["tikz.sty","tikzlibrarybackgrounds.sty","tikzlibrarydecorations.sty","tikzlibrarydecorations.pathreplacing.sty","tikzlibrarydecorations.text.sty","tikzlibraryintersections.sty","tikzlibraryplotmarks.sty","tikzlibraryquotes.sty","tikzlibrarythrough.sty","xpatch.sty","luacode.sty"],"cmds":["tkzmathanglebetweenpoints","tkzSqrt","tkzExp","tkzLog","tkzSin","tkzCos","tkzDefPoint","tkzDefShiftPoint","tkzDefShiftPointCoord","tkzDefPoints","tkzGetPoint","tkzGetPoints","tkzGetFirstPoint","tkzGetSecondPoint","tkzGetThirdPoint","tkzGetLength","tkzDefMidPoint","tkzDefBarycentricPoint","tkzDefSimilitudeCenter","tkzDefHarmonic","tkzDefGoldenRatio","tkzDefEquiPoints","tkzDefMidArc","tkzDefTriangleCenter","tkzDefProjExcenter","tkzDefPointOnLine","tkzDefPointOnCircle","tkzDefPointBy","tkzDefPointsBy","tkzDefPointWith","tkzGetVectxy","tkzDefLine","tkzDefTangent","tkzDefTriangle","tkzDefSpcTriangle","tkzPermute","tkzDefSquare","tkzDefRectangle","tkzDefParallelogram","tkzDefGoldenRectangle","tkzDefGoldRectangle","tkzDefRegPolygon","tkzDefCircle","tkzDefCircleBy","tkzInterLL","tkzInterLC","tkzInterCC","tkzTestInterCC","iftkzFlagCC","tkzFlagCCtrue","tkzFlagCCfalse","tkzInterCCN","tkzInterCCR","tkzGetAngle","tkzAngleResult","tkzFindAngle","tkzFindSlopeAngle","tkzDefRandPointOn","tkzDrawPoint","tkzDrawPoints","tkzDrawLine","tkzDrawLines","tkzDrawSegment","tkzDrawSegments","tkzDrawPolygon","tkzDrawPolySeg","tkzDrawCircle","tkzDrawCircles","tkzDrawSemiCircle","tkzDrawSemiCircles","tkzDrawArc","tkzDrawSector","tkzFillCircle","tkzFillCircles","tkzFillPolygon","tkzFillSector","tkzFillAngle","tkzFillAngles","tkzInit","tkzClip","tkzShowBB","tkzClipBB","tkzClipPolygon","tkzClipCircle","tkzClipSector","tkzMarkSegment","tkzMarkSegments","tkzMarkArc","tkzMarkAngle","tkzMarkAngles","tkzMarkRightAngle","tkzMarkRightAngles","tkzPicAngle","tkzPicRightAngle","tkzLabelPoint","tkzLabelPoints","tkzAutoLabelPoints","tkzLabelSegment","tkzLabelSegments","tkzLabelLine","tkzLabelAngle","tkzLabelAngles","tkzLabelCircle","tkzLabelArc","tkzCompass","tkzCompasss","tkzShowLine","tkzShowTransformation","tkzProtractor","tkzDuplicateSegment","tkzDuplicateLength","tkzCalcLength","tkzpttocm","tkzcmtopt","tkzGetPointCoord","tkzSwapPoints","tkzDotProduct","tkzPowerCircle","tkzDefRadicalAxis","tkzIsLinear","tkzIsOrtho","tkzGetResult","tkzSetUpColors","tkzSetUpPoint","tkzSetUpLine","tkzSetUpArc","tkzSetUpCompass","tkzSetUpLabel","tkzSetUpStyle","tkzLengthResult","fileversion","filedate","tkzDrawBisector","tkzDefIntSimilitudeCenter","tkzDefExtSimilitudeCenter","tkzDefIntHomotheticCenter","tkzDefExtHomotheticCenter","tkzDrawMedian","tkzDrawAltitude","tkzDrawMedians","tkzDrawBisectors","tkzDrawAltitudes","tkzGetRandPointOn","tkzTangent","tkzDrawTriangle","tkzRadius","tkzLength","iftkzLinear","tkzLineartrue","tkzLinearfalse","iftkzOrtho","tkzOrthotrue","tkzOrthofalse","setupcolorkeys","tkzSetUpAllColors","tkzNormalizeAngle","tkzpointnormalised","tkzmathrotatepointaround","extractxy","iftkznodedefined","tkzActivOff","tkzActivOn","CountToken","SubStringConditional","RecursionMacroEnd","ReplaceSubStrings","DisabledNumprint","EnabledNumprint","tkzMathResult","tkzHelpGrid","tkzText","tkzLegend","ifinteger","integertrue","integerfalse","removedot","tkzSetUpAxis","tkzDrawX","tkzDrawY","tkzDrawPolygons","tkzLabelRegPolygon","iftkzClipOutPoly","tkzClipOutPolytrue","tkzClipOutPolyfalse","tkzSetUpCircle","iftkzClipOutCircle","tkzClipOutCircletrue","tkzClipOutCirclefalse","tkzSetUpGrid","tkzGrid","tkzDefCircleTranslation","tkzDefCircleHomothety","tkzDefCircleReflection","tkzDefCircleSymmetry","tkzDefCircleRotation","tkzDefOrthogonalCircle","tkzDefOrthoThroughCircle","tkzDefInversionCircle","tkzDefEquilateral","tkzDefIsoscelesRightTriangle","tkzDrawEquilateral","tkzDefTwoOne","tkzDefPythagore","tkzDefSchoolTriangle","tkzDefGoldTriangle","tkzDefEuclideTriangle","tkzDefGoldenTriangle","tkzDefCheopsTriangle","tkzDefTwoAnglesTriangle","SetUpPTTR","tkzDefIncentralTriangle","tkzDefExcentralTriangle","tkzExcentralTriangle","tkzDefIntouchTriangle","tkzDefContactTriangle","tkzDefFeuerbachTriangle","tkzDefCentroidTriangle","tkzDefMedialTriangle","tkzDefMidpointTriangle","tkzDefOrthicTriangle","tkzDefAltitudeTriangle","tkzDefEulerTriangle","tkzDefTangentialTriangle","tkzDefSymmedialTriangle","tkzPointShowCoord","tkzShowPointCoord","tkzDefCircleR","tkzDefCircleD","tkzDefCircumCircle","tkzDefInCircle","tkzDefExCircle","tkzDefExRadius","tkzDefEulerCircle","tkzDefNinePointsCircle","tkzFeuerBachCircle","tkzDefEulerRadius","tkzDefApolloniusCircle","tkzDefSpiekerCircle","tkzDrawSectorRAngles","tkzDrawSectorN","tkzDrawSectorRotate","tkzDrawSectorAngles","tkzDrawSectorRwithNodesAngles","tkzDrawSectorR","tkzFillSectorRAngles","tkzFillSectorN","tkzFillSectorRotate","tkzFillSectorAngles","tkzFillSectorR","tkzDefLineLL","tkzDefOrthLine","tkzDefMediatorLine","tkzDefBisectorLine","tkzDefBisectorOutLine","tkzDefSymmedianLine","tkzDefAltitudeLine","tkzDefEulerLine","tkzTgtAt","tkzTgtFromP","tkzTgtFromPR","tkzRegPolygonCenter","tkzRegPolygonSide","tkzRenamePoint","tkzGetPointxy","tkzDrawArcTowards","tkzDrawArcRotate","tkzDrawArcAngles","tkzDrawArcRwithNodes","tkzDrawArcR","tkzDrawArcRAngles","tkzDrawArcRAN","tkzPathArcRAN","tkzRandPointOnRect","tkzRandPointOnSegment","tkzRandPointOnLine","tkzRandPointOnCircle","tkzRandPointOnCircleThrough","tkzRandPointOnDisk","tkzVecKOrth","tkzVecK","tkzVecKOrthNorm","tkzVecKNorm","tkzShowMediatorLine","tkzShowLLLine","tkzShowOrthLine","tkzShowBisectorLine","tkzShowTranslation","tkzShowSymOrth","tkzShowCSym","tkzShowProjection","ExtractPoint","FirstPointInList","tkzTranslation","tkzUTranslation","tkzCSym","tkzUCSym","tkzSymOrth","tkzUSymOrth","tkzProjection","tkzUProjection","tkzHomo","tkzUHomo","tkzRotateAngle","tkzURotateAngle","tkzRotateInRad","tkzURotateInRad","tkzInversePoint","tkzUInversePoint","tkzInverseNegativePoint","tkzUInverseNegativePoint","tkzDefBCPoint","tkzDivHarmonic","tkzOrthoCenter","tkzDefOrthoCenter","tkzCentroid","tkzBaryCenter","tkzCircumCenter","tkzDefCircumCenter","tkzInCenter","tkzDefInCenter","tkzExCenter","tkzDefExCenter","tkzEulerCenter","tkzNinePointCenter","tkzDefEulerCenter","tkzSymmedianCenter","tkzLemoinePoint","tkzGrebePoint","tkzDefLemoinePoint","tkzSpiekerCenter","tkzDefSpiekerCenter","tkzGergonneCenter","tkzDefGergonneCenter","tkzNagelCenter","tkzDefNagelCenter","tkzMittenpunktCenter","tkzDefMittenpunktCenter","tkzDefMiddlespoint","tkzFeuerbachCenter","tkzDefFeuerbachCenter","tkzOrthogonalCenter","usetkzobj","usetkztool","tkzInterLLxy","tkzTestInterLC","iftkzFlagLC","tkzFlagLCtrue","tkzFlagLCfalse","tkzInterLCR","tkzInterLCWithNodes","tkzInterCCWithNodes","tkzAddName","FullProtractor","FullProtractorReturn","tkzmathstyle","tkzCoeffSubColor","tkzCoeffSubLw","tkzRatioLineGrid","tkzPhi","tkzInvPhi","tkzSqrtPhi","tkzSqrTwo","tkzSqrThree","tkzSqrFive","tkzSqrTwobyTwo","tkzPi","tkzEuler"]}
-,
-"tkz-fct.sty":{"envs":{},"deps":["tkz-base.sty"],"cmds":["tkzFct","tkzDefPointByFct","tkzDrawTangentLine","tkzDrawArea","tkzDrawAreafg","tkzDrawRiemannSum","tkzDrawRiemannSumInf","tkzDrawRiemannSumSup","tkzDrawRiemannSumMid","tkzFctPar","tkzFctPolar"]}
-,
-"tkz-graph.sty":{"envs":{},"deps":["tikz.sty"],"cmds":["Vertex","Vertices","EA","WE","NO","SO","NOEA","NOWE","SOEA","SOWE","SetGraphUnit","SetVertexNoLabel","SetVertexMath","SetVertexLabel","SetVertexLabelOut","SetVertexLabelIn","Edge","Loop","Edges","GraphInit","VertexInnerSep","VertexOuterSep","VertexDistance","VertexShape","VertexLineWidth","VertexLineColor","VertexLightFillColor","VertexDarkFillColor","VertexTextColor","VertexFillColor","VertexBallColor","VertexBigMinSize","VertexInterMinSize","VertexSmallMinSize","EdgeFillColor","EdgeArtColor","EdgeColor","EdgeDoubleDistance","EdgeLineWidth","SetVertexSimple","SetVertexNormal","SetUpVertex","SetUpEdge","SetGraphShadeColor","SetGraphArtColor","SetGraphColor","grProb","grProbThree","AddVertexColor","SetVertexArt"]}
-,
-"tkz-kiviat.sty":{"envs":{},"deps":["tikz.sty"],"cmds":["tkzKiviatDiagram","tkzKiviatLine","tkzKiviatLineFromFile","tkzKiviatGrad","tkzKiviatDiagramFromFile"]}
-,
-"tkz-linknodes.sty":{"envs":["NodesList"],"deps":["tikz.sty"],"cmds":["LinkNodes","AddNode"]}
-,
-"tkz-orm.sty":{"envs":{},"deps":["tikz.sty"],"cmds":["entity","value","unary","role","binary","roles","ternary","vunary","vrole","vbinary","vroles","vternary","plays","limits","limitsto","rules","constraintdeclare","constraintdeclarealias","constraintdeclareasnode","ormtext","ormbf","ormc","ormsup","ormsub","ormind","ormbraces","ormvalues","ormleft","ormup","tkzorm","ormarrowup","ormarrowdown","ormarrowleft","ormarrowright"]}
-,
-"tkz-tab.sty":{"envs":{},"deps":["ifthen.sty","tikz.sty"],"cmds":["tkzTabInit","tkzTab","tkzTabLine","tkzTabVar","tkzTabVal","tkzTabIma","tkzTabImaFrom","tkzTabTan","tkzTabTanFrom","tkzTabSlope","tkzTabSetup","tkzTabColors","ecartcl","stripspaces","tkzDrawArrow","tkzTabDefaultArrowStyle","tkzTabDefaultBackgroundColor","tkzTabDefaultLineWidth","tkzTabDefaultSep","tkzTabDefaultWritingColor"]}
-,
-"tkzexample.sty":{"envs":["tkzexample","tkzltxexample"],"deps":["calc.sty","mdframed.sty","fancyvrb.sty"],"cmds":["commenthandler","fileexample","iftkzcodesaved","killienc","tkzcodesavedfalse","tkzcodesavedtrue","tkzexamplebox","tkzexamplewidth","tkzFileSavedPrefix","tkzltxexamplebox","tkzltxexamplewidth","tkzref","tkzSavedCode","typesetcomment","typesetcommentnum"]}
-,
-"tlc-article.cls":{"envs":{},"deps":["geometry.sty","multicol.sty","lmodern.sty","fontenc.sty","textcomp.sty","inputenc.sty","hyperref.sty","bookmark.sty","glossaries.sty","graphicx.sty","xcolor.sty","listings.sty","spverbatim.sty","array.sty","csvsimple.sty","enumitem.sty","longtable.sty","makecell.sty","tabularx.sty","pdflscape.sty","pdfpages.sty","appendix.sty","todonotes.sty","tocloft.sty","fancyhdr.sty","titling.sty","lastpage.sty","colortbl.sty"],"cmds":["tlcDarkblue","tlcBeginLandscape","tlcEndLandscape","tlcVersionPart","ER","tlcVspace","inputIfExists","tlcTitlePageAndTableOfContents","tlcIsDefined","tlcDebug","DH","NG","dj","ng","k","guillemotleft","guillemotright","guilsinglleft","guilsinglright","quotedblbase","quotesinglbase","textquotedbl","DJ","th","TH","dh","Hwithstroke","hwithstroke","textogonekcentered","guillemetleft","guillemetright","printacronyms"]}
-,
-"to-be-determined.sty":{"envs":{},"deps":["xcolor.sty","soul.sty"],"cmds":["tbd"]}
-,
-"tocbasic.sty":{"envs":{},"deps":["scrbase.sty","scrlogo.sty"],"cmds":["Ifattoclist","addtotoclist","owneroftoc","categoryoftoc","AtAddToTocList","removefromtoclist","doforeachtocfile","addtoeachtocfile","addcontentslinetoeachtocfile","addxcontentsline","nonumberline","addxcontentslinetoeachtocfile","BeforeStartingTOC","AfterStartingTOC","listoftoc","listofname","listofeachtoc","BeforeTOCHead","AfterTOCHead","deftocheading","setuptoc","unsettoc","Iftocfeature","tocbasicautomode","DeclareNewTOC","usetocbasicnumberline","TOCEntryStyleInitCode","TOCEntryStyleStartInitCode","DefineTOCEntryBooleanOption","DefineTOCEntryCommandOption","DefineTOCEntryIfOption","DefineTOCEntryLengthOption","DefineTOCEntryListOption","DefineTOCEntryNumberOption","DefineTOCEntryOption","AddToDeclareTOCEntryStylePreCheckNeeds","PreToDeclareTOCEntryStylePreCheckNeeds","TOCEntryStyleNeedsCommandByOption","DeclareTOCEntryStyle","CloneTOCEntryStyle","DeclareTOCStyleEntry","DeclareTOCStyleEntries","LastTOCLevelWasHigher","LastTOCLevelWasSame","LastTOCLevelWasLower","TOCLineLeaderFill","MakeMarkcase","ifattoclist","iftocfeature"]}
-,
-"tocbibind.sty":{"envs":["thebibitemlist"],"deps":{},"cmds":["tocotherhead","tocbibname","setindexname","settocname","setlotname","setlofname","settocbibname","simplechapter","restorechapter","simplechapterdelim","tocchapter","tocsection","tocfile","tocetcmark","PRWPackageNote","PRWPackageNoteNoLine","bibsection"]}
-,
-"tocdata.sty":{"envs":{},"deps":["xparse.sty","etoolbox.sty","xpatch.sty"],"cmds":["tocdataformat","tocdata","partauthor","chapterauthor","sectionauthor","subsectionauthor","captionartist","captionauthor","tocdatapartprint","tocdatachapterprint","tocdatasectionprint","tocdatasubsectionprint","tocdataartistprint","tocdataartisttextprint","tocdataauthorprint","tocdataauthortextprint","tdartistjustify","tdartistcenter","tdartistleft","tdartistright","tdartisttextjustify","tdartisttextcenter","tdartisttextleft","tdartisttextright","tdauthorjustify","tdauthorcenter","tdauthorleft","tdauthorright","tdauthortextjustify","tdauthortextcenter","tdauthortextleft","tdauthortextright","settocdata","TDoptionalnameprint","TDartistauthorprint","TDartistauthortextprint","tocdatafont"]}
-,
-"tocenter.sty":{"envs":{},"deps":{},"cmds":["ToCenter","FromMargins"]}
-,
-"tocloft.sty":{"envs":{},"deps":{},"cmds":["addcontentsline","contentsline","addtocontents","tocloftpagestyle","cftmarktoc","cftmarklof","cftmarklot","cftbeforetoctitleskip","cftbeforeloftitleskip","cftbeforelottitleskip","cftaftertoctitleskip","cftafterloftitleskip","cftafterlottitleskip","cfttoctitlefont","cftloftitlefont","cftlottitlefont","cftaftertoctitle","cftafterloftitle","cftafterlottitle","cftdot","cftdotsep","cftnodots","cftdotfill","cftsetpnumwidth","cftsetrmarg","cftpnumalign","cftparskip","cftbeforepartskip","cftbeforechapskip","cftbeforesecskip","cftbeforesubsecskip","cftbeforesubsubsecskip","cftbeforeparaskip","cftbeforesubparaskip","cftbeforefigskip","cftbeforesubfigskip","cftbeforetabskip","cftbeforesubtabskip","cftpartindent","cftchapindent","cftsecindent","cftsubsecindent","cftsubsubsecindent","cftparaindent","cftsubparaindent","cftfigindent","cftsubfigindent","cfttabindent","cftsubtabindent","cftpartnumwidth","cftchapnumwidth","cftsecnumwidth","cftsubsecnumwidth","cftsubsubsecnumwidth","cftparanumwidth","cftsubparanumwidth","cftfignumwidth","cftsubfignumwidth","cfttabnumwidth","cftsubtabnumwidth","cftpartfont","cftchapfont","cftsecfont","cftsubsecfont","cftsubsubsecfont","cftparafont","cftsubparafont","cftfigfont","cftsubfigfont","cfttabfont","cftsubtabfont","cftpartpresnum","cftchappresnum","cftsecpresnum","cftsubsecpresnum","cftsubsubsecpresnum","cftparapresnum","cftsubparapresnum","cftfigpresnum","cftsubfigpresnum","cfttabpresnum","cftsubtabpresnum","cftpartaftersnum","cftchapaftersnum","cftsecaftersnum","cftsubsecaftersnum","cftsubsubsecaftersnum","cftparaaftersnum","cftsubparaaftersnum","cftfigaftersnum","cftsubfigaftersnum","cfttabaftersnum","cftsubtabaftersnum","cftpartaftersnumb","cftchapaftersnumb","cftsecaftersnumb","cftsubsecaftersnumb","cftsubsubsecaftersnumb","cftparaaftersnumb","cftsubparaaftersnumb","cftfigaftersnumb","cftsubfigaftersnumb","cfttabaftersnumb","cftsubtabaftersnumb","cftpartleader","cftchapleader","cftsecleader","cftsubsecleader","cftsubsubsecleader","cftparaleader","cftsubparaleader","cftfigleader","cftsubfigleader","cfttableader","cftsubtableader","cftpartdotsep","cftchapdotsep","cftsecdotsep","cftsubsecdotsep","cftsubsubsecdotsep","cftparadotsep","cftsubparadotsep","cftfigdotsep","cftsubfigdotsep","cfttabdotsep","cftsubtabdotsep","cftpartpagefont","cftchappagefont","cftsecpagefont","cftsubsecpagefont","cftsubsubsecpagefont","cftparapagefont","cftsubparapagefont","cftfigpagefont","cftsubfigpagefont","cfttabpagefont","cftsubtabpagefont","cftpartafterpnum","cftchapafterpnum","cftsecafterpnum","cftsubsecafterpnum","cftsubsubsecafterpnum","cftparaafterpnum","cftsubparaafterpnum","cftfigafterpnum","cftsubfigafterpnum","cfttabafterpnum","cftsubtabafterpnum","cftsetindents","cftpagenumbersoff","cftpagenumberson","newlistof","tocdepth","lotdepth","lofdepth","newlistentry","cftchapterprecis","cftchapterprecishere","cftchapterprecistoc","cftlocalchange","cftaddtitleline","cftaddnumtitleline","cftlofposthook","cftlofprehook","cftlotposthook","cftlotprehook","cfttocposthook","cfttocprehook","cftpartfillnum","cftchapfillnum","cftsecfillnum","cftsubsecfillnum","cftsubsubsecfillnum","cftparafillnum","cftsubparafillnum","cftfigfillnum","cftsubfigfillnum","cfttabfillnum","cftsubtabfillnum","cftchapname","cftsecname","cftsubsecname","cftsubsubsecname","cftparaname","cftsubparaname","cftfigname","cftsubfigname","cfttabname","cftsubtabname","phantomsection","cftparfillskip"]}
-,
-"tocvsec2.sty":{"envs":{},"deps":["ifthen.sty"],"cmds":["maxtocdepth","settocdepth","resettocdepth","setsecnumdepth","maxsecnumdepth","resetsecnumdepth"]}
-,
-"todo.sty":{"envs":["todoenv"],"deps":["amssymb.sty"],"cmds":["todo","Todo","todoformat","todomark","done","todoopen","todoclose","astodos","todoenvformat","todos","todoname","thetodo","doneitem","todoitem"]}
-,
-"todonotes.sty":{"envs":{},"deps":["ifthen.sty","xcolor.sty","tikzlibrarypositioning.sty","tikzlibraryshadows.sty"],"cmds":["todo","setuptodonotes","todostyle","missingfigure","listoftodos","todototoc","todoformat"]}
-,
-"tokcycle.sty":{"envs":{},"deps":{},"cmds":["tokcycle","expandedtokcycle","tokencycle","endtokencycle","tokcyclexpress","expandedtokcyclexpress","tokencyclexpress","endtokencyclexpress","tokcycleenvironment","xtokcycleenvironment","tcafterenv","Characterdirective","Groupdirective","Macrodirective","Spacedirective","resetCharacterdirective","resetGroupdirective","resetMacrodirective","resetSpacedirective","resettokcycle","cytoks","addcytoks","ifstripgrouping","stripgroupingtrue","stripgroupingfalse","processtoks","groupedcytoks","stripimplicitgroupingcase","tcpeek","tcpop","tcpopliteral","tcpopappto","tcpopliteralappto","tcpopuntil","tcpopwhitespace","ifspacepopped","spacepoppedtrue","spacepoppedfalse","tcpush","tcpushgroup","tcappto","truncategroup","truncategroupiftokis","truncatecycle","truncatecycleiftokis","settcEscapechar","ifactivetok","activetoktrue","activetokfalse","ifactivetokunexpandable","activetokunexpandabletrue","activetokunexpandablefalse","ifactivechar","activechartrue","activecharfalse","ifimplicittok","implicittoktrue","implicittokfalse","tcsptoken","theactivespace","ifcatSIX","catSIXtrue","catSIXfalse","implicitsixtok","whennotprocessingparameter","tctestifcon","tctestifx","tctestifnum","tctestifcatnx","aftertokcycle","tcendgroup","settcGrouping","backslashcmds","csmk","implicitgrpfork","restorecatcode","stringify","tcenvscope","tokcycrawxpress","tokcycraw","endtokcycraw","trapactivechar","trapactives","trapactivetokunexpandable","trapactivetok","trapcatSIXb","trapcatSIXc","trapcatSIX","trapimplicitegrp","tcname","tcver","tcdate"]}
-,
-"tokenizer.sty":{"envs":{},"deps":["ifthen.sty"],"cmds":["GetTokens","TrimSpaces","trimb","trimc"]}
-,
-"tolkienfonts.sty":{"envs":["arnor","barsarati","barsaratia","beleriand","daeron","eregion","fancydaeron","fancyerebor","fancyeregion","fancyhobbit","fancymoria","gondor","mazarbul","moria","orthmode","phonemic","quenya","quenyaa","quenyagen","quenyared","sarati","saratia","tehtamode","valmarica","valmaric"],"deps":["fontenc.sty","ifthen.sty","calc.sty"],"cmds":["annatar","Arnor","Beleriand","cirthfont","Daeron","defaultbase","eldamar","eleven","Erebor","Eregion","es","fonterebor","fontquenya","fontsindarin","Gondor","Hobbit","Mazarbul","Moria","noldor","of","ofthe","Orthmode","p","parmaite","Phonemic","Quenya","QuenyaA","Quenyagen","Quenyared","R","reversedigits","s","sa","Sarati","SaratiA","saratifont","se","si","so","su","sunrune","sy","Tehtamode","ten","tengalt","tengfont","The","THE","twelve","valmarfont","Valmaric","ValmaricA","arnorfamily","beleriandfamily","cirthabbrevs","cirthE","cirthfancysetup","cirthS","daeronfamily","donothing","elvishoption","englishabbrevs","englishoption","ereborfamily","eregionfamily","gondorfamily","hobbitfamily","mazarbulfamily","moriafamily","orthfamily","phonemicfamily","quenyaabbrevs","quenyaafamily","quenyafamily","quenyagenfamily","quenyaredfamily","saratiabbrevs","savecolon","savecomma","saveexclam","savehat","saveleftparen","saveperiod","savequest","saverightparen","savescolon","savespace","sindarinabbrevs","tehtafamily","TengwarA","TengwarAA","tengwarabbrevs","TengwarE","TengwarEA","TengwarN","TengwarNA","tengwarnumbering","TengwarP","TengwarPA","TengwarQ","TengwarQA","TengwarS","TengwarSA","textlatin","thetengwarnumctrA","thetengwarnumctrB","thetengwarnumctrC","DH","dh","dj","DJ","guillemetleft","guillemetright","guillemotleft","guillemotright","guilsinglleft","guilsinglright","Hwithstroke","hwithstroke","k","NG","ng","quotedblbase","quotesinglbase","textogonekcentered","textquotedbl","th","TH"]}
-,
-"tone.sty":{"envs":{},"deps":["tipa.sty"],"cmds":["tone","rtone","stone"]}
-,
-"tonevalue.sty":{"envs":["untVisualisation"],"deps":["contour.sty","etoolbox.sty","listofitems.sty","tikz.sty","tikzlibrarypositioning.sty","tikzlibrarydecorations.markings.sty","xcolor.sty","xkeyval.sty","xstring.sty"],"cmds":["untpoint","linkuntpoints","drawuntpoint","len","sendiauToListStr","sendiaulistStr","sendiaulist","thesumOfPitchHeights","toneVisualisationFontCmd","xend","xjoinbycomma","xstart","yend","ystart"]}
-,
-"toolbox.sty":{"envs":{},"deps":{},"cmds":["toolboxMakeDef","toolboxFreeDef","toolboxFuturelet","toolboxGobbleNext","toolboxIfNextToken","toolboxToken","toolboxIfNextGobbling","toolboxIfEmpty","toolboxIfx","toolboxIfX","toolboxIfElse","toolboxLoop","toolboxLoopName","toolboxTokenLoop","toolboxTokenLoopName","toolboxDef","toolboxSpace","toolboxAppend","toolboxSurround","toolboxTokDef","toolboxSplitAt","toolboxMakeSplit","toolboxFreeSplit","toolboxReplace","toolboxReplaceSplit","toolboxMakeHarmless","toolboxDropBrace","toolboxIf","toolboxNewiftrue","toolboxNewiffalse","toolboxNewifTrue","toolboxNewifFalse","toolboxLet","toolboxWithNr","toolboxEmpty","toolboxSpaceToken","toolboxFirstOfTwo","toolboxSecondOfTwo","toolboxGobbleArg"]}
-,
-"topcapt.sty":{"envs":{},"deps":{},"cmds":["topcaption"]}
-,
-"topcoman.sty":{"envs":{},"deps":["iftex.sty","textcomp.sty","fancyvrb.sty"],"cmds":["DeclareSlantedCapitalGreekLetters","textormath","ohm","ped","ap","diff","unit","gei","eu","micro","gradi","listing","fakeSC","simulatedSC","DisableFigTabNames","EnableFigTabNames"]}
-,
-"topfloat.sty":{"envs":["topfloat"],"deps":{},"cmds":["topI","endtopI","topII","endtopII","tabcap","figcap"]}
-,
-"topfront.sty":{"envs":["frontespizio","frontespizio*"],"deps":["etoolbox.sty","xspace.sty","xparse.sty"],"cmds":["frontespizio","monografia","titolo","sottotitolo","materia","Materia","direttore","coordinatore","QualificaDirettore","relatore","secondorelatore","terzorelatore","tutore","TutorName","AdvisorName","CoAdvisorName","candidato","candidata","secondocandidato","secondacandidata","terzocandidato","terzacandidata","CandidateName","sedutadilaurea","esamedidottorato","ciclodidottorato","CycleName","corsodilaurea","corsodidottorato","CorsoDiLaureaIn","TesiDiLaurea","NomeMonografia","NomeDissertazione","InName","NomeAnnoAccademico","logosede","retrofrontespizio","annoaccademico","ateneo","nomeateneo","scuoladidottorato","setlogodistance","struttura","facolta","FacoltaDi","StrutturaDidattica","DottoratoIn","NomeTutoreAziendale","NomePrimoTomo","NomeSecondoTomo","NomeTerzoTomo","NomeQuartoTomo","AnnoAccademico","BoxCandidati","BoxRelatori","Candidata","Candidate","Candidati","Candidato","chaptermark","Correlatore","Correlatori","EnDash","getseduta","headstrut","IDlabel","PrimoTomo","printloghi","QuartoTomo","Relatore","Relatori","SecondoTomo","TerzoTomo","thetomo","TPTmaybestar","Tutore","tutoreaziendale","classicafalse","classicatrue","Direttorefalse","Direttoretrue","dottoralefalse","dottoraletrue","dottoratofalse","dottoratotrue","evenboxesfalse","evenboxestrue","femminilefalse","femminiletrue","ifclassica","ifDirettore","ifdottorale","ifdottorato","ifevenboxes","iffemminile","ifmagistrale","ifmonografia","ifplurale","ifScuDo","ifsecondaria","ifTOPfront","iftriennale","magistralefalse","magistraletrue","monografiafalse","monografiatrue","pluralefalse","pluraletrue","ScuDofalse","ScuDotrue","secondariafalse","secondariatrue","TOPfrontfalse","TOPfronttrue","triennalefalse","triennaletrue"]}
-,
-"topiclongtable.sty":{"envs":["topiclongtable"],"deps":["zref-abspage.sty","xparse.sty","array.sty","multirow.sty","longtable.sty"],"cmds":["endfirstfoot","endlastfoot","endfirsthead","endfoot","endhead","Topic","TopicLine","TopicSetContinuationCode","TopicSetVPos","TopicSetWidth"]}
-,
-"topsection.sty":{"envs":{},"deps":{},"cmds":["topsection"]}
-,
-"toptesi-scudo.sty":{"envs":["ThesisTitlePage"],"deps":["amsmath.sty","amssymb.sty","amsthm.sty","xparse.sty","lscape.sty","setspace.sty","calc.sty","ifthen.sty","caption.sty","subcaption.sty","tabularx.sty","booktabs.sty","multirow.sty","siunitx.sty","float.sty","nomencl.sty","csquotes.sty","biblatex.sty","imakeidx.sty","indentfirst.sty"],"cmds":["CClicence","CycleNumber","diff","Disclaimer","eu","ExaminationDate","ExaminerList","fivestars","gei","ifmybibstyle","iu","ju","keywords","mybibstylefalse","mybibstyletrue","Ndissertation","Ndoctoralprogram","Nexaminationcommittee","Nlocation","NSupervisor","PhDschoolLogo","printloghi","printnomencl","ProgramName","setlogodistance","Signature","subject","subtitle","SupervisorList","SupervisorNumber","citet","citep","citealt","citealp","citeauthor","citeyearpar","Citet","Citep","Citealt","Citealp","citefullauthor","Citefullauthor","citetext","defcitealias","citetalias","citepalias"]}
-,
-"toptesi-sss.sty":{"envs":["FrontespizioTesina"],"deps":["amsmath.sty","amssymb.sty","amsthm.sty","xcolor.sty","xspace.sty","xparse.sty","calc.sty","ifthen.sty","booktabs.sty","multirow.sty","indentfirst.sty"],"cmds":["AnnoScolastico","femminilefalse","femminiletrue","IDlabel","ifBlank","iffemminile","IndirizzoMiur","NomeCandidato","NomeScuola","NomeTesina","NumeroCommissione","OpzioneMiur","Presidente","SedeScuola","sottotitolo","SSSLogo","studente","studentessa","TipoScuola","titolo"]}
-,
-"toptesi.cls":{"envs":["ThesisTitlePage","ThesisTitlePage","ThesisTitlePage","ThesisTitlePage"],"deps":["fancyvrb.sty","trace.sty","xkeyval.sty","s-report.cls","iftex.sty","babel.sty","toptesi.sty","frontespizio.sty","toptesi-scudo.sty","toptesi-sss.sty"],"cmds":["CandidateNames","corsodistudi","giorno","luogo","NomeAteneo","NomeCorsoDiStudi","NomeElaborato","NomeRelatore","StrutturaDi","TitoloListaCandidati","GetFileInfo","classdate","filedate","fileinfo","filename","fileversion","stydate","captionsenglish","dateenglish","extrasenglish","noextrasenglish","englishhyphenmins","britishhyphenmins","americanhyphenmins","prefacename","bibname","chaptername","enclname","ccname","headtoname","pagename","seename","alsoname","proofname","glossaryname","captionsitalian","dateitalian","extrasitalian","noextrasitalian","italianhyphenmins","setactivedoublequote","setISOcompliance","IntelligentComma","NoIntelligentComma","XXIletters","XXVIletters","ap","ped","unit","virgola","virgoladecimale","LtxSymbCaporali","CaporaliFrom","captionsgreek","dategreek","extrasgreek","noextrasgreek","greekscript","greektext","ensuregreek","textgreek","greeknumeral","Greeknumeral","greekfontencoding","textol","outlfamily","greekhyphenmins","Grtoday","anwtonos","katwtonos","qoppa","varqoppa","stigma","sampi","Digamma","ddigamma","euro","permill","textAlpha","textBeta","textGamma","textDelta","textEpsilon","textZeta","textEta","textTheta","textIota","textKappa","textLambda","textMu","textNu","textXi","textOmicron","textPi","textRho","textSigma","textTau","textUpsilon","textPhi","textChi","textPsi","textOmega","textalpha","textbeta","textgamma","textdelta","textepsilon","textzeta","texteta","texttheta","textiota","textkappa","textlambda","textmu","textnu","textxi","textomicron","textpi","textrho","textsigma","textfinalsigma","textautosigma","texttau","textupsilon","textphi","textchi","textpsi","textomega","textpentedeka","textpentehekaton","textpenteqilioi","textstigma","textvarstigma","textKoppa","textkoppa","textqoppa","textQoppa","textStigma","textSampi","textsampi","textanoteleia","texterotimatiko","textdigamma","textDigamma","textdexiakeraia","textaristerikeraia","textvarsigma","textstigmagreek","textkoppagreek","textStigmagreek","textSampigreek","textsampigreek","textdigammagreek","textDigammagreek","textnumeralsigngreek","textnumeralsignlowergreek","textpentemuria","textpercent","textmicro","textschwa","textampersand","accdialytika","acctonos","accdasia","accpsili","accvaria","accperispomeni","prosgegrammeni","ypogegrammeni","accdialytikaperispomeni","accdialytikatonos","accdialytikavaria","accdasiaperispomeni","accdasiavaria","accdasiaoxia","accpsiliperispomeni","accpsilioxia","accpsilivaria","accinvertedbrevebelow","textsubarch","accbrevebelow"]}
-,
-"toptesi.sty":{"envs":["ThesisTitlePage","ThesisTitlePage","ThesisTitlePage","ThesisTitlePage","citazioni","dedica","dedication","interlinea","pdfxmetadata","wittysentences","SDbox"],"deps":["xkeyval.sty","scrextend.sty","iftex.sty","xspace.sty","xparse.sty","topfront.sty","graphicx.sty","etoolbox.sty","topcoman.sty","frontespizio.sty","toptesi-scudo.sty","toptesi-sss.sty"],"cmds":["CandidateNames","corsodistudi","giorno","luogo","NomeAteneo","NomeCorsoDiStudi","NomeElaborato","NomeRelatore","StrutturaDi","TitoloListaCandidati","backmatter","captionof","english","ExtendCaptions","figurespagetrue","frontmatter","goodpagebreak","indici","inglese","italiano","mainmatter","nota","NoteWhiteLine","paginavuota","ringraziamenti","setbindingcorrection","sommario","tablespagetrue","tomo","captionSD","SDcaption","SDimage","acknowledgements","acknowledgename","allcontents","blankpagestyle","captionsetup","captionwidth","chapterbibliographyfalse","chapterbibliographytrue","customfalse","emptypage","figurespagefalse","frontmatterfalse","frontmattertrue","fullwidth","headWarn","ifchapterbibliography","ifcustom","ifempty","iffigurespage","iffrontmatter","iflibro","ifNumberFloat","ifnumeriromani","iftablespage","iftoc","ifTOPfolioinhead","ifTOPnocenterfolio","ifTOPnocenterhead","ifTOPnumerazioneromana","interno","lapagina","librofalse","librotrue","NoValidTipo","NumberFloatfalse","NumberFloattrue","numeriromanifalse","numeriromanitrue","originalcaption","phantomsection","saveaddvspace","SDcapbox","SDcaptionwidth","SDfigbox","SDfigurewidth","SDlinewidth","SDtabular","summary","summaryname","tablespagefalse","theNumberSD","tocfalse","toctrue","TOPfolioinheadfalse","TOPfolioinheadtrue","TOPnocenterfoliofalse","TOPnocenterfoliotrue","TOPnocenterheadfalse","TOPnocenterheadtrue","TOPnumerazioneromanafalse","TOPnumerazioneromanatrue","TOPsecnumdepth","TROF","TROFF","TRON"]}
-,
-"totalcount.sty":{"envs":{},"deps":["xspace.sty"],"cmds":["totalenumis","iftotalenumis","totalenumiis","iftotalenumiis","totalenumiiis","iftotalenumiiis","totalenumivs","iftotalenumivs","totalequations","iftotalequations","totalfigures","iftotalfigures","totalfootnotes","iftotalfootnotes","totalmpfns","iftotalmpfns","totalmpfootnotes","iftotalmpfootnotes","totalparagraphs","iftotalparagraphs","totalparts","iftotalparts","totalsections","iftotalsections","totalsubparagraphs","iftotalsubparagraphs","totalsubsections","iftotalsubsections","totalsubsubsections","iftotalsubsubsections","totaltables","iftotaltables","totalchapters","iftotalchapters","totalpages","iftotalpages","DeclareTotalCounter"]}
-,
-"totcount.sty":{"envs":{},"deps":["keyval.sty"],"cmds":["regtotcounter","newtotcounter","total","totvalue","usetotcountfile","totcdocdate","totcfiledate","totcfileversion"]}
-,
-"totpages.sty":{"envs":{},"deps":["everyshi.sty","keyval.sty"],"cmds":["theTotPages","TotPerSheet","TotSheets","ifTotPagesToDvi","TotPagesToDvitrue","TotPagesToDvifalse","ifPagesPerSheet","PagesPerSheettrue","PagesPerSheetfalse"]}
-,
-"tpms-l.cls":{"envs":{},"deps":["s-amsart.cls"],"cmds":["ifeditorial","editorialtrue","editorialfalse","englishvolinfo","datereceivedname","dateacceptedname","dateaccepted","UDC"]}
-,
-"trace.sty":{"envs":{},"deps":{},"cmds":["traceon","traceoff"]}
-,
-"tracking.sty":{"envs":{},"deps":{},"cmds":["track","fittrack","ratiotrack","dolist","dodolist","endlist"]}
-,
-"tracklang-scripts.sty":{"envs":{},"deps":["tracklang.sty"],"cmds":["TrackLangScriptMap","TrackLangScriptAlphaToNumeric","TrackLangScriptIfKnownAlpha","TrackLangScriptNumericToAlpha","TrackLangScriptIfKnownNumeric","TrackLangScriptAlphaToName","TrackLangScriptAlphaToDir","TrackLangScriptSetParent","TrackLangScriptGetParent","TrackLangScriptIfHasParent"]}
-,
-"tracklang.sty":{"envs":{},"deps":{},"cmds":["TrackPredefinedDialect","TrackLocale","TrackLanguageTag","TrackIfKnownLanguage","TrackLangFromEnv","TrackLangShowWarningsfalse","TrackLangShowWarningstrue","TrackLangEnv","TrackLangEnvLang","TrackLangEnvTerritory","TrackLangEnvCodeSet","TrackLangEnvModifier","TrackLangQueryEnv","TrackLangQueryOtherEnv","TrackLangParseFromEnv","AnyTrackedLanguages","GetTrackedDialectFromLanguageTag","TrackedDialectClosestSubMatch","ForEachTrackedDialect","ForEachTrackedLanguage","IfTrackedLanguage","IfTrackedDialect","TrackedLanguageFromDialect","TrackedDialectsFromLanguage","IfTrackedLanguageHasIsoCode","IfTrackedIsoCode","TrackedLanguageFromIsoCode","TrackedIsoCodeFromLanguage","TwoLetterIsoCountryCode","TwoLetterIsoLanguageCode","ThreeLetterIsoLanguageCode","ThreeLetterExtIsoLanguageCode","GetTrackedLanguageTag","GetTrackedDialectModifier","IfHasTrackedDialectModifier","GetTrackedDialectVariant","IfHasTrackedDialectVariant","GetTrackedDialectScript","IfHasTrackedDialectScript","TrackLangGetDefaultScript","IfTrackedDialectIsScriptCs","GetTrackedDialectSubLang","IfHasTrackedDialectSubLang","GetTrackedDialectAdditional","IfHasTrackedDialectAdditional","IfTrackedLanguageFileExists","CurrentTrackedTag","TrackLangRequireDialect","TrackLangRequireDialectPrefix","CurrentTrackedDialect","CurrentTrackedLanguage","CurrentTrackedRegion","CurrentTrackedIsoCode","CurrentTrackedDialectModifier","CurrentTrackedDialectVariant","CurrentTrackedDialectSubLang","CurrentTrackedDialectAdditional","CurrentTrackedLanguageTag","CurrentTrackedDialectScript","TrackLangProvidesResource","TrackLangRequireResource","TrackLangEncodingName","TrackLangRequireResourceOrDo","TrackLangRequestResource","TrackLangAddToHook","TrackLangAddToCaptions","TrackLangRedefHook","TrackLangAddExtraScriptFile","TrackLangAddExtraRegionFile","SetCurrentTrackedDialect","TrackLangNewLanguage","AddTrackedDialect","AddTrackedLanguage","TrackLangLastTrackedDialect","TrackLangProvidePredefinedLanguage","TrackLangProvidePredefinedDialect","SetTrackedDialectLabelMap","AddTrackedLanguageIsoCodes","SetTrackedDialectModifier","SetTrackedDialectScript","SetTrackedDialectVariant","SetTrackedDialectSubLang","SetTrackedDialectAdditional","AddTrackedCountryIsoCode","AddTrackedIsoLanguage","TrackLangDeclareDialectOption","TrackLangDeclareLanguageOption","TrackLangGetKnownCountry","TrackLangGetKnownIsoThreeLetterLangB","TrackLangGetKnownIsoThreeLetterLang","TrackLangGetKnownIsoTwoLetterLang","TrackLangGetKnownLangFromIso","TrackLangIfAlphaNumericChar","TrackLangIfHasDefaultScript","TrackLangIfHasKnownCountry","TrackLangIfKnownIsoThreeLetterLangB","TrackLangIfKnownIsoThreeLetterLang","TrackLangIfKnownIsoTwoLetterLang","TrackLangIfKnownLangFromIso","TrackLangIfKnownLang","TrackLangIfLanguageTag","TrackLangIfRegionTag","TrackLangIfScriptTag","TrackLangIfVariantTag","CurrentTrackedIsoCodeI","CurrentTrackedIsoCodeII","CurrentTrackedIsoCodeIII","GetTrackedDialectFromMapping","GetTrackedDialectToMapping","IfHookHasMappingFromTrackedDialect","IfTrackedDialectHasMapping","LetTrackLangOption","LetTrackLangSynonym","tracklangparseenvatmod","tracklangparsemod","tracklangtmp","TrackLangAlphaIIToNumericRegion","TrackLangNumericToAlphaIIRegion","TrackLangIfKnownAlphaIIRegion","TrackLangIfKnownNumericRegion","TrackLangAlphaIIIToNumericRegion","TrackLangNumericToAlphaIIIRegion","TrackLangIfKnownAlphaIIIRegion","TrackLangRegionMap"]}
-,
-"trajan.sty":{"envs":{},"deps":{},"cmds":["trjnfamily","texttrjn"]}
-,
-"tram.sty":{"envs":["tram"],"deps":{},"cmds":{}}
-,
-"tramlines.sty":{"envs":{},"deps":["booktabs.sty"],"cmds":["tramlines","tramlinesep","tramlinesversionnumber"]}
-,
-"tran-l.cls":{"envs":{},"deps":["s-amsart.cls"],"cmds":{}}
-,
-"trans2-l.cls":{"envs":{},"deps":["s-amsproc.cls"],"cmds":["oa","lcandify"]}
-,
-"translations.sty":{"envs":{},"deps":["etoolbox.sty","pdftexcmds.sty"],"cmds":["DeclareLanguage","DeclareLanguageAlias","DeclareLanguageDialect","NewTranslation","NewTranslationFallback","RenewTranslation","RenewTranslationFallback","ProvideTranslation","ProvideTranslationFallback","DeclareTranslation","DeclareTranslationFallback","definetranslation","definetranslationfallback","redefinetranslation","redefinetranslationfallback","addtranslation","addtranslationfallback","declaretranslation","declaretranslationfallback","IfTranslation","GetTranslationFor","GetTranslation","GetLCTranslationFor","GetLCTranslation","GetTranslationForWarn","GetTranslationWarn","GetLCTranslationForWarn","GetLCTranslationWarn","SaveTranslationFor","SaveTranslation","LoadDictionary","LoadDictionaryFor","LoadDictionaryForDialect","NewDictTranslation","RenewDictTranslation","ProvideDictTranslation","DeclareDictTranslation","ProvideDictionaryFor","PrintDictionaryFor","baselanguage","ifcurrentlanguage","ifcurrentlang","ifcurrentbaselanguage","ifcurrentbaselang"]}
-,
-"translator.sty":{"envs":{},"deps":["keyval.sty"],"cmds":["newtranslation","renewtranslation","providetranslation","deftranslation","ProvidesDictionary","usedictionary","uselanguage","translate","translatelet","languagepath","languagealias","languagename"]}
-,
-"transparent.sty":{"envs":{},"deps":["iftex.sty","auxhook.sty"],"cmds":["transparent","texttransparent"]}
-,
-"tree-dvips.sty":{"envs":{},"deps":{},"cmds":["node","nodepoint","nodeconnect","anodeconnect","aanodeconnect","barnodeconnect","abarnodeconnect","nodecurve","anodecurve","aanodecurve","nodetriangle","delink","nodebox","nodecircle","nodeoval","nodemargin","treelinewidth","dashlength","arrowwidth","arrowlength","arrowinset","arrowhead","makedash","delinkcurve","iftransparent","pscmd","thinline","transparentfalse","transparenttrue","wnum"]}
-,
-"treport.cls":{"envs":{},"deps":["platex.sty","plext.sty"],"cmds":["bibname","chapter","chaptermark","Cjascale","heisei","if","postchaptername","postpartname","prechaptername","prepartname","mc","gt"]}
-,
-"trfsigns.sty":{"envs":{},"deps":{},"cmds":["fourier","Fourier","laplace","Laplace","dfourier","Dfourier","ztransf","Ztransf","dft","DFT","e","im"]}
-,
-"trig.sty":{"envs":{},"deps":{},"cmds":["CalculateSin","CalculateCos","UseSin","UseCos","CalculateTan","UseTan"]}
-,
-"trimclip.sty":{"envs":["trimbox","trimbox*","clipbox","clipbox*","marginbox","marginbox*"],"deps":["graphicx.sty","collectbox.sty","adjcalc.sty","pgf.sty"],"cmds":["trimbox","clipbox","marginbox"]}
-,
-"trivfloat.sty":{"envs":{},"deps":["float.sty","floatrow.sty"],"cmds":["trivfloat"]}
-,
-"trsym.sty":{"envs":{},"deps":{},"cmds":["TransformHoriz","InversTransformHoriz","TransformVert","InversTransformVert"]}
-,
-"truncate.sty":{"envs":{},"deps":{},"cmds":["truncate","TruncateMarker"]}
-,
-"truthtable.sty":{"envs":{},"deps":["luacode.sty"],"cmds":["truthtable"]}
-,
-"tsvtemplate.sty":{"envs":["tsv template"],"deps":["luatex.sty","environ.sty"],"cmds":["tsvtemplate","applytemplate","tsvloaded"]}
-,
-"tucv.sty":{"envs":{},"deps":["array.sty","color.sty","calc.sty","fancyhdr.sty","xparse.sty"],"cmds":["resbib","resconference","resdegree","resdesc","resemployer","resentry","resentrysinglecol","resheading","resjob","resschool","ressubconference","ressubentry","ressubentrysinglecol"]}
-,
-"tudabeamer.cls":{"envs":{},"deps":["l3keys2e.sty","URspecialopts.sty","s-beamer.cls","beamerthemeTUDa.sty","scrlfile.sty","pdfx.sty","ucs.sty","inputenc.sty"],"cmds":["department","insertdepartment","insertshortdepartment","Metadata"]}
-,
-"tudacolors.sty":{"envs":{},"deps":["expl3.sty","l3keys2e.sty","xcolor.sty"],"cmds":{}}
-,
-"tudaexercise.cls":{"envs":["task","task*","subtask","subtask*","solution","solution*","examheader"],"deps":["expl3.sty","l3keys2e.sty","environ.sty","s-scrartcl.cls","tudarules.sty","scrlayer-scrpage.sty","tudafonts.sty","geometry.sty","tudacolors.sty","graphicx.sty","hyperref.sty","pgf.sty"],"cmds":["MechEngArrow","title","term","sheetnumber","thetask","thesubtask","ConfigureHeadline","ShortTitle","StudentID","StudentName","IfSolutionT","IfSolutionF","IfSolutionTF","creditformat","creditformatsum","PointName","PointsName","pointformat","getPoints","getPointsTotal","refPoints","mapPoints","authorandname","institution","sheetsep","solutionsep","StudentIDname","StudentIDsep","StudentNamesep","subtaskformat","taskformat","tasksep","titleimage","examheaderdefault","subsubtitle"]}
-,
-"tudafonts.sty":{"envs":{},"deps":["iftex.sty","anyfontsize.sty","inputenc.sty","XCharter.sty","microtype.sty","fontspec.sty","roboto.sty","roboto-mono.sty"],"cmds":["accentfont","textaccent","fileversion","filedate"]}
-,
-"tudaleaflet.cls":{"envs":{},"deps":["expl3.sty","l3keys2e.sty","s-leaflet.cls","scrextend.sty","scrlayer.sty","tudarules.sty","tudafonts.sty"],"cmds":["sectionlinesformat","raggedtitle","AddSponsor","sponsors","footergraphics","titleimage","addTitleBox","addTitleBoxLogo","insertSponsors"]}
-,
-"tudaletter.cls":{"envs":{},"deps":["expl3.sty","l3keys2e.sty","scrletter.sty","s-scrartcl.cls","tudacolors.sty","tudafonts.sty","graphicx.sty","afterpage.sty","ragged2e.sty","geometry.sty","tudarules.sty","pdfx.sty"],"cmds":["Metadata"]}
-,
-"tudaposter.cls":{"envs":{},"deps":["expl3.sty","l3keys2e.sty","s-scrartcl.cls","scrlayer.sty","scrlayer-notecolumn.sty","tudafonts.sty","tudarules.sty","tudacolors.sty","qrcode.sty","tikz.sty","geometry.sty"],"cmds":["contentwidth","contentheight","SetMarginpar","titleinfo","titlegraphic","addTitleBox","addTitleBoxLogo","footer","footerqrcode","footerqrcodeimg","infofont","infotext","authorandname"]}
-,
-"tudapub.cls":{"envs":{},"deps":["expl3.sty","l3keys2e.sty","URspecialopts.sty","s-scrartcl.cls","tudarules.sty","tudafonts.sty","scrlayer-scrpage.sty","geometry.sty","tudacolors.sty","trimclip.sty","graphicx.sty","hyperref.sty","s-scrreprt.cls","s-scrbook.cls","pdfx.sty","pgf.sty"],"cmds":["MechEngArrow","titlegraphic","addTitleBox","addTitleBoxLogo","AddSponsor","sponsors","Metadata","sep","IMRADlabel","frontmatter","mainmatter","backmatter","SetPaperID","institution","titleimage","authorandname","departmentname","departmentfullname","drtext","titleintro","titleaddendum","author","studentID","department","institute","group","birthplace","reviewer","examdate","submissiondate","tuprints","affidavit","AffidavitSignature","SignatureBox","setupReviewName"]}
-,
-"tudarules.sty":{"envs":{},"deps":["expl3.sty","l3keys2e.sty","tudacolors.sty","xparse.sty"],"cmds":["filedate","fileversion"]}
-,
-"tudasciposter.cls":{"envs":{},"deps":["expl3.sty","l3keys2e.sty","s-scrartcl.cls","tudafonts.sty","tikz.sty","tikzlibrarycalc.sty","tcolorbox.sty","tcolorboxlibraryposter.sty","pdfcol.sty","geometry.sty","tudarules.sty","tudacolors.sty","qrcode.sty","hyperref.sty","pdfx.sty"],"cmds":["footergraphics","footer","footerqrcode","Metadata","authorandname","titlegraphic","institute","inst","contentwidth","contentheight"]}
-,
-"tudscrartcl.cls":{"envs":["tudpage"],"deps":["tudscrbase.sty","s-scrartcl.cls","environ.sty","graphicx.sty","tudscrcolor.sty","opensans.sty","iwona.sty","mathastext.sty","newunicodechar.sty","geometry.sty","scrlayer-scrpage.sty"],"cmds":["cdfont","textcd","cdfontln","textcdln","cdfontrn","textcdrn","cdfontsn","textcdsn","cdfontbn","textcdbn","cdfontxn","textcdxn","cdfontli","textcdli","cdfontri","textcdri","cdfontsi","textcdsi","cdfontbi","textcdbi","cdfontxi","textcdxi","upGamma","itGamma","upDelta","itDelta","upTheta","itTheta","upLambda","itLambda","upXi","itXi","upPi","itPi","upSigma","itSigma","upUpsilon","itUpsilon","upPhi","itPhi","upPsi","itPsi","upOmega","itOmega","upalpha","italpha","upbeta","itbeta","upgamma","itgamma","updelta","itdelta","upepsilon","itepsilon","upvarepsilon","itvarepsilon","upzeta","itzeta","upeta","iteta","uptheta","ittheta","upvartheta","itvartheta","upiota","itiota","upkappa","itkappa","uplambda","itlambda","upmu","itmu","upnu","itnu","upxi","itxi","uppi","itpi","upvarpi","itvarpi","uprho","itrho","upvarrho","itvarrho","upsigma","itsigma","upvarsigma","itvarsigma","uptau","ittau","upupsilon","itupsilon","upphi","itphi","upvarphi","itvarphi","upchi","itchi","uppsi","itpsi","upomega","itomega","otherGamma","otherDelta","otherTheta","otherLambda","otherXi","otherPi","otherSigma","otherUpsilon","otherPhi","otherPsi","otherOmega","otheralpha","otherbeta","othergamma","otherdelta","otherepsilon","othervarepsilon","otherzeta","othereta","othertheta","othervartheta","otheriota","otherkappa","otherlambda","othermu","othernu","otherxi","otherpi","othervarpi","otherrho","othervarrho","othersigma","othervarsigma","othertau","otherupsilon","otherphi","othervarphi","otherchi","otherpsi","otheromega","faculty","department","institute","chair","extraheadline","headlogo","footlogo","footlogosep","footcontent","maketitle","maketitleonecolumn","makecover","raggedtitle","authormore","emailaddress","dateofbirth","placeofbirth","matriculationnumber","matriculationyear","course","discipline","date","defensedate","thesis","subject","habilitationname","dissertationname","diplomathesisname","masterthesisname","bachelorthesisname","studentthesisname","studentresearchname","projectpapername","seminarpapername","termpapername","researchname","logname","reportname","internshipname","graduation","supervisor","referee","advisor","professor","titledelimiter","setpartsubtitle","getfield","nextabstract","nextdeclaration","declaration","confirmation","blocking","supporter","place","confirmationclosing","company","tudbookmark","refereename","refereeothername","advisorname","advisorothername","supervisorname","supervisorothername","professorname","professorothername","graduationtext","datetext","defensedatetext","dateofbirthtext","placeofbirthtext","matriculationnumbername","matriculationyearname","coursename","disciplinename","coverpagename","titlepagename","confirmationname","blockingname","confirmationtext","blockingtext","listingname","listlistingname","titlename","TUDClassName","TUDScriptClassName","printdate","dinbn","footlogoheight","headingsvskip","ifdin","pageheadingsvskip","publisher","textdbn","textubn","textubs","textuln","textuls","texturn","texturs","textuxn","textuxs","univbn","univbs","univln","univls","univrn","univrs","univxn","univxs"]}
-,
-"tudscrbase.sty":{"envs":{},"deps":["scrbase.sty","iftex.sty","etoolbox.sty","xpatch.sty","letltxmacro.sty","kvsetkeys.sty","trimspaces.sty"],"cmds":["TUDoptions","TUDoption","iflanguageloaded","TUDProcessOptions","TUDExecuteOptions","TUDScriptVersion","TUDScriptVersionNumber","TUDScript","TUDScriptContact","TUDScriptRepository","TUDScriptForum"]}
-,
-"tudscrbook.cls":{"envs":["tudpage"],"deps":["tudscrbase.sty","s-scrbook.cls","environ.sty","graphicx.sty","tudscrcolor.sty","opensans.sty","iwona.sty","mathastext.sty","newunicodechar.sty","geometry.sty","scrlayer-scrpage.sty"],"cmds":["cdfont","textcd","cdfontln","textcdln","cdfontrn","textcdrn","cdfontsn","textcdsn","cdfontbn","textcdbn","cdfontxn","textcdxn","cdfontli","textcdli","cdfontri","textcdri","cdfontsi","textcdsi","cdfontbi","textcdbi","cdfontxi","textcdxi","upGamma","itGamma","upDelta","itDelta","upTheta","itTheta","upLambda","itLambda","upXi","itXi","upPi","itPi","upSigma","itSigma","upUpsilon","itUpsilon","upPhi","itPhi","upPsi","itPsi","upOmega","itOmega","upalpha","italpha","upbeta","itbeta","upgamma","itgamma","updelta","itdelta","upepsilon","itepsilon","upvarepsilon","itvarepsilon","upzeta","itzeta","upeta","iteta","uptheta","ittheta","upvartheta","itvartheta","upiota","itiota","upkappa","itkappa","uplambda","itlambda","upmu","itmu","upnu","itnu","upxi","itxi","uppi","itpi","upvarpi","itvarpi","uprho","itrho","upvarrho","itvarrho","upsigma","itsigma","upvarsigma","itvarsigma","uptau","ittau","upupsilon","itupsilon","upphi","itphi","upvarphi","itvarphi","upchi","itchi","uppsi","itpsi","upomega","itomega","otherGamma","otherDelta","otherTheta","otherLambda","otherXi","otherPi","otherSigma","otherUpsilon","otherPhi","otherPsi","otherOmega","otheralpha","otherbeta","othergamma","otherdelta","otherepsilon","othervarepsilon","otherzeta","othereta","othertheta","othervartheta","otheriota","otherkappa","otherlambda","othermu","othernu","otherxi","otherpi","othervarpi","otherrho","othervarrho","othersigma","othervarsigma","othertau","otherupsilon","otherphi","othervarphi","otherchi","otherpsi","otheromega","faculty","department","institute","chair","extraheadline","headlogo","footlogo","footlogosep","footcontent","maketitle","maketitleonecolumn","makecover","raggedtitle","authormore","emailaddress","dateofbirth","placeofbirth","matriculationnumber","matriculationyear","course","discipline","date","defensedate","thesis","subject","habilitationname","dissertationname","diplomathesisname","masterthesisname","bachelorthesisname","studentthesisname","studentresearchname","projectpapername","seminarpapername","termpapername","researchname","logname","reportname","internshipname","graduation","supervisor","referee","advisor","professor","titledelimiter","setpartsubtitle","setchaptersubtitle","getfield","nextabstract","nextdeclaration","declaration","confirmation","blocking","supporter","place","confirmationclosing","company","tudbookmark","refereename","refereeothername","advisorname","advisorothername","supervisorname","supervisorothername","professorname","professorothername","graduationtext","datetext","defensedatetext","dateofbirthtext","placeofbirthtext","matriculationnumbername","matriculationyearname","coursename","disciplinename","coverpagename","titlepagename","confirmationname","blockingname","confirmationtext","blockingtext","listingname","listlistingname","titlename","TUDClassName","TUDScriptClassName","printdate","chapterheadingvskip","dinbn","footlogoheight","headingsvskip","ifdin","pageheadingsvskip","publisher","textdbn","textubn","textubs","textuln","textuls","texturn","texturs","textuxn","textuxs","univbn","univbs","univln","univls","univrn","univrs","univxn","univxs"]}
-,
-"tudscrcolor.sty":{"envs":{},"deps":["xcolor.sty","colortbl.sty","pdfcolmk.sty"],"cmds":["setcdcolors","TUDScriptVersion","TUDScriptVersionNumber","TUDScript","TUDScriptContact","TUDScriptRepository","TUDScriptForum"]}
-,
-"tudscrfonts.sty":{"envs":{},"deps":["tudscrbase.sty","scrextend.sty","newunicodechar.sty","mathastext.sty"],"cmds":["cdfont","textcd","cdfontln","textcdln","cdfontrn","textcdrn","cdfontsn","textcdsn","cdfontbn","textcdbn","cdfontxn","textcdxn","cdfontli","textcdli","cdfontri","textcdri","cdfontsi","textcdsi","cdfontbi","textcdbi","cdfontxi","textcdxi","upGamma","itGamma","upDelta","itDelta","upTheta","itTheta","upLambda","itLambda","upXi","itXi","upPi","itPi","upSigma","itSigma","upUpsilon","itUpsilon","upPhi","itPhi","upPsi","itPsi","upOmega","itOmega","upalpha","italpha","upbeta","itbeta","upgamma","itgamma","updelta","itdelta","upepsilon","itepsilon","upvarepsilon","itvarepsilon","upzeta","itzeta","upeta","iteta","uptheta","ittheta","upvartheta","itvartheta","upiota","itiota","upkappa","itkappa","uplambda","itlambda","upmu","itmu","upnu","itnu","upxi","itxi","uppi","itpi","upvarpi","itvarpi","uprho","itrho","upvarrho","itvarrho","upsigma","itsigma","upvarsigma","itvarsigma","uptau","ittau","upupsilon","itupsilon","upphi","itphi","upvarphi","itvarphi","upchi","itchi","uppsi","itpsi","upomega","itomega","otherGamma","otherDelta","otherTheta","otherLambda","otherXi","otherPi","otherSigma","otherUpsilon","otherPhi","otherPsi","otherOmega","otheralpha","otherbeta","othergamma","otherdelta","otherepsilon","othervarepsilon","otherzeta","othereta","othertheta","othervartheta","otheriota","otherkappa","otherlambda","othermu","othernu","otherxi","otherpi","othervarpi","otherrho","othervarrho","othersigma","othervarsigma","othertau","otherupsilon","otherphi","othervarphi","otherchi","otherpsi","otheromega","dinbn","ifdin","textdbn","textubn","textubs","textuln","textuls","texturn","texturs","textuxn","textuxs","univbn","univbs","univln","univls","univrn","univrs","univxn","univxs"]}
-,
-"tudscrposter.cls":{"envs":["tablehere"],"deps":["tudscrbase.sty","s-scrartcl.cls","environ.sty","graphicx.sty","tudscrcolor.sty","mathastext.sty","newunicodechar.sty","bm.sty","geometry.sty","scrlayer-scrpage.sty"],"cmds":["cdfont","textcd","cdfontln","textcdln","cdfontrn","textcdrn","cdfontsn","textcdsn","cdfontbn","textcdbn","cdfontxn","textcdxn","cdfontli","textcdli","cdfontri","textcdri","cdfontsi","textcdsi","cdfontbi","textcdbi","cdfontxi","textcdxi","upGamma","itGamma","upDelta","itDelta","upTheta","itTheta","upLambda","itLambda","upXi","itXi","upPi","itPi","upSigma","itSigma","upUpsilon","itUpsilon","upPhi","itPhi","upPsi","itPsi","upOmega","itOmega","upalpha","italpha","upbeta","itbeta","upgamma","itgamma","updelta","itdelta","upepsilon","itepsilon","upvarepsilon","itvarepsilon","upzeta","itzeta","upeta","iteta","uptheta","ittheta","upvartheta","itvartheta","upiota","itiota","upkappa","itkappa","uplambda","itlambda","upmu","itmu","upnu","itnu","upxi","itxi","uppi","itpi","upvarpi","itvarpi","uprho","itrho","upvarrho","itvarrho","upsigma","itsigma","upvarsigma","itvarsigma","uptau","ittau","upupsilon","itupsilon","upphi","itphi","upvarphi","itvarphi","upchi","itchi","uppsi","itpsi","upomega","itomega","otherGamma","otherDelta","otherTheta","otherLambda","otherXi","otherPi","otherSigma","otherUpsilon","otherPhi","otherPsi","otherOmega","otheralpha","otherbeta","othergamma","otherdelta","otherepsilon","othervarepsilon","otherzeta","othereta","othertheta","othervartheta","otheriota","otherkappa","otherlambda","othermu","othernu","otherxi","otherpi","othervarpi","otherrho","othervarrho","othersigma","othervarsigma","othertau","otherupsilon","otherphi","othervarphi","otherchi","otherpsi","otheromega","faculty","department","institute","chair","extraheadline","headlogo","footlogo","footlogosep","footcontent","maketitle","maketitleonecolumn","raggedtitle","authormore","emailaddress","course","discipline","date","habilitationname","dissertationname","diplomathesisname","masterthesisname","bachelorthesisname","studentthesisname","studentresearchname","projectpapername","seminarpapername","termpapername","researchname","logname","reportname","internshipname","supervisor","professor","setpartsubtitle","getfield","nextabstract","tudbookmark","coursename","disciplinename","listingname","listlistingname","TUDClassName","TUDScriptClassName","printdate","webpage","contactperson","office","telephone","telefax","authorname","contactname","contactpersonname","dinbn","footlogoheight","ifdin","publisher","textdbn","textubn","textubs","textuln","textuls","texturn","texturs","textuxn","textuxs","univbn","univbs","univln","univls","univrn","univrs","univxn","univxs"]}
-,
-"tudscrreprt.cls":{"envs":["tudpage"],"deps":["tudscrbase.sty","s-scrreprt.cls","environ.sty","graphicx.sty","tudscrcolor.sty","opensans.sty","iwona.sty","mathastext.sty","newunicodechar.sty","geometry.sty","scrlayer-scrpage.sty"],"cmds":["cdfont","textcd","cdfontln","textcdln","cdfontrn","textcdrn","cdfontsn","textcdsn","cdfontbn","textcdbn","cdfontxn","textcdxn","cdfontli","textcdli","cdfontri","textcdri","cdfontsi","textcdsi","cdfontbi","textcdbi","cdfontxi","textcdxi","upGamma","itGamma","upDelta","itDelta","upTheta","itTheta","upLambda","itLambda","upXi","itXi","upPi","itPi","upSigma","itSigma","upUpsilon","itUpsilon","upPhi","itPhi","upPsi","itPsi","upOmega","itOmega","upalpha","italpha","upbeta","itbeta","upgamma","itgamma","updelta","itdelta","upepsilon","itepsilon","upvarepsilon","itvarepsilon","upzeta","itzeta","upeta","iteta","uptheta","ittheta","upvartheta","itvartheta","upiota","itiota","upkappa","itkappa","uplambda","itlambda","upmu","itmu","upnu","itnu","upxi","itxi","uppi","itpi","upvarpi","itvarpi","uprho","itrho","upvarrho","itvarrho","upsigma","itsigma","upvarsigma","itvarsigma","uptau","ittau","upupsilon","itupsilon","upphi","itphi","upvarphi","itvarphi","upchi","itchi","uppsi","itpsi","upomega","itomega","otherGamma","otherDelta","otherTheta","otherLambda","otherXi","otherPi","otherSigma","otherUpsilon","otherPhi","otherPsi","otherOmega","otheralpha","otherbeta","othergamma","otherdelta","otherepsilon","othervarepsilon","otherzeta","othereta","othertheta","othervartheta","otheriota","otherkappa","otherlambda","othermu","othernu","otherxi","otherpi","othervarpi","otherrho","othervarrho","othersigma","othervarsigma","othertau","otherupsilon","otherphi","othervarphi","otherchi","otherpsi","otheromega","faculty","department","institute","chair","extraheadline","headlogo","footlogo","footlogosep","footcontent","maketitle","maketitleonecolumn","makecover","raggedtitle","authormore","emailaddress","dateofbirth","placeofbirth","matriculationnumber","matriculationyear","course","discipline","date","defensedate","thesis","subject","habilitationname","dissertationname","diplomathesisname","masterthesisname","bachelorthesisname","studentthesisname","studentresearchname","projectpapername","seminarpapername","termpapername","researchname","logname","reportname","internshipname","graduation","supervisor","referee","advisor","professor","titledelimiter","setpartsubtitle","setchaptersubtitle","getfield","nextabstract","nextdeclaration","declaration","confirmation","blocking","supporter","place","confirmationclosing","company","tudbookmark","refereename","refereeothername","advisorname","advisorothername","supervisorname","supervisorothername","professorname","professorothername","graduationtext","datetext","defensedatetext","dateofbirthtext","placeofbirthtext","matriculationnumbername","matriculationyearname","coursename","disciplinename","coverpagename","titlepagename","confirmationname","blockingname","confirmationtext","blockingtext","listingname","listlistingname","titlename","TUDClassName","TUDScriptClassName","printdate","chapterheadingvskip","dinbn","footlogoheight","headingsvskip","ifdin","pageheadingsvskip","publisher","textdbn","textubn","textubs","textuln","textuls","texturn","texturs","textuxn","textuxs","univbn","univbs","univln","univls","univrn","univrs","univxn","univxs"]}
-,
-"tudscrsupervisor.sty":{"envs":["task","evaluation","notice"],"deps":{},"cmds":["taskform","chairman","issuedate","duedate","evaluationform","grade","noticeform","contactperson","office","telephone","telefax","taskname","tasktext","namesname","issuedatetext","duedatetext","chairmanname","focusname","objectivesname","evaluationname","evaluationtext","contentname","assessmentname","gradetext","noticename","contactpersonname","authorname","contactname","student"]}
-,
-"tufte-book.cls":{"envs":["fullwidth"],"deps":["xkeyval.sty","hardwrap.sty","ifxetex.sty","ifpdf.sty","titletoc.sty","ragged2e.sty","changepage.sty","textcase.sty","setspace.sty","natbib.sty","optparams.sty","mathpazo.sty","beramono.sty","textcomp.sty","multicol.sty","bidi.sty"],"cmds":["allcaps","allcapsspacing","caption","doi","floatalignment","footnotelayout","forcerectofloat","forceversofloat","gsetboolean","gsetlength","langwohyphens","lettergroup","maketitlepage","marginnote","morefloats","multfootsep","multiplefootnotemarker","newlinetospace","newthought","nohyphenation","nohyphens","plainauthor","plainpublisher","plaintitle","PrintTufteSettings","publisher","setcaptionfont","setcitationfont","setfloatalignment","setmarginnotefont","setsidenotefont","sidenote","smallcaps","smallcapsspacing","textsmallcaps","thanklessauthor","thanklesspublisher","thanklesstitle","thedate","tuftebreak","TufteLoadHyperref","TufteRecalculate","tufteskip","tufteskipamount","typeoutbool","typeoutstr","DH","NG","dj","ng","k","guillemotleft","guillemotright","guilsinglleft","guilsinglright","quotedblbase","quotesinglbase","textquotedbl","DJ","th","TH","dh","Hwithstroke","hwithstroke","textogonekcentered","guillemetleft","guillemetright"]}
-,
-"tufte-handout.cls":{"envs":["fullwidth"],"deps":["xkeyval.sty","xifthen.sty","hardwrap.sty","ifluatex.sty","ifxetex.sty","s-book.cls","ifpdf.sty","titlesec.sty","titletoc.sty","hyperref.sty","ragged2e.sty","geometry.sty","changepage.sty","paralist.sty","textcase.sty","letterspace.sty","setspace.sty","xcolor.sty","natbib.sty","bibentry.sty","optparams.sty","placeins.sty","mathpazo.sty","helvet.sty","beramono.sty","fontenc.sty","textcomp.sty","fancyhdr.sty","multicol.sty","bidi.sty"],"cmds":["allcaps","allcapsspacing","caption","doi","floatalignment","footnotelayout","forcerectofloat","forceversofloat","gsetboolean","gsetlength","langwohyphens","lettergroup","maketitlepage","marginnote","morefloats","multfootsep","multiplefootnotemarker","newlinetospace","newthought","nohyphenation","nohyphens","plainauthor","plainpublisher","plaintitle","PrintTufteSettings","publisher","setcaptionfont","setcitationfont","setfloatalignment","setmarginnotefont","setsidenotefont","sidenote","smallcaps","smallcapsspacing","textsmallcaps","thanklessauthor","thanklesspublisher","thanklesstitle","thedate","tuftebreak","TufteLoadHyperref","TufteRecalculate","tufteskip","tufteskipamount","typeoutbool","typeoutstr","DH","NG","dj","ng","k","guillemotleft","guillemotright","guilsinglleft","guilsinglright","quotedblbase","quotesinglbase","textquotedbl","DJ","th","TH","dh","Hwithstroke","hwithstroke","textogonekcentered","guillemetleft","guillemetright"]}
-,
-"turabian-formatting.sty":{"envs":{},"deps":["etoolbox.sty","setspace.sty","nowidow.sty","footmisc.sty","endnotes.sty"],"cmds":["footnotemargin","listillustrationname","listofillustrations"]}
-,
-"turabian-researchpaper.cls":{"envs":["appendixes"],"deps":["turabian-formatting.sty"],"cmds":["noadjustssect","subtitle","submissioninfo","course","enoteheading"]}
-,
-"turabian-thesis.cls":{"envs":["appendixes"],"deps":["s-book.cls","turabian-formatting.sty"],"cmds":["subtitle","submissioninfo","institution","department","location","theappendix","enoteheading"]}
-,
-"turnstile.sty":{"envs":{},"deps":["ifthen.sty"],"cmds":["firstwidth","secondwidth","extrawidth","leasturnstilewidth","turnstilewidth","turnstileheight","dashthickness","ddashthickness","raiseup","raisedown","tinyverdistance","verdistance","lift","lengthvar","first","second","turnstilebox","makever","makehor","turnstile","nntstile","nststile","ndtstile","nttstile","sntstile","sststile","sdtstile","sttstile","dntstile","dststile","ddtstile","dttstile","tntstile","tststile","tdtstile","tttstile","nnststile","nsststile","ndststile","ntststile","nndtstile","nsdtstile","nddtstile","ntdtstile","nnttstile","nsttstile","ndttstile","ntttstile","snststile","ssststile","sdststile","stststile","sndtstile","ssdtstile","sddtstile","stdtstile","snttstile","ssttstile","sdttstile","stttstile","dnststile","dsststile","ddststile","dtststile","dndtstile","dsdtstile","dddtstile","dtdtstile","dnttstile","dsttstile","ddttstile","dtttstile","tnststile","tsststile","tdststile","ttststile","tndtstile","tsdtstile","tddtstile","ttdtstile","tnttstile","tsttstile","tdttstile","ttttstile"]}
-,
-"turnthepage.sty":{"envs":{},"deps":["atbegshi.sty","picture.sty","zref-abspage.sty","zref-lastpage.sty"],"cmds":["turnthepage"]}
-,
-"tweaklist.sty":{"envs":{},"deps":{},"cmds":["deschook","enumhook","enumhooki","enumhookii","enumhookiii","enumhookiv","itemhook","itemhooki","itemhookii","itemhookiii","itemhookiv"]}
-,
-"twemojis.sty":{"envs":{},"deps":["tikz.sty","ifthen.sty"],"cmds":["twemoji","texttwemoji","twemojiDefaultHeight","defineTwemoji"]}
-,
-"twoopt.sty":{"envs":{},"deps":{},"cmds":["newcommandtwoopt","renewcommandtwoopt","providecommandtwoopt"]}
-,
-"twoup.sty":{"envs":{},"deps":{},"cmds":["cleartolastpage"]}
-,
-"tx-ds.sty":{"envs":{},"deps":["xkeyval.sty"],"cmds":["mathbb","bbdotlessi","bbdotlessj","imathbb","jmathbb"]}
-,
-"tx-of.sty":{"envs":{},"deps":["xkeyval.sty"],"cmds":["mathbb","mathbbb"]}
-,
-"txfonts.sty":{"envs":{},"deps":{},"cmds":["alphaup","approxeq","backepsilon","backprime","backsim","backsimeq","barwedge","Bbbk","because","betaup","beth","between","bignplus","bigsqcap","bigsqcapplus","bigsqcupplus","bigstar","blacklozenge","blacksquare","blacktriangle","blacktriangledown","blacktriangleleft","blacktriangleright","Bot","Box","boxast","boxbar","boxbslash","boxdot","boxdotleft","boxdotLeft","boxdotright","boxdotRight","boxleft","boxLeft","boxminus","boxplus","boxright","boxRight","boxslash","boxtimes","bumpeq","Bumpeq","Cap","centerdot","chiup","circeq","circlearrowleft","circlearrowright","circledast","circledbar","circledbslash","circledcirc","circleddash","circleddot","circleddotleft","circleddotright","circledgtr","circledless","circledminus","circledotleft","circledotright","circledplus","circledS","circledslash","circledtimes","circledvee","circledwedge","circleleft","circleright","colonapprox","Colonapprox","coloneq","Coloneq","coloneqq","Coloneqq","colonsim","Colonsim","complement","Cup","curlyeqprec","curlyeqsucc","curlyvee","curlywedge","curvearrowleft","curvearrowright","daleth","dasharrow","dashleftarrow","dashleftrightarrow","dashrightarrow","deltaup","diagdown","diagup","Diamond","Diamondblack","Diamonddot","Diamonddotleft","DiamonddotLeft","Diamonddotright","DiamonddotRight","Diamondleft","DiamondLeft","Diamondright","DiamondRight","digamma","divideontimes","Doteq","doteqdot","dotplus","doublebarwedge","doublecap","doublecup","downdownarrows","downharpoonleft","downharpoonright","epsilonup","eqcirc","eqcolon","Eqcolon","eqqcolon","Eqqcolon","eqsim","eqslantgtr","eqslantless","etaup","eth","fallingdotseq","fint","fintop","Finv","Game","gammaup","geqq","geqslant","ggg","gggtr","gimel","gnapprox","gneq","gneqq","gnsim","gtrapprox","gtrdot","gtreqless","gtreqqless","gtrless","gtrsim","gvertneqq","hslash","idotsint","idotsintop","iiiint","iiiintop","iiint","iiintop","iint","iintop","intercal","invamp","iotaup","Join","kappaup","lambdabar","lambdaslash","lambdaup","lbag","Lbag","leadsto","leadstoext","leftarrowtail","leftleftarrows","leftrightarrows","leftrightharpoons","leftrightsquigarrow","leftsquigarrow","leftthreetimes","leqq","leqslant","lessapprox","lessdot","lesseqgtr","lesseqqgtr","lessgtr","lesssim","lhd","lJoin","llbracket","llcorner","Lleftarrow","lll","llless","lnapprox","lneq","lneqq","lnsim","longmappedfrom","Longmappedfrom","Longmapsto","Longmmappedfrom","longmmappedfrom","longmmapsto","Longmmapsto","looparrowleft","looparrowright","lozenge","lrcorner","lrJoin","lrtimes","Lsh","ltimes","lvertneqq","mappedfrom","Mappedfrom","mappedfromchar","Mappedfromchar","Mapsto","Mapstochar","mathbb","mathcent","mathfrak","measuredangle","medbullet","medcirc","mho","mmappedfrom","Mmappedfrom","mmappedfromchar","Mmappedfromchar","mmapsto","Mmapsto","mmapstochar","Mmapstochar","multimap","multimapboth","multimapbothvert","multimapdot","multimapdotboth","multimapdotbothA","multimapdotbothAvert","multimapdotbothB","multimapdotbothBvert","multimapdotbothvert","multimapdotinv","multimapinv","muup","napprox","napproxeq","nasymp","nbacksim","nbacksimeq","nbumpeq","nBumpeq","ncong","Nearrow","nequiv","nexists","ngeq","ngeqq","ngeqslant","ngg","ngtr","ngtrapprox","ngtrless","ngtrsim","nleftarrow","nLeftarrow","nLeftrightarrow","nleftrightarrow","nleq","nleqq","nleqslant","nless","nlessapprox","nlessgtr","nlesssim","nll","nmid","notni","notowns","nparallel","nplus","nprec","nprecapprox","npreccurlyeq","npreceq","npreceqq","nprecsim","nrightarrow","nRightarrow","nshortmid","nshortparallel","nsim","nsimeq","nsqsubset","nsqsubseteq","nsqsupset","nsqsupseteq","nsubset","nSubset","nsubseteq","nsubseteqq","nsucc","nsuccapprox","nsucccurlyeq","nsucceq","nsucceqq","nsuccsim","nsupset","nSupset","nsupseteq","nsupseteqq","nthickapprox","ntriangleleft","ntrianglelefteq","ntriangleright","ntrianglerighteq","ntwoheadleftarrow","ntwoheadrightarrow","nuup","nvarparallel","nvarparallelinv","nvdash","nVdash","nvDash","nVDash","Nwarrow","oiiint","oiiintclockwise","oiiintclockwiseop","oiiintctrclockwise","oiiintctrclockwiseop","oiiintop","oiint","oiintclockwise","oiintclockwiseop","oiintctrclockwise","oiintctrclockwiseop","oiintop","ointclockwise","ointclockwiseop","ointctrclockwise","ointctrclockwiseop","omegaup","openJoin","opentimes","Perp","phiup","pitchfork","piup","precapprox","preccurlyeq","preceqq","precnapprox","precneqq","precnsim","precsim","psiup","rbag","Rbag","restriction","rhd","rhoup","rightarrowtail","rightleftarrows","rightrightarrows","rightsquigarrow","rightthreetimes","risingdotseq","rJoin","rrbracket","Rrightarrow","Rsh","rtimes","Searrow","shortmid","shortparallel","sigmaup","smallfrown","smallsetminus","smallsmile","sphericalangle","sqcapplus","sqcupplus","sqiiint","sqiiintop","sqiint","sqiintop","sqint","sqintop","sqsubset","sqsupset","square","strictfi","strictif","strictiff","Subset","subseteqq","subsetneq","subsetneqq","succapprox","succcurlyeq","succeqq","succnapprox","succneqq","succnsim","succsim","Supset","supseteqq","supsetneq","supsetneqq","Swarrow","tauup","therefore","thetaup","thickapprox","thicksim","Top","triangledown","trianglelefteq","triangleq","trianglerighteq","twoheadleftarrow","twoheadrightarrow","ulcorner","unlhd","unrhd","upharpoonleft","upharpoonright","upsilonup","upuparrows","urcorner","varBbbk","varclubsuit","vardiamondsuit","varepsilonup","varg","varheartsuit","varkappa","varmathbb","varnothing","varoiiintclockwise","varoiiintclockwiseop","varoiiintctrclockwise","varoiiintctrclockwiseop","varoiintclockwise","varoiintclockwiseop","varoiintctrclockwise","varoiintctrclockwiseop","varointclockwise","varointclockwiseop","varointctrclockwise","varointctrclockwiseop","varparallel","varparallelinv","varphiup","varpiup","varprod","varpropto","varrhoup","varsigmaup","varspadesuit","varsubsetneq","varsubsetneqq","varsupsetneq","varsupsetneqq","varthetaup","vartriangle","vartriangleleft","vartriangleright","varv","varw","vary","Vdash","vDash","VDash","veebar","Vvdash","VvDash","Wr","xiup","zetaup","textsquare","openbox","DoLongFutureLet","DoFutureLet","DeclareMathSymbolCtr"]}
-,
-"txfontsb.sty":{"envs":{},"deps":["txfonts.sty"],"cmds":["scslshape","textscsl","anwtonos","Digamma","ddigamma","tao","Qoppa","varqoppa","Sampi","sampi","vardigamma","Stigma","VarQoppa","euro","Euro"]}
-,
-"txgreeks.sty":{"envs":{},"deps":["txfonts.sty"],"cmds":["omicron","omicronup","otheralpha","otherbeta","otherchi","otherdelta","otherDelta","otherepsilon","othereta","othergamma","otherGamma","otheriota","otherkappa","otherlambda","otherLambda","othermu","othernu","otheromega","otherOmega","otheromicron","otherphi","otherPhi","otherpi","otherPi","otherpsi","otherPsi","otherrho","othersigma","otherSigma","othertau","othertheta","otherTheta","otherupsilon","otherUpsilon","othervarepsilon","othervarphi","othervarpi","othervarrho","othervarsigma","othervartheta","otherxi","otherXi","otherzeta","varDelta","varGamma","varLambda","varOmega","varPhi","varPi","varPsi","varSigma","varTheta","varUpsilon","varXi"]}
-,
-"txuprcal.sty":{"envs":{},"deps":["xkeyval.sty"],"cmds":["mathbcal"]}
-,
-"typearea.sty":{"envs":{},"deps":["scrkbase.sty","scrlogo.sty"],"cmds":["PaperNameToSize","ProvideUnknownPaperSizeError","isopaper","AfterCalculatingTypearea","activateareas","typearea","recalctypearea","storeareas","BeforeRestoreareas","AfterRestoreareas","areaset","AfterSettingArea","footheight","SetDIVList","SetXDIVList"]}
-,
-"typed-checklist.sty":{"envs":["CheckList"],"deps":["xkeyval.sty","etoolbox.sty","xcolor.sty","bbding.sty","marginnote.sty","array.sty","xltabular.sty","ltablex.sty","tabularx.sty","asciilist.sty"],"cmds":["CheckListSet","Goal","Task","Artifact","Milestone","CheckListAddType","CheckListAddStatus","CheckListDeclareLayout","CheckListDefineFieldFormat","CheckListExtendLayout","CheckListStatusSymbol","CheckListSigned","CheckListDefaultLabel","CheckListDisplayDeadline","CheckListHighlightDeadline","CheckListAddEntryOption","CheckListFilterClosed","CheckListFilterValue","CheckListFilterDeadline","CheckListFilterReset","CheckListSetFilter","CheckListDateCompare","CheckListDefaultLayout","CheckListIfClosed","CheckListParseDate"]}
-,
-"typedref.sty":{"envs":{},"deps":{},"cmds":["appendixref","chapterref","figureref","footnoteref","itemref","paragraphref","partref","sectionref","tableref","equationref","eqref","refname","itemname","newtheorem","eqname","fileversion","filedate","docdate"]}
-,
-"typewriter.sty":{"envs":{},"deps":["luaotfload.sty"],"cmds":["ttgreybolda","ttgreyboldb","ttrotatebold","ttdownbold","ttrightbold","ttoverprintbolda","ttoverprintboldb","ttoverprintboldc","ttgreynormala","ttgreynormalb","ttrotatenormal","ttrightnormal","ttdownnormal","ttoverprintnormal","ttbasefont","ttfontsize","cmuntt","cmunttid","myfont","myfonts","mybfont","mybfonts","xUnicodeMathSymbol","xxUnicodeMathSymbol","mathexclam","mathoctothorpe","mathpercent","mathampersand","lparen","rparen","mathplus","mathcomma","mathperiod","mathslash","mathcolon","mathsemicolon","less","equal","greater","mathquestion","mathatsign","mathyen","matheth","overbar","ovhook","ocirc","ocommatopright","droang","wideutilde","mathunderbar","underleftrightarrow","mupAlpha","mupBeta","mupGamma","mupDelta","mupEpsilon","mupZeta","mupEta","mupTheta","mupIota","mupKappa","mupLambda","mupMu","mupNu","mupXi","mupOmicron","mupPi","mupRho","mupSigma","mupTau","mupUpsilon","mupPhi","mupChi","mupPsi","mupOmega","mupalpha","mupbeta","mupgamma","mupdelta","mupepsilon","mupzeta","mupeta","muptheta","mupiota","mupkappa","muplambda","mupmu","mupnu","mupxi","mupomicron","muppi","muprho","mupvarsigma","mupsigma","muptau","mupupsilon","mupvarphi","mupchi","muppsi","mupomega","mupvartheta","upoldKoppa","upoldkoppa","upStigma","upstigma","upDigamma","updigamma","upkoppa","upSampi","upsampi","mupvarepsilon","Alpha","Beta","Epsilon","Zeta","Eta","Iota","Kappa","Mu","Nu","Omicron","Rho","Tau","Chi","omicron","oldKoppa","oldkoppa","Stigma","stigma","Digamma","digamma","koppa","Sampi","sampi","smblkcircle","unicodeellipsis","tieconcat","fracslash","euro","BbbC","BbbR","mho","increment","minus","blanksymbol","mathvisiblespace","mdlgwhtcircle","smwhtcircle","female","eighthnote","neuter","oldhrule","ttgreyone","ttgreytwo","ttdownshifttwo"]}
-,
-"typicons.sty":{"envs":{},"deps":["fontspec.sty"],"cmds":["TI","ticon","tiAdjustBrightness","tiAdjustContrast","tiAnchorOutline","tiAnchor","tiArchive","tiArrowBackOutline","tiArrowBack","tiArrowDownOutline","tiArrowDownThick","tiArrowDown","tiArrowForwardOutline","tiArrowForward","tiArrowLeftOutline","tiArrowLeftThick","tiArrowLeft","tiArrowLoopOutline","tiArrowLoop","tiArrowMaximiseOutline","tiArrowMaximise","tiArrowMinimiseOutline","tiArrowMinimise","tiArrowMoveOutline","tiArrowMove","tiArrowRepeatOutline","tiArrowRepeat","tiArrowRightOutline","tiArrowRightThick","tiArrowRight","tiArrowShuffle","tiArrowSortedDown","tiArrowSortedUp","tiArrowSyncOutline","tiArrowSync","tiArrowUnsorted","tiArrowUpOutline","tiArrowUpThick","tiArrowUp","tiAt","tiAttachmentOutline","tiAttachment","tiBackspaceOutline","tiBackspace","tiBatteryCharge","tiBatteryFull","tiBatteryHigh","tiBatteryLow","tiBatteryMid","tiBeaker","tiBeer","tiBell","tiBook","tiBookmark","tiBriefcase","tiBrush","tiBusinessCard","tiCalculator","tiCalendarOutline","tiCalendar","tiCameraOutline","tiCamera","tiCancelOutline","tiCancel","tiChartAreaOutline","tiChartArea","tiChartBarOutline","tiChartBar","tiChartLineOutline","tiChartLine","tiChartPieOutline","tiChartPie","tiChevronLeftOutline","tiChevronLeft","tiChevronRightOutline","tiChevronRight","tiClipboard","tiCloudStorage","tiCloudStorageOutline","tiCodeOutline","tiCode","tiCoffee","tiCogOutline","tiCog","tiCompass","tiContacts","tiCreditCard","tiCss","tiDatabase","tiDeleteOutline","tiDelete","tiDeviceDesktop","tiDeviceLaptop","tiDevicePhone","tiDeviceTablet","tiDirections","tiDivideOutline","tiDivide","tiDocumentAdd","tiDocumentDelete","tiDocumentText","tiDocument","tiDownloadOutline","tiDownload","tiDropbox","tiEdit","tiEjectOutline","tiEject","tiEqualsOutline","tiEquals","tiExportOutline","tiExport","tiEyeOutline","tiEye","tiFeather","tiFilm","tiFilter","tiFlagOutline","tiFlag","tiFlashOutline","tiFlash","tiFlowChildren","tiFlowMerge","tiFlowParallel","tiFlowSwitch","tiFolderAdd","tiFolderDelete","tiFolderOpen","tiFolder","tiGift","tiGlobeOutline","tiGlobe","tiGroupOutline","tiGroup","tiHeadphones","tiHeartFullOutline","tiHeartHalfOutline","tiHeartOutline","tiHeart","tiHomeOutline","tiHome","tiHtml","tiImageOutline","tiImage","tiInfinityOutline","tiInfinity","tiInfoLargeOutline","tiInfoLarge","tiInfoOutline","tiInfo","tiInputCheckedOutline","tiInputChecked","tiKeyOutline","tiKey","tiKeyboard","tiLeaf","tiLightbulb","tiLinkOutline","tiLink","tiLocationArrowOutline","tiLocationArrow","tiLocationOutline","tiLocation","tiLockClosedOutline","tiLockClosed","tiLockOpenOutline","tiLockOpen","tiMail","tiMap","tiMediaEjectOutline","tiMediaEject","tiMediaFastForwardOutline","tiMediaFastForward","tiMediaPauseOutline","tiMediaPause","tiMediaPlayOutline","tiMediaPlayReverseOutline","tiMediaPlayReverse","tiMediaPlay","tiMediaRecordOutline","tiMediaRecord","tiMediaRewindOutline","tiMediaRewind","tiMediaStopOutline","tiMediaStop","tiMessageTyping","tiMessage","tiMessages","tiMicrophoneOutline","tiMicrophone","tiMinusOutline","tiMinus","tiMortarBoard","tiNews","tiNotesOutline","tiNotes","tiPen","tiPencil","tiPhoneOutline","tiPhone","tiPiOutline","tiPi","tiPinOutline","tiPin","tiPipette","tiPlaneOutline","tiPlane","tiPlug","tiPlusOutline","tiPlus","tiPointOfInterestOutline","tiPointOfInterest","tiPowerOutline","tiPower","tiPrinter","tiPuzzleOutline","tiPuzzle","tiRadarOutline","tiRadar","tiRefreshOutline","tiRefresh","tiRssOutline","tiRss","tiScissorsOutline","tiScissors","tiShoppingBag","tiShoppingCart","tiSocialAtCircular","tiSocialDribbbleCircular","tiSocialDribbble","tiSocialFacebookCircular","tiSocialFacebook","tiSocialFlickrCircular","tiSocialFlickr","tiSocialGithubCircular","tiSocialGithub","tiSocialGooglePlusCircular","tiSocialGooglePlus","tiSocialInstagramCircular","tiSocialInstagram","tiSocialLastFmCircular","tiSocialLastFm","tiSocialLinkedinCircular","tiSocialLinkedin","tiSocialPinterestCircular","tiSocialPinterest","tiSocialSkypeOutline","tiSocialSkype","tiSocialTumblerCircular","tiSocialTumbler","tiSocialTwitterCircular","tiSocialTwitter","tiSocialVimeoCircular","tiSocialVimeo","tiSocialYoutubeCircular","tiSocialYoutube","tiSortAlphabeticallyOutline","tiSortAlphabetically","tiSortNumericallyOutline","tiSortNumerically","tiSpannerOutline","tiSpanner","tiSpiral","tiStarFullOutline","tiStarHalfOutline","tiStarHalf","tiStarOutline","tiStar","tiStarburstOutline","tiStarburst","tiStopwatch","tiSupport","tiTabsOutline","tiTag","tiTags","tiThLargeOutline","tiThLarge","tiThListOutline","tiThList","tiThMenuOutline","tiThMenu","tiThSmallOutline","tiThSmall","tiThermometer","tiThumbsDown","tiThumbsOk","tiThumbsUp","tiTickOutline","tiTick","tiTicket","tiTime","tiTimesOutline","tiTimes","tiTrash","tiTree","tiUploadOutline","tiUpload","tiUserAddOutline","tiUserAdd","tiUserDeleteOutline","tiUserDelete","tiUserOutline","tiUser","tiVendorAndroid","tiVendorApple","tiVendorMicrosoft","tiVideoOutline","tiVideo","tiVolumeDown","tiVolumeMute","tiVolumeUp","tiVolume","tiWarningOutline","tiWarning","tiWatch","tiWavesOutline","tiWaves","tiWeatherCloudy","tiWeatherDownpour","tiWeatherNight","tiWeatherPartlySunny","tiWeatherShower","tiWeatherSnow","tiWeatherStormy","tiWeatherSunny","tiWeatherWindyCloudy","tiWeatherWindy","tiWiFiOutline","tiWiFi","tiWine","tiWorldOutline","tiWorld","tiZoomInOutline","tiZoomIn","tiZoomOutOutline","tiZoomOut","tiZoomOutline","tiZoom"]}
-,
-"typoaid.sty":{"envs":{},"deps":["array.sty","booktabs.sty","expl3.sty","siunitx.sty"],"cmds":["typrintalph","typrintex","typrintem","tyallsimple","tychperwidth","tywidthgivchar","tyheight","tyfonttable","tywidthtable","tyformfactorheight"]}
-,
-"typogrid.sty":{"envs":{},"deps":["calc.sty","keyval.sty","eso-pic.sty"],"cmds":["typogridsetup","typogrid","gridwidth"]}
-,
-"uarial.sty":{"envs":{},"deps":["keyval.sty"],"cmds":["ProcessOptionsWithKV"]}
-,
-"uassign.sty":{"envs":["question","solution","example","exsolution","definition"],"deps":["ifthen.sty","hyperref.sty","bookmark.sty","color.sty","enumerate.sty","amsmath.sty","fancyhdr.sty","titlesec.sty","amsthm.sty"],"cmds":["ebox","ientry","thequestioncounter","thesolutioncounter","trashcan","theexamplecounter","theexsolutioncounter","thedefcounter"]}
-,
-"ucalgmthesis.cls":{"envs":{},"deps":["s-memoir.cls","fontenc.sty","amsthm.sty","newpxtext.sty","newpxmath.sty","newtxtext.sty","newtxmath.sty","mathdesign.sty","garamondx.sty","libertine.sty"],"cmds":["dedication","degree","dept","fixmdhrulefill","fullpagethesis","gradyear","makethesistitle","manuscriptthesis","monthname","prog","thesis","thesisyear","DH","dh","dj","DJ","guillemetleft","guillemetright","guillemotleft","guillemotright","guilsinglleft","guilsinglright","Hwithstroke","hwithstroke","k","NG","ng","quotedblbase","quotesinglbase","textogonekcentered","textquotedbl","th","TH"]}
-,
-"ucbthesis.cls":{"envs":["acknowledgements","alwayssingle","dedication","frontmatter","memoirquotation","memoirquote","memoirverse"],"deps":["s-memoir.cls"],"cmds":["acknowledgename","approvalpage","campus","chair","cochair","cochairs","copyrightpage","degree","degreesemester","degreeyear","dsp","emphasis","field","fmfont","fmsmallfont","jointinstitution","memoirlistoffigures","memoirlistoftables","memoirtableofcontents","numberofmembers","othermembers","ssp","prevdegrees"]}
-,
-"ucdavisthesis.cls":{"envs":["code","UMImargins"],"deps":["ifthen.sty"],"cmds":["abstract","acknowledgename","acknowledgments","authordegrees","bibname","chapter","chaptermark","chaptername","chapternamefont","chapternamesize","chaptertitlefont","chaptertitlesize","ColumnRestore","ColumnSave","ColumnSaveHeading","committee","copyrightyear","dedication","dedicationname","degreemonth","degreeyear","dissertation","graduateprogram","makeintropages","nocopyright","officialmajor","secfontsize","SetSinglespace","setstretch","singlespacing","ssubsecfontsize","subsecfontsize","thechapter","thesis","theUMIpagetemp","TitleHyphenation","titlesize","UMIabstract","UMIfoliosep"]}
-,
-"ucharcat.sty":{"envs":{},"deps":["luatex.sty"],"cmds":["Ucharcat"]}
-,
-"ucharclasses.sty":{"envs":{},"deps":["xetex.sty","ifxetex.sty"],"cmds":["setTransitionTo","setTransitionFrom","setTransitions","setTransitionsFor","setDefaultTransitions","disableTransitionRules","enableTransitionRules","uccoff","uccon","newXeTeXintercharclass","AllClasses","overrideClassLoading","ClassGroups","ArabicsClasses","CanadianSyllabicsClasses","CherokeeFullClasses","ChineseClasses","CJKClasses","CyrillicsClasses","DevanagariClasses","DiacriticsClasses","EthiopicFullClasses","GeorgianFullClasses","GreekClasses","KoreanClasses","JapaneseClasses","LatinClasses","MathematicsClasses","MongolianFullClasses","MyanmarFullClasses","PhoneticsClasses","PunctuationClasses","SundaneseFullClasses","SymbolsClasses","SyriacFullClasses","VedicMarksClasses","YiClasses","OtherClasses","doclass","setTransitionsForAdlam","setTransitionsForAegeanNumbers","setTransitionsForAhom","setTransitionsForAlchemicalSymbols","setTransitionsForAlphabeticPresentationForms","setTransitionsForAnatolianHieroglyphs","setTransitionsForAncientGreekMusicalNotation","setTransitionsForAncientGreekNumbers","setTransitionsForAncientSymbols","setTransitionsForArabic","setTransitionsForArabicExtendedA","setTransitionsForArabicExtendedB","setTransitionsForArabicExtendedC","setTransitionsForArabicMathematicalAlphabeticSymbols","setTransitionsForArabicPresentationFormsA","setTransitionsForArabicPresentationFormsB","setTransitionsForArabicSupplement","setTransitionsForArmenian","setTransitionsForArrows","setTransitionsForAvestan","setTransitionsForBalinese","setTransitionsForBamum","setTransitionsForBamumSupplement","setTransitionsForBasicLatin","setTransitionsForBassaVah","setTransitionsForBatak","setTransitionsForBengali","setTransitionsForBhaiksuki","setTransitionsForBlockElements","setTransitionsForBopomofo","setTransitionsForBopomofoExtended","setTransitionsForBoxDrawing","setTransitionsForBrahmi","setTransitionsForBraillePatterns","setTransitionsForBuginese","setTransitionsForBuhid","setTransitionsForByzantineMusicalSymbols","setTransitionsForCarian","setTransitionsForCaucasianAlbanian","setTransitionsForChakma","setTransitionsForCham","setTransitionsForCherokee","setTransitionsForCherokeeSupplement","setTransitionsForChessSymbols","setTransitionsForChorasmian","setTransitionsForCJKCompatibility","setTransitionsForCJKCompatibilityForms","setTransitionsForCJKCompatibilityIdeographs","setTransitionsForCJKCompatibilityIdeographsSupplement","setTransitionsForCJKRadicalsSupplement","setTransitionsForCJKStrokes","setTransitionsForCJKSymbolsAndPunctuation","setTransitionsForCJKUnifiedIdeographs","setTransitionsForCJKUnifiedIdeographsExtensionA","setTransitionsForCJKUnifiedIdeographsExtensionB","setTransitionsForCJKUnifiedIdeographsExtensionC","setTransitionsForCJKUnifiedIdeographsExtensionD","setTransitionsForCJKUnifiedIdeographsExtensionE","setTransitionsForCJKUnifiedIdeographsExtensionF","setTransitionsForCJKUnifiedIdeographsExtensionG","setTransitionsForCJKUnifiedIdeographsExtensionH","setTransitionsForCombiningDiacriticalMarks","setTransitionsForCombiningDiacriticalMarksExtended","setTransitionsForCombiningDiacriticalMarksForSymbols","setTransitionsForCombiningDiacriticalMarksSupplement","setTransitionsForCombiningHalfMarks","setTransitionsForCommonIndicNumberForms","setTransitionsForControlPictures","setTransitionsForCoptic","setTransitionsForCopticEpactNumbers","setTransitionsForCountingRodNumerals","setTransitionsForCuneiform","setTransitionsForCuneiformNumbersAndPunctuation","setTransitionsForCurrencySymbols","setTransitionsForCypriotSyllabary","setTransitionsForCyproMinoan","setTransitionsForCyrillic","setTransitionsForCyrillicExtendedA","setTransitionsForCyrillicExtendedB","setTransitionsForCyrillicExtendedC","setTransitionsForCyrillicExtendedD","setTransitionsForCyrillicSupplement","setTransitionsForDeseret","setTransitionsForDevanagari","setTransitionsForDevanagariExtended","setTransitionsForDevanagariExtendedA","setTransitionsForDingbats","setTransitionsForDivesAkuru","setTransitionsForDogra","setTransitionsForDominoTiles","setTransitionsForDuployan","setTransitionsForEarlyDynasticCuneiform","setTransitionsForEgyptianHieroglyphs","setTransitionsForEgyptianHieroglyphFormatControls","setTransitionsForElbasan","setTransitionsForElymaic","setTransitionsForEmoticons","setTransitionsForEnclosedAlphanumerics","setTransitionsForEnclosedAlphanumericSupplement","setTransitionsForEnclosedCJKLettersAndMonths","setTransitionsForEnclosedIdeographicSupplement","setTransitionsForEthiopic","setTransitionsForEthiopicExtended","setTransitionsForEthiopicExtendedA","setTransitionsForEthiopicExtendedB","setTransitionsForEthiopicSupplement","setTransitionsForGeneralPunctuation","setTransitionsForGeometricShapes","setTransitionsForGeometricShapesExtended","setTransitionsForGeorgian","setTransitionsForGeorgianExtended","setTransitionsForGeorgianSupplement","setTransitionsForGlagolitic","setTransitionsForGlagoliticSupplement","setTransitionsForGothic","setTransitionsForGrantha","setTransitionsForGreekAndCoptic","setTransitionsForGreekExtended","setTransitionsForGujarati","setTransitionsForGunjalaGondi","setTransitionsForGurmukhi","setTransitionsForHalfwidthAndFullwidthForms","setTransitionsForHangulCompatibilityJamo","setTransitionsForHangulJamo","setTransitionsForHangulJamoExtendedA","setTransitionsForHangulJamoExtendedB","setTransitionsForHangulSyllables","setTransitionsForHanifiRohingya","setTransitionsForHanunoo","setTransitionsForHatran","setTransitionsForHebrew","setTransitionsForHiragana","setTransitionsForIdeographicDescriptionCharacters","setTransitionsForIdeographicSymbolsAndPunctuation","setTransitionsForImperialAramaic","setTransitionsForIndicSiyaqNumbers","setTransitionsForInscriptionalPahlavi","setTransitionsForInscriptionalParthian","setTransitionsForIPAExtensions","setTransitionsForJavanese","setTransitionsForKaithi","setTransitionsForKaktovikNumerals","setTransitionsForKanaExtendedA","setTransitionsForKanaExtendedB","setTransitionsForKanaSupplement","setTransitionsForKanbun","setTransitionsForKangxiRadicals","setTransitionsForKannada","setTransitionsForKatakana","setTransitionsForKatakanaPhoneticExtensions","setTransitionsForKawi","setTransitionsForKayahLi","setTransitionsForKharoshthi","setTransitionsForKhitanSmallScript","setTransitionsForKhmer","setTransitionsForKhmerSymbols","setTransitionsForKhojki","setTransitionsForKhudawadi","setTransitionsForLao","setTransitionsForLatinExtendedAdditional","setTransitionsForLatinExtendedA","setTransitionsForLatinExtendedB","setTransitionsForLatinExtendedC","setTransitionsForLatinExtendedD","setTransitionsForLatinExtendedE","setTransitionsForLatinExtendedF","setTransitionsForLatinExtendedG","setTransitionsForLatinSupplement","setTransitionsForLepcha","setTransitionsForLetterlikeSymbols","setTransitionsForLimbu","setTransitionsForLinearA","setTransitionsForLinearBIdeograms","setTransitionsForLinearBSyllabary","setTransitionsForLisu","setTransitionsForLisuSupplement","setTransitionsForLycian","setTransitionsForLydian","setTransitionsForMahajani","setTransitionsForMahjongTiles","setTransitionsForMakasar","setTransitionsForMalayalam","setTransitionsForMandaic","setTransitionsForManichaean","setTransitionsForMarchen","setTransitionsForMasaramGondi","setTransitionsForMathematicalAlphanumericSymbols","setTransitionsForMathematicalOperators","setTransitionsForMayanNumerals","setTransitionsForMedefaidrin","setTransitionsForMeeteiMayek","setTransitionsForMeeteiMayekExtensions","setTransitionsForMendeKikakui","setTransitionsForMeroiticCursive","setTransitionsForMeroiticHieroglyphs","setTransitionsForMiao","setTransitionsForMiscellaneousMathematicalSymbolsA","setTransitionsForMiscellaneousMathematicalSymbolsB","setTransitionsForMiscellaneousSymbols","setTransitionsForMiscellaneousSymbolsAndArrows","setTransitionsForMiscellaneousSymbolsAndPictographs","setTransitionsForMiscellaneousTechnical","setTransitionsForModi","setTransitionsForModifierToneLetters","setTransitionsForMongolian","setTransitionsForMongolianSupplement","setTransitionsForMro","setTransitionsForMultani","setTransitionsForMusicalSymbols","setTransitionsForMyanmar","setTransitionsForMyanmarExtendedA","setTransitionsForMyanmarExtendedB","setTransitionsForNabataean","setTransitionsForNagMundari","setTransitionsForNandinagari","setTransitionsForNewa","setTransitionsForNewTaiLue","setTransitionsForNKo","setTransitionsForNumberForms","setTransitionsForNyiakengPuachueHmong","setTransitionsForNushu","setTransitionsForOgham","setTransitionsForOlChiki","setTransitionsForOldHungarian","setTransitionsForOldItalic","setTransitionsForOldNorthArabian","setTransitionsForOldPermic","setTransitionsForOldPersian","setTransitionsForOldSogdian","setTransitionsForOldSouthArabian","setTransitionsForOldTurkic","setTransitionsForOldUighur","setTransitionsForOpticalCharacterRecognition","setTransitionsForOriya","setTransitionsForOrnamentalDingbats","setTransitionsForOsage","setTransitionsForOsmanya","setTransitionsForOttomanSiyaqNumbers","setTransitionsForPahawhHmong","setTransitionsForPalmyrene","setTransitionsForPauCinHau","setTransitionsForPhagsPa","setTransitionsForPhaistosDisc","setTransitionsForPhoenician","setTransitionsForPhoneticExtensions","setTransitionsForPhoneticExtensionsSupplement","setTransitionsForPlayingCards","setTransitionsForPrivateUseArea","setTransitionsForPsalterPahlavi","setTransitionsForRejang","setTransitionsForRumiNumeralSymbols","setTransitionsForRunic","setTransitionsForSamaritan","setTransitionsForSaurashtra","setTransitionsForSharada","setTransitionsForShavian","setTransitionsForShorthandFormatControls","setTransitionsForSiddham","setTransitionsForSinhala","setTransitionsForSinhalaArchaicNumbers","setTransitionsForSmallFormVariants","setTransitionsForSmallKanaExtension","setTransitionsForSogdian","setTransitionsForSoraSompeng","setTransitionsForSoyombo","setTransitionsForSpacingModifierLetters","setTransitionsForSundanese","setTransitionsForSundaneseSupplement","setTransitionsForSuperscriptsAndSubscripts","setTransitionsForSupplementalArrowsA","setTransitionsForSupplementalArrowsB","setTransitionsForSupplementalArrowsC","setTransitionsForSupplementalMathematicalOperators","setTransitionsForSupplementalPunctuation","setTransitionsForSupplementalSymbolsAndPictographs","setTransitionsForSupplementaryPrivateUseAreaA","setTransitionsForSupplementaryPrivateUseAreaB","setTransitionsForSuttonSignWriting","setTransitionsForSylotiNagri","setTransitionsForSymbolsAndPictographsExtendedA","setTransitionsForSymbolsForLegacyComputing","setTransitionsForSyriac","setTransitionsForSyriacSupplement","setTransitionsForTagalog","setTransitionsForTagbanwa","setTransitionsForTags","setTransitionsForTaiLe","setTransitionsForTaiTham","setTransitionsForTaiViet","setTransitionsForTaiXuanJingSymbols","setTransitionsForTakri","setTransitionsForTamil","setTransitionsForTamilSupplement","setTransitionsForTangsa","setTransitionsForTangut","setTransitionsForTangutComponents","setTransitionsForTangutSupplement","setTransitionsForTelugu","setTransitionsForThaana","setTransitionsForThai","setTransitionsForTibetan","setTransitionsForTifinagh","setTransitionsForTirhuta","setTransitionsForToto","setTransitionsForTransportAndMapSymbols","setTransitionsForUgaritic","setTransitionsForUnifiedCanadianAboriginalSyllabics","setTransitionsForUnifiedCanadianAboriginalSyllabicsExtended","setTransitionsForUnifiedCanadianAboriginalSyllabicsExtendedA","setTransitionsForVai","setTransitionsForVedicExtensions","setTransitionsForVerticalForms","setTransitionsForVithkuqi","setTransitionsForWancho","setTransitionsForWarangCiti","setTransitionsForYezidi","setTransitionsForYiRadicals","setTransitionsForYiSyllables","setTransitionsForYijingHexagramSymbols","setTransitionsForZanabazarSquare","setTransitionsForZnamennyMusicalNotation","setTransitionsForArabics","setTransitionsForCanadianSyllabics","setTransitionsForCherokeeFull","setTransitionsForChinese","setTransitionsForCJK","setTransitionsForCyrillics","setTransitionsForDiacritics","setTransitionsForEthiopicFull","setTransitionsForGeorgianFull","setTransitionsForGreek","setTransitionsForKorean","setTransitionsForJapanese","setTransitionsForLatin","setTransitionsForMathematics","setTransitionsForMongolianFull","setTransitionsForMyanmarFull","setTransitionsForPhonetics","setTransitionsForPunctuation","setTransitionsForSundaneseFull","setTransitionsForSymbols","setTransitionsForSyriacFull","setTransitionsForYi"]}
-,
-"ucs.sty":{"envs":{},"deps":["ucshyper.sty","graphicx.sty"],"cmds":["SetUnicodeOption","ifUnicodeOptioncombine","UnicodeOptioncombinetrue","UnicodeOptioncombinefalse","ifUnicodeOptiondefault","UnicodeOptiondefaulttrue","UnicodeOptiondefaultfalse","ifUnicodeOptiondocument","UnicodeOptiondocumenttrue","UnicodeOptiondocumentfalse","ifUnicodeOptionfasterrors","UnicodeOptionfasterrorstrue","UnicodeOptionfasterrorsfalse","ifUnicodeOptiongraphics","UnicodeOptiongraphicstrue","UnicodeOptiongraphicsfalse","ifUnicodeOptionsavemem","UnicodeOptionsavememtrue","UnicodeOptionsavememfalse","ifUnicodeOptionwarnunknown","UnicodeOptionwarnunknowntrue","UnicodeOptionwarnunknownfalse","ifUnicodeOptionautogenerated","UnicodeOptionautogeneratedtrue","UnicodeOptionautogeneratedfalse","ifUnicodeOptioncjkgb","UnicodeOptioncjkgbtrue","UnicodeOptioncjkgbfalse","ifUnicodeOptioncjkhangul","UnicodeOptioncjkhangultrue","UnicodeOptioncjkhangulfalse","ifUnicodeOptioncjkjis","UnicodeOptioncjkjistrue","UnicodeOptioncjkjisfalse","ifUnicodeOptionmathletters","UnicodeOptionmathletterstrue","UnicodeOptionmathlettersfalse","ifUnicodeOptionpostscript","UnicodeOptionpostscripttrue","UnicodeOptionpostscriptfalse","ifUnicodeOptionprivatecsur","UnicodeOptionprivatecsurtrue","UnicodeOptionprivatecsurfalse","ifUnicodeOptiontipa","UnicodeOptiontipatrue","UnicodeOptiontipafalse","XDeclareUnicodeOption","DeclareUnicodeOption","unicodevirtual","unicodecombine","PreloadUnicodePage","PrerenderUnicode","DeclareUnicodeCharacter","DeclareUnicodeCharacterAsOptional","unichar","unicodesuper","PrintUnicodeName","UnicodeCharFilter","UCSProtectionNone","UCSProtectionIeC","UCSProtectionUnichar","textascii","textasciiencoding","textpentehkaton","textstigmavariant","textqoppavariant","textsanpi","textdialytikaperispomeni","textdialytikatonos","textdialytikaoxia","textdialytikavaria","textoxia","textparenleft","textparenright","textdasia","textpsili","textquestion","textdasiaperispomeni","textdasiavaria","textdasiaoxia","textpsiliperispomeni","textpsilioxia","textpsilivaria","textsubiota","textpsiliiota","textdasiaiota","textvariaiota","textoxiaiota","textpsilivariaiota","textdasiavariaiota","textpsilioxiaiota","textdasiaoxiaiota","textperispomeniiota","textpsiliperispomeniiota","textdasiaperispomeniiota","texthbar","textHbar","textbhook","textBhook","textdhook","textDhook","texteopen","textEopen","textschwa","texteturned","textEreversed","textGammaafrican","textgammalatinsmall","textKhook","textkhook","textDafrican","textdtail","textTretroflexhook","texttretroflexhook","textOopen","textoopen","textIotaafrican","textiotalatin","textFhook","textYhook","textyhook","textEsh","textesh","textThook","textthook","textEzh","textezh","textChook","textchook","textTbar","texttbar","textVhook","textvhook","textPhook","textphook","textNhookleft","textnhookleft","texttesh","textdblgravecmb","LinkUnicodeOptionToPkg"]}
-,
-"ucshyper.sty":{"envs":{},"deps":["hyperref.sty"],"cmds":["UCSPU","UCSPUrange"]}
-,
-"ucsutils.sty":{"envs":{},"deps":["ucs.sty","keyval.sty"],"cmds":["UnicodeEmbedFont","univerb","unistring"]}
-,
-"udes-genie-these.cls":{"envs":["descriptionFB"],"deps":["s-book.cls","babel.sty","caption.sty","fancyhdr.sty","flafter.sty","geometry.sty","parskip.sty","setspace.sty"],"cmds":["ConfigurationDocument","Auteur","Date","Dedicace","Directeur","Directrice","Codirecteur","Codirectrice","Evaluateur","Evaluatrice","MotsClesAnglais","MotsClesFrancais","TitreAnglais","TitreFrancais","frenchsetup","frenchbsetup","AddThinSpaceBeforeFootnotes","alsoname","at","bibname","AutoSpaceBeforeFDP","boi","bname","bsc","CaptionSeparator","captionsfrench","ccname","chaptername","circonflexe","dateacadian","datefrench","DecimalMathComma","degre","degres","descindentFB","dotFFN","enclname","extrasfrench","FBcolonspace","FBdatebox","FBdatespace","FBeverylineguill","FBfigtabshape","FBfnindent","FBFrenchFootnotesfalse","FBFrenchFootnotestrue","FBFrenchSuperscriptstrue","FBGlobalLayoutFrenchtrue","FBgspchar","FBguillopen","FBguillspace","FBInnerGuillSinglefalse","FBInnerGuillSingletrue","FBListItemsAsParfalse","FBListItemsAsPartrue","FBLowercaseSuperscriptstrue","FBmedkern","FBPartNameFulltrue","FBsetspaces","FBSmallCapsFigTabCaptionstrue","FBStandardEnumerateEnvtrue","FBStandardItemizeEnvtrue","FBStandardItemLabelstrue","FBStandardLayouttrue","FBStandardListSpacingtrue","FBStandardListstrue","FBsupR","FBsupS","FBtextellipsis","FBthickkern","FBthinspace","FBthousandsep","FBWarning","fg","fgi","fgii","fprimo","frenchdate","FrenchEnumerate","FrenchFootnotes","FrenchLabelItem","frenchpartfirst","frenchpartsecond","FrenchPopularEnumerate","frenchtoday","Frlabelitemi","Frlabelitemii","Frlabelitemiii","Frlabelitemiv","frquote","fup","glossaryname","headtoname","ieme","iemes","ier","iere","ieres","iers","ifFBAutoSpaceFootnotes","ifFBCompactItemize","ifFBCustomiseFigTabCaptions","ifFBfrench","ifFBFrenchFootnotes","ifFBFrenchSuperscripts","ifFBGlobalLayoutFrench","ifFBIndentFirst","ifFBINGuillSpace","ifFBListItemsAsPar","ifFBListOldLayout","ifFBLowercaseSuperscripts","ifFBLuaTeX","ifFBOldFigTabCaptions","ifFBOriginalTypewriter","ifFBPartNameFull","ifFBReduceListSpacing","ifFBShowOptions","ifFBSmallCapsFigTabCaptions","ifFBStandardEnumerateEnv","ifFBStandardItemizeEnv","ifFBStandardItemLabels","ifFBStandardLayout","ifFBStandardLists","ifFBStandardListSpacing","ifFBSuppressWarning","ifFBThinColonSpace","ifFBThinSpaceInFrenchNumbers","ifFBunicode","ifFBXeTeX","ifLaTeXe","kernFFN","labelindentFB","labelwidthFB","leftmarginFB","listfigurename","listindentFB","No","no","NoAutoSpaceBeforeFDP","NoAutoSpacing","NoEveryParQuote","noextrasfrench","nombre","nos","Nos","og","ogi","ogii","pagename","parindentFFN","partfirst","partnameord","partsecond","prefacename","primo","proofname","quarto","rmfamilyFB","secundo","seename","sffamilyFB","StandardFootnotes","StandardMathComma","tertio","tild","ttfamilyFB","up","xspace","captionsenglish","dateenglish","extrasenglish","noextrasenglish","englishhyphenmins","britishhyphenmins","americanhyphenmins"]}
-,
-"ugarite.sty":{"envs":{},"deps":{},"cmds":["cugarfamily","textcugar","Arq","Ab","Ag","Ahu","Ad","Ah","Aw","Az","Ahd","Atd","Ay","Ak","Asa","Al","Am","Adb","An","Azd","As","Alq","Ap","Asd","Aq","Ar","Atb","Agd","At","Ai","Au","Asg","Awd","Aa","Aaleph","Abeth","Agimel","Adaleth","Ahe","Avav","Azayin","Aheth","Ateth","Ayod","Akaph","Alamed","Amem","Anun","Asamekh","Ao","Aayin","Ape","Asade","Aqoph","Aresh","Atav","translitcugar","translitcugarfont"]}
-,
-"uhrzeit.sty":{"envs":{},"deps":["soul.sty"],"cmds":["dtd","dtc","uhri","uhrii","uhriii","uhriv","uhr","vonbis"]}
-,
-"ujarticle.cls":{"envs":{},"deps":["uplatex.sty"],"cmds":["Cjascale","heisei","if","postpartname","prepartname","mc","gt"]}
-,
-"ujbook.cls":{"envs":{},"deps":["uplatex.sty"],"cmds":["backmatter","bibname","chapter","chaptermark","Cjascale","frontmatter","heisei","if","mainmatter","postchaptername","postpartname","prechaptername","prepartname","mc","gt"]}
-,
-"ujreport.cls":{"envs":{},"deps":["uplatex.sty"],"cmds":["bibname","chapter","chaptermark","Cjascale","heisei","if","postchaptername","postpartname","prechaptername","prepartname","mc","gt"]}
-,
-"ukbill.cls":{"envs":["numstat","alphstat","romstat","twoalphstat","nostat","instatquote"],"deps":["s-memoir.cls","hyphenat.sty","paralist.sty","textpos.sty","ccicons.sty","geometry.sty","changepage.sty","setspace.sty","titlesec.sty","fontspec.sty","babel.sty","enumitem.sty","lettrine.sty"],"cmds":["drafter","printdrafter","billcopyright","printbillcopyright","publishedby","printpublishedby","billtitle","printbilltitle","billto","printbillto","humanrights","printhumanrights","exptitle","printexptitle","exptext","printexptext","billnum","printbillnum","whereas","printwhereas","startschedule","schedule","schdpart","currentsubsection","currentsubsubsection","enactingformula","extfont","Firstblock","intl","Leftblock","oldsubsection","oldsubsubsection","Rightblock","stat","stathead","statquotelabel","thealphcount","theschedcount","theschedon","ukbillversionnumber","captionsenglish","dateenglish","extrasenglish","noextrasenglish","englishhyphenmins","britishhyphenmins","americanhyphenmins","prefacename","bibname","chaptername","enclname","ccname","headtoname","pagename","seename","alsoname","proofname","glossaryname"]}
-,
-"ulect-l.cls":{"envs":{},"deps":["s-amsbook.cls"],"cmds":{}}
-,
-"ulem.sty":{"envs":{},"deps":{},"cmds":["uline","uuline","uwave","sout","xout","dashuline","dotuline","ULdepth","ULforem","ULon","ULthickness","markoverwith","normalem","useunder"]}
-,
-"ulgothic.sty":{"envs":{},"deps":{},"cmds":["ProcessOptionsWithKV"]}
-,
-"ulsy.sty":{"envs":{},"deps":{},"cmds":["odplus","blitza","blitzb","blitzc","blitzd","blitze"]}
-,
-"ulthese.cls":{"envs":["descriptionFB"],"deps":["s-memoir.cls","ifxetex.sty","fontenc.sty","natbib.sty","babel.sty","numprint.sty","etoolbox.sty","hyperref.sty","graphicx.sty","xcolor.sty","textcomp.sty","chapterbib.sty"],"cmds":["captionsenglish","dateenglish","extrasenglish","noextrasenglish","englishhyphenmins","britishhyphenmins","americanhyphenmins","prefacename","bibname","chaptername","enclname","ccname","headtoname","pagename","seename","alsoname","proofname","glossaryname","frenchsetup","frenchbsetup","AddThinSpaceBeforeFootnotes","at","AutoSpaceBeforeFDP","boi","bname","bsc","CaptionSeparator","captionsfrench","circonflexe","dateacadian","datefrench","DecimalMathComma","degre","degres","descindentFB","dotFFN","extrasfrench","FBcolonspace","FBdatebox","FBdatespace","FBeverylineguill","FBfigtabshape","FBfnindent","FBFrenchFootnotesfalse","FBFrenchFootnotestrue","FBFrenchSuperscriptstrue","FBGlobalLayoutFrenchtrue","FBgspchar","FBguillopen","FBguillspace","FBInnerGuillSinglefalse","FBInnerGuillSingletrue","FBListItemsAsParfalse","FBListItemsAsPartrue","FBLowercaseSuperscriptstrue","FBmedkern","FBPartNameFulltrue","FBsetspaces","FBSmallCapsFigTabCaptionstrue","FBStandardEnumerateEnvtrue","FBStandardItemizeEnvtrue","FBStandardItemLabelstrue","FBStandardLayouttrue","FBStandardListSpacingtrue","FBStandardListstrue","FBsupR","FBsupS","FBtextellipsis","FBthickkern","FBthinspace","FBthousandsep","FBWarning","fg","fgi","fgii","fprimo","frenchdate","FrenchEnumerate","FrenchFootnotes","FrenchLabelItem","frenchpartfirst","frenchpartsecond","FrenchPopularEnumerate","frenchtoday","Frlabelitemi","Frlabelitemii","Frlabelitemiii","Frlabelitemiv","frquote","fup","ieme","iemes","ier","iere","ieres","iers","ifFBAutoSpaceFootnotes","ifFBCompactItemize","ifFBCustomiseFigTabCaptions","ifFBfrench","ifFBFrenchFootnotes","ifFBFrenchSuperscripts","ifFBGlobalLayoutFrench","ifFBIndentFirst","ifFBINGuillSpace","ifFBListItemsAsPar","ifFBListOldLayout","ifFBLowercaseSuperscripts","ifFBLuaTeX","ifFBOldFigTabCaptions","ifFBOriginalTypewriter","ifFBPartNameFull","ifFBReduceListSpacing","ifFBShowOptions","ifFBSmallCapsFigTabCaptions","ifFBStandardEnumerateEnv","ifFBStandardItemizeEnv","ifFBStandardItemLabels","ifFBStandardLayout","ifFBStandardLists","ifFBStandardListSpacing","ifFBSuppressWarning","ifFBThinColonSpace","ifFBThinSpaceInFrenchNumbers","ifFBunicode","ifFBXeTeX","ifLaTeXe","kernFFN","labelindentFB","labelwidthFB","leftmarginFB","listfigurename","listindentFB","No","no","NoAutoSpaceBeforeFDP","NoAutoSpacing","NoEveryParQuote","noextrasfrench","nombre","nos","Nos","og","ogi","ogii","parindentFFN","partfirst","partnameord","partsecond","primo","quarto","rmfamilyFB","secundo","sffamilyFB","StandardFootnotes","StandardMathComma","tertio","tild","ttfamilyFB","up","xspace","titre","soustitre","auteur","programme","direction","codirection","frontispice","dedicace","epigraphe","faculteUL","faculteUdeS","faculteUQO","faculteUQAC","annee","univcotutelle","gradecotutelle","univbidiplomation","gradebidiplomation","pagetitre","DH","dh","dj","DJ","guillemetleft","guillemetright","guillemotleft","guillemotright","guilsinglleft","guilsinglright","Hwithstroke","hwithstroke","k","NG","ng","quotedblbase","quotesinglbase","textogonekcentered","textquotedbl","th","TH"]}
-,
-"umoline.sty":{"envs":{},"deps":{},"cmds":["Underline","Midline","Overline","UnderlineDepth","MidlineHeight","OverlineHeight","MidlineChar","UMOline","UMOlineThickness","UMOspace","UMOnewline"]}
-,
-"unbtex.cls":{"envs":["theorem","lemma","proposition","corollary","definition","assumption","example","exercise","problem","remark"],"deps":["s-abntex2.cls","fontenc.sty","inputenc.sty","stix2.sty","helvet.sty","graphicx.sty","subcaption.sty","icomma.sty","indentfirst.sty","microtype.sty","multirow.sty","xcolor.sty","tikz.sty","tikzlibraryexternal.sty","tikzlibraryshapes.sty","tikzlibrarypositioning.sty","amsmath.sty","amsfonts.sty","amsthm.sty","mathtools.sty","mathrsfs.sty","caption.sty","algorithm.sty","algpseudocode.sty","listings.sty","mdframed.sty","eso-pic.sty","xstring.sty","colortbl.sty"],"cmds":["ano","asptname","autori","autorii","autoriinome","autoriisobrenome","autorinome","autorisobrenome","BackgroundPic","coorientnome","coorientsobrenome","coorienttitulo","crname","dfname","dia","ecname","epname","fichacatalografica","imprimirano","imprimircurso","imprimircutter","imprimirdia","imprimirfolhadeaprovacao","imprimirmes","instituicaoi","instituicaoii","instituicaoiii","kwordi","kwordii","kwordiii","kwordiiinome","kwordiinome","kwordinome","kwordiv","kwordivnome","lmname","membrodabancai","membrodabancaifuncao","membrodabancaifuncaonome","membrodabancaii","membrodabancaiifuncao","membrodabancaiifuncaonome","membrodabancaiii","membrodabancaiiifuncao","membrodabancaiiifuncaonome","membrodabancaiiinome","membrodabancaiinome","membrodabancainome","membrodabancaiv","membrodabancaivfuncao","membrodabancaivfuncaonome","membrodabancaivnome","membrodabancav","membrodabancavfuncao","membrodabancavfuncaonome","membrodabancavnome","mes","numerocutter","orientnome","orientsobrenome","orienttitulo","pbname","pchavei","pchaveii","pchaveiii","pchaveiiinome","pchaveiinome","pchaveinome","pchaveiv","pchaveivnome","prname","rmname","source","thmnamebr","thmnameen","thname","tipocurso","DH","dh","dj","DJ","guillemetleft","guillemetright","guillemotleft","guillemotright","guilsinglleft","guilsinglright","Hwithstroke","hwithstroke","k","NG","ng","quotedblbase","quotesinglbase","textogonekcentered","textquotedbl","th","TH"]}
-,
-"underlin.sty":{"envs":{},"deps":{},"cmds":{}}
-,
-"underoverlap.sty":{"envs":{},"deps":["etoolbox.sty","mathtools.sty","xparse.sty"],"cmds":["UOLoverbrace","UOLunderbrace","UOLoverline","UOLunderline","newUOLdecorator","UOLaugment","UOLunaugment"]}
-,
-"underscore.sty":{"envs":{},"deps":{},"cmds":["ActiveUnderscore","normalUnderscoreDef","BreakableUnderscore","UnderscoreCommands"]}
-,
-"undertilde.sty":{"envs":{},"deps":{},"cmds":["utilde"]}
-,
-"undolabl.sty":{"envs":{},"deps":{},"cmds":["overridelabel","undonewlabel"]}
-,
-"unfontsxe.sty":{"envs":{},"deps":{},"cmds":{}}
-,
-"uni-titlepage.sty":{"envs":["titlepage","fullsizetitle"],"deps":["scrbase.sty","graphicx.sty"],"cmds":["TitlePageStyle","TitleOption","maketitle","TitleOptions","NowButAfterBeginDocument","usetitleelement","usenonemptytitleelement","advisorname","atthename","bachelorthesisname","blackborderfalse","blackbordertrue","chairmanname","companyname","coursename","dedication","DefineReplaceTitleKey","DefineSimpleTitleKey","degreethesisname","diplomathesisname","durationname","englishordinal","englishordinalfemalerefereename","englishordinalmalerefereename","englishordinalmalereferename","examinationdatename","examinationname","exittitle","extratitle","femaleordinal","femalerefereename","finalfalse","finaltrue","fromname","fromplacename","germanfemaleordinal","germanmaleordinal","germanordinal","germanordinalfemalecorrectorname","germanordinalfemalerefereename","germanordinalmalecorrectorname","germanordinalmalerefereename","homepage","ifblackborder","iffinal","indatename","inittitle","inittitlestyle","KITlongname","KITurl","lowertitleback","mainlogo","makemaintitle","makemaintitleback","makeposttitle","makeposttitleback","makepretitle","makepretitleback","maleordinal","malerefereename","masterthesisname","matriculationnumber","matriculationnumbername","ofthename","oralexaminationdatename","ordinal","ordinalfemalecorrectorname","ordinalfemalerefereename","ordinalmalerefereename","PackageNotLoadedError","presentationinformationDHBW","presentationinformationKIT","presentationinformationTUHH","presentationinformationUKoLa","presentationinformationUKoLA","presentationinformationWWUM","presentedbyname","projectpapername","publishers","refereename","seminarpapername","studentresearchname","studentreserchname","thename","thetitlepage","titlebox","titlefont","titlehead","titlepagestyle","uppertitleback"]}
-,
-"uni.sty":{"envs":{},"deps":{},"cmds":["textuni","uni","textunirm","unirm","textunisl","unisl","textunisc","unisc","textunist","unist","textunibf","unibf","textunibsl","unibsl","textunibsc","unibsc","textunibst","unibst","bausquare","baucircle","bautriangle","bauhead","bauforms","dh","dj","ng","th","varQ","DH","DJ","NG","TH","guilsinglleft","guilsinglright","guillemoleft","guillemoright","quotesinglbase","quotedblbase","textogonek","textcmr","cmr","cmrdefault","cmrenc","cmrfamily","unifamily","unifamilydefault","uniseries","uniseriesdefault","unishape","unishapedefault","stshape","stdefault","k","DeclareUniChar","DeclareUniCommand","UniError","unifiledate","unifileversion"]}
-,
-"uni8.sty":{"envs":{},"deps":["inputenc.sty","lmodern.sty","babel.sty","soulutf8.sty","mathptmx.sty","tgtermes.sty","tgheros.sty","tgcursor.sty","fontspec.sty"],"cmds":["UnivFixPaperSize","uline"]}
-,
-"unicode-alphabets.sty":{"envs":{},"deps":["pgfkeys.sty","pgfopts.sty","etoolbox.sty","xparse.sty","stringstrings.sty","csvsimple.sty"],"cmds":["agl","entity","dotlessj","LL","ll","commaaccent","Acute","Caron","Dieresis","DieresisAcute","DieresisGrave","Grave","Hungarumlaut","Macron","cyrBreve","cyrFlex","dblGrave","cyrbreve","cyrflex","dblgrave","dieresisacute","dieresisgrave","copyrightserif","registerserif","trademarkserif","onefitted","rupiah","threequartersemdash","centinferior","centsuperior","commainferior","commasuperior","dollarinferior","dollarsuperior","hypheninferior","hyphensuperior","periodinferior","periodsuperior","asuperior","bsuperior","dsuperior","esuperior","isuperior","lsuperior","msuperior","osuperior","rsuperior","ssuperior","tsuperior","Brevesmall","Caronsmall","Circumflexsmall","Dotaccentsmall","Hungarumlautsmall","Lslashsmall","OEsmall","Ogoneksmall","Ringsmall","Scaronsmall","Tildesmall","Zcaronsmall","exclamsmall","dollaroldstyle","ampersandsmall","zerooldstyle","oneoldstyle","twooldstyle","threeoldstyle","fouroldstyle","fiveoldstyle","sixoldstyle","sevenoldstyle","eightoldstyle","nineoldstyle","questionsmall","Gravesmall","Asmall","Bsmall","Csmall","Dsmall","Esmall","Fsmall","Gsmall","Hsmall","Ismall","Jsmall","Ksmall","Lsmall","Msmall","Nsmall","Osmall","Psmall","Qsmall","Rsmall","Ssmall","Tsmall","Usmall","Vsmall","Wsmall","Xsmall","Ysmall","Zsmall","exclamdownsmall","centoldstyle","Dieresissmall","Macronsmall","Acutesmall","Cedillasmall","questiondownsmall","Agravesmall","Aacutesmall","Acircumflexsmall","Atildesmall","Adieresissmall","Aringsmall","AEsmall","Ccedillasmall","Egravesmall","Eacutesmall","Ecircumflexsmall","Edieresissmall","Igravesmall","Iacutesmall","Icircumflexsmall","Idieresissmall","Ethsmall","Ntildesmall","Ogravesmall","Oacutesmall","Ocircumflexsmall","Otildesmall","Odieresissmall","Oslashsmall","Ugravesmall","Uacutesmall","Ucircumflexsmall","Udieresissmall","Yacutesmall","Thornsmall","Ydieresissmall","maihanakatleftthai","saraileftthai","saraiileftthai","saraueleftthai","saraueeleftthai","maitaikhuleftthai","maiekupperleftthai","maieklowrightthai","maieklowleftthai","maithoupperleftthai","maitholowrightthai","maitholowleftthai","maitriupperleftthai","maitrilowrightthai","maitrilowleftthai","maichattawaupperleftthai","maichattawalowrightthai","maichattawalowleftthai","thanthakhatupperleftthai","thanthakhatlowrightthai","thanthakhatlowleftthai","nikhahitleftthai","radicalex","arrowvertex","arrowhorizex","registersans","copyrightsans","trademarksans","parenlefttp","parenleftex","parenleftbt","bracketlefttp","bracketleftex","bracketleftbt","bracelefttp","braceleftmid","braceleftbt","braceex","integralex","parenrighttp","parenrightex","parenrightbt","bracketrighttp","bracketrightex","bracketrightbt","bracerighttp","bracerightmid","bracerightbt","apple","cyfi","mufi","titus","OEligogon","Pdblac","Vvertline","oeligogon","pdblac","vvertline","idblstrok","jdblstrok","autem","vslashura","vslashuradbl","thornrarmlig","Hrarmlig","hrarmlig","krarmlig","UUlig","uulig","UElig","uelig","xslashlradbl","aeligring","aeligogonacute","adiaguml","odiaguml","inodotogon","orrotlig","slonglbarlig","iesup","ausup","eesup","eosup","iasup","iosup","iusup","jesup","mesup","oosup","resup","uasup","uvsup","uwsup","wasup","wisup","wusup","wvsup","grlig","qvinslig","gplig","slongdestlig","aenlacute","aeligenl","aenlosmalllig","eogonenl","slongaumllig","slonghlig","slongilig","slongllig","slongoumllig","slongplig","slongslonglig","slongslongilig","slongslongllig","slongtilig","slongtrlig","slonguumllig","slongvinslig","hslonglig","kslonglig","slongacute","AVligslashacute","avligslashacute","drotacute","Finsacute","finsacute","Muncacute","muncacute","Ocurlacute","ocurlacute","rrotacute","Vinsacute","vinsacute","eacombcirc","eucombcirc","ucurlbar","AOligdblac","aoligdblac","AVligdblac","avligdblac","Oogondblac","oogondblac","Oslashdblac","oslashdblac","OEligdblac","oeligdblac","YYligdblac","yyligdblac","Oslashdot","oslashdot","pscapdot","bscapdot","drotdot","dscapdot","Finsdot","finsdot","finssemiclosedot","finsclosedot","fscapdot","hscapdot","kscapdot","lscapdot","mscapdot","Oogondot","oogondot","Oslashdotbl","oslashdotbl","Juml","juml","OOliguml","ooliguml","PPliguml","ppliguml","YYliguml","yyliguml","AEligcurl","aeligcurl","Oslashmacracute","oslashmacracute","Oslashbreve","oslashbreve","AVligogon","avligogon","Eogoncurl","eogoncurl","Adotacute","adotacute","Idotacute","idotacute","Odotacute","odotacute","Oogondotacute","oogondotacute","Oslashdotacute","oslashdotacute","Udotacute","udotacute","bblig","bglig","cklig","ctlig","drotdrotlig","eylig","faumllig","fjlig","frlig","ftlig","fuumllig","fylig","fftlig","ffylig","ftylig","gglig","gdlig","gdrotlig","gethlig","nscapslonglig","pplig","ppflourlig","trlig","ttlig","trottrotlig","tylig","tzlig","PPlig","golig","slongenl","aenl","benl","cenl","denl","drotenl","ethenl","eenl","fenl","genl","henl","ienl","jenl","kenl","lenl","menl","nenl","oenl","penl","qenl","renl","senl","tenl","thornenl","uenl","venl","wenl","xenl","yenl","zenl","inodotenl","jnodotenl","finsenl","qscap","xscap","thornscap","gscapdot","nscapdot","rscapdot","sscapdot","tscapdot","bscapdotbl","dscapdotbl","gscapdotbl","lscapdotbl","mscapdotbl","nscapdotbl","rscapdotbl","sscapdotbl","tscapdotbl","aacloselig","anecklesselig","anecklessvlig","aflig","afinslig","aglig","allig","anlig","anscaplig","aplig","arlig","arscaplig","athornlig","oclig","AnecklessElig","uuligdblac","UUligdblac","AEligdotacute","aeligdotacute","oeligenl","aoligenl","aaligenl","AAligacute","aaligacute","AOligacute","aoligacute","AUligacute","auligacute","AVligacute","avligacute","OOligacute","ooligacute","AAligdblac","aaligdblac","OOligdblac","ooligdblac","AAligdot","aaligdot","AYligdot","ayligdot","AAligdotbl","aaligdotbl","AOligdotbl","aoligdotbl","AUligdotbl","auligdotbl","AVligdotbl","avligdotbl","AYligdotbl","ayligdotbl","OOligdotbl","ooligdotbl","AAliguml","aaliguml","macrhigh","macrmed","ovlhigh","ovlmed","bsup","bscapsup","dscapsup","fsup","kscapsup","psup","tscapsup","ysup","inodotsup","jsup","jnodotsup","oslashsup","qsup","anligsup","arligsup","anscapligsup","trotsup","wsup","thornsup","orrotsup","orumsup","rumsup","Csqu","Eunc","Gsqu","Hunc","Munc","Sclose","slongdes","sclose","arscapligsup","eogonsup","emacrsup","Asqu","oogonsup","omacrsup","ET","thornbarslash","urrot","etslash","de","punctinter","punctelev","dcurl","fcurl","kcurl","gcurl","ccurl","tcurl","nflour","rflour","USbase","usbase","ETslash","sem","chlig","foumllig","smallzero","Vmod","Xmod","arbar","rabar","urlemn","combcurlhigh","erang","ercurl","combdothigh","combcurlbar","tridagger","midring","ramus","medcom","parag","posit","ductsimpl","punctposit","colmidcomposit","tridotscomposit","punctexclam","punctintertilde","punctvers","renvoi","punctelevdiag","punctinterlemn","bidotscomposit","virgsusp","punctflex","virgmin","hidot","wavylin","punctelevhiback","punctelevhack","combtripbrevebl","ains","Ains","aopen","aclose","aeligred","AOligred","aoligred","finsclose","kunc","kclose","aunc","aneckless","Euncclose","eunc","eext","etall","finssemiclose","finsdothook","gdivloop","glglowloop","gsmlowloop","ilong","ksemiclose","ldes","mrdes","Muncdes","munc","muncdes","nrdes","Nrdes","nscaprdes","nscapldes","Qstem","xldes","yrgmainstrok","hrdes","muncrdes","romnumCrevovl","romaslibr","romscapxbar","romscapybar","romscapdslash","dram","ecu","florloop","grosch","libradut","librafren","libraital","libraflem","liranuov","lirasterl","markold","markflour","msign","msignflour","obol","penningar","reichtalold","schillgerm","schillgermscript","scudi","krone","helbing","ouncescript","Cnumbar","cnumbar","lllig","slongchlig","slongjlig","slongklig","slongslig","slongslongklig","slongslongtlig","metrmacr","metrbreve","metrmacrbreve","metrbrevemacr","metrmacracute","metrmacrgrave","metrbreveacute","metrbrevegrave","metrmacrbreveacute","metrmacrbrevegrave","metranc","metrancacute","metrancgrave","metrpause","metrmacrdblac","metrmacrdblgrave","metrbrevedblac","metrbrevedblgrave","metrancdblac","metrancdblgrave","metrdblbrevemacracute","metrdblbrevemacrdblac","metrdblbrevemacr","Vovlhigh","Xovlhigh","Lovlhigh","Covlhigh","Dovlhigh","sil","ucsur","unz","roundr","longs","germandbls","germandblS","prestroke"]}
-,
-"unicode-math.sty":{"envs":{},"deps":["expl3.sty","l3keys2e.sty","fix-cm.sty"],"cmds":["unimathsetup","setmathfont","setmathfontface","setoperatorfont","NewNegationCommand","RenewNegationCommand","symnormal","symliteral","symup","symrm","symit","symbf","symsf","symtt","symbb","symbbit","symcal","symscr","symfrak","symsfup","symsfit","symbfsf","symbfup","symbfit","symbfcal","symbfscr","symbffrak","symbfsfup","symbfsfit","mathtextrm","mathtextbf","mathtextit","mathtextsf","mathtexttt","mathup","mathbb","mathbbit","mathscr","mathsfup","mathsfit","mathbfsf","mathbfup","mathbfit","mathbfcal","mathbfscr","mathbffrak","mathbfsfup","mathbfsfit","mathfrak","addnolimits","crampeddisplaystyle","crampedscriptscriptstyle","crampedscriptstyle","crampedtextstyle","mathaccentoverlay","mathaccentwide","mathbacktick","mathbotaccent","mathbotaccentwide","mathfence","mathover","mathstraightquote","mathunder","removenolimits","UnicodeMathSymbol","Angstrom","ast","backdprime","backprime","backslash","backtrprime","blanksymbol","bullet","cdotp","dagger","ddagger","diameter","div","divslash","downarrow","dprime","eighthnote","equal","eth","euro","fracslash","gets","greater","infty","ldotp","leftarrow","less","lnot","mathampersand","mathatsign","mathcolon","mathcomma","mathdollar","matheth","mathhyphen","mathoctothorpe","mathparagraph","mathpercent","mathperiod","mathplus","mathquestion","mathratio","mathsection","mathsemicolon","mathslash","mathsterling","mathunderscore","mathvisiblespace","mathyen","mho","minus","neg","pm","prime","qprime","rightarrow","smblkcircle","smwhtcircle","sphericalangle","surd","tieconcat","times","to","trprime","unicodeellipsis","uparrow","vert","Vert","Alpha","BbbA","Bbba","BbbB","Bbbb","BbbC","Bbbc","BbbD","Bbbd","BbbE","Bbbe","Bbbeight","BbbF","Bbbf","Bbbfive","Bbbfour","BbbG","Bbbg","Bbbgamma","BbbGamma","BbbH","Bbbh","BbbI","Bbbi","BbbJ","Bbbj","BbbK","Bbbk","BbbL","Bbbl","BbbM","Bbbm","BbbN","Bbbn","Bbbnine","BbbO","Bbbo","Bbbone","BbbP","Bbbp","Bbbpi","BbbPi","BbbQ","Bbbq","BbbR","Bbbr","BbbS","Bbbs","Bbbseven","Bbbsix","Bbbsum","BbbT","Bbbt","Bbbthree","Bbbtwo","BbbU","Bbbu","BbbV","Bbbv","BbbW","Bbbw","BbbX","Bbbx","BbbY","Bbby","BbbZ","Bbbz","Bbbzero","Beta","Chi","Epsilon","Eta","Iota","itAlpha","italpha","itBeta","itbeta","itChi","itchi","itDelta","itdelta","itEpsilon","itepsilon","itEta","iteta","itGamma","itgamma","itIota","itiota","itKappa","itkappa","itLambda","itlambda","itMu","itmu","itNu","itnu","itOmega","itomega","itOmicron","itomicron","itPhi","itphi","itPi","itpi","itPsi","itpsi","itRho","itrho","itSigma","itsigma","itTau","ittau","itTheta","ittheta","itUpsilon","itupsilon","itvarepsilon","itvarkappa","itvarphi","itvarpi","itvarrho","itvarsigma","itvarTheta","itvartheta","itXi","itxi","itZeta","itzeta","Kappa","mbfA","mbfa","mbfAlpha","mbfalpha","mbfB","mbfb","mbfBeta","mbfbeta","mbfC","mbfc","mbfChi","mbfchi","mbfD","mbfd","mbfDelta","mbfdelta","mbfE","mbfe","mbfeight","mbfEpsilon","mbfepsilon","mbfEta","mbfeta","mbfF","mbff","mbffive","mbffour","mbffrakA","mbffraka","mbffrakB","mbffrakb","mbffrakC","mbffrakc","mbffrakD","mbffrakd","mbffrakE","mbffrake","mbffrakF","mbffrakf","mbffrakG","mbffrakg","mbffrakH","mbffrakh","mbffrakI","mbffraki","mbffrakJ","mbffrakj","mbffrakK","mbffrakk","mbffrakL","mbffrakl","mbffrakM","mbffrakm","mbffrakN","mbffrakn","mbffrakO","mbffrako","mbffrakP","mbffrakp","mbffrakQ","mbffrakq","mbffrakR","mbffrakr","mbffrakS","mbffraks","mbffrakT","mbffrakt","mbffrakU","mbffraku","mbffrakV","mbffrakv","mbffrakW","mbffrakw","mbffrakX","mbffrakx","mbffrakY","mbffraky","mbffrakZ","mbffrakz","mbfG","mbfg","mbfGamma","mbfgamma","mbfH","mbfh","mbfI","mbfi","mbfIota","mbfiota","mbfitA","mbfita","mbfitAlpha","mbfitalpha","mbfitB","mbfitb","mbfitBeta","mbfitbeta","mbfitC","mbfitc","mbfitChi","mbfitchi","mbfitD","mbfitd","mbfitDelta","mbfitdelta","mbfitE","mbfite","mbfitEpsilon","mbfitepsilon","mbfitEta","mbfiteta","mbfitF","mbfitf","mbfitG","mbfitg","mbfitGamma","mbfitgamma","mbfitH","mbfith","mbfitI","mbfiti","mbfitIota","mbfitiota","mbfitJ","mbfitj","mbfitK","mbfitk","mbfitKappa","mbfitkappa","mbfitL","mbfitl","mbfitLambda","mbfitlambda","mbfitM","mbfitm","mbfitMu","mbfitmu","mbfitN","mbfitn","mbfitnabla","mbfitNu","mbfitnu","mbfitO","mbfito","mbfitOmega","mbfitomega","mbfitOmicron","mbfitomicron","mbfitP","mbfitp","mbfitpartial","mbfitPhi","mbfitphi","mbfitPi","mbfitpi","mbfitPsi","mbfitpsi","mbfitQ","mbfitq","mbfitR","mbfitr","mbfitRho","mbfitrho","mbfitS","mbfits","mbfitsansA","mbfitsansa","mbfitsansAlpha","mbfitsansalpha","mbfitsansB","mbfitsansb","mbfitsansBeta","mbfitsansbeta","mbfitsansC","mbfitsansc","mbfitsansChi","mbfitsanschi","mbfitsansD","mbfitsansd","mbfitsansDelta","mbfitsansdelta","mbfitsansE","mbfitsanse","mbfitsansEpsilon","mbfitsansepsilon","mbfitsansEta","mbfitsanseta","mbfitsansF","mbfitsansf","mbfitsansG","mbfitsansg","mbfitsansGamma","mbfitsansgamma","mbfitsansH","mbfitsansh","mbfitsansI","mbfitsansi","mbfitsansIota","mbfitsansiota","mbfitsansJ","mbfitsansj","mbfitsansK","mbfitsansk","mbfitsansKappa","mbfitsanskappa","mbfitsansL","mbfitsansl","mbfitsansLambda","mbfitsanslambda","mbfitsansM","mbfitsansm","mbfitsansMu","mbfitsansmu","mbfitsansN","mbfitsansn","mbfitsansnabla","mbfitsansNu","mbfitsansnu","mbfitsansO","mbfitsanso","mbfitsansOmega","mbfitsansomega","mbfitsansOmicron","mbfitsansomicron","mbfitsansP","mbfitsansp","mbfitsanspartial","mbfitsansPhi","mbfitsansphi","mbfitsansPi","mbfitsanspi","mbfitsansPsi","mbfitsanspsi","mbfitsansQ","mbfitsansq","mbfitsansR","mbfitsansr","mbfitsansRho","mbfitsansrho","mbfitsansS","mbfitsanss","mbfitsansSigma","mbfitsanssigma","mbfitsansT","mbfitsanst","mbfitsansTau","mbfitsanstau","mbfitsansTheta","mbfitsanstheta","mbfitsansU","mbfitsansu","mbfitsansUpsilon","mbfitsansupsilon","mbfitsansV","mbfitsansv","mbfitsansvarepsilon","mbfitsansvarkappa","mbfitsansvarphi","mbfitsansvarpi","mbfitsansvarrho","mbfitsansvarsigma","mbfitsansvarTheta","mbfitsansvartheta","mbfitsansW","mbfitsansw","mbfitsansX","mbfitsansx","mbfitsansXi","mbfitsansxi","mbfitsansY","mbfitsansy","mbfitsansZ","mbfitsansz","mbfitsansZeta","mbfitsanszeta","mbfitSigma","mbfitsigma","mbfitT","mbfitt","mbfitTau","mbfittau","mbfitTheta","mbfittheta","mbfitU","mbfitu","mbfitUpsilon","mbfitupsilon","mbfitV","mbfitv","mbfitvarepsilon","mbfitvarkappa","mbfitvarphi","mbfitvarpi","mbfitvarrho","mbfitvarsigma","mbfitvarTheta","mbfitvartheta","mbfitW","mbfitw","mbfitX","mbfitx","mbfitXi","mbfitxi","mbfitY","mbfity","mbfitZ","mbfitz","mbfitZeta","mbfitzeta","mbfJ","mbfj","mbfK","mbfk","mbfKappa","mbfkappa","mbfL","mbfl","mbfLambda","mbflambda","mbfM","mbfm","mbfMu","mbfmu","mbfN","mbfn","mbfnabla","mbfnine","mbfNu","mbfnu","mbfO","mbfo","mbfOmega","mbfomega","mbfOmicron","mbfomicron","mbfone","mbfP","mbfp","mbfpartial","mbfPhi","mbfphi","mbfPi","mbfpi","mbfPsi","mbfpsi","mbfQ","mbfq","mbfR","mbfr","mbfRho","mbfrho","mbfS","mbfs","mbfsansA","mbfsansa","mbfsansAlpha","mbfsansalpha","mbfsansB","mbfsansb","mbfsansBeta","mbfsansbeta","mbfsansC","mbfsansc","mbfsansChi","mbfsanschi","mbfsansD","mbfsansd","mbfsansDelta","mbfsansdelta","mbfsansE","mbfsanse","mbfsanseight","mbfsansEpsilon","mbfsansepsilon","mbfsansEta","mbfsanseta","mbfsansF","mbfsansf","mbfsansfive","mbfsansfour","mbfsansG","mbfsansg","mbfsansGamma","mbfsansgamma","mbfsansH","mbfsansh","mbfsansI","mbfsansi","mbfsansIota","mbfsansiota","mbfsansJ","mbfsansj","mbfsansK","mbfsansk","mbfsansKappa","mbfsanskappa","mbfsansL","mbfsansl","mbfsansLambda","mbfsanslambda","mbfsansM","mbfsansm","mbfsansMu","mbfsansmu","mbfsansN","mbfsansn","mbfsansnabla","mbfsansnine","mbfsansNu","mbfsansnu","mbfsansO","mbfsanso","mbfsansOmega","mbfsansomega","mbfsansOmicron","mbfsansomicron","mbfsansone","mbfsansP","mbfsansp","mbfsanspartial","mbfsansPhi","mbfsansphi","mbfsansPi","mbfsanspi","mbfsansPsi","mbfsanspsi","mbfsansQ","mbfsansq","mbfsansR","mbfsansr","mbfsansRho","mbfsansrho","mbfsansS","mbfsanss","mbfsansseven","mbfsansSigma","mbfsanssigma","mbfsanssix","mbfsansT","mbfsanst","mbfsansTau","mbfsanstau","mbfsansTheta","mbfsanstheta","mbfsansthree","mbfsanstwo","mbfsansU","mbfsansu","mbfsansUpsilon","mbfsansupsilon","mbfsansV","mbfsansv","mbfsansvarepsilon","mbfsansvarkappa","mbfsansvarphi","mbfsansvarpi","mbfsansvarrho","mbfsansvarsigma","mbfsansvarTheta","mbfsansvartheta","mbfsansW","mbfsansw","mbfsansX","mbfsansx","mbfsansXi","mbfsansxi","mbfsansY","mbfsansy","mbfsansZ","mbfsansz","mbfsanszero","mbfsansZeta","mbfsanszeta","mbfscrA","mbfscrB","mbfscrC","mbfscrD","mbfscrE","mbfscrF","mbfscrG","mbfscrH","mbfscrI","mbfscrJ","mbfscrK","mbfscrL","mbfscrM","mbfscrN","mbfscrO","mbfscrP","mbfscrQ","mbfscrR","mbfscrS","mbfscrT","mbfscrU","mbfscrV","mbfscrW","mbfscrX","mbfscrY","mbfscrZ","mbfseven","mbfSigma","mbfsigma","mbfsix","mbfT","mbft","mbfTau","mbftau","mbfTheta","mbftheta","mbfthree","mbftwo","mbfU","mbfu","mbfUpsilon","mbfupsilon","mbfV","mbfv","mbfvarepsilon","mbfvarkappa","mbfvarphi","mbfvarpi","mbfvarrho","mbfvarsigma","mbfvarTheta","mbfvartheta","mbfW","mbfw","mbfX","mbfx","mbfXi","mbfxi","mbfY","mbfy","mbfZ","mbfz","mbfzero","mbfZeta","mbfzeta","mfrakA","mfraka","mfrakB","mfrakb","mfrakC","mfrakc","mfrakD","mfrakd","mfrakE","mfrake","mfrakF","mfrakf","mfrakG","mfrakg","mfrakH","mfrakh","mfraki","mfrakJ","mfrakj","mfrakK","mfrakk","mfrakL","mfrakl","mfrakM","mfrakm","mfrakN","mfrakn","mfrakO","mfrako","mfrakP","mfrakp","mfrakQ","mfrakq","mfrakr","mfrakS","mfraks","mfrakT","mfrakt","mfrakU","mfraku","mfrakV","mfrakv","mfrakW","mfrakw","mfrakX","mfrakx","mfrakY","mfraky","mfrakZ","mfrakz","mitA","mita","mitAlpha","mitalpha","mitB","mitb","mitBbbD","mitBbbd","mitBbbe","mitBbbi","mitBbbj","mitBeta","mitbeta","mitC","mitc","mitChi","mitchi","mitD","mitd","mitDelta","mitdelta","mitE","mite","mitEpsilon","mitepsilon","mitEta","miteta","mitF","mitf","mitG","mitg","mitGamma","mitgamma","mitH","mitI","miti","mitIota","mitiota","mitJ","mitj","mitK","mitk","mitKappa","mitkappa","mitL","mitl","mitLambda","mitlambda","mitM","mitm","mitMu","mitmu","mitN","mitn","mitnabla","mitNu","mitnu","mitO","mito","mitOmega","mitomega","mitOmicron","mitomicron","mitP","mitp","mitpartial","mitPhi","mitphi","mitPi","mitpi","mitPsi","mitpsi","mitQ","mitq","mitR","mitr","mitRho","mitrho","mitS","mits","mitsansA","mitsansa","mitsansB","mitsansb","mitsansC","mitsansc","mitsansD","mitsansd","mitsansE","mitsanse","mitsansF","mitsansf","mitsansG","mitsansg","mitsansH","mitsansh","mitsansI","mitsansi","mitsansJ","mitsansj","mitsansK","mitsansk","mitsansL","mitsansl","mitsansM","mitsansm","mitsansN","mitsansn","mitsansO","mitsanso","mitsansP","mitsansp","mitsansQ","mitsansq","mitsansR","mitsansr","mitsansS","mitsanss","mitsansT","mitsanst","mitsansU","mitsansu","mitsansV","mitsansv","mitsansW","mitsansw","mitsansX","mitsansx","mitsansY","mitsansy","mitsansZ","mitsansz","mitSigma","mitsigma","mitT","mitt","mitTau","mittau","mitTheta","mittheta","mitU","mitu","mitUpsilon","mitupsilon","mitV","mitv","mitvarepsilon","mitvarkappa","mitvarphi","mitvarpi","mitvarrho","mitvarsigma","mitvarTheta","mitvartheta","mitW","mitw","mitX","mitx","mitXi","mitxi","mitY","mity","mitZ","mitz","mitZeta","mitzeta","msansA","msansa","msansB","msansb","msansC","msansc","msansD","msansd","msansE","msanse","msanseight","msansF","msansf","msansfive","msansfour","msansG","msansg","msansH","msansh","msansI","msansi","msansJ","msansj","msansK","msansk","msansL","msansl","msansM","msansm","msansN","msansn","msansnine","msansO","msanso","msansone","msansP","msansp","msansQ","msansq","msansR","msansr","msansS","msanss","msansseven","msanssix","msansT","msanst","msansthree","msanstwo","msansU","msansu","msansV","msansv","msansW","msansw","msansX","msansx","msansY","msansy","msansZ","msansz","msanszero","mscrA","mscrB","mscrC","mscrD","mscrE","mscrF","mscrG","mscrH","mscrI","mscrJ","mscrK","mscrL","mscrM","mscrN","mscrO","mscrP","mscrQ","mscrR","mscrS","mscrT","mscrU","mscrV","mscrW","mscrX","mscrY","mscrZ","mttA","mtta","mttB","mttb","mttC","mttc","mttD","mttd","mttE","mtte","mtteight","mttF","mttf","mttfive","mttfour","mttG","mttg","mttH","mtth","mttI","mtti","mttJ","mttj","mttK","mttk","mttL","mttl","mttM","mttm","mttN","mttn","mttnine","mttO","mtto","mttone","mttP","mttp","mttQ","mttq","mttR","mttr","mttS","mtts","mttseven","mttsix","mttT","mttt","mttthree","mtttwo","mttU","mttu","mttV","mttv","mttW","mttw","mttX","mttx","mttY","mtty","mttZ","mttz","mttzero","Mu","mupAlpha","mupalpha","mupBeta","mupbeta","mupChi","mupchi","mupDelta","mupdelta","mupEpsilon","mupepsilon","mupEta","mupeta","mupGamma","mupgamma","mupIota","mupiota","mupKappa","mupkappa","mupLambda","muplambda","mupMu","mupmu","mupNu","mupnu","mupOmega","mupomega","mupOmicron","mupomicron","mupPhi","mupphi","mupPi","muppi","mupPsi","muppsi","mupRho","muprho","mupSigma","mupsigma","mupTau","muptau","mupTheta","muptheta","mupUpsilon","mupupsilon","mupvarepsilon","mupvarkappa","mupvarphi","mupvarpi","mupvarrho","mupvarsigma","mupvartheta","mupvarTheta","mupXi","mupxi","mupZeta","mupzeta","Nu","Omicron","omicron","Rho","Tau","upAlpha","upalpha","upBeta","upbeta","upChi","upchi","upDelta","updelta","upEpsilon","upepsilon","upEta","upeta","upGamma","upgamma","upIota","upiota","upKappa","upkappa","upLambda","uplambda","upMu","upmu","upNu","upnu","upOmega","upomega","upOmicron","upomicron","upPhi","upphi","upPi","uppi","upPsi","uppsi","upRho","uprho","upSigma","upsigma","upTau","uptau","upTheta","uptheta","upUpsilon","upupsilon","upvarepsilon","upvarkappa","upvarphi","upvarpi","upvarrho","upvarsigma","upvarTheta","upvartheta","upXi","upxi","upZeta","upzeta","varkappa","Zeta","acwopencirclearrow","adots","approxeq","approxident","arceq","assert","asteraccent","awint","backcong","backsim","backsimeq","barvee","barwedge","because","beth","between","bigblacktriangledown","bigblacktriangleup","bigbot","bigcupdot","bigsqcap","bigtimes","bigtop","blacktriangleleft","blacktriangleright","blockfull","blockhalfshaded","blockqtrshaded","blockthreeqtrshaded","boxdot","boxminus","boxplus","boxtimes","bumpeq","Bumpeq","Cap","carriagereturn","checkmark","circeq","circledast","circledcirc","circleddash","circledequal","Colon","coloneq","complement","concavediamond","concavediamondtickleft","concavediamondtickright","Cup","cupdot","cupleftarrow","curlyeqprec","curlyeqsucc","curlyvee","curlywedge","curvearrowleft","curvearrowright","cwopencirclearrow","daleth","dashcolon","DashVDash","dashVdash","divideontimes","Doteq","dotminus","dotplus","dotsminusdots","dottedsquare","downdownarrows","downharpoonleft","downharpoonright","downuparrows","downwhitearrow","enclosecircle","enclosediamond","enclosesquare","enclosetriangle","eqcirc","eqcolon","eqdef","eqgtr","eqless","eqsim","eqslantgtr","eqslantless","equalparallel","Equiv","Eulerconst","fallingdotseq","geqq","geqslant","ggg","gimel","gnapprox","gneq","gneqq","gnsim","gtrapprox","gtrdot","gtreqless","gtreqqless","gtrless","gtrsim","hermitmatrix","horizbar","hrectangle","hrectangleblack","hslash","imageof","increment","intbottom","intclockwise","intercal","inttop","invlazys","invnot","kernelcontraction","lAngle","lbracelend","lbracemid","lbraceuend","lBrack","lbrackextender","lbracklend","lbrackuend","Ldsh","leftarrowtail","leftharpoonaccent","leftleftarrows","leftrightarrows","leftrightharpoons","leftrightsquigarrow","leftsquigarrow","leftthreearrows","leftthreetimes","leftwhitearrow","leqq","leqslant","lessapprox","lessdot","lesseqgtr","lesseqqgtr","lessgtr","lesssim","lgwhtcircle","linefeed","llcorner","Lleftarrow","lll","lnapprox","lneq","lneqq","lnsim","longdashv","longleftsquigarrow","longmapsfrom","Longmapsfrom","Longmapsto","longrightsquigarrow","looparrowleft","looparrowright","lozengeminus","lparen","lparenextender","lparenlend","lparenuend","lrcorner","Lsh","ltimes","maltese","mapsdown","mapsfrom","Mapsfrom","Mapsto","mapsup","mathexclam","mathunderbar","mdlgblkcircle","mdlgblksquare","mdlgwhtcircle","mdlgwhtlozenge","mdlgwhtsquare","measeq","measuredangle","measuredrightangle","multimap","multimapinv","napprox","nasymp","ncong","Nearrow","nequiv","nexists","ngeq","ngtr","ngtrless","ngtrsim","nleftarrow","nLeftarrow","nleftrightarrow","nLeftrightarrow","nleq","nless","nlessgtr","nlesssim","nmid","nni","notaccent","nparallel","nprec","npreccurlyeq","nrightarrow","nRightarrow","nsim","nsime","nsimeq","nsqsubseteq","nsqsupseteq","nsubset","nsubseteq","nsucc","nsucccurlyeq","nsupset","nsupseteq","ntrianglelefteq","ntrianglerighteq","nvartriangleleft","nvartriangleright","nvdash","nvDash","nVdash","nVDash","Nwarrow","obrbrak","ocirc","oiiint","oiint","ointctrclockwise","origof","overbar","overbracket","overleftharpoon","overparen","overrightharpoon","ovhook","Planckconst","preccurlyeq","precnsim","precsim","QED","questeq","rAngle","rbracelend","rbracemid","rbraceuend","rBrack","rbrackextender","rbracklend","rbrackuend","Rdsh","rightangle","rightarrowonoplus","rightarrowtail","rightharpoonaccent","rightleftarrows","rightrightarrows","rightsquigarrow","rightthreearrows","rightthreetimes","rightwhitearrow","risingdotseq","rparen","rparenextender","rparenlend","rparenuend","Rrightarrow","Rsh","rtimes","Searrow","sime","simneqq","sinewave","smallin","smallni","smallsetminus","smblksquare","smwhtdiamond","smwhtsquare","sqrtbottom","sqsubset","sqsubsetneq","sqsupset","sqsupsetneq","stareq","Subset","subsetneq","succcurlyeq","succnsim","succsim","sumbottom","sumtop","Supset","supsetneq","Swarrow","therefore","threeunderdot","trianglelefteq","triangleq","trianglerighteq","turnednot","twoheaddownarrow","twoheadleftarrow","twoheadrightarrow","twoheaduparrow","twolowline","ubrbrak","ulcorner","underbracket","underleftharpoondown","underparen","underrightharpoondown","unicodecdots","updownarrows","upharpoonleft","upharpoonright","upuparrows","upwhitearrow","urcorner","varbarwedge","varclubsuit","vardiamondsuit","vardoublebarwedge","varheartsuit","varlrtriangle","varnothing","varointclockwise","varspadesuit","vartriangleleft","vartriangleright","vbraceextender","VDash","vDash","Vdash","vectimes","veebar","veeeq","vertoverlay","vlongdash","Vvdash","vysmblkcircle","vysmwhtcircle","wedgeq","widebreve","widebridgeabove","widecheck","wideoverbar","wideutilde","MToverbracket","MTunderbracket","Uoverbracket","Uunderbracket","accurrent","acidfree","acwcirclearrow","acwgapcirclearrow","acwleftarcarrow","acwoverarcarrow","acwunderarcarrow","angdnr","angles","angleubar","annuity","APLboxquestion","APLboxupcaret","APLnotbackslash","APLnotslash","approxeqq","arabichad","arabicmaj","asteq","astrosun","backepsilon","bagmember","barcap","barcup","bardownharpoonleft","bardownharpoonright","barleftarrow","barleftarrowrightarrowbar","barleftharpoondown","barleftharpoonup","barovernorthwestarrow","barrightarrowdiamond","barrightharpoondown","barrightharpoonup","baruparrow","barupharpoonleft","barupharpoonright","Barv","barV","bbrktbrk","bdtriplevdash","benzenr","biginterleave","bigslopedvee","bigslopedwedge","bigstar","bigtalloblong","bigtriangleleft","bigwhitestar","blackcircledownarrow","blackcircledrightdot","blackcircledtwodots","blackcircleulquadwhite","blackdiamonddownarrow","blackhourglass","blackinwhitediamond","blackinwhitesquare","blacklefthalfcircle","blackpointerleft","blackpointerright","blackrighthalfcircle","blacksmiley","blacktriangle","blacktriangledown","blkhorzoval","blkvertoval","blocklefthalf","blocklowhalf","blockrighthalf","blockuphalf","bNot","botsemicircle","boxast","boxbar","boxbox","boxbslash","boxcircle","boxdiag","boxonbox","bsimilarleftarrow","bsimilarrightarrow","bsolhsub","btimes","bullseye","bumpeqq","candra","capbarcup","capdot","capovercup","capwedge","caretinsert","ccwundercurvearrow","cirbot","circlebottomhalfblack","circledbullet","circledownarrow","circledparallel","circledrightdot","circledstar","circledtwodots","circledvert","circledwhitebullet","circlehbar","circlelefthalfblack","circlellquad","circlelrquad","circleonleftarrow","circleonrightarrow","circlerighthalfblack","circletophalfblack","circleulquad","circleurquad","circleurquadblack","circlevertfill","cirE","cirfnint","cirmid","cirscir","closedvarcap","closedvarcup","closedvarcupsmashprod","closure","Coloneq","commaminus","congdot","conictaper","conjquant","csub","csube","csup","csupe","cuberoot","cuberootsign","cupbarcap","cupovercap","cupvee","curvearrowleftplus","curvearrowrightminus","cwcirclearrow","cwgapcirclearrow","cwrightarcarrow","cwundercurvearrow","danger","dashleftharpoondown","dashrightharpoondown","dashV","Dashv","DashV","dbkarow","dbkarrow","ddotseq","DDownarrow","Ddownarrow","diamondbotblack","diamondcdot","diamondleftarrow","diamondleftarrowbar","diamondleftblack","diamondrightblack","diamondtopblack","dicei","diceii","diceiii","diceiv","dicev","dicevi","Digamma","digamma","dingasterisk","disin","disjquant","dotequiv","dotsim","dottedcircle","dottimes","doublebarvee","doublebarwedge","doubleplus","downarrowbar","downarrowbarred","downdasharrow","downfishtail","downharpoonleftbar","downharpoonrightbar","downharpoonsleftright","downrightcurvedarrow","downtriangleleftblack","downtrianglerightblack","downupharpoonsleftright","downzigzagarrow","draftingarrow","drbkarow","drbkarrow","droang","dsol","dsub","dualmap","egsdot","elinters","elsdot","emptysetoarr","emptysetoarrl","emptysetobar","emptysetocirc","enleadertwodots","eparsl","eqdot","eqeq","eqeqeq","eqqgtr","eqqless","eqqplus","eqqsim","eqqslantgtr","eqqslantless","equalleftarrow","equalrightarrow","equivDD","equivVert","equivVvert","eqvparsl","errbarblackcircle","errbarblackdiamond","errbarblacksquare","errbarcircle","errbardiamond","errbarsquare","Exclam","fbowtie","fcmp","fdiagovnearrow","fdiagovrdiag","female","fint","Finv","fisheye","fltns","forks","forksnot","forkv","fourthroot","fourthrootsign","fourvdots","fullouterjoin","Game","geqqslant","gescc","gesdot","gesdoto","gesdotol","gesles","gggnest","gla","glE","gleichstark","glj","gsime","gsiml","Gt","gtcc","gtcir","gtlpar","gtquest","gtrarr","harrowextender","hatapprox","Hermaphrodite","hexagon","hexagonblack","hknearrow","hknwarrow","hksearow","hksearrow","hkswarow","hkswarrow","hourglass","house","hyphenbullet","hzigzag","iinfin","intbar","intBar","intcap","intcup","interleave","intextender","intlarhk","intprod","intprodr","intx","inversebullet","inversewhitecircle","invwhitelowerhalfcircle","invwhiteupperhalfcircle","isindot","isinE","isinobar","isins","isinvb","Join","langledot","laplac","lat","late","lbag","lblkbrbrak","lBrace","lbracklltick","lbrackubar","lbrackultick","Lbrbrak","lbrbrak","lcurvyangle","leftarrowapprox","leftarrowbackapprox","leftarrowbsimilar","leftarrowless","leftarrowonoplus","leftarrowplus","leftarrowshortrightarrow","leftarrowsimilar","leftarrowsubset","leftarrowtriangle","leftarrowx","leftbkarrow","leftcurvedarrow","leftdasharrow","leftdbkarrow","leftdbltail","leftdotarrow","leftdowncurvedarrow","leftfishtail","leftharpoondownbar","leftharpoonsupdown","leftharpoonupbar","leftharpoonupdash","leftmoon","leftouterjoin","leftrightarrowcircle","leftrightarrowtriangle","leftrightharpoondowndown","leftrightharpoondownup","leftrightharpoonsdown","leftrightharpoonsup","leftrightharpoonupdown","leftrightharpoonupup","lefttail","leftwavearrow","leqqslant","lescc","lesdot","lesdoto","lesdotor","lesges","lfbowtie","lftimes","lgblkcircle","lgblksquare","lgE","lgwhtsquare","llangle","llarc","llblacktriangle","LLeftarrow","lllnest","llparenthesis","lltriangle","longdivision","longdivisionsign","lowint","lParen","Lparengtr","lparenless","lrarc","lrblacktriangle","lrtriangle","lrtriangleeq","lsime","lsimg","lsqhook","Lt","ltcc","ltcir","ltlarr","ltquest","ltrivb","lvboxline","lvzigzag","Lvzigzag","male","mbfDigamma","mbfdigamma","mbfscra","mbfscrb","mbfscrc","mbfscrd","mbfscre","mbfscrf","mbfscrg","mbfscrh","mbfscri","mbfscrj","mbfscrk","mbfscrl","mbfscrm","mbfscrn","mbfscro","mbfscrp","mbfscrq","mbfscrr","mbfscrs","mbfscrt","mbfscru","mbfscrv","mbfscrw","mbfscrx","mbfscry","mbfscrz","mdblkcircle","mdblkdiamond","mdblklozenge","mdblksquare","mdlgblkdiamond","mdlgblklozenge","mdlgwhtdiamond","mdsmblkcircle","mdsmblksquare","mdsmwhtcircle","mdsmwhtsquare","mdwhtcircle","mdwhtdiamond","mdwhtlozenge","mdwhtsquare","measangledltosw","measangledrtose","measangleldtosw","measanglelutonw","measanglerdtose","measanglerutone","measangleultonw","measangleurtone","measuredangleleft","medblackstar","medwhitestar","midbarvee","midbarwedge","midcir","minusdot","minusfdots","minusrdots","mlcp","modtwosum","mscra","mscrb","mscrc","mscrd","mscre","mscrf","mscrg","mscrh","mscri","mscrj","mscrk","mscrl","mscrm","mscrn","mscro","mscrp","mscrq","mscrr","mscrs","mscrt","mscru","mscrv","mscrw","mscrx","mscry","mscrz","neovnwarrow","neovsearrow","neswarrow","neuter","nHdownarrow","nhpar","nHuparrow","nhVvert","niobar","nis","nisd","Not","npolint","nvinfty","nvleftarrow","nVleftarrow","nvLeftarrow","nvleftarrowtail","nVleftarrowtail","nvleftrightarrow","nVleftrightarrow","nvLeftrightarrow","nvrightarrow","nVrightarrow","nvRightarrow","nvrightarrowtail","nVrightarrowtail","nvtwoheadleftarrow","nVtwoheadleftarrow","nvtwoheadleftarrowtail","nVtwoheadleftarrowtail","nvtwoheadrightarrow","nVtwoheadrightarrow","nvtwoheadrightarrowtail","nVtwoheadrightarrowtail","nwovnearrow","nwsearrow","obar","obot","obslash","ocommatopright","odiv","odotslashdot","ogreaterthan","olcross","olessthan","operp","opluslhrim","oplusrhrim","Otimes","otimeshat","otimeslhrim","otimesrhrim","oturnedcomma","parallelogram","parallelogramblack","parsim","partialmeetcontraction","pentagon","pentagonblack","perps","pitchfork","plusdot","pluseqq","plushat","plussim","plussubtwo","plustrif","pointint","postalmark","Prec","precapprox","preceqq","precnapprox","precneq","precneqq","profline","profsurf","PropertyLine","prurel","pullback","pushout","quarternote","Question","rangledot","rangledownzigzagarrow","rbag","rblkbrbrak","rBrace","rbracklrtick","rbrackubar","rbrackurtick","Rbrbrak","rbrbrak","rcurvyangle","rdiagovfdiag","rdiagovsearrow","revangle","revangleubar","revemptyset","revnmid","rfbowtie","rftimes","rightanglemdot","rightanglesqr","rightarrowapprox","rightarrowbackapprox","rightarrowbar","rightarrowbsimilar","rightarrowdiamond","rightarrowgtr","rightarrowplus","rightarrowshortleftarrow","rightarrowsimilar","rightarrowsupset","rightarrowtriangle","rightarrowx","rightbkarrow","rightcurvedarrow","rightdasharrow","rightdbltail","rightdotarrow","rightdowncurvedarrow","rightfishtail","rightharpoondownbar","rightharpoonsupdown","rightharpoonupbar","rightharpoonupdash","rightimply","rightleftharpoonsdown","rightleftharpoonsup","rightmoon","rightouterjoin","rightpentagon","rightpentagonblack","righttail","rightwavearrow","ringplus","rParen","rparengtr","Rparenless","rppolint","rrangle","RRightarrow","rrparenthesis","rsolbar","rsqhook","rsub","rtriltri","ruledelayed","rvboxline","rvzigzag","Rvzigzag","sansLmirrored","sansLturned","scpolint","scurel","seovnearrow","shortdowntack","shortlefttack","shortrightarrowleftarrow","shortuptack","shuffle","simgE","simgtr","similarleftarrow","similarrightarrow","simlE","simless","simminussim","simplus","simrdots","smallblacktriangleleft","smallblacktriangleright","smalltriangleleft","smalltriangleright","smashtimes","smblkdiamond","smblklozenge","smeparsl","smt","smte","smwhitestar","smwhtlozenge","sphericalangleup","Sqcap","Sqcup","sqint","sqlozenge","squarebotblack","squarecrossfill","squarehfill","squarehvfill","squareleftblack","squarellblack","squarellquad","squarelrblack","squarelrquad","squareneswfill","squarenwsefill","squarerightblack","squaretopblack","squareulblack","squareulquad","squareurblack","squareurquad","squarevfill","squoval","sslash","strns","subedot","submult","subrarr","subsetapprox","subsetcirc","subsetdot","subseteqq","subsetneqq","subsetplus","subsim","subsub","subsup","Succ","succapprox","succeqq","succnapprox","succneq","succneqq","sumint","sun","supdsub","supedot","suphsol","suphsub","suplarr","supmult","supsetapprox","supsetcirc","supsetdot","supseteqq","supsetneqq","supsetplus","supsim","supsub","supsup","talloblong","thermod","threedangle","threedotcolon","tieinfty","timesbar","tminus","toea","tona","topbot","topcir","topfork","topsemicircle","tosa","towa","tplus","trapezium","trianglecdot","triangledown","triangleleftblack","triangleminus","triangleodot","triangleplus","trianglerightblack","triangles","triangleserifs","triangletimes","triangleubar","tripleplus","trslash","turnangle","turnediota","twocaps","twocups","twoheadleftarrowtail","twoheadleftdbkarrow","twoheadmapsfrom","twoheadmapsto","twoheadrightarrowtail","twoheaduparrowcircle","twonotes","typecolon","ularc","ulblacktriangle","ultriangle","uminus","upand","uparrowbarred","uparrowoncircle","upbackepsilon","updasharrow","upDigamma","updigamma","updownarrowbar","updownharpoonleftleft","updownharpoonleftright","updownharpoonrightleft","updownharpoonrightright","updownharpoonsleftright","upfishtail","upharpoonleftbar","upharpoonrightbar","upharpoonsleftright","upin","upint","uprightcurvearrow","urarc","urblacktriangle","urtriangle","UUparrow","Uuparrow","varcarriagereturn","varhexagon","varhexagonblack","varhexagonlrbonds","varisinobar","varisins","varniobar","varnis","varstar","vartriangle","varVdash","varveebar","vBar","Vbar","vBarv","vbrtri","vDdash","Vee","veedot","veedoublebar","veemidvert","veeodot","veeonvee","veeonwedge","viewdata","vrectangle","vrectangleblack","Vvert","vysmblksquare","vysmwhtsquare","vzigzag","Wedge","wedgebar","wedgedot","wedgedoublebar","wedgemidvert","wedgeodot","wedgeonwedge","whitearrowupfrombar","whiteinwhitetriangle","whitepointerleft","whitepointerright","whitesquaretickleft","whitesquaretickright","whthorzoval","whtvertoval","wideangledown","wideangleup","xbsol","xsol","Yup","Zbar","zcmp","zpipe","zproject"]}
-,
-"unicodefonttable.sty":{"envs":{},"deps":["xcolor.sty","xparse.sty","l3keys2e.sty","longtable.sty","booktabs.sty","caption.sty","fontspec.sty"],"cmds":["displayfonttable","fonttablesetup","fonttableglyphcount","unicodefonttabledate","unicodefonttableversion"]}
-,
-"unifith.cls":{"envs":["abstract","acknowledgments"],"deps":["xkeyval.sty","s-book.cls","geometry.sty","ifxetex.sty","fontspec.sty","caption.sty","graphicx.sty","color.sty","booktabs.sty","amsmath.sty","etoolbox.sty","fancyhdr.sty","hyperref.sty"],"cmds":["subtitle","alttitle","IDnumber","course","cycle","courseorganizer","AcademicYear","submitdate","advisor","coadvisor","customcoadvisorlabel","director","customdirectorlabel","examdate","examiner","thesistype","ISBN","copyyear","copyrightstatement","versiondate","website","authoremail","reviewer","reviewerlabel","dedication","eu","iu","der","pder","rb","rp","tb","tp","un","g","degree","C","celsius","A","angstrom","micro","ohm","di","x"]}
-,
-"unigrazpub.cls":{"envs":{},"deps":["l3keys2e.sty","s-scrbook.cls","roboto.sty","sourceserifpro.sty","anyfontsize.sty","geometry.sty","ragged2e.sty","scrlayer-scrpage.sty","csquotes.sty","biblatex-chicago.sty","graphicx.sty","doclicense.sty","hyperref.sty"],"cmds":["edition","insertedition","insertpublishersaddress","insertauthor","insertdate","insertpublishers","Article","keywords","listofauthors","HUGE","TocAuthorEntry","currentarticlelabel","citeimprint","citearticleauthor","publishersaddress"]}
-,
-"uninormalize.sty":{"envs":{},"deps":["luatexbase.sty","luacode.sty","kvoptions.sty"],"cmds":{}}
-,
-"unique.sty":{"envs":{},"deps":{},"cmds":["setuniqmark","ifuniq"]}
-,
-"uniquecounter.sty":{"envs":{},"deps":{},"cmds":["UniqueCounterNew","UniqueCounterCall","UniqueCounterIncrement","UniqueCounterGet"]}
-,
-"unisc.sty":{"envs":{},"deps":["pgfparser.sty","xpatch.sty"],"cmds":["oldscshape","oldtextsc"]}
-,
-"unitconv.sty":{"envs":{},"deps":["iftex.sty","xparse.sty","luacode.sty"],"cmds":["convTeXLength","convLength"]}
-,
-"units.sty":{"envs":{},"deps":["ifthen.sty"],"cmds":["unit","unitfrac"]}
-,
-"unitsdef.sty":{"envs":{},"deps":["fontenc.sty","amsmath.sty","textcomp.sty","units.sty","xspace.sty"],"cmds":["Micro","Ohm","Celsius","Degree","gensymbohm","gensymbcelsius","gensymbmicro","unitvaluesep","unitsignonly","ilu","arc","SI","unitSIdef","newunit","renewunit","newnosepunit","renewnosepunit","per","unittimes","unitsep","unitsuperscript","setTextOmega","setMathOmega","setTextmu","setMathmu","setTextCelsius","setMathCelsius","setTextDegree","setMathDegree","yocto","zepto","atto","femto","pico","nano","micro","milli","centi","deci","deca","hecto","kilo","mega","giga","tera","peta","exa","zetta","yotta","meter","gram","kilogram","mole","second","ampere","kelvin","candela","picometer","nanometer","micrometer","millimeter","centimeter","decimeter","kilometer","femtogram","picogram","nanogram","microgram","milligram","femtomole","picomole","nanomole","micromole","millimole","attosecond","femtosecond","picosecond","nanosecond","microsecond","millisecond","picoampere","nanoampere","microampere","milliampere","kiloampere","percent","liter","femtoliter","picoliter","nanoliter","microliter","milliliter","centiliter","deciliter","hectoliter","cubicmeter","cubicmicrometer","cubicmillimeter","squaremeter","ar","hektar","squarecentimeter","squaremillimeter","squarekilometer","ton","volt","millivolt","kilovolt","watt","milliwatt","kilowatt","megawatt","coulomb","ohm","kiloohm","megaohm","gigaohm","siemens","millisiemens","farad","femtofarad","picofarad","nanofarad","microfarad","millifarad","joule","millijoule","kilojoule","megajoule","calory","kilocalory","electronvolt","millielectronvolt","kiloelectronvolt","megaelectronvolt","gigaelectronvolt","teraelectronvolt","minute","hour","days","celsius","radian","steradian","degree","arcmin","arcsec","hertz","kilohertz","megahertz","gigahertz","newton","millinewton","kilonewton","pascal","hectopascal","uBar","millibar","weber","tesla","henry","lumen","lux","becquerel","megabecquerel","curie","sievert","millisievert","unitCelsius","unitDegree","unitMathCelsius","unitMathDegree","unitMathOmega","unitMathmu","unitOmega","unitTextCelsius","unitTextDegree","unitTextOmega","unitTextmu","unitmu","pA","nA","micA","mA","kA","kJ","eV","meV","keV","MeV","GeV","TeV","kHz","MHz","GHz","picom","nm","micm","mm","cm","dm","km","fmol","pmol","nmol","micmol","mmol","sek","fs","ps","ns","mics","ms","kg","fg","pg","nanog","micg","mg","kv","mv","fl","pl","nl","micl","ml","cl","dl","DH","dh","dj","DJ","guillemetleft","guillemetright","guillemotleft","guillemotright","guilsinglleft","guilsinglright","Hwithstroke","hwithstroke","k","NG","ng","quotedblbase","quotesinglbase","textogonekcentered","textquotedbl","th","TH"]}
-,
-"universalis.sty":{"envs":{},"deps":["ifxetex.sty","ifluatex.sty","textcomp.sty","xkeyval.sty","fontenc.sty","fontaxes.sty","mweights.sty"],"cmds":["univrs","univrscondensed","univrsfamily"]}
-,
-"univie-ling-expose.cls":{"envs":{},"deps":["s-scrartcl.cls","array.sty","translator.sty","fontenc.sty","mathptmx.sty","uarial.sty","sourcecodepro.sty","url.sty","geometry.sty","setspace.sty","scrlayer-scrpage.sty","microtype.sty","csquotes.sty","graphicx.sty","datetime2.sty","covington.sty","caption.sty","ragged2e.sty","biblatex.sty","varioref.sty","prettyref.sty","draftwatermark.sty","polyglossia.sty","fontspec.sty"],"cmds":["foreverunspace","printtexte","maxprtauth","apanum","mkdaterangeapalong","mkdaterangeapalongextra","begrelateddelimcommenton","begrelateddelimreviewof","begrelateddelimreprintfrom","urldatecomma","apashortdash","citeresetapa","fullcitebib","nptextcite","nptextcites","citet","citep","citealt","citealp","citeauthor","citeyearpar","Citet","Citep","Citealt","Citealp","citefullauthor","Citefullauthor","citetext","defcitealias","citetalias","citepalias","studienkennzahl","studienrichtung","supervisor","cosupervisor","advisor","Expression","Meaning","Concept","footnumwidth","lecsemshort","lecsemverb","origtableofcontents","maxfn","urlprefix","DH","dh","dj","DJ","guillemetleft","guillemetright","guillemotleft","guillemotright","guilsinglleft","guilsinglright","Hwithstroke","hwithstroke","k","NG","ng","quotedblbase","quotesinglbase","textogonekcentered","textquotedbl","th","TH","mkbibdateunified"]}
-,
-"univie-ling-handout.cls":{"envs":{},"deps":["s-scrartcl.cls","geometry.sty","graphicx.sty","fontenc.sty","sourceserifpro.sty","sourcesanspro.sty","sourcecodepro.sty","translator.sty","caption.sty","ragged2e.sty","babel.sty","biblatex.sty","array.sty","ifthen.sty","microtype.sty","csquotes.sty","url.sty","covington.sty","varioref.sty","prettyref.sty","draftwatermark.sty","polyglossia.sty","fontspec.sty","lastpage.sty"],"cmds":["foreverunspace","printtexte","maxprtauth","apanum","mkdaterangeapalong","mkdaterangeapalongextra","begrelateddelimcommenton","begrelateddelimreviewof","begrelateddelimreprintfrom","urldatecomma","apashortdash","citeresetapa","fullcitebib","nptextcite","nptextcites","citet","citep","citealt","citealp","citeauthor","citeyearpar","Citet","Citep","Citealt","Citealp","citefullauthor","Citefullauthor","citetext","defcitealias","citetalias","citepalias","hoDept","hoName","hoShortName","hoFunction","hoSecName","hoShortSecName","hoSecFunction","hoStreet","hoPostCode","hoLoc","hoCountry","hoPhone","hoFax","hoEMail","hoUrl","hoTitle","hoTitlePrefix","hoSubtitle","hoEvent","hoEventLoc","hoEventDate","Bibheading","Expression","Meaning","Concept","aftertitle","beforeevent","beforesubtitle","beforetitle","beforetitling","eventline","headeroffset","heventtitlesep","lsoffset","titleline","titleoffset","umbruch","urlprefix","DH","dh","dj","DJ","guillemetleft","guillemetright","guillemotleft","guillemotright","guilsinglleft","guilsinglright","Hwithstroke","hwithstroke","k","NG","ng","quotedblbase","quotesinglbase","textogonekcentered","textquotedbl","th","TH","mkbibdateunified"]}
-,
-"univie-ling-paper.cls":{"envs":{},"deps":["s-scrartcl.cls","translator.sty","fontenc.sty","mathpazo.sty","uarial.sty","sourcecodepro.sty","url.sty","geometry.sty","setspace.sty","scrlayer-scrpage.sty","microtype.sty","csquotes.sty","graphicx.sty","covington.sty","caption.sty","ragged2e.sty","biblatex.sty","varioref.sty","prettyref.sty","draftwatermark.sty","polyglossia.sty","fontspec.sty"],"cmds":["foreverunspace","printtexte","maxprtauth","apanum","mkdaterangeapalong","mkdaterangeapalongextra","begrelateddelimcommenton","begrelateddelimreviewof","begrelateddelimreprintfrom","urldatecomma","apashortdash","citeresetapa","fullcitebib","nptextcite","nptextcites","citet","citep","citealt","citealp","citeauthor","citeyearpar","Citet","Citep","Citealt","Citealp","citefullauthor","Citefullauthor","citetext","defcitealias","citetalias","citepalias","studienkennzahl","matrikelnr","course","semester","instructor","texttype","makedeclaration","Expression","Meaning","Concept","footnumwidth","lecsemshort","lecsemverb","lectype","lectypeverb","maxfn","origtableofcontents","urlprefix","DH","dh","dj","DJ","guillemetleft","guillemetright","guillemotleft","guillemotright","guilsinglleft","guilsinglright","Hwithstroke","hwithstroke","k","NG","ng","quotedblbase","quotesinglbase","textogonekcentered","textquotedbl","th","TH","mkbibdateunified"]}
-,
-"univie-ling-poster.cls":{"envs":["bluebox","redbox","greenbox","blueframedbox","redframedbox","greenframedbox"],"deps":["s-beamer.cls","etoolbox.sty","beamerposter.sty","amssymb.sty","fontenc.sty","url.sty","translator.sty","tcolorbox.sty","caption.sty","babel.sty","biblatex.sty","array.sty","ifthen.sty","microtype.sty","csquotes.sty","covington.sty","prettyref.sty","fontspec.sty","polyglossia.sty","draftwatermark.sty","ragged2e.sty"],"cmds":["foreverunspace","printtexte","maxprtauth","apanum","mkdaterangeapalong","mkdaterangeapalongextra","begrelateddelimcommenton","begrelateddelimreviewof","begrelateddelimreprintfrom","urldatecomma","apashortdash","citeresetapa","fullcitebib","nptextcite","nptextcites","citet","citep","citealt","citealp","citeauthor","citeyearpar","Citet","Citep","Citealt","Citealp","citefullauthor","Citefullauthor","citetext","defcitealias","citetalias","citepalias","author","subtitle","department","eventtitle","eventlocation","eventdate","eventlogo","Expression","Concept","Meaning","Bibheading","headeroffset","titleoffset","beforetitling","beforeevent","beforetitle","beforesubtitle","aftertitle","umbruch","lsoffset","titleindent","restwidth","leadingzero","urlprefix","DH","dh","dj","DJ","guillemetleft","guillemetright","guillemotleft","guillemotright","guilsinglleft","guilsinglright","Hwithstroke","hwithstroke","k","NG","ng","quotedblbase","quotesinglbase","textogonekcentered","textquotedbl","th","TH","mkbibdateunified"]}
-,
-"univie-ling-thesis.cls":{"envs":{},"deps":["xkeyval.sty","s-scrreprt.cls","array.sty","translator.sty","fontenc.sty","mathpazo.sty","uarial.sty","sourcecodepro.sty","url.sty","geometry.sty","setspace.sty","scrlayer-scrpage.sty","microtype.sty","csquotes.sty","graphicx.sty","covington.sty","caption.sty","ragged2e.sty","biblatex.sty","varioref.sty","prettyref.sty","draftwatermark.sty","polyglossia.sty","fontspec.sty","pdfx.sty"],"cmds":["foreverunspace","printtexte","maxprtauth","apanum","mkdaterangeapalong","mkdaterangeapalongextra","begrelateddelimcommenton","begrelateddelimreviewof","begrelateddelimreprintfrom","urldatecomma","apashortdash","citeresetapa","fullcitebib","nptextcite","nptextcites","citet","citep","citealt","citealp","citeauthor","citeyearpar","Citet","Citep","Citealt","Citealp","citefullauthor","Citefullauthor","citetext","defcitealias","citetalias","citepalias","studienkennzahl","studienrichtung","thesistype","volume","supervisor","cosupervisor","degree","makedeclaration","Expression","Meaning","Concept","footnumwidth","lecsemshort","lecsemverb","maxfn","origtableofcontents","urlprefix","DH","dh","dj","DJ","guillemetleft","guillemetright","guillemotleft","guillemotright","guilsinglleft","guilsinglright","Hwithstroke","hwithstroke","k","NG","ng","quotedblbase","quotesinglbase","textogonekcentered","textquotedbl","th","TH","mkbibdateunified"]}
-,
-"univie-ling-wlg.cls":{"envs":{},"deps":["s-scrartcl.cls","cochineal.sty","sourcesanspro.sty","DejaVuSansMono.sty","url.sty","microtype.sty","scalefnt.sty","textcase.sty","ragged2e.sty","translator.sty","doclicense.sty","etoc.sty","scrlayer-scrpage.sty","csquotes.sty","totpages.sty","refcount.sty","xcolor.sty","graphicx.sty","hyperref.sty","pdfpages.sty","enumitem.sty","covington.sty","caption.sty","booktabs.sty","multirow.sty","varioref.sty","prettyref.sty","biblatex.sty","MinionPro.sty","MyriadPro.sty","draftwatermark.sty"],"cmds":["mkbibdateunified","aff","AfterInputencOrAtEndPreamble","author","backmatter","computelastpage","Concept","condbreak","edboardAL","edboardGL","edboardHL","Expression","footnumwidth","frontmatter","impressum","includefinalpaper","issue","issueeditors","issuesubtitle","issuetitle","keywords","lastpageref","ljobname","mainmatter","makeissuetitle","maxfn","Meaning","motto","olddots","startpage","startpageref","techboard","thestartpage","title","urlprefix","versal","wlgurl"]}
-,
-"unravel.sty":{"envs":{},"deps":["expl3.sty","gtl.sty"],"cmds":["unravel","unravelsetup"]}
-,
-"upgreek.sty":{"envs":{},"deps":{},"cmds":["Updelta","Upgamma","Uplambda","Upomega","Upphi","Uppi","Uppsi","Upsigma","Uptheta","Upupsilon","Upxi","upalpha","upbeta","upchi","updelta","upepsilon","upeta","upgamma","upiota","upkappa","uplambda","upmu","upnu","upomega","upphi","uppi","uppsi","uprho","upsigma","uptau","uptheta","upupsilon","upvarepsilon","upvarphi","upvarpi","upvarrho","upvarsigma","upvartheta","upxi","upzeta"]}
-,
-"upkcat.sty":{"envs":{},"deps":["platex.sty","ifuptex.sty"],"cmds":["getkcatcode","thekcatcode","setkcatcode"]}
-,
-"uplatex.sty":{"envs":{},"deps":["uptex.sty"],"cmds":{}}
-,
-"upmethodology-backpage.sty":{"envs":{},"deps":["upmethodology-p-common.sty","upmethodology-extension.sty"],"cmds":["makebackcover","setbackcover"]}
-,
-"upmethodology-code.sty":{"envs":{},"deps":["upmethodology-p-common.sty"],"cmds":["upmcodelang","jclass","jinterface","jpackage","jfunc","jclazz","jvoid","jint","jlong","jfloat","jboolean","jdouble","jchar","jstring","jarray","jcollection","jset","jtrue","jfalse","jop","jcall","jcode"]}
-,
-"upmethodology-document.cls":{"envs":{},"deps":["s-report.cls","upmethodology-p-common.sty","a4wide.sty","upmethodology-document.sty","upmethodology-extension.sty","upmethodology-frontpage.sty","upmethodology-backpage.sty","url.sty","hyperref.sty","s-book.cls","upmethodology-task.sty","upmethodology-spec.sty","upmethodology-code.sty"],"cmds":["frontmatter","mainmatter","backmatter"]}
-,
-"upmethodology-document.sty":{"envs":["descriptionFB","descriptionFB"],"deps":["upmethodology-p-common.sty","babel.sty","vmargin.sty","upmethodology-extension.sty","upmethodology-fmt.sty","upmethodology-version.sty","draftwatermark.sty"],"cmds":["listendskip","declaredocument","declaredocumentex","upmdocumentsummary","upmdocinfopage","upmpublicationpage","upmpublicationminipage","theupmproject","theupmsubproject","theupmdocname","theupmdocref","theupmsmalldoclogo","theupmdoclogo","defupmsmalllogo","defupmlogo","theupmfulldocname","setdocabstract","setdockeywords","theupmdocabstract","theupmdockeywords","theauthorlist","ifdocumentauthor","addauthor","upmdocumentauthors","thevalidatorlist","addvalidator","upmdocumentvalidators","addauthorvalidator","theinformedlist","addinformed","upmdocumentinformedpeople","theupmcopyrighter","theupmpublisher","theupmprintedin","theupmisbn","theupmissn","theupmdoi","theupmpublishingdate","theupmformattedpublisher","theupmformattedcopyrighter","setdocumentpurpose","setpublisher","setcopyrighter","setprintingaddress","setisbn","setissn","setdoi","captionsenglish","dateenglish","extrasenglish","noextrasenglish","englishhyphenmins","britishhyphenmins","americanhyphenmins","prefacename","bibname","chaptername","enclname","ccname","headtoname","pagename","seename","alsoname","proofname","glossaryname","frenchsetup","frenchbsetup","AddThinSpaceBeforeFootnotes","at","AutoSpaceBeforeFDP","boi","bsc","CaptionSeparator","captionsfrench","circonflexe","dateacadian","datefrench","DecimalMathComma","degre","degres","descindentFB","dotFFN","extrasfrench","FBcolonspace","FBdatebox","FBdatespace","FBeverylineguill","FBfigtabshape","FBfnindent","FBFrenchFootnotesfalse","FBFrenchFootnotestrue","FBFrenchSuperscriptstrue","FBGlobalLayoutFrenchtrue","FBgspchar","FBguillopen","FBguillspace","FBInnerGuillSinglefalse","FBInnerGuillSingletrue","FBListItemsAsParfalse","FBListItemsAsPartrue","FBLowercaseSuperscriptstrue","FBmedkern","FBPartNameFulltrue","FBsetspaces","FBSmallCapsFigTabCaptionstrue","FBStandardEnumerateEnvtrue","FBStandardItemizeEnvtrue","FBStandardItemLabelstrue","FBStandardLayouttrue","FBStandardListSpacingtrue","FBStandardListstrue","FBsupR","FBsupS","FBtextellipsis","FBthickkern","FBthinspace","FBthousandsep","FBWarning","fg","fgi","fgii","fprimo","frenchdate","FrenchEnumerate","FrenchFootnotes","FrenchLabelItem","frenchpartfirst","frenchpartsecond","FrenchPopularEnumerate","frenchtoday","Frlabelitemi","Frlabelitemii","Frlabelitemiii","Frlabelitemiv","frquote","fup","ieme","iemes","ier","iere","ieres","iers","ifFBAutoSpaceFootnotes","ifFBCompactItemize","ifFBCustomiseFigTabCaptions","ifFBfrench","ifFBFrenchFootnotes","ifFBFrenchSuperscripts","ifFBGlobalLayoutFrench","ifFBIndentFirst","ifFBINGuillSpace","ifFBListItemsAsPar","ifFBListOldLayout","ifFBLowercaseSuperscripts","ifFBLuaTeX","ifFBOldFigTabCaptions","ifFBOriginalTypewriter","ifFBPartNameFull","ifFBReduceListSpacing","ifFBShowOptions","ifFBSmallCapsFigTabCaptions","ifFBStandardEnumerateEnv","ifFBStandardItemizeEnv","ifFBStandardItemLabels","ifFBStandardLayout","ifFBStandardLists","ifFBStandardListSpacing","ifFBSuppressWarning","ifFBThinColonSpace","ifFBThinSpaceInFrenchNumbers","ifFBunicode","ifFBXeTeX","ifLaTeXe","kernFFN","labelindentFB","labelwidthFB","leftmarginFB","listfigurename","listindentFB","No","no","NoAutoSpaceBeforeFDP","NoAutoSpacing","NoEveryParQuote","noextrasfrench","nombre","nos","Nos","og","ogi","ogii","parindentFFN","partfirst","partnameord","partsecond","primo","quarto","rmfamilyFB","secundo","sffamilyFB","StandardFootnotes","StandardMathComma","tertio","tild","ttfamilyFB","up","xspace"]}
-,
-"upmethodology-extension.sty":{"envs":{},"deps":["upmethodology-p-common.sty"],"cmds":["Ifdefined","Ifelsedefined","Ifundefined","Ifelseundefined","Get","GetLang","Set","Append","Unset","DeclareCopyright","Put","UseExtension"]}
-,
-"upmethodology-fmt.sty":{"envs":["graphicspathcontext","mfigures","mfigures*","mtabular","mtable","umlinpar","inlineenumeration","enumdescription","framedminipage","framedcolorminipage","upmcaution","upminfo","upmquestion","definition","emphbox","titleemphbox","titleemphbox2","titleemphbox3"],"deps":["upmethodology-p-common.sty","graphicx.sty","subcaption.sty","tabularx.sty","multicol.sty","colortbl.sty","picinpar.sty","amsmath.sty","amsthm.sty","thmtools.sty","pifont.sty","setspace.sty","varioref.sty","txfonts.sty","relsize.sty","xkeyval.sty","hyphenat.sty","bbm.sty","environ.sty"],"cmds":["textsup","textsub","Emph","trademark","regmark","smalltrade","smallreg","smallcopy","ust","und","urd","uth","R","N","Z","C","Q","powerset","sgn","mfigure","figref","figpageref","msubfigure","DeclareGraphicsExtensionsWtex","includegraphicswtex","includefigurewtex","figmath","figtext","mfigurewtex","tabularheaderstyle","tabulartitlespec","tabulartitle","tabulartitleinside","tabularheader","tabularrowheader","captionastitle","tablenote","tabref","tabpageref","parttoc","chaptertoc","sectiontoc","subsectiontoc","subsubsectiontoc","chapterfull","sectionfull","bibsize","savecounter","restorecounter","saveenumcounter","restoreenumcounter","setenumcounter","getenumcounter","savefootnote","reffootnote","makedate","extractyear","extractmonth","extractday","makenamespacing","upmmakename","upmmakenamestar","makename","makelastname","makefirstname","prname","drname","phdname","scdname","mdname","pengname","iengname","inlineenumerationlabel","enumdescriptionlabel","enumdescriptioncounterseparator","enumdescriptionlabelseparator","url","href","textdown","definitionname","listdefinitionname","declareupmtheorem","upmtheoremopt","overridedescriptionenvironment","restoredescriptionenvironment"]}
-,
-"upmethodology-frontpage.sty":{"envs":{},"deps":["upmethodology-p-common.sty","upmethodology-extension.sty","upmethodology-document.sty"],"cmds":["setfrontcover","makefrontcover","setfrontillustration","clearfrontillustration"]}
-,
-"upmethodology-p-common.sty":{"envs":{},"deps":["ifthen.sty","xspace.sty","xcolor.sty","ifpdf.sty"],"cmds":["UPMVERSION","UPMVERSIONTEST","arakhneorg","upmcurrentlang","ifupmlang","Ifnotempty","Ifempty","Ifelseempty","newpageintoc","ifupmbookformat","upmbookformattrue","upmbookformatfalse","ifupmreportformat","upmreportformattrue","upmreportformatfalse","ifupmarticleformat","upmarticleformattrue","upmarticleformatfalse","setpdfcolor"]}
-,
-"upmethodology-spec.sty":{"envs":["detailspec","detailspec*"],"deps":["upmethodology-p-common.sty","ulem.sty","upmethodology-fmt.sty","upmethodology-code.sty"],"cmds":["speccons","specget","specset","specfunc","specreturn","specglobalreturn","specparam","specendhline","specstarthline"]}
-,
-"upmethodology-task.sty":{"envs":["taskdescription","taskdescription*"],"deps":["upmethodology-p-common.sty","upmethodology-version.sty"],"cmds":["taskname","tasksuper","taskcomment","taskprogress","taskstart","taskend","taskmanager","taskmember","taskmilestone","thetasksuper","thetaskname","thetaskcomment","thetaskprogress","thetaskstart","thetaskend","thetaskmanagers","thetaskmembers","thetaskmilestones","thetaskmilestonecomment","thetaskdescription"]}
-,
-"upmethodology-version.sty":{"envs":{},"deps":["upmethodology-p-common.sty","upmethodology-fmt.sty"],"cmds":["upmrestricted","upmvalidable","upmvalidated","upmpublic","upmdate","upmdescription","upmstatus","theupmdate","theupmlastmodif","theupmstatus","updateversion","initialversion","incversion","incsubversion","theupmversion","upmhistory","upmcopyrightdate"]}
-,
-"uptex.sty":{"envs":{},"deps":["ptex.sty"],"cmds":["disablecjktoken","enablecjktoken","forcecjktoken","kchar","kchardef","uptexrevision","uptexversion","currentcjktoken"]}
-,
-"upzhkinsoku.sty":{"envs":{},"deps":["uplatex.sty"],"cmds":["setupzhkinsokuwith","DisableOTLatinVariableSlotsKinsoku","EnableOTLatinVariableSlotsKinsoku","ENDINPUTUPZHKINSOKUDOTSTY","UPZHKINSOKUDOTSTYRESTORECATCODE"]}
-,
-"uri.sty":{"envs":{},"deps":["kvoptions.sty","url.sty"],"cmds":["urisetup","uref","arxiv","asin","doi","hdl","nbn","oclc","oid","pubmed","tinyuri","tinypuri","wc","citeurl","mailto","ukoeln"]}
-,
-"url.sty":{"envs":{},"deps":{},"cmds":["url","path","urldef","DeclareUrlCommand","urlstyle","UrlBreaks","UrlBigBreaks","UrlNoBreaks","UrlOrds","UrlSpecials","UrlTildeSpecial","UrlFont","UrlLeft","UrlRight","Urlmuskip","UrlBreakPenalty","UrlBigBreakPenalty"]}
-,
-"urwchancal.sty":{"envs":{},"deps":["xkeyval.sty"],"cmds":["mathscr"]}
-,
-"usebib.sty":{"envs":{},"deps":["url.sty","keyval.sty"],"cmds":["bibinput","newbibfield","newbibignore","usebibentry","usebibentryurl"]}
-,
-"ushort.sty":{"envs":{},"deps":{},"cmds":["ushort","ushortw","ushortd","ushortdw","ushortdline","ushortCreate","ushortEnsuremath"]}
-,
-"ut-thesis.cls":{"envs":["dedication","acknowledgements"],"deps":["s-book.cls","geometry.sty","setspace.sty"],"cmds":["degree","gradyear","department","copyrighttext","headerstyle","ocleardoublepage"]}
-,
-"utarticle.cls":{"envs":{},"deps":["uplatex.sty","plext.sty"],"cmds":["Cjascale","heisei","if","postpartname","prepartname","mc","gt"]}
-,
-"utbook.cls":{"envs":{},"deps":["uplatex.sty","plext.sty"],"cmds":["backmatter","bibname","chapter","chaptermark","Cjascale","frontmatter","heisei","if","mainmatter","postchaptername","postpartname","prechaptername","prepartname","mc","gt"]}
-,
-"utexasthesis.cls":{"envs":["acknowledgments","address","dedication","middlecenter","vita"],"deps":["s-report.cls","geometry.sty","fontenc.sty","setspace.sty","indentfirst.sty","natbib.sty","tocbibind.sty","tocloft.sty","url.sty","hyperref.sty","doi.sty"],"cmds":["cosupervisor","declaretypist","graduationdate","headingsize","makeappendix","makebibliography","maketableofcontents","othercommitteemembers","supervisor","DH","dh","dj","DJ","guillemetleft","guillemetright","guillemotleft","guillemotright","guilsinglleft","guilsinglright","Hwithstroke","hwithstroke","k","NG","ng","quotedblbase","quotesinglbase","textogonekcentered","textquotedbl","th","TH"]}
-,
-"utf8add.sty":{"envs":{},"deps":["inputenc.sty","upgreek.sty","amsmath.sty","xkeyval.sty","gensymb.sty","nicefrac.sty"],"cmds":["omicron","Alpha","Beta","Chi","Epsilon","Eta","Iota","Kappa","Mu","Nu","Omicron","Rho","Tau","Zeta","Upomicron","Upalpha","Upbeta","Upchi","Upepsilon","Upeta","Upiota","Upkappa","Upmu","Upnu","Uprho","Uptau","Upzeta","textfoursuperior","textfivesuperior","textsixsuperior","textsevensuperior","texteightsuperior","textninesuperior","textzerosuperior","textoneinferior","texttwoinferior","textthreeinferior","textfourinferior","textfiveinferior","textsixinferior","textseveninferior","texteightinferior","textnineinferior","textzeroinferior","textonethird","texttwothirds","textzerothirds","textonefifth","texttwofifths","textthreefifths","textfourfifths","textonesixth","textfivesixths","textoneseventh","textoneeighth","textthreeeighths","textfiveeighths","textseveneighths","textonenininth","textonetenth","texttwothird","textthreequarter","texttwofifth","textthreefifth","textfourfifth","textfivesixth","textthreeeighth","textfiveeighth","textseveneighth","molar"]}
-,
-"utf8hax.sty":{"envs":{},"deps":["xkeyval.sty","inputenc.sty"],"cmds":["omicron","Alpha","Beta","Chi","Epsilon","Eta","Iota","Kappa","Mu","Nu","Omicron","Rho","Tau","Zeta","newautomath"]}
-,
-"utfsym.sty":{"envs":{},"deps":["l3keys2e.sty","xcolor.sty","tikz.sty","graphicx.sty"],"cmds":["usym","usymH","usymW"]}
-,
-"utreport.cls":{"envs":{},"deps":["uplatex.sty","plext.sty"],"cmds":["bibname","chapter","chaptermark","Cjascale","heisei","if","postchaptername","postpartname","prechaptername","prepartname","mc","gt"]}
-,
-"uuthesis-chapterbib.sty":{"envs":{},"deps":["chapterbib.sty","fp.sty"],"cmds":["setupuuchapterbib","theuuchapterbibfigure","theuuchapterbibsection","theuuchapterbibsubsection","theuuchapterbibsubsubsection","theuuchapterbibtable","uudummyfigure","uudummysection","uudummysubsection","uudummysubsubsection","uudummytable"]}
-,
-"uuthesis-color-headings.sty":{"envs":{},"deps":["color.sty","rgb.sty"],"cmds":["mainheadingtext","thmname","thmnote","thmnumber"]}
-,
-"uuthesis-index.sty":{"envs":{},"deps":["makeidx.sty"],"cmds":["indexname","newindexgroup"]}
-,
-"uuthesis2e.cls":{"envs":["epigraph","doublespace","Proof","singlespace","topics","theorem","proposition","corollary"],"deps":{},"cmds":["abstracttitlepage","approvaldepartment","boxx","chairtitle","chapter","committeeapproval","committeechair","copyrightpage","copyrightyear","CSREPORTTITLE","dedication","dedicationfalse","dedicationpage","dedicationtrue","degree","department","departmentchair","descriptionmargin","doublespacedheadings","EMX","fifthfalse","fifthtrue","firstreader","fivelevels","fixmainheadingSKIP","fourlevels","fourthfalse","fourthreader","fourthtrue","frontmatter","graduatedean","HFapproval","HFapprovalsmall","HFchapter","HFchapterHT","HFchapterSKIP","HFmainhead","HFmainheadHT","HFmainheadSKIP","HFparagraph","HFparagraphHT","HFpart","HFpartHT","HFpartSKIP","HFsection","HFsectionHT","HFsubsection","HFsubsectionHT","HFsubsubsection","HFsubsubsectionHT","HFsubsubsubsection","HFsubsubsubsectionHT","honorsadvisor","honorsdepartment","honorsdirector","honorssupervisor","HONORSTITLE","ifdedication","iffifth","iffourth","iflistoffigures","iflistoftables","ifnoisy","ifrawbibliography","listoffiguresfalse","listoffigurestrue","listoftablesfalse","listoftablestrue","mainheading","mainheadingtext","mainheadingwidth","minilength","minusfourthline","minushalfline","minusline","noappendix","nohyphenation","noisyfalse","noisytrue","normalspace","numberofappendices","optionalfront","pf","plusfourthline","plushalfline","plusline","preface","prefacesection","proof","proofline","qed","rawbibliographyfalse","rawbibliographytrue","ReaderPerson","readingapproval","reportitle","reportnumber","reporttitle","reporttitlepage","requiredfrontmatter","secondreader","singlespacedheadings","submitdate","subsubsubsection","testsize","thechapter","theoldchapter","theoldtocdepth","theoremsetup","thesisTOC","thesistype","thesubsubsubsection","thirdreader","threelevels","titlepage","topicslabel","twopagefigure","ulabel","uunumberline","vita","captionlineskip","captionONfalse","captionONtrue","ifcaptionON","legend","bibname","chaptermark","doublespace","fixchapterheading","frontmatterformat","HFsectionSKIP","HFsubsectionSKIP","HFsubsubsectionSKIP","HFsubsubsubsectionSKIP","HideMakeUppercase","maintext","singlespace","tracingoff","tracingon","bfunderline","chairdateapproved","dissertationapproval","firstdateapproved","fourthdateapproved","seconddateapproved","thirddateapproved"]}
-,
-"uwa-colours.sty":{"envs":{},"deps":["xcolor.sty"],"cmds":{}}
-,
-"va.sty":{"envs":{},"deps":{},"cmds":["va","textva","vacal","textvacal","filename","fileversion","filedate","docversion","docdate"]}
-,
-"variablelm.sty":{"envs":{},"deps":["xkeyval.sty","fontenc.sty"],"cmds":["DH","NG","dj","ng","k","guillemotleft","guillemotright","guilsinglleft","guilsinglright","quotedblbase","quotesinglbase","textquotedbl","DJ","th","TH","dh","Hwithstroke","hwithstroke","textogonekcentered","guillemetleft","guillemetright"]}
-,
-"variations.sty":{"envs":["variations"],"deps":{},"cmds":["bvariations","evariations","c","d","ch","cb","dh","db","m","h","filet","l","z","bb","bg","bd","ga","dr","mI","pI"]}
-,
-"varioref.sty":{"envs":{},"deps":{},"cmds":["vref","vpageref","vrefrange","vpagerefrange","vrefpagenum","vpagerefcompare","vpagerefnearby","labelformat","Vref","Ref","thevpagerefnum","reftextbefore","reftextfacebefore","reftextafter","reftextfaceafter","reftextcurrent","reftextfaraway","reftextvario","reftextpagerange","reftextlabelrange","vrefformat","Vrefformat","vrefrangeformat","fullrefformat","vrefdefaultformat","Vrefdefaultformat","vrefrangedefaultformat","fullrefdefaultformat","vrefwarning","vrefshowerrors","fullref","vpagerefcomparenearby"]}
-,
-"varsfromjobname.sty":{"envs":{},"deps":["currfile.sty","ifthen.sty"],"cmds":["getfromjobname","getonefromjobname","gettwofromjobname","getthreefromjobname","getfourfromjobname","getfivefromjobname","getsixfromjobname","getsevenfromjobname","geteightfromjobname","getninefromjobname","getfromcurrfilename","getonefromcurrfilename","gettwofromcurrfilename","getthreefromcurrfilename","getfourfromcurrfilename","getfivefromcurrfilename","getsixfromcurrfilename","getsevenfromcurrfilename","geteightfromcurrfilename","getninefromcurrfilename"]}
-,
-"varvbtm.sty":{"envs":{},"deps":["newvbtm.sty"],"cmds":["newtabverbatim","renewtabverbatim","VVBbegintab","VVBendtab","VVBprintFF","VVBprintFFas","VVBbreakatFF","VVBbreakatFFonly","VVBnonverb","VVBnonverbmath","newverbatiminput","renewverbatiminput"]}
-,
-"varwidth.sty":{"envs":["varwidth"],"deps":{},"cmds":["narrowragged"]}
-,
-"vcell.sty":{"envs":{},"deps":{},"cmds":["savecellbox","vcell","savecellheight","printcelltop","printcellmiddle","printcellbottom","resetcellcount","rowheight","rowht","rowdp"]}
-,
-"vdmlisting.sty":{"envs":["vdmsl","vdmpp","vdmrt"],"deps":["listings.sty","times.sty","color.sty"],"cmds":["vdmnotcovered"]}
-,
-"vector.sty":{"envs":{},"deps":["calc.sty","ifthen.sty"],"cmds":["bvec","buvec","svec","suvec","uvec","uuvec","firstelement","irvec","icvec","rvec","cvec","undertilde"]}
-,
-"venndiagram.sty":{"envs":["venndiagram3sets","venndiagram2sets"],"deps":["xkeyval.sty","tikz.sty","etoolbox.sty"],"cmds":["fillA","fillB","fillC","fillAll","fillNotABC","fillOnlyA","fillOnlyB","fillOnlyC","fillNotA","fillNotB","fillNotC","fillNotAorB","fillNotAorNotB","fillANotB","fillBNotA","fillANotC","fillCNotA","fillBNotC","fillCNotB","fillACapB","fillBCapA","fillACapC","fillCCapA","fillBCapC","fillCCapB","fillACapBNotC","fillBCapANotC","fillACapCNotB","fillCCapANotB","fillBCapCNotA","fillCCapBNotA","fillACapBCapC","fillACapCCapB","fillBCapACapC","fillBCapCCapA","fillCCapACapB","fillCCapBCapA","setpostvennhook","ifvennoldpgf","vennoldpgftrue","vennoldpgffalse","ifvennshowframe","vennshowframetrue","vennshowframefalse"]}
-,
-"venturis.sty":{"envs":{},"deps":["xkeyval.sty","textcomp.sty","fontenc.sty","nfssext-cfr.sty"],"cmds":["sishape","textsi","swashstyle","textswash","lstyle","textl","ostyle","texto","tstyle","textt","pstyle","textp","tlstyle","texttl","tostyle","textto","plstyle","textpl","postyle","textpo","instyle","textin","sustyle","textsu","regwidth","textrw","cdwidth","textcd","etwidth","textet","ucwidth","textuc","lgweight","textlg","mbweight","textmb","dbweight","textdb","ebweight","texteb","olshape","textol","tistyle","textti","altstyle","textalt","vtstyle","textvt","textvtl","DH","NG","dj","ng","k","guillemotleft","guillemotright","guilsinglleft","guilsinglright","quotedblbase","quotesinglbase","textquotedbl","DJ","th","TH","dh","Hwithstroke","hwithstroke","textogonekcentered","guillemetleft","guillemetright"]}
-,
-"venturis2.sty":{"envs":{},"deps":{},"cmds":{}}
-,
-"venturisold.sty":{"envs":{},"deps":{},"cmds":{}}
-,
-"verbasef.sty":{"envs":{},"deps":["vrbexin.sty","verbatim.sty","here.sty"],"cmds":["VautoSubF","VautoSfFont","VautoPl","VautoLines","VautoSubFF","ifsubstr","subz","xxparse"]}
-,
-"verbatim.sty":{"envs":["comment"],"deps":{},"cmds":["verbatiminput"]}
-,
-"verbatimbox.sty":{"envs":["verbbox","myverbbox","verbnobox"],"deps":["readarray.sty"],"cmds":["verbfilebox","theverbbox","boxtopsep","boxbottomsep","addvbuffer","verbfilenobox"]}
-,
-"verbatimcopy.sty":{"envs":{},"deps":["verbatim.sty"],"cmds":["setOutputDir","VerbatimCopy","OldsetOutputDir","OldVerbatimCopy","VCverbaction"]}
-,
-"verbdef.sty":{"envs":{},"deps":{},"cmds":["verbdef"]}
-,
-"verbments.sty":{"envs":["pyglist"],"deps":["xkeyval.sty","fancyvrb.sty","framed.sty","xcolor.sty","calc.sty"],"cmds":["plset","listofpyglistings","listofpyglistingsname"]}
-,
-"verdana.sty":{"envs":{},"deps":{},"cmds":["fileversion","filedate"]}
-,
-"verifica.cls":{"envs":["esercizi","test","test-orizz","test-orizz-newline","test-vf","test-verofalso","enumerate*","itemize*","description*"],"deps":["enumitem.sty","graphicx.sty","mathtools.sty","amssymb.sty","geometry.sty","nccmath.sty","multido.sty","setspace.sty","multicol.sty","gensymb.sty","newunicodechar.sty","textcomp.sty","tabto.sty","tabularx.sty","lineno.sty","eurosym.sty","bm.sty","s-extarticle.cls","cmbright.sty"],"cmds":["abs","arc","biglabelbox","CalcNumber","classe","data","ddfrac","Del","del","denfrac","disciplina","dotrule","dotword","dss","eps","fattorevf","intestazione","intestazionedefault","intestazionerighe","intestazionesemplice","istituto","labelbox","labeltest","lineanome","N","numfrac","punti","puntiadestra","puntiman","puntipt","Q","R","Repeat","restorephi","restoretheta","riga","tempo","themylines","thenumrighe","tipologia","totpunti","tsa","tso","unitx","vartotpunti","verofalso","vf","vfitem","Z"]}
-,
-"verifiche.sty":{"envs":["esercizio","esercizio*","soluzione","closedquestion","closedquestion*","crocette","crocette*","multitest","enumerate*","itemize*","description*"],"deps":["xparse.sty","xkeyval .sty","amsmath.sty","amssymb.sty","pgffor.sty","enumitem.sty","siunitx.sty","graphicx.sty","xcolor.sty","tikz.sty","tikzlibrarycalc.sty","tikzlibraryshapes.geometric.sty","tikzlibrarypatterns.sty","tikzlibrarypositioning.sty","tikzlibraryangles.sty","tikzlibraryquotes.sty","booktabs.sty","ulem.sty"],"cmds":["institute","asyear","testtype","instruction","duration","durationfont","subtitle","subtitlefont","printheading","partialpt","inlinesol","completetext","truefalse","checkmarker","checked","openquestion","finderror","textandimage","makecolumn","columnseparation","headerfont","institutefont","asyearfont","testtypefont","instructionfont","solutionfont","instructiondelimiter","headercandidatenamelabel","headerclasslabel","headerdatelabel","candidatenamerulerlength","classrulerlength","daterulerlength","exerciselabel","ptprefix","ptrulerlength","partialptprefix","ptlabel","partialptlabel","diffsymb","ptdelimiters","partialptdelimiters","closedquestionitem","solutionlabel","themultitestcounter","convertreftonum","diffstar","espoint","evenfoot","exercisemargin","exercisetitle","italiandictiornary","openquestionheight","openquestionlinecolor","openquestionwidth","pointes","savepointsaux","solutionscolor","spacedim","sumpartialpt","tempeserciziolabel","theexercisenumber","thepartialpoints","ifsol","soltrue","solfalse","ifinstitute","institutetrue","institutefalse","ifinstruction","instructiontrue","instructionfalse","ifduration","durationtrue","durationfalse","ifasyear","asyeartrue","asyearfalse","ifsolutionscolor","solutionscolortrue","solutionscolorfalse","ifcandidatename","candidatenametrue","candidatenamefalse","iftesttype","testtypetrue","testtypefalse","ifsubtitle","subtitletrue","subtitlefalse","ifshowinstructiondelimiter","showinstructiondelimitertrue","showinstructiondelimiterfalse","ifprintedheading","printedheadingtrue","printedheadingfalse","ifexercisesnumbered","exercisesnumberedtrue","exercisesnumberedfalse","ifshowmarginexercise","showmarginexercisetrue","showmarginexercisefalse","ifshowexercisept","showexercisepttrue","showexerciseptfalse","ifopenquestionlines","openquestionlinestrue","openquestionlinesfalse","ifopenquestionsquared","openquestionsquaredtrue","openquestionsquaredfalse"]}
-,
-"verse.sty":{"envs":["verse","altverse","patverse","patverse*"],"deps":{},"cmds":["indentpattern","versewidth","vin","vgap","vindent","leftmargini","stanzaskip","verselinebreak","flagverse","vleftskip","vrightskip","poemlines","setverselinenums","thepoemline","verselinenumfont","verselinenumbersleft","verselinenumbersright","poemtitle","poemtoc","poemtitlefont","beforepoemtitleskip","afterpoemtitleskip","poemtitlemark","newarray","setarrayelement","getarrayelement","checkarrayindex","stringtoarray","arraytostring","checkifinteger","altindentfalse","altindenttrue","bounderrorfalse","bounderrortrue","gobm","ifaltindent","ifbounderror","ifinteger","ifpattern","ifstarpattern","integerfalse","integertrue","patternfalse","patterntrue","starpatternfalse","starpatterntrue","thechrsinstr","thefvsline","theHpoemline","thevslineno","vlnumfont"]}
-,
-"version.sty":{"envs":["comment"],"deps":{},"cmds":["includeversion","excludeversion"]}
-,
-"versions.sty":{"envs":["comment"],"deps":{},"cmds":["markversion","includeversion","excludeversion","processifversion","includeversionnogroup","versionmessage","beginmarkversion","endmarkversion"]}
-,
-"versonotes.sty":{"envs":{},"deps":{},"cmds":["versonote","versoleftmargin","versotextwidth","versolayout"]}
-,
-"vertbars.sty":{"envs":["vertbar"],"deps":["lineno.sty"],"cmds":["LNenv","addtodef","pwvbbl","barwidth","barspace","addtomakeLNL","pwvbLNL"]}
-,
-"vgrid.sty":{"envs":{},"deps":["everypage.sty","tikz.sty"],"cmds":{}}
-,
-"vhistory.sty":{"envs":["versionhistory"],"deps":["ltxtable.sty","sets.sty"],"cmds":["vhEntry","vhCurrentVersion","vhCurrentDate","vhAllAuthorsSet","vhListAllAuthors","vhListAllAuthorsLong","vhListAllAuthorsLongWithAbbrev","vhAbbrevSeparator","vhAbbrevLeft","vhAbbrevRight","vhAuthorColWidth","vhChangeColWidth","vhhistoryname","vhversionname","vhdatename","vhauthorname","vhchangename"]}
-,
-"vietnam.sty":{"envs":{},"deps":["ifthen.sty","fontenc.sty","inputenc.sty","ucs.sty","ifpdf.sty","cmap.sty","varioref-vi.sty"],"cmds":["alsoname","bibname","captionsenglish","captionsvietnam","ccname","chaptername","dateUSenglish","dateenglish","datevietnam","enclname","glossaryname","headpagename","headtoname","pagename","prefacename","proofname","undefined","Abreve","abreve","ABREVE","Acircumflex","acircumflex","ACIRCUMFLEX","DJ","dj","Ecircumflex","ecircumflex","ECIRCUMFLEX","guillemotleft","guillemotright","guilsinglleft","guilsinglright","h","Ocircumflex","ocircumflex","OCIRCUMFLEX","OHORN","ohorn","Ohorn","quotedblbase","quotesinglbase","textquotedbl","UHORN","uhorn","Uhorn"]}
-,
-"viking.sty":{"envs":{},"deps":{},"cmds":["vikfamily","textvik"]}
-,
-"virginialake.sty":{"envs":{},"deps":{},"cmds":["vlor","vlan","vlim","vlne","vldi","vlmi","vls","vlsbr","vlscn","vlhole","vlsmallbrackets","vlnosmallbrackets","vlupdate","vlstore","vlread","vldot","vlsqbrl","vlsqbrr","vlrobrl","vlrobrr","vlnos","vlnostructuresyntax","vlsmallleftlabels","vlnosmallleftlabels","vlderivation","vlproof","vlder","vltreeder","vlinf","vliinf","vliiinf","vlpr","vlde","vltr","vlin","vliin","vliiin","vlhy","aftriangletrue","aftrianglefalse","afaid","afaidcol","afaidex","afaidexcol","afaidnw","afaidnwcol","afaiu","afaiucol","afaiuex","afaiuexcol","afaiunw","afaiunwcol","afnegspace","afraise","aflower","afacd","afacdcol","afacdex","afacdexsq","afacdexcol","afacdexsqcol","afacdnw","afacdnwcol","afacdnwex","afacdnwexcol","afacdnwexsqcol","afacu","afacucol","afacuex","afacuexsq","afacuexcol","afacuexsqcol","afacunw","afacunwcol","afacunwex","afacunwexcol","afacunwexsqcol","afawd","afawdcol","afawdnw","afawu","afawucol","afawunw","aff","affcol","aft","aftcol","afvdj","afvj","afvjcol","afvjd","afvjdcol","afvju","afvjucol","aftvj","aftvjcol","aftvjd","aftvjdcol","aftvju","aftvjucol","afex","afexcol","afcjl","afcjlcol","afcjld","afcjldcol","afcjlu","afcjlucol","aftcjl","aftcjlcol","aftcjld","aftcjldcol","aftcjlu","aftcjlucol","afcjr","afcjrcol","afcjrd","afcjrdcol","afcjru","afcjrucol","aftcjr","aftcjrcol","aftcjrd","aftcjrdcol","aftcjru","aftcjrucol","affr","atomicflow","atomicflowinv","vldownsmash","vlupsmash","vlsmash"]}
-,
-"vmargin.sty":{"envs":{},"deps":{},"cmds":["setpapersize","PaperWidth","PaperHeight","ifLandscape","Landscapetrue","Landscapefalse","setmargins","setmarginsrb","setmargnohf","setmargnohfrb","setmarg","setmargrb","shiftmargins","Vmargin","filedate","filename","fileversion"]}
-,
-"vntex.sty":{"envs":{},"deps":["ifthen.sty","fontenc.sty","inputenc.sty","ucs.sty","ifpdf.sty","cmap.sty","varioref-vi.sty"],"cmds":["alsoname","bibname","captionsenglish","captionsvietnam","ccname","chaptername","dateUSenglish","dateenglish","datevietnam","enclname","glossaryname","headpagename","headtoname","pagename","prefacename","proofname","undefined","Abreve","abreve","ABREVE","Acircumflex","acircumflex","ACIRCUMFLEX","DJ","dj","Ecircumflex","ecircumflex","ECIRCUMFLEX","guillemotleft","guillemotright","guilsinglleft","guilsinglright","h","Ocircumflex","ocircumflex","OCIRCUMFLEX","OHORN","ohorn","Ohorn","quotedblbase","quotesinglbase","textquotedbl","UHORN","uhorn","Uhorn"]}
-,
-"volumes.sty":{"envs":{},"deps":["nowtoaux.sty"],"cmds":["allvolumescommand","alwaysinclude","ifnumber","onlyvolume","thenumberofvolumes","thevolume","voladdtolof","voladdtolot","voladdtotoc","volume","volumecommand","volumelist","volumename","volumeone","volumethree","volumetwo"]}
-,
-"vowel.sty":{"envs":["vowel"],"deps":{},"cmds":["putcvowel","putvowel","super","vowelhunit","vowelvunit","vowelsep","vowelline","vowelsymbol","diagrate","ifrectdgm","rectdgmtrue","rectdgmfalse","iftriangledgm","triangledgmtrue","triangledgmfalse","ifthreelevel","threeleveltrue","threelevelfalse","ifnoerase","noerasetrue","noerasefalse","diagline"]}
-,
-"vpe.sty":{"envs":{},"deps":["keyval.sty","color.sty","pifont.sty"],"cmds":["vpesetup","VPE","vpeentry","vpesystem"]}
-,
-"vplref.sty":{"envs":{},"deps":["lineno.sty","varioref.sty"],"cmds":["vpagelineref","LineWithPage"]}
-,
-"vrbexin.sty":{"envs":{},"deps":["verbatim.sty"],"cmds":["docdate","filedate","fileversion"]}
-,
-"vrsion.sty":{"envs":{},"deps":["xspace.sty"],"cmds":["version","keepversion","stepversion"]}
-,
-"vruler.sty":{"envs":{},"deps":{},"cmds":["setvruler","unsetvruler","setdefault","rulercount","VrulerDefined","EntryVruler","fillzeros","makevruler","SET","toksone","tokstwo","toksthree","toksfour","toksfive","push","pop","popnil","STKcount"]}
-,
-"vtable.sty":{"envs":{},"deps":["array.sty","varwidth.sty","dashrule.sty","graphicx.sty","xparse.sty","etoolbox.sty","calc.sty","forloop.sty","alphalph.sty"],"cmds":["nextRow","lb","setMultiColRow","setMultiColumn","setMultiRow","tableFormatedCell","forceRowHeight"]}
-,
-"vwcol.sty":{"envs":["vwcol"],"deps":["calc.sty","color.sty","environ.sty","keyval.sty","ragged2e.sty"],"cmds":["vwcolsetup"]}
-,
-"wallpaper.sty":{"envs":{},"deps":["calc.sty","eso-pic.sty","graphicx.sty","ifthen.sty"],"cmds":["CenterWallPaper","ThisCenterWallPaper","TileWallPaper","ThisTileWallPaper","TileSquareWallPaper","ThisTileSquareWallPaper","ULCornerWallPaper","ThisULCornerWallPaper","LLCornerWallPaper","ThisLLCornerWallPaper","URCornerWallPaper","ThisURCornerWallPaper","LRCornerWallPaper","ThisLRCornerWallPaper","ClearWallPaper","wpXoffset","wpYoffset","tileXoffset","tileYoffset","tilewidth","tileheight","tileX","tileY"]}
-,
-"wargame.sty":{"envs":["getbbl","getbb"],"deps":["xcolor.sty","tikz.sty","tikzlibrarycalc.sty","tikzlibraryshapes.symbols.sty","tikzlibrarypositioning.sty","tikzlibraryintersections.sty","tikzlibraryshapes.geometric.sty","tikzlibraryshapes.arrows.sty","tikzlibrarydecorations.sty","tikzlibrarydecorations.pathmorphing.sty","tikzlibrarydecorations.pathreplacing.sty","tikzlibrarydecorations.markings.sty","tikzlibrarymath.sty","alphalph.sty","amsmath.sty","amstext.sty"],"cmds":["hex","road","railroad","river","border","boardframe","boardclip","hexdbglvl","markpos","init","northedge","southedge","northeastedge","northwestedge","southwestedge","southeastedge","hexpath","chitnorth","chitsouth","chiteast","chitwest","chitnortheast","chitnorthwest","chitsouthwest","chitsoutheast","fortmark","terrainmark","clearhex","woodshex","mountainhex","cityhex","beachhex","seahex","riverhex","roadhex","outlinerev","shiftScalePath","margin","oddeven","oury","boardXmin","boardYmin","boardXmax","boardYmax","hexboardpath","boardpath","debuggrid","wargamedbglvl","settosave","natoapp","natoappdbglvl","octagon","topline","bottomline","thenatoappid","natoappmark","echelonmark","armouredmark","infantrymark","artillerymark","combinedmark","pgmark","reconnaissancemark","corpsmark","divisionmark","brigademark","regimentmark","sofmark","mountaineermark","airbornemark","amphibiousmark","airassaultmark","testpath","cntrl","cntrlnortheast","frameopt","frameshape","innernortheast","linex","liney","chit","chitdbglvl","chitframeopt","shadechit","eliminatechit","stackchits","oob","chits","doublechits","chitmark","stackmark","zocmark"]}
-,
-"warning.sty":{"envs":{},"deps":{},"cmds":["addglobalwarning"]}
-,
-"warpcol.sty":{"envs":{},"deps":["array.sty"],"cmds":["pcolbegin","pcolend"]}
-,
-"wasysym.sty":{"envs":{},"deps":{},"cmds":["male","female","currency","phone","recorder","clock","lightning","pointer","RIGHTarrow","LEFTarrow","UParrow","DOWNarrow","AC","HF","VHF","Square","CheckedBox","XBox","hexagon","pentagon","octagon","varhexagon","hexstar","varhexstar","davidsstar","diameter","invdiameter","varangle","wasylozenge","kreuz","smiley","frownie","blacksmiley","sun","checked","bell","eighthnote","quarternote","halfnote","fullnote","twonotes","brokenvert","ataribox","wasytherefore","Circle","CIRCLE","Leftcircle","LEFTCIRCLE","Rightcircle","RIGHTCIRCLE","LEFTcircle","RIGHTcircle","vernal","ascnode","descnode","fullmoon","newmoon","leftmoon","rightmoon","astrosun","mercury","venus","earth","mars","jupiter","saturn","uranus","neptune","pluto","aries","taurus","gemini","cancer","leo","virgo","libra","scorpio","sagittarius","capricornus","aquarius","pisces","conjunction","opposition","APLstar","APLlog","APLbox","APLup","APLdown","APLinput","APLcomment","APLinv","APLuparrowbox","APLdownarrowbox","APLleftarrowbox","APLrightarrowbox","notbackslash","notslash","APLminus","APLnot","APLcirc","APLvert","Bowtie","leftturn","rightturn","photon","gluon","cent","permil","agemO","thorn","Thorn","openo","inve","mho","Join","Box","Diamond","leadsto","sqsubset","sqsupset","lhd","unlhd","LHD","rhd","unrhd","RHD","apprle","apprge","wasypropto","invneg","ocircle","logof","dh","roundz","DH","wasyeuro","euro","longs","wasyparagraph","Paragraph","iint","iiint","oiint","varint","varoint","applecmd","wasycmd"]}
-,
-"watermark.sty":{"envs":{},"deps":{},"cmds":["watermark","leftwatermark","rightwatermark","thiswatermark","thispageheading"]}
-,
-"web.sty":{"envs":["forscreen","forpaper","Fullwidthtext"],"deps":["xkeyval.sty","ifpdf.sty","ifxetex.sty","xcolor.sty","calc.sty","amssymb.sty","hyperref.sty","aeb-comment.sty","eso-pic.sty","graphicx.sty","pifont.sty","colortbl.sty","pdfcolmk.sty"],"cmds":["ui","screensize","margins","setScreensizeFromGraphic","addtoWebHeight","addtoWebWidth","panelwidth","lheader","cheader","rheader","lfooter","cfooter","rfooter","headerformat","footerformat","webheadwrapper","webfootwrapper","clearHeaders","restoreHeaders","clearFooters","restoreFooters","headersOnSectionPage","noHeadersOnSectionPage","subject","university","email","version","copyrightyears","universityColor","titleColor","authorColor","keywords","topTitlePage","titlepageTrailer","optionalPageMatter","nocopyright","minimumskip","copyrightLabel","revisionLabel","versionLabel","webtitle","webauthor","websubject","webkeywords","webuniversity","webemail","webversion","webcopyrightyears","directoryName","tocName","dirContentLink","formatWordDirectory","formatDirectoryItems","removeDirTOC","removeDirArticle","addtoDirList","dirTOCItem","dirArticleItem","priorDirMatter","afterDirMatter","priorDirList","afterDirList","directoryhook","tocindent","widestNumber","tocColor","coverpagemargin","makeinlinetitle","NaviBarOn","NaviBarOff","navibarTextColor","navibarBgColor","navibariconHeight","navibariconWidth","newNaviIcon","insertnaviiconhere","insertnaviiconhereafter","ArrowUp","ArrowDown","defaultpageheader","directionIconTextColor","directionIconBgColor","panelNaviGroup","ifeqforpaper","eqforpapertrue","eqforpaperfalse","useFullWidthForPaper","prtscr","NewPage","template","textBgColor","AddToTemplate","paneltemplate","panelBgColor","AddToPanelTemplate","buildpanel","minPanelWidth","disableTemplate","enableTemplate","disablePanelTemplate","enablePanelTemplate","ClearTextTemplate","ClearPanelTemplate","ClearBuildPanel","ClearAllTemplates","ClearTextTemplateBuffer","ClearPanelTemplateBuffer","aboveTopTitleSkip","noFinalDot","tocPartTitle","formatPartTitle","restorePartTitleFormat","noPartNumbers","formatChapterNumber","formatChapterTitle","DeclareDocInfo","DeclarePageLayout","universityLayout","titleLayout","authorLayout","topTitlePageProportion","DesignTitlePageTrailer","selectTocDings","selectColors","noSectionNumbers","tocLayout","sectionLayout","subsectionLayout","subsubsectionLayout","shadowhoffset","shadowvoffset","customSecHead","customSubsecHead","customSubsubsecHead","preparedLabel","prepared","talkdate","webtalkdate","talkdateLabel","talksite","customUniversity","customTitle","customAuthor","customToc","halignuniversity","haligntitle","halignauthor","halignsection","halignsubsection","halignsubsubsection","haligntoc","subsubDefaultDing","sectionTitle","sectionAuthor","sectionUniversity","sectionToc","ifShadow","Shadowtrue","Shadowfalse","useSectionNumbers","dDingToc","ddDingToc","dddDingToc","dDingTocColor","ddDingTocColor","dddDingTocColor","BGColorAndGraphic","BGColorAndGraphicFullWidth","FALSEACTIONii","FALSEACTIONiia","InitLayout","SETTEMPBOXi","SETTEMPBOXii","SHOWTEMPBOXi","TRUEACTIONi","TRUEACTIONia","aboveOPMvspace","addToWebHWError","addtofullwidthtemplateArgs","addtopaneltemplateArgs","addtotemplateArgs","aebwritelastpage","allowTransparency","bWebCustomize","calculatefullwidth","centertextonpage","chkpanelgroup","clearfullwidthtemplateArgs","clearpaneltemplateArgs","cleartemplateArgs","currLeftMarg","currPanelWidth","currTopMarg","cyrCommand","disablePanels","disableScreens","eWebCustomize","forceSubSubNumbers","fullscreenwidth","fullscreenwidthadj","fullwidthtemplate","get","getDimsFromGraphic","getargsii","getargs","hproportionwebauthor","hproportionwebtitle","hproportionwebuniversity","incby","inputWebCfg","insNaviBar","insertwebtoc","isChapter","listAddToPanelTemplates","listAddToTemplates","loadwebpro","makeFullwidthhead","maketitlepostamble","maketitlepreamble","marginsize","maxtextscreentext","newBottomMarg","newLeftMarg","newPanelWidth","newRightMarg","newTopMarg","nocopyrightNotice","nocopyrightsymbol","norevisionLabel","optionalpagematter","origpaperheight","origpaperwidth","panelIconGroup","panelNavigroupWidth","panelSep","panelgroupHeight","panelgroupSep","panelgroupWidth","panelrowsep","panelscreenwidth","panelsep","pdfLang","placePanelTemplateInLayer","placeScreenNavibar","placeTemplateInLayer","popFromFullWidthPage","prtscrA","prtscrV","pushToFullWidthPage","removehereaftericon","resetmargins","restoreElements","restorePanels","restoreSavedHead","restoreScreens","restorenormalsettings","saveClearElements","saveElements","setPageDevice","shortwebsubject","shortwebtitle","stdPanelBG","stdbldpanel","templatedefaults","textscreenwidth","thewebemail","tightsettings","titleauthorproportion","tocIndentByNumber","tocindentByNumber","trailerFontSize","useStandardPanel","vspaceAfterDirName","webArg","webNotPaneledWarning","webSaveMargDim","webSaveSSDim","webdirectory","websetheadheight","webtableofcontents"]}
-,
-"webquiz.cls":{"envs":["question","choice","discussion","quizindex","choice","dicussion","quizindex"],"deps":["etoolbox.sty","pgfopts.sty","xparse.sty","pgffor.sty","amsfonts.sty","amsmath.sty","bbding.sty","tikz.sty"],"cmds":["answer","whenRight","whenWrong","correct","incorrect","feedback","dref","qref","Qref","quiz","BreadCrumbs","BreadCrumb","Department","DepartmentURL","Institution","InstitutionURL","QuizzesURL","UnitCode","UnitName","UnitURL","DisplayAsImage","thechoice","thediscussion","thequestion","thequiz","webquiz","AddIniFileKeyValue","AddIniFileValue","inifile","apar","AddEntry"]}
-,
-"wedn.sty":{"envs":{},"deps":{},"cmds":["wedn","euros"]}
-,
-"weekday.sty":{"envs":{},"deps":{},"cmds":["weekday","weekdaydate","wwwy","wwwm","wwwd","wwwc","wwwt","wwws"]}
-,
-"wela.sty":{"envs":{},"deps":{},"cmds":["wela","euros"]}
-,
-"wesa.sty":{"envs":{},"deps":{},"cmds":["wesa","euros"]}
-,
-"wesu.sty":{"envs":{},"deps":{},"cmds":["wesu","euros"]}
-,
-"weva.sty":{"envs":{},"deps":{},"cmds":["weva","euros"]}
-,
-"wgexport.cls":{"envs":["imagelist","boardimage","standaloneframe","standaloneframe","multimath","multidisplaymath","multimath","multidisplaymath"],"deps":["s-standalone.cls","wargame.sty","s-beamer.cls","multido.sty","preview.sty","pstricks.sty","tikz.sty","varwidth.sty"],"cmds":["info","chitimages","doublechitimages","multimathsep","multidisplaymathsep"]}
-,
-"wheelchart.sty":{"envs":{},"deps":["tikz.sty","tikzlibrarycalc.sty"],"cmds":["wheelchart","WCcount","WCdataangle","WCmidangle","WCperc","WCpercentage","WCpercentagerounded","WCtotalcount","WCtotalnum","WCvarA","WCvarB","WCvarC","WCvarD","WCvarE","WCvarF","WCvarG","WCvarH","WCvarI","WCvarJ","WCvarK","WCvarL","WCvarM","WCvarN","WCvarO","WCvarP","WCvarQ","WCvarR","WCvarS","WCvarT","WCvarU","WCvarV","WCvarW","WCvarX","WCvarY","WCvarZ"]}
-,
-"widetable.sty":{"envs":["widetabular","widetable"],"deps":["xparse.sty"],"cmds":{}}
-,
-"widows-and-orphans.sty":{"envs":{},"deps":["underscore.sty","l3keys2e.sty"],"cmds":["WaOsetup","WaOparameters","WaOignorenext"]}
-,
-"wiki.sty":{"envs":{},"deps":{},"cmds":["wikimarkup","nowikimarkup","wikiEnvironments","nowikiEnvironments","wikiFonts","nowikiFonts","wikiHeadings","nowikiHeadings","AssignCatCode","MakeActive","MakeOther","normalequals"]}
-,
-"wiley-authoringtemplate.sty":{"envs":["abstract","acronyms","contributors","copyrightpage","corollary","definition","dialogue","exer","exercise","exercises","feature","featureFixed","introduction","lemma","objectives","problems","scheme","theorem","unnumfigure","unnumtable","foreword","BoxI","FeaBox","QE","biography","epigraph","featureFxd","nifigure","nitable","pullquote","tip","warning","xextract"],"deps":["lipsum.sty","ulem.sty","alltt.sty","rotating.sty","boites.sty","boites_exemples.sty","wrapfig.sty","epstopdf.sty","setspace.sty","ifthen.sty","amsmath.sty","color.sty","xcolor.sty","float.sty","graphicx.sty","enumerate.sty","latexsym.sty","mathtools.sty","amssymb.sty","amsthm.sty","mathrsfs.sty","makeidx.sty","listings.sty","verbatim.sty","moreverb.sty","hyperref.sty","breakurl.sty"],"cmds":["acknowledgments","acro","address","answer","AuAff","author","authorinitials","booktitle","botrule","city","country","countrypart","dedication","email","exerIns","explanation","fnm","halftitlepage","hint","keywords","latexprintindex","midrule","name","orgdiv","orgname","phone","postcode","prefaceauthor","solution","source","state","street","subtitle","sur","titlepage","toprule","where","AbsTxtfont","AuthandAffil","Authorfont","DJ","Extsource","FeaFxdHd","Featurefixedtypetext","Mathstatementtypetext","Newlabel","PoetryHd","QELftRghtDimen","QEsource","QuoteHd","Schemecaption","StepDownCounter","StepUpCounter","Versesource","acknowledgements","addressfont","affil","affnum","artauthors","authorimage","authorsep","bibfont","bibsection","bibtype","corresfont","corresinfo","dj","editionstatement","emailsep","epigraphname","exerssectitle","extractHd","extractname","feafxdtype","feanameBox","feanameGeneral","feanameNote","feanameTip","feanameWarning","feasecfont","feasection","feasubsecfont","feasubsection","featuretitle","featuretype","figure","foreword","hb","introduction","jmkLabel","jmkRef","jmkaddress","minustocounter","nifigcaption","nitabcaption","numbered","oldDJ","olddj","orgaddress","paratitle","pullquotename","ques","quotename","quotetype","raggedcenter","refstepdowncounter","schemename","secsep","sectitle","sep","startonoddpage","stepdowncounter","subparatitle","subsectitle","subsubsectitle","tabcaption","theaffn","theaucount","thecorrauthcount","thefnmCnt","thescheme","typetext","unnumbered","unnumfigcaption","unnumtabcaption","versename","xcopyrightpage"]}
-,
-"willowtreebook.cls":{"envs":["theorem","lemma","corollary","proposition","example","exampleAndImage","examples","problem","problem*","answer","ReviewExercises","subproblems","problemTheorem","HardProblemTheorem"],"deps":["s-memoir.cls","xparse.sty","newunicodechar.sty","inputenc.sty","fontenc.sty","lmodern.sty","isomath.sty","cfr-lm.sty","eucal.sty","microtype.sty","embrac.sty","amsmath.sty","amsthm.sty","amssymb.sty","braket.sty","mathtools.sty","varioref.sty","longtable.sty","multicol.sty","hyperref.sty","memhfixc.sty","xcolor.sty","colortbl.sty","enumitem.sty","tcolorbox.sty","tcolorboxlibrarybreakable.sty","tcolorboxlibraryskins.sty","CJKutf8.sty"],"cmds":["ChineseTextInThisDocument","Chinese","Title","Subtitle","Author","BibliographyFile","Colophon","afterpreface","SubIndex","Notation","define","chapterSummary","optionalSection","imageborderinexample","includegraphicsinexample","inputinexample","scotsMc","scotsMC","scotsMcx","tallmatrix","NotationIndexName","paddedpagenumber","leftAbs","rightAbs","leftDoubleAbs","rightDoubleAbs","normNotation","orderForNotationIndex","lengthForNotationIndex","normForNotationIndex","lcl","rcl","lflr","rflr","ceilForNotationIndex","floorForNotationIndex","FancyIndexEntry","idxmark","doidxbookmark","doglobookmark","stdFigSize","subfigure","subfigcapskip","heading","printanswers","newparagraph","defaultArrayRuleColor","rulecolor","writetitlepage","newcolr","smallboxh","smallboxd","smallboxw","blanksp","smallcolouredbox","ifchaptercolours","chaptercolourstrue","chaptercoloursfalse","negphantom","hintsPreamble","bibliographyPreamble","DH","NG","dj","ng","k","guillemotleft","guillemotright","guilsinglleft","guilsinglright","quotedblbase","quotesinglbase","textquotedbl","DJ","th","TH","dh","Hwithstroke","hwithstroke","textogonekcentered","guillemetleft","guillemetright","mathscr"]}
-,
-"withargs.sty":{"envs":{},"deps":["xparse.sty"],"cmds":["withargs","uniquecsname"]}
-,
-"witharrows.sty":{"envs":["WithArrows","DispWithArrows","DispWithArrows*"],"deps":["l3keys2e.sty","varwidth.sty","tikz.sty","tikzlibrarybending.sty","footnote.sty","footnotehyper.sty"],"cmds":["WithArrowsOptions","Arrow","MultiArrow","WithArrowsLastEnv","tag","notag","tagnextline","WithArrowsRightX","WithArrowsNewStyle","WithArrowsNbLines","WithArrows","endWithArrows","DispWithArrows","endDispWithArrows","myfileversion","myfiledate"]}
-,
-"wordlike.sty":{"envs":{},"deps":["geometry.sty","mathptmx.sty","helvet.sty","courier.sty"],"cmds":{}}
-,
-"worksheet.sty":{"envs":["exercise"],"deps":["scrlayer-scrpage.sty"],"cmds":["score","learningtargets","occurrence","easy","medium","hard","worksheetShowFileName","worksheetShowScore","worksheetShowLearningTargets","worksheetShowDifficulty","worksheetShowOccurrence","worksheetHideFileName","worksheetHideScore","worksheetHideLearningTargets","worksheetHideDifficulty","worksheetHideOccurrence","worksheetTitle","worksheetSubTitle","worksheetMakeTitle","worksheetAuthors","worksheetCourseName","worksheetChangelvFile","worksheetNoSFFamilyInHeader","worksheetHideHeader"]}
-,
-"worldflags.sty":{"envs":["flagdescription"],"deps":["ifthen.sty","tikz.sty","tikzlibrarycalc.sty","tikzlibraryshadows.sty","tikzlibraryshapes.sty","tikzlibraryshapes.symbols.sty","tikzlibrarypositioning.sty","tikzlibrarymath.sty","xcolor.sty","xkeyval.sty"],"cmds":["worldflag","flagsdefault","framecode","flagwidth","flaglength","flagframe","framecolor","stretchfactor","hstripesII","hstripesIII","hstripesIV","vstripesII","vstripesIII","hbar","vbar","chevron","starV","starVI","starn","moon","unionjack"]}
-,
-"wrapfig.sty":{"envs":["wrapfigure","wraptable","wrapfloat"],"deps":{},"cmds":["wrapoverhang","WFclear"]}
-,
-"wrapfig2.sty":{"envs":["wrapfigure","wraptable","wraptext","wrapfloat"],"deps":["xparse.sty","xfp.sty","etoolbox.sty","float.sty","xcolor.sty","curve2e.sty"],"cmds":["SetWFbgd","SetWFfrm","SetWFtxt","includeframedtext","framedbox","wrapoverhang","insertwidth","WFinsertwidthL","WFinsertwidthH","WFscalefactor","WFscalewidth","WFclear","textcorrection","textplacement","textoverhang","x","xc","WFXds","WFYuo","PSEl","PNEl","PSWu","WFrectangle","CurveStar"]}
-,
-"wrapstuff.sty":{"envs":["wrapstuff"],"deps":["l3keys2e.sty"],"cmds":["wrapstuffset","wrapstuffclear"]}
-,
-"wtref.sty":{"envs":{},"deps":["xparse.sty","xkeyval.sty"],"cmds":["newref","setrefstyle"]}
-,
-"xCJK2uni.sty":{"envs":{},"deps":["expl3.sty"],"cmds":["useCJKencmap","CJKchartouni","CJKsfdtouni"]}
-,
-"xargs.sty":{"envs":{},"deps":["xkeyval.sty"],"cmds":["newcommandx","renewcommandx","providecommandx","newenvironmentx","renewenvironmentx","DeclareRobustCommandx","CheckCommandx"]}
-,
-"xassoccnt.sty":{"envs":{},"deps":["etoolbox.sty","letltxmacro.sty","xcolor.sty","xparse.sty","l3keys2e.sty"],"cmds":["addtocounter","NewDocumentCounter","DeclareDocumentCounter","SetDocumentCounter","StepDownCounter","SubtractFromCounter","CopyDocumentCounters","SwapDocumentCounters","SyncCounters","IfIsDocumentCounterTF","IfIsDocumentCounterT","IfIsDocumentCounterF","LastAddedToCounter","LastSteppedCounter","LastRefSteppedCounter","LastSetCounter","LastCounterValue","RemoveFromReset","RemoveFromFullReset","ClearCounterResetList","AddToReset","countersresetlistcount","getresetlistcount","CounterFullResetList","IfInResetListTF","IfInResetListT","IfInResetListF","DisplayResetList","ShowResetList","GetAllResetLists","GetParentCounter","LoopAddtoCounters","LoopResetCounters","LoopRefstepCounters","LoopSetCounters","LoopStepCounters","LoopCountersFunction","LoopCounterResetList","LoopFullCounterResetList","CounterWithin","CounterWithout","BinaryValue","hexValue","HexValue","OctalValue","xalphalph","xAlphAlph","CounterFormat","StoreCounterFormats","AddCounterFormats","RemoveCounterFormats","DeclareAssociatedCounters","AddAssociatedCounters","RemoveAssociatedCounter","RemoveAssociatedCounters","ClearAssociatedCounters","DeclareTotalAssociatedCounters","AddDriverCounter","RemoveDriverCounter","ClearDriverCounters","IsAssociatedToCounter","GetDriverCounter","IsAssociatedCounter","IsDriverCounter","DeclareCoupledCounters","DeclareCoupledCountersGroup","RemoveCoupledCounters","AddCoupledCounters","ClearCoupledCounters","ClearAllCoupledCounters","IsCoupledCounterTF","IsCoupledCounterT","IsCoupledCounterF","DeclarePeriodicCounter","AddPeriodicCounter","RemovePeriodicCounter","RemoveAllPeriodicCounters","ChangePeriodicCounterCondition","IsPeriodicCounterTF","IsPeriodicCounterT","IsPeriodicCounterF","SuspendCounters","CascadeSuspendCounters","ResumeSuspendedCounters","ResumeAllSuspendedCounters","IsSuspendedCounter","RegisterTotalDocumentCounter","TotalCounterInternalName","TotalCounterInternalNameExp","TotalValue","IsTotalCounterTF","IsTotalCounterT","IsTotalCounterF","NewTotalDocumentCounter","DeclareTotalDocumentCounter","IsSuperTotalCounterTF","IsSuperTotalCounterT","IsSuperTotalCounterF","label","LaTeXLabel","RegisterPreLabelHook","RegisterPostLabelHook","ClearPostLabelHook","ClearPreLabelHook","AddBackupCounters","AddFeature","AddLanguageMappings","AssignBackupCounters","AssociatedCounterInfoColor","BackupCounterGroup","BackupCounterValues","ClearBackupCounterGroups","ClearBackupState","ClearCounterBackupState","ClearCounterFormats","DeclareBackupCountersGroupName","DeclareLanguageMappings","DeclareLanguageMap","DeleteBackupCounterGroups","DriverCounterInfoColor","EnableNumberofrunsTF","GeneralCounterInfoColor","GetParentCounterChain","IfExistsDriverCounterList","IsBackupCounterF","IsBackupCounterGroupF","IsBackupCounterGroupTF","IsBackupCounterGroupT","IsBackupCounterTF","IsBackupCounterT","IsBackupStateF","IsBackupStateTF","IsBackupStateT","NewContainer","NewCounterHierarchy","PrettyPrintCounterName","ProvideOriginalLabelCommands","RedefineLabelCommand","RemoveCountersFromBackupGroup","RemoveFeature","RestoreBackupCounterGroup","RunLabelHooks","RunPostLabelHooks","RunPreLabelHooks","ShowAllAssociatedCounters","ShowAssociatedCountersList","ShowCounterFormats","ShowDriverCounterList","ShowLanguageMappings","ShowSuspendedCounters","TotalCounterInfoColor","WriteCountersAtEnd","showresetlist","AlphAlphinternal","alphalphinternal","CheckIfNotPackageLoadedF","CheckIfNotPackageLoadedTF","CheckIfNotPackageLoadedT","CheckIfPackageLoadedF","CheckIfPackageLoadedTF","CheckIfPackageLoadedT","FormerAddBackupCounter","FormerBackupCounterValues","FormerRemoveBackupCounterInternal","FormerRemoveBackupCounters","FormerRestoreAllCounterValues","FormerRestoreCounterValues","ifexplversionnew","explversionnewtrue","explversionnewfalse","xassoccntpackageversion"]}
-,
-"xbmks.sty":{"envs":{},"deps":["xkeyval.sty","ifpdf.sty","ifxetex.sty","hyperref.sty"],"cmds":["xbmksetup","pdfbookmarkx","currentpdfbookmarkx","subpdfbookmarkx","belowpdfbookmarkx","bWebCustomize","eWebCustomize","xbmksetupi","xbmkcsarg"]}
-,
-"xcharter-otf.sty":{"envs":{},"deps":["iftex.sty","unicode-math.sty","xkeyval.sty","realscripts.sty"],"cmds":["circledR","circledS","blacklozenge","blacksquare","Box","centerdot","circlearrowleft","circlearrowright","cuberoot","dashleftarrow","dashrightarrow","diagdown","diagup","Diamond","doteqdot","doublecap","doublecup","enleadertwodots","fourthroot","geqqslant","gggtr","gtreqqslantless","gtreqslantless","gvertneqq","intextender","leadsto","leftdasharrow","leqqslant","lesseqqslantgtr","lesseqslantgtr","lgblkcircle","lgblksquare","lgwhtsquare","lhd","llless","lozenge","lvertneqq","mbfdotlessi","mbfdotlessj","mbfimath","mbfjmath","mbfvarzero","mdblkcircle","mdblkdiamond","mdblklozenge","mdblksquare","mdlgblkdiamond","mdlgblklozenge","mdlgwhtdiamond","mdsmblksquare","mdsmwhtcircle","mdsmwhtsquare","mdwhtcircle","mdwhtdiamond","mdwhtlozenge","mdwhtsquare","mithbar","mscre","mscrg","mscro","mupvarzero","ngeqq","ngeqqslant","ngeqslant","nleqq","nleqqslant","nleqslant","nparallelslant","npreceq","nshortmid","nshortparallel","nshortparallelslant","nsubseteqq","nsucceq","nsupseteqq","ntriangleleft","ntriangleright","overrightarc","parallelslant","preceqq","precneq","restriction","rhd","rightcurvedarrow","rightdasharrow","shortmid","shortparallel","shortparallelslant","smallblacktriangleleft","smallblacktriangleright","smallfrown","smallsmile","smalltriangleleft","smalltriangleright","smblkdiamond","smblklozenge","smwhtlozenge","square","subsetneqq","succeqq","succneq","supsetneqq","thickapprox","thicksim","tieconcat","unlhd","unrhd","upand","upbackepsilon","updigamma","varemptyset","varpropto","varsubsetneq","varsubsetneqq","varsupsetneq","varsupsetneqq","varsymbfscrE","varsymbfscrQ","varsymbfscrT","varsymscrE","varsymscrQ","varsymscrT","Vvert","vysmblksquare","vysmwhtsquare","wedgebar","widearc","Zbar","XCottoksT","XCottoksM","fileversion","filedate"]}
-,
-"xcntperchap.sty":{"envs":{},"deps":["zref-counter.sty","l3keys2e.sty","xparse.sty","xassoccnt.sty"],"cmds":["RegisterTrackCounter","RegisterMultipleTrackCounters","ObtainTrackedValue","ObtainTrackedValueExp","tracklabel","ObtainTrackedValueByLabel","AddToTrackedCounters","RegisterCounters","CloseTrackFileForWrite","GetStoredValues","LoadTrackedValues","OpenTrackFileForWrite","StoreCounterValues","TrackCounters","cntperchapsetup","xcntperchappackageversion"]}
-,
-"xcoffins.sty":{"envs":{},"deps":{},"cmds":["NewCoffin","SetHorizontalCoffin","SetVerticalCoffin","SetHorizontalPole","SetVerticalPole","TotalHeight","Height","Depth","Width","RotateCoffin","ResizeCoffin","ScaleCoffin","JoinCoffins","TypesetCoffin","CoffinDepth","CoffinHeight","CoffinTotalHeight","CoffinWidth","DisplayCoffinHandles","MarkCoffinHandle","ShowCoffinStructure"]}
-,
-"xcolor-material.sty":{"envs":{},"deps":["xcolor.sty","kvoptions.sty"],"cmds":["printcolorvalue","colorsample","colorpalette"]}
-,
-"xcolor-solarized.sty":{"envs":{},"deps":["xcolor.sty","kvoptions.sty"],"cmds":["solarizedPalette"]}
-,
-"xcolor.sty":{"envs":["testcolors"],"deps":["color.sty","colortbl.sty","pdfcolmk.sty"],"cmds":["GetGinDriver","GinDriver","xcolorcmd","adjustUCRBG","rangeHsb","rangetHsb","rangeRGB","rangeHSB","rangeGray","substitutecolormodel","selectcolormodel","ifconvertcolorsD","convertcolorsDtrue","convertcolorsDfalse","ifconvertcolorsU","convertcolorsUtrue","convertcolorsUfalse","definecolor","providecolor","colorlet","definecolorset","providecolorset","preparecolor","preparecolorset","ifdefinecolors","definecolorstrue","definecolorsfalse","definecolors","providecolors","ifglobalcolors","globalcolorstrue","globalcolorsfalse","xglobal","boxframe","testcolor","blendcolors","maskcolors","ifmaskcolors","maskcolorstrue","maskcolorsfalse","colormask","definecolorseries","resetcolorseries","colorseriescycle","extractcolorspec","extractcolorspecs","tracingcolors","convertcolorspec"]}
-,
-"xcomment.sty":{"envs":["xcomment"],"deps":{},"cmds":["xcomment","xcommentchar","rescanfile","norescanfile","envirsep","newxcomment","nofloat"]}
-,
-"xcookybooky.sty":{"envs":["recipe"],"deps":["tikz.sty","graphicx.sty","xcolor.sty","ifsym.sty","cookingsymbols.sty","wrapfig.sty","iflang.sty","ifthen.sty","xkeyval.sty","lettrine.sty","fancyhdr.sty","units.sty","eso-pic.sty","picture.sty","tabulary.sty","framed.sty","emerald.sty"],"cmds":["graph","ingredients","preparation","step","introduction","suggestion","portion","hint","bakingtemperature","setRecipeColors","setRecipeLengths","setRecipeSizes","setRecipenameFont","setHeadlines","setBackgroundPicture","postingredients","postpreparation","pregraph","preingredients","prepreparation","prerecipeoverview","pretitle","recipesection","thestep","ifclkfamily","textifclk","showclock","Taschenuhr","VarTaschenuhr","StopWatchStart","StopWatchEnd","Interval","Wecker","VarClock","Letter","Telephone","SectioningDiamond","FilledSectioningDiamond","PaperPortrait","PaperLandscape","Cube","Irritant","Fire","Radiation","StrokeOne","StrokeTwo","StrokeThree","StrokeFour","StrokeFive","textweathersymbol","Sun","HalfSun","NoSun","Fog","ThinFog","Rain","WeakRain","Hail","Sleet","Snow","Lightning","Cloud","RainCloud","WeakRainCloud","SunCloud","SnowCloud","FilledCloud","FilledRainCloud","FilledWeakRainCloud","FilledSunCloud","FilledSnowCloud","wind","Thermo"]}
-,
-"xcpdftips.sty":{"envs":{},"deps":["bibentry.sty","pdfcomment.sty","xparse.sty","etoolbox.sty","pdfbase.sty","ocgbase.sty","expl3.sty","calc.sty","linegoal.sty","xcolor.sty","tcolorbox.sty"],"cmds":["xpdfcite"]}
-,
-"xdufont.sty":{"envs":{},"deps":["expl3.sty","xparse.sty","l3keys2e.sty","xeCJK.sty","unicode-math.sty"],"cmds":["xdusetup"]}
-,
-"xdupgthesis.cls":{"envs":["edubg","resresult"],"deps":["l3keys2e.sty","s-ctexbook.cls","xeCJK.sty","geometry.sty","fancyhdr.sty","xeCJKfntef.sty","graphicx.sty","unicode-math.sty","tocloft.sty","caption.sty","hyperref.sty","xspace.sty","biblatex.sty","tabularray.sty","tabularraylibraryfunctional.sty","enumitem.sty","xstring.sty"],"cmds":["xdusetup","noauxwrite","chapter","section","subsection","anon","figname","tabname","SlashFont","versionofgbtstyle","versionofbiblatex","defversion","switchversion","testCJKfirst","multivolparser","multinumberparser","BracketLift","gbleftparen","gbrightparen","gbleftbracket","gbrightbracket","execgbfootbibfmt","footbibmargin","footbiblabelsep","execgbfootbib","thegbnamefmtcase","mkgbnumlabel","thegbalignlabel","thegbcitelocalcase","thegbbiblocalcase","lancnorder","lanjporder","lankrorder","lanenorder","lanfrorder","lanruorder","execlanodeah","thelanordernum","execlanodudf","setlocalbibstring","setlocalbiblstring","dealsortlan","bibitemindent","biblabelextend","setaligngbstyle","lengthid","lengthlw","itemcmd","setaligngbstyleay","publocpunct","bibtitlefont","bibauthorfont","bibpubfont","execgbfdfmtstd","aftertransdelim","gbcaselocalset","gbpinyinlocalset","gbquanpinlocalset","defdoublelangentry","entrykeya","entrykeyb","userfieldabcde","mkbibleftborder","mkbibrightborder","mkbibsuperbracket","mkbibsuperscriptusp","upcite","pagescite","yearpagescite","yearcite","authornumcite","citet","citep","citetns","citepns","inlinecite","citec","citecs","authornumcites"]}
-,
-"xduugthesis.cls":{"envs":{},"deps":["l3keys2e.sty","s-ctexbook.cls","xeCJK.sty","geometry.sty","fancyhdr.sty","xeCJKfntef.sty","graphicx.sty","unicode-math.sty","tocloft.sty","caption.sty","hyperref.sty","xspace.sty","biblatex.sty","xstring.sty"],"cmds":["xdusetup","noauxwrite","figname","tabname","SlashFont","versionofgbtstyle","versionofbiblatex","defversion","switchversion","testCJKfirst","multivolparser","multinumberparser","BracketLift","gbleftparen","gbrightparen","gbleftbracket","gbrightbracket","execgbfootbibfmt","footbibmargin","footbiblabelsep","execgbfootbib","thegbnamefmtcase","mkgbnumlabel","thegbalignlabel","thegbcitelocalcase","thegbbiblocalcase","lancnorder","lanjporder","lankrorder","lanenorder","lanfrorder","lanruorder","execlanodeah","thelanordernum","execlanodudf","setlocalbibstring","setlocalbiblstring","dealsortlan","bibitemindent","biblabelextend","setaligngbstyle","lengthid","lengthlw","itemcmd","setaligngbstyleay","publocpunct","bibtitlefont","bibauthorfont","bibpubfont","execgbfdfmtstd","aftertransdelim","gbcaselocalset","gbpinyinlocalset","gbquanpinlocalset","defdoublelangentry","entrykeya","entrykeyb","userfieldabcde","mkbibleftborder","mkbibrightborder","mkbibsuperbracket","mkbibsuperscriptusp","upcite","pagescite","yearpagescite","yearcite","authornumcite","citet","citep","citetns","citepns","inlinecite","citec","citecs","authornumcites"]}
-,
-"xduugtp.cls":{"envs":["tpbox"],"deps":["l3keys2e.sty","s-ctexart.cls","xeCJK.sty","geometry.sty","unicode-math.sty","hyperref.sty","biblatex.sty","tcolorbox.sty","tcolorboxbreakable.sty","graphicx.sty","xeCJKfntef.sty","xstring.sty"],"cmds":["xdusetup","figname","tabname","SlashFont","bibname","versionofgbtstyle","versionofbiblatex","defversion","switchversion","testCJKfirst","multivolparser","multinumberparser","BracketLift","gbleftparen","gbrightparen","gbleftbracket","gbrightbracket","execgbfootbibfmt","footbibmargin","footbiblabelsep","execgbfootbib","thegbnamefmtcase","mkgbnumlabel","thegbalignlabel","thegbcitelocalcase","thegbbiblocalcase","lancnorder","lanjporder","lankrorder","lanenorder","lanfrorder","lanruorder","execlanodeah","thelanordernum","execlanodudf","setlocalbibstring","setlocalbiblstring","dealsortlan","bibitemindent","biblabelextend","setaligngbstyle","lengthid","lengthlw","itemcmd","setaligngbstyleay","publocpunct","bibtitlefont","bibauthorfont","bibpubfont","execgbfdfmtstd","aftertransdelim","gbcaselocalset","gbpinyinlocalset","gbquanpinlocalset","defdoublelangentry","entrykeya","entrykeyb","userfieldabcde","mkbibleftborder","mkbibrightborder","mkbibsuperbracket","mkbibsuperscriptusp","upcite","pagescite","yearpagescite","yearcite","authornumcite","citet","citep","citetns","citepns","inlinecite","citec","citecs","authornumcites"]}
-,
-"xeCJK-listings.sty":{"envs":{},"deps":["expl3.sty","xeCJK.sty","listings.sty"],"cmds":{}}
-,
-"xeCJK.sty":{"envs":{},"deps":["xetex.sty","xtemplate.sty","fontspec.sty"],"cmds":["xeCJKsetup","setCJKmainfont","setCJKsansfont","setCJKmonofont","setCJKfamilyfont","CJKfamily","newCJKfontfamily","CJKfontspec","defaultCJKfontfeatures","addCJKfontfeatures","CJKrmdefault","CJKsfdefault","CJKttdefault","CJKfamilydefault","setCJKmathfont","setCJKfallbackfamilyfont","xeCJKDeclareSubCJKBlock","xeCJKCancelSubCJKBlock","xeCJKRestoreSubCJKBlock","xeCJKDeclareCharClass","xeCJKResetCharClass","xeCJKResetPunctClass","normalspacechars","xeCJKsetwidth","xeCJKsetkern","xeCJKDeclarePunctStyle","xeCJKEditPunctStyle","xeCJKVerbAddon","xeCJKOffVerbAddon","xeCJKnobreak","xeCJKShipoutHook"]}
-,
-"xeCJKfntef.sty":{"envs":["CJKfilltwosides","CJKfilltwosides*"],"deps":["expl3.sty","ulem.sty"],"cmds":["CJKunderline","CJKunderdblline","CJKunderwave","CJKsout","CJKxout","CJKunderdot","CJKunderanyline","CJKunderanysymbol","xeCJKfntefon"]}
-,
-"xebaposter.cls":{"envs":["poster","posterbox"],"deps":["xkeyval.sty","calc.sty","xcolor.sty","ifxetex.sty","tikz.sty","pgf.sty","ifthen.sty","fontenc.sty","geometry.sty","pgfpages.sty","tikzlibrarydecorations.sty","tikzlibraryfadings.sty","tikzlibrarycalc.sty","colortbl.sty"],"cmds":["background","boxheight","boxstartx","boxstarty","boxwidth","colheight","colwidth","gridpos","headerbox","headerheight","xebaposterBoxDrawBackground","xebaposterBoxDrawBorder","xebaposterBoxGetShape","xebaposterHeaderDrawBackground","xebaposterHeaderDrawBorder","xebaposterHeaderDrawText","xebaposterHeaderGetShape","xebaposterHeaderSetShade","xebaposterPosterDrawBackground","debug","DH","dh","dj","DJ","guillemetleft","guillemetright","guillemotleft","guillemotright","guilsinglleft","guilsinglright","Hwithstroke","hwithstroke","k","NG","ng","quotedblbase","quotesinglbase","textogonekcentered","textquotedbl","th","TH"]}
-,
-"xecolor.sty":{"envs":{},"deps":["xetex.sty","fontspec.sty","iftex.sty"],"cmds":["definergbcolor","xecolor","textxecolor","normalxecolor"]}
-,
-"xecyr.sty":{"envs":{},"deps":["ifluatex.sty","ifxetex.sty","xltxtra.sty","xunicode.sty","misccorr.sty"],"cmds":["flqq","frqq","glqq","grqq","cyrdash"]}
-,
-"xecyrmongolian.sty":{"envs":{},"deps":["luahyphenrules.sty"],"cmds":["alsoname","bibname","ccname","chaptername","enclname","glossaryname","headtoname","pagename","prefacename","proofname","seename","Useg","useg","mongmonth","nousegalph","usegalph"]}
-,
-"xeindex.sty":{"envs":{},"deps":["makeidx.sty","xesearch.sty"],"cmds":["IndexList","StopIndexList","StopIndex","NoIndex"]}
-,
-"xellipsis.sty":{"envs":{},"deps":["xkeyval.sty"],"cmds":["xelip","xelipend","xelipchar","xelipnum","xelipbef","xelipaft","xelipgap","xelipprechar","xelippostchar","xelipprebef","xelippostbef","xelippreaft","xelippostaft"]}
-,
-"xepersian-hm.sty":{"envs":{},"deps":["expl3.sty","l3keys2e.sty","graphicx.sty","zref-savepos.sty","xcolor.sty","xepersian.sty"],"cmds":["KashidaOff","KashidaOn","KashidaHMFixOff","KashidaHMFixOn","discouragebadlinebreaks","XePersianHM"]}
-,
-"xepersian-magazine.cls":{"envs":["frontpage","indexblock","authorblock","weatherblock","article","editorial","shortarticle"],"deps":["ifthen.sty","ifxetex.sty","multido.sty","datetime.sty","multicol.sty","fancyhdr.sty","fancybox.sty","geometry.sty","textpos.sty","hyphenat.sty","lastpage.sty","setspace.sty","ragged2e.sty"],"cmds":["firstimage","firstarticle","secondarticle","thirdarticle","indexitem","weatheritem","authorandplace","timestamp","image","columntitle","expandedtitle","shortarticleitem","articlesep","newsection","customlogo","customminilogo","custommagazinename","edition","editionFormat","indexFormat","indexEntryFormat","indexEntryPageTxt","indexEntryPageFormat","indexEntrySeparator","weatherFormat","weatherTempFormat","weatherUnits","firstTitleFormat","firstTextFormat","secondTitleFormat","secondSubtitleFormat","secondTextFormat","thirdTitleFormat","thirdSubtitleFormat","thirdTextFormat","pictureCaptionFormat","pagesFormat","innerTitleFormat","innerSubtitleFormat","innerAuthorFormat","innerPlaceFormat","timestampTxt","timestampSeparator","timestampFormat","innerTextFinalMark","minraggedcols","raggedFormat","heading","foot","columnlines","customwwwTxt","editorialAuthorFormat","editorialTitleFormat","grid","headDateTimeFormat","logo","minilogo","mylogo","shortarticleItemTitleFormat","shortarticleSubtitleFormat","shortarticleTitleFormat","xepersianInit"]}
-,
-"xepersian-mathdigitspec.sty":{"envs":{},"deps":{},"cmds":["setmathdigitfont","setmathsfdigitfont","setmathttdigitfont","DefaultMathDigits","PersianMathDigits","AutoMathDigits","AutoDisplayMathDigits","AutoInlineMathDigits","DefaultDisplayMathDigits","DefaultInlineMathDigits","DefaultMathDecimalSeparator","MathDecimalSeparator","persiandecimalseparator","PersianDisplayMathDigits","PersianInlineMathDigits","persianmathdigits","persianmathsfdigits","persianmathttdigits","SetDisplayMathDigits","SetInlineMathDigits","SetMathCharDef","SetMathCode","SwitchToDefaultMathDigits","SwitchToPersianMathDigits"]}
-,
-"xepersian-multiplechoice.sty":{"envs":["question","correction"],"deps":["pifont.sty","fullpage.sty","ifthen.sty","calc.sty","verbatim.sty","tabularx.sty"],"cmds":["answernumberfont","answerstitle","answerstitlefont","correctionstyle","false","falsesymbol","headerfont","makeform","makemask","pbs","questionsepspace","questionspace","questiontitle","questiontitlefont","questiontitlespace","thequestion","true","truesymbol","X"]}
-,
-"xepersian-persiancal.sty":{"envs":{},"deps":{},"cmds":["persianday","persianmonth","persianyear","persiantoday"]}
-,
-"xepersian.sty":{"envs":["latin","persian","latinitems","persianitems","latin*","persian*"],"deps":["fontspec.sty","xepersian-mathdigitspec.sty","bidi-perpage.sty"],"cmds":["normalfootnotes","twocolumnfootnotes","threecolumnfootnotes","fourcolumnfootnotes","fivecolumnfootnotes","sixcolumnfootnotes","sevencolumnfootnotes","eightcolumnfootnotes","ninecolumnfootnotes","tencolumnfootnotes","RTLcolumnfootnotes","LTRcolumnfootnotes","paragraphfootnotes","setLTRparagraphfootnotes","setRTLparagraphfootnotes","AddExtraParaSkip","extrafeetendmini","extrafeetendminihook","extrafeetins","extrafeetinshook","FeetAboveFloat","FeetAtBottom","FeetBelowFloat","FeetBelowRagged","footfootmark","footfudgefactor","footinsdim","footmarkstyle","footmarkwidth","footscript","foottextfont","LTRfootfootmark","LTRfootmarkstyle","LTRfootscript","LTRfoottextfont","multiplefootnotemarker","normalRTLparaLTRfootnotes","RTLfootfootmark","RTLfootmarkstyle","RTLfootscript","RTLfoottextfont","setSingleSpace","KashidaOn","KashidaOff","eqcommand","eqenvironment","makezwnjletter","EqEnvironment","DetectColumn","xepersianreleasename","xepersianversion","xepersiandate","settextfont","settextdigitfont","setdigitfont","setlatintextfont","defpersianfont","deflatinfont","setpersiansansfont","persiansffamily","textpersiansf","setpersianmonofont","persianttfamily","textpersiantt","setiranicfont","iranicfamily","textiranic","setnavarfont","navarfamily","textnavar","setpookfont","pookfamily","textpook","setsayehfont","sayehfamily","textsayeh","setlatinsansfont","setlatinmonofont","lr","rl","latintoday","twocolumnstableofcontents","XePersian","plq","prq","Latincite","harfi","harfinumeral","adadi","adadinumeral","tartibi","tartibinumeral","Abjad","Abjadnumeral","abjad","abjadnumeral","ifwritexviii","writexviiitrue","writexviiifalse","bibname","ccname","chaptername","datename","enclname","headtoname","IfxepersianPackageVersion","IfxepersianPackageVersionBefore","IfxepersianPackageVersionLater","iranicdefault","LatinAlphs","latinfont","navardefault","originaltoday","pagename","PersianAlphs","persianfont","persiansfdefault","persianttdefault","pookdefault","proofname","redeflatinfont","redefpersianfont","resetlatinfont","sayehdefault","setfontsize","setpersianfont","TextDigitFontOff","TextDigitFontOn"]}
-,
-"xesearch.sty":{"envs":{},"deps":["xetex.sty"],"cmds":["SearchList","StopList","AddToList","MakeBoundary","UndoBoundary","StartSearching","StopSearching","SortByLength","DoNotSort","SearchAll","SearchOnlyOne","SearchOrder","PrefixFound","SuffixFound","AffixFound","PatchOutput","NormalOutput","PatchTracing","NormalTracing"]}
-,
-"xespotcolor.sty":{"envs":{},"deps":["xetex.sty","iftex.sty","graphics.sty","color.sty","xcolor.sty"],"cmds":["NewSpotColorSpace","AddSpotColor","SpotSpace","SetPageColorSpace","SpotColor","SetPageColorResource","csgrab","colorprofilecnt","mycolorprofilename","mycolorprofile","mycolor","tempcs"]}
-,
-"xetex.sty":{"envs":{},"deps":{},"cmds":["XeTeXtracingfonts","XeTeXfonttype","XeTeXfirstfontchar","XeTeXlastfontchar","XeTeXglyph","XeTeXcountglyphs","XeTeXglyphname","XeTeXglyphindex","XeTeXcharglyph","XeTeXglyphbounds","XeTeXuseglyphmetrics","XeTeXgenerateactualtext","XeTeXOTcountscripts","XeTeXOTscripttag","XeTeXOTcountlanguages","XeTeXOTlanguagetag","XeTeXOTcountfeatures","XeTeXOTfeaturetag","XeTeXcountfeatures","XeTeXfeaturecode","XeTeXfeaturename","XeTeXisexclusivefeature","XeTeXfindfeaturebyname","XeTeXcountselectors","XeTeXselectorcode","XeTeXselectorname","XeTeXisdefaultselector","XeTeXfindselectorbyname","XeTeXcountvariations","XeTeXvariation","XeTeXvariationname","XeTeXvariationmin","XeTeXvariationmax","XeTeXvariationdefault","XeTeXfindvariationbyname","Umathcode","Umathcodenum","Umathchar","Umathcharnum","Umathchardef","Umathcharnumdef","Udelcode","Udelcodenum","Udelimiter","Umathaccent","Uradical","XeTeXmathcode","XeTeXmathcodenum","XeTeXmathchar","XeTeXmathcharnum","XeTeXmathchardef","XeTeXmathcharnumdef","XeTeXdelcode","XeTeXdelcodenum","XeTeXdelimiter","XeTeXmathaccent","XeTeXradical","Uchar","Ucharcat","XeTeXinterchartokenstate","newXeTeXintercharclass","XeTeXcharclass","XeTeXinterchartoks","XeTeXinputnormalization","XeTeXinputencoding","XeTeXdefaultencoding","XeTeXdashbreakstate","XeTeXlinebreaklocale","XeTeXlinebreakskip","XeTeXlinebreakpenalty","XeTeXupwardsmode","XeTeXpicfile","XeTeXpdffile","XeTeXpdfpagecount","XeTeXprotrudechars","pdfpageheight","pdfpagewidth","pdfsavepos","pdflastxpos","pdflastypos","expanded","ifincsname","ifprimitive","primitive","shellescape","strcmp","normaldeviate","randomseed","setrandomseed","uniformdeviate","elapsedtime","resettimer","filedump","filemoddate","filesize","mdfivesum","pdfmapfile","pdfmapline","suppressfontnotfounderror","XeTeXversion","XeTeXrevision","creationdate","XeTeXhyphenatablelength","XeTeXinterwordspaceshaping"]}
-,
-"xetexko.sty":{"envs":["verticaltypesetting","vertical","horizontal"],"deps":["xetex.sty","fontspec.sty","kolabels-utf.sty","konames-utf.sty"],"cmds":["setmainhangulfont","setmainhanjafont","setsanshangulfont","setsanshanjafont","setmonohangulfont","setmonohanjafont","newhangulfontfamily","newhanjafontfamily","newhangulfontface","newhanjafontface","addhangulfontfeature","addhangulfontfeatures","addhanjafontfeature","addhanjafontfeatures","hangulfontspec","adhochangulfont","hanjafontspec","adhochanjafont","hanjabyhangulfont","xetexkofontregime","latinalphs","latinparens","latincolons","latinhyphens","latinpuncts","latincjksymbols","hangulalphs","hangulparens","hangulcolons","hangulhyphens","hangulpuncts","hangulcjksymbols","hanjaalphs","hanjaparens","hanjacolons","hanjahyphens","hanjapuncts","hanjacjksymbols","prevfontalphs","prevfontparens","prevfontcolons","prevfonthyphens","prevfontpuncts","prevfontcjksymbols","latinmarks","hangulmarks","hanjamarks","prevfontmarks","everyhangul","everyhanja","disablekoreanfonts","disablecjksymbolspacing","enablecjksymbolspacing","compresspunctuations","nocompresspunctuations","disablehangulspacing","disablehangulspacingandlinebreak","enablehangulspacingandlinebreak","verticaltypesetting","removeclassicspaces","typesetclassic","typesetmodern","inhibitglue","hangingpunctuations","hangingpunctuation","sethangingratio","unsethangingratio","setmathhangulfont","setmathhangulblock","jong","jung","rieul","dotemph","dotemphraise","dotemphchar","xetexkoulemsupport","hellipsis","chinese","japanese","Schinese","Tchinese","typesethorizontal","typesetvertical","vertlatin","XeKocatcodeofATchar","XeTeXcharclassAA","XeTeXcharclassAC","XeTeXcharclassAH","XeTeXcharclassAM","XeTeXcharclassAO","XeTeXcharclassAP","XeTeXcharclassBoundary","XeTeXcharclassCJ","XeTeXcharclassCL","XeTeXcharclassCM","XeTeXcharclassEX","XeTeXcharclassFS","XeTeXcharclassHG","XeTeXcharclassID","XeTeXcharclassIgnore","XeTeXcharclassIS","XeTeXcharclassJJ","XeTeXcharclassLD","XeTeXcharclassMD","XeTeXcharclassNS","XeTeXcharclassOP","XeTeXcharclassSY","XeTeXcharclassVC","xetexkocharraise","xetexkodefaulthangulfont","xetexkodefaulthanguloption","xetexkodefaulthanjafont","xetexkodefaulthanjaoption","xetexkohangulfont","xetexkohangulfontfamily","xetexkohanguloption","xetexkohanjafont","xetexkohanjafontfamily","xetexkohanjaoption","xetexkohu","xetexkointerhchar","xetexkomainhangulfont","xetexkomainhanguloption","xetexkomainhanjafont","xetexkomainhanjaoption","xetexkomathhangulfamily","xetexkomonohangulfont","xetexkomonohanguloption","xetexkomonohanjafont","xetexkomonohanjaoption","xetexkosanshangulfont","xetexkosanshanguloption","xetexkosanshanjafont","xetexkosanshanjaoption","XKinterhangulbreak","XKinterhanjabreak","hangulnums","hangulquotes","hanjanums","hanjaquotes","latinnums","latinquotes","prevfontnums","prevfontquotes"]}
-,
-"xevlna.sty":{"envs":{},"deps":["xetex.sty"],"cmds":["xevlnaDisable","xevlnaEnable","CSopenpunctuation","CSnonsyllabicpreposition","CSinterchartoks","CSnointerchartoks","PreCSpreposition","ExamineCSpreposition","ProcessCSpreposition","xevlnaXeTeXspace"]}
-,
-"xfakebold.sty":{"envs":{},"deps":["iftex.sty","pdfrender.sty","xkeyval.sty"],"cmds":["setBold","unsetBold"]}
-,
-"xfp.sty":{"envs":{},"deps":{},"cmds":["fpeval","inteval"]}
-,
-"xfrac.sty":{"envs":{},"deps":["expl3.sty","graphicx.sty","xparse.sty"],"cmds":["sfrac"]}
-,
-"xgreek.sty":{"envs":{},"deps":["xelistings.sty"],"cmds":["prefacename","bibname","chaptername","enclname","ccname","headtoname","pagename","seename","alsoname","proofname","glossaryname","anwtonos","katwtonos","koppa","sampi","Digamma","ddigamma","anoteleia","euro","permill","stigma","greeknumeral","Greeknumeral","atticnum","setlanguage","grtoday","Grtoday"]}
-,
-"xhfill.sty":{"envs":{},"deps":["xcolor.sty","calc.sty","xspace.sty"],"cmds":["xhrulefill","xrfill","xhrectanglefill","xdotfill"]}
-,
-"xifthen.sty":{"envs":{},"deps":["ifthen.sty","ifmtarg.sty"],"cmds":["isnamedefined","isempty","isequivalentto","isin","endswith","cnttest","dimtest","newtest"]}
-,
-"xindex.sty":{"envs":{},"deps":["xkeyval.sty","makeidx.sty","imakeidx.sty"],"cmds":["writeidx"]}
-,
-"xint.sty":{"envs":{},"deps":["xintcore.sty"],"cmds":["xintiLen","xintReverseDigits","xintRev","xintDecSplit","xintDecSplitL","xintDecSplitR","xintiiE","xintDSH","xintDSHr","xintDSx","xintiiEq","xintiiNotEq","xintiiGeq","xintiiGt","xintiiLt","xintiiGtorEq","xintiiLtorEq","xintiiIsZero","xintiiIsNotZero","xintiiIsOne","xintiiOdd","xintiiEven","xintiiMON","xintiiMMON","xintiiifSgn","xintiiifZero","xintiiifNotZero","xintiiifOne","xintiiifCmp","xintiiifEq","xintiiifGt","xintiiifLt","xintiiifOdd","xintiiSum","xintiiPrd","xintiiSquareRoot","xintiiSqrt","xintiiSqrtR","xintiiBinomial","xintiiPFactorial","xintiiMax","xintiiMin","xintiiMaxof","xintiiMinof","xintifTrueAelseB","xintifFalseAelseB","xintNOT","xintAND","xintOR","xintXOR","xintANDof","xintORof","xintXORof","xintiiGCD","xintiiLCM","xintiiGCDof","xintiiLCMof","xintLen","xintRandomDigits","xintXRandomDigits","xintiiRandRange","xintiiRandRangeAtoB","xintiiLogTen","xintSgnFork","xintBool","xintToggle","xintEightRandomDigits","xintRandBit","xintilen","xintiilogten","xintreversedigits","xintiie","xintdecsplit","xintdecsplitl","xintdecsplitr","xintdshr","xintdsh","xintdsx","xintiiifeq","xintiiifgt","xintiiiflt","xintiiiszero","xintiiisnotzero","xintiiisone","xintiiodd","xintiieven","xintiimon","xintiimmon","xintsgnfork","xintiiifsgn","xintiiifcmp","xintiiifzero","xintiiifnotzero","xintiiifone","xintiiifodd","xintand","xintor","xintandof","xintorof","xintxorof","xintiimax","xintiimin","xintiiminof","xintiisum","xintiiprd","xintiisquareroot","xintiisqrt","xintiibinomial","xintiipfactorial","xintiigcd","xintiigcdof","xintiilcm","xintiilcmof","xintrandomdigits","xintiirandrangeAtoB","xintiirandrange"]}
-,
-"xintbinhex.sty":{"envs":{},"deps":["xintkernel.sty"],"cmds":["xintDecToHex","xintDecToBin","xintHexToDec","xintBinToDec","xintBinToHex","xintHexToBin","xintCHexToBin","xintdectohex","xintdectobin","xinthextodec","xintbintodec","xintbintohex","xinthextobin","xintchextobin"]}
-,
-"xintcfrac.sty":{"envs":{},"deps":["xintfrac.sty"],"cmds":["xintCFrac","xintGCFrac","xintGGCFrac","xintGCtoGCx","xintFtoC","xintFtoCs","xintFtoCx","xintFtoGC","xintFGtoC","xintFtoCC","xintCstoF","xintCtoF","xintGCtoF","xintCstoCv","xintCtoCv","xintGCtoCv","xintFtoCv","xintFtoCCv","xintCntoF","xintGCntoF","xintCntoCs","xintCntoGC","xintGCntoGC","xintCstoGC","xintiCstoF","xintiGCtoF","xintiCstoCv","xintiGCtoCv","xintGCtoGC","xintcfrac","xintgcfrac","xintggcfrac","xintgctogcx","xintftocs","xintftocx","xintftoc","xintftogc","xintfgtoc","xintftocc","xintcstof","xintctof","xinticstof","xintgctof","xintigctof","xintcstocv","xintctocv","xinticstocv","xintgctocv","xintigctocv","xintftocv","xintftoccv","xintcntof","xintgcntof","xintcntocs","xintcntogc","xintgcntogc","xintcstogc","xintgctogc"]}
-,
-"xintcore.sty":{"envs":{},"deps":["xintkernel.sty"],"cmds":["xintiNum","xintDouble","xintHalf","xintInc","xintDec","xintDSL","xintDSR","xintDSRr","xintFDg","xintLDg","xintiiSgn","xintiiOpp","xintiiAbs","xintiiAdd","xintiiCmp","xintiiSub","xintiiMul","xintiiSqr","xintiiPow","xintiiFac","xintiiDivision","xintiiQuo","xintiiRem","xintiiDivRound","xintiiDivTrunc","xintiiModTrunc","xintiiDivMod","xintiiDivFloor","xintiiMod","xintNum","xintinum","xintnum","xintiisgn","xintiiopp","xintiiabs","xintfdg","xintldg","xintdouble","xinthalf","xintinc","xintdec","xintdsl","xintdsr","xintdsrr","xintiiadd","xintiicmp","xintiisub","xintiimul","xintiidivision","xintiiquo","xintiirem","xintiidivround","xintiidivtrunc","xintiimodtrunc","xintiidivmod","xintiidivfloor","xintiimod","xintiisqr","xintiipow","xintiifac"]}
-,
-"xintexpr.sty":{"envs":{},"deps":["xintfrac.sty","xinttools.sty","xinttrig.sty","xintlog.sty"],"cmds":["xintexpr","xintthe","xintthealign","xinttheexpr","xintexprSafeCatcodes","xintexprRestoreCatcodes","xintexpro","xintiexpro","xintfloatexpro","xintiiexpro","xintDigits","xintSetDigits","xintfracSetDigits","xintiexpr","xinttheiexpr","xintiiexpr","xinttheiiexpr","xintboolexpr","xinttheboolexpr","xintfloatexpr","xintthefloatexpr","xinteval","xintieval","xintiieval","xintfloateval","xintthecoords","xintthespaceseparated","xintifboolexpr","xintifboolfloatexpr","xintifbooliiexpr","xintifsgnexpr","xintifsgnfloatexpr","xintifsgniiexpr","xintNewExpr","xintNewIIExpr","xintNewFloatExpr","xintNewIExpr","xintNewBoolExpr","xintdefvar","xintdefiivar","xintdeffloatvar","xintunassignvar","xintnewdummy","xintensuredummy","xintrestorevariable","xintrestorevariablesilently","xintdeffunc","xintdefiifunc","xintdeffloatfunc","xintdefufunc","xintdefiiufunc","xintdeffloatufunc","xintunassignexprfunc","xintunassigniiexprfunc","xintunassignfloatexprfunc","xintNewFunction","XINTfstop","xintreloadscilibs","XINTdigitsormax","xintexpralignbegin","xintexpralignend","xintexpralignlinesep","xintexpralignleftbracket","xintexpralignrightbracket","xintexpralignleftsep","xintexpralignrightsep","xintexpraligninnersep","XINTexprprint","XINTiexprprint","XINTiiexprprint","XINTflexprprint","xintbareeval","xintbarefloateval","xintbareiieval","xintthebareeval","xintthebarefloateval","xintthebareiieval","xintthebareroundedfloateval","XINTusenoargfunc","XINTusefunc","XINTuseufunc","XINTusemacrofunc","xintNEprinthook","xintexprPrintOne","xintiexprPrintOne","xintiiexprPrintOne","xintfloatexprPrintOne","xintboolexprPrintOne","xintexprEmptyItem","xintSeqA","xintiiSeqA","xintSeqB"]}
-,
-"xintfrac.sty":{"envs":{},"deps":["xint.sty"],"cmds":["xintTeXFromSci","xintTeXFrac","xintTeXsignedFrac","xintTeXOver","xintTeXFromScifracmacro","xintTeXsignedOver","xintLen","xintNum","xintRaw","xintRawBraced","xintiLogTen","xintNumerator","xintDenominator","xintRawWithZeros","xintREZ","xintIrr","xintPIrr","xintJrr","xintPRaw","xintSPRaw","xintFracToSci","xintFracToDecimal","xintDecToStringREZ","xintDecToString","xintTrunc","xintXTrunc","xintTFrac","xintRound","xintFloor","xintCeil","xintiTrunc","xintTTrunc","xintiRound","xintiFloor","xintiCeil","xintE","xintCmp","xintEq","xintNotEq","xintGeq","xintGt","xintLt","xintGtorEq","xintLtorEq","xintIsZero","xintIsNotZero","xintIsOne","xintOdd","xintEven","xintifSgn","xintifZero","xintifNotZero","xintifOne","xintifOdd","xintifCmp","xintifEq","xintifGt","xintifLt","xintifInt","xintIsInt","xintSgn","xintSignBit","xintOpp","xintInv","xintAbs","xintAdd","xintSub","xintMul","xintDiv","xintDivFloor","xintMod","xintDivMod","xintDivTrunc","xintModTrunc","xintDivRound","xintSqr","xintPow","xintFac","xintBinomial","xintPFactorial","xintMax","xintMin","xintMaxof","xintMinof","xintSum","xintPrd","xintGCD","xintLCM","xintGCDof","xintLCMof","xintDigits","xinttheDigits","xinttheGuardDigits","xintSetDigits","xintFloat","xintFloatBraced","xintFloatZero","xintFloatE","xintFloatSciExp","xintFloatSignificand","xintPFloat","xintPFloatZero","xintPFloatE","xintPFloatNoSciEmax","xintPFloatNoSciEmin","xintPFloatIntSuffix","xintPFloatLengthOneSuffix","xintPFloatMinTrimmed","xintFloatToDecimal","xintFloatAdd","xintFloatSub","xintFloatMul","xintFloatSqr","xintFloatDiv","xintFloatPow","xintFloatPower","xintFloatSqrt","xintFloatFac","xintFloatBinomial","xintFloatPFactorial","xintifFloatInt","xintFloatIsInt","xintFloatIntType","XINTinFloat","XINTinFloatS","XINTinFloatFrac","XINTinFloatAdd","XINTinFloatSub","XINTinFloatMul","XINTinFloatSqr","XINTinFloatInv","XINTinFloatDiv","XINTinFloatPow","XINTinFloatPower","XINTinFloatFac","XINTinFloatPFactorial","XINTinFloatBinomial","XINTinFloatSqrt","XINTinFloatE","XINTinFloatMod","XINTinFloatDivFloor","XINTinFloatDivMod","XINTinRandomFloatS","XINTinRandomFloatSixteen","XINTFloatiLogTen","XINTinFloatMaxof","XINTinFloatMinof","XINTinFloatSum","XINTinFloatPrd","XINTinFloatdigits","XINTinFloatSdigits","XINTFloatiLogTendigits","XINTinRandomFloatSdigits","XINTinFloatFacdigits","XINTinFloatSqrtdigits","xintlen","xinteq","xintifeq","xintgt","xintlt","xintgtoreq","xintltoreq","xintiszero","xintisnotzero","xintodd","xinteven","xintifsgn","xintifcmp","xintifgt","xintiflt","xintifzero","xintifnotzero","xintifone","xintifodd","xintraw","xintrawbraced","xintilogten","xintpraw","xintspraw","xintrawwithzeros","xintdectostring","xintdectostringrez","xintfloor","xintifloor","xintceil","xinticeil","xintnumerator","xintdenominator","xintsignedfrac","xintrez","xinte","xintirr","xintpirr","xintifint","xintisint","xintjrr","xinttfrac","xinttrunc","xintitrunc","xintttrunc","xintround","xintiround","xintadd","xintsub","xintsum","xintmul","xintsqr","xintipow","xintpow","xintfac","xintbinomial","xintipfactorial","xintpfactorial","xintprd","xintdiv","xintdivfloor","xintdivtrunc","xintdivround","xintmodtrunc","xintdivmod","xintmod","xintisone","xintgeq","xintmax","xintmaxof","xintmin","xintminof","xintcmp","xintabs","xintopp","xintinv","xintsgn","xintsignbit","xintgcd","xintgcdof","xintlcm","xintlcmof","XINTdigits","XINTguarddigits","xintfloat","xintfloatbraced","xintpfloatsciexp","xintfloatsignificand","XINTinfloat","XINTinfloatS","XINTfloatilogten","xintpfloat","xintfloattodecimal","XINTinfloatfrac","xintfloatadd","XINTinfloatadd","xintfloatsub","XINTinfloatsub","xintfloatmul","XINTinfloatmul","xintfloatsqr","XINTinfloatsqr","xintfloatdiv","XINTinfloatdiv","xintfloatpow","XINTinfloatpow","xintfloatpower","XINTinfloatpower","xintfloatfac","XINTinfloatfac","xintfloatpfactorial","XINTinfloatpfactorial","xintfloatbinomial","XINTinfloatbinomial","xintfloatsqrt","XINTinfloatsqrt","xintfloate","XINTinfloate","XINTinfloatmod","XINTinfloatdivfloor","XINTinfloatdivmod","xintiffloatint","xintfloatisint","xintfloatinttype","XINTinrandomfloatS","xintTeXfromSci"]}
-,
-"xintgcd.sty":{"envs":{},"deps":["xint.sty","xinttools.sty"],"cmds":["xintBezout","xintEuclideAlgorithm","xintBezoutAlgorithm","xintTypesetEuclideAlgorithm","xintTypesetBezoutAlgorithm","xintbezout","xinteuclidealgorithm","xintbezoutalgorithm"]}
-,
-"xintkernel.sty":{"envs":{},"deps":{},"cmds":["XINTrestorecatcodes","XINTrestorecatcodesendinput","XINTsetcatcodes","XINTsetupcatcodes","xintdothis","xintorthat","xintodef","xintoodef","xintfdef","odef","oodef","fdef","xintReverseOrder","xintreverseorder","xintLength","xintlength","xintFirstItem","xintfirstitem","xintLastItem","xintlastitem","xintFirstOne","xintfirstone","xintLastOne","xintlastone","xintLengthUpTo","xintlengthupto","xintReplicate","xintreplicate","xintGobble","xintgobble","xintUniformDeviate","xintMessage","ifxintverbose","xintverbosetrue","xintverbosefalse","ifxintglobaldefs","xintglobaldefstrue","xintglobaldefsfalse","xint","XINT"]}
-,
-"xintlog.sty":{"envs":{},"deps":["poormanlog.sty"],"cmds":["PoorManExp","PoorManLogBaseTen","PoorManLog","PoorManPowerOfTen","XINTinFloatExp","XINTinFloatLog","XINTinFloatLogTen","XINTinFloatPowTen","XINTinFloatSciPow","xintreloadxintlog","poormanlogbaseten","poormanpoweroften","XINTinfloatexp","XINTinfloatlog","XINTinfloatlogten","XINTinfloatpowten","XINTinfloatscipow"]}
-,
-"xintseries.sty":{"envs":{},"deps":["xintfrac.sty"],"cmds":["xintSeries","xintiSeries","xintRationalSeries","xintRationalSeriesX","xintPowerSeries","xintPowerSeriesX","xintFxPtPowerSeries","xintFxPtPowerSeriesX","xintFloatPowerSeries","xintFloatPowerSeriesX","xintseries","xintiseries","xintpowerseries","xintpowerseriesx","xintratseries","xintratseriesx","xintfxptpowerseries","xintfxptpowerseriesx","xintfloatpowerseries","xintfloatpowerseriesx"]}
-,
-"xinttools.sty":{"envs":{},"deps":["xintkernel.sty"],"cmds":["xintgodef","xintgoodef","xintgfdef","xintRevWithBraces","xintrevwithbraces","xintRevWithBracesNoExpand","xintrevwithbracesnoexpand","xintZapFirstSpaces","xintzapfirstspaces","xintZapLastSpaces","xintzaplastspaces","xintZapSpaces","xintzapspaces","xintZapSpacesB","xintzapspacesb","xintCSVtoList","xintcsvtolist","xintCSVtoListNoExpand","xintcsvtolistnoexpand","xintCSVtoListNonStripped","xintcsvtolistnonstripped","xintCSVtoListNonStrippedNoExpand","xintcsvtolistnonstrippednoexpand","xintNthElt","xintnthelt","xintNthEltNoExpand","xintntheltnoexpand","xintNthOnePy","xintnthonepy","xintNthOnePyNoExpand","xintnthonepynoexpand","xintKeep","xintkeep","xintKeepNoExpand","xintkeepnoexpand","xintKeepUnbraced","xintkeepunbraced","xintKeepUnbracedNoExpand","xintkeepunbracednoexpand","xintTrim","xinttrim","xintTrimNoExpand","xinttrimnoexpand","xintTrimUnbraced","xinttrimunbraced","xintTrimUnbracedNoExpand","xinttrimunbracednoexpand","xintListWithSep","xintlistwithsep","xintListWithSepNoExpand","xintlistwithsepnoexpand","xintApply","xintapply","xintApplyNoExpand","xintapplynoexpand","xintApplyUnbraced","xintapplyunbraced","xintApplyUnbracedNoExpand","xintapplyunbracednoexpand","xintSeq","xintseq","xintloop","xintbreakloop","xintbreakloopanddo","xintloopskiptonext","xintiloop","xintiloopindex","xintbracediloopindex","xintouteriloopindex","xintbracedouteriloopindex","xintbreakiloop","xintbreakiloopanddo","xintiloopskiptonext","xintiloopskipandredo","xintApplyInline","xintFor","xintifForFirst","xintifForLast","xintBreakFor","xintBreakForAndDo","xintegers","xintintegers","xintdimensions","xintrationals","xintForpair","xintForthree","xintForfour","xintAssign","to","xintAssignArray","xintDigitsOf","xintRelaxArray","xintNthEltPy","xintReverse","xintZip","xintCSVLength","xintCSVKeep","xintCSVKeepx","xintCSVTrim","xintCSVNthEltPy","xintCSVReverse","xintCSVFirstItem","xintCSVLastItem"]}
-,
-"xinttrig.sty":{"envs":{},"deps":{},"cmds":["xintCosd","XINTinFloatSdigitsormax","xintreloadxinttrig","xintSind","xintcosd","XINTinFloatdigitsormax","xintsind","XINTtrigendinput"]}
-,
-"xistercian.sty":{"envs":{},"deps":["pgf.sty","expkv-opt.sty"],"cmds":["cistercian","cisterciannum","cisterciannumE","cisterciansetup","cistercianredraw","cistercianredrawlazy","cistercianstyle"]}
-,
-"xkcdcolors.sty":{"envs":{},"deps":["xcolor.sty"],"cmds":{}}
-,
-"xkeyval.sty":{"envs":{},"deps":{},"cmds":["setkeys","setrmkeys","savevalue","gsavevalue","savekeys","gsavekeys","delsavekeys","gdelsavekeys","unsavekeys","gunsavekeys","global","usevalue","presetkeys","gpresetkeys","delpresetkeys","gdelpresetkeys","unpresetkeys","gunpresetkeys","DeclareOptionX","ExecuteOptionsX","ProcessOptionsX","XKeyValLoaded","XKVcatcodes","XKeyValUtilsLoaded","XKeyValUtilsCatcodes"]}
-,
-"xkvview.sty":{"envs":{},"deps":["xkeyval.sty","longtable.sty"],"cmds":["xkvview"]}
-,
-"xlop.sty":{"envs":{},"deps":{},"cmds":["opset","opadd","opmanyadd","opsub","opmul","opdiv","opidiv","opcolumnwidth","oplineheight","opcopy","opprint","opdisplay","oplput","oprput","ophline","opvline","opexport","opwidth","opintegerwidth","opdecimalwidth","opunzero","opinteger","opdecimal","opgetdigit","opsetdigit","opgetintegerdigit","opsetintegerdigit","opgetdecimaldigit","opsetdecimaldigit","opcmp","ifopgt","opgttrue","opgtfalse","ifopge","opgetrue","opgefalse","ifople","opletrue","oplefalse","ifoplt","oplttrue","opltfalse","ifopeq","opeqtrue","opeqfalse","ifopneq","opneqtrue","opneqfalse","opgcd","opdivperiod","opcastingoutnines","opcastingoutelevens","oppower","opfloor","opceil","opround","opsqrt","opgfsqrt","opexpr","opabs","opneg","fileversion","filedate","xlopLoaded","opAtCode","opHatCode"]}
-,
-"xltabular.sty":{"envs":["xltabular"],"deps":["tabularx.sty","ltablex.sty"],"cmds":["endfirstfoot","endlastfoot","endfirsthead","endfoot","endhead"]}
-,
-"xltxtra.sty":{"envs":{},"deps":["xetex.sty","realscripts.sty"],"cmds":["textsuperscript","textsubscript","realsubscript","realsuperscript","fakesubscript","fakesuperscript","vfrac","namedglyph","showhyphens","XeTeX","XeLaTeX"]}
-,
-"xmpincl.sty":{"envs":{},"deps":["ifpdf.sty","ifthen.sty"],"cmds":["includexmp"]}
-,
-"xmpmulti.sty":{"envs":{},"deps":["keyval.sty"],"cmds":["multiinclude"]}
-,
-"xob-dotemph.sty":{"envs":{},"deps":["xparse.sty"],"cmds":["circemph","useremph","useremphraisedim","useremphchar","useremphstarblack","useremphstarwhite"]}
-,
-"xob-font.sty":{"envs":{},"deps":["etoolbox.sty","fontspec.sty","kotex.sty","ob-unfontsdefault.sty"],"cmds":["setkomainfont","setkosansfont","setkomonofont","setobmainfont","setobsansfont","setobmonofont","compressbnms","setmonoscale","setkorfont","setkorfontxob","setxoblatinfont","setkormainfont","setkorsansfont","setkormonofont","setkorfontorigmethod","setkorfontorigstar"]}
-,
-"xparse.sty":{"envs":{},"deps":{},"cmds":["NewDocumentCommand","RenewDocumentCommand","ProvideDocumentCommand","DeclareDocumentCommand","NewDocumentEnvironment","RenewDocumentEnvironment","ProvideDocumentEnvironment","DeclareDocumentEnvironment","NewExpandableDocumentCommand","RenewExpandableDocumentCommand","ProvideExpandableDocumentCommand","DeclareExpandableDocumentCommand","IfNoValueTF","IfNoValueT","IfNoValueF","IfValueTF","IfValueT","IfValueF","IfBooleanTF","IfBooleanT","IfBooleanF","BooleanFalse","BooleanTrue","ProcessedArgument","ReverseBoolean","SplitArgument","SplitList","ProcessList","TrimSpaces","GetDocumentCommandArgSpec","GetDocumentEnvironmentArgSpec","ShowDocumentCommandArgSpec","ShowDocumentEnvironmentArgSpec"]}
-,
-"xpatch.sty":{"envs":{},"deps":["expl3.sty","etoolbox.sty","patch-common.sty"],"cmds":{}}
-,
-"xpiano.sty":{"envs":{},"deps":["expl3.sty","xparse.sty","xcolor.sty"],"cmds":["keyboard","keyboardsetup","Keyboard"]}
-,
-"xpicture.sty":{"envs":["Picture","xpicture"],"deps":["curve2e.sty","xcolor.sty","calculus.sty","colortbl.sty","pdfcolmk.sty"],"cmds":["pictcolor","referencesystem","changereferencesystem","translateorigin","rotateaxes","symmetrize","standardreferencesystem","radiansangles","degreesangles","cartesianreference","polarreference","draftPictures","cartesianaxes","axescolor","axesthickness","xunitdivisions","yunitdivisions","internalaxes","externalaxes","axeslabelcolor","axeslabelsize","axeslabelmathversion","axeslabelmathalphabet","axislabelsep","xlabelpos","ylabelpos","ticssize","secundaryticssize","ticsthickness","ticscolor","maketics","makenotics","makelabels","makenolabels","plotxtic","plotytic","printxlabel","printylabel","printxticlabel","printyticlabel","plotxtics","plotytics","printxlabels","printylabels","printxticslabels","printyticslabels","cartesiangrid","gridcolor","secundarygridcolor","gridthickness","secundarygridthickness","polargrid","runitdivisions","degreespolarlabels","radianspolarlabels","rlabelpos","Put","cPut","rPut","Pictlabelsep","defaultPut","highestlabel","multiPut","multicPut","multirPut","multiPlot","multicPlot","multirPlot","xLINE","xVECTOR","xtrivVECTOR","arrowsize","xline","xvector","xtrivvector","zerovector","zerotrivvector","Polyline","Polygon","regularPolygon","Circle","Ellipse","Hyperbola","lHyperbola","rHyperbola","Parabola","defaultplotdivs","xArc","circularArc","ellipticArc","rhyperbolicArc","lhyperbolicArc","parabolicArc","PlotFunction","PlotPointsOfFunction","PlotParametricFunction","pointmarkdiam","pointmark","qCurve","PlotQuadraticCurve","PlotxyDyData","bgfalse","bgtrue","degreesfalse","degreestrue","draftfalse","drafttrue","Dxone","Dxzero","Dyone","Dyzero","gridfalse","gridtrue","ifbg","ifdegrees","ifdraft","ifgrid","ifinzeroaxes","iflabels","ifpolar","ifrputstar","iftics","ifticslabelsgrid","inzeroaxesfalse","inzeroaxestrue","labelsfalse","labelstrue","makegrid","makenogrid","polarcoor","polarfalse","polartrue","qCOS","qSIN","qUNITVECTOR","refsysPoint","refsyspPoint","refsyspVector","refsysVector","refsysxyPoint","refsysxyVector","rputstarfalse","rputstartrue","strline","themultiput","ticsfalse","ticslabelsgridfalse","ticslabelsgridtrue","ticstrue","xone","xzero","yone","yzero"]}
-,
-"xpinyin.sty":{"envs":["pinyinscope"],"deps":["xparse.sty","CJKutf8.sty"],"cmds":["xpinyin","pinyin","setpinyin","xpinyinsetup","disablepinyin","enablepinyin"]}
-,
-"xprintlen.sty":{"envs":{},"deps":["fp.sty"],"cmds":["printlen","CMarg","CMspace","CMunit","CMres","defaultsignificant","defaultunit","printlenFirstParameter","printlenCalculate"]}
-,
-"xpunctuate.sty":{"envs":{},"deps":["xspace.sty"],"cmds":["xperiod","xcomma","xperiodcomma","xperiodafter","xcommaafter","xperiodcommaafter"]}
-,
-"xr-hyper.sty":{"envs":{},"deps":{},"cmds":["externaldocument","externalcitedocument"]}
-,
-"xr.sty":{"envs":{},"deps":{},"cmds":["externaldocument","externalcitedocument"]}
-,
-"xsavebox.sty":{"envs":["xlrbox","xlrbox*"],"deps":["pdfbase.sty"],"cmds":["xsbox","xsavebox","xusebox"]}
-,
-"xsim.sty":{"envs":["exercise","solution"],"deps":["l3keys2e.sty","xsimverb.sty","array.sty","booktabs.sty","translations.sty"],"cmds":["xsimsetup","DeclareExerciseType","numberofexercises","DeclareExerciseParameter","SetExerciseParameter","SetExerciseParameters","DeclareExerciseProperty","DeclareExercisePropertyAlias","DeclareExerciseGoal","TotalExerciseTypeGoal","TotalExerciseTypeGoals","TotalExerciseGoal","TotalExerciseGoals","AddtoExerciseTypeGoal","AddtoExerciseTypeGoalPrint","AddtoExerciseGoal","AddtoExerciseGoalPrint","ExerciseGoalValuePrint","printgoal","printpoints","printtotalpoints","addpoints","points","printbonus","printtotalbonus","addbonus","DeclareExerciseTagging","ProvideExerciseTagging","printexercise","xprintexercise","DeclareExerciseCollection","activatecollection","deactivatecollection","collectexercises","collectexercisesstop","printcollection","printrandomexercises","printsolutionstype","printsolutions","printallsolutions","printsolution","xprintsolution","gradingtable","IfExerciseGoalTF","IfExerciseGoalT","IfExerciseGoalF","IfExerciseGoalSingularTF","IfExerciseGoalSingularT","IfExerciseGoalSingularF","IfExerciseTypeGoalsSumTF","IfExerciseTypeGoalsSumT","IfExerciseTypeGoalsSumF","IfExerciseGoalsSumTF","IfExerciseGoalsSumT","IfExerciseGoalsSumF","IfExercisePropertyExistTF","IfExercisePropertyExistT","IfExercisePropertyExistF","IfExercisePropertySetTF","IfExercisePropertySetT","IfExercisePropertySetF","GetExerciseProperty","GetExercisePropertyTF","GetExercisePropertyT","GetExercisePropertyF","GetExerciseBody","GetExerciseIdForProperty","GetExerciseTypeForProperty","SetExerciseProperty","SetExpandedExerciseProperty","ExerciseSetProperty","ExerciseSetExpandedProperty","IfExerciseBooleanPropertyTF","IfExerciseBooleanPropertyT","IfExerciseBooleanPropertyF","GetExerciseAliasProperty","SaveExerciseProperty","GlobalSaveExerciseProperty","ExercisePropertyIfSetTF","ExercisePropertyIfSetT","ExercisePropertyIfSetF","ExercisePropertyGet","ExercisePropertyGetAlias","ExercisePropertySave","ExercisePropertyGlobalSave","GetExerciseParameter","GetExerciseParameterTF","GetExerciseParameterT","GetExerciseParameterF","GetExerciseName","GetExerciseHeadingF","ExerciseParameterGet","IfExerciseParameterSetTF","IfExerciseParameterSetT","IfExerciseParameterSetF","ExerciseParameterIfSetTF","ExerciseParameterIfSetT","ExerciseParameterIfSetF","ForEachExerciseTag","ListExerciseTags","UseExerciseTags","IfExerciseTagSetTF","IfExerciseTagSetT","IfExerciseTagSetF","IfExerciseTopicSetTF","IfExerciseTopicSetT","IfExerciseTopicSetF","UseExerciseTemplate","ExerciseType","ExerciseID","ExerciseText","ExerciseCollection","numberofusedexercises","ExerciseTableType","IfInsideSolutionTF","IfInsideSolutionT","IfInsideSolutionF","IfSolutionPrintTF","IfSolutionPrintT","IfSolutionPrintF","IfExistSolutionTF","IfExistSolutionT","IfExistSolutionF","ForEachPrintedExerciseByType","ForEachUsedExerciseByType","ForEachUsedExerciseByOrder","ForEachPrintedExerciseByID","ForEachUsedExerciseByID","XSIMprint","XSIMxprint","XSIMtranslate","XSIMexpandcode","XSIMifchapterTF","XSIMifchapterT","XSIMifchapterF","XSIMmixedcase","XSIMputright","XSIMifeqTF","XSIMifeqT","XSIMifeqF","XSIMifblankTF","XSIMifblankT","XSIMifblankF","XSIMatbegindocument","XSIMatenddocument","DeclareExerciseEnvironmentTemplate","DeclareExerciseHeadingTemplate","DeclareExerciseTableTemplate","xsimstyle","loadxsimstyle","DeclareExerciseTranslation","DeclareExerciseTranslations","ForEachExerciseTranslation","blank","ExerciseTableCode","numberofcolumns","theexercise","ParameterValue","PropertyValue","DeclareGradeDistribution","GetGradeRequirementForGoals","GetGradeRequirementForGoal","GetGradeRequirement","examspace","goalsforgrade","pointsforgrade","printforexercises","totalgoalforgrade"]}
-,
-"xsimverb.sty":{"envs":{},"deps":["l3keys2e.sty"],"cmds":["XSIMfilewritestart","XSIMfilewritestop","XSIMsetfilebegin","XSIMsetfilebeginX","XSIMsetfileend","XSIMsetfileendX","XSIMgobblechars"]}
-,
-"xskak.sty":{"envs":{},"deps":["skak.sty","xifthen.sty","etoolbox.sty","chessboard.sty"],"cmds":["newchessgame","resumechessgame","xskaknewpgninfo","xskakgetgame","xskakget","xskakcomment","xskakexportgames","xskakendgamedata","xskakcurrentgameid","xskakset","xskaktestmoveid","xskakloop","xskakenpassanttext","mainline","variation","xskaknewstyleitem","xskaknewstyle","xskakaddtostyle","printchessgame","chessdiagramname","xskakaddtoid","ifxskakboolcapture","ifxskakboolcastling","ifxskakboolcheck","ifxskakboolcomment","ifxskakboolenpassant","ifxskakboollongcastling","ifxskakboolmate","ifxskakboolnag","ifxskakboolpromotion","ifxskakboolvar","ifxskakpdfmatch","ParseCastlingAA","skaklongmoves","variationmovemode","xskakboolcapturefalse","xskakboolcapturetrue","xskakboolcastlingfalse","xskakboolcastlingtrue","xskakboolcheckfalse","xskakboolchecktrue","xskakboolcommentfalse","xskakboolcommenttrue","xskakboolenpassantfalse","xskakboolenpassanttrue","xskakboollongcastlingfalse","xskakboollongcastlingtrue","xskakboolmatefalse","xskakboolmatetrue","xskakboolnagfalse","xskakboolnagtrue","xskakboolpromotionfalse","xskakboolpromotiontrue","xskakboolvarfalse","xskakboolvartrue","xskakmovehyphen","xskakpdfmatchfalse","xskakpdfmatchtrue"]}
-,
-"xspace.sty":{"envs":{},"deps":{},"cmds":["xspace","xspaceaddexceptions","xspaceremoveexception"]}
-,
-"xstring.sty":{"envs":{},"deps":{},"cmds":["IfSubStr","IfSubStrBefore","IfSubStrBehind","IfBeginWith","IfEndWith","IfInteger","IfDecimal","integerpart","decimalpart","afterinteger","afterdecimal","IfStrEq","IfEq","IfStrEqCase","IfEqCase","StrBefore","StrBehind","StrCut","StrBetween","StrSubstitute","StrDel","StrGobbleLeft","StrLeft","StrGobbleRight","StrRight","StrChar","StrMid","StrLen","StrCount","StrPosition","StrCompare","comparenormal","comparestrict","savecomparemode","restorecomparemode","fullexpandarg","noexpandarg","normalexpandarg","expandarg","saveexpandmode","restoreexpandmode","noexploregroups","exploregroups","saveexploremode","restoreexploremode","StrFindGroup","groupID","StrSplit","verbtocs","setverbdelim","tokenize","StrExpand","noexpandingroups","expandingroups","scancs","StrRemoveBraces","restorexstringcatcode","xstringdate","xstringname","xstringversion"]}
-,
-"xt_capts.sty":{"envs":{},"deps":{},"cmds":["DeclareCaption","ProvideCaption","UseCaption","DeclareCaptionDefault","ProvideCaptionDefault","BeforeAtBeginDocument","AfterAtBeginDocument","BeforeAtEndDocument"]}
-,
-"xtab.sty":{"envs":["mpxtabular"],"deps":{},"cmds":["bottomcaption","notablelasthead","shrinkheight","tablecaption","tablefirsthead","tablehead","tablelasthead","tablelasttail","tabletail","topcaption","xentrystretch","PWSTcapht","PWSTlastpage","PWSTcurpage","PWSTpenultimate","PWSTtempc","PWSTlines","PWSThead","PWSTlasthead","iffirstcall","firstcalltrue","firstcallfalse","sttraceon","sttraceoff","setSTheight","PWSTcalchtlines","PWSTcalnextpageht","PWSTinit","PWSToplastpagenum","PWSTsethead"]}
-,
-"xtemplate.sty":{"envs":{},"deps":{},"cmds":["DeclareObjectType","DeclareTemplateInterface","KeyValue","DeclareTemplateCode","AssignTemplateKeys","DeclareInstance","IfInstanceExistT","IfInstanceExistF","IfInstanceExistTF","DeclareInstanceCopy","UseInstance","UseTemplate","EditTemplateDefaults","EditInstance","DeclareRestrictedTemplate","SetTemplateKeys","ShowInstanceValues","ShowTemplateCode","ShowTemplateDefaults","ShowTemplateInterface","ShowTemplateVariables"]}
-,
-"xucuri.sty":{"envs":["xucr"],"deps":{},"cmds":["xucr","fxucr","pxucr"]}
-,
-"xurl.sty":{"envs":{},"deps":["url.sty"],"cmds":["useOriginalUrlSetting"]}
-,
-"xxcolor.sty":{"envs":["colormixin"],"deps":["xcolor.sty"],"cmds":["colorcurrentmixin","newcolormixin","applycolormixins"]}
-,
-"xy.sty":{"envs":["xy"],"deps":["ifpdf.sty"],"cmds":["xyoption","xyrequire","xywithoption","xyeverywithoption","xyeveryrequest","afterPATH","afterPOS","AliasPattern","ar","arrowobject","cir","circleEdge","Col","CompileFixPoint","CompileMatrices","CompilePrefix","composite","connect","croplattice","crv","crvs","curve","curveobject","ddtwocell","defaultlatticebody","dir","Direction","dltwocell","drop","drtwocell","dtwocell","dumpPSdict","dutwocell","ellipse","endxy","entrymodifiers","everyentry","everyxy","frm","halfrootthree","halfroottwo","knotstyle","knotSTYLE","knotstyles","labelbox","labelmargin","labelstyle","latticeA","latticeB","latticebody","latticeX","latticeY","ldtwocell","lltwocell","LoadAllPatterns","LoadPattern","lowercurveobject","lrtwocell","ltwocell","lutwocell","MakeOutlines","maxTPICpoints","modmapobject","MovieSetup","MultipleDrivers","newdir","newgraphescape","newxycolor","newxypattern","NoCompileMatrices","NoEMspecials","NoOutlines","NoPScolor","NoPSframes","NoPSlines","NoPSrotate","NoPSspecials","NoPStiles","NoResizing","NoRules","NoTips","NoTPICframes","NoTPICspecials","object","objectbox","objectheight","objectmargin","objectstyle","objectwidth","OnlyOutlines","partroottwo","PATH","PATHaction","PATHafterPOS","POS","qspline","rdtwocell","rectangleEdge","restore","rltwocell","Row","rrtwocell","rtwocell","rutwocell","save","scene","SelectTips","ShowOutlines","SilentMatrices","SloppyCurves","splinetolerance","turnradius","twocell","twocellhead","twocellstyle","twocelltail","txt","udtwocell","ultwocell","uppercurveobject","urtwocell","UseAllTwocells","UseCompositeMaps","UseCrayolaColors","UseCurvedFrames","UseEMspecials","UseFontFrames","UseHalfTwocells","UsePatternFile","UsePScolor","UsePSframes","UsePSheader","UsePSlines","UsePSrotate","UsePSspecials","UsePStiles","UseResizing","UseRules","UseSingleDriver","UseTips","UseTPICframes","UseTPICspecials","UseTwocells","utwocell","uutwocell","xtwocell","xy","xyatipfont","xybox","xybsqlfont","xybtipfont","xycircfont","xycircle","xycompile","xycompileto","xydashfont","xydate","xyecho","xygraph","xyignore","xyimport","xylattice","xymatrix","xymatrixcolsep","xymatrixcompile","xymatrixnocompile","xymatrixrowsep","xypolygon","xypolyline","xypolyname","xypolynode","xypolynum","xyprovide","xyPSdefaultdict","xyquiet","xyReloadDrivers","xyresetcatcodes","xyShowDrivers","xytracing","xyverbose","xyversion","zeroDivideLimit"]}
-,
-"xymtex.sty":{"envs":{},"deps":["epic.sty","chemstr.sty","carom.sty","hetarom.sty","hetaromh.sty","lowcycle.sty","ccycle.sty","hcycle.sty","aliphat.sty","locant.sty","polymers.sty","methylen.sty","fusering.sty","sizeredc.sty","steroid.sty","lewisstruc.sty","bondcolor.sty","assurelatexmode.sty","chemist.sty"],"cmds":{}}
-,
-"xymtexpdf.sty":{"envs":{},"deps":["epic.sty","chemstr.sty","carom.sty","hetarom.sty","hetaromh.sty","lowcycle.sty","ccycle.sty","hcycle.sty","aliphat.sty","locant.sty","polymers.sty","methylen.sty","fusering.sty","sizeredc.sty","steroid.sty","lewisstruc.sty","bondcolor.sty","assurelatexmode.sty","xymtx-pdf.sty","chmst-pdf.sty"],"cmds":{}}
-,
-"xymtx-pdf.sty":{"envs":{},"deps":["chemstr.sty","tikz.sty","pgfcore.sty","xcolor.sty","tikzlibrarydecorations.pathmorphing.sty","tikzlibrarybackgrounds.sty","tikzlibraryfit.sty","tikzlibrarycalc.sty"],"cmds":["black","blue","cyan","dashhasheddash","green","HashWedgeAsSubst","HashWedgeAsSubstPDF","HashWedgeAsSubstX","HashWedgeAsSubstXPDF","ifsizereduction","magenta","PutBondLine","PutDashedBond","putRoundArrow","putRoundArrowPDF","red","setxymtxpdf","sizereductionfalse","sizereductiontrue","thickLineWidth","thinLineWidth","WavyAsSubst","WavyAsSubstPDF","WavyAsSubstX","WavyAsSubstXPDF","WedgeAsSubst","WedgeAsSubstPDF","WedgeAsSubstX","WedgeAsSubstXPDF","wedgehasheddash","wedgehashedwedge","white","xymcolor","yellow","BondBox","ifmolfront","molfrontfalse","molfronttrue","NumRound","PutBondBox","PutPDFdashed","PutPDFLine","PutSimpleBondBox","RoundArrowHead","RoundedCornersWidth","setRoundArrPDF","setUnitHalfScale","setUnitScale","tikznodimension","UHalfScaleGain","UScaleGain","XyMTeXcnta","XyMTeXcntb","XyMTeXdima","XyMTeXdimb","XyMTeXdimc","XyMTeXdimd","XyMTeXdime","XyMTeXnuma","XyMTeXnumb","XyMTeXnumc","XyMTeXnumd","XyMTeXnume","XyMTeXnumf","XyMTeXnumg","XyMTeXnumh","XyMTeXnumi","zahyozobun","zobunGain"]}
-,
-"yagusylo.sty":{"envs":["yagitemize","yagitemize*","yagenumerate","notyagenum"],"deps":["xifthen.sty","suffix.sty","xargs.sty","xcolor.sty","colortbl.sty","pdfcolmk.sty"],"cmds":["setyagusylokeys","yagding","defdingname","yagfill","setyagline","yagline","setyagitemize","newenumpattern","setyagenumeratekeys","LaBoite","Leaders","STOP","docdate","filedate","fileinfo","fileversion","motif","numero","yagnumber"]}
-,
-"yaletter.cls":{"envs":{},"deps":["xkeyval.sty","geometry.sty","fancyhdr.sty","textpos.sty"],"cmds":["yadate","yahdateskip","yadatestyle","yainsideaddr","yahinsideaddrskip","yainsideaddrstyle","yasalutation","yahsalutationskip","yasalutationstyle","yafarewell","yahfarewellskip","yafarewellstyle","yasignature","yahsignatureskip","yasignaturestyle","yaenclosure","yahenclosureskip","yaenclosurestyle","yaoptions","defineletterhead","yauseletterhead","yaletterblock","yalettermodblock","yaletternormal","yaparskip","yaparindent","yawriter","yasetwriter","yawriterstyle","yasetaddressee","yaaddresseestyle","yaaddressee","yathedate","yalastpage","defineaddress","yatoaddress","yareturnaddress","yafromaddress","yaaddress","yaenvelope","yaenvunit","yaenvrethskip","yaenvretvskip","yaenvtohskip","yaenvtovskip","yaenvtoaddr","yaenvretaddr","yabusiness","yananoxenvelope","yadlenvelope","yacvienvelope","yacvicvenvelope","yacvenvelope","yacivenvelope","yaciiienvelope","yanaaiienvelope","yanaavienvelope","yanaaviienvelope","yanaaviiienvelope","yanaaixenvelope","yanaaxenvelope","yananovienvelope","yananoviienvelope","yananoixenvelope","yananoxienvelope","yananoxiienvelope","yananoxivenvelope","yalabelsheet","yalableftmarg","yalabrightmarg","yalabtopmarg","yalabbotmarg","yalabeltext","yaplacelabel","yalabelmarg","yashowboxeson","yashowboxesoff","yaavery","nloop","yalastpagestyle"]}
-,
-"yamlvars.sty":{"envs":["declareYAMLvars","parseYAMLvars","parseYAMLpdfdata"],"deps":["luacode.sty","xspace.sty","etoolbox.sty","penlight.sty"],"cmds":["yv","declareYAMLvarsFile","parseYAMLvarsFile","resetYAMLvarsspec","AllowUndeclaredYV","ForbidUndeclaredYV","lowercasevarYVon","lowercasevarYVoff"]}
-,
-"yathesis.sty":{"envs":["abstract","descriptionFB"],"deps":["s-book.cls","array.sty","biblatex.sty","colophon.sty","datatool.sty","draftwatermark.sty","epigraph.sty","etoolbox.sty","geometry.sty","hypcap.sty","iflang.sty","letltxmacro.sty","morewrites.sty","pgfopts.sty","tabularx.sty","textcase.sty","tocbibind.sty","twoopt.sty","xifthen.sty","xpatch.sty","tcolorboxlibraryskins.sty","titleps.sty"],"cmds":["yadsetup","author","title","subtitle","academicfield","speciality","subject","date","submissiondate","pres","comue","institute","coinstitute","company","doctoralschool","laboratory","supervisor","cosupervisor","comonitor","referee","examiner","committeepresident","guest","ordernumber","keywords","maketitle","colophontext","disclaimertext","makedisclaimer","makekeywords","makelaboratory","dedication","makededications","frontepigraph","makefrontepigraphs","makeabstract","newglssymbol","tableofcontents","chapter","section","subsection","subsubsection","paragraph","subparagraph","makebackcover","startlocaltocs","stoplocaltocs","nextwithlocaltoc","nextwithoutlocaltoc","leadchapter","printsymbols","expression","frenchsetup","frenchbsetup","AddThinSpaceBeforeFootnotes","alsoname","at","bibname","AutoSpaceBeforeFDP","boi","bname","bsc","CaptionSeparator","captionsfrench","ccname","chaptername","circonflexe","dateacadian","datefrench","DecimalMathComma","degre","degres","descindentFB","dotFFN","enclname","extrasfrench","FBcolonspace","FBdatebox","FBdatespace","FBeverylineguill","FBfigtabshape","FBfnindent","FBFrenchFootnotesfalse","FBFrenchFootnotestrue","FBFrenchSuperscriptstrue","FBGlobalLayoutFrenchtrue","FBgspchar","FBguillopen","FBguillspace","FBInnerGuillSinglefalse","FBInnerGuillSingletrue","FBListItemsAsParfalse","FBListItemsAsPartrue","FBLowercaseSuperscriptstrue","FBmedkern","FBPartNameFulltrue","FBsetspaces","FBSmallCapsFigTabCaptionstrue","FBStandardEnumerateEnvtrue","FBStandardItemizeEnvtrue","FBStandardItemLabelstrue","FBStandardLayouttrue","FBStandardListSpacingtrue","FBStandardListstrue","FBsupR","FBsupS","FBtextellipsis","FBthickkern","FBthinspace","FBthousandsep","FBWarning","fg","fgi","fgii","fprimo","frenchdate","FrenchEnumerate","FrenchFootnotes","FrenchLabelItem","frenchpartfirst","frenchpartsecond","FrenchPopularEnumerate","frenchtoday","Frlabelitemi","Frlabelitemii","Frlabelitemiii","Frlabelitemiv","frquote","fup","glossaryname","headtoname","ieme","iemes","ier","iere","ieres","iers","ifFBAutoSpaceFootnotes","ifFBCompactItemize","ifFBCustomiseFigTabCaptions","ifFBfrench","ifFBFrenchFootnotes","ifFBFrenchSuperscripts","ifFBGlobalLayoutFrench","ifFBIndentFirst","ifFBINGuillSpace","ifFBListItemsAsPar","ifFBListOldLayout","ifFBLowercaseSuperscripts","ifFBLuaTeX","ifFBOldFigTabCaptions","ifFBOriginalTypewriter","ifFBPartNameFull","ifFBReduceListSpacing","ifFBShowOptions","ifFBSmallCapsFigTabCaptions","ifFBStandardEnumerateEnv","ifFBStandardItemizeEnv","ifFBStandardItemLabels","ifFBStandardLayout","ifFBStandardLists","ifFBStandardListSpacing","ifFBSuppressWarning","ifFBThinColonSpace","ifFBThinSpaceInFrenchNumbers","ifFBunicode","ifFBXeTeX","ifLaTeXe","kernFFN","labelindentFB","labelwidthFB","leftmarginFB","listfigurename","listindentFB","No","no","NoAutoSpaceBeforeFDP","NoAutoSpacing","NoEveryParQuote","noextrasfrench","nombre","nos","Nos","og","ogi","ogii","pagename","parindentFFN","partfirst","partnameord","partsecond","prefacename","primo","proofname","quarto","rmfamilyFB","secundo","seename","sffamilyFB","StandardFootnotes","StandardMathComma","tertio","tild","ttfamilyFB","up","xspace"]}
-,
-"yax.sty":{"envs":{},"deps":["texapi.sty"],"cmds":["yaxversion","setparameter","setparameterlist","copyparameter","gcopyparameter","setattribute","esetattribute","gsetattribute","xsetattribute","deleteattribute","gdeleteattribute","deleteparameter","nometa","ifattribute","usevalue","usevalueor","usevalueand","passvalue","passvalueor","passvalueand","passvaluenobraces","passvaluenobracesor","passvaluenobracesand","settovalue","settovalueor","settovalueand","ifvalue","ifcasevalue","val","elseval","endval","parameterloop","newsyntax","copysyntax","letyaxcommand","restrictparameter","restrictattribute","restrictallattributes","defparameter","executeparameter","defactiveparameter"]}
-,
-"ycbook.cls":{"envs":{},"deps":["s-mwbk.cls","titletoc.sty","ifxetex.sty","inputenc.sty","hyperref.sty","graphicx.sty","booktabs.sty","adjustbox.sty","afterpage.sty","placeins.sty","changepage.sty"],"cmds":["fancytoc","traditionaltoc","coloredheadline","coloredfootline","twopagepicture","twopagepicturen","mywidth","oldfootnote"]}
-,
-"ydoc-code.sty":{"envs":["macrocode","macro","environment","style","key"],"deps":["hyperref.sty","needspace.sty","xcolor.sty","listings.sty"],"cmds":["bslash","ydocwrite","ydocfname","newlinemacro","spacemacro","bslashmacro","lastlinemacro","firstlinemacro","thelinenumber","linenumberbox","PrintMacroCode","themacrocode","ydoclistingssettings","PrintMacroImpl","PrintMacroImplName","PrintEnvImplName","PrintStyleImplName","implstyle"]}
-,
-"ydoc-desc.sty":{"envs":["DescribeMacros","DescribeKeys","DescribeMacrosTab","DescribeEnv","codequote","macroquote"],"deps":["needspace.sty","shortvrb.sty","etoolbox.sty","xcolor.sty","hyperref.sty","xspace.sty"],"cmds":["meta","marg","oarg","parg","aarg","sarg","pkg","cls","lib","env","opt","optpar","file","pkgstyle","clsstyle","libstyle","envstyle","optstyle","filestyle","cs","cmd","Key","macrodescstyle","keydescstyle","macroargsstyle","envcodestyle","verbstyle","metastyle","margstyle","Optional","optional","optionalstyle","optionalon","optionaloff","oargstyle","pargstyle","aargstyle","sargstyle","descindent","beforedescskip","afterdescskip","descsep","AlsoMacro","DescribeMacro","DescribeScript","DescribeKey","MakeShortMacroArgs","DeleteShortMacroArgs","Macro","MacroArgs","DescribeMacrosTabcolsep","DescribeLength","DescribeEnv","descbox","PrintMacroName","PrintKeyName","PrintLengthName","PrintEnvName","PrintMacros","PrintLength","PrintEnv","PrintSubEnv","bslash","percent","braceleft","braceright","codeline","codelinebefore","codelineafter"]}
-,
-"ydoc-doc.sty":{"envs":{},"deps":["shortvrb.sty","url.sty"],"cmds":["CheckSum","AlsoImplementation","OnlyDescription","StopEventually","Finale","MakePercentComment","MakePercentIgnore","DocInput","CharacterTable","CharTableChanges","GetFileInfo","package","bundle","ctanlocation","repository","homepage","email","github","pkgtitle","DoNotIndex","changes","RecordChanges","PrintChanges","PrintIndex","CodelineIndex","EnableCrossrefs"]}
-,
-"ydoc-expl.sty":{"envs":["examplecode","exampletable","example"],"deps":["listings.sty","float.sty"],"cmds":["examplecodebox","exampleresultbox","BoxExample","PrintExample","examplename","ydocinclversion","inFile","subFile","outFile","ifContinue","makeOther","inLine","lastLine","includefiles","copyline","percentcharnum"]}
-,
-"ydoc.cls":{"envs":{},"deps":["ydoc.sty"],"cmds":{}}
-,
-"ydoc.sty":{"envs":{},"deps":["ydoc-code.sty","ydoc-expl.sty","ydoc-desc.sty","ydoc-doc.sty","newverbs.sty","fontenc.sty","fourier.sty","ifpdf.sty","microtype.sty","array.sty","booktabs.sty","multicol.sty","xcolor.sty","listings.sty","hyperref.sty"],"cmds":["DH","dh","dj","DJ","guillemetleft","guillemetright","guillemotleft","guillemotright","guilsinglleft","guilsinglright","Hwithstroke","hwithstroke","k","NG","ng","quotedblbase","quotesinglbase","textogonekcentered","textquotedbl","th","TH"]}
-,
-"yfonts-otf.sty":{"envs":{},"deps":["iftex.sty","fontspec.sty"],"cmds":["frakfamily","gothfamily","swabfamily","textgoth","textfrak","textswab","etc","Jvar","longs","shorts","ZWNJ","ZWS","fileversion","filedate"]}
-,
-"yfonts.sty":{"envs":{},"deps":{},"cmds":["gothfamily","swabfamily","frakfamily","initfamily","textgoth","textswab","textfrak","textinit","frakdefault","gothdefault","swabdefault","initdefault","etc","fraklines","yinipar","yinitpar"]}
-,
-"yhmath.sty":{"envs":["amatrix"],"deps":["amsmath.sty"],"cmds":["ring","adots","widehat","widetilde","wideparen","widetriangle","widering"]}
-,
-"youngtab.sty":{"envs":{},"deps":{},"cmds":["Yvcentermath","Yautoscale","Yboxdim","Ylinethick","Yinterspace","yng","young","Ystdtext"]}
-,
-"yquant.sty":{"envs":["yquant","yquant*","yquantgroup","yquantgroup*","qasm"],"deps":["etoolbox.sty","tikz.sty","trimspaces.sty","xkeyval.sty","tikzlibrarydecorations.pathreplacing.sty","tikzlibrarydecorations.pathmorphing.sty"],"cmds":["ifyquantdebug","yquantdebugtrue","yquantdebugfalse","useyquantlanguage","listA","listB","ifsuccess","clippathhorz","clippathvert","clippath","inheritclippath","pgfshapeclippath","pgfreferencednodename","oldpgflinewidth","pgfshapeclippathresult","pgfshapeclippathhorzresult","pgfshapeclippathvertresult","stext","main","ifhorz","pgfdecorationsegmentfromto","ifyquanthorz","len","reg","idx","regidx","ifinmulti","ifallowmain","registers","newlist","ifyquantmeasuring","yquantmeasuringtrue","yquantmeasuringfalse","redolist","max","firstinout","lastinout","outerlevel","outery","multidata","missing","divisor","add","inc","yquant","endyquant","yquantset","yquantsecondpass","yquantesecondpass","yquantescape","yquanteescape","yquantimportcommand","yquantimportpath","yquantimport","cmd","keyscmd","keysset","keyscheck","params","ifvalid","wirexpos","wirexprevpos","wiretype","wirelast","Ifnum","Ifcase","Or","Else","Fi","Unless","The","outermap","nodename","upd","last","newx","process","nonaffectedpgfshapeclippathhorzresult","wirestyle","wireclipping","yquantdefinegate","yquantredefinegate","yquantdefinebox","yquantdefinemultibox","yquantredefinebox","yquantredefinemultibox","circuit","equals","shiftright","m","txt","meter","dmeter","dmeterwide","qasmimport","targets","controls","qasmname"]}
-,
-"ytableau.sty":{"envs":["ytableau"],"deps":["pgfkeys.sty","pgfopts.sty","xcolor.sty"],"cmds":["ytableausetup","ytableau","endytableau","none","ytableaushort","ydiagram"]}
-,
-"zahl2string.sty":{"envs":{},"deps":{},"cmds":["numstring","Numstring","ordstring","Ordstring","numstr","Numstr","ordstr","Ordstr"]}
-,
-"zb-basics.sty":{"envs":{},"deps":["amsmath.sty","amsfonts.sty","amssymb.sty","mathtools.sty","stmaryrd.sty","mathrsfs.sty","tikz-cd.sty","textcomp.sty","gensymb.sty"],"cmds":["Aut","Hom","ran","fintsymbol","fint","Sha"]}
-,
-"zbMATH.cls":{"envs":{},"deps":["s-scrartcl.cls","geometry.sty","xcolor.sty","babel.sty","scrlayer-scrpage.sty","graphicx.sty","enumitem.sty","xparse.sty","etoolbox.sty","url.sty","fontspec.sty","zb-basics.sty"],"cmds":["makefooter","blue","helper","kwx","keywords","citationbox","msclen","msc","blueitem","reviewer","captionsenglish","dateenglish","extrasenglish","noextrasenglish","englishhyphenmins","britishhyphenmins","americanhyphenmins","prefacename","bibname","chaptername","enclname","ccname","headtoname","pagename","seename","alsoname","proofname","glossaryname"]}
-,
-"zebra-goodies.sty":{"envs":{},"deps":["kvoptions.sty","microtype.sty","xcolor.sty","tikzpagenodes.sty","marginnote.sty","manfnt.sty"],"cmds":["todo","note","comment","fixed","placeholder","zebratodo","zebranote","zebracomment","zebrafixed","zebraplaceholder","zebranewnote"]}
-,
-"zennote.sty":{"envs":["noteframe"],"deps":["tcolorbox.sty","tcolorboxlibrarymost.sty"],"cmds":["titlebox","thenotenumber"]}
-,
-"zhlineskip.sty":{"envs":{},"deps":["kvoptions.sty","xintexpr.sty","etoolbox.sty","mathtools.sty"],"cmds":["SetMathEnvironmentSinglespace","RestoreMathEnvironmentLeading","SetTextEnvironmentSinglespace","RestoreTextEnvironmentLeading"]}
-,
-"zhlipsum.sty":{"envs":{},"deps":["expl3.sty","xparse.sty"],"cmds":["zhlipsum","newzhlipsum"]}
-,
-"zhnumber.sty":{"envs":{},"deps":["expl3.sty"],"cmds":["zhnumber","zhdigits","zhnum","zhdig","zhweekday","zhdate","zhtoday","zhtime","zhcurrtime","zhtiangan","zhdizhi","zhganzhi","zhganzhinian","zhnumExtendScaleMap","zhnumsetup","zhnumClearWrapper","zhnumResetWrapper","zhnumberwithoptions","zhdigitswithoptions","zhnumwithoptions","zhdigwithoptions"]}
-,
-"zhspacing.sty":{"envs":{},"deps":["zhsusefulmacros.sty","zhsmyclass.sty","fontspec.sty"],"cmds":["zhspacing","zhfont","zhpunctfont","zhcjkextafont","zhcjkextbfont","skipzh","skipenzh","skipzhopen","skipzhinteropen","skipzhlinestartopen","skipzhclose","skipzhinterclose","skipzhlineendclose","skipzhhalfstop","skipzhinterhalfstop","skipzhlineendhalfstop","skipzhfullstop","skipzhinterfullstop","skipzhlineendfullstop","skipnegzhlinestartopen","skipnegzhlineendclose","skipnegzhlineendhalfstop","skipnegzhlineendfullstop","simsunskipscheme","emptyskipscheme","haltskipscheme","CJ","ID","XeTeXcharclassCJ","XeTeXcharclassEX","XeTeXcharclassIS","XeTeXcharclassNS","appendinterclasstoks","body","chartonum","copyinterclasstoks","enableactivehanzi","firsttoken","futurenonspacelet","getbaseclass","getclassnum","getinterclasstoks","haltfullskipscheme","halthalfskipscheme","hash","makehanziglobalactive","makehanzigloballetter","mydbgmessage","newclass","next","nexttoken","parseunicodedataIII","parseunicodedataII","parseunicodedataIV","parseunicodedataI","prependinterclasstoks","readandparse","savedbody","setclassnum","setinterclasstoks","showallinterclasstoks","storedpar","temp","zhgroupsavefont","zhhanzihook","zhnfsssavefont","zhnobreak","zhspacingrevision"]}
-,
-"zi4.sty":{"envs":{},"deps":["textcomp.sty","xkeyval.sty","upquote.sty"],"cmds":["altzero"]}
-,
-"ziffer.sty":{"envs":{},"deps":{},"cmds":["ZifferAn","ZifferAus","ZifferPunktAn","ZifferPunktAus","ZifferStrichAn","ZifferStrichAus","ZifferLeer","ZifferStrich"]}
-,
-"zitie.sty":{"envs":["zitieframe"],"deps":["l3draw.sty","l3keys2e.sty","xparse.sty","zhlipsum.sty"],"cmds":["zitienewfont","zitieCJKfamily","framesingle","framezi","framerange","framezifile","frametallrange","framezitallfile","zitiesetup","zitiestrokechars","zitiecolorlet","zitienewprocessorrule","zitienewrule","zitieuseprocessorrule","zitiebasechar","zitiebasecharwidth","zitiebasecharheight","zitiewidth","zitieheight","zitieboxwd","zitieboxht","zitieboxdp","zitiefontname","zitiexscaleratio","zitieyscaleratio","zitiebackground","framezhlipsum","zitierawCJKfamily","xeCJKResetPunctClass","xeCJKDeclareCharClass"]}
-,
-"zlmtt.sty":{"envs":{},"deps":["mweights.sty","xkeyval.sty"],"cmds":["monott","proptt","lctt"]}
-,
-"zref-abspage.sty":{"envs":{},"deps":["zref-base.sty","atbegshi.sty"],"cmds":["theabspage"]}
-,
-"zref-base.sty":{"envs":{},"deps":["ltxcmds.sty","infwarerr.sty","kvsetkeys.sty","kvdefinekeys.sty","pdftexcmds.sty","etexcmds.sty","auxhook.sty"],"cmds":["zifrefundefined"]}
-,
-"zref-check.sty":{"envs":["zcregion"],"deps":["zref-user.sty","zref-abspage.sty","ifdraft.sty","zref-hyperref.sty"],"cmds":["zcheck","zctarget","zrefchecksetup"]}
-,
-"zref-clever.sty":{"envs":{},"deps":["zref-base.sty","zref-user.sty","zref-abspage.sty","ifdraft.sty","zref-hyperref.sty"],"cmds":["zcref","zcpageref","zcsetup","zcRefTypeSetup","zcDeclareLanguage","zcDeclareLanguageAlias","zcLanguageSetup"]}
-,
-"zref-counter.sty":{"envs":{},"deps":["zref-base.sty"],"cmds":{}}
-,
-"zref-dotfill.sty":{"envs":{},"deps":["zref-base.sty","zref-savepos.sty","keyval.sty"],"cmds":["zdotfill","zdotfillsetup"]}
-,
-"zref-env.sty":{"envs":{},"deps":["zref-base.sty"],"cmds":{}}
-,
-"zref-hyperref.sty":{"envs":{},"deps":["zref-base.sty"],"cmds":{}}
-,
-"zref-lastpage.sty":{"envs":{},"deps":["zref-base.sty","zref-abspage.sty","atveryend.sty"],"cmds":["ziflastpage"]}
-,
-"zref-nextpage.sty":{"envs":{},"deps":["zref-base.sty","zref-abspage.sty","zref-thepage.sty","zref-lastpage.sty","uniquecounter.sty"],"cmds":["znextpage","zunknownnextpagename","znonextpagename","znextpagesetup"]}
-,
-"zref-pageattr.sty":{"envs":{},"deps":["zref-base.sty","iftex.sty","zref-thepage.sty","zref-lastpage.sty"],"cmds":{}}
-,
-"zref-pagelayout.sty":{"envs":{},"deps":["zref-base.sty","zref-thepage.sty","iftex.sty","atveryend.sty"],"cmds":["zlistpagelayout"]}
-,
-"zref-perpage.sty":{"envs":{},"deps":["zref-base.sty","zref-abspage.sty"],"cmds":["zmakeperpage","thezpage","zunmakeperpage"]}
-,
-"zref-savepos.sty":{"envs":{},"deps":["zref-base.sty"],"cmds":["zsavepos","zsaveposx","zsaveposy","zposx","zposy"]}
-,
-"zref-thepage.sty":{"envs":{},"deps":["zref-base.sty","atbegshi.sty","zref-abspage.sty"],"cmds":["zthepage"]}
-,
-"zref-titleref.sty":{"envs":{},"deps":["zref-base.sty","gettitlestring.sty","keyval.sty"],"cmds":["ztitleref","ztitlerefsetup"]}
-,
-"zref-totpages.sty":{"envs":{},"deps":["zref-base.sty","zref-abspage.sty","zref-lastpage.sty"],"cmds":["ztotpages"]}
-,
-"zref-user.sty":{"envs":{},"deps":["zref-base.sty"],"cmds":["zlabel","zkvlabel","zref","zpageref","zrefused"]}
-,
-"zref-vario.sty":{"envs":{},"deps":["varioref.sty","zref-clever.sty"],"cmds":["zvsetup","zvref","zvpageref","zvrefrange","zvpagerefrange","zfullref","zreftextfaraway","zvLanguageSetup","zvhyperlink"]}
-,
-"zref-xr.sty":{"envs":{},"deps":["zref-base.sty","keyval.sty","kvoptions.sty"],"cmds":["zexternaldocument","zxrsetup"]}
-,
-"zref.sty":{"envs":{},"deps":["zref-base.sty","zref-abspage.sty","zref-counter.sty","zref-dotfill.sty","zref-hyperref.sty","zref-lastpage.sty","zref-marks.sty","zref-nextpage.sty","zref-pageattr.sty","zref-pagelayout.sty","zref-perpage.sty","zref-runs.sty","zref-savepos.sty","zref-thepage.sty","zref-titleref.sty","zref-totpages.sty","zref-user.sty","zref-xr.sty"],"cmds":{}}
-,
-"zwgetfdate.sty":{"envs":{},"deps":{},"cmds":["DateOfPackage","DateOfFile"]}
-,
-"zwpagelayout.sty":{"envs":{},"deps":["iftex.sty","kvoptions.sty","color.sty"],"cmds":["noBboxes","OverprintXeTeXExtGState","SetOverprint","SetKnockout","textoverprint","textknockout","SetPDFminorversion","Vcorr","vb","NewOddPage","SetOddPageMessage","NewEvenPage","SetEvenPageMessage","CropFlap","CropSpine","CropXSpine","CropXtrim","CropYtrim","UserWidth","UserLeftMargin","UserRightMargin","UserBotMargin","UserTopMargin","thePageNumber","ifcaseZWdriver","ZWifdriver","ZWsetkeys","PDFbkslash","SetTeXingDate","TimeOfTeXing","ZWpercent"]}
-,
-"zx-calculus.sty":{"envs":{},"deps":["tikz.sty","tikzlibraryzx-calculus.sty"],"cmds":{}}
-,
-"zxbase.sty":{"envs":{},"deps":["ifxetex.sty","xetex.sty","bxbase.sty"],"cmds":["zxSpecFamily","zxRMFamily","zxSFFamily","zxTTFamily","zxBDHookGenFamFlag","zxBDHookForgepTeXDir","ifzxPPInUTFEight","zxPPInUTFEighttrue","zxPPInUTFEightfalse","zxRequirepLaTeXPackage","platexpackagesinunicode"]}
-,
-"zxjafbfont.sty":{"envs":{},"deps":["xeCJK.sty"],"cmds":["setCJKfallbackfamily","unsetCJKfallbackfamily","CJKsymbol"]}
-,
-"zxjafont.sty":{"envs":{},"deps":["xetex.sty","ifxetex.sty","fontspec.sty","keyval.sty","etoolbox.sty"],"cmds":["ebdefault","ebseries","ltdefault","ltseries","useeasyjapanesesettings","bxDebug"]}
-,
-"zxjatype.sty":{"envs":["rawjatext","rawentext"],"deps":["ifxetex.sty","xeCJK.sty","xparse.sty"],"cmds":["bxDebug","zxJaFamilyFontHook","zxJaFamilyName","inhibitglue","setjamainfont","setjasansfont","setjamonofont","setjafamilyfont","jafamily","zxjapanesestyle","zxusejapaneseparameters","zxuseoriginalparameters","setjafontscale","jafamilyinverbatim","nojafamilyinverbatim","textrawja","textrawen"]}
-} \ No newline at end of file