-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathimpedance_sweep.pgf
1673 lines (1673 loc) · 73.6 KB
/
impedance_sweep.pgf
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
%% Creator: Matplotlib, PGF backend
%%
%% To include the figure in your LaTeX document, write
%% \input{<filename>.pgf}
%%
%% Make sure the required packages are loaded in your preamble
%% \usepackage{pgf}
%%
%% Figures using additional raster images can only be included by \input if
%% they are in the same directory as the main LaTeX file. For loading figures
%% from other directories you can use the `import` package
%% \usepackage{import}
%%
%% and then include the figures with
%% \import{<path to file>}{<filename>.pgf}
%%
%% Matplotlib used the following preamble
%%
\begingroup%
\makeatletter%
\begin{pgfpicture}%
\pgfpathrectangle{\pgfpointorigin}{\pgfqpoint{6.000000in}{4.000000in}}%
\pgfusepath{use as bounding box, clip}%
\begin{pgfscope}%
\pgfsetbuttcap%
\pgfsetmiterjoin%
\pgfsetlinewidth{0.000000pt}%
\definecolor{currentstroke}{rgb}{1.000000,1.000000,1.000000}%
\pgfsetstrokecolor{currentstroke}%
\pgfsetstrokeopacity{0.000000}%
\pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{6.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{6.000000in}{4.000000in}}%
\pgfpathlineto{\pgfqpoint{0.000000in}{4.000000in}}%
\pgfpathclose%
\pgfusepath{}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfsetbuttcap%
\pgfsetmiterjoin%
\definecolor{currentfill}{rgb}{1.000000,1.000000,1.000000}%
\pgfsetfillcolor{currentfill}%
\pgfsetlinewidth{0.000000pt}%
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}%
\pgfsetstrokeopacity{0.000000}%
\pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.510806in}{0.456793in}}%
\pgfpathlineto{\pgfqpoint{5.958330in}{0.456793in}}%
\pgfpathlineto{\pgfqpoint{5.958330in}{3.749997in}}%
\pgfpathlineto{\pgfqpoint{0.510806in}{3.749997in}}%
\pgfpathclose%
\pgfusepath{fill}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.510806in}{0.456793in}}{\pgfqpoint{5.447524in}{3.293203in}}%
\pgfusepath{clip}%
\pgfsetbuttcap%
\pgfsetroundjoin%
\definecolor{currentfill}{rgb}{0.133333,0.545098,0.133333}%
\pgfsetfillcolor{currentfill}%
\pgfsetlinewidth{1.003750pt}%
\definecolor{currentstroke}{rgb}{0.133333,0.545098,0.133333}%
\pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}%
\pgfsys@defobject{currentmarker}{\pgfqpoint{-0.041667in}{-0.041667in}}{\pgfqpoint{0.041667in}{0.041667in}}{%
\pgfpathmoveto{\pgfqpoint{0.000000in}{-0.041667in}}%
\pgfpathcurveto{\pgfqpoint{0.011050in}{-0.041667in}}{\pgfqpoint{0.021649in}{-0.037276in}}{\pgfqpoint{0.029463in}{-0.029463in}}%
\pgfpathcurveto{\pgfqpoint{0.037276in}{-0.021649in}}{\pgfqpoint{0.041667in}{-0.011050in}}{\pgfqpoint{0.041667in}{0.000000in}}%
\pgfpathcurveto{\pgfqpoint{0.041667in}{0.011050in}}{\pgfqpoint{0.037276in}{0.021649in}}{\pgfqpoint{0.029463in}{0.029463in}}%
\pgfpathcurveto{\pgfqpoint{0.021649in}{0.037276in}}{\pgfqpoint{0.011050in}{0.041667in}}{\pgfqpoint{0.000000in}{0.041667in}}%
\pgfpathcurveto{\pgfqpoint{-0.011050in}{0.041667in}}{\pgfqpoint{-0.021649in}{0.037276in}}{\pgfqpoint{-0.029463in}{0.029463in}}%
\pgfpathcurveto{\pgfqpoint{-0.037276in}{0.021649in}}{\pgfqpoint{-0.041667in}{0.011050in}}{\pgfqpoint{-0.041667in}{0.000000in}}%
\pgfpathcurveto{\pgfqpoint{-0.041667in}{-0.011050in}}{\pgfqpoint{-0.037276in}{-0.021649in}}{\pgfqpoint{-0.029463in}{-0.029463in}}%
\pgfpathcurveto{\pgfqpoint{-0.021649in}{-0.037276in}}{\pgfqpoint{-0.011050in}{-0.041667in}}{\pgfqpoint{0.000000in}{-0.041667in}}%
\pgfpathclose%
\pgfusepath{stroke,fill}%
}%
\begin{pgfscope}%
\pgfsys@transformshift{3.416152in}{3.560911in}%
\pgfsys@useobject{currentmarker}{}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfsys@transformshift{3.779321in}{3.529747in}%
\pgfsys@useobject{currentmarker}{}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfsys@transformshift{4.142489in}{3.557850in}%
\pgfsys@useobject{currentmarker}{}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfsys@transformshift{4.505657in}{3.563285in}%
\pgfsys@useobject{currentmarker}{}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfsys@transformshift{4.868825in}{3.563113in}%
\pgfsys@useobject{currentmarker}{}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfsys@transformshift{5.231994in}{3.561329in}%
\pgfsys@useobject{currentmarker}{}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfsys@transformshift{5.595162in}{3.561840in}%
\pgfsys@useobject{currentmarker}{}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfsys@transformshift{5.958330in}{3.562994in}%
\pgfsys@useobject{currentmarker}{}%
\end{pgfscope}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.510806in}{0.456793in}}{\pgfqpoint{5.447524in}{3.293203in}}%
\pgfusepath{clip}%
\pgfsetbuttcap%
\pgfsetroundjoin%
\pgfsetlinewidth{1.003750pt}%
\definecolor{currentstroke}{rgb}{0.133333,0.545098,0.133333}%
\pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.510806in}{0.564818in}}%
\pgfpathcurveto{\pgfqpoint{0.521857in}{0.564818in}}{\pgfqpoint{0.532456in}{0.569208in}}{\pgfqpoint{0.540269in}{0.577022in}}%
\pgfpathcurveto{\pgfqpoint{0.548083in}{0.584835in}}{\pgfqpoint{0.552473in}{0.595434in}}{\pgfqpoint{0.552473in}{0.606484in}}%
\pgfpathcurveto{\pgfqpoint{0.552473in}{0.617535in}}{\pgfqpoint{0.548083in}{0.628134in}}{\pgfqpoint{0.540269in}{0.635947in}}%
\pgfpathcurveto{\pgfqpoint{0.532456in}{0.643761in}}{\pgfqpoint{0.521857in}{0.648151in}}{\pgfqpoint{0.510806in}{0.648151in}}%
\pgfpathcurveto{\pgfqpoint{0.499756in}{0.648151in}}{\pgfqpoint{0.489157in}{0.643761in}}{\pgfqpoint{0.481344in}{0.635947in}}%
\pgfpathcurveto{\pgfqpoint{0.473530in}{0.628134in}}{\pgfqpoint{0.469140in}{0.617535in}}{\pgfqpoint{0.469140in}{0.606484in}}%
\pgfpathcurveto{\pgfqpoint{0.469140in}{0.595434in}}{\pgfqpoint{0.473530in}{0.584835in}}{\pgfqpoint{0.481344in}{0.577022in}}%
\pgfpathcurveto{\pgfqpoint{0.489157in}{0.569208in}}{\pgfqpoint{0.499756in}{0.564818in}}{\pgfqpoint{0.510806in}{0.564818in}}%
\pgfpathclose%
\pgfusepath{stroke}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.510806in}{0.456793in}}{\pgfqpoint{5.447524in}{3.293203in}}%
\pgfusepath{clip}%
\pgfsetbuttcap%
\pgfsetroundjoin%
\pgfsetlinewidth{1.003750pt}%
\definecolor{currentstroke}{rgb}{0.133333,0.545098,0.133333}%
\pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.873975in}{0.564818in}}%
\pgfpathcurveto{\pgfqpoint{0.885025in}{0.564818in}}{\pgfqpoint{0.895624in}{0.569208in}}{\pgfqpoint{0.903437in}{0.577022in}}%
\pgfpathcurveto{\pgfqpoint{0.911251in}{0.584835in}}{\pgfqpoint{0.915641in}{0.595434in}}{\pgfqpoint{0.915641in}{0.606484in}}%
\pgfpathcurveto{\pgfqpoint{0.915641in}{0.617535in}}{\pgfqpoint{0.911251in}{0.628134in}}{\pgfqpoint{0.903437in}{0.635947in}}%
\pgfpathcurveto{\pgfqpoint{0.895624in}{0.643761in}}{\pgfqpoint{0.885025in}{0.648151in}}{\pgfqpoint{0.873975in}{0.648151in}}%
\pgfpathcurveto{\pgfqpoint{0.862925in}{0.648151in}}{\pgfqpoint{0.852325in}{0.643761in}}{\pgfqpoint{0.844512in}{0.635947in}}%
\pgfpathcurveto{\pgfqpoint{0.836698in}{0.628134in}}{\pgfqpoint{0.832308in}{0.617535in}}{\pgfqpoint{0.832308in}{0.606484in}}%
\pgfpathcurveto{\pgfqpoint{0.832308in}{0.595434in}}{\pgfqpoint{0.836698in}{0.584835in}}{\pgfqpoint{0.844512in}{0.577022in}}%
\pgfpathcurveto{\pgfqpoint{0.852325in}{0.569208in}}{\pgfqpoint{0.862925in}{0.564818in}}{\pgfqpoint{0.873975in}{0.564818in}}%
\pgfpathclose%
\pgfusepath{stroke}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.510806in}{0.456793in}}{\pgfqpoint{5.447524in}{3.293203in}}%
\pgfusepath{clip}%
\pgfsetbuttcap%
\pgfsetroundjoin%
\pgfsetlinewidth{1.003750pt}%
\definecolor{currentstroke}{rgb}{0.133333,0.545098,0.133333}%
\pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{1.237143in}{2.945089in}}%
\pgfpathcurveto{\pgfqpoint{1.248193in}{2.945089in}}{\pgfqpoint{1.258792in}{2.949479in}}{\pgfqpoint{1.266606in}{2.957293in}}%
\pgfpathcurveto{\pgfqpoint{1.274419in}{2.965106in}}{\pgfqpoint{1.278810in}{2.975705in}}{\pgfqpoint{1.278810in}{2.986755in}}%
\pgfpathcurveto{\pgfqpoint{1.278810in}{2.997806in}}{\pgfqpoint{1.274419in}{3.008405in}}{\pgfqpoint{1.266606in}{3.016218in}}%
\pgfpathcurveto{\pgfqpoint{1.258792in}{3.024032in}}{\pgfqpoint{1.248193in}{3.028422in}}{\pgfqpoint{1.237143in}{3.028422in}}%
\pgfpathcurveto{\pgfqpoint{1.226093in}{3.028422in}}{\pgfqpoint{1.215494in}{3.024032in}}{\pgfqpoint{1.207680in}{3.016218in}}%
\pgfpathcurveto{\pgfqpoint{1.199866in}{3.008405in}}{\pgfqpoint{1.195476in}{2.997806in}}{\pgfqpoint{1.195476in}{2.986755in}}%
\pgfpathcurveto{\pgfqpoint{1.195476in}{2.975705in}}{\pgfqpoint{1.199866in}{2.965106in}}{\pgfqpoint{1.207680in}{2.957293in}}%
\pgfpathcurveto{\pgfqpoint{1.215494in}{2.949479in}}{\pgfqpoint{1.226093in}{2.945089in}}{\pgfqpoint{1.237143in}{2.945089in}}%
\pgfpathclose%
\pgfusepath{stroke}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.510806in}{0.456793in}}{\pgfqpoint{5.447524in}{3.293203in}}%
\pgfusepath{clip}%
\pgfsetbuttcap%
\pgfsetroundjoin%
\pgfsetlinewidth{1.003750pt}%
\definecolor{currentstroke}{rgb}{0.133333,0.545098,0.133333}%
\pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{1.600311in}{1.698003in}}%
\pgfpathcurveto{\pgfqpoint{1.611361in}{1.698003in}}{\pgfqpoint{1.621960in}{1.702393in}}{\pgfqpoint{1.629774in}{1.710206in}}%
\pgfpathcurveto{\pgfqpoint{1.637588in}{1.718020in}}{\pgfqpoint{1.641978in}{1.728619in}}{\pgfqpoint{1.641978in}{1.739669in}}%
\pgfpathcurveto{\pgfqpoint{1.641978in}{1.750719in}}{\pgfqpoint{1.637588in}{1.761318in}}{\pgfqpoint{1.629774in}{1.769132in}}%
\pgfpathcurveto{\pgfqpoint{1.621960in}{1.776946in}}{\pgfqpoint{1.611361in}{1.781336in}}{\pgfqpoint{1.600311in}{1.781336in}}%
\pgfpathcurveto{\pgfqpoint{1.589261in}{1.781336in}}{\pgfqpoint{1.578662in}{1.776946in}}{\pgfqpoint{1.570848in}{1.769132in}}%
\pgfpathcurveto{\pgfqpoint{1.563035in}{1.761318in}}{\pgfqpoint{1.558644in}{1.750719in}}{\pgfqpoint{1.558644in}{1.739669in}}%
\pgfpathcurveto{\pgfqpoint{1.558644in}{1.728619in}}{\pgfqpoint{1.563035in}{1.718020in}}{\pgfqpoint{1.570848in}{1.710206in}}%
\pgfpathcurveto{\pgfqpoint{1.578662in}{1.702393in}}{\pgfqpoint{1.589261in}{1.698003in}}{\pgfqpoint{1.600311in}{1.698003in}}%
\pgfpathclose%
\pgfusepath{stroke}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.510806in}{0.456793in}}{\pgfqpoint{5.447524in}{3.293203in}}%
\pgfusepath{clip}%
\pgfsetbuttcap%
\pgfsetroundjoin%
\pgfsetlinewidth{1.003750pt}%
\definecolor{currentstroke}{rgb}{0.133333,0.545098,0.133333}%
\pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{1.963479in}{1.452256in}}%
\pgfpathcurveto{\pgfqpoint{1.974529in}{1.452256in}}{\pgfqpoint{1.985129in}{1.456647in}}{\pgfqpoint{1.992942in}{1.464460in}}%
\pgfpathcurveto{\pgfqpoint{2.000756in}{1.472274in}}{\pgfqpoint{2.005146in}{1.482873in}}{\pgfqpoint{2.005146in}{1.493923in}}%
\pgfpathcurveto{\pgfqpoint{2.005146in}{1.504973in}}{\pgfqpoint{2.000756in}{1.515572in}}{\pgfqpoint{1.992942in}{1.523386in}}%
\pgfpathcurveto{\pgfqpoint{1.985129in}{1.531199in}}{\pgfqpoint{1.974529in}{1.535590in}}{\pgfqpoint{1.963479in}{1.535590in}}%
\pgfpathcurveto{\pgfqpoint{1.952429in}{1.535590in}}{\pgfqpoint{1.941830in}{1.531199in}}{\pgfqpoint{1.934017in}{1.523386in}}%
\pgfpathcurveto{\pgfqpoint{1.926203in}{1.515572in}}{\pgfqpoint{1.921813in}{1.504973in}}{\pgfqpoint{1.921813in}{1.493923in}}%
\pgfpathcurveto{\pgfqpoint{1.921813in}{1.482873in}}{\pgfqpoint{1.926203in}{1.472274in}}{\pgfqpoint{1.934017in}{1.464460in}}%
\pgfpathcurveto{\pgfqpoint{1.941830in}{1.456647in}}{\pgfqpoint{1.952429in}{1.452256in}}{\pgfqpoint{1.963479in}{1.452256in}}%
\pgfpathclose%
\pgfusepath{stroke}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.510806in}{0.456793in}}{\pgfqpoint{5.447524in}{3.293203in}}%
\pgfusepath{clip}%
\pgfsetbuttcap%
\pgfsetroundjoin%
\pgfsetlinewidth{1.003750pt}%
\definecolor{currentstroke}{rgb}{0.133333,0.545098,0.133333}%
\pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{2.326648in}{1.507334in}}%
\pgfpathcurveto{\pgfqpoint{2.337698in}{1.507334in}}{\pgfqpoint{2.348297in}{1.511725in}}{\pgfqpoint{2.356110in}{1.519538in}}%
\pgfpathcurveto{\pgfqpoint{2.363924in}{1.527352in}}{\pgfqpoint{2.368314in}{1.537951in}}{\pgfqpoint{2.368314in}{1.549001in}}%
\pgfpathcurveto{\pgfqpoint{2.368314in}{1.560051in}}{\pgfqpoint{2.363924in}{1.570650in}}{\pgfqpoint{2.356110in}{1.578464in}}%
\pgfpathcurveto{\pgfqpoint{2.348297in}{1.586278in}}{\pgfqpoint{2.337698in}{1.590668in}}{\pgfqpoint{2.326648in}{1.590668in}}%
\pgfpathcurveto{\pgfqpoint{2.315597in}{1.590668in}}{\pgfqpoint{2.304998in}{1.586278in}}{\pgfqpoint{2.297185in}{1.578464in}}%
\pgfpathcurveto{\pgfqpoint{2.289371in}{1.570650in}}{\pgfqpoint{2.284981in}{1.560051in}}{\pgfqpoint{2.284981in}{1.549001in}}%
\pgfpathcurveto{\pgfqpoint{2.284981in}{1.537951in}}{\pgfqpoint{2.289371in}{1.527352in}}{\pgfqpoint{2.297185in}{1.519538in}}%
\pgfpathcurveto{\pgfqpoint{2.304998in}{1.511725in}}{\pgfqpoint{2.315597in}{1.507334in}}{\pgfqpoint{2.326648in}{1.507334in}}%
\pgfpathclose%
\pgfusepath{stroke}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.510806in}{0.456793in}}{\pgfqpoint{5.447524in}{3.293203in}}%
\pgfusepath{clip}%
\pgfsetbuttcap%
\pgfsetroundjoin%
\pgfsetlinewidth{1.003750pt}%
\definecolor{currentstroke}{rgb}{0.133333,0.545098,0.133333}%
\pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{2.689816in}{1.311482in}}%
\pgfpathcurveto{\pgfqpoint{2.700866in}{1.311482in}}{\pgfqpoint{2.711465in}{1.315873in}}{\pgfqpoint{2.719279in}{1.323686in}}%
\pgfpathcurveto{\pgfqpoint{2.727092in}{1.331500in}}{\pgfqpoint{2.731483in}{1.342099in}}{\pgfqpoint{2.731483in}{1.353149in}}%
\pgfpathcurveto{\pgfqpoint{2.731483in}{1.364199in}}{\pgfqpoint{2.727092in}{1.374798in}}{\pgfqpoint{2.719279in}{1.382612in}}%
\pgfpathcurveto{\pgfqpoint{2.711465in}{1.390425in}}{\pgfqpoint{2.700866in}{1.394816in}}{\pgfqpoint{2.689816in}{1.394816in}}%
\pgfpathcurveto{\pgfqpoint{2.678766in}{1.394816in}}{\pgfqpoint{2.668167in}{1.390425in}}{\pgfqpoint{2.660353in}{1.382612in}}%
\pgfpathcurveto{\pgfqpoint{2.652539in}{1.374798in}}{\pgfqpoint{2.648149in}{1.364199in}}{\pgfqpoint{2.648149in}{1.353149in}}%
\pgfpathcurveto{\pgfqpoint{2.648149in}{1.342099in}}{\pgfqpoint{2.652539in}{1.331500in}}{\pgfqpoint{2.660353in}{1.323686in}}%
\pgfpathcurveto{\pgfqpoint{2.668167in}{1.315873in}}{\pgfqpoint{2.678766in}{1.311482in}}{\pgfqpoint{2.689816in}{1.311482in}}%
\pgfpathclose%
\pgfusepath{stroke}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.510806in}{0.456793in}}{\pgfqpoint{5.447524in}{3.293203in}}%
\pgfusepath{clip}%
\pgfsetbuttcap%
\pgfsetroundjoin%
\pgfsetlinewidth{1.003750pt}%
\definecolor{currentstroke}{rgb}{0.133333,0.545098,0.133333}%
\pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.052984in}{2.055133in}}%
\pgfpathcurveto{\pgfqpoint{3.064034in}{2.055133in}}{\pgfqpoint{3.074633in}{2.059524in}}{\pgfqpoint{3.082447in}{2.067337in}}%
\pgfpathcurveto{\pgfqpoint{3.090260in}{2.075151in}}{\pgfqpoint{3.094651in}{2.085750in}}{\pgfqpoint{3.094651in}{2.096800in}}%
\pgfpathcurveto{\pgfqpoint{3.094651in}{2.107850in}}{\pgfqpoint{3.090260in}{2.118449in}}{\pgfqpoint{3.082447in}{2.126263in}}%
\pgfpathcurveto{\pgfqpoint{3.074633in}{2.134076in}}{\pgfqpoint{3.064034in}{2.138467in}}{\pgfqpoint{3.052984in}{2.138467in}}%
\pgfpathcurveto{\pgfqpoint{3.041934in}{2.138467in}}{\pgfqpoint{3.031335in}{2.134076in}}{\pgfqpoint{3.023521in}{2.126263in}}%
\pgfpathcurveto{\pgfqpoint{3.015708in}{2.118449in}}{\pgfqpoint{3.011317in}{2.107850in}}{\pgfqpoint{3.011317in}{2.096800in}}%
\pgfpathcurveto{\pgfqpoint{3.011317in}{2.085750in}}{\pgfqpoint{3.015708in}{2.075151in}}{\pgfqpoint{3.023521in}{2.067337in}}%
\pgfpathcurveto{\pgfqpoint{3.031335in}{2.059524in}}{\pgfqpoint{3.041934in}{2.055133in}}{\pgfqpoint{3.052984in}{2.055133in}}%
\pgfpathclose%
\pgfusepath{stroke}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.510806in}{0.456793in}}{\pgfqpoint{5.447524in}{3.293203in}}%
\pgfusepath{clip}%
\pgfsetrectcap%
\pgfsetroundjoin%
\pgfsetlinewidth{1.505625pt}%
\definecolor{currentstroke}{rgb}{0.133333,0.545098,0.133333}%
\pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.510806in}{0.606484in}}%
\pgfpathlineto{\pgfqpoint{0.873975in}{0.606484in}}%
\pgfpathlineto{\pgfqpoint{1.237143in}{2.986755in}}%
\pgfpathlineto{\pgfqpoint{1.600311in}{1.739669in}}%
\pgfpathlineto{\pgfqpoint{1.963479in}{1.493923in}}%
\pgfpathlineto{\pgfqpoint{2.326648in}{1.549001in}}%
\pgfpathlineto{\pgfqpoint{2.689816in}{1.353149in}}%
\pgfpathlineto{\pgfqpoint{3.052984in}{2.096800in}}%
\pgfpathlineto{\pgfqpoint{3.416152in}{3.560911in}}%
\pgfpathlineto{\pgfqpoint{3.779321in}{3.529747in}}%
\pgfpathlineto{\pgfqpoint{4.142489in}{3.557850in}}%
\pgfpathlineto{\pgfqpoint{4.505657in}{3.563285in}}%
\pgfpathlineto{\pgfqpoint{4.868825in}{3.563113in}}%
\pgfpathlineto{\pgfqpoint{5.231994in}{3.561329in}}%
\pgfpathlineto{\pgfqpoint{5.595162in}{3.561840in}}%
\pgfpathlineto{\pgfqpoint{5.958330in}{3.562994in}}%
\pgfusepath{stroke}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.510806in}{0.456793in}}{\pgfqpoint{5.447524in}{3.293203in}}%
\pgfusepath{clip}%
\pgfsetbuttcap%
\pgfsetroundjoin%
\definecolor{currentfill}{rgb}{0.600000,0.196078,0.800000}%
\pgfsetfillcolor{currentfill}%
\pgfsetlinewidth{1.003750pt}%
\definecolor{currentstroke}{rgb}{0.600000,0.196078,0.800000}%
\pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}%
\pgfsys@defobject{currentmarker}{\pgfqpoint{-0.041667in}{-0.041667in}}{\pgfqpoint{0.041667in}{0.041667in}}{%
\pgfpathmoveto{\pgfqpoint{0.000000in}{-0.041667in}}%
\pgfpathcurveto{\pgfqpoint{0.011050in}{-0.041667in}}{\pgfqpoint{0.021649in}{-0.037276in}}{\pgfqpoint{0.029463in}{-0.029463in}}%
\pgfpathcurveto{\pgfqpoint{0.037276in}{-0.021649in}}{\pgfqpoint{0.041667in}{-0.011050in}}{\pgfqpoint{0.041667in}{0.000000in}}%
\pgfpathcurveto{\pgfqpoint{0.041667in}{0.011050in}}{\pgfqpoint{0.037276in}{0.021649in}}{\pgfqpoint{0.029463in}{0.029463in}}%
\pgfpathcurveto{\pgfqpoint{0.021649in}{0.037276in}}{\pgfqpoint{0.011050in}{0.041667in}}{\pgfqpoint{0.000000in}{0.041667in}}%
\pgfpathcurveto{\pgfqpoint{-0.011050in}{0.041667in}}{\pgfqpoint{-0.021649in}{0.037276in}}{\pgfqpoint{-0.029463in}{0.029463in}}%
\pgfpathcurveto{\pgfqpoint{-0.037276in}{0.021649in}}{\pgfqpoint{-0.041667in}{0.011050in}}{\pgfqpoint{-0.041667in}{0.000000in}}%
\pgfpathcurveto{\pgfqpoint{-0.041667in}{-0.011050in}}{\pgfqpoint{-0.037276in}{-0.021649in}}{\pgfqpoint{-0.029463in}{-0.029463in}}%
\pgfpathcurveto{\pgfqpoint{-0.021649in}{-0.037276in}}{\pgfqpoint{-0.011050in}{-0.041667in}}{\pgfqpoint{0.000000in}{-0.041667in}}%
\pgfpathclose%
\pgfusepath{stroke,fill}%
}%
\begin{pgfscope}%
\pgfsys@transformshift{0.510806in}{3.579731in}%
\pgfsys@useobject{currentmarker}{}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfsys@transformshift{0.873975in}{3.583834in}%
\pgfsys@useobject{currentmarker}{}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfsys@transformshift{1.237143in}{3.584048in}%
\pgfsys@useobject{currentmarker}{}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfsys@transformshift{1.600311in}{3.584572in}%
\pgfsys@useobject{currentmarker}{}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfsys@transformshift{1.963479in}{3.583258in}%
\pgfsys@useobject{currentmarker}{}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfsys@transformshift{2.326648in}{3.583262in}%
\pgfsys@useobject{currentmarker}{}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfsys@transformshift{2.689816in}{3.583638in}%
\pgfsys@useobject{currentmarker}{}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfsys@transformshift{3.052984in}{3.583646in}%
\pgfsys@useobject{currentmarker}{}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfsys@transformshift{3.416152in}{3.585575in}%
\pgfsys@useobject{currentmarker}{}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfsys@transformshift{3.779321in}{3.594346in}%
\pgfsys@useobject{currentmarker}{}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfsys@transformshift{4.142489in}{3.600306in}%
\pgfsys@useobject{currentmarker}{}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfsys@transformshift{4.505657in}{3.578675in}%
\pgfsys@useobject{currentmarker}{}%
\end{pgfscope}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.510806in}{0.456793in}}{\pgfqpoint{5.447524in}{3.293203in}}%
\pgfusepath{clip}%
\pgfsetbuttcap%
\pgfsetroundjoin%
\pgfsetlinewidth{1.003750pt}%
\definecolor{currentstroke}{rgb}{0.600000,0.196078,0.800000}%
\pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{4.868825in}{2.893994in}}%
\pgfpathcurveto{\pgfqpoint{4.879875in}{2.893994in}}{\pgfqpoint{4.890474in}{2.898384in}}{\pgfqpoint{4.898288in}{2.906198in}}%
\pgfpathcurveto{\pgfqpoint{4.906102in}{2.914012in}}{\pgfqpoint{4.910492in}{2.924611in}}{\pgfqpoint{4.910492in}{2.935661in}}%
\pgfpathcurveto{\pgfqpoint{4.910492in}{2.946711in}}{\pgfqpoint{4.906102in}{2.957310in}}{\pgfqpoint{4.898288in}{2.965123in}}%
\pgfpathcurveto{\pgfqpoint{4.890474in}{2.972937in}}{\pgfqpoint{4.879875in}{2.977327in}}{\pgfqpoint{4.868825in}{2.977327in}}%
\pgfpathcurveto{\pgfqpoint{4.857775in}{2.977327in}}{\pgfqpoint{4.847176in}{2.972937in}}{\pgfqpoint{4.839362in}{2.965123in}}%
\pgfpathcurveto{\pgfqpoint{4.831549in}{2.957310in}}{\pgfqpoint{4.827159in}{2.946711in}}{\pgfqpoint{4.827159in}{2.935661in}}%
\pgfpathcurveto{\pgfqpoint{4.827159in}{2.924611in}}{\pgfqpoint{4.831549in}{2.914012in}}{\pgfqpoint{4.839362in}{2.906198in}}%
\pgfpathcurveto{\pgfqpoint{4.847176in}{2.898384in}}{\pgfqpoint{4.857775in}{2.893994in}}{\pgfqpoint{4.868825in}{2.893994in}}%
\pgfpathclose%
\pgfusepath{stroke}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.510806in}{0.456793in}}{\pgfqpoint{5.447524in}{3.293203in}}%
\pgfusepath{clip}%
\pgfsetbuttcap%
\pgfsetroundjoin%
\pgfsetlinewidth{1.003750pt}%
\definecolor{currentstroke}{rgb}{0.600000,0.196078,0.800000}%
\pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{5.231994in}{2.676072in}}%
\pgfpathcurveto{\pgfqpoint{5.243044in}{2.676072in}}{\pgfqpoint{5.253643in}{2.680462in}}{\pgfqpoint{5.261456in}{2.688276in}}%
\pgfpathcurveto{\pgfqpoint{5.269270in}{2.696090in}}{\pgfqpoint{5.273660in}{2.706689in}}{\pgfqpoint{5.273660in}{2.717739in}}%
\pgfpathcurveto{\pgfqpoint{5.273660in}{2.728789in}}{\pgfqpoint{5.269270in}{2.739388in}}{\pgfqpoint{5.261456in}{2.747201in}}%
\pgfpathcurveto{\pgfqpoint{5.253643in}{2.755015in}}{\pgfqpoint{5.243044in}{2.759405in}}{\pgfqpoint{5.231994in}{2.759405in}}%
\pgfpathcurveto{\pgfqpoint{5.220943in}{2.759405in}}{\pgfqpoint{5.210344in}{2.755015in}}{\pgfqpoint{5.202531in}{2.747201in}}%
\pgfpathcurveto{\pgfqpoint{5.194717in}{2.739388in}}{\pgfqpoint{5.190327in}{2.728789in}}{\pgfqpoint{5.190327in}{2.717739in}}%
\pgfpathcurveto{\pgfqpoint{5.190327in}{2.706689in}}{\pgfqpoint{5.194717in}{2.696090in}}{\pgfqpoint{5.202531in}{2.688276in}}%
\pgfpathcurveto{\pgfqpoint{5.210344in}{2.680462in}}{\pgfqpoint{5.220943in}{2.676072in}}{\pgfqpoint{5.231994in}{2.676072in}}%
\pgfpathclose%
\pgfusepath{stroke}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.510806in}{0.456793in}}{\pgfqpoint{5.447524in}{3.293203in}}%
\pgfusepath{clip}%
\pgfsetbuttcap%
\pgfsetroundjoin%
\pgfsetlinewidth{1.003750pt}%
\definecolor{currentstroke}{rgb}{0.600000,0.196078,0.800000}%
\pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{5.595162in}{2.555940in}}%
\pgfpathcurveto{\pgfqpoint{5.606212in}{2.555940in}}{\pgfqpoint{5.616811in}{2.560330in}}{\pgfqpoint{5.624625in}{2.568144in}}%
\pgfpathcurveto{\pgfqpoint{5.632438in}{2.575958in}}{\pgfqpoint{5.636828in}{2.586557in}}{\pgfqpoint{5.636828in}{2.597607in}}%
\pgfpathcurveto{\pgfqpoint{5.636828in}{2.608657in}}{\pgfqpoint{5.632438in}{2.619256in}}{\pgfqpoint{5.624625in}{2.627070in}}%
\pgfpathcurveto{\pgfqpoint{5.616811in}{2.634883in}}{\pgfqpoint{5.606212in}{2.639273in}}{\pgfqpoint{5.595162in}{2.639273in}}%
\pgfpathcurveto{\pgfqpoint{5.584112in}{2.639273in}}{\pgfqpoint{5.573513in}{2.634883in}}{\pgfqpoint{5.565699in}{2.627070in}}%
\pgfpathcurveto{\pgfqpoint{5.557885in}{2.619256in}}{\pgfqpoint{5.553495in}{2.608657in}}{\pgfqpoint{5.553495in}{2.597607in}}%
\pgfpathcurveto{\pgfqpoint{5.553495in}{2.586557in}}{\pgfqpoint{5.557885in}{2.575958in}}{\pgfqpoint{5.565699in}{2.568144in}}%
\pgfpathcurveto{\pgfqpoint{5.573513in}{2.560330in}}{\pgfqpoint{5.584112in}{2.555940in}}{\pgfqpoint{5.595162in}{2.555940in}}%
\pgfpathclose%
\pgfusepath{stroke}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.510806in}{0.456793in}}{\pgfqpoint{5.447524in}{3.293203in}}%
\pgfusepath{clip}%
\pgfsetbuttcap%
\pgfsetroundjoin%
\pgfsetlinewidth{1.003750pt}%
\definecolor{currentstroke}{rgb}{0.600000,0.196078,0.800000}%
\pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{5.958330in}{2.517269in}}%
\pgfpathcurveto{\pgfqpoint{5.969380in}{2.517269in}}{\pgfqpoint{5.979979in}{2.521659in}}{\pgfqpoint{5.987793in}{2.529473in}}%
\pgfpathcurveto{\pgfqpoint{5.995606in}{2.537286in}}{\pgfqpoint{5.999997in}{2.547885in}}{\pgfqpoint{5.999997in}{2.558935in}}%
\pgfpathcurveto{\pgfqpoint{5.999997in}{2.569986in}}{\pgfqpoint{5.995606in}{2.580585in}}{\pgfqpoint{5.987793in}{2.588398in}}%
\pgfpathcurveto{\pgfqpoint{5.979979in}{2.596212in}}{\pgfqpoint{5.969380in}{2.600602in}}{\pgfqpoint{5.958330in}{2.600602in}}%
\pgfpathcurveto{\pgfqpoint{5.947280in}{2.600602in}}{\pgfqpoint{5.936681in}{2.596212in}}{\pgfqpoint{5.928867in}{2.588398in}}%
\pgfpathcurveto{\pgfqpoint{5.921054in}{2.580585in}}{\pgfqpoint{5.916663in}{2.569986in}}{\pgfqpoint{5.916663in}{2.558935in}}%
\pgfpathcurveto{\pgfqpoint{5.916663in}{2.547885in}}{\pgfqpoint{5.921054in}{2.537286in}}{\pgfqpoint{5.928867in}{2.529473in}}%
\pgfpathcurveto{\pgfqpoint{5.936681in}{2.521659in}}{\pgfqpoint{5.947280in}{2.517269in}}{\pgfqpoint{5.958330in}{2.517269in}}%
\pgfpathclose%
\pgfusepath{stroke}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.510806in}{0.456793in}}{\pgfqpoint{5.447524in}{3.293203in}}%
\pgfusepath{clip}%
\pgfsetrectcap%
\pgfsetroundjoin%
\pgfsetlinewidth{1.505625pt}%
\definecolor{currentstroke}{rgb}{0.600000,0.196078,0.800000}%
\pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.510806in}{3.579731in}}%
\pgfpathlineto{\pgfqpoint{0.873975in}{3.583834in}}%
\pgfpathlineto{\pgfqpoint{1.237143in}{3.584048in}}%
\pgfpathlineto{\pgfqpoint{1.600311in}{3.584572in}}%
\pgfpathlineto{\pgfqpoint{1.963479in}{3.583258in}}%
\pgfpathlineto{\pgfqpoint{2.326648in}{3.583262in}}%
\pgfpathlineto{\pgfqpoint{2.689816in}{3.583638in}}%
\pgfpathlineto{\pgfqpoint{3.052984in}{3.583646in}}%
\pgfpathlineto{\pgfqpoint{3.416152in}{3.585575in}}%
\pgfpathlineto{\pgfqpoint{3.779321in}{3.594346in}}%
\pgfpathlineto{\pgfqpoint{4.142489in}{3.600306in}}%
\pgfpathlineto{\pgfqpoint{4.505657in}{3.578675in}}%
\pgfpathlineto{\pgfqpoint{4.868825in}{2.935661in}}%
\pgfpathlineto{\pgfqpoint{5.231994in}{2.717739in}}%
\pgfpathlineto{\pgfqpoint{5.595162in}{2.597607in}}%
\pgfpathlineto{\pgfqpoint{5.958330in}{2.558935in}}%
\pgfusepath{stroke}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfsetbuttcap%
\pgfsetroundjoin%
\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetfillcolor{currentfill}%
\pgfsetlinewidth{0.803000pt}%
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}%
\pgfsys@defobject{currentmarker}{\pgfqpoint{0.000000in}{-0.048611in}}{\pgfqpoint{0.000000in}{0.000000in}}{%
\pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{0.000000in}{-0.048611in}}%
\pgfusepath{stroke,fill}%
}%
\begin{pgfscope}%
\pgfsys@transformshift{2.141323in}{0.456793in}%
\pgfsys@useobject{currentmarker}{}%
\end{pgfscope}%
\end{pgfscope}%
\begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}%
\pgftext[x=2.141323in,y=0.359571in,,top]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont \(\displaystyle {10^{0}}\)}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfsetbuttcap%
\pgfsetroundjoin%
\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetfillcolor{currentfill}%
\pgfsetlinewidth{0.803000pt}%
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}%
\pgfsys@defobject{currentmarker}{\pgfqpoint{0.000000in}{-0.048611in}}{\pgfqpoint{0.000000in}{0.000000in}}{%
\pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{0.000000in}{-0.048611in}}%
\pgfusepath{stroke,fill}%
}%
\begin{pgfscope}%
\pgfsys@transformshift{3.957164in}{0.456793in}%
\pgfsys@useobject{currentmarker}{}%
\end{pgfscope}%
\end{pgfscope}%
\begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}%
\pgftext[x=3.957164in,y=0.359571in,,top]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont \(\displaystyle {10^{1}}\)}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfsetbuttcap%
\pgfsetroundjoin%
\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetfillcolor{currentfill}%
\pgfsetlinewidth{0.803000pt}%
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}%
\pgfsys@defobject{currentmarker}{\pgfqpoint{0.000000in}{-0.048611in}}{\pgfqpoint{0.000000in}{0.000000in}}{%
\pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{0.000000in}{-0.048611in}}%
\pgfusepath{stroke,fill}%
}%
\begin{pgfscope}%
\pgfsys@transformshift{5.773005in}{0.456793in}%
\pgfsys@useobject{currentmarker}{}%
\end{pgfscope}%
\end{pgfscope}%
\begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}%
\pgftext[x=5.773005in,y=0.359571in,,top]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont \(\displaystyle {10^{2}}\)}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfsetbuttcap%
\pgfsetroundjoin%
\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetfillcolor{currentfill}%
\pgfsetlinewidth{0.602250pt}%
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}%
\pgfsys@defobject{currentmarker}{\pgfqpoint{0.000000in}{-0.027778in}}{\pgfqpoint{0.000000in}{0.000000in}}{%
\pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{0.000000in}{-0.027778in}}%
\pgfusepath{stroke,fill}%
}%
\begin{pgfscope}%
\pgfsys@transformshift{0.872104in}{0.456793in}%
\pgfsys@useobject{currentmarker}{}%
\end{pgfscope}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfsetbuttcap%
\pgfsetroundjoin%
\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetfillcolor{currentfill}%
\pgfsetlinewidth{0.602250pt}%
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}%
\pgfsys@defobject{currentmarker}{\pgfqpoint{0.000000in}{-0.027778in}}{\pgfqpoint{0.000000in}{0.000000in}}{%
\pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{0.000000in}{-0.027778in}}%
\pgfusepath{stroke,fill}%
}%
\begin{pgfscope}%
\pgfsys@transformshift{1.191858in}{0.456793in}%
\pgfsys@useobject{currentmarker}{}%
\end{pgfscope}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfsetbuttcap%
\pgfsetroundjoin%
\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetfillcolor{currentfill}%
\pgfsetlinewidth{0.602250pt}%
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}%
\pgfsys@defobject{currentmarker}{\pgfqpoint{0.000000in}{-0.027778in}}{\pgfqpoint{0.000000in}{0.000000in}}{%
\pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{0.000000in}{-0.027778in}}%
\pgfusepath{stroke,fill}%
}%
\begin{pgfscope}%
\pgfsys@transformshift{1.418727in}{0.456793in}%
\pgfsys@useobject{currentmarker}{}%
\end{pgfscope}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfsetbuttcap%
\pgfsetroundjoin%
\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetfillcolor{currentfill}%
\pgfsetlinewidth{0.602250pt}%
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}%
\pgfsys@defobject{currentmarker}{\pgfqpoint{0.000000in}{-0.027778in}}{\pgfqpoint{0.000000in}{0.000000in}}{%
\pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{0.000000in}{-0.027778in}}%
\pgfusepath{stroke,fill}%
}%
\begin{pgfscope}%
\pgfsys@transformshift{1.594700in}{0.456793in}%
\pgfsys@useobject{currentmarker}{}%
\end{pgfscope}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfsetbuttcap%
\pgfsetroundjoin%
\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetfillcolor{currentfill}%
\pgfsetlinewidth{0.602250pt}%
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}%
\pgfsys@defobject{currentmarker}{\pgfqpoint{0.000000in}{-0.027778in}}{\pgfqpoint{0.000000in}{0.000000in}}{%
\pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{0.000000in}{-0.027778in}}%
\pgfusepath{stroke,fill}%
}%
\begin{pgfscope}%
\pgfsys@transformshift{1.738481in}{0.456793in}%
\pgfsys@useobject{currentmarker}{}%
\end{pgfscope}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfsetbuttcap%
\pgfsetroundjoin%
\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetfillcolor{currentfill}%
\pgfsetlinewidth{0.602250pt}%
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}%
\pgfsys@defobject{currentmarker}{\pgfqpoint{0.000000in}{-0.027778in}}{\pgfqpoint{0.000000in}{0.000000in}}{%
\pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{0.000000in}{-0.027778in}}%
\pgfusepath{stroke,fill}%
}%
\begin{pgfscope}%
\pgfsys@transformshift{1.860045in}{0.456793in}%
\pgfsys@useobject{currentmarker}{}%
\end{pgfscope}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfsetbuttcap%
\pgfsetroundjoin%
\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetfillcolor{currentfill}%
\pgfsetlinewidth{0.602250pt}%
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}%
\pgfsys@defobject{currentmarker}{\pgfqpoint{0.000000in}{-0.027778in}}{\pgfqpoint{0.000000in}{0.000000in}}{%
\pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{0.000000in}{-0.027778in}}%
\pgfusepath{stroke,fill}%
}%
\begin{pgfscope}%
\pgfsys@transformshift{1.965350in}{0.456793in}%
\pgfsys@useobject{currentmarker}{}%
\end{pgfscope}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfsetbuttcap%
\pgfsetroundjoin%
\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetfillcolor{currentfill}%
\pgfsetlinewidth{0.602250pt}%
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}%
\pgfsys@defobject{currentmarker}{\pgfqpoint{0.000000in}{-0.027778in}}{\pgfqpoint{0.000000in}{0.000000in}}{%
\pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{0.000000in}{-0.027778in}}%
\pgfusepath{stroke,fill}%
}%
\begin{pgfscope}%
\pgfsys@transformshift{2.058235in}{0.456793in}%
\pgfsys@useobject{currentmarker}{}%
\end{pgfscope}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfsetbuttcap%
\pgfsetroundjoin%
\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetfillcolor{currentfill}%
\pgfsetlinewidth{0.602250pt}%
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}%
\pgfsys@defobject{currentmarker}{\pgfqpoint{0.000000in}{-0.027778in}}{\pgfqpoint{0.000000in}{0.000000in}}{%
\pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{0.000000in}{-0.027778in}}%
\pgfusepath{stroke,fill}%
}%
\begin{pgfscope}%
\pgfsys@transformshift{2.687946in}{0.456793in}%
\pgfsys@useobject{currentmarker}{}%
\end{pgfscope}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfsetbuttcap%
\pgfsetroundjoin%
\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetfillcolor{currentfill}%
\pgfsetlinewidth{0.602250pt}%
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}%
\pgfsys@defobject{currentmarker}{\pgfqpoint{0.000000in}{-0.027778in}}{\pgfqpoint{0.000000in}{0.000000in}}{%
\pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{0.000000in}{-0.027778in}}%
\pgfusepath{stroke,fill}%
}%
\begin{pgfscope}%
\pgfsys@transformshift{3.007699in}{0.456793in}%
\pgfsys@useobject{currentmarker}{}%
\end{pgfscope}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfsetbuttcap%
\pgfsetroundjoin%
\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetfillcolor{currentfill}%
\pgfsetlinewidth{0.602250pt}%
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}%
\pgfsys@defobject{currentmarker}{\pgfqpoint{0.000000in}{-0.027778in}}{\pgfqpoint{0.000000in}{0.000000in}}{%
\pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{0.000000in}{-0.027778in}}%
\pgfusepath{stroke,fill}%
}%
\begin{pgfscope}%
\pgfsys@transformshift{3.234568in}{0.456793in}%
\pgfsys@useobject{currentmarker}{}%
\end{pgfscope}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfsetbuttcap%
\pgfsetroundjoin%
\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetfillcolor{currentfill}%
\pgfsetlinewidth{0.602250pt}%
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}%
\pgfsys@defobject{currentmarker}{\pgfqpoint{0.000000in}{-0.027778in}}{\pgfqpoint{0.000000in}{0.000000in}}{%
\pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{0.000000in}{-0.027778in}}%
\pgfusepath{stroke,fill}%
}%
\begin{pgfscope}%
\pgfsys@transformshift{3.410541in}{0.456793in}%
\pgfsys@useobject{currentmarker}{}%
\end{pgfscope}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfsetbuttcap%
\pgfsetroundjoin%
\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetfillcolor{currentfill}%
\pgfsetlinewidth{0.602250pt}%
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}%
\pgfsys@defobject{currentmarker}{\pgfqpoint{0.000000in}{-0.027778in}}{\pgfqpoint{0.000000in}{0.000000in}}{%
\pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{0.000000in}{-0.027778in}}%
\pgfusepath{stroke,fill}%
}%
\begin{pgfscope}%
\pgfsys@transformshift{3.554322in}{0.456793in}%
\pgfsys@useobject{currentmarker}{}%
\end{pgfscope}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfsetbuttcap%
\pgfsetroundjoin%
\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetfillcolor{currentfill}%
\pgfsetlinewidth{0.602250pt}%
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}%
\pgfsys@defobject{currentmarker}{\pgfqpoint{0.000000in}{-0.027778in}}{\pgfqpoint{0.000000in}{0.000000in}}{%
\pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{0.000000in}{-0.027778in}}%
\pgfusepath{stroke,fill}%
}%
\begin{pgfscope}%
\pgfsys@transformshift{3.675887in}{0.456793in}%
\pgfsys@useobject{currentmarker}{}%
\end{pgfscope}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfsetbuttcap%
\pgfsetroundjoin%
\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetfillcolor{currentfill}%
\pgfsetlinewidth{0.602250pt}%
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}%
\pgfsys@defobject{currentmarker}{\pgfqpoint{0.000000in}{-0.027778in}}{\pgfqpoint{0.000000in}{0.000000in}}{%
\pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{0.000000in}{-0.027778in}}%
\pgfusepath{stroke,fill}%
}%
\begin{pgfscope}%
\pgfsys@transformshift{3.781191in}{0.456793in}%
\pgfsys@useobject{currentmarker}{}%
\end{pgfscope}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfsetbuttcap%
\pgfsetroundjoin%
\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetfillcolor{currentfill}%
\pgfsetlinewidth{0.602250pt}%
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}%
\pgfsys@defobject{currentmarker}{\pgfqpoint{0.000000in}{-0.027778in}}{\pgfqpoint{0.000000in}{0.000000in}}{%
\pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{0.000000in}{-0.027778in}}%
\pgfusepath{stroke,fill}%
}%
\begin{pgfscope}%
\pgfsys@transformshift{3.874076in}{0.456793in}%
\pgfsys@useobject{currentmarker}{}%
\end{pgfscope}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfsetbuttcap%
\pgfsetroundjoin%
\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetfillcolor{currentfill}%
\pgfsetlinewidth{0.602250pt}%
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}%
\pgfsys@defobject{currentmarker}{\pgfqpoint{0.000000in}{-0.027778in}}{\pgfqpoint{0.000000in}{0.000000in}}{%
\pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{0.000000in}{-0.027778in}}%
\pgfusepath{stroke,fill}%
}%
\begin{pgfscope}%
\pgfsys@transformshift{4.503787in}{0.456793in}%
\pgfsys@useobject{currentmarker}{}%
\end{pgfscope}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfsetbuttcap%
\pgfsetroundjoin%
\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetfillcolor{currentfill}%
\pgfsetlinewidth{0.602250pt}%
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}%
\pgfsys@defobject{currentmarker}{\pgfqpoint{0.000000in}{-0.027778in}}{\pgfqpoint{0.000000in}{0.000000in}}{%
\pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{0.000000in}{-0.027778in}}%
\pgfusepath{stroke,fill}%
}%
\begin{pgfscope}%
\pgfsys@transformshift{4.823540in}{0.456793in}%
\pgfsys@useobject{currentmarker}{}%
\end{pgfscope}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfsetbuttcap%
\pgfsetroundjoin%
\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetfillcolor{currentfill}%
\pgfsetlinewidth{0.602250pt}%
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}%
\pgfsys@defobject{currentmarker}{\pgfqpoint{0.000000in}{-0.027778in}}{\pgfqpoint{0.000000in}{0.000000in}}{%
\pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{0.000000in}{-0.027778in}}%
\pgfusepath{stroke,fill}%
}%
\begin{pgfscope}%
\pgfsys@transformshift{5.050409in}{0.456793in}%
\pgfsys@useobject{currentmarker}{}%
\end{pgfscope}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfsetbuttcap%
\pgfsetroundjoin%
\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetfillcolor{currentfill}%
\pgfsetlinewidth{0.602250pt}%
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}%
\pgfsys@defobject{currentmarker}{\pgfqpoint{0.000000in}{-0.027778in}}{\pgfqpoint{0.000000in}{0.000000in}}{%
\pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{0.000000in}{-0.027778in}}%
\pgfusepath{stroke,fill}%
}%
\begin{pgfscope}%
\pgfsys@transformshift{5.226383in}{0.456793in}%
\pgfsys@useobject{currentmarker}{}%
\end{pgfscope}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfsetbuttcap%
\pgfsetroundjoin%
\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetfillcolor{currentfill}%
\pgfsetlinewidth{0.602250pt}%
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}%
\pgfsys@defobject{currentmarker}{\pgfqpoint{0.000000in}{-0.027778in}}{\pgfqpoint{0.000000in}{0.000000in}}{%
\pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{0.000000in}{-0.027778in}}%
\pgfusepath{stroke,fill}%
}%
\begin{pgfscope}%
\pgfsys@transformshift{5.370163in}{0.456793in}%
\pgfsys@useobject{currentmarker}{}%
\end{pgfscope}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfsetbuttcap%
\pgfsetroundjoin%
\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetfillcolor{currentfill}%
\pgfsetlinewidth{0.602250pt}%
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}%
\pgfsys@defobject{currentmarker}{\pgfqpoint{0.000000in}{-0.027778in}}{\pgfqpoint{0.000000in}{0.000000in}}{%
\pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{0.000000in}{-0.027778in}}%
\pgfusepath{stroke,fill}%
}%
\begin{pgfscope}%
\pgfsys@transformshift{5.491728in}{0.456793in}%
\pgfsys@useobject{currentmarker}{}%
\end{pgfscope}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfsetbuttcap%
\pgfsetroundjoin%
\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetfillcolor{currentfill}%
\pgfsetlinewidth{0.602250pt}%
\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}%
\pgfsys@defobject{currentmarker}{\pgfqpoint{0.000000in}{-0.027778in}}{\pgfqpoint{0.000000in}{0.000000in}}{%
\pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{0.000000in}{-0.027778in}}%
\pgfusepath{stroke,fill}%
}%
\begin{pgfscope}%
\pgfsys@transformshift{5.597032in}{0.456793in}%