-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathk_J_sweep.pgf
1500 lines (1500 loc) · 73.9 KB
/
k_J_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.750000in}{0.500000in}}%
\pgfpathlineto{\pgfqpoint{5.400000in}{0.500000in}}%
\pgfpathlineto{\pgfqpoint{5.400000in}{3.520000in}}%
\pgfpathlineto{\pgfqpoint{0.750000in}{3.520000in}}%
\pgfpathclose%
\pgfusepath{fill}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.750000in}{0.500000in}}{\pgfqpoint{4.650000in}{3.020000in}}%
\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.812207in}{3.298146in}%
\pgfsys@useobject{currentmarker}{}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfsys@transformshift{0.889967in}{3.278760in}%
\pgfsys@useobject{currentmarker}{}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfsys@transformshift{1.045485in}{3.286285in}%
\pgfsys@useobject{currentmarker}{}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfsys@transformshift{1.201003in}{3.290305in}%
\pgfsys@useobject{currentmarker}{}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfsys@transformshift{1.356522in}{3.288340in}%
\pgfsys@useobject{currentmarker}{}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfsys@transformshift{1.512040in}{3.287525in}%
\pgfsys@useobject{currentmarker}{}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfsys@transformshift{1.667559in}{3.267547in}%
\pgfsys@useobject{currentmarker}{}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfsys@transformshift{1.823077in}{3.271875in}%
\pgfsys@useobject{currentmarker}{}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfsys@transformshift{1.978595in}{3.263558in}%
\pgfsys@useobject{currentmarker}{}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfsys@transformshift{2.134114in}{3.263147in}%
\pgfsys@useobject{currentmarker}{}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfsys@transformshift{2.289632in}{3.265274in}%
\pgfsys@useobject{currentmarker}{}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfsys@transformshift{2.600669in}{3.275251in}%
\pgfsys@useobject{currentmarker}{}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfsys@transformshift{2.911706in}{3.276935in}%
\pgfsys@useobject{currentmarker}{}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfsys@transformshift{3.222742in}{3.277693in}%
\pgfsys@useobject{currentmarker}{}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfsys@transformshift{3.844816in}{3.277699in}%
\pgfsys@useobject{currentmarker}{}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfsys@transformshift{5.400000in}{3.276331in}%
\pgfsys@useobject{currentmarker}{}%
\end{pgfscope}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.750000in}{0.500000in}}{\pgfqpoint{4.650000in}{3.020000in}}%
\pgfusepath{clip}%
\pgfsetbuttcap%
\pgfsetroundjoin%
\pgfsetlinewidth{1.003750pt}%
\definecolor{currentstroke}{rgb}{0.600000,0.196078,0.800000}%
\pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}%
\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}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.750000in}{0.500000in}}{\pgfqpoint{4.650000in}{3.020000in}}%
\pgfusepath{clip}%
\pgfsetrectcap%
\pgfsetroundjoin%
\pgfsetlinewidth{2.007500pt}%
\definecolor{currentstroke}{rgb}{0.600000,0.196078,0.800000}%
\pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.812207in}{3.298146in}}%
\pgfpathlineto{\pgfqpoint{0.889967in}{3.278760in}}%
\pgfpathlineto{\pgfqpoint{1.045485in}{3.286285in}}%
\pgfpathlineto{\pgfqpoint{1.201003in}{3.290305in}}%
\pgfpathlineto{\pgfqpoint{1.356522in}{3.288340in}}%
\pgfpathlineto{\pgfqpoint{1.512040in}{3.287525in}}%
\pgfpathlineto{\pgfqpoint{1.667559in}{3.267547in}}%
\pgfpathlineto{\pgfqpoint{1.823077in}{3.271875in}}%
\pgfpathlineto{\pgfqpoint{1.978595in}{3.263558in}}%
\pgfpathlineto{\pgfqpoint{2.134114in}{3.263147in}}%
\pgfpathlineto{\pgfqpoint{2.289632in}{3.265274in}}%
\pgfpathlineto{\pgfqpoint{2.600669in}{3.275251in}}%
\pgfpathlineto{\pgfqpoint{2.911706in}{3.276935in}}%
\pgfpathlineto{\pgfqpoint{3.222742in}{3.277693in}}%
\pgfpathlineto{\pgfqpoint{3.844816in}{3.277699in}}%
\pgfpathlineto{\pgfqpoint{5.400000in}{3.276331in}}%
\pgfusepath{stroke}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.750000in}{0.500000in}}{\pgfqpoint{4.650000in}{3.020000in}}%
\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{0.812207in}{3.262268in}%
\pgfsys@useobject{currentmarker}{}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfsys@transformshift{0.889967in}{3.251766in}%
\pgfsys@useobject{currentmarker}{}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfsys@transformshift{1.045485in}{3.261908in}%
\pgfsys@useobject{currentmarker}{}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfsys@transformshift{1.201003in}{3.259439in}%
\pgfsys@useobject{currentmarker}{}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfsys@transformshift{1.356522in}{3.258432in}%
\pgfsys@useobject{currentmarker}{}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfsys@transformshift{1.512040in}{3.258157in}%
\pgfsys@useobject{currentmarker}{}%
\end{pgfscope}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.750000in}{0.500000in}}{\pgfqpoint{4.650000in}{3.020000in}}%
\pgfusepath{clip}%
\pgfsetbuttcap%
\pgfsetroundjoin%
\pgfsetlinewidth{1.003750pt}%
\definecolor{currentstroke}{rgb}{0.133333,0.545098,0.133333}%
\pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{1.667559in}{1.568544in}}%
\pgfpathcurveto{\pgfqpoint{1.678609in}{1.568544in}}{\pgfqpoint{1.689208in}{1.572934in}}{\pgfqpoint{1.697021in}{1.580748in}}%
\pgfpathcurveto{\pgfqpoint{1.704835in}{1.588561in}}{\pgfqpoint{1.709225in}{1.599161in}}{\pgfqpoint{1.709225in}{1.610211in}}%
\pgfpathcurveto{\pgfqpoint{1.709225in}{1.621261in}}{\pgfqpoint{1.704835in}{1.631860in}}{\pgfqpoint{1.697021in}{1.639673in}}%
\pgfpathcurveto{\pgfqpoint{1.689208in}{1.647487in}}{\pgfqpoint{1.678609in}{1.651877in}}{\pgfqpoint{1.667559in}{1.651877in}}%
\pgfpathcurveto{\pgfqpoint{1.656508in}{1.651877in}}{\pgfqpoint{1.645909in}{1.647487in}}{\pgfqpoint{1.638096in}{1.639673in}}%
\pgfpathcurveto{\pgfqpoint{1.630282in}{1.631860in}}{\pgfqpoint{1.625892in}{1.621261in}}{\pgfqpoint{1.625892in}{1.610211in}}%
\pgfpathcurveto{\pgfqpoint{1.625892in}{1.599161in}}{\pgfqpoint{1.630282in}{1.588561in}}{\pgfqpoint{1.638096in}{1.580748in}}%
\pgfpathcurveto{\pgfqpoint{1.645909in}{1.572934in}}{\pgfqpoint{1.656508in}{1.568544in}}{\pgfqpoint{1.667559in}{1.568544in}}%
\pgfpathclose%
\pgfusepath{stroke}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.750000in}{0.500000in}}{\pgfqpoint{4.650000in}{3.020000in}}%
\pgfusepath{clip}%
\pgfsetbuttcap%
\pgfsetroundjoin%
\pgfsetlinewidth{1.003750pt}%
\definecolor{currentstroke}{rgb}{0.133333,0.545098,0.133333}%
\pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{1.823077in}{1.333068in}}%
\pgfpathcurveto{\pgfqpoint{1.834127in}{1.333068in}}{\pgfqpoint{1.844726in}{1.337458in}}{\pgfqpoint{1.852540in}{1.345271in}}%
\pgfpathcurveto{\pgfqpoint{1.860353in}{1.353085in}}{\pgfqpoint{1.864744in}{1.363684in}}{\pgfqpoint{1.864744in}{1.374734in}}%
\pgfpathcurveto{\pgfqpoint{1.864744in}{1.385784in}}{\pgfqpoint{1.860353in}{1.396383in}}{\pgfqpoint{1.852540in}{1.404197in}}%
\pgfpathcurveto{\pgfqpoint{1.844726in}{1.412011in}}{\pgfqpoint{1.834127in}{1.416401in}}{\pgfqpoint{1.823077in}{1.416401in}}%
\pgfpathcurveto{\pgfqpoint{1.812027in}{1.416401in}}{\pgfqpoint{1.801428in}{1.412011in}}{\pgfqpoint{1.793614in}{1.404197in}}%
\pgfpathcurveto{\pgfqpoint{1.785801in}{1.396383in}}{\pgfqpoint{1.781410in}{1.385784in}}{\pgfqpoint{1.781410in}{1.374734in}}%
\pgfpathcurveto{\pgfqpoint{1.781410in}{1.363684in}}{\pgfqpoint{1.785801in}{1.353085in}}{\pgfqpoint{1.793614in}{1.345271in}}%
\pgfpathcurveto{\pgfqpoint{1.801428in}{1.337458in}}{\pgfqpoint{1.812027in}{1.333068in}}{\pgfqpoint{1.823077in}{1.333068in}}%
\pgfpathclose%
\pgfusepath{stroke}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.750000in}{0.500000in}}{\pgfqpoint{4.650000in}{3.020000in}}%
\pgfusepath{clip}%
\pgfsetbuttcap%
\pgfsetroundjoin%
\pgfsetlinewidth{1.003750pt}%
\definecolor{currentstroke}{rgb}{0.133333,0.545098,0.133333}%
\pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{1.978595in}{1.215968in}}%
\pgfpathcurveto{\pgfqpoint{1.989645in}{1.215968in}}{\pgfqpoint{2.000244in}{1.220359in}}{\pgfqpoint{2.008058in}{1.228172in}}%
\pgfpathcurveto{\pgfqpoint{2.015872in}{1.235986in}}{\pgfqpoint{2.020262in}{1.246585in}}{\pgfqpoint{2.020262in}{1.257635in}}%
\pgfpathcurveto{\pgfqpoint{2.020262in}{1.268685in}}{\pgfqpoint{2.015872in}{1.279284in}}{\pgfqpoint{2.008058in}{1.287098in}}%
\pgfpathcurveto{\pgfqpoint{2.000244in}{1.294911in}}{\pgfqpoint{1.989645in}{1.299302in}}{\pgfqpoint{1.978595in}{1.299302in}}%
\pgfpathcurveto{\pgfqpoint{1.967545in}{1.299302in}}{\pgfqpoint{1.956946in}{1.294911in}}{\pgfqpoint{1.949133in}{1.287098in}}%
\pgfpathcurveto{\pgfqpoint{1.941319in}{1.279284in}}{\pgfqpoint{1.936929in}{1.268685in}}{\pgfqpoint{1.936929in}{1.257635in}}%
\pgfpathcurveto{\pgfqpoint{1.936929in}{1.246585in}}{\pgfqpoint{1.941319in}{1.235986in}}{\pgfqpoint{1.949133in}{1.228172in}}%
\pgfpathcurveto{\pgfqpoint{1.956946in}{1.220359in}}{\pgfqpoint{1.967545in}{1.215968in}}{\pgfqpoint{1.978595in}{1.215968in}}%
\pgfpathclose%
\pgfusepath{stroke}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.750000in}{0.500000in}}{\pgfqpoint{4.650000in}{3.020000in}}%
\pgfusepath{clip}%
\pgfsetbuttcap%
\pgfsetroundjoin%
\pgfsetlinewidth{1.003750pt}%
\definecolor{currentstroke}{rgb}{0.133333,0.545098,0.133333}%
\pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{2.134114in}{1.093263in}}%
\pgfpathcurveto{\pgfqpoint{2.145164in}{1.093263in}}{\pgfqpoint{2.155763in}{1.097653in}}{\pgfqpoint{2.163576in}{1.105467in}}%
\pgfpathcurveto{\pgfqpoint{2.171390in}{1.113281in}}{\pgfqpoint{2.175780in}{1.123880in}}{\pgfqpoint{2.175780in}{1.134930in}}%
\pgfpathcurveto{\pgfqpoint{2.175780in}{1.145980in}}{\pgfqpoint{2.171390in}{1.156579in}}{\pgfqpoint{2.163576in}{1.164393in}}%
\pgfpathcurveto{\pgfqpoint{2.155763in}{1.172206in}}{\pgfqpoint{2.145164in}{1.176596in}}{\pgfqpoint{2.134114in}{1.176596in}}%
\pgfpathcurveto{\pgfqpoint{2.123064in}{1.176596in}}{\pgfqpoint{2.112465in}{1.172206in}}{\pgfqpoint{2.104651in}{1.164393in}}%
\pgfpathcurveto{\pgfqpoint{2.096837in}{1.156579in}}{\pgfqpoint{2.092447in}{1.145980in}}{\pgfqpoint{2.092447in}{1.134930in}}%
\pgfpathcurveto{\pgfqpoint{2.092447in}{1.123880in}}{\pgfqpoint{2.096837in}{1.113281in}}{\pgfqpoint{2.104651in}{1.105467in}}%
\pgfpathcurveto{\pgfqpoint{2.112465in}{1.097653in}}{\pgfqpoint{2.123064in}{1.093263in}}{\pgfqpoint{2.134114in}{1.093263in}}%
\pgfpathclose%
\pgfusepath{stroke}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.750000in}{0.500000in}}{\pgfqpoint{4.650000in}{3.020000in}}%
\pgfusepath{clip}%
\pgfsetbuttcap%
\pgfsetroundjoin%
\pgfsetlinewidth{1.003750pt}%
\definecolor{currentstroke}{rgb}{0.133333,0.545098,0.133333}%
\pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{2.289632in}{1.038636in}}%
\pgfpathcurveto{\pgfqpoint{2.300682in}{1.038636in}}{\pgfqpoint{2.311281in}{1.043026in}}{\pgfqpoint{2.319095in}{1.050840in}}%
\pgfpathcurveto{\pgfqpoint{2.326909in}{1.058653in}}{\pgfqpoint{2.331299in}{1.069252in}}{\pgfqpoint{2.331299in}{1.080302in}}%
\pgfpathcurveto{\pgfqpoint{2.331299in}{1.091353in}}{\pgfqpoint{2.326909in}{1.101952in}}{\pgfqpoint{2.319095in}{1.109765in}}%
\pgfpathcurveto{\pgfqpoint{2.311281in}{1.117579in}}{\pgfqpoint{2.300682in}{1.121969in}}{\pgfqpoint{2.289632in}{1.121969in}}%
\pgfpathcurveto{\pgfqpoint{2.278582in}{1.121969in}}{\pgfqpoint{2.267983in}{1.117579in}}{\pgfqpoint{2.260169in}{1.109765in}}%
\pgfpathcurveto{\pgfqpoint{2.252356in}{1.101952in}}{\pgfqpoint{2.247965in}{1.091353in}}{\pgfqpoint{2.247965in}{1.080302in}}%
\pgfpathcurveto{\pgfqpoint{2.247965in}{1.069252in}}{\pgfqpoint{2.252356in}{1.058653in}}{\pgfqpoint{2.260169in}{1.050840in}}%
\pgfpathcurveto{\pgfqpoint{2.267983in}{1.043026in}}{\pgfqpoint{2.278582in}{1.038636in}}{\pgfqpoint{2.289632in}{1.038636in}}%
\pgfpathclose%
\pgfusepath{stroke}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.750000in}{0.500000in}}{\pgfqpoint{4.650000in}{3.020000in}}%
\pgfusepath{clip}%
\pgfsetbuttcap%
\pgfsetroundjoin%
\pgfsetlinewidth{1.003750pt}%
\definecolor{currentstroke}{rgb}{0.133333,0.545098,0.133333}%
\pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{2.600669in}{0.938290in}}%
\pgfpathcurveto{\pgfqpoint{2.611719in}{0.938290in}}{\pgfqpoint{2.622318in}{0.942680in}}{\pgfqpoint{2.630132in}{0.950494in}}%
\pgfpathcurveto{\pgfqpoint{2.637945in}{0.958308in}}{\pgfqpoint{2.642336in}{0.968907in}}{\pgfqpoint{2.642336in}{0.979957in}}%
\pgfpathcurveto{\pgfqpoint{2.642336in}{0.991007in}}{\pgfqpoint{2.637945in}{1.001606in}}{\pgfqpoint{2.630132in}{1.009419in}}%
\pgfpathcurveto{\pgfqpoint{2.622318in}{1.017233in}}{\pgfqpoint{2.611719in}{1.021623in}}{\pgfqpoint{2.600669in}{1.021623in}}%
\pgfpathcurveto{\pgfqpoint{2.589619in}{1.021623in}}{\pgfqpoint{2.579020in}{1.017233in}}{\pgfqpoint{2.571206in}{1.009419in}}%
\pgfpathcurveto{\pgfqpoint{2.563392in}{1.001606in}}{\pgfqpoint{2.559002in}{0.991007in}}{\pgfqpoint{2.559002in}{0.979957in}}%
\pgfpathcurveto{\pgfqpoint{2.559002in}{0.968907in}}{\pgfqpoint{2.563392in}{0.958308in}}{\pgfqpoint{2.571206in}{0.950494in}}%
\pgfpathcurveto{\pgfqpoint{2.579020in}{0.942680in}}{\pgfqpoint{2.589619in}{0.938290in}}{\pgfqpoint{2.600669in}{0.938290in}}%
\pgfpathclose%
\pgfusepath{stroke}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.750000in}{0.500000in}}{\pgfqpoint{4.650000in}{3.020000in}}%
\pgfusepath{clip}%
\pgfsetbuttcap%
\pgfsetroundjoin%
\pgfsetlinewidth{1.003750pt}%
\definecolor{currentstroke}{rgb}{0.133333,0.545098,0.133333}%
\pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{2.911706in}{0.894276in}}%
\pgfpathcurveto{\pgfqpoint{2.922756in}{0.894276in}}{\pgfqpoint{2.933355in}{0.898666in}}{\pgfqpoint{2.941168in}{0.906480in}}%
\pgfpathcurveto{\pgfqpoint{2.948982in}{0.914293in}}{\pgfqpoint{2.953372in}{0.924892in}}{\pgfqpoint{2.953372in}{0.935943in}}%
\pgfpathcurveto{\pgfqpoint{2.953372in}{0.946993in}}{\pgfqpoint{2.948982in}{0.957592in}}{\pgfqpoint{2.941168in}{0.965405in}}%
\pgfpathcurveto{\pgfqpoint{2.933355in}{0.973219in}}{\pgfqpoint{2.922756in}{0.977609in}}{\pgfqpoint{2.911706in}{0.977609in}}%
\pgfpathcurveto{\pgfqpoint{2.900656in}{0.977609in}}{\pgfqpoint{2.890057in}{0.973219in}}{\pgfqpoint{2.882243in}{0.965405in}}%
\pgfpathcurveto{\pgfqpoint{2.874429in}{0.957592in}}{\pgfqpoint{2.870039in}{0.946993in}}{\pgfqpoint{2.870039in}{0.935943in}}%
\pgfpathcurveto{\pgfqpoint{2.870039in}{0.924892in}}{\pgfqpoint{2.874429in}{0.914293in}}{\pgfqpoint{2.882243in}{0.906480in}}%
\pgfpathcurveto{\pgfqpoint{2.890057in}{0.898666in}}{\pgfqpoint{2.900656in}{0.894276in}}{\pgfqpoint{2.911706in}{0.894276in}}%
\pgfpathclose%
\pgfusepath{stroke}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.750000in}{0.500000in}}{\pgfqpoint{4.650000in}{3.020000in}}%
\pgfusepath{clip}%
\pgfsetbuttcap%
\pgfsetroundjoin%
\pgfsetlinewidth{1.003750pt}%
\definecolor{currentstroke}{rgb}{0.133333,0.545098,0.133333}%
\pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.222742in}{0.846970in}}%
\pgfpathcurveto{\pgfqpoint{3.233793in}{0.846970in}}{\pgfqpoint{3.244392in}{0.851360in}}{\pgfqpoint{3.252205in}{0.859173in}}%
\pgfpathcurveto{\pgfqpoint{3.260019in}{0.866987in}}{\pgfqpoint{3.264409in}{0.877586in}}{\pgfqpoint{3.264409in}{0.888636in}}%
\pgfpathcurveto{\pgfqpoint{3.264409in}{0.899686in}}{\pgfqpoint{3.260019in}{0.910285in}}{\pgfqpoint{3.252205in}{0.918099in}}%
\pgfpathcurveto{\pgfqpoint{3.244392in}{0.925913in}}{\pgfqpoint{3.233793in}{0.930303in}}{\pgfqpoint{3.222742in}{0.930303in}}%
\pgfpathcurveto{\pgfqpoint{3.211692in}{0.930303in}}{\pgfqpoint{3.201093in}{0.925913in}}{\pgfqpoint{3.193280in}{0.918099in}}%
\pgfpathcurveto{\pgfqpoint{3.185466in}{0.910285in}}{\pgfqpoint{3.181076in}{0.899686in}}{\pgfqpoint{3.181076in}{0.888636in}}%
\pgfpathcurveto{\pgfqpoint{3.181076in}{0.877586in}}{\pgfqpoint{3.185466in}{0.866987in}}{\pgfqpoint{3.193280in}{0.859173in}}%
\pgfpathcurveto{\pgfqpoint{3.201093in}{0.851360in}}{\pgfqpoint{3.211692in}{0.846970in}}{\pgfqpoint{3.222742in}{0.846970in}}%
\pgfpathclose%
\pgfusepath{stroke}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.750000in}{0.500000in}}{\pgfqpoint{4.650000in}{3.020000in}}%
\pgfusepath{clip}%
\pgfsetbuttcap%
\pgfsetroundjoin%
\pgfsetlinewidth{1.003750pt}%
\definecolor{currentstroke}{rgb}{0.133333,0.545098,0.133333}%
\pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{3.844816in}{0.725483in}}%
\pgfpathcurveto{\pgfqpoint{3.855866in}{0.725483in}}{\pgfqpoint{3.866465in}{0.729873in}}{\pgfqpoint{3.874279in}{0.737687in}}%
\pgfpathcurveto{\pgfqpoint{3.882092in}{0.745500in}}{\pgfqpoint{3.886483in}{0.756099in}}{\pgfqpoint{3.886483in}{0.767149in}}%
\pgfpathcurveto{\pgfqpoint{3.886483in}{0.778199in}}{\pgfqpoint{3.882092in}{0.788799in}}{\pgfqpoint{3.874279in}{0.796612in}}%
\pgfpathcurveto{\pgfqpoint{3.866465in}{0.804426in}}{\pgfqpoint{3.855866in}{0.808816in}}{\pgfqpoint{3.844816in}{0.808816in}}%
\pgfpathcurveto{\pgfqpoint{3.833766in}{0.808816in}}{\pgfqpoint{3.823167in}{0.804426in}}{\pgfqpoint{3.815353in}{0.796612in}}%
\pgfpathcurveto{\pgfqpoint{3.807540in}{0.788799in}}{\pgfqpoint{3.803149in}{0.778199in}}{\pgfqpoint{3.803149in}{0.767149in}}%
\pgfpathcurveto{\pgfqpoint{3.803149in}{0.756099in}}{\pgfqpoint{3.807540in}{0.745500in}}{\pgfqpoint{3.815353in}{0.737687in}}%
\pgfpathcurveto{\pgfqpoint{3.823167in}{0.729873in}}{\pgfqpoint{3.833766in}{0.725483in}}{\pgfqpoint{3.844816in}{0.725483in}}%
\pgfpathclose%
\pgfusepath{stroke}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.750000in}{0.500000in}}{\pgfqpoint{4.650000in}{3.020000in}}%
\pgfusepath{clip}%
\pgfsetbuttcap%
\pgfsetroundjoin%
\pgfsetlinewidth{1.003750pt}%
\definecolor{currentstroke}{rgb}{0.133333,0.545098,0.133333}%
\pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{5.400000in}{0.595606in}}%
\pgfpathcurveto{\pgfqpoint{5.411050in}{0.595606in}}{\pgfqpoint{5.421649in}{0.599996in}}{\pgfqpoint{5.429463in}{0.607810in}}%
\pgfpathcurveto{\pgfqpoint{5.437276in}{0.615624in}}{\pgfqpoint{5.441667in}{0.626223in}}{\pgfqpoint{5.441667in}{0.637273in}}%
\pgfpathcurveto{\pgfqpoint{5.441667in}{0.648323in}}{\pgfqpoint{5.437276in}{0.658922in}}{\pgfqpoint{5.429463in}{0.666736in}}%
\pgfpathcurveto{\pgfqpoint{5.421649in}{0.674549in}}{\pgfqpoint{5.411050in}{0.678939in}}{\pgfqpoint{5.400000in}{0.678939in}}%
\pgfpathcurveto{\pgfqpoint{5.388950in}{0.678939in}}{\pgfqpoint{5.378351in}{0.674549in}}{\pgfqpoint{5.370537in}{0.666736in}}%
\pgfpathcurveto{\pgfqpoint{5.362724in}{0.658922in}}{\pgfqpoint{5.358333in}{0.648323in}}{\pgfqpoint{5.358333in}{0.637273in}}%
\pgfpathcurveto{\pgfqpoint{5.358333in}{0.626223in}}{\pgfqpoint{5.362724in}{0.615624in}}{\pgfqpoint{5.370537in}{0.607810in}}%
\pgfpathcurveto{\pgfqpoint{5.378351in}{0.599996in}}{\pgfqpoint{5.388950in}{0.595606in}}{\pgfqpoint{5.400000in}{0.595606in}}%
\pgfpathclose%
\pgfusepath{stroke}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.750000in}{0.500000in}}{\pgfqpoint{4.650000in}{3.020000in}}%
\pgfusepath{clip}%
\pgfsetrectcap%
\pgfsetroundjoin%
\pgfsetlinewidth{2.007500pt}%
\definecolor{currentstroke}{rgb}{0.133333,0.545098,0.133333}%
\pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{0.812207in}{3.262268in}}%
\pgfpathlineto{\pgfqpoint{0.889967in}{3.251766in}}%
\pgfpathlineto{\pgfqpoint{1.045485in}{3.261908in}}%
\pgfpathlineto{\pgfqpoint{1.201003in}{3.259439in}}%
\pgfpathlineto{\pgfqpoint{1.356522in}{3.258432in}}%
\pgfpathlineto{\pgfqpoint{1.512040in}{3.258157in}}%
\pgfpathlineto{\pgfqpoint{1.667559in}{1.610211in}}%
\pgfpathlineto{\pgfqpoint{1.823077in}{1.374734in}}%
\pgfpathlineto{\pgfqpoint{1.978595in}{1.257635in}}%
\pgfpathlineto{\pgfqpoint{2.134114in}{1.134930in}}%
\pgfpathlineto{\pgfqpoint{2.289632in}{1.080302in}}%
\pgfpathlineto{\pgfqpoint{2.600669in}{0.979957in}}%
\pgfpathlineto{\pgfqpoint{2.911706in}{0.935943in}}%
\pgfpathlineto{\pgfqpoint{3.222742in}{0.888636in}}%
\pgfpathlineto{\pgfqpoint{3.844816in}{0.767149in}}%
\pgfpathlineto{\pgfqpoint{5.400000in}{0.637273in}}%
\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{1.512040in}{0.500000in}%
\pgfsys@useobject{currentmarker}{}%
\end{pgfscope}%
\end{pgfscope}%
\begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}%
\pgftext[x=1.512040in,y=0.402778in,,top]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont \(\displaystyle {0.5}\)}%
\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.289632in}{0.500000in}%
\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.289632in,y=0.402778in,,top]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont \(\displaystyle {1.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.067224in}{0.500000in}%
\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.067224in,y=0.402778in,,top]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont \(\displaystyle {1.5}\)}%
\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.844816in}{0.500000in}%
\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.844816in,y=0.402778in,,top]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont \(\displaystyle {2.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{4.622408in}{0.500000in}%
\pgfsys@useobject{currentmarker}{}%
\end{pgfscope}%
\end{pgfscope}%
\begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}%
\pgftext[x=4.622408in,y=0.402778in,,top]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont \(\displaystyle {2.5}\)}%
\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.400000in}{0.500000in}%
\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.400000in,y=0.402778in,,top]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont \(\displaystyle {3.0}\)}%
\end{pgfscope}%
\begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}%
\pgftext[x=3.075000in,y=0.223766in,,top]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont Hinge joint stiffness (Nm/rad)}%
\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.048611in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
\pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}%
\pgfusepath{stroke,fill}%
}%
\begin{pgfscope}%
\pgfsys@transformshift{0.750000in}{0.678004in}%
\pgfsys@useobject{currentmarker}{}%
\end{pgfscope}%
\end{pgfscope}%
\begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}%
\pgftext[x=0.475308in, y=0.629778in, left, base]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont \(\displaystyle {0.2}\)}%
\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.048611in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
\pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}%
\pgfusepath{stroke,fill}%
}%
\begin{pgfscope}%
\pgfsys@transformshift{0.750000in}{1.308734in}%
\pgfsys@useobject{currentmarker}{}%
\end{pgfscope}%
\end{pgfscope}%
\begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}%
\pgftext[x=0.475308in, y=1.260509in, left, base]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont \(\displaystyle {0.4}\)}%
\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.048611in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
\pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}%
\pgfusepath{stroke,fill}%
}%
\begin{pgfscope}%
\pgfsys@transformshift{0.750000in}{1.939465in}%
\pgfsys@useobject{currentmarker}{}%
\end{pgfscope}%
\end{pgfscope}%
\begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}%
\pgftext[x=0.475308in, y=1.891239in, left, base]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont \(\displaystyle {0.6}\)}%
\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.048611in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
\pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}%
\pgfusepath{stroke,fill}%
}%
\begin{pgfscope}%
\pgfsys@transformshift{0.750000in}{2.570195in}%
\pgfsys@useobject{currentmarker}{}%
\end{pgfscope}%
\end{pgfscope}%
\begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}%
\pgftext[x=0.475308in, y=2.521970in, left, base]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont \(\displaystyle {0.8}\)}%
\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.048611in}{0.000000in}}{\pgfqpoint{-0.000000in}{0.000000in}}{%
\pgfpathmoveto{\pgfqpoint{-0.000000in}{0.000000in}}%
\pgfpathlineto{\pgfqpoint{-0.048611in}{0.000000in}}%
\pgfusepath{stroke,fill}%
}%
\begin{pgfscope}%
\pgfsys@transformshift{0.750000in}{3.200926in}%
\pgfsys@useobject{currentmarker}{}%
\end{pgfscope}%
\end{pgfscope}%
\begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}%
\pgftext[x=0.475308in, y=3.152700in, left, base]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont \(\displaystyle {1.0}\)}%
\end{pgfscope}%
\begin{pgfscope}%
\definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}%
\pgfsetstrokecolor{textcolor}%
\pgfsetfillcolor{textcolor}%
\pgftext[x=0.419753in,y=2.010000in,,bottom,rotate=90.000000]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont Progress (\(\displaystyle \alpha_{max}/\pi\))}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.750000in}{0.500000in}}{\pgfqpoint{4.650000in}{3.020000in}}%
\pgfusepath{clip}%
\pgfsetbuttcap%
\pgfsetroundjoin%
\definecolor{currentfill}{rgb}{0.117647,0.564706,1.000000}%
\pgfsetfillcolor{currentfill}%
\pgfsetlinewidth{1.003750pt}%
\definecolor{currentstroke}{rgb}{0.117647,0.564706,1.000000}%
\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.750000in}{3.382727in}%
\pgfsys@useobject{currentmarker}{}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfsys@transformshift{0.765552in}{3.260918in}%
\pgfsys@useobject{currentmarker}{}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfsys@transformshift{0.781104in}{3.262121in}%
\pgfsys@useobject{currentmarker}{}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfsys@transformshift{0.796656in}{3.262343in}%
\pgfsys@useobject{currentmarker}{}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfsys@transformshift{0.812207in}{3.262098in}%
\pgfsys@useobject{currentmarker}{}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfsys@transformshift{0.827759in}{3.262012in}%
\pgfsys@useobject{currentmarker}{}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfsys@transformshift{0.843311in}{3.261898in}%
\pgfsys@useobject{currentmarker}{}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfsys@transformshift{0.858863in}{3.261593in}%
\pgfsys@useobject{currentmarker}{}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfsys@transformshift{0.874415in}{3.261309in}%
\pgfsys@useobject{currentmarker}{}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfsys@transformshift{0.889967in}{3.261081in}%
\pgfsys@useobject{currentmarker}{}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfsys@transformshift{1.045485in}{3.260436in}%
\pgfsys@useobject{currentmarker}{}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfsys@transformshift{1.201003in}{3.260436in}%
\pgfsys@useobject{currentmarker}{}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfsys@transformshift{1.356522in}{3.261608in}%
\pgfsys@useobject{currentmarker}{}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfsys@transformshift{1.512040in}{3.237071in}%
\pgfsys@useobject{currentmarker}{}%
\end{pgfscope}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.750000in}{0.500000in}}{\pgfqpoint{4.650000in}{3.020000in}}%
\pgfusepath{clip}%
\pgfsetbuttcap%
\pgfsetroundjoin%
\pgfsetlinewidth{1.003750pt}%
\definecolor{currentstroke}{rgb}{0.117647,0.564706,1.000000}%
\pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{1.667559in}{3.164463in}}%
\pgfpathcurveto{\pgfqpoint{1.678609in}{3.164463in}}{\pgfqpoint{1.689208in}{3.168853in}}{\pgfqpoint{1.697021in}{3.176667in}}%
\pgfpathcurveto{\pgfqpoint{1.704835in}{3.184480in}}{\pgfqpoint{1.709225in}{3.195079in}}{\pgfqpoint{1.709225in}{3.206130in}}%
\pgfpathcurveto{\pgfqpoint{1.709225in}{3.217180in}}{\pgfqpoint{1.704835in}{3.227779in}}{\pgfqpoint{1.697021in}{3.235592in}}%
\pgfpathcurveto{\pgfqpoint{1.689208in}{3.243406in}}{\pgfqpoint{1.678609in}{3.247796in}}{\pgfqpoint{1.667559in}{3.247796in}}%
\pgfpathcurveto{\pgfqpoint{1.656508in}{3.247796in}}{\pgfqpoint{1.645909in}{3.243406in}}{\pgfqpoint{1.638096in}{3.235592in}}%
\pgfpathcurveto{\pgfqpoint{1.630282in}{3.227779in}}{\pgfqpoint{1.625892in}{3.217180in}}{\pgfqpoint{1.625892in}{3.206130in}}%
\pgfpathcurveto{\pgfqpoint{1.625892in}{3.195079in}}{\pgfqpoint{1.630282in}{3.184480in}}{\pgfqpoint{1.638096in}{3.176667in}}%
\pgfpathcurveto{\pgfqpoint{1.645909in}{3.168853in}}{\pgfqpoint{1.656508in}{3.164463in}}{\pgfqpoint{1.667559in}{3.164463in}}%
\pgfpathclose%
\pgfusepath{stroke}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.750000in}{0.500000in}}{\pgfqpoint{4.650000in}{3.020000in}}%
\pgfusepath{clip}%
\pgfsetbuttcap%
\pgfsetroundjoin%
\pgfsetlinewidth{1.003750pt}%
\definecolor{currentstroke}{rgb}{0.117647,0.564706,1.000000}%
\pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{1.823077in}{3.127516in}}%
\pgfpathcurveto{\pgfqpoint{1.834127in}{3.127516in}}{\pgfqpoint{1.844726in}{3.131906in}}{\pgfqpoint{1.852540in}{3.139719in}}%
\pgfpathcurveto{\pgfqpoint{1.860353in}{3.147533in}}{\pgfqpoint{1.864744in}{3.158132in}}{\pgfqpoint{1.864744in}{3.169182in}}%
\pgfpathcurveto{\pgfqpoint{1.864744in}{3.180232in}}{\pgfqpoint{1.860353in}{3.190831in}}{\pgfqpoint{1.852540in}{3.198645in}}%
\pgfpathcurveto{\pgfqpoint{1.844726in}{3.206459in}}{\pgfqpoint{1.834127in}{3.210849in}}{\pgfqpoint{1.823077in}{3.210849in}}%
\pgfpathcurveto{\pgfqpoint{1.812027in}{3.210849in}}{\pgfqpoint{1.801428in}{3.206459in}}{\pgfqpoint{1.793614in}{3.198645in}}%
\pgfpathcurveto{\pgfqpoint{1.785801in}{3.190831in}}{\pgfqpoint{1.781410in}{3.180232in}}{\pgfqpoint{1.781410in}{3.169182in}}%
\pgfpathcurveto{\pgfqpoint{1.781410in}{3.158132in}}{\pgfqpoint{1.785801in}{3.147533in}}{\pgfqpoint{1.793614in}{3.139719in}}%
\pgfpathcurveto{\pgfqpoint{1.801428in}{3.131906in}}{\pgfqpoint{1.812027in}{3.127516in}}{\pgfqpoint{1.823077in}{3.127516in}}%
\pgfpathclose%
\pgfusepath{stroke}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.750000in}{0.500000in}}{\pgfqpoint{4.650000in}{3.020000in}}%
\pgfusepath{clip}%
\pgfsetbuttcap%
\pgfsetroundjoin%
\pgfsetlinewidth{1.003750pt}%
\definecolor{currentstroke}{rgb}{0.117647,0.564706,1.000000}%
\pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{1.978595in}{3.009855in}}%
\pgfpathcurveto{\pgfqpoint{1.989645in}{3.009855in}}{\pgfqpoint{2.000244in}{3.014246in}}{\pgfqpoint{2.008058in}{3.022059in}}%
\pgfpathcurveto{\pgfqpoint{2.015872in}{3.029873in}}{\pgfqpoint{2.020262in}{3.040472in}}{\pgfqpoint{2.020262in}{3.051522in}}%
\pgfpathcurveto{\pgfqpoint{2.020262in}{3.062572in}}{\pgfqpoint{2.015872in}{3.073171in}}{\pgfqpoint{2.008058in}{3.080985in}}%
\pgfpathcurveto{\pgfqpoint{2.000244in}{3.088798in}}{\pgfqpoint{1.989645in}{3.093189in}}{\pgfqpoint{1.978595in}{3.093189in}}%
\pgfpathcurveto{\pgfqpoint{1.967545in}{3.093189in}}{\pgfqpoint{1.956946in}{3.088798in}}{\pgfqpoint{1.949133in}{3.080985in}}%
\pgfpathcurveto{\pgfqpoint{1.941319in}{3.073171in}}{\pgfqpoint{1.936929in}{3.062572in}}{\pgfqpoint{1.936929in}{3.051522in}}%
\pgfpathcurveto{\pgfqpoint{1.936929in}{3.040472in}}{\pgfqpoint{1.941319in}{3.029873in}}{\pgfqpoint{1.949133in}{3.022059in}}%
\pgfpathcurveto{\pgfqpoint{1.956946in}{3.014246in}}{\pgfqpoint{1.967545in}{3.009855in}}{\pgfqpoint{1.978595in}{3.009855in}}%
\pgfpathclose%
\pgfusepath{stroke}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.750000in}{0.500000in}}{\pgfqpoint{4.650000in}{3.020000in}}%
\pgfusepath{clip}%
\pgfsetbuttcap%
\pgfsetroundjoin%
\pgfsetlinewidth{1.003750pt}%
\definecolor{currentstroke}{rgb}{0.117647,0.564706,1.000000}%
\pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{2.134114in}{2.835475in}}%
\pgfpathcurveto{\pgfqpoint{2.145164in}{2.835475in}}{\pgfqpoint{2.155763in}{2.839865in}}{\pgfqpoint{2.163576in}{2.847679in}}%
\pgfpathcurveto{\pgfqpoint{2.171390in}{2.855492in}}{\pgfqpoint{2.175780in}{2.866091in}}{\pgfqpoint{2.175780in}{2.877141in}}%
\pgfpathcurveto{\pgfqpoint{2.175780in}{2.888191in}}{\pgfqpoint{2.171390in}{2.898790in}}{\pgfqpoint{2.163576in}{2.906604in}}%
\pgfpathcurveto{\pgfqpoint{2.155763in}{2.914418in}}{\pgfqpoint{2.145164in}{2.918808in}}{\pgfqpoint{2.134114in}{2.918808in}}%
\pgfpathcurveto{\pgfqpoint{2.123064in}{2.918808in}}{\pgfqpoint{2.112465in}{2.914418in}}{\pgfqpoint{2.104651in}{2.906604in}}%
\pgfpathcurveto{\pgfqpoint{2.096837in}{2.898790in}}{\pgfqpoint{2.092447in}{2.888191in}}{\pgfqpoint{2.092447in}{2.877141in}}%
\pgfpathcurveto{\pgfqpoint{2.092447in}{2.866091in}}{\pgfqpoint{2.096837in}{2.855492in}}{\pgfqpoint{2.104651in}{2.847679in}}%
\pgfpathcurveto{\pgfqpoint{2.112465in}{2.839865in}}{\pgfqpoint{2.123064in}{2.835475in}}{\pgfqpoint{2.134114in}{2.835475in}}%
\pgfpathclose%
\pgfusepath{stroke}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.750000in}{0.500000in}}{\pgfqpoint{4.650000in}{3.020000in}}%
\pgfusepath{clip}%
\pgfsetbuttcap%
\pgfsetroundjoin%
\pgfsetlinewidth{1.003750pt}%
\definecolor{currentstroke}{rgb}{0.117647,0.564706,1.000000}%
\pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{2.289632in}{2.719901in}}%
\pgfpathcurveto{\pgfqpoint{2.300682in}{2.719901in}}{\pgfqpoint{2.311281in}{2.724291in}}{\pgfqpoint{2.319095in}{2.732105in}}%
\pgfpathcurveto{\pgfqpoint{2.326909in}{2.739918in}}{\pgfqpoint{2.331299in}{2.750517in}}{\pgfqpoint{2.331299in}{2.761567in}}%
\pgfpathcurveto{\pgfqpoint{2.331299in}{2.772618in}}{\pgfqpoint{2.326909in}{2.783217in}}{\pgfqpoint{2.319095in}{2.791030in}}%
\pgfpathcurveto{\pgfqpoint{2.311281in}{2.798844in}}{\pgfqpoint{2.300682in}{2.803234in}}{\pgfqpoint{2.289632in}{2.803234in}}%
\pgfpathcurveto{\pgfqpoint{2.278582in}{2.803234in}}{\pgfqpoint{2.267983in}{2.798844in}}{\pgfqpoint{2.260169in}{2.791030in}}%
\pgfpathcurveto{\pgfqpoint{2.252356in}{2.783217in}}{\pgfqpoint{2.247965in}{2.772618in}}{\pgfqpoint{2.247965in}{2.761567in}}%
\pgfpathcurveto{\pgfqpoint{2.247965in}{2.750517in}}{\pgfqpoint{2.252356in}{2.739918in}}{\pgfqpoint{2.260169in}{2.732105in}}%
\pgfpathcurveto{\pgfqpoint{2.267983in}{2.724291in}}{\pgfqpoint{2.278582in}{2.719901in}}{\pgfqpoint{2.289632in}{2.719901in}}%
\pgfpathclose%
\pgfusepath{stroke}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.750000in}{0.500000in}}{\pgfqpoint{4.650000in}{3.020000in}}%
\pgfusepath{clip}%
\pgfsetbuttcap%
\pgfsetroundjoin%
\pgfsetlinewidth{1.003750pt}%
\definecolor{currentstroke}{rgb}{0.117647,0.564706,1.000000}%
\pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{2.600669in}{2.404409in}}%
\pgfpathcurveto{\pgfqpoint{2.611719in}{2.404409in}}{\pgfqpoint{2.622318in}{2.408799in}}{\pgfqpoint{2.630132in}{2.416613in}}%
\pgfpathcurveto{\pgfqpoint{2.637945in}{2.424426in}}{\pgfqpoint{2.642336in}{2.435025in}}{\pgfqpoint{2.642336in}{2.446076in}}%
\pgfpathcurveto{\pgfqpoint{2.642336in}{2.457126in}}{\pgfqpoint{2.637945in}{2.467725in}}{\pgfqpoint{2.630132in}{2.475538in}}%
\pgfpathcurveto{\pgfqpoint{2.622318in}{2.483352in}}{\pgfqpoint{2.611719in}{2.487742in}}{\pgfqpoint{2.600669in}{2.487742in}}%
\pgfpathcurveto{\pgfqpoint{2.589619in}{2.487742in}}{\pgfqpoint{2.579020in}{2.483352in}}{\pgfqpoint{2.571206in}{2.475538in}}%
\pgfpathcurveto{\pgfqpoint{2.563392in}{2.467725in}}{\pgfqpoint{2.559002in}{2.457126in}}{\pgfqpoint{2.559002in}{2.446076in}}%
\pgfpathcurveto{\pgfqpoint{2.559002in}{2.435025in}}{\pgfqpoint{2.563392in}{2.424426in}}{\pgfqpoint{2.571206in}{2.416613in}}%
\pgfpathcurveto{\pgfqpoint{2.579020in}{2.408799in}}{\pgfqpoint{2.589619in}{2.404409in}}{\pgfqpoint{2.600669in}{2.404409in}}%
\pgfpathclose%
\pgfusepath{stroke}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.750000in}{0.500000in}}{\pgfqpoint{4.650000in}{3.020000in}}%
\pgfusepath{clip}%
\pgfsetbuttcap%
\pgfsetroundjoin%
\pgfsetlinewidth{1.003750pt}%
\definecolor{currentstroke}{rgb}{0.117647,0.564706,1.000000}%
\pgfsetstrokecolor{currentstroke}%
\pgfsetdash{}{0pt}%
\pgfpathmoveto{\pgfqpoint{2.911706in}{2.125364in}}%
\pgfpathcurveto{\pgfqpoint{2.922756in}{2.125364in}}{\pgfqpoint{2.933355in}{2.129755in}}{\pgfqpoint{2.941168in}{2.137568in}}%
\pgfpathcurveto{\pgfqpoint{2.948982in}{2.145382in}}{\pgfqpoint{2.953372in}{2.155981in}}{\pgfqpoint{2.953372in}{2.167031in}}%
\pgfpathcurveto{\pgfqpoint{2.953372in}{2.178081in}}{\pgfqpoint{2.948982in}{2.188680in}}{\pgfqpoint{2.941168in}{2.196494in}}%
\pgfpathcurveto{\pgfqpoint{2.933355in}{2.204307in}}{\pgfqpoint{2.922756in}{2.208698in}}{\pgfqpoint{2.911706in}{2.208698in}}%
\pgfpathcurveto{\pgfqpoint{2.900656in}{2.208698in}}{\pgfqpoint{2.890057in}{2.204307in}}{\pgfqpoint{2.882243in}{2.196494in}}%
\pgfpathcurveto{\pgfqpoint{2.874429in}{2.188680in}}{\pgfqpoint{2.870039in}{2.178081in}}{\pgfqpoint{2.870039in}{2.167031in}}%
\pgfpathcurveto{\pgfqpoint{2.870039in}{2.155981in}}{\pgfqpoint{2.874429in}{2.145382in}}{\pgfqpoint{2.882243in}{2.137568in}}%
\pgfpathcurveto{\pgfqpoint{2.890057in}{2.129755in}}{\pgfqpoint{2.900656in}{2.125364in}}{\pgfqpoint{2.911706in}{2.125364in}}%
\pgfpathclose%
\pgfusepath{stroke}%
\end{pgfscope}%
\begin{pgfscope}%
\pgfpathrectangle{\pgfqpoint{0.750000in}{0.500000in}}{\pgfqpoint{4.650000in}{3.020000in}}%
\pgfusepath{clip}%
\pgfsetbuttcap%
\pgfsetroundjoin%
\pgfsetlinewidth{1.003750pt}%
\definecolor{currentstroke}{rgb}{0.117647,0.564706,1.000000}%