-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtransaction_network.eps
2863 lines (2862 loc) · 59.7 KB
/
transaction_network.eps
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
%!PS-Adobe-3.0 EPSF-3.0
%%Title: transaction_network.eps
%%Creator: matplotlib version 1.3.1, http://matplotlib.org/
%%CreationDate: Mon Jan 9 17:51:43 2017
%%Orientation: portrait
%%BoundingBox: 18 180 594 612
%%EndComments
%%BeginProlog
/mpldict 7 dict def
mpldict begin
/m { moveto } bind def
/l { lineto } bind def
/r { rlineto } bind def
/c { curveto } bind def
/cl { closepath } bind def
/box {
m
1 index 0 r
0 exch r
neg 0 r
cl
} bind def
/clipbox {
box
clip
newpath
} bind def
end
%%EndProlog
mpldict begin
18 180 translate
576 432 0 0 clipbox
gsave
0 0 m
576 0 l
576 432 l
0 432 l
cl
1.000 setgray
fill
grestore
/p0_0 {
newpath
translate
309.653 222.143 m
302.547 210.331 l
} bind def
/p0_1 {
newpath
translate
200.645 124.62 m
191.381 128.947 l
} bind def
/p0_2 {
newpath
translate
265.748 327.355 m
275.025 331.878 l
} bind def
/p0_3 {
newpath
translate
278.061 189.906 m
271.822 202.061 l
} bind def
/p0_4 {
newpath
translate
287.46 337.128 m
275.025 331.878 l
} bind def
/p0_5 {
newpath
translate
393.528 317.7 m
378.93 321.827 l
} bind def
/p0_6 {
newpath
translate
271.822 202.061 m
268.625 187.863 l
} bind def
/p0_7 {
newpath
translate
271.822 202.061 m
264.909 194.065 l
} bind def
/p0_8 {
newpath
translate
271.822 202.061 m
283.265 196.685 l
} bind def
/p0_9 {
newpath
translate
271.822 202.061 m
276.541 211.503 l
} bind def
/p0_a {
newpath
translate
271.822 202.061 m
267.358 214.687 l
} bind def
/p0_b {
newpath
translate
271.822 202.061 m
254.915 206.168 l
} bind def
/p0_c {
newpath
translate
271.822 202.061 m
254.5 199.745 l
} bind def
/p0_d {
newpath
translate
271.822 202.061 m
259.761 211.363 l
} bind def
/p0_e {
newpath
translate
271.822 202.061 m
256.876 192.717 l
} bind def
/p0_f {
newpath
translate
271.822 202.061 m
302.547 210.331 l
} bind def
/p0_10 {
newpath
translate
274.84 96.1199 m
290.203 97.9592 l
} bind def
/p0_11 {
newpath
translate
387.762 323.673 m
378.93 321.827 l
} bind def
/p0_12 {
newpath
translate
377.38 119.285 m
387.275 122.558 l
} bind def
/p0_13 {
newpath
translate
300.909 99.3241 m
290.203 97.9592 l
} bind def
/p0_14 {
newpath
translate
275.025 331.878 m
262.064 335.059 l
} bind def
/p0_15 {
newpath
translate
275.025 331.878 m
269.501 338.228 l
} bind def
/p0_16 {
newpath
translate
275.025 331.878 m
279.658 339.033 l
} bind def
/p0_17 {
newpath
translate
275.025 331.878 m
291.763 333.11 l
} bind def
/p0_18 {
newpath
translate
275.025 331.878 m
258.093 330.362 l
} bind def
/p0_19 {
newpath
translate
275.025 331.878 m
284.358 328.874 l
} bind def
/p0_1a {
newpath
translate
451.171 178.919 m
446.443 184.914 l
} bind def
/p0_1b {
newpath
translate
184.692 303.018 m
175.687 292.22 l
} bind def
/p0_1c {
newpath
translate
445.134 173.043 m
446.443 184.914 l
} bind def
/p0_1d {
newpath
translate
191.637 121.827 m
191.381 128.947 l
} bind def
/p0_1e {
newpath
translate
431.63 258.895 m
437.428 247.242 l
} bind def
/p0_1f {
newpath
translate
431.63 258.895 m
424.475 265.697 l
} bind def
/p0_20 {
newpath
translate
431.63 258.895 m
427.965 270.975 l
} bind def
/p0_21 {
newpath
translate
431.63 258.895 m
430.617 251.365 l
} bind def
/p0_22 {
newpath
translate
431.63 258.895 m
435.114 267.314 l
} bind def
/p0_23 {
newpath
translate
431.63 258.895 m
441.067 252.497 l
} bind def
/p0_24 {
newpath
translate
431.63 258.895 m
440.283 260.082 l
} bind def
/p0_25 {
newpath
translate
401.171 127.56 m
387.275 122.558 l
} bind def
/p0_26 {
newpath
translate
178.037 135.265 m
191.381 128.947 l
} bind def
/p0_27 {
newpath
translate
454.629 188.121 m
446.443 184.914 l
} bind def
/p0_28 {
newpath
translate
309.481 200.267 m
302.547 210.331 l
} bind def
/p0_29 {
newpath
translate
138.334 200.094 m
143.688 208.195 l
} bind def
/p0_2a {
newpath
translate
147.473 200.433 m
143.688 208.195 l
} bind def
/p0_2b {
newpath
translate
191.381 128.947 m
182.252 128.406 l
} bind def
/p0_2c {
newpath
translate
191.381 128.947 m
184.81 135.627 l
} bind def
/p0_2d {
newpath
translate
191.381 128.947 m
200.839 119.318 l
} bind def
/p0_2e {
newpath
translate
290.203 97.9592 m
279.727 99.8996 l
} bind def
/p0_2f {
newpath
translate
290.203 97.9592 m
305.328 95.2871 l
} bind def
/p0_30 {
newpath
translate
290.203 97.9592 m
283.642 92.9145 l
} bind def
/p0_31 {
newpath
translate
290.203 97.9592 m
296.226 92.5714 l
} bind def
/p0_32 {
newpath
translate
378.93 321.827 m
367.654 330.013 l
} bind def
/p0_33 {
newpath
translate
378.93 321.827 m
368.783 324.882 l
} bind def
/p0_34 {
newpath
translate
378.93 321.827 m
386.906 316.307 l
} bind def
/p0_35 {
newpath
translate
378.93 321.827 m
377.229 328.696 l
} bind def
/p0_36 {
newpath
translate
164.597 289.302 m
175.687 292.22 l
} bind def
/p0_37 {
newpath
translate
300.156 221.869 m
302.547 210.331 l
} bind def
/p0_38 {
newpath
translate
319.274 211.126 m
302.547 210.331 l
} bind def
/p0_39 {
newpath
translate
453.735 195.545 m
446.443 184.914 l
} bind def
/p0_3a {
newpath
translate
143.424 195.235 m
143.688 208.195 l
} bind def
/p0_3b {
newpath
translate
302.547 210.331 m
316.542 217.619 l
} bind def
/p0_3c {
newpath
translate
302.547 210.331 m
317.323 204.326 l
} bind def
/p0_3d {
newpath
translate
386.258 115.336 m
387.275 122.558 l
} bind def
/p0_3e {
newpath
translate
387.275 122.558 m
394.471 128.899 l
} bind def
/p0_3f {
newpath
translate
387.275 122.558 m
376.823 113.833 l
} bind def
/p0_40 {
newpath
translate
387.275 122.558 m
396.352 121.037 l
} bind def
/p0_41 {
newpath
translate
143.688 208.195 m
136.741 215.401 l
} bind def
/p0_42 {
newpath
translate
143.688 208.195 m
140.729 220.938 l
} bind def
/p0_43 {
newpath
translate
143.688 208.195 m
145.77 216.483 l
} bind def
/p0_44 {
newpath
translate
143.688 208.195 m
135.771 207.62 l
} bind def
/p0_45 {
newpath
translate
184.612 296.967 m
175.687 292.22 l
} bind def
/p0_46 {
newpath
translate
171.696 284.469 m
175.687 292.22 l
} bind def
/p0_47 {
newpath
translate
164.047 283.049 m
175.687 292.22 l
} bind def
/p0_48 {
newpath
translate
447.613 193.148 m
446.443 184.914 l
} bind def
/p0_49 {
newpath
translate
441.367 177.4 m
446.443 184.914 l
} bind def
/p0_4a {
newpath
translate
169.392 296.126 m
175.687 292.22 l
} bind def
/p0_4b {
newpath
translate
176.932 301.221 m
175.687 292.22 l
} bind def
1.000 setlinewidth
1 setlinejoin
0 setlinecap
[] 0 setdash
0.000 setgray
gsave
446.4 345.6 72 43.2 clipbox
0 0 p0_0
stroke
grestore
gsave
446.4 345.6 72 43.2 clipbox
0 0 p0_1
stroke
grestore
gsave
446.4 345.6 72 43.2 clipbox
0 0 p0_2
stroke
grestore
gsave
446.4 345.6 72 43.2 clipbox
0 0 p0_3
stroke
grestore
gsave
446.4 345.6 72 43.2 clipbox
0 0 p0_4
stroke
grestore
gsave
446.4 345.6 72 43.2 clipbox
0 0 p0_5
stroke
grestore
gsave
446.4 345.6 72 43.2 clipbox
0 0 p0_6
stroke
grestore
gsave
446.4 345.6 72 43.2 clipbox
0 0 p0_7
stroke
grestore
gsave
446.4 345.6 72 43.2 clipbox
0 0 p0_8
stroke
grestore
gsave
446.4 345.6 72 43.2 clipbox
0 0 p0_9
stroke
grestore
gsave
446.4 345.6 72 43.2 clipbox
0 0 p0_a
stroke
grestore
gsave
446.4 345.6 72 43.2 clipbox
0 0 p0_b
stroke
grestore
gsave
446.4 345.6 72 43.2 clipbox
0 0 p0_c
stroke
grestore
gsave
446.4 345.6 72 43.2 clipbox
0 0 p0_d
stroke
grestore
gsave
446.4 345.6 72 43.2 clipbox
0 0 p0_e
stroke
grestore
gsave
446.4 345.6 72 43.2 clipbox
0 0 p0_f
stroke
grestore
gsave
446.4 345.6 72 43.2 clipbox
0 0 p0_10
stroke
grestore
gsave
446.4 345.6 72 43.2 clipbox
0 0 p0_11
stroke
grestore
gsave
446.4 345.6 72 43.2 clipbox
0 0 p0_12
stroke
grestore
gsave
446.4 345.6 72 43.2 clipbox
0 0 p0_13
stroke
grestore
gsave
446.4 345.6 72 43.2 clipbox
0 0 p0_14
stroke
grestore
gsave
446.4 345.6 72 43.2 clipbox
0 0 p0_15
stroke
grestore
gsave
446.4 345.6 72 43.2 clipbox
0 0 p0_16
stroke
grestore
gsave
446.4 345.6 72 43.2 clipbox
0 0 p0_17
stroke
grestore
gsave
446.4 345.6 72 43.2 clipbox
0 0 p0_18
stroke
grestore
gsave
446.4 345.6 72 43.2 clipbox
0 0 p0_19
stroke
grestore
gsave
446.4 345.6 72 43.2 clipbox
0 0 p0_1a
stroke
grestore
gsave
446.4 345.6 72 43.2 clipbox
0 0 p0_1b
stroke
grestore
gsave
446.4 345.6 72 43.2 clipbox
0 0 p0_1c
stroke
grestore
gsave
446.4 345.6 72 43.2 clipbox
0 0 p0_1d
stroke
grestore
gsave
446.4 345.6 72 43.2 clipbox
0 0 p0_1e
stroke
grestore
gsave
446.4 345.6 72 43.2 clipbox
0 0 p0_1f
stroke
grestore
gsave
446.4 345.6 72 43.2 clipbox
0 0 p0_20
stroke
grestore
gsave
446.4 345.6 72 43.2 clipbox
0 0 p0_21
stroke
grestore
gsave
446.4 345.6 72 43.2 clipbox
0 0 p0_22
stroke
grestore
gsave
446.4 345.6 72 43.2 clipbox
0 0 p0_23
stroke
grestore
gsave
446.4 345.6 72 43.2 clipbox
0 0 p0_24
stroke
grestore
gsave
446.4 345.6 72 43.2 clipbox
0 0 p0_25
stroke
grestore
gsave
446.4 345.6 72 43.2 clipbox
0 0 p0_26
stroke
grestore
gsave
446.4 345.6 72 43.2 clipbox
0 0 p0_27
stroke
grestore
gsave
446.4 345.6 72 43.2 clipbox
0 0 p0_28
stroke
grestore
gsave
446.4 345.6 72 43.2 clipbox
0 0 p0_29
stroke
grestore
gsave
446.4 345.6 72 43.2 clipbox
0 0 p0_2a
stroke
grestore
gsave
446.4 345.6 72 43.2 clipbox
0 0 p0_2b
stroke
grestore
gsave
446.4 345.6 72 43.2 clipbox
0 0 p0_2c
stroke
grestore
gsave
446.4 345.6 72 43.2 clipbox
0 0 p0_2d
stroke
grestore
gsave
446.4 345.6 72 43.2 clipbox
0 0 p0_2e
stroke
grestore
gsave
446.4 345.6 72 43.2 clipbox
0 0 p0_2f
stroke
grestore
gsave
446.4 345.6 72 43.2 clipbox
0 0 p0_30
stroke
grestore
gsave
446.4 345.6 72 43.2 clipbox
0 0 p0_31
stroke
grestore
gsave
446.4 345.6 72 43.2 clipbox
0 0 p0_32
stroke
grestore
gsave
446.4 345.6 72 43.2 clipbox
0 0 p0_33
stroke
grestore
gsave
446.4 345.6 72 43.2 clipbox
0 0 p0_34
stroke
grestore
gsave
446.4 345.6 72 43.2 clipbox
0 0 p0_35
stroke
grestore
gsave
446.4 345.6 72 43.2 clipbox
0 0 p0_36
stroke
grestore
gsave
446.4 345.6 72 43.2 clipbox
0 0 p0_37
stroke
grestore
gsave
446.4 345.6 72 43.2 clipbox
0 0 p0_38
stroke
grestore
gsave
446.4 345.6 72 43.2 clipbox
0 0 p0_39
stroke
grestore
gsave
446.4 345.6 72 43.2 clipbox
0 0 p0_3a
stroke
grestore
gsave
446.4 345.6 72 43.2 clipbox
0 0 p0_3b
stroke
grestore
gsave
446.4 345.6 72 43.2 clipbox
0 0 p0_3c
stroke
grestore
gsave
446.4 345.6 72 43.2 clipbox
0 0 p0_3d
stroke
grestore
gsave
446.4 345.6 72 43.2 clipbox
0 0 p0_3e
stroke
grestore
gsave
446.4 345.6 72 43.2 clipbox
0 0 p0_3f
stroke
grestore
gsave
446.4 345.6 72 43.2 clipbox
0 0 p0_40
stroke
grestore
gsave
446.4 345.6 72 43.2 clipbox
0 0 p0_41
stroke
grestore
gsave
446.4 345.6 72 43.2 clipbox
0 0 p0_42
stroke
grestore
gsave
446.4 345.6 72 43.2 clipbox
0 0 p0_43
stroke
grestore
gsave
446.4 345.6 72 43.2 clipbox
0 0 p0_44
stroke
grestore
gsave
446.4 345.6 72 43.2 clipbox
0 0 p0_45
stroke
grestore
gsave
446.4 345.6 72 43.2 clipbox
0 0 p0_46
stroke
grestore
gsave
446.4 345.6 72 43.2 clipbox
0 0 p0_47
stroke
grestore
gsave
446.4 345.6 72 43.2 clipbox
0 0 p0_48
stroke
grestore
gsave
446.4 345.6 72 43.2 clipbox
0 0 p0_49
stroke
grestore
gsave
446.4 345.6 72 43.2 clipbox
0 0 p0_4a
stroke
grestore
gsave
446.4 345.6 72 43.2 clipbox
0 0 p0_4b
stroke
grestore
/p1_0 {
newpath
translate
0 -1.58114 m
0.419323 -1.58114 0.821528 -1.41454 1.11803 -1.11803 c
1.41454 -0.821528 1.58114 -0.419323 1.58114 0 c
1.58114 0.419323 1.41454 0.821528 1.11803 1.11803 c
0.821528 1.41454 0.419323 1.58114 0 1.58114 c
-0.419323 1.58114 -0.821528 1.41454 -1.11803 1.11803 c
-1.41454 0.821528 -1.58114 0.419323 -1.58114 0 c
-1.58114 -0.419323 -1.41454 -0.821528 -1.11803 -1.11803 c
-0.821528 -1.41454 -0.419323 -1.58114 0 -1.58114 c
cl
} bind def
/p1_1 {
newpath
translate
0 -1.58114 m
0.419323 -1.58114 0.821528 -1.41454 1.11803 -1.11803 c
1.41454 -0.821528 1.58114 -0.419323 1.58114 0 c
1.58114 0.419323 1.41454 0.821528 1.11803 1.11803 c
0.821528 1.41454 0.419323 1.58114 0 1.58114 c
-0.419323 1.58114 -0.821528 1.41454 -1.11803 1.11803 c
-1.41454 0.821528 -1.58114 0.419323 -1.58114 0 c
-1.58114 -0.419323 -1.41454 -0.821528 -1.11803 -1.11803 c
-0.821528 -1.41454 -0.419323 -1.58114 0 -1.58114 c
cl
} bind def
/p1_2 {
newpath
translate
0 -1.58114 m
0.419323 -1.58114 0.821528 -1.41454 1.11803 -1.11803 c
1.41454 -0.821528 1.58114 -0.419323 1.58114 0 c
1.58114 0.419323 1.41454 0.821528 1.11803 1.11803 c
0.821528 1.41454 0.419323 1.58114 0 1.58114 c
-0.419323 1.58114 -0.821528 1.41454 -1.11803 1.11803 c
-1.41454 0.821528 -1.58114 0.419323 -1.58114 0 c
-1.58114 -0.419323 -1.41454 -0.821528 -1.11803 -1.11803 c
-0.821528 -1.41454 -0.419323 -1.58114 0 -1.58114 c
cl
} bind def
/p1_3 {
newpath
translate
0 -1.58114 m
0.419323 -1.58114 0.821528 -1.41454 1.11803 -1.11803 c
1.41454 -0.821528 1.58114 -0.419323 1.58114 0 c
1.58114 0.419323 1.41454 0.821528 1.11803 1.11803 c
0.821528 1.41454 0.419323 1.58114 0 1.58114 c
-0.419323 1.58114 -0.821528 1.41454 -1.11803 1.11803 c
-1.41454 0.821528 -1.58114 0.419323 -1.58114 0 c
-1.58114 -0.419323 -1.41454 -0.821528 -1.11803 -1.11803 c
-0.821528 -1.41454 -0.419323 -1.58114 0 -1.58114 c
cl
} bind def
/p1_4 {
newpath
translate
0 -1.58114 m
0.419323 -1.58114 0.821528 -1.41454 1.11803 -1.11803 c
1.41454 -0.821528 1.58114 -0.419323 1.58114 0 c
1.58114 0.419323 1.41454 0.821528 1.11803 1.11803 c
0.821528 1.41454 0.419323 1.58114 0 1.58114 c
-0.419323 1.58114 -0.821528 1.41454 -1.11803 1.11803 c
-1.41454 0.821528 -1.58114 0.419323 -1.58114 0 c
-1.58114 -0.419323 -1.41454 -0.821528 -1.11803 -1.11803 c
-0.821528 -1.41454 -0.419323 -1.58114 0 -1.58114 c
cl
} bind def
/p1_5 {
newpath
translate
0 -1.58114 m
0.419323 -1.58114 0.821528 -1.41454 1.11803 -1.11803 c
1.41454 -0.821528 1.58114 -0.419323 1.58114 0 c
1.58114 0.419323 1.41454 0.821528 1.11803 1.11803 c
0.821528 1.41454 0.419323 1.58114 0 1.58114 c
-0.419323 1.58114 -0.821528 1.41454 -1.11803 1.11803 c
-1.41454 0.821528 -1.58114 0.419323 -1.58114 0 c
-1.58114 -0.419323 -1.41454 -0.821528 -1.11803 -1.11803 c
-0.821528 -1.41454 -0.419323 -1.58114 0 -1.58114 c
cl
} bind def
/p1_6 {
newpath
translate
0 -5.24404 m
1.39074 -5.24404 2.7247 -4.6915 3.7081 -3.7081 c
4.6915 -2.7247 5.24404 -1.39074 5.24404 0 c
5.24404 1.39074 4.6915 2.7247 3.7081 3.7081 c
2.7247 4.6915 1.39074 5.24404 0 5.24404 c
-1.39074 5.24404 -2.7247 4.6915 -3.7081 3.7081 c
-4.6915 2.7247 -5.24404 1.39074 -5.24404 0 c
-5.24404 -1.39074 -4.6915 -2.7247 -3.7081 -3.7081 c
-2.7247 -4.6915 -1.39074 -5.24404 0 -5.24404 c
cl
} bind def
/p1_7 {
newpath
translate
0 -1.58114 m
0.419323 -1.58114 0.821528 -1.41454 1.11803 -1.11803 c
1.41454 -0.821528 1.58114 -0.419323 1.58114 0 c
1.58114 0.419323 1.41454 0.821528 1.11803 1.11803 c
0.821528 1.41454 0.419323 1.58114 0 1.58114 c
-0.419323 1.58114 -0.821528 1.41454 -1.11803 1.11803 c
-1.41454 0.821528 -1.58114 0.419323 -1.58114 0 c
-1.58114 -0.419323 -1.41454 -0.821528 -1.11803 -1.11803 c
-0.821528 -1.41454 -0.419323 -1.58114 0 -1.58114 c
cl
} bind def
/p1_8 {
newpath
translate
0 -1.58114 m
0.419323 -1.58114 0.821528 -1.41454 1.11803 -1.11803 c
1.41454 -0.821528 1.58114 -0.419323 1.58114 0 c