summaryrefslogtreecommitdiffstats
path: root/dokument.log
blob: c6ba1c4b93598ae1210fae8a288605c1f40b9a8a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
This is pdfTeX, Version 3.141592653-2.6-1.40.22 (TeX Live 2021) (preloaded format=pdflatex 2021.4.17)  6 JUN 2021 23:31
entering extended mode
 \write18 enabled.
 %&-line parsing enabled.
**/home/a/Documents/sola-gimb-2/fiz/naloga/porocilo/dokument.tex
(/home/a/Documents/sola-gimb-2/fiz/naloga/porocilo/dokument.tex
LaTeX2e <2020-10-01> patch level 4
L3 programming layer <2021-02-18>
(/usr/local/texlive/2021/texmf-dist/tex/latex/base/article.cls
Document Class: article 2020/04/10 v1.4m Standard LaTeX document class
(/usr/local/texlive/2021/texmf-dist/tex/latex/base/size10.clo
File: size10.clo 2020/04/10 v1.4m Standard LaTeX file (size option)
)
\c@part=\count179
\c@section=\count180
\c@subsection=\count181
\c@subsubsection=\count182
\c@paragraph=\count183
\c@subparagraph=\count184
\c@figure=\count185
\c@table=\count186
\abovecaptionskip=\skip47
\belowcaptionskip=\skip48
\bibindent=\dimen138
)
(/usr/local/texlive/2021/texmf-dist/tex/latex/base/inputenc.sty
Package: inputenc 2020/08/01 v1.3d Input encoding file
\inpenc@prehook=\toks15
\inpenc@posthook=\toks16
)
(/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=\count187
)
(/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/iftex/iftex.sty
Package: iftex 2020/03/06 v1.0d TeX engine tests
)
(/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/latex/graphics/keyval.sty
Package: keyval 2014/10/28 v1.15 key=value parser (DPC)
\KV@toks@=\toks17
)
(/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=\dimen139
\Hy@linkcounter=\count188
\Hy@pagecounter=\count189

(/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=\count190

(/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: 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 ON; LaTeX internals redefined.
Package hyperref Info: Bookmarks ON on input line 4445.
\c@Hy@tempcnt=\count191

(/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=\dimen140

(/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=\count192
\Field@Width=\dimen141
\Fld@charsize=\dimen142
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.

(/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
)
\Hy@abspage=\count193
\c@Item=\count194
\c@Hfootnote=\count195
)
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=\count196
\c@bookmark@seq@number=\count197

(/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.
)
\Hy@SectionHShift=\skip49
) (/usr/local/texlive/2021/texmf-dist/tex/latex/xurl/xurl.sty
Package: xurl 2020/12/30 v 0.09a modify URL breaks
)
(/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=\count198
\Gm@cntv=\count199
\c@Gm@tempcnt=\count266
\Gm@bindingoffset=\dimen143
\Gm@wd@mp=\dimen144
\Gm@odd@mp=\dimen145
\Gm@even@mp=\dimen146
\Gm@layoutwidth=\dimen147
\Gm@layoutheight=\dimen148
\Gm@layouthoffset=\dimen149
\Gm@layoutvoffset=\dimen150
\Gm@dimlist=\toks18
)
(/usr/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=\dimen151
\Gin@req@width=\dimen152
)
(/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/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=\toks19
\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/calculator/calculator.sty
Package: calculator 2014/02/20 v.2.0
\cctr@lengtha=\dimen153
\cctr@lengthb=\dimen154
\cctr@epsilon=\dimen155
)
(/usr/local/texlive/2021/texmf-dist/tex/latex/pgfplots/pgfplots.sty
(/usr/local/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
(/usr/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=\toks20
\pgfutil@tempdima=\dimen156
\pgfutil@tempdimb=\dimen157

(/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=\box47
) (/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)
))
Package: pgf 2020/12/27 v3.1.8b (3.1.8b)

(/usr/local/texlive/2021/texmf-dist/tex/latex/pgf/basiclayer/pgfcore.sty
(/usr/local/texlive/2021/texmf-dist/tex/latex/pgf/systemlayer/pgfsys.sty
(/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=\toks21
\pgfkeys@temptoks=\toks22

(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/utilities/pgfkeysfiltered.c
ode.tex
\pgfkeys@tmptoks=\toks23
))
\pgf@x=\dimen158
\pgf@y=\dimen159
\pgf@xa=\dimen160
\pgf@ya=\dimen161
\pgf@xb=\dimen162
\pgf@yb=\dimen163
\pgf@xc=\dimen164
\pgf@yc=\dimen165
\pgf@xd=\dimen166
\pgf@yd=\dimen167
\w@pgf@writea=\write3
\r@pgf@reada=\read2
\c@pgf@counta=\count267
\c@pgf@countb=\count268
\c@pgf@countc=\count269
\c@pgf@countd=\count270
\t@pgf@toka=\toks24
\t@pgf@tokb=\toks25
\t@pgf@tokc=\toks26
\pgf@sys@id@count=\count271

(/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=\count272
\pgfsyssoftpath@bigbuffer@items=\count273
)
(/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=\dimen168
\pgfmath@count=\count274
\pgfmath@box=\box48
\pgfmath@toks=\toks27
\pgfmath@stack@operand=\toks28
\pgfmath@stack@operation=\toks29
)
(/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/math/pgfmathfloat.code.tex
\c@pgfmathroundto@lastzeros=\count275
)) (/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=\dimen169
\pgf@picmaxx=\dimen170
\pgf@picminy=\dimen171
\pgf@picmaxy=\dimen172
\pgf@pathminx=\dimen173
\pgf@pathmaxx=\dimen174
\pgf@pathminy=\dimen175
\pgf@pathmaxy=\dimen176
\pgf@xx=\dimen177
\pgf@xy=\dimen178
\pgf@yx=\dimen179
\pgf@yy=\dimen180
\pgf@zx=\dimen181
\pgf@zy=\dimen182
)
(/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=\dimen183
\pgf@path@lasty=\dimen184
)
(/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=\dimen185
\pgf@shorten@start@additional=\dimen186
)
(/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=\box49
\pgf@hbox=\box50
\pgf@layerbox@main=\box51
\pgf@picture@serial@count=\count276
)
(/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=\dimen187
)
(/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=\dimen188
\pgf@pt@y=\dimen189
\pgf@pt@temp=\dimen190
)
(/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=\dimen191
)
(/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=\dimen192
\pgf@sys@shading@range@num=\count277
\pgf@shadingcount=\count278
)
(/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=\box52
))
(/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/generic/pgf/modules/pgfmoduleshapes.cod
e.tex
File: pgfmoduleshapes.code.tex 2020/12/27 v3.1.8b (3.1.8b)
\pgfnodeparttextbox=\box53
)
(/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=\dimen193
\pgf@nodesepend=\dimen194
)
(/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/local/texlive/2021/texmf-dist/tex/latex/pgf/math/pgfmath.sty
(/usr/local/texlive/2021/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=\dimen195
\pgffor@skip=\dimen196
\pgffor@stack=\toks30
\pgffor@toks=\toks31
))
(/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=\count279
\pgfplotmarksize=\dimen197
)
\tikz@lastx=\dimen198
\tikz@lasty=\dimen199
\tikz@lastxsaved=\dimen256
\tikz@lastysaved=\dimen257
\tikz@lastmovetox=\dimen258
\tikz@lastmovetoy=\dimen259
\tikzleveldistance=\dimen260
\tikzsiblingdistance=\dimen261
\tikz@figbox=\box54
\tikz@figbox@bg=\box55
\tikz@tempbox=\box56
\tikz@tempbox@bg=\box57
\tikztreelevel=\count280
\tikznumberofchildren=\count281
\tikznumberofcurrentchild=\count282
\tikz@fig@count=\count283

(/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=\count284
\pgfmatrixcurrentcolumn=\count285
\pgf@matrix@numberofcolumns=\count286
)
\tikz@expandcount=\count287

(/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=\toks32
\t@pgfplots@tokb=\toks33
\t@pgfplots@tokc=\toks34
\pgfplots@tmpa=\dimen262
\c@pgfplots@coordindex=\count288
\c@pgfplots@scanlineindex=\count289

(/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=\count290
)
(/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=\count291
\t@pgfplotstable@a=\toks35
)
(/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=\count292

(/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=\dimen263
\pgfdecoratedremainingdistance=\dimen264
\pgfdecoratedinputsegmentcompleteddistance=\dimen265
\pgfdecoratedinputsegmentremainingdistance=\dimen266
\pgf@decorate@distancetomove=\dimen267
\pgf@decorate@repeatstate=\count293
\pgfdecorationsegmentamplitude=\dimen268
\pgfdecorationsegmentlength=\dimen269
)
\tikz@lib@dec@box=\box58
)
(/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=\count294
\pgfplots@xmin@reg=\dimen270
\pgfplots@xmax@reg=\dimen271
\pgfplots@ymin@reg=\dimen272
\pgfplots@ymax@reg=\dimen273
\pgfplots@zmin@reg=\dimen274
\pgfplots@zmax@reg=\dimen275
)
(/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/enumitem/enumitem.sty
Package: enumitem 2019/06/20 v3.9 Customized lists
\labelindent=\skip50
\enit@outerparindent=\dimen276
\enit@toks=\toks36
\enit@inbox=\box59
\enit@count@id=\count295
\enitdp@description=\count296
)
(/usr/local/texlive/2021/texmf-dist/tex/latex/siunitx/siunitx.sty
(/usr/local/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=\count297
\l__pdf_internal_box=\box60
))
(/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/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=\toks37
\ex@=\dimen277
))
(/usr/local/texlive/2021/texmf-dist/tex/latex/tools/array.sty
Package: array 2020/10/01 v2.5c Tabular extension package (FMi)
\col@sep=\dimen278
\ar@mcellbox=\box61
\extrarowheight=\dimen279
\NC@list=\toks38
\extratabsurround=\skip51
\backup@length=\skip52
\ar@cellbox=\box62
)
(/usr/local/texlive/2021/texmf-dist/tex/latex/l3packages/l3keys2e/l3keys2e.sty
Package: l3keys2e 2021-03-12 LaTeX2e option processing using LaTeX3 keys
)
\l__siunitx_tmp_box=\box63
\l__siunitx_tmp_dim=\dimen280
\l__siunitx_tmp_int=\count298
\l__siunitx_number_mantissa_length_int=\count299
\l__siunitx_number_uncert_length_int=\count300
\l__siunitx_round_int=\count301
\l__siunitx_process_decimal_int=\count302
\l__siunitx_process_uncertainty_int=\count303
\l__siunitx_process_fixed_int=\count304
\l__siunitx_process_integer_min_int=\count305
\l__siunitx_process_precision_int=\count306
\l__siunitx_group_min_int=\count307
\l__siunitx_angle_marker_box=\box64
\l__siunitx_angle_unit_box=\box65
\l__siunitx_angle_marker_dim=\dimen281
\l__siunitx_angle_unit_dim=\dimen282
\l__siunitx_unit_int=\count308
\l__siunitx_unit_denominator_int=\count309
\l__siunitx_unit_numerator_int=\count310
\l__siunitx_unit_prefix_int=\count311
\l__siunitx_unit_prefix_base_int=\count312
\l__siunitx_unit_prefix_gram_int=\count313
\l__siunitx_number_product_int=\count314
\c__siunitx_one_fill_skip=\skip53
\l__siunitx_table_unit_align_skip=\skip54
\l__siunitx_table_exponent_dim=\dimen283
\l__siunitx_table_integer_dim=\dimen284
\l__siunitx_table_mantissa_dim=\dimen285
\l__siunitx_table_marker_dim=\dimen286
\l__siunitx_table_result_dim=\dimen287
\l__siunitx_table_uncert_dim=\dimen288
\l__siunitx_table_fill_pre_dim=\dimen289
\l__siunitx_table_fill_post_dim=\dimen290
\l__siunitx_table_fill_mid_dim=\dimen291
\l__siunitx_table_pre_box=\box66
\l__siunitx_table_post_box=\box67
\l__siunitx_table_mantissa_box=\box68
\l__siunitx_table_result_box=\box69
\l__siunitx_table_number_align_skip=\skip55
\l__siunitx_table_text_align_skip=\skip56
(/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/tools/multicol.sty
Package: multicol 2019/12/09 v1.8y multicolumn formatting (FMi)
\c@tracingmulticols=\count315
\mult@box=\box70
\multicol@leftmargin=\dimen292
\c@unbalance=\count316
\c@collectmore=\count317
\doublecol@number=\count318
\multicoltolerance=\count319
\multicolpretolerance=\count320
\full@width=\dimen293
\page@free=\dimen294
\premulticols=\dimen295
\postmulticols=\dimen296
\multicolsep=\skip57
\multicolbaselineskip=\skip58
\partial@page=\box71
\last@line=\box72
\maxbalancingoverflow=\dimen297
\mult@rightbox=\box73
\mult@grightbox=\box74
\mult@gfirstbox=\box75
\mult@firstbox=\box76
\@tempa=\box77
\@tempa=\box78
\@tempa=\box79
\@tempa=\box80
\@tempa=\box81
\@tempa=\box82
\@tempa=\box83
\@tempa=\box84
\@tempa=\box85
\@tempa=\box86
\@tempa=\box87
\@tempa=\box88
\@tempa=\box89
\@tempa=\box90
\@tempa=\box91
\@tempa=\box92
\@tempa=\box93
\@tempa=\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
\c@minrows=\count321
\c@columnbadness=\count322
\c@finalcolumnbadness=\count323
\last@try=\dimen298
\multicolovershoot=\dimen299
\multicolundershoot=\dimen300
\mult@nat@firstbox=\box114
\colbreak@box=\box115
\mc@col@check@num=\count324
)
(/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/local/texlive/2021/texmf-dist/tex/latex/fp/defpattern.sty
Package: defpattern 1994/10/12
\actioncount=\count325
)
(/usr/local/texlive/2021/texmf-dist/tex/latex/fp/fp-basic.sty
Package: fp-basic 1996/05/13
\FP@xs=\count326
\FP@xia=\count327
\FP@xib=\count328
\FP@xfa=\count329
\FP@xfb=\count330
\FP@rega=\count331
\FP@regb=\count332
\FP@regs=\count333
\FP@times=\count334
)
(/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=\count335
)
(/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/local/texlive/2021/texmf-dist/tex/generic/xstring/xstring.tex
\integerpart=\count336
\decimalpart=\count337
)
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=\count338
\c@nprt@mantissa@digitsafter=\count339
\c@nprt@exponent@digitsbefore=\count340
\c@nprt@exponent@digitsafter=\count341
\nprt@digitwidth=\skip59
\nprt@sepwidth=\skip60
\nprt@decimalwidth=\skip61
\nprt@blockwidth=\skip62
\nprt@digittoks=\toks39
\nprt@pretoks=\toks40
\nprt@posttoks=\toks41
\nprt@thisdigit=\count342
\nprt@curpos=\count343
\nprt@rndpos=\count344
\c@nprt@digitsfirstblock=\count345
\c@nprt@blockcnt=\count346
\c@nprt@cntprint=\count347

No configuration file `numprint.cfg' found.)
\tccol=\count348
\tclin=\count349
\tc@export=\write4
)
(/usr/local/texlive/2021/texmf-dist/tex/latex/amsmath/amsmath.sty
Package: amsmath 2020/09/23 v2.17i AMS math features
\@mathmargin=\skip63

For additional information on amsmath, use the `?' option.
(/usr/local/texlive/2021/texmf-dist/tex/latex/amsmath/amsbsy.sty
Package: amsbsy 1999/11/29 v1.2d Bold Symbols
\pmbraise@=\dimen301
)
(/usr/local/texlive/2021/texmf-dist/tex/latex/amsmath/amsopn.sty
Package: amsopn 2016/03/08 v2.02 operator names
)
\inf@bad=\count350
LaTeX Info: Redefining \frac on input line 234.
\uproot@=\count351
\leftroot@=\count352
LaTeX Info: Redefining \overline on input line 399.
\classnum@=\count353
\DOTSCASE@=\count354
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@=\box116
\strutbox@=\box117
\big@size=\dimen302
LaTeX Font Info:    Redeclaring font encoding OML on input line 743.
LaTeX Font Info:    Redeclaring font encoding OMS on input line 744.
\macc@depth=\count355
\c@MaxMatrixCols=\count356
\dotsspace@=\muskip17
\c@parentequation=\count357
\dspbrk@lvl=\count358
\tag@help=\toks42
\row@=\count359
\column@=\count360
\maxfields@=\count361
\andhelp@=\toks43
\eqnshift@=\dimen303
\alignsep@=\dimen304
\tagshift@=\dimen305
\tagwidth@=\dimen306
\totwidth@=\dimen307
\lineht@=\dimen308
\@envbody=\toks44
\multlinegap=\skip64
\multlinetaggap=\skip65
\mathdisplay@stack=\toks45
LaTeX Info: Redefining \[ on input line 2923.
LaTeX Info: Redefining \] on input line 2924.
)
(/usr/local/texlive/2021/texmf-dist/tex/latex/float/float.sty
Package: float 2001/11/08 v1.3d Float enhancements (AL)
\c@float@type=\count362
\float@exts=\toks46
\float@box=\box118
\@float@everytoks=\toks47
\@floatcapt=\box119
)
(/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=\dimen309
\l__xtemplate_tmp_int=\count363
\l__xtemplate_tmp_muskip=\muskip18
\l__xtemplate_tmp_skip=\skip66
)
Package: tasks 2021/02/20 v1.3a lists with columns filled horizontally
\g__tasks_total_items_int=\count364
\l__tasks_columns_int=\count365
\g__tasks_rows_int=\count366
\g__tasks_current_col_num_int=\count367
\g__tasks_current_row_num_int=\count368
\l__tasks_item_columns_int=\count369
\g__tasks_env_int=\count370
\l__tasks_start_int=\count371
\l__tasks_item_indent_dim=\dimen310
\l__tasks_item_default_indent_dim=\dimen311
\l__tasks_item_width_dim=\dimen312
\l__tasks_label_width_dim=\dimen313
\l__tasks_label_default_width_dim=\dimen314
\l__tasks_label_offset_dim=\dimen315
\l__tasks_label_default_offset_dim=\dimen316
\l__tasks_column_sep_dim=\dimen317
\l__tasks_correction_dim=\dimen318
\l__tasks_full_width_dim=\dimen319
\l__tasks_after_item_skip=\skip67
\l__tasks_custom_after_item_skip=\skip68
\l__tasks_before_list_skip=\skip69
\l__tasks_after_list_skip=\skip70
\l__tasks_item_coffin=\box120
\l__tasks_label_coffin=\box121
\c@task=\count372
\l__tasks_tmpa_int=\count373
\l__tasks_tmpb_int=\count374
\l__tasks_tmpa_coffin=\box122
\l__tasks_tmpa_box=\box123

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/texlive/2021/texmf-dist/tex/latex/filecontents/filecontents.sty
Package: filecontents 2019/09/20 v1.5 Create an external file from within a LaT
eX document


Package filecontents Warning: This package is obsolete. Disabling it and
(filecontents)                passing control to the filecontents environment
(filecontents)                defined by the LaTeX kernel.

) (/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/tkz-euclide/tkz-euclide.sty
2020/03/18 3.06c tkz-euclide.sty
Package: tkz-euclide 2020/03/18 3.06c for euclidan geometry 
(/usr/local/texlive/2021/texmf-dist/tex/latex/tkz-base/tkz-base.sty
2020/03/18 3.06c tkz-base.sty
Package: tkz-base 2020/03/18 3.06c tkz-base

(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/frontendlayer/tikz/librarie
s/tikzlibraryangles.code.tex
File: tikzlibraryangles.code.tex 2020/12/27 v3.1.8b (3.1.8b)
)
(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/frontendlayer/tikz/librarie
s/tikzlibraryarrows.code.tex
File: tikzlibraryarrows.code.tex 2020/12/27 v3.1.8b (3.1.8b)

(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/libraries/pgflibraryarrows.
code.tex
File: pgflibraryarrows.code.tex 2020/12/27 v3.1.8b (3.1.8b)
\arrowsize=\dimen320
))
(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/libraries/pgflibraryarrows.
meta.code.tex
File: pgflibraryarrows.meta.code.tex 2020/12/27 v3.1.8b (3.1.8b)
\pgfarrowinset=\dimen321
\pgfarrowlength=\dimen322
\pgfarrowwidth=\dimen323
\pgfarrowlinewidth=\dimen324
)
(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/frontendlayer/tikz/librarie
s/tikzlibrarybabel.code.tex
File: tikzlibrarybabel.code.tex 2020/12/27 v3.1.8b (3.1.8b)
)
(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/frontendlayer/tikz/librarie
s/tikzlibrarycalc.code.tex
File: tikzlibrarycalc.code.tex 2020/12/27 v3.1.8b (3.1.8b)
)
(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/frontendlayer/tikz/librarie
s/tikzlibrarydecorations.markings.code.tex
(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/libraries/decorations/pgfli
brarydecorations.markings.code.tex))
(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/frontendlayer/tikz/librarie
s/tikzlibrarydecorations.shapes.code.tex
(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/libraries/decorations/pgfli
brarydecorations.shapes.code.tex))
(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/frontendlayer/tikz/librarie
s/tikzlibrarydecorations.text.code.tex
(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/libraries/decorations/pgfli
brarydecorations.text.code.tex
\pgf@lib@dec@text@box=\box124
)
\tikz@lib@dec@te@box=\box125
)
(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/frontendlayer/tikz/librarie
s/tikzlibraryintersections.code.tex
(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/libraries/pgflibraryinterse
ctions.code.tex
\pgf@intersect@solutions=\count375
))
(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/frontendlayer/tikz/librarie
s/tikzlibrarypatterns.code.tex
File: tikzlibrarypatterns.code.tex 2020/12/27 v3.1.8b (3.1.8b)

(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/libraries/pgflibrarypattern
s.code.tex
File: pgflibrarypatterns.code.tex 2020/12/27 v3.1.8b (3.1.8b)
))
(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/frontendlayer/tikz/librarie
s/tikzlibrarypositioning.code.tex
File: tikzlibrarypositioning.code.tex 2020/12/27 v3.1.8b (3.1.8b)
)
(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/frontendlayer/tikz/librarie
s/tikzlibraryquotes.code.tex
File: tikzlibraryquotes.code.tex 2020/12/27 v3.1.8b (3.1.8b)
)
(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/frontendlayer/tikz/librarie
s/tikzlibraryshadows.code.tex
File: tikzlibraryshadows.code.tex 2020/12/27 v3.1.8b (3.1.8b)

(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/frontendlayer/tikz/librarie
s/tikzlibraryfadings.code.tex
File: tikzlibraryfadings.code.tex 2020/12/27 v3.1.8b (3.1.8b)

(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/libraries/pgflibraryfadings
.code.tex
File: pgflibraryfadings.code.tex 2020/12/27 v3.1.8b (3.1.8b)
)))
(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/frontendlayer/tikz/librarie
s/tikzlibraryshapes.misc.code.tex
File: tikzlibraryshapes.misc.code.tex 2020/12/27 v3.1.8b (3.1.8b)

(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/libraries/shapes/pgflibrary
shapes.misc.code.tex
File: pgflibraryshapes.misc.code.tex 2020/12/27 v3.1.8b (3.1.8b)
))
(/usr/local/texlive/2021/texmf-dist/tex/generic/pgf/frontendlayer/tikz/librarie
s/tikzlibrarythrough.code.tex
File: tikzlibrarythrough.code.tex 2020/12/27 v3.1.8b (3.1.8b)
)
(/usr/local/texlive/2021/texmf-dist/tex/latex/l3packages/xfp/xfp.sty
Package: xfp 2021-03-12 L3 Floating point unit
)
\tkzRadius=\dimen325
\tkzLength=\dimen326
\tkz@radi=\dimen327
\tkz@ax=\dimen328
\tkz@ay=\dimen329
\tkz@bx=\dimen330
\tkz@by=\dimen331
\tkz@cx=\dimen332
\tkz@cy=\dimen333
\tkz@dx=\dimen334
\tkz@dy=\dimen335
\tkz@tax=\dimen336
\tkz@tay=\dimen337
\tkz@tbx=\dimen338
\tkz@tby=\dimen339
\tkz@tcx=\dimen340
\tkz@tcy=\dimen341
\tkz@tdx=\dimen342
\tkz@tdy=\dimen343
\tkz@cntmk=\count376

Local configuration file tkz-base.cfg found and used
(/usr/local/texlive/2021/texmf-dist/tex/latex/tkz-base/tkz-base.cfg
2020/03/18 3.06c tkz-base.cfg
) (/usr/local/texlive/2021/texmf-dist/tex/latex/tkz-base/tkz-tools-modules.tex
2020/03/18 3.06c tkz-tools-utilities.tex
) (/usr/local/texlive/2021/texmf-dist/tex/latex/tkz-base/tkz-lib-marks.tex
2020/03/18 3.06c tkz-lib-symbols.tex
) (/usr/local/texlive/2021/texmf-dist/tex/latex/tkz-base/tkz-tools-base.tex
2020/03/18 3.06c tkz-tools-base.tex
)
(/usr/local/texlive/2021/texmf-dist/tex/latex/tkz-base/tkz-tools-utilities.tex
2020/03/18 3.06c tkz-tools-utilities.tex
) (/usr/local/texlive/2021/texmf-dist/tex/latex/tkz-euclide/tkz-tools-math.tex
2020/03/18 3.06c tkz-tools-math.tex
) (/usr/local/texlive/2021/texmf-dist/tex/latex/tkz-base/tkz-tools-text.tex
2020/03/18 3.06c tkz-tools-text.tex
) (/usr/local/texlive/2021/texmf-dist/tex/latex/tkz-base/tkz-tools-BB.tex
2020/03/18 3.06c tkz-obj-BB.tex
) (/usr/local/texlive/2021/texmf-dist/tex/latex/tkz-base/tkz-tools-arith.tex
2020/03/18 3.06c tkz-tools-arith.tex
File: tkz-tool-arith.tex tkz-tool-arith 3.02 c
) (/usr/local/texlive/2021/texmf-dist/tex/latex/tkz-base/tkz-tools-print.tex
2020/03/18 3.06c tkz-tools-print.tex
) (/usr/local/texlive/2021/texmf-dist/tex/latex/tkz-base/tkz-tools-misc.tex
2020/03/18 3.06c tkz-tools-misc.tex
) (/usr/local/texlive/2021/texmf-dist/tex/latex/tkz-base/tkz-obj-axes.tex
2020/03/18 3.06c tkz-obj-axes.tex
) (/usr/local/texlive/2021/texmf-dist/tex/latex/tkz-base/tkz-obj-grids.tex
2020/03/18 3.06c tkz-obj-grids.tex
) (/usr/local/texlive/2021/texmf-dist/tex/latex/tkz-base/tkz-obj-marks.tex
2020/03/18 3.07c tkz-obj-marks.tex
) (/usr/local/texlive/2021/texmf-dist/tex/latex/tkz-base/tkz-obj-points.tex
2020/03/18 3.06c tkz-obj-points.tex
) (/usr/local/texlive/2021/texmf-dist/tex/latex/tkz-base/tkz-obj-rep.tex
2020/03/18 3.06c tkz-obj-rep.tex
))
(/usr/local/texlive/2021/texmf-dist/tex/latex/tkz-euclide/tkz-tools-intersectio
ns.tex
2020/03/18 3.06c tkz-tools-intersections.tex
)
(/usr/local/texlive/2021/texmf-dist/tex/latex/tkz-euclide/tkz-tools-angles.tex
2020/03/18 3.06c tkz-tools-angles.tex
)
(/usr/local/texlive/2021/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-angles.tex
2020/03/18 3.06c tkz-tool-eu-angles.tex
\tkz@arcsize=\dimen344
\tkz@fillsize=\dimen345
) (/usr/local/texlive/2021/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-arcs.tex
2020/03/23 3.06c tkz-obj-eu-arcs.tex
)
(/usr/local/texlive/2021/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-compass.te
x
2020/03/18 3.06c tkz-obj-eu-compass.tex
)
(/usr/local/texlive/2021/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-circles.te
x
2020/03/18 3.06c tkz-obj-eu-circles.tex
)
(/usr/local/texlive/2021/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-draw-circl
es.tex
2020/03/18 3.06c tkz-obj-eu-draw-circles.tex
)
(/usr/local/texlive/2021/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-draw-lines
.tex
2020/03/18 3.06c tkz-obj-eu-draw-lines.tex
)
(/usr/local/texlive/2021/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-draw-polyg
ons.tex
2020/03/18 3.06c tkz-obj-eu-polygons.tex
)
(/usr/local/texlive/2021/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-draw-trian
gles.tex)
(/usr/local/texlive/2021/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-lines.tex
2020/03/18 3.06c tkz-obj-eu-lines.tex
)
(/usr/local/texlive/2021/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-points.tex
2020/03/18 3.06c tkz-obj-eu-points.tex
)
(/usr/local/texlive/2021/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-points-by.
tex
2020/03/18 3.06c tkz-tools-eu-points-by.tex
)
(/usr/local/texlive/2021/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-points-rnd
.tex
2020/03/18 3.06c tkz-obj-eu-points-rnd.tex
)
(/usr/local/texlive/2021/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-points-wit
h.tex
2020/03/18 3.06c tkz-obj-eu-points-with.tex
)
(/usr/local/texlive/2021/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-polygons.t
ex
2020/03/18 3.06c tkz-obj-eu-polygons.tex
)
(/usr/local/texlive/2021/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-protractor
.tex
2020/03/18 3.06c tkz-obj-eu-protractor.tex
)
(/usr/local/texlive/2021/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-sectors.te
x
2020/03/18 3.06c tkz-obj-eu-sectors.tex
) (/usr/local/texlive/2021/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-show.tex
2020/03/18 3.06c tkz-obj-eu-show.tex
)
(/usr/local/texlive/2021/texmf-dist/tex/latex/tkz-euclide/tkz-obj-eu-triangles.
tex
2020/03/18 3.06c tkz-obj-eu-triangles.tex
)) (/usr/local/texlive/2021/texmf-dist/tex/latex/dirtytalk/dirtytalk.sty
Package: dirtytalk 2010/11/21 A package making "quoting" easier

(/usr/local/texlive/2021/texmf-dist/tex/latex/base/ifthen.sty
Package: ifthen 2014/09/29 v1.1c Standard LaTeX ifthen package (DPC)
)
\c@dirtytalk@qdepth=\count377
)
(/usr/local/texlive/2021/texmf-dist/tex/latex/csquotes/csquotes.sty
Package: csquotes 2021-02-22 v5.2l context-sensitive quotations (JAW)
\csq@reset=\count378
\csq@gtype=\count379
\csq@glevel=\count380
\csq@qlevel=\count381
\csq@maxlvl=\count382
\csq@tshold=\count383
\csq@ltx@everypar=\toks48

(/usr/local/texlive/2021/texmf-dist/tex/latex/csquotes/csquotes.def
File: csquotes.def 2021-02-22 v5.2l csquotes generic definitions (JAW)
)
Package csquotes Info: Trying to load configuration file 'csquotes.cfg'...
Package csquotes Info: ... configuration file loaded successfully.

(/usr/local/texlive/2021/texmf-dist/tex/latex/csquotes/csquotes.cfg
File: csquotes.cfg 
))
(/usr/local/texlive/2021/texmf-dist/tex/latex/listings/listings.sty
\lst@mode=\count384
\lst@gtempboxa=\box126
\lst@token=\toks49
\lst@length=\count385
\lst@currlwidth=\dimen346
\lst@column=\count386
\lst@pos=\count387
\lst@lostspace=\dimen347
\lst@width=\dimen348
\lst@newlines=\count388
\lst@lineno=\count389
\lst@maxwidth=\dimen349

(/usr/local/texlive/2021/texmf-dist/tex/latex/listings/lstmisc.sty
File: lstmisc.sty 2020/03/24 1.8d (Carsten Heinz)
\c@lstnumber=\count390
\lst@skipnumbers=\count391
\lst@framebox=\box127
)
(/usr/local/texlive/2021/texmf-dist/tex/latex/listings/listings.cfg
File: listings.cfg 2020/03/24 1.8d listings configuration
))
Package: listings 2020/03/24 1.8d (Carsten Heinz)

(/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=\toks50
\XKV@tempa@toks=\toks51
)
\XKV@depth=\count392
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=\count393
))
\c@padzeroesN=\count394
\fc@tmpcatcode=\count395
\@DT@modctr=\count396
\@ordinalctr=\count397
\@orgargctr=\count398
\@strctr=\count399
\@tmpstrctr=\count400
\@DT@loopN=\count401
\@DT@X=\count402
)
(/usr/local/texlive/2021/texmf-dist/tex/latex/datetime/datetime-defaults.sty
Package: datetime-defaults 2013/09/10
)
\@day=\count403
\@month=\count404
\@year=\count405
\c@HOUR=\count406
\c@HOURXII=\count407
\c@MINUTE=\count408
\c@TOHOUR=\count409
\c@TOMINUTE=\count410
\c@SECOND=\count411
\currenthour=\count412
\currentminute=\count413
\currentsecond=\count414
Package datetime Info: No datetime.cfg file found, using default settings on in
put line 308.
\@dtctr=\count415
\dayofyear=\count416
\dayofweek=\count417
LaTeX Info: Redefining \today on input line 736.
\dt@a=\toks52
\dt@b=\toks53
)
(/usr/local/texlive/2021/texmf-dist/tex/latex/ccicons/ccicons.sty
Package: ccicons 2017/10/30 v1.6 LaTeX support for Creative Commons icons
)
(/usr/local/texlive/2021/texmf-dist/tex/latex/chemformula/chemformula.sty
(/usr/local/texlive/2021/texmf-dist/tex/latex/l3packages/xfrac/xfrac.sty
Package: xfrac 2021-03-12 L3 Experimental split-level fractions
\l__xfrac_slash_box=\box128
\l__xfrac_tmp_box=\box129
\l__xfrac_denominator_bot_sep_dim=\dimen350
\l__xfrac_numerator_bot_sep_dim=\dimen351
\l__xfrac_numerator_top_sep_dim=\dimen352
\l__xfrac_slash_left_sep_dim=\dimen353
\l__xfrac_slash_right_sep_dim=\dimen354
\l__xfrac_slash_left_muskip=\muskip19
\l__xfrac_slash_right_muskip=\muskip20

Package xtemplate Info: Declaring object type 'xfrac' taking 3 argument(s) on
(xtemplate)             line 80.

)
(/usr/local/texlive/2021/texmf-dist/tex/latex/units/nicefrac.sty
Package: nicefrac 1998/08/04 v0.9b Nice fractions
\L@UnitsRaiseDisplaystyle=\skip71
\L@UnitsRaiseTextstyle=\skip72
\L@UnitsRaiseScriptstyle=\skip73
)
Package: chemformula 2020/12/22 v4.16 typeset chemical compounds and reactions 
(CN)
\l__chemformula_tmpa_dim=\dimen355
\l__chemformula_tmpb_dim=\dimen356
\l__chemformula_tmpc_dim=\dimen357
\l__chemformula_tmpa_int=\count418
\l__chemformula_tmpb_int=\count419
\l__chemformula_tmpc_int=\count420
\l__chemformula_tmpa_box=\box130
\l__chemformula_tmpb_box=\box131
\l__chemformula_arrow_length_dim=\dimen358
\l__chemformula_arrow_label_height_dim=\dimen359
\l__chemformula_arrow_label_offset_dim=\dimen360
\l__chemformula_arrow_minimum_length_dim=\dimen361
\l__chemformula_arrow_shortage_dim=\dimen362
\l__chemformula_arrow_offset_dim=\dimen363
\l__chemformula_arrow_yshift_dim=\dimen364
\l__chemformula_radical_radius_dim=\dimen365
\l__chemformula_radical_hshift_dim=\dimen366
\l__chemformula_radical_vshift_dim=\dimen367
\l__chemformula_radical_space_dim=\dimen368
\l__chemformula_arrow_head_dim=\dimen369
\l__chemformula_name_dim=\dimen370
\l__chemformula_adduct_space_dim=\dimen371
\l__chemformula_charge_shift_dim=\dimen372
\l__chemformula_subscript_shift_dim=\dimen373
\l__chemformula_superscript_shift_dim=\dimen374
\l__chemformula_subscript_dim=\dimen375
\l__chemformula_superscript_dim=\dimen376
\l__chemformula_bond_dim=\dimen377
\l__chemformula_bond_space_dim=\dimen378
\l__chemformula_elspec_pair_distance_dim=\dimen379
\l__chemformula_elspec_pair_line_length_dim=\dimen380
\l__chemformula_elspec_pair_width_dim=\dimen381
\l__chemformula_kroegervink_positive_radius_dim=\dimen382
\l__chemformula_kroegervink_positive_hshift_dim=\dimen383
\l__chemformula_kroegervink_positive_vshift_dim=\dimen384
\l__chemformula_kroegervink_positive_space_dim=\dimen385
\l__chemformula_stoich_space_skip=\skip74
\l__chemformula_math_space_skip=\skip75
\l__chemformula_additions_symbol_space_skip=\skip76
\l__chemformula_count_tokens_int=\count421
\g__chemformula_lewis_int=\count422
\l__chemformula_arrow_arg_i_box=\box132
\l__chemformula_arrow_arg_ii_box=\box133
\l__chemformula_superscript_box=\box134
\l__chemformula_subscript_box=\box135
\l__chemformula_plus_space_skip=\skip77
\l__chemformula_minus_space_skip=\skip78
)
(/usr/local/texlive/2021/texmf-dist/tex/latex/was/gensymb.sty
Package: gensymb 2003/07/02 v1.0 (WaS)
)
(/usr/local/texlive/2021/texmf-dist/tex/generic/ulem/ulem.sty
\UL@box=\box136
\UL@hyphenbox=\box137
\UL@skip=\skip79
\UL@hook=\toks54
\UL@height=\dimen386
\UL@pe=\count423
\UL@pixel=\dimen387
\ULC@box=\box138
Package: ulem 2019/11/18
\ULdepth=\dimen388
)
(/usr/local/texlive/2021/texmf-dist/tex/generic/babel/babel.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=\count424
\U@D=\dimen389
\l@babelnohyphens=\language87

(/usr/local/texlive/2021/texmf-dist/tex/generic/babel/txtbabel.def)
\bbl@readstream=\read3
)
\bbl@dirlevel=\count425

