summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorsijanec <anton@sijanec.eu>2021-06-03 21:15:00 +0200
committersijanec <anton@sijanec.eu>2021-06-03 21:15:00 +0200
commite049411784001995b7847e7c2f0c54b165117f3b (patch)
tree4d3f3a8dbead198b8ddc8cae1029624d68253e9b
parentmoar fizik (diff)
downloadsola-gimb-2-e049411784001995b7847e7c2f0c54b165117f3b.tar
sola-gimb-2-e049411784001995b7847e7c2f0c54b165117f3b.tar.gz
sola-gimb-2-e049411784001995b7847e7c2f0c54b165117f3b.tar.bz2
sola-gimb-2-e049411784001995b7847e7c2f0c54b165117f3b.tar.lz
sola-gimb-2-e049411784001995b7847e7c2f0c54b165117f3b.tar.xz
sola-gimb-2-e049411784001995b7847e7c2f0c54b165117f3b.tar.zst
sola-gimb-2-e049411784001995b7847e7c2f0c54b165117f3b.zip
-rw-r--r--fiz/naloga/predstavitev/126
-rw-r--r--fiz/naloga/predstavitev/Makefile11
-rw-r--r--fiz/naloga/predstavitev/dokument-figure0.log2
-rw-r--r--fiz/naloga/predstavitev/dokument-figure1.log2
-rw-r--r--fiz/naloga/predstavitev/dokument-figure2.log2
-rw-r--r--fiz/naloga/predstavitev/dokument-figure3.log2
-rw-r--r--fiz/naloga/predstavitev/dokument-figure4.log2
-rw-r--r--fiz/naloga/predstavitev/dokument-figure5.log2
-rw-r--r--fiz/naloga/predstavitev/dokument-figure6.log2
-rw-r--r--fiz/naloga/predstavitev/dokument-figure7.log1541
-rw-r--r--fiz/naloga/predstavitev/dokument-figure7.md51
-rw-r--r--fiz/naloga/predstavitev/dokument-figure8.log1541
-rw-r--r--fiz/naloga/predstavitev/dokument-figure8.md51
-rw-r--r--fiz/naloga/predstavitev/dokument.aux78
-rw-r--r--fiz/naloga/predstavitev/dokument.log499
-rw-r--r--fiz/naloga/predstavitev/dokument.nav76
-rw-r--r--fiz/naloga/predstavitev/dokument.out17
-rw-r--r--fiz/naloga/predstavitev/dokument.pdfbin3363274 -> 3414119 bytes
-rw-r--r--fiz/naloga/predstavitev/dokument.pgf-plot.gnuplot2
-rw-r--r--fiz/naloga/predstavitev/dokument.pgf-plot.table38
-rw-r--r--fiz/naloga/predstavitev/dokument.synctex.gzbin72025 -> 83950 bytes
-rw-r--r--fiz/naloga/predstavitev/dokument.tex111
-rw-r--r--fiz/naloga/predstavitev/dokument.toc16
-rw-r--r--fiz/naloga/predstavitev/fit.log936
-rw-r--r--fiz/naloga/predstavitev/stderr.log31
-rw-r--r--fiz/naloga/predstavitev/stdout.log1044
26 files changed, 5572 insertions, 411 deletions
diff --git a/fiz/naloga/predstavitev/1 b/fiz/naloga/predstavitev/1
new file mode 100644
index 0000000..6490a59
--- /dev/null
+++ b/fiz/naloga/predstavitev/1
@@ -0,0 +1,26 @@
+default:
+ @echo "Makefile za predstavitev Potisna sila vodne rakete."
+ @echo "recepti:"
+ @echo "- d: prenese+prevede slike iz Interneta (potrebna wget in imagemagick)"
+ @echo "- update: git pull origin master (potreben git)"
+ @echo "- g: generira PDF (download moraš narediti ti) (p. f5ff, biber, latex)"
+ @echo "- clean: izbriše avtomatsko generirane stvari in slike (razen PDF)"
+
+d:
+ mkdir -p img
+ # wget -c https://upload.wikimedia.org/wikipedia/commons/1/15/Boyles_Law_animated.gif -Oimg/bojl.gif
+ convert img/bojl.gif -pointsize 20 -gravity center \
+ -fill black -background white -undercolor white -annotate -100+100 "konst. m in T" \
+ img/nbojl.gif
+
+update:
+ git pull origin master
+
+g:
+ ~/projects/doc/f5ff.sh dokument
+ biber dokument
+ ~/projects/doc/f5ff.sh dokument
+
+clean:
+ rm -f *.aux *.auxlock *.bbl *.bcf *.blg *.dvi *.log *.nav *.out *.run.xml *.snm *.toc *.synctex.gz stdout.log stderr.log
+ rm -rf img
diff --git a/fiz/naloga/predstavitev/Makefile b/fiz/naloga/predstavitev/Makefile
index 0f30cfd..24c449b 100644
--- a/fiz/naloga/predstavitev/Makefile
+++ b/fiz/naloga/predstavitev/Makefile
@@ -1,13 +1,22 @@
default:
@echo "Makefile za predstavitev Potisna sila vodne rakete."
@echo "recepti:"
- @echo "- d: prenese+prevede slike iz Interneta (potrebni wget, sed, inkscape)"
+ @echo "- d: prenese+prevede slike iz Interneta (potrebna wget in imagemagick)"
@echo "- update: git pull origin master (potreben git)"
@echo "- g: generira PDF (download moraš narediti ti) (p. f5ff, biber, latex)"
@echo "- clean: izbriše avtomatsko generirane stvari in slike (razen PDF)"
d:
mkdir -p img
+ wget -c https://upload.wikimedia.org/wikipedia/commons/1/15/Boyles_Law_animated.gif -Oimg/bojl.gif
+ convert img/bojl.gif -pointsize 25 \
+ -fill black -undercolor white -annotate +320+25 "konstantna m in T" \
+ -annotate +4+20 "masa" \
+ -annotate +43+396 "pritisk " \
+ -annotate +265+396 "temperatura" \
+ -undercolor blue -fill white -annotate +250+70 "pro. " \
+ img/nbojl.gif
+ convert img/nbojl.gif -coalesce img/genbojl%d.png
update:
git pull origin master
diff --git a/fiz/naloga/predstavitev/dokument-figure0.log b/fiz/naloga/predstavitev/dokument-figure0.log
index c042e77..be45af3 100644
--- a/fiz/naloga/predstavitev/dokument-figure0.log
+++ b/fiz/naloga/predstavitev/dokument-figure0.log
@@ -1,4 +1,4 @@
-This is pdfTeX, Version 3.141592653-2.6-1.40.22 (TeX Live 2021) (preloaded format=pdflatex 2021.4.17) 2 JUN 2021 11:31
+This is pdfTeX, Version 3.141592653-2.6-1.40.22 (TeX Live 2021) (preloaded format=pdflatex 2021.4.17) 3 JUN 2021 21:10
entering extended mode
\write18 enabled.
%&-line parsing enabled.
diff --git a/fiz/naloga/predstavitev/dokument-figure1.log b/fiz/naloga/predstavitev/dokument-figure1.log
index c042e77..b0302de 100644
--- a/fiz/naloga/predstavitev/dokument-figure1.log
+++ b/fiz/naloga/predstavitev/dokument-figure1.log
@@ -1,4 +1,4 @@
-This is pdfTeX, Version 3.141592653-2.6-1.40.22 (TeX Live 2021) (preloaded format=pdflatex 2021.4.17) 2 JUN 2021 11:31
+This is pdfTeX, Version 3.141592653-2.6-1.40.22 (TeX Live 2021) (preloaded format=pdflatex 2021.4.17) 3 JUN 2021 21:11
entering extended mode
\write18 enabled.
%&-line parsing enabled.
diff --git a/fiz/naloga/predstavitev/dokument-figure2.log b/fiz/naloga/predstavitev/dokument-figure2.log
index c8ad55b..b0302de 100644
--- a/fiz/naloga/predstavitev/dokument-figure2.log
+++ b/fiz/naloga/predstavitev/dokument-figure2.log
@@ -1,4 +1,4 @@
-This is pdfTeX, Version 3.141592653-2.6-1.40.22 (TeX Live 2021) (preloaded format=pdflatex 2021.4.17) 2 JUN 2021 11:32
+This is pdfTeX, Version 3.141592653-2.6-1.40.22 (TeX Live 2021) (preloaded format=pdflatex 2021.4.17) 3 JUN 2021 21:11
entering extended mode
\write18 enabled.
%&-line parsing enabled.
diff --git a/fiz/naloga/predstavitev/dokument-figure3.log b/fiz/naloga/predstavitev/dokument-figure3.log
index c8ad55b..b0302de 100644
--- a/fiz/naloga/predstavitev/dokument-figure3.log
+++ b/fiz/naloga/predstavitev/dokument-figure3.log
@@ -1,4 +1,4 @@
-This is pdfTeX, Version 3.141592653-2.6-1.40.22 (TeX Live 2021) (preloaded format=pdflatex 2021.4.17) 2 JUN 2021 11:32
+This is pdfTeX, Version 3.141592653-2.6-1.40.22 (TeX Live 2021) (preloaded format=pdflatex 2021.4.17) 3 JUN 2021 21:11
entering extended mode
\write18 enabled.
%&-line parsing enabled.
diff --git a/fiz/naloga/predstavitev/dokument-figure4.log b/fiz/naloga/predstavitev/dokument-figure4.log
index c8ad55b..b0302de 100644
--- a/fiz/naloga/predstavitev/dokument-figure4.log
+++ b/fiz/naloga/predstavitev/dokument-figure4.log
@@ -1,4 +1,4 @@
-This is pdfTeX, Version 3.141592653-2.6-1.40.22 (TeX Live 2021) (preloaded format=pdflatex 2021.4.17) 2 JUN 2021 11:32
+This is pdfTeX, Version 3.141592653-2.6-1.40.22 (TeX Live 2021) (preloaded format=pdflatex 2021.4.17) 3 JUN 2021 21:11
entering extended mode
\write18 enabled.
%&-line parsing enabled.
diff --git a/fiz/naloga/predstavitev/dokument-figure5.log b/fiz/naloga/predstavitev/dokument-figure5.log
index c8ad55b..b0302de 100644
--- a/fiz/naloga/predstavitev/dokument-figure5.log
+++ b/fiz/naloga/predstavitev/dokument-figure5.log
@@ -1,4 +1,4 @@
-This is pdfTeX, Version 3.141592653-2.6-1.40.22 (TeX Live 2021) (preloaded format=pdflatex 2021.4.17) 2 JUN 2021 11:32
+This is pdfTeX, Version 3.141592653-2.6-1.40.22 (TeX Live 2021) (preloaded format=pdflatex 2021.4.17) 3 JUN 2021 21:11
entering extended mode
\write18 enabled.
%&-line parsing enabled.
diff --git a/fiz/naloga/predstavitev/dokument-figure6.log b/fiz/naloga/predstavitev/dokument-figure6.log
index c8ad55b..b0302de 100644
--- a/fiz/naloga/predstavitev/dokument-figure6.log
+++ b/fiz/naloga/predstavitev/dokument-figure6.log
@@ -1,4 +1,4 @@
-This is pdfTeX, Version 3.141592653-2.6-1.40.22 (TeX Live 2021) (preloaded format=pdflatex 2021.4.17) 2 JUN 2021 11:32
+This is pdfTeX, Version 3.141592653-2.6-1.40.22 (TeX Live 2021) (preloaded format=pdflatex 2021.4.17) 3 JUN 2021 21:11
entering extended mode
\write18 enabled.
%&-line parsing enabled.
diff --git a/fiz/naloga/predstavitev/dokument-figure7.log b/fiz/naloga/predstavitev/dokument-figure7.log
new file mode 100644
index 0000000..b0302de
--- /dev/null
+++ b/fiz/naloga/predstavitev/dokument-figure7.log
@@ -0,0 +1,1541 @@
+This is pdfTeX, Version 3.141592653-2.6-1.40.22 (TeX Live 2021) (preloaded format=pdflatex 2021.4.17) 3 JUN 2021 21:11
+entering extended mode
+ \write18 enabled.
+ %&-line parsing enabled.
+**\def\tikzexternalrealjob{dokument}\input{dokument}
+(./dokument.tex (/usr/local/texlive/2021/texmf-dist/tex/latex/beamer/beamer.cls
+Document Class: beamer 2021/03/19 v3.62 A class for typesetting presentations
+(/usr/local/texlive/2021/texmf-dist/tex/latex/beamer/beamerbasemodes.sty (/usr/
+local/texlive/2021/texmf-dist/tex/latex/etoolbox/etoolbox.sty
+Package: etoolbox 2020/10/05 v2.5k e-TeX tools for LaTeX (JAW)
+\etb@tempcnta=\count179
+)
+\beamer@tempbox=\box47
+\beamer@tempcount=\count180
+\c@beamerpauses=\count181
+(/usr/local/texlive/2021/texmf-dist/tex/latex/beamer/beamerbasedecode.sty
+\beamer@slideinframe=\count182
+\beamer@minimum=\count183
+\beamer@decode@box=\box48
+)
+\beamer@commentbox=\box49
+\beamer@modecount=\count184
+) (/usr/local/texlive/2021/texmf-dist/tex/generic/iftex/ifpdf.sty
+Package: ifpdf 2019/10/25 v3.4 ifpdf legacy package. Use iftex instead.
+(/usr/local/texlive/2021/texmf-dist/tex/generic/iftex/iftex.sty
+Package: iftex 2020/03/06 v1.0d TeX engine tests
+))
+\headdp=\dimen138
+\footheight=\dimen139
+\sidebarheight=\dimen140
+\beamer@tempdim=\dimen141
+\beamer@finalheight=\dimen142
+\beamer@animht=\dimen143
+\beamer@animdp=\dimen144
+\beamer@animwd=\dimen145
+\beamer@leftmargin=\dimen146
+\beamer@rightmargin=\dimen147
+\beamer@leftsidebar=\dimen148
+\beamer@rightsidebar=\dimen149
+\beamer@boxsize=\dimen150
+\beamer@vboxoffset=\dimen151
+\beamer@descdefault=\dimen152
+\beamer@descriptionwidth=\dimen153
+\beamer@lastskip=\skip47
+\beamer@areabox=\box50
+\beamer@animcurrent=\box51
+\beamer@animshowbox=\box52
+\beamer@sectionbox=\box53
+\beamer@logobox=\box54
+\beamer@linebox=\box55
+\beamer@sectioncount=\count185
+\beamer@subsubsectionmax=\count186
+\beamer@subsectionmax=\count187
+\beamer@sectionmax=\count188
+\beamer@totalheads=\count189
+\beamer@headcounter=\count190
+\beamer@partstartpage=\count191
+\beamer@sectionstartpage=\count192
+\beamer@subsectionstartpage=\count193
+\beamer@animationtempa=\count194
+\beamer@animationtempb=\count195
+\beamer@xpos=\count196
+\beamer@ypos=\count197
+\beamer@ypos@offset=\count198
+\beamer@showpartnumber=\count199
+\beamer@currentsubsection=\count266
+\beamer@coveringdepth=\count267
+\beamer@sectionadjust=\count268
+\beamer@tocsectionnumber=\count269
+(/usr/local/texlive/2021/texmf-dist/tex/latex/beamer/beamerbaseoptions.sty (/us
+r/local/texlive/2021/texmf-dist/tex/latex/graphics/keyval.sty
+Package: keyval 2014/10/28 v1.15 key=value parser (DPC)
+\KV@toks@=\toks15
+))
+\beamer@paperwidth=\skip48
+\beamer@paperheight=\skip49
+(/usr/local/texlive/2021/texmf-dist/tex/latex/geometry/geometry.sty
+Package: geometry 2020/01/02 v5.9 Page Geometry
+(/usr/local/texlive/2021/texmf-dist/tex/generic/iftex/ifvtex.sty
+Package: ifvtex 2019/10/25 v1.7 ifvtex legacy package. Use iftex instead.
+)
+\Gm@cnth=\count270
+\Gm@cntv=\count271
+\c@Gm@tempcnt=\count272
+\Gm@bindingoffset=\dimen154
+\Gm@wd@mp=\dimen155
+\Gm@odd@mp=\dimen156
+\Gm@even@mp=\dimen157
+\Gm@layoutwidth=\dimen158
+\Gm@layoutheight=\dimen159
+\Gm@layouthoffset=\dimen160
+\Gm@layoutvoffset=\dimen161
+\Gm@dimlist=\toks16
+) (/usr/local/texlive/2021/texmf-dist/tex/latex/base/size11.clo
+File: size11.clo 2020/04/10 v1.4m Standard LaTeX file (size option)
+) (/usr/local/texlive/2021/texmf-dist/tex/latex/pgf/basiclayer/pgfcore.sty (/us
+r/local/texlive/2021/texmf-dist/tex/latex/graphics/graphicx.sty
+Package: graphicx 2020/09/09 v1.2b Enhanced LaTeX Graphics (DPC,SPQR)
+(/usr/local/texlive/2021/texmf-dist/tex/latex/graphics/graphics.sty
+Package: graphics 2020/08/30 v1.4c Standard LaTeX Graphics (DPC,SPQR)
+(/usr/local/texlive/2021/texmf-dist/tex/latex/graphics/trig.sty
+Package: trig 2016/01/03 v1.10 sin cos tan (DPC)
+) (/usr/local/texlive/2021/texmf-dist/tex/latex/graphics-cfg/graphics.cfg
+File: graphics.cfg 2016/06/04 v1.11 sample graphics configuration
+)
+Package graphics Info: Driver file: pdftex.def on input line 105.
+(/usr/local/texlive/2021/texmf-dist/tex/latex/graphics-def/pdftex.def
+File: pdftex.def 2020/10/05 v1.2a Graphics/color driver for pdftex
+))
+\Gin@req@height=\dimen162
+\Gin@req@width=\dimen163
+) (/usr/local/texlive/2021/texmf-dist/tex/latex/pgf/systemlayer/pgfsys.sty (/us
+r/local/texlive/2021/texmf-dist/tex/latex/pgf/utilities/pgfrcs.sty
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/utilities/pgfutil-common.te
+x
+\pgfutil@everybye=\toks17
+\pgfutil@tempdima=\dimen164
+\pgfutil@tempdimb=\dimen165
+
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/utilities/pgfutil-common-li
+sts.tex))
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/utilities/pgfutil-latex.def
+\pgfutil@abb=\box56
+) (/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/utilities/pgfrcs.code.tex
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/pgf.revision.tex)
+Package: pgfrcs 2020/12/27 v3.1.8b (3.1.8b)
+))
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/systemlayer/pgfsys.code.tex
+Package: pgfsys 2020/12/27 v3.1.8b (3.1.8b)
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/utilities/pgfkeys.code.tex
+\pgfkeys@pathtoks=\toks18
+\pgfkeys@temptoks=\toks19
+
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/utilities/pgfkeysfiltered.c
+ode.tex
+\pgfkeys@tmptoks=\toks20
+))
+\pgf@x=\dimen166
+\pgf@y=\dimen167
+\pgf@xa=\dimen168
+\pgf@ya=\dimen169
+\pgf@xb=\dimen170
+\pgf@yb=\dimen171
+\pgf@xc=\dimen172
+\pgf@yc=\dimen173
+\pgf@xd=\dimen174
+\pgf@yd=\dimen175
+\w@pgf@writea=\write3
+\r@pgf@reada=\read2
+\c@pgf@counta=\count273
+\c@pgf@countb=\count274
+\c@pgf@countc=\count275
+\c@pgf@countd=\count276
+\t@pgf@toka=\toks21
+\t@pgf@tokb=\toks22
+\t@pgf@tokc=\toks23
+\pgf@sys@id@count=\count277
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/systemlayer/pgf.cfg
+File: pgf.cfg 2020/12/27 v3.1.8b (3.1.8b)
+)
+Driver file for pgf: pgfsys-pdftex.def
+
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/systemlayer/pgfsys-pdftex.d
+ef
+File: pgfsys-pdftex.def 2020/12/27 v3.1.8b (3.1.8b)
+
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/systemlayer/pgfsys-common-p
+df.def
+File: pgfsys-common-pdf.def 2020/12/27 v3.1.8b (3.1.8b)
+)))
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/systemlayer/pgfsyssoftpath.
+code.tex
+File: pgfsyssoftpath.code.tex 2020/12/27 v3.1.8b (3.1.8b)
+\pgfsyssoftpath@smallbuffer@items=\count278
+\pgfsyssoftpath@bigbuffer@items=\count279
+)
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/systemlayer/pgfsysprotocol.
+code.tex
+File: pgfsysprotocol.code.tex 2020/12/27 v3.1.8b (3.1.8b)
+)) (/usr/local/texlive/2021/texmf-dist/tex/latex/xcolor/xcolor.sty
+Package: xcolor 2016/05/11 v2.12 LaTeX color extensions (UK)
+(/usr/local/texlive/2021/texmf-dist/tex/latex/graphics-cfg/color.cfg
+File: color.cfg 2016/01/02 v1.6 sample color configuration
+)
+Package xcolor Info: Driver file: pdftex.def on input line 225.
+Package xcolor Info: Model `cmy' substituted by `cmy0' on input line 1348.
+Package xcolor Info: Model `hsb' substituted by `rgb' on input line 1352.
+Package xcolor Info: Model `RGB' extended on input line 1364.
+Package xcolor Info: Model `HTML' substituted by `rgb' on input line 1366.
+Package xcolor Info: Model `Hsb' substituted by `hsb' on input line 1367.
+Package xcolor Info: Model `tHsb' substituted by `hsb' on input line 1368.
+Package xcolor Info: Model `HSB' substituted by `hsb' on input line 1369.
+Package xcolor Info: Model `Gray' substituted by `gray' on input line 1370.
+Package xcolor Info: Model `wave' substituted by `hsb' on input line 1371.
+)
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/basiclayer/pgfcore.code.tex
+Package: pgfcore 2020/12/27 v3.1.8b (3.1.8b)
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/math/pgfmath.code.tex (/usr
+/local/texlive/2021/texmf-dist/tex/generic/pgf/math/pgfmathcalc.code.tex (/usr/
+local/texlive/2021/texmf-dist/tex/generic/pgf/math/pgfmathutil.code.tex)
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/math/pgfmathparser.code.tex
+\pgfmath@dimen=\dimen176
+\pgfmath@count=\count280
+\pgfmath@box=\box57
+\pgfmath@toks=\toks24
+\pgfmath@stack@operand=\toks25
+\pgfmath@stack@operation=\toks26
+)
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.code.
+tex
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.basic
+.code.tex)
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.trigo
+nometric.code.tex)
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.rando
+m.code.tex)
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.compa
+rison.code.tex)
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.base.
+code.tex)
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.round
+.code.tex)
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.misc.
+code.tex)
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.integ
+erarithmetics.code.tex))) (/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/m
+ath/pgfmathfloat.code.tex
+\c@pgfmathroundto@lastzeros=\count281
+)) (/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/math/pgfint.code.tex)
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepoints.co
+de.tex
+File: pgfcorepoints.code.tex 2020/12/27 v3.1.8b (3.1.8b)
+\pgf@picminx=\dimen177
+\pgf@picmaxx=\dimen178
+\pgf@picminy=\dimen179
+\pgf@picmaxy=\dimen180
+\pgf@pathminx=\dimen181
+\pgf@pathmaxx=\dimen182
+\pgf@pathminy=\dimen183
+\pgf@pathmaxy=\dimen184
+\pgf@xx=\dimen185
+\pgf@xy=\dimen186
+\pgf@yx=\dimen187
+\pgf@yy=\dimen188
+\pgf@zx=\dimen189
+\pgf@zy=\dimen190
+)
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathconst
+ruct.code.tex
+File: pgfcorepathconstruct.code.tex 2020/12/27 v3.1.8b (3.1.8b)
+\pgf@path@lastx=\dimen191
+\pgf@path@lasty=\dimen192
+)
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathusage
+.code.tex
+File: pgfcorepathusage.code.tex 2020/12/27 v3.1.8b (3.1.8b)
+\pgf@shorten@end@additional=\dimen193
+\pgf@shorten@start@additional=\dimen194
+)
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/basiclayer/pgfcorescopes.co
+de.tex
+File: pgfcorescopes.code.tex 2020/12/27 v3.1.8b (3.1.8b)
+\pgfpic=\box58
+\pgf@hbox=\box59
+\pgf@layerbox@main=\box60
+\pgf@picture@serial@count=\count282
+)
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/basiclayer/pgfcoregraphicst
+ate.code.tex
+File: pgfcoregraphicstate.code.tex 2020/12/27 v3.1.8b (3.1.8b)
+\pgflinewidth=\dimen195
+)
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/basiclayer/pgfcoretransform
+ations.code.tex
+File: pgfcoretransformations.code.tex 2020/12/27 v3.1.8b (3.1.8b)
+\pgf@pt@x=\dimen196
+\pgf@pt@y=\dimen197
+\pgf@pt@temp=\dimen198
+)
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/basiclayer/pgfcorequick.cod
+e.tex
+File: pgfcorequick.code.tex 2020/12/27 v3.1.8b (3.1.8b)
+)
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreobjects.c
+ode.tex
+File: pgfcoreobjects.code.tex 2020/12/27 v3.1.8b (3.1.8b)
+)
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathproce
+ssing.code.tex
+File: pgfcorepathprocessing.code.tex 2020/12/27 v3.1.8b (3.1.8b)
+)
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/basiclayer/pgfcorearrows.co
+de.tex
+File: pgfcorearrows.code.tex 2020/12/27 v3.1.8b (3.1.8b)
+\pgfarrowsep=\dimen199
+)
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreshade.cod
+e.tex
+File: pgfcoreshade.code.tex 2020/12/27 v3.1.8b (3.1.8b)
+\pgf@max=\dimen256
+\pgf@sys@shading@range@num=\count283
+\pgf@shadingcount=\count284
+)
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreimage.cod
+e.tex
+File: pgfcoreimage.code.tex 2020/12/27 v3.1.8b (3.1.8b)
+
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreexternal.
+code.tex
+File: pgfcoreexternal.code.tex 2020/12/27 v3.1.8b (3.1.8b)
+\pgfexternal@startupbox=\box61
+))
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/basiclayer/pgfcorelayers.co
+de.tex
+File: pgfcorelayers.code.tex 2020/12/27 v3.1.8b (3.1.8b)
+)
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/basiclayer/pgfcoretranspare
+ncy.code.tex
+File: pgfcoretransparency.code.tex 2020/12/27 v3.1.8b (3.1.8b)
+)
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepatterns.
+code.tex
+File: pgfcorepatterns.code.tex 2020/12/27 v3.1.8b (3.1.8b)
+)
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/basiclayer/pgfcorerdf.code.
+tex
+File: pgfcorerdf.code.tex 2020/12/27 v3.1.8b (3.1.8b)
+))) (/usr/local/texlive/2021/texmf-dist/tex/latex/pgf/utilities/xxcolor.sty
+Package: xxcolor 2003/10/24 ver 0.1
+\XC@nummixins=\count285
+\XC@countmixins=\count286
+) (/usr/local/texlive/2021/texmf-dist/tex/latex/base/atbegshi-ltx.sty
+Package: atbegshi-ltx 2020/08/17 v1.0a Emulation of the original atbegshi packa
+ge
+with kernel methods
+) (/usr/local/texlive/2021/texmf-dist/tex/latex/hyperref/hyperref.sty
+Package: hyperref 2021-02-27 v7.00k Hypertext links for LaTeX
+(/usr/local/texlive/2021/texmf-dist/tex/generic/ltxcmds/ltxcmds.sty
+Package: ltxcmds 2020-05-10 v1.25 LaTeX kernel commands for general use (HO)
+) (/usr/local/texlive/2021/texmf-dist/tex/generic/pdftexcmds/pdftexcmds.sty
+Package: pdftexcmds 2020-06-27 v0.33 Utility functions of pdfTeX for LuaTeX (HO
+)
+(/usr/local/texlive/2021/texmf-dist/tex/generic/infwarerr/infwarerr.sty
+Package: infwarerr 2019/12/03 v1.5 Providing info/warning/error messages (HO)
+)
+Package pdftexcmds Info: \pdf@primitive is available.
+Package pdftexcmds Info: \pdf@ifprimitive is available.
+Package pdftexcmds Info: \pdfdraftmode found.
+) (/usr/local/texlive/2021/texmf-dist/tex/generic/kvsetkeys/kvsetkeys.sty
+Package: kvsetkeys 2019/12/15 v1.18 Key value parser (HO)
+) (/usr/local/texlive/2021/texmf-dist/tex/generic/kvdefinekeys/kvdefinekeys.sty
+Package: kvdefinekeys 2019-12-19 v1.6 Define keys (HO)
+) (/usr/local/texlive/2021/texmf-dist/tex/generic/pdfescape/pdfescape.sty
+Package: pdfescape 2019/12/09 v1.15 Implements pdfTeX's escape features (HO)
+) (/usr/local/texlive/2021/texmf-dist/tex/latex/hycolor/hycolor.sty
+Package: hycolor 2020-01-27 v1.10 Color options for hyperref/bookmark (HO)
+) (/usr/local/texlive/2021/texmf-dist/tex/latex/letltxmacro/letltxmacro.sty
+Package: letltxmacro 2019/12/03 v1.6 Let assignment for LaTeX macros (HO)
+) (/usr/local/texlive/2021/texmf-dist/tex/latex/auxhook/auxhook.sty
+Package: auxhook 2019-12-17 v1.6 Hooks for auxiliary files (HO)
+) (/usr/local/texlive/2021/texmf-dist/tex/latex/kvoptions/kvoptions.sty
+Package: kvoptions 2020-10-07 v3.14 Key value format for package options (HO)
+)
+\@linkdim=\dimen257
+\Hy@linkcounter=\count287
+\Hy@pagecounter=\count288
+(/usr/local/texlive/2021/texmf-dist/tex/latex/hyperref/pd1enc.def
+File: pd1enc.def 2021-02-27 v7.00k Hyperref: PDFDocEncoding definition (HO)
+Now handling font encoding PD1 ...
+... no UTF-8 mapping file for font encoding PD1
+)
+(/usr/local/texlive/2021/texmf-dist/tex/latex/hyperref/hyperref-langpatches.def
+File: hyperref-langpatches.def 2021-02-27 v7.00k Hyperref: patches for babel la
+nguages
+) (/usr/local/texlive/2021/texmf-dist/tex/generic/intcalc/intcalc.sty
+Package: intcalc 2019/12/15 v1.3 Expandable calculations with integers (HO)
+) (/usr/local/texlive/2021/texmf-dist/tex/generic/etexcmds/etexcmds.sty
+Package: etexcmds 2019/12/15 v1.7 Avoid name clashes with e-TeX commands (HO)
+)
+\Hy@SavedSpaceFactor=\count289
+(/usr/local/texlive/2021/texmf-dist/tex/latex/hyperref/puenc.def
+File: puenc.def 2021-02-27 v7.00k Hyperref: PDF Unicode definition (HO)
+Now handling font encoding PU ...
+... no UTF-8 mapping file for font encoding PU
+)
+Package hyperref Info: Option `bookmarks' set `true' on input line 4073.
+Package hyperref Info: Option `bookmarksopen' set `true' on input line 4073.
+Package hyperref Info: Option `implicit' set `false' on input line 4073.
+Package hyperref Info: Hyper figures OFF on input line 4192.
+Package hyperref Info: Link nesting OFF on input line 4197.
+Package hyperref Info: Hyper index ON on input line 4200.
+Package hyperref Info: Plain pages OFF on input line 4207.
+Package hyperref Info: Backreferencing OFF on input line 4212.
+Package hyperref Info: Implicit mode OFF; no redefinition of LaTeX internals.
+Package hyperref Info: Bookmarks ON on input line 4445.
+\c@Hy@tempcnt=\count290
+(/usr/local/texlive/2021/texmf-dist/tex/latex/url/url.sty
+\Urlmuskip=\muskip16
+Package: url 2013/09/16 ver 3.4 Verb mode for urls, etc.
+)
+LaTeX Info: Redefining \url on input line 4804.
+\XeTeXLinkMargin=\dimen258
+(/usr/local/texlive/2021/texmf-dist/tex/generic/bitset/bitset.sty
+Package: bitset 2019/12/09 v1.3 Handle bit-vector datatype (HO)
+(/usr/local/texlive/2021/texmf-dist/tex/generic/bigintcalc/bigintcalc.sty
+Package: bigintcalc 2019/12/15 v1.5 Expandable calculations on big integers (HO
+)
+))
+\Fld@menulength=\count291
+\Field@Width=\dimen259
+\Fld@charsize=\dimen260
+Package hyperref Info: Hyper figures OFF on input line 6075.
+Package hyperref Info: Link nesting OFF on input line 6080.
+Package hyperref Info: Hyper index ON on input line 6083.
+Package hyperref Info: backreferencing OFF on input line 6090.
+Package hyperref Info: Link coloring OFF on input line 6095.
+Package hyperref Info: Link coloring with OCG OFF on input line 6100.
+Package hyperref Info: PDF/A mode OFF on input line 6105.
+LaTeX Info: Redefining \ref on input line 6145.
+LaTeX Info: Redefining \pageref on input line 6149.
+\Hy@abspage=\count292
+
+Package hyperref Message: Stopped early.
+
+)
+Package hyperref Info: Driver (autodetected): hpdftex.
+(/usr/local/texlive/2021/texmf-dist/tex/latex/hyperref/hpdftex.def
+File: hpdftex.def 2021-02-27 v7.00k Hyperref driver for pdfTeX
+(/usr/local/texlive/2021/texmf-dist/tex/latex/base/atveryend-ltx.sty
+Package: atveryend-ltx 2020/08/19 v1.0a Emulation of the original atvery packag
+e
+with kernel methods
+)
+\Fld@listcount=\count293
+\c@bookmark@seq@number=\count294
+
+(/usr/local/texlive/2021/texmf-dist/tex/latex/rerunfilecheck/rerunfilecheck.sty
+Package: rerunfilecheck 2019/12/05 v1.9 Rerun checks for auxiliary files (HO)
+
+(/usr/local/texlive/2021/texmf-dist/tex/generic/uniquecounter/uniquecounter.sty
+Package: uniquecounter 2019/12/15 v1.4 Provide unlimited unique counter (HO)
+)
+Package uniquecounter Info: New unique counter `rerunfilecheck' on input line 2
+86.
+)) (/usr/local/texlive/2021/texmf-dist/tex/latex/beamer/beamerbaserequires.sty
+(/usr/local/texlive/2021/texmf-dist/tex/latex/beamer/beamerbasecompatibility.st
+y) (/usr/local/texlive/2021/texmf-dist/tex/latex/beamer/beamerbasefont.sty (/us
+r/local/texlive/2021/texmf-dist/tex/latex/amsfonts/amssymb.sty
+Package: amssymb 2013/01/14 v3.01 AMS font symbols
+(/usr/local/texlive/2021/texmf-dist/tex/latex/amsfonts/amsfonts.sty
+Package: amsfonts 2013/01/14 v3.01 Basic AMSFonts support
+\@emptytoks=\toks27
+\symAMSa=\mathgroup4
+\symAMSb=\mathgroup5
+LaTeX Font Info: Redeclaring math symbol \hbar on input line 98.
+LaTeX Font Info: Overwriting math alphabet `\mathfrak' in version `bold'
+(Font) U/euf/m/n --> U/euf/b/n on input line 106.
+))
+(/usr/local/texlive/2021/texmf-dist/tex/latex/sansmathaccent/sansmathaccent.sty
+Package: sansmathaccent 2020/01/31
+(/usr/local/texlive/2021/texmf-dist/tex/latex/koma-script/scrlfile.sty
+Package: scrlfile 2021/03/17 v3.33 KOMA-Script package (file load hooks)
+(/usr/local/texlive/2021/texmf-dist/tex/latex/koma-script/scrlfile-hook.sty
+Package: scrlfile-hook 2021/03/17 v3.33 KOMA-Script package (using LaTeX hooks)
+
+
+LaTeX3 Info: Defining command \BeforeFile with sig. 'm' on line 61.
+
+
+LaTeX3 Info: Defining command \AfterFile with sig. 'm' on line 65.
+
+
+LaTeX3 Info: Defining command \BeforeClass with sig. 'm' on line 69.
+
+
+LaTeX3 Info: Defining command \BeforePackage with sig. 'm' on line 73.
+
+
+LaTeX3 Info: Defining command \AfterAtEndOfClass with sig. 'smo+m' on line 83.
+
+
+LaTeX3 Info: Defining command \AfterAtEndOfPackage with sig. 'smo+m' on line
+(LaTeX3) 93.
+
+
+LaTeX3 Info: Defining command \scrlfile@AfterClass with sig. 'smo+m' on line
+(LaTeX3) 173.
+
+
+LaTeX3 Info: Defining command \AfterClass with sig. '' on line 174.
+
+
+LaTeX3 Info: Defining command \scrlfile@AfterPackage with sig. 'smo+m' on line
+(LaTeX3) 191.
+
+
+LaTeX3 Info: Defining command \AfterPackage with sig. '' on line 192.
+
+
+LaTeX3 Info: Defining command \ReplaceInput with sig. '' on line 193.
+
+
+LaTeX3 Info: Defining command \ReplaceClass with sig. 'mm' on line 196.
+
+
+LaTeX3 Info: Defining command \ReplacePackage with sig. 'mm' on line 199.
+
+
+LaTeX3 Info: Defining command \UnReplaceInput with sig. '' on line 200.
+
+
+LaTeX3 Info: Defining command \UnReplaceClass with sig. 'm' on line 203.
+
+
+LaTeX3 Info: Defining command \UnReplacePackage with sig. 'mm' on line 206.
+
+
+LaTeX3 Info: Defining command \PreventPackageFromLoading with sig. 's+om' on
+(LaTeX3) line 234.
+
+
+LaTeX3 Info: Defining command \StorePreventPackageFromLoading with sig. 'm' on
+(LaTeX3) line 242.
+
+
+LaTeX3 Info: Defining command \ResetPreventPackageFromLoading with sig. '' on
+(LaTeX3) line 247.
+
+
+LaTeX3 Info: Defining command \UnPreventPackageFromLoading with sig. 'sm' on
+(LaTeX3) line 261.
+
+
+LaTeX3 Info: Defining command \BeforeClosingMainAux with sig. 'om' on line
+(LaTeX3) 274.
+
+
+LaTeX3 Info: Defining command \AfterReadingMainAux with sig. 'om' on line 287.
+
+
+LaTeX3 Info: Defining command \protected@immediate@write with sig. 'm+m+m' on
+(LaTeX3) line 298.
+
+(/usr/local/texlive/2021/texmf-dist/tex/latex/koma-script/scrlogo.sty
+Package: scrlogo 2021/03/17 v3.33 KOMA-Script package (logo)
+))))) (/usr/local/texlive/2021/texmf-dist/tex/latex/beamer/beamerbasetranslator
+.sty (/usr/local/texlive/2021/texmf-dist/tex/latex/translator/translator.sty
+Package: translator 2020-08-03 v1.12c Easy translation of strings in LaTeX
+)) (/usr/local/texlive/2021/texmf-dist/tex/latex/beamer/beamerbasemisc.sty) (/u
+sr/local/texlive/2021/texmf-dist/tex/latex/beamer/beamerbasetwoscreens.sty) (/u
+sr/local/texlive/2021/texmf-dist/tex/latex/beamer/beamerbaseoverlay.sty
+\beamer@argscount=\count295
+\beamer@lastskipcover=\skip50
+\beamer@trivlistdepth=\count296
+) (/usr/local/texlive/2021/texmf-dist/tex/latex/beamer/beamerbasetitle.sty) (/u
+sr/local/texlive/2021/texmf-dist/tex/latex/beamer/beamerbasesection.sty
+\c@lecture=\count297
+\c@part=\count298
+\c@section=\count299
+\c@subsection=\count300
+\c@subsubsection=\count301
+) (/usr/local/texlive/2021/texmf-dist/tex/latex/beamer/beamerbaseframe.sty
+\beamer@framebox=\box62
+\beamer@frametitlebox=\box63
+\beamer@zoombox=\box64
+\beamer@zoomcount=\count302
+\beamer@zoomframecount=\count303
+\beamer@frametextheight=\dimen261
+\c@subsectionslide=\count304
+\beamer@frametopskip=\skip51
+\beamer@framebottomskip=\skip52
+\beamer@frametopskipautobreak=\skip53
+\beamer@framebottomskipautobreak=\skip54
+\beamer@envbody=\toks28
+\framewidth=\dimen262
+\c@framenumber=\count305
+) (/usr/local/texlive/2021/texmf-dist/tex/latex/beamer/beamerbaseverbatim.sty
+\beamer@verbatimfileout=\write4
+) (/usr/local/texlive/2021/texmf-dist/tex/latex/beamer/beamerbaseframesize.sty
+\beamer@splitbox=\box65
+\beamer@autobreakcount=\count306
+\beamer@autobreaklastheight=\dimen263
+\beamer@frametitletoks=\toks29
+\beamer@framesubtitletoks=\toks30
+)
+(/usr/local/texlive/2021/texmf-dist/tex/latex/beamer/beamerbaseframecomponents.
+sty
+\beamer@footins=\box66
+) (/usr/local/texlive/2021/texmf-dist/tex/latex/beamer/beamerbasecolor.sty) (/u
+sr/local/texlive/2021/texmf-dist/tex/latex/beamer/beamerbasenotes.sty
+\beamer@frameboxcopy=\box67
+) (/usr/local/texlive/2021/texmf-dist/tex/latex/beamer/beamerbasetoc.sty) (/usr
+/local/texlive/2021/texmf-dist/tex/latex/beamer/beamerbasetemplates.sty
+\beamer@sbttoks=\toks31
+
+(/usr/local/texlive/2021/texmf-dist/tex/latex/beamer/beamerbaseauxtemplates.sty
+(/usr/local/texlive/2021/texmf-dist/tex/latex/beamer/beamerbaseboxes.sty
+\bmb@box=\box68
+\bmb@colorbox=\box69
+\bmb@boxwidth=\dimen264
+\bmb@boxheight=\dimen265
+\bmb@prevheight=\dimen266
+\bmb@temp=\dimen267
+\bmb@dima=\dimen268
+\bmb@dimb=\dimen269
+\bmb@prevheight=\dimen270
+)
+\beamer@blockheadheight=\dimen271
+))
+(/usr/local/texlive/2021/texmf-dist/tex/latex/beamer/beamerbaselocalstructure.s
+ty (/usr/local/texlive/2021/texmf-dist/tex/latex/tools/enumerate.sty
+Package: enumerate 2015/07/23 v3.00 enumerate extensions (DPC)
+\@enLab=\toks32
+)
+\beamer@bibiconwidth=\skip55
+\c@figure=\count307
+\c@table=\count308
+\abovecaptionskip=\skip56
+\belowcaptionskip=\skip57
+) (/usr/local/texlive/2021/texmf-dist/tex/latex/beamer/beamerbasenavigation.sty
+\beamer@section@min@dim=\dimen272
+) (/usr/local/texlive/2021/texmf-dist/tex/latex/beamer/beamerbasetheorems.sty (
+/usr/local/texlive/2021/texmf-dist/tex/latex/amsmath/amsmath.sty
+Package: amsmath 2020/09/23 v2.17i AMS math features
+\@mathmargin=\skip58
+For additional information on amsmath, use the `?' option.
+(/usr/local/texlive/2021/texmf-dist/tex/latex/amsmath/amstext.sty
+Package: amstext 2000/06/29 v2.01 AMS text
+(/usr/local/texlive/2021/texmf-dist/tex/latex/amsmath/amsgen.sty
+File: amsgen.sty 1999/11/30 v2.0 generic functions
+\@emptytoks=\toks33
+\ex@=\dimen273
+)) (/usr/local/texlive/2021/texmf-dist/tex/latex/amsmath/amsbsy.sty
+Package: amsbsy 1999/11/29 v1.2d Bold Symbols
+\pmbraise@=\dimen274
+) (/usr/local/texlive/2021/texmf-dist/tex/latex/amsmath/amsopn.sty
+Package: amsopn 2016/03/08 v2.02 operator names
+)
+\inf@bad=\count309
+LaTeX Info: Redefining \frac on input line 234.
+\uproot@=\count310
+\leftroot@=\count311
+LaTeX Info: Redefining \overline on input line 399.
+\classnum@=\count312
+\DOTSCASE@=\count313
+LaTeX Info: Redefining \ldots on input line 496.
+LaTeX Info: Redefining \dots on input line 499.
+LaTeX Info: Redefining \cdots on input line 620.
+\Mathstrutbox@=\box70
+\strutbox@=\box71
+\big@size=\dimen275
+LaTeX Font Info: Redeclaring font encoding OML on input line 743.
+LaTeX Font Info: Redeclaring font encoding OMS on input line 744.
+\macc@depth=\count314
+\c@MaxMatrixCols=\count315
+\dotsspace@=\muskip17
+\c@parentequation=\count316
+\dspbrk@lvl=\count317
+\tag@help=\toks34
+\row@=\count318
+\column@=\count319
+\maxfields@=\count320
+\andhelp@=\toks35
+\eqnshift@=\dimen276
+\alignsep@=\dimen277
+\tagshift@=\dimen278
+\tagwidth@=\dimen279
+\totwidth@=\dimen280
+\lineht@=\dimen281
+\@envbody=\toks36
+\multlinegap=\skip59
+\multlinetaggap=\skip60
+\mathdisplay@stack=\toks37
+LaTeX Info: Redefining \[ on input line 2923.
+LaTeX Info: Redefining \] on input line 2924.
+) (/usr/local/texlive/2021/texmf-dist/tex/latex/amscls/amsthm.sty
+Package: amsthm 2020/05/29 v2.20.6
+\thm@style=\toks38
+\thm@bodyfont=\toks39
+\thm@headfont=\toks40
+\thm@notefont=\toks41
+\thm@headpunct=\toks42
+\thm@preskip=\skip61
+\thm@postskip=\skip62
+\thm@headsep=\skip63
+\dth@everypar=\toks43
+)
+\c@theorem=\count321
+) (/usr/local/texlive/2021/texmf-dist/tex/latex/beamer/beamerbasethemes.sty)) (
+/usr/local/texlive/2021/texmf-dist/tex/latex/beamer/beamerthemedefault.sty
+(/usr/local/texlive/2021/texmf-dist/tex/latex/beamer/beamerfontthemedefault.sty
+)
+(/usr/local/texlive/2021/texmf-dist/tex/latex/beamer/beamercolorthemedefault.st
+y)
+(/usr/local/texlive/2021/texmf-dist/tex/latex/beamer/beamerinnerthemedefault.st
+y
+\beamer@dima=\dimen282
+\beamer@dimb=\dimen283
+)
+(/usr/local/texlive/2021/texmf-dist/tex/latex/beamer/beamerouterthemedefault.st
+y))) (/usr/local/texlive/2021/texmf-dist/tex/latex/base/inputenc.sty
+Package: inputenc 2020/08/01 v1.3d Input encoding file
+\inpenc@prehook=\toks44
+\inpenc@posthook=\toks45
+) (/usr/local/texlive/2021/texmf-dist/tex/generic/hologo/hologo.sty
+Package: hologo 2019/12/05 v1.14 A logo collection with bookmark support (HO)
+) (/usr/local/texlive/2021/texmf-dist/tex/latex/pgfplots/pgfplots.sty (/usr/loc
+al/texlive/2021/texmf-dist/tex/generic/pgfplots/pgfplots.revision.tex)
+Package: pgfplots 2020/02/29 v1.17 Data Visualization (1.17)
+(/usr/local/texlive/2021/texmf-dist/tex/latex/pgf/frontendlayer/tikz.sty (/usr/
+local/texlive/2021/texmf-dist/tex/latex/pgf/basiclayer/pgf.sty
+Package: pgf 2020/12/27 v3.1.8b (3.1.8b)
+
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/modules/pgfmoduleshapes.cod
+e.tex
+File: pgfmoduleshapes.code.tex 2020/12/27 v3.1.8b (3.1.8b)
+\pgfnodeparttextbox=\box72
+)
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/modules/pgfmoduleplot.code.
+tex
+File: pgfmoduleplot.code.tex 2020/12/27 v3.1.8b (3.1.8b)
+)
+(/usr/local/texlive/2021/texmf-dist/tex/latex/pgf/compatibility/pgfcomp-version
+-0-65.sty
+Package: pgfcomp-version-0-65 2020/12/27 v3.1.8b (3.1.8b)
+\pgf@nodesepstart=\dimen284
+\pgf@nodesepend=\dimen285
+)
+(/usr/local/texlive/2021/texmf-dist/tex/latex/pgf/compatibility/pgfcomp-version
+-1-18.sty
+Package: pgfcomp-version-1-18 2020/12/27 v3.1.8b (3.1.8b)
+)) (/usr/local/texlive/2021/texmf-dist/tex/latex/pgf/utilities/pgffor.sty (/usr
+/local/texlive/2021/texmf-dist/tex/latex/pgf/utilities/pgfkeys.sty (/usr/local/
+texlive/2021/texmf-dist/tex/generic/pgf/utilities/pgfkeys.code.tex)) (/usr/loca
+l/texlive/2021/texmf-dist/tex/latex/pgf/math/pgfmath.sty (/usr/local/texlive/20
+21/texmf-dist/tex/generic/pgf/math/pgfmath.code.tex)) (/usr/local/texlive/2021/
+texmf-dist/tex/generic/pgf/utilities/pgffor.code.tex
+Package: pgffor 2020/12/27 v3.1.8b (3.1.8b)
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/math/pgfmath.code.tex)
+\pgffor@iter=\dimen286
+\pgffor@skip=\dimen287
+\pgffor@stack=\toks46
+\pgffor@toks=\toks47
+))
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/frontendlayer/tikz/tikz.cod
+e.tex
+Package: tikz 2020/12/27 v3.1.8b (3.1.8b)
+
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/libraries/pgflibraryplothan
+dlers.code.tex
+File: pgflibraryplothandlers.code.tex 2020/12/27 v3.1.8b (3.1.8b)
+\pgf@plot@mark@count=\count322
+\pgfplotmarksize=\dimen288
+)
+\tikz@lastx=\dimen289
+\tikz@lasty=\dimen290
+\tikz@lastxsaved=\dimen291
+\tikz@lastysaved=\dimen292
+\tikz@lastmovetox=\dimen293
+\tikz@lastmovetoy=\dimen294
+\tikzleveldistance=\dimen295
+\tikzsiblingdistance=\dimen296
+\tikz@figbox=\box73
+\tikz@figbox@bg=\box74
+\tikz@tempbox=\box75
+\tikz@tempbox@bg=\box76
+\tikztreelevel=\count323
+\tikznumberofchildren=\count324
+\tikznumberofcurrentchild=\count325
+\tikz@fig@count=\count326
+
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/modules/pgfmodulematrix.cod
+e.tex
+File: pgfmodulematrix.code.tex 2020/12/27 v3.1.8b (3.1.8b)
+\pgfmatrixcurrentrow=\count327
+\pgfmatrixcurrentcolumn=\count328
+\pgf@matrix@numberofcolumns=\count329
+)
+\tikz@expandcount=\count330
+
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/frontendlayer/tikz/librarie
+s/tikzlibrarytopaths.code.tex
+File: tikzlibrarytopaths.code.tex 2020/12/27 v3.1.8b (3.1.8b)
+))) (/usr/local/texlive/2021/texmf-dist/tex/generic/pgfplots/pgfplots.code.tex
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgfplots/pgfplotscore.code.tex
+\t@pgfplots@toka=\toks48
+\t@pgfplots@tokb=\toks49
+\t@pgfplots@tokc=\toks50
+\pgfplots@tmpa=\dimen297
+\c@pgfplots@coordindex=\count331
+\c@pgfplots@scanlineindex=\count332
+
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgfplots/sys/pgfplotssysgeneric
+.code.tex))
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgfplots/libs/pgfplotslibrary.c
+ode.tex)
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgfplots/oldpgfcompatib/pgfplot
+soldpgfsupp_loader.code.tex
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/libraries/pgflibraryfpu.cod
+e.tex))
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgfplots/util/pgfplotsutil.code
+.tex
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgfplots/liststructure/pgfplots
+liststructure.code.tex)
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgfplots/liststructure/pgfplots
+liststructureext.code.tex)
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgfplots/liststructure/pgfplots
+array.code.tex
+\c@pgfplotsarray@tmp=\count333
+)
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgfplots/liststructure/pgfplots
+matrix.code.tex)
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgfplots/numtable/pgfplotstable
+shared.code.tex
+\c@pgfplotstable@counta=\count334
+\t@pgfplotstable@a=\toks51
+)
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgfplots/liststructure/pgfplots
+deque.code.tex)
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgfplots/util/pgfplotsbinary.co
+de.tex
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgfplots/util/pgfplotsbinary.da
+ta.code.tex))
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgfplots/util/pgfplotsutil.verb
+.code.tex)
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgfplots/libs/pgflibrarypgfplot
+s.surfshading.code.tex
+\c@pgfplotslibrarysurf@no=\count335
+
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgfplots/sys/pgflibrarypgfplots
+.surfshading.pgfsys-pdftex.def)))
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgfplots/util/pgfplotscolormap.
+code.tex
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgfplots/util/pgfplotscolor.cod
+e.tex))
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgfplots/pgfplotsstackedplots.c
+ode.tex)
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgfplots/pgfplotsplothandlers.c
+ode.tex
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgfplots/pgfplotsmeshplothandle
+r.code.tex
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgfplots/pgfplotsmeshplotimage.
+code.tex)))
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgfplots/pgfplots.scaling.code.
+tex)
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgfplots/pgfplotscoordprocessin
+g.code.tex)
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgfplots/pgfplots.errorbars.cod
+e.tex)
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgfplots/pgfplots.markers.code.
+tex)
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgfplots/pgfplotsticks.code.tex
+)
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgfplots/pgfplots.paths.code.te
+x)
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/frontendlayer/tikz/librarie
+s/tikzlibrarydecorations.code.tex
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/modules/pgfmoduledecoration
+s.code.tex
+\pgfdecoratedcompleteddistance=\dimen298
+\pgfdecoratedremainingdistance=\dimen299
+\pgfdecoratedinputsegmentcompleteddistance=\dimen300
+\pgfdecoratedinputsegmentremainingdistance=\dimen301
+\pgf@decorate@distancetomove=\dimen302
+\pgf@decorate@repeatstate=\count336
+\pgfdecorationsegmentamplitude=\dimen303
+\pgfdecorationsegmentlength=\dimen304
+)
+\tikz@lib@dec@box=\box77
+)
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/frontendlayer/tikz/librarie
+s/tikzlibrarydecorations.pathmorphing.code.tex
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/libraries/decorations/pgfli
+brarydecorations.pathmorphing.code.tex))
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/frontendlayer/tikz/librarie
+s/tikzlibrarydecorations.pathreplacing.code.tex
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/libraries/decorations/pgfli
+brarydecorations.pathreplacing.code.tex))
+\pgfplots@numplots=\count337
+\pgfplots@xmin@reg=\dimen305
+\pgfplots@xmax@reg=\dimen306
+\pgfplots@ymin@reg=\dimen307
+\pgfplots@ymax@reg=\dimen308
+\pgfplots@zmin@reg=\dimen309
+\pgfplots@zmax@reg=\dimen310
+)
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/frontendlayer/tikz/librarie
+s/tikzlibraryplotmarks.code.tex
+File: tikzlibraryplotmarks.code.tex 2020/12/27 v3.1.8b (3.1.8b)
+
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/libraries/pgflibraryplotmar
+ks.code.tex
+File: pgflibraryplotmarks.code.tex 2020/12/27 v3.1.8b (3.1.8b)
+))) (/usr/local/texlive/2021/texmf-dist/tex/latex/siunitx/siunitx.sty (/usr/loc
+al/texlive/2021/texmf-dist/tex/latex/l3kernel/expl3.sty
+Package: expl3 2021-02-18 L3 programming layer (loader)
+(/usr/local/texlive/2021/texmf-dist/tex/latex/l3backend/l3backend-pdftex.def
+File: l3backend-pdftex.def 2021-03-18 L3 backend support: PDF output (pdfTeX)
+\l__color_backend_stack_int=\count338
+\l__pdf_internal_box=\box78
+)) (/usr/local/texlive/2021/texmf-dist/tex/latex/l3packages/xparse/xparse.sty
+(/usr/local/texlive/2021/texmf-dist/tex/latex/l3packages/xparse/xparse-2020-10-
+01.sty
+(/usr/local/texlive/2021/texmf-dist/tex/latex/l3packages/xparse/xparse-generic.
+tex)))
+Package: siunitx 2021-04-09 v2.8d A comprehensive (SI) units package
+(/usr/local/texlive/2021/texmf-dist/tex/latex/tools/array.sty
+Package: array 2020/10/01 v2.5c Tabular extension package (FMi)
+\col@sep=\dimen311
+\ar@mcellbox=\box79
+\extrarowheight=\dimen312
+\NC@list=\toks52
+\extratabsurround=\skip64
+\backup@length=\skip65
+\ar@cellbox=\box80
+) (/usr/local/texlive/2021/texmf-dist/tex/latex/l3packages/l3keys2e/l3keys2e.st
+y
+Package: l3keys2e 2021-03-12 LaTeX2e option processing using LaTeX3 keys
+)
+\l__siunitx_tmp_box=\box81
+\l__siunitx_tmp_dim=\dimen313
+\l__siunitx_tmp_int=\count339
+\l__siunitx_number_mantissa_length_int=\count340
+\l__siunitx_number_uncert_length_int=\count341
+\l__siunitx_round_int=\count342
+\l__siunitx_process_decimal_int=\count343
+\l__siunitx_process_uncertainty_int=\count344
+\l__siunitx_process_fixed_int=\count345
+\l__siunitx_process_integer_min_int=\count346
+\l__siunitx_process_precision_int=\count347
+\l__siunitx_group_min_int=\count348
+\l__siunitx_angle_marker_box=\box82
+\l__siunitx_angle_unit_box=\box83
+\l__siunitx_angle_marker_dim=\dimen314
+\l__siunitx_angle_unit_dim=\dimen315
+\l__siunitx_unit_int=\count349
+\l__siunitx_unit_denominator_int=\count350
+\l__siunitx_unit_numerator_int=\count351
+\l__siunitx_unit_prefix_int=\count352
+\l__siunitx_unit_prefix_base_int=\count353
+\l__siunitx_unit_prefix_gram_int=\count354
+\l__siunitx_number_product_int=\count355
+\c__siunitx_one_fill_skip=\skip66
+\l__siunitx_table_unit_align_skip=\skip67
+\l__siunitx_table_exponent_dim=\dimen316
+\l__siunitx_table_integer_dim=\dimen317
+\l__siunitx_table_mantissa_dim=\dimen318
+\l__siunitx_table_marker_dim=\dimen319
+\l__siunitx_table_result_dim=\dimen320
+\l__siunitx_table_uncert_dim=\dimen321
+\l__siunitx_table_fill_pre_dim=\dimen322
+\l__siunitx_table_fill_post_dim=\dimen323
+\l__siunitx_table_fill_mid_dim=\dimen324
+\l__siunitx_table_pre_box=\box84
+\l__siunitx_table_post_box=\box85
+\l__siunitx_table_mantissa_box=\box86
+\l__siunitx_table_result_box=\box87
+\l__siunitx_table_number_align_skip=\skip68
+\l__siunitx_table_text_align_skip=\skip69
+) (/usr/local/texlive/2021/texmf-dist/tex/latex/tools/multicol.sty
+Package: multicol 2019/12/09 v1.8y multicolumn formatting (FMi)
+\c@tracingmulticols=\count356
+\mult@box=\box88
+\multicol@leftmargin=\dimen325
+\c@unbalance=\count357
+\c@collectmore=\count358
+\doublecol@number=\count359
+\multicoltolerance=\count360
+\multicolpretolerance=\count361
+\full@width=\dimen326
+\page@free=\dimen327
+\premulticols=\dimen328
+\postmulticols=\dimen329
+\multicolsep=\skip70
+\multicolbaselineskip=\skip71
+\partial@page=\box89
+\last@line=\box90
+\maxbalancingoverflow=\dimen330
+\mult@rightbox=\box91
+\mult@grightbox=\box92
+\mult@gfirstbox=\box93
+\mult@firstbox=\box94
+\@tempa=\box95
+\@tempa=\box96
+\@tempa=\box97
+\@tempa=\box98
+\@tempa=\box99
+\@tempa=\box100
+\@tempa=\box101
+\@tempa=\box102
+\@tempa=\box103
+\@tempa=\box104
+\@tempa=\box105
+\@tempa=\box106
+\@tempa=\box107
+\@tempa=\box108
+\@tempa=\box109
+\@tempa=\box110
+\@tempa=\box111
+\@tempa=\box112
+\@tempa=\box113
+\@tempa=\box114
+\@tempa=\box115
+\@tempa=\box116
+\@tempa=\box117
+\@tempa=\box118
+\@tempa=\box119
+\@tempa=\box120
+\@tempa=\box121
+\@tempa=\box122
+\@tempa=\box123
+\@tempa=\box124
+\@tempa=\box125
+\@tempa=\box126
+\@tempa=\box127
+\@tempa=\box128
+\@tempa=\box129
+\@tempa=\box130
+\@tempa=\box131
+\c@minrows=\count362
+\c@columnbadness=\count363
+\c@finalcolumnbadness=\count364
+\last@try=\dimen331
+\multicolovershoot=\dimen332
+\multicolundershoot=\dimen333
+\mult@nat@firstbox=\box132
+\colbreak@box=\box133
+\mc@col@check@num=\count365
+) (/usr/local/texlive/2021/texmf-dist/tex/latex/tabularcalc/tabularcalc.sty
+Package: tabularcalc 2009/04/20 v0.2 Compute formulas in tables
+(/usr/local/texlive/2021/texmf-dist/tex/latex/fp/fp.sty
+Package: fp 1995/04/02
+`Fixed Point Package', Version 0.8, April 2, 1995 (C) Michael Mehlich (/usr/loc
+al/texlive/2021/texmf-dist/tex/latex/fp/defpattern.sty
+Package: defpattern 1994/10/12
+\actioncount=\count366
+) (/usr/local/texlive/2021/texmf-dist/tex/latex/fp/fp-basic.sty
+Package: fp-basic 1996/05/13
+\FP@xs=\count367
+\FP@xia=\count368
+\FP@xib=\count369
+\FP@xfa=\count370
+\FP@xfb=\count371
+\FP@rega=\count372
+\FP@regb=\count373
+\FP@regs=\count374
+\FP@times=\count375
+) (/usr/local/texlive/2021/texmf-dist/tex/latex/fp/fp-addons.sty
+Package: fp-addons 1995/03/15
+) (/usr/local/texlive/2021/texmf-dist/tex/latex/fp/fp-snap.sty
+Package: fp-snap 1995/04/05
+) (/usr/local/texlive/2021/texmf-dist/tex/latex/fp/fp-exp.sty
+Package: fp-exp 1995/04/03
+) (/usr/local/texlive/2021/texmf-dist/tex/latex/fp/fp-trigo.sty
+Package: fp-trigo 1995/04/14
+) (/usr/local/texlive/2021/texmf-dist/tex/latex/fp/fp-pas.sty
+Package: fp-pas 1994/08/29
+) (/usr/local/texlive/2021/texmf-dist/tex/latex/fp/fp-random.sty
+Package: fp-random 1995/02/23
+\FPseed=\count376
+) (/usr/local/texlive/2021/texmf-dist/tex/latex/fp/fp-eqn.sty
+Package: fp-eqn 1995/04/03
+) (/usr/local/texlive/2021/texmf-dist/tex/latex/fp/fp-upn.sty
+Package: fp-upn 1996/10/21
+) (/usr/local/texlive/2021/texmf-dist/tex/latex/fp/fp-eval.sty
+Package: fp-eval 1995/04/03
+)) (/usr/local/texlive/2021/texmf-dist/tex/generic/xstring/xstring.sty (/usr/lo
+cal/texlive/2021/texmf-dist/tex/generic/xstring/xstring.tex
+\integerpart=\count377
+\decimalpart=\count378
+)
+Package: xstring 2019/02/06 v1.83 String manipulations (CT)
+) (/usr/local/texlive/2021/texmf-dist/tex/latex/numprint/numprint.sty
+Package: numprint 2012/08/20 v1.39 Print numbers (HH)
+\c@nprt@mantissa@digitsbefore=\count379
+\c@nprt@mantissa@digitsafter=\count380
+\c@nprt@exponent@digitsbefore=\count381
+\c@nprt@exponent@digitsafter=\count382
+\nprt@digitwidth=\skip72
+\nprt@sepwidth=\skip73
+\nprt@decimalwidth=\skip74
+\nprt@blockwidth=\skip75
+\nprt@digittoks=\toks53
+\nprt@pretoks=\toks54
+\nprt@posttoks=\toks55
+\nprt@thisdigit=\count383
+\nprt@curpos=\count384
+\nprt@rndpos=\count385
+\c@nprt@digitsfirstblock=\count386
+\c@nprt@blockcnt=\count387
+\c@nprt@cntprint=\count388
+No configuration file `numprint.cfg' found.)
+\tccol=\count389
+\tclin=\count390
+\tc@export=\write5
+) (/usr/local/texlive/2021/texmf-dist/tex/latex/mathtools/mathtools.sty
+Package: mathtools 2021/04/12 v1.27 mathematical typesetting tools
+(/usr/local/texlive/2021/texmf-dist/tex/latex/tools/calc.sty
+Package: calc 2017/05/25 v4.3 Infix arithmetic (KKT,FJ)
+\calc@Acount=\count391
+\calc@Bcount=\count392
+\calc@Adimen=\dimen334
+\calc@Bdimen=\dimen335
+\calc@Askip=\skip76
+\calc@Bskip=\skip77
+LaTeX Info: Redefining \setlength on input line 80.
+LaTeX Info: Redefining \addtolength on input line 81.
+\calc@Ccount=\count393
+\calc@Cskip=\skip78
+) (/usr/local/texlive/2021/texmf-dist/tex/latex/mathtools/mhsetup.sty
+Package: mhsetup 2021/03/18 v1.4 programming setup (MH)
+)
+LaTeX Info: Thecontrolsequence`\('isalreadyrobust on input line 130.
+LaTeX Info: Thecontrolsequence`\)'isalreadyrobust on input line 130.
+LaTeX Info: Thecontrolsequence`\['isalreadyrobust on input line 130.
+LaTeX Info: Thecontrolsequence`\]'isalreadyrobust on input line 130.
+\g_MT_multlinerow_int=\count394
+\l_MT_multwidth_dim=\dimen336
+\origjot=\skip79
+\l_MT_shortvdotswithinadjustabove_dim=\dimen337
+\l_MT_shortvdotswithinadjustbelow_dim=\dimen338
+\l_MT_above_intertext_sep=\dimen339
+\l_MT_below_intertext_sep=\dimen340
+\l_MT_above_shortintertext_sep=\dimen341
+\l_MT_below_shortintertext_sep=\dimen342
+\xmathstrut@box=\box134
+\xmathstrut@dim=\dimen343
+) (/usr/local/texlive/2021/texmf-dist/tex/latex/float/float.sty
+Package: float 2001/11/08 v1.3d Float enhancements (AL)
+\c@float@type=\count395
+\float@exts=\toks56
+\float@box=\box135
+\@float@everytoks=\toks57
+\@floatcapt=\box136
+) (/usr/local/texlive/2021/texmf-dist/tex/latex/tasks/tasks.sty
+(/usr/local/texlive/2021/texmf-dist/tex/latex/l3packages/xtemplate/xtemplate.st
+y
+Package: xtemplate 2021-03-12 L3 Experimental prototype document functions
+\l__xtemplate_tmp_dim=\dimen344
+\l__xtemplate_tmp_int=\count396
+\l__xtemplate_tmp_muskip=\muskip18
+\l__xtemplate_tmp_skip=\skip80
+)
+Package: tasks 2021/02/20 v1.3a lists with columns filled horizontally
+\g__tasks_total_items_int=\count397
+\l__tasks_columns_int=\count398
+\g__tasks_rows_int=\count399
+\g__tasks_current_col_num_int=\count400
+\g__tasks_current_row_num_int=\count401
+\l__tasks_item_columns_int=\count402
+\g__tasks_env_int=\count403
+\l__tasks_start_int=\count404
+\l__tasks_item_indent_dim=\dimen345
+\l__tasks_item_default_indent_dim=\dimen346
+\l__tasks_item_width_dim=\dimen347
+\l__tasks_label_width_dim=\dimen348
+\l__tasks_label_default_width_dim=\dimen349
+\l__tasks_label_offset_dim=\dimen350
+\l__tasks_label_default_offset_dim=\dimen351
+\l__tasks_column_sep_dim=\dimen352
+\l__tasks_correction_dim=\dimen353
+\l__tasks_full_width_dim=\dimen354
+\l__tasks_after_item_skip=\skip81
+\l__tasks_custom_after_item_skip=\skip82
+\l__tasks_before_list_skip=\skip83
+\l__tasks_after_list_skip=\skip84
+\l__tasks_item_coffin=\box137
+\l__tasks_label_coffin=\box138
+\c@task=\count405
+\l__tasks_tmpa_int=\count406
+\l__tasks_tmpb_int=\count407
+\l__tasks_tmpa_coffin=\box139
+\l__tasks_tmpa_box=\box140
+
+Package xtemplate Info: Declaring object type 'tasks' taking 3 argument(s) on
+(xtemplate) line 450.
+
+(/usr/local/texlive/2021/texmf-dist/tex/latex/tasks/tasks.cfg)) (/usr/local/tex
+live/2021/texmf-dist/tex/latex/environ/environ.sty
+Package: environ 2014/05/04 v0.3 A new way to define environments
+(/usr/local/texlive/2021/texmf-dist/tex/latex/trimspaces/trimspaces.sty
+Package: trimspaces 2009/09/17 v1.1 Trim spaces around a token list
+)) (/usr/local/texlive/2021/texmf-dist/tex/generic/ulem/ulem.sty
+\UL@box=\box141
+\UL@hyphenbox=\box142
+\UL@skip=\skip85
+\UL@hook=\toks58
+\UL@height=\dimen355
+\UL@pe=\count408
+\UL@pixel=\dimen356
+\ULC@box=\box143
+Package: ulem 2019/11/18
+\ULdepth=\dimen357
+) (/usr/local/texlive/2021/texmf-dist/tex/latex/pgfplots/pgfplotstable.sty (/us
+r/local/texlive/2021/texmf-dist/tex/generic/pgfplots/pgfplots.revision.tex)
+Package: pgfplotstable 2020/02/29 v1.17 Table typesetting and Pretty-printing (
+1.17)
+
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgfplots/numtable/pgfplotstable
+.code.tex
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgfplots/numtable/pgfplotstable
+.coltype.code.tex))) (/usr/local/texlive/2021/texmf-dist/tex/generic/babel/babe
+l.sty
+Package: babel 2021/04/07 3.57 The Babel package
+(/usr/local/texlive/2021/texmf-dist/tex/generic/babel/babel.def
+File: babel.def 2021/04/07 3.57 Babel common definitions
+\babel@savecnt=\count409
+\U@D=\dimen358
+\l@babelnohyphens=\language87
+(/usr/local/texlive/2021/texmf-dist/tex/generic/babel/txtbabel.def)
+\bbl@readstream=\read3
+)
+LaTeX Info: Redefining \textlatin on input line 717.
+\bbl@dirlevel=\count410
+(/usr/local/texlive/2021/texmf-dist/tex/generic/babel-slovenian/slovene.ldf
+Language: slovene 2021/02/06 v1.2n Slovene support from the babel system
+Package babel Info: Making " an active character on input line 79.
+)) (/usr/local/texlive/2021/texmf-dist/tex/latex/biblatex/biblatex.sty
+Package: biblatex 2020/12/31 v3.16 programmable bibliographies (PK/MW)
+(/usr/local/texlive/2021/texmf-dist/tex/latex/logreq/logreq.sty
+Package: logreq 2010/08/04 v1.0 xml request logger
+\lrq@indent=\count411
+(/usr/local/texlive/2021/texmf-dist/tex/latex/logreq/logreq.def
+File: logreq.def 2010/08/04 v1.0 logreq spec v1.0
+)) (/usr/local/texlive/2021/texmf-dist/tex/latex/base/ifthen.sty
+Package: ifthen 2014/09/29 v1.1c Standard LaTeX ifthen package (DPC)
+)
+\c@tabx@nest=\count412
+\c@listtotal=\count413
+\c@listcount=\count414
+\c@liststart=\count415
+\c@liststop=\count416
+\c@citecount=\count417
+\c@citetotal=\count418
+\c@multicitecount=\count419
+\c@multicitetotal=\count420
+\c@instcount=\count421
+\c@maxnames=\count422
+\c@minnames=\count423
+\c@maxitems=\count424
+\c@minitems=\count425
+\c@citecounter=\count426
+\c@maxcitecounter=\count427
+\c@savedcitecounter=\count428
+\c@uniquelist=\count429
+\c@uniquename=\count430
+\c@refsection=\count431
+\c@refsegment=\count432
+\c@maxextratitle=\count433
+\c@maxextratitleyear=\count434
+\c@maxextraname=\count435
+\c@maxextradate=\count436
+\c@maxextraalpha=\count437
+\c@abbrvpenalty=\count438
+\c@highnamepenalty=\count439
+\c@lownamepenalty=\count440
+\c@maxparens=\count441
+\c@parenlevel=\count442
+\blx@tempcnta=\count443
+\blx@tempcntb=\count444
+\blx@tempcntc=\count445
+\blx@maxsection=\count446
+\blx@maxsegment@0=\count447
+\blx@notetype=\count448
+\blx@parenlevel@text=\count449
+\blx@parenlevel@foot=\count450
+\blx@sectionciteorder@0=\count451
+\blx@entrysetcounter=\count452
+\blx@biblioinstance=\count453
+\labelnumberwidth=\skip86
+\labelalphawidth=\skip87
+\biblabelsep=\skip88
+\bibitemsep=\skip89
+\bibnamesep=\skip90
+\bibinitsep=\skip91
+\bibparsep=\skip92
+\bibhang=\skip93
+\blx@bcfin=\read4
+\blx@bcfout=\write6
+\blx@langwohyphens=\language88
+\c@mincomprange=\count454
+\c@maxcomprange=\count455
+\c@mincompwidth=\count456
+Package biblatex Info: Trying to load biblatex default data model...
+Package biblatex Info: ... file 'blx-dm.def' found.
+(/usr/local/texlive/2021/texmf-dist/tex/latex/biblatex/blx-dm.def
+File: blx-dm.def 2020/12/31 v3.16 biblatex localization (PK/MW)
+)
+Package biblatex Info: Trying to load biblatex style data model...
+Package biblatex Info: ... file 'iso-authoryear.dbx' found.
+
+(/usr/local/texlive/2021/texmf-dist/tex/latex/biblatex-iso690/iso-authoryear.db
+x
+File: iso-authoryear.dbx 2020/03/25 v0.4.0 ISO 690 biblatex data model extensio
+n
+)
+Package biblatex Info: Trying to load biblatex custom data model...
+Package biblatex Info: ... file 'biblatex-dm.cfg' not found.
+\c@afterword=\count457
+\c@savedafterword=\count458
+\c@annotator=\count459
+\c@savedannotator=\count460
+\c@author=\count461
+\c@savedauthor=\count462
+\c@bookauthor=\count463
+\c@savedbookauthor=\count464
+\c@commentator=\count465
+\c@savedcommentator=\count466
+\c@editor=\count467
+\c@savededitor=\count468
+\c@editora=\count469
+\c@savededitora=\count470
+\c@editorb=\count471
+\c@savededitorb=\count472
+\c@editorc=\count473
+\c@savededitorc=\count474
+\c@foreword=\count475
+\c@savedforeword=\count476
+\c@holder=\count477
+\c@savedholder=\count478
+\c@introduction=\count479
+\c@savedintroduction=\count480
+\c@namea=\count481
+\c@savednamea=\count482
+\c@nameb=\count483
+\c@savednameb=\count484
+\c@namec=\count485
+\c@savednamec=\count486
+\c@translator=\count487
+\c@savedtranslator=\count488
+\c@shortauthor=\count489
+\c@savedshortauthor=\count490
+\c@shorteditor=\count491
+\c@savedshorteditor=\count492
+\c@supervisor=\count493
+\c@savedsupervisor=\count494
+\c@labelname=\count495
+\c@savedlabelname=\count496
+\c@institution=\count497
+\c@savedinstitution=\count498
+\c@lista=\count499
+\c@savedlista=\count500
+\c@listb=\count501
+\c@savedlistb=\count502
+\c@listc=\count503
+\c@savedlistc=\count504
+\c@listd=\count505
+\c@savedlistd=\count506
+\c@liste=\count507
+\c@savedliste=\count508
+\c@listf=\count509
+\c@savedlistf=\count510
+\c@location=\count511
+\c@savedlocation=\count512
+\c@organization=\count513
+\c@savedorganization=\count514
+\c@origlocation=\count515
+\c@savedoriglocation=\count516
+\c@origpublisher=\count517
+\c@savedorigpublisher=\count518
+\c@publisher=\count519
+\c@savedpublisher=\count520
+\c@language=\count521
+\c@savedlanguage=\count522
+\c@origlanguage=\count523
+\c@savedoriglanguage=\count524
+\c@pageref=\count525
+\c@savedpageref=\count526
+\shorthandwidth=\skip94
+\shortjournalwidth=\skip95
+\shortserieswidth=\skip96
+\shorttitlewidth=\skip97
+\shortauthorwidth=\skip98
+\shorteditorwidth=\skip99
+\locallabelnumberwidth=\skip100
+\locallabelalphawidth=\skip101
+\localshorthandwidth=\skip102
+\localshortjournalwidth=\skip103
+\localshortserieswidth=\skip104
+\localshorttitlewidth=\skip105
+\localshortauthorwidth=\skip106
+\localshorteditorwidth=\skip107
+Package biblatex Info: Trying to load compatibility code...
+Package biblatex Info: ... file 'blx-compat.def' found.
+(/usr/local/texlive/2021/texmf-dist/tex/latex/biblatex/blx-compat.def
+File: blx-compat.def 2020/12/31 v3.16 biblatex compatibility (PK/MW)
+)
+Package biblatex Info: Trying to load generic definitions...
+Package biblatex Info: ... file 'biblatex.def' found.
+(/usr/local/texlive/2021/texmf-dist/tex/latex/biblatex/biblatex.def
+File: biblatex.def 2020/12/31 v3.16 biblatex compatibility (PK/MW)
+\c@textcitecount=\count527
+\c@textcitetotal=\count528
+\c@textcitemaxnames=\count529
+\c@biburlbigbreakpenalty=\count530
+\c@biburlbreakpenalty=\count531
+\c@biburlnumpenalty=\count532
+\c@biburlucpenalty=\count533
+\c@biburllcpenalty=\count534
+\biburlbigskip=\muskip19
+\biburlnumskip=\muskip20
+\biburlucskip=\muskip21
+\biburllcskip=\muskip22
+\c@smartand=\count535
+)
+Package biblatex Info: Trying to load bibliography style 'iso-authoryear'...
+Package biblatex Info: ... file 'iso-authoryear.bbx' found.
+
+(/usr/local/texlive/2021/texmf-dist/tex/latex/biblatex-iso690/iso-authoryear.bb
+x
+File: iso-authoryear.bbx 2020/03/25 v0.4.0 ISO 690 biblatex bibliography style
+Package biblatex Info: Trying to load bibliography style 'iso'...
+Package biblatex Info: ... file 'iso.bbx' found.
+(/usr/local/texlive/2021/texmf-dist/tex/latex/biblatex-iso690/iso.bbx
+File: iso.bbx 2020/03/25 v0.4.0 ISO 690 biblatex bibliography style
+Package biblatex-iso690 Info: Space colon enabled: false.
+Package biblatex-iso690 Info: Total pages enabled: false.
+Package biblatex-iso690 Info: Short numeration enabled: false.
+Package biblatex-iso690 Info: Printing thesis info at the end enabled: true.
+Package biblatex-iso690 Info: URL field enabled: true.
+Package biblatex-iso690 Info: ISBN field enabled: true.
+Package biblatex-iso690 Info: DOI field enabled: true.
+Package biblatex-iso690 Info: eprint field enabled: true.
+Package biblatex-iso690 Info: Article publication info enabled: false.
+Package biblatex Info: Delimiter 'multinamedelim' in context '' already defined
+, overwriting.
+Package biblatex Info: Delimiter 'finalnamedelim' in context '' already defined
+, overwriting.
+Package biblatex Info: Delimiter 'editortypedelim' in context '' already define
+d, overwriting.
+Package biblatex Info: Delimiter 'authortypedelim' in context '' already define
+d, overwriting.
+)
+Package biblatex Info: Delimiter 'nameyeardelim' in context 'bib' already defin
+ed, overwriting.
+Package biblatex Info: Delimiter 'nameyeardelim' in context 'biblist' already d
+efined, overwriting.
+Package biblatex Info: Delimiter 'nonameyeardelim' in context 'bib' already def
+ined, overwriting.
+Package biblatex Info: Delimiter 'nonameyeardelim' in context 'biblist' already
+ defined, overwriting.
+)
+Package biblatex Info: Trying to load citation style 'iso-authoryear'...
+Package biblatex Info: ... file 'iso-authoryear.cbx' found.
+
+(/usr/local/texlive/2021/texmf-dist/tex/latex/biblatex-iso690/iso-authoryear.cb
+x
+File: iso-authoryear.cbx 2020/03/25 v0.4.0 ISO 690 biblatex citation style
+Package biblatex Info: Trying to load citation style 'authoryear'...
+Package biblatex Info: ... file 'authoryear.cbx' found.
+(/usr/local/texlive/2021/texmf-dist/tex/latex/biblatex/cbx/authoryear.cbx
+File: authoryear.cbx 2020/12/31 v3.16 biblatex citation style (PK/MW)
+Package biblatex Info: Redefining '\cite'.
+Package biblatex Info: Redefining '\parencite'.
+Package biblatex Info: Redefining '\footcite'.
+Package biblatex Info: Redefining '\footcitetext'.
+Package biblatex Info: Redefining '\smartcite'.
+Package biblatex Info: Redefining '\textcite'.
+Package biblatex Info: Redefining '\textcites'.
+)
+Package biblatex Info: Trying to load citation style 'iso-fullcite'...
+Package biblatex Info: ... file 'iso-fullcite.cbx' found.
+(/usr/local/texlive/2021/texmf-dist/tex/latex/biblatex-iso690/iso-fullcite.cbx
+File: iso-fullcite.cbx 2020/03/25 v0.4.0 ISO 690 biblatex fullcite modification
+s
+Package biblatex Info: Redefining '\fullcite'.
+Package biblatex Info: Redefining '\footfullcite'.
+)
+Package biblatex Info: Delimiter 'nameyeardelim' in context '' already defined,
+ overwriting.
+Package biblatex Info: Delimiter 'nonameyeardelim' in context '' already define
+d, overwriting.
+)
+Package biblatex Info: Trying to load configuration file...
+Package biblatex Info: ... file 'biblatex.cfg' found.
+(/usr/local/texlive/2021/texmf-dist/tex/latex/biblatex/biblatex.cfg
+File: biblatex.cfg
+)) (/usr/local/texlive/2021/texmf-dist/tex/latex/datetime/datetime.sty
+Package: datetime 2015/03/20 v2.60 Date Time Package
+(/usr/local/texlive/2021/texmf-dist/tex/latex/fmtcount/fmtcount.sty
+Package: fmtcount 2020/01/30 v3.07
+(/usr/local/texlive/2021/texmf-dist/tex/latex/xkeyval/xkeyval.sty
+Package: xkeyval 2020/11/20 v2.8 package option processing (HA)
+(/usr/local/texlive/2021/texmf-dist/tex/generic/xkeyval/xkeyval.tex (/usr/local
+/texlive/2021/texmf-dist/tex/generic/xkeyval/xkvutils.tex
+\XKV@toks=\toks59
+\XKV@tempa@toks=\toks60
+)
+\XKV@depth=\count536
+File: xkeyval.tex 2014/12/03 v2.7a key=value parser (HA)
+)) (/usr/local/texlive/2021/texmf-dist/tex/latex/fmtcount/fcprefix.sty
+Package: fcprefix 2012/09/28
+(/usr/local/texlive/2021/texmf-dist/tex/latex/fmtcount/fcnumparser.sty
+Package: fcnumparser 2017/06/15
+\fc@digit@counter=\count537
+))
+\c@padzeroesN=\count538
+\fc@tmpcatcode=\count539
+\@DT@modctr=\count540
+\@ordinalctr=\count541
+\@orgargctr=\count542
+\@strctr=\count543
+\@tmpstrctr=\count544
+\@DT@loopN=\count545
+\@DT@X=\count546
+) (/usr/local/texlive/2021/texmf-dist/tex/latex/datetime/datetime-defaults.sty
+Package: datetime-defaults 2013/09/10
+)
+\@day=\count547
+\@month=\count548
+\@year=\count549
+\c@HOUR=\count550
+\c@HOURXII=\count551
+\c@MINUTE=\count552
+\c@TOHOUR=\count553
+\c@TOMINUTE=\count554
+\c@SECOND=\count555
+\currenthour=\count556
+\currentminute=\count557
+\currentsecond=\count558
+Package datetime Info: No datetime.cfg file found, using default settings on in
+put line 308.
+
+! LaTeX Error: Unknown option `ddMMyyyy' for package `datetime'.
+
+See the LaTeX manual or LaTeX Companion for explanation.
+Type H <return> for immediate help.
+ ...
+
+l.560 \if@dt@nodate
+
+Here is how much of TeX's memory you used:
+ 44588 strings out of 478994
+ 1023957 string characters out of 5858190
+ 1635550 words of memory out of 5000000
+ 61320 multiletter control sequences out of 15000+600000
+ 404141 words of font info for 30 fonts, out of 8000000 for 9000
+ 1141 hyphenation exceptions out of 8191
+ 135i,0n,135p,1048b,609s stack positions out of 5000i,500n,10000p,200000b,80000s
+
+! ==> Fatal error occurred, no output PDF file produced!
diff --git a/fiz/naloga/predstavitev/dokument-figure7.md5 b/fiz/naloga/predstavitev/dokument-figure7.md5
new file mode 100644
index 0000000..ee0ba1d
--- /dev/null
+++ b/fiz/naloga/predstavitev/dokument-figure7.md5
@@ -0,0 +1 @@
+\def \tikzexternallastkey {8A5BA1CDFFE3B62E8EB5A375B20167D1}%
diff --git a/fiz/naloga/predstavitev/dokument-figure8.log b/fiz/naloga/predstavitev/dokument-figure8.log
new file mode 100644
index 0000000..296e295
--- /dev/null
+++ b/fiz/naloga/predstavitev/dokument-figure8.log
@@ -0,0 +1,1541 @@
+This is pdfTeX, Version 3.141592653-2.6-1.40.22 (TeX Live 2021) (preloaded format=pdflatex 2021.4.17) 3 JUN 2021 21:12
+entering extended mode
+ \write18 enabled.
+ %&-line parsing enabled.
+**\def\tikzexternalrealjob{dokument}\input{dokument}
+(./dokument.tex (/usr/local/texlive/2021/texmf-dist/tex/latex/beamer/beamer.cls
+Document Class: beamer 2021/03/19 v3.62 A class for typesetting presentations
+(/usr/local/texlive/2021/texmf-dist/tex/latex/beamer/beamerbasemodes.sty (/usr/
+local/texlive/2021/texmf-dist/tex/latex/etoolbox/etoolbox.sty
+Package: etoolbox 2020/10/05 v2.5k e-TeX tools for LaTeX (JAW)
+\etb@tempcnta=\count179
+)
+\beamer@tempbox=\box47
+\beamer@tempcount=\count180
+\c@beamerpauses=\count181
+(/usr/local/texlive/2021/texmf-dist/tex/latex/beamer/beamerbasedecode.sty
+\beamer@slideinframe=\count182
+\beamer@minimum=\count183
+\beamer@decode@box=\box48
+)
+\beamer@commentbox=\box49
+\beamer@modecount=\count184
+) (/usr/local/texlive/2021/texmf-dist/tex/generic/iftex/ifpdf.sty
+Package: ifpdf 2019/10/25 v3.4 ifpdf legacy package. Use iftex instead.
+(/usr/local/texlive/2021/texmf-dist/tex/generic/iftex/iftex.sty
+Package: iftex 2020/03/06 v1.0d TeX engine tests
+))
+\headdp=\dimen138
+\footheight=\dimen139
+\sidebarheight=\dimen140
+\beamer@tempdim=\dimen141
+\beamer@finalheight=\dimen142
+\beamer@animht=\dimen143
+\beamer@animdp=\dimen144
+\beamer@animwd=\dimen145
+\beamer@leftmargin=\dimen146
+\beamer@rightmargin=\dimen147
+\beamer@leftsidebar=\dimen148
+\beamer@rightsidebar=\dimen149
+\beamer@boxsize=\dimen150
+\beamer@vboxoffset=\dimen151
+\beamer@descdefault=\dimen152
+\beamer@descriptionwidth=\dimen153
+\beamer@lastskip=\skip47
+\beamer@areabox=\box50
+\beamer@animcurrent=\box51
+\beamer@animshowbox=\box52
+\beamer@sectionbox=\box53
+\beamer@logobox=\box54
+\beamer@linebox=\box55
+\beamer@sectioncount=\count185
+\beamer@subsubsectionmax=\count186
+\beamer@subsectionmax=\count187
+\beamer@sectionmax=\count188
+\beamer@totalheads=\count189
+\beamer@headcounter=\count190
+\beamer@partstartpage=\count191
+\beamer@sectionstartpage=\count192
+\beamer@subsectionstartpage=\count193
+\beamer@animationtempa=\count194
+\beamer@animationtempb=\count195
+\beamer@xpos=\count196
+\beamer@ypos=\count197
+\beamer@ypos@offset=\count198
+\beamer@showpartnumber=\count199
+\beamer@currentsubsection=\count266
+\beamer@coveringdepth=\count267
+\beamer@sectionadjust=\count268
+\beamer@tocsectionnumber=\count269
+(/usr/local/texlive/2021/texmf-dist/tex/latex/beamer/beamerbaseoptions.sty (/us
+r/local/texlive/2021/texmf-dist/tex/latex/graphics/keyval.sty
+Package: keyval 2014/10/28 v1.15 key=value parser (DPC)
+\KV@toks@=\toks15
+))
+\beamer@paperwidth=\skip48
+\beamer@paperheight=\skip49
+(/usr/local/texlive/2021/texmf-dist/tex/latex/geometry/geometry.sty
+Package: geometry 2020/01/02 v5.9 Page Geometry
+(/usr/local/texlive/2021/texmf-dist/tex/generic/iftex/ifvtex.sty
+Package: ifvtex 2019/10/25 v1.7 ifvtex legacy package. Use iftex instead.
+)
+\Gm@cnth=\count270
+\Gm@cntv=\count271
+\c@Gm@tempcnt=\count272
+\Gm@bindingoffset=\dimen154
+\Gm@wd@mp=\dimen155
+\Gm@odd@mp=\dimen156
+\Gm@even@mp=\dimen157
+\Gm@layoutwidth=\dimen158
+\Gm@layoutheight=\dimen159
+\Gm@layouthoffset=\dimen160
+\Gm@layoutvoffset=\dimen161
+\Gm@dimlist=\toks16
+) (/usr/local/texlive/2021/texmf-dist/tex/latex/base/size11.clo
+File: size11.clo 2020/04/10 v1.4m Standard LaTeX file (size option)
+) (/usr/local/texlive/2021/texmf-dist/tex/latex/pgf/basiclayer/pgfcore.sty (/us
+r/local/texlive/2021/texmf-dist/tex/latex/graphics/graphicx.sty
+Package: graphicx 2020/09/09 v1.2b Enhanced LaTeX Graphics (DPC,SPQR)
+(/usr/local/texlive/2021/texmf-dist/tex/latex/graphics/graphics.sty
+Package: graphics 2020/08/30 v1.4c Standard LaTeX Graphics (DPC,SPQR)
+(/usr/local/texlive/2021/texmf-dist/tex/latex/graphics/trig.sty
+Package: trig 2016/01/03 v1.10 sin cos tan (DPC)
+) (/usr/local/texlive/2021/texmf-dist/tex/latex/graphics-cfg/graphics.cfg
+File: graphics.cfg 2016/06/04 v1.11 sample graphics configuration
+)
+Package graphics Info: Driver file: pdftex.def on input line 105.
+(/usr/local/texlive/2021/texmf-dist/tex/latex/graphics-def/pdftex.def
+File: pdftex.def 2020/10/05 v1.2a Graphics/color driver for pdftex
+))
+\Gin@req@height=\dimen162
+\Gin@req@width=\dimen163
+) (/usr/local/texlive/2021/texmf-dist/tex/latex/pgf/systemlayer/pgfsys.sty (/us
+r/local/texlive/2021/texmf-dist/tex/latex/pgf/utilities/pgfrcs.sty
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/utilities/pgfutil-common.te
+x
+\pgfutil@everybye=\toks17
+\pgfutil@tempdima=\dimen164
+\pgfutil@tempdimb=\dimen165
+
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/utilities/pgfutil-common-li
+sts.tex))
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/utilities/pgfutil-latex.def
+\pgfutil@abb=\box56
+) (/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/utilities/pgfrcs.code.tex
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/pgf.revision.tex)
+Package: pgfrcs 2020/12/27 v3.1.8b (3.1.8b)
+))
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/systemlayer/pgfsys.code.tex
+Package: pgfsys 2020/12/27 v3.1.8b (3.1.8b)
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/utilities/pgfkeys.code.tex
+\pgfkeys@pathtoks=\toks18
+\pgfkeys@temptoks=\toks19
+
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/utilities/pgfkeysfiltered.c
+ode.tex
+\pgfkeys@tmptoks=\toks20
+))
+\pgf@x=\dimen166
+\pgf@y=\dimen167
+\pgf@xa=\dimen168
+\pgf@ya=\dimen169
+\pgf@xb=\dimen170
+\pgf@yb=\dimen171
+\pgf@xc=\dimen172
+\pgf@yc=\dimen173
+\pgf@xd=\dimen174
+\pgf@yd=\dimen175
+\w@pgf@writea=\write3
+\r@pgf@reada=\read2
+\c@pgf@counta=\count273
+\c@pgf@countb=\count274
+\c@pgf@countc=\count275
+\c@pgf@countd=\count276
+\t@pgf@toka=\toks21
+\t@pgf@tokb=\toks22
+\t@pgf@tokc=\toks23
+\pgf@sys@id@count=\count277
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/systemlayer/pgf.cfg
+File: pgf.cfg 2020/12/27 v3.1.8b (3.1.8b)
+)
+Driver file for pgf: pgfsys-pdftex.def
+
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/systemlayer/pgfsys-pdftex.d
+ef
+File: pgfsys-pdftex.def 2020/12/27 v3.1.8b (3.1.8b)
+
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/systemlayer/pgfsys-common-p
+df.def
+File: pgfsys-common-pdf.def 2020/12/27 v3.1.8b (3.1.8b)
+)))
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/systemlayer/pgfsyssoftpath.
+code.tex
+File: pgfsyssoftpath.code.tex 2020/12/27 v3.1.8b (3.1.8b)
+\pgfsyssoftpath@smallbuffer@items=\count278
+\pgfsyssoftpath@bigbuffer@items=\count279
+)
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/systemlayer/pgfsysprotocol.
+code.tex
+File: pgfsysprotocol.code.tex 2020/12/27 v3.1.8b (3.1.8b)
+)) (/usr/local/texlive/2021/texmf-dist/tex/latex/xcolor/xcolor.sty
+Package: xcolor 2016/05/11 v2.12 LaTeX color extensions (UK)
+(/usr/local/texlive/2021/texmf-dist/tex/latex/graphics-cfg/color.cfg
+File: color.cfg 2016/01/02 v1.6 sample color configuration
+)
+Package xcolor Info: Driver file: pdftex.def on input line 225.
+Package xcolor Info: Model `cmy' substituted by `cmy0' on input line 1348.
+Package xcolor Info: Model `hsb' substituted by `rgb' on input line 1352.
+Package xcolor Info: Model `RGB' extended on input line 1364.
+Package xcolor Info: Model `HTML' substituted by `rgb' on input line 1366.
+Package xcolor Info: Model `Hsb' substituted by `hsb' on input line 1367.
+Package xcolor Info: Model `tHsb' substituted by `hsb' on input line 1368.
+Package xcolor Info: Model `HSB' substituted by `hsb' on input line 1369.
+Package xcolor Info: Model `Gray' substituted by `gray' on input line 1370.
+Package xcolor Info: Model `wave' substituted by `hsb' on input line 1371.
+)
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/basiclayer/pgfcore.code.tex
+Package: pgfcore 2020/12/27 v3.1.8b (3.1.8b)
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/math/pgfmath.code.tex (/usr
+/local/texlive/2021/texmf-dist/tex/generic/pgf/math/pgfmathcalc.code.tex (/usr/
+local/texlive/2021/texmf-dist/tex/generic/pgf/math/pgfmathutil.code.tex)
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/math/pgfmathparser.code.tex
+\pgfmath@dimen=\dimen176
+\pgfmath@count=\count280
+\pgfmath@box=\box57
+\pgfmath@toks=\toks24
+\pgfmath@stack@operand=\toks25
+\pgfmath@stack@operation=\toks26
+)
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.code.
+tex
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.basic
+.code.tex)
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.trigo
+nometric.code.tex)
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.rando
+m.code.tex)
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.compa
+rison.code.tex)
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.base.
+code.tex)
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.round
+.code.tex)
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.misc.
+code.tex)
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.integ
+erarithmetics.code.tex))) (/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/m
+ath/pgfmathfloat.code.tex
+\c@pgfmathroundto@lastzeros=\count281
+)) (/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/math/pgfint.code.tex)
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepoints.co
+de.tex
+File: pgfcorepoints.code.tex 2020/12/27 v3.1.8b (3.1.8b)
+\pgf@picminx=\dimen177
+\pgf@picmaxx=\dimen178
+\pgf@picminy=\dimen179
+\pgf@picmaxy=\dimen180
+\pgf@pathminx=\dimen181
+\pgf@pathmaxx=\dimen182
+\pgf@pathminy=\dimen183
+\pgf@pathmaxy=\dimen184
+\pgf@xx=\dimen185
+\pgf@xy=\dimen186
+\pgf@yx=\dimen187
+\pgf@yy=\dimen188
+\pgf@zx=\dimen189
+\pgf@zy=\dimen190
+)
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathconst
+ruct.code.tex
+File: pgfcorepathconstruct.code.tex 2020/12/27 v3.1.8b (3.1.8b)
+\pgf@path@lastx=\dimen191
+\pgf@path@lasty=\dimen192
+)
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathusage
+.code.tex
+File: pgfcorepathusage.code.tex 2020/12/27 v3.1.8b (3.1.8b)
+\pgf@shorten@end@additional=\dimen193
+\pgf@shorten@start@additional=\dimen194
+)
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/basiclayer/pgfcorescopes.co
+de.tex
+File: pgfcorescopes.code.tex 2020/12/27 v3.1.8b (3.1.8b)
+\pgfpic=\box58
+\pgf@hbox=\box59
+\pgf@layerbox@main=\box60
+\pgf@picture@serial@count=\count282
+)
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/basiclayer/pgfcoregraphicst
+ate.code.tex
+File: pgfcoregraphicstate.code.tex 2020/12/27 v3.1.8b (3.1.8b)
+\pgflinewidth=\dimen195
+)
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/basiclayer/pgfcoretransform
+ations.code.tex
+File: pgfcoretransformations.code.tex 2020/12/27 v3.1.8b (3.1.8b)
+\pgf@pt@x=\dimen196
+\pgf@pt@y=\dimen197
+\pgf@pt@temp=\dimen198
+)
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/basiclayer/pgfcorequick.cod
+e.tex
+File: pgfcorequick.code.tex 2020/12/27 v3.1.8b (3.1.8b)
+)
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreobjects.c
+ode.tex
+File: pgfcoreobjects.code.tex 2020/12/27 v3.1.8b (3.1.8b)
+)
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathproce
+ssing.code.tex
+File: pgfcorepathprocessing.code.tex 2020/12/27 v3.1.8b (3.1.8b)
+)
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/basiclayer/pgfcorearrows.co
+de.tex
+File: pgfcorearrows.code.tex 2020/12/27 v3.1.8b (3.1.8b)
+\pgfarrowsep=\dimen199
+)
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreshade.cod
+e.tex
+File: pgfcoreshade.code.tex 2020/12/27 v3.1.8b (3.1.8b)
+\pgf@max=\dimen256
+\pgf@sys@shading@range@num=\count283
+\pgf@shadingcount=\count284
+)
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreimage.cod
+e.tex
+File: pgfcoreimage.code.tex 2020/12/27 v3.1.8b (3.1.8b)
+
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreexternal.
+code.tex
+File: pgfcoreexternal.code.tex 2020/12/27 v3.1.8b (3.1.8b)
+\pgfexternal@startupbox=\box61
+))
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/basiclayer/pgfcorelayers.co
+de.tex
+File: pgfcorelayers.code.tex 2020/12/27 v3.1.8b (3.1.8b)
+)
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/basiclayer/pgfcoretranspare
+ncy.code.tex
+File: pgfcoretransparency.code.tex 2020/12/27 v3.1.8b (3.1.8b)
+)
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepatterns.
+code.tex
+File: pgfcorepatterns.code.tex 2020/12/27 v3.1.8b (3.1.8b)
+)
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/basiclayer/pgfcorerdf.code.
+tex
+File: pgfcorerdf.code.tex 2020/12/27 v3.1.8b (3.1.8b)
+))) (/usr/local/texlive/2021/texmf-dist/tex/latex/pgf/utilities/xxcolor.sty
+Package: xxcolor 2003/10/24 ver 0.1
+\XC@nummixins=\count285
+\XC@countmixins=\count286
+) (/usr/local/texlive/2021/texmf-dist/tex/latex/base/atbegshi-ltx.sty
+Package: atbegshi-ltx 2020/08/17 v1.0a Emulation of the original atbegshi packa
+ge
+with kernel methods
+) (/usr/local/texlive/2021/texmf-dist/tex/latex/hyperref/hyperref.sty
+Package: hyperref 2021-02-27 v7.00k Hypertext links for LaTeX
+(/usr/local/texlive/2021/texmf-dist/tex/generic/ltxcmds/ltxcmds.sty
+Package: ltxcmds 2020-05-10 v1.25 LaTeX kernel commands for general use (HO)
+) (/usr/local/texlive/2021/texmf-dist/tex/generic/pdftexcmds/pdftexcmds.sty
+Package: pdftexcmds 2020-06-27 v0.33 Utility functions of pdfTeX for LuaTeX (HO
+)
+(/usr/local/texlive/2021/texmf-dist/tex/generic/infwarerr/infwarerr.sty
+Package: infwarerr 2019/12/03 v1.5 Providing info/warning/error messages (HO)
+)
+Package pdftexcmds Info: \pdf@primitive is available.
+Package pdftexcmds Info: \pdf@ifprimitive is available.
+Package pdftexcmds Info: \pdfdraftmode found.
+) (/usr/local/texlive/2021/texmf-dist/tex/generic/kvsetkeys/kvsetkeys.sty
+Package: kvsetkeys 2019/12/15 v1.18 Key value parser (HO)
+) (/usr/local/texlive/2021/texmf-dist/tex/generic/kvdefinekeys/kvdefinekeys.sty
+Package: kvdefinekeys 2019-12-19 v1.6 Define keys (HO)
+) (/usr/local/texlive/2021/texmf-dist/tex/generic/pdfescape/pdfescape.sty
+Package: pdfescape 2019/12/09 v1.15 Implements pdfTeX's escape features (HO)
+) (/usr/local/texlive/2021/texmf-dist/tex/latex/hycolor/hycolor.sty
+Package: hycolor 2020-01-27 v1.10 Color options for hyperref/bookmark (HO)
+) (/usr/local/texlive/2021/texmf-dist/tex/latex/letltxmacro/letltxmacro.sty
+Package: letltxmacro 2019/12/03 v1.6 Let assignment for LaTeX macros (HO)
+) (/usr/local/texlive/2021/texmf-dist/tex/latex/auxhook/auxhook.sty
+Package: auxhook 2019-12-17 v1.6 Hooks for auxiliary files (HO)
+) (/usr/local/texlive/2021/texmf-dist/tex/latex/kvoptions/kvoptions.sty
+Package: kvoptions 2020-10-07 v3.14 Key value format for package options (HO)
+)
+\@linkdim=\dimen257
+\Hy@linkcounter=\count287
+\Hy@pagecounter=\count288
+(/usr/local/texlive/2021/texmf-dist/tex/latex/hyperref/pd1enc.def
+File: pd1enc.def 2021-02-27 v7.00k Hyperref: PDFDocEncoding definition (HO)
+Now handling font encoding PD1 ...
+... no UTF-8 mapping file for font encoding PD1
+)
+(/usr/local/texlive/2021/texmf-dist/tex/latex/hyperref/hyperref-langpatches.def
+File: hyperref-langpatches.def 2021-02-27 v7.00k Hyperref: patches for babel la
+nguages
+) (/usr/local/texlive/2021/texmf-dist/tex/generic/intcalc/intcalc.sty
+Package: intcalc 2019/12/15 v1.3 Expandable calculations with integers (HO)
+) (/usr/local/texlive/2021/texmf-dist/tex/generic/etexcmds/etexcmds.sty
+Package: etexcmds 2019/12/15 v1.7 Avoid name clashes with e-TeX commands (HO)
+)
+\Hy@SavedSpaceFactor=\count289
+(/usr/local/texlive/2021/texmf-dist/tex/latex/hyperref/puenc.def
+File: puenc.def 2021-02-27 v7.00k Hyperref: PDF Unicode definition (HO)
+Now handling font encoding PU ...
+... no UTF-8 mapping file for font encoding PU
+)
+Package hyperref Info: Option `bookmarks' set `true' on input line 4073.
+Package hyperref Info: Option `bookmarksopen' set `true' on input line 4073.
+Package hyperref Info: Option `implicit' set `false' on input line 4073.
+Package hyperref Info: Hyper figures OFF on input line 4192.
+Package hyperref Info: Link nesting OFF on input line 4197.
+Package hyperref Info: Hyper index ON on input line 4200.
+Package hyperref Info: Plain pages OFF on input line 4207.
+Package hyperref Info: Backreferencing OFF on input line 4212.
+Package hyperref Info: Implicit mode OFF; no redefinition of LaTeX internals.
+Package hyperref Info: Bookmarks ON on input line 4445.
+\c@Hy@tempcnt=\count290
+(/usr/local/texlive/2021/texmf-dist/tex/latex/url/url.sty
+\Urlmuskip=\muskip16
+Package: url 2013/09/16 ver 3.4 Verb mode for urls, etc.
+)
+LaTeX Info: Redefining \url on input line 4804.
+\XeTeXLinkMargin=\dimen258
+(/usr/local/texlive/2021/texmf-dist/tex/generic/bitset/bitset.sty
+Package: bitset 2019/12/09 v1.3 Handle bit-vector datatype (HO)
+(/usr/local/texlive/2021/texmf-dist/tex/generic/bigintcalc/bigintcalc.sty
+Package: bigintcalc 2019/12/15 v1.5 Expandable calculations on big integers (HO
+)
+))
+\Fld@menulength=\count291
+\Field@Width=\dimen259
+\Fld@charsize=\dimen260
+Package hyperref Info: Hyper figures OFF on input line 6075.
+Package hyperref Info: Link nesting OFF on input line 6080.
+Package hyperref Info: Hyper index ON on input line 6083.
+Package hyperref Info: backreferencing OFF on input line 6090.
+Package hyperref Info: Link coloring OFF on input line 6095.
+Package hyperref Info: Link coloring with OCG OFF on input line 6100.
+Package hyperref Info: PDF/A mode OFF on input line 6105.
+LaTeX Info: Redefining \ref on input line 6145.
+LaTeX Info: Redefining \pageref on input line 6149.
+\Hy@abspage=\count292
+
+Package hyperref Message: Stopped early.
+
+)
+Package hyperref Info: Driver (autodetected): hpdftex.
+(/usr/local/texlive/2021/texmf-dist/tex/latex/hyperref/hpdftex.def
+File: hpdftex.def 2021-02-27 v7.00k Hyperref driver for pdfTeX
+(/usr/local/texlive/2021/texmf-dist/tex/latex/base/atveryend-ltx.sty
+Package: atveryend-ltx 2020/08/19 v1.0a Emulation of the original atvery packag
+e
+with kernel methods
+)
+\Fld@listcount=\count293
+\c@bookmark@seq@number=\count294
+
+(/usr/local/texlive/2021/texmf-dist/tex/latex/rerunfilecheck/rerunfilecheck.sty
+Package: rerunfilecheck 2019/12/05 v1.9 Rerun checks for auxiliary files (HO)
+
+(/usr/local/texlive/2021/texmf-dist/tex/generic/uniquecounter/uniquecounter.sty
+Package: uniquecounter 2019/12/15 v1.4 Provide unlimited unique counter (HO)
+)
+Package uniquecounter Info: New unique counter `rerunfilecheck' on input line 2
+86.
+)) (/usr/local/texlive/2021/texmf-dist/tex/latex/beamer/beamerbaserequires.sty
+(/usr/local/texlive/2021/texmf-dist/tex/latex/beamer/beamerbasecompatibility.st
+y) (/usr/local/texlive/2021/texmf-dist/tex/latex/beamer/beamerbasefont.sty (/us
+r/local/texlive/2021/texmf-dist/tex/latex/amsfonts/amssymb.sty
+Package: amssymb 2013/01/14 v3.01 AMS font symbols
+(/usr/local/texlive/2021/texmf-dist/tex/latex/amsfonts/amsfonts.sty
+Package: amsfonts 2013/01/14 v3.01 Basic AMSFonts support
+\@emptytoks=\toks27
+\symAMSa=\mathgroup4
+\symAMSb=\mathgroup5
+LaTeX Font Info: Redeclaring math symbol \hbar on input line 98.
+LaTeX Font Info: Overwriting math alphabet `\mathfrak' in version `bold'
+(Font) U/euf/m/n --> U/euf/b/n on input line 106.
+))
+(/usr/local/texlive/2021/texmf-dist/tex/latex/sansmathaccent/sansmathaccent.sty
+Package: sansmathaccent 2020/01/31
+(/usr/local/texlive/2021/texmf-dist/tex/latex/koma-script/scrlfile.sty
+Package: scrlfile 2021/03/17 v3.33 KOMA-Script package (file load hooks)
+(/usr/local/texlive/2021/texmf-dist/tex/latex/koma-script/scrlfile-hook.sty
+Package: scrlfile-hook 2021/03/17 v3.33 KOMA-Script package (using LaTeX hooks)
+
+
+LaTeX3 Info: Defining command \BeforeFile with sig. 'm' on line 61.
+
+
+LaTeX3 Info: Defining command \AfterFile with sig. 'm' on line 65.
+
+
+LaTeX3 Info: Defining command \BeforeClass with sig. 'm' on line 69.
+
+
+LaTeX3 Info: Defining command \BeforePackage with sig. 'm' on line 73.
+
+
+LaTeX3 Info: Defining command \AfterAtEndOfClass with sig. 'smo+m' on line 83.
+
+
+LaTeX3 Info: Defining command \AfterAtEndOfPackage with sig. 'smo+m' on line
+(LaTeX3) 93.
+
+
+LaTeX3 Info: Defining command \scrlfile@AfterClass with sig. 'smo+m' on line
+(LaTeX3) 173.
+
+
+LaTeX3 Info: Defining command \AfterClass with sig. '' on line 174.
+
+
+LaTeX3 Info: Defining command \scrlfile@AfterPackage with sig. 'smo+m' on line
+(LaTeX3) 191.
+
+
+LaTeX3 Info: Defining command \AfterPackage with sig. '' on line 192.
+
+
+LaTeX3 Info: Defining command \ReplaceInput with sig. '' on line 193.
+
+
+LaTeX3 Info: Defining command \ReplaceClass with sig. 'mm' on line 196.
+
+
+LaTeX3 Info: Defining command \ReplacePackage with sig. 'mm' on line 199.
+
+
+LaTeX3 Info: Defining command \UnReplaceInput with sig. '' on line 200.
+
+
+LaTeX3 Info: Defining command \UnReplaceClass with sig. 'm' on line 203.
+
+
+LaTeX3 Info: Defining command \UnReplacePackage with sig. 'mm' on line 206.
+
+
+LaTeX3 Info: Defining command \PreventPackageFromLoading with sig. 's+om' on
+(LaTeX3) line 234.
+
+
+LaTeX3 Info: Defining command \StorePreventPackageFromLoading with sig. 'm' on
+(LaTeX3) line 242.
+
+
+LaTeX3 Info: Defining command \ResetPreventPackageFromLoading with sig. '' on
+(LaTeX3) line 247.
+
+
+LaTeX3 Info: Defining command \UnPreventPackageFromLoading with sig. 'sm' on
+(LaTeX3) line 261.
+
+
+LaTeX3 Info: Defining command \BeforeClosingMainAux with sig. 'om' on line
+(LaTeX3) 274.
+
+
+LaTeX3 Info: Defining command \AfterReadingMainAux with sig. 'om' on line 287.
+
+
+LaTeX3 Info: Defining command \protected@immediate@write with sig. 'm+m+m' on
+(LaTeX3) line 298.
+
+(/usr/local/texlive/2021/texmf-dist/tex/latex/koma-script/scrlogo.sty
+Package: scrlogo 2021/03/17 v3.33 KOMA-Script package (logo)
+))))) (/usr/local/texlive/2021/texmf-dist/tex/latex/beamer/beamerbasetranslator
+.sty (/usr/local/texlive/2021/texmf-dist/tex/latex/translator/translator.sty
+Package: translator 2020-08-03 v1.12c Easy translation of strings in LaTeX
+)) (/usr/local/texlive/2021/texmf-dist/tex/latex/beamer/beamerbasemisc.sty) (/u
+sr/local/texlive/2021/texmf-dist/tex/latex/beamer/beamerbasetwoscreens.sty) (/u
+sr/local/texlive/2021/texmf-dist/tex/latex/beamer/beamerbaseoverlay.sty
+\beamer@argscount=\count295
+\beamer@lastskipcover=\skip50
+\beamer@trivlistdepth=\count296
+) (/usr/local/texlive/2021/texmf-dist/tex/latex/beamer/beamerbasetitle.sty) (/u
+sr/local/texlive/2021/texmf-dist/tex/latex/beamer/beamerbasesection.sty
+\c@lecture=\count297
+\c@part=\count298
+\c@section=\count299
+\c@subsection=\count300
+\c@subsubsection=\count301
+) (/usr/local/texlive/2021/texmf-dist/tex/latex/beamer/beamerbaseframe.sty
+\beamer@framebox=\box62
+\beamer@frametitlebox=\box63
+\beamer@zoombox=\box64
+\beamer@zoomcount=\count302
+\beamer@zoomframecount=\count303
+\beamer@frametextheight=\dimen261
+\c@subsectionslide=\count304
+\beamer@frametopskip=\skip51
+\beamer@framebottomskip=\skip52
+\beamer@frametopskipautobreak=\skip53
+\beamer@framebottomskipautobreak=\skip54
+\beamer@envbody=\toks28
+\framewidth=\dimen262
+\c@framenumber=\count305
+) (/usr/local/texlive/2021/texmf-dist/tex/latex/beamer/beamerbaseverbatim.sty
+\beamer@verbatimfileout=\write4
+) (/usr/local/texlive/2021/texmf-dist/tex/latex/beamer/beamerbaseframesize.sty
+\beamer@splitbox=\box65
+\beamer@autobreakcount=\count306
+\beamer@autobreaklastheight=\dimen263
+\beamer@frametitletoks=\toks29
+\beamer@framesubtitletoks=\toks30
+)
+(/usr/local/texlive/2021/texmf-dist/tex/latex/beamer/beamerbaseframecomponents.
+sty
+\beamer@footins=\box66
+) (/usr/local/texlive/2021/texmf-dist/tex/latex/beamer/beamerbasecolor.sty) (/u
+sr/local/texlive/2021/texmf-dist/tex/latex/beamer/beamerbasenotes.sty
+\beamer@frameboxcopy=\box67
+) (/usr/local/texlive/2021/texmf-dist/tex/latex/beamer/beamerbasetoc.sty) (/usr
+/local/texlive/2021/texmf-dist/tex/latex/beamer/beamerbasetemplates.sty
+\beamer@sbttoks=\toks31
+
+(/usr/local/texlive/2021/texmf-dist/tex/latex/beamer/beamerbaseauxtemplates.sty
+(/usr/local/texlive/2021/texmf-dist/tex/latex/beamer/beamerbaseboxes.sty
+\bmb@box=\box68
+\bmb@colorbox=\box69
+\bmb@boxwidth=\dimen264
+\bmb@boxheight=\dimen265
+\bmb@prevheight=\dimen266
+\bmb@temp=\dimen267
+\bmb@dima=\dimen268
+\bmb@dimb=\dimen269
+\bmb@prevheight=\dimen270
+)
+\beamer@blockheadheight=\dimen271
+))
+(/usr/local/texlive/2021/texmf-dist/tex/latex/beamer/beamerbaselocalstructure.s
+ty (/usr/local/texlive/2021/texmf-dist/tex/latex/tools/enumerate.sty
+Package: enumerate 2015/07/23 v3.00 enumerate extensions (DPC)
+\@enLab=\toks32
+)
+\beamer@bibiconwidth=\skip55
+\c@figure=\count307
+\c@table=\count308
+\abovecaptionskip=\skip56
+\belowcaptionskip=\skip57
+) (/usr/local/texlive/2021/texmf-dist/tex/latex/beamer/beamerbasenavigation.sty
+\beamer@section@min@dim=\dimen272
+) (/usr/local/texlive/2021/texmf-dist/tex/latex/beamer/beamerbasetheorems.sty (
+/usr/local/texlive/2021/texmf-dist/tex/latex/amsmath/amsmath.sty
+Package: amsmath 2020/09/23 v2.17i AMS math features
+\@mathmargin=\skip58
+For additional information on amsmath, use the `?' option.
+(/usr/local/texlive/2021/texmf-dist/tex/latex/amsmath/amstext.sty
+Package: amstext 2000/06/29 v2.01 AMS text
+(/usr/local/texlive/2021/texmf-dist/tex/latex/amsmath/amsgen.sty
+File: amsgen.sty 1999/11/30 v2.0 generic functions
+\@emptytoks=\toks33
+\ex@=\dimen273
+)) (/usr/local/texlive/2021/texmf-dist/tex/latex/amsmath/amsbsy.sty
+Package: amsbsy 1999/11/29 v1.2d Bold Symbols
+\pmbraise@=\dimen274
+) (/usr/local/texlive/2021/texmf-dist/tex/latex/amsmath/amsopn.sty
+Package: amsopn 2016/03/08 v2.02 operator names
+)
+\inf@bad=\count309
+LaTeX Info: Redefining \frac on input line 234.
+\uproot@=\count310
+\leftroot@=\count311
+LaTeX Info: Redefining \overline on input line 399.
+\classnum@=\count312
+\DOTSCASE@=\count313
+LaTeX Info: Redefining \ldots on input line 496.
+LaTeX Info: Redefining \dots on input line 499.
+LaTeX Info: Redefining \cdots on input line 620.
+\Mathstrutbox@=\box70
+\strutbox@=\box71
+\big@size=\dimen275
+LaTeX Font Info: Redeclaring font encoding OML on input line 743.
+LaTeX Font Info: Redeclaring font encoding OMS on input line 744.
+\macc@depth=\count314
+\c@MaxMatrixCols=\count315
+\dotsspace@=\muskip17
+\c@parentequation=\count316
+\dspbrk@lvl=\count317
+\tag@help=\toks34
+\row@=\count318
+\column@=\count319
+\maxfields@=\count320
+\andhelp@=\toks35
+\eqnshift@=\dimen276
+\alignsep@=\dimen277
+\tagshift@=\dimen278
+\tagwidth@=\dimen279
+\totwidth@=\dimen280
+\lineht@=\dimen281
+\@envbody=\toks36
+\multlinegap=\skip59
+\multlinetaggap=\skip60
+\mathdisplay@stack=\toks37
+LaTeX Info: Redefining \[ on input line 2923.
+LaTeX Info: Redefining \] on input line 2924.
+) (/usr/local/texlive/2021/texmf-dist/tex/latex/amscls/amsthm.sty
+Package: amsthm 2020/05/29 v2.20.6
+\thm@style=\toks38
+\thm@bodyfont=\toks39
+\thm@headfont=\toks40
+\thm@notefont=\toks41
+\thm@headpunct=\toks42
+\thm@preskip=\skip61
+\thm@postskip=\skip62
+\thm@headsep=\skip63
+\dth@everypar=\toks43
+)
+\c@theorem=\count321
+) (/usr/local/texlive/2021/texmf-dist/tex/latex/beamer/beamerbasethemes.sty)) (
+/usr/local/texlive/2021/texmf-dist/tex/latex/beamer/beamerthemedefault.sty
+(/usr/local/texlive/2021/texmf-dist/tex/latex/beamer/beamerfontthemedefault.sty
+)
+(/usr/local/texlive/2021/texmf-dist/tex/latex/beamer/beamercolorthemedefault.st
+y)
+(/usr/local/texlive/2021/texmf-dist/tex/latex/beamer/beamerinnerthemedefault.st
+y
+\beamer@dima=\dimen282
+\beamer@dimb=\dimen283
+)
+(/usr/local/texlive/2021/texmf-dist/tex/latex/beamer/beamerouterthemedefault.st
+y))) (/usr/local/texlive/2021/texmf-dist/tex/latex/base/inputenc.sty
+Package: inputenc 2020/08/01 v1.3d Input encoding file
+\inpenc@prehook=\toks44
+\inpenc@posthook=\toks45
+) (/usr/local/texlive/2021/texmf-dist/tex/generic/hologo/hologo.sty
+Package: hologo 2019/12/05 v1.14 A logo collection with bookmark support (HO)
+) (/usr/local/texlive/2021/texmf-dist/tex/latex/pgfplots/pgfplots.sty (/usr/loc
+al/texlive/2021/texmf-dist/tex/generic/pgfplots/pgfplots.revision.tex)
+Package: pgfplots 2020/02/29 v1.17 Data Visualization (1.17)
+(/usr/local/texlive/2021/texmf-dist/tex/latex/pgf/frontendlayer/tikz.sty (/usr/
+local/texlive/2021/texmf-dist/tex/latex/pgf/basiclayer/pgf.sty
+Package: pgf 2020/12/27 v3.1.8b (3.1.8b)
+
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/modules/pgfmoduleshapes.cod
+e.tex
+File: pgfmoduleshapes.code.tex 2020/12/27 v3.1.8b (3.1.8b)
+\pgfnodeparttextbox=\box72
+)
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/modules/pgfmoduleplot.code.
+tex
+File: pgfmoduleplot.code.tex 2020/12/27 v3.1.8b (3.1.8b)
+)
+(/usr/local/texlive/2021/texmf-dist/tex/latex/pgf/compatibility/pgfcomp-version
+-0-65.sty
+Package: pgfcomp-version-0-65 2020/12/27 v3.1.8b (3.1.8b)
+\pgf@nodesepstart=\dimen284
+\pgf@nodesepend=\dimen285
+)
+(/usr/local/texlive/2021/texmf-dist/tex/latex/pgf/compatibility/pgfcomp-version
+-1-18.sty
+Package: pgfcomp-version-1-18 2020/12/27 v3.1.8b (3.1.8b)
+)) (/usr/local/texlive/2021/texmf-dist/tex/latex/pgf/utilities/pgffor.sty (/usr
+/local/texlive/2021/texmf-dist/tex/latex/pgf/utilities/pgfkeys.sty (/usr/local/
+texlive/2021/texmf-dist/tex/generic/pgf/utilities/pgfkeys.code.tex)) (/usr/loca
+l/texlive/2021/texmf-dist/tex/latex/pgf/math/pgfmath.sty (/usr/local/texlive/20
+21/texmf-dist/tex/generic/pgf/math/pgfmath.code.tex)) (/usr/local/texlive/2021/
+texmf-dist/tex/generic/pgf/utilities/pgffor.code.tex
+Package: pgffor 2020/12/27 v3.1.8b (3.1.8b)
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/math/pgfmath.code.tex)
+\pgffor@iter=\dimen286
+\pgffor@skip=\dimen287
+\pgffor@stack=\toks46
+\pgffor@toks=\toks47
+))
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/frontendlayer/tikz/tikz.cod
+e.tex
+Package: tikz 2020/12/27 v3.1.8b (3.1.8b)
+
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/libraries/pgflibraryplothan
+dlers.code.tex
+File: pgflibraryplothandlers.code.tex 2020/12/27 v3.1.8b (3.1.8b)
+\pgf@plot@mark@count=\count322
+\pgfplotmarksize=\dimen288
+)
+\tikz@lastx=\dimen289
+\tikz@lasty=\dimen290
+\tikz@lastxsaved=\dimen291
+\tikz@lastysaved=\dimen292
+\tikz@lastmovetox=\dimen293
+\tikz@lastmovetoy=\dimen294
+\tikzleveldistance=\dimen295
+\tikzsiblingdistance=\dimen296
+\tikz@figbox=\box73
+\tikz@figbox@bg=\box74
+\tikz@tempbox=\box75
+\tikz@tempbox@bg=\box76
+\tikztreelevel=\count323
+\tikznumberofchildren=\count324
+\tikznumberofcurrentchild=\count325
+\tikz@fig@count=\count326
+
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/modules/pgfmodulematrix.cod
+e.tex
+File: pgfmodulematrix.code.tex 2020/12/27 v3.1.8b (3.1.8b)
+\pgfmatrixcurrentrow=\count327
+\pgfmatrixcurrentcolumn=\count328
+\pgf@matrix@numberofcolumns=\count329
+)
+\tikz@expandcount=\count330
+
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/frontendlayer/tikz/librarie
+s/tikzlibrarytopaths.code.tex
+File: tikzlibrarytopaths.code.tex 2020/12/27 v3.1.8b (3.1.8b)
+))) (/usr/local/texlive/2021/texmf-dist/tex/generic/pgfplots/pgfplots.code.tex
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgfplots/pgfplotscore.code.tex
+\t@pgfplots@toka=\toks48
+\t@pgfplots@tokb=\toks49
+\t@pgfplots@tokc=\toks50
+\pgfplots@tmpa=\dimen297
+\c@pgfplots@coordindex=\count331
+\c@pgfplots@scanlineindex=\count332
+
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgfplots/sys/pgfplotssysgeneric
+.code.tex))
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgfplots/libs/pgfplotslibrary.c
+ode.tex)
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgfplots/oldpgfcompatib/pgfplot
+soldpgfsupp_loader.code.tex
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/libraries/pgflibraryfpu.cod
+e.tex))
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgfplots/util/pgfplotsutil.code
+.tex
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgfplots/liststructure/pgfplots
+liststructure.code.tex)
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgfplots/liststructure/pgfplots
+liststructureext.code.tex)
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgfplots/liststructure/pgfplots
+array.code.tex
+\c@pgfplotsarray@tmp=\count333
+)
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgfplots/liststructure/pgfplots
+matrix.code.tex)
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgfplots/numtable/pgfplotstable
+shared.code.tex
+\c@pgfplotstable@counta=\count334
+\t@pgfplotstable@a=\toks51
+)
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgfplots/liststructure/pgfplots
+deque.code.tex)
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgfplots/util/pgfplotsbinary.co
+de.tex
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgfplots/util/pgfplotsbinary.da
+ta.code.tex))
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgfplots/util/pgfplotsutil.verb
+.code.tex)
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgfplots/libs/pgflibrarypgfplot
+s.surfshading.code.tex
+\c@pgfplotslibrarysurf@no=\count335
+
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgfplots/sys/pgflibrarypgfplots
+.surfshading.pgfsys-pdftex.def)))
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgfplots/util/pgfplotscolormap.
+code.tex
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgfplots/util/pgfplotscolor.cod
+e.tex))
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgfplots/pgfplotsstackedplots.c
+ode.tex)
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgfplots/pgfplotsplothandlers.c
+ode.tex
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgfplots/pgfplotsmeshplothandle
+r.code.tex
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgfplots/pgfplotsmeshplotimage.
+code.tex)))
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgfplots/pgfplots.scaling.code.
+tex)
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgfplots/pgfplotscoordprocessin
+g.code.tex)
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgfplots/pgfplots.errorbars.cod
+e.tex)
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgfplots/pgfplots.markers.code.
+tex)
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgfplots/pgfplotsticks.code.tex
+)
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgfplots/pgfplots.paths.code.te
+x)
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/frontendlayer/tikz/librarie
+s/tikzlibrarydecorations.code.tex
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/modules/pgfmoduledecoration
+s.code.tex
+\pgfdecoratedcompleteddistance=\dimen298
+\pgfdecoratedremainingdistance=\dimen299
+\pgfdecoratedinputsegmentcompleteddistance=\dimen300
+\pgfdecoratedinputsegmentremainingdistance=\dimen301
+\pgf@decorate@distancetomove=\dimen302
+\pgf@decorate@repeatstate=\count336
+\pgfdecorationsegmentamplitude=\dimen303
+\pgfdecorationsegmentlength=\dimen304
+)
+\tikz@lib@dec@box=\box77
+)
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/frontendlayer/tikz/librarie
+s/tikzlibrarydecorations.pathmorphing.code.tex
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/libraries/decorations/pgfli
+brarydecorations.pathmorphing.code.tex))
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/frontendlayer/tikz/librarie
+s/tikzlibrarydecorations.pathreplacing.code.tex
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/libraries/decorations/pgfli
+brarydecorations.pathreplacing.code.tex))
+\pgfplots@numplots=\count337
+\pgfplots@xmin@reg=\dimen305
+\pgfplots@xmax@reg=\dimen306
+\pgfplots@ymin@reg=\dimen307
+\pgfplots@ymax@reg=\dimen308
+\pgfplots@zmin@reg=\dimen309
+\pgfplots@zmax@reg=\dimen310
+)
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/frontendlayer/tikz/librarie
+s/tikzlibraryplotmarks.code.tex
+File: tikzlibraryplotmarks.code.tex 2020/12/27 v3.1.8b (3.1.8b)
+
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/libraries/pgflibraryplotmar
+ks.code.tex
+File: pgflibraryplotmarks.code.tex 2020/12/27 v3.1.8b (3.1.8b)
+))) (/usr/local/texlive/2021/texmf-dist/tex/latex/siunitx/siunitx.sty (/usr/loc
+al/texlive/2021/texmf-dist/tex/latex/l3kernel/expl3.sty
+Package: expl3 2021-02-18 L3 programming layer (loader)
+(/usr/local/texlive/2021/texmf-dist/tex/latex/l3backend/l3backend-pdftex.def
+File: l3backend-pdftex.def 2021-03-18 L3 backend support: PDF output (pdfTeX)
+\l__color_backend_stack_int=\count338
+\l__pdf_internal_box=\box78
+)) (/usr/local/texlive/2021/texmf-dist/tex/latex/l3packages/xparse/xparse.sty
+(/usr/local/texlive/2021/texmf-dist/tex/latex/l3packages/xparse/xparse-2020-10-
+01.sty
+(/usr/local/texlive/2021/texmf-dist/tex/latex/l3packages/xparse/xparse-generic.
+tex)))
+Package: siunitx 2021-04-09 v2.8d A comprehensive (SI) units package
+(/usr/local/texlive/2021/texmf-dist/tex/latex/tools/array.sty
+Package: array 2020/10/01 v2.5c Tabular extension package (FMi)
+\col@sep=\dimen311
+\ar@mcellbox=\box79
+\extrarowheight=\dimen312
+\NC@list=\toks52
+\extratabsurround=\skip64
+\backup@length=\skip65
+\ar@cellbox=\box80
+) (/usr/local/texlive/2021/texmf-dist/tex/latex/l3packages/l3keys2e/l3keys2e.st
+y
+Package: l3keys2e 2021-03-12 LaTeX2e option processing using LaTeX3 keys
+)
+\l__siunitx_tmp_box=\box81
+\l__siunitx_tmp_dim=\dimen313
+\l__siunitx_tmp_int=\count339
+\l__siunitx_number_mantissa_length_int=\count340
+\l__siunitx_number_uncert_length_int=\count341
+\l__siunitx_round_int=\count342
+\l__siunitx_process_decimal_int=\count343
+\l__siunitx_process_uncertainty_int=\count344
+\l__siunitx_process_fixed_int=\count345
+\l__siunitx_process_integer_min_int=\count346
+\l__siunitx_process_precision_int=\count347
+\l__siunitx_group_min_int=\count348
+\l__siunitx_angle_marker_box=\box82
+\l__siunitx_angle_unit_box=\box83
+\l__siunitx_angle_marker_dim=\dimen314
+\l__siunitx_angle_unit_dim=\dimen315
+\l__siunitx_unit_int=\count349
+\l__siunitx_unit_denominator_int=\count350
+\l__siunitx_unit_numerator_int=\count351
+\l__siunitx_unit_prefix_int=\count352
+\l__siunitx_unit_prefix_base_int=\count353
+\l__siunitx_unit_prefix_gram_int=\count354
+\l__siunitx_number_product_int=\count355
+\c__siunitx_one_fill_skip=\skip66
+\l__siunitx_table_unit_align_skip=\skip67
+\l__siunitx_table_exponent_dim=\dimen316
+\l__siunitx_table_integer_dim=\dimen317
+\l__siunitx_table_mantissa_dim=\dimen318
+\l__siunitx_table_marker_dim=\dimen319
+\l__siunitx_table_result_dim=\dimen320
+\l__siunitx_table_uncert_dim=\dimen321
+\l__siunitx_table_fill_pre_dim=\dimen322
+\l__siunitx_table_fill_post_dim=\dimen323
+\l__siunitx_table_fill_mid_dim=\dimen324
+\l__siunitx_table_pre_box=\box84
+\l__siunitx_table_post_box=\box85
+\l__siunitx_table_mantissa_box=\box86
+\l__siunitx_table_result_box=\box87
+\l__siunitx_table_number_align_skip=\skip68
+\l__siunitx_table_text_align_skip=\skip69
+) (/usr/local/texlive/2021/texmf-dist/tex/latex/tools/multicol.sty
+Package: multicol 2019/12/09 v1.8y multicolumn formatting (FMi)
+\c@tracingmulticols=\count356
+\mult@box=\box88
+\multicol@leftmargin=\dimen325
+\c@unbalance=\count357
+\c@collectmore=\count358
+\doublecol@number=\count359
+\multicoltolerance=\count360
+\multicolpretolerance=\count361
+\full@width=\dimen326
+\page@free=\dimen327
+\premulticols=\dimen328
+\postmulticols=\dimen329
+\multicolsep=\skip70
+\multicolbaselineskip=\skip71
+\partial@page=\box89
+\last@line=\box90
+\maxbalancingoverflow=\dimen330
+\mult@rightbox=\box91
+\mult@grightbox=\box92
+\mult@gfirstbox=\box93
+\mult@firstbox=\box94
+\@tempa=\box95
+\@tempa=\box96
+\@tempa=\box97
+\@tempa=\box98
+\@tempa=\box99
+\@tempa=\box100
+\@tempa=\box101
+\@tempa=\box102
+\@tempa=\box103
+\@tempa=\box104
+\@tempa=\box105
+\@tempa=\box106
+\@tempa=\box107
+\@tempa=\box108
+\@tempa=\box109
+\@tempa=\box110
+\@tempa=\box111
+\@tempa=\box112
+\@tempa=\box113
+\@tempa=\box114
+\@tempa=\box115
+\@tempa=\box116
+\@tempa=\box117
+\@tempa=\box118
+\@tempa=\box119
+\@tempa=\box120
+\@tempa=\box121
+\@tempa=\box122
+\@tempa=\box123
+\@tempa=\box124
+\@tempa=\box125
+\@tempa=\box126
+\@tempa=\box127
+\@tempa=\box128
+\@tempa=\box129
+\@tempa=\box130
+\@tempa=\box131
+\c@minrows=\count362
+\c@columnbadness=\count363
+\c@finalcolumnbadness=\count364
+\last@try=\dimen331
+\multicolovershoot=\dimen332
+\multicolundershoot=\dimen333
+\mult@nat@firstbox=\box132
+\colbreak@box=\box133
+\mc@col@check@num=\count365
+) (/usr/local/texlive/2021/texmf-dist/tex/latex/tabularcalc/tabularcalc.sty
+Package: tabularcalc 2009/04/20 v0.2 Compute formulas in tables
+(/usr/local/texlive/2021/texmf-dist/tex/latex/fp/fp.sty
+Package: fp 1995/04/02
+`Fixed Point Package', Version 0.8, April 2, 1995 (C) Michael Mehlich (/usr/loc
+al/texlive/2021/texmf-dist/tex/latex/fp/defpattern.sty
+Package: defpattern 1994/10/12
+\actioncount=\count366
+) (/usr/local/texlive/2021/texmf-dist/tex/latex/fp/fp-basic.sty
+Package: fp-basic 1996/05/13
+\FP@xs=\count367
+\FP@xia=\count368
+\FP@xib=\count369
+\FP@xfa=\count370
+\FP@xfb=\count371
+\FP@rega=\count372
+\FP@regb=\count373
+\FP@regs=\count374
+\FP@times=\count375
+) (/usr/local/texlive/2021/texmf-dist/tex/latex/fp/fp-addons.sty
+Package: fp-addons 1995/03/15
+) (/usr/local/texlive/2021/texmf-dist/tex/latex/fp/fp-snap.sty
+Package: fp-snap 1995/04/05
+) (/usr/local/texlive/2021/texmf-dist/tex/latex/fp/fp-exp.sty
+Package: fp-exp 1995/04/03
+) (/usr/local/texlive/2021/texmf-dist/tex/latex/fp/fp-trigo.sty
+Package: fp-trigo 1995/04/14
+) (/usr/local/texlive/2021/texmf-dist/tex/latex/fp/fp-pas.sty
+Package: fp-pas 1994/08/29
+) (/usr/local/texlive/2021/texmf-dist/tex/latex/fp/fp-random.sty
+Package: fp-random 1995/02/23
+\FPseed=\count376
+) (/usr/local/texlive/2021/texmf-dist/tex/latex/fp/fp-eqn.sty
+Package: fp-eqn 1995/04/03
+) (/usr/local/texlive/2021/texmf-dist/tex/latex/fp/fp-upn.sty
+Package: fp-upn 1996/10/21
+) (/usr/local/texlive/2021/texmf-dist/tex/latex/fp/fp-eval.sty
+Package: fp-eval 1995/04/03
+)) (/usr/local/texlive/2021/texmf-dist/tex/generic/xstring/xstring.sty (/usr/lo
+cal/texlive/2021/texmf-dist/tex/generic/xstring/xstring.tex
+\integerpart=\count377
+\decimalpart=\count378
+)
+Package: xstring 2019/02/06 v1.83 String manipulations (CT)
+) (/usr/local/texlive/2021/texmf-dist/tex/latex/numprint/numprint.sty
+Package: numprint 2012/08/20 v1.39 Print numbers (HH)
+\c@nprt@mantissa@digitsbefore=\count379
+\c@nprt@mantissa@digitsafter=\count380
+\c@nprt@exponent@digitsbefore=\count381
+\c@nprt@exponent@digitsafter=\count382
+\nprt@digitwidth=\skip72
+\nprt@sepwidth=\skip73
+\nprt@decimalwidth=\skip74
+\nprt@blockwidth=\skip75
+\nprt@digittoks=\toks53
+\nprt@pretoks=\toks54
+\nprt@posttoks=\toks55
+\nprt@thisdigit=\count383
+\nprt@curpos=\count384
+\nprt@rndpos=\count385
+\c@nprt@digitsfirstblock=\count386
+\c@nprt@blockcnt=\count387
+\c@nprt@cntprint=\count388
+No configuration file `numprint.cfg' found.)
+\tccol=\count389
+\tclin=\count390
+\tc@export=\write5
+) (/usr/local/texlive/2021/texmf-dist/tex/latex/mathtools/mathtools.sty
+Package: mathtools 2021/04/12 v1.27 mathematical typesetting tools
+(/usr/local/texlive/2021/texmf-dist/tex/latex/tools/calc.sty
+Package: calc 2017/05/25 v4.3 Infix arithmetic (KKT,FJ)
+\calc@Acount=\count391
+\calc@Bcount=\count392
+\calc@Adimen=\dimen334
+\calc@Bdimen=\dimen335
+\calc@Askip=\skip76
+\calc@Bskip=\skip77
+LaTeX Info: Redefining \setlength on input line 80.
+LaTeX Info: Redefining \addtolength on input line 81.
+\calc@Ccount=\count393
+\calc@Cskip=\skip78
+) (/usr/local/texlive/2021/texmf-dist/tex/latex/mathtools/mhsetup.sty
+Package: mhsetup 2021/03/18 v1.4 programming setup (MH)
+)
+LaTeX Info: Thecontrolsequence`\('isalreadyrobust on input line 130.
+LaTeX Info: Thecontrolsequence`\)'isalreadyrobust on input line 130.
+LaTeX Info: Thecontrolsequence`\['isalreadyrobust on input line 130.
+LaTeX Info: Thecontrolsequence`\]'isalreadyrobust on input line 130.
+\g_MT_multlinerow_int=\count394
+\l_MT_multwidth_dim=\dimen336
+\origjot=\skip79
+\l_MT_shortvdotswithinadjustabove_dim=\dimen337
+\l_MT_shortvdotswithinadjustbelow_dim=\dimen338
+\l_MT_above_intertext_sep=\dimen339
+\l_MT_below_intertext_sep=\dimen340
+\l_MT_above_shortintertext_sep=\dimen341
+\l_MT_below_shortintertext_sep=\dimen342
+\xmathstrut@box=\box134
+\xmathstrut@dim=\dimen343
+) (/usr/local/texlive/2021/texmf-dist/tex/latex/float/float.sty
+Package: float 2001/11/08 v1.3d Float enhancements (AL)
+\c@float@type=\count395
+\float@exts=\toks56
+\float@box=\box135
+\@float@everytoks=\toks57
+\@floatcapt=\box136
+) (/usr/local/texlive/2021/texmf-dist/tex/latex/tasks/tasks.sty
+(/usr/local/texlive/2021/texmf-dist/tex/latex/l3packages/xtemplate/xtemplate.st
+y
+Package: xtemplate 2021-03-12 L3 Experimental prototype document functions
+\l__xtemplate_tmp_dim=\dimen344
+\l__xtemplate_tmp_int=\count396
+\l__xtemplate_tmp_muskip=\muskip18
+\l__xtemplate_tmp_skip=\skip80
+)
+Package: tasks 2021/02/20 v1.3a lists with columns filled horizontally
+\g__tasks_total_items_int=\count397
+\l__tasks_columns_int=\count398
+\g__tasks_rows_int=\count399
+\g__tasks_current_col_num_int=\count400
+\g__tasks_current_row_num_int=\count401
+\l__tasks_item_columns_int=\count402
+\g__tasks_env_int=\count403
+\l__tasks_start_int=\count404
+\l__tasks_item_indent_dim=\dimen345
+\l__tasks_item_default_indent_dim=\dimen346
+\l__tasks_item_width_dim=\dimen347
+\l__tasks_label_width_dim=\dimen348
+\l__tasks_label_default_width_dim=\dimen349
+\l__tasks_label_offset_dim=\dimen350
+\l__tasks_label_default_offset_dim=\dimen351
+\l__tasks_column_sep_dim=\dimen352
+\l__tasks_correction_dim=\dimen353
+\l__tasks_full_width_dim=\dimen354
+\l__tasks_after_item_skip=\skip81
+\l__tasks_custom_after_item_skip=\skip82
+\l__tasks_before_list_skip=\skip83
+\l__tasks_after_list_skip=\skip84
+\l__tasks_item_coffin=\box137
+\l__tasks_label_coffin=\box138
+\c@task=\count405
+\l__tasks_tmpa_int=\count406
+\l__tasks_tmpb_int=\count407
+\l__tasks_tmpa_coffin=\box139
+\l__tasks_tmpa_box=\box140
+
+Package xtemplate Info: Declaring object type 'tasks' taking 3 argument(s) on
+(xtemplate) line 450.
+
+(/usr/local/texlive/2021/texmf-dist/tex/latex/tasks/tasks.cfg)) (/usr/local/tex
+live/2021/texmf-dist/tex/latex/environ/environ.sty
+Package: environ 2014/05/04 v0.3 A new way to define environments
+(/usr/local/texlive/2021/texmf-dist/tex/latex/trimspaces/trimspaces.sty
+Package: trimspaces 2009/09/17 v1.1 Trim spaces around a token list
+)) (/usr/local/texlive/2021/texmf-dist/tex/generic/ulem/ulem.sty
+\UL@box=\box141
+\UL@hyphenbox=\box142
+\UL@skip=\skip85
+\UL@hook=\toks58
+\UL@height=\dimen355
+\UL@pe=\count408
+\UL@pixel=\dimen356
+\ULC@box=\box143
+Package: ulem 2019/11/18
+\ULdepth=\dimen357
+) (/usr/local/texlive/2021/texmf-dist/tex/latex/pgfplots/pgfplotstable.sty (/us
+r/local/texlive/2021/texmf-dist/tex/generic/pgfplots/pgfplots.revision.tex)
+Package: pgfplotstable 2020/02/29 v1.17 Table typesetting and Pretty-printing (
+1.17)
+
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgfplots/numtable/pgfplotstable
+.code.tex
+(/usr/local/texlive/2021/texmf-dist/tex/generic/pgfplots/numtable/pgfplotstable
+.coltype.code.tex))) (/usr/local/texlive/2021/texmf-dist/tex/generic/babel/babe
+l.sty
+Package: babel 2021/04/07 3.57 The Babel package
+(/usr/local/texlive/2021/texmf-dist/tex/generic/babel/babel.def
+File: babel.def 2021/04/07 3.57 Babel common definitions
+\babel@savecnt=\count409
+\U@D=\dimen358
+\l@babelnohyphens=\language87
+(/usr/local/texlive/2021/texmf-dist/tex/generic/babel/txtbabel.def)
+\bbl@readstream=\read3
+)
+LaTeX Info: Redefining \textlatin on input line 717.
+\bbl@dirlevel=\count410
+(/usr/local/texlive/2021/texmf-dist/tex/generic/babel-slovenian/slovene.ldf
+Language: slovene 2021/02/06 v1.2n Slovene support from the babel system
+Package babel Info: Making " an active character on input line 79.
+)) (/usr/local/texlive/2021/texmf-dist/tex/latex/biblatex/biblatex.sty
+Package: biblatex 2020/12/31 v3.16 programmable bibliographies (PK/MW)
+(/usr/local/texlive/2021/texmf-dist/tex/latex/logreq/logreq.sty
+Package: logreq 2010/08/04 v1.0 xml request logger
+\lrq@indent=\count411
+(/usr/local/texlive/2021/texmf-dist/tex/latex/logreq/logreq.def
+File: logreq.def 2010/08/04 v1.0 logreq spec v1.0
+)) (/usr/local/texlive/2021/texmf-dist/tex/latex/base/ifthen.sty
+Package: ifthen 2014/09/29 v1.1c Standard LaTeX ifthen package (DPC)
+)
+\c@tabx@nest=\count412
+\c@listtotal=\count413
+\c@listcount=\count414
+\c@liststart=\count415
+\c@liststop=\count416
+\c@citecount=\count417
+\c@citetotal=\count418
+\c@multicitecount=\count419
+\c@multicitetotal=\count420
+\c@instcount=\count421
+\c@maxnames=\count422
+\c@minnames=\count423
+\c@maxitems=\count424
+\c@minitems=\count425
+\c@citecounter=\count426
+\c@maxcitecounter=\count427
+\c@savedcitecounter=\count428
+\c@uniquelist=\count429
+\c@uniquename=\count430
+\c@refsection=\count431
+\c@refsegment=\count432
+\c@maxextratitle=\count433
+\c@maxextratitleyear=\count434
+\c@maxextraname=\count435
+\c@maxextradate=\count436
+\c@maxextraalpha=\count437
+\c@abbrvpenalty=\count438
+\c@highnamepenalty=\count439
+\c@lownamepenalty=\count440
+\c@maxparens=\count441
+\c@parenlevel=\count442
+\blx@tempcnta=\count443
+\blx@tempcntb=\count444
+\blx@tempcntc=\count445
+\blx@maxsection=\count446
+\blx@maxsegment@0=\count447
+\blx@notetype=\count448
+\blx@parenlevel@text=\count449
+\blx@parenlevel@foot=\count450
+\blx@sectionciteorder@0=\count451
+\blx@entrysetcounter=\count452
+\blx@biblioinstance=\count453
+\labelnumberwidth=\skip86
+\labelalphawidth=\skip87
+\biblabelsep=\skip88
+\bibitemsep=\skip89
+\bibnamesep=\skip90
+\bibinitsep=\skip91
+\bibparsep=\skip92
+\bibhang=\skip93
+\blx@bcfin=\read4
+\blx@bcfout=\write6
+\blx@langwohyphens=\language88
+\c@mincomprange=\count454
+\c@maxcomprange=\count455
+\c@mincompwidth=\count456
+Package biblatex Info: Trying to load biblatex default data model...
+Package biblatex Info: ... file 'blx-dm.def' found.
+(/usr/local/texlive/2021/texmf-dist/tex/latex/biblatex/blx-dm.def
+File: blx-dm.def 2020/12/31 v3.16 biblatex localization (PK/MW)
+)
+Package biblatex Info: Trying to load biblatex style data model...
+Package biblatex Info: ... file 'iso-authoryear.dbx' found.
+
+(/usr/local/texlive/2021/texmf-dist/tex/latex/biblatex-iso690/iso-authoryear.db
+x
+File: iso-authoryear.dbx 2020/03/25 v0.4.0 ISO 690 biblatex data model extensio
+n
+)
+Package biblatex Info: Trying to load biblatex custom data model...
+Package biblatex Info: ... file 'biblatex-dm.cfg' not found.
+\c@afterword=\count457
+\c@savedafterword=\count458
+\c@annotator=\count459
+\c@savedannotator=\count460
+\c@author=\count461
+\c@savedauthor=\count462
+\c@bookauthor=\count463
+\c@savedbookauthor=\count464
+\c@commentator=\count465
+\c@savedcommentator=\count466
+\c@editor=\count467
+\c@savededitor=\count468
+\c@editora=\count469
+\c@savededitora=\count470
+\c@editorb=\count471
+\c@savededitorb=\count472
+\c@editorc=\count473
+\c@savededitorc=\count474
+\c@foreword=\count475
+\c@savedforeword=\count476
+\c@holder=\count477
+\c@savedholder=\count478
+\c@introduction=\count479
+\c@savedintroduction=\count480
+\c@namea=\count481
+\c@savednamea=\count482
+\c@nameb=\count483
+\c@savednameb=\count484
+\c@namec=\count485
+\c@savednamec=\count486
+\c@translator=\count487
+\c@savedtranslator=\count488
+\c@shortauthor=\count489
+\c@savedshortauthor=\count490
+\c@shorteditor=\count491
+\c@savedshorteditor=\count492
+\c@supervisor=\count493
+\c@savedsupervisor=\count494
+\c@labelname=\count495
+\c@savedlabelname=\count496
+\c@institution=\count497
+\c@savedinstitution=\count498
+\c@lista=\count499
+\c@savedlista=\count500
+\c@listb=\count501
+\c@savedlistb=\count502
+\c@listc=\count503
+\c@savedlistc=\count504
+\c@listd=\count505
+\c@savedlistd=\count506
+\c@liste=\count507
+\c@savedliste=\count508
+\c@listf=\count509
+\c@savedlistf=\count510
+\c@location=\count511
+\c@savedlocation=\count512
+\c@organization=\count513
+\c@savedorganization=\count514
+\c@origlocation=\count515
+\c@savedoriglocation=\count516
+\c@origpublisher=\count517
+\c@savedorigpublisher=\count518
+\c@publisher=\count519
+\c@savedpublisher=\count520
+\c@language=\count521
+\c@savedlanguage=\count522
+\c@origlanguage=\count523
+\c@savedoriglanguage=\count524
+\c@pageref=\count525
+\c@savedpageref=\count526
+\shorthandwidth=\skip94
+\shortjournalwidth=\skip95
+\shortserieswidth=\skip96
+\shorttitlewidth=\skip97
+\shortauthorwidth=\skip98
+\shorteditorwidth=\skip99
+\locallabelnumberwidth=\skip100
+\locallabelalphawidth=\skip101
+\localshorthandwidth=\skip102
+\localshortjournalwidth=\skip103
+\localshortserieswidth=\skip104
+\localshorttitlewidth=\skip105
+\localshortauthorwidth=\skip106
+\localshorteditorwidth=\skip107
+Package biblatex Info: Trying to load compatibility code...
+Package biblatex Info: ... file 'blx-compat.def' found.
+(/usr/local/texlive/2021/texmf-dist/tex/latex/biblatex/blx-compat.def
+File: blx-compat.def 2020/12/31 v3.16 biblatex compatibility (PK/MW)
+)
+Package biblatex Info: Trying to load generic definitions...
+Package biblatex Info: ... file 'biblatex.def' found.
+(/usr/local/texlive/2021/texmf-dist/tex/latex/biblatex/biblatex.def
+File: biblatex.def 2020/12/31 v3.16 biblatex compatibility (PK/MW)
+\c@textcitecount=\count527
+\c@textcitetotal=\count528
+\c@textcitemaxnames=\count529
+\c@biburlbigbreakpenalty=\count530
+\c@biburlbreakpenalty=\count531
+\c@biburlnumpenalty=\count532
+\c@biburlucpenalty=\count533
+\c@biburllcpenalty=\count534
+\biburlbigskip=\muskip19
+\biburlnumskip=\muskip20
+\biburlucskip=\muskip21
+\biburllcskip=\muskip22
+\c@smartand=\count535
+)
+Package biblatex Info: Trying to load bibliography style 'iso-authoryear'...
+Package biblatex Info: ... file 'iso-authoryear.bbx' found.
+
+(/usr/local/texlive/2021/texmf-dist/tex/latex/biblatex-iso690/iso-authoryear.bb
+x
+File: iso-authoryear.bbx 2020/03/25 v0.4.0 ISO 690 biblatex bibliography style
+Package biblatex Info: Trying to load bibliography style 'iso'...
+Package biblatex Info: ... file 'iso.bbx' found.
+(/usr/local/texlive/2021/texmf-dist/tex/latex/biblatex-iso690/iso.bbx
+File: iso.bbx 2020/03/25 v0.4.0 ISO 690 biblatex bibliography style
+Package biblatex-iso690 Info: Space colon enabled: false.
+Package biblatex-iso690 Info: Total pages enabled: false.
+Package biblatex-iso690 Info: Short numeration enabled: false.
+Package biblatex-iso690 Info: Printing thesis info at the end enabled: true.
+Package biblatex-iso690 Info: URL field enabled: true.
+Package biblatex-iso690 Info: ISBN field enabled: true.
+Package biblatex-iso690 Info: DOI field enabled: true.
+Package biblatex-iso690 Info: eprint field enabled: true.
+Package biblatex-iso690 Info: Article publication info enabled: false.
+Package biblatex Info: Delimiter 'multinamedelim' in context '' already defined
+, overwriting.
+Package biblatex Info: Delimiter 'finalnamedelim' in context '' already defined
+, overwriting.
+Package biblatex Info: Delimiter 'editortypedelim' in context '' already define
+d, overwriting.
+Package biblatex Info: Delimiter 'authortypedelim' in context '' already define
+d, overwriting.
+)
+Package biblatex Info: Delimiter 'nameyeardelim' in context 'bib' already defin
+ed, overwriting.
+Package biblatex Info: Delimiter 'nameyeardelim' in context 'biblist' already d
+efined, overwriting.
+Package biblatex Info: Delimiter 'nonameyeardelim' in context 'bib' already def
+ined, overwriting.
+Package biblatex Info: Delimiter 'nonameyeardelim' in context 'biblist' already
+ defined, overwriting.
+)
+Package biblatex Info: Trying to load citation style 'iso-authoryear'...
+Package biblatex Info: ... file 'iso-authoryear.cbx' found.
+
+(/usr/local/texlive/2021/texmf-dist/tex/latex/biblatex-iso690/iso-authoryear.cb
+x
+File: iso-authoryear.cbx 2020/03/25 v0.4.0 ISO 690 biblatex citation style
+Package biblatex Info: Trying to load citation style 'authoryear'...
+Package biblatex Info: ... file 'authoryear.cbx' found.
+(/usr/local/texlive/2021/texmf-dist/tex/latex/biblatex/cbx/authoryear.cbx
+File: authoryear.cbx 2020/12/31 v3.16 biblatex citation style (PK/MW)
+Package biblatex Info: Redefining '\cite'.
+Package biblatex Info: Redefining '\parencite'.
+Package biblatex Info: Redefining '\footcite'.
+Package biblatex Info: Redefining '\footcitetext'.
+Package biblatex Info: Redefining '\smartcite'.
+Package biblatex Info: Redefining '\textcite'.
+Package biblatex Info: Redefining '\textcites'.
+)
+Package biblatex Info: Trying to load citation style 'iso-fullcite'...
+Package biblatex Info: ... file 'iso-fullcite.cbx' found.
+(/usr/local/texlive/2021/texmf-dist/tex/latex/biblatex-iso690/iso-fullcite.cbx
+File: iso-fullcite.cbx 2020/03/25 v0.4.0 ISO 690 biblatex fullcite modification
+s
+Package biblatex Info: Redefining '\fullcite'.
+Package biblatex Info: Redefining '\footfullcite'.
+)
+Package biblatex Info: Delimiter 'nameyeardelim' in context '' already defined,
+ overwriting.
+Package biblatex Info: Delimiter 'nonameyeardelim' in context '' already define
+d, overwriting.
+)
+Package biblatex Info: Trying to load configuration file...
+Package biblatex Info: ... file 'biblatex.cfg' found.
+(/usr/local/texlive/2021/texmf-dist/tex/latex/biblatex/biblatex.cfg
+File: biblatex.cfg
+)) (/usr/local/texlive/2021/texmf-dist/tex/latex/datetime/datetime.sty
+Package: datetime 2015/03/20 v2.60 Date Time Package
+(/usr/local/texlive/2021/texmf-dist/tex/latex/fmtcount/fmtcount.sty
+Package: fmtcount 2020/01/30 v3.07
+(/usr/local/texlive/2021/texmf-dist/tex/latex/xkeyval/xkeyval.sty
+Package: xkeyval 2020/11/20 v2.8 package option processing (HA)
+(/usr/local/texlive/2021/texmf-dist/tex/generic/xkeyval/xkeyval.tex (/usr/local
+/texlive/2021/texmf-dist/tex/generic/xkeyval/xkvutils.tex
+\XKV@toks=\toks59
+\XKV@tempa@toks=\toks60
+)
+\XKV@depth=\count536
+File: xkeyval.tex 2014/12/03 v2.7a key=value parser (HA)
+)) (/usr/local/texlive/2021/texmf-dist/tex/latex/fmtcount/fcprefix.sty
+Package: fcprefix 2012/09/28
+(/usr/local/texlive/2021/texmf-dist/tex/latex/fmtcount/fcnumparser.sty
+Package: fcnumparser 2017/06/15
+\fc@digit@counter=\count537
+))
+\c@padzeroesN=\count538
+\fc@tmpcatcode=\count539
+\@DT@modctr=\count540
+\@ordinalctr=\count541
+\@orgargctr=\count542
+\@strctr=\count543
+\@tmpstrctr=\count544
+\@DT@loopN=\count545
+\@DT@X=\count546
+) (/usr/local/texlive/2021/texmf-dist/tex/latex/datetime/datetime-defaults.sty
+Package: datetime-defaults 2013/09/10
+)
+\@day=\count547
+\@month=\count548
+\@year=\count549
+\c@HOUR=\count550
+\c@HOURXII=\count551
+\c@MINUTE=\count552
+\c@TOHOUR=\count553
+\c@TOMINUTE=\count554
+\c@SECOND=\count555
+\currenthour=\count556
+\currentminute=\count557
+\currentsecond=\count558
+Package datetime Info: No datetime.cfg file found, using default settings on in
+put line 308.
+
+! LaTeX Error: Unknown option `ddMMyyyy' for package `datetime'.
+
+See the LaTeX manual or LaTeX Companion for explanation.
+Type H <return> for immediate help.
+ ...
+
+l.560 \if@dt@nodate
+
+Here is how much of TeX's memory you used:
+ 44588 strings out of 478994
+ 1023957 string characters out of 5858190
+ 1635550 words of memory out of 5000000
+ 61320 multiletter control sequences out of 15000+600000
+ 404141 words of font info for 30 fonts, out of 8000000 for 9000
+ 1141 hyphenation exceptions out of 8191
+ 135i,0n,135p,1048b,609s stack positions out of 5000i,500n,10000p,200000b,80000s
+
+! ==> Fatal error occurred, no output PDF file produced!
diff --git a/fiz/naloga/predstavitev/dokument-figure8.md5 b/fiz/naloga/predstavitev/dokument-figure8.md5
new file mode 100644
index 0000000..6005e46
--- /dev/null
+++ b/fiz/naloga/predstavitev/dokument-figure8.md5
@@ -0,0 +1 @@
+\def \tikzexternallastkey {4F342290BEDD9DE52E454EE2281FA041}%
diff --git a/fiz/naloga/predstavitev/dokument.aux b/fiz/naloga/predstavitev/dokument.aux
index 2f72470..239e6b8 100644
--- a/fiz/naloga/predstavitev/dokument.aux
+++ b/fiz/naloga/predstavitev/dokument.aux
@@ -1,5 +1,6 @@
\relax
\providecommand\hyper@newdestlabel[2]{}
+\providecommand\zref@newlabel[2]{}
\providecommand\HyperFirstAtBeginDocument{\AtBeginDocument}
\HyperFirstAtBeginDocument{\ifx\hyper@anchor\@undefined
\global\let\oldcontentsline\contentsline
@@ -23,6 +24,9 @@
\@writefile{lof}{\boolfalse {citerequest}\boolfalse {citetracker}\boolfalse {pagetracker}\boolfalse {backtracker}\relax }
\@writefile{lot}{\boolfalse {citerequest}\boolfalse {citetracker}\boolfalse {pagetracker}\boolfalse {backtracker}\relax }
\abx@aux@refcontext{nyt/global//global/global}
+\providecommand\pbs@newkey[2]{}
+\providecommand\pbs@seq@push@cx[2]{}
+\providecommand\@anim@newkey[2]{}
\babel@aux{slovene}{}
\babel@aux{slovene}{}
\@writefile{nav}{\defcounter {refsection}{0}\relax }\@writefile{nav}{\headcommand {\slideentry {0}{0}{1}{1/1}{}{0}}}
@@ -109,45 +113,61 @@
\@writefile{nav}{\defcounter {refsection}{0}\relax }\@writefile{nav}{\headcommand {\beamer@subsectionentry {0}{5}{9}{16}{Rezultati in komentarji nanje ter ugotovitve}}}
\@writefile{nav}{\defcounter {refsection}{0}\relax }\@writefile{nav}{\headcommand {\slideentry {5}{9}{1}{16/16}{Rezultati in komentarji nanje ter ugotovitve}{0}}}
\@writefile{nav}{\defcounter {refsection}{0}\relax }\@writefile{nav}{\headcommand {\beamer@framepages {16}{16}}}
-\@writefile{toc}{\defcounter {refsection}{0}\relax }\@writefile{toc}{\beamer@sectionintoc {6}{Teorija}{17}{0}{6}}
-\@writefile{nav}{\defcounter {refsection}{0}\relax }\@writefile{nav}{\headcommand {\beamer@sectionpages {8}{16}}}
+\@writefile{toc}{\defcounter {refsection}{0}\relax }\@writefile{toc}{\beamer@subsectionintoc {5}{10}{Graf maksimalne dosežene sile v odvisnosti od začetnega pritiska in začetnega volumna}{17}{0}{5}}
\@writefile{nav}{\defcounter {refsection}{0}\relax }\@writefile{nav}{\headcommand {\beamer@subsectionpages {16}{16}}}
-\@writefile{nav}{\defcounter {refsection}{0}\relax }\@writefile{nav}{\headcommand {\sectionentry {6}{Teorija}{17}{Teorija}{0}}}
-\@writefile{toc}{\defcounter {refsection}{0}\relax }\@writefile{toc}{\beamer@subsectionintoc {6}{1}{Od česa je odvisen potisk}{17}{0}{6}}
-\@writefile{nav}{\defcounter {refsection}{0}\relax }\@writefile{nav}{\headcommand {\beamer@subsectionpages {17}{16}}}
-\@writefile{nav}{\defcounter {refsection}{0}\relax }\@writefile{nav}{\headcommand {\beamer@subsectionentry {0}{6}{1}{17}{Od česa je odvisen potisk}}}
-\@writefile{nav}{\defcounter {refsection}{0}\relax }\@writefile{nav}{\headcommand {\slideentry {6}{1}{1}{17/17}{Od česa je odvisen potisk}{0}}}
+\@writefile{nav}{\defcounter {refsection}{0}\relax }\@writefile{nav}{\headcommand {\beamer@subsectionentry {0}{5}{10}{17}{Graf maksimalne dosežene sile v odvisnosti od začetnega pritiska in začetnega volumna}}}
+\@writefile{nav}{\defcounter {refsection}{0}\relax }\@writefile{nav}{\headcommand {\slideentry {5}{10}{1}{17/17}{Graf maksimalne dosežene sile v odvisnosti od začetnega pritiska in začetnega volumna}{0}}}
\@writefile{nav}{\defcounter {refsection}{0}\relax }\@writefile{nav}{\headcommand {\beamer@framepages {17}{17}}}
-\@writefile{toc}{\defcounter {refsection}{0}\relax }\@writefile{toc}{\beamer@sectionintoc {7}{Razlogi za napake in odstopanja}{18}{0}{7}}
-\@writefile{nav}{\defcounter {refsection}{0}\relax }\@writefile{nav}{\headcommand {\beamer@sectionpages {17}{17}}}
+\@writefile{toc}{\defcounter {refsection}{0}\relax }\@writefile{toc}{\beamer@sectionintoc {6}{Teorija}{18}{0}{6}}
+\@writefile{nav}{\defcounter {refsection}{0}\relax }\@writefile{nav}{\headcommand {\beamer@sectionpages {8}{17}}}
\@writefile{nav}{\defcounter {refsection}{0}\relax }\@writefile{nav}{\headcommand {\beamer@subsectionpages {17}{17}}}
-\@writefile{nav}{\defcounter {refsection}{0}\relax }\@writefile{nav}{\headcommand {\sectionentry {7}{Razlogi za napake in odstopanja}{18}{Razlogi za napake in odstopanja}{0}}}
-\@writefile{nav}{\defcounter {refsection}{0}\relax }\@writefile{nav}{\headcommand {\slideentry {7}{0}{1}{18/18}{}{0}}}
+\@writefile{nav}{\defcounter {refsection}{0}\relax }\@writefile{nav}{\headcommand {\sectionentry {6}{Teorija}{18}{Teorija}{0}}}
+\@writefile{toc}{\defcounter {refsection}{0}\relax }\@writefile{toc}{\beamer@subsectionintoc {6}{1}{Od česa je odvisen potisk}{18}{0}{6}}
+\@writefile{nav}{\defcounter {refsection}{0}\relax }\@writefile{nav}{\headcommand {\beamer@subsectionpages {18}{17}}}
+\@writefile{nav}{\defcounter {refsection}{0}\relax }\@writefile{nav}{\headcommand {\beamer@subsectionentry {0}{6}{1}{18}{Od česa je odvisen potisk}}}
+\@writefile{nav}{\defcounter {refsection}{0}\relax }\@writefile{nav}{\headcommand {\slideentry {6}{1}{1}{18/18}{Od česa je odvisen potisk}{0}}}
\@writefile{nav}{\defcounter {refsection}{0}\relax }\@writefile{nav}{\headcommand {\beamer@framepages {18}{18}}}
-\@writefile{toc}{\defcounter {refsection}{0}\relax }\@writefile{toc}{\beamer@sectionintoc {8}{Viri}{19}{0}{8}}
-\@writefile{nav}{\defcounter {refsection}{0}\relax }\@writefile{nav}{\headcommand {\beamer@sectionpages {18}{18}}}
+\@writefile{toc}{\defcounter {refsection}{0}\relax }\@writefile{toc}{\beamer@subsectionintoc {6}{2}{Izračun teoretičnega potiska iz podatkov iz videoanalize}{19}{0}{6}}
\@writefile{nav}{\defcounter {refsection}{0}\relax }\@writefile{nav}{\headcommand {\beamer@subsectionpages {18}{18}}}
-\@writefile{nav}{\defcounter {refsection}{0}\relax }\@writefile{nav}{\headcommand {\sectionentry {8}{Viri}{19}{Viri}{0}}}
-\@writefile{nav}{\defcounter {refsection}{0}\relax }\@writefile{nav}{\headcommand {\slideentry {8}{0}{1}{19/19}{}{0}}}
+\@writefile{nav}{\defcounter {refsection}{0}\relax }\@writefile{nav}{\headcommand {\beamer@subsectionentry {0}{6}{2}{19}{Izračun teoretičnega potiska iz podatkov iz videoanalize}}}
+\zref@newlabel{anim@abspage0}{\abspage{19}}
+\@writefile{nav}{\defcounter {refsection}{0}\relax }\@writefile{nav}{\headcommand {\slideentry {6}{2}{1}{19/19}{Izračun teoretičnega potiska iz podatkov iz videoanalize}{0}}}
\@writefile{nav}{\defcounter {refsection}{0}\relax }\@writefile{nav}{\headcommand {\beamer@framepages {19}{19}}}
+\@writefile{toc}{\defcounter {refsection}{0}\relax }\@writefile{toc}{\beamer@subsectionintoc {6}{3}{Graf \color {black}izmerjenega potiska \color {white}in \color {red}teoretične vrednosti iz videoanalize \color {white}(poskus 05312153; $V_0=\SI {0,6}{\liter }$, $P_0=\SI {40}{\kilo \pascal }$)}{20}{0}{6}}
\@writefile{nav}{\defcounter {refsection}{0}\relax }\@writefile{nav}{\headcommand {\beamer@subsectionpages {19}{19}}}
-\@writefile{nav}{\defcounter {refsection}{0}\relax }\@writefile{nav}{\headcommand {\beamer@subsectionentry {0}{8}{1}{20}{Licence slik}}}
-\@writefile{nav}{\defcounter {refsection}{0}\relax }\@writefile{nav}{\headcommand {\slideentry {8}{1}{1}{20/20}{Licence slik}{0}}}
+\@writefile{nav}{\defcounter {refsection}{0}\relax }\@writefile{nav}{\headcommand {\beamer@subsectionentry {0}{6}{3}{20}{Graf \color {black}izmerjenega potiska \color {white}in \color {red}teoretične vrednosti iz videoanalize \color {white}(poskus 05312153; $V_0=\SI {0,6}{\liter }$, $P_0=\SI {40}{\kilo \pascal }$)}}}
+\@writefile{nav}{\defcounter {refsection}{0}\relax }\@writefile{nav}{\headcommand {\slideentry {6}{3}{1}{20/20}{Graf \color {black}izmerjenega potiska \color {white}in \color {red}teoretične vrednosti iz videoanalize \color {white}(poskus 05312153; $V_0=\SI {0,6}{\liter }$, $P_0=\SI {40}{\kilo \pascal }$)}{0}}}
\@writefile{nav}{\defcounter {refsection}{0}\relax }\@writefile{nav}{\headcommand {\beamer@framepages {20}{20}}}
-\@writefile{toc}{\defcounter {refsection}{0}\relax }\@writefile{toc}{\beamer@sectionintoc {9}{Zaključek}{21}{0}{9}}
-\@writefile{nav}{\defcounter {refsection}{0}\relax }\@writefile{nav}{\headcommand {\beamer@sectionpages {19}{20}}}
+\@writefile{toc}{\defcounter {refsection}{0}\relax }\@writefile{toc}{\beamer@sectionintoc {7}{Razlogi za napake in odstopanja}{21}{0}{7}}
+\@writefile{nav}{\defcounter {refsection}{0}\relax }\@writefile{nav}{\headcommand {\beamer@sectionpages {18}{20}}}
\@writefile{nav}{\defcounter {refsection}{0}\relax }\@writefile{nav}{\headcommand {\beamer@subsectionpages {20}{20}}}
-\@writefile{nav}{\defcounter {refsection}{0}\relax }\@writefile{nav}{\headcommand {\sectionentry {9}{Zaključek}{21}{Zaključek}{0}}}
-\@writefile{nav}{\defcounter {refsection}{0}\relax }\@writefile{nav}{\headcommand {\slideentry {9}{0}{1}{21/21}{}{0}}}
+\@writefile{nav}{\defcounter {refsection}{0}\relax }\@writefile{nav}{\headcommand {\sectionentry {7}{Razlogi za napake in odstopanja}{21}{Razlogi za napake in odstopanja}{0}}}
+\@writefile{nav}{\defcounter {refsection}{0}\relax }\@writefile{nav}{\headcommand {\slideentry {7}{0}{1}{21/21}{}{0}}}
\@writefile{nav}{\defcounter {refsection}{0}\relax }\@writefile{nav}{\headcommand {\beamer@framepages {21}{21}}}
+\@writefile{toc}{\defcounter {refsection}{0}\relax }\@writefile{toc}{\beamer@sectionintoc {8}{Viri}{22}{0}{8}}
+\@writefile{nav}{\defcounter {refsection}{0}\relax }\@writefile{nav}{\headcommand {\beamer@sectionpages {21}{21}}}
\@writefile{nav}{\defcounter {refsection}{0}\relax }\@writefile{nav}{\headcommand {\beamer@subsectionpages {21}{21}}}
-\@writefile{nav}{\defcounter {refsection}{0}\relax }\@writefile{nav}{\headcommand {\beamer@subsectionentry {0}{9}{1}{22}{Razhroščevalne informacije}}}
-\@writefile{nav}{\defcounter {refsection}{0}\relax }\@writefile{nav}{\headcommand {\slideentry {9}{1}{1}{22/22}{Razhroščevalne informacije}{0}}}
+\@writefile{nav}{\defcounter {refsection}{0}\relax }\@writefile{nav}{\headcommand {\sectionentry {8}{Viri}{22}{Viri}{0}}}
+\@writefile{nav}{\defcounter {refsection}{0}\relax }\@writefile{nav}{\headcommand {\slideentry {8}{0}{1}{22/22}{}{0}}}
\@writefile{nav}{\defcounter {refsection}{0}\relax }\@writefile{nav}{\headcommand {\beamer@framepages {22}{22}}}
-\@writefile{nav}{\headcommand {\beamer@partpages {1}{22}}}
-\@writefile{nav}{\headcommand {\beamer@subsectionpages {22}{22}}}
-\@writefile{nav}{\headcommand {\beamer@sectionpages {21}{22}}}
-\@writefile{nav}{\headcommand {\beamer@documentpages {22}}}
-\@writefile{nav}{\headcommand {\gdef \inserttotalframenumber {22}}}
+\@writefile{nav}{\defcounter {refsection}{0}\relax }\@writefile{nav}{\headcommand {\beamer@subsectionpages {22}{22}}}
+\@writefile{nav}{\defcounter {refsection}{0}\relax }\@writefile{nav}{\headcommand {\beamer@subsectionentry {0}{8}{1}{23}{Licence slik}}}
+\@writefile{nav}{\defcounter {refsection}{0}\relax }\@writefile{nav}{\headcommand {\slideentry {8}{1}{1}{23/23}{Licence slik}{0}}}
+\@writefile{nav}{\defcounter {refsection}{0}\relax }\@writefile{nav}{\headcommand {\beamer@framepages {23}{23}}}
+\@writefile{toc}{\defcounter {refsection}{0}\relax }\@writefile{toc}{\beamer@sectionintoc {9}{Zaključek}{24}{0}{9}}
+\@writefile{nav}{\defcounter {refsection}{0}\relax }\@writefile{nav}{\headcommand {\beamer@sectionpages {22}{23}}}
+\@writefile{nav}{\defcounter {refsection}{0}\relax }\@writefile{nav}{\headcommand {\beamer@subsectionpages {23}{23}}}
+\@writefile{nav}{\defcounter {refsection}{0}\relax }\@writefile{nav}{\headcommand {\sectionentry {9}{Zaključek}{24}{Zaključek}{0}}}
+\@writefile{nav}{\defcounter {refsection}{0}\relax }\@writefile{nav}{\headcommand {\slideentry {9}{0}{1}{24/24}{}{0}}}
+\@writefile{nav}{\defcounter {refsection}{0}\relax }\@writefile{nav}{\headcommand {\beamer@framepages {24}{24}}}
+\@writefile{nav}{\defcounter {refsection}{0}\relax }\@writefile{nav}{\headcommand {\beamer@subsectionpages {24}{24}}}
+\@writefile{nav}{\defcounter {refsection}{0}\relax }\@writefile{nav}{\headcommand {\beamer@subsectionentry {0}{9}{1}{25}{Razhroščevalne informacije}}}
+\@writefile{nav}{\defcounter {refsection}{0}\relax }\@writefile{nav}{\headcommand {\slideentry {9}{1}{1}{25/25}{Razhroščevalne informacije}{0}}}
+\@writefile{nav}{\defcounter {refsection}{0}\relax }\@writefile{nav}{\headcommand {\beamer@framepages {25}{25}}}
+\@writefile{nav}{\headcommand {\beamer@partpages {1}{25}}}
+\@writefile{nav}{\headcommand {\beamer@subsectionpages {25}{25}}}
+\@writefile{nav}{\headcommand {\beamer@sectionpages {24}{25}}}
+\@writefile{nav}{\headcommand {\beamer@documentpages {25}}}
+\@writefile{nav}{\headcommand {\gdef \inserttotalframenumber {25}}}
\abx@aux@read@bbl@mdfivesum{F7F239C736CF01AC6CE7BD829F9B3C7B}
-\gdef \@abspage@last{22}
+\gdef \@abspage@last{25}
diff --git a/fiz/naloga/predstavitev/dokument.log b/fiz/naloga/predstavitev/dokument.log
index 20e065d..83829d0 100644
--- a/fiz/naloga/predstavitev/dokument.log
+++ b/fiz/naloga/predstavitev/dokument.log
@@ -1,4 +1,4 @@
-This is pdfTeX, Version 3.141592653-2.6-1.40.22 (TeX Live 2021) (preloaded format=pdflatex 2021.4.17) 2 JUN 2021 11:31
+This is pdfTeX, Version 3.141592653-2.6-1.40.22 (TeX Live 2021) (preloaded format=pdflatex 2021.4.17) 3 JUN 2021 21:10
entering extended mode
\write18 enabled.
%&-line parsing enabled.
@@ -1654,6 +1654,53 @@ Package: ccicons 2017/10/30 v1.6 LaTeX support for Creative Commons icons
(/usr/local/texlive/2021/texmf-dist/tex/latex/base/textcomp.sty
Package: textcomp 2020/02/02 v2.0n Standard LaTeX package
)
+(/usr/local/texlive/2021/texmf-dist/tex/latex/animate/animate.sty
+Package: animate 2020/10/07 PDF & SVG animations from files and inline graphics
+
+
+(/usr/local/texlive/2021/texmf-dist/tex/latex/oberdiek/ifdraft.sty
+Package: ifdraft 2016/05/16 v1.4 Detect class options draft and final (HO)
+)
+(/usr/local/texlive/2021/texmf-dist/tex/latex/zref/zref-abspage.sty
+Package: zref-abspage 2020-07-03 v2.32 Module abspage for zref (HO)
+
+(/usr/local/texlive/2021/texmf-dist/tex/latex/zref/zref-base.sty
+Package: zref-base 2020-07-03 v2.32 Module base for zref (HO)
+Package zref Info: New property list: main on input line 764.
+Package zref Info: New property: default on input line 765.
+Package zref Info: New property: page on input line 766.
+)
+\c@abspage=\count562
+Package zref Info: New property: abspage on input line 66.
+)
+(/usr/local/texlive/2021/texmf-dist/tex/latex/media9/pdfbase.sty
+Package: pdfbase 2021/03/01 v0.46 driver independent access to low-level PDF fe
+atures
+\g_pbs_page_int=\count563
+\g_pbs_oc_int=\count564
+)
+(/usr/local/texlive/2021/texmf-dist/tex/latex/ocgx2/ocgbase.sty
+Package: ocgbase 2021/01/25 v0.18 support package for ocgx2.sty
+\g_ocgbase_nd_int=\count565
+)
+\@anim@box=\box144
+\@anim@measbox=\box145
+\@anim@tmpdima=\dimen359
+\@anim@tmpdimb=\dimen360
+\@anim@num=\count566
+\@anim@curframe=\count567
+\@anim@curframe@zb=\count568
+\@anim@resizeflags=\count569
+\@anim@skipfram=\count570
+\@anim@mulframecnt=\count571
+\@anim@@tmlnfile=\read5
+\@anim@tmpcnt=\count572
+\c@@anim@ltxcnt=\count573
+\@anim@curlayer=\count574
+\@anim@lineno=\count575
+\@anim@curfield=\count576
+\@anim@@resizeflags=\count577
+)
(/usr/local/texlive/2021/texmf-dist/tex/latex/beamer/beamerthemeMadrid.sty
(/usr/local/texlive/2021/texmf-dist/tex/latex/beamer/beamercolorthemewhale.sty)
@@ -1678,29 +1725,29 @@ s/tikzexternalshared.code.tex))
Package biblatex Warning: 'babel/polyglossia' detected but 'csquotes' missing.
(biblatex) Loading 'csquotes' recommended.
-\@quotelevel=\count562
-\@quotereset=\count563
+\@quotelevel=\count578
+\@quotereset=\count579
(./dokument.aux)
\openout1 = `dokument.aux'.
-LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 92.
-LaTeX Font Info: ... okay on input line 92.
-LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 92.
-LaTeX Font Info: ... okay on input line 92.
-LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 92.
-LaTeX Font Info: ... okay on input line 92.
-LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 92.
-LaTeX Font Info: ... okay on input line 92.
-LaTeX Font Info: Checking defaults for TS1/cmr/m/n on input line 92.
-LaTeX Font Info: ... okay on input line 92.
-LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 92.
-LaTeX Font Info: ... okay on input line 92.
-LaTeX Font Info: Checking defaults for U/cmr/m/n on input line 92.
-LaTeX Font Info: ... okay on input line 92.
-LaTeX Font Info: Checking defaults for PD1/pdf/m/n on input line 92.
-LaTeX Font Info: ... okay on input line 92.
-LaTeX Font Info: Checking defaults for PU/pdf/m/n on input line 92.
-LaTeX Font Info: ... okay on input line 92.
+LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 93.
+LaTeX Font Info: ... okay on input line 93.
+LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 93.
+LaTeX Font Info: ... okay on input line 93.
+LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 93.
+LaTeX Font Info: ... okay on input line 93.
+LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 93.
+LaTeX Font Info: ... okay on input line 93.
+LaTeX Font Info: Checking defaults for TS1/cmr/m/n on input line 93.
+LaTeX Font Info: ... okay on input line 93.
+LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 93.
+LaTeX Font Info: ... okay on input line 93.
+LaTeX Font Info: Checking defaults for U/cmr/m/n on input line 93.
+LaTeX Font Info: ... okay on input line 93.
+LaTeX Font Info: Checking defaults for PD1/pdf/m/n on input line 93.
+LaTeX Font Info: ... okay on input line 93.
+LaTeX Font Info: Checking defaults for PU/pdf/m/n on input line 93.
+LaTeX Font Info: ... okay on input line 93.
*geometry* driver: auto-detecting
*geometry* detected driver: pdftex
@@ -1738,16 +1785,16 @@ LaTeX Font Info: ... okay on input line 92.
(/usr/local/texlive/2021/texmf-dist/tex/context/base/mkii/supp-pdf.mkii
[Loading MPS to PDF converter (version 2006.09.02).]
-\scratchcounter=\count564
-\scratchdimen=\dimen359
-\scratchbox=\box144
-\nofMPsegments=\count565
-\nofMParguments=\count566
+\scratchcounter=\count580
+\scratchdimen=\dimen361
+\scratchbox=\box146
+\nofMPsegments=\count581
+\nofMParguments=\count582
\everyMPshowfont=\toks63
-\MPscratchCnt=\count567
-\MPscratchDim=\dimen360
-\MPnumerator=\count568
-\makeMPintoPDFobject=\count569
+\MPscratchCnt=\count583
+\MPscratchDim=\dimen362
+\MPnumerator=\count584
+\makeMPintoPDFobject=\count585
\everyMPtoPDFconversion=\toks64
) (/usr/local/texlive/2021/texmf-dist/tex/latex/epstopdf-pkg/epstopdf-base.sty
Package: epstopdf-base 2020-01-24 v2.11 Base part for package epstopdf
@@ -1758,7 +1805,7 @@ Package epstopdf-base Info: Redefining graphics rule for `.eps' on input line 4
File: epstopdf-sys.cfg 2010/07/13 v1.3 Configuration of (r)epstopdf for TeX Liv
e
))
-Package hyperref Info: Link coloring OFF on input line 92.
+Package hyperref Info: Link coloring OFF on input line 93.
(/usr/local/texlive/2021/texmf-dist/tex/latex/hyperref/nameref.sty
Package: nameref 2021-04-02 v2.47 Cross-referencing by name of section
@@ -1770,67 +1817,67 @@ Package: refcount 2019/12/15 v3.6 Data extraction from label references (HO)
ty
Package: gettitlestring 2019/12/15 v1.6 Cleanup title references (HO)
)
-\c@section@level=\count570
+\c@section@level=\count586
)
-LaTeX Info: Redefining \ref on input line 92.
-LaTeX Info: Redefining \pageref on input line 92.
-LaTeX Info: Redefining \nameref on input line 92.
+LaTeX Info: Redefining \ref on input line 93.
+LaTeX Info: Redefining \pageref on input line 93.
+LaTeX Info: Redefining \nameref on input line 93.
(./dokument.out) (./dokument.out)
\@outlinefile=\write7
\openout7 = `dokument.out'.
LaTeX Font Info: Overwriting symbol font `operators' in version `normal'
-(Font) OT1/cmr/m/n --> OT1/cmss/m/n on input line 92.
+(Font) OT1/cmr/m/n --> OT1/cmss/m/n on input line 93.
LaTeX Font Info: Overwriting symbol font `operators' in version `bold'
-(Font) OT1/cmr/bx/n --> OT1/cmss/b/n on input line 92.
+(Font) OT1/cmr/bx/n --> OT1/cmss/b/n on input line 93.
\symnumbers=\mathgroup6
\sympureletters=\mathgroup7
LaTeX Font Info: Overwriting math alphabet `\mathrm' in version `normal'
-(Font) OT1/cmss/m/n --> OT1/cmr/m/n on input line 92.
-LaTeX Font Info: Redeclaring math alphabet \mathbf on input line 92.
+(Font) OT1/cmss/m/n --> OT1/cmr/m/n on input line 93.
+LaTeX Font Info: Redeclaring math alphabet \mathbf on input line 93.
LaTeX Font Info: Overwriting math alphabet `\mathbf' in version `normal'
-(Font) OT1/cmr/bx/n --> OT1/cmss/b/n on input line 92.
+(Font) OT1/cmr/bx/n --> OT1/cmss/b/n on input line 93.
LaTeX Font Info: Overwriting math alphabet `\mathbf' in version `bold'
-(Font) OT1/cmr/bx/n --> OT1/cmss/b/n on input line 92.
-LaTeX Font Info: Redeclaring math alphabet \mathsf on input line 92.
+(Font) OT1/cmr/bx/n --> OT1/cmss/b/n on input line 93.
+LaTeX Font Info: Redeclaring math alphabet \mathsf on input line 93.
LaTeX Font Info: Overwriting math alphabet `\mathsf' in version `normal'
-(Font) OT1/cmss/m/n --> OT1/cmss/m/n on input line 92.
+(Font) OT1/cmss/m/n --> OT1/cmss/m/n on input line 93.
LaTeX Font Info: Overwriting math alphabet `\mathsf' in version `bold'
-(Font) OT1/cmss/bx/n --> OT1/cmss/m/n on input line 92.
-LaTeX Font Info: Redeclaring math alphabet \mathit on input line 92.
+(Font) OT1/cmss/bx/n --> OT1/cmss/m/n on input line 93.
+LaTeX Font Info: Redeclaring math alphabet \mathit on input line 93.
LaTeX Font Info: Overwriting math alphabet `\mathit' in version `normal'
-(Font) OT1/cmr/m/it --> OT1/cmss/m/it on input line 92.
+(Font) OT1/cmr/m/it --> OT1/cmss/m/it on input line 93.
LaTeX Font Info: Overwriting math alphabet `\mathit' in version `bold'
-(Font) OT1/cmr/bx/it --> OT1/cmss/m/it on input line 92.
-LaTeX Font Info: Redeclaring math alphabet \mathtt on input line 92.
+(Font) OT1/cmr/bx/it --> OT1/cmss/m/it on input line 93.
+LaTeX Font Info: Redeclaring math alphabet \mathtt on input line 93.
LaTeX Font Info: Overwriting math alphabet `\mathtt' in version `normal'
-(Font) OT1/cmtt/m/n --> OT1/cmtt/m/n on input line 92.
+(Font) OT1/cmtt/m/n --> OT1/cmtt/m/n on input line 93.
LaTeX Font Info: Overwriting math alphabet `\mathtt' in version `bold'
-(Font) OT1/cmtt/m/n --> OT1/cmtt/m/n on input line 92.
+(Font) OT1/cmtt/m/n --> OT1/cmtt/m/n on input line 93.
LaTeX Font Info: Overwriting symbol font `numbers' in version `bold'
-(Font) OT1/cmss/m/n --> OT1/cmss/b/n on input line 92.
+(Font) OT1/cmss/m/n --> OT1/cmss/b/n on input line 93.
LaTeX Font Info: Overwriting symbol font `pureletters' in version `bold'
-(Font) OT1/cmss/m/it --> OT1/cmss/b/it on input line 92.
+(Font) OT1/cmss/m/it --> OT1/cmss/b/it on input line 93.
LaTeX Font Info: Overwriting math alphabet `\mathrm' in version `bold'
-(Font) OT1/cmss/b/n --> OT1/cmr/b/n on input line 92.
+(Font) OT1/cmss/b/n --> OT1/cmr/b/n on input line 93.
LaTeX Font Info: Overwriting math alphabet `\mathbf' in version `bold'
-(Font) OT1/cmss/b/n --> OT1/cmss/b/n on input line 92.
+(Font) OT1/cmss/b/n --> OT1/cmss/b/n on input line 93.
LaTeX Font Info: Overwriting math alphabet `\mathsf' in version `bold'
-(Font) OT1/cmss/m/n --> OT1/cmss/b/n on input line 92.
+(Font) OT1/cmss/m/n --> OT1/cmss/b/n on input line 93.
LaTeX Font Info: Overwriting math alphabet `\mathit' in version `bold'
-(Font) OT1/cmss/m/it --> OT1/cmss/b/it on input line 92.
+(Font) OT1/cmss/m/it --> OT1/cmss/b/it on input line 93.
LaTeX Font Info: Overwriting math alphabet `\mathtt' in version `bold'
-(Font) OT1/cmtt/m/n --> OT1/cmtt/b/n on input line 92.
-LaTeX Font Info: Redeclaring symbol font `pureletters' on input line 92.
+(Font) OT1/cmtt/m/n --> OT1/cmtt/b/n on input line 93.
+LaTeX Font Info: Redeclaring symbol font `pureletters' on input line 93.
LaTeX Font Info: Overwriting symbol font `pureletters' in version `normal'
(Font) OT1/cmss/m/it --> OT1/mathkerncmss/m/sl on input line 9
-2.
+3.
LaTeX Font Info: Overwriting symbol font `pureletters' in version `bold'
(Font) OT1/cmss/b/it --> OT1/mathkerncmss/m/sl on input line 9
-2.
+3.
LaTeX Font Info: Overwriting symbol font `pureletters' in version `bold'
(Font) OT1/mathkerncmss/m/sl --> OT1/mathkerncmss/bx/sl on inp
-ut line 92.
+ut line 93.
(/usr/local/texlive/2021/texmf-dist/tex/latex/translator/translator-basic-dicti
onary-English.dict
@@ -1860,7 +1907,7 @@ Dictionary: translator-theorem-dictionary, Language: English
Package pgfplots Warning: running in backwards compatibility mode (unsuitable t
ick labels; missing features). Consider writing \pgfplotsset{compat=1.17} into
your preamble.
- on input line 92.
+ on input line 93.
(/usr/local/texlive/2021/texmf-dist/tex/latex/siunitx/siunitx-abbreviations.cfg
@@ -1893,23 +1940,23 @@ Package biblatex Info: Trying to load bibliographic data...
Package biblatex Info: ... file 'dokument.bbl' found.
(./dokument.bbl)
-Package biblatex Info: Reference section=0 on input line 92.
-Package biblatex Info: Reference segment=0 on input line 92.
+Package biblatex Info: Reference section=0 on input line 93.
+Package biblatex Info: Reference segment=0 on input line 93.
(./dokument.nav)
-LaTeX Font Info: Trying to load font information for U+msa on input line 92.
+LaTeX Font Info: Trying to load font information for U+msa on input line 93.
(/usr/local/texlive/2021/texmf-dist/tex/latex/amsfonts/umsa.fd
File: umsa.fd 2013/01/14 v3.01 AMS symbols A
)
-LaTeX Font Info: Trying to load font information for U+msb on input line 92.
+LaTeX Font Info: Trying to load font information for U+msb on input line 93.
(/usr/local/texlive/2021/texmf-dist/tex/latex/amsfonts/umsb.fd
File: umsb.fd 2013/01/14 v3.01 AMS symbols B
)
LaTeX Font Info: Trying to load font information for OT1+mathkerncmss on inp
-ut line 92.
+ut line 93.
(/usr/local/texlive/2021/texmf-dist/tex/latex/sansmathaccent/ot1mathkerncmss.fd
File: ot1mathkerncmss.fd 2020/01/31 Fontinst v1.933 font definitions for OT1/ma
@@ -1920,89 +1967,89 @@ thkerncmss.
(./dokument.toc) [2
]
-<../tekst/img-tracked/navoji.jpg, id=221, 3468.96pt x 2312.64pt>
+<../tekst/img-tracked/navoji.jpg, id=247, 3468.96pt x 2312.64pt>
File: ../tekst/img-tracked/navoji.jpg Graphic file (type jpg)
<use ../tekst/img-tracked/navoji.jpg>
Package pdftex.def Info: ../tekst/img-tracked/navoji.jpg used on input line 12
-2.
+3.
(pdftex.def) Requested size: 216.67201pt x 144.43378pt.
-Overfull \hbox (5.0pt too wide) in paragraph at lines 122--122
+Overfull \hbox (5.0pt too wide) in paragraph at lines 123--123
[]
[]
[3
<../tekst/img-tracked/navoji.jpg>]
-<merilniki.jpg, id=247, 710.4141pt x 458.1918pt>
+<merilniki.jpg, id=274, 710.4141pt x 458.1918pt>
File: merilniki.jpg Graphic file (type jpg)
<use merilniki.jpg>
-Package pdftex.def Info: merilniki.jpg used on input line 146.
+Package pdftex.def Info: merilniki.jpg used on input line 147.
(pdftex.def) Requested size: 216.67201pt x 139.7448pt.
-Overfull \hbox (5.0pt too wide) in paragraph at lines 146--146
+Overfull \hbox (5.0pt too wide) in paragraph at lines 147--147
[]
[]
[4
<./merilniki.jpg>]
-<../tekst/img-tracked/rampa.jpg, id=274, 3468.96pt x 2312.64pt>
+<../tekst/img-tracked/rampa.jpg, id=302, 3468.96pt x 2312.64pt>
File: ../tekst/img-tracked/rampa.jpg Graphic file (type jpg)
<use ../tekst/img-tracked/rampa.jpg>
-Package pdftex.def Info: ../tekst/img-tracked/rampa.jpg used on input line 171
+Package pdftex.def Info: ../tekst/img-tracked/rampa.jpg used on input line 172
.
(pdftex.def) Requested size: 216.67201pt x 144.43378pt.
-Overfull \hbox (5.0pt too wide) in paragraph at lines 171--171
+Overfull \hbox (5.0pt too wide) in paragraph at lines 172--172
[]
[]
[5
<../tekst/img-tracked/rampa.jpg>]
-<totem.jpg, id=305, 1314.9125pt x 1915.155pt>
+<totem.jpg, id=333, 1314.9125pt x 1915.155pt>
File: totem.jpg Graphic file (type jpg)
<use totem.jpg>
-Package pdftex.def Info: totem.jpg used on input line 196.
+Package pdftex.def Info: totem.jpg used on input line 197.
(pdftex.def) Requested size: 216.67201pt x 315.57782pt.
-Overfull \hbox (5.0pt too wide) in paragraph at lines 196--196
+Overfull \hbox (5.0pt too wide) in paragraph at lines 197--197
[]
[]
-Overfull \vbox (57.94856pt too high) detected at line 196
+Overfull \vbox (57.94856pt too high) detected at line 197
[]
[6
<./totem.jpg>]
-Overfull \hbox (1.17192pt too wide) detected at line 236
+Overfull \hbox (1.17192pt too wide) detected at line 237
\OT1/mathkerncmss/m/sl/10.95 f\OT1/cmss/m/n/10.95 (\OT1/mathkerncmss/m/sl/10.95
x\OT1/cmss/m/n/10.95 ) = []
[]
LaTeX Font Info: Trying to load font information for OMS+cmss on input line
-236.
-LaTeX Font Info: No file OMScmss.fd. on input line 236.
+237.
+LaTeX Font Info: No file OMScmss.fd. on input line 237.
LaTeX Font Warning: Font shape `OMS/cmss/m/n' undefined
(Font) using `OMS/cmsy/m/n' instead
-(Font) for symbol `textbraceleft' on input line 236.
+(Font) for symbol `textbraceleft' on input line 237.
-<špric.jpg, id=334, 1388.18625pt x 2039.62pt>
+<špric.jpg, id=363, 1388.18625pt x 2039.62pt>
File: špric.jpg Graphic file (type jpg)
<use špric.jpg>
-Package pdftex.def Info: špric.jpg used on input line 236.
+Package pdftex.def Info: špric.jpg used on input line 237.
(pdftex.def) Requested size: 216.67201pt x 318.3475pt.
-Overfull \hbox (5.0pt too wide) in paragraph at lines 236--236
+Overfull \hbox (5.0pt too wide) in paragraph at lines 237--237
[]
[]
-Overfull \vbox (60.48602pt too high) detected at line 236
+Overfull \vbox (60.48602pt too high) detected at line 237
[]
[7
@@ -2036,7 +2083,7 @@ See the tikz package documentation for explanation.
Type H <return> for immediate help.
...
-l.303 \end{frame}
+l.304 \end{frame}
This error message was generated by an \errmessage
command, so I can't give any explicit help.
@@ -2092,7 +2139,7 @@ See the tikz package documentation for explanation.
Type H <return> for immediate help.
...
-l.339 \end{frame}
+l.340 \end{frame}
(That was another \errmessage.)
@@ -2145,7 +2192,7 @@ See the tikz package documentation for explanation.
Type H <return> for immediate help.
...
-l.373 \end{frame}
+l.374 \end{frame}
(That was another \errmessage.)
@@ -2198,7 +2245,7 @@ See the tikz package documentation for explanation.
Type H <return> for immediate help.
...
-l.409 \end{frame}
+l.410 \end{frame}
(That was another \errmessage.)
@@ -2251,7 +2298,7 @@ See the tikz package documentation for explanation.
Type H <return> for immediate help.
...
-l.445 \end{frame}
+l.446 \end{frame}
(That was another \errmessage.)
@@ -2304,7 +2351,7 @@ See the tikz package documentation for explanation.
Type H <return> for immediate help.
...
-l.474 \end{frame}
+l.475 \end{frame}
(That was another \errmessage.)
@@ -2352,7 +2399,7 @@ See the tikz package documentation for explanation.
Type H <return> for immediate help.
...
-l.503 \end{frame}
+l.504 \end{frame}
(That was another \errmessage.)
@@ -2372,35 +2419,241 @@ runsystem(gnuplot dokument.pgf-plot.gnuplot)...executed.
PGFPlots: reading {dokument.pgf-plot.table}
-Overfull \vbox (8.21541pt too high) detected at line 503
+Overfull \vbox (8.21541pt too high) detected at line 504
[]
[15
]
-<kompresor.jpg, id=574, 1071.00125pt x 1656.1875pt>
+<kompresor.jpg, id=612, 1071.00125pt x 1656.1875pt>
File: kompresor.jpg Graphic file (type jpg)
<use kompresor.jpg>
-Package pdftex.def Info: kompresor.jpg used on input line 532.
+Package pdftex.def Info: kompresor.jpg used on input line 533.
(pdftex.def) Requested size: 216.67201pt x 335.0476pt.
-Overfull \hbox (5.0pt too wide) in paragraph at lines 532--532
+Overfull \hbox (5.0pt too wide) in paragraph at lines 533--533
[]
[]
-Overfull \vbox (76.64851pt too high) detected at line 532
+Overfull \vbox (76.64851pt too high) detected at line 533
[]
[16
- <./kompresor.jpg>] [17
+ <./kompresor.jpg>]
+\openout3 = `dokument.auxlock'.
+
+
+===== 'mode=convert with system call': Invoking 'pdflatex -shell-escape -halt-o
+n-error -interaction=batchmode -jobname "dokument-figure7" "\def\tikzexternalre
+aljob{dokument}\input{dokument}"' ========
+runsystem(pdflatex -shell-escape -halt-on-error -interaction=batchmode -jobname
+ "dokument-figure7" "\def\tikzexternalrealjob{dokument}\input{dokument}")...exe
+cuted.
+
+\openout3 = `dokument.auxlock'.
+
+
+! Package tikz Error: Sorry, the system call 'pdflatex -shell-escape -halt-on-e
+rror -interaction=batchmode -jobname "dokument-figure7" "\def\tikzexternalrealj
+ob{dokument}\input{dokument}"' did NOT result in a usable output file 'dokument
+-figure7' (expected one of .pdf:.jpg:.jpeg:.png:). Please verify that you have
+enabled system calls. For pdflatex, this is 'pdflatex -shell-escape'. Sometimes
+ it is also named 'write 18' or something like that. Or maybe the command simpl
+y failed? Error messages can be found in 'dokument-figure7.log'. If you continu
+e now, I'll try to typeset the picture.
+
+See the tikz package documentation for explanation.
+Type H <return> for immediate help.
+ ...
+
+l.564 \end{frame}
+
+(That was another \errmessage.)
+
+\openout3 = `dokument.pgf-plot.gnuplot'.
+
+runsystem(gnuplot dokument.pgf-plot.gnuplot)...executed.
+
+PGFPlots: reading {dokument.pgf-plot.table}
+\openout3 = `dokument.pgf-plot.gnuplot'.
+
+runsystem(gnuplot dokument.pgf-plot.gnuplot)...executed.
+
+PGFPlots: reading {dokument.pgf-plot.table}
+\openout3 = `dokument.pgf-plot.gnuplot'.
+
+runsystem(gnuplot dokument.pgf-plot.gnuplot)...executed.
+
+PGFPlots: reading {dokument.pgf-plot.table}
+\openout3 = `dokument.pgf-plot.gnuplot'.
+
+runsystem(gnuplot dokument.pgf-plot.gnuplot)...executed.
+
+PGFPlots: reading {dokument.pgf-plot.table}
+[17
+
+] [18
+
+]
+<img/genbojl0.png, id=692, 533.995pt x 404.51125pt>
+File: img/genbojl0.png Graphic file (type png)
+<use img/genbojl0.png>
+Package pdftex.def Info: img/genbojl0.png used on input line 609.
+(pdftex.def) Requested size: 533.9937pt x 404.51025pt.
+ <./img/genbojl0.png> <a0,fr0>
+<img/genbojl1.png, id=701, 533.995pt x 404.51125pt>
+File: img/genbojl1.png Graphic file (type png)
+<use img/genbojl1.png>
+Package pdftex.def Info: img/genbojl1.png used on input line 609.
+(pdftex.def) Requested size: 533.9937pt x 404.51025pt.
+ <./img/genbojl1.png> <a0,fr1>
+<img/genbojl2.png, id=710, 533.995pt x 404.51125pt>
+File: img/genbojl2.png Graphic file (type png)
+<use img/genbojl2.png>
+Package pdftex.def Info: img/genbojl2.png used on input line 609.
+(pdftex.def) Requested size: 533.9937pt x 404.51025pt.
+ <./img/genbojl2.png> <a0,fr2>
+<img/genbojl3.png, id=719, 533.995pt x 404.51125pt>
+File: img/genbojl3.png Graphic file (type png)
+<use img/genbojl3.png>
+Package pdftex.def Info: img/genbojl3.png used on input line 609.
+(pdftex.def) Requested size: 533.9937pt x 404.51025pt.
+ <./img/genbojl3.png> <a0,fr3>
+<img/genbojl4.png, id=728, 533.995pt x 404.51125pt>
+File: img/genbojl4.png Graphic file (type png)
+<use img/genbojl4.png>
+Package pdftex.def Info: img/genbojl4.png used on input line 609.
+(pdftex.def) Requested size: 533.9937pt x 404.51025pt.
+ <./img/genbojl4.png>
+<a0,fr4>
+<img/genbojl5.png, id=737, 533.995pt x 404.51125pt>
+File: img/genbojl5.png Graphic file (type png)
+<use img/genbojl5.png>
+Package pdftex.def Info: img/genbojl5.png used on input line 609.
+(pdftex.def) Requested size: 533.9937pt x 404.51025pt.
+ <./img/genbojl5.png> <a0,fr5>
+<img/genbojl6.png, id=746, 533.995pt x 404.51125pt>
+File: img/genbojl6.png Graphic file (type png)
+<use img/genbojl6.png>
+Package pdftex.def Info: img/genbojl6.png used on input line 609.
+(pdftex.def) Requested size: 533.9937pt x 404.51025pt.
+ <./img/genbojl6.png> <a0,fr6>
+<img/genbojl7.png, id=756, 533.995pt x 404.51125pt>
+File: img/genbojl7.png Graphic file (type png)
+<use img/genbojl7.png>
+Package pdftex.def Info: img/genbojl7.png used on input line 609.
+(pdftex.def) Requested size: 533.9937pt x 404.51025pt.
+ <./img/genbojl7.png> <a0,fr7>
+<img/genbojl8.png, id=765, 533.995pt x 404.51125pt>
+File: img/genbojl8.png Graphic file (type png)
+<use img/genbojl8.png>
+Package pdftex.def Info: img/genbojl8.png used on input line 609.
+(pdftex.def) Requested size: 533.9937pt x 404.51025pt.
+ <./img/genbojl8.png> <a0,fr8>
+<img/genbojl9.png, id=774, 533.995pt x 404.51125pt>
+File: img/genbojl9.png Graphic file (type png)
+<use img/genbojl9.png>
+Package pdftex.def Info: img/genbojl9.png used on input line 609.
+(pdftex.def) Requested size: 533.9937pt x 404.51025pt.
+ <./img/genbojl9.png>
+<a0,fr9>
+<img/genbojl10.png, id=783, 533.995pt x 404.51125pt>
+File: img/genbojl10.png Graphic file (type png)
+<use img/genbojl10.png>
+Package pdftex.def Info: img/genbojl10.png used on input line 609.
+(pdftex.def) Requested size: 533.9937pt x 404.51025pt.
+ <./img/genbojl10.png> <a0,fr10> <a0,fr11> <a0,fr12> <a0,fr13>
+<a0,fr14> <a0,fr15> <a0,fr16> <a0,fr17> <a0,fr18> <a0,fr19> [19
+
+]
+
+Package hyperref Warning: Token not allowed in a PDF string (Unicode):
+(hyperref) removing `\color' on input line 611.
+
+
+Package hyperref Warning: Token not allowed in a PDF string (Unicode):
+(hyperref) removing `\color' on input line 611.
+
+
+Package hyperref Warning: Token not allowed in a PDF string (Unicode):
+(hyperref) removing `\color' on input line 611.
+
+
+Package hyperref Warning: Token not allowed in a PDF string (Unicode):
+(hyperref) removing `\color' on input line 611.
+
+
+Package hyperref Warning: Token not allowed in a PDF string (Unicode):
+(hyperref) removing `math shift' on input line 611.
+
+
+Package hyperref Warning: Token not allowed in a PDF string (Unicode):
+(hyperref) removing `subscript' on input line 611.
+
+
+Package hyperref Warning: Token not allowed in a PDF string (Unicode):
+(hyperref) removing `math shift' on input line 611.
+
+
+Package hyperref Warning: Token not allowed in a PDF string (Unicode):
+(hyperref) removing `math shift' on input line 611.
+
+
+Package hyperref Warning: Token not allowed in a PDF string (Unicode):
+(hyperref) removing `subscript' on input line 611.
+
+
+Package hyperref Warning: Token not allowed in a PDF string (Unicode):
+(hyperref) removing `math shift' on input line 611.
+
+\openout3 = `dokument.auxlock'.
+
+===== 'mode=convert with system call': Invoking 'pdflatex -shell-escape -halt-o
+n-error -interaction=batchmode -jobname "dokument-figure8" "\def\tikzexternalre
+aljob{dokument}\input{dokument}"' ========
+runsystem(pdflatex -shell-escape -halt-on-error -interaction=batchmode -jobname
+ "dokument-figure8" "\def\tikzexternalrealjob{dokument}\input{dokument}")...exe
+cuted.
+
+\openout3 = `dokument.auxlock'.
+
+
+! Package tikz Error: Sorry, the system call 'pdflatex -shell-escape -halt-on-e
+rror -interaction=batchmode -jobname "dokument-figure8" "\def\tikzexternalrealj
+ob{dokument}\input{dokument}"' did NOT result in a usable output file 'dokument
+-figure8' (expected one of .pdf:.jpg:.jpeg:.png:). Please verify that you have
+enabled system calls. For pdflatex, this is 'pdflatex -shell-escape'. Sometimes
+ it is also named 'write 18' or something like that. Or maybe the command simpl
+y failed? Error messages can be found in 'dokument-figure8.log'. If you continu
+e now, I'll try to typeset the picture.
+
+See the tikz package documentation for explanation.
+Type H <return> for immediate help.
+ ...
+
+l.638 \end{frame}
+
+(That was another \errmessage.)
+
+\openout3 = `dokument.pgf-plot.gnuplot'.
+
+runsystem(gnuplot dokument.pgf-plot.gnuplot)...executed.
+
+PGFPlots: reading {dokument.pgf-plot.table}
+\openout3 = `dokument.pgf-plot.gnuplot'.
+
+runsystem(gnuplot dokument.pgf-plot.gnuplot)...executed.
+
+PGFPlots: reading {dokument.pgf-plot.table}
+[20
]
! Undefined control sequence.
\beamer@doifinframe ...pično \item Podporni \say
{L} nosilec se je ukrivil ...
-l.576 \end{frame}
+l.659 \end{frame}
The control sequence at the end of the top line
of your error message was never \def'ed. If you have
@@ -2415,37 +2668,37 @@ See the xkeyval package documentation for explanation.
Type H <return> for immediate help.
...
-l.576 \end{frame}
+l.659 \end{frame}
Try typing <return> to proceed.
If that doesn't work, type X <return> to quit.
-<dozirka.jpg, id=626, 3468.96pt x 2312.64pt>
+<dozirka.jpg, id=921, 3468.96pt x 2312.64pt>
File: dozirka.jpg Graphic file (type jpg)
<use dozirka.jpg>
-Package pdftex.def Info: dozirka.jpg used on input line 576.
+Package pdftex.def Info: dozirka.jpg used on input line 659.
(pdftex.def) Requested size: 216.67201pt x 144.43378pt.
-Overfull \hbox (5.0pt too wide) in paragraph at lines 576--576
+Overfull \hbox (5.0pt too wide) in paragraph at lines 659--659
[]
[]
-[18
+[21
- <./dozirka.jpg>] [19
+ <./dozirka.jpg>] [22
]
LaTeX Font Info: Trying to load font information for TS1+cmss on input line
-603.
+686.
(/usr/local/texlive/2021/texmf-dist/tex/latex/base/ts1cmss.fd
File: ts1cmss.fd 2019/12/16 v2.5j Standard LaTeX font definitions
-) [20
+) [23
-] [21
+] [24
]
-[22
+[25
]
\tf@nav=\write8
@@ -2462,19 +2715,19 @@ File: ts1cmss.fd 2019/12/16 v2.5j Standard LaTeX font definitions
LaTeX Font Warning: Some font shapes were not available, defaults substituted.
Package rerunfilecheck Info: File `dokument.out' has not changed.
-(rerunfilecheck) Checksum: 4C9BBDF3BD5371C8A6856B187869BB8D;6363.
+(rerunfilecheck) Checksum: 1120457BDD6CFF1A43DBD8E5EC7F1AA8;7965.
Package logreq Info: Writing requests to 'dokument.run.xml'.
\openout1 = `dokument.run.xml'.
)
Here is how much of TeX's memory you used:
- 48791 strings out of 478994
- 1117236 string characters out of 5858190
- 1948528 words of memory out of 5000000
- 65276 multiletter control sequences out of 15000+600000
+ 50013 strings out of 478994
+ 1139810 string characters out of 5858190
+ 1989529 words of memory out of 5000000
+ 66442 multiletter control sequences out of 15000+600000
418854 words of font info for 85 fonts, out of 8000000 for 9000
1141 hyphenation exceptions out of 8191
- 131i,16n,132p,1265b,2446s stack positions out of 5000i,500n,10000p,200000b,80000s
+ 131i,16n,132p,1327b,2504s stack positions out of 5000i,500n,10000p,200000b,80000s
{/usr/local/texlive/2021/texmf-dist/fonts/enc/dvips/cm-super/cm-super-ts1.enc
}</usr/local/texlive/2021/texmf-dist/fonts/type1/public/amsfonts/cm/cmex10.pfb>
</usr/local/texlive/2021/texmf-dist/fonts/type1/public/amsfonts/cm/cmmi10.pfb><
@@ -2494,10 +2747,10 @@ live/2021/texmf-dist/fonts/type1/public/amsfonts/cm/cmsy8.pfb></usr/local/texli
ve/2021/texmf-dist/fonts/type1/public/amsfonts/cm/cmtt10.pfb></usr/local/texliv
e/2021/texmf-dist/fonts/type1/public/amsfonts/cm/cmtt9.pfb></usr/local/texlive/
2021/texmf-dist/fonts/type1/public/cm-super/sfss1095.pfb>
-Output written on dokument.pdf (22 pages, 20729980 bytes).
+Output written on dokument.pdf (25 pages, 20850405 bytes).
PDF statistics:
- 838 PDF objects out of 1000 (max. 8388607)
- 766 compressed objects within 8 object streams
- 70 named destinations out of 1000 (max. 500000)
- 326 words of extra memory for PDF output out of 10000 (max. 10000000)
+ 1143 PDF objects out of 1200 (max. 8388607)
+ 979 compressed objects within 10 object streams
+ 79 named destinations out of 1000 (max. 500000)
+ 773 words of extra memory for PDF output out of 10000 (max. 10000000)
diff --git a/fiz/naloga/predstavitev/dokument.nav b/fiz/naloga/predstavitev/dokument.nav
index 4cfd563..688d30d 100644
--- a/fiz/naloga/predstavitev/dokument.nav
+++ b/fiz/naloga/predstavitev/dokument.nav
@@ -145,67 +145,91 @@
\defcounter {refsection}{0}\relax
\headcommand {\beamer@framepages {16}{16}}
\defcounter {refsection}{0}\relax
-\headcommand {\beamer@sectionpages {8}{16}}
-\defcounter {refsection}{0}\relax
\headcommand {\beamer@subsectionpages {16}{16}}
\defcounter {refsection}{0}\relax
-\headcommand {\sectionentry {6}{Teorija}{17}{Teorija}{0}}
-\defcounter {refsection}{0}\relax
-\headcommand {\beamer@subsectionpages {17}{16}}
-\defcounter {refsection}{0}\relax
-\headcommand {\beamer@subsectionentry {0}{6}{1}{17}{Od česa je odvisen potisk}}
+\headcommand {\beamer@subsectionentry {0}{5}{10}{17}{Graf maksimalne dosežene sile v odvisnosti od začetnega pritiska in začetnega volumna}}
\defcounter {refsection}{0}\relax
-\headcommand {\slideentry {6}{1}{1}{17/17}{Od česa je odvisen potisk}{0}}
+\headcommand {\slideentry {5}{10}{1}{17/17}{Graf maksimalne dosežene sile v odvisnosti od začetnega pritiska in začetnega volumna}{0}}
\defcounter {refsection}{0}\relax
\headcommand {\beamer@framepages {17}{17}}
\defcounter {refsection}{0}\relax
-\headcommand {\beamer@sectionpages {17}{17}}
+\headcommand {\beamer@sectionpages {8}{17}}
\defcounter {refsection}{0}\relax
\headcommand {\beamer@subsectionpages {17}{17}}
\defcounter {refsection}{0}\relax
-\headcommand {\sectionentry {7}{Razlogi za napake in odstopanja}{18}{Razlogi za napake in odstopanja}{0}}
+\headcommand {\sectionentry {6}{Teorija}{18}{Teorija}{0}}
\defcounter {refsection}{0}\relax
-\headcommand {\slideentry {7}{0}{1}{18/18}{}{0}}
+\headcommand {\beamer@subsectionpages {18}{17}}
\defcounter {refsection}{0}\relax
-\headcommand {\beamer@framepages {18}{18}}
+\headcommand {\beamer@subsectionentry {0}{6}{1}{18}{Od česa je odvisen potisk}}
+\defcounter {refsection}{0}\relax
+\headcommand {\slideentry {6}{1}{1}{18/18}{Od česa je odvisen potisk}{0}}
\defcounter {refsection}{0}\relax
-\headcommand {\beamer@sectionpages {18}{18}}
+\headcommand {\beamer@framepages {18}{18}}
\defcounter {refsection}{0}\relax
\headcommand {\beamer@subsectionpages {18}{18}}
\defcounter {refsection}{0}\relax
-\headcommand {\sectionentry {8}{Viri}{19}{Viri}{0}}
+\headcommand {\beamer@subsectionentry {0}{6}{2}{19}{Izračun teoretičnega potiska iz podatkov iz videoanalize}}
\defcounter {refsection}{0}\relax
-\headcommand {\slideentry {8}{0}{1}{19/19}{}{0}}
+\headcommand {\slideentry {6}{2}{1}{19/19}{Izračun teoretičnega potiska iz podatkov iz videoanalize}{0}}
\defcounter {refsection}{0}\relax
\headcommand {\beamer@framepages {19}{19}}
\defcounter {refsection}{0}\relax
\headcommand {\beamer@subsectionpages {19}{19}}
\defcounter {refsection}{0}\relax
-\headcommand {\beamer@subsectionentry {0}{8}{1}{20}{Licence slik}}
+\headcommand {\beamer@subsectionentry {0}{6}{3}{20}{Graf \color {black}izmerjenega potiska \color {white}in \color {red}teoretične vrednosti iz videoanalize \color {white}(poskus 05312153; $V_0=\SI {0,6}{\liter }$, $P_0=\SI {40}{\kilo \pascal }$)}}
\defcounter {refsection}{0}\relax
-\headcommand {\slideentry {8}{1}{1}{20/20}{Licence slik}{0}}
+\headcommand {\slideentry {6}{3}{1}{20/20}{Graf \color {black}izmerjenega potiska \color {white}in \color {red}teoretične vrednosti iz videoanalize \color {white}(poskus 05312153; $V_0=\SI {0,6}{\liter }$, $P_0=\SI {40}{\kilo \pascal }$)}{0}}
\defcounter {refsection}{0}\relax
\headcommand {\beamer@framepages {20}{20}}
\defcounter {refsection}{0}\relax
-\headcommand {\beamer@sectionpages {19}{20}}
+\headcommand {\beamer@sectionpages {18}{20}}
\defcounter {refsection}{0}\relax
\headcommand {\beamer@subsectionpages {20}{20}}
\defcounter {refsection}{0}\relax
-\headcommand {\sectionentry {9}{Zaključek}{21}{Zaključek}{0}}
+\headcommand {\sectionentry {7}{Razlogi za napake in odstopanja}{21}{Razlogi za napake in odstopanja}{0}}
\defcounter {refsection}{0}\relax
-\headcommand {\slideentry {9}{0}{1}{21/21}{}{0}}
+\headcommand {\slideentry {7}{0}{1}{21/21}{}{0}}
\defcounter {refsection}{0}\relax
\headcommand {\beamer@framepages {21}{21}}
\defcounter {refsection}{0}\relax
+\headcommand {\beamer@sectionpages {21}{21}}
+\defcounter {refsection}{0}\relax
\headcommand {\beamer@subsectionpages {21}{21}}
\defcounter {refsection}{0}\relax
-\headcommand {\beamer@subsectionentry {0}{9}{1}{22}{Razhroščevalne informacije}}
+\headcommand {\sectionentry {8}{Viri}{22}{Viri}{0}}
\defcounter {refsection}{0}\relax
-\headcommand {\slideentry {9}{1}{1}{22/22}{Razhroščevalne informacije}{0}}
+\headcommand {\slideentry {8}{0}{1}{22/22}{}{0}}
\defcounter {refsection}{0}\relax
\headcommand {\beamer@framepages {22}{22}}
-\headcommand {\beamer@partpages {1}{22}}
+\defcounter {refsection}{0}\relax
\headcommand {\beamer@subsectionpages {22}{22}}
-\headcommand {\beamer@sectionpages {21}{22}}
-\headcommand {\beamer@documentpages {22}}
-\headcommand {\gdef \inserttotalframenumber {22}}
+\defcounter {refsection}{0}\relax
+\headcommand {\beamer@subsectionentry {0}{8}{1}{23}{Licence slik}}
+\defcounter {refsection}{0}\relax
+\headcommand {\slideentry {8}{1}{1}{23/23}{Licence slik}{0}}
+\defcounter {refsection}{0}\relax
+\headcommand {\beamer@framepages {23}{23}}
+\defcounter {refsection}{0}\relax
+\headcommand {\beamer@sectionpages {22}{23}}
+\defcounter {refsection}{0}\relax
+\headcommand {\beamer@subsectionpages {23}{23}}
+\defcounter {refsection}{0}\relax
+\headcommand {\sectionentry {9}{Zaključek}{24}{Zaključek}{0}}
+\defcounter {refsection}{0}\relax
+\headcommand {\slideentry {9}{0}{1}{24/24}{}{0}}
+\defcounter {refsection}{0}\relax
+\headcommand {\beamer@framepages {24}{24}}
+\defcounter {refsection}{0}\relax
+\headcommand {\beamer@subsectionpages {24}{24}}
+\defcounter {refsection}{0}\relax
+\headcommand {\beamer@subsectionentry {0}{9}{1}{25}{Razhroščevalne informacije}}
+\defcounter {refsection}{0}\relax
+\headcommand {\slideentry {9}{1}{1}{25/25}{Razhroščevalne informacije}{0}}
+\defcounter {refsection}{0}\relax
+\headcommand {\beamer@framepages {25}{25}}
+\headcommand {\beamer@partpages {1}{25}}
+\headcommand {\beamer@subsectionpages {25}{25}}
+\headcommand {\beamer@sectionpages {24}{25}}
+\headcommand {\beamer@documentpages {25}}
+\headcommand {\gdef \inserttotalframenumber {25}}
diff --git a/fiz/naloga/predstavitev/dokument.out b/fiz/naloga/predstavitev/dokument.out
index 19ebe14..f1c78bc 100644
--- a/fiz/naloga/predstavitev/dokument.out
+++ b/fiz/naloga/predstavitev/dokument.out
@@ -16,10 +16,13 @@
\BOOKMARK [3][]{Outline0.5.7.14}{\376\377\000G\000r\000a\000f\000i\000:\000\040\0003\0000\000\040\000k\000P\000a\000\040\000z\000a\001\015\000e\000t\000n\000e\000g\000a\000\040\000t\000l\000a\000k\000a\000\040\000v\000\040\000p\000l\000a\000s\000t\000e\000n\000k\000i\000\040\040\024\000\040\000p\000o\000t\000i\000s\000k\000,\000\040\001\015\000e\000\040\000o\000d\000m\000i\000s\000l\000i\000m\000o\000\040\000v\000r\000e\000d\000n\000o\000s\000t\000i\000,\000\040\000k\000o\000\040\000n\000i\000\040\000p\000o\000t\000i\000s\000k\000a}{Outline0.5}% 16
\BOOKMARK [3][]{Outline0.5.8.15}{\376\377\000G\000r\000a\000f\000i\000:\000\040\0003\0000\000\040\000k\000P\000a\000\040\000z\000a\001\015\000e\000t\000n\000e\000g\000a\000\040\000t\000l\000a\000k\000a\000\040\000v\000\040\000p\000l\000a\000s\000t\000e\000n\000k\000i\000\040\040\024\000\040\000v\000o\000l\000u\000m\000e\000n\000\040\000v\000o\000d\000e\000\040\000v\000\040\000r\000a\000k\000e\000t\000i\000,\000\040\001\015\000e\000\040\000o\000d\000m\000i\000s\000l\000i\000m\000o\000\040\000v\000r\000e\000d\000n\000o\000s\000t\000i\000,\000\040\000k\000o\000\040\000n\000i\000\040\000p\000o\000t\000i\000s\000k\000a}{Outline0.5}% 17
\BOOKMARK [3][]{Outline0.5.9.16}{\376\377\000R\000e\000z\000u\000l\000t\000a\000t\000i\000\040\000i\000n\000\040\000k\000o\000m\000e\000n\000t\000a\000r\000j\000i\000\040\000n\000a\000n\000j\000e\000\040\000t\000e\000r\000\040\000u\000g\000o\000t\000o\000v\000i\000t\000v\000e}{Outline0.5}% 18
-\BOOKMARK [2][]{Outline0.6}{\376\377\000T\000e\000o\000r\000i\000j\000a}{}% 19
-\BOOKMARK [3][]{Outline0.6.1.17}{\376\377\000O\000d\000\040\001\015\000e\000s\000a\000\040\000j\000e\000\040\000o\000d\000v\000i\000s\000e\000n\000\040\000p\000o\000t\000i\000s\000k}{Outline0.6}% 20
-\BOOKMARK [2][]{Outline0.7}{\376\377\000R\000a\000z\000l\000o\000g\000i\000\040\000z\000a\000\040\000n\000a\000p\000a\000k\000e\000\040\000i\000n\000\040\000o\000d\000s\000t\000o\000p\000a\000n\000j\000a}{}% 21
-\BOOKMARK [2][]{Outline0.8}{\376\377\000V\000i\000r\000i}{}% 22
-\BOOKMARK [3][]{Outline0.8.1.20}{\376\377\000L\000i\000c\000e\000n\000c\000e\000\040\000s\000l\000i\000k}{Outline0.8}% 23
-\BOOKMARK [2][]{Outline0.9}{\376\377\000Z\000a\000k\000l\000j\000u\001\015\000e\000k}{}% 24
-\BOOKMARK [3][]{Outline0.9.1.22}{\376\377\000R\000a\000z\000h\000r\000o\001\141\001\015\000e\000v\000a\000l\000n\000e\000\040\000i\000n\000f\000o\000r\000m\000a\000c\000i\000j\000e}{Outline0.9}% 25
+\BOOKMARK [3][]{Outline0.5.10.17}{\376\377\000G\000r\000a\000f\000\040\000m\000a\000k\000s\000i\000m\000a\000l\000n\000e\000\040\000d\000o\000s\000e\001\176\000e\000n\000e\000\040\000s\000i\000l\000e\000\040\000v\000\040\000o\000d\000v\000i\000s\000n\000o\000s\000t\000i\000\040\000o\000d\000\040\000z\000a\001\015\000e\000t\000n\000e\000g\000a\000\040\000p\000r\000i\000t\000i\000s\000k\000a\000\040\000i\000n\000\040\000z\000a\001\015\000e\000t\000n\000e\000g\000a\000\040\000v\000o\000l\000u\000m\000n\000a}{Outline0.5}% 19
+\BOOKMARK [2][]{Outline0.6}{\376\377\000T\000e\000o\000r\000i\000j\000a}{}% 20
+\BOOKMARK [3][]{Outline0.6.1.18}{\376\377\000O\000d\000\040\001\015\000e\000s\000a\000\040\000j\000e\000\040\000o\000d\000v\000i\000s\000e\000n\000\040\000p\000o\000t\000i\000s\000k}{Outline0.6}% 21
+\BOOKMARK [3][]{Outline0.6.2.19}{\376\377\000I\000z\000r\000a\001\015\000u\000n\000\040\000t\000e\000o\000r\000e\000t\000i\001\015\000n\000e\000g\000a\000\040\000p\000o\000t\000i\000s\000k\000a\000\040\000i\000z\000\040\000p\000o\000d\000a\000t\000k\000o\000v\000\040\000i\000z\000\040\000v\000i\000d\000e\000o\000a\000n\000a\000l\000i\000z\000e}{Outline0.6}% 22
+\BOOKMARK [3][]{Outline0.6.3.20}{\376\377\000G\000r\000a\000f\000\040\000b\000l\000a\000c\000k\000i\000z\000m\000e\000r\000j\000e\000n\000e\000g\000a\000\040\000p\000o\000t\000i\000s\000k\000a\000\040\000w\000h\000i\000t\000e\000i\000n\000\040\000r\000e\000d\000t\000e\000o\000r\000e\000t\000i\001\015\000n\000e\000\040\000v\000r\000e\000d\000n\000o\000s\000t\000i\000\040\000i\000z\000\040\000v\000i\000d\000e\000o\000a\000n\000a\000l\000i\000z\000e\000\040\000w\000h\000i\000t\000e\000\050\000p\000o\000s\000k\000u\000s\000\040\0000\0005\0003\0001\0002\0001\0005\0003\000;\000\040\000V\0000\000=\0000\000,\0006\000\040\000L\000,\000\040\000P\0000\000=\0004\0000\000\040\000k\000P\000a\000\051}{Outline0.6}% 23
+\BOOKMARK [2][]{Outline0.7}{\376\377\000R\000a\000z\000l\000o\000g\000i\000\040\000z\000a\000\040\000n\000a\000p\000a\000k\000e\000\040\000i\000n\000\040\000o\000d\000s\000t\000o\000p\000a\000n\000j\000a}{}% 24
+\BOOKMARK [2][]{Outline0.8}{\376\377\000V\000i\000r\000i}{}% 25
+\BOOKMARK [3][]{Outline0.8.1.23}{\376\377\000L\000i\000c\000e\000n\000c\000e\000\040\000s\000l\000i\000k}{Outline0.8}% 26
+\BOOKMARK [2][]{Outline0.9}{\376\377\000Z\000a\000k\000l\000j\000u\001\015\000e\000k}{}% 27
+\BOOKMARK [3][]{Outline0.9.1.25}{\376\377\000R\000a\000z\000h\000r\000o\001\141\001\015\000e\000v\000a\000l\000n\000e\000\040\000i\000n\000f\000o\000r\000m\000a\000c\000i\000j\000e}{Outline0.9}% 28
diff --git a/fiz/naloga/predstavitev/dokument.pdf b/fiz/naloga/predstavitev/dokument.pdf
index 9c1a5f1..3aabb77 100644
--- a/fiz/naloga/predstavitev/dokument.pdf
+++ b/fiz/naloga/predstavitev/dokument.pdf
Binary files differ
diff --git a/fiz/naloga/predstavitev/dokument.pgf-plot.gnuplot b/fiz/naloga/predstavitev/dokument.pgf-plot.gnuplot
index 1215b79..9d2abf0 100644
--- a/fiz/naloga/predstavitev/dokument.pgf-plot.gnuplot
+++ b/fiz/naloga/predstavitev/dokument.pgf-plot.gnuplot
@@ -1,2 +1,2 @@
set table "dokument.pgf-plot.table"; set format "%.5f"
-set format "%.7e";; set datafile separator ","; plot "../podatki-obdelani/0.9L-3bar-odmislimo.csv"using 1:5 every 1;
+set format "%.7e";; set datafile separator ","; plot "../podatki-video/za-05312153.csv"using ($1*1000-2723):(0.0016*(40000/((1-(0.106+(1000*(0.001459010809*3.14159265*($2-0.055)))))/(1-0.6)))) every 1;
diff --git a/fiz/naloga/predstavitev/dokument.pgf-plot.table b/fiz/naloga/predstavitev/dokument.pgf-plot.table
index 5843e02..b951e05 100644
--- a/fiz/naloga/predstavitev/dokument.pgf-plot.table
+++ b/fiz/naloga/predstavitev/dokument.pgf-plot.table
@@ -1,11 +1,33 @@
-# Curve 0 of 1, 6 points
-# Curve title: ""../podatki-obdelani/0.9L-3bar-odmislimo.csv"using 1:5 every 1"
+# Curve 0 of 1, 28 points
+# Curve title: ""../podatki-video/za-05312153.csv"using ($1*1000-2723):(0.0016*(40000/((1-(0.106+(1000*(0.001459010809*3.14159265*($2-0.055)))))/(1-0.6)))) every 1"
# x y type
-0.0000000e+00 8.0088100e-01 i
-9.1000000e+01 7.7154100e-01 i
-0.0000000e+00 8.9452400e-01 i
-9.1000000e+01 8.5198400e-01 i
-1.8300000e+02 8.1448100e-01 i
-2.7400000e+02 7.5546200e-01 i
+-1.6300000e+02 6.2343922e+01 i
+-1.2300000e+02 6.2334876e+01 i
+-8.3000000e+01 6.1722463e+01 i
+-4.3000000e+01 5.8803334e+01 i
+-3.0000000e+00 5.1099143e+01 i
+3.7000000e+01 4.6350811e+01 i
+7.7000000e+01 4.4373993e+01 i
+1.1700000e+02 4.2556626e+01 i
+1.5700000e+02 4.1276557e+01 i
+1.9700000e+02 3.8364938e+01 i
+2.3700000e+02 3.6886230e+01 i
+2.7700000e+02 3.4922106e+01 i
+3.1700000e+02 3.3795999e+01 i
+3.5700000e+02 3.2568042e+01 i
+3.9700000e+02 3.2403653e+01 i
+4.3700000e+02 3.1339080e+01 i
+4.7700000e+02 3.0058095e+01 i
+5.1700000e+02 2.8607918e+01 i
+5.5700000e+02 2.8347860e+01 i
+5.9700000e+02 2.7956370e+01 i
+6.3700000e+02 2.6992485e+01 i
+6.7700000e+02 2.6876103e+01 i
+7.1700000e+02 2.6643019e+01 i
+7.5700000e+02 2.6530507e+01 i
+7.9700000e+02 2.6643019e+01 i
+8.3700000e+02 2.5342799e+01 i
+8.7700000e+02 2.3976858e+01 i
+9.1700000e+02 2.2729799e+01 i
diff --git a/fiz/naloga/predstavitev/dokument.synctex.gz b/fiz/naloga/predstavitev/dokument.synctex.gz
index 31871bd..f47df70 100644
--- a/fiz/naloga/predstavitev/dokument.synctex.gz
+++ b/fiz/naloga/predstavitev/dokument.synctex.gz
Binary files differ
diff --git a/fiz/naloga/predstavitev/dokument.tex b/fiz/naloga/predstavitev/dokument.tex
index bb850e9..69599b8 100644
--- a/fiz/naloga/predstavitev/dokument.tex
+++ b/fiz/naloga/predstavitev/dokument.tex
@@ -24,6 +24,7 @@
\usepackage[ddMMyyyy]{datetime}
\usepackage{ccicons}
\usepackage{textcomp}
+\usepackage{animate}
\addbibresource{dokument.bib}
\usetheme{Madrid}
\setbeamertemplate{itemize items}[ball]
@@ -84,7 +85,7 @@
\subtitle{Projektna naloga pri fiziki}
\author{Anton Luka Šijanec, 2. a}
\institute{Gimnazija Bežigrad}
-\date{V sredo, 2. junija 2021}
+\date{V petek, 4. junija 2021}
\newcommand\vektor{\overrightarrow}
% \titlegraphic{\includegraphics[width=\textwidth,height=.5\textheight]{img/jangce.jpg}}
@@ -245,19 +246,19 @@
\hline
$t$ & 1. $F$ & 1. $V$ & 2. $F$ & 2. $V$ & 3. $F$ & 3. $V$ & $\overline{F}$ & $\overline{V}$ & n. $F$ & n. $V$ \\
\hline
- 0 & 8,19 & 0,65 & 8,35 & 0,41 & 6,61 & 0,42 & 7,72 & 0,49 & 0,63 & 0,07 \\
- 91 & 17,00 & 0,59 & 16,48 & 0,34 & 15,70 & 0,38 & 16,39 & 0,45 & 0,61 & 0,11 \\
- 182 & 16,54 & 0,50 & 13,46 & 0,27 & 14,00 & 0,31 & 16,67 & 0,36 & 2,67 & 0,14 \\
- 273 & 12,65 & 0,44 & 9,99 & 0,21 & 9,66 & 0,21 & 10,77 & 0,29 & 0,78 & 0,08 \\
- 364 & 10,63 & 0,43 & 7,68 & 0,17 & 7,49 & 0,18 & 8,60 & 0,26 & 1,11 & 0,17 \\
- 455 & 8,62 & 0,36 & 6,04 & 0,12 & 4,51 & 0,00 & 6,39 & 0,16 & 1,88 & 0,16 \\
- 545 & 7,07 & 0,28 & 3,93 & 0,00 & 3,63 & 0,00 & 4,88 & 0,09 & 1,25 & 0,09 \\
- 636 & 6,04 & 0,24 & 3,34 & 0,00 & 3,14 & 0,00 & 4,17 & 0,08 & 1,03 & 0,08 \\
- 727 & 5,11 & 0,19 & 2,94 & 0,00 & 2,75 & 0,00 & 3,60 & 0,06 & 1.51 & 0,06 \\
- 818 & 4,15 & 0,12 & 2,65 & 0,00 & 2,45 & 0,00 & 3,08 & 0,04 & 1,07 & 0,04 \\
- 909 & 2,75 & 0,00 & 2,15 & 0,00 & 2,26 & 0,00 & 2,39 & 0,00 & 0,24 & 0,00 \\
- 999 & 2,06 & 0,00 & 0,88 & 0,00 & 1,47 & 0,00 & 1,47 & 0,00 & $0,59$ & 0,00 \\
- 1090 & 0,97 & 0,00 & 0,00 & 0,00 & 0,00 & 0,00 & 0,32 & 0,00 & 0,32 & 0,00 \\
+ 0 & 8,19 & 0,65 & 8,35 & 0,41 & 6,61 & 0,42 & 7,72 & 0,49 & 1 & 0 \\
+ 91 & 17,00 & 0,59 & 16,48 & 0,34 & 15,70 & 0,38 & 16,39 & 0,45 & 1 & 0 \\
+ 182 & 16,54 & 0,50 & 13,46 & 0,27 & 14,00 & 0,31 & 16,67 & 0,36 & 3 & 0 \\
+ 273 & 12,65 & 0,44 & 9,99 & 0,21 & 9,66 & 0,21 & 10,77 & 0,29 & 1 & 0 \\
+ 364 & 10,63 & 0,43 & 7,68 & 0,17 & 7,49 & 0,18 & 8,60 & 0,26 & 1 & 0 \\
+ 455 & 8,62 & 0,36 & 6,04 & 0,12 & 4,51 & 0,00 & 6,39 & 0,16 & 2 & 0 \\
+ 545 & 7,07 & 0,28 & 3,93 & 0,00 & 3,63 & 0,00 & 4,88 & 0,09 & 1 & 0 \\
+ 636 & 6,04 & 0,24 & 3,34 & 0,00 & 3,14 & 0,00 & 4,17 & 0,08 & 1 & 0 \\
+ 727 & 5,11 & 0,19 & 2,94 & 0,00 & 2,75 & 0,00 & 3,60 & 0,06 & 2 & 0 \\
+ 818 & 4,15 & 0,12 & 2,65 & 0,00 & 2,45 & 0,00 & 3,08 & 0,04 & 1 & 0 \\
+ 909 & 2,75 & 0,00 & 2,15 & 0,00 & 2,26 & 0,00 & 2,39 & 0,00 & 0 & 0 \\
+ 999 & 2,06 & 0,00 & 0,88 & 0,00 & 1,47 & 0,00 & 1,47 & 0,00 & 1 & 0 \\
+ 1090 & 0,97 & 0,00 & 0,00 & 0,00 & 0,00 & 0,00 & 0,32 & 0,00 & 0 & 0 \\
\hline
\end{tabular}
@@ -531,6 +532,37 @@
\end{multicols}
\end{frame}
+\subsection{Graf maksimalne dosežene sile v odvisnosti od začetnega pritiska in začetnega volumna}
+\begin{frame}
+ \frametitle{\secname}
+ \framesubtitle{\subsecname}
+ \begin{tikzpicture}
+ \begin{axis}[xlabel=volumen v litrih, ylabel = sila v njutnih, %hide x axis,
+ /pgf/number format/.cd,
+ width=\textwidth-1cm, height=8cm,
+ use comma, ymajorgrids=true, xmajorgrids=true, grid style=dashed,
+ 1000 sep={}, ytick pos=left]
+ \addplot[only marks,
+ mark options={scale=1}, black] gnuplot [raw gnuplot]{
+ set datafile separator ",";
+ plot "../podatki-obdelani/a.out.csv" using 2:($3==1?$7:3/0);
+ };
+ \addplot[only marks, mark options={scale=1}, red] gnuplot [raw gnuplot] {
+ set datafile separator ",";
+ plot "../podatki-obdelani/a.out.csv" using 2:($3==2?$7:3/0);
+ };
+ \addplot[only marks, mark options={scale=1}, green] gnuplot [raw gnuplot] {
+ set datafile separator ",";
+ plot "../podatki-obdelani/a.out.csv" using 2:($3==3?$7:3/0);
+ };
+ \addplot[only marks, mark options={scale=1}, blue] gnuplot [raw gnuplot] {
+ set datafile separator ",";
+ plot "../podatki-obdelani/a.out.csv" using 2:($3==4?$7:3/0);
+ };
+ \end{axis}
+ \end{tikzpicture}
+\end{frame}
+
\section{Teorija}
\subsection{Od česa je odvisen potisk}
\begin{frame}
@@ -555,6 +587,56 @@
\end{itemize}
\end{frame}
+\subsection{Izračun teoretičnega potiska iz podatkov iz videoanalize}
+\begin{frame}
+ \frametitle{\secname}
+ \framesubtitle{\subsecname}
+ \begin{multicols}{2}
+ \begin{itemize}
+ \item Bojlov zakon --- $p_1V_1=p_2V_2$ --- in definicija paskala --- $\frac{\SI{}{\newton}}{\SI{}{\meter}^2}$
+ \item
+ $$
+ P_\alpha = \frac{P_0}{\frac{\SI{1}{\liter}-V_\alpha}{\SI{1}{\liter}-V_0}}
+ $$
+ \item $F_\alpha=A\cdot P_0$
+ \end{itemize}
+ \begin{figure}[H]
+ \centering
+ \animategraphics[loop,controls,width=\linewidth]{12}{img/genbojl}{0}{19}
+ \caption{Animacija prikaza bojlovega zakona}
+ \end{figure}
+ \end{multicols}
+\end{frame}
+
+\subsection{Graf \color{black}izmerjenega potiska \color{white}in \color{red}teoretične vrednosti iz videoanalize \color{white}(poskus 05312153; $V_0=\SI{0,6}{\liter}$, $P_0=\SI{40}{\kilo\pascal}$)}
+\begin{frame}
+ \frametitle{\secname}
+ \framesubtitle{\subsecname}
+ \begin{tikzpicture}
+ \begin{axis}[xlabel=čas v milisekundah, ylabel = sila v njutnih, %hide x axis,
+ /pgf/number format/.cd,
+ width=\textwidth-1cm, height=8cm,
+ use comma, ymajorgrids=true, xmajorgrids=true, grid style=dashed,
+ 1000 sep={}, ytick pos=left]
+ \addplot[only marks,
+ mark options={scale=1}, black] gnuplot [raw gnuplot]{
+ f(x) = x*a+b;
+ a = 1;
+ b = 1;
+ set datafile separator ",";
+ fit f(x) "../podatki-obdelani/05312153-0.6L-4bar.csv" using 1:4 every 1 via a, b;
+ plot "../podatki-obdelani/05312153-0.6L-4bar.csv" using 1:4 every 1;
+% plot [x=2000:4000] f(x);
+ };
+ \addplot[only marks,
+ mark options={scale=1}, red] gnuplot [raw gnuplot]{
+ set datafile separator ",";
+ plot "../podatki-video/za-05312153.csv" using ($1*1000-2723):(0.0016*(40000/((1-(0.106+(1000*(0.001459010809*3.14159265*($2-0.055)))))/(1-0.6)))) every 1;
+ };
+ \end{axis}
+ \end{tikzpicture}
+\end{frame}
+
\section{Razlogi za napake in odstopanja}
\begin{frame}
\frametitle{\secname}
@@ -566,6 +648,7 @@
\item Raketa ni bila izstreljena navpično
\item Podporni \say{L} nosilec se je ukrivil pod veliko težo
\item Tri meritve ne morejo biti časovno usklajene, saj merilnik ni izmeril vsakič ob isti milisekundi, temveč vsakič z zamikom --- merilnik sile ne pozna časa odprtja rakete
+ \item Turbulentnost toka se s hitrostjo pretoka veča
\end{itemize}
\begin{figure}[H]
\centering
diff --git a/fiz/naloga/predstavitev/dokument.toc b/fiz/naloga/predstavitev/dokument.toc
index ec42fc2..8bac181 100644
--- a/fiz/naloga/predstavitev/dokument.toc
+++ b/fiz/naloga/predstavitev/dokument.toc
@@ -24,12 +24,18 @@
\defcounter {refsection}{0}\relax
\beamer@subsectionintoc {5}{9}{Rezultati in komentarji nanje ter ugotovitve}{16}{0}{5}
\defcounter {refsection}{0}\relax
-\beamer@sectionintoc {6}{Teorija}{17}{0}{6}
+\beamer@subsectionintoc {5}{10}{Graf maksimalne dosežene sile v odvisnosti od začetnega pritiska in začetnega volumna}{17}{0}{5}
\defcounter {refsection}{0}\relax
-\beamer@subsectionintoc {6}{1}{Od česa je odvisen potisk}{17}{0}{6}
+\beamer@sectionintoc {6}{Teorija}{18}{0}{6}
\defcounter {refsection}{0}\relax
-\beamer@sectionintoc {7}{Razlogi za napake in odstopanja}{18}{0}{7}
+\beamer@subsectionintoc {6}{1}{Od česa je odvisen potisk}{18}{0}{6}
\defcounter {refsection}{0}\relax
-\beamer@sectionintoc {8}{Viri}{19}{0}{8}
+\beamer@subsectionintoc {6}{2}{Izračun teoretičnega potiska iz podatkov iz videoanalize}{19}{0}{6}
\defcounter {refsection}{0}\relax
-\beamer@sectionintoc {9}{Zaključek}{21}{0}{9}
+\beamer@subsectionintoc {6}{3}{Graf \color {black}izmerjenega potiska \color {white}in \color {red}teoretične vrednosti iz videoanalize \color {white}(poskus 05312153; $V_0=\SI {0,6}{\liter }$, $P_0=\SI {40}{\kilo \pascal }$)}{20}{0}{6}
+\defcounter {refsection}{0}\relax
+\beamer@sectionintoc {7}{Razlogi za napake in odstopanja}{21}{0}{7}
+\defcounter {refsection}{0}\relax
+\beamer@sectionintoc {8}{Viri}{22}{0}{8}
+\defcounter {refsection}{0}\relax
+\beamer@sectionintoc {9}{Zaključek}{24}{0}{9}
diff --git a/fiz/naloga/predstavitev/fit.log b/fiz/naloga/predstavitev/fit.log
new file mode 100644
index 0000000..bbeb223
--- /dev/null
+++ b/fiz/naloga/predstavitev/fit.log
@@ -0,0 +1,936 @@
+
+
+*******************************************************************************
+Thu Jun 3 20:02:04 2021
+
+
+FIT: data read from "../podatki-obdelani/05312153-0.6L-4bar.csv"using ($1+2723):4 every 1
+ format = x:z
+ #datapoints = 12
+ residuals are weighted equally (unit weight)
+
+function used for fitting: f(x)
+ f(x) = x*a+b
+fitted parameters initialized with current variable values
+
+iter chisq delta/lim lambda a b
+ 0 1.2559443636e+08 0.00e+00 2.29e+03 1.000000e+00 1.000000e+00
+ 7 8.2902763059e+01 -5.18e-01 2.29e-04 -1.176066e-02 4.406340e+01
+
+After 7 iterations the fit converged.
+final sum of squares of residuals : 82.9028
+rel. change during last iteration : -5.1815e-06
+
+degrees of freedom (FIT_NDF) : 10
+rms of residuals (FIT_STDFIT) = sqrt(WSSR/ndf) : 2.87928
+variance of residuals (reduced chisquare) = WSSR/ndf : 8.29028
+
+Final set of parameters Asymptotic Standard Error
+======================= ==========================
+a = -0.0117607 +/- 0.002641 (22.46%)
+b = 44.0634 +/- 8.557 (19.42%)
+
+correlation matrix of the fit parameters:
+ a b
+a 1.000
+b -0.995 1.000
+
+
+*******************************************************************************
+Thu Jun 3 20:04:30 2021
+
+
+FIT: data read from "../podatki-obdelani/05312153-0.6L-4bar.csv"using ($1+2723):4 every 1
+ format = x:z
+ #datapoints = 12
+ residuals are weighted equally (unit weight)
+
+function used for fitting: f(x)
+ f(x) = x*a+b
+fitted parameters initialized with current variable values
+
+iter chisq delta/lim lambda a b
+ 0 1.2559443636e+08 0.00e+00 2.29e+03 1.000000e+00 1.000000e+00
+ 7 8.2902763059e+01 -5.18e-01 2.29e-04 -1.176066e-02 4.406340e+01
+
+After 7 iterations the fit converged.
+final sum of squares of residuals : 82.9028
+rel. change during last iteration : -5.1815e-06
+
+degrees of freedom (FIT_NDF) : 10
+rms of residuals (FIT_STDFIT) = sqrt(WSSR/ndf) : 2.87928
+variance of residuals (reduced chisquare) = WSSR/ndf : 8.29028
+
+Final set of parameters Asymptotic Standard Error
+======================= ==========================
+a = -0.0117607 +/- 0.002641 (22.46%)
+b = 44.0634 +/- 8.557 (19.42%)
+
+correlation matrix of the fit parameters:
+ a b
+a 1.000
+b -0.995 1.000
+
+
+*******************************************************************************
+Thu Jun 3 20:06:25 2021
+
+
+FIT: data read from "../podatki-obdelani/05312153-0.6L-4bar.csv"using ($1+2723):4 every 1
+ format = x:z
+ #datapoints = 12
+ residuals are weighted equally (unit weight)
+
+function used for fitting: f(x)
+ f(x) = x*a+b
+fitted parameters initialized with current variable values
+
+iter chisq delta/lim lambda a b
+ 0 1.2559443636e+08 0.00e+00 2.29e+03 1.000000e+00 1.000000e+00
+ 7 8.2902763059e+01 -5.18e-01 2.29e-04 -1.176066e-02 4.406340e+01
+
+After 7 iterations the fit converged.
+final sum of squares of residuals : 82.9028
+rel. change during last iteration : -5.1815e-06
+
+degrees of freedom (FIT_NDF) : 10
+rms of residuals (FIT_STDFIT) = sqrt(WSSR/ndf) : 2.87928
+variance of residuals (reduced chisquare) = WSSR/ndf : 8.29028
+
+Final set of parameters Asymptotic Standard Error
+======================= ==========================
+a = -0.0117607 +/- 0.002641 (22.46%)
+b = 44.0634 +/- 8.557 (19.42%)
+
+correlation matrix of the fit parameters:
+ a b
+a 1.000
+b -0.995 1.000
+
+
+*******************************************************************************
+Thu Jun 3 20:07:57 2021
+
+
+FIT: data read from "../podatki-obdelani/05312153-0.6L-4bar.csv"using ($1+2723):4 every 1
+ format = x:z
+ #datapoints = 12
+ residuals are weighted equally (unit weight)
+
+function used for fitting: f(x)
+ f(x) = x*a+b
+fitted parameters initialized with current variable values
+
+iter chisq delta/lim lambda a b
+ 0 1.2559443636e+08 0.00e+00 2.29e+03 1.000000e+00 1.000000e+00
+ 7 8.2902763059e+01 -5.18e-01 2.29e-04 -1.176066e-02 4.406340e+01
+
+After 7 iterations the fit converged.
+final sum of squares of residuals : 82.9028
+rel. change during last iteration : -5.1815e-06
+
+degrees of freedom (FIT_NDF) : 10
+rms of residuals (FIT_STDFIT) = sqrt(WSSR/ndf) : 2.87928
+variance of residuals (reduced chisquare) = WSSR/ndf : 8.29028
+
+Final set of parameters Asymptotic Standard Error
+======================= ==========================
+a = -0.0117607 +/- 0.002641 (22.46%)
+b = 44.0634 +/- 8.557 (19.42%)
+
+correlation matrix of the fit parameters:
+ a b
+a 1.000
+b -0.995 1.000
+
+
+*******************************************************************************
+Thu Jun 3 20:08:57 2021
+
+
+FIT: data read from "../podatki-obdelani/05312153-0.6L-4bar.csv"using ($1+2723):4 every 1
+ format = x:z
+ #datapoints = 12
+ residuals are weighted equally (unit weight)
+
+function used for fitting: f(x)
+ f(x) = x*a+b
+fitted parameters initialized with current variable values
+
+iter chisq delta/lim lambda a b
+ 0 1.2559443636e+08 0.00e+00 2.29e+03 1.000000e+00 1.000000e+00
+ 7 8.2902763059e+01 -5.18e-01 2.29e-04 -1.176066e-02 4.406340e+01
+
+After 7 iterations the fit converged.
+final sum of squares of residuals : 82.9028
+rel. change during last iteration : -5.1815e-06
+
+degrees of freedom (FIT_NDF) : 10
+rms of residuals (FIT_STDFIT) = sqrt(WSSR/ndf) : 2.87928
+variance of residuals (reduced chisquare) = WSSR/ndf : 8.29028
+
+Final set of parameters Asymptotic Standard Error
+======================= ==========================
+a = -0.0117607 +/- 0.002641 (22.46%)
+b = 44.0634 +/- 8.557 (19.42%)
+
+correlation matrix of the fit parameters:
+ a b
+a 1.000
+b -0.995 1.000
+
+
+*******************************************************************************
+Thu Jun 3 20:10:58 2021
+
+
+FIT: data read from "../podatki-obdelani/05312153-0.6L-4bar.csv"using ($1+2723):4 every 1
+ format = x:z
+ #datapoints = 12
+ residuals are weighted equally (unit weight)
+
+function used for fitting: f(x)
+ f(x) = x*a+b
+fitted parameters initialized with current variable values
+
+iter chisq delta/lim lambda a b
+ 0 1.2559443636e+08 0.00e+00 2.29e+03 1.000000e+00 1.000000e+00
+ 7 8.2902763059e+01 -5.18e-01 2.29e-04 -1.176066e-02 4.406340e+01
+
+After 7 iterations the fit converged.
+final sum of squares of residuals : 82.9028
+rel. change during last iteration : -5.1815e-06
+
+degrees of freedom (FIT_NDF) : 10
+rms of residuals (FIT_STDFIT) = sqrt(WSSR/ndf) : 2.87928
+variance of residuals (reduced chisquare) = WSSR/ndf : 8.29028
+
+Final set of parameters Asymptotic Standard Error
+======================= ==========================
+a = -0.0117607 +/- 0.002641 (22.46%)
+b = 44.0634 +/- 8.557 (19.42%)
+
+correlation matrix of the fit parameters:
+ a b
+a 1.000
+b -0.995 1.000
+
+
+*******************************************************************************
+Thu Jun 3 20:16:19 2021
+
+
+FIT: data read from "../podatki-obdelani/05312153-0.6L-4bar.csv"using ($1+2723):4 every 1
+ format = x:z
+ #datapoints = 12
+ residuals are weighted equally (unit weight)
+
+function used for fitting: f(x)
+ f(x) = x*a+b
+fitted parameters initialized with current variable values
+
+iter chisq delta/lim lambda a b
+ 0 1.2559443636e+08 0.00e+00 2.29e+03 1.000000e+00 1.000000e+00
+ 7 8.2902763059e+01 -5.18e-01 2.29e-04 -1.176066e-02 4.406340e+01
+
+After 7 iterations the fit converged.
+final sum of squares of residuals : 82.9028
+rel. change during last iteration : -5.1815e-06
+
+degrees of freedom (FIT_NDF) : 10
+rms of residuals (FIT_STDFIT) = sqrt(WSSR/ndf) : 2.87928
+variance of residuals (reduced chisquare) = WSSR/ndf : 8.29028
+
+Final set of parameters Asymptotic Standard Error
+======================= ==========================
+a = -0.0117607 +/- 0.002641 (22.46%)
+b = 44.0634 +/- 8.557 (19.42%)
+
+correlation matrix of the fit parameters:
+ a b
+a 1.000
+b -0.995 1.000
+
+
+*******************************************************************************
+Thu Jun 3 20:29:34 2021
+
+
+FIT: data read from "../podatki-obdelani/05312153-0.6L-4bar.csv"using 1:4 every 1
+ format = x:z
+ #datapoints = 12
+ residuals are weighted equally (unit weight)
+
+function used for fitting: f(x)
+ f(x) = x*a+b
+fitted parameters initialized with current variable values
+
+iter chisq delta/lim lambda a b
+ 0 4.1741359989e+06 0.00e+00 4.19e+02 1.000000e+00 1.000000e+00
+ 6 8.2902763059e+01 -2.25e-04 4.19e-04 -1.176066e-02 1.203914e+01
+
+After 6 iterations the fit converged.
+final sum of squares of residuals : 82.9028
+rel. change during last iteration : -2.25301e-09
+
+degrees of freedom (FIT_NDF) : 10
+rms of residuals (FIT_STDFIT) = sqrt(WSSR/ndf) : 2.87928
+variance of residuals (reduced chisquare) = WSSR/ndf : 8.29028
+
+Final set of parameters Asymptotic Standard Error
+======================= ==========================
+a = -0.0117607 +/- 0.002641 (22.46%)
+b = 12.0391 +/- 1.564 (12.99%)
+
+correlation matrix of the fit parameters:
+ a b
+a 1.000
+b -0.847 1.000
+
+
+*******************************************************************************
+Thu Jun 3 20:39:42 2021
+
+
+FIT: data read from "../podatki-obdelani/05312153-0.6L-4bar.csv"using 1:4 every 1
+ format = x:z
+ #datapoints = 12
+ residuals are weighted equally (unit weight)
+
+function used for fitting: f(x)
+ f(x) = x*a+b
+fitted parameters initialized with current variable values
+
+iter chisq delta/lim lambda a b
+ 0 4.1741359989e+06 0.00e+00 4.19e+02 1.000000e+00 1.000000e+00
+ 6 8.2902763059e+01 -2.25e-04 4.19e-04 -1.176066e-02 1.203914e+01
+
+After 6 iterations the fit converged.
+final sum of squares of residuals : 82.9028
+rel. change during last iteration : -2.25301e-09
+
+degrees of freedom (FIT_NDF) : 10
+rms of residuals (FIT_STDFIT) = sqrt(WSSR/ndf) : 2.87928
+variance of residuals (reduced chisquare) = WSSR/ndf : 8.29028
+
+Final set of parameters Asymptotic Standard Error
+======================= ==========================
+a = -0.0117607 +/- 0.002641 (22.46%)
+b = 12.0391 +/- 1.564 (12.99%)
+
+correlation matrix of the fit parameters:
+ a b
+a 1.000
+b -0.847 1.000
+
+
+*******************************************************************************
+Thu Jun 3 20:40:43 2021
+
+
+FIT: data read from "../podatki-obdelani/05312153-0.6L-4bar.csv"using 1:4 every 1
+ format = x:z
+ #datapoints = 12
+ residuals are weighted equally (unit weight)
+
+function used for fitting: f(x)
+ f(x) = x*a+b
+fitted parameters initialized with current variable values
+
+iter chisq delta/lim lambda a b
+ 0 4.1741359989e+06 0.00e+00 4.19e+02 1.000000e+00 1.000000e+00
+ 6 8.2902763059e+01 -2.25e-04 4.19e-04 -1.176066e-02 1.203914e+01
+
+After 6 iterations the fit converged.
+final sum of squares of residuals : 82.9028
+rel. change during last iteration : -2.25301e-09
+
+degrees of freedom (FIT_NDF) : 10
+rms of residuals (FIT_STDFIT) = sqrt(WSSR/ndf) : 2.87928
+variance of residuals (reduced chisquare) = WSSR/ndf : 8.29028
+
+Final set of parameters Asymptotic Standard Error
+======================= ==========================
+a = -0.0117607 +/- 0.002641 (22.46%)
+b = 12.0391 +/- 1.564 (12.99%)
+
+correlation matrix of the fit parameters:
+ a b
+a 1.000
+b -0.847 1.000
+
+
+*******************************************************************************
+Thu Jun 3 20:43:20 2021
+
+
+FIT: data read from "../podatki-obdelani/05312153-0.6L-4bar.csv"using 1:4 every 1
+ format = x:z
+ #datapoints = 12
+ residuals are weighted equally (unit weight)
+
+function used for fitting: f(x)
+ f(x) = x*a+b
+fitted parameters initialized with current variable values
+
+iter chisq delta/lim lambda a b
+ 0 4.1741359989e+06 0.00e+00 4.19e+02 1.000000e+00 1.000000e+00
+ 6 8.2902763059e+01 -2.25e-04 4.19e-04 -1.176066e-02 1.203914e+01
+
+After 6 iterations the fit converged.
+final sum of squares of residuals : 82.9028
+rel. change during last iteration : -2.25301e-09
+
+degrees of freedom (FIT_NDF) : 10
+rms of residuals (FIT_STDFIT) = sqrt(WSSR/ndf) : 2.87928
+variance of residuals (reduced chisquare) = WSSR/ndf : 8.29028
+
+Final set of parameters Asymptotic Standard Error
+======================= ==========================
+a = -0.0117607 +/- 0.002641 (22.46%)
+b = 12.0391 +/- 1.564 (12.99%)
+
+correlation matrix of the fit parameters:
+ a b
+a 1.000
+b -0.847 1.000
+
+
+*******************************************************************************
+Thu Jun 3 20:44:27 2021
+
+
+FIT: data read from "../podatki-obdelani/05312153-0.6L-4bar.csv"using 1:4 every 1
+ format = x:z
+ #datapoints = 12
+ residuals are weighted equally (unit weight)
+
+function used for fitting: f(x)
+ f(x) = x*a+b
+fitted parameters initialized with current variable values
+
+iter chisq delta/lim lambda a b
+ 0 4.1741359989e+06 0.00e+00 4.19e+02 1.000000e+00 1.000000e+00
+ 6 8.2902763059e+01 -2.25e-04 4.19e-04 -1.176066e-02 1.203914e+01
+
+After 6 iterations the fit converged.
+final sum of squares of residuals : 82.9028
+rel. change during last iteration : -2.25301e-09
+
+degrees of freedom (FIT_NDF) : 10
+rms of residuals (FIT_STDFIT) = sqrt(WSSR/ndf) : 2.87928
+variance of residuals (reduced chisquare) = WSSR/ndf : 8.29028
+
+Final set of parameters Asymptotic Standard Error
+======================= ==========================
+a = -0.0117607 +/- 0.002641 (22.46%)
+b = 12.0391 +/- 1.564 (12.99%)
+
+correlation matrix of the fit parameters:
+ a b
+a 1.000
+b -0.847 1.000
+
+
+*******************************************************************************
+Thu Jun 3 20:45:22 2021
+
+
+FIT: data read from "../podatki-obdelani/05312153-0.6L-4bar.csv"using 1:4 every 1
+ format = x:z
+ #datapoints = 12
+ residuals are weighted equally (unit weight)
+
+function used for fitting: f(x)
+ f(x) = x*a+b
+fitted parameters initialized with current variable values
+
+iter chisq delta/lim lambda a b
+ 0 4.1741359989e+06 0.00e+00 4.19e+02 1.000000e+00 1.000000e+00
+ 6 8.2902763059e+01 -2.25e-04 4.19e-04 -1.176066e-02 1.203914e+01
+
+After 6 iterations the fit converged.
+final sum of squares of residuals : 82.9028
+rel. change during last iteration : -2.25301e-09
+
+degrees of freedom (FIT_NDF) : 10
+rms of residuals (FIT_STDFIT) = sqrt(WSSR/ndf) : 2.87928
+variance of residuals (reduced chisquare) = WSSR/ndf : 8.29028
+
+Final set of parameters Asymptotic Standard Error
+======================= ==========================
+a = -0.0117607 +/- 0.002641 (22.46%)
+b = 12.0391 +/- 1.564 (12.99%)
+
+correlation matrix of the fit parameters:
+ a b
+a 1.000
+b -0.847 1.000
+
+
+*******************************************************************************
+Thu Jun 3 20:46:15 2021
+
+
+FIT: data read from "../podatki-obdelani/05312153-0.6L-4bar.csv"using 1:4 every 1
+ format = x:z
+ #datapoints = 12
+ residuals are weighted equally (unit weight)
+
+function used for fitting: f(x)
+ f(x) = x*a+b
+fitted parameters initialized with current variable values
+
+iter chisq delta/lim lambda a b
+ 0 4.1741359989e+06 0.00e+00 4.19e+02 1.000000e+00 1.000000e+00
+ 6 8.2902763059e+01 -2.25e-04 4.19e-04 -1.176066e-02 1.203914e+01
+
+After 6 iterations the fit converged.
+final sum of squares of residuals : 82.9028
+rel. change during last iteration : -2.25301e-09
+
+degrees of freedom (FIT_NDF) : 10
+rms of residuals (FIT_STDFIT) = sqrt(WSSR/ndf) : 2.87928
+variance of residuals (reduced chisquare) = WSSR/ndf : 8.29028
+
+Final set of parameters Asymptotic Standard Error
+======================= ==========================
+a = -0.0117607 +/- 0.002641 (22.46%)
+b = 12.0391 +/- 1.564 (12.99%)
+
+correlation matrix of the fit parameters:
+ a b
+a 1.000
+b -0.847 1.000
+
+
+*******************************************************************************
+Thu Jun 3 20:46:38 2021
+
+
+FIT: data read from "../podatki-obdelani/05312153-0.6L-4bar.csv"using 1:4 every 1
+ format = x:z
+ #datapoints = 12
+ residuals are weighted equally (unit weight)
+
+function used for fitting: f(x)
+ f(x) = x*a+b
+fitted parameters initialized with current variable values
+
+iter chisq delta/lim lambda a b
+ 0 4.1741359989e+06 0.00e+00 4.19e+02 1.000000e+00 1.000000e+00
+ 6 8.2902763059e+01 -2.25e-04 4.19e-04 -1.176066e-02 1.203914e+01
+
+After 6 iterations the fit converged.
+final sum of squares of residuals : 82.9028
+rel. change during last iteration : -2.25301e-09
+
+degrees of freedom (FIT_NDF) : 10
+rms of residuals (FIT_STDFIT) = sqrt(WSSR/ndf) : 2.87928
+variance of residuals (reduced chisquare) = WSSR/ndf : 8.29028
+
+Final set of parameters Asymptotic Standard Error
+======================= ==========================
+a = -0.0117607 +/- 0.002641 (22.46%)
+b = 12.0391 +/- 1.564 (12.99%)
+
+correlation matrix of the fit parameters:
+ a b
+a 1.000
+b -0.847 1.000
+
+
+*******************************************************************************
+Thu Jun 3 20:50:06 2021
+
+
+FIT: data read from "../podatki-obdelani/05312153-0.6L-4bar.csv"using 1:4 every 1
+ format = x:z
+ #datapoints = 12
+ residuals are weighted equally (unit weight)
+
+function used for fitting: f(x)
+ f(x) = x*a+b
+fitted parameters initialized with current variable values
+
+iter chisq delta/lim lambda a b
+ 0 4.1741359989e+06 0.00e+00 4.19e+02 1.000000e+00 1.000000e+00
+ 6 8.2902763059e+01 -2.25e-04 4.19e-04 -1.176066e-02 1.203914e+01
+
+After 6 iterations the fit converged.
+final sum of squares of residuals : 82.9028
+rel. change during last iteration : -2.25301e-09
+
+degrees of freedom (FIT_NDF) : 10
+rms of residuals (FIT_STDFIT) = sqrt(WSSR/ndf) : 2.87928
+variance of residuals (reduced chisquare) = WSSR/ndf : 8.29028
+
+Final set of parameters Asymptotic Standard Error
+======================= ==========================
+a = -0.0117607 +/- 0.002641 (22.46%)
+b = 12.0391 +/- 1.564 (12.99%)
+
+correlation matrix of the fit parameters:
+ a b
+a 1.000
+b -0.847 1.000
+
+
+*******************************************************************************
+Thu Jun 3 21:00:16 2021
+
+
+FIT: data read from "../podatki-obdelani/05312153-0.6L-4bar.csv"using 1:4 every 1
+ format = x:z
+ #datapoints = 12
+ residuals are weighted equally (unit weight)
+
+function used for fitting: f(x)
+ f(x) = x*a+b
+fitted parameters initialized with current variable values
+
+iter chisq delta/lim lambda a b
+ 0 4.1741359989e+06 0.00e+00 4.19e+02 1.000000e+00 1.000000e+00
+ 6 8.2902763059e+01 -2.25e-04 4.19e-04 -1.176066e-02 1.203914e+01
+
+After 6 iterations the fit converged.
+final sum of squares of residuals : 82.9028
+rel. change during last iteration : -2.25301e-09
+
+degrees of freedom (FIT_NDF) : 10
+rms of residuals (FIT_STDFIT) = sqrt(WSSR/ndf) : 2.87928
+variance of residuals (reduced chisquare) = WSSR/ndf : 8.29028
+
+Final set of parameters Asymptotic Standard Error
+======================= ==========================
+a = -0.0117607 +/- 0.002641 (22.46%)
+b = 12.0391 +/- 1.564 (12.99%)
+
+correlation matrix of the fit parameters:
+ a b
+a 1.000
+b -0.847 1.000
+
+
+*******************************************************************************
+Thu Jun 3 21:01:26 2021
+
+
+FIT: data read from "../podatki-obdelani/05312153-0.6L-4bar.csv"using 1:4 every 1
+ format = x:z
+ #datapoints = 12
+ residuals are weighted equally (unit weight)
+
+function used for fitting: f(x)
+ f(x) = x*a+b
+fitted parameters initialized with current variable values
+
+iter chisq delta/lim lambda a b
+ 0 4.1741359989e+06 0.00e+00 4.19e+02 1.000000e+00 1.000000e+00
+ 6 8.2902763059e+01 -2.25e-04 4.19e-04 -1.176066e-02 1.203914e+01
+
+After 6 iterations the fit converged.
+final sum of squares of residuals : 82.9028
+rel. change during last iteration : -2.25301e-09
+
+degrees of freedom (FIT_NDF) : 10
+rms of residuals (FIT_STDFIT) = sqrt(WSSR/ndf) : 2.87928
+variance of residuals (reduced chisquare) = WSSR/ndf : 8.29028
+
+Final set of parameters Asymptotic Standard Error
+======================= ==========================
+a = -0.0117607 +/- 0.002641 (22.46%)
+b = 12.0391 +/- 1.564 (12.99%)
+
+correlation matrix of the fit parameters:
+ a b
+a 1.000
+b -0.847 1.000
+
+
+*******************************************************************************
+Thu Jun 3 21:02:18 2021
+
+
+FIT: data read from "../podatki-obdelani/05312153-0.6L-4bar.csv"using 1:4 every 1
+ format = x:z
+ #datapoints = 12
+ residuals are weighted equally (unit weight)
+
+function used for fitting: f(x)
+ f(x) = x*a+b
+fitted parameters initialized with current variable values
+
+iter chisq delta/lim lambda a b
+ 0 4.1741359989e+06 0.00e+00 4.19e+02 1.000000e+00 1.000000e+00
+ 6 8.2902763059e+01 -2.25e-04 4.19e-04 -1.176066e-02 1.203914e+01
+
+After 6 iterations the fit converged.
+final sum of squares of residuals : 82.9028
+rel. change during last iteration : -2.25301e-09
+
+degrees of freedom (FIT_NDF) : 10
+rms of residuals (FIT_STDFIT) = sqrt(WSSR/ndf) : 2.87928
+variance of residuals (reduced chisquare) = WSSR/ndf : 8.29028
+
+Final set of parameters Asymptotic Standard Error
+======================= ==========================
+a = -0.0117607 +/- 0.002641 (22.46%)
+b = 12.0391 +/- 1.564 (12.99%)
+
+correlation matrix of the fit parameters:
+ a b
+a 1.000
+b -0.847 1.000
+
+
+*******************************************************************************
+Thu Jun 3 21:03:00 2021
+
+
+FIT: data read from "../podatki-obdelani/05312153-0.6L-4bar.csv"using 1:4 every 1
+ format = x:z
+ #datapoints = 12
+ residuals are weighted equally (unit weight)
+
+function used for fitting: f(x)
+ f(x) = x*a+b
+fitted parameters initialized with current variable values
+
+iter chisq delta/lim lambda a b
+ 0 4.1741359989e+06 0.00e+00 4.19e+02 1.000000e+00 1.000000e+00
+ 6 8.2902763059e+01 -2.25e-04 4.19e-04 -1.176066e-02 1.203914e+01
+
+After 6 iterations the fit converged.
+final sum of squares of residuals : 82.9028
+rel. change during last iteration : -2.25301e-09
+
+degrees of freedom (FIT_NDF) : 10
+rms of residuals (FIT_STDFIT) = sqrt(WSSR/ndf) : 2.87928
+variance of residuals (reduced chisquare) = WSSR/ndf : 8.29028
+
+Final set of parameters Asymptotic Standard Error
+======================= ==========================
+a = -0.0117607 +/- 0.002641 (22.46%)
+b = 12.0391 +/- 1.564 (12.99%)
+
+correlation matrix of the fit parameters:
+ a b
+a 1.000
+b -0.847 1.000
+
+
+*******************************************************************************
+Thu Jun 3 21:04:01 2021
+
+
+FIT: data read from "../podatki-obdelani/05312153-0.6L-4bar.csv"using 1:4 every 1
+ format = x:z
+ #datapoints = 12
+ residuals are weighted equally (unit weight)
+
+function used for fitting: f(x)
+ f(x) = x*a+b
+fitted parameters initialized with current variable values
+
+iter chisq delta/lim lambda a b
+ 0 4.1741359989e+06 0.00e+00 4.19e+02 1.000000e+00 1.000000e+00
+ 6 8.2902763059e+01 -2.25e-04 4.19e-04 -1.176066e-02 1.203914e+01
+
+After 6 iterations the fit converged.
+final sum of squares of residuals : 82.9028
+rel. change during last iteration : -2.25301e-09
+
+degrees of freedom (FIT_NDF) : 10
+rms of residuals (FIT_STDFIT) = sqrt(WSSR/ndf) : 2.87928
+variance of residuals (reduced chisquare) = WSSR/ndf : 8.29028
+
+Final set of parameters Asymptotic Standard Error
+======================= ==========================
+a = -0.0117607 +/- 0.002641 (22.46%)
+b = 12.0391 +/- 1.564 (12.99%)
+
+correlation matrix of the fit parameters:
+ a b
+a 1.000
+b -0.847 1.000
+
+
+*******************************************************************************
+Thu Jun 3 21:05:44 2021
+
+
+FIT: data read from "../podatki-obdelani/05312153-0.6L-4bar.csv"using 1:4 every 1
+ format = x:z
+ #datapoints = 12
+ residuals are weighted equally (unit weight)
+
+function used for fitting: f(x)
+ f(x) = x*a+b
+fitted parameters initialized with current variable values
+
+iter chisq delta/lim lambda a b
+ 0 4.1741359989e+06 0.00e+00 4.19e+02 1.000000e+00 1.000000e+00
+ 6 8.2902763059e+01 -2.25e-04 4.19e-04 -1.176066e-02 1.203914e+01
+
+After 6 iterations the fit converged.
+final sum of squares of residuals : 82.9028
+rel. change during last iteration : -2.25301e-09
+
+degrees of freedom (FIT_NDF) : 10
+rms of residuals (FIT_STDFIT) = sqrt(WSSR/ndf) : 2.87928
+variance of residuals (reduced chisquare) = WSSR/ndf : 8.29028
+
+Final set of parameters Asymptotic Standard Error
+======================= ==========================
+a = -0.0117607 +/- 0.002641 (22.46%)
+b = 12.0391 +/- 1.564 (12.99%)
+
+correlation matrix of the fit parameters:
+ a b
+a 1.000
+b -0.847 1.000
+
+
+*******************************************************************************
+Thu Jun 3 21:06:39 2021
+
+
+FIT: data read from "../podatki-obdelani/05312153-0.6L-4bar.csv"using 1:4 every 1
+ format = x:z
+ #datapoints = 12
+ residuals are weighted equally (unit weight)
+
+function used for fitting: f(x)
+ f(x) = x*a+b
+fitted parameters initialized with current variable values
+
+iter chisq delta/lim lambda a b
+ 0 4.1741359989e+06 0.00e+00 4.19e+02 1.000000e+00 1.000000e+00
+ 6 8.2902763059e+01 -2.25e-04 4.19e-04 -1.176066e-02 1.203914e+01
+
+After 6 iterations the fit converged.
+final sum of squares of residuals : 82.9028
+rel. change during last iteration : -2.25301e-09
+
+degrees of freedom (FIT_NDF) : 10
+rms of residuals (FIT_STDFIT) = sqrt(WSSR/ndf) : 2.87928
+variance of residuals (reduced chisquare) = WSSR/ndf : 8.29028
+
+Final set of parameters Asymptotic Standard Error
+======================= ==========================
+a = -0.0117607 +/- 0.002641 (22.46%)
+b = 12.0391 +/- 1.564 (12.99%)
+
+correlation matrix of the fit parameters:
+ a b
+a 1.000
+b -0.847 1.000
+
+
+*******************************************************************************
+Thu Jun 3 21:07:41 2021
+
+
+FIT: data read from "../podatki-obdelani/05312153-0.6L-4bar.csv"using 1:4 every 1
+ format = x:z
+ #datapoints = 12
+ residuals are weighted equally (unit weight)
+
+function used for fitting: f(x)
+ f(x) = x*a+b
+fitted parameters initialized with current variable values
+
+iter chisq delta/lim lambda a b
+ 0 4.1741359989e+06 0.00e+00 4.19e+02 1.000000e+00 1.000000e+00
+ 6 8.2902763059e+01 -2.25e-04 4.19e-04 -1.176066e-02 1.203914e+01
+
+After 6 iterations the fit converged.
+final sum of squares of residuals : 82.9028
+rel. change during last iteration : -2.25301e-09
+
+degrees of freedom (FIT_NDF) : 10
+rms of residuals (FIT_STDFIT) = sqrt(WSSR/ndf) : 2.87928
+variance of residuals (reduced chisquare) = WSSR/ndf : 8.29028
+
+Final set of parameters Asymptotic Standard Error
+======================= ==========================
+a = -0.0117607 +/- 0.002641 (22.46%)
+b = 12.0391 +/- 1.564 (12.99%)
+
+correlation matrix of the fit parameters:
+ a b
+a 1.000
+b -0.847 1.000
+
+
+*******************************************************************************
+Thu Jun 3 21:09:20 2021
+
+
+FIT: data read from "../podatki-obdelani/05312153-0.6L-4bar.csv"using 1:4 every 1
+ format = x:z
+ #datapoints = 12
+ residuals are weighted equally (unit weight)
+
+function used for fitting: f(x)
+ f(x) = x*a+b
+fitted parameters initialized with current variable values
+
+iter chisq delta/lim lambda a b
+ 0 4.1741359989e+06 0.00e+00 4.19e+02 1.000000e+00 1.000000e+00
+ 6 8.2902763059e+01 -2.25e-04 4.19e-04 -1.176066e-02 1.203914e+01
+
+After 6 iterations the fit converged.
+final sum of squares of residuals : 82.9028
+rel. change during last iteration : -2.25301e-09
+
+degrees of freedom (FIT_NDF) : 10
+rms of residuals (FIT_STDFIT) = sqrt(WSSR/ndf) : 2.87928
+variance of residuals (reduced chisquare) = WSSR/ndf : 8.29028
+
+Final set of parameters Asymptotic Standard Error
+======================= ==========================
+a = -0.0117607 +/- 0.002641 (22.46%)
+b = 12.0391 +/- 1.564 (12.99%)
+
+correlation matrix of the fit parameters:
+ a b
+a 1.000
+b -0.847 1.000
+
+
+*******************************************************************************
+Thu Jun 3 21:12:15 2021
+
+
+FIT: data read from "../podatki-obdelani/05312153-0.6L-4bar.csv"using 1:4 every 1
+ format = x:z
+ #datapoints = 12
+ residuals are weighted equally (unit weight)
+
+function used for fitting: f(x)
+ f(x) = x*a+b
+fitted parameters initialized with current variable values
+
+iter chisq delta/lim lambda a b
+ 0 4.1741359989e+06 0.00e+00 4.19e+02 1.000000e+00 1.000000e+00
+ 6 8.2902763059e+01 -2.25e-04 4.19e-04 -1.176066e-02 1.203914e+01
+
+After 6 iterations the fit converged.
+final sum of squares of residuals : 82.9028
+rel. change during last iteration : -2.25301e-09
+
+degrees of freedom (FIT_NDF) : 10
+rms of residuals (FIT_STDFIT) = sqrt(WSSR/ndf) : 2.87928
+variance of residuals (reduced chisquare) = WSSR/ndf : 8.29028
+
+Final set of parameters Asymptotic Standard Error
+======================= ==========================
+a = -0.0117607 +/- 0.002641 (22.46%)
+b = 12.0391 +/- 1.564 (12.99%)
+
+correlation matrix of the fit parameters:
+ a b
+a 1.000
+b -0.847 1.000
diff --git a/fiz/naloga/predstavitev/stderr.log b/fiz/naloga/predstavitev/stderr.log
index d5a6f94..fbfe20b 100644
--- a/fiz/naloga/predstavitev/stderr.log
+++ b/fiz/naloga/predstavitev/stderr.log
@@ -6,4 +6,33 @@ system returned with code 256
system returned with code 256
system returned with code 256
Warning: empty y range [0:0], adjusting to [-1:1]
-<</Type/XRef/Filter/FlateDecode/ID[<AAF5C9B17FD6FE771C0F1E89F2F3D7DA><AAF5C9B17FD6FE771C0F1E89F2F3D7DA>]/Index[ 0 839]/Info 837 0 R/Length 1948/Root 836 0 R/Size 839/W[ 1 4 1]>>
+system returned with code 256
+system returned with code 256
+iter chisq delta/lim lambda a b
+ 0 4.1741359989e+06 0.00e+00 4.19e+02 1.000000e+00 1.000000e+00
+ 1 7.1738887847e+03 -5.81e+07 4.19e+01 4.387174e-02 9.988457e-01
+ 2 4.9446274611e+02 -1.35e+06 4.19e+00 4.019160e-03 1.020093e+00
+ 3 3.7190486150e+02 -3.30e+04 4.19e-01 1.448637e-03 2.805380e+00
+ 4 8.3601704088e+01 -3.45e+05 4.19e-02 -1.111105e-02 1.158504e+01
+ 5 8.2902763246e+01 -8.43e+02 4.19e-03 -1.176032e-02 1.203890e+01
+ 6 8.2902763059e+01 -2.25e-04 4.19e-04 -1.176066e-02 1.203914e+01
+iter chisq delta/lim lambda a b
+
+After 6 iterations the fit converged.
+final sum of squares of residuals : 82.9028
+rel. change during last iteration : -2.25301e-09
+
+degrees of freedom (FIT_NDF) : 10
+rms of residuals (FIT_STDFIT) = sqrt(WSSR/ndf) : 2.87928
+variance of residuals (reduced chisquare) = WSSR/ndf : 8.29028
+
+Final set of parameters Asymptotic Standard Error
+======================= ==========================
+a = -0.0117607 +/- 0.002641 (22.46%)
+b = 12.0391 +/- 1.564 (12.99%)
+
+correlation matrix of the fit parameters:
+ a b
+a 1.000
+b -0.847 1.000
+<</Type/XRef/Filter/FlateDecode/ID[<846705F994CB83538A0396488234D361><846705F994CB83538A0396488234D361>]/Index[ 0 1144]/Info 1142 0 R/Length 2816/Root 1141 0 R/Size 1144/W[ 1 4 1]>>
diff --git a/fiz/naloga/predstavitev/stdout.log b/fiz/naloga/predstavitev/stdout.log
index ee05e22..3343afb 100644
--- a/fiz/naloga/predstavitev/stdout.log
+++ b/fiz/naloga/predstavitev/stdout.log
@@ -366,6 +366,12 @@ l.560 \if@dt@nodate
(/usr/local/texlive/2021/texmf-dist/tex/latex/datetime/dt-slovene.def))
(/usr/local/texlive/2021/texmf-dist/tex/latex/ccicons/ccicons.sty)
(/usr/local/texlive/2021/texmf-dist/tex/latex/base/textcomp.sty)
+(/usr/local/texlive/2021/texmf-dist/tex/latex/animate/animate.sty
+(/usr/local/texlive/2021/texmf-dist/tex/latex/oberdiek/ifdraft.sty)
+(/usr/local/texlive/2021/texmf-dist/tex/latex/zref/zref-abspage.sty
+(/usr/local/texlive/2021/texmf-dist/tex/latex/zref/zref-base.sty))
+(/usr/local/texlive/2021/texmf-dist/tex/latex/media9/pdfbase.sty)
+(/usr/local/texlive/2021/texmf-dist/tex/latex/ocgx2/ocgbase.sty))
(/usr/local/texlive/2021/texmf-dist/tex/latex/beamer/beamerthemeMadrid.sty
(/usr/local/texlive/2021/texmf-dist/tex/latex/beamer/beamercolorthemewhale.sty)
@@ -412,7 +418,7 @@ tionary-English.dict)
Package pgfplots Warning: running in backwards compatibility mode (unsuitable t
ick labels; missing features). Consider writing \pgfplotsset{compat=1.17} into
your preamble.
- on input line 92.
+ on input line 93.
(/usr/local/texlive/2021/texmf-dist/tex/latex/siunitx/siunitx-abbreviations.cfg
@@ -429,33 +435,33 @@ Package biblatex Warning: File 'slovene-iso.lbx' not found!
(/usr/local/texlive/2021/texmf-dist/tex/latex/sansmathaccent/ot1mathkerncmss.fd
) [1{/usr/local/texlive/2021/texmf-var/fonts/map/pdftex/updmap/pdftex.map}]
(./dokument.toc) [2]
-Overfull \hbox (5.0pt too wide) in paragraph at lines 122--122
+Overfull \hbox (5.0pt too wide) in paragraph at lines 123--123
[]
[3 <../tekst/img-tracked/navoji.jpg>]
-Overfull \hbox (5.0pt too wide) in paragraph at lines 146--146
+Overfull \hbox (5.0pt too wide) in paragraph at lines 147--147
[]
[4 <./merilniki.jpg>]
-Overfull \hbox (5.0pt too wide) in paragraph at lines 171--171
+Overfull \hbox (5.0pt too wide) in paragraph at lines 172--172
[]
[5 <../tekst/img-tracked/rampa.jpg>]
-Overfull \hbox (5.0pt too wide) in paragraph at lines 196--196
+Overfull \hbox (5.0pt too wide) in paragraph at lines 197--197
[]
-Overfull \vbox (57.94856pt too high) detected at line 196
+Overfull \vbox (57.94856pt too high) detected at line 197
[6 <./totem.jpg>]
-Overfull \hbox (1.17192pt too wide) detected at line 236
+Overfull \hbox (1.17192pt too wide) detected at line 237
\OT1/mathkerncmss/m/sl/10.95 f\OT1/cmss/m/n/10.95 (\OT1/mathkerncmss/m/sl/10.95
x\OT1/cmss/m/n/10.95 ) = []
LaTeX Font Warning: Font shape `OMS/cmss/m/n' undefined
(Font) using `OMS/cmsy/m/n' instead
-(Font) for symbol `textbraceleft' on input line 236.
+(Font) for symbol `textbraceleft' on input line 237.
-Overfull \hbox (5.0pt too wide) in paragraph at lines 236--236
+Overfull \hbox (5.0pt too wide) in paragraph at lines 237--237
[]
-Overfull \vbox (60.48602pt too high) detected at line 236
+Overfull \vbox (60.48602pt too high) detected at line 237
[7 <./špric.jpg>] [8]This is pdfTeX, Version 3.141592653-2.6-1.40.22 (TeX Live 2021) (preloaded format=pdflatex)
\write18 enabled.
entering extended mode
@@ -477,7 +483,7 @@ See the tikz package documentation for explanation.
Type H <return> for immediate help.
...
-l.303 \end{frame}
+l.304 \end{frame}
[9]This is pdfTeX, Version 3.141592653-2.6-1.40.22 (TeX Live 2021) (preloaded format=pdflatex)
\write18 enabled.
@@ -500,7 +506,7 @@ See the tikz package documentation for explanation.
Type H <return> for immediate help.
...
-l.339 \end{frame}
+l.340 \end{frame}
[10]This is pdfTeX, Version 3.141592653-2.6-1.40.22 (TeX Live 2021) (preloaded format=pdflatex)
\write18 enabled.
@@ -523,7 +529,7 @@ See the tikz package documentation for explanation.
Type H <return> for immediate help.
...
-l.373 \end{frame}
+l.374 \end{frame}
[11]This is pdfTeX, Version 3.141592653-2.6-1.40.22 (TeX Live 2021) (preloaded format=pdflatex)
\write18 enabled.
@@ -546,7 +552,7 @@ See the tikz package documentation for explanation.
Type H <return> for immediate help.
...
-l.409 \end{frame}
+l.410 \end{frame}
[12]This is pdfTeX, Version 3.141592653-2.6-1.40.22 (TeX Live 2021) (preloaded format=pdflatex)
\write18 enabled.
@@ -569,7 +575,7 @@ See the tikz package documentation for explanation.
Type H <return> for immediate help.
...
-l.445 \end{frame}
+l.446 \end{frame}
[13]This is pdfTeX, Version 3.141592653-2.6-1.40.22 (TeX Live 2021) (preloaded format=pdflatex)
\write18 enabled.
@@ -592,7 +598,7 @@ See the tikz package documentation for explanation.
Type H <return> for immediate help.
...
-l.474 \end{frame}
+l.475 \end{frame}
[14]This is pdfTeX, Version 3.141592653-2.6-1.40.22 (TeX Live 2021) (preloaded format=pdflatex)
\write18 enabled.
@@ -615,20 +621,111 @@ See the tikz package documentation for explanation.
Type H <return> for immediate help.
...
-l.503 \end{frame}
+l.504 \end{frame}
-Overfull \vbox (8.21541pt too high) detected at line 503
+Overfull \vbox (8.21541pt too high) detected at line 504
[15]
-Overfull \hbox (5.0pt too wide) in paragraph at lines 532--532
+Overfull \hbox (5.0pt too wide) in paragraph at lines 533--533
[]
-Overfull \vbox (76.64851pt too high) detected at line 532
-[16 <./kompresor.jpg>] [17]
+Overfull \vbox (76.64851pt too high) detected at line 533
+[16 <./kompresor.jpg>]This is pdfTeX, Version 3.141592653-2.6-1.40.22 (TeX Live 2021) (preloaded format=pdflatex)
+ \write18 enabled.
+entering extended mode
+
+===== 'mode=convert with system call': Invoking 'pdflatex -shell-escape -halt-o
+n-error -interaction=batchmode -jobname "dokument-figure7" "\def\tikzexternalre
+aljob{dokument}\input{dokument}"' ========
+
+! Package tikz Error: Sorry, the system call 'pdflatex -shell-escape -halt-on-e
+rror -interaction=batchmode -jobname "dokument-figure7" "\def\tikzexternalrealj
+ob{dokument}\input{dokument}"' did NOT result in a usable output file 'dokument
+-figure7' (expected one of .pdf:.jpg:.jpeg:.png:). Please verify that you have
+enabled system calls. For pdflatex, this is 'pdflatex -shell-escape'. Sometimes
+ it is also named 'write 18' or something like that. Or maybe the command simpl
+y failed? Error messages can be found in 'dokument-figure7.log'. If you continu
+e now, I'll try to typeset the picture.
+
+See the tikz package documentation for explanation.
+Type H <return> for immediate help.
+ ...
+
+l.564 \end{frame}
+
+[17] [18] <./img/genbojl0.png> <a0,fr0> <./img/genbojl1.png> <a0,fr1> <./img/ge
+nbojl2.png> <a0,fr2> <./img/genbojl3.png> <a0,fr3> <./img/genbojl4.png>
+<a0,fr4> <./img/genbojl5.png> <a0,fr5> <./img/genbojl6.png> <a0,fr6> <./img/gen
+bojl7.png> <a0,fr7> <./img/genbojl8.png> <a0,fr8> <./img/genbojl9.png>
+<a0,fr9> <./img/genbojl10.png> <a0,fr10> <a0,fr11> <a0,fr12> <a0,fr13>
+<a0,fr14> <a0,fr15> <a0,fr16> <a0,fr17> <a0,fr18> <a0,fr19> [19]This is pdfTeX, Version 3.141592653-2.6-1.40.22 (TeX Live 2021) (preloaded format=pdflatex)
+ \write18 enabled.
+entering extended mode
+
+
+Package hyperref Warning: Token not allowed in a PDF string (Unicode):
+(hyperref) removing `\color' on input line 611.
+
+
+Package hyperref Warning: Token not allowed in a PDF string (Unicode):
+(hyperref) removing `\color' on input line 611.
+
+
+Package hyperref Warning: Token not allowed in a PDF string (Unicode):
+(hyperref) removing `\color' on input line 611.
+
+
+Package hyperref Warning: Token not allowed in a PDF string (Unicode):
+(hyperref) removing `\color' on input line 611.
+
+
+Package hyperref Warning: Token not allowed in a PDF string (Unicode):
+(hyperref) removing `math shift' on input line 611.
+
+
+Package hyperref Warning: Token not allowed in a PDF string (Unicode):
+(hyperref) removing `subscript' on input line 611.
+
+
+Package hyperref Warning: Token not allowed in a PDF string (Unicode):
+(hyperref) removing `math shift' on input line 611.
+
+
+Package hyperref Warning: Token not allowed in a PDF string (Unicode):
+(hyperref) removing `math shift' on input line 611.
+
+
+Package hyperref Warning: Token not allowed in a PDF string (Unicode):
+(hyperref) removing `subscript' on input line 611.
+
+
+Package hyperref Warning: Token not allowed in a PDF string (Unicode):
+(hyperref) removing `math shift' on input line 611.
+
+===== 'mode=convert with system call': Invoking 'pdflatex -shell-escape -halt-o
+n-error -interaction=batchmode -jobname "dokument-figure8" "\def\tikzexternalre
+aljob{dokument}\input{dokument}"' ========
+
+! Package tikz Error: Sorry, the system call 'pdflatex -shell-escape -halt-on-e
+rror -interaction=batchmode -jobname "dokument-figure8" "\def\tikzexternalrealj
+ob{dokument}\input{dokument}"' did NOT result in a usable output file 'dokument
+-figure8' (expected one of .pdf:.jpg:.jpeg:.png:). Please verify that you have
+enabled system calls. For pdflatex, this is 'pdflatex -shell-escape'. Sometimes
+ it is also named 'write 18' or something like that. Or maybe the command simpl
+y failed? Error messages can be found in 'dokument-figure8.log'. If you continu
+e now, I'll try to typeset the picture.
+
+See the tikz package documentation for explanation.
+Type H <return> for immediate help.
+ ...
+
+l.638 \end{frame}
+
+[20]
! Undefined control sequence.
\beamer@doifinframe ...pično \item Podporni \say
{L} nosilec se je ukrivil ...
-l.576 \end{frame}
+l.659 \end{frame}
! Package xkeyval Error: `align' undefined in families `Gin'.
@@ -637,14 +734,14 @@ See the xkeyval package documentation for explanation.
Type H <return> for immediate help.
...
-l.576 \end{frame}
+l.659 \end{frame}
-Overfull \hbox (5.0pt too wide) in paragraph at lines 576--576
+Overfull \hbox (5.0pt too wide) in paragraph at lines 659--659
[]
-[18 <./dozirka.jpg>] [19]
-(/usr/local/texlive/2021/texmf-dist/tex/latex/base/ts1cmss.fd) [20] [21]
-[22] (./dokument.aux)
+[21 <./dozirka.jpg>] [22]
+(/usr/local/texlive/2021/texmf-dist/tex/latex/base/ts1cmss.fd) [23] [24]
+[25] (./dokument.aux)
LaTeX Font Warning: Some font shapes were not available, defaults substituted.
@@ -669,7 +766,7 @@ pe1/public/amsfonts/cm/cmsy8.pfb></usr/local/texlive/2021/texmf-dist/fonts/type
1/public/amsfonts/cm/cmtt10.pfb></usr/local/texlive/2021/texmf-dist/fonts/type1
/public/amsfonts/cm/cmtt9.pfb></usr/local/texlive/2021/texmf-dist/fonts/type1/p
ublic/cm-super/sfss1095.pfb>
-Output written on dokument.pdf (22 pages, 20729980 bytes).
+Output written on dokument.pdf (25 pages, 20850405 bytes).
SyncTeX written on dokument.synctex.gz.
Transcript written on dokument.log.
Reading 1 0 R
@@ -777,46 +874,46 @@ Reading 109 0 R
Reading 110 0 R
Reading 111 0 R
Reading 112 0 R
+Reading 113 0 R
Reading 114 0 R
--> Uncompressing object 114 0
--> Original Length: 15
--> Uncompressed Length: 7
Reading 115 0 R
Reading 116 0 R
--> Uncompressing object 116 0
--> Original Length: 15
--> Uncompressed Length: 7
Reading 117 0 R
Reading 118 0 R
--> Uncompressing object 118 0
--> Original Length: 15
--> Uncompressed Length: 7
Reading 119 0 R
Reading 120 0 R
--> Uncompressing object 120 0
--> Original Length: 15
--> Uncompressed Length: 7
Reading 121 0 R
Reading 122 0 R
--> Uncompressing object 122 0
--> Original Length: 182
--> Uncompressed Length: 636
Reading 123 0 R
--> Uncompressing object 123 0
--> Original Length: 29
--> Uncompressed Length: 27
Reading 124 0 R
-Reading 125 0 R
Reading 126 0 R
+-> Uncompressing object 126 0
+-> Original Length: 15
+-> Uncompressed Length: 7
Reading 127 0 R
Reading 128 0 R
+-> Uncompressing object 128 0
+-> Original Length: 15
+-> Uncompressed Length: 7
Reading 129 0 R
Reading 130 0 R
+-> Uncompressing object 130 0
+-> Original Length: 15
+-> Uncompressed Length: 7
Reading 131 0 R
Reading 132 0 R
+-> Uncompressing object 132 0
+-> Original Length: 15
+-> Uncompressed Length: 7
Reading 133 0 R
Reading 134 0 R
+-> Uncompressing object 134 0
+-> Original Length: 182
+-> Uncompressed Length: 636
Reading 135 0 R
+-> Uncompressing object 135 0
+-> Original Length: 29
+-> Uncompressed Length: 27
Reading 136 0 R
Reading 137 0 R
Reading 138 0 R
@@ -830,9 +927,6 @@ Reading 145 0 R
Reading 146 0 R
Reading 147 0 R
Reading 148 0 R
--> Uncompressing object 148 0
--> Original Length: 1343
--> Uncompressed Length: 5770
Reading 149 0 R
Reading 150 0 R
Reading 151 0 R
@@ -844,16 +938,13 @@ Reading 156 0 R
Reading 157 0 R
Reading 158 0 R
Reading 159 0 R
--> Uncompressing object 159 0
--> Original Length: 15
--> Uncompressed Length: 7
Reading 160 0 R
Reading 161 0 R
+-> Uncompressing object 161 0
+-> Original Length: 1352
+-> Uncompressed Length: 5780
Reading 162 0 R
Reading 163 0 R
--> Uncompressing object 163 0
--> Original Length: 15
--> Uncompressed Length: 7
Reading 164 0 R
Reading 165 0 R
Reading 166 0 R
@@ -863,10 +954,16 @@ Reading 169 0 R
Reading 170 0 R
Reading 171 0 R
Reading 172 0 R
+-> Uncompressing object 172 0
+-> Original Length: 15
+-> Uncompressed Length: 7
Reading 173 0 R
Reading 174 0 R
Reading 175 0 R
Reading 176 0 R
+-> Uncompressing object 176 0
+-> Original Length: 15
+-> Uncompressed Length: 7
Reading 177 0 R
Reading 178 0 R
Reading 179 0 R
@@ -893,9 +990,6 @@ Reading 199 0 R
Reading 200 0 R
Reading 201 0 R
Reading 202 0 R
--> Uncompressing object 202 0
--> Original Length: 2134
--> Uncompressed Length: 12132
Reading 203 0 R
Reading 204 0 R
Reading 205 0 R
@@ -903,6 +997,7 @@ Reading 206 0 R
Reading 207 0 R
Reading 208 0 R
Reading 209 0 R
+Reading 210 0 R
Reading 211 0 R
Reading 212 0 R
Reading 213 0 R
@@ -912,11 +1007,11 @@ Reading 216 0 R
Reading 217 0 R
Reading 218 0 R
Reading 219 0 R
+-> Uncompressing object 219 0
+-> Original Length: 2451
+-> Uncompressed Length: 13484
Reading 220 0 R
Reading 221 0 R
--> Uncompressing object 221 0
--> Original Length: 2727301
--> Uncompressed Length: 23887872
Reading 222 0 R
Reading 223 0 R
Reading 224 0 R
@@ -928,7 +1023,6 @@ Reading 229 0 R
Reading 230 0 R
Reading 231 0 R
Reading 232 0 R
-Reading 233 0 R
Reading 234 0 R
Reading 235 0 R
Reading 236 0 R
@@ -941,14 +1035,11 @@ Reading 242 0 R
Reading 243 0 R
Reading 244 0 R
Reading 245 0 R
--> Uncompressing object 245 0
--> Original Length: 1467
--> Uncompressed Length: 6339
Reading 246 0 R
Reading 247 0 R
-> Uncompressing object 247 0
--> Original Length: 8815928
--> Uncompressed Length: 16826994
+-> Original Length: 2727301
+-> Uncompressed Length: 23887872
Reading 248 0 R
Reading 249 0 R
Reading 250 0 R
@@ -973,15 +1064,15 @@ Reading 268 0 R
Reading 269 0 R
Reading 270 0 R
Reading 271 0 R
--> Uncompressing object 271 0
--> Original Length: 1669
--> Uncompressed Length: 7149
Reading 272 0 R
+-> Uncompressing object 272 0
+-> Original Length: 1475
+-> Uncompressed Length: 6344
Reading 273 0 R
Reading 274 0 R
-> Uncompressing object 274 0
--> Original Length: 2780406
--> Uncompressed Length: 23887872
+-> Original Length: 8815928
+-> Uncompressed Length: 16826994
Reading 275 0 R
Reading 276 0 R
Reading 277 0 R
@@ -1006,18 +1097,19 @@ Reading 295 0 R
Reading 296 0 R
Reading 297 0 R
Reading 298 0 R
--> Uncompressing object 298 0
--> Original Length: 2306
--> Uncompressed Length: 11320
Reading 299 0 R
+-> Uncompressing object 299 0
+-> Original Length: 1678
+-> Uncompressed Length: 7154
Reading 300 0 R
Reading 301 0 R
Reading 302 0 R
+-> Uncompressing object 302 0
+-> Original Length: 2780406
+-> Uncompressed Length: 23887872
Reading 303 0 R
+Reading 304 0 R
Reading 305 0 R
--> Uncompressing object 305 0
--> Original Length: 835501
--> Uncompressed Length: 7498440
Reading 306 0 R
Reading 307 0 R
Reading 308 0 R
@@ -1040,19 +1132,18 @@ Reading 324 0 R
Reading 325 0 R
Reading 326 0 R
Reading 327 0 R
+-> Uncompressing object 327 0
+-> Original Length: 2308
+-> Uncompressed Length: 11322
Reading 328 0 R
Reading 329 0 R
--> Uncompressing object 329 0
--> Original Length: 2146
--> Uncompressed Length: 9565
Reading 330 0 R
Reading 331 0 R
-Reading 332 0 R
Reading 333 0 R
+-> Uncompressing object 333 0
+-> Original Length: 835501
+-> Uncompressed Length: 7498440
Reading 334 0 R
--> Uncompressing object 334 0
--> Original Length: 887149
--> Uncompressed Length: 8430768
Reading 335 0 R
Reading 336 0 R
Reading 337 0 R
@@ -1078,13 +1169,16 @@ Reading 356 0 R
Reading 357 0 R
Reading 358 0 R
-> Uncompressing object 358 0
--> Original Length: 2265
--> Uncompressed Length: 11079
+-> Original Length: 2155
+-> Uncompressed Length: 9570
Reading 359 0 R
Reading 360 0 R
Reading 361 0 R
Reading 362 0 R
Reading 363 0 R
+-> Uncompressing object 363 0
+-> Original Length: 887149
+-> Uncompressed Length: 8430768
Reading 364 0 R
Reading 365 0 R
Reading 366 0 R
@@ -1107,12 +1201,12 @@ Reading 382 0 R
Reading 383 0 R
Reading 384 0 R
Reading 385 0 R
--> Uncompressing object 385 0
--> Original Length: 2788
--> Uncompressed Length: 17817
Reading 386 0 R
Reading 387 0 R
Reading 388 0 R
+-> Uncompressing object 388 0
+-> Original Length: 2272
+-> Uncompressed Length: 11084
Reading 389 0 R
Reading 390 0 R
Reading 391 0 R
@@ -1137,16 +1231,16 @@ Reading 409 0 R
Reading 410 0 R
Reading 411 0 R
Reading 412 0 R
--> Uncompressing object 412 0
--> Original Length: 15860
--> Uncompressed Length: 65028
Reading 413 0 R
Reading 414 0 R
+Reading 415 0 R
Reading 416 0 R
+-> Uncompressing object 416 0
+-> Original Length: 2713
+-> Uncompressed Length: 17654
Reading 417 0 R
Reading 418 0 R
Reading 419 0 R
-Reading 420 0 R
Reading 421 0 R
Reading 422 0 R
Reading 423 0 R
@@ -1166,15 +1260,15 @@ Reading 436 0 R
Reading 437 0 R
Reading 438 0 R
Reading 439 0 R
--> Uncompressing object 439 0
--> Original Length: 10009
--> Uncompressed Length: 38511
Reading 440 0 R
Reading 441 0 R
Reading 442 0 R
Reading 443 0 R
Reading 444 0 R
Reading 445 0 R
+-> Uncompressing object 445 0
+-> Original Length: 15869
+-> Uncompressed Length: 65033
Reading 446 0 R
Reading 447 0 R
Reading 448 0 R
@@ -1195,9 +1289,6 @@ Reading 462 0 R
Reading 463 0 R
Reading 464 0 R
Reading 465 0 R
--> Uncompressing object 465 0
--> Original Length: 18543
--> Uncompressed Length: 67491
Reading 466 0 R
Reading 467 0 R
Reading 468 0 R
@@ -1205,6 +1296,9 @@ Reading 469 0 R
Reading 470 0 R
Reading 471 0 R
Reading 472 0 R
+-> Uncompressing object 472 0
+-> Original Length: 10014
+-> Uncompressed Length: 38516
Reading 473 0 R
Reading 474 0 R
Reading 475 0 R
@@ -1225,9 +1319,6 @@ Reading 489 0 R
Reading 490 0 R
Reading 491 0 R
Reading 492 0 R
--> Uncompressing object 492 0
--> Original Length: 17061
--> Uncompressed Length: 61650
Reading 493 0 R
Reading 494 0 R
Reading 495 0 R
@@ -1235,6 +1326,9 @@ Reading 496 0 R
Reading 497 0 R
Reading 498 0 R
Reading 499 0 R
+-> Uncompressing object 499 0
+-> Original Length: 18552
+-> Uncompressed Length: 67496
Reading 500 0 R
Reading 501 0 R
Reading 502 0 R
@@ -1254,20 +1348,20 @@ Reading 515 0 R
Reading 516 0 R
Reading 517 0 R
Reading 518 0 R
--> Uncompressing object 518 0
--> Original Length: 7896
--> Uncompressed Length: 31420
Reading 519 0 R
Reading 520 0 R
Reading 521 0 R
+Reading 522 0 R
Reading 523 0 R
Reading 524 0 R
Reading 525 0 R
Reading 526 0 R
Reading 527 0 R
+-> Uncompressing object 527 0
+-> Original Length: 17067
+-> Uncompressed Length: 61655
Reading 528 0 R
Reading 529 0 R
-Reading 530 0 R
Reading 531 0 R
Reading 532 0 R
Reading 533 0 R
@@ -1284,9 +1378,6 @@ Reading 543 0 R
Reading 544 0 R
Reading 545 0 R
Reading 546 0 R
--> Uncompressing object 546 0
--> Original Length: 7578
--> Uncompressed Length: 30957
Reading 547 0 R
Reading 548 0 R
Reading 549 0 R
@@ -1296,6 +1387,9 @@ Reading 552 0 R
Reading 553 0 R
Reading 554 0 R
Reading 555 0 R
+-> Uncompressing object 555 0
+-> Original Length: 7900
+-> Uncompressed Length: 31425
Reading 556 0 R
Reading 557 0 R
Reading 558 0 R
@@ -1313,14 +1407,8 @@ Reading 569 0 R
Reading 570 0 R
Reading 571 0 R
Reading 572 0 R
--> Uncompressing object 572 0
--> Original Length: 6273
--> Uncompressed Length: 29619
Reading 573 0 R
Reading 574 0 R
--> Uncompressing object 574 0
--> Original Length: 556779
--> Uncompressed Length: 5281650
Reading 575 0 R
Reading 576 0 R
Reading 577 0 R
@@ -1330,6 +1418,9 @@ Reading 580 0 R
Reading 581 0 R
Reading 582 0 R
Reading 583 0 R
+-> Uncompressing object 583 0
+-> Original Length: 7588
+-> Uncompressed Length: 30962
Reading 584 0 R
Reading 585 0 R
Reading 586 0 R
@@ -1345,9 +1436,6 @@ Reading 595 0 R
Reading 596 0 R
Reading 597 0 R
Reading 598 0 R
--> Uncompressing object 598 0
--> Original Length: 1603
--> Uncompressed Length: 6966
Reading 599 0 R
Reading 600 0 R
Reading 601 0 R
@@ -1360,8 +1448,14 @@ Reading 607 0 R
Reading 608 0 R
Reading 609 0 R
Reading 610 0 R
+-> Uncompressing object 610 0
+-> Original Length: 6283
+-> Uncompressed Length: 29624
Reading 611 0 R
Reading 612 0 R
+-> Uncompressing object 612 0
+-> Original Length: 556779
+-> Uncompressed Length: 5281650
Reading 613 0 R
Reading 614 0 R
Reading 615 0 R
@@ -1373,14 +1467,9 @@ Reading 620 0 R
Reading 621 0 R
Reading 622 0 R
Reading 623 0 R
--> Uncompressing object 623 0
--> Original Length: 2354
--> Uncompressed Length: 10000
Reading 624 0 R
+Reading 625 0 R
Reading 626 0 R
--> Uncompressing object 626 0
--> Original Length: 3831285
--> Uncompressed Length: 23887872
Reading 627 0 R
Reading 628 0 R
Reading 629 0 R
@@ -1392,8 +1481,10 @@ Reading 634 0 R
Reading 635 0 R
Reading 636 0 R
Reading 637 0 R
+-> Uncompressing object 637 0
+-> Original Length: 1612
+-> Uncompressed Length: 6971
Reading 638 0 R
-Reading 639 0 R
Reading 640 0 R
Reading 641 0 R
Reading 642 0 R
@@ -1405,9 +1496,6 @@ Reading 647 0 R
Reading 648 0 R
Reading 649 0 R
Reading 650 0 R
--> Uncompressing object 650 0
--> Original Length: 1720
--> Uncompressed Length: 7334
Reading 651 0 R
Reading 652 0 R
Reading 653 0 R
@@ -1422,6 +1510,9 @@ Reading 661 0 R
Reading 662 0 R
Reading 663 0 R
Reading 664 0 R
+-> Uncompressing object 664 0
+-> Original Length: 4870
+-> Uncompressed Length: 23550
Reading 665 0 R
Reading 666 0 R
Reading 667 0 R
@@ -1434,9 +1525,6 @@ Reading 673 0 R
Reading 674 0 R
Reading 675 0 R
Reading 676 0 R
--> Uncompressing object 676 0
--> Original Length: 1179
--> Uncompressed Length: 5087
Reading 677 0 R
Reading 678 0 R
Reading 679 0 R
@@ -1451,218 +1539,796 @@ Reading 687 0 R
Reading 688 0 R
Reading 689 0 R
Reading 690 0 R
+-> Uncompressing object 690 0
+-> Original Length: 2359
+-> Uncompressed Length: 10005
Reading 691 0 R
Reading 692 0 R
+-> Uncompressing object 692 0
+-> Original Length: 6645
+-> Uncompressed Length: 214396
Reading 693 0 R
+-> Uncompressing object 693 0
+-> Original Length: 35
+-> Uncompressed Length: 32
Reading 694 0 R
+-> Uncompressing object 694 0
+-> Original Length: 41
+-> Uncompressed Length: 54
Reading 695 0 R
+-> Uncompressing object 695 0
+-> Original Length: 30
+-> Uncompressed Length: 28
Reading 696 0 R
Reading 697 0 R
Reading 698 0 R
Reading 699 0 R
+-> Uncompressing object 699 0
+-> Original Length: 194
+-> Uncompressed Length: 198
Reading 700 0 R
Reading 701 0 R
+-> Uncompressing object 701 0
+-> Original Length: 6775
+-> Uncompressed Length: 214396
Reading 702 0 R
+-> Uncompressing object 702 0
+-> Original Length: 35
+-> Uncompressed Length: 32
Reading 703 0 R
+-> Uncompressing object 703 0
+-> Original Length: 42
+-> Uncompressed Length: 55
Reading 704 0 R
-> Uncompressing object 704 0
--> Original Length: 1125
--> Uncompressed Length: 5158
+-> Original Length: 30
+-> Uncompressed Length: 28
Reading 705 0 R
Reading 706 0 R
+Reading 707 0 R
Reading 708 0 R
+-> Uncompressing object 708 0
+-> Original Length: 194
+-> Uncompressed Length: 198
Reading 709 0 R
Reading 710 0 R
+-> Uncompressing object 710 0
+-> Original Length: 6952
+-> Uncompressed Length: 214396
Reading 711 0 R
+-> Uncompressing object 711 0
+-> Original Length: 35
+-> Uncompressed Length: 32
Reading 712 0 R
+-> Uncompressing object 712 0
+-> Original Length: 42
+-> Uncompressed Length: 55
Reading 713 0 R
+-> Uncompressing object 713 0
+-> Original Length: 30
+-> Uncompressed Length: 28
Reading 714 0 R
Reading 715 0 R
Reading 716 0 R
Reading 717 0 R
+-> Uncompressing object 717 0
+-> Original Length: 194
+-> Uncompressed Length: 198
Reading 718 0 R
Reading 719 0 R
+-> Uncompressing object 719 0
+-> Original Length: 7017
+-> Uncompressed Length: 214396
Reading 720 0 R
+-> Uncompressing object 720 0
+-> Original Length: 35
+-> Uncompressed Length: 32
Reading 721 0 R
+-> Uncompressing object 721 0
+-> Original Length: 42
+-> Uncompressed Length: 55
Reading 722 0 R
+-> Uncompressing object 722 0
+-> Original Length: 30
+-> Uncompressed Length: 28
Reading 723 0 R
Reading 724 0 R
Reading 725 0 R
Reading 726 0 R
+-> Uncompressing object 726 0
+-> Original Length: 194
+-> Uncompressed Length: 198
Reading 727 0 R
Reading 728 0 R
+-> Uncompressing object 728 0
+-> Original Length: 7117
+-> Uncompressed Length: 214396
Reading 729 0 R
+-> Uncompressing object 729 0
+-> Original Length: 35
+-> Uncompressed Length: 32
Reading 730 0 R
+-> Uncompressing object 730 0
+-> Original Length: 42
+-> Uncompressed Length: 55
Reading 731 0 R
+-> Uncompressing object 731 0
+-> Original Length: 30
+-> Uncompressed Length: 28
Reading 732 0 R
Reading 733 0 R
--> Uncompressing object 733 0
--> Original Length: 1560
--> Uncompressed Length: 6212
Reading 734 0 R
Reading 735 0 R
+-> Uncompressing object 735 0
+-> Original Length: 194
+-> Uncompressed Length: 198
Reading 736 0 R
Reading 737 0 R
+-> Uncompressing object 737 0
+-> Original Length: 7191
+-> Uncompressed Length: 214396
Reading 738 0 R
+-> Uncompressing object 738 0
+-> Original Length: 35
+-> Uncompressed Length: 32
Reading 739 0 R
+-> Uncompressing object 739 0
+-> Original Length: 42
+-> Uncompressed Length: 55
Reading 740 0 R
+-> Uncompressing object 740 0
+-> Original Length: 30
+-> Uncompressed Length: 28
Reading 741 0 R
Reading 742 0 R
Reading 743 0 R
Reading 744 0 R
+-> Uncompressing object 744 0
+-> Original Length: 193
+-> Uncompressed Length: 198
Reading 745 0 R
Reading 746 0 R
+-> Uncompressing object 746 0
+-> Original Length: 7230
+-> Uncompressed Length: 214396
Reading 747 0 R
+-> Uncompressing object 747 0
+-> Original Length: 35
+-> Uncompressed Length: 32
Reading 748 0 R
+-> Uncompressing object 748 0
+-> Original Length: 42
+-> Uncompressed Length: 55
Reading 749 0 R
+-> Uncompressing object 749 0
+-> Original Length: 30
+-> Uncompressed Length: 28
Reading 750 0 R
Reading 751 0 R
Reading 752 0 R
Reading 753 0 R
-Reading 754 0 R
+-> Uncompressing object 753 0
+-> Original Length: 193
+-> Uncompressed Length: 198
Reading 755 0 R
Reading 756 0 R
+-> Uncompressing object 756 0
+-> Original Length: 7284
+-> Uncompressed Length: 214396
Reading 757 0 R
+-> Uncompressing object 757 0
+-> Original Length: 35
+-> Uncompressed Length: 32
Reading 758 0 R
+-> Uncompressing object 758 0
+-> Original Length: 42
+-> Uncompressed Length: 55
Reading 759 0 R
-> Uncompressing object 759 0
--> Original Length: 1427
--> Uncompressed Length: 6036
+-> Original Length: 30
+-> Uncompressed Length: 28
Reading 760 0 R
Reading 761 0 R
Reading 762 0 R
Reading 763 0 R
+-> Uncompressing object 763 0
+-> Original Length: 194
+-> Uncompressed Length: 198
Reading 764 0 R
Reading 765 0 R
+-> Uncompressing object 765 0
+-> Original Length: 7288
+-> Uncompressed Length: 214396
Reading 766 0 R
+-> Uncompressing object 766 0
+-> Original Length: 35
+-> Uncompressed Length: 32
Reading 767 0 R
+-> Uncompressing object 767 0
+-> Original Length: 42
+-> Uncompressed Length: 55
Reading 768 0 R
+-> Uncompressing object 768 0
+-> Original Length: 30
+-> Uncompressed Length: 28
Reading 769 0 R
Reading 770 0 R
Reading 771 0 R
Reading 772 0 R
+-> Uncompressing object 772 0
+-> Original Length: 193
+-> Uncompressed Length: 198
Reading 773 0 R
Reading 774 0 R
+-> Uncompressing object 774 0
+-> Original Length: 7424
+-> Uncompressed Length: 214396
Reading 775 0 R
+-> Uncompressing object 775 0
+-> Original Length: 35
+-> Uncompressed Length: 32
Reading 776 0 R
+-> Uncompressing object 776 0
+-> Original Length: 42
+-> Uncompressed Length: 55
Reading 777 0 R
+-> Uncompressing object 777 0
+-> Original Length: 30
+-> Uncompressed Length: 28
Reading 778 0 R
Reading 779 0 R
Reading 780 0 R
Reading 781 0 R
-> Uncompressing object 781 0
--> Original Length: 7667
--> Uncompressed Length: 8178
+-> Original Length: 194
+-> Uncompressed Length: 198
Reading 782 0 R
Reading 783 0 R
-> Uncompressing object 783 0
--> Original Length: 7851
--> Uncompressed Length: 8336
+-> Original Length: 7500
+-> Uncompressed Length: 214396
Reading 784 0 R
+-> Uncompressing object 784 0
+-> Original Length: 35
+-> Uncompressed Length: 32
Reading 785 0 R
-> Uncompressing object 785 0
--> Original Length: 6968
--> Uncompressed Length: 7411
+-> Original Length: 42
+-> Uncompressed Length: 55
Reading 786 0 R
+-> Uncompressing object 786 0
+-> Original Length: 30
+-> Uncompressed Length: 28
Reading 787 0 R
--> Uncompressing object 787 0
--> Original Length: 7432
--> Uncompressed Length: 7886
Reading 788 0 R
Reading 789 0 R
--> Uncompressing object 789 0
--> Original Length: 6872
--> Uncompressed Length: 7308
Reading 790 0 R
+-> Uncompressing object 790 0
+-> Original Length: 193
+-> Uncompressed Length: 198
Reading 791 0 R
--> Uncompressing object 791 0
--> Original Length: 14340
--> Uncompressed Length: 15387
Reading 792 0 R
+-> Uncompressing object 792 0
+-> Original Length: 42
+-> Uncompressed Length: 55
Reading 793 0 R
-> Uncompressing object 793 0
--> Original Length: 9977
--> Uncompressed Length: 10637
+-> Original Length: 30
+-> Uncompressed Length: 28
Reading 794 0 R
Reading 795 0 R
--> Uncompressing object 795 0
--> Original Length: 11612
--> Uncompressed Length: 12390
Reading 796 0 R
Reading 797 0 R
-> Uncompressing object 797 0
--> Original Length: 11060
--> Uncompressed Length: 11812
+-> Original Length: 42
+-> Uncompressed Length: 55
Reading 798 0 R
+-> Uncompressing object 798 0
+-> Original Length: 30
+-> Uncompressed Length: 28
Reading 799 0 R
--> Uncompressing object 799 0
--> Original Length: 9411
--> Uncompressed Length: 10018
Reading 800 0 R
Reading 801 0 R
--> Uncompressing object 801 0
--> Original Length: 9942
--> Uncompressed Length: 10595
Reading 802 0 R
+-> Uncompressing object 802 0
+-> Original Length: 42
+-> Uncompressed Length: 55
Reading 803 0 R
-> Uncompressing object 803 0
--> Original Length: 7716
--> Uncompressed Length: 8181
+-> Original Length: 30
+-> Uncompressed Length: 28
Reading 804 0 R
Reading 805 0 R
--> Uncompressing object 805 0
--> Original Length: 7624
--> Uncompressed Length: 8098
Reading 806 0 R
Reading 807 0 R
-> Uncompressing object 807 0
--> Original Length: 7877
--> Uncompressed Length: 8367
+-> Original Length: 42
+-> Uncompressed Length: 55
Reading 808 0 R
+-> Uncompressing object 808 0
+-> Original Length: 30
+-> Uncompressed Length: 28
Reading 809 0 R
--> Uncompressing object 809 0
--> Original Length: 6848
--> Uncompressed Length: 7274
Reading 810 0 R
Reading 811 0 R
--> Uncompressing object 811 0
--> Original Length: 13783
--> Uncompressed Length: 14521
Reading 812 0 R
+-> Uncompressing object 812 0
+-> Original Length: 42
+-> Uncompressed Length: 55
Reading 813 0 R
-> Uncompressing object 813 0
--> Original Length: 7810
--> Uncompressed Length: 8290
+-> Original Length: 30
+-> Uncompressed Length: 28
Reading 814 0 R
Reading 815 0 R
--> Uncompressing object 815 0
--> Original Length: 1731
--> Uncompressed Length: 1887
Reading 816 0 R
+Reading 817 0 R
+-> Uncompressing object 817 0
+-> Original Length: 42
+-> Uncompressed Length: 55
Reading 818 0 R
+-> Uncompressing object 818 0
+-> Original Length: 30
+-> Uncompressed Length: 28
Reading 819 0 R
Reading 820 0 R
Reading 821 0 R
Reading 822 0 R
+-> Uncompressing object 822 0
+-> Original Length: 42
+-> Uncompressed Length: 55
Reading 823 0 R
+-> Uncompressing object 823 0
+-> Original Length: 30
+-> Uncompressed Length: 28
Reading 824 0 R
Reading 825 0 R
Reading 826 0 R
Reading 827 0 R
+-> Uncompressing object 827 0
+-> Original Length: 42
+-> Uncompressed Length: 55
Reading 828 0 R
+-> Uncompressing object 828 0
+-> Original Length: 30
+-> Uncompressed Length: 28
Reading 829 0 R
Reading 830 0 R
Reading 831 0 R
Reading 832 0 R
+-> Uncompressing object 832 0
+-> Original Length: 42
+-> Uncompressed Length: 55
Reading 833 0 R
+-> Uncompressing object 833 0
+-> Original Length: 30
+-> Uncompressed Length: 28
Reading 834 0 R
Reading 835 0 R
Reading 836 0 R
Reading 837 0 R
+-> Uncompressing object 837 0
+-> Original Length: 808
+-> Uncompressed Length: 3114
Reading 838 0 R
-> Uncompressing object 838 0
--> Original Length: 1948
--> Uncompressed Length: 5034
+-> Original Length: 87
+-> Uncompressed Length: 109
+Reading 839 0 R
+Reading 840 0 R
+Reading 841 0 R
+-> Uncompressing object 841 0
+-> Original Length: 141
+-> Uncompressed Length: 268
+Reading 842 0 R
+Reading 843 0 R
+-> Uncompressing object 843 0
+-> Original Length: 133
+-> Uncompressed Length: 243
+Reading 844 0 R
+Reading 845 0 R
+-> Uncompressing object 845 0
+-> Original Length: 104
+-> Uncompressed Length: 170
+Reading 846 0 R
+Reading 847 0 R
+-> Uncompressing object 847 0
+-> Original Length: 116
+-> Uncompressed Length: 196
+Reading 848 0 R
+Reading 850 0 R
+Reading 851 0 R
+-> Uncompressing object 851 0
+-> Original Length: 102
+-> Uncompressed Length: 168
+Reading 852 0 R
+Reading 853 0 R
+-> Uncompressing object 853 0
+-> Original Length: 111
+-> Uncompressed Length: 194
+Reading 854 0 R
+Reading 855 0 R
+Reading 856 0 R
+-> Uncompressing object 856 0
+-> Original Length: 129
+-> Uncompressed Length: 241
+Reading 857 0 R
+Reading 858 0 R
+-> Uncompressing object 858 0
+-> Original Length: 138
+-> Uncompressed Length: 266
+Reading 859 0 R
+Reading 860 0 R
+-> Uncompressing object 860 0
+-> Original Length: 127
+-> Uncompressed Length: 237
+Reading 861 0 R
+Reading 862 0 R
+-> Uncompressing object 862 0
+-> Original Length: 166
+-> Uncompressed Length: 337
+Reading 863 0 R
+Reading 864 0 R
+-> Uncompressing object 864 0
+-> Original Length: 133
+-> Uncompressed Length: 254
+Reading 865 0 R
+Reading 866 0 R
+Reading 867 0 R
+Reading 868 0 R
+Reading 869 0 R
+Reading 870 0 R
+Reading 871 0 R
+Reading 872 0 R
+Reading 873 0 R
+Reading 874 0 R
+Reading 875 0 R
+Reading 876 0 R
+Reading 877 0 R
+Reading 878 0 R
+Reading 879 0 R
+Reading 880 0 R
+Reading 881 0 R
+Reading 882 0 R
+Reading 883 0 R
+Reading 884 0 R
+Reading 885 0 R
+Reading 886 0 R
+Reading 887 0 R
+Reading 888 0 R
+Reading 889 0 R
+Reading 890 0 R
+-> Uncompressing object 890 0
+-> Original Length: 1637
+-> Uncompressed Length: 7163
+Reading 891 0 R
+Reading 892 0 R
+Reading 893 0 R
+Reading 894 0 R
+Reading 895 0 R
+Reading 896 0 R
+Reading 897 0 R
+Reading 898 0 R
+Reading 899 0 R
+Reading 900 0 R
+Reading 901 0 R
+Reading 902 0 R
+Reading 903 0 R
+Reading 904 0 R
+Reading 905 0 R
+Reading 906 0 R
+Reading 907 0 R
+Reading 908 0 R
+Reading 909 0 R
+Reading 910 0 R
+Reading 911 0 R
+Reading 912 0 R
+Reading 913 0 R
+Reading 914 0 R
+Reading 915 0 R
+Reading 916 0 R
+Reading 917 0 R
+-> Uncompressing object 917 0
+-> Original Length: 6308
+-> Uncompressed Length: 25084
+Reading 918 0 R
+Reading 919 0 R
+Reading 921 0 R
+-> Uncompressing object 921 0
+-> Original Length: 3831285
+-> Uncompressed Length: 23887872
+Reading 922 0 R
+Reading 923 0 R
+Reading 924 0 R
+Reading 925 0 R
+Reading 926 0 R
+Reading 927 0 R
+Reading 928 0 R
+Reading 929 0 R
+Reading 930 0 R
+Reading 931 0 R
+Reading 932 0 R
+Reading 933 0 R
+Reading 934 0 R
+Reading 935 0 R
+Reading 936 0 R
+Reading 937 0 R
+Reading 938 0 R
+Reading 939 0 R
+Reading 940 0 R
+Reading 941 0 R
+Reading 942 0 R
+Reading 943 0 R
+Reading 944 0 R
+Reading 945 0 R
+Reading 946 0 R
+-> Uncompressing object 946 0
+-> Original Length: 1775
+-> Uncompressed Length: 7598
+Reading 947 0 R
+Reading 948 0 R
+Reading 949 0 R
+Reading 950 0 R
+Reading 951 0 R
+Reading 952 0 R
+Reading 953 0 R
+Reading 954 0 R
+Reading 955 0 R
+Reading 956 0 R
+Reading 957 0 R
+Reading 958 0 R
+Reading 959 0 R
+Reading 960 0 R
+Reading 961 0 R
+Reading 962 0 R
+Reading 963 0 R
+Reading 964 0 R
+Reading 965 0 R
+Reading 966 0 R
+Reading 967 0 R
+Reading 968 0 R
+Reading 969 0 R
+Reading 970 0 R
+Reading 971 0 R
+Reading 972 0 R
+Reading 973 0 R
+-> Uncompressing object 973 0
+-> Original Length: 1184
+-> Uncompressed Length: 5092
+Reading 974 0 R
+Reading 975 0 R
+Reading 976 0 R
+Reading 977 0 R
+Reading 978 0 R
+Reading 979 0 R
+Reading 980 0 R
+Reading 981 0 R
+Reading 982 0 R
+Reading 983 0 R
+Reading 984 0 R
+Reading 985 0 R
+Reading 986 0 R
+Reading 987 0 R
+Reading 988 0 R
+Reading 989 0 R
+Reading 990 0 R
+Reading 991 0 R
+Reading 992 0 R
+Reading 993 0 R
+Reading 994 0 R
+Reading 995 0 R
+Reading 996 0 R
+Reading 997 0 R
+Reading 998 0 R
+Reading 999 0 R
+Reading 1000 0 R
+Reading 1001 0 R
+-> Uncompressing object 1001 0
+-> Original Length: 1133
+-> Uncompressed Length: 5163
+Reading 1002 0 R
+Reading 1003 0 R
+Reading 1005 0 R
+Reading 1006 0 R
+Reading 1007 0 R
+Reading 1008 0 R
+Reading 1009 0 R
+Reading 1010 0 R
+Reading 1011 0 R
+Reading 1012 0 R
+Reading 1013 0 R
+Reading 1014 0 R
+Reading 1015 0 R
+Reading 1016 0 R
+Reading 1017 0 R
+Reading 1018 0 R
+Reading 1019 0 R
+Reading 1020 0 R
+Reading 1021 0 R
+Reading 1022 0 R
+Reading 1023 0 R
+Reading 1024 0 R
+Reading 1025 0 R
+Reading 1026 0 R
+Reading 1027 0 R
+Reading 1028 0 R
+Reading 1029 0 R
+Reading 1030 0 R
+Reading 1031 0 R
+-> Uncompressing object 1031 0
+-> Original Length: 1566
+-> Uncompressed Length: 6217
+Reading 1032 0 R
+Reading 1033 0 R
+Reading 1034 0 R
+Reading 1035 0 R
+Reading 1036 0 R
+Reading 1037 0 R
+Reading 1038 0 R
+Reading 1039 0 R
+Reading 1040 0 R
+Reading 1041 0 R
+Reading 1042 0 R
+Reading 1043 0 R
+Reading 1044 0 R
+Reading 1045 0 R
+Reading 1046 0 R
+Reading 1047 0 R
+Reading 1048 0 R
+Reading 1049 0 R
+Reading 1050 0 R
+Reading 1051 0 R
+Reading 1052 0 R
+Reading 1053 0 R
+Reading 1054 0 R
+Reading 1055 0 R
+Reading 1056 0 R
+Reading 1057 0 R
+Reading 1058 0 R
+Reading 1059 0 R
+-> Uncompressing object 1059 0
+-> Original Length: 1433
+-> Uncompressed Length: 6041
+Reading 1060 0 R
+Reading 1061 0 R
+Reading 1062 0 R
+Reading 1063 0 R
+Reading 1064 0 R
+Reading 1065 0 R
+Reading 1066 0 R
+Reading 1067 0 R
+Reading 1068 0 R
+Reading 1069 0 R
+Reading 1070 0 R
+Reading 1071 0 R
+Reading 1072 0 R
+Reading 1073 0 R
+Reading 1074 0 R
+Reading 1075 0 R
+Reading 1076 0 R
+Reading 1077 0 R
+Reading 1078 0 R
+Reading 1079 0 R
+Reading 1080 0 R
+Reading 1081 0 R
+Reading 1082 0 R
+Reading 1083 0 R
+-> Uncompressing object 1083 0
+-> Original Length: 7667
+-> Uncompressed Length: 8178
+Reading 1084 0 R
+Reading 1085 0 R
+-> Uncompressing object 1085 0
+-> Original Length: 7851
+-> Uncompressed Length: 8336
+Reading 1086 0 R
+Reading 1087 0 R
+-> Uncompressing object 1087 0
+-> Original Length: 6968
+-> Uncompressed Length: 7411
+Reading 1088 0 R
+Reading 1089 0 R
+-> Uncompressing object 1089 0
+-> Original Length: 7432
+-> Uncompressed Length: 7886
+Reading 1090 0 R
+Reading 1091 0 R
+-> Uncompressing object 1091 0
+-> Original Length: 6872
+-> Uncompressed Length: 7308
+Reading 1092 0 R
+Reading 1093 0 R
+-> Uncompressing object 1093 0
+-> Original Length: 14340
+-> Uncompressed Length: 15387
+Reading 1094 0 R
+Reading 1095 0 R
+-> Uncompressing object 1095 0
+-> Original Length: 9977
+-> Uncompressed Length: 10637
+Reading 1096 0 R
+Reading 1097 0 R
+-> Uncompressing object 1097 0
+-> Original Length: 11811
+-> Uncompressed Length: 12608
+Reading 1098 0 R
+Reading 1099 0 R
+-> Uncompressing object 1099 0
+-> Original Length: 11831
+-> Uncompressed Length: 12660
+Reading 1100 0 R
+Reading 1101 0 R
+-> Uncompressing object 1101 0
+-> Original Length: 9411
+-> Uncompressed Length: 10018
+Reading 1102 0 R
+Reading 1103 0 R
+-> Uncompressing object 1103 0
+-> Original Length: 9942
+-> Uncompressed Length: 10595
+Reading 1104 0 R
+Reading 1105 0 R
+-> Uncompressing object 1105 0
+-> Original Length: 7799
+-> Uncompressed Length: 8273
+Reading 1106 0 R
+Reading 1107 0 R
+-> Uncompressing object 1107 0
+-> Original Length: 7804
+-> Uncompressed Length: 8298
+Reading 1108 0 R
+Reading 1109 0 R
+-> Uncompressing object 1109 0
+-> Original Length: 7877
+-> Uncompressed Length: 8367
+Reading 1110 0 R
+Reading 1111 0 R
+-> Uncompressing object 1111 0
+-> Original Length: 6848
+-> Uncompressed Length: 7274
+Reading 1112 0 R
+Reading 1113 0 R
+-> Uncompressing object 1113 0
+-> Original Length: 13783
+-> Uncompressed Length: 14521
+Reading 1114 0 R
+Reading 1116 0 R
+-> Uncompressing object 1116 0
+-> Original Length: 7810
+-> Uncompressed Length: 8290
+Reading 1117 0 R
+Reading 1118 0 R
+-> Uncompressing object 1118 0
+-> Original Length: 1731
+-> Uncompressed Length: 1887
+Reading 1119 0 R
+Reading 1120 0 R
+Reading 1121 0 R
+Reading 1122 0 R
+Reading 1123 0 R
+Reading 1124 0 R
+Reading 1125 0 R
+Reading 1126 0 R
+Reading 1127 0 R
+Reading 1128 0 R
+Reading 1129 0 R
+Reading 1130 0 R
+Reading 1131 0 R
+Reading 1132 0 R
+Reading 1133 0 R
+Reading 1134 0 R
+Reading 1135 0 R
+Reading 1136 0 R
+Reading 1137 0 R
+Reading 1138 0 R
+Reading 1139 0 R
+Reading 1140 0 R
+Reading 1141 0 R
+Reading 1142 0 R
+Reading 1143 0 R
+-> Uncompressing object 1143 0
+-> Original Length: 2816
+-> Uncompressed Length: 6864
/home/a/Documents/sola-gimb-2/fiz/naloga/predstavitev/dokument.pdf was successfully uncompressed to: /home/a/Documents/sola-gimb-2/fiz/naloga/predstavitev/dokument-uncompressed.pdf
**** Error: An error occurred while reading an XREF table.
**** The file has been damaged. This may have been caused