tutorial-tracing.zh_TW.svg revision 86523473977e2c192a1d39be6de0172c22e7c21d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- DO NOT EDIT THIS FILE. It is produced automatically from a DocBook source (*.xml) by tutorial-svg.xsl. -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
id="svg1"
sodipodi:version="0.32"
inkscape:version="0.46"
width="256pt"
height="3170.0000pt"
sodipodi:docname="tutorial-tracing.zh_TW.svg"
inkscape:output_extension="org.inkscape.output.svg.inkscape">
<sodipodi:namedview
id="base"
inkscape:zoom="2"
inkscape:cx="152.93967"
inkscape:cy="3873.2189"
inkscape:window-width="1024"
inkscape:window-height="710"
inkscape:window-x="-5"
inkscape:window-y="-3"
showborder="false"
showguides="true"
snaptoguides="true"
showgrid="false"
inkscape:guide-bbox="true"
inkscape:current-layer="svg1">
<inkscape:grid
type="xygrid"
id="grid2602" />
</sodipodi:namedview>
<defs
id="defs3">
<inkscape:perspective
sodipodi:type="inkscape:persp3d"
inkscape:vp_x="0 : 1981.25 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_z="320 : 1981.25 : 1"
inkscape:persp3d-origin="160 : 1320.8333 : 1"
id="perspective324" />
<linearGradient
id="linearGradient841">
<stop
id="stop842"
offset="0.00000000"
style="stop-color:#0082ab;stop-opacity:1;" />
<stop
id="stop843"
offset="1"
style="stop-color:white;stop-opacity:0;" />
</linearGradient>
<linearGradient
y2="0.91666669"
x2="0.51618570"
y1="0.16666391"
x1="0.51618570"
id="linearGradient1657"
xlink:href="#linearGradient841" />
<linearGradient
id="linearGradient666">
<stop
id="stop667"
offset="0.00000000"
style="stop-color:#ffffff;stop-opacity:0.336;" />
<stop
id="stop668"
offset="1.00000000"
style="stop-color:#ffffff;stop-opacity:0;" />
</linearGradient>
<radialGradient
fy="0.50000000"
fx="0.50000000"
r="0.50000000"
cy="0.50000000"
cx="0.50000000"
id="radialGradient669"
xlink:href="#linearGradient666" />
</defs>
<metadata
id="metadata4">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<g
id="layer1"
inkscape:groupmode="layer"
inkscape:label="Layer 1">
<rect
rx="0.0000000"
ry="6.1828303"
y="0.27752987"
x="0.18214770"
height="69.247704"
width="319.89233"
id="rect582"
style="stroke-width:3.0611501;stroke:none;fill-rule:evenodd;fill-opacity:1.0000000;fill:url(#linearGradient1657);font-size:12.000000" />
<path
id="path93"
d="M 150.96825,4.9606428 L 141.38875,4.9606428 L 141.38875,5.5735708 L 141.67566,5.5735708 C 142.96674,5.5735708 143.11020,5.6387828 143.11020,6.1864998 L 143.11020,6.5646939 L 143.11020,12.772216 L 143.11020,13.150409 C 143.11020,13.698134 142.96674,13.763338 141.67566,13.763338 L 141.38875,13.763338 L 141.38875,14.376267 L 151.17546,14.376267 L 151.49425,10.894312 L 150.79292,10.894312 C 150.58571,11.807180 150.21911,12.615728 149.83656,12.993914 C 149.34245,13.515559 148.43391,13.763338 147.09501,13.763338 L 146.04302,13.763338 C 145.56485,13.763338 145.16636,13.685090 145.02291,13.567719 C 144.91133,13.489472 144.89539,13.411232 144.89539,13.137365 L 144.89539,9.8119059 L 145.21418,9.8119059 C 146.18648,9.8119059 146.58495,9.8901539 146.90374,10.164012 C 147.31816,10.503082 147.47755,10.920392 147.50944,11.689817 L 148.25858,11.689817 L 148.25858,7.4123579 L 147.50944,7.4123579 C 147.42973,8.6903759 146.79216,9.1989769 145.27794,9.1989769 L 144.89539,9.1989769 L 144.89539,6.2256238 C 144.89539,5.6648628 145.03885,5.5735708 145.89956,5.5735708 L 146.72841,5.5735708 C 148.13106,5.5735708 148.81645,5.6909428 149.35839,6.0560928 C 149.88438,6.3951548 150.26692,7.1254559 150.50602,8.2991459 L 151.19140,8.2991459 L 150.96825,4.9606428 z M 129.81685,10.190100 L 131.61799,10.190100 C 133.05252,10.190100 133.80166,10.098809 134.43923,9.8510299 C 135.57093,9.4076319 136.20850,8.5730119 136.20850,7.5427659 C 136.20850,6.5516499 135.65062,5.7952698 134.59863,5.3649158 C 133.97699,5.1040938 132.98876,4.9606428 131.88895,4.9606428 L 126.31021,4.9606428 L 126.31021,5.5735708 L 126.59712,5.5735708 C 127.88820,5.5735708 128.03165,5.6387828 128.03165,6.1864998 L 128.03165,6.5646939 L 128.03165,12.772216 L 128.03165,13.150409 C 128.03165,13.698134 127.88820,13.763338 126.59712,13.763338 L 126.31021,13.763338 L 126.31021,14.376267 L 131.66581,14.376267 L 131.66581,13.763338 L 131.25138,13.763338 C 129.96030,13.763338 129.81685,13.698134 129.81685,13.150409 L 129.81685,12.772216 L 129.81685,10.190100 z M 129.81685,9.5771709 L 129.81685,6.2386678 C 129.81685,5.6387828 129.91248,5.5735708 130.78915,5.5735708 L 131.80926,5.5735708 C 133.46694,5.5735708 134.24796,6.2125878 134.24796,7.5949329 C 134.24796,8.9381549 133.43506,9.5771709 131.74550,9.5771709 L 129.81685,9.5771709 z M 115.94969,4.7780748 L 115.28024,4.7780748 L 111.61420,12.380985 C 111.29542,13.059118 111.23167,13.150409 110.99258,13.359064 C 110.73755,13.606843 110.29125,13.763338 109.86089,13.763338 L 109.79713,13.763338 L 109.79713,14.376267 L 114.02103,14.376267 L 114.02103,13.763338 L 113.70225,13.763338 C 112.84153,13.763338 112.41117,13.515559 112.41117,13.020002 C 112.41117,12.863507 112.45899,12.680932 112.55462,12.472277 L 113.08062,11.324666 L 117.30453,11.324666 L 118.16525,13.072162 C 118.26088,13.267780 118.29276,13.359064 118.29276,13.424268 C 118.29276,13.632923 117.89428,13.763338 117.30453,13.763338 L 116.63508,13.763338 L 116.63508,14.376267 L 121.57624,14.376267 L 121.57624,13.763338 L 121.35310,13.763338 C 120.55613,13.763338 120.38080,13.659010 120.01420,12.928710 L 115.94969,4.7780748 z M 115.16866,6.9168009 L 116.96980,10.620453 L 113.39940,10.620453 L 115.16866,6.9168009 z M 104.17057,4.8693588 L 103.56488,4.8693588 L 102.92731,5.6387828 C 101.79562,4.9606428 101.17399,4.7650308 100.10606,4.7650308 C 98.559938,4.7650308 97.284798,5.2736318 96.200928,6.3299508 C 95.180811,7.3210739 94.702641,8.4165169 94.702641,9.7597459 C 94.702641,12.563560 96.950078,14.571878 100.09012,14.571878 C 102.64040,14.571878 104.26621,13.346020 104.63281,11.155135 L 103.88367,11.050800 C 103.72427,11.741976 103.53300,12.211454 103.24610,12.602684 C 102.59258,13.502516 101.57247,13.958949 100.28139,13.958949 C 97.922368,13.958949 96.806618,12.615728 96.806618,9.8119059 C 96.806618,8.3382689 97.045708,7.3471539 97.587648,6.5646939 C 98.081758,5.8343938 99.069985,5.3779598 100.09012,5.3779598 C 101.20587,5.3779598 102.19410,5.8604738 102.79980,6.6951019 C 103.10264,7.1254559 103.34173,7.6340569 103.70834,8.6382159 L 104.40966,8.6382159 L 104.17057,4.8693588 z M 88.215354,4.8824028 L 87.625607,4.8824028 L 86.988037,5.6648628 C 86.238897,5.0780138 85.218777,4.7650308 84.087100,4.7650308 C 81.999060,4.7650308 80.596403,5.8604738 80.596403,7.4906049 C 80.596403,8.9120749 81.457120,9.6162949 83.800200,10.111852 L 85.314417,10.424835 C 86.493927,10.672614 86.605497,10.698694 86.940227,10.907349 C 87.418407,11.207295 87.673427,11.637649 87.673427,12.146250 C 87.673427,12.667888 87.434337,13.098242 86.956167,13.450355 C 86.430167,13.828542 85.904167,13.971993 85.027507,13.971993 C 83.848010,13.971993 83.003230,13.672047 82.254090,12.993914 C 81.584630,12.380985 81.249910,11.768056 81.010823,10.763905 L 80.325433,10.763905 L 80.389193,14.480595 L 81.010823,14.480595 L 81.728080,13.593806 C 82.796020,14.311056 83.688610,14.571878 85.075327,14.571878 C 87.418407,14.571878 88.916694,13.450355 88.916694,11.702853 C 88.916694,10.894312 88.581964,10.203136 87.960337,9.7075779 C 87.529977,9.3685089 86.908347,9.1468169 85.633197,8.8859939 L 83.927700,8.5338879 C 82.509110,8.2339419 81.839660,7.7253399 81.839660,6.9298439 C 81.839660,6.0169688 82.748200,5.3909968 84.103040,5.3909968 C 85.218777,5.3909968 86.127317,5.7822338 86.764897,6.5255699 C 87.227137,7.0602519 87.514037,7.6079769 87.721247,8.2730659 L 88.406634,8.2730659 L 88.215354,4.8824028 z M 66.665476,10.111852 L 66.665476,6.5646939 L 66.665476,6.1864998 C 66.665476,5.6387828 66.808935,5.5735708 68.100014,5.5735708 L 68.402861,5.5735708 L 68.402861,4.9606428 L 63.158832,4.9606428 L 63.158832,5.5735708 L 63.445744,5.5735708 C 64.736818,5.5735708 64.880276,5.6387828 64.880276,6.1864998 L 64.880276,6.5646939 L 64.880276,12.772216 L 64.880276,13.150409 C 64.880276,13.698134 64.736818,13.763338 63.445744,13.763338 L 63.158832,13.763338 L 63.158832,14.376267 L 68.402861,14.376267 L 68.402861,13.763338 L 68.100014,13.763338 C 66.808935,13.763338 66.665476,13.698134 66.665476,13.150409 L 66.665476,12.772216 L 66.665476,11.116011 L 68.514433,9.5902069 L 71.287871,12.915667 C 71.542896,13.228657 71.606653,13.332984 71.606653,13.463392 C 71.606653,13.672047 71.303811,13.763338 70.522783,13.763338 L 70.028662,13.763338 L 70.028662,14.376267 L 75.479896,14.376267 L 75.479896,13.763338 L 75.177056,13.763338 C 74.300396,13.763338 74.077246,13.672047 73.614998,13.111285 L 69.757696,8.5599679 L 72.132644,6.6168539 C 72.897731,5.9517648 73.870028,5.5735708 74.826396,5.5735708 L 74.826396,4.9606428 L 69.917090,4.9606428 L 69.917090,5.5735708 L 70.315574,5.5735708 C 71.048775,5.5735708 71.351627,5.6909428 71.351627,5.9648018 C 71.351627,6.1473768 71.032840,6.5255699 70.570599,6.9037569 L 66.665476,10.111852 z M 48.845329,4.9606428 L 45.561840,4.9606428 L 45.561840,5.5735708 L 45.960319,5.5735708 C 46.773222,5.5735708 47.139831,5.6778988 47.426732,6.0039248 L 47.426732,11.546365 C 47.426732,13.332984 47.107950,13.711171 45.577780,13.763338 L 45.577780,14.376267 L 50.120510,14.376267 L 50.120510,13.763338 C 48.606244,13.711171 48.287451,13.332984 48.287451,11.546365 L 48.287451,6.7081449 L 55.396408,14.558842 L 56.065863,14.558842 L 56.065863,7.7905439 C 56.065863,6.0039248 56.384651,5.6257388 57.914820,5.5735708 L 57.914820,4.9606428 L 53.372123,4.9606428 L 53.372123,5.5735708 C 54.886352,5.6257388 55.205134,6.0039248 55.205134,7.7905439 L 55.205134,11.885427 L 48.845329,4.9606428 z M 38.484798,6.5646939 L 38.484798,6.1864998 C 38.484798,5.6387828 38.628257,5.5735708 39.903394,5.5735708 L 40.222181,5.5735708 L 40.222181,4.9606428 L 34.946282,4.9606428 L 34.946282,5.5735708 L 35.265070,5.5735708 C 36.556146,5.5735708 36.699604,5.6387828 36.699604,6.1864998 L 36.699604,6.5646939 L 36.699604,12.772216 L 36.699604,13.150409 C 36.699604,13.698134 36.556146,13.763338 35.265070,13.763338 L 34.946282,13.763338 L 34.946282,14.376267 L 40.222181,14.376267 L 40.222181,13.763338 L 39.903394,13.763338 C 38.628257,13.763338 38.484798,13.698134 38.484798,13.150409 L 38.484798,12.772216 L 38.484798,6.5646939 z "
style="stroke-width:1.0000000pt;fill-opacity:1.0000000;fill:#ffffff" />
<path
sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc"
id="path1124"
d="M 139.23126,12.451027 L 140.73051,12.451027 L 139.80954,15.470944 L 141.50155,15.470944 L 141.35162,15.963555 L 139.65961,15.963555 L 139.25267,17.205790 C 138.90999,18.262404 138.54588,19.540336 138.16036,21.039586 C 137.77484,22.524557 137.58208,23.388410 137.58208,23.631146 C 137.58208,23.959553 137.73201,24.123756 138.03186,24.123756 C 138.56016,24.123756 139.19556,23.395549 139.93804,21.939135 C 140.00944,21.782071 140.11653,21.589310 140.25931,21.360853 L 140.68767,21.575032 C 140.13081,22.731596 139.71673,23.474081 139.44543,23.802488 C 138.86001,24.502138 138.23890,24.851963 137.58208,24.851963 C 137.13945,24.851963 136.78248,24.716317 136.51119,24.445024 C 136.23990,24.159453 136.10425,23.795349 136.10425,23.352714 C 136.10425,22.952914 136.16850,22.503139 136.29701,22.003389 C 136.43980,21.446525 136.89671,19.847325 137.66775,17.205790 L 138.03186,15.963555 L 136.31843,15.963555 L 136.48977,15.470944 L 138.20320,15.470944 L 139.23126,12.451027 z M 149.99737,15.299601 L 151.60371,15.299601 C 150.24724,19.626007 149.56901,22.367492 149.56901,23.524056 C 149.56901,23.952413 149.68324,24.166592 149.91170,24.166592 C 150.18299,24.166592 150.50426,23.909578 150.87550,23.395549 C 151.26102,22.867242 151.59657,22.217567 151.88214,21.446525 L 152.35333,21.639285 C 151.59657,23.781071 150.65418,24.851963 149.52618,24.851963 C 148.55523,24.851963 148.06976,24.309378 148.06976,23.224206 C 148.06976,22.938635 148.10546,22.474582 148.17685,21.832046 C 147.61999,22.688760 147.17021,23.309878 146.82753,23.695399 C 146.14215,24.466442 145.36397,24.851963 144.49298,24.851963 C 143.97895,24.851963 143.55059,24.673481 143.20791,24.316517 C 142.86522,23.959553 142.69388,23.516917 142.69388,22.988610 C 142.69388,22.731596 142.90806,21.867743 143.33642,20.397050 L 143.72194,19.069143 C 144.15029,17.598451 144.36447,16.691762 144.36447,16.349076 C 144.36447,16.077783 144.27166,15.942137 144.08604,15.942137 C 143.48634,15.942137 142.69388,16.884522 141.70866,18.769293 L 141.23747,18.533697 C 142.32264,16.306240 143.41495,15.192512 144.51440,15.192512 C 144.91420,15.192512 145.23547,15.342437 145.47820,15.642287 C 145.73522,15.942137 145.86372,16.334798 145.86372,16.820269 C 145.86372,17.419969 145.72094,18.169594 145.43537,19.069143 L 144.85708,20.889661 C 144.38589,22.374632 144.15029,23.238485 144.15029,23.481221 C 144.15029,23.980971 144.40731,24.230846 144.92134,24.230846 C 145.37825,24.230846 145.87800,23.952413 146.42059,23.395549 C 146.97745,22.838685 147.47720,22.103339 147.91984,21.189511 C 148.59093,19.804489 149.28344,17.841187 149.99737,15.299601 z M 156.32999,12.451027 L 157.82924,12.451027 L 156.90827,15.470944 L 158.60028,15.470944 L 158.45035,15.963555 L 156.75834,15.963555 L 156.35140,17.205790 C 156.00872,18.262404 155.64461,19.540336 155.25909,21.039586 C 154.87357,22.524557 154.68081,23.388410 154.68081,23.631146 C 154.68081,23.959553 154.83074,24.123756 155.13059,24.123756 C 155.65889,24.123756 156.29429,23.395549 157.03677,21.939135 C 157.10817,21.782071 157.21526,21.589310 157.35804,21.360853 L 157.78640,21.575032 C 157.22954,22.731596 156.81546,23.474081 156.54416,23.802488 C 155.95874,24.502138 155.33763,24.851963 154.68081,24.851963 C 154.23818,24.851963 153.88121,24.716317 153.60992,24.445024 C 153.33863,24.159453 153.20298,23.795349 153.20298,23.352714 C 153.20298,22.952914 153.26723,22.503139 153.39574,22.003389 C 153.53853,21.446525 153.99544,19.847325 154.76648,17.205790 L 155.13059,15.963555 L 153.41716,15.963555 L 153.58850,15.470944 L 155.30193,15.470944 L 156.32999,12.451027 z M 163.74065,15.685123 C 162.71259,15.628008 161.79876,16.656065 160.99916,18.769293 C 160.44230,20.239986 160.16387,21.560753 160.16387,22.731596 C 160.16387,23.816767 160.64220,24.359353 161.59886,24.359353 C 162.36991,24.359353 163.04100,23.866742 163.61214,22.881521 C 163.98338,22.253264 164.30465,21.425107 164.57595,20.397050 C 164.84724,19.354715 165.00430,18.376633 165.04714,17.462804 C 165.10425,16.334798 164.66876,15.742237 163.74065,15.685123 z M 163.71923,15.192512 C 164.56167,15.192512 165.24704,15.528059 165.77535,16.199151 C 166.30365,16.855965 166.56781,17.712679 166.56781,18.769293 C 166.56781,20.068643 166.10375,21.382271 165.17565,22.710178 C 164.17615,24.138035 162.96247,24.851963 161.53461,24.851963 C 160.66362,24.851963 159.94969,24.552113 159.39283,23.952413 C 158.83596,23.338435 158.55753,22.560253 158.55753,21.617868 C 158.55753,20.018668 159.14295,18.505140 160.31379,17.077283 C 161.34185,15.820769 162.47700,15.192512 163.71923,15.192512 z M 167.89576,18.576533 L 167.44598,18.383772 C 167.81722,17.469944 168.26700,16.713180 168.79531,16.113480 C 169.32361,15.499501 169.79481,15.192512 170.20888,15.192512 C 171.13699,15.192512 171.60104,15.870744 171.60104,17.227208 C 171.60104,17.469944 171.55821,17.955415 171.47254,18.683622 C 172.45776,16.356215 173.50723,15.192512 174.62096,15.192512 C 174.93509,15.192512 175.19924,15.292462 175.41342,15.492362 C 175.64188,15.677983 175.75611,15.906441 175.75611,16.177733 C 175.75611,16.406190 175.67758,16.598951 175.52051,16.756015 C 175.36345,16.913080 175.17069,16.991612 174.94223,16.991612 C 174.45676,16.991612 174.21402,16.713180 174.21402,16.156316 C 174.21402,15.999251 174.16405,15.920719 174.06410,15.920719 C 173.92131,15.920719 173.72141,16.049226 173.46440,16.306240 C 173.20738,16.563255 172.98607,16.863105 172.80044,17.205790 C 172.22930,18.233847 171.30119,20.689761 170.01612,24.573531 L 168.40978,24.573531 C 169.08088,22.560253 169.51637,21.089561 169.71627,20.161454 C 170.03040,18.705040 170.18747,17.648426 170.18747,16.991612 C 170.18747,16.291962 170.07324,15.942137 169.84478,15.942137 C 169.64488,15.942137 169.35217,16.199151 168.96665,16.713180 C 168.59541,17.227208 168.23844,17.848326 167.89576,18.576533 z M 179.99685,10.352078 C 180.26814,10.352078 180.49660,10.452028 180.68222,10.651928 C 180.88212,10.837549 180.98207,11.066006 180.98207,11.337299 C 180.98207,11.608592 180.88212,11.844188 180.68222,12.044088 C 180.49660,12.243988 180.26814,12.343938 179.99685,12.343938 C 179.72556,12.343938 179.48996,12.243988 179.29006,12.044088 C 179.09016,11.844188 178.99021,11.608592 178.99021,11.337299 C 178.99021,11.066006 179.09016,10.837549 179.29006,10.651928 C 179.48996,10.452028 179.72556,10.352078 179.99685,10.352078 z M 180.31812,21.596450 L 180.74647,21.810628 C 179.78981,23.838185 178.74747,24.851963 177.61947,24.851963 C 177.21967,24.851963 176.89126,24.709178 176.63425,24.423606 C 176.37723,24.123756 176.24873,23.745374 176.24873,23.288460 C 176.24873,22.974332 176.29156,22.681621 176.37723,22.410328 C 176.46290,22.139035 176.69850,21.532196 177.08402,20.589811 L 177.89790,18.640786 C 178.38337,17.484222 178.62611,16.706040 178.62611,16.306240 C 178.62611,16.020669 178.50474,15.877883 178.26200,15.877883 C 177.76225,15.877883 177.07688,16.663205 176.20589,18.233847 L 175.77753,17.976833 C 176.79131,16.120619 177.76225,15.192512 178.69036,15.192512 C 179.07588,15.192512 179.39001,15.335298 179.63275,15.620869 C 179.87548,15.906441 179.99685,16.277683 179.99685,16.734598 C 179.99685,17.277183 179.70414,18.283822 179.11872,19.754514 L 178.21917,22.003389 C 177.84792,22.931496 177.66230,23.538335 177.66230,23.823906 C 177.66230,24.080921 177.77653,24.209428 178.00499,24.209428 C 178.27628,24.209428 178.62611,23.966692 179.05446,23.481221 C 179.49710,22.981471 179.91832,22.353214 180.31812,21.596450 z M 187.57881,15.727958 C 187.15046,15.699401 186.65071,15.949276 186.07956,16.477583 C 185.52270,16.991612 185.00153,17.684122 184.51606,18.555115 C 183.54512,20.282821 183.05965,21.732096 183.05965,22.902939 C 183.05965,23.816767 183.41661,24.273681 184.13054,24.273681 C 185.28710,24.273681 186.37941,23.138535 187.40747,20.868243 C 188.10712,19.326157 188.49978,18.048226 188.58545,17.034447 C 188.61401,16.663205 188.53548,16.356215 188.34986,16.113480 C 188.16423,15.870744 187.90722,15.742237 187.57881,15.727958 z M 189.37791,15.470944 L 190.89858,15.470944 C 190.54162,16.427608 190.05614,17.826908 189.44217,19.668843 C 188.78535,21.653564 188.45694,23.002889 188.45694,23.716817 C 188.45694,24.016667 188.57117,24.166592 188.79963,24.166592 C 189.29938,24.166592 189.99903,23.195649 190.89858,21.253764 L 191.36977,21.446525 C 190.77007,22.745874 190.25604,23.638285 189.82769,24.123756 C 189.39933,24.609228 188.91386,24.851963 188.37127,24.851963 C 187.48600,24.851963 187.04337,24.452163 187.04337,23.652564 C 187.04337,23.438385 187.10762,23.002889 187.23613,22.346075 C 186.22235,24.030946 185.13718,24.873381 183.98061,24.873381 C 183.25241,24.873381 182.65985,24.630645 182.20293,24.145174 C 181.74602,23.659703 181.51756,23.024307 181.51756,22.238985 C 181.51756,20.611229 182.16010,19.033447 183.44517,17.505640 C 184.73024,15.963555 186.05101,15.192512 187.40747,15.192512 C 188.12140,15.192512 188.66398,15.585173 189.03523,16.370494 L 189.37791,15.470944 z M 193.77581,10.780435 L 193.90432,10.287824 C 194.97521,10.244988 196.18889,10.173596 197.54535,10.073646 C 197.43113,10.459167 197.34545,10.737599 197.28834,10.908942 C 197.13128,11.351577 196.90996,12.022670 196.62439,12.922220 L 194.88954,18.576533 C 194.06138,21.275182 193.64731,22.931496 193.64731,23.545474 C 193.64731,23.988110 193.77581,24.209428 194.03283,24.209428 C 194.38979,24.209428 194.83243,23.823906 195.36073,23.052864 C 195.63203,22.653064 195.93902,22.124757 196.28170,21.467943 L 196.77431,21.703539 C 196.34595,22.488860 196.02469,23.045724 195.81051,23.374131 C 195.15369,24.359353 194.40407,24.851963 193.56163,24.851963 C 193.13328,24.851963 192.78345,24.694899 192.51216,24.380770 C 192.24087,24.066642 192.10522,23.666842 192.10522,23.181371 C 192.10522,22.581671 192.34796,21.489360 192.83343,19.904439 L 194.71820,13.757516 C 195.13228,12.401052 195.33932,11.637149 195.33932,11.465806 C 195.33932,11.208792 195.23937,11.037449 195.03947,10.951777 C 194.83957,10.851827 194.41835,10.794713 193.77581,10.780435 z "
style="stroke-width:1.0000000pt;fill:#ffffff" />
<use
style="opacity:0.0786517"
height="1052.3622"
width="320"
transform="matrix(2.39436,0,0,2.331219,-82.96365,-14.49494)"
id="use1325"
xlink:href="#path93"
y="0"
x="0" />
<g
transform="translate(-1.250000e-6,0.000000)"
id="g1798">
<path
transform="matrix(3.198050e-2,0.000000,0.000000,0.109292,5.149671,-45.83576)"
d="M 606.48149 567.70831 A 179.39815 53.819443 0 1 1 247.68520,567.70831 A 179.39815 53.819443 0 1 1 606.48149 567.70831 z"
sodipodi:ry="53.819443"
sodipodi:rx="179.39815"
sodipodi:cy="567.70831"
sodipodi:cx="427.08334"
id="path691"
style="fill:url(#radialGradient669);fill-opacity:0.75000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt"
sodipodi:type="arc" />
<path
transform="matrix(3.198050e-2,0.000000,0.000000,0.109292,2.022526,-44.58496)"
d="M 606.48149 567.70831 A 179.39815 53.819443 0 1 1 247.68520,567.70831 A 179.39815 53.819443 0 1 1 606.48149 567.70831 z"
sodipodi:ry="53.819443"
sodipodi:rx="179.39815"
sodipodi:cy="567.70831"
sodipodi:cx="427.08334"
id="path690"
style="fill:url(#radialGradient669);fill-opacity:0.75000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt"
sodipodi:type="arc" />
<path
transform="matrix(3.198050e-2,0.000000,0.000000,0.109292,-3.397884,-48.75451)"
d="M 606.48149 567.70831 A 179.39815 53.819443 0 1 1 247.68520,567.70831 A 179.39815 53.819443 0 1 1 606.48149 567.70831 z"
sodipodi:ry="53.819443"
sodipodi:rx="179.39815"
sodipodi:cy="567.70831"
sodipodi:cx="427.08334"
id="path689"
style="fill:url(#radialGradient669);fill-opacity:0.75000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt"
sodipodi:type="arc" />
<path
transform="matrix(3.198050e-2,0.000000,0.000000,0.109292,8.068429,-48.33756)"
d="M 606.48149 567.70831 A 179.39815 53.819443 0 1 1 247.68520,567.70831 A 179.39815 53.819443 0 1 1 606.48149 567.70831 z"
sodipodi:ry="53.819443"
sodipodi:rx="179.39815"
sodipodi:cy="567.70831"
sodipodi:cx="427.08334"
id="path688"
style="fill:url(#radialGradient669);fill-opacity:0.75000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt"
sodipodi:type="arc" />
<path
transform="matrix(3.198050e-2,0.000000,0.000000,0.109292,12.02955,-53.13256)"
d="M 606.48149 567.70831 A 179.39815 53.819443 0 1 1 247.68520,567.70831 A 179.39815 53.819443 0 1 1 606.48149 567.70831 z"
sodipodi:ry="53.819443"
sodipodi:rx="179.39815"
sodipodi:cy="567.70831"
sodipodi:cx="427.08334"
id="path674"
style="fill:url(#radialGradient669);fill-opacity:0.75000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt"
sodipodi:type="arc" />
<path
transform="matrix(3.198050e-2,0.000000,0.000000,0.109292,9.855679,-58.05951)"
d="M 606.48149 567.70831 A 179.39815 53.819443 0 1 1 247.68520,567.70831 A 179.39815 53.819443 0 1 1 606.48149 567.70831 z"
sodipodi:ry="53.819443"
sodipodi:rx="179.39815"
sodipodi:cy="567.70831"
sodipodi:cx="427.08334"
id="path673"
style="fill:url(#radialGradient669);fill-opacity:0.75000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt"
sodipodi:type="arc" />
<path
transform="matrix(3.198050e-2,0.000000,0.000000,0.109292,5.269166,-61.39511)"
d="M 606.48149 567.70831 A 179.39815 53.819443 0 1 1 247.68520,567.70831 A 179.39815 53.819443 0 1 1 606.48149 567.70831 z"
sodipodi:ry="53.819443"
sodipodi:rx="179.39815"
sodipodi:cy="567.70831"
sodipodi:cx="427.08334"
id="path672"
style="fill:url(#radialGradient669);fill-opacity:0.75000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt"
sodipodi:type="arc" />
<path
transform="matrix(3.198050e-2,0.000000,0.000000,0.109292,0.265717,-60.76966)"
d="M 606.48149 567.70831 A 179.39815 53.819443 0 1 1 247.68520,567.70831 A 179.39815 53.819443 0 1 1 606.48149 567.70831 z"
sodipodi:ry="53.819443"
sodipodi:rx="179.39815"
sodipodi:cy="567.70831"
sodipodi:cx="427.08334"
id="path671"
style="fill:url(#radialGradient669);fill-opacity:0.75000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt"
sodipodi:type="arc" />
<path
transform="matrix(3.198050e-2,0.000000,0.000000,0.109292,-3.903834,-56.18316)"
d="M 606.48149 567.70831 A 179.39815 53.819443 0 1 1 247.68520,567.70831 A 179.39815 53.819443 0 1 1 606.48149 567.70831 z"
sodipodi:ry="53.819443"
sodipodi:rx="179.39815"
sodipodi:cy="567.70831"
sodipodi:cx="427.08334"
id="path670"
style="fill:url(#radialGradient669);fill-opacity:0.75000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt"
sodipodi:type="arc" />
<path
transform="matrix(3.198050e-2,0.000000,0.000000,0.109292,-6.614049,-53.47301)"
d="M 606.48149 567.70831 A 179.39815 53.819443 0 1 1 247.68520,567.70831 A 179.39815 53.819443 0 1 1 606.48149 567.70831 z"
sodipodi:ry="53.819443"
sodipodi:rx="179.39815"
sodipodi:cy="567.70831"
sodipodi:cx="427.08334"
id="path665"
style="fill:url(#radialGradient669);fill-opacity:0.75000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt"
sodipodi:type="arc" />
<g
transform="matrix(5.883700e-2,0.000000,0.000000,5.883700e-2,-4.768899,-3.296641)"
id="g839">
<path
id="path805"
d="M 397.64309,320.25301 L 280.39197,282.51700 L 250.74227,124.83447 L 345.08225,29.146783 L 393.59996,46.667064 L 483.89679,135.61619 L 397.64309,320.25301 z "
style="font-size:12.000000;fill:#ffffff;fill-rule:evenodd;stroke:#000000;stroke-width:0.93619299pt" />
<path
id="path1791"
d="M 476.95792,339.17168 C 495.78197,342.93607 499.54842,356.11361 495.78197,359.87802 C 492.01856,363.64340 482.60650,367.40781 475.07663,361.76014 C 467.54478,356.11361 467.54478,342.93607 476.95792,339.17168 z "
style="font-size:12.000000;fill:#000000;fill-opacity:1.0000000;fill-rule:evenodd;stroke-width:1.0000000pt" />
<path
id="path1792"
d="M 286.46194,340.42914 C 284.62770,340.91835 269.30405,327.71337 257.16909,333.83380 C 245.03722,339.95336 236.89276,353.65666 248.22676,359.27982 C 259.56184,364.90298 267.66433,358.41867 277.60113,351.44119 C 287.53903,344.46477 287.18046,343.12060 286.46194,340.42914 z "
style="font-size:12.000000;fill:#000000;fill-opacity:1.0000000;fill-rule:evenodd;stroke-width:1.0000000pt" />
<path
id="path1793"
d="M 510.35756,306.92856 C 520.59494,304.36879 544.24333,306.92856 540.47688,321.98634 C 536.71354,337.04806 504.71297,331.39827 484.00371,323.87156 C 482.12141,308.81083 505.53237,308.13423 510.35756,306.92856 z "
style="font-size:12.000000;fill:#000000;fill-opacity:1.0000000;fill-rule:evenodd;stroke-width:1.0000000pt" />
<path
id="path831"
d="M 359.24030,21.362537 C 347.92693,21.362537 336.63470,25.683095 327.96556,34.352230 L 173.87387,188.41466 C 165.37697,196.91140 161.11160,207.95813 160.94269,219.04577 L 160.88418,219.04577 C 160.88418,219.08524 160.94076,219.12322 160.94269,219.16279 C 160.94033,219.34888 160.88418,219.53256 160.88418,219.71865 L 161.14748,219.71865 C 164.09660,230.93917 240.29699,245.24198 248.79866,253.74346 C 261.63771,266.58263 199.56520,276.01151 212.40410,288.85074 C 225.24316,301.68979 289.99433,313.69330 302.83460,326.53254 C 315.67368,339.37161 276.59610,353.04289 289.43532,365.88196 C 302.27439,378.72118 345.40201,362.67257 337.59080,396.16198 C 354.92909,413.50026 391.10302,405.22080 415.32417,387.88252 C 428.16323,375.04345 390.69480,376.17577 403.53397,363.33668 C 416.37304,350.49745 448.78128,350.42820 476.08902,319.71589 C 465.09739,302.62116 429.10801,295.34136 441.94719,282.50217 C 454.78625,269.66311 479.74708,276.18423 533.60644,251.72479 C 559.89837,239.78398 557.72636,230.71459 557.62567,219.71865 C 557.62356,219.48727 557.62567,219.27892 557.62567,219.04577 L 557.56716,219.04577 C 557.39830,207.95812 553.10345,196.91140 544.60673,188.41466 L 390.54428,34.352230 C 381.87515,25.683095 370.55366,21.362537 359.24030,21.362537 z M 357.92378,41.402939 C 362.95327,41.533963 367.01541,45.368018 374.98006,50.530832 L 447.76915,104.50827 C 448.56596,105.02498 449.32484,105.56400 450.02187,106.11735 C 450.71890,106.67062 451.35560,107.25745 451.95277,107.84347 C 452.54997,108.42842 453.09281,109.01553 453.59111,109.62808 C 454.08837,110.24052 454.53956,110.86661 454.93688,111.50048 C 455.33532,112.13538 455.69164,112.78029 455.99010,113.43137 C 456.28877,114.08363 456.52291,114.75639 456.72150,115.42078 C 456.92126,116.08419 457.08982,116.73973 457.18961,117.41019 C 457.28949,118.08184 457.33588,118.75535 457.33588,119.42886 L 414.21245,98.598549 L 409.91180,131.16055 L 386.18512,120.04324 L 349.55654,144.50131 L 335.54288,96.170300 L 317.49190,138.44530 L 267.08369,143.47735 L 267.63956,121.03795 C 267.63956,115.64823 296.69685,77.915899 314.39075,68.932902 L 346.77721,45.674327 C 351.55594,42.576634 354.90608,41.324327 357.92378,41.402939 z M 290.92738,261.61333 C 313.87149,267.56365 339.40299,275.37038 359.88393,275.50997 L 360.76161,284.72563 C 343.22350,282.91785 306.11346,274.45012 297.36372,269.98057 L 290.92738,261.61333 z "
style="font-size:12.000000;fill:#000000;fill-opacity:1.0000000;fill-rule:evenodd;stroke-width:1.0000000pt" />
</g>
</g>
<use
style="opacity:1.0000000;color:#000000;fill:#ffffff;fill-opacity:0.11076898;fill-rule:nonzero;stroke:none;stroke-width:0.26322169pt;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;visibility:visible;display:inline;overflow:visible;font-family:Bitstream Vera Sans"
height="1052.3622"
width="320.00000"
transform="matrix(3.799079,0.000000,0.000000,3.799079,-428.7368,-36.47549)"
id="use2086"
xlink:href="#path1124"
y="0.0000000"
x="0.0000000" />
<text
xml:space="preserve"
style="font-size:6.96932268px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;opacity:0.5;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"
x="3.6203015"
y="-326.81229"
id="text7519"
sodipodi:linespacing="125%"
transform="matrix(0,1,-1,0,0,0)"><tspan
sodipodi:role="line"
id="tspan7521"
x="3.6203015"
y="-326.81229"
style="letter-spacing:0.29056421">使用 <tspan
style="font-weight:bold"
id="tspan7523">Ctrl+↓</tspan> 向下捲動頁面</tspan></text>
<path
sodipodi:type="star"
style="opacity:0.5;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:4.32172871;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
id="path7527"
sodipodi:sides="3"
sodipodi:cx="332.34018"
sodipodi:cy="193.40422"
sodipodi:r1="7.6034532"
sodipodi:r2="3.8017266"
sodipodi:arg1="0.62024949"
sodipodi:arg2="1.667447"
inkscape:flatsided="true"
inkscape:rounded="0"
inkscape:randomized="0"
d="M 338.52736,197.82364 L 325.41926,196.55277 L 333.07392,185.83625 L 338.52736,197.82364 z"
transform="matrix(0.614962,4.549602e-2,6.191898e-2,-0.451855,112.95622,172.3115)" />
</g>
<text
style="font-size:7px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans"
x="176.24451"
y="18.25828"
id="text1920"
transform="scale(1.13073,1.13073)">
<tspan
id="tspan1668"
dx="0 -0.57057059"
style="letter-spacing:2.18130994;fill:#ffffff;fill-opacity:1">::描繪</tspan>
</text>
<rect
id="d0e10"
width="264"
height="1000px"
x="35"
y="36"
style="display:none" />
<flowRoot
style="font-size:7.19999981px;font-style:italic;font-weight:normal;line-height:150%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans"
id="flowRoot44">
<flowRegion
id="flowRegion46">
<use
xlink:href="#d0e10"
y="0"
x="0"
id="use48"
width="320"
height="3962.5" />
</flowRegion>
<flowDiv
xml:space="preserve"
id="flowDiv50">Inkscape 的特點之一就是有工具能將點陣圖描繪成 <路徑> 元件作為 SVG 圖畫。這些簡短的說明應該能幫助你熟悉它的用法。</flowDiv> </flowRoot>
<rect
id="d0e16"
width="288"
height="1000px"
x="10"
y="76.272655"
style="display:none" />
<flowRoot
style="font-size:8.39999962px;font-style:normal;font-weight:normal;line-height:133.00000429%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Bitstream Vera Serif"
id="flowRoot53"
transform="translate(0,-8)">
<flowRegion
id="flowRegion55">
<use
xlink:href="#d0e16"
y="0"
x="0"
id="use57"
width="320"
height="3962.5" />
</flowRegion>
<flowDiv
xml:space="preserve"
id="flowDiv59">目前 Inkscape 採用 Potrace 點陣圖描繪引擎 (<flowSpan
style="font-weight:normal;-inkscape-font-specification:Bitstream Vera Serif"
id="flowSpan2697">potrace.sourceforge.net</flowSpan>) 其作者為 Peter Selinger。我們期望將來有候補的描繪程式;不過,現在這個優秀的工具已經能大大滿足我們的需求。</flowDiv> </flowRoot>
<rect
id="d0e22"
width="288"
height="1000px"
x="10"
y="125.87349499999999"
style="display:none" />
<flowRoot
style="font-size:8.39999962px;font-style:normal;font-weight:normal;line-height:133.00000429%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Bitstream Vera Serif"
id="flowRoot64"
transform="translate(0,-18)">
<flowRegion
id="flowRegion66">
<use
xlink:href="#d0e22"
y="0"
x="0"
id="use68"
width="320"
height="3962.5" />
</flowRegion>
<flowDiv
xml:space="preserve"
id="flowDiv70">記住描繪的目的並非仿造出原始圖像的精確複製品;也不是刻意打造一個最終作品。沒有自動描繪程式可以做到那樣。它能做的是給你一組曲線作為素材應用到你的創作中。</flowDiv> </flowRoot>
<rect
id="d0e25"
width="288"
height="1000px"
x="10"
y="177.034806"
style="display:none" />
<flowRoot
style="font-size:8.39999962px;font-style:normal;font-weight:normal;line-height:133.00000429%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Bitstream Vera Serif"
id="flowRoot73"
transform="translate(0,-28)">
<flowRegion
id="flowRegion75">
<use
xlink:href="#d0e25"
y="0"
x="0"
id="use77"
width="320"
height="3962.5" />
</flowRegion>
<flowDiv
xml:space="preserve"
id="flowDiv79">Potrace 可詮釋一幅黑白點陣圖並產生一組曲線。目前我們有三種類型的輸入濾鏡可將原本圖像轉換成 Potrace 可使用的東西。</flowDiv> </flowRoot>
<rect
id="d0e28"
width="288"
height="1000px"
x="10"
y="217.02411800000002"
style="display:none" />
<flowRoot
style="font-size:8.39999962px;font-style:normal;font-weight:normal;line-height:133.00000429%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Bitstream Vera Serif"
id="flowRoot82"
transform="translate(0,-38)">
<flowRegion
id="flowRegion84">
<use
xlink:href="#d0e28"
y="0"
x="0"
id="use86"
width="320"
height="3962.5" />
</flowRegion>
<flowDiv
xml:space="preserve"
id="flowDiv88">一般來說中間點陣圖中含有較多的暗色像素, Potrace 會實行更多次的描繪動作。當描繪的次數增加時,會需要更多的 CPU 時間,且產生的 <路徑> 元件也會大很多。建議使用者先試驗顏色較亮的中間點陣圖,再慢慢地換成顏色較暗的以得到想要的輸出路徑比例和複雜性。</flowDiv> </flowRoot>
<rect
id="d0e31"
width="288"
height="1000px"
x="10"
y="279.35743"
style="display:none" />
<flowRoot
style="font-size:8.39999962px;font-style:normal;font-weight:normal;line-height:133.00000429%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Bitstream Vera Serif"
id="flowRoot91"
transform="translate(0,-48)">
<flowRegion
id="flowRegion93">
<use
xlink:href="#d0e31"
y="0"
x="0"
id="use95"
width="320"
height="3962.5" />
</flowRegion>
<flowDiv
xml:space="preserve"
id="flowDiv97">開始使用描繪功能,載入或匯入一個圖像,選取它並選擇 路徑 > 描繪點陣圖 項目,或者直接按 <flowSpan
style="font-weight:bold;-inkscape-font-specification:Bitstream Vera Serif Bold"
id="flowSpan2701">Shift+Alt+B</flowSpan>。</flowDiv> </flowRoot>
<text
sodipodi:insensitive="true"
sodipodi:linespacing="100%"
y="366.10236"
x="143.74434"
style="font-size:5.70384789px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:block;font-family:Bitstream Vera Sans"
xml:space="preserve"><tspan
role="line"
y="366.10236"
x="143.74434">描繪對話窗的主要選項</tspan></text>
<image
y="266.34921"
x="75.359344"
height="91.737564"
width="189.28131"
sodipodi:absref="/potrace-zh_TW.png"
xlink:href="potrace-zh_TW.png"
style="display:block" />
<rect
id="d0e50"
width="288"
height="1000px"
x="10"
y="429.30275000000006"
style="display:none" />
<flowRoot
style="font-size:8.39999962px;font-style:normal;font-weight:normal;line-height:133.00000429%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Bitstream Vera Serif"
id="flowRoot107"
transform="translate(0,-50)">
<flowRegion
id="flowRegion109">
<use
xlink:href="#d0e50"
y="0"
x="0"
id="use111"
width="320"
height="3962.5" />
</flowRegion>
<flowDiv
xml:space="preserve"
id="flowDiv113">這時會看到三種可用的濾鏡選項:</flowDiv> </flowRoot>
<circle
cx="0"
cy="0"
r="2"
transform="translate(15,402.93166)"
id="circle115"
sodipodi:cx="0"
sodipodi:cy="0"
sodipodi:rx="2"
sodipodi:ry="2" />
<rect
id="d0e56"
width="258"
height="1000px"
x="20"
y="446.93165590000007"
style="display:none" />
<flowRoot
style="font-size:8.39999962px;font-style:normal;font-weight:normal;line-height:133.00000429%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Bitstream Vera Serif"
id="flowRoot118"
transform="translate(0,-50)">
<flowRegion
id="flowRegion120">
<use
xlink:href="#d0e56"
y="0"
x="0"
id="use122"
width="320"
height="3962.5" />
</flowRegion>
<flowDiv
xml:space="preserve"
id="flowDiv124">亮度臨界值</flowDiv> </flowRoot>
<rect
id="d0e60"
width="288"
height="1000px"
x="10"
y="464.57696810000004"
style="display:none" />
<flowRoot
style="font-size:8.39999962px;font-style:normal;font-weight:normal;line-height:133.00000429%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Bitstream Vera Serif"
id="flowRoot127"
transform="translate(0,-50)">
<flowRegion
id="flowRegion129">
<use
xlink:href="#d0e60"
y="0"
x="0"
id="use131"
width="320"
height="3962.5" />
</flowRegion>
<flowDiv
xml:space="preserve"
id="flowDiv133">這個僅僅使用像素的紅色、綠色、藍色 (或灰度) 的總和作為判定哪一個為黑或白的指標。臨界值可設定為 0.0 (黑色) 到 1.0 (白色)。設定較高的臨界值,像素數量少於臨界值的會判定為白色,而中間影像會變得較暗。</flowDiv> </flowRoot>
<text
sodipodi:insensitive="true"
sodipodi:linespacing="100%"
y="558.36688"
x="79.581543"
style="font-size:6px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:100%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:block;font-family:Bitstream Vera Sans"
xml:space="preserve"><tspan
y="558.36688"
x="79.581543"
role="line">原始圖像</tspan></text>
<text
sodipodi:insensitive="true"
sodipodi:linespacing="100%"
y="558.59088"
x="168.69894"
style="font-size:6px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:100%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:block;font-family:Bitstream Vera Sans"
xml:space="preserve"><tspan
y="558.59088"
x="168.69894"
role="line">亮度臨界值</tspan><tspan
y="564.59088"
x="168.69894"
role="line">填色,無邊框</tspan></text>
<text
sodipodi:linespacing="100%"
y="558.59088"
x="254.99974"
style="font-size:6px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:100%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:block;font-family:Bitstream Vera Sans"
xml:space="preserve"><tspan
role="line"
y="558.59088"
x="254.99974">亮度臨界值</tspan><tspan
role="line"
y="564.59088"
x="254.99974">邊框,無填色</tspan></text>
<image
y="461.21222"
x="41.098881"
height="91.143097"
width="76.965286"
sodipodi:absref="/tux.png"
xlink:href="tux.png" />
<path
d="M 153.5182,549.50467 C 152.54347,549.04174 148.23052,547.71441 143.93387,546.55505 C 139.23583,545.28738 135.92102,544.12887 135.61816,543.64875 C 135.26576,543.09007 135.38755,541.98245 136.02383,539.95955 C 136.65095,537.96578 136.83372,536.34364 136.61283,534.73206 C 136.37994,533.03295 136.4445,532.54734 136.84944,532.95228 C 137.4274,533.53025 137.24347,538.73775 136.55306,541.3433 C 136.22213,542.59222 136.36507,542.81258 137.93028,543.46658 C 138.89085,543.86792 140.91126,544.34417 142.42009,544.52489 C 143.92892,544.70562 147.58655,545.4253 150.54816,546.12419 C 155.71327,547.34306 156.00598,547.36021 157.72453,546.54471 C 159.94988,545.48871 161.24339,543.00456 160.77843,540.67976 C 160.59621,539.76867 158.85238,536.49741 156.90326,533.41028 C 150.78188,523.71492 149.46983,522.46102 146.84775,523.80048 C 145.55179,524.46251 145.4804,524.43025 145.17615,523.04499 C 144.74276,521.07177 145.25289,519.22943 147.22519,515.64492 C 148.1446,513.97397 149.46913,510.848 150.16859,508.69833 C 151.75042,503.83682 152.14523,503.09147 154.80351,499.94806 C 155.98107,498.55559 157.64081,496.31125 158.49181,494.96062 L 160.03909,492.50494 L 159.73859,482.70615 C 159.47374,474.06992 159.54485,472.62779 160.33798,470.55102 C 162.35989,465.25672 166.18416,462.91963 172.12492,463.34777 C 177.55612,463.73918 181.24846,465.97424 183.75981,470.39062 C 185.15006,472.83548 185.41126,474.20712 185.86288,481.43468 C 186.23723,487.42559 186.30119,487.67467 188.66221,492.33721 C 189.99114,494.96156 192.20426,498.39529 193.58025,499.96771 C 198.31925,505.38323 200.84531,512.1594 200.8402,519.44255 C 200.83689,524.17272 200.80446,524.30158 198.89419,527.17519 C 196.437,530.87153 195.38327,531.59496 192.45653,531.59496 C 188.82421,531.59496 188.71413,531.29373 188.6808,521.26281 C 188.64892,511.67076 188.06113,509.01858 184.99913,504.65051 C 184.16221,503.45662 183.32392,501.68231 183.13626,500.70758 C 182.77582,498.83548 178.92249,490.54959 178.16181,490.01093 C 177.91601,489.83687 177.96709,489.5386 178.27532,489.34811 C 178.97678,488.91457 179.01374,486.1932 178.32395,485.76689 C 178,485.56667 178.09292,485.04975 178.57712,484.35846 C 179.62094,482.8682 179.53708,480.79546 178.33787,478.4448 C 177.18138,476.1779 175.81237,475.5577 173.80259,476.39018 C 171.97813,477.14589 171.03232,478.95008 171.35515,481.05881 C 171.63748,482.90303 171.39632,483.99801 170.70781,483.99801 C 170.46127,483.99801 170.40417,483.62115 170.58092,483.16054 C 170.85685,482.44149 170.61187,482.36202 168.84845,482.59854 L 166.79461,482.87402 L 167.04035,481.03085 C 167.22465,479.6485 167.01166,478.83955 166.18842,477.79522 C 163.98076,474.99465 161.61981,476.76914 161.61981,481.22897 C 161.61981,483.93334 162.57426,485.92577 163.57382,485.30801 C 164.00652,485.04059 163.95981,484.65497 163.39746,483.85211 C 162.48956,482.5559 162.39785,480.38441 163.21643,479.56583 C 164.03154,478.75072 165.4782,479.618 165.86338,481.15269 C 166.03348,481.8304 166.31192,482.74784 166.48215,483.19145 C 166.65739,483.6481 166.5328,483.99801 166.19497,483.99801 C 165.37481,483.99801 164.44428,485.0013 163.41077,486.99989 C 162.57535,488.61541 162.57919,488.72689 163.50197,489.64967 C 165.64819,491.7959 170.88915,491.15508 175.35376,488.20054 C 176.44469,487.4786 177.45629,487.00695 177.60176,487.15242 C 177.86108,487.41174 175.67842,488.95015 172.55955,490.70637 C 171.66072,491.21249 169.93055,491.59204 168.52013,491.59249 C 166.38455,491.59317 166.13768,491.69535 166.68331,492.3528 C 167.52377,493.36549 168.96407,493.31009 172.55433,492.12698 C 175.48901,491.15991 175.52098,491.1597 174.27857,492.11563 C 170.38423,495.11202 167.83072,495.15901 164.65802,492.29266 C 162.60295,490.43603 162.12616,490.66135 162.12616,493.48917 C 162.12616,494.20787 161.45627,495.8412 160.63752,497.1188 C 159.81877,498.3964 158.86967,500.58099 158.5284,501.97346 C 158.18713,503.36592 156.8043,506.78405 155.45545,509.56929 C 152.92815,514.78789 151.74006,520.15829 152.48841,522.98089 C 152.69537,523.76151 154.71778,525.77537 157.72368,528.19404 C 162.99391,532.43468 163.92604,533.93667 162.36087,535.66617 C 161.86696,536.21193 161.15638,536.65847 160.7818,536.65847 C 158.90283,536.65847 161.42372,540.26402 164.00557,541.26934 C 166.08298,542.07824 171.9622,541.90001 174.85083,540.94056 C 177.62908,540.01777 181.24132,537.52519 183.77264,534.78416 L 185.41828,533.00219 L 185.41828,538.14676 C 185.41828,543.93746 186.11001,545.98965 188.34878,546.84083 C 190.34532,547.59991 192.74041,546.97954 197.51937,544.4655 C 202.40998,541.89272 203.2932,541.62744 200.25343,543.64431 C 199.08326,544.42071 197.14064,545.97935 195.93651,547.10796 C 193.00732,549.85341 191.99825,550.33027 189.12261,550.32804 C 186.50153,550.32601 183.39288,548.85216 183.39288,547.61151 C 183.39288,546.50353 181.71585,546.29346 172.81167,546.28604 L 164.50903,546.27913 L 162.249,548.13106 C 159.5387,550.35195 156.35637,550.85262 153.5182,549.50467 z M 184.18937,490.80489 C 182.94403,489.88568 182.64228,490.19077 183.39876,491.60427 C 183.85235,492.4518 184.13179,492.57388 184.57908,492.1199 C 185.02403,491.66828 184.93022,491.35172 184.18937,490.80489 z M 177.82302,468.52444 C 177.82302,468.40163 177.59517,468.30115 177.31667,468.30115 C 177.03818,468.30115 176.81032,468.54245 176.81032,468.83738 C 176.81032,469.13231 177.03818,469.23279 177.31667,469.06067 C 177.59517,468.88856 177.82302,468.64725 177.82302,468.52444 z M 136.3458,531.18191 C 136.29315,529.76344 137.14395,528.05051 137.90115,528.05051 C 138.27304,528.05051 138.25586,528.28646 137.8482,528.77767 C 137.51628,529.1776 137.05225,530.14599 136.81702,530.92966 C 136.43212,532.21193 136.38497,532.23717 136.3458,531.18191 z M 140.85943,527.69133 C 142.57016,527.55449 143.43578,527.16643 144.33287,526.13415 C 144.99004,525.37795 145.35414,525.10102 145.14197,525.51876 C 144.11999,527.5309 143.22039,528.04998 140.90754,527.96205 L 138.58086,527.87359 L 140.85943,527.69133 z M 173.96705,484.11685 C 172.88078,483.40123 172.6455,481.46253 173.48873,480.17559 C 174.9615,477.92786 177.31667,478.87772 177.31667,481.71944 C 177.31667,484.0411 175.65614,485.22959 173.96705,484.11685 z" />
<path
style="fill:none;stroke:#000000;stroke-width:0.375;stroke-miterlimit:4;stroke-opacity:1"
d="M 239.81902,549.50465 C 238.84429,549.04172 234.53134,547.71439 230.23469,546.55503 C 225.53665,545.28736 222.22184,544.12885 221.91898,543.64873 C 221.56658,543.09005 221.68837,541.98243 222.32465,539.95953 C 222.95177,537.96576 223.13454,536.34362 222.91365,534.73204 C 222.68076,533.03293 222.74532,532.54732 223.15026,532.95226 C 223.72822,533.53023 223.54429,538.73773 222.85388,541.34328 C 222.52295,542.5922 222.66589,542.81256 224.2311,543.46656 C 225.19167,543.8679 227.21208,544.34415 228.72091,544.52487 C 230.22974,544.7056 233.88737,545.42528 236.84898,546.12417 C 242.01409,547.34304 242.3068,547.36019 244.02535,546.54469 C 246.2507,545.48869 247.54421,543.00454 247.07925,540.67974 C 246.89703,539.76865 245.1532,536.49739 243.20408,533.41026 C 237.0827,523.7149 235.77065,522.461 233.14857,523.80046 C 231.85261,524.46249 231.78122,524.43023 231.47697,523.04497 C 231.04358,521.07175 231.55371,519.22941 233.52601,515.6449 C 234.44542,513.97395 235.76995,510.84798 236.46941,508.69831 C 238.05124,503.8368 238.44605,503.09145 241.10433,499.94804 C 242.28189,498.55557 243.94163,496.31123 244.79263,494.9606 L 246.33991,492.50492 L 246.03941,482.70613 C 245.77456,474.0699 245.84567,472.62777 246.6388,470.551 C 248.66071,465.2567 252.48498,462.91961 258.42574,463.34775 C 263.85694,463.73916 267.54928,465.97422 270.06063,470.3906 C 271.45088,472.83546 271.71208,474.2071 272.1637,481.43466 C 272.53805,487.42557 272.60201,487.67465 274.96303,492.33719 C 276.29196,494.96154 278.50508,498.39527 279.88107,499.96769 C 284.62007,505.38321 287.14613,512.15938 287.14102,519.44253 C 287.13771,524.1727 287.10528,524.30156 285.19501,527.17517 C 282.73782,530.87151 281.68409,531.59494 278.75735,531.59494 C 275.12503,531.59494 275.01495,531.29371 274.98162,521.26279 C 274.94974,511.67074 274.36195,509.01856 271.29995,504.65049 C 270.46303,503.4566 269.62474,501.68229 269.43708,500.70756 C 269.07664,498.83546 265.22331,490.54957 264.46263,490.01091 C 264.21683,489.83685 264.26791,489.53858 264.57614,489.34809 C 265.2776,488.91455 265.31456,486.19318 264.62477,485.76687 C 264.30082,485.56665 264.39374,485.04973 264.87794,484.35844 C 265.92176,482.86818 265.8379,480.79544 264.63869,478.44478 C 263.4822,476.17788 262.11319,475.55768 260.10341,476.39016 C 258.27895,477.14587 257.33314,478.95006 257.65597,481.05879 C 257.9383,482.90301 257.69714,483.99799 257.00863,483.99799 C 256.76209,483.99799 256.70499,483.62113 256.88174,483.16052 C 257.15767,482.44147 256.91269,482.362 255.14927,482.59852 L 253.09543,482.874 L 253.34117,481.03083 C 253.52547,479.64848 253.31248,478.83953 252.48924,477.7952 C 250.28158,474.99463 247.92063,476.76912 247.92063,481.22895 C 247.92063,483.93332 248.87508,485.92575 249.87464,485.30799 C 250.30734,485.04057 250.26063,484.65495 249.69828,483.85209 C 248.79038,482.55588 248.69867,480.38439 249.51725,479.56581 C 250.33236,478.7507 251.77902,479.61798 252.1642,481.15267 C 252.3343,481.83038 252.61274,482.74782 252.78297,483.19143 C 252.95821,483.64808 252.83362,483.99799 252.49579,483.99799 C 251.67563,483.99799 250.7451,485.00128 249.71159,486.99987 C 248.87617,488.61539 248.88001,488.72687 249.80279,489.64965 C 251.94901,491.79588 257.18997,491.15506 261.65458,488.20052 C 262.74551,487.47858 263.75711,487.00693 263.90258,487.1524 C 264.1619,487.41172 261.97924,488.95013 258.86037,490.70635 C 257.96154,491.21247 256.23137,491.59202 254.82095,491.59247 C 252.68537,491.59315 252.4385,491.69533 252.98413,492.35278 C 253.82459,493.36547 255.26489,493.31007 258.85515,492.12696 C 261.78983,491.15989 261.8218,491.15968 260.57939,492.11561 C 256.68505,495.112 254.13154,495.15899 250.95884,492.29264 C 248.90377,490.43601 248.42698,490.66133 248.42698,493.48915 C 248.42698,494.20785 247.75709,495.84118 246.93834,497.11878 C 246.11959,498.39638 245.17049,500.58097 244.82922,501.97344 C 244.48795,503.3659 243.10512,506.78403 241.75627,509.56927 C 239.22897,514.78787 238.04088,520.15827 238.78923,522.98087 C 238.99619,523.76149 241.0186,525.77535 244.0245,528.19402 C 249.29473,532.43466 250.22686,533.93665 248.66169,535.66615 C 248.16778,536.21191 247.4572,536.65845 247.08262,536.65845 C 245.20365,536.65845 247.72454,540.264 250.30639,541.26932 C 252.3838,542.07822 258.26302,541.89999 261.15165,540.94054 C 263.9299,540.01775 267.54214,537.52517 270.07346,534.78414 L 271.7191,533.00217 L 271.7191,538.14674 C 271.7191,543.93744 272.41083,545.98963 274.6496,546.84081 C 276.64614,547.59989 279.04123,546.97952 283.82019,544.46548 C 288.7108,541.8927 289.59402,541.62742 286.55425,543.64429 C 285.38408,544.42069 283.44146,545.97933 282.23733,547.10794 C 279.30814,549.85339 278.29907,550.33025 275.42343,550.32802 C 272.80235,550.32599 269.6937,548.85214 269.6937,547.61149 C 269.6937,546.50351 268.01667,546.29344 259.11249,546.28602 L 250.80985,546.27911 L 248.54982,548.13104 C 245.83952,550.35193 242.65719,550.8526 239.81902,549.50465 z M 270.49019,490.80487 C 269.24485,489.88566 268.9431,490.19075 269.69958,491.60425 C 270.15317,492.45178 270.43261,492.57386 270.8799,492.11988 C 271.32485,491.66826 271.23104,491.3517 270.49019,490.80487 z M 264.12384,468.52442 C 264.12384,468.40161 263.89599,468.30113 263.61749,468.30113 C 263.339,468.30113 263.11114,468.54243 263.11114,468.83736 C 263.11114,469.13229 263.339,469.23277 263.61749,469.06065 C 263.89599,468.88854 264.12384,468.64723 264.12384,468.52442 z M 222.64662,531.18189 C 222.59397,529.76342 223.44477,528.05049 224.20197,528.05049 C 224.57386,528.05049 224.55668,528.28644 224.14902,528.77765 C 223.8171,529.17758 223.35307,530.14597 223.11784,530.92964 C 222.73294,532.21191 222.68579,532.23715 222.64662,531.18189 z M 227.16025,527.69131 C 228.87098,527.55447 229.7366,527.16641 230.63369,526.13413 C 231.29086,525.37793 231.65496,525.101 231.44279,525.51874 C 230.42081,527.53088 229.52121,528.04996 227.20836,527.96203 L 224.88168,527.87357 L 227.16025,527.69131 z M 260.26787,484.11683 C 259.1816,483.40121 258.94632,481.46251 259.78955,480.17557 C 261.26232,477.92784 263.61749,478.8777 263.61749,481.71942 C 263.61749,484.04108 261.95696,485.22957 260.26787,484.11683 z" />
<circle
cx="0"
cy="0"
r="2"
transform="translate(15,583.54894)"
id="circle146"
sodipodi:cx="0"
sodipodi:cy="0"
sodipodi:rx="2"
sodipodi:ry="2" />
<rect
id="d0e76"
width="258"
height="1000px"
x="20"
y="649.5489431000001"
style="display:none" />
<flowRoot
style="font-size:8.39999962px;font-style:normal;font-weight:normal;line-height:133.00000429%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Bitstream Vera Serif"
id="flowRoot149"
transform="translate(0,-72)">
<flowRegion
id="flowRegion151">
<use
xlink:href="#d0e76"
y="0"
x="0"
id="use153"
width="320"
height="3962.5" />
</flowRegion>
<flowDiv
xml:space="preserve"
id="flowDiv155">最佳邊緣偵測</flowDiv> </flowRoot>
<rect
id="d0e80"
width="288"
height="1000px"
x="10"
y="667.1942553000001"
style="display:none" />
<flowRoot
style="font-size:8.39999962px;font-style:normal;font-weight:normal;line-height:133.00000429%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Bitstream Vera Serif"
id="flowRoot158"
transform="translate(0,-72)">
<flowRegion
id="flowRegion160">
<use
xlink:href="#d0e80"
y="0"
x="0"
id="use162"
width="320"
height="3962.5" />
</flowRegion>
<flowDiv
xml:space="preserve"
id="flowDiv164">這個使用 J. Canny 發明的邊緣偵測算法作為快速發現相似對比的等斜線的方法。這個產生的中間點陣圖看起來比使用亮度臨界值的效果還不像原始圖像,但是很可能會提供另一個方式被忽略的曲線資訊。這裡設定的臨界值 (0.0 – 1.0) 可調整輸出結果中相鄰像素是否達到邊緣差異的亮度臨界值。這個設定能調整輸出結果中邊緣的明暗或粗細。</flowDiv> </flowRoot>
<text
sodipodi:insensitive="true"
sodipodi:linespacing="100%"
y="761.02625"
x="79.581543"
style="font-size:6px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:100%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:block;font-family:Bitstream Vera Sans"
xml:space="preserve"><tspan
y="761.02625"
x="79.581543"
role="line">原始圖像</tspan></text>
<text
sodipodi:insensitive="true"
sodipodi:linespacing="100%"
y="761.25024"
x="167.95474"
style="font-size:6px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:100%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:block;font-family:Bitstream Vera Sans"
xml:space="preserve"><tspan
y="761.25024"
x="167.95474"
role="line">偵測邊緣</tspan><tspan
y="767.25024"
x="167.95474"
role="line">填色,無邊框</tspan></text>
<text
sodipodi:insensitive="true"
sodipodi:linespacing="100%"
y="761.25024"
x="254.99974"
style="font-size:6px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:100%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:block;font-family:Bitstream Vera Sans"
xml:space="preserve"><tspan
role="line"
y="761.25024"
x="254.99974">偵測邊緣</tspan><tspan
role="line"
y="767.25024"
x="254.99974">邊框,無填色</tspan></text>
<image
y="663.87158"
x="41.098881"
height="91.143097"
width="76.965286"
sodipodi:absref="/tux.png"
xlink:href="tux.png" />
<path
d="M 149.28214,752.97267 C 148.06137,752.41877 145.78279,751.60995 144.21863,751.17528 C 135.03303,748.62269 132.19349,747.74764 131.62746,747.29511 C 130.79937,746.63307 130.83437,744.12576 131.70669,741.6194 C 132.17699,740.26812 132.31714,738.35548 132.1377,735.7375 C 131.89889,732.25328 131.98188,731.74792 132.95221,730.77759 C 133.73576,729.99403 134.66005,729.69717 136.31615,729.69717 C 139.43966,729.69717 140.362,728.56172 140.362,724.71655 C 140.362,722.2772 140.70792,721.13146 142.45889,717.77121 C 143.61218,715.55796 144.89429,712.60784 145.30802,711.21538 C 146.59395,706.88745 147.59934,704.91745 149.91051,702.19715 C 151.13845,700.75184 152.82655,698.48451 153.66185,697.15865 L 155.18058,694.74799 L 154.91378,684.91464 C 154.66135,675.6114 154.70714,674.93304 155.76317,672.33116 C 157.79189,667.33272 161.56577,664.8843 167.24143,664.8843 C 173.71679,664.8843 178.87735,668.01445 181.29921,673.41108 C 182.40505,675.87522 182.70304,677.51421 183.05196,683.05166 C 183.46888,689.66817 183.49235,689.76284 185.8874,694.49257 C 187.21567,697.11563 189.42652,700.54632 190.8004,702.11634 C 193.64068,705.36208 194.61653,707.12255 196.52788,712.44893 C 198.05993,716.71835 198.69087,722.78052 197.93912,726.00841 C 197.55945,727.63861 197.60399,728.35614 198.12768,729.04651 C 198.50476,729.54362 198.82053,730.58497 198.8294,731.36062 C 198.85132,733.28097 200.09606,735.03365 202.72014,736.83907 C 204.4548,738.03254 204.9217,738.662 204.9217,739.80709 C 204.9217,742.27057 204.44007,742.8038 199.98094,745.27719 C 197.60572,746.59467 194.61266,748.67126 193.32971,749.89184 C 189.8967,753.15791 188.30262,753.99794 185.53362,754.0001 C 182.8156,754.00222 179.69661,752.6329 178.71377,751.006 C 178.10871,750.00444 177.648,749.95119 169.58824,749.95119 L 161.09994,749.95119 L 159.26713,751.46194 C 155.88805,754.24727 153.04076,754.67807 149.28214,752.97267 z M 158.0412,749.76041 L 160.28011,747.92579 L 169.81555,747.92136 L 179.351,747.91694 L 179.4212,743.83526 L 179.49141,739.75359 L 178.4085,740.73902 C 174.72422,744.09168 168.7344,746.17476 163.93776,745.77151 C 162.3893,745.64133 160.69733,745.35475 160.17783,745.13466 C 159.39307,744.80219 159.28798,744.90683 159.55661,745.75322 C 159.76702,746.41614 159.5128,747.19451 158.82876,747.9818 C 157.84791,749.11071 157.79696,749.12056 158.06728,748.12909 C 158.22662,747.54468 158.02247,746.42173 157.61361,745.63365 C 157.20475,744.84556 156.98923,744.00821 157.13469,743.77286 C 157.56617,743.07471 156.21704,740.53272 155.14999,740.03336 C 154.60662,739.77907 152.92089,737.52029 151.40393,735.01385 C 147.8889,729.20605 145.39471,726.62449 143.65328,726.9917 C 142.95705,727.13851 141.92853,727.97583 141.36768,728.85241 C 140.53352,730.15617 139.90233,730.50994 137.89913,730.79648 C 136.55228,730.98914 135.12791,731.27049 134.73387,731.42169 C 133.52579,731.88528 133.06886,733.9713 133.49215,737.09053 C 133.78383,739.23994 133.68388,740.78406 133.12613,742.74466 C 132.59747,744.60304 132.52178,745.60479 132.88275,745.96576 C 133.1709,746.25391 136.4685,747.26122 140.21076,748.20425 C 143.95301,749.14727 148.0244,750.38938 149.25829,750.9645 C 152.47755,752.465 155.1953,752.09241 158.0412,749.76041 z M 153.27394,749.74803 C 153.27394,749.63629 154.07144,749.07433 155.04617,748.49923 C 156.43402,747.68038 156.8184,747.61076 156.8184,748.17823 C 156.8184,748.57677 156.37766,749.13874 155.83898,749.42703 C 154.87352,749.94372 153.27394,750.1439 153.27394,749.74803 z M 191.52609,749.1537 C 193.35627,747.60112 196.37846,745.52786 198.24206,744.54647 C 201.9358,742.60131 203.909,741.02293 203.909,740.01342 C 203.909,739.6576 202.9183,738.68486 201.70744,737.85177 C 199.22939,736.14683 197.8328,734.29704 197.8328,732.7198 C 197.8328,732.13471 197.58054,731.18466 197.27224,730.60858 C 196.73724,729.60894 196.62446,729.66242 194.79967,731.78116 C 192.8949,733.99276 192.87484,734.00115 189.49246,734.00115 C 186.53521,734.00115 185.9724,733.84696 185.12929,732.80577 C 184.59691,732.1483 184.16133,730.86602 184.16133,729.95625 C 184.16133,726.50121 181.43025,726.93894 181.039,730.4567 C 180.94608,731.29217 180.64219,731.86182 180.3637,731.72257 C 179.7562,731.41882 180.00686,728.17357 180.70357,727.3224 C 180.97483,726.991 181.67756,726.64922 182.2652,726.56288 C 185.44144,726.09619 184.20237,713.57105 180.42501,707.96126 C 179.75491,706.9661 178.92857,705.24044 178.5887,704.12647 C 178.24883,703.0125 177.15282,700.50606 176.15313,698.55661 C 174.71748,695.75701 174.30487,694.32051 174.18968,691.72088 C 174.10947,689.91068 174.00876,688.08781 173.96589,687.67008 C 173.92301,687.25234 174.0493,686.45483 174.24653,685.89785 C 174.44376,685.34086 174.25654,685.48317 173.83049,686.21408 C 172.45566,688.57266 169.81355,688.56972 168.87167,686.20855 C 168.56924,685.45041 168.24337,685.15549 168.10873,685.51809 C 167.80308,686.34125 164.08723,686.34544 163.57905,685.52319 C 163.31727,685.09963 163.0951,685.30557 162.8962,686.15613 C 162.48656,687.90789 160.25454,688.15637 159.14593,686.57362 C 158.70127,685.93877 158.3447,685.64093 158.35355,685.91177 C 158.36241,686.18261 158.68959,686.82653 159.08062,687.34271 C 159.59873,688.02663 159.65999,688.62736 159.30645,689.55724 C 158.80554,690.87475 159.17722,691.41025 161.54551,692.78316 C 162.84412,693.53597 162.21558,693.96049 160.8692,693.23993 C 158.84578,692.15703 159.30642,693.07031 161.74595,694.97823 C 164.62312,697.22841 166.10413,697.19411 170.01672,694.78666 C 171.39929,693.93596 172.75491,693.23993 173.02922,693.23993 C 174.13552,693.23993 173.37174,694.09466 170.65374,695.89827 C 166.55201,698.6201 162.60949,698.50173 160.24752,695.58583 C 159.3759,694.50979 159.37263,694.51182 159.36141,696.13402 C 159.35522,697.02953 158.56681,699.19418 157.60941,700.94435 C 156.652,702.69451 155.77779,705.06437 155.66673,706.2107 C 155.55567,707.35702 154.95972,709.00425 154.34239,709.87121 C 151.84891,713.37299 150.08756,718.17623 149.8449,722.13604 L 149.61008,725.9678 L 154.23305,729.65443 C 156.77569,731.68208 159.19507,733.82511 159.60944,734.41672 C 160.76358,736.06449 160.53971,738.10015 159.05273,739.47896 L 157.74261,740.69377 L 159.135,741.78903 C 160.99583,743.25276 162.27424,743.51886 166.31978,743.28456 C 170.73962,743.02858 173.90182,741.49694 177.90681,737.67229 L 181.01978,734.69949 L 181.3799,737.31787 C 181.81627,740.49064 181.21479,748.54849 180.57128,748.15079 C 179.56916,747.53144 180.18502,749.56538 181.35339,750.73373 C 182.37341,751.75375 183.09847,751.97659 185.39737,751.97659 C 188.06175,751.97659 188.36094,751.83879 191.52609,749.1537 z M 157.8311,736.54684 C 157.8311,736.20496 156.52092,734.79394 154.91958,733.41124 C 151.50061,730.45906 150.0522,729.53584 151.54639,731.26116 C 152.12795,731.93268 153.13392,733.39353 153.78189,734.5075 C 155.64677,737.71358 156.35552,738.39305 157.14843,737.73499 C 157.5239,737.42338 157.8311,736.88871 157.8311,736.54684 z M 193.57731,729.57304 C 195.37644,727.67895 195.69654,726.98901 195.99333,724.36576 C 196.1815,722.70262 196.1149,720.2027 195.84534,718.81038 C 194.81336,713.48001 191.79595,706.49103 189.72435,704.63282 C 187.82625,702.93024 184.6117,697.84623 182.82195,693.71624 C 181.44834,690.54652 181.1213,689.13251 181.11319,686.32802 C 181.09603,680.39244 180.25388,676.19607 178.45175,673.06624 C 177.07082,670.66793 176.3265,669.96988 173.88447,668.78293 C 166.81968,665.34907 160.91237,667.00033 158.01686,673.21839 C 157.18536,675.00404 156.84445,676.60748 156.88208,678.55577 C 156.91167,680.08748 157.04789,680.88498 157.1848,680.32799 C 157.59536,678.65772 158.37301,678.04942 160.09774,678.04942 C 161.91549,678.04942 164.36347,679.94051 164.49078,681.4431 C 164.5332,681.94376 164.59057,682.69214 164.61828,683.10616 C 164.64598,683.52018 165.06619,683.93549 165.55208,684.02906 C 166.17005,684.14807 166.3461,683.96619 166.13795,683.42376 C 165.6651,682.19154 166.88262,679.21972 168.21905,678.34406 C 169.77934,677.32172 172.47304,677.31665 173.92454,678.33333 C 176.11219,679.86562 176.60833,681.67932 176.42868,687.48754 C 176.26645,692.73259 176.30506,692.95384 177.95213,696.21913 C 178.88156,698.06173 180.00089,700.79803 180.43952,702.29979 C 180.87815,703.80156 181.90185,706.07859 182.71442,707.35987 C 185.33206,711.48746 186.20057,715.52635 186.15424,723.35626 C 186.1186,729.37995 186.23419,730.4294 187.03019,731.30896 C 188.48135,732.91249 191.05296,732.23064 193.57731,729.57304 z M 193.10686,727.3342 C 192.92119,727.14854 192.76929,726.76118 192.76929,726.4734 C 192.76929,726.15612 193.00513,726.18602 193.36847,726.54936 C 193.69802,726.87891 193.84992,727.26627 193.70604,727.41015 C 193.56215,727.55404 193.29251,727.51986 193.10686,727.3342 z M 194.58352,726.22067 C 194.36539,725.86775 194.32368,725.44225 194.49081,725.27511 C 194.94398,724.82195 195.43807,725.48844 195.19331,726.22272 C 195.0218,726.73726 194.90253,726.73686 194.58352,726.22067 z M 178.31092,695.04143 C 177.35185,693.57772 177.51494,691.48135 178.59147,691.43501 C 180.86924,691.33696 182.91254,693.69502 182.25614,695.66421 C 181.87847,696.79722 179.1825,696.37165 178.31092,695.04143 z M 180.20335,693.63657 C 179.84002,693.27323 179.60417,693.24334 179.60417,693.56062 C 179.60417,694.23649 180.20299,694.8353 180.54092,694.49737 C 180.68481,694.35348 180.5329,693.96612 180.20335,693.63657 z M 171.84013,673.66104 C 171.65447,673.47538 171.50256,672.45002 171.50256,671.38247 C 171.50256,669.51514 171.56749,669.44146 173.21279,669.44146 C 174.15341,669.44146 175.15031,669.72628 175.4281,670.07439 C 176.12823,670.95174 175.88417,672.97267 175.01139,673.52499 C 174.15947,674.06412 172.32204,674.14295 171.84013,673.66104 z M 174.03432,671.43697 C 174.03432,671.17492 173.80646,670.96051 173.52797,670.96051 C 173.24947,670.96051 173.02161,671.31574 173.02161,671.74992 C 173.02161,672.18409 173.24947,672.3985 173.52797,672.22638 C 173.80646,672.05427 174.03432,671.69903 174.03432,671.43697 z M 148.83292,727.4735 C 147.38552,725.825 147.33527,725.60686 147.57909,722.03023 C 147.84036,718.19769 148.32199,716.66113 151.44513,709.69632 C 152.44418,707.46838 153.26436,705.21786 153.26776,704.69515 C 153.27116,704.17245 154.18537,702.09368 155.29934,700.07566 C 157.79033,695.5631 157.96681,694.51183 155.56331,698.50324 C 154.59452,700.11208 152.91891,702.49118 151.83973,703.79014 C 149.4523,706.66378 149.08331,707.34981 147.39074,712.06177 C 146.65763,714.10269 145.28893,717.30488 144.3492,719.17776 C 142.23873,723.38386 142.09391,725.10408 143.87901,724.76284 C 144.83286,724.5805 145.67643,725.05935 147.55005,726.84673 C 150.44324,729.60672 150.90324,729.83146 148.83292,727.4735 z M 145.17233,722.52387 C 145.17233,720.68011 145.39337,720.74692 145.87027,722.73485 C 146.06859,723.56149 145.99465,724.12731 145.68833,724.12731 C 145.40453,724.12731 145.17233,723.40576 145.17233,722.52387 z M 157.67379,692.35382 C 157.54643,691.86646 157.44222,692.26521 157.44222,693.23993 C 157.44222,694.21466 157.54643,694.61341 157.67379,694.12604 C 157.80115,693.63868 157.80115,692.84118 157.67379,692.35382 z M 157.12432,687.30086 C 156.95606,687.13261 156.83639,687.43167 156.85837,687.96545 C 156.88267,688.55532 157.00265,688.6753 157.16429,688.27137 C 157.31056,687.90584 157.29257,687.46912 157.12432,687.30086 z M 160.42466,684.29019 C 159.98335,683.53128 159.88454,683.50941 159.8719,684.16782 C 159.85552,685.02055 160.38797,685.78834 160.74683,685.42948 C 160.86519,685.31112 160.72021,684.79844 160.42466,684.29019 z M 172.20627,685.22864 C 172.34768,684.99983 172.01934,684.43241 171.47662,683.96772 C 170.55037,683.17464 170.48986,683.17946 170.48986,684.04619 C 170.48986,685.44898 171.59819,686.21253 172.20627,685.22864 z M 162.69417,682.74371 C 162.52592,682.57545 162.40624,682.87451 162.42823,683.40829 C 162.45252,683.99816 162.57251,684.11814 162.73415,683.71421 C 162.88042,683.34869 162.86243,682.91196 162.69417,682.74371 z M 173.49396,681.3045 C 172.85859,680.62817 171.88372,680.07482 171.32758,680.07482 C 170.22912,680.07482 168.46446,681.43117 168.46446,682.27548 C 168.46446,682.56403 168.74928,682.44388 169.0974,682.00846 C 170.52229,680.22624 173.97684,680.92493 174.07429,683.01504 C 174.10147,683.59796 174.19989,683.65823 174.38173,683.20331 C 174.52883,682.83529 174.12934,681.98082 173.49396,681.3045 z M 160.55092,681.08752 C 160.89307,681.08752 161.49242,681.37234 161.8828,681.72046 C 162.48664,682.25891 162.4925,682.22112 161.92207,681.46728 C 161.55328,680.97992 160.86931,680.58117 160.40212,680.58117 C 159.49476,680.58117 158.33745,681.50968 158.33745,682.23766 C 158.33745,682.48034 158.69551,682.32084 159.13314,681.88321 C 159.57077,681.44558 160.20878,681.08752 160.55092,681.08752 z" />
<path
style="fill:none;stroke:#000000;stroke-width:0.375;stroke-miterlimit:4;stroke-opacity:1"
d="M 236.32717,752.97267 C 235.1064,752.41877 232.82782,751.60995 231.26366,751.17528 C 222.07806,748.62269 219.23852,747.74764 218.67249,747.29511 C 217.8444,746.63307 217.8794,744.12576 218.75172,741.6194 C 219.22202,740.26812 219.36217,738.35548 219.18273,735.7375 C 218.94392,732.25328 219.02691,731.74792 219.99724,730.77759 C 220.78079,729.99403 221.70508,729.69717 223.36118,729.69717 C 226.48469,729.69717 227.40703,728.56172 227.40703,724.71655 C 227.40703,722.2772 227.75295,721.13146 229.50392,717.77121 C 230.65721,715.55796 231.93932,712.60784 232.35305,711.21538 C 233.63898,706.88745 234.64437,704.91745 236.95554,702.19715 C 238.18348,700.75184 239.87158,698.48451 240.70688,697.15865 L 242.22561,694.74799 L 241.95881,684.91464 C 241.70638,675.6114 241.75217,674.93304 242.8082,672.33116 C 244.83692,667.33272 248.6108,664.8843 254.28646,664.8843 C 260.76182,664.8843 265.92238,668.01445 268.34424,673.41108 C 269.45008,675.87522 269.74807,677.51421 270.09699,683.05166 C 270.51391,689.66817 270.53738,689.76284 272.93243,694.49257 C 274.2607,697.11563 276.47155,700.54632 277.84543,702.11634 C 280.68571,705.36208 281.66156,707.12255 283.57291,712.44893 C 285.10496,716.71835 285.7359,722.78052 284.98415,726.00841 C 284.60448,727.63861 284.64902,728.35614 285.17271,729.04651 C 285.54979,729.54362 285.86556,730.58497 285.87443,731.36062 C 285.89635,733.28097 287.14109,735.03365 289.76517,736.83907 C 291.49983,738.03254 291.96673,738.662 291.96673,739.80709 C 291.96673,742.27057 291.4851,742.8038 287.02597,745.27719 C 284.65075,746.59467 281.65769,748.67126 280.37474,749.89184 C 276.94173,753.15791 275.34765,753.99794 272.57865,754.0001 C 269.86063,754.00222 266.74164,752.6329 265.7588,751.006 C 265.15374,750.00444 264.69303,749.95119 256.63327,749.95119 L 248.14497,749.95119 L 246.31216,751.46194 C 242.93308,754.24727 240.08579,754.67807 236.32717,752.97267 z M 245.08623,749.76041 L 247.32514,747.92579 L 256.86058,747.92136 L 266.39603,747.91694 L 266.46623,743.83526 L 266.53644,739.75359 L 265.45353,740.73902 C 261.76925,744.09168 255.77943,746.17476 250.98279,745.77151 C 249.43433,745.64133 247.74236,745.35475 247.22286,745.13466 C 246.4381,744.80219 246.33301,744.90683 246.60164,745.75322 C 246.81205,746.41614 246.55783,747.19451 245.87379,747.9818 C 244.89294,749.11071 244.84199,749.12056 245.11231,748.12909 C 245.27165,747.54468 245.0675,746.42173 244.65864,745.63365 C 244.24978,744.84556 244.03426,744.00821 244.17972,743.77286 C 244.6112,743.07471 243.26207,740.53272 242.19502,740.03336 C 241.65165,739.77907 239.96592,737.52029 238.44896,735.01385 C 234.93393,729.20605 232.43974,726.62449 230.69831,726.9917 C 230.00208,727.13851 228.97356,727.97583 228.41271,728.85241 C 227.57855,730.15617 226.94736,730.50994 224.94416,730.79648 C 223.59731,730.98914 222.17294,731.27049 221.7789,731.42169 C 220.57082,731.88528 220.11389,733.9713 220.53718,737.09053 C 220.82886,739.23994 220.72891,740.78406 220.17116,742.74466 C 219.6425,744.60304 219.56681,745.60479 219.92778,745.96576 C 220.21593,746.25391 223.51353,747.26122 227.25579,748.20425 C 230.99804,749.14727 235.06943,750.38938 236.30332,750.9645 C 239.52258,752.465 242.24033,752.09241 245.08623,749.76041 z M 240.31897,749.74803 C 240.31897,749.63629 241.11647,749.07433 242.0912,748.49923 C 243.47905,747.68038 243.86343,747.61076 243.86343,748.17823 C 243.86343,748.57677 243.42269,749.13874 242.88401,749.42703 C 241.91855,749.94372 240.31897,750.1439 240.31897,749.74803 z M 278.57112,749.1537 C 280.4013,747.60112 283.42349,745.52786 285.28709,744.54647 C 288.98083,742.60131 290.95403,741.02293 290.95403,740.01342 C 290.95403,739.6576 289.96333,738.68486 288.75247,737.85177 C 286.27442,736.14683 284.87783,734.29704 284.87783,732.7198 C 284.87783,732.13471 284.62557,731.18466 284.31727,730.60858 C 283.78227,729.60894 283.66949,729.66242 281.8447,731.78116 C 279.93993,733.99276 279.91987,734.00115 276.53749,734.00115 C 273.58024,734.00115 273.01743,733.84696 272.17432,732.80577 C 271.64194,732.1483 271.20636,730.86602 271.20636,729.95625 C 271.20636,726.50121 268.47528,726.93894 268.08403,730.4567 C 267.99111,731.29217 267.68722,731.86182 267.40873,731.72257 C 266.80123,731.41882 267.05189,728.17357 267.7486,727.3224 C 268.01986,726.991 268.72259,726.64922 269.31023,726.56288 C 272.48647,726.09619 271.2474,713.57105 267.47004,707.96126 C 266.79994,706.9661 265.9736,705.24044 265.63373,704.12647 C 265.29386,703.0125 264.19785,700.50606 263.19816,698.55661 C 261.76251,695.75701 261.3499,694.32051 261.23471,691.72088 C 261.1545,689.91068 261.05379,688.08781 261.01092,687.67008 C 260.96804,687.25234 261.09433,686.45483 261.29156,685.89785 C 261.48879,685.34086 261.30157,685.48317 260.87552,686.21408 C 259.50069,688.57266 256.85858,688.56972 255.9167,686.20855 C 255.61427,685.45041 255.2884,685.15549 255.15376,685.51809 C 254.84811,686.34125 251.13226,686.34544 250.62408,685.52319 C 250.3623,685.09963 250.14013,685.30557 249.94123,686.15613 C 249.53159,687.90789 247.29957,688.15637 246.19096,686.57362 C 245.7463,685.93877 245.38973,685.64093 245.39858,685.91177 C 245.40744,686.18261 245.73462,686.82653 246.12565,687.34271 C 246.64376,688.02663 246.70502,688.62736 246.35148,689.55724 C 245.85057,690.87475 246.22225,691.41025 248.59054,692.78316 C 249.88915,693.53597 249.26061,693.96049 247.91423,693.23993 C 245.89081,692.15703 246.35145,693.07031 248.79098,694.97823 C 251.66815,697.22841 253.14916,697.19411 257.06175,694.78666 C 258.44432,693.93596 259.79994,693.23993 260.07425,693.23993 C 261.18055,693.23993 260.41677,694.09466 257.69877,695.89827 C 253.59704,698.6201 249.65452,698.50173 247.29255,695.58583 C 246.42093,694.50979 246.41766,694.51182 246.40644,696.13402 C 246.40025,697.02953 245.61184,699.19418 244.65444,700.94435 C 243.69703,702.69451 242.82282,705.06437 242.71176,706.2107 C 242.6007,707.35702 242.00475,709.00425 241.38742,709.87121 C 238.89394,713.37299 237.13259,718.17623 236.88993,722.13604 L 236.65511,725.9678 L 241.27808,729.65443 C 243.82072,731.68208 246.2401,733.82511 246.65447,734.41672 C 247.80861,736.06449 247.58474,738.10015 246.09776,739.47896 L 244.78764,740.69377 L 246.18003,741.78903 C 248.04086,743.25276 249.31927,743.51886 253.36481,743.28456 C 257.78465,743.02858 260.94685,741.49694 264.95184,737.67229 L 268.06481,734.69949 L 268.42493,737.31787 C 268.8613,740.49064 268.25982,748.54849 267.61631,748.15079 C 266.61419,747.53144 267.23005,749.56538 268.39842,750.73373 C 269.41844,751.75375 270.1435,751.97659 272.4424,751.97659 C 275.10678,751.97659 275.40597,751.83879 278.57112,749.1537 z M 244.87613,736.54684 C 244.87613,736.20496 243.56595,734.79394 241.96461,733.41124 C 238.54564,730.45906 237.09723,729.53584 238.59142,731.26116 C 239.17298,731.93268 240.17895,733.39353 240.82692,734.5075 C 242.6918,737.71358 243.40055,738.39305 244.19346,737.73499 C 244.56893,737.42338 244.87613,736.88871 244.87613,736.54684 z M 280.62234,729.57304 C 282.42147,727.67895 282.74157,726.98901 283.03836,724.36576 C 283.22653,722.70262 283.15993,720.2027 282.89037,718.81038 C 281.85839,713.48001 278.84098,706.49103 276.76938,704.63282 C 274.87128,702.93024 271.65673,697.84623 269.86698,693.71624 C 268.49337,690.54652 268.16633,689.13251 268.15822,686.32802 C 268.14106,680.39244 267.29891,676.19607 265.49678,673.06624 C 264.11585,670.66793 263.37153,669.96988 260.9295,668.78293 C 253.86471,665.34907 247.9574,667.00033 245.06189,673.21839 C 244.23039,675.00404 243.88948,676.60748 243.92711,678.55577 C 243.9567,680.08748 244.09292,680.88498 244.22983,680.32799 C 244.64039,678.65772 245.41804,678.04942 247.14277,678.04942 C 248.96052,678.04942 251.4085,679.94051 251.53581,681.4431 C 251.57823,681.94376 251.6356,682.69214 251.66331,683.10616 C 251.69101,683.52018 252.11122,683.93549 252.59711,684.02906 C 253.21508,684.14807 253.39113,683.96619 253.18298,683.42376 C 252.71013,682.19154 253.92765,679.21972 255.26408,678.34406 C 256.82437,677.32172 259.51807,677.31665 260.96957,678.33333 C 263.15722,679.86562 263.65336,681.67932 263.47371,687.48754 C 263.31148,692.73259 263.35009,692.95384 264.99716,696.21913 C 265.92659,698.06173 267.04592,700.79803 267.48455,702.29979 C 267.92318,703.80156 268.94688,706.07859 269.75945,707.35987 C 272.37709,711.48746 273.2456,715.52635 273.19927,723.35626 C 273.16363,729.37995 273.27922,730.4294 274.07522,731.30896 C 275.52638,732.91249 278.09799,732.23064 280.62234,729.57304 z M 280.15189,727.3342 C 279.96622,727.14854 279.81432,726.76118 279.81432,726.4734 C 279.81432,726.15612 280.05016,726.18602 280.4135,726.54936 C 280.74305,726.87891 280.89495,727.26627 280.75107,727.41015 C 280.60718,727.55404 280.33754,727.51986 280.15189,727.3342 z M 281.62855,726.22067 C 281.41042,725.86775 281.36871,725.44225 281.53584,725.27511 C 281.98901,724.82195 282.4831,725.48844 282.23834,726.22272 C 282.06683,726.73726 281.94756,726.73686 281.62855,726.22067 z M 265.35595,695.04143 C 264.39688,693.57772 264.55997,691.48135 265.6365,691.43501 C 267.91427,691.33696 269.95757,693.69502 269.30117,695.66421 C 268.9235,696.79722 266.22753,696.37165 265.35595,695.04143 z M 267.24838,693.63657 C 266.88505,693.27323 266.6492,693.24334 266.6492,693.56062 C 266.6492,694.23649 267.24802,694.8353 267.58595,694.49737 C 267.72984,694.35348 267.57793,693.96612 267.24838,693.63657 z M 258.88516,673.66104 C 258.6995,673.47538 258.54759,672.45002 258.54759,671.38247 C 258.54759,669.51514 258.61252,669.44146 260.25782,669.44146 C 261.19844,669.44146 262.19534,669.72628 262.47313,670.07439 C 263.17326,670.95174 262.9292,672.97267 262.05642,673.52499 C 261.2045,674.06412 259.36707,674.14295 258.88516,673.66104 z M 261.07935,671.43697 C 261.07935,671.17492 260.85149,670.96051 260.573,670.96051 C 260.2945,670.96051 260.06664,671.31574 260.06664,671.74992 C 260.06664,672.18409 260.2945,672.3985 260.573,672.22638 C 260.85149,672.05427 261.07935,671.69903 261.07935,671.43697 z M 235.87795,727.4735 C 234.43055,725.825 234.3803,725.60686 234.62412,722.03023 C 234.88539,718.19769 235.36702,716.66113 238.49016,709.69632 C 239.48921,707.46838 240.30939,705.21786 240.31279,704.69515 C 240.31619,704.17245 241.2304,702.09368 242.34437,700.07566 C 244.83536,695.5631 245.01184,694.51183 242.60834,698.50324 C 241.63955,700.11208 239.96394,702.49118 238.88476,703.79014 C 236.49733,706.66378 236.12834,707.34981 234.43577,712.06177 C 233.70266,714.10269 232.33396,717.30488 231.39423,719.17776 C 229.28376,723.38386 229.13894,725.10408 230.92404,724.76284 C 231.87789,724.5805 232.72146,725.05935 234.59508,726.84673 C 237.48827,729.60672 237.94827,729.83146 235.87795,727.4735 z M 232.21736,722.52387 C 232.21736,720.68011 232.4384,720.74692 232.9153,722.73485 C 233.11362,723.56149 233.03968,724.12731 232.73336,724.12731 C 232.44956,724.12731 232.21736,723.40576 232.21736,722.52387 z M 244.71882,692.35382 C 244.59146,691.86646 244.48725,692.26521 244.48725,693.23993 C 244.48725,694.21466 244.59146,694.61341 244.71882,694.12604 C 244.84618,693.63868 244.84618,692.84118 244.71882,692.35382 z M 244.16935,687.30086 C 244.00109,687.13261 243.88142,687.43167 243.9034,687.96545 C 243.9277,688.55532 244.04768,688.6753 244.20932,688.27137 C 244.35559,687.90584 244.3376,687.46912 244.16935,687.30086 z M 247.46969,684.29019 C 247.02838,683.53128 246.92957,683.50941 246.91693,684.16782 C 246.90055,685.02055 247.433,685.78834 247.79186,685.42948 C 247.91022,685.31112 247.76524,684.79844 247.46969,684.29019 z M 259.2513,685.22864 C 259.39271,684.99983 259.06437,684.43241 258.52165,683.96772 C 257.5954,683.17464 257.53489,683.17946 257.53489,684.04619 C 257.53489,685.44898 258.64322,686.21253 259.2513,685.22864 z M 249.7392,682.74371 C 249.57095,682.57545 249.45127,682.87451 249.47326,683.40829 C 249.49755,683.99816 249.61754,684.11814 249.77918,683.71421 C 249.92545,683.34869 249.90746,682.91196 249.7392,682.74371 z M 260.53899,681.3045 C 259.90362,680.62817 258.92875,680.07482 258.37261,680.07482 C 257.27415,680.07482 255.50949,681.43117 255.50949,682.27548 C 255.50949,682.56403 255.79431,682.44388 256.14243,682.00846 C 257.56732,680.22624 261.02187,680.92493 261.11932,683.01504 C 261.1465,683.59796 261.24492,683.65823 261.42676,683.20331 C 261.57386,682.83529 261.17437,681.98082 260.53899,681.3045 z M 247.59595,681.08752 C 247.9381,681.08752 248.53745,681.37234 248.92783,681.72046 C 249.53167,682.25891 249.53753,682.22112 248.9671,681.46728 C 248.59831,680.97992 247.91434,680.58117 247.44715,680.58117 C 246.53979,680.58117 245.38248,681.50968 245.38248,682.23766 C 245.38248,682.48034 245.74054,682.32084 246.17817,681.88321 C 246.6158,681.44558 247.25381,681.08752 247.59595,681.08752 z" />
<circle
cx="0"
cy="0"
r="2"
transform="translate(15,786.20821)"
id="circle177"
sodipodi:cx="0"
sodipodi:cy="0"
sodipodi:rx="2"
sodipodi:ry="2" />
<rect
id="d0e96"
width="258"
height="1000px"
x="20"
y="876.2082053000001"
style="display:none" />
<flowRoot
style="font-size:8.39999962px;font-style:normal;font-weight:normal;line-height:133.00000429%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Bitstream Vera Serif"
id="flowRoot180"
transform="translate(0,-96)">
<flowRegion
id="flowRegion182">
<use
xlink:href="#d0e96"
y="0"
x="0"
id="use184"
width="320"
height="3962.5" />
</flowRegion>
<flowDiv
xml:space="preserve"
id="flowDiv186">顏色量化</flowDiv> </flowRoot>
<rect
id="d0e100"
width="288"
height="1000px"
x="10"
y="893.6853534000002"
style="display:none" />
<flowRoot
style="font-size:8.39999962px;font-style:normal;font-weight:normal;line-height:133.00000429%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Bitstream Vera Serif"
id="flowRoot189"
transform="translate(0,-96)">
<flowRegion
id="flowRegion191">
<use
xlink:href="#d0e100"
y="0"
x="0"
id="use193"
width="320"
height="3962.5" />
</flowRegion>
<flowDiv
xml:space="preserve"
id="flowDiv195">這個濾鏡的效果會產生一個不同於其他兩種濾鏡的中間影像,但是非常有用。這個濾鏡會尋找顏色變化的邊緣即使在同等亮度和對比下,而不是顯示亮度或對比的等斜線。如果中間點陣圖是彩色的,顏色數目的設定值會決定有多少種輸出顏色。還會決定黑色/白色是否有偶數或奇數索引。</flowDiv> </flowRoot>
<text
sodipodi:insensitive="true"
sodipodi:linespacing="100%"
y="952.64618"
x="79.581543"
style="font-size:6px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:100%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:block;font-family:Bitstream Vera Sans"
xml:space="preserve"><tspan
y="952.64618"
x="79.581543"
role="line">原始圖像</tspan></text>
<text
sodipodi:insensitive="true"
sodipodi:linespacing="100%"
y="952.87128"
x="166.37865"
style="font-size:6px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:100%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:block;font-family:Bitstream Vera Sans"
xml:space="preserve"><tspan
role="line"
y="952.87128"
x="166.37865">量化 (12 種顏色)</tspan><tspan
role="line"
y="958.87128"
x="166.37865">填色,無邊框</tspan></text>
<text
sodipodi:insensitive="true"
sodipodi:linespacing="100%"
y="952.87128"
x="255.12865"
style="font-size:6px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:100%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:block;font-family:Bitstream Vera Sans"
xml:space="preserve"><tspan
role="line"
y="952.87128"
x="255.12865">量化 (12 種顏色)</tspan><tspan
role="line"
y="958.87128"
x="255.12865">邊框,無填色</tspan></text>
<image
y="855.49249"
x="41.098881"
height="91.143097"
width="76.965286"
sodipodi:absref="/tux.png"
xlink:href="tux.png" />
<path
d="M 148.36089,944.2775 C 147.29141,943.8339 146.60816,943.2594 146.79349,942.9595 C 146.97761,942.6616 146.88096,942.5769 146.57359,942.7669 C 146.27196,942.9533 143.49866,942.4189 140.4107,941.5792 C 137.32275,940.7396 134.62915,940.0382 134.42493,940.0205 C 134.2207,940.0029 134.54705,939.7895 135.15014,939.5463 C 136.37211,939.0536 141.49529,939.6571 145.99979,940.8243 C 150.2681,941.9304 151.76687,941.7917 153.64085,940.1173 C 155.04243,938.865 155.28013,938.3002 155.35142,936.0533 C 155.39696,934.6181 155.23771,933.3223 154.99752,933.1739 C 154.75733,933.0254 154.56081,933.9253 154.56081,935.1736 C 154.56081,938.5034 152.72009,940.559 149.73843,940.559 C 148.5281,940.559 146.90789,940.3195 146.13798,940.0268 C 145.36806,939.734 142.10899,939.0451 138.8956,938.4957 C 132.01844,937.32 131.35182,936.8793 132.1947,934.0661 C 132.9295,931.6135 132.97182,929.2457 132.27312,929.6776 C 131.99009,929.8525 131.87343,930.1815 132.01388,930.4088 C 132.27891,930.8376 131.56544,933.4369 130.67064,935.3023 C 129.85609,937.0005 130.36859,938.1366 132.28138,938.8731 C 133.88727,939.4914 133.9113,939.5274 132.53739,939.257 C 129.60847,938.6804 129.15289,937.446 130.49515,933.7233 C 131.01397,932.2843 131.13892,930.581 130.92668,927.8408 C 130.65685,924.3571 130.73244,923.8793 131.70783,922.9039 C 132.46767,922.1441 133.42554,921.8217 134.93972,921.8163 C 137.35121,921.8076 137.80591,921.5868 138.99579,919.8469 C 139.62493,918.927 139.69926,918.3879 139.29986,917.6416 C 138.53654,916.2154 139.20995,913.4169 141.15681,909.9248 C 142.08837,908.2538 143.42283,905.1279 144.12229,902.9782 C 145.70412,898.1167 146.09893,897.3713 148.75721,894.2279 C 149.93477,892.8355 151.59451,890.5911 152.44551,889.2405 L 153.99279,886.7848 L 153.69229,876.98602 C 153.352,865.88992 153.70724,864.08922 156.94316,860.50742 C 159.34877,857.84472 162.29,856.81172 166.58497,857.12132 C 172.06396,857.51612 176.08349,860.01512 178.72748,864.67052 C 180.11655,867.11622 180.37778,868.48892 180.82929,875.71452 C 181.20364,881.70542 181.26759,881.95452 183.62861,886.6171 C 184.95754,889.2414 187.16893,892.6732 188.54281,894.2432 C 191.40389,897.5127 192.68692,899.838 194.38572,904.8327 C 195.83649,909.0981 196.33169,914.0882 195.64477,917.52 C 195.24461,919.5192 195.29051,920.2877 195.86296,921.1733 C 196.26168,921.7901 196.58791,922.8804 196.58791,923.5962 C 196.58791,925.4027 197.87391,927.1849 200.46255,928.9659 C 204.13496,931.4926 203.53241,933.166 197.80104,936.3574 C 195.46855,937.6562 192.53354,939.7166 191.27881,940.9362 C 190.02409,942.1557 188.78429,943.0217 188.5237,942.8607 C 188.26312,942.6996 187.88504,942.8347 187.68352,943.1607 C 187.45469,943.531 187.53661,943.6179 187.90171,943.3923 C 188.22323,943.1936 188.48629,943.1525 188.48629,943.301 C 188.48629,943.9242 185.36553,945.1161 183.73407,945.1161 C 181.5947,945.1161 179.20656,944.2744 179.58924,943.6552 C 179.74225,943.4076 179.47114,943.2363 178.98677,943.2745 C 178.47432,943.3149 178.10341,942.9884 178.09965,942.4935 C 178.0961,942.0258 177.88867,941.4562 177.63871,941.2277 C 177.3756,940.9871 177.35075,941.1 177.57968,941.4956 C 177.89713,942.0443 177.76989,942.0692 176.93462,941.6222 C 176.29737,941.2812 172.6224,941.0653 167.45231,941.0653 L 159.01052,941.0653 L 157.11172,942.5692 C 153.75016,945.2316 151.64959,945.6417 148.36089,944.2775 z M 152.40882,944.2608 C 151.92145,944.1334 151.12395,944.1334 150.63659,944.2608 C 150.14923,944.3881 150.54798,944.4923 151.5227,944.4923 C 152.49743,944.4923 152.89618,944.3881 152.40882,944.2608 z M 184.56208,944.2524 C 183.93547,944.1318 182.91011,944.1318 182.2835,944.2524 C 181.65689,944.3731 182.16957,944.4719 183.42279,944.4719 C 184.67601,944.4719 185.18869,944.3731 184.56208,944.2524 z M 157.78809,941.4233 C 157.94942,941.5846 158.22509,941.3422 158.40069,940.8846 C 158.67991,940.157 159.82466,940.0526 167.52692,940.0526 C 172.37075,940.0526 176.33388,940.2564 176.33388,940.5054 C 176.33388,940.7545 176.84656,940.9254 177.47317,940.8852 C 178.57567,940.8145 178.61429,940.6364 178.66924,935.3689 C 178.70047,932.3751 178.55748,929.9256 178.35148,929.9256 C 178.14548,929.9256 177.69536,930.2649 177.35121,930.6796 C 177.00706,931.0943 176.54837,931.3241 176.33189,931.1903 C 176.11542,931.0565 175.56158,931.522 175.10115,932.2247 C 174.64071,932.9274 174.04614,933.3677 173.77988,933.2032 C 173.51362,933.0386 173.29578,933.1587 173.29578,933.4701 C 173.29578,933.7814 173.0918,933.9101 172.84248,933.756 C 172.59317,933.602 172.253,933.8308 172.08653,934.2646 C 171.92007,934.6984 171.55441,934.9115 171.27395,934.7382 C 170.99349,934.5648 170.76402,934.6887 170.76402,935.0134 C 170.76402,935.3381 170.42224,935.4727 170.0045,935.3124 C 169.58676,935.1521 169.24497,935.257 169.24497,935.5455 C 169.24497,935.8397 168.80013,935.9289 168.23227,935.7487 C 167.67529,935.5719 167.21957,935.6135 167.21957,935.8411 C 167.21957,936.0688 165.39671,936.255 163.16877,936.255 C 160.94082,936.255 159.11796,936.0913 159.11796,935.8911 C 159.11796,935.691 158.7388,935.6728 158.27537,935.8506 C 157.6701,936.0829 157.54734,935.9886 157.8395,935.5158 C 158.11302,935.0733 158.01585,934.9358 157.5428,935.0961 C 157.13627,935.2338 156.82582,936.0629 156.80726,937.0606 C 156.75272,939.9911 156.62634,940.3808 155.30019,941.7069 C 154.39389,942.6132 154.20701,943.0681 154.66725,943.2474 C 155.02645,943.3874 155.80958,942.9683 156.40754,942.316 C 157.0055,941.6637 157.62675,941.262 157.78809,941.4233 z M 155.57351,942.3312 C 155.9202,941.9135 156.31779,941.5717 156.45703,941.5717 C 156.59628,941.5717 156.42655,941.9135 156.07986,942.3312 C 155.73316,942.749 155.33558,943.0907 155.19633,943.0907 C 155.05709,943.0907 155.22681,942.749 155.57351,942.3312 z M 187.90462,941.056 C 189.11642,940.5061 190.2778,940.1613 190.48548,940.2896 C 190.69316,940.418 191.51022,939.8475 192.30117,939.0219 C 194.10399,937.1402 193.76341,937.1429 190.00535,939.0399 C 186.59409,940.7619 183.46315,941.0334 182.15067,939.7209 C 180.75127,938.3215 180.38468,936.6554 180.38468,931.6948 C 180.38468,929.0538 180.15843,926.8075 179.87476,926.6321 C 179.11261,926.1611 178.66311,927.8056 179.33328,928.6131 C 179.6942,929.048 179.87602,931.045 179.81332,933.8856 C 179.73394,937.4827 179.89844,938.742 180.58442,939.789 C 182.16094,942.195 184.50166,942.6002 187.90462,941.056 z M 168.95832,934.7414 C 170.05387,934.3511 171.1714,934.1684 171.44172,934.3355 C 171.71203,934.5026 171.78075,934.3926 171.59443,934.0911 C 171.25186,933.5368 173.1128,932.6403 174.0553,932.9056 C 174.3338,932.984 174.39221,932.8787 174.18511,932.6716 C 173.86277,932.3492 175.59727,930.7342 176.33388,930.6708 C 176.95195,930.6176 178.86563,929.1301 178.86563,928.7029 C 178.86563,928.4428 178.24592,928.7824 177.48849,929.4576 C 176.73106,930.1328 176.43684,930.2627 176.83467,929.7464 C 177.23249,929.2301 177.73218,927.6351 177.94509,926.2019 C 178.96263,919.3526 179.07409,919.0912 181.14031,918.7076 C 182.27192,918.4976 182.76246,916.8832 182.85653,913.0596 C 182.89297,911.5783 183.11475,910.7471 183.42279,910.9375 C 184.04765,911.3237 184.10127,915.7478 183.48109,915.7478 C 183.23467,915.7478 183.14169,917.2859 183.27447,919.1657 C 183.4763,922.023 183.73017,922.7787 184.82247,923.7736 C 185.91842,924.7718 186.46182,924.9104 188.19339,924.6336 C 189.39065,924.4421 190.84276,923.7429 191.65058,922.969 C 192.41666,922.2351 193.04345,921.8653 193.04345,922.1474 C 193.04345,922.9221 190.9479,924.7253 189.33944,925.3347 C 186.10229,926.5613 183.65487,925.4098 182.92771,922.3182 L 182.51375,920.5581 L 182.46192,922.4902 C 182.39223,925.0879 183.07314,926.1872 185.18318,926.8836 C 187.22114,927.5562 188.6259,927.2386 190.76487,925.6217 C 192.21536,924.5252 194.8278,920.781 193.62269,921.5258 C 192.89426,921.976 192.89449,921.6923 193.62384,920.0915 C 193.94306,919.3909 194.39535,918.9358 194.62892,919.0801 C 194.8625,919.2245 194.91463,918.6477 194.74476,917.7984 C 194.5749,916.9491 194.63529,916.2542 194.87897,916.2542 C 195.12266,916.2542 195.32203,915.0009 195.32203,913.4692 C 195.32203,911.9375 195.12266,910.6843 194.87897,910.6843 C 194.63529,910.6843 194.57263,910.0007 194.73973,909.1653 C 194.92754,908.2262 194.83436,907.6462 194.49567,907.6462 C 194.19435,907.6462 194.07896,907.3044 194.23927,906.8867 C 194.39957,906.4689 194.28564,906.1272 193.98609,906.1272 C 193.68653,906.1272 193.57261,905.7854 193.73291,905.3676 C 193.89321,904.9499 193.77928,904.6081 193.47974,904.6081 C 193.18018,904.6081 193.06625,904.2663 193.22656,903.8486 C 193.38686,903.4308 193.27293,903.0891 192.97339,903.0891 C 192.67383,903.0891 192.5599,902.7473 192.72021,902.3295 C 192.88051,901.9118 192.77751,901.57 192.49132,901.57 C 192.20513,901.57 192.1118,901.3421 192.28392,901.0636 C 192.45604,900.7852 192.34211,900.5573 192.03075,900.5573 C 191.71938,900.5573 191.60545,900.3294 191.77757,900.0509 C 191.94969,899.7725 191.83576,899.5446 191.5244,899.5446 C 191.21303,899.5446 191.0991,899.3167 191.27122,899.0382 C 191.44334,898.7598 191.32941,898.5319 191.01805,898.5319 C 190.70668,898.5319 190.59375,898.3024 190.76708,898.022 C 190.94041,897.7415 190.72732,897.3758 190.29352,897.2094 C 189.85973,897.0429 189.61669,896.7257 189.75344,896.5044 C 189.89018,896.2832 189.14833,895.3505 188.10489,894.4318 C 187.06144,893.5131 186.26679,892.5723 186.339,892.3413 C 186.41121,892.1102 186.12769,891.7897 185.70897,891.629 C 185.29025,891.4683 185.07372,891.1329 185.22781,890.8836 C 185.38189,890.6343 185.2532,890.4303 184.94184,890.4303 C 184.63047,890.4303 184.51754,890.2008 184.69088,889.9204 C 184.86421,889.6399 184.65111,889.2742 184.21732,889.1078 C 183.78352,888.9413 183.55467,888.6011 183.70875,888.3518 C 183.86284,888.1025 183.73415,887.8985 183.42279,887.8985 C 183.11142,887.8985 182.99749,887.6707 183.16961,887.3922 C 183.34173,887.1137 183.2278,886.8858 182.91644,886.8858 C 182.60507,886.8858 182.49114,886.658 182.66326,886.3795 C 182.83538,886.101 182.72145,885.8731 182.41009,885.8731 C 182.09872,885.8731 181.98479,885.6453 182.15691,885.3668 C 182.32903,885.0883 182.2151,884.8604 181.90374,884.8604 C 181.59237,884.8604 181.47844,884.6326 181.65056,884.3541 C 181.82268,884.0756 181.69782,883.84772 181.3731,883.84772 C 181.04837,883.84772 180.91384,883.50592 181.07415,883.08822 C 181.23445,882.67052 181.12052,882.32872 180.82097,882.32872 C 180.52142,882.32872 180.40749,881.98692 180.5678,881.56922 C 180.7281,881.15142 180.61517,880.80962 180.31683,880.80962 C 179.95971,880.80962 179.83541,879.33932 179.95296,876.50562 C 180.05116,874.13832 179.93061,872.20162 179.68508,872.20162 C 179.43954,872.20162 179.36089,871.29022 179.5103,870.17632 C 179.66595,869.01582 179.57173,868.15092 179.28968,868.15092 C 179.01892,868.15092 178.94239,867.69402 179.1196,867.13572 C 179.33344,866.46192 179.17559,866.01832 178.65028,865.81672 C 178.21494,865.64972 177.98482,865.30902 178.1389,865.05972 C 178.29298,864.81042 178.1643,864.60642 177.85293,864.60642 C 177.54157,864.60642 177.42764,864.37862 177.59976,864.10012 C 177.77187,863.82162 177.65795,863.59372 177.34658,863.59372 C 177.03522,863.59372 176.89974,863.40072 177.04552,863.16482 C 177.38981,862.60782 174.5996,859.92692 174.14678,860.37972 C 173.95722,860.56932 173.80213,860.44512 173.80213,860.10382 C 173.80213,859.76242 173.57427,859.62402 173.29578,859.79612 C 173.01728,859.96822 172.78943,859.85432 172.78943,859.54292 C 172.78943,859.23152 172.56157,859.11762 172.28308,859.28972 C 172.00458,859.46182 171.77673,859.34792 171.77673,859.03662 C 171.77673,858.72522 171.54887,858.61132 171.27037,858.78342 C 170.99188,858.95552 170.76402,858.83972 170.76402,858.52602 C 170.76402,858.18602 170.35489,858.08552 169.75132,858.27702 C 169.19434,858.45382 168.73862,858.41222 168.73862,858.18462 C 168.73862,857.95692 167.25755,857.77072 165.44734,857.77072 C 163.63714,857.77072 162.15606,857.96592 162.15606,858.20462 C 162.15606,858.44332 161.81428,858.50742 161.39654,858.34712 C 160.9788,858.18682 160.63701,858.28982 160.63701,858.57602 C 160.63701,858.86222 160.40915,858.95552 160.13066,858.78342 C 159.85217,858.61132 159.62431,858.72522 159.62431,859.03662 C 159.62431,859.34792 159.43132,859.48342 159.19545,859.33762 C 158.63837,858.99332 155.95752,861.78352 156.41034,862.23642 C 156.5999,862.42592 156.47571,862.58102 156.13437,862.58102 C 155.79302,862.58102 155.65456,862.80892 155.82668,863.08742 C 155.9988,863.36592 155.88487,863.59372 155.57351,863.59372 C 155.26214,863.59372 155.14821,863.82162 155.32033,864.10012 C 155.49245,864.37862 155.39912,864.60642 155.11293,864.60642 C 154.82674,864.60642 154.72374,864.94822 154.88405,865.36592 C 155.04435,865.78372 154.98023,866.12552 154.74157,866.12552 C 154.5029,866.12552 154.30763,869.54332 154.30763,873.72072 C 154.30763,877.89812 154.44337,881.31602 154.60927,881.31602 C 154.77517,881.31602 154.95186,882.56922 155.00191,884.1009 C 155.0581,885.8205 154.88286,886.8858 154.5438,886.8858 C 154.24179,886.8858 154.13551,887.1137 154.30763,887.3922 C 154.47975,887.6707 154.36582,887.8985 154.05446,887.8985 C 153.74309,887.8985 153.61441,888.1025 153.76849,888.3518 C 153.92257,888.6011 153.69372,888.9413 153.25993,889.1078 C 152.82614,889.2742 152.59828,889.616 152.75358,889.8673 C 152.90888,890.1186 152.68102,890.4604 152.24723,890.6268 C 151.81344,890.7933 151.58493,891.134 151.73944,891.384 C 151.89394,891.634 151.44541,892.2153 150.74269,892.6757 C 150.03998,893.1362 149.57727,893.6945 149.71446,893.9165 C 149.85164,894.1384 149.28292,894.8235 148.45064,895.4388 C 147.61835,896.0542 147.0711,896.774 147.23453,897.0384 C 147.39795,897.3028 147.27691,897.5192 146.96555,897.5192 C 146.65418,897.5192 146.54025,897.7471 146.71237,898.0255 C 146.88449,898.304 146.77056,898.5319 146.4592,898.5319 C 146.14783,898.5319 146.0339,898.7598 146.20602,899.0382 C 146.37814,899.3167 146.28481,899.5446 145.99862,899.5446 C 145.71243,899.5446 145.60943,899.8864 145.76974,900.3041 C 145.93004,900.7219 145.7936,901.0636 145.46655,901.0636 C 145.10233,901.0636 144.99645,901.4561 145.19332,902.0763 C 145.37355,902.6442 145.28431,903.0891 144.99016,903.0891 C 144.70164,903.0891 144.59673,903.4308 144.75704,903.8486 C 144.91734,904.2663 144.78281,904.6081 144.45809,904.6081 C 144.13336,904.6081 144.0085,904.836 144.18062,905.1145 C 144.35274,905.3929 144.25941,905.6208 143.97322,905.6208 C 143.68703,905.6208 143.58403,905.9626 143.74433,906.3803 C 143.90464,906.7981 143.77011,907.1399 143.44538,907.1399 C 143.12066,907.1399 142.9958,907.3677 143.16792,907.6462 C 143.34004,907.9247 143.22611,908.1526 142.91474,908.1526 C 142.60338,908.1526 142.48945,908.3804 142.66157,908.6589 C 142.83369,908.9374 142.71976,909.1653 142.40839,909.1653 C 142.09703,909.1653 141.96834,909.3692 142.12243,909.6186 C 142.27651,909.8679 142.04766,910.208 141.61386,910.3745 C 141.18007,910.541 140.96697,910.9066 141.14031,911.1871 C 141.31364,911.4675 141.20071,911.697 140.88934,911.697 C 140.57798,911.697 140.46405,911.9249 140.63617,912.2034 C 140.80828,912.4819 140.69245,912.7097 140.37875,912.7097 C 140.03882,912.7097 139.93825,913.1188 140.12981,913.7224 C 140.30659,914.2794 140.22218,914.7351 139.94223,914.7351 C 139.30419,914.7351 139.40329,916.8959 140.06207,917.3481 C 140.33002,917.5321 141.274,917.565 142.15979,917.4212 C 143.46122,917.21 144.12555,917.4717 145.62111,918.7849 C 146.63905,919.6786 147.4719,920.6604 147.4719,920.9665 C 147.4719,921.2727 146.60442,920.6761 145.54418,919.6408 C 143.94449,918.0788 143.30666,917.7813 141.79589,917.8924 C 140.79458,917.9661 140.07589,918.1898 140.19879,918.3896 C 140.3217,918.5893 141.11209,918.6148 141.95522,918.4462 C 143.24342,918.1885 143.78602,918.4304 145.35346,919.9609 C 146.37935,920.9627 147.44658,921.7917 147.72507,921.8032 C 148.00357,921.8146 148.31795,922.0836 148.4237,922.4009 C 148.54213,922.7561 148.36623,922.8233 147.9657,922.5758 C 147.53613,922.3103 147.43978,922.3751 147.68183,922.7667 C 147.88335,923.0928 148.23866,923.2419 148.47141,923.098 C 148.70416,922.9542 149.48592,923.8455 150.20865,925.0788 C 151.6729,927.5773 151.82326,928.133 150.88976,927.5958 C 150.52203,927.3841 150.43363,927.4247 150.67878,927.6925 C 150.91086,927.946 151.34759,928.1534 151.64929,928.1534 C 151.95099,928.1534 152.30335,928.4699 152.43231,928.8568 C 152.58861,929.3257 152.44998,929.4263 152.01651,929.1584 C 151.57753,928.887 151.49039,928.9574 151.74835,929.3747 C 151.95851,929.7148 152.26163,929.8618 152.42195,929.7015 C 152.58228,929.5412 153.27978,929.9248 153.97195,930.5539 C 154.66413,931.1831 155.04807,931.3835 154.82515,930.9992 C 154.55261,930.5295 154.6399,930.374 155.09162,930.5245 C 155.46109,930.6477 156.17638,930.3355 156.68115,929.8307 C 157.68718,928.8247 157.9112,927.3939 157.06268,927.3939 C 156.76775,927.3939 156.64844,927.1965 156.79756,926.9552 C 157.12274,926.429 155.36727,924.7308 154.93994,925.1581 C 154.77592,925.3221 154.25681,924.8689 153.78635,924.1509 C 153.3159,923.4329 152.73806,922.9647 152.50226,923.1104 C 152.26647,923.2561 151.69682,922.8004 151.23639,922.0977 C 150.77595,921.395 150.23116,920.9239 150.02575,921.0508 C 149.82033,921.1778 149.0346,920.637 148.27968,919.849 C 147.07864,918.5954 146.89241,917.9602 146.78966,914.7675 C 146.72508,912.7607 146.86769,910.998 147.10659,910.8503 C 147.34548,910.7027 147.41863,910.2631 147.26913,909.8736 C 147.11964,909.484 147.24242,909.1653 147.54196,909.1653 C 147.84151,909.1653 147.95544,908.8235 147.79514,908.4057 C 147.63484,907.988 147.71724,907.6462 147.97825,907.6462 C 148.23926,907.6462 148.32166,907.3044 148.16136,906.8867 C 148.00106,906.4689 148.13558,906.1272 148.46031,906.1272 C 148.78503,906.1272 148.90989,905.8993 148.73777,905.6208 C 148.56566,905.3423 148.67959,905.1145 148.99095,905.1145 C 149.30231,905.1145 149.41624,904.8866 149.24412,904.6081 C 149.07201,904.3296 149.18594,904.1018 149.4973,904.1018 C 149.80866,904.1018 149.92259,903.8739 149.75048,903.5954 C 149.57836,903.3169 149.69229,903.0891 150.00365,903.0891 C 150.31502,903.0891 150.42894,902.8612 150.25683,902.5827 C 150.08471,902.3042 150.19864,902.0763 150.51,902.0763 C 150.82137,902.0763 150.9343,901.8469 150.76097,901.5664 C 150.58763,901.286 150.80073,900.9203 151.23453,900.7538 C 151.66832,900.5874 151.89717,900.2472 151.74309,899.9979 C 151.589,899.7486 151.68291,899.5446 151.95177,899.5446 C 152.22062,899.5446 152.32823,899.0319 152.1909,898.4053 C 151.98349,897.4589 152.04149,897.3946 152.53341,898.0255 C 153.00556,898.6311 153.07225,898.4001 152.86235,896.8863 C 152.70988,895.7866 152.81137,894.9874 153.10347,894.9874 C 153.38089,894.9874 153.46705,894.7596 153.29493,894.4811 C 153.12281,894.2026 153.23674,893.9747 153.5481,893.9747 C 153.85947,893.9747 153.9734,893.7469 153.80128,893.4684 C 153.62916,893.1899 153.74309,892.962 154.05446,892.962 C 154.36582,892.962 154.47975,892.7342 154.30763,892.4557 C 154.13551,892.1772 154.24944,891.9493 154.56081,891.9493 C 154.87217,891.9493 154.9851,891.7199 154.81177,891.4394 C 154.63844,891.159 154.85154,890.7933 155.28533,890.6268 C 155.71912,890.4604 155.94797,890.1202 155.79389,889.8709 C 155.63981,889.6216 155.76849,889.4176 156.07986,889.4176 C 156.39122,889.4176 156.50515,889.1897 156.33303,888.9112 C 156.16091,888.6327 156.26407,888.4049 156.56227,888.4049 C 157.15277,888.4049 157.00846,884.7091 156.35986,883.22112 C 156.14894,882.73732 156.21566,881.65492 156.50813,880.81602 C 156.81322,879.94082 156.84205,879.29062 156.57576,879.29062 C 156.32049,879.29062 156.25714,878.91142 156.43497,878.44802 C 156.62811,877.94472 156.5532,877.73222 156.24897,877.92022 C 155.54984,878.35232 155.74318,872.45792 156.45632,871.59862 C 157.54141,870.29122 162.20464,871.40052 161.36108,872.76542 C 161.20846,873.01232 161.33922,873.21442 161.65166,873.21442 C 161.96409,873.21442 162.17916,873.61312 162.12958,874.10052 C 161.94632,875.90212 162.18912,876.25252 163.62094,876.25252 C 165.21385,876.25252 165.78785,875.42992 165.35365,873.76962 C 165.18805,873.13632 165.31622,872.70802 165.67135,872.70802 C 165.99875,872.70802 166.12798,872.48372 165.95851,872.20952 C 165.56338,871.57012 168.67323,869.65842 170.0045,869.72232 C 170.85187,869.76292 170.81053,869.84132 169.75132,870.20232 C 168.53092,870.61822 168.54003,870.63072 170.0048,870.55022 C 171.72813,870.45562 172.94798,871.02912 172.51463,871.73032 C 172.3544,871.98962 172.47806,872.20172 172.78943,872.20172 C 173.10079,872.20172 173.21472,872.42952 173.0426,872.70802 C 172.87048,872.98652 172.96381,873.21442 173.25,873.21442 C 173.53619,873.21442 173.63919,873.55622 173.47889,873.97392 C 173.31858,874.39162 173.43966,874.73342 173.74795,874.73342 C 174.05624,874.73342 174.30848,875.30312 174.30848,875.99932 C 174.30848,876.69552 174.05624,877.26522 173.74795,877.26522 C 173.43966,877.26522 173.31858,877.60702 173.47889,878.02472 C 173.63919,878.44242 173.54162,878.78422 173.26207,878.78422 C 172.93163,878.78422 172.9417,879.13532 173.29087,879.78782 C 173.58626,880.33972 173.81801,881.64992 173.80587,882.69932 C 173.77256,885.5787 173.97269,886.8858 174.44687,886.8858 C 174.68212,886.8858 174.73377,887.1137 174.56165,887.3922 C 174.38954,887.6707 174.50346,887.8985 174.81483,887.8985 C 175.12619,887.8985 175.24012,888.1264 175.068,888.4049 C 174.89589,888.6834 175.00981,888.9112 175.32118,888.9112 C 175.63254,888.9112 175.76123,889.1152 175.60715,889.3645 C 175.45306,889.6138 175.69111,889.9575 176.13615,890.1283 C 176.59749,890.3054 176.82072,890.7635 176.65548,891.1941 C 176.49608,891.6095 176.59982,891.9493 176.88601,891.9493 C 177.17219,891.9493 177.26552,892.1772 177.09341,892.4557 C 176.92129,892.7342 177.03712,892.962 177.35082,892.962 C 177.69075,892.962 177.79132,893.3712 177.59976,893.9747 C 177.40187,894.5982 177.50877,894.9874 177.87787,894.9874 C 178.2281,894.9874 178.36728,895.4085 178.21257,896.0001 C 178.06691,896.5571 178.19224,897.0128 178.49108,897.0128 C 178.78991,897.0128 178.88396,897.1633 178.70007,897.3472 C 178.51618,897.5311 178.8238,898.0024 179.38368,898.3945 C 179.94355,898.7867 180.27044,899.3198 180.1101,899.5792 C 179.94975,899.8387 180.07332,900.0509 180.38468,900.0509 C 180.69605,900.0509 180.80998,900.2788 180.63786,900.5573 C 180.46574,900.8358 180.57967,901.0636 180.89104,901.0636 C 181.2024,901.0636 181.31633,901.2915 181.14421,901.57 C 180.97209,901.8485 181.08602,902.0763 181.39739,902.0763 C 181.70875,902.0763 181.82268,902.3042 181.65056,902.5827 C 181.47844,902.8612 181.57177,903.0891 181.85796,903.0891 C 182.14415,903.0891 182.2328,903.4682 182.05497,903.9316 C 181.82107,904.5412 181.91591,904.6603 182.39788,904.3625 C 182.90871,904.0468 182.98805,904.2539 182.73798,905.2502 C 182.54597,906.0152 182.63762,906.625 182.96083,906.7327 C 183.33431,906.8572 183.36276,907.4777 183.04981,908.6734 L 182.58978,910.4311 L 182.26206,907.7006 C 181.93615,904.9851 180.0739,900.7189 178.37033,898.7851 C 177.87966,898.2281 177.32919,896.7867 177.14708,895.5819 C 176.76417,893.0488 174.37383,888.0616 172.90845,886.7384 C 171.93892,885.8629 171.85345,885.8728 170.44792,887.0243 C 167.95575,889.0661 164.20143,891.4187 162.92341,891.7394 C 161.68696,892.0498 159.56685,890.5111 159.03581,888.918 C 158.59728,887.6024 157.18181,888.8403 155.32202,892.1659 C 153.8378,894.8199 153.53464,895.7988 153.80944,897.05 C 154.0674,898.2245 153.90865,898.8886 153.173,899.7126 C 150.08014,903.177 147.4719,909.9255 147.4719,914.4636 L 147.4719,917.7135 L 150.62054,920.4017 C 158.6629,927.268 159.2985,928.3865 156.57268,930.8762 L 155.04011,932.2759 L 156.0783,933.2155 C 156.88036,933.9414 156.96981,934.2574 156.47159,934.6053 C 156.03601,934.9093 156.15539,934.9663 156.83938,934.7807 C 157.39637,934.6296 158.19387,934.7251 158.61161,934.9929 C 159.74755,935.7214 166.68077,935.5528 168.95832,934.7414 z M 146.0328,916.2542 C 146.0328,915.5579 146.14772,915.2731 146.28819,915.6212 C 146.42866,915.9693 146.42866,916.539 146.28819,916.8871 C 146.14772,917.2352 146.0328,916.9504 146.0328,916.2542 z M 177.3644,885.9064 C 176.6375,884.5482 176.69637,884.3541 177.83512,884.3541 C 178.85234,884.3541 180.09992,885.9891 179.52295,886.5661 C 178.90277,887.1863 177.88247,886.8745 177.3644,885.9064 z M 178.86563,885.903 C 178.86563,885.641 178.63778,885.2857 178.35928,885.1136 C 178.08079,884.9415 177.85293,885.1559 177.85293,885.5901 C 177.85293,886.0242 178.08079,886.3795 178.35928,886.3795 C 178.63778,886.3795 178.86563,886.1651 178.86563,885.903 z M 170.76402,863.34052 C 170.76402,862.43612 171.03769,862.07472 171.72255,862.07472 C 173.07188,862.07472 173.46828,863.46582 172.29751,864.09232 C 170.91954,864.82982 170.76402,864.75362 170.76402,863.34052 z M 154.56081,932.2827 C 154.56081,932.1866 154.04813,931.6739 153.42152,931.1434 L 152.28223,930.1788 L 153.24682,931.3181 C 154.1533,932.3887 154.56081,932.6879 154.56081,932.2827 z M 132.3828,923.3577 C 132.05432,922.8571 131.28384,924.6693 131.27643,925.96 C 131.25973,928.87 132.02598,929.1904 132.28375,926.3812 C 132.4243,924.8495 132.46887,923.4889 132.3828,923.3577 z M 149.4973,924.8621 C 149.19921,924.3051 148.84139,923.8494 148.70214,923.8494 C 148.5629,923.8494 148.69286,924.3051 148.99095,924.8621 C 149.28904,925.4191 149.64686,925.8748 149.78611,925.8748 C 149.92535,925.8748 149.79539,925.4191 149.4973,924.8621 z M 137.09171,922.8367 C 137.26383,922.5582 137.1768,922.3304 136.8983,922.3304 C 136.61981,922.3304 136.25113,922.5582 136.07901,922.8367 C 135.90689,923.1152 135.99393,923.3431 136.27242,923.3431 C 136.55091,923.3431 136.91959,923.1152 137.09171,922.8367 z M 172.80482,882.97752 C 173.21403,881.78452 173.21254,881.10602 172.79928,880.44572 C 172.30453,879.65532 172.27323,879.68462 172.54619,880.68302 C 172.76202,881.47252 172.63879,881.82232 172.1449,881.82232 C 171.75287,881.82232 170.00221,882.53692 168.25455,883.41022 C 163.83636,885.618 161.25415,885.849 159.34564,884.2074 L 157.86896,882.93722 L 158.7401,881.11042 C 159.21922,880.10572 160.35471,878.83032 161.26341,878.27632 C 162.17211,877.72232 162.60974,877.26812 162.23593,877.26712 C 161.86212,877.26602 160.97692,877.72092 160.26883,878.27792 C 159.56074,878.83492 158.67033,879.29062 158.29015,879.29062 C 157.90997,879.29062 157.5958,879.57542 157.592,879.92352 C 157.58819,880.27162 157.4513,881.05532 157.28779,881.66502 C 157.0578,882.52272 157.52239,883.29062 159.34007,885.0571 C 161.43377,887.092 161.97694,887.3572 164.32801,887.493 C 167.78912,887.6929 171.94716,885.4779 172.80482,882.97752 z M 170.97462,878.45942 C 171.21321,877.83772 171.13119,877.75682 170.64903,878.13832 C 170.29454,878.41882 169.66271,878.77482 169.24497,878.92942 C 168.72655,879.12142 168.8299,879.22332 169.57056,879.25062 C 170.16737,879.27262 170.7992,878.91662 170.97462,878.45942 z M 160.13066,877.01012 C 160.13066,876.54782 160.4524,876.38782 161.01678,876.56932 C 161.73921,876.80172 161.76705,876.75822 161.16754,876.33362 C 160.7631,876.04732 160.29602,875.89712 160.1296,876.00002 C 159.96317,876.10282 159.51693,875.68902 159.13796,875.08042 C 158.48509,874.03202 158.49971,874.01382 159.41638,874.73342 C 160.29876,875.42622 160.32623,875.41922 159.72878,874.65492 C 158.66922,873.29932 157.32577,873.82612 157.46413,875.54292 C 157.56482,876.79232 157.51336,876.86062 157.11996,875.99932 C 156.79558,875.28912 156.64675,875.21772 156.6218,875.76002 C 156.60222,876.18542 156.94148,877.04072 157.37569,877.66062 C 158.013,878.57052 158.35461,878.68642 159.14792,878.26182 C 159.68843,877.97262 160.13066,877.40932 160.13066,877.01012 z M 167.72592,878.02472 C 166.98375,877.13042 167.75605,876.99152 168.62712,877.86262 C 169.57753,878.81302 171.56758,877.50702 171.50059,875.97682 C 171.47083,875.29702 171.2564,874.56822 171.02407,874.35732 C 170.79175,874.14642 170.79586,874.31572 171.03322,874.73342 C 171.40433,875.38662 171.34556,875.39632 170.61362,874.80262 C 170.14549,874.42302 169.88734,873.91032 170.03996,873.66332 C 170.19257,873.41642 170.05986,873.21442 169.74504,873.21442 C 168.97287,873.21442 167.69527,874.53402 168.0876,874.92632 C 168.26,875.09872 168.13522,875.23982 167.81031,875.23982 C 167.4854,875.23982 167.21957,875.69552 167.21957,876.25252 C 167.21957,877.08102 166.882,877.26522 165.36295,877.26522 C 164.34181,877.26522 163.65503,877.41392 163.83677,877.59562 C 164.01851,877.77732 164.85003,877.90662 165.68459,877.88292 C 166.51915,877.85922 167.33331,878.05232 167.49383,878.31202 C 167.65435,878.57172 167.91407,878.78422 168.07098,878.78422 C 168.22789,878.78422 168.07261,878.44242 167.72592,878.02472 z M 173.10037,875.30362 C 172.75561,873.10302 171.46242,871.69532 169.78551,871.69532 C 167.97656,871.69532 166.20297,873.03382 166.22508,874.38242 C 166.2425,875.44512 166.29242,875.43292 167.38339,874.10052 C 169.66671,871.31172 172.63957,873.04772 172.13313,876.87402 C 171.86722,878.88312 171.90105,878.96522 172.60742,878.02472 C 173.09611,877.37402 173.27234,876.40122 173.10037,875.30362 z M 160.89893,873.20652 C 160.85758,872.64512 160.52044,871.90462 160.14974,871.56082 C 159.61003,871.06032 159.55362,871.07272 159.86661,871.62302 C 160.16065,872.13992 160.00146,872.22892 159.22398,871.98212 C 158.65556,871.80172 158.04393,871.89122 157.86481,872.18112 C 157.68569,872.47092 157.86648,872.70802 158.26655,872.70802 C 158.66663,872.70802 159.27762,873.04982 159.62431,873.46752 C 160.496,874.51792 160.98812,874.41712 160.89893,873.20652 z" />
<path
style="fill:none;stroke:#000000;stroke-width:0.375;stroke-miterlimit:4;stroke-opacity:1"
d="M 237.11091,944.2779 C 236.04143,943.8343 235.35818,943.2598 235.54351,942.9599 C 235.72763,942.662 235.63098,942.5773 235.32361,942.7673 C 235.02198,942.9537 232.24868,942.4193 229.16072,941.5796 C 226.07277,940.74 223.37917,940.0386 223.17495,940.0209 C 222.97072,940.0033 223.29707,939.7899 223.90016,939.5467 C 225.12213,939.054 230.24531,939.6575 234.74981,940.8247 C 239.01812,941.9308 240.51689,941.7921 242.39087,940.1177 C 243.79245,938.8654 244.03015,938.3006 244.10144,936.0537 C 244.14698,934.6185 243.98773,933.3227 243.74754,933.1743 C 243.50735,933.0258 243.31083,933.9257 243.31083,935.174 C 243.31083,938.5038 241.47011,940.5594 238.48845,940.5594 C 237.27812,940.5594 235.65791,940.3199 234.888,940.0272 C 234.11808,939.7344 230.85901,939.0455 227.64562,938.4961 C 220.76846,937.3204 220.10184,936.8797 220.94472,934.0665 C 221.67952,931.6139 221.72184,929.2461 221.02314,929.678 C 220.74011,929.8529 220.62345,930.1819 220.7639,930.4092 C 221.02893,930.838 220.31546,933.4373 219.42066,935.3027 C 218.60611,937.0009 219.11861,938.137 221.0314,938.8735 C 222.63729,939.4918 222.66132,939.5278 221.28741,939.2574 C 218.35849,938.6808 217.90291,937.4464 219.24517,933.7237 C 219.76399,932.2847 219.88894,930.5814 219.6767,927.8412 C 219.40687,924.3575 219.48246,923.8797 220.45785,922.9043 C 221.21769,922.1445 222.17556,921.8221 223.68974,921.8167 C 226.10123,921.808 226.55593,921.5872 227.74581,919.8473 C 228.37495,918.9274 228.44928,918.3883 228.04988,917.642 C 227.28656,916.2158 227.95997,913.4173 229.90683,909.9252 C 230.83839,908.2542 232.17285,905.1283 232.87231,902.9786 C 234.45414,898.1171 234.84895,897.3717 237.50723,894.2283 C 238.68479,892.8359 240.34453,890.5915 241.19553,889.2409 L 242.74281,886.7852 L 242.44231,876.98642 C 242.10202,865.89032 242.45726,864.08962 245.69318,860.50782 C 248.09879,857.84512 251.04002,856.81212 255.33499,857.12172 C 260.81398,857.51652 264.83351,860.01552 267.4775,864.67092 C 268.86657,867.11662 269.1278,868.48932 269.57931,875.71492 C 269.95366,881.70582 270.01761,881.95492 272.37863,886.6175 C 273.70756,889.2418 275.91895,892.6736 277.29283,894.2436 C 280.15391,897.5131 281.43694,899.8384 283.13574,904.8331 C 284.58651,909.0985 285.08171,914.0886 284.39479,917.5204 C 283.99463,919.5196 284.04053,920.2881 284.61298,921.1737 C 285.0117,921.7905 285.33793,922.8808 285.33793,923.5966 C 285.33793,925.4031 286.62393,927.1853 289.21257,928.9663 C 292.88498,931.493 292.28243,933.1664 286.55106,936.3578 C 284.21857,937.6566 281.28356,939.717 280.02883,940.9366 C 278.77411,942.1561 277.53431,943.0221 277.27372,942.8611 C 277.01314,942.7 276.63506,942.8351 276.43354,943.1611 C 276.20471,943.5314 276.28663,943.6183 276.65173,943.3927 C 276.97325,943.194 277.23631,943.1529 277.23631,943.3014 C 277.23631,943.9246 274.11555,945.1165 272.48409,945.1165 C 270.34472,945.1165 267.95658,944.2748 268.33926,943.6556 C 268.49227,943.408 268.22116,943.2367 267.73679,943.2749 C 267.22434,943.3153 266.85343,942.9888 266.84967,942.4939 C 266.84612,942.0262 266.63869,941.4566 266.38873,941.2281 C 266.12562,940.9875 266.10077,941.1004 266.3297,941.496 C 266.64715,942.0447 266.51991,942.0696 265.68464,941.6226 C 265.04739,941.2816 261.37242,941.0657 256.20233,941.0657 L 247.76054,941.0657 L 245.86174,942.5696 C 242.50018,945.232 240.39961,945.6421 237.11091,944.2779 z M 241.15884,944.2612 C 240.67147,944.1338 239.87397,944.1338 239.38661,944.2612 C 238.89925,944.3885 239.298,944.4927 240.27272,944.4927 C 241.24745,944.4927 241.6462,944.3885 241.15884,944.2612 z M 273.3121,944.2528 C 272.68549,944.1322 271.66013,944.1322 271.03352,944.2528 C 270.40691,944.3735 270.91959,944.4723 272.17281,944.4723 C 273.42603,944.4723 273.93871,944.3735 273.3121,944.2528 z M 246.53811,941.4237 C 246.69944,941.585 246.97511,941.3426 247.15071,940.885 C 247.42993,940.1574 248.57468,940.053 256.27694,940.053 C 261.12077,940.053 265.0839,940.2568 265.0839,940.5058 C 265.0839,940.7549 265.59658,940.9258 266.22319,940.8856 C 267.32569,940.8149 267.36431,940.6368 267.41926,935.3693 C 267.45049,932.3755 267.3075,929.926 267.1015,929.926 C 266.8955,929.926 266.44538,930.2653 266.10123,930.68 C 265.75708,931.0947 265.29839,931.3245 265.08191,931.1907 C 264.86544,931.0569 264.3116,931.5224 263.85117,932.2251 C 263.39073,932.9278 262.79616,933.3681 262.5299,933.2036 C 262.26364,933.039 262.0458,933.1591 262.0458,933.4705 C 262.0458,933.7818 261.84182,933.9105 261.5925,933.7564 C 261.34319,933.6024 261.00302,933.8312 260.83655,934.265 C 260.67009,934.6988 260.30443,934.9119 260.02397,934.7386 C 259.74351,934.5652 259.51404,934.6891 259.51404,935.0138 C 259.51404,935.3385 259.17226,935.4731 258.75452,935.3128 C 258.33678,935.1525 257.99499,935.2574 257.99499,935.5459 C 257.99499,935.8401 257.55015,935.9293 256.98229,935.7491 C 256.42531,935.5723 255.96959,935.6139 255.96959,935.8415 C 255.96959,936.0692 254.14673,936.2554 251.91879,936.2554 C 249.69084,936.2554 247.86798,936.0917 247.86798,935.8915 C 247.86798,935.6914 247.48882,935.6732 247.02539,935.851 C 246.42012,936.0833 246.29736,935.989 246.58952,935.5162 C 246.86304,935.0737 246.76587,934.9362 246.29282,935.0965 C 245.88629,935.2342 245.57584,936.0633 245.55728,937.061 C 245.50274,939.9915 245.37636,940.3812 244.05021,941.7073 C 243.14391,942.6136 242.95703,943.0685 243.41727,943.2478 C 243.77647,943.3878 244.5596,942.9687 245.15756,942.3164 C 245.75552,941.6641 246.37677,941.2624 246.53811,941.4237 z M 244.32353,942.3316 C 244.67022,941.9139 245.06781,941.5721 245.20705,941.5721 C 245.3463,941.5721 245.17657,941.9139 244.82988,942.3316 C 244.48318,942.7494 244.0856,943.0911 243.94635,943.0911 C 243.80711,943.0911 243.97683,942.7494 244.32353,942.3316 z M 276.65464,941.0564 C 277.86644,940.5065 279.02782,940.1617 279.2355,940.29 C 279.44318,940.4184 280.26024,939.8479 281.05119,939.0223 C 282.85401,937.1406 282.51343,937.1433 278.75537,939.0403 C 275.34411,940.7623 272.21317,941.0338 270.90069,939.7213 C 269.50129,938.3219 269.1347,936.6558 269.1347,931.6952 C 269.1347,929.0542 268.90845,926.8079 268.62478,926.6325 C 267.86263,926.1615 267.41313,927.806 268.0833,928.6135 C 268.44422,929.0484 268.62604,931.0454 268.56334,933.886 C 268.48396,937.4831 268.64846,938.7424 269.33444,939.7894 C 270.91096,942.1954 273.25168,942.6006 276.65464,941.0564 z M 257.70834,934.7418 C 258.80389,934.3515 259.92142,934.1688 260.19174,934.3359 C 260.46205,934.503 260.53077,934.393 260.34445,934.0915 C 260.00188,933.5372 261.86282,932.6407 262.80532,932.906 C 263.08382,932.9844 263.14223,932.8791 262.93513,932.672 C 262.61279,932.3496 264.34729,930.7346 265.0839,930.6712 C 265.70197,930.618 267.61565,929.1305 267.61565,928.7033 C 267.61565,928.4432 266.99594,928.7828 266.23851,929.458 C 265.48108,930.1332 265.18686,930.2631 265.58469,929.7468 C 265.98251,929.2305 266.4822,927.6355 266.69511,926.2023 C 267.71265,919.353 267.82411,919.0916 269.89033,918.708 C 271.02194,918.498 271.51248,916.8836 271.60655,913.06 C 271.64299,911.5787 271.86477,910.7475 272.17281,910.9379 C 272.79767,911.3241 272.85129,915.7482 272.23111,915.7482 C 271.98469,915.7482 271.89171,917.2863 272.02449,919.1661 C 272.22632,922.0234 272.48019,922.7791 273.57249,923.774 C 274.66844,924.7722 275.21184,924.9108 276.94341,924.634 C 278.14067,924.4425 279.59278,923.7433 280.4006,922.9694 C 281.16668,922.2355 281.79347,921.8657 281.79347,922.1478 C 281.79347,922.9225 279.69792,924.7257 278.08946,925.3351 C 274.85231,926.5617 272.40489,925.4102 271.67773,922.3186 L 271.26377,920.5585 L 271.21194,922.4906 C 271.14225,925.0883 271.82316,926.1876 273.9332,926.884 C 275.97116,927.5566 277.37592,927.239 279.51489,925.6221 C 280.96538,924.5256 283.57782,920.7814 282.37271,921.5262 C 281.64428,921.9764 281.64451,921.6927 282.37386,920.0919 C 282.69308,919.3913 283.14537,918.9362 283.37894,919.0805 C 283.61252,919.2249 283.66465,918.6481 283.49478,917.7988 C 283.32492,916.9495 283.38531,916.2546 283.62899,916.2546 C 283.87268,916.2546 284.07205,915.0013 284.07205,913.4696 C 284.07205,911.9379 283.87268,910.6847 283.62899,910.6847 C 283.38531,910.6847 283.32265,910.0011 283.48975,909.1657 C 283.67756,908.2266 283.58438,907.6466 283.24569,907.6466 C 282.94437,907.6466 282.82898,907.3048 282.98929,906.8871 C 283.14959,906.4693 283.03566,906.1276 282.73611,906.1276 C 282.43655,906.1276 282.32263,905.7858 282.48293,905.368 C 282.64323,904.9503 282.5293,904.6085 282.22976,904.6085 C 281.9302,904.6085 281.81627,904.2667 281.97658,903.849 C 282.13688,903.4312 282.02295,903.0895 281.72341,903.0895 C 281.42385,903.0895 281.30992,902.7477 281.47023,902.3299 C 281.63053,901.9122 281.52753,901.5704 281.24134,901.5704 C 280.95515,901.5704 280.86182,901.3425 281.03394,901.064 C 281.20606,900.7856 281.09213,900.5577 280.78077,900.5577 C 280.4694,900.5577 280.35547,900.3298 280.52759,900.0513 C 280.69971,899.7729 280.58578,899.545 280.27442,899.545 C 279.96305,899.545 279.84912,899.3171 280.02124,899.0386 C 280.19336,898.7602 280.07943,898.5323 279.76807,898.5323 C 279.4567,898.5323 279.34377,898.3028 279.5171,898.0224 C 279.69043,897.7419 279.47734,897.3762 279.04354,897.2098 C 278.60975,897.0433 278.36671,896.7261 278.50346,896.5048 C 278.6402,896.2836 277.89835,895.3509 276.85491,894.4322 C 275.81146,893.5135 275.01681,892.5727 275.08902,892.3417 C 275.16123,892.1106 274.87771,891.7901 274.45899,891.6294 C 274.04027,891.4687 273.82374,891.1333 273.97783,890.884 C 274.13191,890.6347 274.00322,890.4307 273.69186,890.4307 C 273.38049,890.4307 273.26756,890.2012 273.4409,889.9208 C 273.61423,889.6403 273.40113,889.2746 272.96734,889.1082 C 272.53354,888.9417 272.30469,888.6015 272.45877,888.3522 C 272.61286,888.1029 272.48417,887.8989 272.17281,887.8989 C 271.86144,887.8989 271.74751,887.6711 271.91963,887.3926 C 272.09175,887.1141 271.97782,886.8862 271.66646,886.8862 C 271.35509,886.8862 271.24116,886.6584 271.41328,886.3799 C 271.5854,886.1014 271.47147,885.8735 271.16011,885.8735 C 270.84874,885.8735 270.73481,885.6457 270.90693,885.3672 C 271.07905,885.0887 270.96512,884.8608 270.65376,884.8608 C 270.34239,884.8608 270.22846,884.633 270.40058,884.3545 C 270.5727,884.076 270.44784,883.84812 270.12312,883.84812 C 269.79839,883.84812 269.66386,883.50632 269.82417,883.08862 C 269.98447,882.67092 269.87054,882.32912 269.57099,882.32912 C 269.27144,882.32912 269.15751,881.98732 269.31782,881.56962 C 269.47812,881.15182 269.36519,880.81002 269.06685,880.81002 C 268.70973,880.81002 268.58543,879.33972 268.70298,876.50602 C 268.80118,874.13872 268.68063,872.20202 268.4351,872.20202 C 268.18956,872.20202 268.11091,871.29062 268.26032,870.17672 C 268.41597,869.01622 268.32175,868.15132 268.0397,868.15132 C 267.76894,868.15132 267.69241,867.69442 267.86962,867.13612 C 268.08346,866.46232 267.92561,866.01872 267.4003,865.81712 C 266.96496,865.65012 266.73484,865.30942 266.88892,865.06012 C 267.043,864.81082 266.91432,864.60682 266.60295,864.60682 C 266.29159,864.60682 266.17766,864.37902 266.34978,864.10052 C 266.52189,863.82202 266.40797,863.59412 266.0966,863.59412 C 265.78524,863.59412 265.64976,863.40112 265.79554,863.16522 C 266.13983,862.60822 263.34962,859.92732 262.8968,860.38012 C 262.70724,860.56972 262.55215,860.44552 262.55215,860.10422 C 262.55215,859.76282 262.32429,859.62442 262.0458,859.79652 C 261.7673,859.96862 261.53945,859.85472 261.53945,859.54332 C 261.53945,859.23192 261.31159,859.11802 261.0331,859.29012 C 260.7546,859.46222 260.52675,859.34832 260.52675,859.03702 C 260.52675,858.72562 260.29889,858.61172 260.02039,858.78382 C 259.7419,858.95592 259.51404,858.84012 259.51404,858.52642 C 259.51404,858.18642 259.10491,858.08592 258.50134,858.27742 C 257.94436,858.45422 257.48864,858.41262 257.48864,858.18502 C 257.48864,857.95732 256.00757,857.77112 254.19736,857.77112 C 252.38716,857.77112 250.90608,857.96632 250.90608,858.20502 C 250.90608,858.44372 250.5643,858.50782 250.14656,858.34752 C 249.72882,858.18722 249.38703,858.29022 249.38703,858.57642 C 249.38703,858.86262 249.15917,858.95592 248.88068,858.78382 C 248.60219,858.61172 248.37433,858.72562 248.37433,859.03702 C 248.37433,859.34832 248.18134,859.48382 247.94547,859.33802 C 247.38839,858.99372 244.70754,861.78392 245.16036,862.23682 C 245.34992,862.42632 245.22573,862.58142 244.88439,862.58142 C 244.54304,862.58142 244.40458,862.80932 244.5767,863.08782 C 244.74882,863.36632 244.63489,863.59412 244.32353,863.59412 C 244.01216,863.59412 243.89823,863.82202 244.07035,864.10052 C 244.24247,864.37902 244.14914,864.60682 243.86295,864.60682 C 243.57676,864.60682 243.47376,864.94862 243.63407,865.36632 C 243.79437,865.78412 243.73025,866.12592 243.49159,866.12592 C 243.25292,866.12592 243.05765,869.54372 243.05765,873.72112 C 243.05765,877.89852 243.19339,881.31642 243.35929,881.31642 C 243.52519,881.31642 243.70188,882.56962 243.75193,884.1013 C 243.80812,885.8209 243.63288,886.8862 243.29382,886.8862 C 242.99181,886.8862 242.88553,887.1141 243.05765,887.3926 C 243.22977,887.6711 243.11584,887.8989 242.80448,887.8989 C 242.49311,887.8989 242.36443,888.1029 242.51851,888.3522 C 242.67259,888.6015 242.44374,888.9417 242.00995,889.1082 C 241.57616,889.2746 241.3483,889.6164 241.5036,889.8677 C 241.6589,890.119 241.43104,890.4608 240.99725,890.6272 C 240.56346,890.7937 240.33495,891.1344 240.48946,891.3844 C 240.64396,891.6344 240.19543,892.2157 239.49271,892.6761 C 238.79,893.1366 238.32729,893.6949 238.46448,893.9169 C 238.60166,894.1388 238.03294,894.8239 237.20066,895.4392 C 236.36837,896.0546 235.82112,896.7744 235.98455,897.0388 C 236.14797,897.3032 236.02693,897.5196 235.71557,897.5196 C 235.4042,897.5196 235.29027,897.7475 235.46239,898.0259 C 235.63451,898.3044 235.52058,898.5323 235.20922,898.5323 C 234.89785,898.5323 234.78392,898.7602 234.95604,899.0386 C 235.12816,899.3171 235.03483,899.545 234.74864,899.545 C 234.46245,899.545 234.35945,899.8868 234.51976,900.3045 C 234.68006,900.7223 234.54362,901.064 234.21657,901.064 C 233.85235,901.064 233.74647,901.4565 233.94334,902.0767 C 234.12357,902.6446 234.03433,903.0895 233.74018,903.0895 C 233.45166,903.0895 233.34675,903.4312 233.50706,903.849 C 233.66736,904.2667 233.53283,904.6085 233.20811,904.6085 C 232.88338,904.6085 232.75852,904.8364 232.93064,905.1149 C 233.10276,905.3933 233.00943,905.6212 232.72324,905.6212 C 232.43705,905.6212 232.33405,905.963 232.49435,906.3807 C 232.65466,906.7985 232.52013,907.1403 232.1954,907.1403 C 231.87068,907.1403 231.74582,907.3681 231.91794,907.6466 C 232.09006,907.9251 231.97613,908.153 231.66476,908.153 C 231.3534,908.153 231.23947,908.3808 231.41159,908.6593 C 231.58371,908.9378 231.46978,909.1657 231.15841,909.1657 C 230.84705,909.1657 230.71836,909.3696 230.87245,909.619 C 231.02653,909.8683 230.79768,910.2084 230.36388,910.3749 C 229.93009,910.5414 229.71699,910.907 229.89033,911.1875 C 230.06366,911.4679 229.95073,911.6974 229.63936,911.6974 C 229.328,911.6974 229.21407,911.9253 229.38619,912.2038 C 229.5583,912.4823 229.44247,912.7101 229.12877,912.7101 C 228.78884,912.7101 228.68827,913.1192 228.87983,913.7228 C 229.05661,914.2798 228.9722,914.7355 228.69225,914.7355 C 228.05421,914.7355 228.15331,916.8963 228.81209,917.3485 C 229.08004,917.5325 230.02402,917.5654 230.90981,917.4216 C 232.21124,917.2104 232.87557,917.4721 234.37113,918.7853 C 235.38907,919.679 236.22192,920.6608 236.22192,920.9669 C 236.22192,921.2731 235.35444,920.6765 234.2942,919.6412 C 232.69451,918.0792 232.05668,917.7817 230.54591,917.8928 C 229.5446,917.9665 228.82591,918.1902 228.94881,918.39 C 229.07172,918.5897 229.86211,918.6152 230.70524,918.4466 C 231.99344,918.1889 232.53604,918.4308 234.10348,919.9613 C 235.12937,920.9631 236.1966,921.7921 236.47509,921.8036 C 236.75359,921.815 237.06797,922.084 237.17372,922.4013 C 237.29215,922.7565 237.11625,922.8237 236.71572,922.5762 C 236.28615,922.3107 236.1898,922.3755 236.43185,922.7671 C 236.63337,923.0932 236.98868,923.2423 237.22143,923.0984 C 237.45418,922.9546 238.23594,923.8459 238.95867,925.0792 C 240.42292,927.5777 240.57328,928.1334 239.63978,927.5962 C 239.27205,927.3845 239.18365,927.4251 239.4288,927.6929 C 239.66088,927.9464 240.09761,928.1538 240.39931,928.1538 C 240.70101,928.1538 241.05337,928.4703 241.18233,928.8572 C 241.33863,929.3261 241.2,929.4267 240.76653,929.1588 C 240.32755,928.8874 240.24041,928.9578 240.49837,929.3751 C 240.70853,929.7152 241.01165,929.8622 241.17197,929.7019 C 241.3323,929.5416 242.0298,929.9252 242.72197,930.5543 C 243.41415,931.1835 243.79809,931.3839 243.57517,930.9996 C 243.30263,930.5299 243.38992,930.3744 243.84164,930.5249 C 244.21111,930.6481 244.9264,930.3359 245.43117,929.8311 C 246.4372,928.8251 246.66122,927.3943 245.8127,927.3943 C 245.51777,927.3943 245.39846,927.1969 245.54758,926.9556 C 245.87276,926.4294 244.11729,924.7312 243.68996,925.1585 C 243.52594,925.3225 243.00683,924.8693 242.53637,924.1513 C 242.06592,923.4333 241.48808,922.9651 241.25228,923.1108 C 241.01649,923.2565 240.44684,922.8008 239.98641,922.0981 C 239.52597,921.3954 238.98118,920.9243 238.77577,921.0512 C 238.57035,921.1782 237.78462,920.6374 237.0297,919.8494 C 235.82866,918.5958 235.64243,917.9606 235.53968,914.7679 C 235.4751,912.7611 235.61771,910.9984 235.85661,910.8507 C 236.0955,910.7031 236.16865,910.2635 236.01915,909.874 C 235.86966,909.4844 235.99244,909.1657 236.29198,909.1657 C 236.59153,909.1657 236.70546,908.8239 236.54516,908.4061 C 236.38486,907.9884 236.46726,907.6466 236.72827,907.6466 C 236.98928,907.6466 237.07168,907.3048 236.91138,906.8871 C 236.75108,906.4693 236.8856,906.1276 237.21033,906.1276 C 237.53505,906.1276 237.65991,905.8997 237.48779,905.6212 C 237.31568,905.3427 237.42961,905.1149 237.74097,905.1149 C 238.05233,905.1149 238.16626,904.887 237.99414,904.6085 C 237.82203,904.33 237.93596,904.1022 238.24732,904.1022 C 238.55868,904.1022 238.67261,903.8743 238.5005,903.5958 C 238.32838,903.3173 238.44231,903.0895 238.75367,903.0895 C 239.06504,903.0895 239.17896,902.8616 239.00685,902.5831 C 238.83473,902.3046 238.94866,902.0767 239.26002,902.0767 C 239.57139,902.0767 239.68432,901.8473 239.51099,901.5668 C 239.33765,901.2864 239.55075,900.9207 239.98455,900.7542 C 240.41834,900.5878 240.64719,900.2476 240.49311,899.9983 C 240.33902,899.749 240.43293,899.545 240.70179,899.545 C 240.97064,899.545 241.07825,899.0323 240.94092,898.4057 C 240.73351,897.4593 240.79151,897.395 241.28343,898.0259 C 241.75558,898.6315 241.82227,898.4005 241.61237,896.8867 C 241.4599,895.787 241.56139,894.9878 241.85349,894.9878 C 242.13091,894.9878 242.21707,894.76 242.04495,894.4815 C 241.87283,894.203 241.98676,893.9751 242.29812,893.9751 C 242.60949,893.9751 242.72342,893.7473 242.5513,893.4688 C 242.37918,893.1903 242.49311,892.9624 242.80448,892.9624 C 243.11584,892.9624 243.22977,892.7346 243.05765,892.4561 C 242.88553,892.1776 242.99946,891.9497 243.31083,891.9497 C 243.62219,891.9497 243.73512,891.7203 243.56179,891.4398 C 243.38846,891.1594 243.60156,890.7937 244.03535,890.6272 C 244.46914,890.4608 244.69799,890.1206 244.54391,889.8713 C 244.38983,889.622 244.51851,889.418 244.82988,889.418 C 245.14124,889.418 245.25517,889.1901 245.08305,888.9116 C 244.91093,888.6331 245.01409,888.4053 245.31229,888.4053 C 245.90279,888.4053 245.75848,884.7095 245.10988,883.22152 C 244.89896,882.73772 244.96568,881.65532 245.25815,880.81642 C 245.56324,879.94122 245.59207,879.29102 245.32578,879.29102 C 245.07051,879.29102 245.00716,878.91182 245.18499,878.44842 C 245.37813,877.94512 245.30322,877.73262 244.99899,877.92062 C 244.29986,878.35272 244.4932,872.45832 245.20634,871.59902 C 246.29143,870.29162 250.95466,871.40092 250.1111,872.76582 C 249.95848,873.01272 250.08924,873.21482 250.40168,873.21482 C 250.71411,873.21482 250.92918,873.61352 250.8796,874.10092 C 250.69634,875.90252 250.93914,876.25292 252.37096,876.25292 C 253.96387,876.25292 254.53787,875.43032 254.10367,873.77002 C 253.93807,873.13672 254.06624,872.70842 254.42137,872.70842 C 254.74877,872.70842 254.878,872.48412 254.70853,872.20992 C 254.3134,871.57052 257.42325,869.65882 258.75452,869.72272 C 259.60189,869.76332 259.56055,869.84172 258.50134,870.20272 C 257.28094,870.61862 257.29005,870.63112 258.75482,870.55062 C 260.47815,870.45602 261.698,871.02952 261.26465,871.73072 C 261.10442,871.99002 261.22808,872.20212 261.53945,872.20212 C 261.85081,872.20212 261.96474,872.42992 261.79262,872.70842 C 261.6205,872.98692 261.71383,873.21482 262.00002,873.21482 C 262.28621,873.21482 262.38921,873.55662 262.22891,873.97432 C 262.0686,874.39202 262.18968,874.73382 262.49797,874.73382 C 262.80626,874.73382 263.0585,875.30352 263.0585,875.99972 C 263.0585,876.69592 262.80626,877.26562 262.49797,877.26562 C 262.18968,877.26562 262.0686,877.60742 262.22891,878.02512 C 262.38921,878.44282 262.29164,878.78462 262.01209,878.78462 C 261.68165,878.78462 261.69172,879.13572 262.04089,879.78822 C 262.33628,880.34012 262.56803,881.65032 262.55589,882.69972 C 262.52258,885.5791 262.72271,886.8862 263.19689,886.8862 C 263.43214,886.8862 263.48379,887.1141 263.31167,887.3926 C 263.13956,887.6711 263.25348,887.8989 263.56485,887.8989 C 263.87621,887.8989 263.99014,888.1268 263.81802,888.4053 C 263.64591,888.6838 263.75983,888.9116 264.0712,888.9116 C 264.38256,888.9116 264.51125,889.1156 264.35717,889.3649 C 264.20308,889.6142 264.44113,889.9579 264.88617,890.1287 C 265.34751,890.3058 265.57074,890.7639 265.4055,891.1945 C 265.2461,891.6099 265.34984,891.9497 265.63603,891.9497 C 265.92221,891.9497 266.01554,892.1776 265.84343,892.4561 C 265.67131,892.7346 265.78714,892.9624 266.10084,892.9624 C 266.44077,892.9624 266.54134,893.3716 266.34978,893.9751 C 266.15189,894.5986 266.25879,894.9878 266.62789,894.9878 C 266.97812,894.9878 267.1173,895.4089 266.96259,896.0005 C 266.81693,896.5575 266.94226,897.0132 267.2411,897.0132 C 267.53993,897.0132 267.63398,897.1637 267.45009,897.3476 C 267.2662,897.5315 267.57382,898.0028 268.1337,898.3949 C 268.69357,898.7871 269.02046,899.3202 268.86012,899.5796 C 268.69977,899.8391 268.82334,900.0513 269.1347,900.0513 C 269.44607,900.0513 269.56,900.2792 269.38788,900.5577 C 269.21576,900.8362 269.32969,901.064 269.64106,901.064 C 269.95242,901.064 270.06635,901.2919 269.89423,901.5704 C 269.72211,901.8489 269.83604,902.0767 270.14741,902.0767 C 270.45877,902.0767 270.5727,902.3046 270.40058,902.5831 C 270.22846,902.8616 270.32179,903.0895 270.60798,903.0895 C 270.89417,903.0895 270.98282,903.4686 270.80499,903.932 C 270.57109,904.5416 270.66593,904.6607 271.1479,904.3629 C 271.65873,904.0472 271.73807,904.2543 271.488,905.2506 C 271.29599,906.0156 271.38764,906.6254 271.71085,906.7331 C 272.08433,906.8576 272.11278,907.4781 271.79983,908.6738 L 271.3398,910.4315 L 271.01208,907.701 C 270.68617,904.9855 268.82392,900.7193 267.12035,898.7855 C 266.62968,898.2285 266.07921,896.7871 265.8971,895.5823 C 265.51419,893.0492 263.12385,888.062 261.65847,886.7388 C 260.68894,885.8633 260.60347,885.8732 259.19794,887.0247 C 256.70577,889.0665 252.95145,891.4191 251.67343,891.7398 C 250.43698,892.0502 248.31687,890.5115 247.78583,888.9184 C 247.3473,887.6028 245.93183,888.8407 244.07204,892.1663 C 242.58782,894.8203 242.28466,895.7992 242.55946,897.0504 C 242.81742,898.2249 242.65867,898.889 241.92302,899.713 C 238.83016,903.1774 236.22192,909.9259 236.22192,914.464 L 236.22192,917.7139 L 239.37056,920.4021 C 247.41292,927.2684 248.04852,928.3869 245.3227,930.8766 L 243.79013,932.2763 L 244.82832,933.2159 C 245.63038,933.9418 245.71983,934.2578 245.22161,934.6057 C 244.78603,934.9097 244.90541,934.9667 245.5894,934.7811 C 246.14639,934.63 246.94389,934.7255 247.36163,934.9933 C 248.49757,935.7218 255.43079,935.5532 257.70834,934.7418 z M 234.78282,916.2546 C 234.78282,915.5583 234.89774,915.2735 235.03821,915.6216 C 235.17868,915.9697 235.17868,916.5394 235.03821,916.8875 C 234.89774,917.2356 234.78282,916.9508 234.78282,916.2546 z M 266.11442,885.9068 C 265.38752,884.5486 265.44639,884.3545 266.58514,884.3545 C 267.60236,884.3545 268.84994,885.9895 268.27297,886.5665 C 267.65279,887.1867 266.63249,886.8749 266.11442,885.9068 z M 267.61565,885.9034 C 267.61565,885.6414 267.3878,885.2861 267.1093,885.114 C 266.83081,884.9419 266.60295,885.1563 266.60295,885.5905 C 266.60295,886.0246 266.83081,886.3799 267.1093,886.3799 C 267.3878,886.3799 267.61565,886.1655 267.61565,885.9034 z M 259.51404,863.34092 C 259.51404,862.43652 259.78771,862.07512 260.47257,862.07512 C 261.8219,862.07512 262.2183,863.46622 261.04753,864.09272 C 259.66956,864.83022 259.51404,864.75402 259.51404,863.34092 z M 243.31083,932.2831 C 243.31083,932.187 242.79815,931.6743 242.17154,931.1438 L 241.03225,930.1792 L 241.99684,931.3185 C 242.90332,932.3891 243.31083,932.6883 243.31083,932.2831 z M 221.13282,923.3581 C 220.80434,922.8575 220.03386,924.6697 220.02645,925.9604 C 220.00975,928.8704 220.776,929.1908 221.03377,926.3816 C 221.17432,924.8499 221.21889,923.4893 221.13282,923.3581 z M 238.24732,924.8625 C 237.94923,924.3055 237.59141,923.8498 237.45216,923.8498 C 237.31292,923.8498 237.44288,924.3055 237.74097,924.8625 C 238.03906,925.4195 238.39688,925.8752 238.53613,925.8752 C 238.67537,925.8752 238.54541,925.4195 238.24732,924.8625 z M 225.84173,922.8371 C 226.01385,922.5586 225.92682,922.3308 225.64832,922.3308 C 225.36983,922.3308 225.00115,922.5586 224.82903,922.8371 C 224.65691,923.1156 224.74395,923.3435 225.02244,923.3435 C 225.30093,923.3435 225.66961,923.1156 225.84173,922.8371 z M 261.55484,882.97792 C 261.96405,881.78492 261.96256,881.10642 261.5493,880.44612 C 261.05455,879.65572 261.02325,879.68502 261.29621,880.68342 C 261.51204,881.47292 261.38881,881.82272 260.89492,881.82272 C 260.50289,881.82272 258.75223,882.53732 257.00457,883.41062 C 252.58638,885.6184 250.00417,885.8494 248.09566,884.2078 L 246.61898,882.93762 L 247.49012,881.11082 C 247.96924,880.10612 249.10473,878.83072 250.01343,878.27672 C 250.92213,877.72272 251.35976,877.26852 250.98595,877.26752 C 250.61214,877.26642 249.72694,877.72132 249.01885,878.27832 C 248.31076,878.83532 247.42035,879.29102 247.04017,879.29102 C 246.65999,879.29102 246.34582,879.57582 246.34202,879.92392 C 246.33821,880.27202 246.20132,881.05572 246.03781,881.66542 C 245.80782,882.52312 246.27241,883.29102 248.09009,885.0575 C 250.18379,887.0924 250.72696,887.3576 253.07803,887.4934 C 256.53914,887.6933 260.69718,885.4783 261.55484,882.97792 z M 259.72464,878.45982 C 259.96323,877.83812 259.88121,877.75722 259.39905,878.13872 C 259.04456,878.41922 258.41273,878.77522 257.99499,878.92982 C 257.47657,879.12182 257.57992,879.22372 258.32058,879.25102 C 258.91739,879.27302 259.54922,878.91702 259.72464,878.45982 z M 248.88068,877.01052 C 248.88068,876.54822 249.20242,876.38822 249.7668,876.56972 C 250.48923,876.80212 250.51707,876.75862 249.91756,876.33402 C 249.51312,876.04772 249.04604,875.89752 248.87962,876.00042 C 248.71319,876.10322 248.26695,875.68942 247.88798,875.08082 C 247.23511,874.03242 247.24973,874.01422 248.1664,874.73382 C 249.04878,875.42662 249.07625,875.41962 248.4788,874.65532 C 247.41924,873.29972 246.07579,873.82652 246.21415,875.54332 C 246.31484,876.79272 246.26338,876.86102 245.86998,875.99972 C 245.5456,875.28952 245.39677,875.21812 245.37182,875.76042 C 245.35224,876.18582 245.6915,877.04112 246.12571,877.66102 C 246.76302,878.57092 247.10463,878.68682 247.89794,878.26222 C 248.43845,877.97302 248.88068,877.40972 248.88068,877.01052 z M 256.47594,878.02512 C 255.73377,877.13082 256.50607,876.99192 257.37714,877.86302 C 258.32755,878.81342 260.3176,877.50742 260.25061,875.97722 C 260.22085,875.29742 260.00642,874.56862 259.77409,874.35772 C 259.54177,874.14682 259.54588,874.31612 259.78324,874.73382 C 260.15435,875.38702 260.09558,875.39672 259.36364,874.80302 C 258.89551,874.42342 258.63736,873.91072 258.78998,873.66372 C 258.94259,873.41682 258.80988,873.21482 258.49506,873.21482 C 257.72289,873.21482 256.44529,874.53442 256.83762,874.92672 C 257.01002,875.09912 256.88524,875.24022 256.56033,875.24022 C 256.23542,875.24022 255.96959,875.69592 255.96959,876.25292 C 255.96959,877.08142 255.63202,877.26562 254.11297,877.26562 C 253.09183,877.26562 252.40505,877.41432 252.58679,877.59602 C 252.76853,877.77772 253.60005,877.90702 254.43461,877.88332 C 255.26917,877.85962 256.08333,878.05272 256.24385,878.31242 C 256.40437,878.57212 256.66409,878.78462 256.821,878.78462 C 256.97791,878.78462 256.82263,878.44282 256.47594,878.02512 z M 261.85039,875.30402 C 261.50563,873.10342 260.21244,871.69572 258.53553,871.69572 C 256.72658,871.69572 254.95299,873.03422 254.9751,874.38282 C 254.99252,875.44552 255.04244,875.43332 256.13341,874.10092 C 258.41673,871.31212 261.38959,873.04812 260.88315,876.87442 C 260.61724,878.88352 260.65107,878.96562 261.35744,878.02512 C 261.84613,877.37442 262.02236,876.40162 261.85039,875.30402 z M 249.64895,873.20692 C 249.6076,872.64552 249.27046,871.90502 248.89976,871.56122 C 248.36005,871.06072 248.30364,871.07312 248.61663,871.62342 C 248.91067,872.14032 248.75148,872.22932 247.974,871.98252 C 247.40558,871.80212 246.79395,871.89162 246.61483,872.18152 C 246.43571,872.47132 246.6165,872.70842 247.01657,872.70842 C 247.41665,872.70842 248.02764,873.05022 248.37433,873.46792 C 249.24602,874.51832 249.73814,874.41752 249.64895,873.20692 z" />
<rect
id="d0e113"
width="288"
height="1000px"
x="10"
y="1089.8293994000003"
style="display:none" />
<flowRoot
style="font-size:8.39999962px;font-style:normal;font-weight:normal;line-height:133.00000429%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Bitstream Vera Serif"
id="flowRoot209"
transform="translate(0,-116)">
<flowRegion
id="flowRegion211">
<use
xlink:href="#d0e113"
y="0"
x="0"
id="use213"
width="320"
height="3962.5" />
</flowRegion>
<flowDiv
xml:space="preserve"
id="flowDiv215">使用者應該嘗試全部三種濾鏡,並且觀察對於不同類型的輸入圖像產生效果的差異。總有某些圖片用其中一種濾鏡的效果比其他兩種好。</flowDiv> </flowRoot>
<rect
id="d0e116"
width="288"
height="1000px"
x="10"
y="1128.1206644000004"
style="display:none" />
<flowRoot
style="font-size:8.39999962px;font-style:normal;font-weight:normal;line-height:133.00000429%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Bitstream Vera Serif"
id="flowRoot218"
transform="translate(0,-126)">
<flowRegion
id="flowRegion220">
<use
xlink:href="#d0e116"
y="0"
x="0"
id="use222"
width="320"
height="3962.5" />
</flowRegion>
<flowDiv
xml:space="preserve"
id="flowDiv224">描繪後,建議使用者在輸出路徑上試著用 路徑 > 簡化 (<flowSpan
style="font-weight:bold;-inkscape-font-specification:Bitstream Vera Serif Bold"
id="flowSpan2703">Ctrl+L</flowSpan>) 以減少節點數。這樣會讓 Potrace 的輸出結果更容易編輯。例如,下面有一幅「老人彈吉他」的典型描繪:</flowDiv> </flowRoot>
<text
sodipodi:insensitive="true"
sodipodi:linespacing="100%"
y="1178.0249"
x="91.327339"
style="font-size:6px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:100%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:block;font-family:Bitstream Vera Sans"
xml:space="preserve"><tspan
y="1178.0249"
x="91.327339"
role="line">原始圖像</tspan></text>
<text
sodipodi:insensitive="true"
sodipodi:linespacing="100%"
y="1178.3199"
x="237.33034"
style="font-size:6px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:100%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:block;font-family:Bitstream Vera Sans"
xml:space="preserve"><tspan
y="1178.3199"
x="237.33034"
role="line">描繪圖像 / 輸出路徑</tspan><tspan
y="1184.3199"
x="237.33034"
role="line">(1,551 個節點)</tspan></text>
<image
y="1049.8793"
x="49.6539"
height="115.89471"
width="83.346848"
sodipodi:absref="/oldguitar.jpg"
xlink:href="oldguitar.jpg" />
<path
d="M 195.42469,1143.4619 L 195.42469,1117.1498 L 196.10911,1117.1084 L 196.79352,1117.067 L 196.10284,1116.9343 L 195.41215,1116.8017 L 195.43373,1101.8425 L 195.4553,1086.8833 L 196.40565,1086.8154 C 196.92835,1086.778 197.4669,1086.5727 197.60243,1086.3591 C 197.78253,1086.0753 197.85011,1086.1141 197.85352,1086.5031 C 197.86158,1087.4245 198.89924,1087.0006 199.15653,1085.9708 C 199.27303,1085.5045 199.31677,1085.5578 199.34382,1086.1989 C 199.37345,1086.9014 199.51317,1087.0347 200.21561,1087.0308 C 200.85028,1087.0272 200.94415,1086.9578 200.60465,1086.7431 C 200.35855,1086.5875 200.23959,1086.3777 200.3403,1086.277 C 200.44102,1086.1763 200.71815,1086.2886 200.95615,1086.5266 C 201.4114,1086.9819 205.57509,1087.159 205.29843,1086.7114 C 205.21945,1086.5836 205.32679,1086.4001 205.53696,1086.3038 C 205.74713,1086.2074 205.6111,1086.2049 205.23467,1086.2983 C 204.85824,1086.3917 204.55026,1086.3448 204.55026,1086.1941 C 204.55026,1085.6799 204.85872,1085.6116 206.23626,1085.8207 C 206.9939,1085.9356 207.68543,1085.9138 207.77299,1085.7721 C 207.99327,1085.4157 208.50467,1085.4482 208.50467,1085.8187 C 208.50467,1085.986 208.29934,1086.1229 208.04839,1086.1229 C 207.79744,1086.1229 207.59211,1086.2502 207.59211,1086.4059 C 207.59211,1086.5616 207.28412,1086.7468 206.9077,1086.8175 C 206.53127,1086.8882 206.74235,1086.9438 207.37678,1086.941 C 208.01121,1086.9382 208.60104,1086.8214 208.68752,1086.6815 C 208.774,1086.5415 209.11853,1086.4271 209.45313,1086.4271 C 209.78773,1086.4271 209.98202,1086.2985 209.88488,1086.1413 C 209.78774,1085.9841 209.95077,1085.8475 210.24716,1085.8377 C 212.15816,1085.7744 213.93389,1085.5861 214.58838,1085.3773 C 215.00664,1085.2439 215.24705,1085.2421 215.12264,1085.3734 C 214.99823,1085.5046 215.19297,1085.8197 215.55541,1086.0736 C 216.32504,1086.6127 221.88883,1086.9353 221.88883,1086.4409 C 221.88883,1086.2765 221.68351,1086.2208 221.43256,1086.3171 C 221.1816,1086.4134 220.97628,1086.3634 220.97628,1086.2061 C 220.97628,1086.0488 220.77095,1085.9201 220.52,1085.9201 C 220.26905,1085.9201 220.06372,1086.0113 220.06372,1086.1229 C 220.06372,1086.2344 219.85275,1086.3257 219.5949,1086.3257 C 219.32745,1086.3257 219.16949,1086.1188 219.22714,1085.844 C 219.29207,1085.5346 219.59558,1085.3899 220.07619,1085.4394 C 220.66137,1085.4996 220.72487,1085.4509 220.36791,1085.2159 C 219.70334,1084.7783 219.11491,1084.8394 218.71397,1085.3877 C 218.44112,1085.7609 218.09204,1085.8188 217.164,1085.6447 C 216.01097,1085.4283 215.99358,1085.4077 216.69883,1085.093 C 217.2489,1084.8476 217.46256,1084.8594 217.5562,1085.1403 C 217.72569,1085.6488 218.23861,1085.6156 218.23861,1085.0962 C 218.23861,1084.2337 219.97302,1084.2865 222.26046,1085.2186 C 223.47814,1085.7148 224.56012,1086.1213 224.66488,1086.1218 C 225.01932,1086.1238 225.16729,1082.6344 224.82215,1082.4131 C 224.64058,1082.2968 224.58742,1082.1061 224.70401,1081.9896 C 225.1322,1081.5614 225.89792,1082.5795 225.74088,1083.3682 C 225.60037,1084.0739 226.09891,1085.2103 226.54899,1085.2103 C 226.64931,1085.2103 226.8858,1084.697 227.07453,1084.0696 C 227.59946,1082.3246 228.58442,1081.265 229.39381,1081.5745 C 229.91629,1081.7743 230.02543,1082.0124 229.91518,1082.712 C 229.72027,1083.9486 230.41787,1084.4138 232.54953,1084.4687 L 234.32775,1084.5145 L 234.15543,1083.5696 C 234.06066,1083.0499 233.58892,1082.1195 233.10713,1081.5019 C 232.62534,1080.8843 232.23114,1080.114 232.23114,1079.7901 C 232.23114,1078.9482 231.61498,1078.5472 229.97634,1078.3226 C 229.07923,1078.1997 228.20914,1077.8329 227.64959,1077.3419 C 226.41838,1076.2616 226.53,1075.9625 227.89199,1076.6925 C 229.17148,1077.3783 230.71022,1077.5015 230.71022,1076.9182 C 230.71022,1076.7073 230.40223,1076.1872 230.0258,1075.7624 C 229.12914,1074.7506 228.58092,1073.7734 228.58092,1073.1871 C 228.58092,1072.6811 228.96553,1072.8988 230.00647,1073.9938 C 230.26507,1074.2658 230.70031,1074.4303 230.97367,1074.3594 C 231.27896,1074.2801 231.58802,1074.5 231.77487,1074.9294 C 232.077,1075.6237 235.00592,1077.0246 236.33413,1077.11 C 236.67067,1077.1317 237.24912,1077.4574 237.61957,1077.8338 L 238.29312,1078.5182 L 237.60436,1078.5182 C 237.22554,1078.5182 236.78556,1078.632 236.62663,1078.7711 C 236.46769,1078.9102 235.73339,1079.1962 234.99486,1079.4067 C 233.42173,1079.855 233.82401,1080.3921 235.52603,1080.1159 C 236.43089,1079.9691 236.56252,1080.0191 236.39819,1080.4474 C 236.26227,1080.8016 236.36714,1080.9517 236.75045,1080.9517 C 237.30644,1080.9517 238.61125,1082.1276 238.6286,1082.6443 C 238.63386,1082.8009 238.96767,1083.1685 239.37041,1083.4614 L 240.10265,1083.9938 L 240.31583,1082.5723 C 240.55272,1080.9926 240.28979,1076.1328 239.89077,1074.7159 L 239.63377,1073.8034 L 239.41681,1074.9441 C 239.29748,1075.5714 239.07225,1076.0847 238.9163,1076.0847 C 238.76035,1076.0847 237.84259,1075.6654 236.87683,1075.1529 C 235.12879,1074.2253 233.75646,1072.9306 233.75358,1072.2064 C 233.75137,1071.6504 232.81597,1071.7421 232.37783,1072.3413 C 232.0297,1072.8174 231.96362,1072.8188 231.50545,1072.3607 C 231.14903,1072.0042 231.10881,1071.8037 231.36234,1071.647 C 231.60738,1071.4956 231.5385,1071.2989 231.13653,1071.0022 C 230.59825,1070.6049 230.61693,1070.5858 231.40586,1070.7263 C 232.14868,1070.8587 232.27573,1070.7667 232.43249,1069.9829 C 232.66868,1068.8019 232.99825,1068.8402 232.99455,1070.0481 C 232.99287,1070.5972 233.17241,1071.0696 233.41418,1071.1522 C 233.6466,1071.2317 233.75528,1071.1649 233.6557,1071.0038 C 233.55612,1070.8426 233.67395,1070.7108 233.91755,1070.7108 C 234.16114,1070.7108 234.36044,1070.8249 234.36044,1070.9643 C 234.36044,1071.1037 234.67528,1071.2178 235.06007,1071.2178 C 235.44486,1071.2178 235.91367,1071.3717 236.10185,1071.5599 C 236.5131,1071.9712 239.22741,1071.6405 239.22741,1071.1791 C 239.22741,1070.4856 238.58855,1069.7276 238.14679,1069.8972 C 237.89216,1069.9949 237.39195,1069.8187 237.0352,1069.5056 C 236.48825,1069.0256 236.41513,1069.0149 236.56868,1069.4374 C 236.70702,1069.818 236.52923,1069.9708 235.82872,1070.0736 C 234.24532,1070.306 233.44789,1070.0151 233.44789,1069.2051 C 233.44789,1068.7804 233.63685,1068.4644 233.90416,1068.4421 C 234.49124,1068.3932 234.64651,1068.3477 235.65059,1067.9308 C 236.10922,1067.7404 236.72519,1067.6711 237.01943,1067.7769 C 237.42423,1067.9224 237.37292,1067.7701 236.80853,1067.151 C 236.3983,1066.701 235.88499,1066.4011 235.66783,1066.4844 C 235.45067,1066.5677 235.273,1066.4349 235.273,1066.1892 C 235.273,1065.4185 234.7677,1065.588 233.35857,1066.8315 C 233.15375,1067.0123 232.82485,1067.1064 232.62767,1067.0407 C 232.4305,1066.9749 231.97419,1067.2161 231.61366,1067.5767 C 231.22157,1067.9688 230.72498,1068.1712 230.37791,1068.0804 C 230.05877,1067.997 229.79759,1068.0185 229.7975,1068.1284 C 229.7974,1068.2382 229.21565,1068.328 228.50471,1068.328 C 227.79376,1068.328 227.14364,1068.4092 227.05999,1068.5083 C 226.97634,1068.6075 226.4288,1068.7797 225.84325,1068.8909 L 224.7786,1069.0932 L 225.69115,1068.4845 C 226.19306,1068.1497 226.42721,1067.8748 226.21149,1067.8737 C 225.89131,1067.8721 225.89131,1067.7913 226.21149,1067.4339 C 226.55205,1067.0537 226.6511,1067.0577 226.9635,1067.4641 C 227.69065,1068.41 231.2917,1067.1774 233.31341,1065.2907 C 233.80563,1064.8313 235.30342,1063.9315 236.64184,1063.2911 C 237.98025,1062.6507 240.17071,1061.534 241.50952,1060.8097 C 244.13995,1059.3865 244.28749,1059.3664 248.86852,1059.8094 C 251.33246,1060.0477 251.36336,1060.0421 251.54313,1059.3223 C 251.64315,1058.9218 251.68493,1057.5675 251.63596,1056.3127 L 251.54693,1054.0313 L 260.21622,1053.9501 C 267.74945,1053.8795 268.93062,1053.9305 269.22976,1054.3392 C 269.53133,1054.7513 269.59556,1054.7535 269.74772,1054.357 C 269.89266,1053.9793 270.6164,1053.9216 274.11834,1054.0089 C 276.42665,1054.0664 278.41971,1054.1292 278.54737,1054.1484 C 278.71915,1054.1743 278.67298,1149.1652 278.49239,1167.2644 L 278.46735,1169.7739 L 236.94602,1169.7739 L 195.42469,1169.7739 L 195.42469,1143.4619 z M 202.41026,1168.5772 C 202.82611,1167.8001 202.80796,1167.6446 202.30141,1167.6446 C 201.90285,1167.6446 201.5084,1168.2622 201.5084,1168.8862 C 201.5084,1169.3813 202.08581,1169.1834 202.41026,1168.5772 z M 204.76559,1166.9426 C 204.91182,1165.8506 204.68594,1165.9052 204.28373,1167.059 C 204.04193,1167.7526 204.04789,1167.9642 204.30681,1167.8779 C 204.49882,1167.8138 204.70527,1167.393 204.76559,1166.9426 z M 205.95078,1166.8144 C 205.8497,1166.7134 205.77781,1166.893 205.79101,1167.2137 C 205.80561,1167.568 205.87769,1167.6401 205.97479,1167.3975 C 206.06266,1167.1779 206.05186,1166.9155 205.95078,1166.8144 z M 203.6377,1166.3007 C 203.6377,1165.8961 203.71888,1165.3143 203.81811,1165.0079 C 203.94695,1164.6099 203.81847,1164.668 203.36859,1165.2111 C 202.6286,1166.1045 202.53304,1167.0362 203.18142,1167.0362 C 203.46121,1167.0362 203.6377,1166.7517 203.6377,1166.3007 z M 201.83586,1166.5039 C 201.94589,1165.4253 202.86405,1163.0821 203.17981,1163.074 C 203.348,1163.0697 203.73643,1162.5221 204.04298,1161.8572 C 204.34954,1161.1923 204.74212,1160.6483 204.91538,1160.6483 C 205.08865,1160.6483 205.69811,1160.2377 206.26975,1159.7358 C 206.84139,1159.2339 207.2093,1158.8232 207.08732,1158.8232 C 206.96535,1158.8232 207.32856,1158.4816 207.89445,1158.0641 C 208.46035,1157.6466 209.02878,1157.1344 209.15763,1156.926 C 209.32837,1156.6497 209.48286,1156.6379 209.72736,1156.8824 C 210.28427,1157.4393 211.94123,1156.9142 212.44197,1156.022 C 212.90521,1155.1967 212.91339,1155.2388 211.85255,1152.9911 C 211.46094,1152.1613 211.64371,1150.6102 212.13309,1150.6102 C 212.67882,1150.6102 211.26061,1148.2827 210.50513,1147.9385 C 209.81567,1147.6244 209.67075,1147.6671 209.25048,1148.3085 C 208.98915,1148.7073 208.38958,1150.4492 207.91809,1152.1794 C 207.04865,1155.3698 206.22859,1157.4314 205.53886,1158.1605 C 205.32973,1158.3816 205.15863,1158.7197 205.15863,1158.9118 C 205.15863,1159.3326 203.39666,1160.8863 202.64576,1161.1276 C 202.02496,1161.3272 201.37269,1162.488 201.05623,1163.9564 C 200.88606,1164.746 200.92378,1164.9282 201.2196,1164.7453 C 201.60977,1164.5042 201.55539,1164.982 201.05409,1166.1997 C 200.89886,1166.5768 200.97752,1166.7321 201.32376,1166.7321 C 201.59262,1166.7321 201.82306,1166.6294 201.83586,1166.5039 z M 256.9,1163.4466 C 256.71629,1163.3854 256.56599,1163.0045 256.56599,1162.6002 C 256.56599,1162.1496 256.38942,1161.8651 256.10971,1161.8651 C 255.85876,1161.8651 255.65343,1162.0704 255.65343,1162.3214 C 255.65343,1162.5723 255.79032,1162.7776 255.95762,1162.7776 C 256.12492,1162.7776 256.26181,1162.9056 256.26181,1163.062 C 256.26181,1163.2184 256.42313,1163.7317 256.62029,1164.2027 L 256.97879,1165.059 L 257.10639,1164.3085 C 257.17658,1163.8957 257.0837,1163.5079 256.9,1163.4466 z M 255.17244,1163.2792 C 255.06732,1163.0053 254.86014,1162.856 254.71203,1162.9476 C 254.56393,1163.0391 254.61249,1163.2983 254.81995,1163.5235 C 255.28662,1164.0302 255.42406,1163.9349 255.17244,1163.2792 z M 253.84341,1161.2849 C 253.64209,1160.9087 253.33356,1160.7406 253.04672,1160.8506 C 252.65348,1161.0015 252.68976,1161.1486 253.27346,1161.77 C 254.02662,1162.5717 254.37389,1162.2761 253.84341,1161.2849 z M 256.12016,1159.7532 C 256.05186,1158.8828 255.34925,1158.5049 255.34925,1159.3386 C 255.34925,1159.6499 255.13599,1160.2091 254.87535,1160.5812 C 254.18296,1161.5697 254.65077,1162.0396 255.48662,1161.1952 C 255.88427,1160.7935 256.15368,1160.1803 256.12016,1159.7532 z M 253.52413,1158.5563 C 253.52413,1158.4095 253.31881,1158.1189 253.06786,1157.9107 C 252.57258,1157.4996 252.51067,1157.5979 252.79622,1158.3421 C 252.99167,1158.8514 253.52413,1159.0081 253.52413,1158.5563 z M 255.95762,1158.1969 C 255.95762,1158.0197 255.82074,1157.9594 255.65343,1158.0628 C 255.48613,1158.1662 255.34925,1158.3111 255.34925,1158.3849 C 255.34925,1158.4587 255.48613,1158.519 255.65343,1158.519 C 255.82074,1158.519 255.95762,1158.3741 255.95762,1158.1969 z M 248.46935,1155.7761 C 248.29912,1155.6058 247.70724,1155.3368 247.15405,1155.1781 C 246.16755,1154.8952 246.15863,1154.9011 246.68939,1155.4876 C 246.98701,1155.8165 247.5789,1156.0856 248.00468,1156.0856 C 248.52964,1156.0856 248.67921,1155.9859 248.46935,1155.7761 z M 254.49373,1155.5736 C 254.27414,1155.4857 254.01178,1155.4965 253.9107,1155.5976 C 253.80962,1155.6987 253.98929,1155.7706 254.30995,1155.7574 C 254.66431,1155.7428 254.73638,1155.6707 254.49373,1155.5736 z M 245.9195,1154.9784 C 245.9195,1154.6331 244.87128,1153.9759 244.30457,1153.9659 C 244.00192,1153.9606 243.83003,1153.8337 243.92259,1153.6839 C 244.01515,1153.5342 243.88635,1153.3331 243.63636,1153.2372 C 243.03391,1153.006 243.0532,1152.4353 243.66345,1152.4353 C 244.4536,1152.4353 243.96141,1151.6827 243.10458,1151.5808 C 242.66964,1151.529 242.13267,1151.2671 241.9113,1150.9986 C 241.55244,1150.5635 241.58083,1150.549 242.17322,1150.8646 C 242.53866,1151.0593 243.20481,1151.2186 243.65357,1151.2186 C 244.36192,1151.2186 244.45014,1151.3198 244.32273,1151.9863 C 244.15385,1152.8697 244.54368,1153.2739 244.91855,1152.6041 C 245.1898,1152.1194 246.52787,1152.2764 246.52787,1152.7929 C 246.52787,1152.9506 246.66475,1152.995 246.83205,1152.8916 C 246.99935,1152.7882 247.13624,1152.8486 247.13624,1153.0257 C 247.13624,1153.2029 247.53548,1153.3479 248.02345,1153.3479 C 248.51141,1153.3479 248.95628,1153.477 249.01205,1153.6348 C 249.06782,1153.7925 249.79786,1154.0983 250.63437,1154.3141 C 251.47088,1154.53 252.23156,1154.8111 252.32477,1154.9389 C 252.59244,1155.3057 254.149,1154.4559 253.98923,1154.0301 C 253.88131,1153.7425 254.16417,1153.6962 255.12981,1153.8435 C 255.83606,1153.9512 256.585,1154.1743 256.79413,1154.3392 C 257.0658,1154.5535 257.17436,1154.4961 257.17436,1154.1381 C 257.17436,1153.1865 254.84119,1152.8521 253.67623,1153.6366 C 253.29601,1153.8927 251.8776,1153.8447 250.48228,1153.5286 C 248.118,1152.993 242.14556,1149.442 234.81672,1144.2144 C 231.62849,1141.9403 229.46543,1140.9211 226.04381,1140.0806 C 224.34413,1139.6631 222.54283,1139.1675 222.04093,1138.9791 C 220.34126,1138.3413 216.92637,1136.1645 216.78627,1135.6295 C 216.69607,1135.2852 215.99971,1134.9071 214.81083,1134.557 C 213.20117,1134.0829 213.02871,1133.9609 213.41269,1133.5679 C 213.88646,1133.0829 215.19675,1131.0196 215.19675,1130.7585 C 215.19675,1130.4429 212.57986,1131.179 211.01819,1131.934 C 210.14205,1132.3576 209.28531,1132.6176 209.11431,1132.512 C 208.09398,1131.8814 206.44832,1134.2696 205.72926,1137.4244 C 205.41234,1138.8149 205.43764,1139.1039 205.9536,1139.9874 C 206.52841,1140.9716 208.13894,1142.1334 208.58072,1141.8825 C 208.70619,1141.8112 208.80885,1141.9454 208.80885,1142.1806 C 208.80885,1142.4158 209.07027,1142.9097 209.38978,1143.2781 L 209.97071,1143.9479 L 210.17365,1143.024 C 210.42632,1141.8736 210.80948,1141.6167 211.39677,1142.204 C 211.88836,1142.6956 211.9861,1143.027 211.62257,1142.9696 C 210.88541,1142.8532 210.32978,1143.0647 210.32978,1143.4619 C 210.32978,1143.7128 210.46667,1143.9181 210.63397,1143.9181 C 210.80127,1143.9181 210.93815,1143.7813 210.93815,1143.6139 C 210.93815,1143.4466 211.07504,1143.3098 211.24234,1143.3098 C 211.40964,1143.3098 211.54653,1143.5125 211.54653,1143.7602 C 211.54653,1144.2795 212.9519,1144.6864 214.2842,1144.5529 C 214.68978,1144.5122 214.68978,1144.4652 214.2842,1144.1296 C 214.03324,1143.9219 213.67841,1143.4814 213.49567,1143.1507 C 213.31294,1142.8199 212.79963,1142.3707 212.35498,1142.1525 C 211.91033,1141.9342 211.54653,1141.6153 211.54653,1141.4439 C 211.54653,1141.253 211.17807,1141.2131 210.59591,1141.3409 C 209.935,1141.4861 209.70872,1141.4471 209.8534,1141.213 C 209.96786,1141.0278 210.29297,1140.8719 210.57587,1140.8666 C 211.03687,1140.8579 211.03184,1140.8127 210.52746,1140.4306 C 209.84262,1139.9117 210.13638,1139.2354 210.88057,1139.6176 C 211.16319,1139.7628 211.56554,1139.8202 211.77466,1139.7452 C 211.98379,1139.6702 212.1549,1139.8256 212.1549,1140.0905 C 212.1549,1140.3554 212.39821,1140.5721 212.69558,1140.5721 C 213.71404,1140.5721 214.54778,1141.4416 214.64634,1142.6064 C 214.69811,1143.2183 214.91266,1143.7756 215.12312,1143.8447 C 215.41874,1143.9419 215.4332,1143.7796 215.18667,1143.1311 C 214.94086,1142.4846 214.96581,1142.1936 215.29529,1141.8641 C 215.6628,1141.4966 215.81444,1141.5526 216.37244,1142.262 C 216.72962,1142.7161 217.02187,1143.2831 217.02187,1143.522 C 217.02187,1143.7609 217.26141,1143.932 217.55419,1143.9022 C 218.52216,1143.8038 218.77446,1143.9121 218.92597,1144.4915 C 219.03926,1144.9248 219.27096,1145.0276 219.874,1144.9123 C 220.74553,1144.7457 220.83759,1144.4916 220.35384,1143.5877 C 219.96436,1142.8599 220.22149,1142.3601 220.85943,1142.6049 C 221.20748,1142.7385 221.23464,1142.8459 220.96281,1143.0139 C 220.75792,1143.1405 220.69836,1143.4104 220.82874,1143.6213 C 220.99973,1143.898 221.21463,1143.8041 221.62141,1143.2751 C 221.92836,1142.8759 222.18254,1142.7019 222.18626,1142.8883 C 222.20683,1143.9197 226.9141,1147.2741 227.67819,1146.8018 C 227.84265,1146.7002 228.2069,1146.8467 228.48764,1147.1274 C 228.96541,1147.6052 229.01339,1147.5964 229.23778,1146.9898 L 229.47751,1146.3418 L 230.24596,1147.0099 C 230.6686,1147.3774 231.0144,1147.8441 231.0144,1148.047 C 231.0144,1148.5576 230.0687,1148.8736 229.68596,1148.4909 C 229.16801,1147.9729 228.83662,1148.1338 228.93999,1148.853 C 229.01588,1149.3809 229.25446,1149.5399 230.02792,1149.578 C 230.57281,1149.6048 231.18879,1149.7637 231.39675,1149.9312 C 231.60471,1150.0987 232.25396,1150.332 232.83952,1150.4497 C 233.42507,1150.5674 234.65702,1150.9146 235.57719,1151.2214 C 236.49735,1151.5282 237.93462,1151.9873 238.77113,1152.2416 C 239.60764,1152.4958 241.11336,1153.0783 242.11718,1153.5359 C 243.12099,1153.9936 244.03182,1154.3482 244.14125,1154.3239 C 244.25068,1154.2997 244.50699,1154.4808 244.71082,1154.7264 C 245.08074,1155.1722 245.9195,1155.347 245.9195,1154.9784 z M 240.13997,1151.5228 C 240.13997,1151.3555 240.27685,1151.2186 240.44415,1151.2186 C 240.61146,1151.2186 240.74834,1151.3555 240.74834,1151.5228 C 240.74834,1151.6901 240.61146,1151.827 240.44415,1151.827 C 240.27685,1151.827 240.13997,1151.6901 240.13997,1151.5228 z M 238.92323,1150.9144 C 238.92323,1150.7471 238.53539,1150.6102 238.06137,1150.6102 C 237.58734,1150.6102 237.09685,1150.5076 236.97137,1150.3821 C 236.74352,1150.1542 236.58824,1150.1115 235.72928,1150.0399 C 235.19393,1149.9953 235.07767,1148.1767 235.61016,1148.1767 C 235.81563,1148.1767 235.87462,1148.4664 235.76118,1148.9184 C 235.58912,1149.6039 235.67956,1149.6757 236.95593,1149.8671 C 238.21719,1150.0563 240.1923,1151.1848 239.30346,1151.2085 C 239.09433,1151.214 238.92323,1151.0817 238.92323,1150.9144 z M 233.9778,1149.6719 C 233.6837,1149.5007 233.3063,1149.4451 233.13914,1149.5484 C 232.7288,1149.802 232.41795,1148.9145 232.68535,1148.2528 C 232.87646,1147.7798 232.92988,1147.7968 233.16437,1148.4049 C 233.30952,1148.7813 233.62337,1149.0893 233.86182,1149.0893 C 234.10026,1149.0893 234.37414,1149.2946 234.47045,1149.5456 C 234.67476,1150.078 234.67499,1150.078 233.9778,1149.6719 z M 231.62277,1148.3468 C 231.62277,1147.8125 231.8053,1147.7338 232.06606,1148.1557 C 232.16232,1148.3115 232.10195,1148.5249 231.93192,1148.6299 C 231.76189,1148.735 231.62277,1148.6076 231.62277,1148.3468 z M 233.98021,1148.2795 C 234.18934,1148.1951 234.53155,1148.1951 234.74068,1148.2795 C 234.9498,1148.3638 234.7787,1148.4329 234.36044,1148.4329 C 233.94219,1148.4329 233.77108,1148.3638 233.98021,1148.2795 z M 212.1549,1143.784 C 212.1549,1143.7102 212.29178,1143.5653 212.45908,1143.4619 C 212.62638,1143.3585 212.76327,1143.4188 212.76327,1143.596 C 212.76327,1143.7732 212.62638,1143.9181 212.45908,1143.9181 C 212.29178,1143.9181 212.1549,1143.8578 212.1549,1143.784 z M 214.69335,1140.7111 C 214.42454,1140.0106 214.66836,1139.9721 215.32602,1140.6113 C 215.85125,1141.1218 215.8581,1141.1805 215.39252,1141.1805 C 215.10704,1141.1805 214.79242,1140.9692 214.69335,1140.7111 z M 216.16014,1152.4904 C 216.88504,1152.1861 218.27584,1151.7632 219.25081,1151.5508 C 220.22578,1151.3383 220.95124,1151.0922 220.86295,1151.0039 C 220.77465,1150.9156 219.33321,1150.6653 217.65975,1150.4476 C 215.98628,1150.23 214.30264,1149.9552 213.91831,1149.837 C 213.53399,1149.7188 213.32251,1149.7306 213.44835,1149.8633 C 213.57419,1149.996 213.44739,1150.3585 213.16656,1150.6688 C 212.77513,1151.1013 212.73948,1151.3165 213.0138,1151.5908 C 213.21061,1151.7876 213.37164,1152.195 213.37164,1152.4962 C 213.37164,1153.2164 214.43595,1153.2142 216.16014,1152.4904 z M 228.58092,1148.9155 C 228.58092,1148.5432 227.70382,1147.893 226.94464,1147.7025 C 225.84047,1147.4254 225.95793,1147.9188 227.14294,1148.5356 C 228.20459,1149.0881 228.58092,1149.1876 228.58092,1148.9155 z M 224.32232,1147.8725 C 224.32232,1147.7052 224.18544,1147.5684 224.01813,1147.5684 C 223.85083,1147.5684 223.71395,1147.7052 223.71395,1147.8725 C 223.71395,1148.0398 223.85083,1148.1767 224.01813,1148.1767 C 224.18544,1148.1767 224.32232,1148.0398 224.32232,1147.8725 z M 225.7672,1147.4923 C 225.62366,1147.0617 225.1345,1147.109 224.98139,1147.5684 C 224.92562,1147.7357 225.10813,1147.8725 225.38697,1147.8725 C 225.66581,1147.8725 225.83691,1147.7014 225.7672,1147.4923 z M 218.23861,1144.5265 C 218.23861,1144.3592 218.03328,1144.2223 217.78233,1144.2223 C 217.53138,1144.2223 217.32605,1144.3592 217.32605,1144.5265 C 217.32605,1144.6938 217.53138,1144.8307 217.78233,1144.8307 C 218.03328,1144.8307 218.23861,1144.6938 218.23861,1144.5265 z M 241.81299,1136.3135 C 241.70959,1136.1462 241.56463,1136.0093 241.49085,1136.0093 C 241.41707,1136.0093 241.35671,1136.1462 241.35671,1136.3135 C 241.35671,1136.4808 241.50167,1136.6177 241.67885,1136.6177 C 241.85603,1136.6177 241.91639,1136.4808 241.81299,1136.3135 z M 238.46695,1135.7051 C 238.36355,1135.5378 238.14207,1135.4009 237.97477,1135.4009 C 237.80747,1135.4009 237.75518,1135.5378 237.85858,1135.7051 C 237.96198,1135.8724 238.18346,1136.0093 238.35076,1136.0093 C 238.51806,1136.0093 238.57035,1135.8724 238.46695,1135.7051 z M 251.73615,1134.8914 C 251.37757,1134.2748 251.29097,1134.4722 251.58451,1135.2371 C 251.68882,1135.5089 251.83826,1135.6673 251.91657,1135.589 C 251.99489,1135.5106 251.9137,1135.1968 251.73615,1134.8914 z M 237.235,1135.1309 C 237.07606,1134.9824 236.60381,1134.7714 236.18556,1134.662 L 235.42509,1134.463 L 236.18556,1134.9212 C 237.03308,1135.4318 237.69963,1135.5651 237.235,1135.1309 z M 240.74834,1134.4704 C 240.74834,1134.313 240.61146,1134.1842 240.44415,1134.1842 C 240.27685,1134.1842 240.13997,1134.3976 240.13997,1134.6584 C 240.13997,1134.9193 240.27685,1135.0481 240.44415,1134.9447 C 240.61146,1134.8413 240.74834,1134.6279 240.74834,1134.4704 z M 235.12091,1134.1842 C 235.01751,1134.0169 234.76988,1133.8821 234.57063,1133.8847 C 234.35295,1133.8875 234.39047,1134.007 234.66463,1134.1842 C 235.24901,1134.5619 235.35431,1134.5619 235.12091,1134.1842 z M 252.61158,1133.4491 C 252.61158,1133.2121 252.78268,1132.9383 252.99181,1132.8407 C 253.29477,1132.6993 253.29506,1132.6273 252.99327,1132.4863 C 252.73406,1132.3652 252.9021,1132.0218 253.5256,1131.3983 C 254.0267,1130.8972 254.4346,1130.3266 254.43203,1130.1303 C 254.42859,1129.8666 254.36907,1129.8639 254.2039,1130.1201 C 254.04491,1130.3666 253.8516,1130.328 253.5341,1129.9861 C 253.13854,1129.5602 253.14719,1129.5284 253.61015,1129.7061 C 253.92701,1129.8276 254.13434,1129.7607 254.13716,1129.5358 C 254.1401,1129.3023 254.2492,1129.3339 254.43207,1129.6214 C 254.67206,1129.9987 254.82926,1130.0114 255.33997,1129.6949 C 255.83631,1129.3873 255.95572,1129.3873 255.94795,1129.6949 C 255.9331,1130.2823 255.16806,1131.161 254.89047,1130.9095 C 254.75488,1130.7866 254.72472,1130.9121 254.82345,1131.1884 C 254.94082,1131.5168 254.80998,1131.7412 254.44556,1131.8365 C 254.07291,1131.934 253.90345,1132.2367 253.93429,1132.7499 C 253.99074,1133.6893 254.25329,1133.5515 255.16222,1132.1054 C 256.56141,1129.8792 257.73742,1124.2258 256.90795,1123.7131 C 256.66685,1123.5641 256.56599,1124.15 256.56599,1125.6997 C 256.56599,1126.9086 256.46333,1127.795 256.33785,1127.6696 C 256.09683,1127.4285 256.05668,1127.2628 255.99564,1126.2574 C 255.97473,1125.9129 255.84021,1125.7037 255.6967,1125.7924 C 255.5532,1125.881 255.46251,1125.3122 255.49517,1124.5282 C 255.52783,1123.7442 255.37034,1122.4907 255.1452,1121.7426 C 254.92006,1120.9946 254.81465,1120.1342 254.91096,1119.8308 C 255.01986,1119.4877 254.93457,1119.2809 254.68533,1119.2838 C 254.14964,1119.29 253.23613,1119.8765 253.75227,1119.8828 C 253.9614,1119.8854 254.13251,1120.0158 254.13251,1120.1726 C 254.13251,1120.3294 253.56894,1120.4499 252.88013,1120.4404 C 252.19133,1120.4309 251.54113,1120.5627 251.43525,1120.7333 C 251.18274,1121.1401 250.49478,1121.2233 249.64577,1120.9496 C 248.83803,1120.6893 248.72646,1119.896 249.49368,1119.8682 C 249.90153,1119.8534 249.86597,1119.7846 249.34158,1119.5738 C 248.96515,1119.4225 248.65717,1119.1493 248.65717,1118.9668 C 248.65717,1118.7842 248.79405,1118.7194 248.96135,1118.8228 C 249.41048,1119.1004 249.33114,1118.1998 248.79301,1116.9119 C 248.53311,1116.2899 248.36201,1115.7547 248.41277,1115.7227 C 248.66055,1115.5662 245.94833,1112.3988 244.52611,1111.1838 C 243.42726,1110.245 242.97171,1109.654 243.09645,1109.3289 C 243.23242,1108.9746 244.00679,1109.6204 246.10661,1111.8395 C 248.47768,1114.3452 249.0452,1115.143 249.62487,1116.785 C 250.00501,1117.8617 250.48953,1118.8093 250.70159,1118.8907 C 250.91365,1118.9721 251.01142,1119.1612 250.91886,1119.311 C 250.82629,1119.4607 250.89552,1119.5833 251.0727,1119.5833 C 251.55453,1119.5833 251.46095,1118.935 250.82971,1117.8998 C 250.52014,1117.3922 250.17364,1116.3553 250.05973,1115.5956 C 249.88547,1114.4336 249.54717,1113.9042 247.9282,1112.26 C 246.86978,1111.1851 245.53996,1109.9333 244.97305,1109.4783 C 244.40613,1109.0233 244.10362,1108.6469 244.30079,1108.6418 C 244.49797,1108.6368 244.84687,1108.8202 245.07613,1109.0494 C 245.30539,1109.2787 245.94131,1109.6981 246.48928,1109.9815 C 247.03725,1110.2649 248.15035,1111.2047 248.96282,1112.0699 C 249.7753,1112.9352 250.53248,1113.5508 250.64545,1113.4378 C 250.87742,1113.2058 248.99635,1110.4577 248.6056,1110.4577 C 248.46666,1110.4577 248.35298,1110.2604 248.35298,1110.0193 C 248.35298,1109.7781 247.52924,1109.1418 246.52244,1108.6052 C 245.51565,1108.0686 244.73957,1107.5818 244.79784,1107.5236 C 244.8561,1107.4653 245.54376,1107.6357 246.32596,1107.9022 C 247.80622,1108.4066 248.39343,1108.9303 250.47015,1111.5984 C 251.15381,1112.4768 251.84687,1113.1954 252.01028,1113.1954 C 252.59889,1113.1954 252.2889,1112.3791 251.3677,1111.5032 C 250.85087,1111.0119 250.08997,1110.0365 249.67683,1109.3359 C 249.02859,1108.2365 248.65938,1107.9733 246.98275,1107.4154 C 244.04286,1106.4371 242.55506,1104.9824 244.49436,1104.9824 C 245.24288,1104.9824 245.55063,1104.4167 246.86569,1100.6237 C 247.31981,1099.3138 247.77178,1098.1617 247.87008,1098.0634 C 247.96837,1097.9651 248.04879,1097.7136 248.04879,1097.5044 C 248.04879,1097.2952 248.34597,1096.4624 248.70918,1095.6539 C 249.38461,1094.1503 250.16531,1092.1602 250.17351,1091.9211 C 250.17603,1091.8477 249.89899,1092.0873 249.55787,1092.4534 C 248.73159,1093.3403 248.21737,1093.3047 248.80915,1092.4015 C 249.06775,1092.0069 249.19315,1091.4593 249.0878,1091.1848 C 248.93511,1090.7869 249.10336,1090.6779 249.91741,1090.6476 C 250.84574,1090.613 250.81414,1090.5874 249.56972,1090.3659 C 247.62901,1090.0206 245.65666,1090.0165 246.19758,1090.3589 C 246.43417,1090.5087 247.06557,1090.5601 247.60068,1090.4733 C 248.46161,1090.3336 248.59108,1090.4068 248.7253,1091.1089 C 248.8287,1091.6498 248.74516,1091.9024 248.46289,1091.9024 C 248.23514,1091.9024 248.04879,1092.1603 248.04879,1092.4754 C 248.04879,1092.939 247.8601,1093.0298 247.06019,1092.9511 C 246.51646,1092.8976 245.96893,1092.8451 245.84345,1092.8344 C 245.71797,1092.8237 245.64423,1092.7123 245.67957,1092.5868 C 245.71492,1092.4613 245.64746,1091.9016 245.52966,1091.343 C 245.31779,1090.3381 245.30162,1090.3296 244.02052,1090.5424 C 242.26095,1090.8348 241.23041,1091.4078 240.24657,1092.6408 C 238.64515,1094.6478 238.3504,1095.9038 238.33185,1100.7998 C 238.31985,1103.9674 238.21205,1105.2866 237.96519,1105.2866 C 237.77287,1105.2866 236.15478,1105.957 234.36943,1106.7765 C 231.00129,1108.3224 228.96472,1108.9595 225.45193,1109.566 C 223.61527,1109.8831 223.33441,1110.0253 222.9053,1110.8551 C 222.3247,1111.9778 222.47379,1114.9683 223.18996,1116.5648 C 223.44686,1117.1375 223.84095,1118.2221 224.06573,1118.9749 C 224.41431,1120.1424 224.60395,1120.3585 225.35519,1120.4443 C 225.88499,1120.5047 226.55539,1120.3086 227.03754,1119.9522 C 227.47841,1119.6262 228.43216,1119.057 229.157,1118.6872 C 229.88183,1118.3174 231.07536,1117.397 231.80929,1116.6419 C 232.54322,1115.8867 233.1437,1115.4487 233.1437,1115.6686 C 233.1437,1115.9213 233.38135,1115.8306 233.7901,1115.4219 C 234.14561,1115.0663 234.43649,1114.4199 234.43649,1113.9854 C 234.43649,1113.4918 234.60488,1113.1954 234.88525,1113.1954 C 235.13207,1113.1954 235.95881,1112.5794 236.72246,1111.8266 C 237.63998,1110.922 238.37763,1110.4561 238.8973,1110.4531 C 239.51991,1110.4494 239.58866,1110.3861 239.22741,1110.1493 C 238.90582,1109.9385 239.0854,1109.9068 239.83578,1110.0421 C 240.42134,1110.1476 241.03732,1110.3729 241.20462,1110.5427 C 241.40937,1110.7505 241.33479,1110.7902 240.97648,1110.6641 C 240.17021,1110.3804 240.32868,1110.6869 241.58485,1111.8406 C 242.21223,1112.4168 242.99931,1112.8945 243.33392,1112.9021 C 244.1291,1112.9201 247.18677,1115.2959 247.64601,1116.2526 C 247.84274,1116.6624 248.10278,1117.4084 248.22389,1117.9103 L 248.44407,1118.8228 L 247.78829,1118.2417 C 247.42761,1117.922 247.0478,1117.7452 246.94426,1117.8488 C 246.57739,1118.2156 246.76303,1119.6112 247.25031,1120.1496 C 247.52217,1120.4501 247.74461,1120.835 247.74461,1121.005 C 247.74461,1121.4859 248.82862,1122.3495 249.11085,1122.0935 C 249.24957,1121.9676 249.2609,1122.0418 249.13603,1122.2582 C 249.01115,1122.4747 249.05813,1122.8315 249.24043,1123.0512 C 249.55148,1123.426 249.93394,1125.8487 249.9343,1127.4466 C 249.93442,1127.9668 250.02567,1128.0704 250.26921,1127.8269 C 250.77256,1127.3235 251.09065,1127.4225 251.09065,1128.0825 C 251.09065,1128.4073 251.22753,1128.7575 251.39484,1128.8609 C 251.79219,1129.1065 251.78686,1130.1396 251.38697,1130.3867 C 251.21534,1130.4928 250.92818,1130.1587 250.74884,1129.6442 C 250.5695,1129.1298 250.29005,1128.7089 250.12784,1128.7089 C 249.73378,1128.7089 250.12437,1129.9348 250.74231,1130.6374 C 251.01305,1130.9453 251.2364,1131.3559 251.23865,1131.55 C 251.24493,1132.0916 252.12226,1133.88 252.38165,1133.88 C 252.50811,1133.88 252.61158,1133.6861 252.61158,1133.4491 z M 252.21233,1131.2501 C 251.81565,1130.8534 252.00503,1130.534 252.63693,1130.534 C 252.99092,1130.534 253.2175,1130.6934 253.15024,1130.8952 C 253.00207,1131.3397 252.49415,1131.5319 252.21233,1131.2501 z M 252.30739,1128.843 C 252.30739,1128.5822 252.44428,1128.4534 252.61158,1128.5568 C 252.77888,1128.6602 252.91576,1128.8736 252.91576,1129.031 C 252.91576,1129.1884 252.77888,1129.3172 252.61158,1129.3172 C 252.44428,1129.3172 252.30739,1129.1038 252.30739,1128.843 z M 255.83076,1129.0539 C 255.69972,1128.8418 255.67466,1128.5862 255.77507,1128.4858 C 256.0473,1128.2136 256.34413,1128.614 256.19709,1129.0551 C 256.09406,1129.3642 256.02241,1129.364 255.83076,1129.0539 z M 251.09065,1122.9198 C 251.09065,1122.7577 251.29598,1122.6251 251.54693,1122.6251 C 251.79788,1122.6251 252.00321,1122.6789 252.00321,1122.7447 C 252.00321,1122.8104 251.79788,1122.943 251.54693,1123.0393 C 251.29598,1123.1356 251.09065,1123.0818 251.09065,1122.9198 z M 254.15652,1121.2817 C 254.14331,1120.961 254.2152,1120.7813 254.31629,1120.8824 C 254.41736,1120.9835 254.42817,1121.2459 254.3403,1121.4654 C 254.2432,1121.7081 254.17112,1121.636 254.15652,1121.2817 z M 242.72555,1112.2828 C 242.62215,1112.1155 242.68251,1111.9786 242.85969,1111.9786 C 243.03686,1111.9786 243.18183,1112.1155 243.18183,1112.2828 C 243.18183,1112.4501 243.12146,1112.587 243.04769,1112.587 C 242.97391,1112.587 242.82895,1112.4501 242.72555,1112.2828 z M 241.4909,1108.7944 C 241.16614,1108.5487 241.05478,1108.3434 241.24342,1108.3381 C 241.43206,1108.3328 241.75681,1108.5337 241.96508,1108.7847 C 242.44594,1109.3641 242.24944,1109.3681 241.4909,1108.7944 z M 245.00694,1102.3968 C 245.00694,1102.1458 245.12101,1101.9405 245.26043,1101.9405 C 245.39985,1101.9405 245.51392,1102.1458 245.51392,1102.3968 C 245.51392,1102.6478 245.39985,1102.8531 245.26043,1102.8531 C 245.12101,1102.8531 245.00694,1102.6478 245.00694,1102.3968 z M 243.69707,1102.3544 C 243.59008,1102.2474 243.57673,1102.0398 243.66739,1101.8931 C 243.86182,1101.5785 244.39857,1101.8498 244.39857,1102.2627 C 244.39857,1102.5897 243.98629,1102.6436 243.69707,1102.3544 z M 246.83205,1097.852 C 246.83205,1097.7782 246.96894,1097.6332 247.13624,1097.5298 C 247.30354,1097.4264 247.44042,1097.4868 247.44042,1097.664 C 247.44042,1097.8411 247.30354,1097.9861 247.13624,1097.9861 C 246.96894,1097.9861 246.83205,1097.9257 246.83205,1097.852 z M 246.83205,1095.7227 C 246.83205,1095.4618 246.96894,1095.2484 247.13624,1095.2484 C 247.30354,1095.2484 247.44042,1095.3772 247.44042,1095.5347 C 247.44042,1095.6921 247.30354,1095.9055 247.13624,1096.0089 C 246.96894,1096.1123 246.83205,1095.9835 246.83205,1095.7227 z M 247.44042,1094.9443 C 247.44042,1094.777 247.57731,1094.6401 247.74461,1094.6401 C 247.91191,1094.6401 248.04879,1094.777 248.04879,1094.9443 C 248.04879,1095.1116 247.91191,1095.2484 247.74461,1095.2484 C 247.57731,1095.2484 247.44042,1095.1116 247.44042,1094.9443 z M 246.88008,1094.3359 C 246.88008,1093.9176 246.94912,1093.7465 247.03351,1093.9557 C 247.11789,1094.1648 247.11789,1094.507 247.03351,1094.7161 C 246.94912,1094.9252 246.88008,1094.7541 246.88008,1094.3359 z M 242.07483,1092.0918 C 241.80272,1091.781 241.95459,1091.6142 242.78202,1091.315 C 243.36157,1091.1055 243.91292,1091.0112 244.00725,1091.1055 C 244.10158,1091.1998 243.80933,1091.4175 243.3578,1091.5891 C 242.90628,1091.7608 242.6216,1092.0384 242.72519,1092.206 C 242.99862,1092.6484 242.48287,1092.5579 242.07483,1092.0918 z M 244.40322,1091.3701 C 244.40066,1090.9936 244.53545,1090.6857 244.70275,1090.6857 C 245.08387,1090.6857 245.08387,1091.0085 244.70275,1091.5982 C 244.46431,1091.9672 244.40699,1091.9235 244.40322,1091.3701 z M 233.85511,1132.7972 C 233.73457,1132.4831 233.88487,1132.2674 234.29989,1132.1589 C 235.12142,1131.944 235.2591,1131.4671 234.76891,1130.534 L 234.36941,1129.7735 L 234.31924,1130.6861 C 234.28153,1131.3721 234.22156,1131.2588 234.07768,1130.2298 C 233.97242,1129.4769 234.01249,1128.6865 234.16672,1128.4734 C 234.32095,1128.2602 234.35691,1127.9956 234.24663,1127.8853 C 233.81492,1127.4536 233.38886,1128.4194 233.22789,1130.1946 C 233.13511,1131.2178 232.97175,1132.0549 232.86487,1132.0549 C 232.45511,1132.0549 231.57139,1130.7535 231.85709,1130.5708 C 232.27089,1130.3062 232.49687,1128.0874 232.19387,1127.264 C 231.85637,1126.3468 231.31859,1126.3935 231.31859,1127.34 C 231.31859,1127.923 231.15884,1128.1027 230.63417,1128.1102 C 229.98917,1128.1193 229.98145,1128.1439 230.50028,1128.5372 C 231.1376,1129.0204 230.68798,1129.4792 229.85914,1129.1913 C 229.38891,1129.0281 229.39025,1129.0496 229.87371,1129.4261 C 230.16648,1129.654 230.40603,1129.9339 230.40603,1130.048 C 230.40603,1130.3144 230.91782,1130.9543 232.16063,1132.2418 C 233.20008,1133.3186 234.17821,1133.6392 233.85511,1132.7972 z M 233.51846,1130.534 C 233.51846,1129.9484 233.58106,1129.7089 233.65757,1130.0016 C 233.73408,1130.2944 233.73408,1130.7735 233.65757,1131.0663 C 233.58106,1131.3591 233.51846,1131.1195 233.51846,1130.534 z M 231.21719,1130.027 C 231.10566,1129.9155 231.0144,1129.6828 231.0144,1129.5099 C 231.0144,1129.3193 231.15608,1129.3372 231.37435,1129.5555 C 231.57233,1129.7535 231.66359,1129.9862 231.57715,1130.0726 C 231.4907,1130.1591 231.32873,1130.1385 231.21719,1130.027 z M 245.31112,1130.534 C 245.31112,1130.3667 245.17424,1130.2298 245.00694,1130.2298 C 244.83964,1130.2298 244.70275,1130.3667 244.70275,1130.534 C 244.70275,1130.7013 244.83964,1130.8382 245.00694,1130.8382 C 245.17424,1130.8382 245.31112,1130.7013 245.31112,1130.534 z M 229.18929,1127.8345 C 229.18929,1127.6883 228.99003,1127.0039 228.7465,1126.3136 C 228.50297,1125.6234 228.42312,1125.0586 228.56906,1125.0586 C 228.715,1125.0586 228.96676,1125.4351 229.12852,1125.8951 C 229.40027,1126.668 229.44043,1126.6854 229.65639,1126.1233 C 229.78495,1125.7887 230.10887,1125.2518 230.37622,1124.9303 C 230.77346,1124.4525 230.77891,1124.3954 230.40603,1124.6176 C 229.41869,1125.2059 229.11423,1125.0537 229.31092,1124.0702 C 229.55167,1122.8665 229.61818,1122.8119 230.35998,1123.2089 C 230.69792,1123.3897 231.25717,1123.5377 231.60278,1123.5377 C 232.13363,1123.5377 232.2367,1123.7383 232.26692,1124.8305 L 232.3027,1126.1233 L 232.57537,1124.6023 C 232.72534,1123.7658 232.86785,1122.6735 232.89206,1122.1749 C 232.91627,1121.6763 233.12755,1121.0769 233.36157,1120.8429 C 233.59559,1120.6089 233.70611,1120.2064 233.60717,1119.9486 C 233.50823,1119.6908 233.57891,1119.3861 233.76425,1119.2716 C 233.998,1119.1271 233.96056,1118.9227 233.64201,1118.6041 C 233.29929,1118.2614 233.27045,1118.0573 233.52828,1117.7995 C 233.78611,1117.5416 233.749,1117.454 233.38198,1117.454 C 233.11151,1117.454 232.84459,1117.5592 232.78882,1117.6877 C 232.73305,1117.8162 231.72924,1118.4225 230.55812,1119.0349 C 229.27759,1119.7046 228.39226,1120.3693 228.3371,1120.7024 C 228.28665,1121.007 228.09682,1121.5561 227.91525,1121.9224 C 227.40444,1122.9532 228.22225,1128.1005 228.89683,1128.1005 C 229.05768,1128.1005 229.18929,1127.9808 229.18929,1127.8345 z M 228.32606,1123.3096 C 228.37423,1123.0168 228.30728,1122.6077 228.17729,1122.4005 C 228.01525,1122.1422 228.08937,1122.0807 228.41303,1122.2049 C 228.93938,1122.4069 229.0698,1123.8419 228.5618,1123.8419 C 228.38398,1123.8419 228.2779,1123.6023 228.32606,1123.3096 z M 245.42823,1127.3507 C 245.69843,1126.9384 245.9195,1126.1444 245.9195,1125.5864 C 245.9195,1125.0285 246.08147,1124.41 246.27945,1124.212 C 246.47742,1124.014 246.56216,1123.7748 246.46775,1123.6804 C 246.37335,1123.586 246.06756,1123.7373 245.78824,1124.0166 C 245.32346,1124.4814 245.24941,1124.4831 244.91551,1124.0368 C 244.65458,1123.688 244.4207,1123.6341 244.09438,1123.8476 C 243.6888,1124.1129 243.6888,1124.1794 244.09438,1124.4456 C 244.36974,1124.6264 244.40701,1124.747 244.18838,1124.7498 C 243.61998,1124.7571 243.42818,1124.2141 243.77215,1123.5714 C 243.9847,1123.1743 244.29043,1123.0376 244.71674,1123.149 C 245.18149,1123.2706 245.39162,1123.1435 245.51667,1122.6653 C 245.6284,1122.238 245.92749,1122.0168 246.3933,1122.0168 C 248.06486,1122.0168 247.39986,1120.995 245.54272,1120.7098 C 244.60905,1120.5665 244.32403,1120.6515 243.95044,1121.1849 C 243.59526,1121.692 243.57781,1121.893 243.87093,1122.1009 C 244.16821,1122.3118 244.16724,1122.3994 243.86624,1122.5216 C 243.65711,1122.6064 243.48601,1122.9382 243.48601,1123.2589 C 243.48601,1123.5795 243.34913,1123.8419 243.18183,1123.8419 C 242.58398,1123.8419 242.89279,1124.4248 243.76293,1124.9388 C 244.63462,1125.4537 245.20957,1127.0268 244.65204,1127.3714 C 244.51263,1127.4575 244.39857,1127.6568 244.39857,1127.8143 C 244.39857,1128.3461 244.93398,1128.105 245.42823,1127.3507 z M 244.29717,1122.1182 C 243.98797,1121.809 244.05532,1121.4084 244.41652,1121.4084 C 244.5937,1121.4084 244.66128,1121.5336 244.56672,1121.6866 C 244.47215,1121.8396 244.56673,1122.0341 244.7769,1122.1189 C 244.98822,1122.2041 245.01173,1122.2837 244.8295,1122.2969 C 244.64825,1122.3102 244.40871,1122.2297 244.29717,1122.1182 z M 240.32375,1126.9661 C 240.22267,1126.865 240.15078,1127.0447 240.16398,1127.3654 C 240.17858,1127.7197 240.25066,1127.7918 240.34776,1127.5491 C 240.43563,1127.3296 240.42483,1127.0672 240.32375,1126.9661 z M 248.35298,1127.4921 C 248.35298,1127.3248 248.2161,1127.1879 248.04879,1127.1879 C 247.88149,1127.1879 247.74461,1127.3248 247.74461,1127.4921 C 247.74461,1127.6594 247.88149,1127.7963 248.04879,1127.7963 C 248.2161,1127.7963 248.35298,1127.6594 248.35298,1127.4921 z M 234.35579,1126.5035 C 234.35215,1125.9691 234.28986,1125.9159 234.07167,1126.2608 C 233.91797,1126.5038 233.8597,1126.8118 233.94219,1126.9453 C 234.20603,1127.3722 234.36057,1127.2071 234.35579,1126.5035 z M 246.99897,1126.3557 C 247.27329,1125.9806 247.29593,1125.6612 247.07715,1125.2524 C 246.88552,1124.8943 246.8779,1124.6055 247.057,1124.4876 C 247.46523,1124.2188 247.77928,1122.3783 247.45148,1122.1757 C 247.30122,1122.0828 247.09092,1122.1482 246.98414,1122.321 C 246.87737,1122.4937 246.66259,1122.5563 246.50685,1122.4601 C 246.35111,1122.3638 246.22368,1122.43 246.22368,1122.6072 C 246.22368,1122.7844 246.36056,1122.9293 246.52787,1122.9293 C 246.69517,1122.9293 246.83205,1123.2715 246.83205,1123.6898 C 246.83205,1124.108 246.69517,1124.4503 246.52787,1124.4503 C 246.36056,1124.4503 246.22368,1124.9978 246.22368,1125.667 C 246.22368,1126.9978 246.40908,1127.1625 246.99897,1126.3557 z M 248.65717,1125.6298 C 248.65717,1124.8354 248.15858,1124.9137 247.93633,1125.743 C 247.65081,1126.8085 247.70783,1126.9888 248.20089,1126.5796 C 248.45184,1126.3713 248.65717,1125.9439 248.65717,1125.6298 z M 243.33777,1121.695 C 243.47412,1121.0743 243.4413,1120.7918 243.2468,1120.912 C 242.78632,1121.1966 242.51157,1119.6589 242.89492,1118.9426 C 243.07983,1118.5971 243.1492,1118.2325 243.04909,1118.1324 C 242.94897,1118.0323 242.70255,1118.3862 242.50147,1118.9189 C 242.12398,1119.919 241.55017,1120.3014 241.84693,1119.3551 C 241.94334,1119.0477 241.67851,1119.2084 241.22014,1119.7354 L 240.4264,1120.6479 L 240.60388,1118.9749 C 240.9525,1115.6887 240.96891,1115.8014 240.13997,1115.7908 C 239.56096,1115.7833 239.37104,1115.6128 239.34402,1115.0763 C 239.30095,1114.221 238.61904,1113.396 238.61904,1114.1992 C 238.61904,1114.4836 238.7217,1114.717 238.84718,1114.7178 C 238.97266,1114.7186 239.11296,1115.3639 239.15897,1116.1517 C 239.20498,1116.9394 239.45613,1117.9098 239.71708,1118.3081 C 239.99345,1118.7299 240.11681,1119.33 240.01255,1119.7454 C 239.9141,1120.1376 239.98323,1120.5511 240.16617,1120.6641 C 240.36411,1120.7865 240.42815,1121.3175 240.32434,1121.9756 C 240.17293,1122.9353 240.19129,1122.9824 240.46332,1122.3321 C 240.89571,1121.2984 240.95677,1121.2692 241.51605,1121.8285 C 241.78692,1122.0993 241.86617,1122.321 241.69217,1122.321 C 241.51817,1122.321 241.46321,1122.5487 241.57004,1122.8271 C 241.70065,1123.1675 241.64769,1123.2613 241.4084,1123.1134 C 241.21267,1122.9924 241.05253,1123.0384 241.05253,1123.2156 C 241.05253,1123.7892 241.57792,1123.5576 242.1065,1122.7508 C 242.39006,1122.3181 242.69811,1122.04 242.79106,1122.133 C 242.884,1122.2259 242.74331,1122.6328 242.4784,1123.0371 C 242.21349,1123.4414 242.07881,1123.8542 242.1791,1123.9545 C 242.41759,1124.193 243.06748,1122.9257 243.33777,1121.695 z M 235.45292,1122.8969 C 234.65088,1122.266 234.05626,1122.1503 234.05626,1122.6251 C 234.05626,1122.7924 234.26588,1122.9293 234.52208,1122.9293 C 234.77829,1122.9293 235.06338,1123.126 235.15563,1123.3664 C 235.24787,1123.6068 235.51724,1123.7291 235.75422,1123.6381 C 236.08198,1123.5124 236.00987,1123.335 235.45292,1122.8969 z M 238.16276,1122.6251 C 238.05936,1122.4578 237.81174,1122.3231 237.61249,1122.3256 C 237.39481,1122.3284 237.43233,1122.448 237.70648,1122.6251 C 238.29086,1123.0028 238.39616,1123.0028 238.16276,1122.6251 z M 256.39359,1121.0511 C 256.11344,1120.1818 255.9785,1118.9259 255.98256,1117.2258 C 255.98426,1116.5148 255.84246,1115.9331 255.66745,1115.9331 C 255.49244,1115.9331 255.34925,1115.7277 255.34925,1115.4768 C 255.34925,1115.2258 255.49421,1115.0205 255.67139,1115.0205 C 255.84856,1115.0205 255.89585,1114.8625 255.77648,1114.6693 C 255.64201,1114.4517 255.69304,1114.4007 255.91062,1114.5352 C 256.10377,1114.6546 256.26181,1114.5944 256.26181,1114.4016 C 256.26181,1114.2088 256.00472,1113.9838 255.69051,1113.9016 C 255.3763,1113.8194 254.95362,1113.3887 254.75121,1112.9445 C 254.41607,1112.2089 254.34933,1112.1831 254.00392,1112.6555 C 253.74619,1113.008 253.52524,1113.0748 253.31447,1112.864 C 253.1037,1112.6533 252.94593,1113.1194 252.82217,1114.3185 C 252.722,1115.2891 252.7631,1116.2063 252.91352,1116.3567 C 253.06393,1116.5071 253.10886,1117.0208 253.01336,1117.4983 C 252.90006,1118.0648 252.96577,1118.3665 253.20242,1118.3665 C 253.42632,1118.3665 253.49147,1118.1345 253.37265,1117.7601 C 253.21717,1117.2702 253.28432,1117.1936 253.72197,1117.3615 C 254.15124,1117.5263 254.11945,1117.4153 253.56889,1116.8273 C 253.05179,1116.275 252.91826,1115.8614 253.04697,1115.2106 C 253.14211,1114.7296 253.22957,1114.1137 253.24133,1113.8418 C 253.25778,1113.4615 253.32383,1113.4878 253.52779,1113.9559 C 253.78534,1114.5469 253.7987,1114.5448 253.99817,1113.8798 C 254.11108,1113.5034 254.33246,1113.1954 254.49012,1113.1954 C 254.64778,1113.1954 254.68655,1113.3414 254.57628,1113.5198 C 254.466,1113.6982 254.62902,1114.0379 254.93855,1114.2745 C 255.42759,1114.6484 255.44154,1114.7443 255.04506,1115.0067 C 254.71136,1115.2276 254.56149,1115.1837 254.48719,1114.8436 C 254.43132,1114.5878 254.22599,1114.4354 254.03091,1114.5049 C 253.61634,1114.6526 253.70374,1115.9314 254.15927,1116.3829 C 254.37395,1116.5956 254.40385,1116.5127 254.25415,1116.1197 C 254.09648,1115.7058 254.15269,1115.5849 254.45588,1115.686 C 255.10889,1115.9036 255.31452,1117.2411 254.75902,1117.6576 C 254.33807,1117.9732 254.36271,1118.0965 254.97762,1118.751 C 255.38285,1119.1824 255.59431,1119.6876 255.48683,1119.9677 C 255.38573,1120.2311 255.53729,1120.8042 255.82362,1121.2412 C 256.42959,1122.1661 256.72152,1122.0687 256.39359,1121.0511 z M 234.79702,1121.4403 C 234.88959,1121.2905 234.76078,1121.0895 234.51079,1120.9935 C 234.23469,1120.8876 234.05626,1120.9945 234.05626,1121.2659 C 234.05626,1121.7578 234.53158,1121.8698 234.79702,1121.4403 z M 237.09811,1120.7675 C 237.09811,1120.5823 236.89279,1120.5095 236.64184,1120.6058 C 236.39088,1120.7021 236.18556,1120.6483 236.18556,1120.4863 C 236.18556,1120.3242 236.39088,1120.1917 236.64184,1120.1917 C 236.89279,1120.1917 237.09811,1120.0401 237.09811,1119.8549 C 237.09811,1119.6697 236.88159,1119.6013 236.61696,1119.7028 C 236.35232,1119.8044 236.01011,1119.8875 235.85649,1119.8875 C 235.70288,1119.8875 235.57719,1120.1612 235.57719,1120.4958 C 235.57719,1120.942 235.77998,1121.1042 236.33765,1121.1042 C 236.7559,1121.1042 237.09811,1120.9527 237.09811,1120.7675 z M 239.08831,1120.821 C 238.99206,1120.6653 239.03531,1120.4625 239.18443,1120.3703 C 239.33355,1120.2782 239.45555,1119.8752 239.45555,1119.4748 C 239.45555,1118.8004 239.41823,1118.7832 238.94852,1119.2411 C 238.43162,1119.745 238.45213,1121.1042 238.97664,1121.1042 C 239.13431,1121.1042 239.18456,1120.9768 239.08831,1120.821 z M 213.78583,1119.127 C 213.59506,1118.6299 213.06745,1118.4996 213.06745,1118.9496 C 213.06745,1119.1804 213.28064,1119.3376 213.89442,1119.5593 C 213.93099,1119.5725 213.88213,1119.378 213.78583,1119.127 z M 217.45709,1119.245 C 217.36527,1119.0965 217.57199,1118.9749 217.91647,1118.9749 C 218.76011,1118.9749 218.71577,1118.4422 217.85838,1118.277 L 217.17396,1118.1452 L 217.85838,1118.1038 C 218.26989,1118.0789 218.54279,1117.8656 218.54279,1117.5688 C 218.54279,1117.1849 218.45005,1117.1523 218.12507,1117.422 C 217.89532,1117.6127 217.49852,1117.6885 217.24328,1117.5906 C 216.98805,1117.4926 216.68474,1117.5654 216.56927,1117.7522 C 216.4159,1118.0004 216.24369,1117.9959 215.93013,1117.7357 C 215.57922,1117.4445 215.50094,1117.525 215.50094,1118.1772 C 215.50094,1118.6159 215.36405,1118.9749 215.19675,1118.9749 C 215.02945,1118.9749 214.89257,1119.0796 214.89257,1119.2074 C 214.89257,1119.3353 215.50715,1119.4569 216.2583,1119.4776 C 217.00946,1119.4982 217.54891,1119.3936 217.45709,1119.245 z M 221.7547,1118.5554 C 222.04061,1117.4162 221.79496,1116.0728 221.31919,1116.1736 C 221.05347,1116.23 220.96704,1116.0917 221.08151,1115.7934 C 221.19547,1115.4964 221.08993,1115.3247 220.79348,1115.3247 C 220.48225,1115.3247 220.35814,1115.5539 220.4228,1116.0091 C 220.47626,1116.3855 220.6911,1116.6935 220.90023,1116.6935 C 221.10936,1116.6935 221.24624,1116.8304 221.20442,1116.9977 C 221.16259,1117.165 221.02571,1117.2677 220.90023,1117.2258 C 220.6261,1117.1345 220.59868,1118.1255 220.85673,1118.7979 C 221.12607,1119.4998 221.54614,1119.3864 221.7547,1118.5554 z M 235.57719,1118.9749 C 234.98204,1118.5903 234.36044,1118.5903 234.36044,1118.9749 C 234.36044,1119.1422 234.73687,1119.277 235.19695,1119.2744 C 235.84881,1119.2708 235.93274,1119.2047 235.57719,1118.9749 z M 237.23721,1118.6918 C 237.33347,1118.536 237.28745,1118.3315 237.13495,1118.2372 C 236.98245,1118.143 236.77919,1118.2704 236.68326,1118.5204 C 236.49414,1119.0132 236.95117,1119.1546 237.23721,1118.6918 z M 220.36791,1117.7512 C 220.36791,1117.0149 219.29252,1117.2961 219.23594,1118.0472 C 219.20531,1118.4539 219.35121,1118.5615 219.78101,1118.4491 C 220.1038,1118.3647 220.36791,1118.0506 220.36791,1117.7512 z M 210.61259,1117.0738 C 210.62435,1116.9483 210.49708,1116.8456 210.32978,1116.8456 C 210.16248,1116.8456 210.03522,1117.222 210.04698,1117.6821 C 210.06592,1118.4234 210.09813,1118.4494 210.32978,1117.9103 C 210.47357,1117.5757 210.60083,1117.1992 210.61259,1117.0738 z M 236.04801,1117.2258 C 236.02097,1116.4471 235.86759,1116.0852 235.56465,1116.0852 C 235.27287,1116.0852 235.14819,1116.3456 235.20057,1116.8456 C 235.39185,1118.6716 236.10939,1118.9935 236.04801,1117.2258 z M 242.57345,1117.2839 C 242.57345,1117.0231 242.43657,1116.8943 242.26927,1116.9977 C 242.10197,1117.1011 241.96508,1117.3145 241.96508,1117.4719 C 241.96508,1117.6294 242.10197,1117.7582 242.26927,1117.7582 C 242.43657,1117.7582 242.57345,1117.5448 242.57345,1117.2839 z M 237.55439,1117.1498 C 237.45099,1116.9825 237.5798,1116.8456 237.84062,1116.8456 C 238.10145,1116.8456 238.31486,1116.6191 238.31486,1116.3422 C 238.31486,1115.8875 238.2567,1115.8914 237.71366,1116.3828 C 237.19325,1116.8538 237.12413,1117.454 237.59029,1117.454 C 237.67395,1117.454 237.65779,1117.3171 237.55439,1117.1498 z M 246.93832,1117.0075 C 247.1928,1116.3443 246.65963,1116.1665 246.1821,1116.7553 C 245.89689,1117.1069 245.88612,1117.1953 246.14763,1117.0381 C 246.35676,1116.9125 246.52787,1116.9547 246.52787,1117.1318 C 246.52787,1117.5929 246.7381,1117.5292 246.93832,1117.0075 z M 215.95459,1116.1611 C 215.98367,1115.7445 216.32989,1115.3172 216.83935,1115.0689 C 217.2997,1114.8446 217.61351,1114.5982 217.53673,1114.5214 C 217.25497,1114.2397 214.2842,1114.1591 214.2842,1114.4332 C 214.2842,1114.5889 214.50628,1114.7163 214.77772,1114.7163 C 215.16671,1114.7163 215.19624,1114.8067 214.91712,1115.143 C 214.64528,1115.4706 214.65429,1115.6119 214.95592,1115.7514 C 215.27601,1115.8994 215.27537,1115.9669 214.95249,1116.1159 C 214.65216,1116.2544 214.68889,1116.3958 215.1041,1116.6994 C 215.74929,1117.1712 215.8903,1117.0819 215.95459,1116.1611 z M 202.42096,1116.4746 C 202.42096,1116.3243 202.5435,1116.2771 202.69327,1116.3696 C 202.84304,1116.4622 203.04407,1116.3334 203.14,1116.0834 C 203.23593,1115.8334 203.57784,1115.6289 203.89979,1115.6289 C 204.22175,1115.6289 204.56729,1115.4149 204.66766,1115.1533 C 204.76803,1114.8918 204.97854,1114.7571 205.13546,1114.8541 C 205.29238,1114.9511 205.51188,1114.883 205.62323,1114.7029 C 205.86648,1114.3093 202.27933,1114.6336 201.40859,1115.0839 C 201.10273,1115.2421 200.65995,1115.2977 200.42462,1115.2073 C 199.80844,1114.9709 199.23752,1116.1278 199.8118,1116.4491 C 200.41801,1116.7884 202.42096,1116.8079 202.42096,1116.4746 z M 202.44497,1115.5021 C 202.43176,1115.1815 202.50366,1115.0018 202.60474,1115.1029 C 202.70581,1115.204 202.71662,1115.4663 202.62875,1115.6859 C 202.53165,1115.9286 202.45957,1115.8565 202.44497,1115.5021 z M 212.99669,1115.9328 C 212.54789,1115.2141 212.42937,1115.2975 212.65782,1116.1711 C 212.75386,1116.5383 212.95095,1116.7655 213.09581,1116.676 C 213.24066,1116.5865 213.19606,1116.252 212.99669,1115.9328 z M 206.67956,1116.2372 C 206.67956,1116.0699 206.53459,1115.9331 206.35742,1115.9331 C 206.18024,1115.9331 206.11988,1116.0699 206.22328,1116.2372 C 206.32668,1116.4045 206.47164,1116.5414 206.54542,1116.5414 C 206.61919,1116.5414 206.67956,1116.4045 206.67956,1116.2372 z M 210.32053,1115.6397 C 210.31242,1114.9632 210.27273,1114.9346 209.99765,1115.4071 C 209.82515,1115.7034 209.55555,1115.8665 209.39853,1115.7694 C 209.24151,1115.6724 209.11304,1115.777 209.11304,1116.002 C 209.11304,1116.227 209.38681,1116.4111 209.72141,1116.4111 C 210.17227,1116.4111 210.32739,1116.2114 210.32053,1115.6397 z M 220.06372,1116.0923 C 220.06372,1115.8938 219.58519,1115.8105 218.84867,1115.8808 C 218.1804,1115.9445 217.69246,1116.0918 217.76438,1116.2082 C 217.97785,1116.5536 220.06372,1116.4485 220.06372,1116.0923 z M 242.42136,1115.9331 C 242.64443,1115.9331 242.88398,1116.0357 242.95369,1116.1612 C 243.0234,1116.2867 243.06152,1116.2642 243.03841,1116.1112 C 243.0153,1115.9582 242.71301,1115.6449 242.36667,1115.4149 C 241.78016,1115.0255 241.73735,1115.055 241.74295,1115.8452 C 241.74625,1116.3118 241.80899,1116.5224 241.88237,1116.3133 C 241.95574,1116.1042 242.19829,1115.9331 242.42136,1115.9331 z M 244.9251,1116.3306 C 244.62914,1116.2535 244.21849,1116.2586 244.01255,1116.3419 C 243.8066,1116.4252 244.04875,1116.4883 244.55066,1116.4821 C 245.05257,1116.4759 245.22107,1116.4078 244.9251,1116.3306 z M 257.38003,1114.0319 C 257.89958,1112.9863 259.05304,1111.1726 259.94329,1110.0014 C 261.35359,1108.1462 261.56341,1107.6894 261.57349,1106.4526 C 261.57985,1105.6719 261.69495,1104.9232 261.82927,1104.7889 C 261.96359,1104.6545 261.98316,1104.78 261.87277,1105.0677 C 261.75746,1105.3682 261.81534,1105.5908 262.00879,1105.5908 C 262.19399,1105.5908 262.35166,1105.2143 262.35916,1104.7542 C 262.36666,1104.2942 262.44711,1103.1922 262.53792,1102.3054 C 262.7498,1100.2364 262.24134,1098.145 261.11291,1096.444 C 260.62116,1095.7028 260.21824,1095.2175 260.21752,1095.3655 C 260.2168,1095.5135 259.92895,1095.2695 259.57784,1094.8231 C 258.89179,1093.9509 256.15467,1092.4151 255.84257,1092.7272 C 255.47215,1093.0976 255.66129,1093.4854 256.12551,1093.3073 C 256.39621,1093.2034 256.51831,1093.2544 256.41174,1093.4268 C 256.30953,1093.5922 256.49655,1093.7275 256.82735,1093.7275 C 257.76165,1093.7275 258.3911,1094.0539 258.3911,1094.5385 C 258.3911,1094.8035 258.54316,1094.8943 258.77134,1094.7655 C 259.07552,1094.5938 259.07552,1094.6327 258.77134,1094.9605 C 258.1862,1095.5909 258.31332,1096.141 259.01298,1096.0063 C 259.44858,1095.9224 259.79821,1096.1551 260.18012,1096.7831 C 260.48001,1097.2763 260.84316,1097.5776 260.9871,1097.4527 C 261.13105,1097.3278 261.00224,1097.619 260.70085,1098.0998 C 260.2607,1098.8019 260.21896,1099.119 260.48873,1099.7111 C 260.94661,1100.716 260.91131,1100.8702 260.33323,1100.3905 C 259.90656,1100.0364 259.85748,1100.0615 259.96049,1100.5814 C 260.04364,1101.001 260.28158,1101.1516 260.75604,1101.0849 C 261.12835,1101.0326 261.43296,1101.1352 261.43296,1101.313 C 261.43296,1101.4908 261.29608,1101.6363 261.12877,1101.6363 C 260.74225,1101.6363 260.74464,1102.2608 261.13343,1102.8531 C 261.39968,1103.2587 261.46624,1103.2587 261.73249,1102.8531 C 261.99097,1102.4593 262.03265,1102.4673 262.03667,1102.9112 C 262.04324,1103.6366 261.57049,1103.8416 261.12599,1103.306 C 260.60219,1102.6749 260.29464,1102.7399 260.03096,1103.5375 L 259.8047,1104.2219 L 259.63023,1103.5195 C 259.43789,1102.7453 258.84738,1102.7217 258.84738,1103.4883 C 258.84738,1104.0355 258.14902,1104.9824 257.74549,1104.9824 C 257.59867,1104.9824 257.47855,1104.7771 257.47855,1104.5261 C 257.47855,1103.9761 257.12363,1103.938 256.62683,1104.4348 C 256.36705,1104.6946 256.26181,1104.7005 256.26181,1104.4553 C 256.26181,1104.2659 256.56979,1104.0136 256.94622,1103.8948 C 258.11587,1103.5257 258.99096,1102.493 258.65929,1101.8733 C 258.46839,1101.5166 258.47701,1101.3322 258.68459,1101.3322 C 258.85778,1101.3322 258.99948,1101.5215 258.99948,1101.753 C 258.99948,1101.9844 259.27324,1102.2453 259.60785,1102.3328 C 260.32434,1102.5202 260.41682,1102.0022 259.75347,1101.5171 C 259.23639,1101.139 258.97097,1100.037 258.89703,1097.961 C 258.861,1096.9494 258.72225,1096.5657 258.3911,1096.5622 C 258.14015,1096.5594 257.84927,1096.688 257.74471,1096.8479 C 257.6288,1097.0251 257.47339,1097.0071 257.34653,1096.8018 C 257.23209,1096.6167 257.28342,1096.4652 257.46059,1096.4652 C 257.63777,1096.4652 257.78273,1096.2599 257.78273,1096.0089 C 257.78273,1095.4585 257.27589,1095.4001 257.09922,1095.9301 C 257.00626,1096.209 256.84789,1096.1822 256.4931,1095.8274 C 256.19067,1095.5249 256.10781,1095.1934 256.26934,1094.9321 C 256.41042,1094.7038 256.44967,1094.3938 256.35656,1094.2431 C 256.26345,1094.0925 255.94135,1094.4966 255.64079,1095.1411 C 255.06257,1096.3811 254.83877,1096.1348 255.34172,1094.812 C 255.50488,1094.3828 255.52982,1094.0317 255.39714,1094.0317 C 255.26446,1094.0317 254.70417,1095.161 254.15204,1096.5412 C 253.59992,1097.9215 252.88279,1099.6476 252.55842,1100.377 C 252.23406,1101.1064 252.06362,1101.7908 252.17967,1101.8979 C 252.29573,1102.005 252.45208,1101.9207 252.52711,1101.7105 C 252.60215,1101.5003 252.78873,1101.4057 252.94174,1101.5003 C 253.09476,1101.5949 253.21995,1101.4999 253.21995,1101.2893 C 253.21995,1100.9914 253.30107,1100.9874 253.58497,1101.2713 C 254.15201,1101.8384 254.43669,1101.7062 254.43669,1100.8759 C 254.43669,1100.4576 254.55646,1100.1154 254.70285,1100.1154 C 254.84924,1100.1154 255.05115,1099.7048 255.15153,1099.2029 C 255.33813,1098.2698 256.26181,1097.8902 256.26181,1098.7466 C 256.26181,1098.9975 256.07244,1099.2029 255.841,1099.2029 C 255.3474,1099.2029 255.05503,1100.1229 255.04921,1101.6944 C 255.04517,1102.7886 254.44388,1103.6351 254.19692,1102.8942 C 254.10123,1102.6072 253.96714,1102.6116 253.60277,1102.914 C 253.19298,1103.2541 253.16115,1103.2067 253.35633,1102.5465 L 253.58046,1101.7884 L 253.05707,1102.5038 C 252.65564,1103.0525 252.47573,1103.1255 252.28498,1102.8168 C 251.97344,1102.3127 251.99153,1102.2853 251.00169,1104.7603 C 249.99538,1107.2764 249.98703,1107.5235 250.94799,1106.3512 L 251.696,1105.4387 L 251.69751,1106.4273 C 251.69834,1106.971 251.8359,1107.4159 252.00321,1107.4159 C 252.17051,1107.4159 252.30739,1107.2105 252.30739,1106.9596 C 252.30739,1106.2458 252.85806,1106.4251 253.00808,1107.1877 L 253.14272,1107.8721 L 253.37563,1107.162 C 253.55493,1106.6153 253.67342,1106.5453 253.89045,1106.8578 C 254.08566,1107.1389 254.11565,1107.0612 253.98797,1106.605 C 253.74586,1105.7399 254.33325,1105.4028 255.01213,1106.0172 C 255.30754,1106.2846 255.70957,1106.5033 255.90552,1106.5033 C 256.10148,1106.5033 256.26181,1106.6402 256.26181,1106.8075 C 256.26181,1106.9748 256.1439,1107.1117 255.9998,1107.1117 C 255.8557,1107.1117 255.80932,1107.4881 255.89674,1107.9482 C 256.02741,1108.6359 255.97931,1108.7249 255.62642,1108.4484 C 254.89119,1107.8724 253.82832,1107.7284 253.82832,1108.2048 C 253.82832,1108.4401 253.99942,1108.5984 254.20855,1108.5566 C 254.41768,1108.5147 254.58878,1108.7543 254.58878,1109.0889 C 254.58878,1109.4235 254.41768,1109.663 254.20855,1109.6212 C 253.99942,1109.5794 253.81244,1109.8532 253.79303,1110.2296 C 253.76512,1110.771 253.72799,1110.7992 253.61531,1110.3644 C 253.53697,1110.0621 253.14481,1109.6901 252.74385,1109.5376 C 252.26018,1109.3537 252.07546,1109.1025 252.19498,1108.791 C 252.32508,1108.452 252.23895,1108.3738 251.88498,1108.5096 C 251.29668,1108.7354 251.26746,1108.9919 251.77252,1109.497 C 252.07332,1109.7978 252.05784,1109.9381 251.69648,1110.1861 C 251.33849,1110.4318 251.3764,1110.4604 251.87612,1110.3213 C 252.28703,1110.2069 252.69774,1110.3529 253.0454,1110.7371 C 253.34014,1111.0628 253.78403,1111.2515 254.03181,1111.1564 C 254.34574,1111.0359 254.45236,1111.1537 254.38346,1111.5448 C 254.3095,1111.9648 254.4761,1112.1092 255.04506,1112.1184 C 255.65555,1112.1283 255.79062,1112.2692 255.72994,1112.8328 C 255.68836,1113.219 255.7568,1113.4729 255.88203,1113.3971 C 256.00725,1113.3213 256.27245,1113.4355 256.47136,1113.6509 C 256.75186,1113.9546 256.73697,1114.1693 256.40499,1114.6075 C 255.93364,1115.2298 255.82304,1115.9331 256.19652,1115.9331 C 256.32791,1115.9331 256.86049,1115.0775 257.38003,1114.0319 z M 255.5653,1110.7619 C 255.4619,1110.3665 255.55596,1110.1535 255.834,1110.1535 C 256.0693,1110.1535 256.26181,1110.4273 256.26181,1110.7619 C 256.26181,1111.0965 256.14089,1111.3703 255.9931,1111.3703 C 255.84531,1111.3703 255.6528,1111.0965 255.5653,1110.7619 z M 254.13251,1110.4577 C 254.13251,1110.2904 254.26939,1110.1535 254.43669,1110.1535 C 254.60399,1110.1535 254.74088,1110.2904 254.74088,1110.4577 C 254.74088,1110.625 254.60399,1110.7619 254.43669,1110.7619 C 254.26939,1110.7619 254.13251,1110.625 254.13251,1110.4577 z M 256.61542,1109.3611 C 256.74221,1108.7027 257.69484,1108.423 258.175,1108.9032 C 258.58464,1109.3128 258.45812,1109.4404 257.37177,1109.7131 C 256.63192,1109.8988 256.52174,1109.8475 256.61542,1109.3611 z M 259.30366,1108.7847 C 259.30366,1108.5337 259.54321,1108.3241 259.83599,1108.3187 C 260.32173,1108.3099 260.31753,1108.2706 259.78803,1107.8699 C 259.27568,1107.4822 259.15798,1107.4922 258.78265,1107.9556 C 258.40014,1108.4279 258.38971,1108.4139 258.67851,1107.8161 C 259.08364,1106.9775 259.09184,1106.4103 258.69529,1106.6554 C 258.52799,1106.7588 258.3911,1106.6381 258.3911,1106.3871 C 258.3911,1106.1362 258.53732,1105.8405 258.71603,1105.73 C 258.89474,1105.6196 258.97822,1105.3657 258.90154,1105.1659 C 258.82202,1104.9587 259.04178,1104.7892 259.41313,1104.7714 C 259.77118,1104.7542 259.89302,1104.8061 259.68389,1104.8866 C 259.45344,1104.9754 259.32067,1105.5323 259.34683,1106.3005 L 259.38999,1107.568 L 259.59644,1106.3512 C 259.79617,1105.174 259.8132,1105.1592 260.12044,1105.8949 C 260.2951,1106.3132 260.55921,1106.587 260.70734,1106.5033 C 260.85548,1106.4197 260.99343,1106.6846 261.0139,1107.0921 C 261.04956,1107.8019 261.03313,1107.8084 260.62333,1107.248 C 260.22327,1106.7009 260.20007,1106.7224 260.26545,1107.5804 C 260.33976,1108.5557 260.06096,1109.241 259.58989,1109.241 C 259.43247,1109.241 259.30366,1109.0357 259.30366,1108.7847 z M 257.17436,1107.4159 C 257.17436,1107.0599 257.37715,1106.8075 257.66319,1106.8075 C 257.98396,1106.8075 258.08853,1106.9729 257.96737,1107.2887 C 257.86582,1107.5533 257.78273,1107.8271 257.78273,1107.897 C 257.78273,1107.967 257.64585,1108.0242 257.47855,1108.0242 C 257.31125,1108.0242 257.17436,1107.7505 257.17436,1107.4159 z M 256.87018,1106.2171 C 256.87018,1106.0399 257.00706,1105.8949 257.17436,1105.8949 C 257.34166,1105.8949 257.47855,1105.9553 257.47855,1106.0291 C 257.47855,1106.1029 257.34166,1106.2478 257.17436,1106.3512 C 257.00706,1106.4546 256.87018,1106.3943 256.87018,1106.2171 z M 251.69902,1104.2399 C 251.69902,1104.1661 251.8359,1104.0211 252.00321,1103.9177 C 252.17051,1103.8143 252.30739,1103.8747 252.30739,1104.0519 C 252.30739,1104.229 252.17051,1104.374 252.00321,1104.374 C 251.8359,1104.374 251.69902,1104.3136 251.69902,1104.2399 z M 256.76017,1102.3968 C 256.66387,1102.1458 256.71767,1101.9405 256.87972,1101.9405 C 257.04177,1101.9405 257.17436,1102.1458 257.17436,1102.3968 C 257.17436,1102.6478 257.12056,1102.8531 257.05481,1102.8531 C 256.98906,1102.8531 256.85648,1102.6478 256.76017,1102.3968 z M 261.74756,1100.5982 C 261.51208,1099.9981 261.13963,1099.507 260.91991,1099.507 C 260.39423,1099.507 260.41535,1099.2645 260.99117,1098.6886 C 261.54743,1098.1324 261.51646,1098.102 262.0219,1099.7 C 262.5322,1101.3134 262.31159,1102.0357 261.74756,1100.5982 z M 256.71808,1101.028 C 256.61468,1100.8607 256.74349,1100.7238 257.00432,1100.7238 C 257.26514,1100.7238 257.47855,1100.8607 257.47855,1101.028 C 257.47855,1101.1953 257.34974,1101.3322 257.19232,1101.3322 C 257.03489,1101.3322 256.82148,1101.1953 256.71808,1101.028 z M 254.13251,1098.1382 C 254.34078,1097.8873 254.56286,1097.6819 254.62603,1097.6819 C 254.6892,1097.6819 254.74088,1097.8873 254.74088,1098.1382 C 254.74088,1098.3892 254.51879,1098.5945 254.24735,1098.5945 C 253.84315,1098.5945 253.82237,1098.5119 254.13251,1098.1382 z M 256.56599,1098.2903 C 256.56599,1098.123 256.7794,1097.9861 257.04022,1097.9861 C 257.30105,1097.9861 257.42985,1098.123 257.32645,1098.2903 C 257.22306,1098.4576 257.00965,1098.5945 256.85222,1098.5945 C 256.6948,1098.5945 256.56599,1098.4576 256.56599,1098.2903 z M 197.61102,1115.4211 C 197.39144,1115.3332 197.12908,1115.344 197.028,1115.4451 C 196.92692,1115.5462 197.10658,1115.6181 197.42724,1115.6049 C 197.7816,1115.5903 197.85368,1115.5182 197.61102,1115.4211 z M 213.57123,1114.2061 C 213.48667,1114.1216 213.10143,1114.1527 212.71514,1114.2753 L 212.0128,1114.4982 L 212.69222,1114.7496 C 213.0659,1114.8878 213.39028,1115.1764 213.41306,1115.3909 C 213.43585,1115.6055 213.51535,1115.4612 213.58974,1115.0704 C 213.66412,1114.6796 213.6558,1114.2907 213.57123,1114.2061 z M 196.48934,1115.0205 C 196.38594,1114.8532 196.17254,1114.7163 196.01511,1114.7163 C 195.85768,1114.7163 195.72888,1114.8532 195.72888,1115.0205 C 195.72888,1115.1878 195.94228,1115.3247 196.20311,1115.3247 C 196.46393,1115.3247 196.59274,1115.1878 196.48934,1115.0205 z M 209.55556,1114.1612 C 209.43367,1114.0483 209.27767,1114.1124 209.2089,1114.3038 C 209.14014,1114.4952 208.78245,1114.5865 208.41404,1114.5067 C 207.80963,1114.3759 207.81849,1114.4033 208.50467,1114.7866 C 209.15325,1115.1489 209.3028,1115.1493 209.52116,1114.789 C 209.66197,1114.5566 209.67745,1114.2741 209.55556,1114.1612 z M 211.24234,1114.7163 C 211.24234,1114.549 211.00279,1114.4142 210.71001,1114.4168 C 210.25509,1114.4208 210.24403,1114.4643 210.63397,1114.7163 C 211.20803,1115.0873 211.24234,1115.0873 211.24234,1114.7163 z M 207.20609,1114.5055 C 206.91013,1114.4284 206.49948,1114.4335 206.29353,1114.5168 C 206.08759,1114.6001 206.32974,1114.6632 206.83165,1114.657 C 207.33355,1114.6508 207.50205,1114.5826 207.20609,1114.5055 z M 218.59983,1114.5085 C 218.38024,1114.4207 218.11788,1114.4315 218.01681,1114.5325 C 217.91573,1114.6336 218.09539,1114.7055 218.41605,1114.6923 C 218.77041,1114.6777 218.84249,1114.6056 218.59983,1114.5085 z M 240.67225,1113.6263 C 240.38238,1113.3364 239.80122,1113.8059 240.01725,1114.1555 C 240.14565,1114.3632 240.31579,1114.358 240.53425,1114.1395 C 240.71335,1113.9604 240.77545,1113.7295 240.67225,1113.6263 z M 218.1182,1112.6694 C 218.01712,1112.5683 217.94523,1112.748 217.95844,1113.0686 C 217.97303,1113.423 218.04511,1113.4951 218.14222,1113.2524 C 218.23009,1113.0328 218.21928,1112.7705 218.1182,1112.6694 z M 217.63024,1112.587 C 217.63024,1112.4197 217.50143,1112.2828 217.344,1112.2828 C 217.18657,1112.2828 216.97317,1112.4197 216.86977,1112.587 C 216.76637,1112.7543 216.89518,1112.8912 217.15601,1112.8912 C 217.41683,1112.8912 217.63024,1112.7543 217.63024,1112.587 z M 240.44415,1112.2924 C 240.44415,1112.1303 240.23883,1112.0765 239.98788,1112.1728 C 239.73692,1112.2691 239.5316,1112.4017 239.5316,1112.4675 C 239.5316,1112.5332 239.73692,1112.587 239.98788,1112.587 C 240.23883,1112.587 240.44415,1112.4544 240.44415,1112.2924 z M 253.70791,1111.7568 C 253.60683,1111.6558 253.53494,1111.8354 253.54815,1112.1561 C 253.56274,1112.5104 253.63482,1112.5825 253.73193,1112.3399 C 253.8198,1112.1203 253.80899,1111.8579 253.70791,1111.7568 z M 252.8361,1111.1602 C 252.55327,1110.8774 252.21992,1110.748 252.09531,1110.8726 C 251.97069,1110.9972 252.07009,1111.2265 252.3162,1111.3822 C 253.05676,1111.8505 253.38588,1111.71 252.8361,1111.1602 z M 250.68205,1108.8022 C 250.23757,1108.3903 249.87391,1108.2018 249.87391,1108.3833 C 249.87391,1108.7851 251.12775,1109.9136 251.33919,1109.7022 C 251.42224,1109.6192 251.12653,1109.2142 250.68205,1108.8022 z M 224.47441,1108.3284 C 224.57781,1108.1611 224.44901,1108.0242 224.18818,1108.0242 C 223.92735,1108.0242 223.71395,1108.1611 223.71395,1108.3284 C 223.71395,1108.4957 223.84275,1108.6326 224.00018,1108.6326 C 224.15761,1108.6326 224.37101,1108.4957 224.47441,1108.3284 z M 251.25002,1107.6971 C 251.36022,1107.3499 251.36944,1106.9849 251.27052,1106.886 C 251.17159,1106.787 251.09065,1106.9342 251.09065,1107.2131 C 251.09065,1107.4919 250.95377,1107.72 250.78646,1107.72 C 250.61916,1107.72 250.48228,1107.8569 250.48228,1108.0242 C 250.48228,1108.5792 251.04632,1108.3389 251.25002,1107.6971 z M 225.53025,1107.4277 C 226.28186,1106.9524 225.74833,1106.8384 224.7786,1107.2672 C 224.07244,1107.5794 224.00364,1107.6752 224.47441,1107.6907 C 224.80902,1107.7017 225.28414,1107.5834 225.53025,1107.4277 z M 228.30526,1105.8018 C 228.06443,1105.561 227.97255,1105.6399 227.97255,1106.0876 C 227.97255,1106.8918 228.39793,1107.3186 228.5334,1106.6504 C 228.59091,1106.3666 228.48825,1105.9848 228.30526,1105.8018 z M 225.84325,1103.9684 C 225.84325,1103.3371 225.48322,1103.1291 225.03472,1103.5013 C 224.4451,1103.9907 224.53302,1104.374 225.23488,1104.374 C 225.56948,1104.374 225.84325,1104.1915 225.84325,1103.9684 z M 228.03885,1102.4935 C 227.84838,1102.3031 227.80599,1102.5031 227.91916,1103.0582 C 228.04897,1103.6948 228.12546,1103.7713 228.2141,1103.3531 C 228.27993,1103.0425 228.20106,1102.6557 228.03885,1102.4935 z M 227.36418,1103.1573 C 227.36418,1102.99 227.21921,1102.8531 227.04204,1102.8531 C 226.86486,1102.8531 226.8045,1102.99 226.9079,1103.1573 C 227.0113,1103.3246 227.15626,1103.4615 227.23004,1103.4615 C 227.30381,1103.4615 227.36418,1103.3246 227.36418,1103.1573 z M 225.04806,1102.416 C 224.95582,1102.1756 224.68713,1102.0531 224.45099,1102.1437 C 223.9373,1102.3408 224.17995,1102.8531 224.787,1102.8531 C 225.03479,1102.8531 225.14499,1102.6686 225.04806,1102.416 z M 227.97255,1100.0965 C 227.97255,1099.278 227.88305,1099.2029 226.9079,1099.2029 C 226.32234,1099.2029 225.84325,1099.3397 225.84325,1099.507 C 225.84325,1099.6743 226.04857,1099.8112 226.29953,1099.8112 C 226.55048,1099.8112 226.7558,1100.0559 226.7558,1100.3549 C 226.7558,1100.6804 226.99984,1100.9169 227.36418,1100.9443 C 227.84489,1100.9805 227.97255,1100.8026 227.97255,1100.0965 z M 210.32978,1099.2029 C 210.32978,1099.0356 210.18482,1098.8987 210.00765,1098.8987 C 209.83047,1098.8987 209.77011,1099.0356 209.8735,1099.2029 C 209.9769,1099.3702 210.12186,1099.507 210.19564,1099.507 C 210.26942,1099.507 210.32978,1099.3702 210.32978,1099.2029 z M 226.89584,1097.7876 C 226.05536,1097.173 225.67341,1097.2943 226.29303,1097.9789 C 226.59228,1098.3096 226.97644,1098.494 227.14672,1098.3888 C 227.33106,1098.2749 227.22954,1098.0316 226.89584,1097.7876 z M 237.29957,1096.6933 C 237.21519,1096.4842 237.14614,1096.6553 237.14614,1097.0736 C 237.14614,1097.4918 237.21519,1097.6629 237.29957,1097.4538 C 237.38395,1097.2447 237.38395,1096.9024 237.29957,1096.6933 z M 225.84325,1096.4472 C 225.84325,1096.2898 225.70636,1096.161 225.53906,1096.161 C 225.37176,1096.161 225.23488,1096.3744 225.23488,1096.6352 C 225.23488,1096.8961 225.37176,1097.0249 225.53906,1096.9215 C 225.70636,1096.8181 225.84325,1096.6047 225.84325,1096.4472 z M 226.99915,1096.1002 C 227.19991,1095.8994 227.36418,1095.536 227.36418,1095.2926 C 227.36418,1094.9412 227.23874,1094.9635 226.7558,1095.4005 C 226.13089,1095.9661 225.95977,1096.4652 226.39078,1096.4652 C 226.52462,1096.4652 226.79839,1096.3009 226.99915,1096.1002 z M 202.42096,1095.7047 C 202.42096,1095.4538 202.28837,1095.2484 202.12632,1095.2484 C 201.96427,1095.2484 201.91047,1095.4538 202.00677,1095.7047 C 202.10307,1095.9557 202.23566,1096.161 202.30141,1096.161 C 202.36716,1096.161 202.42096,1095.9557 202.42096,1095.7047 z M 236.99346,1094.254 C 236.91013,1094.0481 236.84703,1094.2903 236.85323,1094.7922 C 236.85943,1095.2941 236.9276,1095.4626 237.00473,1095.1666 C 237.08185,1094.8706 237.07678,1094.46 236.99346,1094.254 z M 257.85688,1095.0464 C 257.64671,1094.9616 257.55213,1094.7671 257.6467,1094.6141 C 257.74126,1094.4611 257.68175,1094.3359 257.51445,1094.3359 C 257.34715,1094.3359 257.13289,1094.4611 257.03833,1094.6141 C 256.86845,1094.889 257.34468,1095.2004 257.93483,1095.2004 C 258.10213,1095.2004 258.06706,1095.1311 257.85688,1095.0464 z M 226.60678,1094.3309 C 226.71186,1094.1609 226.92527,1094.1005 227.08101,1094.1968 C 227.42091,1094.4068 227.41382,1094.0946 227.05999,1093.2712 C 226.83115,1092.7387 226.7959,1092.7304 226.77719,1093.2047 C 226.76543,1093.5028 226.55048,1093.8254 226.29953,1093.9217 C 225.79817,1094.1141 225.67366,1094.6401 226.12948,1094.6401 C 226.28691,1094.6401 226.50169,1094.501 226.60678,1094.3309 z M 196.53677,1089.9955 C 196.45345,1089.7895 196.39035,1090.0317 196.39655,1090.5336 C 196.40275,1091.0355 196.47092,1091.204 196.54804,1090.908 C 196.62517,1090.612 196.6201,1090.2014 196.53677,1089.9955 z M 214.89257,1089.7372 C 214.89257,1089.5699 214.75568,1089.5176 214.58838,1089.621 C 214.42108,1089.7244 214.2842,1089.9459 214.2842,1090.1132 C 214.2842,1090.2805 214.42108,1090.3328 214.58838,1090.2294 C 214.75568,1090.126 214.89257,1089.9045 214.89257,1089.7372 z M 267.93572,1083.7496 C 268.04809,1083.5678 268.20678,1082.0084 268.28835,1080.2842 C 268.36992,1078.5601 268.64894,1076.5063 268.9084,1075.7204 C 269.25806,1074.6612 269.29646,1074.135 269.05678,1073.6871 C 268.87893,1073.3548 268.73341,1072.8697 268.73341,1072.6092 C 268.73341,1072.3487 268.2675,1071.5252 267.69805,1070.7792 C 267.12832,1070.0328 266.5692,1068.8695 266.45484,1068.1926 C 266.20909,1066.738 265.69145,1066.2503 265.6918,1067.4736 C 265.69193,1067.9435 266.10258,1069.1958 266.60436,1070.2565 C 267.15507,1071.4206 267.51667,1072.6782 267.51667,1073.4294 C 267.51667,1074.6166 265.64856,1081.7152 265.03204,1082.8707 C 264.56364,1083.7486 265.02773,1085.0533 266.24059,1086.2682 L 267.36458,1087.3942 L 267.54799,1085.7372 C 267.64886,1084.8259 267.82334,1083.9315 267.93572,1083.7496 z M 214.89257,1086.4271 C 214.89257,1086.2598 214.37925,1086.1365 213.75187,1086.1532 C 212.73385,1086.1803 212.69296,1086.2097 213.37164,1086.4271 C 214.45896,1086.7753 214.89257,1086.7753 214.89257,1086.4271 z M 237.4023,1085.0582 C 237.4023,1084.8073 237.3485,1084.6019 237.28275,1084.6019 C 237.217,1084.6019 237.08441,1084.8073 236.98811,1085.0582 C 236.89181,1085.3092 236.94561,1085.5145 237.10766,1085.5145 C 237.26971,1085.5145 237.4023,1085.3092 237.4023,1085.0582 z M 229.18463,1083.5954 C 229.18207,1083.2288 229.04728,1082.7236 228.8851,1082.4726 C 228.66951,1082.139 228.58898,1082.3687 228.58557,1083.3271 C 228.58274,1084.1245 228.70005,1084.5642 228.8851,1084.4499 C 229.0524,1084.3465 229.18719,1083.9619 229.18463,1083.5954 z M 238.31486,1074.7159 C 238.10658,1074.465 237.79929,1074.2596 237.63199,1074.2596 C 237.46231,1074.2596 237.49525,1074.4614 237.70648,1074.7159 C 237.91476,1074.9669 238.22205,1075.1722 238.38935,1075.1722 C 238.55903,1075.1722 238.52609,1074.9704 238.31486,1074.7159 z M 239.07532,1073.9554 C 238.97192,1073.7881 238.82696,1073.6513 238.75318,1073.6513 C 238.6794,1073.6513 238.61904,1073.7881 238.61904,1073.9554 C 238.61904,1074.1228 238.764,1074.2596 238.94118,1074.2596 C 239.11836,1074.2596 239.17872,1074.1228 239.07532,1073.9554 z M 238.16276,1072.7387 C 238.05936,1072.5714 237.9144,1072.4345 237.84062,1072.4345 C 237.76685,1072.4345 237.70648,1072.5714 237.70648,1072.7387 C 237.70648,1072.906 237.85145,1073.0429 238.02862,1073.0429 C 238.2058,1073.0429 238.26616,1072.906 238.16276,1072.7387 z M 253.82832,1069.3927 C 253.82832,1069.0581 253.69144,1068.7843 253.52413,1068.7843 C 253.35683,1068.7843 253.21995,1068.6329 253.21995,1068.4478 C 253.21995,1068.2628 252.86665,1067.8335 252.43485,1067.4938 C 251.94334,1067.1072 251.70327,1066.6716 251.79286,1066.329 C 251.87158,1066.028 251.76673,1065.7168 251.55988,1065.6374 C 251.29361,1065.5352 251.22147,1064.883 251.31282,1063.4039 L 251.44187,1061.3148 L 250.32796,1060.7836 C 248.86052,1060.0838 245.91695,1059.7801 245.05795,1060.2398 C 244.20172,1060.698 244.22284,1060.8517 245.30489,1062.0364 C 246.01922,1062.8185 246.11587,1063.0652 245.76116,1063.2013 C 245.51364,1063.2963 245.31112,1063.4963 245.31112,1063.6457 C 245.31112,1064.0434 246.34629,1063.9772 246.77121,1063.5523 C 247.05512,1063.2684 247.13632,1063.2853 247.13661,1063.6283 C 247.13706,1064.1606 248.01697,1065.2257 250.70506,1067.9478 C 252.76345,1070.0322 253.82832,1070.5249 253.82832,1069.3927 z M 266.23339,1064.0536 C 266.16194,1063.9821 265.66859,1063.8367 265.13705,1063.7304 C 263.83558,1063.4701 263.85521,1064.1206 265.15923,1064.4658 C 266.0235,1064.6945 266.63836,1064.4585 266.23339,1064.0536 z M 262.46067,1063.907 C 262.60766,1063.7693 261.92324,1063.6571 260.93974,1063.6577 C 259.30193,1063.6587 259.20222,1063.696 259.75402,1064.101 C 260.35837,1064.5446 261.89796,1064.4343 262.46067,1063.907 z M 264.28014,1062.2579 C 265.42783,1062.3151 266.44305,1062.4381 266.53618,1062.5313 C 266.85616,1062.8512 267.21249,1062.7 267.21249,1062.2443 C 267.21249,1061.9107 266.86488,1061.7873 265.9197,1061.7854 C 265.20866,1061.7839 263.90827,1061.6964 263.02993,1061.5909 C 261.51761,1061.4093 261.43296,1061.4356 261.43296,1062.0871 C 261.43296,1062.6003 261.52953,1062.6962 261.81319,1062.4645 C 262.02232,1062.2936 263.13244,1062.2007 264.28014,1062.2579 z M 268.32426,1060.7365 C 268.22519,1060.4783 267.90912,1060.2671 267.62187,1060.2671 C 267.33462,1060.2671 266.81701,1060.0142 266.47163,1059.705 C 265.71869,1059.0311 263.40327,1058.094 263.14043,1058.3568 C 262.76015,1058.7371 262.95912,1059.4176 263.40102,1059.248 C 263.84637,1059.0772 265.62883,1059.797 267.36458,1060.8488 C 268.37569,1061.4615 268.59272,1061.4361 268.32426,1060.7365 z M 262.33584,1059.8287 C 262.33052,1059.6516 262.1252,1059.7723 261.87957,1060.0971 C 261.63393,1060.4219 261.43731,1060.8325 261.44263,1061.0097 C 261.44796,1061.1868 261.65328,1061.066 261.89891,1060.7413 C 262.14454,1060.4165 262.34116,1060.0059 262.33584,1059.8287 z M 269.0376,1058.9249 C 269.0376,1058.2865 268.71418,1058.0676 266.55215,1057.2419 C 264.61759,1056.5032 264.01251,1056.3793 263.82218,1056.683 C 263.66635,1056.9316 263.76794,1057.146 264.10229,1057.2739 C 264.39083,1057.3843 265.40861,1057.7744 266.36402,1058.1409 C 267.31944,1058.5073 268.26016,1058.9987 268.45452,1059.2329 C 268.943,1059.8215 269.0376,1059.7715 269.0376,1058.9249 z M 201.7302,1085.9391 C 201.60821,1085.8171 201.5084,1085.5074 201.5084,1085.2509 C 201.5084,1084.9085 201.59839,1084.8744 201.84681,1085.1229 C 202.03293,1085.309 202.13274,1085.6187 202.06861,1085.8111 C 202.00448,1086.0035 201.85219,1086.0611 201.7302,1085.9391 z M 202.92793,1085.9201 C 202.55624,1085.5484 202.71883,1085.21 203.25747,1085.2343 C 203.57861,1085.2488 203.6382,1085.3195 203.40767,1085.4124 C 203.1975,1085.4971 203.10291,1085.6917 203.19748,1085.8447 C 203.3972,1086.1678 203.2241,1086.2163 202.92793,1085.9201 z M 209.89078,1085.2783 C 209.83402,1085.2215 209.8557,1084.9146 209.93895,1084.5962 C 210.06678,1084.1074 210.31001,1084.0369 211.50284,1084.1432 C 212.27973,1084.2124 213.16298,1084.2754 213.46564,1084.2834 C 213.78234,1084.2916 213.92916,1084.4381 213.81154,1084.6284 C 213.69913,1084.8103 213.34885,1084.8916 213.03312,1084.809 C 212.7174,1084.7265 212.45908,1084.7686 212.45908,1084.9027 C 212.45908,1085.1395 210.09741,1085.4849 209.89078,1085.2783 z M 211.29937,1084.6983 C 211.07979,1084.6105 210.81743,1084.6213 210.71635,1084.7224 C 210.61527,1084.8234 210.79493,1084.8953 211.1156,1084.8821 C 211.46995,1084.8675 211.54203,1084.7954 211.29937,1084.6983 z M 203.94189,1084.9061 C 203.94189,1084.7388 204.07877,1084.6019 204.24607,1084.6019 C 204.41337,1084.6019 204.55026,1084.7388 204.55026,1084.9061 C 204.55026,1085.0734 204.41337,1085.2103 204.24607,1085.2103 C 204.07877,1085.2103 203.94189,1085.0734 203.94189,1084.9061 z M 201.81259,1084.3399 C 201.81259,1084.1958 202.1548,1084.1434 202.57305,1084.2233 C 202.99131,1084.3033 203.33351,1084.4212 203.33351,1084.4853 C 203.33351,1084.5495 202.99131,1084.6019 202.57305,1084.6019 C 202.1548,1084.6019 201.81259,1084.484 201.81259,1084.3399 z M 206.22868,1084.3065 C 206.14031,1084.1635 205.48696,1083.9584 204.7768,1083.8507 C 202.61675,1083.5231 202.15955,1083.1754 202.41276,1082.0527 C 202.53273,1081.5208 202.58557,1080.7886 202.53017,1080.4256 C 202.47478,1080.0626 202.56666,1079.6808 202.73435,1079.5772 C 203.18582,1079.2982 202.7786,1078.821 202.25912,1079.0203 C 202.01353,1079.1146 201.81259,1079.0242 201.81259,1078.8195 C 201.81259,1078.6001 202.05636,1078.511 202.40637,1078.6026 C 203.19636,1078.8091 203.25636,1078.5123 202.92281,1076.0482 C 202.68646,1074.3022 202.57884,1074.0393 202.27225,1074.4585 C 202.07019,1074.7349 201.74723,1074.8635 201.55455,1074.7444 C 201.12446,1074.4786 201.08954,1073.6513 201.5084,1073.6513 C 201.6757,1073.6513 201.81259,1073.5052 201.81259,1073.3266 C 201.81259,1073.1327 201.54893,1073.0856 201.1582,1073.2096 C 200.6379,1073.3747 200.54245,1073.3166 200.69238,1072.9259 C 200.79608,1072.6556 200.76299,1072.4345 200.61884,1072.4345 C 200.47469,1072.4345 200.27796,1072.6398 200.18166,1072.8908 C 199.90417,1073.6139 198.99437,1073.4717 199.22615,1072.7414 C 199.33187,1072.4083 199.30978,1071.9635 199.17705,1071.7528 C 199.01543,1071.4964 198.87013,1071.6713 198.73712,1072.2824 C 198.5462,1073.1597 198.53713,1073.1501 198.50253,1072.0338 C 198.46961,1070.9713 198.40834,1070.8918 197.78213,1071.0979 C 196.21607,1071.6133 195.90222,1071.4496 195.67989,1070.001 C 195.40663,1068.2207 195.37072,1064.7161 195.61911,1064.0688 C 195.77421,1063.6646 195.86557,1063.6442 196.07073,1063.9679 C 196.26331,1064.2717 196.3291,1064.2781 196.33259,1063.9934 C 196.33515,1063.7842 196.48335,1063.6131 196.66193,1063.6131 C 196.84819,1063.6131 196.90429,1063.8725 196.79352,1064.2215 C 196.68276,1064.5705 196.73886,1064.8299 196.92512,1064.8299 C 197.1037,1064.8299 197.2498,1064.6165 197.2498,1064.3557 C 197.2498,1064.0948 197.38669,1063.966 197.55399,1064.0694 C 197.72129,1064.1728 197.85817,1063.9856 197.85817,1063.6534 C 197.85817,1062.9505 198.57263,1062.7218 199.7652,1063.043 C 200.26936,1063.1788 200.53695,1063.1556 200.43167,1062.9852 C 200.32934,1062.8196 201.08282,1062.7006 202.23296,1062.7006 C 203.32042,1062.7006 204.30053,1062.8468 204.41098,1063.0255 C 204.52143,1063.2042 204.78659,1063.2834 205.00024,1063.2014 C 205.21388,1063.1194 205.53304,1063.1967 205.70949,1063.3731 C 205.8869,1063.5505 206.27737,1063.5915 206.58306,1063.4648 C 206.88709,1063.3387 207.8176,1063.1742 208.65087,1063.0992 C 209.48414,1063.0242 210.31804,1062.8366 210.50397,1062.6822 C 210.68991,1062.5279 210.93092,1062.4906 211.03955,1062.5992 C 211.35851,1062.9182 210.61511,1063.6101 209.9123,1063.6484 C 209.39276,1063.6768 209.37085,1063.7113 209.80118,1063.8235 C 210.09601,1063.9004 210.25903,1064.0899 210.16346,1064.2445 C 209.87647,1064.7089 210.55483,1064.5614 211.06849,1064.0477 C 211.5969,1063.5193 213.70876,1063.2918 214.89257,1063.6357 C 215.43113,1063.7922 215.12046,1063.8659 213.82792,1063.8883 C 212.37901,1063.9134 211.74364,1064.0921 210.74548,1064.7551 C 209.71765,1065.4379 209.56198,1065.6592 209.89262,1065.9673 C 210.11508,1066.1746 210.50977,1066.2626 210.76972,1066.1629 C 211.02966,1066.0631 211.24234,1066.1331 211.24234,1066.3183 C 211.24234,1066.5035 211.01357,1066.655 210.73397,1066.655 C 210.45436,1066.655 209.99506,1066.8636 209.71331,1067.1186 C 209.08218,1067.6898 208.20048,1067.4006 208.20048,1066.6225 C 208.20048,1066.3057 208.00494,1066.0466 207.76593,1066.0466 C 207.16243,1066.0466 206.25338,1067 206.63311,1067.2347 C 206.80784,1067.3427 206.56016,1067.9255 206.04722,1068.6135 C 205.55849,1069.2689 205.14901,1069.6097 205.13725,1069.3708 C 205.12439,1069.1095 205.0117,1069.1788 204.85444,1069.5448 C 204.49466,1070.382 204.49466,1070.6797 204.85444,1070.4573 C 205.11104,1070.2987 205.34834,1072.2134 205.18711,1073.1415 C 205.16316,1073.2795 205.26827,1073.3152 205.42069,1073.221 C 205.7524,1073.016 206.07353,1073.9631 206.23699,1075.6285 C 206.32519,1076.5271 206.28496,1076.6862 206.08308,1076.2368 C 205.93275,1075.9022 205.80014,1075.3205 205.78838,1074.9441 C 205.76272,1074.1225 205.15863,1074.0129 205.15863,1074.8298 C 205.15863,1075.1433 205.38105,1075.9989 205.65289,1076.7309 C 205.92473,1077.463 206.13097,1078.3775 206.11119,1078.7631 C 206.08781,1079.2189 206.19737,1079.3887 206.42439,1079.2484 C 206.63675,1079.1172 206.69068,1079.1667 206.56203,1079.3749 C 206.26745,1079.8515 207.03767,1081.2102 208.31808,1082.4726 C 209.43018,1083.5691 209.70343,1084.2745 209.03699,1084.3286 C 208.82787,1084.3456 208.1466,1084.4061 207.52307,1084.463 C 206.89953,1084.5199 206.31706,1084.4495 206.22868,1084.3065 z M 203.94189,1081.8643 C 203.94189,1081.697 203.72848,1081.5601 203.46766,1081.5601 C 203.20683,1081.5601 203.07802,1081.697 203.18142,1081.8643 C 203.28482,1082.0316 203.49822,1082.1685 203.65565,1082.1685 C 203.81308,1082.1685 203.94189,1082.0316 203.94189,1081.8643 z M 201.283,1066.0466 C 201.59402,1066.0466 201.76389,1065.9097 201.66049,1065.7424 C 201.39726,1065.3165 201.91871,1065.3619 202.36012,1065.8033 C 202.64403,1066.0872 202.72514,1066.0153 202.72514,1065.48 C 202.72514,1064.9407 202.57689,1064.8123 202.04073,1064.8868 C 201.52649,1064.9583 201.33214,1064.8118 201.25911,1064.2976 C 201.12581,1063.359 200.58733,1063.428 200.6656,1064.3736 C 200.70021,1064.7919 200.83556,1065.1341 200.96638,1065.1341 C 201.46575,1065.1341 201.17592,1065.6789 200.59584,1065.8306 C 200.26124,1065.9181 199.98747,1066.1667 199.98747,1066.3832 C 199.98747,1066.6892 200.06859,1066.6956 200.3525,1066.4116 C 200.55326,1066.2109 200.97199,1066.0466 201.283,1066.0466 z M 203.57672,1065.058 C 203.11044,1063.6759 203.02933,1063.6571 203.02933,1064.9313 C 203.02933,1065.7021 203.16538,1066.0466 203.46978,1066.0466 C 203.83233,1066.0466 203.85125,1065.8718 203.57672,1065.058 z M 208.52029,1064.8819 C 207.66904,1064.7544 206.8934,1065.046 207.11787,1065.4092 C 207.21976,1065.574 207.67962,1065.5437 208.23954,1065.3353 C 209.07812,1065.0231 209.11078,1064.9703 208.52029,1064.8819 z M 199.98747,1064.5436 C 199.98747,1064.1329 199.43296,1063.8481 199.06995,1064.0725 C 198.89992,1064.1776 198.83956,1064.391 198.93581,1064.5467 C 199.16416,1064.9162 199.98747,1064.9138 199.98747,1064.5436 z M 203.39055,1063.1012 C 203.17097,1063.0133 202.90861,1063.0241 202.80753,1063.1252 C 202.70645,1063.2263 202.88611,1063.2981 203.20677,1063.2849 C 203.56113,1063.2703 203.63321,1063.1983 203.39055,1063.1012 z M 214.81652,1084.3873 C 215.19295,1084.3148 215.80893,1084.3148 216.18536,1084.3873 C 216.56178,1084.4598 216.2538,1084.5191 215.50094,1084.5191 C 214.74808,1084.5191 214.44009,1084.4598 214.81652,1084.3873 z M 197.98041,1082.5125 C 197.99683,1082.0999 198.19574,1081.7006 198.42242,1081.6252 C 198.72041,1081.5261 198.77792,1081.6666 198.63006,1082.1325 C 198.50893,1082.5141 198.55793,1082.7768 198.75023,1082.7768 C 198.92881,1082.7768 199.07492,1082.9052 199.07492,1083.0621 C 199.07492,1083.219 198.82194,1083.3283 198.51274,1083.305 C 198.12023,1083.2755 197.95957,1083.0363 197.98041,1082.5125 z M 231.69882,1082.9715 C 230.84998,1082.5511 230.80532,1082.1631 231.62392,1082.3208 C 232.41824,1082.4737 232.83952,1082.7434 232.83952,1083.099 C 232.83952,1083.4445 232.59977,1083.4177 231.69882,1082.9715 z M 218.45071,1082.8529 C 218.09437,1082.2177 217.95428,1080.9517 218.24034,1080.9517 C 218.41497,1080.9517 218.68889,1080.6071 218.84905,1080.1858 C 219.10552,1079.5112 220.18671,1078.8224 220.98907,1078.8224 C 221.14162,1078.8224 221.48672,1079.1586 221.75595,1079.5695 C 222.31957,1080.4297 222.08398,1081.1882 221.42345,1080.64 C 221.09479,1080.3672 220.97115,1080.5176 220.80767,1081.389 C 220.51774,1082.9345 219.91656,1083.2055 220.15445,1081.6834 C 220.3233,1080.603 220.30064,1080.5481 219.90429,1081.0769 C 219.65424,1081.4106 219.54455,1081.9617 219.64697,1082.3697 C 219.7906,1082.942 219.70366,1083.081 219.20209,1083.081 C 218.85923,1083.081 218.5211,1082.9784 218.45071,1082.8529 z M 223.30837,1081.9657 C 222.97604,1081.6333 223.07829,1080.9517 223.46046,1080.9517 C 223.65565,1080.9517 223.72528,1081.0418 223.61519,1081.1519 C 223.50511,1081.262 223.5675,1081.5357 223.75383,1081.7602 C 224.09208,1082.1678 223.69405,1082.3513 223.30837,1081.9657 z M 207.29644,1080.5178 C 206.84443,1079.329 206.93389,1079.1418 207.476,1080.1421 C 207.73335,1080.617 207.86858,1081.0808 207.77652,1081.1729 C 207.68446,1081.265 207.46842,1080.9702 207.29644,1080.5178 z M 226.91678,1080.9661 C 226.66629,1080.5608 227.91748,1079.4551 228.64265,1079.4409 C 229.44109,1079.4253 230.71022,1080.0915 230.71022,1080.5262 C 230.71022,1080.8313 230.52898,1080.8211 229.87371,1080.4793 C 228.77526,1079.9063 228.59149,1079.9232 227.7961,1080.6704 C 227.34945,1081.09 227.05464,1081.1892 226.91678,1080.9661 z M 224.5215,1080.0721 C 224.7781,1078.9956 224.89768,1078.8224 225.38442,1078.8224 C 225.84006,1078.8224 226.28854,1079.8689 226.01947,1080.3043 C 225.92749,1080.4531 225.51027,1080.6403 225.09231,1080.7202 C 224.40551,1080.8515 224.35058,1080.7891 224.5215,1080.0721 z M 200.66809,1079.9897 C 200.46105,1079.7827 200.29166,1079.406 200.29166,1079.1527 C 200.29166,1078.7541 200.35785,1078.7582 200.78324,1079.1836 C 201.05362,1079.454 201.22301,1079.8307 201.15967,1080.0207 C 201.07651,1080.2702 200.93994,1080.2616 200.66809,1079.9897 z M 237.92884,1079.5354 C 238.13478,1079.4521 238.54543,1079.4471 238.84139,1079.5242 C 239.13736,1079.6013 238.96885,1079.6695 238.46695,1079.6757 C 237.96504,1079.6819 237.72289,1079.6188 237.92884,1079.5354 z M 195.62748,1078.0113 C 195.32414,1077.7079 195.38271,1076.6313 195.69216,1076.8225 C 196.04084,1077.038 196.34773,1078.214 196.05528,1078.214 C 195.93152,1078.214 195.73901,1078.1228 195.62748,1078.0113 z M 223.64049,1076.62 C 222.86903,1075.7433 222.28447,1074.9793 222.34147,1074.9224 C 222.60482,1074.659 223.72344,1075.572 224.31994,1076.5372 C 224.79831,1077.3112 225.20402,1077.6116 225.79201,1077.6271 C 226.51896,1077.6462 226.54019,1077.6757 225.99534,1077.9099 C 225.66074,1078.0536 225.30961,1078.1809 225.21506,1078.1927 C 225.12051,1078.2044 224.41195,1077.4967 223.64049,1076.62 z M 199.87747,1076.541 C 199.98834,1076.2521 199.87328,1076.0847 199.56374,1076.0847 C 199.29489,1076.0847 199.07492,1075.9819 199.07492,1075.8562 C 199.07492,1075.7305 199.79355,1075.6094 200.67189,1075.5871 C 201.55023,1075.5649 202.09776,1075.6107 201.88863,1075.689 C 201.67951,1075.7672 201.5084,1076.0105 201.5084,1076.2296 C 201.5084,1076.6405 200.865,1076.9973 200.12423,1076.9973 C 199.87423,1076.9973 199.77371,1076.8114 199.87747,1076.541 z M 196.23585,1075.882 C 196.12432,1075.7704 196.04483,1075.3256 196.05921,1074.8934 C 196.08488,1074.1218 196.0902,1074.1238 196.35333,1075.0048 C 196.62984,1075.9306 196.58905,1076.2352 196.23585,1075.882 z M 232.07905,1074.868 C 231.97565,1074.7007 232.03602,1074.5638 232.21319,1074.5638 C 232.39037,1074.5638 232.53533,1074.7007 232.53533,1074.868 C 232.53533,1075.0353 232.47497,1075.1722 232.40119,1075.1722 C 232.32741,1075.1722 232.18245,1075.0353 232.07905,1074.868 z M 199.07492,1074.1255 C 199.07492,1073.5912 199.25744,1073.5125 199.5182,1073.9344 C 199.61446,1074.0902 199.55409,1074.3036 199.38406,1074.4087 C 199.21403,1074.5137 199.07492,1074.3863 199.07492,1074.1255 z M 217.87545,1071.794 C 217.39801,1071.2582 217.13081,1070.6795 217.23523,1070.4073 C 217.59054,1069.4814 218.76395,1068.5821 219.47517,1068.6907 C 220.38191,1068.829 220.64456,1069.0885 219.87792,1069.0885 C 218.84563,1069.0885 217.88997,1069.9783 217.9931,1070.8435 C 218.04448,1071.2745 218.23967,1071.6773 218.42687,1071.7387 C 218.64533,1071.8103 218.71108,1071.5566 218.61046,1071.0302 C 218.29755,1069.3933 220.72483,1068.7847 222.26907,1070.1128 C 222.72915,1070.5085 223.10558,1070.9312 223.10558,1071.0521 C 223.10558,1071.173 222.68442,1070.9175 222.16968,1070.4844 C 221.65494,1070.0512 221.02996,1069.6969 220.78085,1069.6969 C 220.05033,1069.6969 219.15116,1070.2902 219.15116,1070.7722 C 219.15116,1071.3541 219.64494,1071.3468 219.86954,1070.7615 C 220.1314,1070.0791 221.48077,1070.2062 222.01099,1070.9632 C 222.57282,1071.7653 222.39191,1072.1303 221.43256,1072.1303 C 221.03405,1072.1303 220.64188,1072.2373 220.56108,1072.3681 C 220.48027,1072.4988 220.02732,1072.63 219.55452,1072.6597 C 218.93981,1072.6982 218.46141,1072.4516 217.87545,1071.794 z M 222.66683,1072.4629 C 222.57308,1072.3112 222.77032,1072.2587 223.10516,1072.3463 C 223.81543,1072.532 223.90521,1072.7387 223.27562,1072.7387 C 223.03454,1072.7387 222.76059,1072.6146 222.66683,1072.4629 z M 205.61491,1072.1303 C 205.51151,1071.963 205.57187,1071.8261 205.74905,1071.8261 C 205.92622,1071.8261 206.07118,1071.963 206.07118,1072.1303 C 206.07118,1072.2976 206.01082,1072.4345 205.93704,1072.4345 C 205.86327,1072.4345 205.7183,1072.2976 205.61491,1072.1303 z M 224.01813,1071.5087 C 224.01813,1071.3341 223.68074,1070.8274 223.26837,1070.3826 C 222.856,1069.9379 222.58868,1069.504 222.67434,1069.4183 C 222.87689,1069.2158 224.6265,1071.0864 224.6265,1071.5055 C 224.6265,1071.6818 224.48962,1071.8261 224.32232,1071.8261 C 224.15502,1071.8261 224.01813,1071.6833 224.01813,1071.5087 z M 225.61511,1070.408 C 225.40598,1070.3236 225.23488,1070.1144 225.23488,1069.9431 C 225.23488,1069.7634 225.45991,1069.7272 225.7672,1069.8575 C 226.05998,1069.9816 226.77862,1070.1858 227.36418,1070.3113 L 228.42882,1070.5394 L 227.21208,1070.5504 C 226.54287,1070.5564 225.82424,1070.4923 225.61511,1070.408 z M 224.39837,1066.7577 C 224.18924,1066.6733 224.01813,1066.4621 224.01813,1066.2882 C 224.01813,1066.0808 224.15853,1066.0887 224.42635,1066.3109 C 224.65087,1066.4973 224.92464,1066.5596 225.03472,1066.4496 C 225.14481,1066.3395 225.23488,1066.4091 225.23488,1066.6043 C 225.23488,1066.9761 225.03192,1067.0134 224.39837,1066.7577 z M 221.12837,1065.9065 C 219.04431,1065.5744 217.14865,1064.8598 218.2967,1064.8391 C 218.57961,1064.834 218.88391,1064.9477 218.97293,1065.0918 C 219.06195,1065.2358 220.03587,1065.426 221.13721,1065.5144 C 222.95374,1065.6602 223.72632,1065.8774 223.38441,1066.1463 C 223.3147,1066.2011 222.29949,1066.0932 221.12837,1065.9065 z M 216.10931,1064.2395 C 216.10931,1064.0623 216.24619,1063.9173 216.41349,1063.9173 C 216.5808,1063.9173 216.71768,1063.9777 216.71768,1064.0515 C 216.71768,1064.1252 216.5808,1064.2702 216.41349,1064.3736 C 216.24619,1064.477 216.10931,1064.4166 216.10931,1064.2395 z M 218.01681,1064.3419 C 218.11788,1064.2408 218.38024,1064.23 218.59983,1064.3179 C 218.84249,1064.415 218.77041,1064.4871 218.41605,1064.5017 C 218.09539,1064.5149 217.91573,1064.443 218.01681,1064.3419 z M 196.64143,1063.0048 C 197.23117,1062.6236 197.55399,1062.6236 197.55399,1063.0048 C 197.55399,1063.1721 197.246,1063.3069 196.86957,1063.3043 C 196.31612,1063.3005 196.27247,1063.2432 196.64143,1063.0048 z M 214.80847,1063.1235 C 214.70573,1063.0207 214.23774,1062.8999 213.76851,1062.8549 C 212.64046,1062.7469 211.85071,1062.404 211.85071,1062.0224 C 211.85071,1061.8525 212.07085,1061.8962 212.33991,1062.1195 C 212.75569,1062.4646 212.89314,1062.4379 213.25588,1061.9419 C 213.673,1061.3714 213.69329,1061.3734 214.15277,1062.0294 C 214.67023,1062.7682 215.27127,1062.9445 215.01746,1062.2831 C 214.8991,1061.9747 215.06384,1061.9051 215.64817,1062.0168 C 216.08317,1062.1 216.3991,1062.1866 216.35024,1062.2094 C 216.30138,1062.2322 215.97653,1062.4892 215.62835,1062.7805 C 215.28016,1063.0719 214.91122,1063.2262 214.80847,1063.1235 z M 203.72008,1062.2126 C 203.82116,1062.1115 204.08352,1062.1007 204.30311,1062.1886 C 204.54576,1062.2857 204.47369,1062.3578 204.11933,1062.3724 C 203.79867,1062.3856 203.61901,1062.3137 203.72008,1062.2126 z M 208.67405,1061.712 C 208.95993,1060.7819 209.06489,1060.7056 209.48313,1061.1239 C 209.75517,1061.3959 209.75627,1061.4838 209.48761,1061.4838 C 209.2921,1061.4838 209.21092,1061.6892 209.30722,1061.9401 C 209.4199,1062.2337 209.30075,1062.3964 208.97299,1062.3964 C 208.58526,1062.3964 208.5139,1062.233 208.67405,1061.712 z M 201.89497,1061.9084 C 201.99605,1061.8074 202.25841,1061.7965 202.47799,1061.8844 C 202.72065,1061.9815 202.64857,1062.0536 202.29421,1062.0682 C 201.97355,1062.0814 201.79389,1062.0095 201.89497,1061.9084 z M 205.8512,1060.883 C 205.79586,1060.1483 205.95959,1060.112 206.57092,1060.7234 C 206.82187,1060.9743 206.96017,1061.1797 206.87825,1061.1797 C 206.79634,1061.1797 206.54218,1061.2515 206.31345,1061.3392 C 206.05293,1061.4392 205.88026,1061.2688 205.8512,1060.883 z M 196.25549,1059.6343 C 196.36305,1059.223 196.50093,1059.0851 196.57687,1059.313 C 196.65002,1059.5324 196.56525,1059.8566 196.38849,1060.0333 C 196.16276,1060.2591 196.12317,1060.1403 196.25549,1059.6343 z M 198.23583,1059.3648 C 197.95441,1058.91 197.53143,1058.7462 196.63885,1058.7462 C 195.44717,1058.7462 195.42469,1058.7259 195.42469,1057.649 C 195.42469,1056.7735 195.5219,1056.5891 195.90585,1056.7364 C 196.17048,1056.838 196.54691,1056.9254 196.74236,1056.9307 C 196.9378,1056.9361 196.86056,1057.1205 196.57071,1057.3406 C 196.08333,1057.7107 196.10126,1057.767 196.8091,1058.0895 C 197.43252,1058.3736 197.60685,1058.354 197.74888,1057.9839 C 197.93025,1057.5112 198.6784,1057.3964 199.50632,1057.7141 C 200.36646,1058.0441 200.03139,1058.5268 199.07492,1058.3355 C 198.22482,1058.1655 197.74907,1058.5577 198.50127,1058.8084 C 198.68766,1058.8706 198.79033,1059.1604 198.7294,1059.4524 C 198.62975,1059.9301 198.58024,1059.9213 198.23583,1059.3648 z M 200.37404,1058.2582 C 200.47512,1058.1571 200.73748,1058.1463 200.95706,1058.2342 C 201.19972,1058.3313 201.12764,1058.4034 200.77329,1058.418 C 200.45262,1058.4312 200.27296,1058.3593 200.37404,1058.2582 z M 203.38154,1057.2252 C 203.38154,1056.807 203.45059,1056.6359 203.53497,1056.845 C 203.61936,1057.0541 203.61936,1057.3963 203.53497,1057.6055 C 203.45059,1057.8146 203.38154,1057.6435 203.38154,1057.2252 z" />
<rect
id="d0e135"
width="288"
height="1000px"
x="10"
y="1329.5825434000003"
style="display:none" />
<flowRoot
style="font-size:8.39999962px;font-style:normal;font-weight:normal;line-height:133.00000429%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Bitstream Vera Serif"
id="flowRoot238"
transform="translate(0,-132)">
<flowRegion
id="flowRegion240">
<use
xlink:href="#d0e135"
y="0"
x="0"
id="use242"
width="320"
height="3962.5" />
</flowRegion>
<flowDiv
xml:space="preserve"
id="flowDiv244">注意路徑中有龐大的節點數量。按 <flowSpan
style="font-weight:bold;-inkscape-font-specification:Bitstream Vera Serif Bold"
id="flowSpan2603">Ctrl+L</flowSpan> 之後,這是典型的效果:</flowDiv> </flowRoot>
<text
sodipodi:insensitive="true"
sodipodi:linespacing="100%"
y="1350.7375"
x="91.327339"
style="font-size:6px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:100%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:block;font-family:Bitstream Vera Sans"
xml:space="preserve"><tspan
y="1350.7375"
x="91.327339"
role="line">原始圖像</tspan></text>
<text
sodipodi:insensitive="true"
sodipodi:linespacing="100%"
y="1351.0735"
x="237.35374"
style="font-size:6px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:100%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:block;font-family:Bitstream Vera Sans"
xml:space="preserve"><tspan
y="1351.0735"
x="237.35374"
role="line">描繪圖像 / 輸出路徑 - 簡化的</tspan><tspan
y="1357.0735"
x="237.35374"
role="line">(384 個節點)</tspan></text>
<image
y="1222.4586"
x="49.6539"
height="115.89471"
width="83.346848"
sodipodi:absref="/oldguitar.jpg"
xlink:href="oldguitar.jpg" />
<path
d="M 195.35846,1316.0415 C 195.35846,1307.2708 195.35846,1298.5001 195.35846,1289.7294 C 198.11292,1289.9439 193.89504,1289.2463 195.34938,1286.9846 C 195.36261,1277.8107 195.37584,1268.6368 195.38907,1259.4629 C 198.53357,1259.0806 198.91239,1258.6504 200.53842,1259.3227 C 200.43727,1258.78 207.15024,1260.3853 204.81045,1258.3158 C 207.13314,1258.3661 209.8518,1257.9227 206.69694,1259.4864 C 210.45333,1258.8137 214.30743,1256.9035 217.83133,1259.1367 C 223.16314,1259.2341 220.86231,1259.1744 219.42956,1258.0867 C 222.60362,1257.6578 213.23833,1257.9484 217.6681,1258.0006 C 219.74588,1255.1998 227.30428,1261.8853 224.58504,1254.781 C 226.14921,1254.2882 225.97569,1260.9076 227.47832,1255.4796 C 230.03548,1251.747 229.88363,1258.9729 233.85234,1257.0836 C 234.92126,1253.3825 229.68033,1250.4003 226.73211,1248.9179 C 229.53604,1250.6023 231.98861,1249.7108 228.90088,1246.8948 C 228.56373,1243.7006 234.13414,1250.731 236.8979,1249.9185 C 241.23218,1251.6613 229.56563,1252.5626 236.39226,1252.7739 C 237.48257,1254.4785 241.22521,1258.7838 240.33924,1253.4571 C 240.30338,1251.6383 240.10584,1243.33 238.85007,1248.6643 C 235.39197,1247.7851 233.79159,1243.8275 231.13894,1244.5085 C 230.52141,1243.0314 232.29546,1243.0045 232.87527,1241.9418 C 232.06013,1244.2654 239.37327,1245.2902 238.78653,1242.7941 C 237.35904,1240.665 233.00111,1244.5442 233.83793,1241.0217 C 238.37586,1241.3993 236.51356,1238.3574 234.18595,1238.6778 C 232.68989,1240.5127 224.29812,1242.1205 225.56687,1241.1028 C 227.20112,1239.3962 232.8471,1239.8664 235.56012,1236.3887 C 240.3496,1233.6333 245.30939,1230.994 250.99616,1232.5048 C 252.82144,1230.7011 249.55894,1225.3316 253.87721,1226.5884 C 258.96517,1226.7056 264.18636,1226.0459 269.16353,1226.9188 C 272.87421,1226.4865 281.12089,1224.8031 278.54092,1231.8949 C 278.61378,1268.7143 278.63866,1305.5347 278.40111,1342.3535 C 250.72023,1342.3535 223.03935,1342.3535 195.35846,1342.3535 C 195.35846,1333.5829 195.35846,1324.8122 195.35846,1316.0415 z M 202.34403,1341.1568 C 203.16051,1338.2029 200.07137,1343.236 202.34403,1341.1568 L 202.34403,1341.1568 z M 204.69936,1339.5222 C 204.59671,1337.057 203.61419,1342.4691 204.69936,1339.5222 z M 205.88456,1339.394 C 205.29227,1339.6133 206.30382,1340.8205 205.88456,1339.394 z M 203.57148,1338.8803 C 205.15322,1334.1068 200.86007,1341.8378 203.57148,1338.8803 z M 201.76963,1339.0835 C 203.01805,1334.4835 207.18561,1329.412 211.81865,1329.1908 C 213.27632,1327.1185 211.34038,1324.1684 211.74084,1321.983 C 206.82108,1317.6336 208.21213,1330.5343 204.11755,1332.6666 C 201.16739,1333.4503 200.15573,1338.6603 201.76963,1339.0835 z M 256.83377,1336.0262 C 254.34872,1331.1782 257.58722,1340.4688 256.83377,1336.0262 L 256.83377,1336.0262 z M 255.10621,1335.8588 C 253.71648,1334.4504 255.5289,1337.7421 255.10621,1335.8588 z M 253.77718,1333.8645 C 251.43006,1332.1508 254.68589,1336.4872 253.77718,1333.8645 z M 256.05393,1332.3328 C 254.592,1329.6406 254.19312,1337.566 256.05393,1332.3328 L 256.05393,1332.3328 z M 253.4579,1331.1359 C 251.5749,1327.9123 252.94491,1332.5933 253.4579,1331.1359 z M 255.89139,1330.7765 C 255.27298,1330.109 255.20273,1331.7943 255.89139,1330.7765 z M 248.40313,1328.3557 C 245.57426,1326.3522 246.70943,1329.3255 248.40313,1328.3557 z M 254.42749,1328.1532 C 252.67226,1327.9614 255.0045,1328.6892 254.42749,1328.1532 z M 245.85328,1327.558 C 242.73927,1326.3662 243.74001,1323.6858 242.10699,1323.4442 C 244.73703,1324.358 244.20521,1325.5679 246.98065,1325.4331 C 250.46033,1328.2052 253.57601,1326.2264 257.01989,1327.0328 C 254.70948,1324.7189 248.521,1327.4923 245.42962,1323.7858 C 238.08451,1319.9137 232.0926,1313.2437 223.52697,1312.0235 C 220.4093,1310.7236 213.92131,1307.8419 213.82509,1305.5406 C 217.61395,1301.2223 207.6086,1304.8483 206.78104,1306.897 C 202.70653,1310.3226 208.92782,1316.4583 210.10743,1315.6035 C 211.41079,1313.406 211.99591,1315.9009 210.35291,1316.3637 C 211.23393,1315.5778 216.6631,1319.0447 212.95731,1315.189 C 210.47777,1313.6583 209.28921,1313.7009 210.81434,1312.1972 C 213.67819,1311.4612 215.49464,1319.106 215.22906,1314.4437 C 217.05745,1316.2397 220.81478,1318.9763 220.7932,1315.1845 C 221.30682,1315.81 225.73385,1318.7647 228.8915,1320.0448 C 229.90574,1317.113 232.05016,1322.7435 228.87387,1320.9998 C 232.07104,1323.9817 238.57184,1323.8988 242.7753,1326.4351 C 243.83579,1326.3625 245.0089,1328.1849 245.85328,1327.558 z M 240.07373,1324.1024 C 240.83054,1322.9181 240.83056,1325.2866 240.07373,1324.1024 z M 238.857,1323.494 C 236.78937,1324.2198 234.19307,1320.3544 235.69495,1321.498 C 234.67239,1322.1398 241.55829,1323.9914 238.857,1323.494 z M 233.91156,1322.2515 C 231.02477,1321.5716 233.64177,1319.8513 234.49596,1322.5403 L 233.91157,1322.2515 L 233.91156,1322.2515 z M 231.55654,1320.9264 C 231.95109,1319.4807 232.19543,1322.0568 231.55654,1320.9264 z M 233.91397,1320.8592 C 236.07877,1320.5131 233.70319,1321.399 233.91397,1320.8592 z M 212.08867,1316.3636 C 212.85609,1315.1725 212.92632,1317.003 212.08867,1316.3636 z M 214.62712,1313.2907 C 214.44804,1311.6463 216.53422,1315.0065 214.62712,1313.2907 L 214.62712,1313.2907 z M 216.09391,1325.07 C 218.79782,1324.2408 222.98624,1323.3174 217.59352,1323.0272 C 214.95368,1321.2495 210.83766,1323.0958 214.05309,1325.6144 L 214.93081,1325.4775 L 216.09391,1325.07 L 216.09391,1325.07 z M 228.51468,1321.4951 C 226.843,1318.7534 224.24061,1321.1546 228.51468,1321.4951 z M 224.25609,1320.4521 C 223.4989,1319.2681 223.49964,1321.6364 224.25609,1320.4521 z M 225.70098,1320.0719 C 224.61547,1318.8754 224.84303,1321.5441 225.70098,1320.0719 z M 218.17238,1317.1061 C 217.03246,1315.8594 217.03246,1318.3528 218.17238,1317.1061 z M 241.74675,1308.8931 C 240.81396,1307.9151 241.65068,1309.9413 241.74675,1308.8931 z M 238.40071,1308.2847 C 237.00199,1307.2029 238.38105,1309.3238 238.40071,1308.2847 z M 251.66993,1307.471 C 250.56167,1306.079 252.49569,1309.7155 251.66993,1307.471 z M 237.16877,1307.7105 C 234.20155,1306.0423 236.4248,1308.2853 237.16877,1307.7105 z M 240.68212,1307.05 C 239.47564,1307.2249 240.48699,1306.9173 240.68212,1307.05 z M 235.05468,1306.7638 C 233.44358,1305.6526 235.3958,1307.8121 235.05468,1306.7638 z M 252.54535,1306.0287 C 253.01789,1304.5053 254.96234,1302.2433 253.54392,1302.2857 C 257.2275,1301.5053 254.39118,1303.5431 253.95592,1305.8285 C 256.43601,1305.3728 257.77614,1295.2661 256.51929,1297.2942 C 255.59498,1304.8808 256.08699,1291.3602 253.75813,1292.1629 C 254.48556,1293.7043 247.53852,1294.0451 249.27535,1292.1534 C 249.18398,1289.4431 246.30188,1284.6777 243.04645,1282.2035 C 246.33383,1283.0833 249.42478,1288.7902 251.00647,1292.1629 C 252.43945,1288.3201 244.6785,1282.2194 245.0099,1281.629 C 247.4113,1283.0773 253.10434,1288.65 248.53937,1283.0373 C 247.55279,1281.2931 242.27302,1279.0992 247.23971,1280.8969 C 249.02072,1282.5631 254.55298,1288.5263 250.41715,1283.0776 C 249.65994,1279.36 240.19493,1279.3932 245.66861,1276.2493 C 246.45817,1273.0985 250.17435,1265.9843 249.49164,1265.033 C 246.29736,1266.5094 252.50858,1261.3564 248.77921,1262.832 C 246.08983,1262.2548 245.20697,1263.3121 248.36928,1263.055 C 249.66017,1265.8402 244.46295,1266.6433 245.10982,1263.0656 C 237.75789,1262.9845 238.06378,1271.6065 238.17036,1276.8106 C 235.10962,1281.8172 225.29488,1279.6876 222.5379,1284.576 C 221.80073,1289.777 225.41798,1296.4846 230.41351,1290.3887 C 233.68698,1288.211 236.18051,1284.0618 239.06338,1282.5455 C 241.87611,1282.5983 240.73441,1285.2386 244.86042,1286.2975 C 247.21247,1287.4519 249.95157,1292.3861 246.70256,1290.8669 C 247.94968,1294.3294 250.46429,1296.5151 250.20298,1300.4065 C 252.11678,1299.7536 251.64449,1305.3926 250.06161,1301.2885 C 249.90831,1302.2511 251.99377,1306.6925 252.54535,1306.0287 z M 252.14611,1303.8297 C 251.49353,1302.245 254.47611,1303.9754 252.1461,1303.8297 L 252.14611,1303.8297 z M 252.24115,1301.4226 C 253.37851,1301.7716 252.51948,1301.4196 252.24115,1301.4226 z M 255.76453,1301.6335 C 255.56341,1299.7495 256.67795,1302.3578 255.76453,1301.6335 z M 251.02442,1295.4994 C 251.91695,1294.4825 252.43445,1296.0776 251.02442,1295.4994 z M 254.09029,1293.8614 C 254.22027,1292.5395 254.37132,1294.9996 254.09029,1293.8614 z M 242.65932,1284.8625 C 242.59547,1283.636 243.90893,1286.0077 242.65932,1284.8625 z M 241.42467,1281.3741 C 240.17571,1279.92 243.63753,1282.8332 241.42467,1281.374 L 241.42467,1281.3741 z M 244.94071,1274.9763 C 245.48369,1273.5176 245.48347,1276.4353 244.94071,1274.9763 z M 243.63083,1274.934 C 243.42942,1273.2658 245.1363,1275.6905 243.63083,1274.934 z M 246.76583,1270.4315 C 247.53318,1269.2403 247.6035,1271.0711 246.76583,1270.4315 z M 246.76583,1268.3023 C 247.67273,1266.4636 247.38282,1269.6871 246.76583,1268.3023 z M 247.3742,1267.524 C 248.13084,1266.3397 248.13116,1268.7078 247.3742,1267.524 z M 246.81385,1266.9156 C 247.02454,1265.1449 247.02474,1268.6872 246.81385,1266.9156 z M 242.00859,1264.6714 C 243.85682,1261.9869 243.90588,1265.4711 242.0086,1264.6714 L 242.00859,1264.6714 z M 244.33699,1263.9497 C 245.59923,1261.1939 244.3833,1265.9834 244.33699,1263.9497 z M 233.78888,1305.3769 C 235.87748,1303.4755 233.93548,1302.4486 234.01145,1302.8094 C 234.65082,1295.8668 232.11849,1308.6195 232.06066,1302.6379 C 233.26625,1297.8399 230.00264,1299.9542 230.33238,1301.8581 C 227.37029,1299.7013 233.90833,1307.5712 233.78888,1305.3769 z M 233.45223,1303.1136 C 233.62104,1301.037 233.62101,1305.1902 233.45223,1303.1136 z M 231.15096,1302.6066 C 229.77132,1301.0617 232.73898,1302.8734 231.15096,1302.6066 z M 245.24489,1303.1136 C 244.48788,1301.9294 244.48828,1304.298 245.24489,1303.1136 z M 229.12307,1300.4141 C 228.27149,1297.723 228.3895,1297.6544 229.59016,1298.7029 C 232.27939,1296.1358 227.42218,1298.4872 229.85074,1295.5863 C 233.38796,1295.5242 231.77146,1301.1556 232.71465,1295.8415 C 233.63029,1293.0493 234.81587,1287.7037 230.49189,1291.6145 C 226.84106,1292.3231 227.05962,1299.4836 229.12307,1300.4141 z M 228.25983,1295.8892 C 227.52209,1292.5766 229.83005,1297.7667 228.25983,1295.8892 z M 245.362,1299.9303 C 248.1001,1295.9192 244.31092,1295.8852 243.76895,1297.2387 C 243.10133,1295.0042 250.88557,1293.8833 244.47032,1293.2732 C 242.45792,1295.6379 243.63705,1297.3024 244.58581,1299.951 C 243.67364,1300.7481 245.35246,1301.0667 245.362,1299.9303 z M 244.23095,1294.6978 C 243.6022,1292.411 245.7407,1295.9309 244.23095,1294.6978 z M 240.25753,1299.5457 C 239.66522,1299.7648 240.67676,1300.9721 240.25753,1299.5457 z M 248.28675,1300.0717 C 247.52986,1298.8875 247.53001,1301.256 248.28675,1300.0717 z M 234.28955,1299.0832 C 233.83943,1297.1293 234.00492,1301.7618 234.28955,1299.0832 z M 246.93274,1298.9353 C 248.11715,1296.4457 246.06469,1292.7318 246.67646,1296.8065 C 245.92108,1297.0954 245.86338,1300.6546 246.93274,1298.9353 z M 248.59095,1298.2094 C 247.73472,1296.4379 247.53491,1301.3688 248.59094,1298.2094 L 248.59095,1298.2094 z M 243.27153,1294.2746 C 242.30702,1292.9732 243.69574,1288.8003 241.70469,1292.4064 C 241.17587,1291.9662 239.64204,1294.1149 240.65181,1290.4746 C 241.33669,1288.6197 237.22461,1284.5317 239.09274,1288.7313 C 240.53516,1290.9515 239.22477,1296.4631 241.44982,1294.4081 C 240.26233,1297.9986 243.57552,1292.7692 242.11287,1296.5341 C 242.91843,1296.2375 242.98252,1294.9545 243.27153,1294.2746 z M 235.38669,1295.4765 C 231.75368,1293.5289 236.86649,1297.6927 235.38669,1295.4765 L 235.38669,1295.4765 z M 238.09653,1295.2047 C 236.48545,1294.0935 238.43763,1296.253 238.09653,1295.2047 z M 256.32737,1293.6306 C 254.84888,1290.5197 256.64228,1287.239 255.1127,1286.1384 C 252.18707,1281.7429 252.06059,1293.4297 253.94664,1289.9563 C 250.57294,1286.1224 256.28212,1285.2365 254.42096,1287.4232 C 253.12559,1287.1594 254.04441,1289.644 254.79062,1288.6069 C 254.23435,1289.67 255.98941,1295.6425 256.32737,1293.6306 z M 234.73079,1294.0199 C 234.08928,1292.3246 233.49979,1295.1573 234.73079,1294.0199 z M 237.03188,1293.3471 C 235.53836,1293.3421 237.80415,1291.1632 235.51096,1293.0754 C 235.41643,1293.8738 236.76499,1293.8534 237.03188,1293.3471 z M 239.02208,1293.4005 C 240.74022,1289.5261 237.2741,1293.3289 239.02208,1293.4005 z M 213.71959,1291.7066 C 212.12375,1290.1128 213.91535,1293.2653 213.71959,1291.7066 z M 217.39086,1291.8246 C 219.36443,1290.6785 216.12739,1291.2239 218.38957,1289.8299 C 215.98801,1289.6372 212.6873,1292.7744 217.39086,1291.8246 z M 221.68847,1291.135 C 221.33095,1286.4295 220.07151,1288.6477 221.01511,1291.7526 C 221.39248,1292.0905 221.65805,1291.3379 221.68847,1291.135 z M 235.51096,1291.5545 C 232.92071,1290.1563 235.51698,1292.939 235.51096,1291.5545 z M 237.17098,1291.2714 C 237.0989,1289.8554 236.03973,1292.2895 237.17098,1291.2714 z M 220.30169,1290.3308 C 218.97708,1288.807 219.12013,1292.587 220.30169,1290.3308 z M 210.54636,1289.6533 C 209.44109,1289.0607 210.23693,1292.3861 210.54636,1289.6533 z M 235.98178,1289.8054 C 234.81302,1286.0795 235.43758,1293.4544 235.98178,1289.8054 z M 242.50722,1289.8636 C 241.37016,1290.2127 242.22855,1289.8607 242.50722,1289.8636 z M 237.48816,1289.7294 C 239.47221,1287.4493 236.56747,1289.8663 237.48816,1289.7294 z M 246.87209,1289.5871 C 246.59028,1287.7784 245.46355,1290.7144 246.87209,1289.5871 z M 215.88836,1288.7408 C 219.61615,1286.7353 214.06,1286.3292 214.71149,1287.2959 C 214.94099,1287.209 214.75664,1291.4523 215.88836,1288.7408 z M 202.35472,1289.0542 C 204.60214,1288.0204 207.06057,1286.3452 202.40245,1287.3586 C 199.34035,1287.3711 197.89129,1289.9014 202.35472,1289.0542 z M 202.37874,1288.0817 C 202.50874,1286.7601 202.65977,1289.2203 202.37874,1288.0817 z M 212.93045,1288.5124 C 211.57665,1286.9815 213.57244,1290.7136 212.93045,1288.5124 z M 206.61333,1288.8168 C 205.88471,1287.6017 206.12836,1289.948 206.61333,1288.8168 z M 210.25431,1288.2193 C 209.58644,1286.7027 208.44344,1290.5932 210.25431,1288.2193 z M 219.99749,1288.6719 C 216.75495,1287.5853 217.52023,1290 219.99749,1288.6719 z M 242.35514,1288.5127 C 244.28177,1288.6731 240.24212,1287.8015 242.0295,1288.6244 L 242.35513,1288.5127 L 242.35514,1288.5127 z M 244.85888,1288.9102 C 242.26118,1288.6482 245.29096,1289.4091 244.85888,1288.9102 z M 257.3138,1286.6115 C 260.3972,1282.2481 262.06451,1278.6223 262.4065,1275.5771 C 263.57929,1271.3143 259.42475,1265.1217 255.60482,1265.8025 C 258.89998,1266.1823 257.91112,1268.1181 260.11389,1269.3627 C 261.12827,1272.054 259.7476,1273.2621 260.84553,1274.3228 C 262.22518,1276.6386 261.91581,1275.1602 259.96473,1276.1171 C 259.66592,1277.3105 258.69595,1273.8727 258.02167,1277.4055 C 254.61147,1277.229 258.51616,1275.9657 258.84075,1274.0354 C 260.88254,1277.3122 258.92963,1267.9592 257.2803,1269.3814 C 258.50235,1267.7107 255.44454,1268.824 256.01024,1266.9736 C 254.23116,1270.977 256.23388,1264.1269 254.49463,1268.1464 C 252.74278,1271.1914 251.16059,1276.1905 254.37046,1273.4555 C 256.54189,1268.5331 255.67856,1273.0985 254.36748,1275.7528 C 252.99958,1274.713 253.42004,1274.3517 251.50975,1275.9212 C 250.61754,1277.6582 249.39824,1281.2644 251.62976,1278.0183 C 251.31531,1280.0892 253.09588,1279.8998 253.30941,1279.7416 C 253.50406,1277.6434 257.39069,1278.9448 255.56019,1281.028 C 252.59419,1278.8084 255.5131,1285.4626 252.17699,1281.7917 C 250.59339,1280.7666 252.23823,1284.0346 254.31723,1284.1244 C 257.57736,1284.0924 254.77681,1291.5807 257.3138,1286.6115 z M 255.49907,1283.3415 C 255.92819,1281.3368 256.53411,1285.2649 255.49907,1283.3415 z M 254.06627,1283.0373 C 254.82327,1281.8531 254.82292,1284.2216 254.06627,1283.0373 z M 256.54918,1281.9407 C 258.4251,1279.3732 259.25796,1284.1306 256.54918,1281.9407 z M 259.23743,1281.3643 C 261.04487,1279.6469 257.28461,1281.5095 258.62906,1279.235 C 259.08207,1275.016 259.58481,1280.1854 259.43831,1279.4725 C 259.74267,1276.5816 261.81904,1280.8647 260.19922,1280.16 C 260.84882,1280.4572 259.45119,1282.8107 259.23743,1281.3643 z M 257.10813,1279.9955 C 258.19989,1277.9166 257.78871,1281.961 257.10813,1279.9955 z M 256.80394,1278.7967 C 257.45824,1277.694 257.65079,1279.4697 256.80394,1278.7967 z M 251.63279,1276.8195 C 252.40002,1275.6282 252.4706,1277.4589 251.63279,1276.8195 z M 256.69394,1274.9763 C 256.796,1273.3055 257.59501,1276.5525 256.69394,1274.9763 z M 261.68132,1273.1778 C 258.45502,1269.9948 263.64782,1270.7661 261.68132,1273.1778 z M 256.65184,1273.6076 C 258.05405,1273.4457 256.8914,1273.4592 256.65184,1273.6076 z M 254.06627,1270.7178 C 255.71342,1269.3245 253.67016,1272.3307 254.06627,1270.7178 z M 256.49976,1270.8699 C 257.90599,1269.5646 257.09311,1272.0815 256.49976,1270.8699 z M 197.54479,1288.0006 C 195.78957,1287.8088 198.12183,1288.5367 197.54479,1288.0006 z M 213.50499,1286.7857 C 210.07845,1286.0214 214.49249,1289.4422 213.505,1286.7857 L 213.50499,1286.7857 z M 196.42311,1287.6001 C 194.83528,1286.4269 196.08414,1288.8607 196.42311,1287.6001 z M 209.48932,1286.7408 C 206.53592,1286.7006 209.49912,1288.6321 209.48932,1286.7408 z M 211.17611,1287.2959 C 210.04876,1286.2359 210.35587,1287.9134 211.17611,1287.2959 z M 207.13987,1287.0851 C 204.54225,1286.8232 207.57177,1287.5839 207.13987,1287.0851 z M 218.5336,1287.088 C 216.77838,1286.8962 219.11061,1287.6241 218.5336,1287.088 z M 240.60602,1286.2058 C 239.09,1285.8241 240.48875,1287.9969 240.60602,1286.2058 z M 218.05198,1285.2491 C 217.45973,1285.4679 218.47123,1286.6756 218.05198,1285.2491 z M 217.56401,1285.1667 C 216.87669,1283.919 216.24581,1286.4335 217.56401,1285.1667 z M 240.37792,1284.872 C 239.44859,1284.1993 239.00045,1285.9348 240.37792,1284.872 z M 253.64168,1284.3365 C 253.04936,1284.5554 254.06107,1285.763 253.64168,1284.3365 z M 252.76987,1283.7398 C 250.44908,1282.4308 253.81804,1285.5607 252.76987,1283.7398 z M 250.61582,1281.3817 C 248.18656,1279.8721 252.75507,1283.9125 250.61582,1281.3817 z M 224.40818,1280.908 C 223.00631,1280.746 224.16823,1280.7597 224.40818,1280.908 z M 251.1838,1280.2766 C 251.71863,1277.7132 249.44265,1282.6468 251.1838,1280.2766 z M 225.46402,1280.0074 C 226.82831,1278.6119 222.03286,1281.1249 225.46402,1280.0074 z M 228.23903,1278.3814 C 227.09728,1278.6896 229.16898,1280.4353 228.23903,1278.3814 L 228.23903,1278.3814 z M 225.77703,1276.548 C 225.02508,1274.5211 223.98961,1278.2545 225.77702,1276.548 L 225.77703,1276.548 z M 227.97261,1275.0731 C 227.2766,1275.6988 228.77703,1276.9962 227.97261,1275.0731 z M 227.29795,1275.7368 C 226.56925,1274.5217 226.81305,1276.8682 227.29795,1275.7368 z M 224.98183,1274.9956 C 223.5779,1273.8958 224.54514,1276.4246 224.98183,1274.9956 z M 227.90631,1272.6761 C 225.20056,1268.5739 225.63899,1275.0614 227.90631,1272.6761 z M 210.26355,1271.7825 C 209.53523,1270.5672 209.77821,1272.9135 210.26355,1271.7825 z M 226.82961,1270.3672 C 224.24093,1268.9488 228.04605,1272.206 226.82961,1270.3672 L 226.82961,1270.3672 z M 237.23334,1269.2729 C 236.69767,1269.0755 237.56615,1271.4037 237.23334,1269.2729 z M 225.77703,1269.0268 C 224.57052,1269.2017 225.58194,1268.894 225.77703,1269.0268 z M 226.93293,1268.6798 C 228.43458,1265.8942 224.56304,1270.1249 226.93292,1268.6798 L 226.93293,1268.6798 z M 202.35472,1268.2843 C 201.62298,1266.5874 202.02136,1269.8962 202.35472,1268.2843 z M 236.92723,1266.8336 C 236.54034,1266.0714 237.10201,1271.1008 236.92723,1266.8336 z M 257.79065,1267.626 C 257.09712,1265.8364 256.74869,1268.3344 257.79065,1267.626 z M 226.54055,1266.9106 C 230.03148,1263.5206 223.28791,1267.9207 226.54055,1266.9106 z M 196.47054,1262.5751 C 196.0834,1261.8299 196.64573,1266.8185 196.47054,1262.5751 z M 214.82634,1262.3168 C 214.13764,1261.6466 214.16582,1263.8897 214.82634,1262.3168 z M 267.8695,1256.3293 C 269.3688,1251.1224 269.06493,1242.0974 265.62557,1240.0532 C 268.50422,1245.0015 266.88416,1250.4663 264.96581,1255.4503 C 265.19687,1258.9474 267.98053,1262.3438 267.8695,1256.3293 z M 214.82634,1259.0067 C 211.71284,1257.8095 213.07789,1259.8936 214.82634,1259.0067 z M 237.33606,1257.6378 C 236.96596,1256.1953 236.73149,1259.1512 237.33606,1257.6378 z M 229.1184,1256.175 C 228.40799,1252.2253 228.39348,1259.0875 229.1184,1256.175 z M 238.24863,1247.2954 C 236.17163,1245.6972 238.93731,1248.8177 238.24863,1247.2954 z M 239.00908,1246.5349 C 238.0761,1245.5574 238.91328,1247.5832 239.00908,1246.5349 z M 238.09653,1245.3183 C 237.16369,1244.3403 238.0005,1246.3665 238.09653,1245.3183 z M 253.76209,1241.9723 C 251.86678,1239.8103 250.67667,1237.0358 251.37325,1233.9332 C 248.99941,1232.0287 241.97019,1231.8898 245.69493,1235.7809 C 247.01535,1235.1261 250.81032,1242.9744 253.76209,1241.9723 z M 266.16716,1236.6332 C 262.56539,1235.005 265.36306,1238.3209 266.16716,1236.6332 z M 262.39444,1236.4866 C 258.26776,1235.165 258.75276,1237.9172 262.39444,1236.4866 z M 264.21392,1234.8376 C 271.6821,1235.8621 260.55307,1232.5624 261.74696,1235.0441 C 262.54214,1234.7664 263.38995,1234.8201 264.21392,1234.8376 z M 268.25803,1233.3161 C 265.88126,1230.9102 259.63777,1230.7505 266.0094,1232.7105 C 266.40269,1232.681 268.86851,1234.8574 268.25803,1233.3161 z M 262.26961,1232.4084 C 260.9812,1232.8303 261.5351,1234.7596 262.26961,1232.4084 z M 268.97136,1231.5045 C 267.92321,1228.8829 260.26921,1228.7595 266.29779,1230.7205 C 267.03198,1230.4262 269.3713,1233.3238 268.97136,1231.5045 z M 201.66397,1258.5187 C 200.56111,1255.9476 202.94905,1258.7508 201.66397,1258.5187 z M 202.8617,1258.4997 C 202.84089,1256.7538 203.83733,1258.7856 202.8617,1258.4997 z M 209.82454,1257.8579 C 210.337,1255.06 216.57253,1257.6941 211.18618,1257.8364 L 209.82455,1257.8579 L 209.82454,1257.8579 z M 211.23314,1257.2779 C 209.47785,1257.0863 211.81025,1257.8138 211.23314,1257.2779 z M 203.87566,1257.4857 C 204.63246,1256.3014 204.63247,1258.6699 203.87566,1257.4857 z M 201.74636,1256.9195 C 203.384,1256.2742 204.02507,1257.9016 201.74636,1256.9195 z M 206.16245,1256.8861 C 202.1018,1257.2534 202.17996,1253.9379 202.54979,1251.5636 C 201.69978,1252.357 204.58894,1246.142 201.24076,1247.0411 C 202.3526,1244.0042 198.86505,1247.1576 198.88013,1244.2719 C 198.28819,1247.0544 198.81421,1241.761 196.16088,1243.8655 C 194.49196,1241.961 195.56934,1233.661 196.85889,1237.4095 C 198.02222,1234.8387 201.89859,1235.0967 204.60068,1235.7908 C 206.80914,1236.5884 213.14578,1234.1654 209.73495,1236.4031 C 209.94839,1237.3405 218.46305,1235.3788 212.80917,1236.5207 C 210.41848,1236.6942 208.94998,1238.7115 211.02678,1239.1357 C 208.48962,1241.0709 206.76512,1236.7727 205.98099,1241.1931 C 202.95502,1242.8186 206.36028,1246.0468 206.20258,1249.0177 C 204.19863,1243.5669 206.03999,1252.9184 207.39587,1254.1026 C 210.22552,1256.5862 209.68226,1257.5047 206.16245,1256.8861 z M 203.87566,1254.4439 C 202.46927,1253.1386 203.28248,1255.6555 203.87566,1254.4439 z M 201.21677,1238.6263 C 203.80417,1238.889 201.22502,1235.899 200.59937,1236.9532 C 202.21561,1238.1781 198.09423,1239.7853 201.21677,1238.6263 z M 203.51049,1237.6376 C 202.09396,1234.1896 203.7346,1241.0719 203.51049,1237.6376 z M 208.45406,1237.4615 C 204.95903,1237.5286 209.35017,1238.6784 208.45406,1237.4615 z M 199.92124,1237.1232 C 198.70209,1235.0052 198.405,1238.5567 199.92124,1237.1232 z M 203.32431,1235.6808 C 201.56902,1235.4891 203.90133,1236.2165 203.32431,1235.6808 z M 214.75029,1256.9669 C 218.16168,1256.8134 214.58834,1257.3987 214.75029,1256.9669 z M 197.91417,1255.0921 C 198.80394,1252.1882 199.23326,1258.0697 197.91417,1255.0921 z M 231.63259,1255.5511 C 229.39176,1253.3295 235.02802,1256.8276 231.63259,1255.5511 z M 218.38448,1255.4325 C 215.91912,1251.3634 224.38161,1251.3917 220.98738,1253.165 C 220.13163,1257.9632 219.84442,1250.7969 219.60025,1255.5196 L 219.13586,1255.6606 L 218.38448,1255.4325 L 218.38448,1255.4325 z M 223.24215,1254.5453 C 222.46731,1251.7143 224.7969,1255.4223 223.24215,1254.5453 z M 207.23021,1253.0974 C 206.18748,1249.8468 208.66522,1255.4966 207.23021,1253.0974 z M 226.85054,1253.5457 C 227.80865,1250.1679 233.19579,1254.2709 228.23558,1252.8243 C 227.7938,1252.972 227.42506,1253.9473 226.85054,1253.5457 z M 224.45527,1252.6516 C 226.01851,1248.672 226.3885,1255.5344 224.45527,1252.6516 z M 200.60186,1252.5692 C 198.57167,1248.8274 202.46474,1253.699 200.60186,1252.5692 z M 237.86261,1252.115 C 242.1412,1251.9408 237.09131,1252.5017 237.86261,1252.115 z M 195.56125,1250.5908 C 194.50318,1247.3896 197.25553,1251.5183 195.56125,1250.5908 z M 223.57425,1249.1996 C 219.45913,1245.1082 228.21688,1251.0258 225.14883,1250.7723 C 224.54556,1250.3313 224.07831,1249.7426 223.57425,1249.1996 z M 199.81124,1249.1206 C 197.78788,1246.9198 204.54773,1249.0699 199.80196,1249.4501 L 199.81124,1249.1206 L 199.81124,1249.1206 z M 196.16962,1248.4616 C 195.20901,1245.3751 197.33452,1248.8316 196.16962,1248.4616 z M 232.01282,1247.4475 C 231.94911,1246.2213 233.26238,1248.5931 232.01282,1247.4475 z M 199.00869,1246.7051 C 199.40327,1245.2594 199.64755,1247.8357 199.00869,1246.7051 z M 217.80922,1244.3736 C 215.25903,1241.3363 223.28272,1240.3783 218.0327,1242.7839 C 217.9302,1246.6894 219.44559,1239.0246 222.20284,1242.6924 C 225.13424,1243.0651 216.90965,1242.6432 219.80331,1243.3411 C 225.50602,1242.2187 219.95243,1247.3425 217.80922,1244.3736 z M 222.60061,1245.0425 C 222.90589,1244.2988 225.08109,1246.1814 222.60061,1245.0425 z M 205.54868,1244.7099 C 205.48483,1243.4835 206.79837,1245.8554 205.54868,1244.7099 z M 223.95189,1244.0883 C 220.73422,1240.8851 224.86343,1242.5782 224.25609,1244.4057 L 224.04126,1244.3125 L 223.9519,1244.0883 L 223.95189,1244.0883 z M 225.54888,1242.9876 C 224.93775,1241.5694 230.90461,1243.91 226.17483,1243.0927 L 225.54888,1242.9876 L 225.54888,1242.9876 z M 224.33214,1239.3373 C 222.82545,1237.7578 226.87626,1239.9627 224.33214,1239.3373 z M 221.06214,1238.4861 C 214.85934,1237.2205 221.2468,1237.6334 223.31818,1238.7259 C 222.55842,1238.7396 221.8107,1238.5891 221.06214,1238.4861 z M 216.04308,1236.8191 C 216.69701,1235.7165 216.89024,1237.4919 216.04308,1236.8191 z M 217.95058,1236.9215 C 219.45133,1236.402 218.16775,1237.5474 217.95058,1236.9215 z M 196.5752,1235.5844 C 198.78186,1234.448 196.06955,1236.9507 196.5752,1235.5844 z M 214.74224,1235.7032 C 210.12797,1235.4454 212.84725,1233.3325 214.99597,1235.206 C 214.70907,1233.6089 218.16016,1235.0767 214.74224,1235.7032 z M 203.65384,1234.7921 C 205.15502,1234.2722 203.87088,1235.4184 203.65384,1234.7921 z M 208.60782,1234.2917 C 210.00643,1231.6694 209.12953,1236.6073 208.60782,1234.2916 L 208.60782,1234.2917 z M 201.82874,1234.4879 C 203.32983,1233.9681 202.04577,1235.1142 201.82874,1234.4879 z M 205.78498,1233.4626 C 206.36092,1231.6054 207.22689,1235.3197 205.78498,1233.4626 z M 196.18926,1232.2139 C 197.07522,1230.5212 196.00651,1234.144 196.18926,1232.2139 z M 198.16961,1231.9444 C 196.13451,1232.6865 193.74912,1228.5889 196.77229,1229.6347 C 195.11636,1231.5033 202.84879,1229.7571 198.08779,1231.1844 C 198.87518,1231.0861 198.81398,1233.2509 198.16961,1231.9444 z M 200.3078,1230.8378 C 201.80871,1230.318 200.52498,1231.4639 200.3078,1230.8378 z M 203.31531,1229.8048 C 203.52611,1228.0319 203.52609,1231.5775 203.31531,1229.8048 z" />
<rect
id="d0e151"
width="288"
height="1000px"
x="10"
y="1510.3363154000003"
style="display:none" />
<flowRoot
style="font-size:8.39999962px;font-style:normal;font-weight:normal;line-height:133.00000429%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Bitstream Vera Serif"
id="flowRoot256"
transform="translate(0,-140)">
<flowRegion
id="flowRegion258">
<use
xlink:href="#d0e151"
y="0"
x="0"
id="use260"
width="320"
height="3962.5" />
</flowRegion>
<flowDiv
xml:space="preserve"
id="flowDiv262">這表示有點近似和粗造,但是圖畫愈簡單愈容易編輯。記住你得到的不是圖像的精確描寫,但你可以使用這一組曲線到你的繪畫中。</flowDiv> </flowRoot>
<g
transform="translate(0,1398.3256)"
id="g264">
<defs
id="defs266">
<linearGradient
id="linearGradient268">
<stop
style="stop-color:#0082ab;stop-opacity:1;"
offset="0.00000000"
id="stop270" />
<stop
style="stop-color:white;stop-opacity:0;"
offset="1"
id="stop272" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient841"
id="linearGradient2465"
x1="76.846634"
y1="-7656.4473"
x2="76.846634"
y2="-7528.6606"
gradientTransform="matrix(2.149642,0,0,0.465194,-0.130153,3495.428)"
gradientUnits="userSpaceOnUse" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient666"
id="radialGradient2456"
cx="233.92319"
cy="1036.4888"
fx="233.92319"
fy="1036.4888"
r="98.260414"
gradientTransform="scale(1.825742,0.547723)"
gradientUnits="userSpaceOnUse" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient666"
id="radialGradient2455"
cx="233.92319"
cy="1036.4888"
fx="233.92319"
fy="1036.4888"
r="98.260414"
gradientTransform="scale(1.825742,0.547723)"
gradientUnits="userSpaceOnUse" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient666"
id="radialGradient2454"
cx="233.92319"
cy="1036.4888"
fx="233.92319"
fy="1036.4888"
r="98.260414"
gradientTransform="scale(1.825742,0.547723)"
gradientUnits="userSpaceOnUse" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient666"
id="radialGradient2453"
cx="233.92319"
cy="1036.4888"
fx="233.92319"
fy="1036.4888"
r="98.260414"
gradientTransform="scale(1.825742,0.547723)"
gradientUnits="userSpaceOnUse" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient666"
id="radialGradient2452"
cx="233.92319"
cy="1036.4888"
fx="233.92319"
fy="1036.4888"
r="98.260414"
gradientTransform="scale(1.825742,0.547723)"
gradientUnits="userSpaceOnUse" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient666"
id="radialGradient2451"
cx="233.92319"
cy="1036.4888"
fx="233.92319"
fy="1036.4888"
r="98.260414"
gradientTransform="scale(1.825742,0.547723)"
gradientUnits="userSpaceOnUse" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient666"
id="radialGradient2450"
cx="233.92319"
cy="1036.4888"
fx="233.92319"
fy="1036.4888"
r="98.260414"
gradientTransform="scale(1.825742,0.547723)"
gradientUnits="userSpaceOnUse" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient666"
id="radialGradient2449"
cx="233.92319"
cy="1036.4888"
fx="233.92319"
fy="1036.4888"
r="98.260414"
gradientTransform="scale(1.825742,0.547723)"
gradientUnits="userSpaceOnUse" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient666"
id="radialGradient2448"
cx="233.92319"
cy="1036.4888"
fx="233.92319"
fy="1036.4888"
r="98.260414"
gradientTransform="scale(1.825742,0.547723)"
gradientUnits="userSpaceOnUse" />
<linearGradient
id="linearGradient284">
<stop
style="stop-color:#ffffff;stop-opacity:0.336;"
offset="0.00000000"
id="stop286" />
<stop
style="stop-color:#ffffff;stop-opacity:0;"
offset="1.00000000"
id="stop288" />
</linearGradient>
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient666"
id="radialGradient2447"
cx="233.92319"
cy="1036.4888"
fx="233.92319"
fy="1036.4888"
r="98.260414"
gradientTransform="scale(1.825742,0.547723)"
gradientUnits="userSpaceOnUse" />
</defs>
<metadata
id="metadata291">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="g293">
<rect
style="font-size:12px;fill:url(#linearGradient2465);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3.06115007"
id="rect1494"
width="319.99103"
height="69.247704"
x="-0.11217058"
y="-70.334389"
ry="6.1828303"
rx="0"
transform="scale(1,-1)" />
<path
style="fill:#ffffff;fill-opacity:1;stroke-width:1pt"
d="M 80.493022,57.97598 L 75.536292,57.97598 L 75.536292,58.29308 L 75.684749,58.29308 C 76.352797,58.29308 76.427029,58.32688 76.427029,58.61028 L 76.427029,58.80588 L 76.427029,62.01788 L 76.427029,62.21358 C 76.427029,62.49708 76.352797,62.53078 75.684749,62.53078 L 75.536292,62.53078 L 75.536292,62.84788 L 80.600235,62.84788 L 80.765188,61.04628 L 80.402301,61.04628 C 80.295081,61.51858 80.105395,61.93698 79.907447,62.13268 C 79.651785,62.40258 79.181678,62.53078 78.488889,62.53078 L 77.944557,62.53078 C 77.697137,62.53078 77.490947,62.49028 77.416722,62.42958 C 77.358989,62.38898 77.35074,62.34858 77.35074,62.20688 L 77.35074,60.48628 L 77.515686,60.48628 C 78.018788,60.48628 78.224965,60.52668 78.389919,60.66838 C 78.60435,60.84378 78.686824,61.05978 78.703329,61.45788 L 79.090956,61.45788 L 79.090956,59.24458 L 78.703329,59.24458 C 78.662085,59.90578 78.332184,60.16898 77.548681,60.16898 L 77.35074,60.16898 L 77.35074,58.63048 C 77.35074,58.34038 77.424971,58.29308 77.870326,58.29308 L 78.299197,58.29308 C 79.024972,58.29308 79.379612,58.35388 79.660027,58.54278 C 79.932193,58.71818 80.130134,59.09608 80.253852,59.70338 L 80.608484,59.70338 L 80.493022,57.97598 z M 69.548643,60.68188 L 70.480607,60.68188 C 71.222877,60.68188 71.610505,60.63468 71.940403,60.50638 C 72.525979,60.27698 72.855876,59.84518 72.855876,59.31208 C 72.855876,58.79918 72.567213,58.40778 72.022881,58.18518 C 71.701226,58.05018 71.189886,57.97598 70.62081,57.97598 L 67.734201,57.97598 L 67.734201,58.29308 L 67.882656,58.29308 C 68.550701,58.29308 68.624926,58.32688 68.624926,58.61028 L 68.624926,58.80588 L 68.624926,62.01788 L 68.624926,62.21358 C 68.624926,62.49708 68.550701,62.53078 67.882656,62.53078 L 67.734201,62.53078 L 67.734201,62.84788 L 70.505352,62.84788 L 70.505352,62.53078 L 70.290912,62.53078 C 69.622868,62.53078 69.548643,62.49708 69.548643,62.21358 L 69.548643,62.01788 L 69.548643,60.68188 z M 69.548643,60.36468 L 69.548643,58.63728 C 69.548643,58.32688 69.598125,58.29308 70.05174,58.29308 L 70.579576,58.29308 C 71.437311,58.29308 71.841434,58.62378 71.841434,59.33908 C 71.841434,60.03408 71.420814,60.36468 70.546585,60.36468 L 69.548643,60.36468 z M 62.373353,57.88148 L 62.026959,57.88148 L 60.130038,61.81558 C 59.965092,62.16638 59.932106,62.21358 59.808393,62.32158 C 59.676433,62.44968 59.445504,62.53078 59.222822,62.53078 L 59.189831,62.53078 L 59.189831,62.84788 L 61.375406,62.84788 L 61.375406,62.53078 L 61.210459,62.53078 C 60.765096,62.53078 60.542415,62.40258 60.542415,62.14618 C 60.542415,62.06518 60.567159,61.97068 60.61664,61.86268 L 60.888808,61.26888 L 63.074388,61.26888 L 63.51975,62.17308 C 63.569233,62.27428 63.585729,62.32158 63.585729,62.35538 C 63.585729,62.46328 63.379542,62.53078 63.074388,62.53078 L 62.727994,62.53078 L 62.727994,62.84788 L 65.2847,62.84788 L 65.2847,62.53078 L 65.169242,62.53078 C 64.756865,62.53078 64.666144,62.47678 64.476453,62.09888 L 62.373353,57.88148 z M 61.969224,58.98818 L 62.901188,60.90458 L 61.053755,60.90458 L 61.969224,58.98818 z M 56.278478,57.92878 L 55.965076,57.92878 L 55.635177,58.32688 C 55.049606,57.97598 54.727956,57.87478 54.175376,57.87478 C 53.375366,57.87478 52.71557,58.13798 52.154743,58.68448 C 51.626903,59.19738 51.379483,59.76418 51.379483,60.45918 C 51.379483,61.90998 52.542376,62.94908 54.167129,62.94908 C 55.486722,62.94908 56.327965,62.31488 56.517655,61.18128 L 56.130027,61.12728 C 56.047549,61.48488 55.94858,61.72778 55.800129,61.93028 C 55.461978,62.39578 54.934142,62.63198 54.266098,62.63198 C 53.045468,62.63198 52.468145,61.93698 52.468145,60.48628 C 52.468145,59.72368 52.591858,59.21088 52.872274,58.80588 C 53.127941,58.42808 53.63928,58.19188 54.167129,58.19188 C 54.744452,58.19188 55.255792,58.44158 55.5692,58.87348 C 55.725898,59.09608 55.849611,59.35928 56.039306,59.87878 L 56.40219,59.87878 L 56.278478,57.92878 z M 48.022764,57.93548 L 47.717611,57.93548 L 47.387713,58.34038 C 47.000085,58.03678 46.472244,57.87478 45.88668,57.87478 C 44.806264,57.87478 44.080487,58.44158 44.080487,59.28498 C 44.080487,60.02058 44.525848,60.38498 45.738229,60.64138 L 46.521731,60.80328 C 47.132045,60.93158 47.189775,60.94508 47.362975,61.05288 C 47.610399,61.20818 47.742355,61.43078 47.742355,61.69398 C 47.742355,61.96388 47.618643,62.18658 47.371223,62.36888 C 47.099053,62.56448 46.826885,62.63878 46.373274,62.63878 C 45.762968,62.63878 45.325852,62.48358 44.938225,62.13268 C 44.591826,61.81558 44.418631,61.49838 44.294921,60.97878 L 43.94028,60.97878 L 43.97327,62.90188 L 44.294921,62.90188 L 44.666051,62.44308 C 45.218636,62.81408 45.680489,62.94908 46.398019,62.94908 C 47.610399,62.94908 48.385659,62.36888 48.385659,61.46458 C 48.385659,61.04628 48.212459,60.68858 47.890811,60.43218 C 47.668129,60.25678 47.346479,60.14198 46.686678,60.00708 L 45.804202,59.82488 C 45.07018,59.66968 44.723786,59.40658 44.723786,58.99488 C 44.723786,58.52248 45.193892,58.19858 45.894928,58.19858 C 46.472244,58.19858 46.94235,58.40118 47.272253,58.78568 C 47.511431,59.06238 47.659881,59.34578 47.767098,59.68988 L 48.121738,59.68988 L 48.022764,57.93548 z M 36.872203,60.64138 L 36.872203,58.80588 L 36.872203,58.61028 C 36.872203,58.32688 36.946432,58.29308 37.614475,58.29308 L 37.771178,58.29308 L 37.771178,57.97598 L 35.057758,57.97598 L 35.057758,58.29308 L 35.206215,58.29308 C 35.874256,58.29308 35.948485,58.32688 35.948485,58.61028 L 35.948485,58.80588 L 35.948485,62.01788 L 35.948485,62.21358 C 35.948485,62.49708 35.874256,62.53078 35.206215,62.53078 L 35.057758,62.53078 L 35.057758,62.84788 L 37.771178,62.84788 L 37.771178,62.53078 L 37.614475,62.53078 C 36.946432,62.53078 36.872203,62.49708 36.872203,62.21358 L 36.872203,62.01788 L 36.872203,61.16098 L 37.828908,60.37158 L 39.263969,62.09218 C 39.395928,62.25408 39.428917,62.30818 39.428917,62.37558 C 39.428917,62.48358 39.272217,62.53078 38.86809,62.53078 L 38.612417,62.53078 L 38.612417,62.84788 L 41.433051,62.84788 L 41.433051,62.53078 L 41.276352,62.53078 C 40.822741,62.53078 40.707278,62.48358 40.468096,62.19348 L 38.47221,59.83838 L 39.701081,58.83298 C 40.09696,58.48878 40.600057,58.29308 41.094911,58.29308 L 41.094911,57.97598 L 38.554686,57.97598 L 38.554686,58.29308 L 38.760873,58.29308 C 39.140254,58.29308 39.296959,58.35388 39.296959,58.49558 C 39.296959,58.58998 39.132009,58.78568 38.892832,58.98138 L 36.872203,60.64138 z M 27.651517,57.97598 L 25.95254,57.97598 L 25.95254,58.29308 L 26.158725,58.29308 C 26.579345,58.29308 26.76904,58.34708 26.917491,58.51578 L 26.917491,61.38368 C 26.917491,62.30818 26.752543,62.50378 25.960787,62.53078 L 25.960787,62.84788 L 28.311334,62.84788 L 28.311334,62.53078 C 27.527806,62.50378 27.362854,62.30818 27.362854,61.38368 L 27.362854,58.88018 L 31.041244,62.94238 L 31.38764,62.94238 L 31.38764,59.44028 C 31.38764,58.51578 31.552591,58.32008 32.344347,58.29308 L 32.344347,57.97598 L 29.993817,57.97598 L 29.993817,58.29308 C 30.777325,58.32008 30.942273,58.51578 30.942273,59.44028 L 30.942273,61.55918 L 27.651517,57.97598 z M 22.290662,58.80588 L 22.290662,58.61028 C 22.290662,58.32688 22.364893,58.29308 23.024687,58.29308 L 23.189637,58.29308 L 23.189637,57.97598 L 20.459727,57.97598 L 20.459727,58.29308 L 20.624678,58.29308 C 21.292719,58.29308 21.366949,58.32688 21.366949,58.61028 L 21.366949,58.80588 L 21.366949,62.01788 L 21.366949,62.21358 C 21.366949,62.49708 21.292719,62.53078 20.624678,62.53078 L 20.459727,62.53078 L 20.459727,62.84788 L 23.189637,62.84788 L 23.189637,62.53078 L 23.024687,62.53078 C 22.364893,62.53078 22.290662,62.49708 22.290662,62.21358 L 22.290662,62.01788 L 22.290662,58.80588 z"
id="path1508" />
<path
style="fill:#ffffff;stroke-width:1pt"
d="M 305.96725,58.20398 L 307.32296,58.20398 L 307.32296,61.02138 C 307.32296,61.55328 307.30413,61.88278 307.26647,62.00988 C 307.13938,62.49478 306.84988,62.82898 306.39797,63.01258 C 306.08729,63.13968 305.62832,63.20318 305.02108,63.20318 C 303.58534,63.20318 302.86748,62.77478 302.86748,61.91808 L 304.30086,61.91108 C 304.395,62.17938 304.66332,62.31348 305.10581,62.31348 C 305.43062,62.31348 305.65892,62.21228 305.79073,62.00988 C 305.88958,61.85458 305.93901,61.60038 305.93901,61.24728 L 305.93901,61.12728 C 305.51064,61.47088 305.03991,61.64268 304.52681,61.64268 C 303.97135,61.64268 303.5265,61.46618 303.19228,61.11318 C 302.85806,60.75538 302.69095,60.29878 302.69095,59.74328 C 302.69095,59.25848 302.8816,58.85358 303.26289,58.52878 C 303.62065,58.22758 304.04902,58.07688 304.54799,58.07688 C 305.1929,58.07688 305.66598,58.28638 305.96725,58.70538 L 305.96725,58.20398 z M 305.9037,59.84218 C 305.9037,59.61618 305.81426,59.43738 305.63539,59.30548 C 305.46121,59.16898 305.25645,59.10078 305.02108,59.10078 C 304.76688,59.10078 304.55741,59.17368 304.39265,59.31968 C 304.2326,59.46558 304.15258,59.66328 304.15258,59.91278 C 304.15258,60.11988 304.23496,60.29878 304.39971,60.44938 C 304.47974,60.51998 304.56682,60.57418 304.66097,60.61178 C 304.75512,60.64948 304.85632,60.66828 304.96459,60.66828 C 305.23762,60.66828 305.45651,60.60008 305.62126,60.46348 C 305.80956,60.31288 305.9037,60.10578 305.9037,59.84218 z M 299.6053,58.20398 L 301.0175,58.20398 L 301.0175,58.81828 C 301.26228,58.36638 301.61768,58.14048 302.08371,58.14048 L 302.50737,58.18278 L 302.50737,59.47498 C 302.29554,59.43738 302.1096,59.41848 301.94955,59.41848 C 301.35172,59.41848 301.0528,59.77388 301.0528,60.48468 L 301.0528,61.85458 L 299.6053,61.85458 L 299.6053,58.20398 z M 296.93624,58.07688 C 297.56232,58.07688 298.08248,58.24168 298.49672,58.57118 C 298.9345,58.92428 299.1534,59.41148 299.1534,60.03278 C 299.1534,60.64008 298.93921,61.12258 298.51084,61.48028 C 298.10131,61.80978 297.58821,61.97458 296.97155,61.97458 C 296.28899,61.97458 295.74294,61.82158 295.3334,61.51558 C 294.87208,61.17668 294.64142,60.67538 294.64142,60.01158 C 294.64142,59.39028 294.87443,58.90308 295.34046,58.54998 C 295.76412,58.23458 296.29605,58.07688 296.93624,58.07688 z M 296.90094,60.94368 C 297.14101,60.94368 297.33637,60.85428 297.487,60.67538 C 297.63764,60.49648 297.71295,60.28228 297.71295,60.03278 C 297.71295,59.78328 297.64234,59.56918 297.50112,59.39028 C 297.3599,59.21138 297.1669,59.12198 296.92212,59.12198 C 296.66793,59.12198 296.46316,59.20898 296.30782,59.38318 C 296.2325,59.47268 296.17601,59.56918 296.13835,59.67268 C 296.10069,59.77158 296.08186,59.89158 296.08186,60.03278 C 296.08186,60.29168 296.15247,60.50828 296.29369,60.68238 C 296.43491,60.85658 296.63733,60.94368 296.90094,60.94368 z M 292.85499,60.42818 L 294.30249,60.42818 L 294.30249,61.85458 L 292.85499,61.85458 L 292.85499,60.42818 z M 289.28919,60.41408 C 289.44453,60.79068 289.69167,60.97898 290.03059,60.97898 C 290.38835,60.97898 290.6143,60.88008 290.70845,60.68238 C 290.79318,60.68238 291.00501,60.69658 291.34394,60.72478 C 291.68287,60.75298 291.97943,60.76718 292.23362,60.76718 C 291.99355,61.23318 291.68993,61.55798 291.32275,61.74158 C 290.98853,61.90158 290.54605,61.98168 289.99529,61.98168 C 289.35038,61.98168 288.83258,61.81458 288.44187,61.48028 C 288.02292,61.12728 287.81344,60.63298 287.81344,59.99748 C 287.81344,59.39028 288.04175,58.91008 288.49836,58.55708 C 288.9079,58.24638 289.43276,58.09108 290.07296,58.09108 C 290.69903,58.09108 291.21213,58.25108 291.61226,58.57118 C 292.01238,58.88658 292.24068,59.35258 292.29717,59.96928 L 292.31129,60.41408 L 289.28919,60.41408 z M 290.81436,59.55268 C 290.75788,59.22318 290.52016,59.05838 290.1012,59.05838 C 289.94115,59.05838 289.77404,59.10308 289.59987,59.19258 C 289.43041,59.28198 289.33862,59.40198 289.32449,59.55268 L 290.81436,59.55268 z M 283.04727,58.20398 L 284.48771,58.20398 L 284.48065,58.66298 C 284.87607,58.28168 285.32327,58.09108 285.82224,58.09108 C 286.37771,58.09108 286.81784,58.26518 287.14265,58.61358 C 287.47216,58.95718 287.63692,59.40908 287.63692,59.96928 C 287.63692,60.54828 287.47687,61.02138 287.15677,61.38848 C 286.82255,61.77918 286.373,61.97458 285.80812,61.97458 C 285.50214,61.97458 285.25972,61.93928 285.08084,61.86868 C 284.90667,61.79808 284.70896,61.65448 284.48771,61.43798 L 284.48771,63.12548 L 283.04727,63.12548 L 283.04727,58.20398 z M 285.32091,60.95078 C 285.57981,60.95078 285.78929,60.86128 285.94934,60.68238 C 286.10939,60.49888 286.18941,60.27758 286.18941,60.01868 C 286.18941,59.75508 286.1141,59.54088 285.96346,59.37618 C 285.82224,59.20668 285.61983,59.12198 285.35622,59.12198 C 285.12085,59.12198 284.91608,59.20668 284.74191,59.37618 C 284.56774,59.54558 284.48065,59.75268 284.48065,59.99748 C 284.48065,60.25168 284.55832,60.47528 284.71367,60.66828 C 284.86901,60.85658 285.07142,60.95078 285.32091,60.95078 z M 278.50705,59.30548 C 278.62474,58.83008 278.88599,58.49348 279.29082,58.29578 C 279.58739,58.15458 280.01811,58.08398 280.58299,58.08398 C 281.11021,58.08398 281.53622,58.18758 281.86103,58.39468 C 282.25173,58.64418 282.44709,59.01838 282.44709,59.51738 L 282.44709,61.20498 C 282.44709,61.31318 282.4565,61.41208 282.47533,61.50148 C 282.49416,61.59098 282.53182,61.70858 282.58831,61.85458 L 281.09844,61.85458 L 281.04901,61.43088 C 280.70538,61.78398 280.29349,61.96048 279.81334,61.96048 C 279.42263,61.96048 279.08606,61.86868 278.80362,61.68508 C 278.48823,61.46858 278.33053,61.17198 278.33053,60.79538 C 278.33053,60.38588 278.46469,60.08228 278.73301,59.88448 C 278.92601,59.74328 279.23434,59.63978 279.658,59.57388 L 280.68184,59.45378 C 280.90308,59.41618 281.01371,59.35728 281.01371,59.27728 C 281.01371,59.09368 280.87484,59.00188 280.59711,59.00188 C 280.43706,59.00188 280.30761,59.02078 280.20875,59.05838 C 280.1099,59.09138 280.03223,59.17368 279.97574,59.30548 L 278.50705,59.30548 z M 279.77803,60.66128 C 279.77803,60.85898 279.94514,60.95778 280.27936,60.95778 C 280.48649,60.95778 280.67007,60.89188 280.83012,60.76008 C 280.99488,60.62828 281.07726,60.46348 281.07726,60.26578 L 280.12402,60.38588 C 280.05812,60.39058 279.9828,60.42118 279.89807,60.47768 C 279.81805,60.52948 279.77803,60.59058 279.77803,60.66128 z M 278.20343,59.62328 L 276.76299,59.69388 C 276.67355,59.50088 276.58646,59.36198 276.50173,59.27728 C 276.38876,59.17838 276.23342,59.12898 276.03571,59.12898 C 275.7721,59.12898 275.56733,59.22318 275.4214,59.41148 C 275.28018,59.59498 275.20957,59.82338 275.20957,60.09638 C 275.20957,60.33168 275.2896,60.53178 275.44964,60.69658 C 275.60969,60.85658 275.8074,60.93658 276.04277,60.93658 C 276.41935,60.93658 276.66414,60.72718 276.77711,60.30818 L 278.23168,60.37178 C 277.9916,61.44028 277.25726,61.97458 276.02865,61.97458 C 275.37433,61.97458 274.84475,61.81458 274.43992,61.49448 C 273.98802,61.14608 273.76207,60.65648 273.76207,60.02578 C 273.76207,59.38558 274.00685,58.89128 274.49641,58.54298 C 274.92949,58.23228 275.47789,58.07688 276.14162,58.07688 C 276.66884,58.07688 277.11369,58.20868 277.47615,58.47228 C 277.84332,58.73128 278.08575,59.11488 278.20343,59.62328 z M 270.79645,60.66128 C 270.89531,60.82598 271.0224,60.93428 271.17774,60.98608 C 271.28601,61.01898 271.45312,61.03548 271.67908,61.03548 C 271.74027,61.03548 271.78499,61.03308 271.81323,61.02838 C 271.84148,61.01898 271.87914,61.00248 271.92621,60.97898 C 272.02977,60.93658 272.08155,60.87308 272.08155,60.78838 C 272.08155,60.66128 271.85795,60.57418 271.41076,60.52708 C 270.80351,60.45648 270.38927,60.37648 270.16802,60.28698 C 269.72083,60.10808 269.49723,59.79978 269.49723,59.36198 C 269.49723,58.88658 269.72553,58.54058 270.18214,58.32408 C 270.52578,58.15928 270.96356,58.07688 271.49549,58.07688 C 272.60642,58.07688 273.25368,58.45588 273.43726,59.21378 L 272.06743,59.30548 C 271.99682,59.18318 271.90738,59.09368 271.79911,59.03718 C 271.70026,59.00428 271.57316,58.98778 271.41782,58.98778 C 271.06006,58.98778 270.88118,59.07248 270.88118,59.24198 C 270.88118,59.29848 270.94238,59.34788 271.06477,59.39028 C 271.19187,59.43258 271.5049,59.48438 272.00388,59.54558 C 272.50286,59.60678 272.84885,59.69628 273.04185,59.81388 C 273.33841,59.98338 273.48669,60.26108 273.48669,60.64708 C 273.48669,61.08958 273.28427,61.43328 272.87944,61.67798 C 272.54522,61.87568 272.13569,61.97458 271.65083,61.97458 C 271.04829,61.97458 270.58227,61.90628 270.25275,61.76978 C 269.78673,61.58148 269.49488,61.24028 269.37719,60.74598 L 270.79645,60.66128 z M 264.87228,56.87658 L 266.31272,56.87658 L 266.31272,59.15728 L 267.48485,58.20398 L 269.48311,58.20398 L 267.73198,59.57388 L 269.49017,61.86158 L 267.78847,61.86158 L 266.70814,60.37178 L 266.31272,60.66128 L 266.31272,61.85458 L 264.87228,61.85458 L 264.87228,56.87658 z M 260.02138,58.19698 L 261.46888,58.19698 L 261.46888,58.67708 C 261.84076,58.29108 262.29502,58.09808 262.83165,58.09808 C 263.26002,58.09808 263.60601,58.21818 263.86962,58.45818 C 264.13794,58.69358 264.27209,59.02778 264.27209,59.46088 L 264.27209,61.86868 L 262.85284,61.86868 L 262.83871,59.81388 C 262.83871,59.62558 262.77987,59.47268 262.66219,59.35498 C 262.54451,59.23728 262.39387,59.17838 262.21028,59.17838 C 261.97492,59.17838 261.79133,59.27018 261.65953,59.45378 C 261.53243,59.63738 261.46888,59.85158 261.46888,60.09638 L 261.46888,61.85458 L 260.02138,61.85458 L 260.02138,58.19698 z M 258.03724,58.20398 L 259.47768,58.20398 L 259.47768,61.84038 L 258.03724,61.84038 L 258.03724,58.20398 z M 258.0443,56.86948 L 259.48474,56.86948 L 259.48474,57.85098 L 258.0443,57.85098 L 258.0443,56.86948 z M 255.91894,60.42818 L 257.36644,60.42818 L 257.36644,61.85458 L 255.91894,61.85458 L 255.91894,60.42818 z M 250.22072,58.20398 L 250.83503,60.47768 C 250.87739,60.20458 250.97154,59.82568 251.11747,59.34088 C 251.17866,59.12428 251.2375,58.90308 251.29399,58.67708 C 251.33636,58.51708 251.37402,58.35938 251.40697,58.20398 L 252.88978,58.21108 L 253.22164,59.34788 C 253.32991,59.76688 253.40994,60.15518 253.46172,60.51298 C 253.48996,60.32468 253.52291,60.14578 253.56057,59.97628 C 253.59823,59.80218 253.65472,59.59268 253.73003,59.34788 C 253.78652,59.15958 253.84066,58.98068 253.89244,58.81128 C 253.94422,58.63708 254.00777,58.43468 254.08308,58.20398 L 255.55883,58.20398 L 254.27373,61.86158 L 252.71325,61.86158 L 252.15543,59.76448 L 251.55525,61.86158 L 250.00183,61.86158 L 248.71673,58.20398 L 250.22072,58.20398 z M 243.6893,58.20398 L 244.30361,60.47768 C 244.34598,60.20458 244.44012,59.82568 244.58605,59.34088 C 244.64724,59.12428 244.70609,58.90308 244.76257,58.67708 C 244.80494,58.51708 244.8426,58.35938 244.87555,58.20398 L 246.35836,58.21108 L 246.69022,59.34788 C 246.79849,59.76688 246.87852,60.15518 246.9303,60.51298 C 246.95854,60.32468 246.99149,60.14578 247.02915,59.97628 C 247.06681,59.80218 247.1233,59.59268 247.19862,59.34788 C 247.2551,59.15958 247.30924,58.98068 247.36102,58.81128 C 247.4128,58.63708 247.47635,58.43468 247.55167,58.20398 L 249.02741,58.20398 L 247.74231,61.86158 L 246.18183,61.86158 L 245.62401,59.76448 L 245.02383,61.86158 L 243.47041,61.86158 L 242.18531,58.20398 L 243.6893,58.20398 z M 237.15789,58.20398 L 237.77219,60.47768 C 237.81456,60.20458 237.9087,59.82568 238.05463,59.34088 C 238.11583,59.12428 238.17467,58.90308 238.23116,58.67708 C 238.27352,58.51708 238.31118,58.35938 238.34413,58.20398 L 239.82694,58.21108 L 240.15881,59.34788 C 240.26708,59.76688 240.3471,60.15518 240.39888,60.51298 C 240.42712,60.32468 240.46008,60.14578 240.49773,59.97628 C 240.53539,59.80218 240.59188,59.59268 240.6672,59.34788 C 240.72369,59.15958 240.77782,58.98068 240.8296,58.81128 C 240.88138,58.63708 240.94493,58.43468 241.02025,58.20398 L 242.496,58.20398 L 241.21089,61.86158 L 239.65042,61.86158 L 239.0926,59.76448 L 238.49241,61.86158 L 236.93899,61.86158 L 235.65389,58.20398 L 237.15789,58.20398 z"
id="path1517" />
<g
id="g1495"
transform="matrix(0.5,0,0,0.5,2.541357,55.63388)">
<path
sodipodi:type="arc"
style="fill:url(#radialGradient2447);fill-opacity:0.75;fill-rule:evenodd;stroke:none;stroke-width:1pt"
id="path1496"
sodipodi:cx="427.08334"
sodipodi:cy="567.70831"
sodipodi:rx="179.39815"
sodipodi:ry="53.819443"
d="M 606.48149,567.70831 A 179.39815,53.819443 0 1 1 247.6852,567.70831 A 179.39815,53.819443 0 1 1 606.48149,567.70831 z"
transform="matrix(3.19805e-2,0,0,0.109292,5.149671,-45.83576)" />
<path
sodipodi:type="arc"
style="fill:url(#radialGradient2448);fill-opacity:0.75;fill-rule:evenodd;stroke:none;stroke-width:1pt"
id="path1497"
sodipodi:cx="427.08334"
sodipodi:cy="567.70831"
sodipodi:rx="179.39815"
sodipodi:ry="53.819443"
d="M 606.48149,567.70831 A 179.39815,53.819443 0 1 1 247.6852,567.70831 A 179.39815,53.819443 0 1 1 606.48149,567.70831 z"
transform="matrix(3.19805e-2,0,0,0.109292,2.022526,-44.58496)" />
<path
sodipodi:type="arc"
style="fill:url(#radialGradient2449);fill-opacity:0.75;fill-rule:evenodd;stroke:none;stroke-width:1pt"
id="path1498"
sodipodi:cx="427.08334"
sodipodi:cy="567.70831"
sodipodi:rx="179.39815"
sodipodi:ry="53.819443"
d="M 606.48149,567.70831 A 179.39815,53.819443 0 1 1 247.6852,567.70831 A 179.39815,53.819443 0 1 1 606.48149,567.70831 z"
transform="matrix(3.19805e-2,0,0,0.109292,-3.397884,-48.75451)" />
<path
sodipodi:type="arc"
style="fill:url(#radialGradient2450);fill-opacity:0.75;fill-rule:evenodd;stroke:none;stroke-width:1pt"
id="path1499"
sodipodi:cx="427.08334"
sodipodi:cy="567.70831"
sodipodi:rx="179.39815"
sodipodi:ry="53.819443"
d="M 606.48149,567.70831 A 179.39815,53.819443 0 1 1 247.6852,567.70831 A 179.39815,53.819443 0 1 1 606.48149,567.70831 z"
transform="matrix(3.19805e-2,0,0,0.109292,8.068429,-48.33756)" />
<path
sodipodi:type="arc"
style="fill:url(#radialGradient2451);fill-opacity:0.75;fill-rule:evenodd;stroke:none;stroke-width:1pt"
id="path1500"
sodipodi:cx="427.08334"
sodipodi:cy="567.70831"
sodipodi:rx="179.39815"
sodipodi:ry="53.819443"
d="M 606.48149,567.70831 A 179.39815,53.819443 0 1 1 247.6852,567.70831 A 179.39815,53.819443 0 1 1 606.48149,567.70831 z"
transform="matrix(3.19805e-2,0,0,0.109292,12.02955,-53.13256)" />
<path
sodipodi:type="arc"
style="fill:url(#radialGradient2452);fill-opacity:0.75;fill-rule:evenodd;stroke:none;stroke-width:1pt"
id="path1501"
sodipodi:cx="427.08334"
sodipodi:cy="567.70831"
sodipodi:rx="179.39815"
sodipodi:ry="53.819443"
d="M 606.48149,567.70831 A 179.39815,53.819443 0 1 1 247.6852,567.70831 A 179.39815,53.819443 0 1 1 606.48149,567.70831 z"
transform="matrix(3.19805e-2,0,0,0.109292,9.855679,-58.05951)" />
<path
sodipodi:type="arc"
style="fill:url(#radialGradient2453);fill-opacity:0.75;fill-rule:evenodd;stroke:none;stroke-width:1pt"
id="path1511"
sodipodi:cx="427.08334"
sodipodi:cy="567.70831"
sodipodi:rx="179.39815"
sodipodi:ry="53.819443"
d="M 606.48149,567.70831 A 179.39815,53.819443 0 1 1 247.6852,567.70831 A 179.39815,53.819443 0 1 1 606.48149,567.70831 z"
transform="matrix(3.19805e-2,0,0,0.109292,5.269166,-61.39511)" />
<path
sodipodi:type="arc"
style="fill:url(#radialGradient2454);fill-opacity:0.75;fill-rule:evenodd;stroke:none;stroke-width:1pt"
id="path1512"
sodipodi:cx="427.08334"
sodipodi:cy="567.70831"
sodipodi:rx="179.39815"
sodipodi:ry="53.819443"
d="M 606.48149,567.70831 A 179.39815,53.819443 0 1 1 247.6852,567.70831 A 179.39815,53.819443 0 1 1 606.48149,567.70831 z"
transform="matrix(3.19805e-2,0,0,0.109292,0.265717,-60.76966)" />
<path
sodipodi:type="arc"
style="fill:url(#radialGradient2455);fill-opacity:0.75;fill-rule:evenodd;stroke:none;stroke-width:1pt"
id="path1513"
sodipodi:cx="427.08334"
sodipodi:cy="567.70831"
sodipodi:rx="179.39815"
sodipodi:ry="53.819443"
d="M 606.48149,567.70831 A 179.39815,53.819443 0 1 1 247.6852,567.70831 A 179.39815,53.819443 0 1 1 606.48149,567.70831 z"
transform="matrix(3.19805e-2,0,0,0.109292,-3.903834,-56.18316)" />
<path
sodipodi:type="arc"
style="fill:url(#radialGradient2456);fill-opacity:0.75;fill-rule:evenodd;stroke:none;stroke-width:1pt"
id="path1514"
sodipodi:cx="427.08334"
sodipodi:cy="567.70831"
sodipodi:rx="179.39815"
sodipodi:ry="53.819443"
d="M 606.48149,567.70831 A 179.39815,53.819443 0 1 1 247.6852,567.70831 A 179.39815,53.819443 0 1 1 606.48149,567.70831 z"
transform="matrix(3.19805e-2,0,0,0.109292,-6.614049,-53.47301)" />
<g
id="g1515"
transform="matrix(5.8837e-2,0,0,5.8837e-2,-4.768899,-3.296641)">
<path
style="font-size:12px;fill:#ffffff;fill-rule:evenodd;stroke:#000000;stroke-width:0.93619299pt"
d="M 397.64309,320.25301 L 280.39197,282.517 L 250.74227,124.83447 L 345.08225,29.146783 L 393.59996,46.667064 L 483.89679,135.61619 L 397.64309,320.25301 z"
id="path1516" />
<path
style="font-size:12px;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke-width:1pt"
d="M 476.95792,339.17168 C 495.78197,342.93607 499.54842,356.11361 495.78197,359.87802 C 492.01856,363.6434 482.6065,367.40781 475.07663,361.76014 C 467.54478,356.11361 467.54478,342.93607 476.95792,339.17168 z"
id="path1518" />
<path
style="font-size:12px;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke-width:1pt"
d="M 286.46194,340.42914 C 284.6277,340.91835 269.30405,327.71337 257.16909,333.8338 C 245.03722,339.95336 236.89276,353.65666 248.22676,359.27982 C 259.56184,364.90298 267.66433,358.41867 277.60113,351.44119 C 287.53903,344.46477 287.18046,343.1206 286.46194,340.42914 z"
id="path1519" />
<path
style="font-size:12px;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke-width:1pt"
d="M 510.35756,306.92856 C 520.59494,304.36879 544.24333,306.92856 540.47688,321.98634 C 536.71354,337.04806 504.71297,331.39827 484.00371,323.87156 C 482.12141,308.81083 505.53237,308.13423 510.35756,306.92856 z"
id="path1520" />
<path
style="font-size:12px;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke-width:1pt"
d="M 359.2403,21.362537 C 347.92693,21.362537 336.6347,25.683095 327.96556,34.35223 L 173.87387,188.41466 C 165.37697,196.9114 161.1116,207.95813 160.94269,219.04577 L 160.88418,219.04577 C 160.88418,219.08524 160.94076,219.12322 160.94269,219.16279 C 160.94033,219.34888 160.88418,219.53256 160.88418,219.71865 L 161.14748,219.71865 C 164.0966,230.93917 240.29699,245.24198 248.79866,253.74346 C 261.63771,266.58263 199.5652,276.01151 212.4041,288.85074 C 225.24316,301.68979 289.99433,313.6933 302.8346,326.53254 C 315.67368,339.37161 276.5961,353.04289 289.43532,365.88196 C 302.27439,378.72118 345.40201,362.67257 337.5908,396.16198 C 354.92909,413.50026 391.10302,405.2208 415.32417,387.88252 C 428.16323,375.04345 390.6948,376.17577 403.53397,363.33668 C 416.37304,350.49745 448.78128,350.4282 476.08902,319.71589 C 465.09739,302.62116 429.10801,295.34136 441.94719,282.50217 C 454.78625,269.66311 479.74708,276.18423 533.60644,251.72479 C 559.89837,239.78398 557.72636,230.71459 557.62567,219.71865 C 557.62356,219.48727 557.62567,219.27892 557.62567,219.04577 L 557.56716,219.04577 C 557.3983,207.95812 553.10345,196.9114 544.60673,188.41466 L 390.54428,34.35223 C 381.87515,25.683095 370.55366,21.362537 359.2403,21.362537 z M 357.92378,41.402939 C 362.95327,41.533963 367.01541,45.368018 374.98006,50.530832 L 447.76915,104.50827 C 448.56596,105.02498 449.32484,105.564 450.02187,106.11735 C 450.7189,106.67062 451.3556,107.25745 451.95277,107.84347 C 452.54997,108.42842 453.09281,109.01553 453.59111,109.62808 C 454.08837,110.24052 454.53956,110.86661 454.93688,111.50048 C 455.33532,112.13538 455.69164,112.78029 455.9901,113.43137 C 456.28877,114.08363 456.52291,114.75639 456.7215,115.42078 C 456.92126,116.08419 457.08982,116.73973 457.18961,117.41019 C 457.28949,118.08184 457.33588,118.75535 457.33588,119.42886 L 414.21245,98.598549 L 409.9118,131.16055 L 386.18512,120.04324 L 349.55654,144.50131 L 335.54288,96.1703 L 317.4919,138.4453 L 267.08369,143.47735 L 267.63956,121.03795 C 267.63956,115.64823 296.69685,77.915899 314.39075,68.932902 L 346.77721,45.674327 C 351.55594,42.576634 354.90608,41.324327 357.92378,41.402939 z M 290.92738,261.61333 C 313.87149,267.56365 339.40299,275.37038 359.88393,275.50997 L 360.76161,284.72563 C 343.2235,282.91785 306.11346,274.45012 297.36372,269.98057 L 290.92738,261.61333 z"
id="path1521" />
</g>
</g>
<use
style="opacity:0.08426962;fill:#ffffff;fill-opacity:0.06461535;fill-rule:nonzero;stroke:none;stroke-width:1pt;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;font-family:Bitstream Vera Sans"
height="1052.3622"
width="744.09448"
transform="matrix(5.176729,0,0,5.176729,-102.7023,-256.6246)"
id="use1328"
xlink:href="#path1508"
y="0"
x="0" />
<text
xml:space="preserve"
style="font-size:6.96932268px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;opacity:0.5;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"
x="-70.83046"
y="-6.5672836"
id="text316"
sodipodi:linespacing="125%"
transform="matrix(0,-1,1,0,0,0)"><tspan
sodipodi:role="line"
id="tspan318"
x="-70.83046"
y="-6.5672836"
style="letter-spacing:0.29056421">使用 <tspan
style="font-weight:bold"
id="tspan320">Ctrl+↑ </tspan>向上捲動頁面</tspan></text>
<path
sodipodi:type="star"
style="opacity:0.5;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:4.32172871;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
id="path322"
sodipodi:sides="3"
sodipodi:cx="332.34018"
sodipodi:cy="193.40422"
sodipodi:r1="7.6034532"
sodipodi:r2="3.8017266"
sodipodi:arg1="0.62024949"
sodipodi:arg2="1.667447"
inkscape:flatsided="true"
inkscape:rounded="0"
inkscape:randomized="0"
d="M 338.52736,197.82364 L 325.41926,196.55277 L 333.07392,185.83625 L 338.52736,197.82364 z"
transform="matrix(-0.614962,-4.549602e-2,-6.191898e-2,0.451855,207.28878,-97.860706)" />
</g>
</g>
</svg>