-
Notifications
You must be signed in to change notification settings - Fork 1
/
Seminar 6-Walrasian Equilibrium in a Barter Economy.log
1714 lines (1593 loc) · 66 KB
/
Seminar 6-Walrasian Equilibrium in a Barter Economy.log
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
This is XeTeX, Version 3.14159265-2.6-0.999992 (MiKTeX 20.7) (preloaded format=xelatex 2020.8.31) 16 NOV 2020 20:23
entering extended mode
**"./Seminar 6-Walrasian Equilibrium in a Barter Economy.tex"
("Seminar 6-Walrasian Equilibrium in a Barter Economy.tex"
LaTeX2e <2020-02-02> patch level 5
L3 programming layer <2020-08-07>
(C:\Users\Xiaoguang\AppData\Local\Programs\MiKTeX\tex/latex/base\article.cls
Document Class: article 2019/12/20 v1.4l Standard LaTeX document class
(C:\Users\Xiaoguang\AppData\Local\Programs\MiKTeX\tex/latex/base\size10.clo
File: size10.clo 2019/12/20 v1.4l Standard LaTeX file (size option)
)
\c@part=\count164
\c@section=\count165
\c@subsection=\count166
\c@subsubsection=\count167
\c@paragraph=\count168
\c@subparagraph=\count169
\c@figure=\count170
\c@table=\count171
\abovecaptionskip=\skip47
\belowcaptionskip=\skip48
\bibindent=\dimen134
)
(C:\Users\Xiaoguang\AppData\Local\Programs\MiKTeX\tex/latex/base\inputenc.sty
Package: inputenc 2018/08/11 v1.3c Input encoding file
\inpenc@prehook=\toks15
\inpenc@posthook=\toks16
Package inputenc Warning: inputenc package ignored with utf8 based engines.
) (C:\Users\Xiaoguang\AppData\Local\Programs\MiKTeX\tex/latex/base\fontenc.sty
Package: fontenc 2020/02/11 v2.0o Standard LaTeX package
LaTeX Font Info: Trying to load font information for T1+lmr on input line 11
2.
(C:\Users\Xiaoguang\AppData\Local\Programs\MiKTeX\tex/latex/lm\t1lmr.fd
File: t1lmr.fd 2009/10/30 v1.6 Font defs for Latin Modern
))
(C:\Users\Xiaoguang\AppData\Local\Programs\MiKTeX\tex/generic/babel\babel.sty
Package: babel 2020/07/13 3.47 The Babel package
(C:\Users\Xiaoguang\AppData\Local\Programs\MiKTeX\tex/generic/babel\babel.def
File: babel.def 2020/07/13 3.47 Babel common definitions
\babel@savecnt=\count172
\U@D=\dimen135
\l@babelnohyphens=\language79
(C:\Users\Xiaoguang\AppData\Local\Programs\MiKTeX\tex/generic/babel\xebabel.def
(C:\Users\Xiaoguang\AppData\Local\Programs\MiKTeX\tex/generic/babel\txtbabel.de
f))
\bbl@readstream=\read2
)
\bbl@dirlevel=\count173
*************************************
* Local config file bblopts.cfg used
*
(C:\Users\Xiaoguang\AppData\Local\Programs\MiKTeX\tex/latex/arabi\bblopts.cfg
File: bblopts.cfg 2005/09/08 v0.1 add Arabic and Farsi to "declared" options of
babel
)
(C:\Users\Xiaoguang\AppData\Local\Programs\MiKTeX\tex/latex/babel-english\engli
sh.ldf
Language: english 2017/06/06 v3.3r English support from the babel system
Package babel Info: \l@canadian = using hyphenrules for english
(babel) (\language0) on input line 102.
Package babel Info: \l@australian = using hyphenrules for ukenglish
(babel) (\language73) on input line 105.
Package babel Info: \l@newzealand = using hyphenrules for ukenglish
(babel) (\language73) on input line 108.
))
(C:\Users\Xiaoguang\AppData\Local\Programs\MiKTeX\tex/latex/hyperref\hyperref.s
ty
Package: hyperref 2020-05-15 v7.00e Hypertext links for LaTeX
(C:\Users\Xiaoguang\AppData\Local\Programs\MiKTeX\tex/generic/ltxcmds\ltxcmds.s
ty
Package: ltxcmds 2019/12/15 v1.24 LaTeX kernel commands for general use (HO)
)
(C:\Users\Xiaoguang\AppData\Local\Programs\MiKTeX\tex/generic/iftex\iftex.sty
Package: iftex 2020/03/06 v1.0d TeX engine tests
)
(C:\Users\Xiaoguang\AppData\Local\Programs\MiKTeX\tex/generic/pdftexcmds\pdftex
cmds.sty
Package: pdftexcmds 2020-06-27 v0.33 Utility functions of pdfTeX for LuaTeX (HO
)
(C:\Users\Xiaoguang\AppData\Local\Programs\MiKTeX\tex/generic/infwarerr\infware
rr.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 not found.
)
(C:\Users\Xiaoguang\AppData\Local\Programs\MiKTeX\tex/latex/graphics\keyval.sty
Package: keyval 2014/10/28 v1.15 key=value parser (DPC)
\KV@toks@=\toks17
)
(C:\Users\Xiaoguang\AppData\Local\Programs\MiKTeX\tex/generic/kvsetkeys\kvsetke
ys.sty
Package: kvsetkeys 2019/12/15 v1.18 Key value parser (HO)
)
(C:\Users\Xiaoguang\AppData\Local\Programs\MiKTeX\tex/generic/kvdefinekeys\kvde
finekeys.sty
Package: kvdefinekeys 2019-12-19 v1.6 Define keys (HO)
)
(C:\Users\Xiaoguang\AppData\Local\Programs\MiKTeX\tex/generic/pdfescape\pdfesca
pe.sty
Package: pdfescape 2019/12/09 v1.15 Implements pdfTeX's escape features (HO)
)
(C:\Users\Xiaoguang\AppData\Local\Programs\MiKTeX\tex/latex/hycolor\hycolor.sty
Package: hycolor 2020-01-27 v1.10 Color options for hyperref/bookmark (HO)
)
(C:\Users\Xiaoguang\AppData\Local\Programs\MiKTeX\tex/latex/letltxmacro\letltxm
acro.sty
Package: letltxmacro 2019/12/03 v1.6 Let assignment for LaTeX macros (HO)
)
(C:\Users\Xiaoguang\AppData\Local\Programs\MiKTeX\tex/latex/auxhook\auxhook.sty
Package: auxhook 2019-12-17 v1.6 Hooks for auxiliary files (HO)
)
(C:\Users\Xiaoguang\AppData\Local\Programs\MiKTeX\tex/latex/kvoptions\kvoptions
.sty
Package: kvoptions 2019/11/29 v3.13 Key value format for package options (HO)
)
\@linkdim=\dimen136
\Hy@linkcounter=\count174
\Hy@pagecounter=\count175
(C:\Users\Xiaoguang\AppData\Local\Programs\MiKTeX\tex/latex/hyperref\pd1enc.def
File: pd1enc.def 2020-05-15 v7.00e Hyperref: PDFDocEncoding definition (HO)
)
(C:\Users\Xiaoguang\AppData\Local\Programs\MiKTeX\tex/generic/intcalc\intcalc.s
ty
Package: intcalc 2019/12/15 v1.3 Expandable calculations with integers (HO)
)
(C:\Users\Xiaoguang\AppData\Local\Programs\MiKTeX\tex/generic/etexcmds\etexcmds
.sty
Package: etexcmds 2019/12/15 v1.7 Avoid name clashes with e-TeX commands (HO)
)
\Hy@SavedSpaceFactor=\count176
Package hyperref Info: Hyper figures OFF on input line 4464.
Package hyperref Info: Link nesting OFF on input line 4469.
Package hyperref Info: Hyper index ON on input line 4472.
Package hyperref Info: Plain pages OFF on input line 4479.
Package hyperref Info: Backreferencing OFF on input line 4484.
Package hyperref Info: Implicit mode ON; LaTeX internals redefined.
Package hyperref Info: Bookmarks ON on input line 4717.
\c@Hy@tempcnt=\count177
(C:\Users\Xiaoguang\AppData\Local\Programs\MiKTeX\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 5076.
\XeTeXLinkMargin=\dimen137
(C:\Users\Xiaoguang\AppData\Local\Programs\MiKTeX\tex/generic/bitset\bitset.sty
Package: bitset 2019/12/09 v1.3 Handle bit-vector datatype (HO)
(C:\Users\Xiaoguang\AppData\Local\Programs\MiKTeX\tex/generic/bigintcalc\bigint
calc.sty
Package: bigintcalc 2019/12/15 v1.5 Expandable calculations on big integers (HO
)
))
\Fld@menulength=\count178
\Field@Width=\dimen138
\Fld@charsize=\dimen139
Package hyperref Info: Hyper figures OFF on input line 6347.
Package hyperref Info: Link nesting OFF on input line 6352.
Package hyperref Info: Hyper index ON on input line 6355.
Package hyperref Info: backreferencing OFF on input line 6362.
Package hyperref Info: Link coloring OFF on input line 6367.
Package hyperref Info: Link coloring with OCG OFF on input line 6372.
Package hyperref Info: PDF/A mode OFF on input line 6377.
LaTeX Info: Redefining \ref on input line 6417.
LaTeX Info: Redefining \pageref on input line 6421.
(C:\Users\Xiaoguang\AppData\Local\Programs\MiKTeX\tex/generic/atbegshi\atbegshi
.sty
Package: atbegshi 2019/12/05 v1.19 At begin shipout hook (HO)
)
\Hy@abspage=\count179
\c@Item=\count180
\c@Hfootnote=\count181
)
Package hyperref Info: Driver (autodetected): hxetex.
(C:\Users\Xiaoguang\AppData\Local\Programs\MiKTeX\tex/latex/hyperref\hxetex.def
File: hxetex.def 2020-05-15 v7.00e Hyperref driver for XeTeX
(C:\Users\Xiaoguang\AppData\Local\Programs\MiKTeX\tex/latex/hyperref\puenc.def
File: puenc.def 2020-05-15 v7.00e Hyperref: PDF Unicode definition (HO)
)
(C:\Users\Xiaoguang\AppData\Local\Programs\MiKTeX\tex/generic/stringenc\stringe
nc.sty
Package: stringenc 2019/11/29 v1.12 Convert strings between diff. encodings (HO
)
)
\pdfm@box=\box45
\c@Hy@AnnotLevel=\count182
\HyField@AnnotCount=\count183
\Fld@listcount=\count184
\c@bookmark@seq@number=\count185
(C:\Users\Xiaoguang\AppData\Local\Programs\MiKTeX\tex/latex/rerunfilecheck\reru
nfilecheck.sty
Package: rerunfilecheck 2019/12/05 v1.9 Rerun checks for auxiliary files (HO)
(C:\Users\Xiaoguang\AppData\Local\Programs\MiKTeX\tex/latex/atveryend\atveryend
.sty
Package: atveryend 2019-12-11 v1.11 Hooks at the very end of document (HO)
Package atveryend Info: \enddocument detected (standard20110627).
)
(C:\Users\Xiaoguang\AppData\Local\Programs\MiKTeX\tex/generic/uniquecounter\uni
quecounter.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
)
Package hyperref Info: Option `colorlinks' set `true' on input line 11.
(C:\Users\Xiaoguang\AppData\Local\Programs\MiKTeX\tex/latex/graphics\graphicx.s
ty
Package: graphicx 2019/11/30 v1.2a Enhanced LaTeX Graphics (DPC,SPQR)
(C:\Users\Xiaoguang\AppData\Local\Programs\MiKTeX\tex/latex/graphics\graphics.s
ty
Package: graphics 2019/11/30 v1.4a Standard LaTeX Graphics (DPC,SPQR)
(C:\Users\Xiaoguang\AppData\Local\Programs\MiKTeX\tex/latex/graphics\trig.sty
Package: trig 2016/01/03 v1.10 sin cos tan (DPC)
)
(C:\Users\Xiaoguang\AppData\Local\Programs\MiKTeX\tex/latex/graphics-cfg\graphi
cs.cfg
File: graphics.cfg 2016/06/04 v1.11 sample graphics configuration
)
Package graphics Info: Driver file: xetex.def on input line 105.
(C:\Users\Xiaoguang\AppData\Local\Programs\MiKTeX\tex/latex/graphics-def\xetex.
def
File: xetex.def 2017/06/24 v5.0h Graphics/color driver for xetex
))
\Gin@req@height=\dimen140
\Gin@req@width=\dimen141
)
(C:\Users\Xiaoguang\AppData\Local\Programs\MiKTeX\tex/latex/tools\multicol.sty
Package: multicol 2019/12/09 v1.8y multicolumn formatting (FMi)
\c@tracingmulticols=\count186
\mult@box=\box46
\multicol@leftmargin=\dimen142
\c@unbalance=\count187
\c@collectmore=\count188
\doublecol@number=\count189
\multicoltolerance=\count190
\multicolpretolerance=\count191
\full@width=\dimen143
\page@free=\dimen144
\premulticols=\dimen145
\postmulticols=\dimen146
\multicolsep=\skip50
\multicolbaselineskip=\skip51
\partial@page=\box47
\last@line=\box48
\maxbalancingoverflow=\dimen147
\mult@rightbox=\box49
\mult@grightbox=\box50
\mult@gfirstbox=\box51
\mult@firstbox=\box52
\@tempa=\box53
\@tempa=\box54
\@tempa=\box55
\@tempa=\box56
\@tempa=\box57
\@tempa=\box58
\@tempa=\box59
\@tempa=\box60
\@tempa=\box61
\@tempa=\box62
\@tempa=\box63
\@tempa=\box64
\@tempa=\box65
\@tempa=\box66
\@tempa=\box67
\@tempa=\box68
\@tempa=\box69
\@tempa=\box70
\@tempa=\box71
\@tempa=\box72
\@tempa=\box73
\@tempa=\box74
\@tempa=\box75
\@tempa=\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
\c@minrows=\count192
\c@columnbadness=\count193
\c@finalcolumnbadness=\count194
\last@try=\dimen148
\multicolovershoot=\dimen149
\multicolundershoot=\dimen150
\mult@nat@firstbox=\box90
\colbreak@box=\box91
\mc@col@check@num=\count195
)
(C:\Users\Xiaoguang\AppData\Local\Programs\MiKTeX\tex/latex/graphics\lscape.sty
Package: lscape 2000/10/22 v3.01 Landscape Pages (DPC)
)
(C:\Users\Xiaoguang\AppData\Local\Programs\MiKTeX\tex/latex/fourier\fourier.sty
Package: fourier 2020/03/03 2.2 fourier-GUTenberg package
Package fourier Warning: Please consider loading "fourier-otf.sty" instead of
(fourier) "fourier.sty" with Unicode engines LuaTeX or XeTeX,
(fourier) so that Type1 fonts get replaced by OpenType fonts.
(fourier) See file "Erewhon-Math.pdf" for more information.
(C:\Users\Xiaoguang\AppData\Local\Programs\MiKTeX\tex/latex/base\fontenc.sty
Package: fontenc 2020/02/11 v2.0o Standard LaTeX package
LaTeX Font Info: Trying to load font information for T1+futs on input line 1
12.
(C:\Users\Xiaoguang\AppData\Local\Programs\MiKTeX\tex/latex/fourier\t1futs.fd
File: t1futs.fd 2004/03/02 Fontinst v1.926 font definitions for T1/futs.
)) (C:\Users\Xiaoguang\AppData\Local\Programs\MiKTeX\tex/latex/base\textcomp.st
y
Package: textcomp 2020/02/02 v2.0n Standard LaTeX package
)
(C:\Users\Xiaoguang\AppData\Local\Programs\MiKTeX\tex/latex/fourier\fourier-orn
s.sty
Package: fourier-orns 2020/03/03 2.2 fourier-ornaments package
)
LaTeX Font Info: Redeclaring symbol font `operators' on input line 63.
LaTeX Font Info: Encoding `OT1' has changed to `T1' for symbol font
(Font) `operators' in the math version `normal' on input line 63.
LaTeX Font Info: Overwriting symbol font `operators' in version `normal'
(Font) OT1/cmr/m/n --> T1/futs/m/n on input line 63.
LaTeX Font Info: Encoding `OT1' has changed to `T1' for symbol font
(Font) `operators' in the math version `bold' on input line 63.
LaTeX Font Info: Overwriting symbol font `operators' in version `bold'
(Font) OT1/cmr/bx/n --> T1/futs/m/n on input line 63.
LaTeX Font Info: Overwriting symbol font `operators' in version `bold'
(Font) T1/futs/m/n --> T1/futs/b/n on input line 64.
LaTeX Font Info: Redeclaring symbol font `letters' on input line 72.
LaTeX Font Info: Encoding `OML' has changed to `FML' for symbol font
(Font) `letters' in the math version `normal' on input line 72.
LaTeX Font Info: Overwriting symbol font `letters' in version `normal'
(Font) OML/cmm/m/it --> FML/futmi/m/it on input line 72.
LaTeX Font Info: Encoding `OML' has changed to `FML' for symbol font
(Font) `letters' in the math version `bold' on input line 72.
LaTeX Font Info: Overwriting symbol font `letters' in version `bold'
(Font) OML/cmm/b/it --> FML/futmi/m/it on input line 72.
\symotherletters=\mathgroup4
LaTeX Font Info: Overwriting symbol font `letters' in version `bold'
(Font) FML/futmi/m/it --> FML/futmi/b/it on input line 74.
LaTeX Font Info: Overwriting symbol font `otherletters' in version `bold'
(Font) FML/futm/m/it --> FML/futm/b/it on input line 75.
LaTeX Font Info: Redeclaring math symbol \Gamma on input line 76.
LaTeX Font Info: Redeclaring math symbol \Delta on input line 77.
LaTeX Font Info: Redeclaring math symbol \Theta on input line 78.
LaTeX Font Info: Redeclaring math symbol \Lambda on input line 79.
LaTeX Font Info: Redeclaring math symbol \Xi on input line 80.
LaTeX Font Info: Redeclaring math symbol \Pi on input line 81.
LaTeX Font Info: Redeclaring math symbol \Sigma on input line 82.
LaTeX Font Info: Redeclaring math symbol \Upsilon on input line 83.
LaTeX Font Info: Redeclaring math symbol \Phi on input line 84.
LaTeX Font Info: Redeclaring math symbol \Psi on input line 85.
LaTeX Font Info: Redeclaring math symbol \Omega on input line 86.
LaTeX Font Info: Redeclaring symbol font `symbols' on input line 126.
LaTeX Font Info: Encoding `OMS' has changed to `FMS' for symbol font
(Font) `symbols' in the math version `normal' on input line 126.
LaTeX Font Info: Overwriting symbol font `symbols' in version `normal'
(Font) OMS/cmsy/m/n --> FMS/futm/m/n on input line 126.
LaTeX Font Info: Encoding `OMS' has changed to `FMS' for symbol font
(Font) `symbols' in the math version `bold' on input line 126.
LaTeX Font Info: Overwriting symbol font `symbols' in version `bold'
(Font) OMS/cmsy/b/n --> FMS/futm/m/n on input line 126.
LaTeX Font Info: Redeclaring symbol font `largesymbols' on input line 127.
LaTeX Font Info: Encoding `OMX' has changed to `FMX' for symbol font
(Font) `largesymbols' in the math version `normal' on input line 1
27.
LaTeX Font Info: Overwriting symbol font `largesymbols' in version `normal'
(Font) OMX/cmex/m/n --> FMX/futm/m/n on input line 127.
LaTeX Font Info: Encoding `OMX' has changed to `FMX' for symbol font
(Font) `largesymbols' in the math version `bold' on input line 127
.
LaTeX Font Info: Overwriting symbol font `largesymbols' in version `bold'
(Font) OMX/cmex/m/n --> FMX/futm/m/n on input line 127.
LaTeX Font Info: Redeclaring math alphabet \mathbf on input line 128.
LaTeX Font Info: Overwriting math alphabet `\mathbf' in version `normal'
(Font) OT1/cmr/bx/n --> T1/futs/bx/n on input line 128.
LaTeX Font Info: Overwriting math alphabet `\mathbf' in version `bold'
(Font) OT1/cmr/bx/n --> T1/futs/bx/n on input line 128.
LaTeX Font Info: Redeclaring math alphabet \mathrm on input line 129.
LaTeX Font Info: Redeclaring math alphabet \mathit on input line 130.
LaTeX Font Info: Overwriting math alphabet `\mathit' in version `normal'
(Font) OT1/cmr/m/it --> T1/futs/m/it on input line 130.
LaTeX Font Info: Overwriting math alphabet `\mathit' in version `bold'
(Font) OT1/cmr/bx/it --> T1/futs/m/it on input line 130.
LaTeX Font Info: Redeclaring math alphabet \mathcal on input line 131.
LaTeX Font Info: Redeclaring math symbol \parallel on input line 147.
LaTeX Font Info: Redeclaring math symbol \hbar on input line 161.
LaTeX Font Info: Redeclaring math symbol \varkappa on input line 199.
LaTeX Font Info: Redeclaring math symbol \varvarrho on input line 200.
LaTeX Font Info: Redeclaring math delimiter \Vert on input line 223.
LaTeX Font Info: Redeclaring math delimiter \vert on input line 228.
LaTeX Font Info: Redeclaring math delimiter \Downarrow on input line 238.
LaTeX Font Info: Redeclaring math delimiter \backslash on input line 240.
LaTeX Font Info: Redeclaring math delimiter \rangle on input line 242.
LaTeX Font Info: Redeclaring math delimiter \langle on input line 244.
LaTeX Font Info: Redeclaring math delimiter \rbrace on input line 246.
LaTeX Font Info: Redeclaring math delimiter \lbrace on input line 248.
LaTeX Font Info: Redeclaring math delimiter \rceil on input line 250.
LaTeX Font Info: Redeclaring math delimiter \lceil on input line 252.
LaTeX Font Info: Redeclaring math delimiter \rfloor on input line 254.
LaTeX Font Info: Redeclaring math delimiter \lfloor on input line 256.
LaTeX Font Info: Redeclaring math accent \acute on input line 260.
LaTeX Font Info: Redeclaring math accent \grave on input line 261.
LaTeX Font Info: Redeclaring math accent \ddot on input line 262.
LaTeX Font Info: Redeclaring math accent \tilde on input line 263.
LaTeX Font Info: Redeclaring math accent \bar on input line 264.
LaTeX Font Info: Redeclaring math accent \breve on input line 265.
LaTeX Font Info: Redeclaring math accent \check on input line 266.
LaTeX Font Info: Redeclaring math accent \hat on input line 267.
LaTeX Font Info: Redeclaring math accent \dot on input line 268.
LaTeX Font Info: Redeclaring math accent \mathring on input line 269.
\symUfutm=\mathgroup5
)
(C:\Users\Xiaoguang\AppData\Local\Programs\MiKTeX\tex/latex/amsfonts\amssymb.st
y
Package: amssymb 2013/01/14 v3.01 AMS font symbols
(C:\Users\Xiaoguang\AppData\Local\Programs\MiKTeX\tex/latex/amsfonts\amsfonts.s
ty
Package: amsfonts 2013/01/14 v3.01 Basic AMSFonts support
\@emptytoks=\toks18
\symAMSa=\mathgroup6
\symAMSb=\mathgroup7
LaTeX Font Info: Overwriting math alphabet `\mathfrak' in version `bold'
(Font) U/euf/m/n --> U/euf/b/n on input line 106.
LaTeX Font Info: Redeclaring math symbol \square on input line 141.
)
LaTeX Font Info: Redeclaring math symbol \blacksquare on input line 48.
LaTeX Font Info: Redeclaring math symbol \vDash on input line 60.
LaTeX Font Info: Redeclaring math symbol \leftleftarrows on input line 63.
LaTeX Font Info: Redeclaring math symbol \rightrightarrows on input line 64.
LaTeX Font Info: Redeclaring math symbol \leqslant on input line 101.
LaTeX Font Info: Redeclaring math symbol \geqslant on input line 108.
LaTeX Font Info: Redeclaring math symbol \blacktriangleright on input line 1
20.
LaTeX Font Info: Redeclaring math symbol \blacktriangleleft on input line 12
1.
LaTeX Font Info: Redeclaring math symbol \complement on input line 165.
LaTeX Font Info: Redeclaring math symbol \intercal on input line 166.
LaTeX Font Info: Redeclaring math symbol \nleqslant on input line 181.
LaTeX Font Info: Redeclaring math symbol \ngeqslant on input line 182.
LaTeX Font Info: Redeclaring math symbol \varsubsetneq on input line 203.
LaTeX Font Info: Redeclaring math symbol \subsetneqq on input line 207.
LaTeX Font Info: Redeclaring math symbol \nparallel on input line 215.
LaTeX Font Info: Redeclaring math symbol \nvDash on input line 221.
LaTeX Font Info: Redeclaring math symbol \nexists on input line 235.
LaTeX Font Info: Redeclaring math symbol \smallsetminus on input line 251.
LaTeX Font Info: Redeclaring math symbol \curvearrowleft on input line 257.
LaTeX Font Info: Redeclaring math symbol \curvearrowright on input line 258.
LaTeX Font Info: Redeclaring math symbol \varkappa on input line 260.
LaTeX Font Info: Redeclaring math symbol \hslash on input line 262.
)
(C:\Users\Xiaoguang\AppData\Local\Programs\MiKTeX\tex/latex/microtype\microtype
.sty
Package: microtype 2019/11/18 v2.7d Micro-typographical refinements (RS)
\MT@toks=\toks19
\MT@count=\count196
LaTeX Info: Redefining \textls on input line 790.
\MT@outer@kern=\dimen151
LaTeX Info: Redefining \textmicrotypecontext on input line 1354.
\MT@listname@count=\count197
(C:\Users\Xiaoguang\AppData\Local\Programs\MiKTeX\tex/latex/microtype\microtype
-xetex.def
File: microtype-xetex.def 2019/11/18 v2.7d Definitions specific to xetex (RS)
LaTeX Info: Redefining \lsstyle on input line 258.
)
Package microtype Info: Loading configuration file microtype.cfg.
(C:\Users\Xiaoguang\AppData\Local\Programs\MiKTeX\tex/latex/microtype\microtype
.cfg
File: microtype.cfg 2019/11/18 v2.7d microtype main configuration file (RS)
))
(C:\Users\Xiaoguang\AppData\Local\Programs\MiKTeX\tex/latex/amsmath\amsmath.sty
Package: amsmath 2020/01/20 v2.17e AMS math features
\@mathmargin=\skip52
For additional information on amsmath, use the `?' option.
(C:\Users\Xiaoguang\AppData\Local\Programs\MiKTeX\tex/latex/amsmath\amstext.sty
Package: amstext 2000/06/29 v2.01 AMS text
(C:\Users\Xiaoguang\AppData\Local\Programs\MiKTeX\tex/latex/amsmath\amsgen.sty
File: amsgen.sty 1999/11/30 v2.0 generic functions
\@emptytoks=\toks20
\ex@=\dimen152
))
(C:\Users\Xiaoguang\AppData\Local\Programs\MiKTeX\tex/latex/amsmath\amsbsy.sty
Package: amsbsy 1999/11/29 v1.2d Bold Symbols
\pmbraise@=\dimen153
) (C:\Users\Xiaoguang\AppData\Local\Programs\MiKTeX\tex/latex/amsmath\amsopn.st
y
Package: amsopn 2016/03/08 v2.02 operator names
)
\inf@bad=\count198
LaTeX Info: Redefining \frac on input line 227.
\uproot@=\count199
\leftroot@=\count266
LaTeX Info: Redefining \overline on input line 389.
\classnum@=\count267
\DOTSCASE@=\count268
LaTeX Info: Redefining \ldots on input line 486.
LaTeX Info: Redefining \dots on input line 489.
LaTeX Info: Redefining \cdots on input line 610.
\Mathstrutbox@=\box92
\strutbox@=\box93
\big@size=\dimen154
LaTeX Font Info: Redeclaring font encoding OML on input line 733.
LaTeX Font Info: Redeclaring font encoding OMS on input line 734.
\macc@depth=\count269
\c@MaxMatrixCols=\count270
\dotsspace@=\muskip17
\c@parentequation=\count271
\dspbrk@lvl=\count272
\tag@help=\toks21
\row@=\count273
\column@=\count274
\maxfields@=\count275
\andhelp@=\toks22
\eqnshift@=\dimen155
\alignsep@=\dimen156
\tagshift@=\dimen157
\tagwidth@=\dimen158
\totwidth@=\dimen159
\lineht@=\dimen160
\@envbody=\toks23
\multlinegap=\skip53
\multlinetaggap=\skip54
\mathdisplay@stack=\toks24
LaTeX Info: Redefining \[ on input line 2859.
LaTeX Info: Redefining \] on input line 2860.
) (C:\Users\Xiaoguang\AppData\Local\Programs\MiKTeX\tex/latex/was\gensymb.sty
Package: gensymb 2003/07/02 v1.0 (WaS)
)
(C:\Users\Xiaoguang\AppData\Local\Programs\MiKTeX\tex/latex/mdframed\mdframed.s
ty
Package: mdframed 2013/07/01 1.9b: mdframed
(C:\Users\Xiaoguang\AppData\Local\Programs\MiKTeX\tex/latex/l3packages/xparse\x
parse.sty
(C:\Users\Xiaoguang\AppData\Local\Programs\MiKTeX\tex/latex/l3kernel\expl3.sty
Package: expl3 2020-08-07 L3 programming layer (loader)
(C:\Users\Xiaoguang\AppData\Local\Programs\MiKTeX\tex/latex/l3backend\l3backend
-xdvipdfmx.def
File: l3backend-xdvipdfmx.def 2020-08-07 L3 backend support: xdvipdfmx
\g__graphics_track_int=\count276
\l__pdf_internal_box=\box94
\g__pdf_backend_object_int=\count277
\g__pdf_backend_annotation_int=\count278
))
Package: xparse 2020-05-15 L3 Experimental document command parser
(C:\Users\Xiaoguang\AppData\Local\Programs\MiKTeX\tex/latex/l3packages/xparse\x
parse-generic.tex
\l__xparse_current_arg_int=\count279
\g__xparse_grabber_int=\count280
\l__xparse_m_args_int=\count281
\l__xparse_v_nesting_int=\count282
))
(C:\Users\Xiaoguang\AppData\Local\Programs\MiKTeX\tex/latex/etoolbox\etoolbox.s
ty
Package: etoolbox 2020/08/24 v2.5j e-TeX tools for LaTeX (JAW)
\etb@tempcnta=\count283
)
(C:\Users\Xiaoguang\AppData\Local\Programs\MiKTeX\tex/latex/zref\zref-abspage.s
ty
Package: zref-abspage 2020-05-28 v2.31 Module abspage for zref (HO)
(C:\Users\Xiaoguang\AppData\Local\Programs\MiKTeX\tex/latex/zref\zref-base.sty
Package: zref-base 2020-05-28 v2.31 Module base for zref (HO)
Package zref Info: New property list: main on input line 763.
Package zref Info: New property: default on input line 764.
Package zref Info: New property: page on input line 765.
)
\c@abspage=\count284
Package zref Info: New property: abspage on input line 66.
)
(C:\Users\Xiaoguang\AppData\Local\Programs\MiKTeX\tex/latex/needspace\needspace
.sty
Package: needspace 2010/09/12 v1.3d reserve vertical space
)
(C:\Users\Xiaoguang\AppData\Local\Programs\MiKTeX\tex/latex/graphics\color.sty
Package: color 2019/11/23 v1.2a Standard LaTeX Color (DPC)
(C:\Users\Xiaoguang\AppData\Local\Programs\MiKTeX\tex/latex/graphics-cfg\color.
cfg
File: color.cfg 2016/01/02 v1.6 sample color configuration
)
Package color Info: Driver file: xetex.def on input line 147.
)
\mdf@templength=\skip55
\c@mdf@globalstyle@cnt=\count285
\mdf@skipabove@length=\skip56
\mdf@skipbelow@length=\skip57
\mdf@leftmargin@length=\skip58
\mdf@rightmargin@length=\skip59
\mdf@innerleftmargin@length=\skip60
\mdf@innerrightmargin@length=\skip61
\mdf@innertopmargin@length=\skip62
\mdf@innerbottommargin@length=\skip63
\mdf@splittopskip@length=\skip64
\mdf@splitbottomskip@length=\skip65
\mdf@outermargin@length=\skip66
\mdf@innermargin@length=\skip67
\mdf@linewidth@length=\skip68
\mdf@innerlinewidth@length=\skip69
\mdf@middlelinewidth@length=\skip70
\mdf@outerlinewidth@length=\skip71
\mdf@roundcorner@length=\skip72
\mdf@footenotedistance@length=\skip73
\mdf@userdefinedwidth@length=\skip74
\mdf@needspace@length=\skip75
\mdf@frametitleaboveskip@length=\skip76
\mdf@frametitlebelowskip@length=\skip77
\mdf@frametitlerulewidth@length=\skip78
\mdf@frametitleleftmargin@length=\skip79
\mdf@frametitlerightmargin@length=\skip80
\mdf@shadowsize@length=\skip81
\mdf@extratopheight@length=\skip82
\mdf@subtitleabovelinewidth@length=\skip83
\mdf@subtitlebelowlinewidth@length=\skip84
\mdf@subtitleaboveskip@length=\skip85
\mdf@subtitlebelowskip@length=\skip86
\mdf@subtitleinneraboveskip@length=\skip87
\mdf@subtitleinnerbelowskip@length=\skip88
\mdf@subsubtitleabovelinewidth@length=\skip89
\mdf@subsubtitlebelowlinewidth@length=\skip90
\mdf@subsubtitleaboveskip@length=\skip91
\mdf@subsubtitlebelowskip@length=\skip92
\mdf@subsubtitleinneraboveskip@length=\skip93
\mdf@subsubtitleinnerbelowskip@length=\skip94
(C:\Users\Xiaoguang\AppData\Local\Programs\MiKTeX\tex/latex/mdframed\md-frame-0
.mdf
File: md-frame-0.mdf 2013/07/01\ 1.9b: md-frame-0
)
\mdf@frametitlebox=\box95
\mdf@footnotebox=\box96
\mdf@splitbox@one=\box97
\mdf@splitbox@two=\box98
\mdf@splitbox@save=\box99
\mdfsplitboxwidth=\skip95
\mdfsplitboxtotalwidth=\skip96
\mdfsplitboxheight=\skip97
\mdfsplitboxdepth=\skip98
\mdfsplitboxtotalheight=\skip99
\mdfframetitleboxwidth=\skip100
\mdfframetitleboxtotalwidth=\skip101
\mdfframetitleboxheight=\skip102
\mdfframetitleboxdepth=\skip103
\mdfframetitleboxtotalheight=\skip104
\mdffootnoteboxwidth=\skip105
\mdffootnoteboxtotalwidth=\skip106
\mdffootnoteboxheight=\skip107
\mdffootnoteboxdepth=\skip108
\mdffootnoteboxtotalheight=\skip109
\mdftotallinewidth=\skip110
\mdfboundingboxwidth=\skip111
\mdfboundingboxtotalwidth=\skip112
\mdfboundingboxheight=\skip113
\mdfboundingboxdepth=\skip114
\mdfboundingboxtotalheight=\skip115
\mdf@freevspace@length=\skip116
\mdf@horizontalwidthofbox@length=\skip117
\mdf@verticalmarginwhole@length=\skip118
\mdf@horizontalspaceofbox=\skip119
\mdfsubtitleheight=\skip120
\mdfsubsubtitleheight=\skip121
\c@mdfcountframes=\count286
****** mdframed patching \endmdf@trivlist
****** -- success******
\mdf@envdepth=\count287
\c@mdf@env@i=\count288
\c@mdf@env@ii=\count289
\c@mdf@zref@counter=\count290
Package zref Info: New property: mdf@pagevalue on input line 895.
)
(C:\Users\Xiaoguang\AppData\Local\Programs\MiKTeX\tex/latex/caption\caption.sty
Package: caption 2020/05/30 v3.4k Customizing captions (AR)
(C:\Users\Xiaoguang\AppData\Local\Programs\MiKTeX\tex/latex/caption\caption3.st
y
Package: caption3 2020/07/20 v1.12b caption3 kernel (AR)
Package caption3 Info: TeX engine: e-TeX on input line 61.
\captionmargin=\dimen161
\captionmargin@=\dimen162
\captionwidth=\dimen163
\caption@tempdima=\dimen164
\caption@indent=\dimen165
\caption@parindent=\dimen166
\caption@hangindent=\dimen167
Package caption Info: Standard document class detected.
)
\c@caption@flags=\count291
\c@continuedfloat=\count292
Package caption Info: hyperref package is loaded.
)
(C:\Users\Xiaoguang\AppData\Local\Programs\MiKTeX\tex/latex/xcolor\xcolor.sty
Package: xcolor 2016/05/11 v2.12 LaTeX color extensions (UK)
(C:\Users\Xiaoguang\AppData\Local\Programs\MiKTeX\tex/latex/graphics-cfg\color.
cfg
File: color.cfg 2016/01/02 v1.6 sample color configuration
)
Package xcolor Info: Driver file: xetex.def on input line 225.
LaTeX Info: Redefining \color on input line 709.
Package xcolor Info: Model `cmy' substituted by `cmy0' on input line 1348.
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.
)
(C:\Users\Xiaoguang\AppData\Local\Programs\MiKTeX\tex/latex/pgf/frontendlayer\t
ikz.sty
(C:\Users\Xiaoguang\AppData\Local\Programs\MiKTeX\tex/latex/pgf/basiclayer\pgf.
sty
(C:\Users\Xiaoguang\AppData\Local\Programs\MiKTeX\tex/latex/pgf/utilities\pgfrc
s.sty
(C:\Users\Xiaoguang\AppData\Local\Programs\MiKTeX\tex/generic/pgf/utilities\pgf
util-common.tex
\pgfutil@everybye=\toks25
\pgfutil@tempdima=\dimen168
\pgfutil@tempdimb=\dimen169
(C:\Users\Xiaoguang\AppData\Local\Programs\MiKTeX\tex/generic/pgf/utilities\pgf
util-common-lists.tex))
(C:\Users\Xiaoguang\AppData\Local\Programs\MiKTeX\tex/generic/pgf/utilities\pgf
util-latex.def
\pgfutil@abb=\box100
(C:\Users\Xiaoguang\AppData\Local\Programs\MiKTeX\tex/latex/ms\everyshi.sty
Package: everyshi 2001/05/15 v3.00 EveryShipout Package (MS)
))
(C:\Users\Xiaoguang\AppData\Local\Programs\MiKTeX\tex/generic/pgf/utilities\pgf
rcs.code.tex
(C:\Users\Xiaoguang\AppData\Local\Programs\MiKTeX\tex/generic/pgf\pgf.revision.
tex)
Package: pgfrcs 2020/01/08 v3.1.5b (3.1.5b)
))
Package: pgf 2020/01/08 v3.1.5b (3.1.5b)
(C:\Users\Xiaoguang\AppData\Local\Programs\MiKTeX\tex/latex/pgf/basiclayer\pgfc
ore.sty
(C:\Users\Xiaoguang\AppData\Local\Programs\MiKTeX\tex/latex/pgf/systemlayer\pgf
sys.sty
(C:\Users\Xiaoguang\AppData\Local\Programs\MiKTeX\tex/generic/pgf/systemlayer\p
gfsys.code.tex
Package: pgfsys 2020/01/08 v3.1.5b (3.1.5b)
(C:\Users\Xiaoguang\AppData\Local\Programs\MiKTeX\tex/generic/pgf/utilities\pgf
keys.code.tex
\pgfkeys@pathtoks=\toks26
\pgfkeys@temptoks=\toks27
(C:\Users\Xiaoguang\AppData\Local\Programs\MiKTeX\tex/generic/pgf/utilities\pgf
keysfiltered.code.tex
\pgfkeys@tmptoks=\toks28
))
\pgf@x=\dimen170
\pgf@y=\dimen171
\pgf@xa=\dimen172
\pgf@ya=\dimen173
\pgf@xb=\dimen174
\pgf@yb=\dimen175
\pgf@xc=\dimen176
\pgf@yc=\dimen177
\pgf@xd=\dimen178
\pgf@yd=\dimen179
\w@pgf@writea=\write3
\r@pgf@reada=\read3
\c@pgf@counta=\count293
\c@pgf@countb=\count294
\c@pgf@countc=\count295
\c@pgf@countd=\count296
\t@pgf@toka=\toks29
\t@pgf@tokb=\toks30
\t@pgf@tokc=\toks31
\pgf@sys@id@count=\count297
(C:\Users\Xiaoguang\AppData\Local\Programs\MiKTeX\tex/generic/pgf/systemlayer\p
gf.cfg
File: pgf.cfg 2020/01/08 v3.1.5b (3.1.5b)
)
Driver file for pgf: pgfsys-xetex.def
(C:\Users\Xiaoguang\AppData\Local\Programs\MiKTeX\tex/generic/pgf/systemlayer\p
gfsys-xetex.def
File: pgfsys-xetex.def 2020/01/08 v3.1.5b (3.1.5b)
(C:\Users\Xiaoguang\AppData\Local\Programs\MiKTeX\tex/generic/pgf/systemlayer\p
gfsys-dvipdfmx.def
File: pgfsys-dvipdfmx.def 2020/01/08 v3.1.5b (3.1.5b)
(C:\Users\Xiaoguang\AppData\Local\Programs\MiKTeX\tex/generic/pgf/systemlayer\p
gfsys-common-pdf.def
File: pgfsys-common-pdf.def 2020/01/08 v3.1.5b (3.1.5b)
)
\pgfsys@objnum=\count298
)))
(C:\Users\Xiaoguang\AppData\Local\Programs\MiKTeX\tex/generic/pgf/systemlayer\p
gfsyssoftpath.code.tex
File: pgfsyssoftpath.code.tex 2020/01/08 v3.1.5b (3.1.5b)
\pgfsyssoftpath@smallbuffer@items=\count299
\pgfsyssoftpath@bigbuffer@items=\count300
)
(C:\Users\Xiaoguang\AppData\Local\Programs\MiKTeX\tex/generic/pgf/systemlayer\p
gfsysprotocol.code.tex
File: pgfsysprotocol.code.tex 2020/01/08 v3.1.5b (3.1.5b)
))
(C:\Users\Xiaoguang\AppData\Local\Programs\MiKTeX\tex/generic/pgf/basiclayer\pg
fcore.code.tex
Package: pgfcore 2020/01/08 v3.1.5b (3.1.5b)
(C:\Users\Xiaoguang\AppData\Local\Programs\MiKTeX\tex/generic/pgf/math\pgfmath.
code.tex
(C:\Users\Xiaoguang\AppData\Local\Programs\MiKTeX\tex/generic/pgf/math\pgfmathc
alc.code.tex
(C:\Users\Xiaoguang\AppData\Local\Programs\MiKTeX\tex/generic/pgf/math\pgfmathu
til.code.tex)
(C:\Users\Xiaoguang\AppData\Local\Programs\MiKTeX\tex/generic/pgf/math\pgfmathp
arser.code.tex
\pgfmath@dimen=\dimen180
\pgfmath@count=\count301
\pgfmath@box=\box101
\pgfmath@toks=\toks32
\pgfmath@stack@operand=\toks33
\pgfmath@stack@operation=\toks34
)
(C:\Users\Xiaoguang\AppData\Local\Programs\MiKTeX\tex/generic/pgf/math\pgfmathf
unctions.code.tex
(C:\Users\Xiaoguang\AppData\Local\Programs\MiKTeX\tex/generic/pgf/math\pgfmathf
unctions.basic.code.tex)
(C:\Users\Xiaoguang\AppData\Local\Programs\MiKTeX\tex/generic/pgf/math\pgfmathf
unctions.trigonometric.code.tex)
(C:\Users\Xiaoguang\AppData\Local\Programs\MiKTeX\tex/generic/pgf/math\pgfmathf
unctions.random.code.tex)
(C:\Users\Xiaoguang\AppData\Local\Programs\MiKTeX\tex/generic/pgf/math\pgfmathf
unctions.comparison.code.tex)
(C:\Users\Xiaoguang\AppData\Local\Programs\MiKTeX\tex/generic/pgf/math\pgfmathf
unctions.base.code.tex)
(C:\Users\Xiaoguang\AppData\Local\Programs\MiKTeX\tex/generic/pgf/math\pgfmathf
unctions.round.code.tex)
(C:\Users\Xiaoguang\AppData\Local\Programs\MiKTeX\tex/generic/pgf/math\pgfmathf
unctions.misc.code.tex)
(C:\Users\Xiaoguang\AppData\Local\Programs\MiKTeX\tex/generic/pgf/math\pgfmathf
unctions.integerarithmetics.code.tex)))
(C:\Users\Xiaoguang\AppData\Local\Programs\MiKTeX\tex/generic/pgf/math\pgfmathf
loat.code.tex
\c@pgfmathroundto@lastzeros=\count302
))
(C:\Users\Xiaoguang\AppData\Local\Programs\MiKTeX\tex/generic/pgf/math\pgfint.c
ode.tex)
(C:\Users\Xiaoguang\AppData\Local\Programs\MiKTeX\tex/generic/pgf/basiclayer\pg
fcorepoints.code.tex
File: pgfcorepoints.code.tex 2020/01/08 v3.1.5b (3.1.5b)
\pgf@picminx=\dimen181
\pgf@picmaxx=\dimen182
\pgf@picminy=\dimen183
\pgf@picmaxy=\dimen184
\pgf@pathminx=\dimen185
\pgf@pathmaxx=\dimen186
\pgf@pathminy=\dimen187
\pgf@pathmaxy=\dimen188
\pgf@xx=\dimen189
\pgf@xy=\dimen190
\pgf@yx=\dimen191
\pgf@yy=\dimen192
\pgf@zx=\dimen193
\pgf@zy=\dimen194
)
(C:\Users\Xiaoguang\AppData\Local\Programs\MiKTeX\tex/generic/pgf/basiclayer\pg
fcorepathconstruct.code.tex
File: pgfcorepathconstruct.code.tex 2020/01/08 v3.1.5b (3.1.5b)
\pgf@path@lastx=\dimen195
\pgf@path@lasty=\dimen196
)
(C:\Users\Xiaoguang\AppData\Local\Programs\MiKTeX\tex/generic/pgf/basiclayer\pg
fcorepathusage.code.tex
File: pgfcorepathusage.code.tex 2020/01/08 v3.1.5b (3.1.5b)
\pgf@shorten@end@additional=\dimen197
\pgf@shorten@start@additional=\dimen198
)
(C:\Users\Xiaoguang\AppData\Local\Programs\MiKTeX\tex/generic/pgf/basiclayer\pg
fcorescopes.code.tex
File: pgfcorescopes.code.tex 2020/01/08 v3.1.5b (3.1.5b)
\pgfpic=\box102
\pgf@hbox=\box103
\pgf@layerbox@main=\box104
\pgf@picture@serial@count=\count303
)
(C:\Users\Xiaoguang\AppData\Local\Programs\MiKTeX\tex/generic/pgf/basiclayer\pg
fcoregraphicstate.code.tex
File: pgfcoregraphicstate.code.tex 2020/01/08 v3.1.5b (3.1.5b)
\pgflinewidth=\dimen199
)
(C:\Users\Xiaoguang\AppData\Local\Programs\MiKTeX\tex/generic/pgf/basiclayer\pg
fcoretransformations.code.tex
File: pgfcoretransformations.code.tex 2020/01/08 v3.1.5b (3.1.5b)
\pgf@pt@x=\dimen256
\pgf@pt@y=\dimen257
\pgf@pt@temp=\dimen258
)
(C:\Users\Xiaoguang\AppData\Local\Programs\MiKTeX\tex/generic/pgf/basiclayer\pg
fcorequick.code.tex
File: pgfcorequick.code.tex 2020/01/08 v3.1.5b (3.1.5b)
)
(C:\Users\Xiaoguang\AppData\Local\Programs\MiKTeX\tex/generic/pgf/basiclayer\pg
fcoreobjects.code.tex
File: pgfcoreobjects.code.tex 2020/01/08 v3.1.5b (3.1.5b)
)
(C:\Users\Xiaoguang\AppData\Local\Programs\MiKTeX\tex/generic/pgf/basiclayer\pg
fcorepathprocessing.code.tex
File: pgfcorepathprocessing.code.tex 2020/01/08 v3.1.5b (3.1.5b)
)
(C:\Users\Xiaoguang\AppData\Local\Programs\MiKTeX\tex/generic/pgf/basiclayer\pg
fcorearrows.code.tex
File: pgfcorearrows.code.tex 2020/01/08 v3.1.5b (3.1.5b)
\pgfarrowsep=\dimen259
)
(C:\Users\Xiaoguang\AppData\Local\Programs\MiKTeX\tex/generic/pgf/basiclayer\pg
fcoreshade.code.tex
File: pgfcoreshade.code.tex 2020/01/08 v3.1.5b (3.1.5b)
\pgf@max=\dimen260
\pgf@sys@shading@range@num=\count304
\pgf@shadingcount=\count305
)
(C:\Users\Xiaoguang\AppData\Local\Programs\MiKTeX\tex/generic/pgf/basiclayer\pg
fcoreimage.code.tex
File: pgfcoreimage.code.tex 2020/01/08 v3.1.5b (3.1.5b)
(C:\Users\Xiaoguang\AppData\Local\Programs\MiKTeX\tex/generic/pgf/basiclayer\pg
fcoreexternal.code.tex
File: pgfcoreexternal.code.tex 2020/01/08 v3.1.5b (3.1.5b)
\pgfexternal@startupbox=\box105
))
(C:\Users\Xiaoguang\AppData\Local\Programs\MiKTeX\tex/generic/pgf/basiclayer\pg
fcorelayers.code.tex
File: pgfcorelayers.code.tex 2020/01/08 v3.1.5b (3.1.5b)
)
(C:\Users\Xiaoguang\AppData\Local\Programs\MiKTeX\tex/generic/pgf/basiclayer\pg
fcoretransparency.code.tex
File: pgfcoretransparency.code.tex 2020/01/08 v3.1.5b (3.1.5b)
)
(C:\Users\Xiaoguang\AppData\Local\Programs\MiKTeX\tex/generic/pgf/basiclayer\pg
fcorepatterns.code.tex
File: pgfcorepatterns.code.tex 2020/01/08 v3.1.5b (3.1.5b)
)
(C:\Users\Xiaoguang\AppData\Local\Programs\MiKTeX\tex/generic/pgf/basiclayer\pg
fcorerdf.code.tex
File: pgfcorerdf.code.tex 2020/01/08 v3.1.5b (3.1.5b)
)))
(C:\Users\Xiaoguang\AppData\Local\Programs\MiKTeX\tex/generic/pgf/modules\pgfmo
duleshapes.code.tex
File: pgfmoduleshapes.code.tex 2020/01/08 v3.1.5b (3.1.5b)
\pgfnodeparttextbox=\box106
)
(C:\Users\Xiaoguang\AppData\Local\Programs\MiKTeX\tex/generic/pgf/modules\pgfmo
duleplot.code.tex
File: pgfmoduleplot.code.tex 2020/01/08 v3.1.5b (3.1.5b)
)
(C:\Users\Xiaoguang\AppData\Local\Programs\MiKTeX\tex/latex/pgf/compatibility\p
gfcomp-version-0-65.sty
Package: pgfcomp-version-0-65 2020/01/08 v3.1.5b (3.1.5b)
\pgf@nodesepstart=\dimen261
\pgf@nodesepend=\dimen262