(/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/cancel/cancel.sty
Package: cancel 2013/04/12 v2.2 Cancel math terms
)
(/usr/local/texlive/2021/texmf-dist/tex/latex/tools/tabularx.sty
Package: tabularx 2020/01/15 v2.11c `tabularx' package (DPC)
\TX@col@width=\dimen390
\TX@old@table=\dimen391
\TX@old@col=\dimen392
\TX@target=\dimen393
\TX@delta=\dimen394
\TX@cols=\count426
\TX@ftn=\toks55
)
(/usr/local/texlive/2021/texmf-dist/tex/latex/colortbl/colortbl.sty
Package: colortbl 2020/01/04 v1.0e Color table columns (DPC)
\everycr=\toks56
\minrowclearance=\skip80
)
(/usr/local/texlive/2021/texmf-dist/tex/latex/exsheets/exsheets.sty
Package: exsheets 2019/09/30 v0.21k Yet another package for the creation of exe
rcise sheets and exams.
\l__exsheets_tmpa_int=\count427
\l__exsheets_tmpb_int=\count428
\l__exsheets_tmpc_int=\count429
\l__exsheets_tmpd_int=\count430
\l__exsheets_tmpe_int=\count431
\g__exsheets_tmpa_int=\count432
\l__exsheets_tmpa_dim=\dimen395
\l__exsheets_tmpb_dim=\dimen396

(/usr/local/texlive/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
))
\l__exsheets_variations_int=\count433
\g__exsheets_questions_id_int=\count434
\g__exsheets_questions_used_int=\count435
\l__exsheets_include_random_int=\count436
\l__exsheets_questions_set_int=\count437
\g__exsheets_select_random_int=\count438
\g__exsheets_selection_number_int=\count439
\l__exsheets_counter_ch_int=\count440
\l__exsheets_current_ch_int=\count441
\l__exsheets_counter_sec_int=\count442
\l__exsheets_current_sec_int=\count443
\l_exsheets_counter_qu_int=\count444
\l__exsheets_questions_skip_below_dim=\dimen397
\l__exsheets_solutions_skip_below_dim=\dimen398
\l__exsheets_blank_dim=\dimen399
\l__exsheets_blank_line_increment_dim=\dimen400
\l__exsheets_blank_line_minimum_length_dim=\dimen401
\l__exsheets_blank_box=\box139

(/usr/local/texlive/2021/texmf-dist/tex/latex/cntformats/cntformats.sty
Package: cntformats 2014/07/20 v0.7 A different way to read counters. (CN)

(/usr/local/texlive/2021/texmf-dist/tex/latex/cnltx/cnltx-base.sty
Package: cnltx-base 2019/11/01 v0.15 LaTeX tools and documenting facilities (CN
)

(/usr/local/texlive/2021/texmf-dist/tex/latex/pgfopts/pgfopts.sty
Package: pgfopts 2014/07/10 v2.1a LaTeX package options with pgfkeys
\pgfopts@list@add@a@toks=\toks57
\pgfopts@list@add@b@toks=\toks58
)
\c@cnltx@tmpa=\count445
\c@cnltx@tmpb=\count446
\c@cnltx@tmpc=\count447
\cnltx@tmpa@length=\skip81
\cnltx@tmpb@length=\skip82
\cnltx@tmpc@length=\skip83
))
\c@question=\count448

(/usr/local/texlive/2021/texmf-dist/tex/latex/exsheets/exsheets_headings.def
File: exsheets_headings.def  2019/09/30 v0.21k ExSheets headings object
\l__exsheets_heading_above_dim=\dimen402
\l__exsheets_heading_below_dim=\dimen403
\l__exsheets_heading_main_coffin=\box140
\l__exsheets_heading_pre_coffin=\box141
\l__exsheets_heading_post_coffin=\box142
\l__exsheets_heading_title_coffin=\box143
\l__exsheets_heading_number_coffin=\box144
\l__exsheets_heading_points_coffin=\box145
\l__exsheets_heading_subtitle_coffin=\box146

Package xtemplate Info: Declaring object type 'exsheets-heading' taking 5
(xtemplate)             argument(s) on line 184.

)
(/usr/local/texlive/2021/texmf-dist/tex/latex/exsheets/exsheets_headings.cfg
File: exsheets_headings.cfg  2019/09/30 v0.21k ExSheets headings instances 
)
(/usr/local/texlive/2021/texmf-dist/tex/latex/translations/translations.sty
Package: translations 2021/01/17 v1.10a internationalization of LaTeX2e package
s (CN)
))
(/usr/local/texlive/2021/texmf-dist/tex/latex/harpoon/harpoon.sty
Package: harpoon 1994/11/02 Harpoon drawing package by Tobias Kuipers
\argwd=\skip84
\arght=\skip85
)
(/usr/local/texlive/2021/texmf-dist/tex/latex/readarray/readarray.sty
Package: readarray 2016/11/07\ 2.0\ Routines for inputting 2D and 3D array data
 and recalling it on an element-by-element basis.

(/usr/local/texlive/2021/texmf-dist/tex/generic/listofitems/listofitems.sty
(/usr/local/texlive/2021/texmf-dist/tex/generic/listofitems/listofitems.tex
\loi_cnt_foreach_nest=\count449
\loi_nestcnt=\count450
)
Package: listofitems 2019/08/21 v1.63 Grab items in lists using user-specified 
sep char (CT)
)
\c@@index=\count451
\c@@plane=\count452
\c@@row=\count453
\c@@col=\count454
\c@use@args=\count455
\c@@record=\count456
\c@arg@index=\count457
\c@break@count=\count458
\c@index@count=\count459
\c@loop@count=\count460
\Arg@toks=\toks59
\@arrayident@toks=\toks60
\rdar@file=\read4

readarray: bounds checking OFF
) (/usr/local/texlive/2021/texmf-dist/tex/latex/forloop/forloop.sty
Package: forloop 2006/09/18 v3.0 For Loops for LaTeX
)

! LaTeX Error: Option clash for package fp.

See the LaTeX manual or LaTeX Companion for explanation.
Type  H <return>  for immediate help.
 ...                                              
                                                  
l.43 \usepackage
                {multirow}
The package fp has already been loaded with options:
  []
There has now been an attempt to load it with options
  [nomessages]
Adding the global options:
  ,nomessages
to your \documentclass declaration may fix this.
Try typing  <return>  to proceed.

(/usr/local/texlive/2021/texmf-dist/tex/latex/multirow/multirow.sty
Package: multirow 2021/03/15 v2.8 Span multiple rows of a table
\multirow@colwidth=\skip86
\multirow@cntb=\count461
\multirow@dima=\skip87
\bigstrutjot=\dimen404
)
(/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=\count462

(/usr/local/texlive/2021/texmf-dist/tex/latex/logreq/logreq.def
File: logreq.def 2010/08/04 v1.0 logreq spec v1.0
))
\c@tabx@nest=\count463
\c@listtotal=\count464
\c@listcount=\count465
\c@liststart=\count466
\c@liststop=\count467
\c@citecount=\count468
\c@citetotal=\count469
\c@multicitecount=\count470
\c@multicitetotal=\count471
\c@instcount=\count472
\c@maxnames=\count473
\c@minnames=\count474
\c@maxitems=\count475
\c@minitems=\count476
\c@citecounter=\count477
\c@maxcitecounter=\count478
\c@savedcitecounter=\count479
\c@uniquelist=\count480
\c@uniquename=\count481
\c@refsection=\count482
\c@refsegment=\count483
\c@maxextratitle=\count484
\c@maxextratitleyear=\count485
\c@maxextraname=\count486
\c@maxextradate=\count487
\c@maxextraalpha=\count488
\c@abbrvpenalty=\count489
\c@highnamepenalty=\count490
\c@lownamepenalty=\count491
\c@maxparens=\count492
\c@parenlevel=\count493
\blx@tempcnta=\count494
\blx@tempcntb=\count495
\blx@tempcntc=\count496
\blx@maxsection=\count497
\blx@maxsegment@0=\count498
\blx@notetype=\count499
\blx@parenlevel@text=\count500
\blx@parenlevel@foot=\count501
\blx@sectionciteorder@0=\count502
\blx@entrysetcounter=\count503
\blx@biblioinstance=\count504
\labelnumberwidth=\skip88
\labelalphawidth=\skip89
\biblabelsep=\skip90
\bibitemsep=\skip91
\bibnamesep=\skip92
\bibinitsep=\skip93
\bibparsep=\skip94
\bibhang=\skip95
\blx@bcfin=\read5
\blx@bcfout=\write5
\blx@langwohyphens=\language88
\c@mincomprange=\count505
\c@maxcomprange=\count506
\c@mincompwidth=\count507
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 custom data model...
Package biblatex Info: ... file 'biblatex-dm.cfg' not found.
\c@afterword=\count508
\c@savedafterword=\count509
\c@annotator=\count510
\c@savedannotator=\count511
\c@author=\count512
\c@savedauthor=\count513
\c@bookauthor=\count514
\c@savedbookauthor=\count515
\c@commentator=\count516
\c@savedcommentator=\count517
\c@editor=\count518
\c@savededitor=\count519
\c@editora=\count520
\c@savededitora=\count521
\c@editorb=\count522
\c@savededitorb=\count523
\c@editorc=\count524
\c@savededitorc=\count525
\c@foreword=\count526
\c@savedforeword=\count527
\c@holder=\count528
\c@savedholder=\count529
\c@introduction=\count530
\c@savedintroduction=\count531
\c@namea=\count532
\c@savednamea=\count533
\c@nameb=\count534
\c@savednameb=\count535
\c@namec=\count536
\c@savednamec=\count537
\c@translator=\count538
\c@savedtranslator=\count539
\c@shortauthor=\count540
\c@savedshortauthor=\count541
\c@shorteditor=\count542
\c@savedshorteditor=\count543
\c@labelname=\count544
\c@savedlabelname=\count545
\c@institution=\count546
\c@savedinstitution=\count547
\c@lista=\count548
\c@savedlista=\count549
\c@listb=\count550
\c@savedlistb=\count551
\c@listc=\count552
\c@savedlistc=\count553
\c@listd=\count554
\c@savedlistd=\count555
\c@liste=\count556
\c@savedliste=\count557
\c@listf=\count558
\c@savedlistf=\count559
\c@location=\count560
\c@savedlocation=\count561
\c@organization=\count562
\c@savedorganization=\count563
\c@origlocation=\count564
\c@savedoriglocation=\count565
\c@origpublisher=\count566
\c@savedorigpublisher=\count567
\c@publisher=\count568
\c@savedpublisher=\count569
\c@language=\count570
\c@savedlanguage=\count571
\c@origlanguage=\count572
\c@savedoriglanguage=\count573
\c@pageref=\count574
\c@savedpageref=\count575
\shorthandwidth=\skip96
\shortjournalwidth=\skip97
\shortserieswidth=\skip98
\shorttitlewidth=\skip99
\shortauthorwidth=\skip100
\shorteditorwidth=\skip101
\locallabelnumberwidth=\skip102
\locallabelalphawidth=\skip103
\localshorthandwidth=\skip104
\localshortjournalwidth=\skip105
\localshortserieswidth=\skip106
\localshorttitlewidth=\skip107
\localshortauthorwidth=\skip108
\localshorteditorwidth=\skip109
Package biblatex Info: Trying to load compatibility code...
Package biblatex Info: ... file 'blx-compat.def' found.

(/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=\count576
\c@textcitetotal=\count577
\c@textcitemaxnames=\count578
\c@biburlbigbreakpenalty=\count579
\c@biburlbreakpenalty=\count580
\c@biburlnumpenalty=\count581
\c@biburlucpenalty=\count582
\c@biburllcpenalty=\count583
\biburlbigskip=\muskip21
\biburlnumskip=\muskip22
\biburlucskip=\muskip23
\biburllcskip=\muskip24
\c@smartand=\count584
)
Package biblatex Info: Trying to load bibliography style 'numeric'...
Package biblatex Info: ... file 'numeric.bbx' found.

(/usr/local/texlive/2021/texmf-dist/tex/latex/biblatex/bbx/numeric.bbx
File: numeric.bbx 2020/12/31 v3.16 biblatex bibliography style (PK/MW)
Package biblatex Info: Trying to load bibliography style 'standard'...
Package biblatex Info: ... file 'standard.bbx' found.

(/usr/local/texlive/2021/texmf-dist/tex/latex/biblatex/bbx/standard.bbx
File: standard.bbx 2020/12/31 v3.16 biblatex bibliography style (PK/MW)
\c@bbx:relatedcount=\count585
\c@bbx:relatedtotal=\count586
))
Package biblatex Info: Trying to load citation style 'numeric'...
Package biblatex Info: ... file 'numeric.cbx' found.

(/usr/local/texlive/2021/texmf-dist/tex/latex/biblatex/cbx/numeric.cbx
File: numeric.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 '\supercite'.
Package biblatex Info: Redefining '\textcite'.
Package biblatex Info: Redefining '\textcites'.
Package biblatex Info: Redefining '\cites'.
Package biblatex Info: Redefining '\parencites'.
Package biblatex Info: Redefining '\smartcites'.
)
Package biblatex Info: Trying to load configuration file...
Package biblatex Info: ... file 'biblatex.cfg' found.

(/usr/local/texlive/2021/texmf-dist/tex/latex/biblatex/biblatex.cfg
File: biblatex.cfg 
))

Package tasks Warning: You've tried setting command `\NewTasks ' on line 122.
(tasks)                However, command `\NewTasks ' is deprecated. Please use
(tasks)                command `\NewTasksEnvironment ' instead. Refer to the
(tasks)                manual for details.

Package csquotes Info: Checking for multilingual support...
Package csquotes Info: ... found 'babel' package.
Package csquotes Info: Adjusting default style.

Package csquotes Warning: No style for language 'slovene'.
(csquotes)                Using fallback style on input line 138.

Package csquotes Info: Redefining alias 'default' -> 'fallback'.
No file dokument.aux.
\openout1 = `dokument.aux'.

LaTeX Font Info:    Checking defaults for OML/cmm/m/it on input line 138.
LaTeX Font Info:    ... okay on input line 138.
LaTeX Font Info:    Checking defaults for OMS/cmsy/m/n on input line 138.
LaTeX Font Info:    ... okay on input line 138.
LaTeX Font Info:    Checking defaults for OT1/cmr/m/n on input line 138.
LaTeX Font Info:    ... okay on input line 138.
LaTeX Font Info:    Checking defaults for T1/cmr/m/n on input line 138.
LaTeX Font Info:    ... okay on input line 138.
LaTeX Font Info:    Checking defaults for TS1/cmr/m/n on input line 138.
LaTeX Font Info:    ... okay on input line 138.
LaTeX Font Info:    Checking defaults for OMX/cmex/m/n on input line 138.
LaTeX Font Info:    ... okay on input line 138.
LaTeX Font Info:    Checking defaults for U/cmr/m/n on input line 138.
LaTeX Font Info:    ... okay on input line 138.
LaTeX Font Info:    Checking defaults for PD1/pdf/m/n on input line 138.
LaTeX Font Info:    ... okay on input line 138.
LaTeX Font Info:    Checking defaults for PU/pdf/m/n on input line 138.
LaTeX Font Info:    ... okay on input line 138.
Package hyperref Info: Link coloring OFF on input line 138.
(/usr/local/texlive/2021/texmf-dist/tex/latex/hyperref/nameref.sty
Package: nameref 2021-04-02 v2.47 Cross-referencing by name of section

(/usr/local/texlive/2021/texmf-dist/tex/latex/refcount/refcount.sty
Package: refcount 2019/12/15 v3.6 Data extraction from label references (HO)
)
(/usr/local/texlive/2021/texmf-dist/tex/generic/gettitlestring/gettitlestring.s
ty
Package: gettitlestring 2019/12/15 v1.6 Cleanup title references (HO)
)
\c@section@level=\count587
)
LaTeX Info: Redefining \ref on input line 138.
LaTeX Info: Redefining \pageref on input line 138.
LaTeX Info: Redefining \nameref on input line 138.
\@outlinefile=\write6
\openout6 = `dokument.out'.


*geometry* driver: auto-detecting
*geometry* detected driver: pdftex
*geometry* verbose mode - [ preamble ] result:
* driver: pdftex
* paper: a4paper
* layout: <same size as paper>
* layoutoffset:(h,v)=(0.0pt,0.0pt)
* modes: 
* h-part:(L,W,R)=(45.80893pt, 505.89pt, 45.80894pt)
* v-part:(T,H,B)=(48.93872pt, 722.7pt, 73.40813pt)
* \paperwidth=597.50787pt
* \paperheight=845.04684pt
* \textwidth=505.89pt
* \textheight=722.7pt
* \oddsidemargin=-26.46106pt
* \evensidemargin=-26.46106pt
* \topmargin=-60.33127pt
* \headheight=12.0pt
* \headsep=25.0pt
* \topskip=10.0pt
* \footskip=30.0pt
* \marginparwidth=65.0pt
* \marginparsep=11.0pt
* \columnsep=10.0pt
* \skip\footins=9.0pt plus 4.0pt minus 2.0pt
* \hoffset=0.0pt
* \voffset=0.0pt
* \mag=1000
* \@twocolumnfalse
* \@twosidefalse
* \@mparswitchfalse
* \@reversemarginfalse
* (1in=72.27pt=25.4mm, 1cm=28.453pt)

(/usr/local/texlive/2021/texmf-dist/tex/context/base/mkii/supp-pdf.mkii
[Loading MPS to PDF converter (version 2006.09.02).]
\scratchcounter=\count588
\scratchdimen=\dimen405
\scratchbox=\box147
\nofMPsegments=\count589
\nofMParguments=\count590
\everyMPshowfont=\toks61
\MPscratchCnt=\count591
\MPscratchDim=\dimen406
\MPnumerator=\count592
\makeMPintoPDFobject=\count593
\everyMPtoPDFconversion=\toks62
) (/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
Package epstopdf-base Info: Redefining graphics rule for `.eps' on input line 4
85.

(/usr/local/texlive/2021/texmf-dist/tex/latex/latexconfig/epstopdf-sys.cfg
File: epstopdf-sys.cfg 2010/07/13 v1.3 Configuration of (r)epstopdf for TeX Liv
e
))

Package pgfplots Warning: running in backwards compatibility mode (unsuitable t
ick labels; missing features). Consider writing \pgfplotsset{compat=1.17} into 
your preamble.
 on input line 138.


(/usr/local/texlive/2021/texmf-dist/tex/latex/siunitx/siunitx-abbreviations.cfg
File: siunitx-abbreviations.cfg 2021-04-09 v2.8d siunitx: Abbreviated units
)
(/usr/local/texlive/2021/texmf-dist/tex/latex/translator/translator-basic-dicti
onary-English.dict
Dictionary: translator-basic-dictionary, Language: English 
)
\c@lstlisting=\count594
\symgns@font=\mathgroup6
LaTeX Font Info:    Overwriting symbol font `gns@font' in version `bold'
(Font)                  TS1/cmr/m/n --> TS1/cmr/b/n on input line 138.
Package gensymb Info: Math companion symbols declared on input line 138.
LaTeX Info: Redefining \degree on input line 138.
LaTeX Info: Redefining \celsius on input line 138.
Package gensymb Info: Using text companion symbols for \degree, \celsius and \p
erthousand on input line 138.
LaTeX Info: Redefining \ohm on input line 138.
Package gensymb Info: Using \textohm for \ohm on input line 138.
LaTeX Info: Redefining \micro on input line 138.
Package gensymb Info: Using \textmu for \micro on input line 138.

Package exsheets Info: Loading custom configurations file
(exsheets)             `exsheets_configurations.cfg'.


(/usr/local/texlive/2021/texmf-dist/tex/latex/exsheets/exsheets_configurations.
cfg
File: exsheets_configurations.cfg 
)
Package translations Info: no dictionary file `translations-basic-dictionary-sl
ovenian.trsl' found. on input line 138.
Package biblatex Info: Trying to load language 'slovene'...
Package biblatex Info: ... file 'slovene.lbx' found.
 (/usr/local/texlive/2021/texmf-dist/tex/latex/biblatex/lbx/slovene.lbx
File: slovene.lbx 2020/12/31 v3.16 biblatex localization (PK/MW)
)
Package biblatex Info: Input encoding 'utf8' detected.
Package biblatex Info: Automatic encoding selection.
(biblatex)             Assuming data encoding 'utf8'.
Package biblatex Info: Document encoding is UTF8 ....
Package biblatex Info: ... and expl3
(biblatex)             2021-02-18 L3 programming layer (loader) 
(biblatex)             is new enough (at least 2020/04/06),
(biblatex)             setting 'casechanger=expl3'.

(/usr/local/texlive/2021/texmf-dist/tex/latex/biblatex/blx-case-expl3.sty
Package: blx-case-expl3 2020/12/31 v3.16 expl3 case changing code for biblatex
)
\openout5 = `dokument.bcf'.

Package biblatex Info: Trying to load bibliographic data...
Package biblatex Info: ... file 'dokument.bbl' not found.

No file dokument.bbl.
Package biblatex Info: Reference section=0 on input line 138.
Package biblatex Info: Reference segment=0 on input line 138.
LaTeX Font Info:    Trying to load font information for U+msa on input line 138
.
(/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 138
.

(/usr/local/texlive/2021/texmf-dist/tex/latex/amsfonts/umsb.fd
File: umsb.fd 2013/01/14 v3.01 AMS symbols B
)

LaTeX Warning: File `../predstavitev/totem.jpg' not found on input line 156.


! Package pdftex.def Error: File `../predstavitev/totem.jpg' not found: using d
raft setting.

See the pdftex.def package documentation for explanation.
Type  H <return>  for immediate help.
 ...                                              
                                                  
l.156 ...cs[height=9cm]{../predstavitev/totem.jpg}
                                                  
Try typing  <return>  to proceed.
If that doesn't work, type  X <return>  to quit.


Overfull \hbox (8.20015pt too wide) in paragraph at lines 156--157
 [][] 
 []


LaTeX Warning: File `odstrani-conv.jpg' not found on input line 161.


! Package pdftex.def Error: File `odstrani-conv.jpg' not found: using draft set
ting.

See the pdftex.def package documentation for explanation.
Type  H <return>  for immediate help.
 ...                                              
                                                  
l.161 ...degraphics[height=9cm]{odstrani-conv.jpg}
                                                  
Try typing  <return>  to proceed.
If that doesn't work, type  X <return>  to quit.


Overfull \hbox (8.20015pt too wide) in paragraph at lines 161--162
 [][] 
 []

[1

{/usr/local/texlive/2021/texmf-var/fonts/map/pdftex/updmap/pdftex.map}pdfTeX wa
rning (ext4): destination with the same identifier (name{figure.1}) has been al
ready used, duplicate ignored
<argument> ...shipout:D \box_use:N \l_shipout_box 
                                                  
l.170 \begin{center}
                    pdfTeX warning (ext4): destination with the same identifier
 (name{figure.2}) has been already used, duplicate ignored
<argument> ...shipout:D \box_use:N \l_shipout_box 
                                                  
l.170 \begin{center}
                    ]
\openout3 = `dokument.pgf-plot.gnuplot'.

runsystem(gnuplot dokument.pgf-plot.gnuplot)...executed.

PGFPlots: reading {dokument.pgf-plot.table}


Package pgfplots Warning: the current plot has no coordinates (or all have been
 filtered away) on input line 202.

 [warning /pgfplots/warning/plot without coordinates]
\openout3 = `dokument.pgf-plot.gnuplot'.

runsystem(gnuplot dokument.pgf-plot.gnuplot)...executed.

PGFPlots: reading {dokument.pgf-plot.table}

Package pgfplots Warning: the current plot has no coordinates (or all have been
 filtered away) on input line 207.

 [warning /pgfplots/warning/plot without coordinates]
\openout3 = `dokument.pgf-plot.gnuplot'.

runsystem(gnuplot dokument.pgf-plot.gnuplot)...executed.

PGFPlots: reading {dokument.pgf-plot.table}

Package pgfplots Warning: the current plot has no coordinates (or all have been
 filtered away) on input line 212.

 [warning /pgfplots/warning/plot without coordinates]

Package pgfplots Warning: You have an axis with empty range (in direction y). R
eplacing it with a default range and clearing all plots. on input line 213.

 [warning /pgfplots/warning/empty range cleared axis]

! Package pgfkeys Error: I do not know the key '/tikz/use comma' and I am going
 to ignore it. Perhaps you misspelled it.

See the pgfkeys package documentation for explanation.
Type  H <return>  for immediate help.
 ...                                              
                                                  
l.213 	\end{axis}
                 
This error message was generated by an \errmessage
command, so I can't give any explicit help.
Pretend that you're Hercule Poirot: Examine all clues,
and deduce the truth by order and method.


Overfull \hbox (22.49725pt too wide) in paragraph at lines 214--215
[][] 
 []


LaTeX Warning: Empty bibliography on input line 226.

[2] (./dokument.aux)

LaTeX Warning: There were undefined references.


Package rerunfilecheck Warning: File `dokument.out' has changed.
(rerunfilecheck)                Rerun to get outlines right
(rerunfilecheck)                or use package `bookmark'.

Package rerunfilecheck Info: Checksums for `dokument.out':
(rerunfilecheck)             Before: <no file>
(rerunfilecheck)             After:  B48A0ED61953EC7FF3A0C58C866712D5;1051.

Package biblatex Warning: Please (re)run Biber on the file:
(biblatex)                dokument
(biblatex)                and rerun LaTeX afterwards.

Package logreq Info: Writing requests to 'dokument.run.xml'.
\openout1 = `dokument.run.xml'.

 ) 
Here is how much of TeX's memory you used:
 53711 strings out of 478994
 1217747 string characters out of 5858190
 2119156 words of memory out of 5000000
 70167 multiletter control sequences out of 15000+600000
 415940 words of font info for 76 fonts, out of 8000000 for 9000
 1141 hyphenation exceptions out of 8191
 102i,14n,111p,1183b,1955s stack positions out of 5000i,500n,10000p,200000b,80000s
</usr/local/texlive/2021/texmf-dist/fonts/type1/public/amsfonts/cm/cmbx10.pfb
></usr/local/texlive/2021/texmf-dist/fonts/type1/public/amsfonts/cm/cmbx12.pfb>
</usr/local/texlive/2021/texmf-dist/fonts/type1/public/amsfonts/cm/cmmi10.pfb><
/usr/local/texlive/2021/texmf-dist/fonts/type1/public/amsfonts/cm/cmmi7.pfb></u
sr/local/texlive/2021/texmf-dist/fonts/type1/public/amsfonts/cm/cmr10.pfb></usr
/local/texlive/2021/texmf-dist/fonts/type1/public/amsfonts/cm/cmr12.pfb></usr/l
ocal/texlive/2021/texmf-dist/fonts/type1/public/amsfonts/cm/cmr17.pfb></usr/loc
al/texlive/2021/texmf-dist/fonts/type1/public/amsfonts/cm/cmr5.pfb></usr/local/
texlive/2021/texmf-dist/fonts/type1/public/amsfonts/cm/cmr6.pfb></usr/local/tex
live/2021/texmf-dist/fonts/type1/public/amsfonts/cm/cmr7.pfb></usr/local/texliv
e/2021/texmf-dist/fonts/type1/public/amsfonts/cm/cmsy10.pfb></usr/local/texlive
/2021/texmf-dist/fonts/type1/public/amsfonts/cm/cmsy7.pfb></usr/local/texlive/2
021/texmf-dist/fonts/type1/public/amsfonts/cm/cmtt10.pfb></usr/local/texlive/20
21/texmf-dist/fonts/type1/public/amsfonts/cm/cmtt8.pfb>
Output written on dokument.pdf (2 pages, 148450 bytes).
PDF statistics:
 119 PDF objects out of 1000 (max. 8388607)
 84 compressed objects within 1 object stream
 15 named destinations out of 1000 (max. 500000)
 109 words of extra memory for PDF output out of 10000 (max. 10000000)