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
|
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg" xmlns:inkstitch="http://inkstitch.org/namespace" version="1.1" id="svg62655" sodipodi:docname="→.svg" width="150" inkscape:version="1.1 (c68e22c387, 2021-05-23)" height="150">
<sodipodi:namedview id="namedview62657" pagecolor="#ffffff" bordercolor="#666666" borderopacity="1.0" inkscape:pageshadow="2" inkscape:pageopacity="0.0" inkscape:pagecheckerboard="0" showgrid="true" inkscape:zoom="31.999999" inkscape:cx="10.78125" inkscape:cy="76.828128" inkscape:window-width="1920" inkscape:window-height="1001" inkscape:window-x="-9" inkscape:window-y="-9" inkscape:window-maximized="1" inkscape:current-layer="g157550" width="150px" inkscape:snap-grids="false" inkscape:snap-to-guides="false" showguides="true" inkscape:guide-bbox="true">
<sodipodi:guide position="0,69" orientation="0,1" inkscape:label="baseline" id="guide126150" inkscape:locked="true" inkscape:color="rgb(251,1,1)"/>
<sodipodi:guide position="0,134" orientation="0,1" inkscape:label="ascender" id="guide126152" inkscape:locked="true" inkscape:color="rgb(0,0,255)"/>
<sodipodi:guide position="0,134" orientation="0,1" inkscape:label="caps" id="guide126154" inkscape:locked="true" inkscape:color="rgb(0,0,255)"/>
<sodipodi:guide position="0,118" orientation="0,1" inkscape:label="xheight" id="guide126156" inkscape:locked="true" inkscape:color="rgb(0,0,255)"/>
<sodipodi:guide position="0,58" orientation="0,1" inkscape:label="decender" id="guide126158" inkscape:locked="true" inkscape:color="rgb(0,0,255)"/>
<inkscape:grid type="xygrid" id="grid3933"/>
</sodipodi:namedview>
<metadata id="metadata2">
Created by FontForge 20200314 at Sun Aug 29 20:57:17 2021
By regli
Public Domain
<inkstitch:collapse_len_mm/>
</metadata>
<defs id="defs62653">
<font id="ExcaliburNouveau" horiz-adv-x="40">
<font-face import="font-family: "Excalibur Nouveau"; src: url("http://db.onlinewebfonts.com/t/35760e0c5c34a3b436a40034bfa6b275.eot"); /* IE9*/ src: url("http://db.onlinewebfonts.com/t/35760e0c5c34a3b436a40034bfa6b275.eot?#iefix") format("embedded-opentype"), /* IE6-IE8 */ url("Excalibur Nouveau.ttf") format("truetype"), /* chrome firefox opera Safari, Android, iOS 4.2+*/ url("http://db.onlinewebfonts.com/t/35760e0c5c34a3b436a40034bfa6b275.svg#Excalibur Logotype") format("svg"); /* iOS 4.1- */" font-family="Excalibur Nouveau" font-weight="500" font-stretch="normal" units-per-em="81" panose-1="0 0 0 0 0 0 0 0 0 0" ascent="69" descent="-12" x-height="49" cap-height="65" bbox="3 -18 73 84" underline-thickness="4.05" underline-position="-8.1" unicode-range="U+000D-221E" id="font-face64402"/>
</font>
<symbol style="display:inline" id="inkstitch_satin_start">
<title id="inkstitch_title9432-1">Satin column starting point</title>
<path inkscape:connector-curvature="0" id="inkstitch_circle13166-6-2" d="M 9.2465269,-4.9265995e-6 C 9.246525,5.1067241 5.1067022,9.2465451 -2.715882e-5,9.2465451 -5.106756,9.2465451 -9.2465782,5.1067241 -9.2465801,-4.9265995e-6 -9.2465799,-5.1067349 -5.1067572,-9.2465579 -2.715882e-5,-9.2465579 c 2.45233855882,0 4.80423565882,0.974187 6.53830095882,2.708252 1.7340652,1.734066 2.708253,4.085963 2.7082531,6.5383009734005 0,0 0,0 0,0" style="opacity:1;vector-effect:none;fill:#fafafa;fill-opacity:1;fill-rule:evenodd;stroke:#003399;stroke-width:1.06501234;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:3.19503705, 3.19503705;stroke-dashoffset:0;stroke-opacity:1"/>
<path inkscape:connector-curvature="0" style="opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.74180555;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" d="m 6.5728129,0.00355507 c 0,0 -10.4514,6.03412003 -10.4514,6.03412003 0,0 0,-12.06823 0,-12.06823 0,0 10.4514,6.03410997 10.4514,6.03410997" id="inkstitch_path4183-7"/>
<path inkscape:connector-curvature="0" style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.2;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke" d="m -3.0312502,1.577739 c 0,0 0.25,-3.6875002 0.25,-3.6875002 0,0 1.0312501,3.8437502 1.0312501,3.8437502 0,0 0.34375,-3.6250002 0.34375,-3.6250002 0,0 0.96874997,3.5625002 0.96874997,3.5625002 0,0 0.28125,-3.3125002 0.28125,-3.3125002 0,0 0.9375001,3.3125002 0.9375001,3.3125002 0,0 0.21875,-3.0937502 0.21875,-3.0937502 0,0 1.03125013,2.9687502 1.03125013,2.9687502 0,0 0.0625,-2.7187501 0.0625,-2.7187501 0,0 0.96875,2.4687501 0.96875,2.4687501 0,0 0.15625,-2.18750023 0.15625,-2.18750023" id="path31975"/>
</symbol>
<symbol id="inkstitch_satin_end" style="display:inline">
<title id="inkstitch_title9427-3">Satin column ending point</title>
<path id="inkstitch_circle13166-60" d="m 9.220113,0.0792309 c -1.9e-6,5.106729 -4.1398241,9.24655 -9.246553,9.24655 -5.1067293,0 -9.2465521,-4.139821 -9.246554,-9.24655 1e-7,-2.452338 0.9741879,-4.804235 2.7082531,-6.538301 1.7340653,-1.734065 4.0859624,-2.708252 6.5383009,-2.708252 5.1067301,0 9.2465528,4.139823 9.246553,9.246553 0,0 0,0 0,0" style="opacity:1;vector-effect:none;fill:#fafafa;fill-opacity:1;fill-rule:evenodd;stroke:#003399;stroke-width:1.06500006;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:3.19500017, 3.19500017;stroke-dashoffset:0;stroke-opacity:1" inkscape:connector-curvature="0"/>
<path style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.27154255;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:4.81866985, 4.81866985;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke" d="m -4.570439,-4.5704391 c 0,0 9.140878,0 9.140878,0 0,0 0,9.14087 0,9.14087 0,0 -9.140878,0 -9.140878,0 0,0 0,-9.14087 0,-9.14087" id="inkstitch_rect5371-2-6" inkscape:connector-curvature="0"/>
<path style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.2;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke" d="m -3.2964153,1.5777408 0.25,-3.6875001 1.0312501,3.8437501 0.34375,-3.6250001 0.9687501,3.5625001 0.28125,-3.3125001 0.9375,3.3125001 0.21875,-3.0937501 1.0312499,2.9687501 0.0625,-2.7187501 0.96875,2.4687501 0.15625,-2.1875" id="path31975-0-2" inkscape:connector-curvature="0"/>
</symbol>
</defs>
<g inkscape:groupmode="layer" inkscape:label="GlyphLayer-•" style="display:none;fill:none;stroke:#00673e;stroke-width:0.945;stroke-opacity:1;stroke-miterlimit:4;" id="g157910">
<path id="autosatin266" d="m 13.8836,53.128 1.2453,-0.1191 1.0654,-0.3564 0.9305,-0.5927 0.8402,-0.8278 0.5907,-0.8298 M 13.4481,53.128 12.1795,53.0089 11.0491,52.6525 10.0199,52.0598 9.05499,51.232 8.38786,50.4288 M 9.04499,51.232 H 17.975" inkstitch:satin_column="True" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkscape:label="Auto-remplissage satin 1"/>
<path d="m 13.4449,49.7557 -0.0359,-0.8813 -0.0288,-1.5434 7e-4,-0.9546 v 0 l 4e-4,-0.5992 0.0296,-1.5433 0.0477,-1.2366 v 0 l 0.0124,-0.3199 0.0764,-1.5173 0.03451,-0.762602" inkstitch:running_stitch_length_mm="2" id="autosatinrun190" inkscape:label="Points droits pour auto-remplissage satin 2" sodipodi:nodetypes="cccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin267" d="m 13.4172,39.622 -1.2638,0.135 -1.1198,0.405 -1.0186,0.675 -0.96001,0.945 -0.82688,1.1138 -0.59062,1.1812 -0.35438,1.2488 -0.11812,1.3162 0.11812,1.2994 0.35438,1.1981 0.59062,1.0969 0.15975,0.1924 m 5.53554,-10.8026 1.239,0.1344 1.0518,0.4035 0.9168,0.6736 0.834,0.9443 0.7088,1.1138 0.5062,1.1812 0.3038,1.2488 0.1012,1.3162 -0.1012,1.2994 -0.3038,1.1981 -0.5062,1.0969 -0.1181,0.1658 M 9.04499,41.782 H 17.975 M 7.15499,46.642 H 19.595 m -6.3125,-7.0096 0.7756,0.0048" inkstitch:satin_column="True" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="2" inkstitch:force_lock_stitches="True" inkstitch:zigzag_underlay="True" inkscape:label="Auto-remplissage satin 3"/>
</g>
<g inkscape:groupmode="layer" inkscape:label="GlyphLayer-„" style="display:none;fill:none;stroke:#00673e;stroke-width:0.945;stroke-opacity:1;stroke-miterlimit:4;" id="g157882">
<path id="autosatin248" d="m 7.27708,70.067 0.85764,-0.9114 1.04937,-0.6415 1.18201,-0.3946 1.2556,-0.1703 1.2701,0.0309 1.2254,0.2093 1.1218,0.3648 0.9591,0.4975 1.0649,0.9579 0.79,1.1793 0.5364,1.3268 0.3043,1.4008 0.2076,2.9099 -0.1462,2.3302 -0.4898,2.2778 -0.7975,2.1952 -1.0692,2.0826 -1.1422,1.8019 M 6.82395,70.7545 5.9983,72.2526 l -0.41327,1.6532 0.04775,1.7406 0.50716,1.7893 0.89671,1.6546 1.21638,1.3365 1.06845,0.6858 1.20282,0.4496 1.2793,0.2318 1.2977,0.0324 -0.1137,2.0388 -0.5626,1.9616 -0.8782,1.532 m 0.6359,-4.6634 8.0434,-5.9662 M 5.86296,79.3367 17.4418,68.3765 M 7.3741,69.9518 6.74719,70.8845" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 1"/>
<path id="autosatin249" d="m 6,92 0.03827,-0.4688 0.28371,-0.3993 0.92296,-0.5433 1.60776,-0.7652 1.4506,-1.0731 1.2165,-1.3443 0.027,-0.0472 m -5.3593,5.1724 0.26489,0.4745 0.35882,0.2658 0.44404,0.0864 0.52057,-0.0639 1.23595,-0.4612 1.43773,-0.7109 1.9794,-1.2575 1.622,-1.535 1.3586,-1.7413 0.0469,-0.074 m -7.51631,1.2801 2.38651,4.7288" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="2" inkstitch:force_lock_stitches="True" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 3"/>
<path id="autosatin250" d="m 23,92 0.0383,-0.4688 0.2837,-0.3993 0.9229,-0.5433 1.6078,-0.7652 1.4506,-1.0731 1.2165,-1.3443 0.9052,-1.5792 0.5626,-1.9616 0.1137,-2.0388 -1.2977,-0.0324 -1.2793,-0.2318 -0.2063,-0.0771 m -4.1305,11.0462 0.2649,0.4744 0.3588,0.2658 0.444,0.0864 0.5206,-0.0639 1.236,-0.4612 1.4377,-0.7109 1.9794,-1.2575 1.622,-1.535 1.3586,-1.7413 1.1891,-1.8759 1.0692,-2.0826 0.7975,-2.1952 0.4898,-2.2778 0.1462,-2.3302 -0.1934,-2.711 m -6.7252,8.58 8.0434,-5.9662 m -12.286,12.065 2.3865,4.7288 m 9.0136,-19.6731 -9.3537,8.0355" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 4"/>
<path id="autosatin251" d="m 23.8239,70.7545 -0.8256,1.4981 -0.4133,1.6532 0.0478,1.7406 0.5071,1.7893 0.8967,1.6546 1.2164,1.3365 1.0685,0.6858 0.9965,0.3725 m -3.0409,-11.4181 0.8576,-0.9114 1.0494,-0.6415 1.182,-0.3946 1.2556,-0.1703 1.2701,0.0309 1.2254,0.2093 1.1218,0.3648 0.9591,0.4975 1.0649,0.9579 0.79,1.1793 0.5364,1.3268 0.3043,1.4008 0.0142,0.1989 M 22.863,79.3367 34.4418,68.3765" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="2" inkstitch:force_lock_stitches="True" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 6"/>
</g>
<g inkscape:groupmode="layer" inkscape:label="GlyphLayer-”" style="display:none;fill:none;stroke:#00673e;stroke-width:0.945;stroke-opacity:1;stroke-miterlimit:4;" id="g157906">
<path id="autosatin262" d="m 6.77369,40.0711 0.03827,-0.4689 0.28372,-0.3992 0.92296,-0.5433 1.60775,-0.7652 1.45061,-1.0731 1.2165,-1.3444 0.027,-0.0472 m -5.35931,5.1725 0.2649,0.4745 0.35881,0.2658 0.44404,0.0863 0.52058,-0.0638 1.23595,-0.4613 1.43773,-0.7109 1.9794,-1.2574 1.622,-1.535 1.3586,-1.7413 0.0469,-0.074 m -7.51632,1.2801 2.38652,4.7288" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 1"/>
<path d="m 15.0734,34.2046 0.6862,-1.3612 0.4611,-1.2867 v 0 l 0.0534,-0.149 0.3628,-1.478 0.1762,-1.5138 -0.0549,-0.1588 v 0 l -0.408,-1.1803 -0.9636,-1.2055 -0.3479,-0.4642 v 0 l -0.5745,-0.7665 -0.9187,-1.2338 -0.5572,-0.676 v 0 l -0.414,-0.5023 -1.0584,-1.1018 -0.8996,-0.7843 v 0 L 10.3512,20.1113 9.16071,19.1726" inkstitch:running_stitch_length_mm="2" id="autosatinrun188" inkscape:label="Points droits pour auto-remplissage satin 2" sodipodi:nodetypes="ccccccccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin263" d="m 8.05077,18.1381 0.85764,-0.9114 1.04938,-0.6415 1.18201,-0.3946 1.2556,-0.1704 1.2701,0.0309 1.2254,0.2093 1.1218,0.3649 0.9591,0.4975 1.0649,0.9579 0.79,1.1792 0.5364,1.3269 0.3043,1.4008 0.2075,2.9099 -0.1461,2.3301 -0.4898,2.2778 -0.7975,2.1953 -1.0692,2.0826 -1.1422,1.8019 M 7.59765,18.8256 6.772,20.3237 l -0.41327,1.6532 0.04774,1.7406 0.50716,1.7893 0.89671,1.6546 1.21638,1.3364 1.06848,0.6859 1.2028,0.4496 1.2793,0.2318 1.2976,0.0324 -0.1136,2.0388 -0.5626,1.9615 -0.8782,1.532 m 0.6359,-4.6633 8.0434,-5.9662 M 6.63666,27.4077 18.2155,16.4476 M 8.1478,18.0229 7.52088,18.9556" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="2" inkstitch:force_lock_stitches="True" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 3"/>
<path id="autosatin264" d="m 23.9987,40.0741 0.0383,-0.4689 0.2837,-0.3992 0.9229,-0.5433 1.6078,-0.7652 1.4506,-1.0731 1.2165,-1.3444 0.027,-0.0472 m -5.3593,5.1725 0.2649,0.4745 0.3588,0.2658 0.444,0.0863 0.5206,-0.0638 1.236,-0.4613 1.4377,-0.7109 1.9794,-1.2574 1.622,-1.535 1.3586,-1.7413 0.0469,-0.074 m -7.5163,1.2801 2.3865,4.7288" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 4"/>
<path d="m 32.2984,34.2076 0.6862,-1.3612 0.4611,-1.2867 v 0 l 0.0534,-0.149 0.3628,-1.478 0.1762,-1.5138 -0.0549,-0.1588 v 0 l -0.408,-1.1803 -0.9636,-1.2055 -0.3479,-0.4642 v 0 l -0.5745,-0.7665 -0.9187,-1.2338 -0.5572,-0.676 v 0 l -0.414,-0.5023 -1.0584,-1.1018 -0.8996,-0.7843 v 0 l -0.2651,-0.2311 -1.1905,-0.9387" inkstitch:running_stitch_length_mm="2" id="autosatinrun189" inkscape:label="Points droits pour auto-remplissage satin 5" sodipodi:nodetypes="ccccccccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin265" d="m 24.8226,18.8286 -0.8256,1.4981 -0.4133,1.6532 0.0478,1.7406 0.5071,1.7893 0.8967,1.6546 1.2164,1.3364 1.0685,0.6859 1.2028,0.4496 1.2793,0.2318 1.2976,0.0324 -0.1136,2.0388 -0.5626,1.9615 -0.8782,1.532 m -4.2697,-17.2917 0.8576,-0.9114 1.0494,-0.6415 1.182,-0.3946 1.2556,-0.1704 1.2701,0.0309 1.2254,0.2093 1.1218,0.3649 0.9591,0.4975 1.0649,0.9579 0.79,1.1792 0.5364,1.3269 0.3043,1.4008 0.2075,2.9099 -0.1461,2.3301 -0.4898,2.2778 -0.7975,2.1953 -1.0692,2.0826 -1.1422,1.8019 m -3.2737,-4.8187 8.0434,-5.9662 M 23.8617,27.4107 35.4405,16.4506 m -10.0677,1.5753 -0.6269,0.9327" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="2" inkstitch:force_lock_stitches="True" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 6"/>
</g>
<g inkscape:groupmode="layer" inkscape:label="GlyphLayer-“" style="display:none;fill:none;stroke:#00673e;stroke-width:0.945;stroke-opacity:1;stroke-miterlimit:4;" id="g157902">
<path id="autosatin260" d="M 18.5239,38.7599 C 16.545,41.5704 11.8908,41.2584 9.60287,39.7752 7.99014,38.6783 7.16777,36.7945 6.90726,34.9103 6.77388,33.9456 6.71533,32.9733 6.69969,32.0005 6.64941,28.8721 7.61162,25.8029 9.2023,23.1147 c 1.5144,-2.5593 3.2299,-4.95 6.1492,-6.4097 2.0205,-1.0103 3.6885,-1.979 4.2619,-0.4094 M 18.977,38.0724 c 0.7051,-1.0453 1.0836,-1.8993 1.2389,-3.1513 0.2737,-2.2068 -0.8641,-5.0328 -2.668,-6.521 -1.3092,-1.0801 -3.1316,-1.4813 -4.8482,-1.3996 -0.0721,-1.3646 0.1496,-2.7388 0.6763,-4.0004 0.9652,-2.2459 2.9658,-3.9631 5.18,-4.7619 0.6464,-0.2332 1.3999,-0.745 1.2449,-1.4113 m -6.1827,9.3045 -8.04332,5.9663 M 17.8609,20.0326 15.4744,15.3039 M 19.938,29.4902 8.35911,40.4503" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="2" inkstitch:force_lock_stitches="True" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 2"/>
<path id="autosatin261" d="m 36.8009,16.8264 -0.0382,0.4688 -0.2837,0.3993 -0.923,0.5433 -1.6078,0.7652 -1.4506,1.073 -1.2164,1.3444 -0.9052,1.5792 -0.5627,1.9616 -0.1136,2.0388 1.2976,0.0323 1.2793,0.2318 1.2029,0.4497 1.0684,0.6858 1.2164,1.3364 0.8967,1.6546 0.5072,1.7894 0.0477,1.7406 -0.4133,1.6532 -0.8256,1.4981 m 0.6364,-21.7768 -0.2648,-0.4745 -0.3589,-0.2657 -0.444,-0.0864 -0.5206,0.0639 -1.2359,0.4612 -1.4377,0.7109 -1.9795,1.2574 -1.622,1.5351 -1.3585,1.7413 -1.1892,1.8759 -1.0692,2.0826 -0.7975,2.1952 -0.4898,2.2778 -0.1461,2.3302 0.2076,2.9099 0.3043,1.4007 0.5364,1.3269 0.7899,1.1793 1.065,0.9579 0.959,0.4975 1.1218,0.3648 1.2255,0.2093 1.27,0.0309 1.2556,-0.1704 1.1821,-0.3945 1.0493,-0.6415 0.8577,-0.9114 m -4.9057,-12.6285 -8.0433,5.9663 m 12.286,-12.065 -2.3865,-4.7288 M 36.938,29.4897 25.3591,40.4499" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="2" inkstitch:force_lock_stitches="True" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 4"/>
</g>
<g inkscape:groupmode="layer" inkscape:label="GlyphLayer-’" style="display:none;fill:none;stroke:#00673e;stroke-width:0.945;stroke-opacity:1;stroke-miterlimit:4;" id="g157898">
<path id="autosatin258" d="m 6.95771,39.6411 0.03827,-0.4689 0.28372,-0.3992 0.92298,-0.5433 1.6078,-0.7652 1.45062,-1.0731 1.2165,-1.3444 0.0271,-0.0472 m -5.35948,5.1725 0.26489,0.4745 0.35883,0.2658 0.44405,0.0863 0.52059,-0.0638 1.23598,-0.4613 1.43774,-0.7109 1.9795,-1.2574 1.622,-1.5351 1.3586,-1.7412 0.047,-0.0741 m -7.51656,1.2802 2.38656,4.7288" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 1"/>
<path d="m 15.2576,33.7746 0.6862,-1.3612 0.4611,-1.2867 v 0 l 0.0534,-0.149 0.3629,-1.478 0.1761,-1.5138 -0.0549,-0.1588 v 0 l -0.408,-1.1803 -0.9636,-1.2055 -0.3479,-0.4642 v 0 l -0.5745,-0.7665 -0.9187,-1.2338 -0.5573,-0.676 v 0 l -0.414,-0.5023 -1.0585,-1.1019 -0.8995,-0.7842 v 0 L 10.5352,19.6812 9.34475,18.7426" inkstitch:running_stitch_length_mm="2" id="autosatinrun187" inkscape:label="Points droits pour auto-remplissage satin 2" sodipodi:nodetypes="ccccccccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin259" d="m 7.78168,18.3956 -0.82567,1.4981 -0.41327,1.6532 0.04774,1.7406 0.50717,1.7893 0.89673,1.6546 1.21641,1.3364 1.06851,0.6859 1.2029,0.4496 1.2793,0.2318 1.2976,0.0324 -0.1136,2.0388 -0.5627,1.9615 -0.8781,1.532 m -4.26988,-17.2917 0.85766,-0.9114 1.04942,-0.6415 1.182,-0.3946 1.2556,-0.1704 1.2701,0.0309 1.2255,0.2093 1.1219,0.3649 0.959,0.4975 1.065,0.9579 0.79,1.1792 0.5364,1.3269 0.3043,1.4008 0.2076,2.9099 -0.1462,2.3301 -0.4898,2.2778 -0.7975,2.1953 -1.0692,2.0826 -1.1422,1.8018 m -3.2738,-4.8186 8.0435,-5.9662 M 6.82067,26.9778 18.3998,16.0176 M 8.33184,17.5929 7.70492,18.5256" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="2" inkstitch:force_lock_stitches="True" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 3"/>
</g>
<g inkscape:groupmode="layer" inkscape:label="GlyphLayer-‘" style="display:none;fill:none;stroke:#00673e;stroke-width:0.945;stroke-opacity:1;stroke-miterlimit:4;" id="g157894">
<path d="m 17.5369,37.3363 -1.1904,-0.9387 -0.2651,-0.2311 v 0 l -0.8996,-0.7842 -1.0584,-1.1019 -0.4141,-0.5023 v 0 l -0.5572,-0.676 -0.9186,-1.2338 -0.5745,-0.7665 v 0 L 11.311,30.6376 10.3474,29.4321 9.93947,28.2519 v 0 l -0.05488,-0.1588 0.17611,-1.5139 0.3629,-1.4779 0.0534,-0.149 v 0 l 0.461,-1.2868 0.6862,-1.3611 0.2513,-0.4102 v 0 l 0.5468,-0.8927 0.9614,-1.1861 0.5658,-0.5634 v 0 l 0.5148,-0.5126 1.2376,-0.8904 0.9759,-0.552 v 0 l 0.3744,-0.2118 1.4204,-0.6367" inkstitch:running_stitch_length_mm="2" id="autosatinrun186" inkscape:label="Points droits pour auto-remplissage satin 1" sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin257" d="m 19.9239,16.4379 -0.0382,0.4688 -0.2837,0.3993 -0.923,0.5432 -1.6078,0.7652 -1.4506,1.0731 -1.2164,1.3444 -0.9052,1.5792 -0.5627,1.9616 -0.1136,2.0388 1.2976,0.0323 1.2793,0.2318 1.2029,0.4497 1.0684,0.6858 1.2164,1.3364 0.8967,1.6546 0.5072,1.7893 0.0477,1.7407 -0.4133,1.6531 -0.8256,1.4982 m 0.6364,-21.7768 -0.2648,-0.4745 -0.3589,-0.2658 -0.444,-0.0863 -0.5206,0.0639 -1.2359,0.4612 -1.4377,0.7109 -1.9795,1.2574 -1.622,1.5351 -1.3585,1.7412 -1.1892,1.876 -1.06917,2.0826 -0.79749,2.1952 -0.48982,2.2778 -0.14613,2.3302 0.20757,2.9098 0.3043,1.4008 0.53642,1.3269 0.78996,1.1793 1.06493,0.9579 0.95903,0.4975 1.1218,0.3648 1.2255,0.2093 1.27,0.0309 1.2556,-0.1704 1.1821,-0.3945 1.0493,-0.6415 0.8577,-0.9115 M 13.7412,25.7424 5.69788,31.7086 M 17.9839,19.6436 15.5974,14.9149 M 20.061,29.1012 8.48211,40.0613" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="2" inkstitch:force_lock_stitches="True" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 2"/>
</g>
<g inkscape:groupmode="layer" inkscape:label="GlyphLayer-—" style="display:none;fill:none;stroke:#00673e;stroke-width:0.945;stroke-opacity:1;stroke-miterlimit:4;" id="g157918">
<path id="path157916" d="M 7,47.125 V 46 c 0,-0.666667 0.3333333,-1 1,-1 h 46 c 0.666667,0 1,0.333333 1,1 v 1.203125 M 7,47.6875 V 49 c 0,0.666667 0.3333333,1 1,1 h 46 c 0.666667,0 1,-0.333333 1,-1 v -1.1875" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="2" inkstitch:force_lock_stitches="True" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False"/>
</g>
<g inkscape:groupmode="layer" inkscape:label="GlyphLayer-–" style="display:none;fill:none;stroke:#00673e;stroke-width:0.945;stroke-opacity:1;stroke-miterlimit:4;" id="g157914">
<path id="path157912" d="M 7,54.838896 V 52 h 1 36 1 l 0.01105,2.927283 M 7,55.33608 V 58 c 0,0.666667 0.3333333,1 1,1 h 36 c 0.666667,0 1,-0.333333 1,-1 v -2.531338" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="2" inkstitch:force_lock_stitches="True" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False"/>
</g>
<g inkscape:groupmode="layer" inkscape:label="GlyphLayer-œ" style="display:none;fill:none;stroke:#00673e;stroke-width:0.945;stroke-opacity:1;stroke-miterlimit:4;" id="g157930">
<path d="m 14.5973,70.3836 0.2262,0.5129 0.7458,1.3237 0.916,1.2435 v 0 l 0.0079,0.0107 1.1472,1.0465 1.3779,0.7437 0.4754,0.129 v 0 l 1.0008,0.2715 1.5434,0.2097 1.0277,0.0667 v 0 l 0.5277,0.0342 1.5331,-0.0044 1.5574,-0.1264 v 0 l 4e-4,-10e-5 1.5228,-0.3032 1.4557,-0.5024 0.4474,-0.2867 v 0 l 0.8495,-0.5444 0.9492,-1.0587 -0.5446,-1.0621 v 0 L 31.2066,71.78 30.6421,70.3048 30.1995,68.7932 30.1701,68.6723 v 0 l -0.3473,-1.4285" inkstitch:running_stitch_length_mm="2" id="autosatinrun191" inkscape:label="Points droits pour auto-remplissage satin 1" sodipodi:nodetypes="ccccccccccccccccccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin269" d="m 29.4333,66.7382 1.0874,3.3697 1.4035,3.0536 0.8454,1.3833 0.9544,1.2741 1.0734,1.1551 L 36,78 34.9688,78.9062 33.875,79.625 32.7188,80.1563 31.5,80.5 29.125,80.875 27,81 H 22 L 18.375,80.75 16.8438,80.4375 15.5,80 14.2812,79.4062 13.125,78.625 12.0312,77.6563 11,76.5 10.0625,75.1562 9.25,73.625 8.5625,71.9063 8,70 7.5625,67.875 7.25,65.5 7,60 V 58 L 7.25,52.25 8,47 9.125,42.375 10.5,38.5 11.3438,36.8438 12.375,35.375 13.5938,34.0937 15,33 16.5625,32.125 18.25,31.5 20.0625,31.125 22,31 h 2 l 3,0.25 3,0.75 1.4375,0.5625 L 32.75,33.25 33.9375,34.0625 35,35 33.1226,36.7818 31.7348,38.6724 30.7426,40.651 30.052,42.6965 M 29.5,63.5 28.875,66.5 28.4688,67.625 28,68.5 27,69.75 26,70.5 25,70.875 24,71 22.875,70.875 21.5,70.5 20.8125,70.1563 20.25,69.625 19.8125,68.9062 19.5,68 18.5,62.5 18.125,58.375 18,53 V 45 L 18.25,42.25 18.5625,41.0625 19,40 20,38.375 21,37.5 22,37.125 23,37 24.75,37.125 26,37.5 27,38.375 28,40 28.875,42.375 29.5,45.5 M 24.13,29.5267 23.9532,38.012 M 5.48008,55.3361 19.0919,55.4245 m 4.5962,14.3189 0.2651,12.6395" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 2"/>
<path d="m 35.1944,44.1749 0.4437,-1.4559 0.414,-1.1719 v 0 l 0.0908,-0.2569 0.6823,-1.417 0.8315,-1.3186 0.1945,-0.2581 v 0 l 0.7296,-0.9679 1.0056,-1.1673 0.7142,-0.663 v 0 l 0.4015,-0.3728 1.3074,-0.8505 1.4446,-0.5541 0.0718,-0.0105 v 0 l 1.4774,-0.2167 1.5298,0.1523 0.6826,0.1396 v 0 l 0.861,0.1762 1.4892,0.4981 1.1201,0.6157 v 0 l 0.2095,0.1151 1.2068,0.9442 1.1283,1.0411 0.2838,0.3107 v 0 l 0.756,0.8275 0.8884,1.262 0.4853,0.9459 v 0 l 0.2258,0.4401 0.5014,1.476 0.3839,1.5137 0.0155,0.1111 v 0 l 0.1991,1.4344 0.0908,1.5596 0.0023,0.7169 v 0 l 0.0028,0.8378 -0.1408,1.5516 -0.506,1.2316 v 0 l -0.0764,0.1859 -1.176,1.0189 -1.375,0.7113 -0.3939,0.1522 v 0 l -1.0632,0.4108 -1.4424,0.4723 -1.0289,0.2927 v 0 l -0.4382,0.1247 -1.4831,0.3709 -1.4867,0.3605 -0.2074,0.0493 v 0 l -1.2811,0.3047 -1.4907,0.3461 -0.8526,0.2182 v 0 l -0.6615,0.1693 -1.1226,1.0397" inkstitch:running_stitch_length_mm="2" id="autosatinrun192" inkscape:label="Points droits pour auto-remplissage satin 3" inkstitch:ties="3" sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin270" d="M 39.75,58.3125 39.5546,56.6268 39.536,55 l 2.9441,-0.7725 2.824,-0.8139 1.3208,-0.5132 1.2352,-0.6324 1.1312,-0.7881 L 50,50.5 l 0.5375,-0.7653 0.3857,-0.8599 0.3542,-1.9375 -0.1393,-2.1181 -0.5573,-2.1667 -0.8996,-2.0834 -1.1665,-1.8685 -1.3577,-1.5215 -1.4734,-1.0427 -0.8251,-0.1718 -0.8201,0.2145 -0.7374,0.4829 -0.5768,0.6335 -1.0454,2.3905 -0.8734,3.1384 -0.6686,3.6476 -0.4316,3.9183 -0.1619,3.9505 0.1401,3.7441 0.4748,3.2993 0.373,1.4082 L 41,64 42.125,65.875 43.5,67.5 45.125,68.875 47,70 48.0625,70.4375 49.25,70.75 52,71 54.625,70.875 56.5,70.5 57.8989,69.9404 M 39.779,59.0663 59,55 l 1.3701,-0.4028 1.0284,-0.5108 0.704,-0.554 L 62.5,53 62.875,51.75 63,50 62.75,45.375 62.4375,43.3437 62,41.5 61.4375,39.8438 60.75,38.375 59.9375,37.0937 59,36 56.875,34.125 54.5,32.5 53.2187,31.8438 51.875,31.375 50.4687,31.0938 49,31 H 45 L 42.125,31.25 39.5,32 38.2972,32.58 37.1677,33.2967 35,35 l -1.1794,1.0963 -1.02,1.1743 -0.8699,1.2441 -0.7294,1.306 -1.0749,2.7648 L 29.5,45.5 29.3328,47.3436 29.2926,49.3749 29.3371,54 29.4427,59.3664 29.5,63.5 l 0.0462,2.0567 0.2558,1.9924 0.47,1.9253 0.689,1.8555 0.9126,1.783 1.1409,1.7078 1.3739,1.6299 L 36,78 38.1583,79.5894 39.2937,80.1429 40.5,80.5 43.125,80.875 46,81 h 5 L 53.4062,80.8438 55.625,80.375 57.6563,79.5938 59.5,78.5 61.0312,77.1562 62.125,75.625 62.5282,74.5691 M 44.75,29 l 0.125,8.875 m 5,11 14.75,4.75 M 27.875,50.125 41,49.75 m 9.625,19.875 -0.25,13.875" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 4"/>
<path id="path23529" d="M 60.9766,67.9922 C 60.7677,67.9698 60.5116,67.9637 60.25,68.125 L 60,68.5 59.75,69 59,69.5 57.8989,69.9404 m 3.5308,-1.8545 c 0.3165,0.0231 0.5079,0.1399 0.75,0.2188 0.1704,0.2636 0.226,0.4698 0.3203,0.6953 L 62.875,70.25 63,72 l -0.2188,1.9063 -0.253,0.6628 m -4.7651,-4.8944 5.0293,5.0296" inkstitch:ties="2" inkstitch:force_lock_stitches="True" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" sodipodi:nodetypes="ccccccccccccccc"/>
</g>
<g inkscape:groupmode="layer" inkscape:label="GlyphLayer-Œ" style="display:none;fill:none;stroke:#00673e;stroke-width:0.945;stroke-opacity:1;stroke-miterlimit:4;" id="g157890">
<path d="m 16.9783,69.1061 0.4032,0.7988 0.868,1.2716 0.895,0.926 v 0 l 0.1705,0.1765 1.2475,0.8911 1.3987,0.7388 0.3401,0.1238 v 0 l 1.1647,0.4242 1.4923,0.2496 0.9634,0.1101 v 0 l 0.5432,0.0621 1.5435,0.0753 1.5267,0.0161 0.1032,-0.0052 v 0 l 1.4461,-0.0726 1.5091,-0.2043 0.6999,-0.2736 v 0 l 0.693,-0.2708 0.3448,-1.5172 0.2275,-1.4039 v 0 l 0.0159,-0.0985 0.2434,-1.5024 0.1769,-1.528 0.0618,-0.5589 v 0 l 0.1075,-0.972 0.1583,-1.5336" inkstitch:running_stitch_length_mm="2" id="autosatinrun182" inkscape:label="Points droits pour auto-remplissage satin 1" sodipodi:nodetypes="cccccccccccccccccccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin252" d="M 35.7973,62.2304 35.625,81 H 22 L 20.5,80.9062 19,80.625 17.5,80.1562 16,79.5 14.5625,78.6562 13.25,77.625 12.0625,76.4062 11,75 10.0625,73.3438 9.25,71.375 8.5625,69.0938 8,66.5 7.5625,63.5312 7.25,60.125 7,52 7.09375,47.1875 7.375,42.75 7.84375,38.6875 8.5,35 9.28125,31.6875 10.125,28.75 11.0313,26.1875 12,24 13.0625,22.125 14.25,20.5 15.5625,19.125 17,18 18.5,17.125 20,16.5 21.5,16.125 23,16 h 12.625 l 0.0214,20.30505 M 35.5,58 34.875,61.625 34,64.5 33,66.625 32,68 31.4375,68.4375 30.75,68.75 29,69 27.5313,68.7188 26.125,67.875 24.7813,66.4688 23.5,64.5 22.1602,61.9109 20.8377,58.6375 20.2752,56.7412 19.8277,54.6703 19.5322,52.4236 19.4255,50 v -6 l -0.0878,-7.0156 0.01,-2.7402 L 19.5,32 20.125,28.375 21,25.5 22.125,23.375 22.7813,22.5938 23.5,22 24.875,21.25 26,21 l 0.7422,0.0781 0.7265,0.2344 1.4063,0.9375 1.3437,1.5625 L 31.5,26 l 1.2391,2.8056 1.1511,3.4223 0.9635,4.0473 0.6766,4.6806 M 25.4558,14.2355 25.5442,23.0743 M 5.74524,46.5856 H 20.5061 m 8.4853,20.9481 -0.1768,14.6724 M 11.875,18.625 22.625,26.25 M 7.5,28.375 21.625,29.125 M 26,65.75 15.125,81.125 M 5.875,65.5 24.625,63.625" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 2" sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc"/>
<path d="m 40.7536,36.9423 0.0179,-1.5249 0.0101,-0.8612 v 0 l 0.0077,-0.6637 0.0179,-1.5249 0.0482,-1.5233 9e-4,-0.023 v 0 l 0.06,-1.4996 0.0923,-1.5501 0.0257,-0.6816 v 0 l 0.0342,-0.9086 0.0804,-1.5853 0.091,-1.2359 v 0 l 0.025,-0.3407 0.1161,-1.5766 0.725,-1.1344 0.453,-0.1135 v 0 l 1.0305,-0.2583 1.4867,-0.2763 1.1495,-0.1647 v 0 l 0.3725,-0.0534 1.5412,-0.1862 1.5691,-0.104 0.2341,-0.0139 v 0 l 1.3371,-0.0791 1.5806,-0.03 0.8154,-0.0133 v 0 l 0.778,-0.0127 1.5542,0.0238 1.4031,0.0215 v 0 l 0.1511,0.0023 1.5508,0.0556 1.5454,0.1523 0.4702,0.0965 v 0 l 1.0488,0.2155 1.436,0.5765 0.9261,0.6257 v 0 l 0.3538,0.239 1.0761,1.1078 0.8257,1.3098 0.0723,0.2036 v 0 l 0.443,1.2485 0.2298,1.4952 -0.0236,0.898 v 0 L 67.5,27.905 67.2598,29.4535" inkstitch:running_stitch_length_mm="2" id="autosatinrun183" inkscape:label="Points droits pour auto-remplissage satin 3" sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin253" d="M 67.5138,30.9834 68.4022,30.861 69.1319,30.4917 69.799,29.8724 70.5,29 71.1562,27.9375 71.625,26.75 71.9062,25.4375 72,24 71.8125,22.5313 71.25,21.125 70.3125,19.7813 69,18.5 67.375,17.4062 65.5,16.625 63.375,16.1562 61,16 H 35.625 V 53.944 M 67,31 66.0938,30.9375 65.375,30.75 64.8437,30.4375 64.5,30 63,27 62,25 61.4375,24.0938 60.75,23.375 59.9375,22.8437 59,22.5 56.75,22.125 54,22 52.125,22.125 50.5,22.5 49.125,23.125 48,24 47.158,25.251 46.588,27.0026 46.224,29.2529 46,32 45.869,37.5 46,43 l 0.4064,7.1671 0.2969,3.4174 m 6.7716,-38.9071 v 8.3085 M 34.2063,47.9115 47.1994,47.4695 M 62.5789,29.0847 71.8597,28.8196 M 33.75,14.125 48.75,25.75 M 34.5,28.125 47.625,28.5" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 4"/>
<path d="m 47.0139,48.5579 0.1911,-1.5355 0.1551,-0.9586 v 0 l 0.0898,-0.5543 0.8588,-1.2432 0.9604,-0.905 v 0 l 0.1542,-0.1453 1.1561,-0.9885 1.2709,-0.8482 0.1135,-0.0657 v 0 l 1.199,-0.6949 1.3573,-0.6689 0.4691,-0.1519 v 0 l 1.0067,-0.326 1.4883,-0.3232 0.808,-0.0685 v 0 l 0.7174,-0.0608 1.534,0.0415 1.1331,0.0998 v 0 l 0.3919,0.0345 1.4901,0.37" inkstitch:running_stitch_length_mm="2" id="autosatinrun184" inkscape:label="Points droits pour auto-remplissage satin 5" sodipodi:nodetypes="ccccccccccccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin254" d="m 65,39 c 0,-1.3333 -0.5,-2.3333 -1.5,-3 -1,-0.6667 -2.5,-1 -4.5,-1 -2,0 -4,0.6667 -6,2 -2,1.3333 -4.3333,3.3333 -7,6 l 0.5144,8.8005 M 65.0221,39.7734 65,41 c -0.036,1.9997 -1,2.6667 -3,2 h -2 -2 c -3.3333,0 -6,1 -8,3 -2,2 -2.2487,4.536 -3.3094,7.8068 m 1.6578,-14.9993 3.7123,7.071 M 62.5789,33.9461 v 10.6066" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 6"/>
<path id="autosatin255" d="M 46.7033,53.5845 47,57 47.2164,60.6208 47.5,63.5 47.8125,64.6875 48.25,65.75 48.8125,66.6875 49.5,67.5 51,68.75 52.5,69.5 54.125,69.875 56,70 58.3437,69.8125 60.375,69.25 62.0937,68.3125 63.5,67 64.5938,65.3125 64.721,64.9766 M 35.625,53.944 V 81 H 67 L 68.8125,80.9062 70.25,80.625 71.3125,80.1562 72,79.5 72.4375,78.6562 72.75,77.625 73,75 73.0078,74.400075 M 56.5685,68.4176 56.4802,82.2945 M 32.625,63.125 49,62.625 M 50.5,65.5 33.625,83" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 7" sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccc"/>
<path d="m 69.2115,66.7841 0.0944,-1.5114 0.0733,-1.1736 v 0 l 0.0211,-0.3379 0.043,-1.5178 -0.0039,-1.519 -0.0127,-0.3596 v 0 L 69.386,59.2091 69.2434,57.7045 69.0517,56.6538 v 0 L 68.961,56.1563 68.45445,53.7859" inkstitch:running_stitch_length_mm="2" id="autosatinrun185" inkscape:label="Points droits pour auto-remplissage satin 8" sodipodi:nodetypes="ccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin256" d="M 68,53 67.125,53.25 66.5,54 66.125,55.5 66,58 65.8438,60.8125 65.375,63.25 64.721,64.9765 m 3.964,-11.9986 0.8836,0.1479 0.7072,0.4567 0.6155,0.7849 0.6087,1.1326 0.6096,1.5433 0.474,1.898 0.3071,2.3023 L 73,64 73.0078,74.4001 m -8.5727,-18.7989 8.5737,-0.0883" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="2" inkstitch:force_lock_stitches="True" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 9" sodipodi:nodetypes="cccccccccccccccccccc"/>
</g>
<g inkscape:groupmode="layer" inkscape:label="GlyphLayer-ü" style="display:none;fill:none;stroke:#00673e;stroke-width:0.945;stroke-opacity:1;stroke-miterlimit:4;" id="g158194">
<path d="M 15.4324,71.9634 C 13.546153,68.33793 13.390985,64.154974 13.436671,60.151436 13.508126,53.835074 13.6446,47.510174 14.133877,41.211364 14.330675,38.509461 14.890925,35.84509 15.7085,33.2648" inkstitch:running_stitch_length_mm="2" id="autosatinrun381" inkscape:label="Points droits pour auto-remplissage satin 1" inkstitch:ties="3" sodipodi:nodetypes="cccc" style="stroke-dasharray:0.5, 0.5;"/>
<path d="m 18.518,25.4285 c -0.336137,-3.645559 -0.256872,-5.925924 0.03485,-9.57395" inkstitch:running_stitch_length_mm="2" id="autosatinrun382" inkscape:label="Points droits pour auto-remplissage satin 2" inkstitch:ties="3" sodipodi:nodetypes="cc" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin542" d="m 18.3783,15.134 c -1.4636,0 -2.5224,0.5855 -3.547,1.7564 -1.0245,1.1709 -1.5368,2.4881 -1.5368,3.9517 0,1.4636 0.5123,2.7077 1.5368,3.7322 1.0246,1.0245 2.1085,1.5417 3.5721,1.5417 m 0.3865,-10.9785 c 1.4636,0 2.4081,0.582 3.2863,1.7529 0.8782,1.1709 1.3172,2.4881 1.3172,3.9517 0,1.4636 -0.439,2.7077 -1.3172,3.7322 -0.8782,1.0245 -1.855,1.5417 -3.3186,1.5417" inkstitch:satin_column="True" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkscape:label="Auto-remplissage satin 3"/>
<path id="autosatin543" d="m 15.7418,31.8808 1.6678,-0.1857 0.8082,0.0562 L 19,32 l 0.4792,0.3045 0.3627,0.4167 0.1507,0.5117 -0.1571,0.5895 -0.4599,2.3314 -0.2695,2.3558 -0.1061,4.7462 0.0434,16.2215 -0.022,4.7065 0.2911,2.0346 0.7243,1.9129 0.4292,0.6535 0.5023,0.5138 1.1689,0.6695 1.2969,0.2935 1.3153,0.0393 1.3949,-0.3595 1.2937,-0.6352 1.012,-0.9631 0.344,-0.6208 L 29,67 29.0587,66.686 M 15.0543,31.9746 14.0783,32 l -1.1324,0.1681 -0.8699,0.566 -0.6539,0.8474 -0.4846,1.0123 -1.23101,3.8303 -0.69087,3.8337 -0.6319,6.3108 -0.35247,5.4939 -0.21954,5.0666 0.10926,5.0812 0.24393,2.5227 0.40533,2.4983 0.59314,2.4645 0.80733,2.4214 0.5838,1.381 0.7779,1.2825 0.951,1.1581 1.1035,1.0081 1.2352,0.8323 1.3462,0.6309 1.4362,0.4038 1.5057,0.1509 17.8502,0.0352 0.8485,0.0682 0.7,-0.1746 0.5623,-0.3773 0.4355,-0.5396 0.5346,-1.4052 L 40,77 V 74.9853 M 8.0625,36.4375 l 14,0.25 M 24.7494,69.3947 24.875,82.25 M 6.5,63.125 h 13.6875" sodipodi:nodetypes="csccssccssssccsssscccsscccccccc" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 4"/>
<path d="m 34.8773,68.7469 c 0.350044,-6.38086 0.197972,-9.394994 0.121636,-15.787439 -0.0011,-6.333228 0.203134,-12.6878 -0.476413,-18.995991" inkstitch:running_stitch_length_mm="2" id="autosatinrun383" inkscape:label="Points droits pour auto-remplissage satin 5" inkstitch:ties="3" sodipodi:nodetypes="ccc" style="stroke-dasharray:0.5, 0.5;"/>
<path d="m 32.73675,25.4285 c -0.336137,-3.645559 -0.350622,-5.988424 -0.0589,-9.63645" inkstitch:running_stitch_length_mm="2" id="autosatinrun384" inkscape:label="Points droits pour auto-remplissage satin 6" inkstitch:ties="3" sodipodi:nodetypes="cc" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin544" d="m 32.5033,15.134 c -1.4636,0 -2.5224,0.5855 -3.547,1.7564 -1.0245,1.1709 -1.5368,2.4881 -1.5368,3.9517 0,1.4636 0.5123,2.7077 1.5368,3.7322 1.0246,1.0245 2.1085,1.5417 3.5721,1.5417 m 0.3865,-10.9785 c 1.4636,0 2.4081,0.582 3.2863,1.7529 0.8782,1.1709 1.3172,2.4881 1.3172,3.9517 0,1.4636 -0.439,2.7077 -1.3172,3.7322 -0.8782,1.0245 -1.855,1.5417 -3.3186,1.5417" inkstitch:satin_column="True" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkscape:label="Auto-remplissage satin 7"/>
<path id="autosatin545" d="M 35.1562,31.9968 31.318,32 l -0.9936,0.0827 -0.838,0.312 -0.5017,0.6146 -0.0683,0.4438 L 29,34 l 0.6349,3.1802 0.3055,3.2237 0.1278,5.5774 -0.0682,5.5855 -0.011,7.7636 -0.2767,3.8623 -0.6536,3.4933 m 6.6679,-34.697 3.7109,0.0422 0.318,0.0755 0.2016,0.1888 0.1454,0.614 -0.1025,1.45 v 40.6258 m -11.5,-38.1728 13,-0.125 M 28.5625,63.125 41.125,63 m -12.594,3.1728 12.0151,9.1274" sodipodi:nodetypes="csccssccssssccsssscccsscccccccc" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="2" inkstitch:force_lock_stitches="True" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 8"/>
</g>
<g inkscape:groupmode="layer" inkscape:label="GlyphLayer-û" style="display:none;fill:none;stroke:#00673e;stroke-width:0.945;stroke-opacity:1;stroke-miterlimit:4;" id="g158190">
<path d="M 15.4287,71.9463 C 13.526587,68.299922 13.397353,64.085267 13.436527,60.059487 13.508099,53.791682 13.643974,47.515869 14.122926,41.265033 14.30915,38.538397 14.895109,35.869984 15.6872,33.2592" inkstitch:running_stitch_length_mm="2" id="autosatinrun377" inkscape:label="Points droits pour auto-remplissage satin 1" sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path d="m 15.2312,25.1936 c 2.399842,-0.442434 4.490704,-1.918803 5.916124,-3.872074 0.616027,-0.805155 1.53139,-1.403528 1.660718,-2.486599 0.176487,-0.648428 0.605959,-1.187052 0.910858,-1.778527" inkstitch:running_stitch_length_mm="2" id="autosatinrun378" inkscape:label="Points droits pour auto-remplissage satin 2" sodipodi:nodetypes="ccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path d="m 25.8629,16.6993 c 0.557452,0.962893 0.802319,2.067648 1.267669,3.055235 1.54061,2.368306 3.712556,4.452134 6.503191,5.199338 0.123447,0.04221 0.246893,0.08442 0.37034,0.126627" inkstitch:running_stitch_length_mm="2" id="autosatinrun379" inkscape:label="Points droits pour auto-remplissage satin 3" sodipodi:nodetypes="ccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin538" d="m 36,26 -0.8742,0.1419 -0.8827,-6e-4 -1.7781,-0.0787 -1.8691,-0.1665 -1.8017,-0.5737 -1.6005,-0.9538 -1.2657,-1.3068 -0.4554,-0.4794 -0.5139,-0.19 -0.016,-6.5479 M 36.1105,25.7348 35.6985,24.9733 35.0732,24.3848 33.3528,23.1124 32.0356,21.7573 30.8959,20.0892 29.5473,18.07 28.0125,16.1926 27.4858,15.7098 26.8065,15.3775 25.9649,15.1842 24.951,15.1183 m 8.5386,6.1637 -3.8437,5.875" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 4"/>
<path id="autosatin539" d="m 24.9427,15.8445 0.016,6.5479 -0.4296,0.0874 -0.4735,0.3152 -1.9263,1.4303 -2.1604,1.0857 -2.3261,0.6605 -2.4231,0.1547 -1.2926,-5e-4 m 11.0239,-11.0074 -1.3895,0.073 -1.3624,0.3008 -1.2138,0.6288 -0.9435,1.0569 -0.7858,1.8091 -0.7368,1.9175 -0.9766,1.5296 -0.6482,0.6251 -0.7654,0.4844 -0.8199,0.3524 -0.7487,0.4639 -0.5258,0.6294 -0.1517,0.8493 m 2.8567,-4.5253 3.0625,5.2188" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 5"/>
<path id="autosatin540" d="m 15.7418,31.8808 1.6678,-0.1857 0.8082,0.0562 L 19,32 l 0.4792,0.3045 0.3627,0.4167 0.1507,0.5117 -0.1571,0.5895 -0.4599,2.3314 -0.2695,2.3558 -0.1061,4.7462 0.0434,16.2215 -0.022,4.7065 0.2911,2.0346 0.7243,1.9129 0.4292,0.6535 0.5023,0.5138 1.1689,0.6695 1.2969,0.2935 1.3153,0.0393 1.3949,-0.3595 1.2937,-0.6352 1.012,-0.9631 0.344,-0.6208 L 29,67 29.0496,66.7351 M 15.0543,31.9746 14.0783,32 l -1.1324,0.1681 -0.8699,0.566 -0.6539,0.8474 -0.4846,1.0123 -1.23101,3.8303 -0.69087,3.8337 -0.6319,6.3108 -0.35247,5.4939 -0.21954,5.0666 0.10926,5.0812 0.24393,2.5227 0.40533,2.4983 0.59314,2.4645 0.80733,2.4214 0.5838,1.381 0.7779,1.2825 0.951,1.1581 1.1035,1.0081 1.2352,0.8323 1.3462,0.6309 1.4362,0.4038 1.5057,0.1509 17.8502,0.0352 0.8485,0.0682 0.7,-0.1746 0.5623,-0.3773 0.4355,-0.5396 0.5346,-1.4052 L 40,77 V 75.3505 M 8.5625,36.5938 H 20.1562 M 24.7494,69.3947 24.875,82.25 M 6.75,63.125 19.9375,63" sodipodi:nodetypes="csccssccssssccsssscccsscccccccc" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 6"/>
<path d="M 34.6627,67.8589 C 34.946754,62.466567 35.045982,57.06845 35.001634,51.669198 35.013451,45.682077 35.176123,39.671496 34.4823,33.7127" inkstitch:running_stitch_length_mm="2" id="autosatinrun380" inkscape:label="Points droits pour auto-remplissage satin 7" sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin541" d="M 35.1562,31.9968 31.318,32 l -0.9936,0.0827 -0.838,0.312 -0.5017,0.6146 -0.0683,0.4438 L 29,34 l 0.6349,3.1802 0.3055,3.2237 0.1278,5.5774 -0.0682,5.5855 -0.011,7.7636 -0.2767,3.8623 -0.6627,3.5424 m 6.677,-34.7461 3.7109,0.0422 0.318,0.0755 0.2016,0.1888 0.1454,0.614 -0.1025,1.45 v 40.991 M 28.625,36.5 l 13,-0.125 M 28.4375,63 41,62.9375 m -12.4787,3.2686 12.0253,9.4751" sodipodi:nodetypes="csccssccssssccsssscccsscccccccc" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="2" inkstitch:force_lock_stitches="True" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 8"/>
</g>
<g inkscape:groupmode="layer" inkscape:label="GlyphLayer-ú" style="display:none;fill:none;stroke:#00673e;stroke-width:0.945;stroke-opacity:1;stroke-miterlimit:4;" id="g158186">
<path d="m 15.4378,71.959 c -1.88665,-3.603586 -2.044759,-7.774878 -2.000416,-11.75988 0.06038,-6.241303 0.213114,-12.489124 0.668509,-18.714678 0.20059,-2.796489 0.749936,-5.549558 1.602607,-8.219742" inkstitch:running_stitch_length_mm="2" id="autosatinrun374" inkscape:label="Points droits pour auto-remplissage satin 1" sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path d="m 21.8575,25.7023 c 1.889642,-0.555189 3.806545,-1.146493 5.3594,-2.412 1.33475,-0.894462 2.04977,-2.348675 2.7293,-3.7542 1.273092,-0.828769 2.700541,-1.334637 4.0058,-2.1054" inkstitch:running_stitch_length_mm="2" id="autosatinrun375" inkscape:label="Points droits pour auto-remplissage satin 2" sodipodi:nodetypes="ccccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin535" d="m 35.3613,16.8043 c 0.245,0.2989 0.2979,0.5235 0.2831,0.9341 0.0775,1.4414 -0.5691,2.8096 -1.27,4.031 -0.9753,1.756 -2.8586,2.7099 -4.6796,3.3596 -2.8538,1.1915 -5.7899,1.1759 -8.8281,1.1463 m 14.2446,-9.7757 c -0.2676,-0.284 -0.4994,-0.2407 -0.9975,-0.2344 -2.7049,0.0341 -5.3353,-0.034 -8.002,0.0364 -0.6341,2.802 -1.3095,4.8361 -2.6506,6.7425 -1.2465,1.7719 -2.4906,0.8222 -2.8054,3.2312 m 3.0312,-6.4375 10.0313,5.1562" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 3"/>
<path id="autosatin536" d="m 15.7418,31.8808 1.6678,-0.1857 0.8082,0.0562 L 19,32 l 0.4792,0.3045 0.3627,0.4167 0.1507,0.5117 -0.1571,0.5895 -0.4599,2.3314 -0.2695,2.3558 -0.1061,4.7462 0.0434,16.2215 -0.022,4.7065 0.2911,2.0346 0.7243,1.9129 0.4292,0.6535 0.5023,0.5138 1.1689,0.6695 1.2969,0.2935 1.3153,0.0393 1.3949,-0.3595 1.2937,-0.6352 1.012,-0.9631 0.344,-0.6208 L 29,67 29.0496,66.7351 M 15.0543,31.9746 14.0783,32 l -1.1324,0.1681 -0.8699,0.566 -0.6539,0.8474 -0.4846,1.0123 -1.23101,3.8303 -0.69087,3.8337 -0.6319,6.3108 -0.35247,5.4939 -0.21954,5.0666 0.10926,5.0812 0.24393,2.5227 0.40533,2.4983 0.59314,2.4645 0.80733,2.4214 0.5838,1.381 0.7779,1.2825 0.951,1.1581 1.1035,1.0081 1.2352,0.8323 1.3462,0.6309 1.4362,0.4038 1.5057,0.1509 17.8502,0.0352 0.8485,0.0682 0.7,-0.1746 0.5623,-0.3773 0.4355,-0.5396 0.5346,-1.4052 L 40,77 V 75.0341 M 8.125,36.4375 l 14,0.25 M 24.7494,69.3947 24.875,82.25 M 6.5,63.0625 20,63" sodipodi:nodetypes="csccssccssssccsssscccsscccccccc" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 4"/>
<path d="m 34.6627,67.6612 c 0.270666,-5.19382 0.389733,-10.392606 0.3369,-15.5933 0.01565,-6.059542 0.172605,-12.139006 -0.485193,-18.173392 -0.0089,-0.118369 -0.01774,-0.236739 -0.02661,-0.355108" inkstitch:running_stitch_length_mm="2" id="autosatinrun376" inkscape:label="Points droits pour auto-remplissage satin 5" sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin537" d="M 35.1562,31.9968 31.318,32 l -0.9936,0.0827 -0.838,0.312 -0.5017,0.6146 -0.0683,0.4438 L 29,34 l 0.6349,3.1802 0.3055,3.2237 0.1278,5.5774 -0.0682,5.5855 -0.011,7.7636 -0.2767,3.8623 -0.6627,3.5424 m 6.677,-34.7461 3.7109,0.0422 0.318,0.0755 0.2016,0.1888 0.1454,0.614 L 40,34.3595 V 75.0341 M 28.0625,36.375 l 13,-0.125 M 28.625,63.1875 41,63 m -12.4787,3.222 12.0253,9.127" sodipodi:nodetypes="csccssccssssccsssscccsscccccccc" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="2" inkstitch:force_lock_stitches="True" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 6"/>
</g>
<g inkscape:groupmode="layer" inkscape:label="GlyphLayer-ù" style="display:none;fill:none;stroke:#00673e;stroke-width:0.945;stroke-opacity:1;stroke-miterlimit:4;" id="g158182">
<path d="M 15.4273,71.954 C 13.560169,68.356427 13.391425,64.206621 13.437413,60.23432 13.500241,53.958433 13.647512,47.675247 14.113399,41.415724 14.312525,38.641812 14.86746,35.902801 15.7156,33.2556" inkstitch:running_stitch_length_mm="2" id="autosatinrun370" inkscape:label="Points droits pour auto-remplissage satin 1" inkstitch:ties="3" sodipodi:nodetypes="cccc" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin532" d="m 15.7418,31.8808 1.6678,-0.1857 0.8082,0.0562 L 19,32 l 0.4792,0.3045 0.3627,0.4167 0.1507,0.5117 -0.1571,0.5895 -0.4599,2.3314 -0.2695,2.3558 -0.1061,4.7462 0.0434,16.2215 -0.022,4.7065 0.2911,2.0346 0.7243,1.9129 0.4292,0.6535 0.5023,0.5138 1.1689,0.6695 1.2969,0.2935 1.3153,0.0393 1.3949,-0.3595 1.2937,-0.6352 1.012,-0.9631 0.344,-0.6208 L 29,67 29.0587,66.686 M 15.0543,31.9746 14.0783,32 l -1.1324,0.1681 -0.8699,0.566 -0.6539,0.8474 -0.4846,1.0123 -1.23101,3.8303 -0.69087,3.8337 -0.6319,6.3108 -0.35247,5.4939 -0.21954,5.0666 0.10926,5.0812 0.24393,2.5227 0.40533,2.4983 0.59314,2.4645 0.80733,2.4214 0.5838,1.381 0.7779,1.2825 0.951,1.1581 1.1035,1.0081 1.2352,0.8323 1.3462,0.6309 1.4362,0.4038 1.5057,0.1509 17.8502,0.0352 0.8485,0.0682 0.7,-0.1746 0.5623,-0.3773 0.4355,-0.5396 0.5346,-1.4052 L 40,77 V 75.21 M 7.125,36.1875 l 14,0.25 M 24.7494,69.3947 24.875,82.25 M 6.5625,63.0625 H 20.25" sodipodi:nodetypes="csccssccssssccsssscccsscccccccccc" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 2"/>
<path d="m 34.703565,68.159524 c 0.361721,-6.300524 0.361877,-8.634196 0.295277,-14.946959 -0.0056,-6.508693 0.218452,-13.040323 -0.5079,-19.521773" inkstitch:running_stitch_length_mm="2" id="autosatinrun372" inkscape:label="Points droits pour auto-remplissage satin 3" inkstitch:ties="3" sodipodi:nodetypes="ccc" style="stroke-dasharray:0.5, 0.5;"/>
<path d="m 27.643619,25.546096 c -1.832417,-1.093956 -3.207192,-0.457903 -4.911128,-1.815093 -1.327614,-0.798141 -2.352137,-1.984472 -2.968618,-3.403591 -0.278874,-1.02726 -1.376077,-1.3316 -2.219891,-1.785826 -1.208133,-0.529634 -1.73057,-0.754334 -2.850764,-1.447744" inkstitch:running_stitch_length_mm="2" id="autosatinrun373" inkscape:label="Points droits pour auto-remplissage satin 4" inkstitch:ties="3" sodipodi:nodetypes="ccccc" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin533" d="m 13.9495,16.8043 c -0.2449,0.2989 -0.2978,0.5235 -0.283,0.9341 -0.0775,1.4414 0.5691,2.8096 1.27,4.031 0.9753,1.756 2.8585,2.7099 4.6796,3.3596 2.8537,1.1915 5.7899,1.1759 8.828,1.1463 M 14.1995,16.4996 c 0.2677,-0.284 0.4995,-0.2407 0.9976,-0.2344 2.7049,0.0341 5.3352,-0.034 8.0019,0.0364 0.6342,2.802 1.3096,4.8361 2.6506,6.7425 1.2465,1.7719 2.4906,0.8222 2.8055,3.2312 M 25.6238,19.8378 15.5926,24.994" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 5"/>
<path id="autosatin534" d="M 35.1562,31.9968 31.318,32 l -0.9936,0.0827 -0.838,0.312 -0.5017,0.6146 -0.0683,0.4438 L 29,34 l 0.6349,3.1802 0.3055,3.2237 0.1278,5.5774 -0.0682,5.5855 -0.011,7.7636 -0.2767,3.8623 -0.6536,3.4933 m 6.6679,-34.697 3.7109,0.0422 0.318,0.0755 0.2016,0.1888 0.1454,0.614 L 40,34.3595 V 75.21 m -11.8125,-38.835 13,-0.125 M 28.625,63 h 12.4375 m -12.5315,3.1616 12.0151,9.3745" sodipodi:nodetypes="csccssccssssccsssscccsscccccccccc" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="2" inkstitch:force_lock_stitches="True" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 6"/>
</g>
<g inkscape:groupmode="layer" inkscape:label="GlyphLayer-ø" style="display:none;fill:none;stroke:#00673e;stroke-width:0.945;stroke-opacity:1;stroke-miterlimit:4;" id="g158178">
<path d="m 11.0826,79.6047 -0.0765,0.1518 -0.6965,1.3823 -0.60818,1.407" inkstitch:running_stitch_length_mm="2" id="autosatinrun368" inkscape:label="Points droits pour auto-remplissage satin 1" sodipodi:nodetypes="cccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin526" d="M 9.29688,82.9844 7,83 6.56251,82.9394 6.25001,82.7517 6.0625,82.4381 6,82 7.89681,78.2577 M 9.96875,82.9844 12,83 12.875,82.8769 13.5,82.5 15.5085,78.4907 m 0.3358,0.1011 -8.3733,-0.2566" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 2"/>
<path d="m 9.971175,72.56795 c 0.185097,-0.770424 0.360435,-1.247798 0.512025,-1.93935 0.025,-0.293167 0.05,-0.586333 0.075,-0.8795 l 0.1294,-1.5188 0.168,-1.2477 v 0 l 0.039,-0.29 0.2245,-1.4962 0.2612,-1.5018 0.0637,-0.3299 v 0 l 0.2266,-1.1744 0.323,-1.507 0.1945,-0.908 v 0 l 0.1284,-0.599 0.1738,-1.4917 0.0261,-1.5418 2e-4,-0.0095 v 0 l 0.0263,-1.5323 0.0265,-1.5419 0.0291,-0.5905 v 0 l 0.0473,-0.9563 0.1442,-1.5404 0.1083,-1.1562 v 0 l 0.0359,-0.3843 0.1994,-1.5297 0.2338,-1.523 0.032,-0.1939 v 0 l 0.2186,-1.3241 0.3546,-1.493 0.2037,-0.7626 v 0 l 0.1938,-0.725 0.5223,-1.4321 0.6845,-1.2109 v 0 l 0.0674,-0.1192 0.9118,-1.2746 1.1043,-1.0372 0.3754,-0.2424 v 0 l 0.8967,-0.5791 1.4036,-0.5842 1.0501,-0.2442 v 0 l 0.4404,-0.1024 1.537,-0.1418 1.5147,0.0395 0.1537,0.0199 v 0 l 1.4124,0.1829 1.5231,0.4136" inkstitch:running_stitch_length_mm="2" id="autosatinrun369" inkscape:label="Points droits pour auto-remplissage satin 3" sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin527" d="M 27.5303,39.3536 C 26.1284,35.5778 20.6383,36.1811 19,40 c -0.5877,1.37 -0.9384,3.0009 -1,5 0,0 -0.0746,5.3028 -0.0442,7.9337 0.0206,1.7759 0.0151,4.3963 0.0884,5.276 L 10.3438,73.5625 M 28.1562,38.0312 31.0967,32.1187 C 28.6468,30.9276 25.1021,30.9338 22,31 c -2.6661,0.0569 -5,0.6667 -7,2 -2,1.3333 -3.5,3.1667 -4.5,5.5 C 9.5,40.8333 8.66667,43.6667 8,47 6.6561,53.8764 6.53341,61.621 8,68.5 8.66667,70.8333 9.33333,73 10,75 M 24.13,29.5267 23.9532,37.9236 M 5.56847,51.7122 18.7383,51.447" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 4"/>
<path id="autosatin528" d="M 7.8968,78.2577 20.654,53.0883 28.2019,37.9996 28.6911,36.9693 m -13.1826,41.5214 11.1072,-22.1724 8.022,-16.1118 1.5771,-3.323 m -10.0273,3.054 9.9375,0.125" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 5" sodipodi:nodetypes="cccccccccc"/>
<path id="autosatin529" d="m 36.0209,29.9531 3.4817,0.0027 -3.2878,6.9277 M 35.3248,29.9421 32,30 28.6911,36.9693 m 0.65265,-3.2818 9.5625,0.0625" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 7" sodipodi:nodetypes="cccccc"/>
<path id="autosatin530" d="m 36.7127,36.1768 0.9824,1.6286 0.9113,1.908 0.7862,2.2205 L 40,44.5 40.4375,47.4063 40.75,50.625 41,58 40.75,64.375 40.4375,67.0938 40,69.5 39.4375,71.625 38.75,73.5 37.9375,75.125 37.2281,76.1654 M 36.125,37.125 29.9337,49.818 29.8758,56.4564 29.7466,60.1448 29.5,63.5 l -0.3374,1.8802 -0.4844,1.592 m 0.1364,-7.747 13.2583,-0.0884" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 8"/>
<path d="m 32.8671,71.6912 -0.7894,1.1227 -1.0672,1.0766 -0.5478,0.3727 v 0 l -0.7604,0.5174 -1.4499,0.6431 -1.018,0.2366 v 0 l -0.5284,0.1228 -1.5107,0.202 -1.4837,0.0427 v 0 l -0.057,0.0017 -1.5823,0.0012 -1.57,-0.0803 -0.3263,-0.0942" inkstitch:running_stitch_length_mm="2" id="autosatinrun371" inkscape:label="Points droits pour auto-remplissage satin 9" sodipodi:nodetypes="ccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin531" d="m 20.2431,69.4419 1.3778,1.0813 1.4451,0.5393 L 24.5388,71.056 26,70.5 l 0.8618,-0.623 0.7026,-0.7554 0.5624,-0.8576 0.4412,-0.9295 0.1102,-0.3623 M 19.6875,70.1562 15,80 16.7065,80.6306 18.5,81 H 22 27 L 29.875,80.75 32.5,80 33.7188,79.4062 34.875,78.625 35.9688,77.6563 37,76.5 37.2281,76.1654 M 23.9532,70.0085 23.6881,82.2061" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="2" inkstitch:force_lock_stitches="True" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 10"/>
</g>
<g inkscape:groupmode="layer" inkscape:label="GlyphLayer-ö" style="display:none;fill:none;stroke:#00673e;stroke-width:0.945;stroke-opacity:1;stroke-miterlimit:4;" id="g158174">
<path d="m 15.6811,73.0732 c -2.27329,-2.943856 -2.402292,-6.828359 -2.845138,-10.372639 -0.481353,-5.254425 -0.280223,-10.548531 0.193964,-15.7956 0.335733,-3.51193 0.989713,-7.196272 3.224788,-10.036153 1.539886,-1.856136 3.912082,-2.851641 6.305302,-2.83773" inkstitch:running_stitch_length_mm="2" id="autosatinrun364" inkscape:label="Points droits pour auto-remplissage satin 1" inkstitch:ties="3" sodipodi:nodetypes="ccccc" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin520" d="m 23,37 -1,0.125 -0.4609,0.1728 M 23.3125,31 H 22 l -1.9375,0.125 -1.6352,0.3383 m 4.4579,5.8497 0.3429,-6.6136" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" sodipodi:nodetypes="csssssssssssssssccssssssssssssssssssccccccc" inkscape:label="Auto-remplissage satin 2"/>
<path d="m 17.036306,25.497282 c -0.336328,-3.645503 -0.288182,-6.205217 0.0036,-9.853249" inkstitch:running_stitch_length_mm="2" id="autosatinrun365" inkscape:label="Points droits pour auto-remplissage satin 3" inkstitch:ties="3" sodipodi:nodetypes="cc" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin521" d="m 16.8783,15.134 c -1.4636,0 -2.5224,0.5855 -3.547,1.7564 -1.0245,1.1709 -1.5368,2.4881 -1.5368,3.9517 0,1.4636 0.5123,2.7077 1.5368,3.7322 1.0246,1.0245 2.1085,1.5417 3.5721,1.5417 m 0.3865,-10.9785 c 1.4636,0 2.4081,0.582 3.2863,1.7529 0.8782,1.1709 1.3172,2.4881 1.3172,3.9517 0,1.4636 -0.439,2.7077 -1.3172,3.7322 -0.8782,1.0245 -1.855,1.5417 -3.3186,1.5417" inkstitch:satin_column="True" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkscape:label="Auto-remplissage satin 4"/>
<path id="autosatin522" d="M 21.5391,37.2978 21,37.5 20,38.375 19,40 18.5625,41.0625 18.25,42.25 18,45 v 8 l 0.125,5.375 0.375,4.125 1,5.5 0.3125,0.9062 0.4375,0.7188 0.5625,0.5313 L 21.5,70.5 22.875,70.875 24,71 25,70.875 26,70.5 27,69.75 27.9209,68.5988 M 18.4273,31.4633 18.25,31.5 16.5625,32.125 15,33 13.5938,34.0937 12.375,35.375 11.3438,36.8438 10.5,38.5 9.125,42.375 8,47 7.25,52.25 7,58 v 2 L 7.25,65.5 7.5625,67.875 8,70 8.5625,71.9063 9.25,73.625 10.0625,75.1562 11,76.5 12.0312,77.6563 13.125,78.625 14.2812,79.4062 15.5,80 16.8438,80.4375 18.375,80.75 22,81 h 5 L 29.875,80.75 32.5,80 33.7188,79.4062 34.875,78.625 35.9688,77.6563 37,76.5 37.9375,75.125 38.6526,73.6948 M 8.62259,39.8951 20.375,40 M 24,69.5 V 82.125 M 6.4375,66.9375 20.1875,66.75" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" sodipodi:nodetypes="csssssssssssssssccssssssssssssssssssccccccc" inkscape:label="Auto-remplissage satin 5"/>
<path d="m 33.55536,69.668867 c 1.521559,-3.128026 1.546726,-5.236603 1.611158,-6.674193 0.412213,-4.951932 0.367588,-9.94217 -0.03976,-14.892383 -0.412151,-4.01692 -1.094648,-8.327428 -3.892861,-11.439816 -1.437884,-1.460197 -3.36634,-2.360939 -5.413638,-2.509837 -0.633062,-0.0967 -1.276729,-0.10877 -1.914059,-0.168238" inkstitch:running_stitch_length_mm="2" id="autosatinrun366" inkscape:label="Points droits pour auto-remplissage satin 6" inkstitch:ties="3" sodipodi:nodetypes="cccccc" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin523" d="m 24,31 2.4297,0.162 m -2.6172,5.8068 0.7432,0.0777 m -0.1931,0.2837 2.061,-6.4689" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" sodipodi:nodetypes="csssssssssssssssccssssssssssssssssssccccccc" inkscape:label="Auto-remplissage satin 7"/>
<path d="m 31.227597,25.563573 c -0.336328,-3.645503 -0.288182,-6.205217 0.0036,-9.853249" inkstitch:running_stitch_length_mm="2" id="autosatinrun367" inkscape:label="Points droits pour auto-remplissage satin 8" inkstitch:ties="3" sodipodi:nodetypes="cc" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin524" d="m 31.0033,15.134 c -1.4636,0 -2.5224,0.5855 -3.547,1.7564 -1.0245,1.1709 -1.5368,2.4881 -1.5368,3.9517 0,1.4636 0.5123,2.7077 1.5368,3.7322 1.0246,1.0245 2.1085,1.5417 3.5721,1.5417 m 0.3865,-10.9785 c 1.4636,0 2.4081,0.582 3.2863,1.7529 0.8782,1.1709 1.3172,2.4881 1.3172,3.9517 0,1.4636 -0.439,2.7077 -1.3172,3.7322 -0.8782,1.0245 -1.855,1.5417 -3.3186,1.5417" inkstitch:satin_column="True" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkscape:label="Auto-remplissage satin 9"/>
<path id="autosatin525" d="M 25.2435,37.1498 26,37.5 27,38.375 28,40 28.875,42.375 29.5,45.5 29.875,49.375 30,54 29.875,59.375 29.5,63.5 28.875,66.5 28.4688,67.625 28,68.5 27.9209,68.5988 M 28.6832,31.4654 31,32 32.4687,32.625 33.875,33.5 35.2187,34.625 36.5,36 37.6563,37.6562 38.625,39.625 39.4062,41.9062 40,44.5 40.4375,47.4063 40.75,50.625 41,58 40.75,64.375 40.4375,67.0938 40,69.5 39.4375,71.625 38.75,73.5 38.6526,73.6947 M 27,40.1875 40.0684,39.9541 M 27.375,66.875 l 14,0.0625 m -13.9273,1.329 11.7854,5.593" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="2" inkstitch:force_lock_stitches="True" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" sodipodi:nodetypes="csssssssssssssssccssssssssssssssssssccccccc" inkscape:label="Auto-remplissage satin 10"/>
</g>
<g inkscape:groupmode="layer" inkscape:label="GlyphLayer-õ" style="display:none;fill:none;stroke:#00673e;stroke-width:0.945;stroke-opacity:1;stroke-miterlimit:4;" id="g158170">
<path d="M 15.6728,73.0722 C 13.390579,70.110109 13.279256,66.196732 12.823948,62.632703 12.342246,56.877285 12.561979,51.075246 13.2101,45.3419 c 0.373248,-3.062596 1.146703,-6.231082 3.1896,-8.6324 1.309456,-1.464659 3.120685,-2.412646 5.080235,-2.603521 0.553124,-0.07519 0.666026,-0.04799 1.22314,-0.09035" inkstitch:running_stitch_length_mm="2" id="autosatinrun358" inkscape:label="Points droits pour auto-remplissage satin 1" inkstitch:ties="3" sodipodi:nodetypes="cccccc" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin516" d="m 23,37 -1,0.125 -0.4609,0.1728 M 23.3125,31 H 22 l -1.9375,0.125 -1.3307,0.2753 m 4.1534,5.9127 0.3429,-6.6136" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" sodipodi:nodetypes="csssssssssssssssccssssssssssssssssssccccccc" inkscape:label="Auto-remplissage satin 2"/>
<path d="m 17.373994,23.483737 c 1.405732,-1.417639 3.363347,-2.238321 5.35813,-2.359751 2.278477,-0.328232 4.658789,-0.06803 6.871844,-0.741601 0.936455,-0.312179 1.854253,-0.92918 2.293848,-1.813959" inkstitch:running_stitch_length_mm="2" id="autosatinrun362" inkscape:label="Points droits pour auto-remplissage satin 3" inkstitch:ties="3" sodipodi:nodetypes="cccc" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin517" d="m 32.4109,16.1719 0.7942,1.0283 0.5189,1.1427 0.3092,1.2326 0.1648,1.2975 -0.0525,1.0134 -0.2582,0.9806 -0.4851,0.8826 -0.7335,0.7191 -0.9974,0.6085 -1.0722,0.4637 -1.1229,0.31 L 28.3268,25.998 27.0495,25.9818 25.7824,25.8274 23.277,25.3052 20.4498,24.7812 19.0454,24.7229 17.6997,25 16.7859,25.537 16.2935,25.9141 M 32.1999,16 l -1.2095,1.2095 -0.8488,0.578 -1.0667,0.2105 -1.3666,-0.1699 -1.3732,-0.38 -2.7907,-0.9637 -1.4298,-0.3705 -1.4609,-0.1542 -1.4982,0.1687 -1.5417,0.5982 -1.1184,0.8869 -0.4214,0.5928 -0.2639,0.6687 -0.4994,1.7707 -0.0899,1.8319 0.3022,1.8119 L 16.1997,26 m -2.0313,-3.75 5.6876,3.1875 M 29.2624,17 l 6.1251,2.2812" sodipodi:nodetypes="ccsssccscsscccccc" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 4"/>
<path id="autosatin518" d="M 21.5391,37.2978 21,37.5 20,38.375 19,40 18.5625,41.0625 18.25,42.25 18,45 v 8 l 0.125,5.375 0.375,4.125 1,5.5 0.3125,0.9062 0.4375,0.7188 0.5625,0.5313 L 21.5,70.5 22.875,70.875 24,71 25,70.875 26,70.5 27,69.75 27.5149,69.1064 M 18.7318,31.4003 18.25,31.5 16.5625,32.125 15,33 13.5938,34.0937 12.375,35.375 11.3438,36.8438 10.5,38.5 9.125,42.375 8,47 7.25,52.25 7,58 v 2 L 7.25,65.5 7.5625,67.875 8,70 8.5625,71.9063 9.25,73.625 10.0625,75.1562 11,76.5 12.0312,77.6563 13.125,78.625 14.2812,79.4062 15.5,80 16.8438,80.4375 18.375,80.75 22,81 h 5 L 29.875,80.75 32.5,80 33.7188,79.4062 34.875,78.625 35.9688,77.6563 37,76.5 37.4125,75.8951 M 8.72617,40.349 19.8977,40.474 M 24,69.5 V 82.125 M 6.45235,66.8708 20.1083,66.7382" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" sodipodi:nodetypes="csssssssssssssssccssssssssssssssssssccccccc" inkscape:label="Auto-remplissage satin 5"/>
<path d="m 32.4945,72.4501 c 1.880595,-2.776716 2.299179,-6.216455 2.679889,-9.470287 C 35.56772,57.988141 35.543108,52.959701 35.1158,47.9716 34.680883,43.944956 33.993847,39.59031 31.099545,36.530546 29.650003,35.126265 27.740934,34.266181 25.722826,34.141026 25.120995,34.056233 24.901906,34.039134 24.296825,33.9844" inkstitch:running_stitch_length_mm="2" id="autosatinrun363" inkscape:label="Points droits pour auto-remplissage satin 6" inkstitch:ties="3" sodipodi:nodetypes="cccccc" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin519" d="M 23.8125,36.9688 25.1562,37.1094 26,37.5 27,38.375 28,40 28.875,42.375 29.5,45.5 29.875,49.375 30,54 29.875,59.375 29.5,63.5 28.875,66.5 28.4688,67.625 28,68.5 27.5149,69.1064 M 24,31 27.75,31.25 31,32 32.4687,32.625 33.875,33.5 35.2187,34.625 36.5,36 37.6563,37.6562 38.625,39.625 39.4062,41.9062 40,44.5 40.4375,47.4063 40.75,50.625 41,58 40.75,64.375 40.4375,67.0938 40,69.5 39.4375,71.625 38.75,73.5 37.9375,75.125 37.4124,75.8951 M 27.1072,40.3414 39.7814,40.1356 M 27.7539,66.7824 h 13.7444 m -14.4155,1.9067 10.8805,7.4626" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="2" inkstitch:force_lock_stitches="True" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" sodipodi:nodetypes="csssssssssssssssccssssssssssssssssssccccccc" inkscape:label="Auto-remplissage satin 7"/>
</g>
<g inkscape:groupmode="layer" inkscape:label="GlyphLayer-ô" style="display:none;fill:none;stroke:#00673e;stroke-width:0.945;stroke-opacity:1;stroke-miterlimit:4;" id="g158166">
<path d="m 15.6713,73.0763 -0.7918,-1.169 -0.6525,-1.4327 -0.2334,-0.7403 v 0 L 13.7532,68.9714 13.4414,67.4251 13.234,66.0557 v 0 l -0.025,-0.165 -0.1908,-1.5423 -0.1742,-1.5438 -0.0379,-0.4864 v 0 L 12.723,61.2535 12.6254,59.7002 12.578,58.5631 v 0 l -0.0174,-0.4171 0.0143,-1.5563 0.016,-1.5561 0.0024,-0.2324 v 0 l 0.0135,-1.3238 0.0482,-1.5544 0.0629,-0.8811 v 0 l 0.0477,-0.6681 0.1106,-1.5493 0.1097,-1.5354 v 0 l 10e-4,-0.0138 0.176,-1.5367 0.218,-1.5335 0.1073,-0.644 v 0 l 0.1478,-0.8877 0.4154,-1.4976 0.4364,-1.2334 v 0 l 0.091,-0.2571 0.6938,-1.418 0.9263,-1.2771 0.2303,-0.2411 v 0 l 0.8514,-0.8911 1.306,-0.8803 0.8839,-0.3614 v 0 l 0.5641,-0.2306 1.544,-0.3008 L 23.1562,34" inkstitch:running_stitch_length_mm="2" id="autosatinrun357" inkscape:label="Points droits pour auto-remplissage satin 1" inkstitch:ties="3" sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccc" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin510" d="m 23,37 -1,0.125 -0.6481,0.2431 M 23.3125,31 H 22 l -1.9375,0.125 -1.3452,0.2783 m 4.1679,5.9097 0.3429,-6.6136" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" sodipodi:nodetypes="csssssssssssssssccssssssssssssssssssccccccccccc" inkscape:label="Auto-remplissage satin 2"/>
<path id="autosatin511" d="m 12.7724,26.1036 0.1517,-0.8492 0.5259,-0.6295 0.7486,-0.4638 0.7225,-0.3106 m -2.1045,2.5404 1.2926,5e-4 2.1953,-0.1402 m -3.5208,-0.2653 0.1393,0.4243" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 4"/>
<path d="m 17.0192,24.4042 1.2518,-0.9162 0.1065,-0.103 v 0 l 0.9844,-0.9519 0.9622,-1.2066 0.1751,-0.1866 v 0 l 0.8566,-0.9126 0.4912,-1.4764 0.1794,-0.3132 v 0 l 0.582,-1.0162 0.55825,-0.780758" inkstitch:running_stitch_length_mm="2" id="autosatinrun359" inkscape:label="Points droits pour auto-remplissage satin 5" inkstitch:ties="3" sodipodi:nodetypes="cccccccccccccc" style="stroke-dasharray:0.5, 0.5;"/>
<path d="m 25.4434,18.48 -0.0398,-0.122 -0.6512,-1.3936 m 0.691,1.5156 0.4371,1.3437 0.8498,1.193 0.1981,0.2421 v 0 l 0.7647,0.9341 1.1118,1.0762 0.3537,0.2547 v 0 l 0.8777,0.6322 1.3871,0.6869 0.5308,0.1815 v 0 l 0.9394,0.3213 1.4242,0.5175" inkstitch:running_stitch_length_mm="2" id="autosatinrun360" inkscape:label="Points droits pour auto-remplissage satin 6" inkstitch:ties="3" sodipodi:nodetypes="cccccccccccccccccc" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin512" d="m 34.8895,26.2652 -0.8742,0.1418 -0.8827,-5e-4 -1.7781,-0.0787 -1.8691,-0.1665 -1.8017,-0.5737 -1.6005,-0.9539 -1.2657,-1.3068 -0.4554,-0.4793 -0.5139,-0.19 -0.0159,-6.548 M 35,26 34.588,25.2385 33.9627,24.6499 32.2424,23.3775 30.9251,22.0224 29.7854,20.3544 28.4368,18.3351 26.902,16.4578 26.3753,15.975 25.696,15.6427 24.8544,15.4493 23.8405,15.3834 m 8.5386,6.1637 -3.8437,5.875" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 7"/>
<path id="autosatin513" d="m 23.8405,15.3834 -1.3895,0.0731 -1.3624,0.3008 -1.2137,0.6288 -0.9436,1.0569 -0.7858,1.809 -0.7367,1.9176 -0.9767,1.5295 -0.6482,0.6251 -0.7653,0.4844 -0.0975,0.0419 m 8.9112,-7.7409 0.0159,6.548 -0.4296,0.0874 -0.4735,0.3151 -1.9263,1.4304 -2.1604,1.0857 -2.3261,0.6605 -0.2278,0.0145 m -0.6754,-4.6728 3.0625,5.2187" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 8"/>
<path id="autosatin514" d="M 21.3519,37.3681 21,37.5 20,38.375 19,40 18.5625,41.0625 18.25,42.25 18,45 v 8 l 0.125,5.375 0.375,4.125 1,5.5 0.3125,0.9062 0.4375,0.7188 0.5625,0.5313 L 21.5,70.5 22.875,70.875 24,71 25,70.875 26,70.5 27,69.75 27.8897,68.6379 M 18.7173,31.4033 18.25,31.5 16.5625,32.125 15,33 13.5938,34.0937 12.375,35.375 11.3438,36.8438 10.5,38.5 9.125,42.375 8,47 7.25,52.25 7,58 v 2 L 7.25,65.5 7.5625,67.875 8,70 8.5625,71.9063 9.25,73.625 10.0625,75.1562 11,76.5 12.0312,77.6563 13.125,78.625 14.2812,79.4062 15.5,80 16.8438,80.4375 18.375,80.75 22,81 h 5 L 29.875,80.75 32.5,80 33.7188,79.4062 34.875,78.625 35.9688,77.6563 37,76.5 37.9375,75.125 38.5737,73.8526 M 8.32595,41.5098 19.5869,41.6104 M 24,69.5 V 82.125 M 6.3125,66.875 20.5938,66.8594" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" sodipodi:nodetypes="csssssssssssssssccssssssssssssssssssccccccccccc" inkscape:label="Auto-remplissage satin 9"/>
<path d="m 33.8303,69.8545 0.2406,-0.7855 v 0 l 0.2027,-0.6616 0.3198,-1.4819 0.2699,-1.5042 0.0038,-0.026 v 0 l 0.2229,-1.5042 0.1258,-1.5425 0.045,-0.6927 v 0 l 0.0555,-0.8536 0.0984,-1.5464 0.0312,-1.3571 v 0 l 0.0045,-0.1922 -0.0083,-1.5494 -0.0082,-1.5494 -0.0093,-0.4712 v 0 l -0.0213,-1.0781 -0.0472,-1.5494 -0.051,-1.1328 v 0 l -0.0188,-0.415 -0.1273,-1.5442 -0.1649,-1.5409 -0.0313,-0.2458 v 0 l -0.1646,-1.2912 -0.2951,-1.5211 -0.1924,-0.8907 v 0 L 34.1759,42.3033 33.6905,40.87 33.1122,39.4646 33.0672,39.3855 v 0 L 32.3633,38.1473 31.4251,36.956 30.838,36.3811 v 0 l -0.5553,-0.5437 -1.2866,-0.7936 -1.379,-0.5192 v 0 l -0.1124,-0.0423 -1.4739,-0.3351 -1.5177,-0.1163 -0.6069,-0.0465" inkstitch:running_stitch_length_mm="2" id="autosatinrun361" inkscape:label="Points droits pour auto-remplissage satin 10" inkstitch:ties="3" sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccc" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin515" d="M 23.8125,36.9688 25.1562,37.1094 26,37.5 27,38.375 28,40 28.875,42.375 29.5,45.5 29.875,49.375 30,54 29.875,59.375 29.5,63.5 28.875,66.5 28.4688,67.625 28,68.5 27.8897,68.6379 M 24,31 27.75,31.25 31,32 32.4687,32.625 33.875,33.5 35.2187,34.625 36.5,36 37.6563,37.6562 38.625,39.625 39.4062,41.9062 40,44.5 40.4375,47.4063 40.75,50.625 41,58 40.75,64.375 40.4375,67.0938 40,69.5 39.4375,71.625 38.75,73.5 38.5737,73.8526 M 27.8281,66.8594 41.7031,66.8281 M 27.3125,41.5625 40.25,41.4375 m -12.8311,26.8621 11.7328,5.7237" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="2" inkstitch:force_lock_stitches="True" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" sodipodi:nodetypes="csssssssssssssssccssssssssssssssssssccccccccccc" inkscape:label="Auto-remplissage satin 11"/>
</g>
<g inkscape:groupmode="layer" inkscape:label="GlyphLayer-ó" style="display:none;fill:none;stroke:#00673e;stroke-width:0.945;stroke-opacity:1;stroke-miterlimit:4;" id="g158162">
<path d="M 15.6594,73.0794 15.6197,73.0388 14.7569,71.6764 14.1157,70.1962 13.986,69.7351 v 0 L 13.6787,68.6417 13.4038,67.1459 13.233,66.0542 v 0 l -0.0705,-0.4507 -0.1813,-1.5476 -0.1741,-1.5483 -0.0129,-0.1888 v 0 l -0.093,-1.3687 -0.0917,-1.5579 -0.0259,-0.8287 v 0 l -0.0228,-0.7306 0.0162,-1.5606 0.0152,-1.4699 v 0 l 9e-4,-0.0907 0.0162,-1.5606 0.0676,-1.5574 0.0394,-0.5499 v 0 l 0.0719,-1.0038 0.1112,-1.5536 0.0911,-1.1942 v 0 l 0.0273,-0.3581 0.1859,-1.5393 0.235,-1.537 0.0499,-0.2928 v 0 l 0.2116,-1.2417 0.4572,-1.4463 0.3386,-0.9252 v 0 l 0.1909,-0.5213 0.7223,-1.3579 0.9262,-1.226 0.0925,-0.0939 v 0 l 0.9779,-0.9921 1.2911,-0.8268 0.776,-0.3093 v 0 l 0.6393,-0.2549 1.506,-0.2872" inkstitch:running_stitch_length_mm="2" id="autosatinrun354" inkscape:label="Points droits pour auto-remplissage satin 1" inkstitch:ties="3" sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccc" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin506" d="m 23,37 -1,0.125 -0.6481,0.2431 M 23.3125,31 H 22 l -1.9375,0.125 -1.1899,0.2462 m 4.0126,5.9418 0.3429,-6.6136" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" sodipodi:nodetypes="csssssssssssssssccssssssssssssssssssccccccccccc" inkscape:label="Auto-remplissage satin 2"/>
<path d="m 20.8575,25.7023 1.44,-0.4545 0.7909,-0.2587 v 0 l 0.6462,-0.2113 1.348,-0.7047 1.1343,-0.7828 v 0 l 0.1125,-0.0776 1.1285,-1.0168 0.7941,-1.2838 0.1864,-0.3696 v 0 l 0.5078,-1.0064 1.2734,-0.7429 0.8882,-0.4084 v 0 l 0.4951,-0.2277 1.3491,-0.7264" inkstitch:running_stitch_length_mm="2" id="autosatinrun355" inkscape:label="Points droits pour auto-remplissage satin 3" inkstitch:ties="3" sodipodi:nodetypes="ccccccccccccccccccc" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin507" d="m 34.3613,16.8043 c 0.245,0.2989 0.2979,0.5235 0.2831,0.9341 0.0775,1.4414 -0.5691,2.8096 -1.27,4.031 -0.9753,1.756 -2.8586,2.7099 -4.6796,3.3596 -2.8538,1.1915 -5.7899,1.1759 -8.8281,1.1463 m 14.2446,-9.7757 c -0.2676,-0.284 -0.4994,-0.2407 -0.9975,-0.2344 -2.7049,0.0341 -5.3353,-0.034 -8.002,0.0364 -0.6341,2.802 -1.3095,4.8361 -2.6506,6.7425 -1.2465,1.7719 -2.4906,0.8222 -2.8054,3.2312 m 3.0312,-6.4375 10.0313,5.1562" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 4"/>
<path id="autosatin508" d="M 21.3519,37.3681 21,37.5 20,38.375 19,40 18.5625,41.0625 18.25,42.25 18,45 v 8 l 0.125,5.375 0.375,4.125 1,5.5 0.3125,0.9062 0.4375,0.7188 0.5625,0.5313 L 21.5,70.5 22.875,70.875 24,71 25,70.875 26,70.5 27,69.75 27.5461,69.0674 M 18.8726,31.3712 18.25,31.5 16.5625,32.125 15,33 13.5938,34.0937 12.375,35.375 11.3438,36.8438 10.5,38.5 9.125,42.375 8,47 7.25,52.25 7,58 v 2 L 7.25,65.5 7.5625,67.875 8,70 8.5625,71.9063 9.25,73.625 10.0625,75.1562 11,76.5 12.0312,77.6563 13.125,78.625 14.2812,79.4062 15.5,80 16.8438,80.4375 18.375,80.75 22,81 h 5 L 29.875,80.75 32.5,80 33.7188,79.4062 34.875,78.625 35.9688,77.6563 37,76.5 37.5582,75.6814 M 8,41.875 19.75,42 M 24,69.5 V 82.125 M 6.0625,67.375 20.625,67.1875" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" sodipodi:nodetypes="csssssssssssssssccssssssssssssssssssccccccccccc" inkscape:label="Auto-remplissage satin 5"/>
<path d="m 34.0649,69.0725 0.3235,-1.1804 0.3178,-1.5007 0.1597,-0.9908 v 0 l 0.0874,-0.5422 0.1987,-1.5372 0.1007,-1.5506 0.007,-0.1084 v 0 l 0.0937,-1.4422 0.0799,-1.5517 0.0063,-0.7625 v 0 l 0.0065,-0.7912 -0.0084,-1.5537 -0.0076,-1.4166 v 0 l -8e-4,-0.1371 -0.0446,-1.5537 -0.0473,-1.5536 -0.0303,-0.515 v 0 l -0.0608,-1.0358 -0.147,-1.5473 -0.138,-1.1615 v 0 L 34.916,46.2588 34.6918,44.7217 34.3697,43.2013 34.3021,42.9399 v 0 l -0.3264,-1.2623 -0.5345,-1.4671 -0.3887,-0.8076 v 0 L 32.7655,38.8067 31.883,37.5278 30.8427,36.384 v 0 l -0.0028,-0.0031 -1.1981,-0.9703 -1.3801,-0.6805 -0.6475,-0.1972 v 0 l -0.8354,-0.2544 -1.5425,-0.1917" inkstitch:running_stitch_length_mm="2" id="autosatinrun356" inkscape:label="Points droits pour auto-remplissage satin 6" inkstitch:ties="3" sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccc" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin509" d="M 23.8125,36.9688 25.1562,37.1094 26,37.5 27,38.375 28,40 28.875,42.375 29.5,45.5 29.875,49.375 30,54 29.875,59.375 29.5,63.5 28.875,66.5 28.4688,67.625 28,68.5 27.5461,69.0674 M 24,31 27.75,31.25 31,32 32.4687,32.625 33.875,33.5 35.2187,34.625 36.5,36 37.6563,37.6562 38.625,39.625 39.4062,41.9062 40,44.5 40.4375,47.4063 40.75,50.625 41,58 40.75,64.375 40.4375,67.0938 40,69.5 39.4375,71.625 38.75,73.5 37.9375,75.125 37.5582,75.6814 M 27.8125,42 40.875,41.6875 M 27.5625,66.8125 41.4375,66.75 m -14.3292,1.9088 11.0065,7.2704" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="2" inkstitch:force_lock_stitches="True" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" sodipodi:nodetypes="csssssssssssssssccssssssssssssssssssccccccccccc" inkscape:label="Auto-remplissage satin 7"/>
</g>
<g inkscape:groupmode="layer" inkscape:label="GlyphLayer-ò" style="display:none;fill:none;stroke:#00673e;stroke-width:0.945;stroke-opacity:1;stroke-miterlimit:4;" id="g158158">
<path d="m 15.6771,73.0698 -0.171,-0.1847 -0.8204,-1.3291 -0.5976,-1.4431 -0.101,-0.3676 v 0 l -0.313,-1.1388 -0.285,-1.5374 -0.1546,-1.0003 v 0 l -0.0909,-0.588 -0.1753,-1.5437 -0.169,-1.5444 -0.0037,-0.0544 v 0 l -0.102,-1.4987 -0.0892,-1.5535 -0.0193,-0.6983 v 0 l -0.0236,-0.8566 0.016,-1.5561 0.0137,-1.3436 v 0 l 0.0022,-0.2126 0.016,-1.5561 0.0714,-1.5527 0.0309,-0.4326 v 0 l 0.0797,-1.1166 0.1106,-1.5492 0.0832,-1.081 v 0 l 0.0359,-0.4666 0.1848,-1.5349 0.2497,-1.4989 0.0491,-0.2178 v 0 l 0.2875,-1.2764 0.4062,-1.4745 0.3216,-0.8609 v 0 l 0.215,-0.5754 0.7287,-1.345 0.9246,-1.2141 0.0622,-0.0604 v 0 l 1.026,-0.9948 1.2576,-0.834 0.7528,-0.3219 v 0 l 0.6362,-0.272 1.4987,-0.2979 L 23.1562,34" inkstitch:running_stitch_length_mm="2" id="autosatinrun351" inkscape:label="Points droits pour auto-remplissage satin 1" inkstitch:ties="3" sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccc" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin502" d="M 23,37 22,37.125 21,37.5 20,38.375 19,40 18.5625,41.0625 18.25,42.25 18,45 v 8 l 0.125,5.375 0.375,4.125 1,5.5 0.3125,0.9062 0.4375,0.7188 0.5625,0.5313 L 21.5,70.5 22.875,70.875 24,71 25,70.875 26,70.5 27,69.75 27.8897,68.6379 M 23.3125,31 H 22 L 20.0625,31.125 18.25,31.5 16.5625,32.125 15,33 13.5938,34.0937 12.375,35.375 11.3438,36.8438 10.5,38.5 9.125,42.375 8,47 7.25,52.25 7,58 v 2 L 7.25,65.5 7.5625,67.875 8,70 8.5625,71.9063 9.25,73.625 10.0625,75.1562 11,76.5 12.0312,77.6563 13.125,78.625 14.2812,79.4062 15.5,80 16.8438,80.4375 18.375,80.75 22,81 h 5 L 29.875,80.75 32.5,80 33.7188,79.4062 34.875,78.625 35.9688,77.6563 37,76.5 37.9375,75.125 38.5373,73.9253 M 7.17938,44.3707 19.0581,44.4073 M 24,69.5 V 82.125 M 6.40816,66.915 20.1525,66.7824" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" sodipodi:nodetypes="csssssssssssssssccssssssssssssssssssccccccccccc" inkscape:label="Auto-remplissage satin 2"/>
<path d="m 33.8537,69.7887 0.2054,-0.6948 v 0 l 0.2549,-0.8626 0.3214,-1.5019 0.2246,-1.3021 v 0 l 0.0396,-0.2295 0.2188,-1.5384 0.1128,-1.5521 0.0268,-0.413 v 0 l 0.0741,-1.1409 0.0908,-1.5545 0.0171,-1.0562 v 0 L 35.448,57.442 35.4395,55.885 35.431,54.3279 35.4277,54.1861 v 0 L 35.3944,52.771 35.3469,51.214 35.3058,50.4315 v 0 L 35.2652,49.6593 35.129,48.108 34.9677,46.6909 v 0 l -0.0148,-0.1301 -0.2087,-1.5427 -0.3189,-1.5374 -0.1231,-0.4836 v 0 l -0.2594,-1.0186 -0.51,-1.4605 -0.5127,-1.039 v 0 l -0.1715,-0.3474 -0.8253,-1.2935 -1.0041,-1.1566 -0.2266,-0.2017 v 0 l -0.9098,-0.81 -1.32,-0.742 -0.9622,-0.3516 v 0 L 27.134,34.4056 25.6241,34.1188 24.0765,33.9977 23.9062,33.9844" inkstitch:running_stitch_length_mm="2" id="autosatinrun352" inkscape:label="Points droits pour auto-remplissage satin 3" inkstitch:ties="3" sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccc" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin503" d="m 24,31 2.3869,0.1591 m -2.5744,5.8097 1.0488,0.1097 m -0.1757,0.2854 1.6777,-6.5072" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" sodipodi:nodetypes="csssssssssssssssccssssssssssssssssssccccccccccc" inkscape:label="Auto-remplissage satin 4"/>
<path d="m 25.9534,25.7023 -1.44,-0.4545 -0.791,-0.2587 v 0 l -0.6461,-0.2113 -1.3481,-0.7047 -1.1343,-0.7828 v 0 l -0.1125,-0.0776 -1.1285,-1.0168 -0.7941,-1.2838 -0.1864,-0.3696 v 0 L 17.8646,19.5361 16.5912,18.7932 15.703,18.3848 v 0 l -0.4951,-0.2277 -1.3491,-0.7264" inkstitch:running_stitch_length_mm="2" id="autosatinrun353" inkscape:label="Points droits pour auto-remplissage satin 5" inkstitch:ties="3" sodipodi:nodetypes="ccccccccccccccccccc" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin504" d="m 12.4495,16.8043 c -0.2449,0.2989 -0.2978,0.5235 -0.283,0.9341 -0.0775,1.4414 0.5691,2.8096 1.27,4.031 0.9753,1.756 2.8585,2.7099 4.6796,3.3596 2.8537,1.1915 5.7899,1.1759 8.828,1.1463 M 12.6995,16.4996 c 0.2677,-0.284 0.4995,-0.2407 0.9976,-0.2344 2.7049,0.0341 5.3352,-0.034 8.0019,0.0364 0.6342,2.802 1.3096,4.8361 2.6506,6.7425 1.2465,1.7719 2.4906,0.8222 2.8055,3.2312 M 24.1238,19.8378 14.0926,24.994" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 6"/>
<path id="autosatin505" d="M 24.9607,37.0889 25.1562,37.1094 26,37.5 27,38.375 28,40 28.875,42.375 29.5,45.5 29.875,49.375 30,54 29.875,59.375 29.5,63.5 28.875,66.5 28.4688,67.625 28,68.5 27.8897,68.6379 M 26.6132,31.1742 27.75,31.25 31,32 32.4687,32.625 33.875,33.5 35.2187,34.625 36.5,36 37.6563,37.6562 38.625,39.625 39.4062,41.9062 40,44.5 40.4375,47.4063 40.75,50.625 41,58 40.75,64.375 40.4375,67.0938 40,69.5 39.4375,71.625 38.75,73.5 38.5373,73.9253 M 28.4773,44.3631 41.063,44.0247 M 27.6214,66.8266 h 13.9211 m -14.1218,1.4694 11.6929,5.8037" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="2" inkstitch:force_lock_stitches="True" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" sodipodi:nodetypes="csssssssssssssssccssssssssssssssssssccccccccccc" inkscape:label="Auto-remplissage satin 7"/>
</g>
<g inkscape:groupmode="layer" inkscape:label="GlyphLayer-ñ" style="display:none;fill:none;stroke:#00673e;stroke-width:0.945;stroke-opacity:1;stroke-miterlimit:4;" id="g158154">
<path d="m 15.23,74.2051 -0.1799,4.0731 0.0124,1.5282 0.02511,0.704112" inkstitch:running_stitch_length_mm="2" id="autosatinrun348" inkscape:label="Points droits pour auto-remplissage satin 1" sodipodi:nodetypes="cccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin497" d="M 14.7641,81.125 11.5456,81.2435 10.1737,81.1757 8.375,80.875 7.61097,80.5374 7.14033,79.9559 6.91106,79.1911 6.87113,78.3037 l 0.28011,-1.8992 0.41321,-1.6604 1.82949,-7.1372 0.75586,-3.6002 0.4674,-3.6551 0.2498,-4.2959 0.0624,-4.3026 -0.189,-4.2978 -0.187,-1.5883 m 5.1169,35.1955 3.6164,0.2136 1.877,-0.1241 0.7632,-0.2425 L 22.5,80.5 22.9754,79.7763 23.2008,78.974 23.2278,78.1128 23.1077,77.212 22.1875,73.6035 21.204,67.4533 20.4587,61.2645 20.0486,55.0494 20.0703,48.8203 20.049,45.8398 M 7.0396407,72.779923 22.738087,72.588631" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" sodipodi:nodetypes="csccssccsssssccccccccccccccccccccc" inkscape:label="Auto-remplissage satin 2"/>
<path d="m 15.3127,46.0374 -0.0115,-0.184 -0.097,-1.5517 -0.1068,-1.5503 -0.0203,-0.2333 v 0 l -0.1137,-1.3132 -0.1177,-1.5488 -0.0254,-0.6553 v 0 l -0.0346,-0.894 0.0441,-1.5527 0.0488,-1.0782 v 0 l 0.0214,-0.4755 0.0722,-1.5388 0.0039,-0.78975" inkstitch:running_stitch_length_mm="2" id="autosatinrun349" inkscape:label="Points droits pour auto-remplissage satin 3" sodipodi:nodetypes="ccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path d="m 17.0343,24.4816 0.8988,-1.2125 0.4135,-0.3008 v 0 l 0.8267,-0.6012 1.3693,-0.7256 0.9438,-0.2418 v 0 l 0.5364,-0.1374 1.5006,-0.1871 1.4758,-0.1145 v 0 l 0.0737,-0.0057 1.5369,-0.0826 1.5194,-0.1024 0.4053,-0.0638 v 0 l 1.1268,-0.1774 1.3937,-0.5955 0.6561,-0.6013 v 0 l 0.4534,-0.4156 0.5438,-1.4194" inkstitch:running_stitch_length_mm="2" id="autosatinrun350" inkscape:label="Points droits pour auto-remplissage satin 4" sodipodi:nodetypes="ccccccccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin498" d="m 32.8109,16.1719 0.7942,1.0283 0.5189,1.1427 0.3092,1.2326 0.1648,1.2975 -0.0525,1.0134 -0.2582,0.9806 -0.4851,0.8826 -0.7335,0.7191 -0.9974,0.6085 -1.0722,0.4637 -1.1229,0.31 L 28.7268,25.998 27.4495,25.9818 26.1824,25.8274 23.677,25.3052 20.8498,24.7812 19.4454,24.7229 18.0997,25 17.1859,25.537 16.6935,25.9141 M 32.5999,16 l -1.2095,1.2095 -0.8488,0.578 -1.0667,0.2105 -1.3666,-0.1699 -1.3732,-0.38 -2.7907,-0.9637 -1.4298,-0.3705 -1.4609,-0.1542 -1.4982,0.1687 -1.5417,0.5982 -1.1184,0.8869 -0.4214,0.5928 -0.2639,0.6687 -0.4994,1.7707 -0.0899,1.8319 0.3022,1.8119 L 16.5997,26 m -2.0313,-3.75 5.6876,3.1875 M 29.6624,17 l 6.1251,2.2812" sodipodi:nodetypes="ccsssccscsscccccc" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 5"/>
<path id="autosatin499" d="m 15.3746,31.9375 2.1926,0.0343 1.6516,0.2391 0.598,0.3606 0.3535,0.6388 0.1597,0.8477 0.0167,0.9871 L 20,39 20.049,45.8398 M 14.4058,31.9688 11.691,31.8809 10.5917,32.0246 10.2166,32.2112 10,32.5 l -0.36446,1.2735 -0.19433,1.3087 0.00661,2.6872 0.34179,2.7209 0.44669,2.6835 0.3171,2.6932 M 8.3526992,36.686133 20.903845,36.465162" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" sodipodi:nodetypes="csccssccsssssccccccc" inkscape:label="Auto-remplissage satin 6"/>
<path id="autosatin500" d="M 20.0625,44.75 20,39 l 0.8153,-1.5837 0.9922,-1.4792 1.1516,-1.3428 1.2931,-1.175 1.4169,-0.9755 1.5228,-0.7442 1.611,-0.4814 1.6815,-0.187 1.7479,0.106 1.7364,0.3696 1.6655,0.6226 1.535,0.8646 1.3449,1.0958 1.0952,1.3162 0.786,1.5257 0.4172,1.7245 0.1945,2.5172 0.0462,2.5268 -0.0532,5.059 0.2032,8.949 0.3068,4.464 0.49,4.4528 1.1466,7.6991 m -23.0763,-25.5038 0.3025,-2.5827 0.6979,-2.4959 1.1177,-2.3471 1.5616,-2.1368 0.7208,-0.6094 0.8419,-0.3914 0.9066,-0.1775 0.915,0.0321 0.867,0.2374 0.7625,0.4384 0.6017,0.6351 0.3845,0.8275 0.7854,3.6044 0.2085,1.8213 0.0608,1.8243 0.0063,6.5639 -0.0894,3.2733 -0.2841,3.2566 -1.136,7.1717 -1.199937,6.54115 M 25.7187,40 l -1.75,-8.5625 m 5.509853,12.572014 13.375,-0.25 M 20.0604,44.4465 l 0.0226,4.478" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" sodipodi:nodetypes="ccsssssccssssssccccccccccccccccccccccccccccccccccccc" inkscape:label="Auto-remplissage satin 7"/>
<path id="autosatin501" d="m 35.5761,81.0625 -2.8964,0.0535 -4.1485,-0.1472 -0.8715,-0.2337 -0.4932,-0.5253 -0.1902,-0.746 1.1282,-5.2017 m 8.5654,6.8004 2.0949,0.0951 2.681,0.0145 1.2035,-0.1761 0.922,-0.3799 0.4978,-0.6449 0.0452,-0.441 L 44,79 43.1466,74.3241 m 0.5801,0.2532 -16.4051,0.0743" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="2" inkstitch:force_lock_stitches="True" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" sodipodi:nodetypes="ccsssssccssssssccc" inkscape:label="Auto-remplissage satin 9"/>
</g>
<g inkscape:groupmode="layer" inkscape:label="GlyphLayer-ï" style="display:none;fill:none;stroke:#00673e;stroke-width:0.945;stroke-opacity:1;stroke-miterlimit:4;" id="g158150">
<path d="m 15.1214,73.5184 c 0.14482,-5.913261 0.514623,-11.821629 0.380931,-17.739125 0.01926,-4.527075 -0.208995,-9.048478 -0.331673,-13.571598 -0.06845,-3.072986 0.237534,-6.142308 0.188823,-9.211126" inkstitch:running_stitch_length_mm="2" id="autosatinrun345" inkscape:label="Points droits pour auto-remplissage satin 1" inkstitch:ties="3" sodipodi:nodetypes="cccc" style="stroke-dasharray:0.5, 0.5;"/>
<path d="m 22.286306,25.46067 c -0.336023,-3.645042 -0.24401,-6.205717 0.04779,-9.853249" inkstitch:running_stitch_length_mm="2" id="autosatinrun346" inkscape:label="Points droits pour auto-remplissage satin 2" inkstitch:ties="3" sodipodi:nodetypes="cc" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin493" d="m 22.1283,15.009 c -1.4636,0 -2.5224,0.5855 -3.547,1.7564 -1.0245,1.1709 -1.5368,2.4881 -1.5368,3.9517 0,1.4636 0.5123,2.7077 1.5368,3.7322 1.0246,1.0245 2.1085,1.5417 3.5721,1.5417 m 0.3865,-10.9785 c 1.4636,0 2.4081,0.582 3.2863,1.7529 0.8782,1.1709 1.3172,2.4881 1.3172,3.9517 0,1.4636 -0.439,2.7077 -1.3172,3.7322 -0.8782,1.0245 -1.855,1.5417 -3.3186,1.5417" inkstitch:satin_column="True" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkscape:label="Auto-remplissage satin 3"/>
<path d="M 8.1392187,25.438573 C 7.8031407,21.793549 7.9173468,19.166555 8.20911,15.519033" inkstitch:running_stitch_length_mm="2" id="autosatinrun347" inkscape:label="Points droits pour auto-remplissage satin 4" inkstitch:ties="3" sodipodi:nodetypes="cc" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin494" d="m 8.00329,15.009 c -1.46361,0 -2.52244,0.5855 -3.54696,1.7564 -1.02453,1.1709 -1.53679,2.4881 -1.53679,3.9517 0,1.4636 0.51226,2.7077 1.53679,3.7322 1.02452,1.0245 2.1085,1.5417 3.57211,1.5417 M 8.41493,15.0125 c 1.46361,0 2.40807,0.582 3.28627,1.7529 0.8782,1.1709 1.3172,2.4881 1.3172,3.9517 0,1.4636 -0.439,2.7077 -1.3172,3.7322 -0.8782,1.0245 -1.85501,1.5417 -3.31862,1.5417" inkstitch:satin_column="True" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkscape:label="Auto-remplissage satin 5"/>
<path id="autosatin495" d="m 15.857,31.9711 3.22,-0.0076 1.4704,0.1826 0.3828,0.5802 0.1752,0.7502 -0.0113,1.7295 -0.6185,5.0174 -0.3152,2.4205 L 20,45.1363 19.9776,50.2988 20.1109,55.459 20.4388,60.6112 21,65.75 l 0.2346,1.9405 0.7219,3.6324 0.7171,3.6964 m -7.953,-43.0215 -3.1361,0.1561 -1.0324,0.144 L 10,32.5 l -0.2272,0.4931 -0.12989,0.9424 -0.01576,2.8146 0.22975,3.358 0.3794,3.0657 0.4853,4.0586 0.1996,4.0732 -0.0282,4.0787 -0.1982,4.0752 -0.4413,3.814 -0.74118,3.7599 -1.87951,7.4432 -0.16025,0.6222 M 8.43099,36.6902 21.9481,36.6613 M 8.3527,66.915 H 22.539" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" sodipodi:nodetypes="ccsscssccsssssccccccccccccccccccccccc" inkscape:label="Auto-remplissage satin 6"/>
<path id="autosatin496" d="M 14.6977,81.0981 11.523,81.066 8.375,80.875 7.5742,80.6076 7.09028,80.0391 6.86595,79.2441 6.84392,78.297 l 0.33364,-2.0527 0.295,-1.1455 m 8.11724,5.9388 3.9597,0.0808 1.4425,-0.0979 1.2419,-0.4485 0.476,-0.4158 0.3422,-0.5758 0.1804,-0.7597 -0.0092,-0.9679 -0.5497,-2.8335 m 0.7813,0.0943 -16.76953,0.086" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="2" inkstitch:force_lock_stitches="True" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" sodipodi:nodetypes="ccsscssccsssssccc" inkscape:label="Auto-remplissage satin 8"/>
</g>
<g inkscape:groupmode="layer" inkscape:label="GlyphLayer-î" style="display:none;fill:none;stroke:#00673e;stroke-width:0.945;stroke-opacity:1;stroke-miterlimit:4;" id="g158146">
<path d="m 15.1183,73.5196 0.0416,-1.378 0.0446,-1.5406 0.0227,-0.8577 v 0 l 0.0175,-0.6601 0.0465,-1.5188 0.0733,-1.5327 0.0027,-0.0635 v 0 l 0.063,-1.4734 0.0565,-1.5388 0.0028,-0.7632 v 0 l 0.0029,-0.7835 0.0235,-1.5482 0.0034,-1.446 v 0 l 2e-4,-0.1067 -0.0113,-1.554 -0.0093,-1.5543 -0.0053,-0.5628 v 0 l -0.0093,-0.9934 -0.0146,-1.5561 -0.0286,-1.2279 v 0 L 15.4335,50.532 15.3951,48.9766 15.3602,47.4211 15.3421,47.0835 v 0 l -0.065,-1.2139 -0.0652,-1.5501 -0.0287,-1.0104 v 0 l -0.0152,-0.5388 -5e-4,-1.5445 0.0148,-1.5454 0.004,-0.1488 v 0 l 0.0375,-1.4001 0.0484,-1.5248 0.0512,-0.8502 v 0 l 0.0425,-0.7053 0.0346,-1.5588 -0.1117,-1.508" inkstitch:running_stitch_length_mm="2" id="autosatinrun342" inkscape:label="Points droits pour auto-remplissage satin 1" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path d="m 20.3105,22.8663 -0.3537,-0.2548 -1.1119,-1.0761 -0.7647,-0.9342 v 0 l -0.1981,-0.242 -0.8498,-1.193 -0.4371,-1.3437 v 0 l -0.0397,-0.1221 -0.6513,-1.3935" inkstitch:running_stitch_length_mm="2" id="autosatinrun343" inkscape:label="Points droits pour auto-remplissage satin 2" sodipodi:nodetypes="ccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path d="M 14.274255,15.81685 13.7602,16.664 l -0.582,1.0162 v 0 l -0.1793,0.3131 -0.4912,1.4764 -0.8567,0.9127 v 0 l -0.1751,0.1866 -0.9622,1.2065 -0.98436,0.952 v 0 l -0.1065,0.103 -1.25178,0.9161 -1.33482,0.6138 v 0 l -0.07159,0.0329 -1.49209,0.4079" inkstitch:running_stitch_length_mm="2" id="autosatinrun344" inkscape:label="Points droits pour auto-remplissage satin 3" sodipodi:nodetypes="cccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin488" d="m 3.92427,25.4461 c -0.11463,-1.3029 1.17262,-1.8753 2.24612,-2.295 1.10202,-0.5362 1.87075,-1.5428 2.39019,-2.6391 0.62119,-1.311 0.83598,-2.5602 1.52262,-3.7266 1.0239,-1.7392 3.0923,-2.0694 4.9092,-2.0595 M 3.96847,25.7333 c 0.43085,-0.0012 0.86171,5e-4 1.29256,5e-4 C 8.52609,25.9005 11.7152,24.5037 14.097,22.4026 14.4283,22.1103 14.7272,21.9886 15,22 l -0.0159,-6.5479 m -8.20313,5.4687 3.0625,5.2188" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 4"/>
<path id="autosatin489" d="m 14.9924,14.7259 1.0139,0.0659 0.8416,0.1933 0.6792,0.3323 0.5268,0.4829 1.5348,1.8773 1.3485,2.0192 1.1397,1.6681 0.3321,0.3416 M 14.9841,15.4521 15,22 l 0.5139,0.19 0.4554,0.4794 1.2657,1.3068 1.6006,0.9538 1.1316,0.3604 m -4.8697,-10.599 -0.1186,0.9017" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 5"/>
<path id="autosatin490" d="m 26.0413,25.6076 -0.8742,0.1419 -0.8826,-6e-4 -1.7782,-0.0787 -1.8691,-0.1665 -0.67,-0.2133 m 6.1846,0.052 -0.412,-0.7615 L 25.1146,23.9924 23.3942,22.72 22.409,21.7065 m 1.122,-0.8169 -3.8438,5.875" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 7"/>
<path id="autosatin491" d="m 15.857,31.9711 3.22,-0.0076 1.4704,0.1826 0.3828,0.5802 0.1752,0.7502 -0.0113,1.7295 -0.6185,5.0174 -0.3152,2.4205 L 20,45.1363 19.9776,50.2988 20.1109,55.459 20.4388,60.6112 21,65.75 l 0.2346,1.9405 0.7219,3.6324 0.542526,3.070399 M 14.7206,31.9978 11.5845,32.1539 10.5521,32.2979 10,32.5 l -0.2272,0.4931 -0.12989,0.9424 -0.01576,2.8146 0.22975,3.358 0.3794,3.0657 0.4853,4.0586 0.1996,4.0732 -0.0282,4.0787 -0.1982,4.0752 -0.4413,3.814 -0.74118,3.7599 -1.87951,7.4432 M 8.21001,36.8228 22.2116,36.9415 M 6.98268,70.804 24.13,70.7156 m -8.1062,-38.7464 -1.4699,0.0352" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" sodipodi:nodetypes="ccsscssccssssscccccccccccccccccccccccc" inkscape:label="Auto-remplissage satin 8"/>
<path id="autosatin492" d="M 14.6977,81.0981 11.523,81.066 8.375,80.875 7.5742,80.6076 7.09028,80.0391 6.86595,79.2441 6.84392,78.297 7.17756,76.2443 7.63281,74.4766 m 7.95699,6.561 3.9597,0.0808 1.4425,-0.0979 1.2419,-0.4485 0.476,-0.4158 0.3422,-0.5758 0.1804,-0.7597 -0.0092,-0.9679 -0.724274,-3.459501 M 23.4823,75.2376 6.64335,75.3518" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="2" inkstitch:force_lock_stitches="True" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" sodipodi:nodetypes="ccsscssccssssscccccc" inkscape:label="Auto-remplissage satin 10"/>
</g>
<g inkscape:groupmode="layer" inkscape:label="GlyphLayer-í" style="display:none;fill:none;stroke:#00673e;stroke-width:0.945;stroke-opacity:1;stroke-miterlimit:4;" id="g158142">
<path d="m 15.1148,73.5245 0.0016,-0.054 0.0458,-1.5264 0.0435,-1.526 0.0186,-0.6701 v 0 l 0.0236,-0.8556 0.0562,-1.5279 0.0628,-1.3918 v 0 l 0.0068,-0.1501 0.0684,-1.5451 0.0481,-1.5483 0.0023,-0.5322 v 0 l 0.0043,-1.0226 0.0291,-1.5568 -0.0042,-1.1984 v 0 L 15.5204,58.056 15.5095,56.4939 15.4976,54.9587 15.4945,54.6412 v 0 l -0.0117,-1.2201 -0.0147,-1.5377 -0.0276,-1.0198 v 0 l -0.014,-0.5172 -0.0347,-1.537 -0.034,-1.537 -0.0102,-0.1857 v 0 l -0.0746,-1.3471 -0.0576,-1.5315 -0.0236,-0.896 v 0 l -0.0167,-0.6346 0.0064,-1.5257 0.0145,-1.527 0.0025,-0.0905 v 0 l 0.0403,-1.4398 0.0454,-1.5304 0.043,-0.8055 v 0 l 0.0389,-0.7277 0.0158,-1.5349 -0.071,-0.716105" inkstitch:running_stitch_length_mm="2" id="autosatinrun340" inkscape:label="Points droits pour auto-remplissage satin 1" inkstitch:ties="3" sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccc" style="stroke-dasharray:0.5, 0.5;"/>
<path d="m 13.9884,24.9891 0.6462,-0.2113 1.348,-0.7047 1.1343,-0.7828 v 0 l 0.1125,-0.0776 1.1285,-1.0168 0.7941,-1.2838 0.1864,-0.3696 v 0 l 0.5078,-1.0064 1.2734,-0.7429 0.8882,-0.4084 v 0 l 0.4951,-0.2277 1.3491,-0.7264 0.59929,-0.270567" inkstitch:running_stitch_length_mm="2" id="autosatinrun341" inkscape:label="Points droits pour auto-remplissage satin 2" inkstitch:ties="3" sodipodi:nodetypes="ccccccccccccccccc" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin484" d="m 25.2613,16.8043 0.239,0.4251 0.0441,0.509 -0.0672,1.0661 -0.2759,1.0319 -0.9269,1.933 -0.8866,1.1744 -1.1361,0.9202 -1.2946,0.7129 -1.3623,0.5521 -2.1561,0.6859 -2.1888,0.3452 -0.6813,0.0356 m 10.4427,-9.6961 -0.4123,-0.2261 -0.5852,-0.0083 -8.002,0.0364 -1.0602,3.7071 -0.6996,1.5717 -0.8908,1.4637 -0.9199,0.9136 -0.615,0.3422 m 1.7607,-4.4621 10.0313,5.1562" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 3"/>
<path id="autosatin485" d="m 10.5558,26.2753 0.1598,-0.7578 0.2361,-0.5142 0.6574,-0.5825 0.2172,-0.1209 m -1.0596,1.9754 2.2598,9e-4 1.5421,-0.0805 m 0.0367,0.0978 -3.0029,-2.0375" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 5"/>
<path id="autosatin486" d="m 15.857,31.9711 3.22,-0.0076 1.4704,0.1826 0.3828,0.5802 0.1752,0.7502 -0.0113,1.7295 -0.6185,5.0174 -0.3152,2.4205 L 20,45.1363 19.9776,50.2988 20.1109,55.459 20.4388,60.6112 21,65.75 l 0.2346,1.9405 0.7219,3.6324 0.612571,3.157706 M 14.7206,31.9978 11.5845,32.1539 10.5521,32.2979 10,32.5 l -0.2272,0.4931 -0.12989,0.9424 -0.01576,2.8146 0.22975,3.358 0.3794,3.0657 0.4853,4.0586 0.1996,4.0732 -0.0282,4.0787 -0.1982,4.0752 -0.4413,3.814 -0.74118,3.7599 -1.87951,7.4432 m 0.81464,-37.904801 13.3917,0.01005 M 7.2812503,72.093747 23.000001,72.062497" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 6" sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccc"/>
<path id="autosatin487" d="M 14.6977,81.0981 11.523,81.066 8.375,80.875 7.5742,80.6076 7.09028,80.0391 6.86595,79.2441 6.84392,78.297 7.63281,74.4766 m 7.95699,6.561 3.9597,0.0808 1.4425,-0.0979 1.2419,-0.4485 0.476,-0.4158 0.3422,-0.5758 0.1804,-0.7597 -0.0092,-0.9679 -0.654229,-3.372194 M 23.54535,75.01265 6.99824,75.0162" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="2" inkstitch:force_lock_stitches="True" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 8" sodipodi:nodetypes="ccccccccccccccccccc"/>
</g>
<g inkscape:groupmode="layer" inkscape:label="GlyphLayer-ì" style="display:none;fill:none;stroke:#00673e;stroke-width:0.945;stroke-opacity:1;stroke-miterlimit:4;" id="g158138">
<path d="m 15.1148,73.5245 c 0.128602,-5.793316 0.520805,-11.580633 0.392008,-17.377867 0.01139,-4.569844 -0.187453,-9.13492 -0.330737,-13.700649 -0.03676,-2.986138 0.157908,-5.966497 0.205829,-8.949984" inkstitch:running_stitch_length_mm="2" id="autosatinrun338" inkscape:label="Points droits pour auto-remplissage satin 1" inkstitch:ties="3" sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccc" style="stroke-dasharray:0.5, 0.5;"/>
<path d="M 16.7224,24.9891 C 15.013326,24.40302 13.419302,23.354116 12.23111,21.999005 11.652282,21.215474 11.30688,20.251769 10.764613,19.477766 9.3046368,18.600102 7.7353329,17.934634 6.23077,17.136275" inkstitch:running_stitch_length_mm="2" id="autosatinrun339" inkscape:label="Points droits pour auto-remplissage satin 2" inkstitch:ties="3" sodipodi:nodetypes="ccccccccccccccccc" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin480" d="m 5.44952,16.8043 -0.23894,0.4251 -0.04411,0.509 0.06718,1.0661 0.27591,1.0319 0.92689,1.933 0.88657,1.1744 1.13609,0.9202 1.29467,0.7129 1.36232,0.5521 2.156,0.6859 2.1888,0.3452 0.6813,0.0356 m -10.44268,-9.6961 0.41235,-0.2261 0.58518,-0.0083 8.00195,0.0364 1.0602,3.7071 0.6997,1.5717 0.8907,1.4637 0.92,0.9136 0.6149,0.3422 M 17.1238,19.8378 7.09256,24.994" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 3"/>
<path id="autosatin481" d="m 20.1551,26.2753 -0.1599,-0.7578 -0.236,-0.5142 -0.6575,-0.5825 -0.2172,-0.1209 m 1.0596,1.9754 -2.2598,9e-4 -1.5421,-0.0805 m -0.0366,0.0978 3.0028,-2.0375" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 5"/>
<path id="autosatin482" d="m 15.857,31.9711 3.22,-0.0076 1.4704,0.1826 0.3828,0.5802 0.1752,0.7502 -0.0113,1.7295 -0.6185,5.0174 -0.3152,2.4205 L 20,45.1363 19.9776,50.2988 20.1109,55.459 20.4388,60.6112 21,65.75 l 0.2346,1.9405 0.7219,3.6324 0.591765,3.050454 M 14.7206,31.9978 11.5845,32.1539 10.5521,32.2979 10,32.5 l -0.2272,0.4931 -0.12989,0.9424 -0.01576,2.8146 0.22975,3.358 0.3794,3.0657 0.4853,4.0586 0.1996,4.0732 -0.0282,4.0787 -0.1982,4.0752 -0.4413,3.814 -0.74118,3.7599 -1.87951,7.4432 m 0.00433,-37.912736 14.48545,0.1663 M 7.1875003,70.749996 H 22.875001" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 6" sodipodi:nodetypes="cccccccccccccccccccccccccccccccccc"/>
<path id="autosatin483" d="M 14.6977,81.0981 11.523,81.066 8.375,80.875 7.5742,80.6076 7.09028,80.0391 6.86595,79.2441 6.84392,78.297 7.63281,74.4766 m 7.95699,6.561 3.9597,0.0808 1.4425,-0.0979 1.2419,-0.4485 0.476,-0.4158 0.3422,-0.5758 0.1804,-0.7597 -0.0092,-0.9679 -0.675035,-3.479446 m 0.663408,0.248099 -16.4589912,0.0051" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="2" inkstitch:force_lock_stitches="True" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 8" sodipodi:nodetypes="ccccccccccccccccccc"/>
</g>
<g inkscape:groupmode="layer" inkscape:label="GlyphLayer-ë" style="display:none;fill:none;stroke:#00673e;stroke-width:0.945;stroke-opacity:1;stroke-miterlimit:4;" id="g158134">
<path d="m 15.2164,71.0793 c -2.243926,-3.444506 -2.447829,-7.681055 -2.8922,-11.648346 -0.372527,-5.084588 -0.519278,-10.254363 0.436382,-15.285145 0.724494,-3.355737 1.831267,-6.968529 4.724033,-9.089424 1.998603,-1.490301 4.63046,-1.806552 7.021738,-1.273184 2.335424,0.443082 4.352284,1.847934 5.862157,3.648086 1.860026,1.901222 2.896206,4.43773 3.240967,7.050233 0.334053,2.195081 0.516785,4.530172 -0.101942,6.673812 -0.67146,1.196179 -1.88744,1.87907 -3.134131,2.351746 -3.296394,1.315958 -6.790416,2.020766 -10.180639,3.029866" inkstitch:running_stitch_length_mm="2" id="autosatinrun335" inkscape:label="Points droits pour auto-remplissage satin 1" inkstitch:ties="3" sodipodi:nodetypes="cccccccccc" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin474" d="m 17.5728,59.1531 17.7478,-3.7995 1.4244,-0.3888 1.3524,-0.6196 1.085,-0.9265 0.3812,-0.602 0.2411,-0.7073 L 39.9893,49.334 39.8828,46.5464 39.5038,43.78 38.8711,41.0684 38.4066,39.6767 37.7661,38.3833 36.9722,37.1849 36.0477,36.0781 33.8983,34.126 31.5,32.5 30.3559,31.884 29.1607,31.457 27.8355,31.2363 M 17.5,58.5938 17.1406,54.9844 19.502,54.3106 22.1502,53.4094 24.7585,52.1746 25.9455,51.3989 27,50.5 27.526,49.7435 27.7868,48.8521 27.875,46.75 27.7595,45.0805 27.452,43.4332 26.9689,41.8247 26.3262,40.2715 25.5829,38.8408 24.6288,37.4682 24.3834,37.2534 m 2.0447,11.5419 14.1422,4.773" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" sodipodi:nodetypes="cscccccccccccccsssssssccsccccccccccc" inkscape:label="Auto-remplissage satin 2"/>
<path d="M 31.09925,25.475375 C 30.763134,21.829817 30.84242,19.221323 31.1341,15.5733" inkstitch:running_stitch_length_mm="2" id="autosatinrun336" inkscape:label="Points droits pour auto-remplissage satin 3" inkstitch:ties="3" sodipodi:nodetypes="cc" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin475" d="m 30.9283,15.009 c -1.4636,0 -2.5224,0.5855 -3.547,1.7564 -1.0245,1.1709 -1.5368,2.4881 -1.5368,3.9517 0,1.4636 0.5123,2.7077 1.5368,3.7322 1.0246,1.0245 2.1085,1.5417 3.5721,1.5417 m 0.3865,-10.9785 c 1.4636,0 2.4081,0.582 3.2863,1.7529 0.8782,1.1709 1.3172,2.4881 1.3172,3.9517 0,1.4636 -0.439,2.7077 -1.3172,3.7322 -0.8782,1.0245 -1.855,1.5417 -3.3186,1.5417" inkstitch:satin_column="True" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkscape:label="Auto-remplissage satin 4"/>
<path id="autosatin476" d="m 27.8355,31.2363 -1.1743,-0.1956 -2.5713,-0.0485 -2.5547,0.0605 -1.802,0.1963 -1.7498,0.4421 -0.9793,0.3939 M 24.3834,37.2534 23.4418,36.4293 22.7541,36.1212 22,36 l -0.8562,0.1213 -0.7234,0.3692 -0.0745,0.0697 m 2.0164,-8.0942 -0.1768,9.0156" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" sodipodi:nodetypes="cscccccccccccccsssssssccsccccccccccc" inkscape:label="Auto-remplissage satin 5"/>
<path d="m 16.97425,25.39725 c -0.336116,-3.645558 -0.272455,-6.160302 0.01922,-9.808325" inkstitch:running_stitch_length_mm="2" id="autosatinrun337" inkscape:label="Points droits pour auto-remplissage satin 6" inkstitch:ties="3" sodipodi:nodetypes="cc" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin477" d="m 16.8033,15.009 c -1.4636,0 -2.5224,0.5855 -3.547,1.7564 -1.0245,1.1709 -1.5368,2.4881 -1.5368,3.9517 0,1.4636 0.5123,2.7077 1.5368,3.7322 1.0246,1.0245 2.1085,1.5417 3.5721,1.5417 m 0.3865,-10.9785 c 1.4636,0 2.4081,0.582 3.2863,1.7529 0.8782,1.1709 1.3172,2.4881 1.3172,3.9517 0,1.4636 -0.439,2.7077 -1.3172,3.7322 -0.8782,1.0245 -1.855,1.5417 -3.3186,1.5417" inkstitch:satin_column="True" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkscape:label="Auto-remplissage satin 7"/>
<path id="autosatin478" d="m 17.004,32.085 -0.6918,0.2783 -1.5661,0.8865 -1.4345,1.0851 -1.2764,1.2681 -1.0919,1.4353 -0.8808,1.5867 -0.97977,2.3946 -0.74013,2.4615 -0.53495,2.5143 -0.36425,2.553 -0.35431,5.1657 -0.08518,5.1511 0.16859,4.3771 0.45788,4.3873 0.42349,2.1514 0.59909,2.0984 0.80911,2.0271 1.05353,1.9373 0.9372,1.2256 1.1012,1.0349 1.2375,0.8554 1.3464,0.6871 1.4278,0.5301 1.4817,0.3843 3.0151,0.3763 5.0417,0.0771 5.0335,-0.2124 1.4008,-0.223 1.3788,-0.3954 1.3206,-0.5648 1.2264,-0.7314 1.0961,-0.8952 0.9299,-1.056 0.7276,-1.2139 0.4891,-1.369 0.3856,-1.7755 M 20.3459,36.5603 19.8143,37.0578 19.3099,37.7734 18.5445,39.4509 18,41.125 l -0.7565,3.2656 -0.3369,3.2938 -0.0401,3.3572 0.1335,3.4556 0.5625,4.659 0.3108,1.9251 0.514,2.3964 0.4002,1.2329 0.5315,1.1805 0.6895,1.0711 0.8743,0.905 1.764,1.3833 1.9947,0.9883 2.1525,0.5818 2.2372,0.1638 1.627,0.026 1.625,-0.1127 1.5702,-0.3549 1.4624,-0.7007 M 8.17592,40.2659 19.2687,40.1775 m 9.3691,29.5659 -0.3535,12.8163 m 6.8943,-14.8493 6.5407,4.0659 M 5.92202,63.0701 19.1803,62.9375" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" sodipodi:nodetypes="cscccccccccccccsssssssccscccccccccccccccccccccccccccccccccccccccccccc" inkscape:label="Auto-remplissage satin 8"/>
<path id="autosatin479" d="m 38.3125,67.7969 -0.7514,0.1567 c -0.844453,0.176106 -1.472078,1.506891 -2.2453,1.8885 m 3.528,-1.889 0.8146,0.3678 0.4906,0.6044 0.2278,0.7845 c -0.09348,0.955061 -0.05357,1.803415 -0.2842,2.8682 m 0.4669,-2.3059 -3.7242,-1.9957" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="2" inkstitch:force_lock_stitches="True" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" sodipodi:nodetypes="cscccccccc" inkscape:label="Auto-remplissage satin 10"/>
</g>
<g inkscape:groupmode="layer" inkscape:label="GlyphLayer-ê" style="display:none;fill:none;stroke:#00673e;stroke-width:0.945;stroke-opacity:1;stroke-miterlimit:4;" id="g158130">
<path d="m 15.156,71.1458 c -2.274789,-3.487469 -2.591893,-7.78815 -2.93194,-11.82906 -0.301682,-4.579005 -0.336176,-9.215597 0.377938,-13.758374 0.668471,-4.125182 2.330396,-8.420014 5.891655,-10.877426 2.160189,-1.541996 5.040948,-1.317072 7.43703,-0.489546 2.605339,0.926493 4.551129,3.10656 6.043265,5.353665 1.512632,2.58348 1.883319,5.66839 1.934411,8.614051 -0.09752,1.256059 0.05406,2.729003 -0.918834,3.683928 -1.038285,1.248046 -2.732905,1.702028 -4.213866,2.244614 -2.963733,1.062958 -6.073328,1.629145 -9.059359,2.607148 -0.726607,0.726226 -1.45324,1.452426 -2.1799,2.1786" inkstitch:running_stitch_length_mm="2" id="autosatinrun331" inkscape:label="Points droits pour auto-remplissage satin 1" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin468" d="m 17.5728,59.1531 17.7478,-3.7995 1.4244,-0.3888 1.3524,-0.6196 1.085,-0.9265 0.3812,-0.602 0.2411,-0.7073 L 39.9893,49.334 39.8828,46.5464 39.5038,43.78 38.8711,41.0684 38.4066,39.6767 37.7661,38.3833 36.9722,37.1849 36.0477,36.0781 33.8983,34.126 31.5,32.5 l -1.1441,-0.616 -1.1952,-0.427 -2.4995,-0.4163 -2.5713,-0.0485 -2.5547,0.0605 -1.802,0.1963 -0.1071,0.0271 M 17.5,58.5938 17.1406,54.9844 19.502,54.3106 22.1502,53.4094 24.7585,52.1746 25.9455,51.3989 27,50.5 27.526,49.7435 27.7868,48.8521 27.875,46.75 27.7595,45.0805 27.452,43.4332 26.9689,41.8247 26.3262,40.2715 25.5829,38.8408 24.6288,37.4682 23.4418,36.4293 22.7541,36.1212 22,36 l -0.8562,0.1213 -0.5551,0.2833 m 5.8394,12.3907 14.1422,4.773 M 22.3623,28.466 22.1855,37.4816 m -4.5059,21.6825 -0.1985,-0.7018" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 2"/>
<path d="m 16.4383,24.6281 c -1.051587,0.244465 -2.004891,0.591901 -2.8898,1.2293" inkstitch:running_stitch_length_mm="2" id="autosatinrun332" inkscape:label="Points droits pour auto-remplissage satin 3" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin469" d="m 13.5264,25.7137 0.1516,-0.8492 0.5259,-0.6295 0.7486,-0.4638 0.7225,-0.3106 m -2.1045,2.5404 1.2926,5e-4 2.1953,-0.1402 m -3.5208,-0.2653 0.1393,0.4243" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 4"/>
<path d="m 16.4383,24.6281 c 2.062624,-0.741174 3.580764,-2.3872 4.898863,-4.067648 0.758201,-0.565661 1.014255,-1.430598 1.263737,-2.299452 0.542902,-1.053085 1.221637,-2.00371 1.9894,-2.9043" inkstitch:running_stitch_length_mm="2" id="autosatinrun333" inkscape:label="Points droits pour auto-remplissage satin 5" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path d="m 26.1973,18.0902 c -0.370468,-1.004199 -0.914792,-1.917554 -1.607,-2.7335 0.734229,1.335236 1.70092,2.565825 2.0441,4.0771 1.559343,2.400151 3.701808,4.587276 6.538551,5.359691 0.847917,0.298715 1.704609,0.581655 2.525749,0.949209" inkstitch:running_stitch_length_mm="2" id="autosatinrun334" inkscape:label="Points droits pour auto-remplissage satin 6" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin470" d="m 35.6434,25.8753 -0.8742,0.1418 -0.8827,-5e-4 -1.7781,-0.0787 -1.8691,-0.1665 -1.8017,-0.5737 -1.6005,-0.9539 -1.2657,-1.3068 -0.4554,-0.4793 -0.5139,-0.19 -0.0159,-6.5479 M 35.7539,25.6101 35.3419,24.8486 34.7166,24.26 32.9963,22.9876 31.679,21.6325 30.5393,19.9645 29.1907,17.9452 27.656,16.0679 27.1292,15.5851 26.45,15.2528 25.6084,15.0594 24.5944,14.9935 m 8.5386,6.1638 -3.8437,5.875" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 7"/>
<path id="autosatin471" d="m 24.5862,15.7198 0.0159,6.5479 -0.4296,0.0874 -0.4735,0.3152 -1.9262,1.4303 -2.1605,1.0857 -2.3261,0.6605 -0.2278,0.0145 m 7.536,-10.8678 -1.3895,0.0731 -1.3624,0.3008 -1.2137,0.6288 -0.9435,1.0569 -0.7859,1.809 -0.7367,1.9176 -0.9767,1.5296 -0.6482,0.6251 -0.7653,0.4844 -0.0975,0.0418 m 0.708,-2.2721 3.0625,5.2188" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 8"/>
<path id="autosatin472" d="m 19.6261,31.2761 -1.6427,0.415 -1.6712,0.6722 -1.5661,0.8865 -1.4345,1.0851 -1.2764,1.2681 -1.0919,1.4353 -0.8808,1.5867 -0.97977,2.3946 -0.74013,2.4615 -0.53495,2.5143 -0.36425,2.553 -0.35431,5.1657 -0.08518,5.1511 0.16859,4.3771 0.45788,4.3873 0.42349,2.1514 0.59909,2.0984 0.80911,2.0271 1.05353,1.9373 0.9372,1.2256 1.1012,1.0349 1.2375,0.8554 1.3464,0.6871 1.4278,0.5301 1.4817,0.3843 3.0151,0.3763 5.0417,0.0771 5.0335,-0.2124 1.4008,-0.223 1.3788,-0.3954 1.3206,-0.5648 1.2264,-0.7314 1.0961,-0.8952 0.9299,-1.056 0.3856,-0.6433 M 20.5887,36.4046 20.4204,36.4905 19.8143,37.0578 19.3099,37.7734 18.5445,39.4509 18,41.125 l -0.7565,3.2656 -0.3369,3.2938 -0.0401,3.3572 0.1335,3.4556 0.5625,4.659 0.3108,1.9251 0.514,2.3964 0.4002,1.2329 0.5315,1.1805 0.6895,1.0711 0.8743,0.905 1.764,1.3833 1.9947,0.9883 2.1525,0.5818 2.2372,0.1638 1.627,0.026 1.625,-0.1127 1.5702,-0.3549 0.6041,-0.2894 M 7.6897838,41.989414 19.003484,42.122027 M 28.6378,69.7434 28.2843,82.5597 m -8.8037,-51.5166 1.0676,5.6644 M 5.9220196,63.070056 19.312855,63.025862" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 9" sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc"/>
<path id="autosatin473" d="m 38.3125,67.7969 -0.7514,0.1567 -0.7663,0.5694 -1.479,1.3191 -0.8584,0.4113 m 4.3864,-2.3003 0.8146,0.3678 0.4906,0.6044 0.2278,0.7845 0.0258,0.908 -0.31,1.9602 -0.3856,1.7755 -0.4891,1.369 -0.3421,0.5707 m -3.6972,-8.5828 6.5407,4.0659" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="2" inkstitch:force_lock_stitches="True" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 11"/>
</g>
<g inkscape:groupmode="layer" inkscape:label="GlyphLayer-é" style="display:none;fill:none;stroke:#00673e;stroke-width:0.945;stroke-opacity:1;stroke-miterlimit:4;" id="g158126">
<path d="m 15.2205,71.0968 c -2.246546,-3.433723 -2.452351,-7.663061 -2.895146,-11.622531 -0.374202,-5.03133 -0.510846,-10.141257 0.393261,-15.125427 0.687279,-3.29437 1.826666,-6.736266 4.515083,-8.946929 1.867429,-1.660636 4.517569,-2.197298 6.9326,-1.672845 2.348514,0.349071 4.433239,1.671546 5.975158,3.446535 1.829107,1.849353 3.024752,4.259227 3.382581,6.836227 0.411951,2.341032 0.632486,4.841283 -0.01488,7.141344 -0.655172,1.155748 -1.812121,1.845296 -3.024255,2.306838 -3.327083,1.348918 -6.863924,2.055971 -10.292276,3.076981 -0.701052,0.118167 -1.047361,0.829339 -1.56623,1.247107" inkstitch:running_stitch_length_mm="2" id="autosatinrun329" inkscape:label="Points droits pour auto-remplissage satin 1" inkstitch:ties="3" sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin464" d="m 17.5728,59.1531 17.7478,-3.7995 1.4244,-0.3888 1.3524,-0.6196 1.085,-0.9265 0.3812,-0.602 0.2411,-0.7073 L 39.9893,49.334 39.8828,46.5464 39.5038,43.78 38.8711,41.0684 38.4066,39.6767 37.7661,38.3833 36.9722,37.1849 36.0477,36.0781 33.8983,34.126 31.5,32.5 l -1.1441,-0.616 -1.1952,-0.427 -2.4995,-0.4163 -2.5713,-0.0485 -2.5547,0.0605 -1.802,0.1963 -0.3979,0.1005 M 17.5,58.5938 17.1406,54.9844 19.502,54.3106 22.1502,53.4094 24.7585,52.1746 25.9455,51.3989 27,50.5 27.526,49.7435 27.7868,48.8521 27.875,46.75 27.7595,45.0805 27.452,43.4332 26.9689,41.8247 26.3262,40.2715 25.5829,38.8408 24.6288,37.4682 23.4418,36.4293 22.7541,36.1212 22,36 l -0.8562,0.1213 -0.2632,0.1344 m 5.5475,12.5396 14.1422,4.773 M 22.3623,28.466 22.1855,37.4816 m -4.5059,21.6825 -0.1985,-0.7018" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" sodipodi:nodetypes="cscccccccccccccsssssssccsccccccccccc" inkscape:label="Auto-remplissage satin 2"/>
<path d="m 20.9575,25.2027 c 1.889725,-0.555052 3.806488,-1.146541 5.3594,-2.412 1.334503,-0.894632 2.049814,-2.348525 2.7293,-3.7541 1.273119,-0.828691 2.700426,-1.334882 4.0058,-2.1054" inkstitch:running_stitch_length_mm="2" id="autosatinrun330" inkscape:label="Points droits pour auto-remplissage satin 3" inkstitch:ties="3" sodipodi:nodetypes="ccccccccccccccccccc" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin465" d="m 34.4613,16.3047 c 0.245,0.299 0.2979,0.5235 0.2831,0.9341 0.0775,1.4414 -0.5691,2.8096 -1.27,4.031 -0.9753,1.756 -2.8586,2.7099 -4.6796,3.3596 -2.8538,1.1916 -5.7899,1.1759 -8.8281,1.1463 M 34.2113,16 c -0.2676,-0.284 -0.4994,-0.2407 -0.9975,-0.2344 -2.7049,0.0341 -5.3353,-0.0339 -8.002,0.0364 -0.6341,2.802 -1.3095,4.8362 -2.6506,6.7426 -1.2465,1.7719 -2.4906,0.8221 -2.8054,3.2311 m 3.0312,-6.4375 10.0313,5.1563" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 4"/>
<path id="autosatin466" d="m 19.3353,31.3495 -1.3519,0.3416 -1.6712,0.6722 -1.5661,0.8865 -1.4345,1.0851 -1.2764,1.2681 -1.0919,1.4353 -0.8808,1.5867 -0.97977,2.3946 -0.74013,2.4615 -0.53495,2.5143 -0.36425,2.553 -0.35431,5.1657 -0.08518,5.1511 0.16859,4.3771 0.45788,4.3873 0.42349,2.1514 0.59909,2.0984 0.80911,2.0271 1.05353,1.9373 0.9372,1.2256 1.1012,1.0349 1.2375,0.8554 1.3464,0.6871 1.4278,0.5301 1.4817,0.3843 3.0151,0.3763 5.0417,0.0771 5.0335,-0.2124 1.4008,-0.223 1.3788,-0.3954 1.3206,-0.5648 1.2264,-0.7314 1.0961,-0.8952 0.9299,-1.056 0.7276,-1.2139 0.4891,-1.369 0.3856,-1.7755 0.0412,-0.2608 M 20.8806,36.2557 20.4204,36.4905 19.8143,37.0578 19.3099,37.7734 18.5445,39.4509 18,41.125 l -0.7565,3.2656 -0.3369,3.2938 -0.0401,3.3572 0.1335,3.4556 0.5625,4.659 0.3108,1.9251 0.514,2.3964 0.4002,1.2329 0.5315,1.1805 0.6895,1.0711 0.8743,0.905 1.764,1.3833 1.9947,0.9883 2.1525,0.5818 2.2372,0.1638 1.627,0.026 1.625,-0.1127 1.5702,-0.3549 1.4624,-0.7007 0.8345,-0.7443 M 6.52741,42.9799 l 12.12349,9e-4 m 9.9869,26.7626 -0.3535,12.8163 M 6,63.125 19.3125,62.875" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" sodipodi:nodetypes="cscccccccccccccsssssssccsccccccccccc" inkscape:label="Auto-remplissage satin 5"/>
<path id="autosatin467" d="m 38.3125,67.7969 -0.7514,0.1567 -0.7663,0.5694 -0.6445,0.5748 m 2.6935,-1.1447 0.8146,0.3678 0.4906,0.6044 0.2278,0.7845 0.0258,0.908 -0.2688,1.6994 m -4.9552,-4.6068 6.5407,4.0659" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="2" inkstitch:force_lock_stitches="True" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" sodipodi:nodetypes="cscccccccccccccsssssssccsccccccccccc" inkscape:label="Auto-remplissage satin 7"/>
</g>
<g inkscape:groupmode="layer" inkscape:label="GlyphLayer-è" style="display:none;fill:none;stroke:#00673e;stroke-width:0.945;stroke-opacity:1;stroke-miterlimit:4;" id="g158122">
<path d="m 15.156,71.1458 c -2.250922,-3.446046 -2.580518,-7.694563 -2.922447,-11.689964 -0.311551,-4.623037 -0.351647,-9.30473 0.367475,-13.892023 0.667878,-4.11769 2.321016,-8.406104 5.870635,-10.866091 2.151257,-1.552047 5.033693,-1.340087 7.42987,-0.515055 2.586236,0.89654 4.500626,3.052297 6.010497,5.24996 1.55891,2.607702 1.945563,5.736222 1.996447,8.72372 -0.106166,1.20648 0.06553,2.633323 -0.833405,3.573119 -0.951138,1.27303 -2.609256,1.73653 -4.046002,2.271665 -3.043147,1.10737 -6.240376,1.693922 -9.31277,2.693669" inkstitch:running_stitch_length_mm="2" id="autosatinrun327" inkscape:label="Points droits pour auto-remplissage satin 1" inkstitch:ties="3" sodipodi:nodetypes="cccccccccc" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin460" d="m 17.5728,59.1531 17.7478,-3.7995 1.4244,-0.3888 1.3524,-0.6196 1.085,-0.9265 0.3812,-0.602 0.2411,-0.7073 L 39.9893,49.334 39.8828,46.5464 39.5038,43.78 38.8711,41.0684 38.4066,39.6767 37.7661,38.3833 36.9722,37.1849 36.0477,36.0781 33.8983,34.126 31.5,32.5 30.3559,31.884 29.1607,31.457 26.6612,31.0407 24.0899,30.9922 23.5023,31.0062 M 17.5,58.5938 17.1406,54.9844 19.502,54.3106 22.1502,53.4094 24.7585,52.1746 25.9455,51.3989 27,50.5 27.526,49.7435 27.7868,48.8521 27.875,46.75 27.7595,45.0805 27.452,43.4332 26.9689,41.8247 26.3262,40.2715 25.5829,38.8408 24.6288,37.4682 23.4418,36.4293 22.7553,36.1217 m 3.6728,12.6736 14.1422,4.773" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 2" sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccc"/>
<path d="M 26.38135,25.1507 C 24.549484,24.057059 22.269562,23.963885 20.565899,22.607547 19.23799,21.809215 19.181476,21.248113 18.564736,19.828631 18.285797,18.801921 17.190005,18.496834 16.346311,18.042827 15.137543,17.512961 14.683196,17.314941 13.5625,16.62105" inkstitch:running_stitch_length_mm="2" id="autosatinrun328" inkscape:label="Points droits pour auto-remplissage satin 3" inkstitch:ties="3" sodipodi:nodetypes="ccccc" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin461" d="m 12.75,16.3047 c -0.245,0.299 -0.2979,0.5235 -0.283,0.9341 -0.0775,1.4414 0.569,2.8096 1.2699,4.031 0.9753,1.756 2.8586,2.7099 4.6797,3.3596 2.8537,1.1916 5.7898,1.1759 8.828,1.1463 M 13,16 c 0.2676,-0.284 0.4994,-0.2407 0.9975,-0.2344 2.705,0.0341 5.3353,-0.0339 8.002,0.0364 0.6341,2.802 1.3095,4.8362 2.6506,6.7426 1.2465,1.7719 2.4906,0.8221 2.8054,3.2311 M 24.4243,19.3382 14.393,24.4945" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 4" sodipodi:nodetypes="ccccccccsccc"/>
<path id="autosatin462" d="m 23.5023,31.0062 -1.9671,0.0465 -1.802,0.1963 -1.7498,0.4421 -1.6712,0.6722 -1.5661,0.8865 -1.4345,1.0851 -1.2764,1.2681 -1.0919,1.4353 -0.8808,1.5867 -0.97977,2.3946 -0.74013,2.4615 -0.53495,2.5143 -0.36425,2.553 -0.35431,5.1657 -0.08518,5.1511 0.16859,4.3771 0.45788,4.3873 0.42349,2.1514 0.59909,2.0984 0.80911,2.0271 1.05353,1.9373 0.9372,1.2256 1.1012,1.0349 1.2375,0.8554 1.3464,0.6871 1.4278,0.5301 1.4817,0.3843 3.0151,0.3763 5.0417,0.0771 5.0335,-0.2124 1.4008,-0.223 1.3788,-0.3954 1.3206,-0.5648 1.2264,-0.7314 1.0961,-0.8952 0.9299,-1.056 0.3856,-0.6433 M 22.7553,36.1217 22.7541,36.1212 22,36 l -0.8562,0.1213 -0.7234,0.3692 -0.6061,0.5673 -0.5044,0.7156 -0.7654,1.6775 L 18,41.125 l -0.7565,3.2656 -0.3369,3.2938 -0.0401,3.3572 0.1335,3.4556 0.5625,4.659 0.3108,1.9251 0.514,2.3964 0.4002,1.2329 0.5315,1.1805 0.6895,1.0711 0.8743,0.905 1.764,1.3833 1.9947,0.9883 2.1525,0.5818 2.2372,0.1638 1.627,0.026 1.625,-0.1127 1.5702,-0.3549 0.6041,-0.2894 M 22.3623,28.466 22.1855,37.4816 M 6.717512,43.84557 18.750343,44.238906 M 28.6378,69.7434 28.2843,82.5597 M 5.789437,63.556192 19.887379,63.42361" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 5" sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc"/>
<path id="autosatin463" d="m 38.3125,67.7969 -0.7514,0.1567 -0.7663,0.5694 -1.479,1.3191 -0.8584,0.4113 m 4.3864,-2.3003 0.8146,0.3678 0.4906,0.6044 0.2278,0.7845 0.0258,0.908 -0.31,1.9602 -0.3856,1.7755 -0.4891,1.369 -0.3421,0.5707 m -3.6972,-8.5828 6.5407,4.0659" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="2" inkstitch:force_lock_stitches="True" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 7" sodipodi:nodetypes="cccccccccccccccc"/>
</g>
<g inkscape:groupmode="layer" inkscape:label="GlyphLayer-ç" style="display:none;fill:none;stroke:#00673e;stroke-width:0.945;stroke-opacity:1;stroke-miterlimit:4;" id="g158118">
<path d="m 14.5397,69.792 c -2.115399,-4.85419 -2.018423,-10.286266 -1.994106,-15.48167 0.13304,-4.388745 0.269397,-8.897647 1.777174,-13.066668 1.262801,-3.238096 3.837729,-6.254196 7.327936,-7.063818 3.078202,-0.445246 6.68625,0.182669 8.684334,2.772961 1.583886,1.832508 1.743933,4.410389 1.594706,6.721023 -0.01863,0.57602 0.06245,1.131763 0.393497,2.085965" inkstitch:running_stitch_length_mm="2" id="autosatinrun324" inkscape:label="Points droits pour auto-remplissage satin 1" inkstitch:ties="3" sodipodi:nodetypes="ccccccc" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin455" d="M 33.0082,46.3232 34.6075,45.7224 35.3088,45.3335 36,44.75 l 1.0655,-1.3331 0.6566,-1.5203 0.2716,-1.6324 -0.0893,-1.6691 -0.426,-1.6309 -0.7388,-1.5174 -1.0275,-1.3287 -1.2922,-1.0649 -1.2229,-0.7552 -1.2921,-0.547 -1.3468,-0.3717 -1.3872,-0.229 -2.8386,-0.1611 -2.8284,0.0167 -2.3223,0.1705 -2.2426,0.5508 -2.1271,0.895 -1.9758,1.2035 -1.7887,1.4762 -1.5657,1.713 -1.3071,1.9139 -1.01249,2.079 -0.73734,2.3067 -0.54747,2.3468 -0.63753,4.7802 -0.21469,4.8394 -0.01629,4.8309 0.21139,4.0655 0.50802,4.0649 0.43411,1.9911 0.59091,1.9416 0.77526,1.8757 0.98712,1.7932 0.8647,1.1579 1.005,1.0182 1.1257,0.8745 1.2266,0.7273 1.3078,0.5763 1.3691,0.4217 1.4107,0.2633 1.4326,0.1014 6.0959,0.017 2.2027,-0.1795 m 3.7005,-34.2114 -1.4399,0.3657 -1.4599,0.0923 -1.4336,-0.2347 -1.361,-0.615 L 26.0968,45.3607 25.978,44.3912 26,42.3796 26.002,40.9071 25.777,39.4448 25.1635,38.1675 24.6606,37.6529 24,37.25 l -0.7473,-0.2149 -0.7473,-0.0177 -0.7276,0.1564 -0.6882,0.3072 -1.1793,0.9745 -0.7853,1.3004 -0.5133,1.137 -0.3349,1.1746 -0.2788,2.4288 0.002,4.9408 -0.0035,4.4551 0.0952,4.4724 0.1956,2.2145 0.3536,2.1849 0.5561,2.144 L 20,67 l 0.6954,1.1368 0.8919,0.9255 1.0509,0.7283 1.1726,0.5453 1.2568,0.3763 1.3035,0.2215 0.9771,0.0132 M 4.69975,44.5754 H 20.0793 m 2.6365,-15.2255 -0.0884,9.2808 m 2.2097,5.8336 14.5841,-4.1542 M 26.3397,69.7434 26.2513,82.8249 M 6.3750003,66.874996 l 14.5625007,-0.25" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 2" sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc"/>
<path d="m 26.730136,81.567224 c -2.087484,1.05953 -3.613828,1.41441 -5.379236,2.990076 -0.931287,0.711316 -1.42067,0.870158 -2.351958,1.581473" inkstitch:running_stitch_length_mm="2" id="autosatinrun325" inkscape:label="Points droits pour auto-remplissage satin 3" inkstitch:ties="3" sodipodi:nodetypes="ccc" style="stroke-dasharray:0.5, 0.5;"/>
<path d="m 20.258476,86.6912 c 2.992868,-0.195287 4.500303,-0.995224 7.321924,0.4097 0.874226,0.603996 1.582889,1.423378 1.84651,2.46092 0.297996,1.942474 -0.621351,3.942848 -2.182483,5.104745 -2.738407,1.768489 -6.243929,2.063363 -9.391604,1.452653 0,0 -0.699596,-0.07203 -1.612614,-0.406728" inkstitch:running_stitch_length_mm="2" id="autosatinrun326" inkscape:label="Points droits pour auto-remplissage satin 4" inkstitch:ties="3" sodipodi:nodetypes="cccccc" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin456" d="m 15.1023,94.7513 0.1228,-0.3868 0.2734,-0.2923 0.9258,-0.3538 1.3108,-0.1343 1.5511,-0.0208 3.2444,-0.1239 1.4039,-0.3148 L 25,92.5 l 0.6702,-0.7641 0.3692,-0.696 0.1011,-0.6306 -0.1342,-0.5676 -0.3367,-0.5074 -0.5062,-0.4496 -1.3899,-0.7363 -1.6741,-0.536 L 20.4039,87.256 18,87 m -2.7652,8.7678 0.1236,0.7565 0.3459,0.6771 0.5452,0.5931 0.7213,0.5047 1.8787,0.726 2.3061,0.318 2.5487,-0.1261 2.6066,-0.6065 2.4796,-1.123 1.1345,-0.7665 1.0334,-0.9091 0.9492,-1.3319 0.6217,-1.5536 0.3398,-1.5197 0.1032,-1.23 -0.1497,-1.4427 -0.3975,-1.2029 -0.6286,-0.9694 -0.8426,-0.742 -1.0399,-0.521 -1.2201,-0.3061 -1.3836,-0.0977 -1.5301,0.1047 -6.6662,1.3828 m 6.011,4.3675 9.125,0.0625 m -16.5625,1.9375 -0.25,6.8125" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 5" sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccc"/>
<path id="autosatin457" d="m 18,87 3,-6 5.9844,-0.0156 m -7.8704,5.3981 6.6662,-1.3828 1.9993,-3.9988 m -1.9917,4.0052 -4.7955,-4.0125" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 6" sodipodi:nodetypes="cccccccc"/>
<path id="autosatin458" d="m 28.5564,80.8219 0.8206,-0.0668 1.4872,-0.2904 1.4639,-0.4413 1.1557,-0.4884 1.0489,-0.6615 0.9305,-0.8126 0.8002,-0.9417 0.6583,-1.0487 0.3164,-0.7111 m -9.8899,-4.4125 1.6206,0.0219 1.7625,-0.1939 1.2849,-0.5672 M 28.7165,81.3071 27.3878,70.455" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 7" sodipodi:nodetypes="cccccccccccccccc"/>
<path id="autosatin459" d="M 36.0884,67 35.2578,67.0778 34.5,67.5 l -0.9396,1.4771 -1.2774,1.1128 -0.2668,0.1178 m 4.702,-3.0641 0.753,0.2821 0.4711,0.4803 0.2443,0.6348 0.0722,0.7456 -0.1516,1.6485 -0.1804,1.5666 -0.1617,1.2381 -0.3389,1.197 -0.1881,0.4228 m -4.7112,-7.1186 6.9827,2.2981" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="2" inkstitch:force_lock_stitches="True" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 9" sodipodi:nodetypes="cccccccccccccccccc"/>
</g>
<g inkscape:groupmode="layer" inkscape:label="GlyphLayer-æ" style="display:none;fill:none;stroke:#00673e;stroke-width:0.945;stroke-opacity:1;stroke-miterlimit:4;" id="g158114">
<path d="m 13.4495,70.3995 c 0.416072,1.419161 1.198797,2.812862 2.384151,3.70395 2.228449,1.242636 4.87947,1.231591 7.365149,1.34775 2.177819,-0.303939 2.968031,-0.594256 4.873557,-1.642493" inkstitch:running_stitch_length_mm="2" id="autosatinrun321" inkscape:label="Points droits pour auto-remplissage satin 1" inkstitch:ties="3" sodipodi:nodetypes="cccc" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin451" d="M 29.5625,80.875 17,81 14.375,80.8825 12.5,80.5 11.7462,80.1591 10.9898,79.6325 9.5,78 8.70925,76.7187 8.10591,75.3723 7.35991,72.5609 7.05896,69.719 7,67 7.22773,63.6218 7.90636,60.3814 9.00681,57.3253 10.5,54.5 11.7501,52.6797 13.1386,50.9775 16.2328,47.9102 19.5855,45.2627 23,43 l 1.9127,-1.0393 1.9623,-0.8098 2.0327,-0.6197 2.1235,-0.4687 m -2.0624,25.2656 -1.0614,1.4042 -1.55,1.5625 -1.7366,1.2471 -0.8437,0.3573 L 23,70 22.0453,69.8387 21.184,69.4804 20.4265,68.9205 19.7833,68.1544 19.2649,67.1777 18.8816,65.9856 18.644,64.5738 18.5625,62.9375 18.6715,60.9228 19.0147,58.9035 19.6162,56.9169 20.5,55 l 1.4645,-2.0242 2.1419,-2.191 2.5418,-2.146 L 29.3125,46.75 29.8228,43.8187 30.1563,42.4 30.625,41.0625 M 22.875,41 26.75,50.25 m -21,12.625 14.5,-0.75 m 2.25,6.5 -0.0781,13.3906" sodipodi:nodetypes="ccsssccssssssccccccc" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 2"/>
<path d="m 30.2254,35.9527 c -1.226151,-0.265284 -2.346341,-0.954537 -3.574624,-1.271275 -2.914298,-1.036205 -6.193193,-1.073193 -9.133158,-0.135501 -2.180751,0.742965 -4.212105,2.394831 -4.832952,4.683186 -0.319788,1.109155 -0.123599,2.256156 0.150676,3.353817" inkstitch:running_stitch_length_mm="2" id="autosatinrun322" inkscape:label="Points droits pour auto-remplissage satin 3" inkstitch:ties="3" sodipodi:nodetypes="ccccc" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin452" d="M 13.2983,44.0221 C 14.0386,44.0156 14.6371,43.8171 15,43 c 0.8557,-1.9267 1.5,-3.5 2.5,-4.5 1,-1 2.5,-1.5 4.5,-1.5 1.3333,0 2.6776,0.292 3.8125,0.6875 1.375,0.4792 3.625,1.3542 5.2187,2.375 0.5666,-1.6043 1.3522,-3.0334 2.3354,-4.3044 M 12.5802,43.9669 C 11.9135,43.9669 11.5,43.5 10.5,42.5 9.5,41.5 9,40.3333 9,39 c 0,-2 1,-3.8333 3,-5.5 3.8284,-2.5442 6.6114,-2.8125 10.8125,-2.8125 2,0 4.1875,0.6458 6.1875,1.3125 2,0.6667 3.6667,1.6667 5,3 M 8.84375,42.0625 16.4062,42.125 m 4.875,-12.5938 -0.0312,8.25" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" sodipodi:nodetypes="csssscccsscssccccc" inkscape:label="Auto-remplissage satin 4"/>
<path d="m 38.837431,36.409293 c 1.73583,-1.857739 3.018787,-1.940007 5.510831,-1.940252 2.067841,-0.0038 4.22996,0.421692 5.83635,1.809029 1.989366,1.63265 3.581333,3.816533 4.169481,6.352791 0.577645,2.24754 0.733538,4.599249 0.711541,6.908874 0.02381,0.899249 -0.349996,1.790048 -0.878795,2.470843 -2.556659,1.542353 -5.602981,1.761829 -8.448831,2.450249 -1.430927,0.366508 -3.079076,0.476708 -4.125264,1.635109 -0.870964,0.74923 -0.195098,0.305257 -1.065948,1.054621" inkstitch:running_stitch_length_mm="2" id="autosatinrun323" inkscape:label="Points droits pour auto-remplissage satin 5" inkstitch:ties="3" sodipodi:nodetypes="ccccccccc" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin453" d="m 39,57.6875 -0.0625,-4.8125 2.0764,-0.5428 2.3348,-0.471 2.2698,-0.5579 L 47.5,50.5 47.8608,50.1327 48.0868,49.5974 48.2335,48.1756 48,45 47.6396,42.2831 47.2918,40.9939 46.803,39.8429 46.1513,38.899 45.3148,38.2312 44.2717,37.9086 43,38 l -0.8705,0.3088 -0.7411,0.4805 -0.6219,0.6333 -0.5128,0.7669 -0.7387,1.8584 -0.4232,2.1641 -0.1886,2.3174 -0.0348,2.3179 0.0691,4.0277 L 39,59 39.25,61.75 39.5625,62.9375 40,64 41.125,65.875 42.5,67.5 44.125,68.875 46,70 47.0625,70.4375 48.25,70.75 51,71 53.625,70.875 55.5,70.5 56.75,70 57.2148,69.6901 M 39,59 58,55 60.375,54 61.0938,53.5 61.5,53 61.875,51.75 62,50 61.75,45.375 61.4375,43.3437 61,41.5 60.4375,39.8438 59.75,38.375 58.9375,37.0937 58,36 55.875,34.125 53.5,32.5 52.2187,31.8438 50.875,31.375 49.4687,31.0938 48,31 H 44 L 41.125,31.25 38.5,32 36.125,33.25 34,35 l -1.4132,1.8943 -1.154,2.1454 -0.9179,2.3706 -0.705,2.5702 -0.5152,2.7439 -0.3484,2.8918 -0.289,6.1242 0.1008,6.4065 0.3058,6.4823 0.3258,6.3518 0.1611,6.0151 L 49,81 51.8125,80.8441 54.25,80.3753 56.3125,79.5939 58,78.5 l 1.3343,-1.333 1.0285,-1.503 0.7612,-1.6787 0.5322,-1.8603 0.1026,-0.5639 M 50.6465,69.9202 V 82.3829 M 28.5494,42.6965 h 11.5789 m 3.8007,-12.8163 -0.0884,9.104 m 3.182,6.5408 15.5564,-2.033 m -15.7332,5.7453 16.4403,4.0658" sodipodi:nodetypes="ccsssccsssssccccssssssssccsssccccccccccccccc" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 6"/>
<path id="autosatin454" d="M 60,68 59.1053,68.1002 58.4757,68.4087 57.5,69.5 57.2148,69.6901 m 3.5664,-1.5963 0.5081,0.1118 0.3501,0.2912 0.2142,0.4369 0.1002,0.5489 -0.0532,1.2992 -0.1418,0.7793 m -4.6124,-2.3705 5.079,2.3205" sodipodi:nodetypes="ccsssccssssscc" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="2" inkstitch:force_lock_stitches="True" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 8"/>
</g>
<g inkscape:groupmode="layer" inkscape:label="GlyphLayer-å" style="display:none;fill:none;stroke:#00673e;stroke-width:0.945;stroke-opacity:1;stroke-miterlimit:4;" id="g158110">
<path d="m 13.7632,71.9984 c -1.418102,-2.86562 -1.306568,-6.200427 -1.115511,-9.317527 0.48761,-4.843825 2.987305,-9.251152 6.152615,-12.858626 2.039196,-2.25772 4.508176,-4.061743 7.127896,-5.587047 0.244467,-0.425167 0.488933,-0.850333 0.7334,-1.2755" inkstitch:running_stitch_length_mm="2" id="autosatinrun317" inkscape:label="Points droits pour auto-remplissage satin 1" inkstitch:ties="3" sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccc" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin446" d="M 27.1875,40.9062 23,43 20.5644,44.3897 18.4462,45.9019 16.6048,47.4632 15,49 12.375,51.875 10.5,54.5 9.125,57.125 8,60 7.25,63.25 7,67 7.125,70.625 7.5,73.5 8.25,75.875 9.5,78 11,79.625 11.75,80.1563 12.5,80.5 14.375,80.875 17,81 h 21 l 0.5663,-0.131 0.3159,-0.2688 m -11.6947,-39.694 1.2505,2.0954 0.5577,1.1103 0.3137,1.0649 -3.0297,2.0366 -1.4501,1.0955 L 23.5,49.5 21.375,51.875 20,54 19.125,56.125 18.5,58.5 18.125,60.875 18,63 18.0938,64.875 18.375,66.5 18.8438,67.875 19.5,69 20.2813,69.875 21.125,70.5 22.0313,70.875 23,71 23.9687,70.9062 24.875,70.625 25.7187,70.1562 26.5,69.5 27.2636,68.5073 m -4.2826,1.2361 0.0884,12.8163 m -11.9325,-32.5269 9.2808,5.922 m 6.2048,12.0278 12.7637,13.2863" sodipodi:nodetypes="cscssssscssssssssscccsssssssssscccsssssssssccccccccccccc" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 2"/>
<path d="m 33.555,69.8278 c -0.432884,-5.1845 0.213913,-10.368092 0.225352,-15.555343 0.06423,-3.683397 0.164936,-7.43758 -0.685451,-11.043787 -0.865148,-2.892921 -2.585901,-5.552722 -4.849356,-7.544861 -1.397627,-1.145024 -3.188939,-1.584314 -4.966537,-1.613404 -2.988079,-0.198079 -6.380844,-0.05517 -8.671209,2.126621 -1.321466,1.135403 -2.055386,2.89337 -1.95489,4.63237 0.01309,0.543636 0.09382,1.087313 0.133291,1.630404" inkstitch:running_stitch_length_mm="2" id="autosatinrun318" inkscape:label="Points droits pour auto-remplissage satin 3" inkstitch:ties="3" sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin447" d="M 13,44 13.875,43.875 14.5,43.5 15,43 16.125,40.375 16.7813,39.3438 17.5,38.5 18.3438,37.8438 19.375,37.375 20.5938,37.0938 20.7385,37.0841 M 12.5156,43.9844 12.0601,43.8931 11.6328,43.6172 10.5,42.5 9.84375,41.7187 9.375,40.875 9.09375,39.9687 9,39 9.1875,37.5313 9.75,36.125 10.6875,34.7813 12,33.5 13.625,32.4062 15.5,31.625 17.625,31.1562 18.1192,31.1237 M 7.86656,40.4868 h 9.45754" sodipodi:nodetypes="cscssssscssssssssscccsssssssssscccsssssssssccccccccccccc" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 4"/>
<path d="M 21.5044,24.4719 C 20.211621,23.996705 18.945565,23.166934 18.469186,21.814158 17.786325,20.245057 18.02587,18.379713 18.847299,16.905967 19.627112,15.832272 20.53983,14.608046 22.0069,14.5774" inkstitch:running_stitch_length_mm="2" id="autosatinrun319" inkscape:label="Points droits pour auto-remplissage satin 5" inkstitch:ties="3" sodipodi:nodetypes="cccccccccccccccc" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin448" d="m 22.4609,12.7754 -1.5204,0.1648 -1.2605,0.4692 -1.0853,0.7729 -0.9949,1.0755 -0.5653,0.7997 -0.4346,0.8711 -0.4843,1.8843 0.0161,1.9542 0.5013,1.8804 0.4467,0.8418 0.5829,0.7747 1.4891,1.293 1.7776,0.8603 0.9435,0.2337 0.9514,0.0847 0.2494,-0.0172 m -0.5283,-9.9633 -0.7886,0.0767 -0.569,0.2245 -0.4174,0.3691 -0.334,0.5105 -0.3593,0.8704 -0.1574,0.9172 0.0733,0.9112 0.3323,0.8528 0.4774,0.538 0.6439,0.3808 1.395,0.3046 0.1076,-0.0107 m -5.3566,-7.4493 2.851,2.6918 m -3.82,4.7077 3.7113,-1.1659 m 2.4893,5.2611 0.0175,-4.0447" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" sodipodi:nodetypes="cccscsccsssssc" inkscape:label="Auto-remplissage satin 6"/>
<path d="m 21.5044,24.4719 c 1.350539,0.341085 2.829576,0.261396 4.022937,-0.508005 1.455479,-0.856522 2.367057,-2.494115 2.579758,-4.146734 0.07273,-1.354217 -0.469011,-2.679967 -1.454668,-3.610327 C 25.871303,15.348808 24.71507,14.971486 23.5911,14.8173" inkstitch:running_stitch_length_mm="2" id="autosatinrun320" inkscape:label="Points droits pour auto-remplissage satin 7" inkstitch:ties="3" sodipodi:nodetypes="cccccccccccccccccccc" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin449" d="m 23.1088,16.7552 0.8651,0.1107 0.6727,0.3126 0.5272,0.4807 0.4287,0.6144 0.2743,0.8387 -0.0187,0.942 -0.2686,0.8992 -0.4751,0.7106 -1.0206,0.778 -0.5788,0.2024 -0.5659,0.0558 m 0.241,-9.936 2.0458,0.2684 0.9698,0.3452 0.9161,0.4845 0.8485,0.6227 0.767,0.7598 0.6717,0.8959 0.5626,1.0307 0.3186,0.9326 0.1365,0.976 -0.0318,0.9975 -0.1865,0.9969 -0.7816,1.9042 -1.2352,1.6375 -1.1359,0.9896 -1.2718,0.6585 -1.4097,0.3644 -1.3006,0.0898 m 5.1252,-2.0953 -3.0916,-2.966 m 4.8741,-4.4881 -4.3885,1.107 m -2.4132,8.6365 -0.1372,-4.4231" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" sodipodi:nodetypes="cccscsccsssssc" inkscape:label="Auto-remplissage satin 8"/>
<path id="autosatin450" d="M 20.7385,37.0841 22,37 23.9522,37.1617 24.8056,37.4632 25.5,38 l 0.8835,1.2803 0.804,1.6259 1.3233,2.2582 0.5044,0.9634 0.2942,1.049 0.3044,3.2276 0.0578,3.2524 -0.2739,6.4316 L 29,62 28.8165,63.9966 28.5,66 27.75,67.875 27.2636,68.5073 M 18.1192,31.1237 20,31 h 3 l 3.625,0.25 1.5312,0.3125 L 29.5,32 30.7188,32.5938 31.875,33.375 32.9688,34.3437 34,35.5 34.9375,36.8125 35.75,38.25 36.4375,39.8125 37,41.5 37.4375,43.3437 37.75,45.375 38,50 v 16 l 0.125,2.875 0.375,2.625 0.3438,2.2952 0.1571,2.3084 L 39,80.5 38.8822,80.6003 M 22.4506,29.5267 22.539,37.7468 m 5.1341,25.3988 H 39.1636 M 28.7188,47.9375 38.9375,48" sodipodi:nodetypes="cscssssscssssssssscccsssssssssscccsssssssssccccccccccccc" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="2" inkstitch:force_lock_stitches="True" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 9"/>
</g>
<g inkscape:groupmode="layer" inkscape:label="GlyphLayer-ä" style="display:none;fill:none;stroke:#00673e;stroke-width:0.945;stroke-opacity:1;stroke-miterlimit:4;" id="g158106">
<path d="m 13.7623,71.9966 -0.3427,-0.653 -0.4657,-1.5199 -0.2282,-1.3208 v 0 L 12.6968,68.3352 12.5684,66.8267 12.52,65.3126 12.5373,64.8444 v 0 l 0.0384,-1.0447 0.0973,-1.5122 0.2034,-1.0879 v 0 l 0.0746,-0.3991 0.352,-1.4695 0.4945,-1.5141 0.0625,-0.1447 v 0 l 0.5685,-1.3161 0.719,-1.4086 0.3413,-0.556 v 0 l 0.4868,-0.7933 0.8418,-1.2881 0.7147,-0.9615 v 0 l 0.1974,-0.2655 0.9838,-1.1717 1.0728,-1.0993 0.1963,-0.1863 v 0 l 0.917,-0.8701 1.1872,-0.9748 0.699,-0.5134 v 0 l 0.5404,-0.3968 1.2974,-0.8235 1.2399,-0.7716 v 0 l 0.0649,-0.0404 0.7334,-1.2755" inkstitch:running_stitch_length_mm="2" id="autosatinrun313" inkscape:label="Points droits pour auto-remplissage satin 1" inkstitch:ties="3" sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccc" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin440" d="M 27.1875,40.9062 23,43 20.5644,44.3897 18.4462,45.9019 16.6048,47.4632 15,49 12.375,51.875 10.5,54.5 9.125,57.125 8,60 7.25,63.25 7,67 7.125,70.625 7.5,73.5 8.25,75.875 9.5,78 11,79.625 11.75,80.1563 12.5,80.5 14.375,80.875 17,81 h 21 l 0.5663,-0.131 c 0.567715,-0.131327 0.361829,-1.008172 0.429277,-1.540625 M 27.1875,40.9062 l 1.2505,2.0954 0.5577,1.1103 0.3137,1.0649 -3.0297,2.0366 -1.4501,1.0955 L 23.5,49.5 21.375,51.875 20,54 19.125,56.125 18.5,58.5 18.125,60.875 18,63 18.0938,64.875 18.375,66.5 18.8438,67.875 19.5,69 20.2813,69.875 21.125,70.5 22.0313,70.875 23,71 23.9687,70.9062 24.875,70.625 25.7187,70.1562 26.5,69.5 27.2537,68.5202 m -4.2727,1.2232 0.0884,12.8163 m -11.9325,-32.5269 9.2808,5.922 m 6.1976,12.0386 12.7048,13.3316" sodipodi:nodetypes="cscssssscssssssssscccsssssssssscccsssssssssccccccccccccc" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 2"/>
<path d="m 33.557,69.8323 -0.069,-1.5474 -0.0934,-1.5133 0.0034,-0.6024 v 0 l 0.005,-0.9204 0.0322,-1.5261 0.045,-1.2198 v 0 l 0.0142,-0.3836 0.0778,-1.5472 0.0784,-1.5472 0.0073,-0.1852 v 0 l 0.0536,-1.3632 0.033,-1.5504 0.016,-0.7523 v 0 l 0.017,-0.7981 0.033,-1.5504 0.0188,-1.3183 v 0 l 0.0033,-0.2322 -0.0219,-1.5508 -0.0635,-1.5494 -0.0231,-0.3329 v 0 l -0.0822,-1.1864 -0.1626,-1.5571 -0.1627,-0.898 v 0 l -0.1161,-0.6406 -0.4693,-1.4908 -0.6036,-1.3223 v 0 l -0.0458,-0.1003 -0.7783,-1.3586 -0.8948,-1.2813 -0.2686,-0.3342 v 0 L 29.4404,36.8013 28.3396,35.7482 27.4848,35.179 v 0 L 27.0304,34.8763 25.6038,34.3314 24.0621,34.119 24.024,34.1167 v 0 l -1.525,-0.0947 -1.5338,-0.0099 -0.6046,0.0361 v 0 l -0.9317,0.0557 -1.5092,0.2873 -1.1279,0.4034 v 0 l -0.3163,0.1132 -1.3191,0.7816 -1.126,1.0419 -0.1451,0.2208 v 0 l -0.6938,1.0562 -0.4835,1.4277 -0.0354,0.8957 v 0 l -0.0245,0.6193 0.1381,1.5088" inkstitch:running_stitch_length_mm="2" id="autosatinrun314" inkscape:label="Points droits pour auto-remplissage satin 3" inkstitch:ties="3" sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin441" d="M 13,44 13.875,43.875 14.5,43.5 15,43 16.125,40.375 16.7813,39.3438 17.5,38.5 18.3438,37.8438 19.0071,37.5422 M 12.5156,43.9844 12.0601,43.8931 11.6328,43.6172 10.5,42.5 9.84375,41.7187 9.375,40.875 9.09375,39.9687 9,39 9.1875,37.5313 9.75,36.125 10.6875,34.7813 12,33.5 l 1.625,-1.0938 0.3189,-0.1328 m -6.07734,8.2134 h 9.45754" sodipodi:nodetypes="cscssssscssssssssscccsssssssssscccsssssssssccccccccccccc" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 4"/>
<path d="M 15.6317,25.465435 15.5366,24.2209 15.4691,22.7035 15.4623,22.3339 v 0 l -0.0215,-1.1739 0.0074,-1.557 0.0266,-0.9335 v 0 l 0.0172,-0.6064 0.0697,-1.5382" inkstitch:running_stitch_length_mm="2" id="autosatinrun315" inkscape:label="Points droits pour auto-remplissage satin 5" inkstitch:ties="3" sodipodi:nodetypes="ccccccccccc" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin442" d="m 15.4718,15.009 c -1.4636,0 -2.5224,0.5855 -3.547,1.7564 -1.0245,1.1709 -1.5368,2.4881 -1.5368,3.9517 0,1.4636 0.5123,2.7077 1.5368,3.7322 1.0246,1.0245 2.1085,1.5417 3.5721,1.5417 m 0.3865,-10.9785 c 1.4636,0 2.4081,0.582 3.2863,1.7529 0.8782,1.1709 1.3172,2.4881 1.3172,3.9517 0,1.4636 -0.439,2.7077 -1.3172,3.7322 -0.8782,1.0245 -1.855,1.5417 -3.3186,1.5417" inkstitch:satin_column="True" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkscape:label="Auto-remplissage satin 6"/>
<path id="autosatin443" d="M 19.0071,37.5422 19.375,37.375 20.5938,37.0938 22,37 23.9522,37.1617 24.8056,37.4632 25.5,38 25.552,38.0754 M 13.9439,32.2734 15.5,31.625 17.625,31.1562 20,31 h 3 l 3.625,0.25 1.5312,0.3125 0.3526,0.1148 m -6.0582,-2.1506 0.0884,8.2201" sodipodi:nodetypes="cscssssscssssssssscccsssssssssscccsssssssssccccccccccccc" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 7"/>
<path d="M 29.778797,25.35495 29.6616,24.2209 29.5941,22.7035 29.5873,22.3339 v 0 l -0.0215,-1.1739 0.0074,-1.557 0.0266,-0.9335 v 0 l 0.0172,-0.6064 0.135991,-2.333695" inkstitch:running_stitch_length_mm="2" id="autosatinrun316" inkscape:label="Points droits pour auto-remplissage satin 8" inkstitch:ties="3" sodipodi:nodetypes="ccccccccccc" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin444" d="m 29.5968,15.009 c -1.4636,0 -2.5224,0.5855 -3.547,1.7564 -1.0245,1.1709 -1.5368,2.4881 -1.5368,3.9517 0,1.4636 0.5123,2.7077 1.5368,3.7322 1.0246,1.0245 2.1085,1.5417 3.5721,1.5417 m 0.3865,-10.9785 c 1.4636,0 2.4081,0.582 3.2863,1.7529 0.8782,1.1709 1.3172,2.4881 1.3172,3.9517 0,1.4636 -0.439,2.7077 -1.3172,3.7322 -0.8782,1.0245 -1.855,1.5417 -3.3186,1.5417" inkstitch:satin_column="True" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkscape:label="Auto-remplissage satin 9"/>
<path id="autosatin445" d="m 25.552,38.0754 0.8315,1.2049 0.804,1.6259 1.3233,2.2582 0.5044,0.9634 0.2942,1.049 0.3044,3.2276 0.0578,3.2524 -0.2739,6.4316 L 29,62 28.8165,63.9966 28.5,66 27.75,67.875 27.2537,68.5202 M 28.5088,31.6773 29.5,32 30.7188,32.5938 31.875,33.375 32.9688,34.3437 34,35.5 34.9375,36.8125 35.75,38.25 36.4375,39.8125 37,41.5 37.4375,43.3437 37.75,45.375 38,50 v 16 l 0.125,2.875 0.375,2.625 0.3438,2.2952 0.1571,2.3084 c 0.06534,1.522835 0.08663,1.752772 -0.02752,3.269069 M 27.9312,63.112 H 39.4217 M 28.7812,47.9062 38.75,47.8438 m -13.291,-9.3636 3.2946,-7.0944" sodipodi:nodetypes="cscssssscssssssssscccssssssssssccssssss" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="2" inkstitch:force_lock_stitches="True" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 10"/>
</g>
<g inkscape:groupmode="layer" inkscape:label="GlyphLayer-ã" style="display:none;fill:none;stroke:#00673e;stroke-width:0.945;stroke-opacity:1;stroke-miterlimit:4;" id="g158102">
<path d="m 13.7625,71.993 c -1.366319,-2.748162 -1.307633,-5.948254 -1.138385,-8.945631 0.381014,-5.026561 2.97603,-9.619058 6.272983,-13.324322 1.989369,-2.203669 4.415067,-3.944723 6.957002,-5.448847 0.636546,-0.813017 0.982431,-1.683435 1.1678,-2.6945" inkstitch:running_stitch_length_mm="2" id="autosatinrun310" inkscape:label="Points droits pour auto-remplissage satin 1" sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin436" d="M 27.1875,40.9062 23,43 20.5644,44.3897 18.4462,45.9019 16.6048,47.4632 15,49 12.375,51.875 10.5,54.5 9.125,57.125 8,60 7.25,63.25 7,67 7.125,70.625 7.5,73.5 8.25,75.875 9.5,78 11,79.625 11.75,80.1563 12.5,80.5 14.375,80.875 17,81 H 38 L 38.5663,80.869 39,80.5 v -0.1676 m -11.8125,-39.4262 1.2505,2.0954 0.5577,1.1103 0.3137,1.0649 -3.0297,2.0366 -1.4501,1.0955 L 23.5,49.5 21.375,51.875 20,54 19.125,56.125 18.5,58.5 18.125,60.875 18,63 18.0938,64.875 18.375,66.5 18.8438,67.875 19.5,69 20.2813,69.875 21.125,70.5 22.0313,70.875 23,71 23.9687,70.9062 24.875,70.625 25.7187,70.1562 26.5,69.5 27.2836,68.4814 m -4.3026,1.262 0.0884,12.8163 m -11.9325,-32.5269 9.2808,5.922 m 6.216,12.0122 12.9552,13.0589" sodipodi:nodetypes="cscssssscssssssssscccsssssssssscccsssssssssccccccccccccc" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 2"/>
<path d="m 33.3818,72.8375 c 0.378464,-3.170384 -0.182079,-6.34867 0.06351,-9.525406 0.226844,-5.194484 0.540529,-10.402071 0.269827,-15.600245 -0.110079,-2.789029 -0.628856,-5.631135 -2.173095,-8.007407 -1.435827,-2.351875 -3.347426,-4.790286 -6.177372,-5.405929 -3.015976,-0.388593 -6.278328,-0.616257 -9.095191,0.731361 -1.871073,0.932151 -3.418815,2.753723 -3.58042,4.8847 -0.08274,0.854637 0.011,1.694714 0.09714,2.545226" inkstitch:running_stitch_length_mm="2" id="autosatinrun311" inkscape:label="Points droits pour auto-remplissage satin 3" sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin437" d="M 13,44 13.875,43.875 14.5,43.5 15,43 16.125,40.375 16.7813,39.3438 17.5,38.5 18.3438,37.8438 19.0071,37.5422 M 12.5156,43.9844 12.0601,43.8931 11.6328,43.6172 10.5,42.5 9.84375,41.7187 9.375,40.875 9.09375,39.9687 9,39 9.1875,37.5313 9.75,36.125 10.6875,34.7813 12,33.5 l 1.625,-1.0938 0.3189,-0.1328 m -6.07734,8.2134 h 9.45754" sodipodi:nodetypes="cscssssscssssssssscccsssssssssscccsssssssssccccccccccccc" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 4"/>
<path d="m 15.4344,24.4816 c 0.823708,-1.408558 2.259352,-2.310248 3.740183,-2.899527 2.955161,-0.907343 6.13545,-0.394077 9.106934,-1.147361 0.928428,-0.291031 1.745414,-0.865814 2.325914,-1.630127 0.166956,-0.435861 0.333913,-0.871723 0.500869,-1.307585" inkstitch:running_stitch_length_mm="2" id="autosatinrun312" inkscape:label="Points droits pour auto-remplissage satin 5" sodipodi:nodetypes="ccccccccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin438" d="m 31.2109,16.1719 0.7942,1.0283 0.519,1.1427 0.3092,1.2326 0.1648,1.2975 -0.0526,1.0134 -0.2581,0.9806 -0.4852,0.8826 -0.7334,0.7191 -0.9975,0.6085 -1.0722,0.4637 -1.1228,0.31 L 27.1269,25.998 25.8496,25.9818 24.5825,25.8274 22.077,25.3052 19.2499,24.7812 17.8455,24.7229 16.4998,25 15.586,25.537 15.0935,25.9141 M 31,16 l -1.2095,1.2095 -0.8489,0.578 -1.0666,0.2105 -1.3667,-0.1699 -1.3732,-0.38 -2.7906,-0.9637 -1.4298,-0.3705 -1.4609,-0.1542 -1.4983,0.1687 -1.5416,0.5982 -1.1184,0.8869 -0.4214,0.5928 -0.264,0.6687 -0.4994,1.7707 -0.0898,1.8319 0.3021,1.8119 L 14.9998,26 m -2.0313,-3.75 5.6876,3.1875 M 28.0625,17 l 6.125,2.2812" sodipodi:nodetypes="ccsssccscsscccccc" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 6"/>
<path id="autosatin439" d="M 19.0071,37.5422 19.375,37.375 20.5938,37.0938 22,37 23.9522,37.1617 24.8056,37.4632 25.5,38 l 0.8835,1.2803 0.804,1.6259 1.3233,2.2582 0.5044,0.9634 0.2942,1.049 0.3044,3.2276 0.0578,3.2524 -0.2739,6.4316 L 29,62 28.8165,63.9966 28.5,66 27.75,67.875 27.2835,68.4814 M 13.9439,32.2734 15.5,31.625 17.625,31.1562 20,31 h 3 l 3.625,0.25 1.5312,0.3125 L 29.5,32 30.7188,32.5938 31.875,33.375 32.9688,34.3437 34,35.5 34.9375,36.8125 35.75,38.25 36.4375,39.8125 37,41.5 37.4375,43.3437 37.75,45.375 38,50 v 16 l 0.125,2.875 0.375,2.625 0.3438,2.2952 0.1571,2.3084 L 39,80.3325 M 22.4506,29.5267 22.539,37.7468 M 27.9781,63.362 H 39.4685 M 28.6875,47.9375 38.875,47.875" sodipodi:nodetypes="cscssssscssssssssscccsssssssssscccsssssssssccccccccccccc" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="2" inkstitch:force_lock_stitches="True" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 7"/>
</g>
<g inkscape:groupmode="layer" inkscape:label="GlyphLayer-â" style="display:none;fill:none;stroke:#00673e;stroke-width:0.945;stroke-opacity:1;stroke-miterlimit:4;" id="g158098">
<path d="m 13.7621,71.9964 c -1.317399,-2.626549 -1.295966,-5.691071 -1.162749,-8.564282 0.243738,-4.810557 2.580745,-9.25969 5.603858,-12.913202 2.135785,-2.579515 4.84145,-4.609928 7.724991,-6.283716 0.574971,-0.842361 0.928015,-1.750273 1.1172,-2.7508" inkstitch:running_stitch_length_mm="2" id="autosatinrun306" inkscape:label="Points droits pour auto-remplissage satin 1" sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin431" d="M 27.1875,40.9062 23,43 20.5644,44.3897 18.4462,45.9019 16.6048,47.4632 15,49 12.375,51.875 10.5,54.5 9.125,57.125 8,60 7.25,63.25 7,67 7.125,70.625 7.5,73.5 8.25,75.875 9.5,78 11,79.625 11.75,80.1563 12.5,80.5 14.375,80.875 17,81 h 21 l 0.5663,-0.131 0.2525,-0.2148 m -11.6313,-39.748 1.2505,2.0954 0.5577,1.1103 0.3137,1.0649 -3.0297,2.0366 -1.4501,1.0955 L 23.5,49.5 21.375,51.875 20,54 19.125,56.125 18.5,58.5 18.125,60.875 18,63 18.0938,64.875 18.375,66.5 18.8438,67.875 19.5,69 20.2813,69.875 21.125,70.5 22.0313,70.875 23,71 23.9687,70.9062 24.875,70.625 25.7187,70.1562 26.5,69.5 27.2537,68.5202 m -4.2727,1.2232 0.0884,12.8163 m -11.9325,-32.5269 9.2808,5.922 m 6.1976,12.0386 12.7048,13.3316" sodipodi:nodetypes="cscssssscssssssssscccsssssssssscccsssssssssccccccccccccc" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 2"/>
<path d="m 33.5117,71.4812 c 0.132356,-2.669395 -0.265487,-5.33263 -0.06748,-8.003896 0.213378,-5.32881 0.562985,-10.670973 0.25501,-16.002364 -0.108051,-2.769049 -0.699454,-5.567976 -2.239588,-7.912723 -1.451801,-2.323485 -3.384589,-4.752804 -6.226229,-5.281529 -2.976704,-0.373811 -6.194078,-0.583309 -8.969171,0.752289 -1.841759,0.915549 -3.351962,2.687851 -3.570784,4.771078 -0.0824,0.892993 -0.0049,1.766991 0.09274,2.655745" inkstitch:running_stitch_length_mm="2" id="autosatinrun307" inkscape:label="Points droits pour auto-remplissage satin 3" sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin432" d="M 13,44 13.875,43.875 14.5,43.5 15,43 16.125,40.375 16.7813,39.3438 17.5,38.5 18.3438,37.8438 19.0071,37.5422 M 12.5156,43.9844 12.0601,43.8931 11.6328,43.6172 10.5,42.5 9.84375,41.7187 9.375,40.875 9.09375,39.9687 9,39 9.1875,37.5313 9.75,36.125 10.6875,34.7813 12,33.5 l 1.625,-1.0938 0.3189,-0.1328 m -6.07734,8.2134 h 9.45754" sodipodi:nodetypes="cscssssscssssssssscccsssssssssscccsssssssssccccccccccccc" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 4"/>
<path d="m 13.8746,25.0688 c 2.495841,-0.453266 4.628787,-2.042859 6.083261,-4.081546 0.573496,-0.6824 1.346998,-1.231551 1.461965,-2.18189 0.425946,-1.302077 1.315582,-2.398429 2.170474,-3.448664" inkstitch:running_stitch_length_mm="2" id="autosatinrun308" inkscape:label="Points droits pour auto-remplissage satin 5" sodipodi:nodetypes="ccccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path d="m 25.1973,18.0902 c -0.370477,-1.004194 -0.914806,-1.917545 -1.607,-2.7335 0.734253,1.335226 1.700867,2.565849 2.0441,4.0771 1.559323,2.400096 3.70172,4.587196 6.538394,5.359638 0.440699,0.158044 0.889671,0.290309 1.336406,0.429862" inkstitch:running_stitch_length_mm="2" id="autosatinrun309" inkscape:label="Points droits pour auto-remplissage satin 6" sodipodi:nodetypes="ccccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin433" d="m 34.6434,25.8753 -0.8742,0.1418 -0.8827,-5e-4 -1.7781,-0.0787 -1.8691,-0.1665 -1.8017,-0.5737 -1.6005,-0.9539 -1.2657,-1.3068 -0.4554,-0.4793 -0.5139,-0.19 -0.0159,-6.5479 M 34.7539,25.6101 34.3419,24.8486 33.7166,24.26 31.9963,22.9876 30.679,21.6325 29.5393,19.9645 28.1907,17.9452 26.656,16.0679 26.1292,15.5851 25.45,15.2528 24.6084,15.0594 23.5944,14.9935 m 8.5386,6.1638 -3.8437,5.875" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 7"/>
<path id="autosatin434" d="m 23.5862,15.7198 0.0159,6.5479 -0.4296,0.0874 -0.4735,0.3152 -1.9262,1.4303 -2.1605,1.0857 -2.3261,0.6605 -2.4231,0.1547 -1.2926,-5e-4 m 11.0239,-11.0075 -1.3895,0.0731 -1.3624,0.3008 -1.2137,0.6288 -0.9435,1.0569 -0.7859,1.809 -0.7367,1.9176 -0.9767,1.5296 -0.6482,0.6251 -0.7653,0.4844 -0.82,0.3524 -0.7486,0.4638 -0.5259,0.6295 -0.1516,0.8492 m 2.8566,-4.5252 3.0625,5.2188" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 8"/>
<path id="autosatin435" d="M 19.0071,37.5422 19.375,37.375 20.5938,37.0938 22,37 23.9522,37.1617 24.8056,37.4632 25.5,38 l 0.8835,1.2803 0.804,1.6259 1.3233,2.2582 0.5044,0.9634 0.2942,1.049 0.3044,3.2276 0.0578,3.2524 -0.2739,6.4316 L 29,62 28.8165,63.9966 28.5,66 27.75,67.875 27.2537,68.5202 M 13.9439,32.2734 15.5,31.625 17.625,31.1562 20,31 h 3 l 3.625,0.25 1.5312,0.3125 L 29.5,32 30.7188,32.5938 31.875,33.375 32.9688,34.3437 34,35.5 34.9375,36.8125 35.75,38.25 36.4375,39.8125 37,41.5 37.4375,43.3437 37.75,45.375 38,50 v 16 l 0.125,2.875 0.375,2.625 0.3438,2.2952 0.1571,2.3084 L 39,80.5 38.8187,80.6543 M 22.4506,29.5267 22.539,37.7468 M 27.6656,63.112 H 39.156 M 28.625,47.9375 38.8125,47.8125" sodipodi:nodetypes="cscssssscssssssssscccsssssssssscccsssssssssccccccccccccc" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="2" inkstitch:force_lock_stitches="True" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 9"/>
</g>
<g inkscape:groupmode="layer" inkscape:label="GlyphLayer-á" style="display:none;fill:none;stroke:#00673e;stroke-width:0.945;stroke-opacity:1;stroke-miterlimit:4;" id="g158094">
<path d="m 13.7625,71.997 c -1.302502,-2.586432 -1.290686,-5.604928 -1.17138,-8.436958 0.178438,-4.008836 1.814114,-7.817968 4.107058,-11.067512 2.337811,-3.467974 5.618639,-6.19351 9.230022,-8.25733 0.244467,-0.425167 0.488933,-0.850333 0.7334,-1.2755" inkstitch:running_stitch_length_mm="2" id="autosatinrun303" inkscape:label="Points droits pour auto-remplissage satin 1" inkstitch:ties="3" sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccc" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin427" d="M 27.1875,40.9062 23,43 20.5644,44.3897 18.4462,45.9019 16.6048,47.4632 15,49 12.375,51.875 10.5,54.5 9.125,57.125 8,60 7.25,63.25 7,67 7.125,70.625 7.5,73.5 8.25,75.875 9.5,78 11,79.625 11.75,80.1563 12.5,80.5 14.375,80.875 17,81 h 21 l 0.5663,-0.131 0.2525,-0.2148 m -11.6313,-39.748 1.2505,2.0954 0.5577,1.1103 0.3137,1.0649 -3.0297,2.0366 -1.4501,1.0955 L 23.5,49.5 21.375,51.875 20,54 19.125,56.125 18.5,58.5 18.125,60.875 18,63 18.0938,64.875 18.375,66.5 18.8438,67.875 19.5,69 20.2813,69.875 21.125,70.5 22.0313,70.875 23,71 23.9687,70.9062 24.875,70.625 25.7187,70.1562 26.5,69.5 27.2537,68.5202 m -4.2727,1.2232 0.0884,12.8163 m -11.9325,-32.5269 9.2808,5.922 m 6.1976,12.0386 12.7048,13.3316" sodipodi:nodetypes="cscssssscssssssssscccsssssssssscccsssssssssccccccccccccc" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 2"/>
<path d="m 33.5117,71.4812 c 0.131796,-2.667595 -0.26489,-5.329013 -0.06771,-7.998492 0.213816,-5.208966 0.539938,-10.429131 0.280111,-15.641808 -0.113671,-2.779843 -0.583457,-5.622347 -2.10661,-8.005865 -1.419438,-2.377511 -3.3108,-4.819201 -6.126146,-5.519604 -3.022475,-0.404002 -6.270098,-0.629532 -9.119148,0.653579 -1.85314,0.906436 -3.377817,2.628761 -3.67368,4.706956 -0.08159,0.932654 -0.02172,1.855986 0.08768,2.783834" inkstitch:running_stitch_length_mm="2" id="autosatinrun304" inkscape:label="Points droits pour auto-remplissage satin 3" inkstitch:ties="3" sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin428" d="M 13,44 13.875,43.875 14.5,43.5 15,43 16.125,40.375 16.7813,39.3438 17.5,38.5 18.3438,37.8438 19.375,37.375 20.5938,37.0938 20.7385,37.0841 M 12.5156,43.9844 12.0601,43.8931 11.6328,43.6172 10.5,42.5 9.84375,41.7187 9.375,40.875 9.09375,39.9687 9,39 9.1875,37.5313 9.75,36.125 10.6875,34.7813 12,33.5 13.625,32.4062 15.5,31.625 17.625,31.1562 18.1192,31.1237 M 7.86656,40.4868 h 9.45754" sodipodi:nodetypes="cscssssscssssssssscccsssssssssscccsssssssssccccccccccccc" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 4"/>
<path d="m 20.1575,25.2027 c 1.889615,-0.555212 3.806664,-1.146282 5.3594,-2.412 1.335255,-0.893971 2.049595,-2.348783 2.7293,-3.7541 1.272902,-0.829158 2.700565,-1.334532 4.0058,-2.1054" inkstitch:running_stitch_length_mm="2" id="autosatinrun305" inkscape:label="Points droits pour auto-remplissage satin 5" inkstitch:ties="3" sodipodi:nodetypes="ccccccccccccccccccc" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin429" d="m 33.6613,16.3047 c 0.245,0.299 0.2979,0.5235 0.2831,0.9341 0.0775,1.4414 -0.5691,2.8096 -1.27,4.031 -0.9753,1.756 -2.8586,2.7099 -4.6796,3.3596 -2.8538,1.1916 -5.7899,1.1759 -8.8281,1.1463 M 33.4113,16 c -0.2676,-0.284 -0.4994,-0.2407 -0.9975,-0.2344 -2.7049,0.0341 -5.3353,-0.0339 -8.002,0.0364 -0.6341,2.802 -1.3095,4.8362 -2.6506,6.7426 -1.2465,1.7719 -2.4906,0.8221 -2.8054,3.2311 m 3.0312,-6.4375 10.0313,5.1563" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 6"/>
<path id="autosatin430" d="M 20.7385,37.0841 22,37 23.9522,37.1617 24.8056,37.4632 25.5,38 l 0.8835,1.2803 0.804,1.6259 1.3233,2.2582 0.5044,0.9634 0.2942,1.049 0.3044,3.2276 0.0578,3.2524 -0.2739,6.4316 L 29,62 28.8165,63.9966 28.5,66 27.75,67.875 27.2537,68.5202 M 18.1192,31.1237 20,31 h 3 l 3.625,0.25 1.5312,0.3125 L 29.5,32 30.7188,32.5938 31.875,33.375 32.9688,34.3437 34,35.5 34.9375,36.8125 35.75,38.25 36.4375,39.8125 37,41.5 37.4375,43.3437 37.75,45.375 38,50 v 16 l 0.125,2.875 0.375,2.625 0.3438,2.2952 0.1571,2.3084 L 39,80.5 38.8187,80.6543 M 22.4506,29.5267 22.539,37.7468 M 27.9156,63.112 H 39.406 M 28.625,47.8125 38.9375,47.75" sodipodi:nodetypes="cscssssscssssssssscccsssssssssscccsssssssssccccccccccccc" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="2" inkstitch:force_lock_stitches="True" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 7"/>
</g>
<g inkscape:groupmode="layer" inkscape:label="GlyphLayer-à" style="display:none;fill:none;stroke:#00673e;stroke-width:0.945;stroke-opacity:1;stroke-miterlimit:4;" id="g158090">
<path d="m 13.7258,71.9233 c -1.404689,-2.926744 -1.270608,-6.302262 -1.0636,-9.4677 0.479741,-4.038141 2.319956,-7.782251 4.781995,-10.97657 2.212078,-2.96357 5.139038,-5.323951 8.347605,-7.13573 0.36143,-0.326233 0.722797,-0.652537 1.0842,-0.9788" inkstitch:running_stitch_length_mm="2" id="autosatinrun300" inkscape:label="Points droits pour auto-remplissage satin 1" inkstitch:ties="3" sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccc" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin423" d="M 27.5938,40.7656 23,43 20.5565,44.3736 18.4391,45.8876 16.6022,47.4579 15,49 12.375,51.875 10.5,54.5 9.125,57.125 8,60 7.25,63.25 7,67 7.125,70.625 7.5,73.5 8.25,75.875 9.5,78 11,79.625 11.75,80.1563 12.5,80.5 14.375,80.875 17,81 H 38 L 38.5663,80.869 39,80.5 l 1e-4,-0.2728 m -11.1095,-38.821 0.8989,1.8454 0.5199,1.9252 -3.0297,2.0366 -1.4501,1.0955 L 23.5,49.5 21.375,51.875 20,54 19.125,56.125 18.5,58.5 18.125,60.875 18,63 18.0938,64.875 18.375,66.5 18.8438,67.875 19.5,69 20.2813,69.875 21.125,70.5 22.0313,70.875 23,71 23.9687,70.9062 24.875,70.625 25.7187,70.1562 26.5,69.5 27.3296,68.4215 m -4.3486,1.3219 0.0884,12.8163 m -11.9325,-32.5269 9.2808,5.922 m 6.2644,11.9546 12.9045,13.0092" sodipodi:nodetypes="cscssssscssssssssscccsssssssssscccsssssssssccccccccccccc" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 2"/>
<path d="m 33.5121,71.2498 c 0.07756,-2.769253 -0.267094,-5.534607 -0.05115,-8.304864 0.225842,-5.081595 0.521,-10.177102 0.251232,-15.262101 -0.115657,-3.289308 -0.873187,-6.637372 -2.83265,-9.340356 -1.544016,-2.331991 -4.087569,-4.140598 -6.949553,-4.231614 -3.076066,-0.22713 -6.539205,-0.256572 -9.03771,1.822941 -1.458388,1.159096 -2.353197,2.999858 -2.238432,4.872236 0.0051,0.551268 0.09536,1.103141 0.132366,1.653758" inkstitch:running_stitch_length_mm="2" id="autosatinrun301" inkscape:label="Points droits pour auto-remplissage satin 3" inkstitch:ties="3" sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin424" d="M 13,44 13.875,43.875 14.5,43.5 15,43 16.125,40.375 16.7813,39.3438 17.5,38.5 18.3438,37.8438 19.375,37.375 20.5938,37.0938 22,37 23.6277,37.1348 M 12.5156,43.9844 12.0601,43.8931 11.6328,43.6172 10.5,42.5 9.84375,41.7187 9.375,40.875 9.09375,39.9687 9,39 9.1875,37.5313 9.75,36.125 10.6875,34.7813 12,33.5 13.625,32.4062 15.5,31.625 17.625,31.1562 20,31 h 3 l 1.5005,0.1035 M 7.86656,40.4868 h 9.45754 m 5.1265,-10.9601 0.0884,8.2201 m -9.4059,6.2401 -0.7496,-0.0232" sodipodi:nodetypes="cscssssscssssssssscccsssssssssscccsssssssssccccccccccccc" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 4"/>
<path d="m 26.2539,25.2027 c -1.889651,-0.555201 -3.806717,-1.146302 -5.3595,-2.412 -1.335176,-0.894041 -2.049617,-2.348756 -2.7293,-3.7541 -1.272925,-0.829108 -2.700551,-1.334569 -4.0058,-2.1054" inkstitch:running_stitch_length_mm="2" id="autosatinrun302" inkscape:label="Points droits pour auto-remplissage satin 5" inkstitch:ties="3" sodipodi:nodetypes="ccccccccccccccccccc" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin425" d="m 12.75,16.3047 c -0.245,0.299 -0.2979,0.5235 -0.283,0.9341 -0.0775,1.4414 0.569,2.8096 1.2699,4.031 0.9753,1.756 2.8586,2.7099 4.6797,3.3596 2.8537,1.1916 5.7898,1.1759 8.828,1.1463 M 13,16 c 0.2676,-0.284 0.4994,-0.2407 0.9975,-0.2344 2.705,0.0341 5.3353,-0.0339 8.002,0.0364 0.6341,2.802 1.3095,4.8362 2.6506,6.7426 1.2465,1.7719 2.4906,0.8221 2.8054,3.2311 M 24.4243,19.3382 14.393,24.4945" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 6"/>
<path id="autosatin426" d="m 23.6277,37.1348 0.3245,0.0269 0.8534,0.3015 L 25.5,38 l 1.0866,1.21 1.0072,1.5556 1.1201,2.3285 0.3648,1.0117 0.2307,1.071 0.3044,3.2276 0.0578,3.2524 -0.2739,6.4316 L 29,62 28.8165,63.9966 28.5,66 27.75,67.875 27.3296,68.4215 M 24.5005,31.1035 26.625,31.25 28.1562,31.5625 29.5,32 30.7188,32.5938 31.875,33.375 32.9688,34.3437 34,35.5 34.9375,36.8125 35.75,38.25 36.4375,39.8125 37,41.5 37.4375,43.3437 37.75,45.375 38,50 v 16 l 0.125,2.875 0.375,2.625 0.3438,2.2952 0.1571,2.3084 -8e-4,4.1238 M 27.9781,63.237 H 39.4685 M 28.4375,47.75 H 39.25 m -15.5663,-10.3053 0.9602,-6.636" sodipodi:nodetypes="cscssssscssssssssscccsssssssssscccsssssssssccccccccccccc" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="2" inkstitch:force_lock_stitches="True" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 7"/>
</g>
<g inkscape:groupmode="layer" inkscape:label="GlyphLayer-ß" style="display:none;fill:none;stroke:#00673e;stroke-width:0.945;stroke-opacity:1;stroke-miterlimit:4;" id="g158086">
<path d="m 15.0758,73.903 0.002,1.524 0.0085,1.5543 -0.0444,0.6968 v 0 l -0.0547,0.8595 -0.4919,1.454 -0.485675,0.590025" inkstitch:running_stitch_length_mm="2" id="autosatinrun298" inkscape:label="Points droits pour auto-remplissage satin 1" inkstitch:ties="3" sodipodi:nodetypes="cccccccc" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin420" d="M 13.2362,80.9957 C 11.3991,81.006 10.2039,81.0084 8.375,80.875 5.75757,79.6003 7.46586,75.8088 7.70508,73.5098 9.0393,67.9899 10.3606,62.4392 10.644,56.7446 11.3151,47.667 10.7878,38.557 11.0957,29.4707 c 0.2444,-4.8802 2.5057,-10.1837 7.2871,-12.1523 4.2395,-1.6655 9.0931,-1.7182 13.4688,-0.5528 4.2999,1.2717 6.7228,5.6189 7.7578,9.6797 0.6728,2.64 0.2993,5.395 -0.7344,8 C 37.7378,37.3113 35.6781,39.6622 33,41 l -7.25,0.0625 M 13.8768,81.0113 C 15.614,81.0015 17.3524,80.9706 19.0873,81 c 2.4087,0.5183 4.6838,-0.879 3.8815,-3.5938 -0.8124,-4.8244 -1.6314,-9.6557 -2.0313,-14.539 -1.0529,-9.0741 -0.9787,-18.2138 -0.9199,-27.332 0.1861,-3.8493 0.4617,-7.8756 2.1074,-11.4102 1.3651,-3.3354 4.4943,-3.2662 6.5,-2 1.5331,0.9678 2.4813,3.5449 2.6264,5.0696 0.3338,3.5069 -0.178,6.0051 -1.8309,9.222 -1.1978,2.3311 -4.8226,1.6343 -4.7927,4.7357 M 6.36396,68.6827 23.1577,68.3292 m 2.1214,-54.8008 0.3535,9.5459 m 4.0659,5.6569 12.0208,0.1768 M 9.54594,31.7364 21.2132,31.8248" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 2"/>
<path id="autosatin421" d="M 25.75,41.0625 33,41 l 1.5054,1.1313 1.2796,1.3252 1.0852,1.4838 0.9217,1.6069 1.4782,3.4421 1.1987,3.5107 1.0704,4.7022 0.3166,2.3912 L 42,63 l -0.1879,2.4647 -0.4082,2.4558 -0.6312,2.4149 -0.8567,2.3421 -1.085,2.2374 -1.3159,2.1008 -0.3535,0.4408 m -12.5338,-36.3042 0.0933,1.4069 0.402,1.232 0.9386,1.2763 1.7035,1.5401 1.1644,1.1543 0.8215,1.3107 0.5244,1.5107 0.2727,1.7543 0.3239,5.1256 0.0322,5.1169 -0.0892,2.0646 -0.2995,2.1372 -0.3262,0.9628 -0.1118,0.1852 m -1.263,-12.5054 14.3189,0.1767" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 3"/>
<path d="m 34.3546,71.3905 -0.735,1.3027 -0.9341,1.1931 -0.412,0.327 v 0 l -0.796,0.632 -1.3762,0.6916 -0.8829,0.4262 v 0 l -0.5065,0.2445 -1.3134,0.76" inkstitch:running_stitch_length_mm="2" id="autosatinrun299" inkscape:label="Points droits pour auto-remplissage satin 4" inkstitch:ties="3" sodipodi:nodetypes="ccccccccccc" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin422" d="M 26.0364,76.5719 25.5,74.5 l -0.2563,-1.7689 0.0627,-0.7618 0.207,-0.6738 0.3638,-0.5813 0.5335,-0.484 0.7157,-0.3822 0.9107,-0.2757 0.9521,-0.3792 0.7044,-0.627 0.384,-0.6362 m -3.9162,9.2826 0.6145,2.5484 0.5364,1.0963 0.8127,0.8928 1.4835,0.2793 1.5952,-0.1669 1.5695,-0.4907 1.4065,-0.692 1.7858,-1.7318 1.1961,-1.4914 M 28.461,67.0917 36.7696,79.9964" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="2" inkstitch:force_lock_stitches="True" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 5"/>
</g>
<g inkscape:groupmode="layer" inkscape:label="GlyphLayer-Ü" style="display:none;fill:none;stroke:#00673e;stroke-width:0.945;stroke-opacity:1;stroke-miterlimit:4;" id="g158082">
<path d="M 16.7097,71.4993 C 14.942291,69.278139 14.521307,66.396607 14.404012,63.64371 13.501321,55.254525 13.954808,46.803917 14.073,38.3879 c 0.193265,-6.534378 0.36189,-13.072736 0.894155,-19.589697 4.82e-4,-0.467467 9.63e-4,-0.934935 0.0014,-1.402403" inkstitch:running_stitch_length_mm="2" id="autosatinrun294" inkscape:label="Points droits pour auto-remplissage satin 1" inkstitch:ties="3" sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" style="stroke-dasharray:0.5, 0.5;"/>
<path d="M 19.2062,10.6273 C 18.974249,7.5637425 18.965021,4.488447 19.1363,1.42152" inkstitch:running_stitch_length_mm="2" id="autosatinrun295" inkscape:label="Points droits pour auto-remplissage satin 2" inkstitch:ties="3" sodipodi:nodetypes="ccccccccccc" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin416" d="m 19.0464,-0.0942944 c -1.4636,0 -2.5225,0.5854424 -3.547,1.7563344 -1.0245,1.17088 -1.5368,2.48813 -1.5368,3.95174 0,1.46361 0.5123,2.70768 1.5368,3.7322 1.0245,1.02452 2.1085,1.54162 3.5721,1.54162 M 19.458,-0.0908654 c 1.4636,0 2.4081,0.5820134 3.2863,1.7529054 0.8781,1.17088 1.3172,2.48813 1.3172,3.95174 0,1.46361 -0.4391,2.70768 -1.3172,3.7322 -0.8782,1.02452 -1.855,1.54162 -3.3186,1.54162" inkstitch:satin_column="True" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkscape:label="Auto-remplissage satin 3"/>
<path id="autosatin417" d="m 15.2187,16.0357 5.5313,0.0893 0.5055,0.2175 0.4301,0.636 0.2276,1.0868 -0.1024,1.5697 -0.4471,3.7715 -0.3093,4.8897 -0.281,11.4447 0.0428,10.8503 0.215,6.8776 0.2255,2.5483 0.3872,2.4349 0.6355,2.3261 L 23.25,67 l 0.629,0.9144 0.8257,0.8071 0.9678,0.656 1.0554,0.4608 1.0884,0.2217 1.0669,-0.0612 0.9909,-0.3882 0.8603,-0.759 0.7652,-1.1 0.3903,-0.7612 M 14.3125,16.0045 12.4534,15.9075 10.4444,15.9014 9.55144,16.0517 8.82247,16.3676 8.3246,16.897 8.125,17.6875 7,47.3245 l -0.16046,5.2547 -0.00968,5.2591 0.2678,10.5152 0.2518,2.0562 0.58496,1.9855 0.88597,1.8753 1.15486,1.7256 1.39155,1.5362 1.5962,1.3073 1.7687,1.0389 1.9089,0.7309 2.4035,0.4372 2.4522,0.0829 4.9342,-0.1295 3.2791,0.0586 3.3061,-0.1436 1.6075,-0.262 1.5474,-0.4495 1.4651,-0.6829 1.3604,-0.962 1.2364,-1.2234 1.0544,-1.3719 0.5275,-0.9007 M 5.23192,62.5893 22.8578,62.6322 m 4.5426,5.697 V 82.6481 M 6.625,21.25 H 22.75" sodipodi:nodetypes="csssssssssccssssssscccccccc" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 4"/>
<path d="M 37.5011,69.6452 C 38.803523,66.207747 38.460516,62.481472 38.806193,58.888153 39.301901,49.626135 38.394172,40.370787 37.901402,31.128285 37.515528,27.19826 37.534067,23.247083 37.307728,19.309909 37.269267,18.702376 37.080851,18.113029 36.979,17.5141" inkstitch:running_stitch_length_mm="2" id="autosatinrun296" inkscape:label="Points droits pour auto-remplissage satin 5" inkstitch:ties="3" sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" style="stroke-dasharray:0.5, 0.5;"/>
<path d="M 33.3312,10.6273 C 33.099249,7.5637425 33.090021,4.488447 33.2613,1.42152" inkstitch:running_stitch_length_mm="2" id="autosatinrun297" inkscape:label="Points droits pour auto-remplissage satin 6" inkstitch:ties="3" sodipodi:nodetypes="ccccccccccc" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin418" d="m 33.1714,-0.0942944 c -1.4636,0 -2.5225,0.5854424 -3.547,1.7563344 -1.0245,1.17088 -1.5368,2.48813 -1.5368,3.95174 0,1.46361 0.5123,2.70768 1.5368,3.7322 1.0245,1.02452 2.1085,1.54162 3.5721,1.54162 M 33.583,-0.0908654 c 1.4636,0 2.4081,0.5820134 3.2863,1.7529054 0.8781,1.17088 1.3172,2.48813 1.3172,3.95174 0,1.46361 -0.4391,2.70768 -1.3172,3.7322 -0.8782,1.02452 -1.855,1.54162 -3.3186,1.54162" inkstitch:satin_column="True" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkscape:label="Auto-remplissage satin 7"/>
<path id="autosatin419" d="m 36.4678,16.0435 -2.292,0.0408 -2.2892,0.194 -0.5006,0.161 -0.3147,0.286 -0.2106,0.8268 0.2799,1.8307 L 32.7183,32.432 34,46 l 0.2428,6.3576 -0.1153,3.1785 -0.3228,3.1592 -0.3652,2.6632 -0.4993,2.6693 -0.8346,2.5421 -0.2157,0.4205 m 5.4841,-50.9157 2.6545,0.1146 1.7908,0.4123 0.6202,0.3254 0.4627,0.409 0.3245,0.4957 0.206,0.5855 0.134,1.4524 -0.107,1.8484 -0.1922,2.2687 -0.1218,2.7136 L 44,66 l -0.0408,1.7426 -0.2004,1.7429 -0.3636,1.7183 -0.5307,1.6689 -0.7015,1.5948 -0.3486,0.5951 M 31.6001,62.6518 45.2637,62.559 M 30.375,21.25 H 44.9375 M 31.4391,66.4977 42.3614,75.38" sodipodi:nodetypes="csssssssssccssssssscccccccc" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="2" inkstitch:force_lock_stitches="True" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 8"/>
</g>
<g inkscape:groupmode="layer" inkscape:label="GlyphLayer-Û" style="display:none;fill:none;stroke:#00673e;stroke-width:0.945;stroke-opacity:1;stroke-miterlimit:4;" id="g158078">
<path d="M 16.7017,71.5531 C 14.850294,69.233634 14.691451,66.181234 14.436462,63.350129 13.530086,56.290331 13.93528,49.14992 13.9915,42.0538 c 0.187846,-7.763012 0.363163,-15.532471 0.976208,-23.275193 -0.0018,-0.452769 -0.0035,-0.905538 -0.0053,-1.358307" inkstitch:running_stitch_length_mm="2" id="autosatinrun290" inkscape:label="Points droits pour auto-remplissage satin 1" inkstitch:ties="3" sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" style="stroke-dasharray:0.5, 0.5;"/>
<path d="M 15.2726,9.80116 C 17.903354,9.3449876 20.056615,7.5785797 21.579633,5.4584144 22.376498,4.8296761 22.768824,3.9598461 22.9989,2.9933 23.397147,2.3123358 23.737411,1.5957718 24.28785,1.019341" inkstitch:running_stitch_length_mm="2" id="autosatinrun291" inkscape:label="Points droits pour auto-remplissage satin 2" inkstitch:ties="3" sodipodi:nodetypes="cccccccccccccccccc" style="stroke-dasharray:0.5, 0.5;"/>
<path d="m 25.9042,1.30688 c 0.784324,1.3645763 0.928547,3.016914 2.073922,4.1696157 1.495393,2.0563981 3.602519,3.5561805 6.067278,4.2116343" inkstitch:running_stitch_length_mm="2" id="autosatinrun292" inkscape:label="Points droits pour auto-remplissage satin 3" inkstitch:ties="3" sodipodi:nodetypes="ccccccccccccccccc" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin412" d="m 36.0413,10.6076 -0.8742,0.1419 -0.8826,-6e-4 L 32.5063,10.6702 30.6372,10.5037 28.8356,9.93 27.235,8.97617 25.9693,7.66936 25.5139,7.19 25,7 24.9841,0.452086 M 36.1518,10.3424 35.7398,9.58091 35.1146,8.99236 33.3942,7.71997 32.0769,6.36487 30.9372,4.69681 29.5887,2.67756 28.0539,0.800251 27.5271,0.317428 26.8479,-0.014895 26.0063,-0.208239 24.9924,-0.274127 M 33.531,5.88959 29.6872,11.7646" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 4"/>
<path id="autosatin413" d="M 24.9841,0.452086 25,7 24.5705,7.0874 24.097,7.40259 l -1.9263,1.43033 -2.1605,1.0857 -2.3261,0.66048 -2.4231,0.1547 -1.2925,-5e-4 m 11.0239,-11.007427 -1.3896,0.07305 -1.3624,0.3008076 -1.2137,0.6287704 -0.9435,1.056939 -0.7859,1.80902 -0.7367,1.91755 -0.9766,1.52957 -0.6483,0.62511 -0.7653,0.48439 -0.82,0.35243 -0.7486,0.46387 -0.5259,0.62946 -0.1516,0.84926 m 2.8567,-4.52526 3.0625,5.21876" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 5"/>
<path id="autosatin414" d="m 15.2187,16.0357 5.5313,0.0893 0.5055,0.2175 0.4301,0.636 0.2276,1.0868 -0.1024,1.5697 -0.4471,3.7715 -0.3093,4.8897 -0.281,11.4447 0.0428,10.8503 0.215,6.8776 0.2255,2.5483 0.3872,2.4349 0.6355,2.3261 L 23.25,67 l 0.629,0.9144 0.8257,0.8071 0.9678,0.656 1.0554,0.4608 1.0884,0.2217 1.0669,-0.0612 0.9909,-0.3882 0.8603,-0.759 0.7652,-1.1 0.4816,-0.9392 M 14.3125,16.0045 12.4534,15.9075 10.4444,15.9014 9.55144,16.0517 8.82247,16.3676 8.3246,16.897 8.125,17.6875 7,47.3245 l -0.16046,5.2547 -0.00968,5.2591 0.2678,10.5152 0.2518,2.0562 0.58496,1.9855 0.88597,1.8753 1.15486,1.7256 1.39155,1.5362 1.5962,1.3073 1.7687,1.0389 1.9089,0.7309 2.4035,0.4372 2.4522,0.0829 4.9342,-0.1295 3.2791,0.0586 3.3061,-0.1436 1.6075,-0.262 1.5474,-0.4495 1.4651,-0.6829 1.3604,-0.962 1.2364,-1.2234 1.0544,-1.3719 0.8761,-1.4958 0.4924,-1.1195 M 5.48008,64.0651 23.106,64.108 m 4.2944,4.2212 V 82.6481 M 6.0988,21.5717 23.0694,21.4833" sodipodi:nodetypes="csssssssssccssssssscccccccc" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 6"/>
<path d="m 37.9248,68.2099 c 0.676244,-3.193846 0.643125,-6.488562 0.895968,-9.734478 C 39.280111,49.357537 38.388208,40.248236 37.906046,31.149769 37.526341,27.209056 37.5283,23.249195 37.3221,19.3 37.234167,18.803233 37.146233,18.306467 37.0583,17.8097 M 36.8318,16.3341 36.87853,16.189886 36.9209,16.0591" inkstitch:running_stitch_length_mm="2" id="autosatinrun293" inkscape:label="Points droits pour auto-remplissage satin 7" inkstitch:ties="3" sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin415" d="m 36.4678,16.0435 -2.292,0.0408 -2.2892,0.194 -0.5006,0.161 -0.3147,0.286 -0.2106,0.8268 0.2799,1.8307 L 32.7183,32.432 34,46 l 0.2428,6.3576 -0.1153,3.1785 -0.3228,3.1592 -0.3652,2.6632 -0.4993,2.6693 -0.8346,2.5421 -0.1244,0.2425 m 5.3928,-50.7377 2.6545,0.1146 1.7908,0.4123 0.6202,0.3254 0.4627,0.409 0.3245,0.4957 0.206,0.5855 0.134,1.4524 -0.107,1.8484 -0.1922,2.2687 -0.1218,2.7136 L 44,66 l -0.0408,1.7426 -0.2004,1.7429 -0.3636,1.7183 -0.5307,1.6689 -0.2091,0.4753 M 31.3779,63.733 45.4316,63.5562 M 30.052,21.4833 45.3432,21.3066 m -13.8498,45.0902 11.7357,7.1863" sodipodi:nodetypes="csssssssssccssssssscccccccc" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="2" inkstitch:force_lock_stitches="True" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 8"/>
</g>
<g inkscape:groupmode="layer" inkscape:label="GlyphLayer-Ú" style="display:none;fill:none;stroke:#00673e;stroke-width:0.945;stroke-opacity:1;stroke-miterlimit:4;" id="g158074">
<path d="M 16.7166,71.501 C 14.972304,69.308871 14.526615,66.472133 14.4181,63.7516 13.494655,55.328104 13.955697,46.840681 14.073,38.3891 14.266052,31.85406 14.435101,25.315084 14.967155,18.797449 14.967637,18.3301 14.968118,17.86275 14.9686,17.3954" inkstitch:running_stitch_length_mm="2" id="autosatinrun287" inkscape:label="Points droits pour auto-remplissage satin 1" inkstitch:ties="3" sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" style="stroke-dasharray:0.5, 0.5;"/>
<path d="M 22.1169,10.5369 C 24.043231,9.4152859 26.43114,9.2991656 28.181273,7.8220046 29.714832,6.9268199 30.581102,5.3602853 31.3019,3.79779 32.575392,2.9701011 34.002041,2.4626146 35.3077,1.69238" inkstitch:running_stitch_length_mm="2" id="autosatinrun288" inkscape:label="Points droits pour auto-remplissage satin 2" inkstitch:ties="3" sodipodi:nodetypes="cccccccccccccccccccc" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin409" d="M 36.717,1.0659 C 36.9619,1.36487 37.0148,1.5894 37,2 37.0775,3.44143 36.4309,4.8096 35.73,6.03104 34.7547,7.78705 32.8715,8.7409 31.0504,9.39063 28.1967,10.5822 25.2605,10.5665 22.2224,10.5369 M 36.467,0.761212 C 36.1993,0.477243 35.9675,0.520527 35.4694,0.526809 32.7645,0.560919 30.1341,0.492889 27.4674,0.563199 26.8333,3.36524 26.1579,5.39939 24.8168,7.30576 23.5703,9.07766 22.3262,8.12794 22.0114,10.5369 m 3.0313,-6.43747 10.0312,5.15625" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 3"/>
<path id="autosatin410" d="m 15.2187,16.0357 5.5313,0.0893 0.5055,0.2175 0.4301,0.636 0.2276,1.0868 -0.1024,1.5697 -0.4471,3.7715 -0.3093,4.8897 -0.281,11.4447 0.0428,10.8503 0.215,6.8776 0.2255,2.5483 0.3872,2.4349 0.6355,2.3261 L 23.25,67 l 0.629,0.9144 0.8257,0.8071 0.9678,0.656 1.0554,0.4608 1.0884,0.2217 1.0669,-0.0612 0.9909,-0.3882 0.8603,-0.759 0.7652,-1.1 0.606,-1.1817 0.0709,-0.2161 M 14.3125,16.0045 12.4534,15.9075 10.4444,15.9014 9.55144,16.0517 8.82247,16.3676 8.3246,16.897 8.125,17.6875 7,47.3245 l -0.16046,5.2547 -0.00968,5.2591 0.2678,10.5152 0.2518,2.0562 0.58496,1.9855 0.88597,1.8753 1.15486,1.7256 1.39155,1.5362 1.5962,1.3073 1.7687,1.0389 1.9089,0.7309 2.4035,0.4372 2.4522,0.0829 4.9342,-0.1295 3.2791,0.0586 3.3061,-0.1436 1.6075,-0.262 1.5474,-0.4495 1.4651,-0.6829 1.3604,-0.962 1.2364,-1.2234 1.0544,-1.3719 0.8761,-1.4958 0.4389,-0.998 M 5.12652,62.6509 22.7524,62.6938 m 4.648,5.6354 V 82.6481 M 6.54074,21.2182 H 22.7158" sodipodi:nodetypes="csssssssssccssssssscccccccccc" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 4"/>
<path d="M 37.3892,69.9117 C 38.815293,66.494042 38.455929,62.736311 38.798475,59.130111 39.314242,49.800188 38.398032,40.476187 37.903059,31.165656 37.511021,27.165625 37.53202,23.144577 37.3005,19.137 37.2024,18.640467 37.1043,18.143933 37.0062,17.6474" inkstitch:running_stitch_length_mm="2" id="autosatinrun289" inkscape:label="Points droits pour auto-remplissage satin 5" inkstitch:ties="3" sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin411" d="m 36.4678,16.0435 -2.292,0.0408 -2.2892,0.194 -0.5006,0.161 -0.3147,0.286 -0.2106,0.8268 0.2799,1.8307 L 32.7183,32.432 34,46 l 0.2428,6.3576 -0.1153,3.1785 -0.3228,3.1592 -0.3652,2.6632 -0.4993,2.6693 -0.7637,2.326 m 5.1975,-50.2791 2.6545,0.1146 1.7908,0.4123 0.6202,0.3254 0.4627,0.409 0.3245,0.4957 0.206,0.5855 0.134,1.4524 -0.107,1.8484 -0.1922,2.2687 -0.1218,2.7136 L 44,66 l -0.0408,1.7426 -0.2004,1.7429 -0.3636,1.7183 -0.5307,1.6689 -0.2626,0.5968 M 32.2885,62.5529 45.4363,62.6633 M 30.052,20.953 H 45.2548 M 31.686,65.9028 43.1639,73.734" sodipodi:nodetypes="csssssssssccssssssscccccccccc" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="2" inkstitch:force_lock_stitches="True" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 6"/>
</g>
<g inkscape:groupmode="layer" inkscape:label="GlyphLayer-Ù" style="display:none;fill:none;stroke:#00673e;stroke-width:0.945;stroke-opacity:1;stroke-miterlimit:4;" id="g158070">
<path d="m 16.7582,71.3912 c -2.106342,-2.481295 -2.445971,-5.828943 -2.540076,-8.953869 -0.637926,-8.926998 -0.269751,-17.884235 -0.05865,-26.820537 0.133021,-5.654828 0.387374,-11.30681 0.806244,-16.946346 -5.38e-4,-0.418949 -0.0011,-0.837899 -0.0016,-1.256848" inkstitch:running_stitch_length_mm="2" id="autosatinrun284" inkscape:label="Points droits pour auto-remplissage satin 1" inkstitch:ties="3" sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin406" d="m 15.2187,16.0357 5.5313,0.0893 0.5055,0.2175 0.4301,0.636 0.2276,1.0868 -0.1024,1.5697 -0.4471,3.7715 -0.3093,4.8897 -0.281,11.4447 0.0428,10.8503 0.215,6.8776 0.2255,2.5483 0.3872,2.4349 0.6355,2.3261 L 23.25,67 l 0.629,0.9144 0.8257,0.8071 0.9678,0.656 1.0554,0.4608 1.0884,0.2217 1.0669,-0.0612 0.9909,-0.3882 0.8603,-0.759 0.7652,-1.1 0.606,-1.1817 0.0241,-0.0736 M 14.3125,16.0045 12.4534,15.9075 10.4444,15.9014 9.55144,16.0517 8.82247,16.3676 8.3246,16.897 8.125,17.6875 7,47.3245 l -0.16046,5.2547 -0.00968,5.2591 0.2678,10.5152 0.2518,2.0562 0.58496,1.9855 0.88597,1.8753 1.15486,1.7256 1.39155,1.5362 1.5962,1.3073 1.7687,1.0389 1.9089,0.7309 2.4035,0.4372 2.4522,0.0829 4.9342,-0.1295 3.2791,0.0586 3.3061,-0.1436 1.6075,-0.262 1.5474,-0.4495 1.4651,-0.6829 1.3604,-0.962 1.2364,-1.2234 1.0544,-1.3719 0.0971,-0.1658 M 4.98192,60.0268 22.6078,60.0697 m 4.7926,8.2595 V 82.6481 M 6.5,21.4375 22.6875,21.375" sodipodi:nodetypes="csssssssssccssssssscccccccccccc" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 2"/>
<path d="M 37.4203,69.7506 C 39.094677,65.902319 38.530223,61.626771 38.8706,57.5531 39.211014,48.784491 38.375874,40.028951 37.9112,31.2799 37.529358,27.347753 37.526257,23.395589 37.318624,19.45563 37.20935,18.315309 36.838125,17.220939 36.9209,16.0591" inkstitch:running_stitch_length_mm="2" id="autosatinrun285" inkscape:label="Points droits pour auto-remplissage satin 3" inkstitch:ties="3" sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" style="stroke-dasharray:0.5, 0.5;"/>
<path d="M 28.2934,10.0163 C 25.912241,9.384368 23.553657,8.4366366 21.817266,6.6219818 21.071503,5.7942094 20.727366,4.6320939 20.074887,3.7744697 18.842168,2.9796257 17.457679,2.4943019 16.1988,1.74473" inkstitch:running_stitch_length_mm="2" id="autosatinrun286" inkscape:label="Points droits pour auto-remplissage satin 4" inkstitch:ties="3" sodipodi:nodetypes="ccccccccccccccccccc" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin407" d="m 14.7895,1.11825 c -0.2449,0.29897 -0.2978,0.5235 -0.283,0.9341 -0.0775,1.44143 0.5691,2.8096 1.2699,4.03105 0.9754,1.756 2.8586,2.70985 4.6797,3.35958 2.8537,1.19152 5.7899,1.17592 8.828,1.14632 M 15.0395,0.813564 c 0.2677,-0.283969 0.4995,-0.240685 0.9976,-0.234403 2.7049,0.03411 5.3352,-0.03392 8.0019,0.03639 0.6342,2.802039 1.3096,4.836199 2.6506,6.742559 1.2465,1.77191 2.4906,0.82218 2.8055,3.23119 M 26.4638,4.15178 16.4326,9.30803" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 5"/>
<path id="autosatin408" d="m 36.4678,16.0435 -2.292,0.0408 -2.2892,0.194 -0.5006,0.161 -0.3147,0.286 -0.2106,0.8268 0.2799,1.8307 L 32.7183,32.432 34,46 l 0.2428,6.3576 -0.1153,3.1785 -0.3228,3.1592 -0.3652,2.6632 -0.4993,2.6693 -0.8105,2.4685 m 5.2443,-50.4216 2.6545,0.1146 1.7908,0.4123 0.6202,0.3254 0.4627,0.409 0.3245,0.4957 0.206,0.5855 0.134,1.4524 -0.107,1.8484 -0.1922,2.2687 -0.1218,2.7136 L 44,66 l -0.0408,1.7426 -0.2004,1.7429 -0.3636,1.7183 -0.5307,1.6689 -0.7015,1.5948 -0.779,1.33 M 31.0376,60.0893 45.3887,60.184 M 30.25,21.3125 H 45.5 m -13.8028,44.6233 10.201,10.2409" sodipodi:nodetypes="csssssssssccssssssscccccccccccc" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="2" inkstitch:force_lock_stitches="True" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 6"/>
</g>
<g inkscape:groupmode="layer" inkscape:label="GlyphLayer-Ø" style="display:none;fill:none;stroke:#00673e;stroke-width:0.945;stroke-opacity:1;stroke-miterlimit:4;" id="g158066">
<path d="m 11.5861,70.0503 c 0.238404,-4.696729 1.117104,-9.337427 2.060562,-13.92462 -0.0047,-2.656595 -0.453352,-5.302008 -0.362927,-7.968502 -0.01116,-5.91498 0.355555,-11.855116 1.360202,-17.687206 0.833514,-4.065236 2.385412,-8.5084 6.129712,-10.751771 2.923124,-1.720935 6.512194,-1.275654 9.705237,-0.721033 2.110016,0.374641 4.314374,1.521327 5.125114,3.616432 -0.366824,1.488892 -0.744592,2.975264 -1.1849,4.4444" inkstitch:running_stitch_length_mm="2" id="autosatinrun280" inkscape:label="Points droits pour auto-remplissage satin 1" inkstitch:ties="3" sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin401" d="m 33,31 c -0.8386,-4.1866 -2.3876,-10.0152 -7,-10 -5.1041,0.0168 -6.5465,6.9487 -6.5,11 0.0915,7.9691 -0.7954,15.5406 0.8813,23.7955 L 12.0208,71.3344 M 34.1179,29.0847 40,19 C 38.6667,17.6667 37.5,16.8333 36.5,16.5 35.5,16.1667 34.3333,16 33,16 H 23 c -2,0 -4,0.6667 -6,2 -2,1.3333 -3.6667,3.3333 -5,6 -1.3333,2.6667 -2.5,6.3333 -3.5,11 -1,4.6667 -1.5,10.3333 -1.5,17 0,4.6667 0.33333,8.6667 1,12 0.66667,3.3333 1.66667,6.3333 3,9 M 26.3397,14.4123 26.163,22.6324 M 5.65685,49.9002 20.4177,49.7234 M 8.13173,31.9574 H 20.3735" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" sodipodi:nodetypes="cssccccssssssssccccc" inkscape:label="Auto-remplissage satin 2"/>
<path d="m 14.158,73.809 c -1.468286,2.707286 -2.98193,5.389468 -4.31568,8.167" inkstitch:running_stitch_length_mm="2" id="autosatinrun281" inkscape:label="Points droits pour auto-remplissage satin 3" inkstitch:ties="3" sodipodi:nodetypes="ccccccccccc" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin402" d="m 10.1562,83 h 2.4532 L 13.3584,82.3806 13.94,81.4252 15,79 22.8941,64.1986 M 9.54688,83 H 7 L 6.5625,82.9375 6.25,82.75 6.0625,82.4375 6,82 l 5,-9 4.743,-8.5374 m -0.4062,0.1005 7.8678,-0.2894" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 4"/>
<path d="M 20.8047,61.6288 C 26.61015,51.25355 31.883892,40.593324 37.428009,30.079189 40.203884,25.196411 42.764973,20.195597 45.604,15.3489" inkstitch:running_stitch_length_mm="2" id="autosatinrun282" inkscape:label="Points droits pour auto-remplissage satin 5" inkstitch:ties="3" sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin403" d="M 45.75,14 H 44 L 43.3376,14.1493 42.8765,14.5504 42,16 40,19 33,31 21,55 15.743,64.4626 M 46.4375,14 l 2.1797,-0.0312 0.4348,0.0633 0.2566,0.1987 0.0066,0.3255 L 49,15 44,25 35,42 23,64 22.8941,64.1986 M 22.8926,47.9115 h 10.6066" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 6"/>
<path id="autosatin404" d="m 23.28125,65.1875 0.67375,0.9036 0.6111,0.8688 0.7015,0.733 0.7931,0.584 0.8858,0.4214 0.9794,0.2455 L 29,69 l 1.5373,-0.2746 1.2931,-0.667 1.0679,-1.0159 0.6879,-1.0542 m -11.04625,0.43385 -6.711825,13.0466 c -0.03983,0.07742 1.755441,1.135155 3.5,1.5 C 24.107238,81.04484 29.120133,81.143036 34,81 c 0.490315,-0.01564 1.4687,-0.0938 1.4687,-0.0938 L 36.875,80.625 38.2187,80.1562 39.5,79.5 40.7188,78.6562 41.875,77.625 42.9688,76.4062 44,75 44.9375,73.3125 45.5313,71.8053 M 28.5,66.75 v 16.5" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" sodipodi:nodetypes="csccccsssssssscccccccccccccc" inkscape:label="Auto-remplissage satin 7"/>
<path d="M 40.0717,67.4532 C 41.838284,61.480427 41.945721,55.188211 41.7091,49.0123 41.68233,46.301904 41.181413,43.573945 41.520929,40.877169 42.387155,36.53123 43.066986,32.143464 43.4198,27.7243" inkstitch:running_stitch_length_mm="2" id="autosatinrun283" inkscape:label="Points droits pour auto-remplissage satin 8" inkstitch:ties="3" sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccc" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin405" d="M 43.1023,26.6768 35,42 l 0.5356,7.4224 0.1416,4.4178 -0.1466,4.4225 -0.2293,2.1036 -0.3587,1.9735 -0.5073,1.7997 -0.6751,1.5821 -0.174,0.2667 M 44,25 44.9375,27.5937 45.75,30.375 46.4375,33.3438 47,36.5 47.4375,39.9062 47.75,43.625 48,52 47.75,59.5 47.4375,62.875 47,66 46.4375,68.8125 45.75,71.25 45.5313,71.8053 M 32.7184,63.8085 49.5568,64.0446 M 34.5157,47.8231 48.923,47.7347 m -15.8785,17.8795 13.1198,6.3884" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="2" inkstitch:force_lock_stitches="True" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" sodipodi:nodetypes="csccccssssssssccccc" inkscape:label="Auto-remplissage satin 9"/>
</g>
<g inkscape:groupmode="layer" inkscape:label="GlyphLayer-Ö" style="display:none;fill:none;stroke:#00673e;stroke-width:0.945;stroke-opacity:1;stroke-miterlimit:4;" id="g158062">
<path d="M 17.9114,71.6972 C 14.920167,68.157461 14.729549,63.312753 14.053041,58.937349 13.338224,53.561262 13.228166,48.111237 13.419265,42.696575 c 0.308893,-5.884188 0.720083,-11.918683 3.092674,-17.392838 1.115121,-2.85482 3.418045,-5.431179 6.553483,-5.966355 0.616357,-0.175241 1.265815,-0.181419 1.896878,-0.279382" inkstitch:running_stitch_length_mm="2" id="autosatinrun276" inkscape:label="Points droits pour auto-remplissage satin 1" inkstitch:ties="3" sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin395" d="m 26.4993,22.2851 -1.8434,0.1515 -0.2416,0.0655 m 2.0882,-6.7966 -1.293,-0.0068 -1.7753,0.1113 -0.9776,0.1727 m 3.9429,6.64 0.0032,-7.2471" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" sodipodi:nodetypes="cssssccscccccsscsscsccccccccccc" inkscape:label="Auto-remplissage satin 2"/>
<path d="M 20.927125,10.354975 C 20.759574,7.1260921 20.689464,3.8868648 21.013475,0.66485" inkstitch:running_stitch_length_mm="2" id="autosatinrun277" inkscape:label="Points droits pour auto-remplissage satin 3" inkstitch:ties="3" sodipodi:nodetypes="ccccccccccc" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin396" d="m 20.8141,-0.0384569 c -1.4636,0 -2.5224,0.5854419 -3.5469,1.7563269 -1.0246,1.17089 -1.5368,2.48814 -1.5368,3.95175 0,1.4636 0.5122,2.70767 1.5368,3.7322 1.0245,1.02448 2.1085,1.54168 3.5721,1.54168 m 0.3865,-10.9785279 c 1.4636,0 2.4081,0.5820129 3.2862,1.7528979 0.8782,1.17089 1.3173,2.48814 1.3173,3.95175 0,1.4636 -0.4391,2.70767 -1.3173,3.7322 -0.8781,1.02448 -1.855,1.54168 -3.3186,1.54168" inkstitch:satin_column="True" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkscape:label="Auto-remplissage satin 4"/>
<path id="autosatin397" d="m 24.4143,22.5021 -1.2013,0.3259 -1.055,0.6829 -0.6798,1.0263 -0.626,1.7427 -0.4778,1.7639 -0.5975,3.578 -0.2642,3.623 -0.1037,3.6413 -0.0134,5.7505 0.2632,5.8586 0.6196,5.7234 1.0558,5.345 0.7459,2.5871 0.5278,1.2597 0.7007,1.1574 0.9259,0.9956 1.2035,0.7741 1.5333,0.493 1.9154,0.1522 1.4907,-0.1909 1.2222,-0.4799 0.9796,-0.718 0.7629,-0.9049 0.095,-0.1729 m -10.9805,-50.5334 -0.7712,0.1362 -1.6966,0.5022 -1.6188,0.6915 -1.5154,0.8764 -1.3864,1.0571 -1.2318,1.2336 -1.0516,1.4059 -1.3409,2.5605 -1.1291,2.6501 -0.93714,2.7243 -0.76486,2.7832 -1.09199,5.6816 -0.64002,5.7333 -0.21178,6.2585 0.04548,6.2706 0.44912,6.2492 0.42165,3.106 0.57745,3.088 0.56057,2.0266 0.79361,1.9508 1.01631,1.8314 1.2287,1.6685 1.4308,1.4622 1.6225,1.2123 1.804,0.9189 1.9751,0.582 3.3626,0.4174 3.3982,0.0773 6.8145,-0.1455 1.9091,-0.1143 1.8323,-0.3452 1.7346,-0.5668 1.6162,-0.7793 1.477,-0.9825 1.3171,-1.1767 1.1363,-1.3616 0.5719,-0.9404 M 6.25,62.0625 H 22.4375 M 28.25,66.75 v 16.5 M 7.88281,31.9844 20.6875,32.0625" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" sodipodi:nodetypes="cssssccscccccsscsscsccccccccccc" inkscape:label="Auto-remplissage satin 5"/>
<path d="m 39.5161,69.1943 c 1.9618,-4.641692 1.81915,-9.782661 1.987249,-14.724425 0.06665,-6.587831 0.03402,-13.198348 -0.64142,-19.756931 C 40.3724,29.710869 38.858625,24.42461 34.997559,20.969909 33.13284,19.268038 30.486183,19.068586 28.0808,19.0294" inkstitch:running_stitch_length_mm="2" id="autosatinrun278" inkscape:label="Points droits pour auto-remplissage satin 6" inkstitch:ties="3" sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin398" d="m 27.5338,15.7055 2.8958,0.029 m -3.024,6.5818 1.3632,0.0985 0.0308,0.007 m -0.1805,0.3219 1.792,-7.344" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" sodipodi:nodetypes="cssssccscccccsscsscsccccccccccc" inkscape:label="Auto-remplissage satin 7"/>
<path d="M 35.145875,10.386225 C 34.770051,7.1286457 34.89027,3.8233548 35.09813,0.5570076" inkstitch:running_stitch_length_mm="2" id="autosatinrun279" inkscape:label="Points droits pour auto-remplissage satin 8" inkstitch:ties="3" sodipodi:nodetypes="cccccccccccc" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin399" d="m 34.9391,-0.0384569 c -1.4636,0 -2.5224,0.5854419 -3.5469,1.7563269 -1.0246,1.17089 -1.5368,2.48814 -1.5368,3.95175 0,1.4636 0.5122,2.70767 1.5368,3.7322 1.0245,1.02448 2.1085,1.54168 3.5721,1.54168 m 0.3865,-10.9785279 c 1.4636,0 2.4081,0.5820129 3.2862,1.7528979 0.8782,1.17089 1.3173,2.48814 1.3173,3.95175 0,1.4636 -0.4391,2.70767 -1.3173,3.7322 -0.8781,1.02448 -1.855,1.54168 -3.3186,1.54168" inkstitch:satin_column="True" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkscape:label="Auto-remplissage satin 9"/>
<path id="autosatin400" d="m 29.0433,22.4774 0.9639,0.2199 1.0076,0.4558 0.6714,0.6184 1.2087,2.057 0.8698,2.0322 0.587,2.0336 0.3599,2.0612 0.2627,4.3099 L 35,41 l 0.0891,10.3966 -0.0669,5.3163 -0.2794,5.5069 -0.4219,2.3024 -0.4068,1.1259 -0.477,0.868 m -2.4898,-50.7764 0.5314,0.0053 2.0046,0.1953 1.8429,0.3993 1.6389,0.657 1.4923,0.9004 1.3519,1.1059 1.2176,1.2733 1.0895,1.4027 0.9676,1.4942 1.594,3.1103 1.0239,3.2792 0.7987,3.2822 0.5991,3.2744 0.4252,3.256 0.4314,6.4136 L 48,52 l -0.0992,5.6507 -0.3794,5.6696 -0.4038,2.796 -0.6046,2.7457 -0.849,2.6771 -1.137,2.59 -0.363,0.5969 M 33.4991,62.5653 48.9375,62.875 M 33.5,31.9375 47.375,32 m -14.4263,34.0179 11.8038,9.0333" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="2" inkstitch:force_lock_stitches="True" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" sodipodi:nodetypes="cssssccscccccsscsscsccccccccccc" inkscape:label="Auto-remplissage satin 10"/>
</g>
<g inkscape:groupmode="layer" inkscape:label="GlyphLayer-Õ" style="display:none;fill:none;stroke:#00673e;stroke-width:0.945;stroke-opacity:1;stroke-miterlimit:4;" id="g158058">
<path d="M 17.9701,71.5395 C 14.683199,67.580009 14.360309,62.220858 13.783,57.327 13.096951,48.817792 13.088217,40.20014 14.520168,31.764419 15.438042,28.006667 16.401351,23.937399 19.2816,21.1551 c 1.5947,-1.358176 3.612476,-1.948355 5.6726,-2.0966" inkstitch:running_stitch_length_mm="2" id="autosatinrun273" inkscape:label="Points droits pour auto-remplissage satin 1" inkstitch:ties="3" sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin391" d="m 26.4993,22.2851 -1.8434,0.1515 -0.2416,0.0655 m 2.0882,-6.7966 -1.293,-0.0068 -1.7753,0.1113 -1.0096,0.1783 m 3.9749,6.6344 0.0032,-7.2471" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" sodipodi:nodetypes="cssssccscccccsscsscsccccccc" inkscape:label="Auto-remplissage satin 2"/>
<path d="M 20.8723,9.28206 C 22.224106,7.0676641 24.849451,6.0069275 27.3614,5.87565 29.907562,5.5250065 32.716764,6.0028601 35.004534,4.6315252 35.863302,4.0454008 36.268482,3.2831175 36.5463,2.29742" inkstitch:running_stitch_length_mm="2" id="autosatinrun274" inkscape:label="Points droits pour auto-remplissage satin 3" inkstitch:ties="3" sodipodi:nodetypes="ccccccccccccccccccccccc" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin392" d="m 36.6489,0.972308 0.7942,1.028282 0.5189,1.14279 0.3092,1.23255 0.1648,1.29755 -0.0525,1.01336 -0.2582,0.98064 -0.4851,0.88257 -0.7335,0.71913 -0.9974,0.60843 -1.0722,0.46369 -1.1229,0.31 -1.1494,0.1472 -1.2773,-0.0162 -1.2671,-0.1544 -2.5054,-0.5223 -2.8272,-0.52394 -1.4044,-0.05837 -1.3457,0.27714 -0.9138,0.53707 -0.4924,0.377 M 36.4379,0.800434 35.2284,2.00991 34.3796,2.58794 33.3129,2.79848 31.9463,2.62853 30.5731,2.24856 27.7824,1.28488 26.3526,0.914344 24.8917,0.760128 23.3935,0.928817 21.8518,1.527 20.7334,2.41394 20.312,3.00672 20.0481,3.67543 19.5487,5.44611 19.4588,7.27806 19.761,9.08994 20.4377,10.8004 M 18.4064,7.05043 24.094,10.2379 m 9.4064,-8.43747 6.1251,2.28125" sodipodi:nodetypes="ccsssccscsscccccc" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 4"/>
<path id="autosatin393" d="m 24.4143,22.5021 -1.2013,0.3259 -1.055,0.6829 -0.6798,1.0263 -0.626,1.7427 -0.4778,1.7639 -0.5975,3.578 -0.2642,3.623 -0.1037,3.6413 -0.0134,5.7505 0.2632,5.8586 0.6196,5.7234 1.0558,5.345 0.7459,2.5871 0.5278,1.2597 0.7007,1.1574 0.9259,0.9956 1.2035,0.7741 1.5333,0.493 1.9154,0.1522 1.4907,-0.1909 1.2222,-0.4799 0.9796,-0.718 0.7629,-0.9049 0.572,-1.0409 0.1562,-0.4322 m -11.6457,-49.2276 -0.7392,0.1306 -1.6966,0.5022 -1.6188,0.6915 -1.5154,0.8764 -1.3864,1.0571 -1.2318,1.2336 -1.0516,1.4059 -1.3409,2.5605 -1.1291,2.6501 -0.93714,2.7243 -0.76486,2.7832 -1.09199,5.6816 -0.64002,5.7333 -0.21178,6.2585 0.04548,6.2706 0.44912,6.2492 0.42165,3.106 0.57745,3.088 0.56057,2.0266 0.79361,1.9508 1.01631,1.8314 1.2287,1.6685 1.4308,1.4622 1.6225,1.2123 1.804,0.9189 1.9751,0.582 3.3626,0.4174 3.3982,0.0773 6.8145,-0.1455 1.9091,-0.1143 1.8323,-0.3452 1.7346,-0.5668 1.6162,-0.7793 1.477,-0.9825 1.3171,-1.1767 0.8029,-0.9621 M 6.59375,62.8125 22.4375,62.71875 M 28.25,66.75 v 16.5 M 7.5,32.125 21,32" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" sodipodi:nodetypes="cssssccscccccsscsscsccccccccccccccccccccccccccccccccccccccccccccccccc" inkscape:label="Auto-remplissage satin 5"/>
<path d="M 39.4169,69.2471 C 41.622197,63.708471 41.417279,57.631562 41.536449,51.775797 41.481213,45.236604 41.498942,38.655179 40.51351,32.175949 39.757833,27.760926 37.977043,23.182319 34.28964,20.419972 32.678729,19.262889 30.619426,19.132663 28.7023,19.0483" inkstitch:running_stitch_length_mm="2" id="autosatinrun275" inkscape:label="Points droits pour auto-remplissage satin 6" inkstitch:ties="3" sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin394" d="m 27.4056,22.3163 1.3632,0.0985 1.2384,0.2825 1.0076,0.4558 0.6714,0.6184 1.2087,2.057 0.8698,2.0322 0.587,2.0336 0.3599,2.0612 0.2627,4.3099 L 35,41 l 0.0891,10.3966 -0.0669,5.3163 -0.2794,5.5069 -0.4219,2.3024 -0.2507,0.6937 m -6.5364,-49.5104 3.9449,0.0395 2.0046,0.1953 1.8429,0.3993 1.6389,0.657 1.4923,0.9004 1.3519,1.1059 1.2176,1.2733 1.0895,1.4027 0.9676,1.4942 1.594,3.1103 1.0239,3.2792 0.7987,3.2822 0.5991,3.2744 0.4252,3.256 0.4314,6.4136 L 48,52 l -0.0992,5.6507 -0.3794,5.6696 -0.4038,2.796 -0.6046,2.7457 -0.849,2.6771 -1.137,2.59 -0.9348,1.5373 -0.3334,0.3995 M 33.53125,62.34375 H 48.5 M 33.375,32 h 14 m -13.7317,32.5785 10.1405,11.954" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="2" inkstitch:force_lock_stitches="True" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" sodipodi:nodetypes="cssssccscccccsscsscsccccccccccccccccccccccccccc" inkscape:label="Auto-remplissage satin 7"/>
</g>
<g inkscape:groupmode="layer" inkscape:label="GlyphLayer-Ô" style="display:none;fill:none;stroke:#00673e;stroke-width:0.945;stroke-opacity:1;stroke-miterlimit:4;" id="g158054">
<path d="M 17.9688,71.5421 C 14.649102,67.534553 14.354001,62.119281 13.766261,57.175085 13.103961,48.663518 13.085782,40.042696 14.555074,31.611291 15.488817,27.85973 16.451409,23.746028 19.4274,21.0503 c 1.548102,-1.306353 3.541136,-1.83856 5.5261,-1.9917" inkstitch:running_stitch_length_mm="2" id="autosatinrun268" inkscape:label="Points droits pour auto-remplissage satin 1" inkstitch:ties="3" sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin385" d="m 26.4993,22.2851 -1.8434,0.1515 -0.2416,0.0655 m 2.0882,-6.7966 -1.293,-0.0068 -1.7753,0.1113 -1.0123,0.1788 m 3.9776,6.6339 0.0032,-7.2471" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" sodipodi:nodetypes="cssssccscccccsscsscsccccccc" inkscape:label="Auto-remplissage satin 2"/>
<path d="M 19.7273,9.31306 C 19.215626,9.4844708 18.682782,9.60272 18.1636,9.75383" inkstitch:running_stitch_length_mm="2" id="autosatinrun269" inkscape:label="Points droits pour auto-remplissage satin 3" inkstitch:ties="3" sodipodi:nodetypes="ccc" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin386" d="M 16.8154,10.3987 16.967,9.54952 17.4929,8.92005 18.2415,8.45618 18.964,8.14565 m -2.1045,2.54035 1.2926,5e-4 2.1954,-0.1402 m -3.5209,-0.2653 0.1393,0.4243" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 4"/>
<path d="M 19.7273,9.31306 C 21.982896,8.5407218 23.470883,6.6251125 24.963253,4.8863817 25.815764,4.0761968 25.742998,2.7277402 26.528035,1.8318673 26.73325,1.5243071 26.772234,1.1425214 26.8977,0.800138" inkstitch:running_stitch_length_mm="2" id="autosatinrun270" inkscape:label="Points droits pour auto-remplissage satin 5" inkstitch:ties="3" sodipodi:nodetypes="ccccccccccccccc" style="stroke-dasharray:0.5, 0.5;"/>
<path d="m 28.6078,1.19705 c 0.719715,0.9571607 0.984953,2.1297538 1.494107,3.1723923 1.589039,2.4798178 3.925215,4.5494879 6.834593,5.2713577 0.474733,0.1725 0.949467,0.345 1.4242,0.5175" inkstitch:running_stitch_length_mm="2" id="autosatinrun271" inkscape:label="Points droits pour auto-remplissage satin 6" inkstitch:ties="3" sodipodi:nodetypes="cccccccccccccccccc" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin387" d="m 38.9324,10.5603 -0.8742,0.1418 -0.8827,-5e-4 L 35.3974,10.6229 33.5283,10.4564 31.7266,9.88267 30.1261,8.92884 28.8604,7.62203 28.405,7.14268 27.8911,6.95267 27.8752,0.404757 M 39.0429,10.2951 38.6309,9.53358 38.0056,8.94503 36.2853,7.67264 34.968,6.31754 33.8283,4.64948 32.4797,2.63023 30.945,0.752923 30.4182,0.270099 29.739,-0.0622236 28.8974,-0.255568 27.8834,-0.321456 M 36.422,5.84226 32.5783,11.7173" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 7"/>
<path id="autosatin388" d="m 27.8752,0.404757 0.0159,6.547913 -0.4296,0.0874 -0.4735,0.31519 -1.9262,1.43033 -2.1605,1.0857 -2.3261,0.66051 -0.2277,0.0145 m 7.5359,-10.867755 -1.3895,0.07305 -1.3624,0.300807 -1.2137,0.62877 -0.9435,1.056938 -0.7859,1.80902 -0.7367,1.91755 -0.9767,1.52958 -0.6482,0.6251 -0.7653,0.4844 -0.0975,0.04189 m 0.708,-2.27214 3.0625,5.21879" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 8"/>
<path id="autosatin389" d="m 24.4143,22.5021 -1.2013,0.3259 -1.055,0.6829 -0.6798,1.0263 -0.626,1.7427 -0.4778,1.7639 -0.5975,3.578 -0.2642,3.623 -0.1037,3.6413 -0.0134,5.7505 0.2632,5.8586 0.6196,5.7234 1.0558,5.345 0.7459,2.5871 0.5278,1.2597 0.7007,1.1574 0.9259,0.9956 1.2035,0.7741 1.5333,0.493 1.9154,0.1522 1.4907,-0.1909 1.2222,-0.4799 0.9796,-0.718 0.7629,-0.9049 0.572,-1.0409 0.1731,-0.4792 m -11.6653,-49.1801 -0.7365,0.1301 -1.6966,0.5022 -1.6188,0.6915 -1.5154,0.8764 -1.3864,1.0571 -1.2318,1.2336 -1.0516,1.4059 -1.3409,2.5605 -1.1291,2.6501 -0.93714,2.7243 -0.76486,2.7832 -1.09199,5.6816 -0.64002,5.7333 -0.21178,6.2585 0.04548,6.2706 0.44912,6.2492 0.42165,3.106 0.57745,3.088 0.56057,2.0266 0.79361,1.9508 1.01631,1.8314 1.2287,1.6685 1.4308,1.4622 1.6225,1.2123 1.804,0.9189 1.9751,0.582 3.3626,0.4174 3.3982,0.0773 6.8145,-0.1455 1.9091,-0.1143 1.8323,-0.3452 1.7346,-0.5668 1.6162,-0.7793 1.477,-0.9825 1.3171,-1.1767 0.8734,-1.0466 M 3.75,55.25 h 19 m 5.5,11.5 v 16.5 M 7.84375,32 20.4375,31.9375" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" sodipodi:nodetypes="cssssccscccccsscsscsccccccc" inkscape:label="Auto-remplissage satin 9"/>
<path d="M 39.45,69.1755 C 41.646501,63.565319 41.420825,57.42531 41.537416,51.505238 41.473862,45.016353 41.49126,38.484156 40.492288,32.057271 39.72343,27.656597 37.914438,23.097318 34.219455,20.368933 32.594297,19.244956 30.534856,19.125812 28.6217,19.0458" inkstitch:running_stitch_length_mm="2" id="autosatinrun272" inkscape:label="Points droits pour auto-remplissage satin 10" inkstitch:ties="3" sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin390" d="m 27.4056,22.3163 1.3632,0.0985 1.2384,0.2825 1.0076,0.4558 0.6714,0.6184 1.2087,2.057 0.8698,2.0322 0.587,2.0336 0.3599,2.0612 0.2627,4.3099 L 35,41 l 0.0891,10.3966 -0.0669,5.3163 -0.2794,5.5069 -0.4219,2.3024 -0.2337,0.6467 m -6.5534,-49.4634 3.9449,0.0395 2.0046,0.1953 1.8429,0.3993 1.6389,0.657 1.4923,0.9004 1.3519,1.1059 1.2176,1.2733 1.0895,1.4027 0.9676,1.4942 1.594,3.1103 1.0239,3.2792 0.7987,3.2822 0.5991,3.2744 0.4252,3.256 0.4314,6.4136 L 48,52 l -0.0992,5.6507 -0.3794,5.6696 -0.4038,2.796 -0.6046,2.7457 -0.849,2.6771 -1.137,2.59 -0.9348,1.5373 -0.2629,0.315 M 33.25,55.5 l 17,-0.25 M 33.75,32 47.1875,31.9688 M 33.6576,64.5333 43.857,76.4461" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="2" inkstitch:force_lock_stitches="True" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" sodipodi:nodetypes="cssssccscccccsscsscsccccccc" inkscape:label="Auto-remplissage satin 11"/>
</g>
<g inkscape:groupmode="layer" inkscape:label="GlyphLayer-Ó" style="display:none;fill:none;stroke:#00673e;stroke-width:0.945;stroke-opacity:1;stroke-miterlimit:4;" id="g158050">
<path d="M 17.9696,71.543 C 14.681614,67.580517 14.362301,62.223878 13.7832,57.3295 13.098293,48.764347 13.079483,40.085387 14.559787,31.59985 15.49269,27.851872 16.458296,23.747773 19.427,21.0504 c 1.552997,-1.303298 3.542375,-1.841133 5.5307,-1.9921" inkstitch:running_stitch_length_mm="2" id="autosatinrun265" inkscape:label="Points droits pour auto-remplissage satin 1" inkstitch:ties="3" sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" style="stroke-dasharray:0.5, 0.5;"/>
<path d="M 24.7955,10.0163 C 27.306372,9.3445365 29.883474,8.3208133 31.556545,6.250208 32.36477,5.2840187 32.484243,3.7450188 33.807414,3.3115048 34.820394,2.7628289 35.897561,2.3379652 36.89,1.74473" inkstitch:running_stitch_length_mm="2" id="autosatinrun266" inkscape:label="Points droits pour auto-remplissage satin 2" inkstitch:ties="3" sodipodi:nodetypes="ccccccccccccccccccc" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin382" d="m 38.2993,1.11825 c 0.245,0.29897 0.2979,0.5235 0.2831,0.9341 0.0775,1.44143 -0.5691,2.8096 -1.27,4.03105 -0.9753,1.756 -2.8586,2.70985 -4.6796,3.35958 -2.8538,1.19152 -5.7899,1.17592 -8.8281,1.14632 M 38.0493,0.813564 C 37.7817,0.529595 37.5499,0.572879 37.0518,0.579161 34.3469,0.613271 31.7165,0.545241 29.0498,0.615551 28.4157,3.41759 27.7403,5.45175 26.3992,7.35811 25.1527,9.13002 23.9086,8.18029 23.5938,10.5893 M 26.625,4.15178 36.6563,9.30803" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 3"/>
<path id="autosatin383" d="m 26.4993,22.2851 -1.8434,0.1515 -1.4429,0.3914 -1.055,0.6829 -0.6798,1.0263 -0.626,1.7427 -0.4778,1.7639 -0.5975,3.578 -0.2642,3.623 -0.1037,3.6413 -0.0134,5.7505 0.2632,5.8586 0.6196,5.7234 1.0558,5.345 0.7459,2.5871 0.5278,1.2597 0.7007,1.1574 0.9259,0.9956 1.2035,0.7741 1.5333,0.493 1.9154,0.1522 1.4907,-0.1909 1.2222,-0.4799 0.9796,-0.718 0.7629,-0.9049 0.572,-1.0409 0.1731,-0.4792 m -7.5847,-49.4634 -1.293,-0.0068 -1.7753,0.1113 -1.7488,0.3089 -1.6966,0.5022 -1.6188,0.6915 -1.5154,0.8764 -1.3864,1.0571 -1.2318,1.2336 -1.0516,1.4059 -1.3409,2.5605 -1.1291,2.6501 -0.93714,2.7243 -0.76486,2.7832 -1.09199,5.6816 -0.64002,5.7333 -0.21178,6.2585 0.04548,6.2706 0.44912,6.2492 0.42165,3.106 0.57745,3.088 0.56057,2.0266 0.79361,1.9508 1.01631,1.8314 1.2287,1.6685 1.4308,1.4622 1.6225,1.2123 1.804,0.9189 1.9751,0.582 3.3626,0.4174 3.3982,0.0773 6.8145,-0.1455 1.9091,-0.1143 1.8323,-0.3452 1.7346,-0.5668 1.6162,-0.7793 1.477,-0.9825 1.3171,-1.1767 0.8734,-1.0466 M 3.75,55.25 h 19 m 5.5,11.5 v 16.5 M 7.375,32 h 13.75" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" sodipodi:nodetypes="cssssccscccccsscsscsccccccc" inkscape:label="Auto-remplissage satin 4"/>
<path d="M 39.45,69.1755 C 41.645697,63.567383 41.420839,57.429702 41.537375,51.511752 41.473991,45.017916 41.491131,38.480586 40.490035,32.048945 39.723187,27.647441 37.908206,23.089619 34.212217,20.363839 32.58421,19.243952 30.526743,19.125182 28.613,19.0456" inkstitch:running_stitch_length_mm="2" id="autosatinrun267" inkscape:label="Points droits pour auto-remplissage satin 5" inkstitch:ties="3" sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin384" d="m 27.4056,22.3163 1.3632,0.0985 1.2384,0.2825 1.0076,0.4558 0.6714,0.6184 1.2087,2.057 0.8698,2.0322 0.587,2.0336 0.3599,2.0612 0.2627,4.3099 L 35,41 l 0.0891,10.3966 -0.0669,5.3163 -0.2794,5.5069 -0.4219,2.3024 -0.2337,0.6467 m -6.5534,-49.4634 3.9449,0.0395 2.0046,0.1953 1.8429,0.3993 1.6389,0.657 1.4923,0.9004 1.3519,1.1059 1.2176,1.2733 1.0895,1.4027 0.9676,1.4942 1.594,3.1103 1.0239,3.2792 0.7987,3.2822 0.5991,3.2744 0.4252,3.256 0.4314,6.4136 L 48,52 l -0.0992,5.6507 -0.3794,5.6696 -0.4038,2.796 -0.6046,2.7457 -0.849,2.6771 -1.137,2.59 -0.9348,1.5373 -0.2629,0.315 M 33.25,55.5 l 17,-0.25 M 33,32 47.25,31.9375 M 33.6576,64.5333 43.857,76.4461" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="2" inkstitch:force_lock_stitches="True" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" sodipodi:nodetypes="cssssccscccccsscsscsccccccc" inkscape:label="Auto-remplissage satin 6"/>
</g>
<g inkscape:groupmode="layer" inkscape:label="GlyphLayer-Ò" style="display:none;fill:none;stroke:#00673e;stroke-width:0.945;stroke-opacity:1;stroke-miterlimit:4;" id="g158046">
<path d="M 17.9877,71.5666 C 15.339003,68.432703 14.619314,64.264106 14.119106,60.317376 13.477927,55.114328 13.300433,49.857197 13.429437,44.618322 13.71006,38.746124 14.264085,32.801184 16.154767,27.201561 17.081089,24.469629 18.651989,21.796909 21.102825,20.192206 22.251456,19.43513 23.63227,19.204459 24.976,19.0596" inkstitch:running_stitch_length_mm="2" id="autosatinrun262" inkscape:label="Points droits pour auto-remplissage satin 1" inkstitch:ties="3" sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin378" d="m 26.4993,22.2851 -1.8434,0.1515 -1.4429,0.3914 -1.055,0.6829 -0.6798,1.0263 -0.626,1.7427 -0.4778,1.7639 -0.5975,3.578 -0.2642,3.623 -0.1037,3.6413 -0.0134,5.7505 0.2632,5.8586 0.6196,5.7234 1.0558,5.345 0.7459,2.5871 0.5278,1.2597 0.7007,1.1574 0.9259,0.9956 1.2035,0.7741 1.5333,0.493 1.9154,0.1522 1.4907,-0.1909 1.2222,-0.4799 0.9796,-0.718 0.7629,-0.9049 0.572,-1.0409 0.1731,-0.4792 m -7.5847,-49.4634 -1.293,-0.0068 -1.7753,0.1113 -1.7488,0.3089 -1.6966,0.5022 -1.6188,0.6915 -1.5154,0.8764 -1.3864,1.0571 -1.2318,1.2336 -1.0516,1.4059 -1.3409,2.5605 -1.1291,2.6501 -0.93714,2.7243 -0.76486,2.7832 -1.09199,5.6816 -0.64002,5.7333 -0.21178,6.2585 0.04548,6.2706 0.44912,6.2492 0.42165,3.106 0.57745,3.088 0.56057,2.0266 0.79361,1.9508 1.01631,1.8314 1.2287,1.6685 1.4308,1.4622 1.6225,1.2123 1.804,0.9189 1.9751,0.582 3.3626,0.4174 3.3982,0.0773 6.8145,-0.1455 1.9091,-0.1143 1.8323,-0.3452 1.7346,-0.5668 1.6162,-0.7793 1.477,-0.9825 1.3171,-1.1767 0.8734,-1.0466 M 3.75,55.25 h 19 m 5.5,11.5 v 16.5 M 26.3995,22.6227 26.4027,15.3756 M 7.5625,32 20.6875,31.875" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" sodipodi:nodetypes="cssssccscccccsscsscsccccccc" inkscape:label="Auto-remplissage satin 2"/>
<path d="M 39.45,69.1755 C 41.343771,64.431877 41.394522,59.241921 41.508187,54.210478 41.594207,46.461308 41.450757,38.641518 39.9149,31.0199 38.976747,26.957141 37.172536,22.73684 33.551971,20.38829 32.423364,19.557027 31.021597,19.276007 29.6547,19.1253" inkstitch:running_stitch_length_mm="2" id="autosatinrun263" inkscape:label="Points droits pour auto-remplissage satin 3" inkstitch:ties="3" sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin379" d="m 27.5338,15.7055 2.5473,0.0255 m -2.6755,6.5853 1.3632,0.0985 0.4595,0.1048 m -0.14,0.3161 0.9353,-7.4441" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" sodipodi:nodetypes="cssssccscccccsscsscsccccccc" inkscape:label="Auto-remplissage satin 4"/>
<path d="M 29.6914,10.0163 C 28.71273,9.7036635 27.726314,9.4072954 26.759353,9.0631234 26.132167,8.7235909 25.472202,8.4383851 24.904848,7.9996862 24.482164,7.7218612 24.072432,7.4276469 23.712694,7.0701561 23.414796,6.7858319 23.056819,6.5516708 22.878897,6.1671745 22.516271,5.6005909 22.171026,5.0242769 21.88695,4.4136936 21.766028,4.223228 21.712666,3.9691934 21.549045,3.8189038 20.909443,3.4480297 20.283788,3.0503392 19.596876,2.7704297 18.906318,2.4755682 18.259488,2.0954098 17.5968,1.74473" inkstitch:running_stitch_length_mm="2" id="autosatinrun264" inkscape:label="Points droits pour auto-remplissage satin 5" inkstitch:ties="3" sodipodi:nodetypes="ccccccccccccccccccc" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin380" d="m 16.1875,1.11825 c -0.2449,0.29897 -0.2978,0.5235 -0.283,0.9341 -0.0775,1.44143 0.5691,2.8096 1.27,4.03105 0.9753,1.756 2.8585,2.70985 4.6796,3.35958 2.8537,1.19152 5.7899,1.17592 8.828,1.14632 M 16.4375,0.813564 c 0.2677,-0.283969 0.4995,-0.240685 0.9976,-0.234403 2.7049,0.03411 5.3352,-0.03392 8.0019,0.03639 0.6342,2.802039 1.3096,4.836199 2.6506,6.742559 1.2465,1.77191 2.4906,0.82218 2.8055,3.23119 M 27.8618,4.15178 17.8306,9.30803" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 6"/>
<path id="autosatin381" d="m 29.2282,22.5196 0.779,0.1777 1.0076,0.4558 0.6714,0.6184 1.2087,2.057 0.8698,2.0322 0.587,2.0336 0.3599,2.0612 0.2627,4.3099 L 35,41 l 0.0891,10.3966 -0.0669,5.3163 -0.2794,5.5069 -0.4219,2.3024 -0.2337,0.6467 M 30.081,15.731 l 1.3977,0.014 2.0046,0.1953 1.8429,0.3993 1.6389,0.657 1.4923,0.9004 1.3519,1.1059 1.2176,1.2733 1.0895,1.4027 0.9676,1.4942 1.594,3.1103 1.0239,3.2792 0.7987,3.2822 0.5991,3.2744 0.4252,3.256 0.4314,6.4136 L 48,52 l -0.0992,5.6507 -0.3794,5.6696 -0.4038,2.796 -0.6046,2.7457 -0.849,2.6771 -1.137,2.59 -0.9348,1.5373 -0.2629,0.315 M 33.25,55.5 l 17,-0.25 M 33,31.9375 47.4375,31.875" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="2" inkstitch:force_lock_stitches="True" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" sodipodi:nodetypes="cssssccscccccsscsscsccccccc" inkscape:label="Auto-remplissage satin 7"/>
</g>
<g inkscape:groupmode="layer" inkscape:label="GlyphLayer-Ñ" style="display:none;fill:none;stroke:#00673e;stroke-width:0.945;stroke-opacity:1;stroke-miterlimit:4;" id="g158042">
<path d="m 14.8452,73.9593 c 0.310965,2.096949 1.009934,4.125835 0.744506,6.264408" inkstitch:running_stitch_length_mm="2" id="autosatinrun259" inkscape:label="Points droits pour auto-remplissage satin 1" inkstitch:ties="3" sodipodi:nodetypes="cccccccc" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin372" d="m 16.0427,81.0745 c 2.798,-0.0168 6.3325,0.2161 7.4253,-0.538 C 25.6791,79.0109 22.8792,75.1447 21.8576,72.72 18.3855,64.4792 18.5499,46.4529 18.4466,37.2236 L 9.52344,17.7109 M 15.2251,81.0082 C 12.7425,81.0231 11.0093,81.2935 8.61346,80.5195 5.76044,78.2197 7.24747,74.2393 7.50281,71.1714 8.51274,62.4439 7.69556,53.6485 7.84791,44.8907 7.80748,35.5154 8.07925,26.1361 8.15643,16.7617 8.15902,16.4466 8.31006,16.2024 8.57298,16.0147 M 5.65685,55.3361 20.3293,55.2477" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 2"/>
<path id="autosatin373" d="m 8.57298,16.0147 0.61942,-0.2905 0.8302,-0.1777 2.0751,-0.1019 0.6384,0.0321 m -3.21266,2.2342 1.41606,3.0967 M 8.61844,15.8807 9.6101,17.8934" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 3"/>
<path d="M 18.4473,9.15706 C 19.887372,6.7725698 22.767292,5.789752 25.435034,5.711955 27.901996,5.374055 30.7618,5.904186 32.836786,4.2707717 33.60386,3.7830287 33.832527,2.983729 34.1213,2.17242" inkstitch:running_stitch_length_mm="2" id="autosatinrun260" inkscape:label="Points droits pour auto-remplissage satin 4" inkstitch:ties="3" sodipodi:nodetypes="ccccccccccccccccccccccc" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin374" d="m 34.2239,0.847309 0.7942,1.028281 0.5189,1.14279 0.3092,1.23255 0.1648,1.29755 -0.0525,1.01336 -0.2582,0.98064 -0.4851,0.88257 -0.7335,0.71913 -0.9974,0.60843 -1.0722,0.46369 -1.1229,0.31 -1.1494,0.1472 L 28.8625,10.6573 27.5954,10.5029 25.09,9.9806 22.2628,9.45666 20.8584,9.39829 19.5127,9.67543 18.5989,10.2125 18.1065,10.5895 M 34.0129,0.675435 32.8034,1.88491 31.9546,2.46294 30.8879,2.67348 29.5213,2.50353 28.1481,2.12356 25.3574,1.15988 23.9276,0.789345 22.4667,0.635129 20.9685,0.803817 19.4268,1.402 18.3084,2.28894 17.887,2.88172 17.6231,3.55043 17.1237,5.32111 17.0338,7.15306 17.336,8.96494 18.0127,10.6754 M 15.9814,6.92543 21.669,10.1129 m 9.4064,-8.43747 6.1251,2.28125" sodipodi:nodetypes="ccsssccscsscccccc" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 5"/>
<path id="autosatin375" d="m 12.7361,15.4767 3.6442,0.1835 1.178,0.1931 1.0503,0.4432 0.9335,0.6551 0.8279,0.8286 1.3825,2.0244 1.0916,2.2588 7.4715,17.5691 3.3527,8.3359 2.6629,7.3164 6.5078,23.6618 m -31.8995,-58.139 7.5071,16.416 1.0296,1.8672 0.9302,2.0299 1.7599,4.1741 2.5258,5.9676 2.3033,6.0434 3.1873,9.6222 3.057,9.666 0.5655,1.8707 0.2965,0.7681 0.3938,0.6457 0.5572,0.5152 0.7867,0.3766 1.0823,0.2298 1.444,0.0748 3.2662,0.0105 1.3834,-0.197 1.0867,-0.5259 M 22.1855,48.0882 33.4992,43.1385" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 6"/>
<path id="autosatin376" d="M 42.839,78.9466 40.7573,71.3777 M 44.102,80.3625 44.48,79.9637 44.7623,79.4469 45,78 V 76.4999 L 44.9778,72.559 m -2.2332,6.2192 1.4941,1.5837" sodipodi:nodetypes="ccccssccscsssccc" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 7"/>
<path d="M 42.6576,70.4268 C 41.994996,65.231001 41.149639,60.050649 40.653192,54.83845 40.82753,48.336957 40.827638,41.821847 40.492852,35.325735 40.275366,31.628858 39.67933,27.96187 39.061661,24.315061 38.606986,21.880954 37.92417,19.363009 38.6367,16.9082" inkstitch:running_stitch_length_mm="2" id="autosatinrun261" inkscape:label="Points droits pour auto-remplissage satin 8" inkstitch:ties="3" sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin377" d="m 38.4866,15.8917 -2.1349,-0.0285 -2.1419,0.082 -0.9424,0.1822 -0.7869,0.3296 -0.5787,0.5168 -0.3182,0.744 -0.0728,0.9991 0.1416,0.9902 0.7253,1.9682 0.9794,1.9765 0.8313,2.014 1.8395,6.5702 0.5238,4.5472 0.1859,4.5356 -0.0884,9.2637 -0.318,4.7023 4.4261,16.0929 m -1.1659,-55.4418 2.1239,-0.0622 1,0.0368 0.8924,0.1679 0.7349,0.3632 0.5277,0.623 0.2706,0.9471 -0.0363,1.3356 -0.4423,4.9115 -0.1224,4.9402 0.1343,9.8857 0.2663,14.2364 -0.0057,11.592 0.043,7.6459 M 35.1786,43.7572 46.1387,43.5804" sodipodi:nodetypes="ccccssccscsssccc" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="2" inkstitch:force_lock_stitches="True" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 9"/>
</g>
<g inkscape:groupmode="layer" inkscape:label="GlyphLayer-Ï" style="display:none;fill:none;stroke:#00673e;stroke-width:0.945;stroke-opacity:1;stroke-miterlimit:4;" id="g158038">
<path d="m 15.9912,73.7208 c 0.123669,-6.811708 0.358245,-13.621647 0.304288,-20.435653 0.002,-8.980493 0.102051,-17.963977 -0.116555,-26.942509 -0.01613,-2.632419 -0.440976,-5.292159 -0.10268,-7.907726 0.07912,-0.349237 0.158231,-0.698475 0.237347,-1.047712" inkstitch:running_stitch_length_mm="2" id="autosatinrun256" inkscape:label="Points droits pour auto-remplissage satin 1" inkstitch:ties="3" sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" style="stroke-dasharray:0.5, 0.5;"/>
<path d="M 23.2212,10.6691 C 22.955202,7.308915 23.003323,3.9371246 23.18897,0.57425801" inkstitch:running_stitch_length_mm="2" id="autosatinrun257" inkscape:label="Points droits pour auto-remplissage satin 2" inkstitch:ties="3" sodipodi:nodetypes="cccccccccccc" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin368" d="m 23.0613,-0.0524565 c -1.4636,0 -2.5224,0.5854415 -3.547,1.7563265 -1.0245,1.17089 -1.5368,2.48814 -1.5368,3.95175 0,1.4636 0.5123,2.70767 1.5368,3.7322 1.0246,1.02448 2.1085,1.54168 3.5721,1.54168 m 0.3865,-10.9785275 c 1.4636,0 2.4081,0.5820125 3.2863,1.7528975 0.8782,1.17089 1.3172,2.48814 1.3172,3.95175 0,1.4636 -0.439,2.70767 -1.3172,3.7322 -0.8782,1.02448 -1.855,1.54168 -3.3186,1.54168" inkstitch:satin_column="True" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkscape:label="Auto-remplissage satin 3"/>
<path d="M 9.09617,10.6691 C 8.8179982,7.2920381 8.9015608,3.9079089 9.04836,0.52738301" inkstitch:running_stitch_length_mm="2" id="autosatinrun258" inkscape:label="Points droits pour auto-remplissage satin 4" inkstitch:ties="3" sodipodi:nodetypes="cccccccccccc" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin369" d="m 8.93629,-0.0524565 c -1.46361,0 -2.52244,0.5854415 -3.54696,1.7563265 -1.02453,1.17089 -1.53679,2.48814 -1.53679,3.95175 0,1.4636 0.51226,2.70767 1.53679,3.7322 1.02452,1.02448 2.1085,1.54168 3.57211,1.54168 M 9.34793,-0.0490275 c 1.46357,0 2.40807,0.5820125 3.28627,1.7528975 0.8782,1.17089 1.3172,2.48814 1.3172,3.95175 0,1.4636 -0.439,2.70767 -1.3172,3.7322 -0.8782,1.02448 -1.855,1.54168 -3.31862,1.54168" inkstitch:satin_column="True" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkscape:label="Auto-remplissage satin 5"/>
<path id="autosatin370" d="M 16.6009,15.9442 14.7941,16 l -1.8156,0.059 -1.3305,0.2642 -0.912,0.4856 -0.56,0.7232 -0.27449,0.9769 -0.05565,1.247 0.27914,3.3691 0.3046,3.6345 0.1561,3.6524 0.0879,14.2342 -0.1928,7.1001 -0.4269,7.0961 -0.46509,4.11 -0.6687,4.0572 -1.5373,8.0921 -0.07454,0.3953 m 9.68333,-59.5405 1.9701,-0.0557 0.9291,0.0374 0.9842,0.1869 0.5334,0.2585 0.3536,0.401 0.3029,1.1005 L 22,20.38 l -0.0177,15.2488 -0.0169,7.6242 0.1171,7.622 0.3278,6.5752 0.5945,6.5588 0.8452,6.5328 0.7822,4.7071 M 9.11505,45.7294 22.9257,45.8675" sodipodi:nodetypes="ccsssssccsssscsc" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 6"/>
<path id="autosatin371" d="M 15.8931,80.9619 12.2972,81.0444 8.71094,80.9297 7.86418,80.693 7.31682,80.185 7.01642,79.4712 6.91051,78.6168 7.07239,76.7481 7.30827,75.4969 M 16.4058,80.9375 21.31,81 l 1.5239,-0.0622 1.2953,-0.4641 0.4811,-0.4093 0.327,-0.5416 L 25.078,78.8382 25,78 24.9297,77.0391 24.6322,75.2489 M 6.4218,75.6076 25.5165,75.3351" sodipodi:nodetypes="ccsssssccsssscsc" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="2" inkstitch:force_lock_stitches="True" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 8"/>
</g>
<g inkscape:groupmode="layer" inkscape:label="GlyphLayer-Î" style="display:none;fill:none;stroke:#00673e;stroke-width:0.945;stroke-opacity:1;stroke-miterlimit:4;" id="g158034">
<path d="m 15.9912,73.7208 c 0.123728,-6.812752 0.358245,-13.623736 0.304306,-20.438785 0.0019,-8.979658 0.102052,-17.962307 -0.116599,-26.940003 -0.01588,-2.632806 -0.441584,-5.293057 -0.102239,-7.908933 0.07898,-0.348627 0.157955,-0.697253 0.236932,-1.045879" inkstitch:running_stitch_length_mm="2" id="autosatinrun253" inkscape:label="Points droits pour auto-remplissage satin 1" sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path d="M 20.9568,7.61152 C 19.468788,6.1986952 17.974434,4.6137999 17.491896,2.5643501 17.295998,2.1451934 17.100099,1.7260367 16.9042,1.30688" inkstitch:running_stitch_length_mm="2" id="autosatinrun254" inkscape:label="Points droits pour auto-remplissage satin 2" sodipodi:nodetypes="cccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path d="M 15.6941,0.441217 C 14.704404,1.625657 13.881598,2.9596017 13.5077,4.46972 11.849288,6.2155183 10.454496,8.4008058 8.0792062,9.2486669 7.5122125,9.5245195 6.8709467,9.6099405 6.27256,9.80116" inkstitch:running_stitch_length_mm="2" id="autosatinrun255" inkscape:label="Points droits pour auto-remplissage satin 3" sodipodi:nodetypes="cccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin363" d="M 4.92427,10.4461 C 4.80964,9.14319 6.09689,8.57077 7.17039,8.15109 8.2724,7.61488 9.04114,6.60831 9.56058,5.51201 10.1818,4.20096 10.3966,2.95178 11.0832,1.78544 12.1071,0.0462061 14.1755,-0.284029 15.9924,-0.274127 M 4.96847,10.7333 c 0.43085,-0.0012 0.86171,5e-4 1.29256,5e-4 C 9.52609,10.9005 12.7152,9.50366 15.097,7.40259 15.4283,7.11026 15.7272,6.9886 16,7 L 15.9841,0.452086 M 7.78097,5.92084 10.8435,11.1396" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 4"/>
<path id="autosatin364" d="m 15.9924,-0.274127 1.0139,0.065888 0.8416,0.193344 0.6792,0.332323 0.5268,0.482823 1.5348,1.877309 1.3485,2.01925 1.1397,1.66806 0.3321,0.34164 M 15.9841,0.452086 16,7 16.5139,7.19 16.9693,7.66936 18.235,8.97617 19.8356,9.93 20.9672,10.2904 M 16.0975,-0.308629 15.9789,0.593072" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 5"/>
<path id="autosatin365" d="M 27.1518,10.3424 26.7398,9.58091 26.1146,8.99236 24.3942,7.71997 23.409,6.70651 m 3.6323,3.90109 -0.8742,0.1419 -0.8826,-6e-4 -1.7781,-0.0787 -1.8692,-0.1665 -0.67,-0.2133 M 24.531,5.88959 20.6872,11.7646" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 7"/>
<path id="autosatin366" d="M 16.6009,15.9442 14.7941,16 l -1.8156,0.059 -1.3305,0.2642 -0.912,0.4856 -0.56,0.7232 -0.27449,0.9769 -0.05565,1.247 0.27914,3.3691 0.3046,3.6345 0.1561,3.6524 0.0879,14.2342 -0.1928,7.1001 -0.4269,7.0961 -0.46509,4.11 -0.6687,4.0572 -1.5373,8.0921 -0.07454,0.3953 m 9.68333,-59.5405 1.9701,-0.0557 0.9291,0.0374 0.9842,0.1869 0.5334,0.2585 0.3536,0.401 0.3029,1.1005 L 22,20.38 l -0.0177,15.2488 -0.0169,7.6242 0.1171,7.622 0.3278,6.5752 0.5945,6.5588 0.8452,6.5328 0.7822,4.7071 M 9.11505,45.7294 22.9257,45.8675" sodipodi:nodetypes="ccsssssccsssscsc" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 8"/>
<path id="autosatin367" d="M 15.8931,80.9619 12.2972,81.0444 8.71094,80.9297 7.86418,80.693 7.31682,80.185 7.01642,79.4712 6.91051,78.6168 7.07239,76.7481 7.30827,75.4969 M 16.4058,80.9375 21.31,81 l 1.5239,-0.0622 1.2953,-0.4641 0.4811,-0.4093 0.327,-0.5416 L 25.078,78.8382 25,78 24.9297,77.0391 24.6322,75.2489 M 6.4218,75.6076 25.5165,75.3351" sodipodi:nodetypes="ccsssssccsssscsc" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="2" inkstitch:force_lock_stitches="True" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 10"/>
</g>
<g inkscape:groupmode="layer" inkscape:label="GlyphLayer-Í" style="display:none;fill:none;stroke:#00673e;stroke-width:0.945;stroke-opacity:1;stroke-miterlimit:4;" id="g158030">
<path d="m 15.9912,73.7208 c 0.120915,-6.757228 0.357741,-13.512636 0.303372,-20.27212 0.0053,-8.985212 0.09816,-17.973119 -0.109372,-26.95658 -0.01781,-2.678914 -0.444259,-5.384492 -0.111257,-8.04699 0.07989,-0.352637 0.159771,-0.705273 0.239657,-1.05791" inkstitch:running_stitch_length_mm="2" id="autosatinrun251" inkscape:label="Points droits pour auto-remplissage satin 1" sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path d="M 14.1334,9.21414 C 16.388299,8.4002335 18.583588,6.911253 19.549218,4.6370972 20.045478,3.1474524 21.838395,2.9265981 23.033839,2.174299 23.354893,2.0014427 23.675946,1.8285863 23.997,1.65573" inkstitch:running_stitch_length_mm="2" id="autosatinrun252" inkscape:label="Points droits pour auto-remplissage satin 2" sodipodi:nodetypes="cccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin359" d="m 25.4063,1.02925 0.239,0.42519 0.0441,0.50891 -0.0672,1.06619 -0.2759,1.03183 -0.9269,1.93303 -0.8866,1.17438 -1.1361,0.92026 -1.2946,0.71284 -1.3623,0.5521 -2.1561,0.68592 -2.1888,0.3452 -0.6813,0.0356 M 25.1563,0.724564 24.744,0.498519 24.1588,0.490161 16.1568,0.526551 15.0966,4.23371 14.397,5.80538 13.5062,7.26911 12.5863,8.18274 11.9713,8.52494 M 13.732,4.06278 23.7633,9.21903" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 3"/>
<path id="autosatin360" d="m 10.7008,10.5003 0.1598,-0.75783 0.2361,-0.51418 0.6574,-0.5825 0.2172,-0.12085 m -1.0596,1.97536 2.2598,9e-4 1.5421,-0.0805 m 0.0367,0.0978 -3.0029,-2.03755" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 5"/>
<path id="autosatin361" d="M 16.6009,15.9442 14.7941,16 l -1.8156,0.059 -1.3305,0.2642 -0.912,0.4856 -0.56,0.7232 -0.27449,0.9769 -0.05565,1.247 0.27914,3.3691 0.3046,3.6345 0.1561,3.6524 0.0879,14.2342 -0.1928,7.1001 -0.4269,7.0961 -0.46509,4.11 -0.6687,4.0572 -1.5373,8.0921 -0.07454,0.3953 m 9.68333,-59.5405 1.9701,-0.0557 0.9291,0.0374 0.9842,0.1869 0.5334,0.2585 0.3536,0.401 0.3029,1.1005 L 22,20.38 l -0.0177,15.2488 -0.0169,7.6242 0.1171,7.622 0.3278,6.5752 0.5945,6.5588 0.8452,6.5328 0.7822,4.7071 M 9.11505,45.7294 22.9257,45.8675" sodipodi:nodetypes="ccsssssccsssscsc" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 6"/>
<path id="autosatin362" d="M 15.8931,80.9619 12.2972,81.0444 8.71094,80.9297 7.86418,80.693 7.31682,80.185 7.01642,79.4712 6.91051,78.6168 7.07239,76.7481 7.30827,75.4969 M 16.4058,80.9375 21.31,81 l 1.5239,-0.0622 1.2953,-0.4641 0.4811,-0.4093 0.327,-0.5416 L 25.078,78.8382 25,78 24.9297,77.0391 24.6322,75.2489 M 6.4218,75.6076 25.5165,75.3351" sodipodi:nodetypes="ccsssssccsssscsc" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="2" inkstitch:force_lock_stitches="True" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 8"/>
</g>
<g inkscape:groupmode="layer" inkscape:label="GlyphLayer-Ì" style="display:none;fill:none;stroke:#00673e;stroke-width:0.945;stroke-opacity:1;stroke-miterlimit:4;" id="g158026">
<path d="M 15.9912,73.7208 C 16.112129,66.963297 16.348942,60.207615 16.294577,53.447856 16.299862,44.462919 16.392736,35.475287 16.1852,26.4921 16.167469,23.812991 15.74073,21.107176 16.074079,18.444507 16.15392,18.092072 16.23376,17.739636 16.3136,17.3872" inkstitch:running_stitch_length_mm="2" id="autosatinrun249" inkscape:label="Points droits pour auto-remplissage satin 1" sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path d="M 16.9212,9.00285 C 14.896452,8.045587 12.938418,6.6584077 12.085499,4.5062763 11.552086,3.1137104 9.8150277,2.9108003 8.6663854,2.1740085 8.3455069,2.001249 8.0246285,1.8284895 7.70375,1.65573" inkstitch:running_stitch_length_mm="2" id="autosatinrun250" inkscape:label="Points droits pour auto-remplissage satin 2" sodipodi:nodetypes="ccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin355" d="M 6.29446,1.02925 6.05552,1.45444 6.01141,1.96335 6.07859,3.02954 6.3545,4.06137 7.28139,5.9944 l 0.88657,1.17438 1.13609,0.92026 1.29465,0.71284 1.3623,0.5521 2.1561,0.68592 2.1888,0.3452 0.6812,0.0356 M 6.54446,0.724564 6.95681,0.498519 7.54199,0.490161 l 8.00201,0.03639 1.0602,3.707159 0.6996,1.57167 0.8908,1.46373 0.9199,0.91363 0.615,0.3422 M 17.9688,4.06278 7.9375,9.21903" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 3"/>
<path id="autosatin356" d="M 21,10.5003 20.8402,9.74247 20.6041,9.22829 19.9467,8.64579 19.7295,8.52494 m 1.0596,1.97536 -2.2598,9e-4 -1.5422,-0.0805 m -0.0366,0.0978 3.0029,-2.03755" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 5"/>
<path id="autosatin357" d="M 16.6009,15.9442 14.7941,16 l -1.8156,0.059 -1.3305,0.2642 -0.912,0.4856 -0.56,0.7232 -0.27449,0.9769 -0.05565,1.247 0.27914,3.3691 0.3046,3.6345 0.1561,3.6524 0.0879,14.2342 -0.1928,7.1001 -0.4269,7.0961 -0.46509,4.11 -0.6687,4.0572 -1.5373,8.0921 -0.07454,0.3953 m 9.68333,-59.5405 1.9701,-0.0557 0.9291,0.0374 0.9842,0.1869 0.5334,0.2585 0.3536,0.401 0.3029,1.1005 L 22,20.38 l -0.0177,15.2488 -0.0169,7.6242 0.1171,7.622 0.3278,6.5752 0.5945,6.5588 0.8452,6.5328 0.7822,4.7071 M 9.11505,45.7294 22.9257,45.8675" sodipodi:nodetypes="ccsssssccsssscsc" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 6"/>
<path id="autosatin358" d="M 15.8931,80.9619 12.2972,81.0444 8.71094,80.9297 7.86418,80.693 7.31682,80.185 7.01642,79.4712 6.91051,78.6168 7.07239,76.7481 7.30827,75.4969 M 16.4058,80.9375 21.31,81 l 1.5239,-0.0622 1.2953,-0.4641 0.4811,-0.4093 0.327,-0.5416 L 25.078,78.8382 25,78 24.9297,77.0391 24.6322,75.2489 M 6.4218,75.6076 25.5165,75.3351" sodipodi:nodetypes="ccsssssccsssscsc" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="2" inkstitch:force_lock_stitches="True" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 8"/>
</g>
<g inkscape:groupmode="layer" inkscape:label="GlyphLayer-Ë" style="display:none;fill:none;stroke:#00673e;stroke-width:0.945;stroke-opacity:1;stroke-miterlimit:4;" id="g158022">
<path d="M 13.9051,71.6573 C 13.042271,67.029065 12.811623,62.304052 12.559851,57.611801 12.519801,56.147317 12.410471,55.340792 12.457,53.87665" inkstitch:running_stitch_length_mm="2" id="autosatinrun243" inkscape:label="Points droits pour auto-remplissage satin 1" sodipodi:nodetypes="ccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path d="m 17.6911,51.0929 c -0.01742,-2.680861 -0.0036,-2.976113 1.084044,-5.438155 1.284038,-2.080184 3.408866,-3.517076 5.461179,-4.776986 3.105082,-1.652831 6.053543,-1.589176 10.711034,-1.553457 0.795561,0.0061 0,0 1.231543,-0.107652" inkstitch:running_stitch_length_mm="2" id="autosatinrun244" inkscape:label="Points droits pour auto-remplissage satin 2" sodipodi:nodetypes="cccsc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin348" d="M 36.9827,38.8446 36.8917,37.9314 36.6164,37.1723 36.1536,36.5382 35.5,36 34.6562,35.5625 33.625,35.25 31,35 29.4687,35.125 27.875,35.5 26.2187,36.125 24.5,37 22.7188,38.125 20.875,39.5 17,43 l 0.0682,4.5565 0.2642,4.4913 M 37,39.2762 V 41 l -0.1723,1.1562 -0.221,0.3555 L 36.2906,42.75 35.3581,42.9688 34,43 H 32 30 L 27.625,43.1875 25.5,43.75 23.625,44.6875 22,46 l -1.5391,1.7091 -1.436,2.11 -0.5943,1.1972 -0.4666,1.2877 -0.3049,1.375 -0.1092,1.4591 m 2.9091,-17.5404 4.3945,7.6171 m 9.7168,-11.1328 -0.0488,9.8145" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 3"/>
<path d="M 12.5195,52.68915 C 12.56678,46.113929 12.424372,40.07066 12.5,33.494587 c 0.142535,-3.576494 -0.139119,-7.161565 0.09568,-10.73189 -0.01322,-1.147297 0.736155,-2.344922 1.922449,-2.535539 5.208112,-1.342158 10.678355,-1.34898 16.0225,-1.071381 3.410553,-0.02 6.341378,2.246548 8.095926,5.026808 1.14037,1.413178 1.167805,3.445853 2.361213,4.777766" inkstitch:running_stitch_length_mm="2" id="autosatinrun245" inkscape:label="Points droits pour auto-remplissage satin 4" sodipodi:nodetypes="ccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin349" d="M 41.7188,30.0254 41.0596,30.7402 40.4844,31.0127 39,31 37.25,30.75 36.5625,30.4375 36,30 35,28.75 34,27 33,25 32.4687,24.0938 31.875,23.375 31.2187,22.8437 30.5879,22.542 M 42.5,29 43.1562,27.9375 43.625,26.75 43.9062,25.4375 44,24 43.8125,22.5313 43.25,21.125 42.3125,19.7813 41,18.5 39.375,17.4062 37.5,16.625 35.375,16.1562 33.2702,16.0178 m 2.9338,15.2244 9.2102,-6.0932" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" sodipodi:nodetypes="csssssssscccssssccssssscccsssssssssssccccccccccccccccccccc" inkscape:label="Auto-remplissage satin 5"/>
<path d="M 31.93075,10.223 C 31.594797,6.5761151 31.705012,4.2985695 31.99685,0.64900781" inkstitch:running_stitch_length_mm="2" id="autosatinrun246" inkscape:label="Points droits pour auto-remplissage satin 6" sodipodi:nodetypes="cc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin350" d="m 31.8223,-0.0714567 c -1.4636,0 -2.5224,0.5854417 -3.547,1.7563267 -1.0245,1.17089 -1.5368,2.48814 -1.5368,3.95175 0,1.4636 0.5123,2.70767 1.5368,3.7322 1.0246,1.02448 2.1085,1.54168 3.5721,1.54168 m 0.3865,-10.9785277 c 1.4636,0 2.4081,0.5820127 3.2863,1.7528977 0.8782,1.17089 1.3172,2.48814 1.3172,3.95175 0,1.4636 -0.439,2.70767 -1.3172,3.7322 -0.8782,1.02448 -1.855,1.54168 -3.3186,1.54168" inkstitch:satin_column="True" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkscape:label="Auto-remplissage satin 7"/>
<path id="autosatin351" d="M 30.5879,22.542 30.5,22.5 28.625,22.125 26,22 24.0937,22.125 22.375,22.5 20.8438,23.125 20.2346,23.5217 M 33.2702,16.0178 33,16 H 12.7648 m 13.6633,-1.2342 -0.0884,8.1318" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" sodipodi:nodetypes="csssssssscccssssccssssscccsssssssssssccccccccccccccccccccc" inkscape:label="Auto-remplissage satin 8"/>
<path d="M 17.86825,10.223 C 17.532297,6.5761151 17.517512,4.2673195 17.80935,0.61775781" inkstitch:running_stitch_length_mm="2" id="autosatinrun247" inkscape:label="Points droits pour auto-remplissage satin 9" sodipodi:nodetypes="cc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin352" d="m 17.6973,-0.0714567 c -1.4636,0 -2.5224,0.5854417 -3.547,1.7563267 -1.0245,1.17089 -1.5368,2.48814 -1.5368,3.95175 0,1.4636 0.5123,2.70767 1.5368,3.7322 1.0246,1.02448 2.1085,1.54168 3.5721,1.54168 m 0.3865,-10.9785277 c 1.4636,0 2.4081,0.5820127 3.2863,1.7528977 0.8782,1.17089 1.3172,2.48814 1.3172,3.95175 0,1.4636 -0.439,2.70767 -1.3172,3.7322 -0.8782,1.02448 -1.855,1.54168 -3.3186,1.54168" inkstitch:satin_column="True" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkscape:label="Auto-remplissage satin 10"/>
<path id="autosatin353" d="M 21.0966,23.0218 20.8438,23.125 19.5,24 18.4062,25.25 17.625,27 17.1562,29.25 17,32 v 11 l 0.4808,12.4834 0.3452,3.0889 0.833,3.088 1.2487,2.8786 L 21.5,67 22.8438,68.3125 24.375,69.25 26.0937,69.8125 28,70 30.3437,69.8125 32.375,69.25 34.0937,68.3125 35.5,67 35.938,66.3243 M 14.8976,16 H 10 L 9.09375,16.0625 8.375,16.25 7.84375,16.5625 7.5,17 7.125,18 7,19 8,30 v 9 9 L 7.875,52.125 7.5,56.5 7.125,61.125 7,66 V 77 L 7.25,78.75 7.5625,79.4375 8,80 8.5625,80.4375 9.25,80.75 11,81 H 39 L 40.4062,80.9062 41.625,80.625 42.6562,80.1562 43.5,79.5 44.1562,78.6562 44.625,77.625 44.9062,76.4062 45,75 V 74.8754 M 7.34829,15.5843 19.4336,25.5859 M 6.64062,46.2891 18.1641,45.8984 M 6.80826,81.0503 21.9792,65.6265 m 5.9505,2.7329 -0.3906,14.0625 M 5.875,60.5 19.75,60.375 M 6.55809,29.0099 18.2572,29.1192 m 15.5955,37.7074 11.9325,14.0537" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" sodipodi:nodetypes="csssssssscccssssccssssscccsssssssssssccccccccccccccccccccc" inkscape:label="Auto-remplissage satin 11"/>
<path d="m 40.68835,69.6948 c 0.833634,-3.528571 0.700047,-5.632928 0.669252,-9.253507 -0.04874,-2.550204 -0.417389,-4.206262 -1.211202,-6.625043" inkstitch:running_stitch_length_mm="2" id="autosatinrun248" inkscape:label="Points droits pour auto-remplissage satin 12" sodipodi:nodetypes="ccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin354" d="m 39.8352,52.9695 -0.443,0.0673 -0.3496,0.1979 L 38.5,54 38.125,55.5 38,58 37.8438,60.8125 37.375,63.25 l -0.7812,2.0625 -0.6472,1.0369 m 4.2609,-13.3738 0.9363,0.1601 0.835,0.4771 0.7724,0.7896 L 43.5,55.5 44.1562,56.9688 44.625,58.875 44.9062,61.2188 45,64 V 74.8754 M 36.9035,59.2571 46.0938,59.082" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="2" inkstitch:force_lock_stitches="True" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" sodipodi:nodetypes="csssssssscccssssccssss" inkscape:label="Auto-remplissage satin 13"/>
</g>
<g inkscape:groupmode="layer" inkscape:label="GlyphLayer-Ê" style="display:none;fill:none;stroke:#00673e;stroke-width:0.945;stroke-opacity:1;stroke-miterlimit:4;" id="g158018">
<path d="M 13.8921,71.5961 C 13.030776,66.885855 12.783238,62.08208 12.55493,57.307253 12.520118,55.916607 12.54336,54.52683 12.5839,53.1366" inkstitch:running_stitch_length_mm="2" id="autosatinrun237" inkscape:label="Points droits pour auto-remplissage satin 1" sodipodi:nodetypes="ccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path d="m 17.4411,53.5929 c -0.01738,-2.680954 0.246329,-5.476394 1.334227,-7.938453 1.284071,-2.080058 3.408834,-3.516906 5.461101,-4.776737 3.261378,-1.760276 7.031984,-1.261548 10.711274,-1.553353 0.738582,-0.05858 0.611114,-0.08425 1.418698,-0.201457" inkstitch:running_stitch_length_mm="2" id="autosatinrun238" inkscape:label="Points droits pour auto-remplissage satin 2" sodipodi:nodetypes="cccsc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin342" d="M 36.9827,38.8446 36.8917,37.9314 36.6164,37.1723 36.1536,36.5382 35.5,36 34.6562,35.5625 33.625,35.25 31,35 29.4687,35.125 27.875,35.5 26.2187,36.125 24.5,37 22.7188,38.125 20.875,39.5 17,43 l 0.0682,4.5565 0.2642,4.4913 M 37,39.2762 V 41 l -0.1723,1.1562 -0.221,0.3555 L 36.2906,42.75 35.3581,42.9688 34,43 H 32 30 L 27.625,43.1875 25.5,43.75 23.625,44.6875 22,46 l -1.5391,1.7091 -1.436,2.11 -0.5943,1.1972 -0.4666,1.2877 -0.3049,1.375 -0.1092,1.4591 m 2.9091,-17.5404 4.3945,7.6171 m 9.7168,-11.1328 -0.0488,9.8145" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 3"/>
<path d="M 12.5839,53.1366 C 12.624592,46.590604 12.42661,40.045247 12.5,33.498391 c 0.131933,-3.537936 -0.120868,-7.084777 0.0825,-10.616824 -0.03847,-1.033902 0.540546,-2.036059 1.442441,-2.494786 3.998519,-1.236981 8.256892,-1.352446 12.416503,-1.37487 3.260649,0.09904 6.951644,-0.199231 9.577107,2.113622 2.048096,1.702096 3.01152,4.049393 4.380139,6.594467 0.413437,0.685861 0.486945,0.854698 0.999774,1.613012" inkstitch:running_stitch_length_mm="2" id="autosatinrun239" inkscape:label="Points droits pour auto-remplissage satin 4" sodipodi:nodetypes="cccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin343" d="M 41.7188,30.0254 41.0596,30.7402 40.4844,31.0127 39,31 37.25,30.75 36.5625,30.4375 36,30 35,28.75 34,27 33,25 32.4687,24.0938 31.875,23.375 31.2187,22.8437 30.6851,22.5885 M 42.5,29 43.1562,27.9375 43.625,26.75 43.9062,25.4375 44,24 43.8125,22.5313 43.25,21.125 42.3125,19.7813 41,18.5 39.375,17.4062 37.5,16.625 35.375,16.1562 33.6153,16.0405 m 2.365,14.7894 9.1337,-5.1867" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" sodipodi:nodetypes="csssssssscccssssccssssscccsssssssssssccccccccccccccccccccc" inkscape:label="Auto-remplissage satin 5"/>
<path d="M 34.98903,10.154592 C 32.579736,9.1625068 30.454929,8.9180483 28.672377,6.8522281 27.492311,5.6205662 26.373228,4.2567167 25.989562,2.5591407 25.633436,1.6402927 25.778611,1.4475194 25.152363,0.69054201" inkstitch:running_stitch_length_mm="2" id="autosatinrun240" inkscape:label="Points droits pour auto-remplissage satin 6" sodipodi:nodetypes="cccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path d="M 23.910175,0.487417 C 22.80762,1.7713866 22.410511,2.8040692 22.0078,4.46972 20.312432,6.2747869 18.854816,8.4959142 16.395748,9.3330536 15.333118,9.6136816 14.956317,9.4843911 14.05417,10.147758" inkstitch:running_stitch_length_mm="2" id="autosatinrun241" inkscape:label="Points droits pour auto-remplissage satin 7" sodipodi:nodetypes="cccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin344" d="m 13.4244,10.4461 c -0.1147,-1.30291 1.1726,-1.87533 2.2461,-2.29501 1.102,-0.53621 1.8707,-1.54278 2.3902,-2.63908 0.6212,-1.31105 0.8359,-2.56023 1.5226,-3.72657 1.0238,-1.739234 3.0923,-2.069469 4.9091,-2.059567 M 13.4685,10.7333 c 0.4309,-0.0012 0.8618,5e-4 1.2926,5e-4 3.2651,0.1667 6.4541,-1.23014 8.8359,-3.33121 C 23.9284,7.11026 24.2273,6.9886 24.5001,7 L 24.4842,0.452086 M 16.281,5.92084 19.3435,11.1396" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 8"/>
<path id="autosatin345" d="m 24.4924,-0.274127 c 1.4712,0.008 2.4564,0.325159 3.0616,1.074378 1.0858,1.204269 2.0458,2.503029 2.8833,3.896559 0.7799,1.29777 1.4402,2.14266 2.457,3.02316 1.2991,1.09535 2.3693,1.42353 2.7576,2.62243 M 24.4842,0.452086 24.5001,7 c 0.3647,0.01524 0.6827,0.26832 0.9693,0.66936 1.4049,1.96567 4.0594,3.06244 6.537,3.00084 1.1869,-0.0295 2.3764,0.2603 3.535,-0.0626 M 33.031,5.88959 29.1873,11.7646" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 9"/>
<path id="autosatin346" d="M 30.6851,22.5885 30.5,22.5 28.625,22.125 26,22 24.0937,22.125 22.375,22.5 20.8438,23.125 19.5,24 18.4062,25.25 17.625,27 17.1562,29.25 17,32 v 11 l 0.4808,12.4834 0.3452,3.0889 0.833,3.088 1.2487,2.8786 L 21.5,67 22.8438,68.3125 24.375,69.25 26.0937,69.8125 28,70 30.3437,69.8125 32.375,69.25 34.0937,68.3125 35.5,67 36.3764,65.6479 M 33.6153,16.0405 33,16 H 10 L 9.09375,16.0625 8.375,16.25 7.84375,16.5625 7.5,17 7.125,18 7,19 8,30 v 9 9 L 7.875,52.125 7.5,56.5 7.125,61.125 7,66 V 77 L 7.25,78.75 7.5625,79.4375 8,80 8.5625,80.4375 9.25,80.75 11,81 H 39 L 40.4062,80.9062 41.625,80.625 42.6562,80.1562 43.5,79.5 44.1562,78.6562 44.625,77.625 44.9062,76.4062 45,75 V 73.0325 M 7.430024,15.651951 19.4336,25.5859 M 6.64062,46.2891 18.1641,45.8984 M 7.15597,80.6968 21.840085,65.767866 M 27.91235,68.983918 27.5513,81.9803 M 5.875,60.5 19.250604,60.379499 M 6.8123854,29.012265 18.063155,29.117413 M 33.7643,67.0917 44.6744,80.0526 M 26.5165,14.8542 v 8.1317" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" sodipodi:nodetypes="csssssssscccssssccssssscccsssssssssssccccccccccccccccccccccccccccccccccccccc" inkscape:label="Auto-remplissage satin 10"/>
<path d="m 41.10965,66.1495 c 0.859608,-3.74156 0.350056,-2.504403 0.220531,-6.341996 -0.07049,-2.340992 -0.462913,-3.895381 -1.183781,-6.116254" inkstitch:running_stitch_length_mm="2" id="autosatinrun242" inkscape:label="Points droits pour auto-remplissage satin 11" sodipodi:nodetypes="ccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin347" d="m 39.8352,52.9695 -0.443,0.0673 -0.3496,0.1979 L 38.5,54 38.125,55.5 38,58 37.8438,60.8125 37.375,63.25 l -0.7812,2.0625 -0.2174,0.3354 m 3.8311,-12.6723 0.9363,0.1601 0.835,0.4771 0.7724,0.7896 L 43.5,55.5 44.1562,56.9688 44.625,58.875 44.9062,61.2188 45,64 v 9.0324 M 37.031629,59.2546 46.0938,59.082" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="2" inkstitch:force_lock_stitches="True" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" sodipodi:nodetypes="csssssssscccssssccssss" inkscape:label="Auto-remplissage satin 12"/>
</g>
<g inkscape:groupmode="layer" inkscape:label="GlyphLayer-É" style="display:none;fill:none;stroke:#00673e;stroke-width:0.945;stroke-opacity:1;stroke-miterlimit:4;" id="g158014">
<path d="m 13.8901,71.6278 -0.0878,-0.2709 -0.2399,-1.5745 -0.1981,-1.5926 -0.0234,-0.2226 v 0 l -0.1358,-1.291 -0.1592,-1.5136 -0.088,-0.8817 v 0 l -0.0631,-0.6318 -0.0946,-1.5256 -0.0655,-1.532 -7e-4,-0.0092 v 0 l -0.1174,-1.5522 -0.0559,-1.5419 -0.0085,-0.6065 v 0 l -0.0133,-0.9416 0.0206,-1.5509 0.0287,-0.68175" inkstitch:running_stitch_length_mm="2" id="autosatinrun232" inkscape:label="Points droits pour auto-remplissage satin 1" sodipodi:nodetypes="cccccccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path d="m 17.6342,50.0223 0.1474,-1.0137 0.34,-1.4979 0.2758,-0.9818 v 0 l 0.1336,-0.4754 0.7837,-1.28 1.0858,-1.0813 0.0402,-0.0347 v 0 l 1.1201,-0.968 1.2226,-0.9132 0.4844,-0.3074 v 0 l 0.8274,-0.525 1.3824,-0.6479 1.0008,-0.3884 v 0 l 0.4225,-0.164 1.4743,-0.3892 1.5107,-0.2599 0.0692,-0.0042 v 0 l 1.4684,-0.0892 1.5398,0.0823 0.5636,0.0622 v 0 l 0.9586,0.1059 1.527,0.2407" inkstitch:running_stitch_length_mm="2" id="autosatinrun233" inkscape:label="Points droits pour auto-remplissage satin 2" sodipodi:nodetypes="ccccccccccccccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin337" d="M 36.9827,38.8446 36.8917,37.9314 36.6164,37.1723 36.1536,36.5382 35.5,36 34.6562,35.5625 33.625,35.25 31,35 29.4687,35.125 27.875,35.5 26.2187,36.125 24.5,37 22.7188,38.125 20.875,39.5 17,43 l 0.0682,4.5565 0.2642,4.4913 M 37,39.2762 V 41 l -0.1723,1.1562 -0.221,0.3555 L 36.2906,42.75 35.3581,42.9688 34,43 H 32 30 L 27.625,43.1875 25.5,43.75 23.625,44.6875 22,46 l -1.5391,1.7091 -1.436,2.11 -0.5943,1.1972 -0.4666,1.2877 -0.3049,1.375 -0.1092,1.4591 m 2.9091,-17.5404 4.3945,7.6171 m 9.7168,-11.1328 -0.0488,9.8145" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 3"/>
<path d="m 12.5963,52.8371 0.0136,-1.5534 -0.0062,-1.5546 -0.0011,-0.2589 v 0 l -0.0051,-1.2957 -0.0274,-1.555 -0.0164,-0.855 v 0 l -0.0133,-0.6882 -0.0298,-1.5511 -0.01,-1.4664 v 0 l -6e-4,-0.085 v -1.5517 -1.5516 -0.5178 0 -1.0339 -1.5516 -1.1206 0 -0.431 -1.5517 l 0.0241,-1.5509 0.0024,-0.1723 v 0 l 0.0198,-1.3771 -0.0111,-1.54 -0.0099,-0.7888 v 0 L 12.5151,26.4334 12.5055,24.8465 12.5616,23.53 v 0 l 0.0104,-0.2457 0.1646,-1.5606 0.8952,-1.2615 0.3251,-0.1126 v 0 l 1.1182,-0.3873 1.5374,-0.2728 0.9512,-0.139 v 0 l 0.6096,-0.089 1.5022,-0.1795 1.5222,-0.1152 0.0505,-0.0034 v 0 l 1.476,-0.0979 1.5362,-0.0331 0.6902,-0.014 v 0 l 0.8462,-0.0171 1.5284,0.0215 1.331,0.0213 v 0 l 0.2289,0.0037 1.5559,0.057 1.5493,0.1326 0.3589,0.0682 v 0 l 1.1586,0.2202 1.4001,0.573 0.8138,0.6049 v 0 l 0.398,0.2958 1.0558,1.0923 0.9381,1.2248 0.0789,0.1255 v 0 l 0.7526,1.1956 0.6544,1.3997 0.2514,0.7048 v 0 l 0.2603,0.73 0.7908,1.2787" inkstitch:running_stitch_length_mm="2" id="autosatinrun234" inkscape:label="Points droits pour auto-remplissage satin 4" sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin338" d="M 41.7188,30.0254 41.0596,30.7402 40.4844,31.0127 39,31 37.25,30.75 36.5625,30.4375 36,30 35,28.75 34,27 33,25 32.4687,24.0938 31.875,23.375 31.2187,22.8437 30.5,22.5 28.625,22.125 26,22 24.0937,22.125 23.1378,22.3336 M 42.5,29 43.1562,27.9375 43.625,26.75 43.9062,25.4375 44,24 43.8125,22.5313 43.25,21.125 42.3125,19.7813 41,18.5 39.375,17.4062 37.5,16.625 35.375,16.1562 33,16 H 19.2577 m 16.8107,15.2903 8.5953,-6.0406 M 26.4281,15.252 26.2955,22.8976 m 4.9149,1.1731 7.3212,-8.0285" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" sodipodi:nodetypes="csssssssscccssssccssssscccsssssssssssccccccccccccccccccccccc" inkscape:label="Auto-remplissage satin 5"/>
<path d="m 20.8359,10.2407 0.2324,-0.0708 1.4735,-0.44852 1.2206,-0.43343 v 0 L 23.9757,9.2122 25.3821,8.62218 26.5744,8.03967 v 0 L 26.762,7.94798 28.0926,7.15977 29.0955,6.29678 v 0 L 29.2457,6.16752 30.1603,4.93189 30.5979,3.6622 v 0 L 30.6539,3.49968 30.709,1.98276 30.6108,0.597622" inkstitch:running_stitch_length_mm="2" id="autosatinrun235" inkscape:label="Points droits pour auto-remplissage satin 6" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin339" d="M 31.1967,0.59762 C 32.7093,0.597241 33.4875,0.60002 35,0.60002 38.4386,9.01731 27.2194,10.5484 21,10.6 M 30.0248,0.597625 c -1.4948,3.69e-4 -2.5521,0.0039 -4.0469,0.016299 0,4.602046 -2.5816,6.393326 -5.306,9.267386" sodipodi:nodetypes="cccccc" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 7"/>
<path id="autosatin340" d="M 23.1378,22.3336 22.375,22.5 20.8438,23.125 19.5,24 18.4062,25.25 17.625,27 17.1562,29.25 17,32 v 11 l 0.4808,12.4834 0.3452,3.0889 0.833,3.088 1.2487,2.8786 L 21.5,67 22.8438,68.3125 24.375,69.25 26.0937,69.8125 28,70 30.3437,69.8125 32.375,69.25 34.0937,68.3125 35.5,67 36.5938,65.3125 36.6043,65.2849 M 19.2577,16 H 10 L 9.09375,16.0625 8.375,16.25 7.84375,16.5625 7.5,17 7.125,18 7,19 8,30 v 9 9 L 7.875,52.125 7.5,56.5 7.125,61.125 7,66 V 77 L 7.25,78.75 7.5625,79.4375 8,80 8.5625,80.4375 9.25,80.75 11,81 H 39 L 40.4062,80.9062 41.625,80.625 42.6562,80.1562 43.5,79.5 44.1562,78.6562 44.625,77.625 44.9062,76.4062 45,75 V 71.9195 M 6.68647,16.303 l 6.43983,4.6746 6.3073,4.6083 M 7.34773,45.8913 17.6337,45.9426 M 7.24833,80.6029 21.7586,65.8507 m 5.685,3.4368 0.091,12.5157 M 6.5821,60.3674 18.8661,60.2424 M 7.13628,29.0153 17.9466,29.1163 M 33.676,67.2685 44.5035,79.8638" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" sodipodi:nodetypes="csssssssscccssssccssssscccsssssssssssccccccccccccccccccccccc" inkscape:label="Auto-remplissage satin 8"/>
<path d="m 40.5194,70.1245 0.2827,-1.5223 0.1158,-0.9785 v 0 l 0.0702,-0.5928 0.1859,-1.5712 0.1007,-1.5181 4e-4,-0.0055 v 0 l 0.0854,-1.5143 0.0303,-1.5229 -0.037,-0.6652 v 0 l -0.047,-0.8441 -0.1308,-1.5562 -0.2046,-1.2828 v 0 L 40.9329,56.309 40.5803,54.8095 40.258737,53.760845" inkstitch:running_stitch_length_mm="2" id="autosatinrun236" inkscape:label="Points droits pour auto-remplissage satin 9" sodipodi:nodetypes="cccccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin341" d="m 39.8352,52.9695 -0.443,0.0673 -0.3496,0.1979 L 38.5,54 38.125,55.5 38,58 37.8438,60.8125 37.375,63.25 36.6042,65.2849 m 3.6033,-12.3093 0.9363,0.1601 0.835,0.4771 0.7724,0.7896 L 43.5,55.5 44.1562,56.9688 44.625,58.875 44.9062,61.2188 45,64 v 7.9195 m -7.8785,-12.5096 8.6629,0.0699" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="2" inkstitch:force_lock_stitches="True" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" sodipodi:nodetypes="csssssssscccssssccssssscccsssssssssssccccccccccccccccccccccc" inkscape:label="Auto-remplissage satin 10"/>
</g>
<g inkscape:groupmode="layer" inkscape:label="GlyphLayer-È" style="display:none;fill:none;stroke:#00673e;stroke-width:0.945;stroke-opacity:1;stroke-miterlimit:4;" id="g158010">
<path d="M 13.9732,71.8662 13.8443,71.5107 13.6017,70.013 13.403,68.5036 13.375,68.2344 v 0 L 13.2438,66.973 13.0846,65.4424 12.9955,64.5655 v 0 L 12.929,63.9118 12.8215,62.374 12.7516,60.8858 v 0 l -0.0029,-0.0612 -0.1153,-1.5966 -0.072,-1.5194 -0.008,-0.5053 v 0 l -0.016,-1.023 0.0118,-1.5306 0.026,-1.1344" inkstitch:running_stitch_length_mm="2" id="autosatinrun227" inkscape:label="Points droits pour auto-remplissage satin 1" inkstitch:ties="3" sodipodi:nodetypes="cccccccccccccccccccccc" style="stroke-dasharray:0.5, 0.5;"/>
<path d="m 17.558,50.5465 0.0762,-0.5242 v 0 l 0.1474,-1.0137 0.34,-1.4979 0.2758,-0.9818 v 0 l 0.1336,-0.4754 0.7837,-1.28 1.0858,-1.0813 0.0402,-0.0347 v 0 l 1.1201,-0.968 1.2226,-0.9132 0.4844,-0.3074 v 0 l 0.8274,-0.525 1.3824,-0.6479 1.0008,-0.3884 v 0 l 0.4225,-0.164 1.4743,-0.3892 1.5107,-0.2599 0.0692,-0.0042 v 0 l 1.4684,-0.0892 1.5398,0.0823 0.5636,0.0622 v 0 l 0.9586,0.1059 1.597313,-0.0093" inkstitch:running_stitch_length_mm="2" id="autosatinrun228" inkscape:label="Points droits pour auto-remplissage satin 2" sodipodi:nodetypes="ccccccccccccccccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin332" d="M 36.9827,38.8446 36.8917,37.9314 36.6164,37.1723 36.1536,36.5382 35.5,36 34.6562,35.5625 33.625,35.25 31,35 29.4687,35.125 27.875,35.5 26.2187,36.125 24.5,37 22.7188,38.125 20.875,39.5 17,43 l 0.0682,4.5565 0.2642,4.4913 M 37,39.2762 V 41 l -0.1723,1.1562 -0.221,0.3555 L 36.2906,42.75 35.3581,42.9688 34,43 H 32 30 L 27.625,43.1875 25.5,43.75 23.625,44.6875 22,46 l -1.5391,1.7091 -1.436,2.11 -0.5943,1.1972 -0.4666,1.2877 -0.3049,1.375 -0.1092,1.4591 m 2.9091,-17.5404 4.3945,7.6171 m 9.7168,-11.1328 -0.0488,9.8145" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 3" sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccc"/>
<path d="m 12.5752,53.5153 0.0091,-0.3979 0.0231,-1.5331 -0.0068,-1.5347 -10e-4,-0.2225 v 0 l -0.0058,-1.3123 -0.02,-1.5349 -0.0162,-0.8409 v 0 l -0.0133,-0.6921 -0.0289,-1.5168 -0.015,-1.4791 v 0 L 12.5,42.413 v -1.5174 -1.5173 -0.6158 0 -0.9016 -1.5174 -1.2694 0 -0.2479 -1.5174 l 0.0056,-1.5172 0.0114,-0.4058 v 0 l 0.0312,-1.1104 -0.0051,-1.5369 -0.0167,-1.0406 v 0 l -0.0084,-0.5246 -0.0251,-1.5652 0.0169,-1.5517 0.0017,-0.0466 v 0 l 0.0547,-1.4923 0.4613,-1.483 0.5391,-0.3487 v 0 l 0.7342,-0.475 1.5003,-0.4131 1.2336,-0.246 v 0 l 0.266,-0.053 1.5375,-0.2268 1.5652,-0.1374 0.2914,-0.0165 v 0 l 1.2823,-0.0727 1.5148,-0.0376 0.8888,0.0082 v 0 l 0.6265,0.0058 1.5154,0.0274 1.51,0.0709 0.0345,0.0026 v 0 l 1.5358,0.1151 1.5109,0.2715 0.587,0.1775 v 0 l 0.8737,0.2642 1.4067,0.6139 1.0714,0.6261 v 0 l 0.2625,0.1534 1.2438,0.9092 1.1332,1.0304 0.2131,0.228 v 0 l 0.8574,0.9173 0.9824,1.2307 0.518,0.6842 v 0 l 0.4004,0.5287 0.8666,1.2661" inkstitch:running_stitch_length_mm="2" id="autosatinrun229" inkscape:label="Points droits pour auto-remplissage satin 4" sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin333" d="M 41.7188,30.0254 41.0596,30.7402 40.4844,31.0127 39,31 37.25,30.75 36.5625,30.4375 36,30 35,28.75 34,27 33,25 32.4687,24.0938 31.875,23.375 31.2187,22.8437 30.5,22.5 C 29.014354,22.000549 27.57436,21.954946 26,22 M 42.5,29 43.1562,27.9375 43.625,26.75 43.9062,25.4375 44,24 43.8125,22.5313 43.25,21.125 42.3125,19.7813 41,18.5 39.375,17.4062 37.5,16.625 35.375,16.1562 33,16 h -6.1348 m 8.1934,16 9.668,-12.2734" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 5" sodipodi:nodetypes="ccccccccccccccccccccccccccccccc"/>
<path d="M 28.6314,10.15115 27.6579,9.92138 26.4373,9.48794 v 0 L 26.224,9.4122 24.8176,8.82218 23.6254,8.23967 v 0 l -0.1877,-0.0917 -1.3306,-0.7882 -1.0028,-0.863 v 0 L 20.9541,6.36752 20.0394,5.13189 19.6019,3.8622 v 0 L 19.5458,3.69968 19.4907,2.18276 19.510875,1.328871" inkstitch:running_stitch_length_mm="2" id="autosatinrun230" inkscape:label="Points droits pour auto-remplissage satin 6" inkstitch:ties="3" sodipodi:nodetypes="ccccccccccccccccccc" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin334" d="m 19.003,0.797619 c -1.5125,-3.79e-4 -2.2907,0.0024 -3.8033,0.0024 -3.4385,8.417291 7.7806,9.948381 14,9.999981 M 20.1749,0.797623 c 1.4948,3.7e-4 2.5521,0.0039 4.0469,0.0163 0,4.602047 2.5817,6.393317 5.306,9.267377" sodipodi:nodetypes="cccccc" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 7"/>
<path id="autosatin335" d="M 26,22 24.0937,22.125 22.375,22.5 20.8438,23.125 19.5,24 18.4062,25.25 17.625,27 17.1562,29.25 17,32 v 11 l 0.4808,12.4834 0.3452,3.0889 0.833,3.088 1.2487,2.8786 L 21.5,67 22.8438,68.3125 24.375,69.25 26.0937,69.8125 28,70 30.3437,69.8125 32.375,69.25 34.0937,68.3125 35.5,67 36.258,65.8306 M 26.8652,16 H 10 L 9.09375,16.0625 8.375,16.25 7.84375,16.5625 7.5,17 7.125,18 7,19 8,30 v 9 9 L 7.875,52.125 7.5,56.5 7.125,61.125 7,66 V 77 L 7.25,78.75 7.5625,79.4375 8,80 8.5625,80.4375 9.25,80.75 11,81 H 39 L 40.4062,80.9062 41.625,80.625 42.6562,80.1562 43.5,79.5 44.1562,78.6562 44.625,77.625 44.9062,76.4062 45,75 V 74.3333 M 5.27344,13.8672 19.4336,25.5859 M 6.64062,46.2891 18.1641,45.8984 M 4.88281,83.0078 22.4609,65.1367 m 5.4688,3.2227 -0.3906,14.0625 M 5.875,63.5 21,63.375 M 5.5,29 18.875,29.125 m 7.0625,-14.25 v 8.0625" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 8" sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc"/>
<path d="m 40.629,70.082 0.2356,-1.5452 0.11,-0.9774 v 0 l 0.0671,-0.5973 0.1625,-1.579 0.0885,-1.4975 v 0 l 0.0012,-0.0208 0.081,-1.5181 0.0179,-1.5222 -0.0378,-0.6239 v 0 l -0.0542,-0.8952 -0.1374,-1.5107 -0.2047,-1.2581 v 0 l -0.0405,-0.2489 -0.3509,-1.4834 -0.4136,-1.4545" inkstitch:running_stitch_length_mm="2" id="autosatinrun231" inkscape:label="Points droits pour auto-remplissage satin 9" sodipodi:nodetypes="cccccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin336" d="m 40.2075,52.9756 0.9363,0.1601 0.835,0.4771 0.7724,0.7896 L 43.5,55.5 44.1562,56.9688 44.625,58.875 44.9062,61.2188 45,64 V 74.3333 M 39.8352,52.9695 39.3922,53.0368 39.0426,53.2347 38.5,54 38.125,55.5 38,58 37.8438,60.8125 37.375,63.25 36.258,65.8306 m -0.4182,-6.5533 10.254,-0.1953" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="2" inkstitch:force_lock_stitches="True" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 10" sodipodi:nodetypes="ccccccccccccccccccccc"/>
</g>
<g inkscape:groupmode="layer" inkscape:label="GlyphLayer-Ç" style="display:none;fill:none;stroke:#00673e;stroke-width:0.945;stroke-opacity:1;stroke-miterlimit:4;" id="g158006">
<path d="m 18.2796,70.8014 -0.893,-1.2495 -0.6933,-1.2976 v 0 L 16.6621,68.1958 16.0608,66.8093 15.5493,65.381 15.3848,64.7761 v 0 l -0.2336,-0.859 -0.3092,-1.4872 -0.2312,-1.2917 v 0 L 14.5743,60.9346 14.3371,59.4337 14.182,57.9222 14.1424,57.4481 v 0 l -0.087,-1.0397 -0.0859,-1.5165 -0.0656,-1.1574 v 0 L 13.8836,53.3755 13.7977,51.859 13.721,50.3157 13.7113,50.018 v 0 L 13.6701,48.7634 13.6224,47.211 13.6029,46.2981 v 0 l -0.0137,-0.6387 -0.0119,-1.549 -0.0183,-1.5335 v 0 l -2e-4,-0.0147 0.0354,-1.5424 0.0639,-1.5445 0.0661,-0.6146 v 0 l 0.0992,-0.9228 0.1723,-1.5363 0.1887,-1.2331 v 0 l 0.044,-0.2877 0.2971,-1.5155 0.3496,-1.5005 0.0857,-0.3347 v 0 l 0.2954,-1.1528 0.4785,-1.4665 0.3559,-0.9226 v 0 l 0.197,-0.5108 0.6146,-1.4057 0.7331,-1.359 0.0506,-0.0813 v 0 l 0.7706,-1.2389 0.9889,-1.1951 0.4935,-0.5122 v 0 l 0.5733,-0.595 1.2469,-0.9148 1.1773,-0.6582 v 0 l 0.1594,-0.0891 1.4654,-0.4717 1.5326,-0.219 0.4513,-0.0081 v 0 l 1.0742,-0.0193 1.5134,0.0423 1.1301,0.0831 v 0 l 0.4067,0.0299 1.5092,0.2287 1.467,0.3696 0.2556,0.0999 v 0 l 1.1794,0.4613 1.3012,0.7728 0.6434,0.6877 v 0 l 0.3887,0.4154 0.8184,1.2858 0.6681,1.373 0.0213,0.0993 v 0 l 0.298,1.3903 0.099,1.5372 -0.073,0.7557 v 0 l -0.0757,0.7834 -0.11525,1.0036" inkstitch:running_stitch_length_mm="2" id="autosatinrun223" inkscape:label="Points droits pour auto-remplissage satin 1" sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin327" d="M 37.52,31.66 36.17,31.525 35.36,31.12 34.8875,30.5125 34.55,29.77 34.01,28.15 33.74,26.8 32.525,24.4375 31.8163,23.5094 31.04,22.75 30.1963,22.1594 29.285,21.7375 28.3063,21.4844 27.26,21.4 l -0.9239,0.076 -0.8817,0.2278 -0.8396,0.3797 -0.7973,0.5315 -1.4681,1.5188 -1.2994,2.1262 -1.0294,2.7675 -0.6581,3.4425 -0.2869,4.1175 0.0844,4.7925 0.54,4.32 1.08,10.8 0.675,3.9825 0.945,3.3075 0.5906,1.3838 0.6919,1.1812 0.7931,0.9788 0.8944,0.7762 0.9956,0.5906 1.0969,0.4219 1.1981,0.2531 M 38.3638,31.66 39.7675,31.525 40.8444,31.12 41.7525,30.445 42.65,29.5 43.4769,28.3863 44.0675,27.205 44.4219,25.9563 44.54,24.64 44.3375,23.02 43.73,21.4 42.785,19.8475 41.57,18.43 40.8275,17.8056 39.95,17.2825 37.79,16.54 35.2925,16.135 32.66,16 H 25.1 l -1.6031,0.1181 -1.5694,0.3544 -1.5356,0.5906 L 18.89,17.89 17.4219,18.9869 15.9875,20.3875 14.5869,22.0919 13.22,24.1 11.9375,26.3781 10.79,28.8925 9.77751,31.6431 8.90001,34.63 8.19126,37.9206 7.68501,41.5825 7.38126,45.6156 7.28001,50.02 v 1.08 l 0.27,7.8975 0.3375,3.3919 0.4725,3.0206 0.6075,2.6831 0.7425,2.3794 0.87749,2.0756 L 11.6,74.32 12.7475,75.8388 14.03,77.155 15.4475,78.2687 17,79.18 18.6875,79.8888 20.51,80.395 22.4675,80.6987 24.56,80.8 27.871749,80.8221 M 27.25932,68.532262 26.866408,81.143204 M 4.85001,50.83 21.86,50.695 m 5.67,-37.53 -0.135,9.18 m 6.345,9.315 9.45,-1.755 M 31.04,25.45 44.135,17.89 m -30.915,1.89 9.585,9.045" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 2" sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc"/>
<path d="M 26.197773,81.353521 25.655,81.8235 24.6748,82.7782 v 0 l -0.103,0.1003 -1.0862,1.1127 -0.837,0.8576 v 0 l -0.2491,0.2552 -1.0862,1.1127" inkstitch:running_stitch_length_mm="2" id="autosatinrun224" inkscape:label="Points droits pour auto-remplissage satin 3" sodipodi:nodetypes="cccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path d="m 22.1407,86.8537 1.5042,-0.3712 0.4564,-0.0627 v 0 l 1.0571,-0.1451 1.4504,-0.503 0.915,-0.1363 v 0 l 0.5869,-0.0874 1.5032,0.2453 1.2686,0.6172 v 0 l 0.1025,0.0498 1.1704,0.9734 0.8673,1.252 0.0963,0.3552 v 0 l 0.3032,1.118 0.0053,1.5239 -0.2242,0.8146 v 0 l -0.177,0.6434 -0.8601,1.2435 -1.0634,0.8285 v 0 l -0.1311,0.1021 -1.3866,0.6204 -1.471,0.3612 -0.3254,0.0352 v 0 L 26.6012,96.46 25.0805,96.4487 24.2701,96.3962 v 0 L 23.5613,96.3503 22.0648,96.0667 20.8197,95.715 v 0 L 20.5996,95.6528 19.166,95.159" inkstitch:running_stitch_length_mm="2" id="autosatinrun225" inkscape:label="Points droits pour auto-remplissage satin 4" sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin328" d="M 17.6953,94.2734 18.0977,94.0117 18.5,94 H 19 L 20.125,94.125 21.5,94.5 23.125,94.875 25,95 26.875,94.75 28.5,94 29.1562,93.4375 29.625,92.75 29.9062,91.9375 30,91 29.9062,90.0625 29.625,89.25 29.1562,88.5625 28.5,88 27.125,87.25 26,87 25,87.125 24,87.5 23,87.875 22,88 21.125,87.875 20.5,87.5 20,87 M 17.375,94.6328 17.1875,95.0664 17.5,95.5 18,96 20,96.875 22,97.5 24.25,97.875 27,98 29.3437,97.875 31.375,97.5 33.0937,96.875 34.5,96 35.5938,94.9375 36.375,93.75 36.8438,92.4375 37,91 36.875,89.5625 36.5,88.25 35.875,87.0625 35,86 33.9375,85.125 32.75,84.5 31.4375,84.125 30,84 29,84.125 28,84.5 26.75,84.875 25,85 21.25,86.8438 M 29.0938,90.5625 38,90.4688 m -17.5312,2.5 -2.5626,4.125" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 5"/>
<path id="autosatin329" d="m 20,87 4.1436,-6.2431 h 2.1689 M 21.25,86.8438 25,85 27.1878,80.7569 m -2.1858,4.2529 -0.8603,-4.2627" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 6"/>
<path id="autosatin330" d="M 27.871749,80.8221 32.12,80.8 l 2.7506,-0.1519 2.3119,-0.4556 1.8731,-0.7594 1.4344,-1.0631 1.1306,-1.4344 0.9619,-1.8731 0.6992,-2.0383 M 28.6606,69.3756 h 2.5819 L 32.39,69.1225 33.4025,68.7006 34.28,68.11 35.1383,67.2109 m -6.184174,13.803646 0.08743,-11.923275" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 7" sodipodi:nodetypes="ccccccccccccccccc"/>
<path d="m 39.2042,70.1236 0.5506,-1.4117 0.2748,-0.8502 v 0 l 0.2002,-0.6193 0.3651,-1.4885 0.2114,-1.5212 3e-4,-0.0022 v 0 l 0.1638,-1.5287 0.0677,-1.5476 -0.0051,-0.635 v 0 L 41.0256,59.6069 40.8843,58.0664 40.659,56.8245 v 0 L 40.6115,56.563 40.1208,55.1295" inkstitch:running_stitch_length_mm="2" id="autosatinrun226" inkscape:label="Points droits pour auto-remplissage satin 8" sodipodi:nodetypes="ccccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin331" d="m 38.465,54.0025 -0.3375,0.5738 -0.0675,0.8437 -0.27,5.13 -0.405,2.295 -0.675,2.025 -1.0125,1.755 -0.5708,0.598 m 3.9458,-13.693 0.7405,-0.286 0.407,0.016 1.0606,0.1722 0.8722,0.5059 0.7157,0.8418 0.5915,1.1801 0.4725,1.5188 0.3375,1.8562 0.2025,2.1938 0.0675,2.5312 v 3.78 L 44,70 43.3756,72.7506 43.2818,73.0243 M 37.115,56.23 l 5.4,-3.24 m -8.37,12.15 12.69,3.105 m -3.1149,4.9736 -8.9302,-6.3569" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="2" inkstitch:force_lock_stitches="True" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 9"/>
</g>
<g inkscape:groupmode="layer" inkscape:label="GlyphLayer-Æ" style="display:none;fill:none;stroke:#00673e;stroke-width:0.945;stroke-opacity:1;stroke-miterlimit:4;" id="g158002">
<path d="m 15.5399,74.4733 0.1698,0.8318 0.3791,1.4944 0.4212,1.1888 v 0 l 0.0954,0.2693 0.7342,1.3564 0.374225,0.736587" inkstitch:running_stitch_length_mm="2" id="autosatinrun218" inkscape:label="Points droits pour auto-remplissage satin 1" sodipodi:nodetypes="cccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin320" d="M 17.8594,80.9844 13,81 11.5938,80.909 10.375,80.6274 9.34375,80.1572 8.5,79.5 7.84375,78.5312 7.375,77.125 7.09375,75.2812 7,73 7.125,64.25 7.5,56 8.15994,48.5054 9,42 9.60192,38.1928 10.285,34.7547 11.0756,31.6893 12,29 14,24.5 16,21 17.0625,19.625 18.25,18.5 19.5625,17.625 21,17 24,16.25 27,16 h 7.1875 l -0.0469,7.4531 M 18.6875,81 H 24 L 24.875,80.75 25.5,80 25.6361,79.4463 25.5713,78.7734 25,77 22,69 21.1555,66.3397 20.5798,63.6516 20.2142,60.8877 20,58 19.4437,51.3186 19,45 18.9336,41.4684 19.0365,38.2224 19.4961,34.9902 20.5,31.5 21.9481,28.2295 23.5,25.5 25,23.375 26.5,22 28.125,21.25 30,21 l 0.538,0.0799 0.5835,0.2509 0.5836,0.4384 0.538,0.6424 0.9295,1.6278 L 34.0828,26 M 28.5,13.75 l 0.125,9 M 15.75,16.625 25,25.75 M 9.375,31.875 22,32.125 M 5,74.5 25.75,74.25" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" sodipodi:nodetypes="cssssssssssscccsssssssssccccccccc" inkscape:label="Auto-remplissage satin 2"/>
<path d="m 39.3021,21.7552 0.2111,-1.5293 0.3681,-0.1074 v 0 l 1.0574,-0.3085 1.4914,-0.2669 1.0986,-0.1328 v 0 l 0.4416,-0.0534 1.5525,-0.15 1.569,-0.1012 0.1462,-0.0056 v 0 l 1.4288,-0.0548 1.5795,-0.0299 0.7135,-0.0031 v 0 l 0.8058,-0.0036 1.5486,0.0195 1.3685,0.0171 v 0 l 0.1802,0.0023 1.5467,0.0428 1.5388,0.1585 0.4385,0.0947 v 0 l 1.0721,0.2315 1.3983,0.6422 0.8669,0.6569 v 0 l 0.3565,0.2702 1.0211,1.1484 0.7816,1.3305 0.0629,0.1856 v 0 l 0.429,1.2667 0.2341,1.5519 0.0577,0.8142 v 0 l 0.0511,0.7226 0.1771,1.4971" inkstitch:running_stitch_length_mm="2" id="autosatinrun219" inkscape:label="Points droits pour auto-remplissage satin 3" sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin321" d="M 65,31 63.25,30.75 62.5625,30.4375 62,30 61,28.75 60,27 59,25 58.4687,24.0938 57.875,23.375 57.2187,22.8437 56.5,22.5 54.375,22.125 51,22 49.125,22.125 47.5,22.5 46.125,23.125 45,24 44.1917,25.254 43.6779,27.0106 43,32 l -0.2114,3.2424 0.087,3.2192 0.0359,0.3795 M 66.1049,31 66.9485,30.7828 67.6051,30.215 68.0994,29.3779 68.4561,28.353 68.8553,26.0644 69,24 68.8125,22.5313 68.25,21.125 67.3125,19.7813 66,18.5 64.375,17.4062 62.5,16.625 60.375,16.1562 58,16 H 34.1875 l -0.1477,22.847 m 25.7107,-9.7623 9.6344,-0.0883 M 51.2652,14.1471 51.0001,23.2511 M 32.085,14.1471 45.9619,24.9305 m -13.6118,2.2981 12.1092,0.1768" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" sodipodi:nodetypes="cssssssssssssssscccssccsssssssssssccccccccccccccccc" inkscape:label="Auto-remplissage satin 4"/>
<path d="m 33.6713,39.2402 -0.5313,1.449 -0.774,0.8517 v 0 l -0.106,0.1166 -1.5564,0.1377 -1.5312,0.3239 -0.3324,0.0816 v 0 l -1.173,0.288 -1.4521,0.5387 -0.7838,0.3794 v 0 l -0.6073,0.294 -1.2888,0.8635 -1.0899,0.881 v 0 l -0.1141,0.0923 -1.0804,1.0909 -0.9808,1.2032 -0.0831,0.3842 v 0 l -0.2366,1.0931 -0.1273,1.5473 -0.0486,0.9553 v 0 l -0.0303,0.5952" inkstitch:running_stitch_length_mm="2" id="autosatinrun220" inkscape:label="Points droits pour auto-remplissage satin 5" sodipodi:nodetypes="ccccccccccccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin322" d="M 19.625,52.875 C 19.3007,50.2887 19.0746,47.6696 19,45 c 1.3333,-1.3333 2.6667,-2.5 4,-3.5 1.3333,-1 2.5,-1.6667 3.5,-2 1,-0.3333 2.1667,-0.6667 3.5,-1 1.3333,-0.3333 3.2835,-0.5221 3.9502,-0.5221 M 20,58 c 0,-4.6667 1.1667,-8 3.5,-10 2.3333,-2 5.8333,-3 10.5,-3 l 0.0352,-6.25 m -13.1602,3 2.3125,8.8125 m 7.0625,-13.5 v 9.375" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" sodipodi:nodetypes="ccsssccscccccc" inkscape:label="Auto-remplissage satin 6"/>
<path id="autosatin323" d="m 42.9115,38.8411 0.2662,2.8112 0.4339,3.1573 0.9303,6.1932 0.3297,3.0257 0.0079,0.1828 M 34.0398,38.847 34,45 v 3 l -0.125,4.125 -0.2003,2.3367 m 9.6903,-15.5214 -9.7699,0.007" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" sodipodi:nodetypes="cssssssssssssssscccssccsssssssssssccccccccccccccccc" inkscape:label="Auto-remplissage satin 7"/>
<path d="M 44.75,53 44.6923,51.4446 44.6455,49.8909 44.66,49.5154 v 0 l 0.0448,-1.1626 0.1152,-1.5192 0.1058,-0.7925 v 0 l 0.0992,-0.7434 0.9786,-1.1782 0.8572,-0.8469 v 0 l 0.2248,-0.2221 1.1654,-1.0188 1.2912,-0.8437 0.0689,-0.0412 v 0 l 1.2473,-0.7458 1.398,-0.6274 0.4798,-0.1442 v 0 l 0.9859,-0.2963 1.5183,-0.27 0.9146,-0.029 v 0 l 0.6311,-0.0201 1.5454,0.0792 1.3002,0.1403 v 0 l 0.2301,0.0249 1.4691,0.4104" inkstitch:running_stitch_length_mm="2" id="autosatinrun221" inkscape:label="Points droits pour auto-remplissage satin 8" sodipodi:nodetypes="cccccccccccccccccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin324" d="M 63,39.7734 V 41 L 62.8125,42.2593 62.5781,42.6972 62.25,43.0083 61.3125,43.2531 60,43 H 58 56 L 53.625,43.1875 51.5,43.75 49.625,44.6875 48,46 46.6875,47.6875 45.75,49.75 45.1875,52.1875 45,55 M 63,39 62.875,38.0625 62.5,37.25 61.875,36.5625 61,36 59.9375,35.5625 58.75,35.25 56,35 54.5,35.125 53,35.5 51.5,36.125 50,37 46.9531,39.3125 43.4062,42.625 44.5,51 m -0.0407,-11.6622 4.5078,8.0433 M 60.4576,33.8577 60.546,44.3759" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" sodipodi:nodetypes="ccsssccssccsccccc" inkscape:label="Auto-remplissage satin 9"/>
<path id="autosatin325" d="M 44.8795,54.2113 45,57 45.125,60.625 45.5,63.5 46.125,65.75 47,67.5 47.5625,68.1875 48.25,68.75 49.0625,69.1875 50,69.5 52,69.875 54,70 56.3437,69.8125 58.375,69.25 60.0937,68.3125 61.5,67 62.5938,65.3125 62.6984,65.0363 M 33.6747,54.4617 33.5,56.5 33.125,61.125 33,66 v 11 l 0.25,1.75 0.3125,0.6875 L 34,80 34.5625,80.4375 35.25,80.75 37,81 H 65 L 66.4062,80.9062 67.625,80.625 68.6562,80.1562 69.5,79.5 70.1562,78.6562 70.625,77.625 70.9062,76.4062 71,75 V 72.318 M 30.8475,63.291 47.8181,62.8491 m 5.5685,5.8336 -0.1768,13.435 M 59.397,66.915 70.7107,81.0571" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" sodipodi:nodetypes="cssssssssssssssscccssccsssssssssssccccccccccccccccc" inkscape:label="Auto-remplissage satin 10"/>
<path d="m 66.5781,70.2206 0.2711,-1.5435 0.108,-0.8768 v 0 l 0.078,-0.6333 0.1702,-1.5146 0.0992,-1.5348 0.0014,-0.0228 v 0 l 0.0977,-1.512 0.0138,-1.5413 -6e-4,-0.6666 v 0 l -9e-4,-0.8764 -0.057,-1.5375 -0.1696,-1.2972 v 0 l -0.0326,-0.249 -0.2914,-1.503" inkstitch:running_stitch_length_mm="2" id="autosatinrun222" inkscape:label="Points droits pour auto-remplissage satin 11" sodipodi:nodetypes="ccccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin326" d="M 66,53 65.125,53.25 64.5,54 64.125,55.5 64,58 63.8438,60.8125 63.375,63.25 62.6984,65.0363 M 67.0607,53 l 0.872,0.1562 0.6936,0.4688 0.6311,0.7812 0.6845,1.0938 0.5872,1.4688 L 70.846,58.875 71,64 v 8.318 M 62.2254,57.369 72.6552,56.8387" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="2" inkstitch:force_lock_stitches="True" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" sodipodi:nodetypes="cssssssssssssssscccssccsssssssssssccccccccccccccccc" inkscape:label="Auto-remplissage satin 12"/>
</g>
<g inkscape:groupmode="layer" inkscape:label="GlyphLayer-Å" style="display:none;fill:none;stroke:#00673e;stroke-width:0.945;stroke-opacity:1;stroke-miterlimit:4;" id="g157998">
<path d="m 16.183,73.7471 0.305,1.4546 0.3922,1.4759 0.2612,0.6749 v 0 l 0.2908,0.7511 0.7191,1.338 0.252041,0.743773" inkstitch:running_stitch_length_mm="2" id="autosatinrun214" inkscape:label="Points droits pour auto-remplissage satin 1" sodipodi:nodetypes="cccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin313" d="M 18.0487,80.7613 13.7568,80.73 12.4743,80.6232 11.3268,80.3201 10.3143,79.8169 9.43677,79.11 8.72802,78.0975 8.22177,76.68 7.91802,74.8575 7.81677,72.63 l 0.135,-8.91 0.405,-8.37 0.675,-7.56 0.945,-6.4801 1.62003,-6.9525 1.62,-5.7375 0.8437,-2.4131 0.9113,-2.1094 0.9787,-1.8056 1.0463,-1.5019 1.1137,-1.2487 1.1813,-1.0463 1.2487,-0.8437 1.3163,-0.6413 2.835,-0.81 3.105,-0.27 h 4.5835 m -13.0035,64.7845 5.18,0.0156 0.945,-0.2017 0.675,-0.6083 0.1687,-0.4894 -0.0337,-0.6581 -0.675,-1.8225 -2.7,-7.56 -0.8775,-3.1725 -0.4725,-3.0375 -0.27,-5.67 -1.1808,-6.4337 -0.3632,-3.2452 -0.076,-3.2812 v -2.16 -1.0799 l 0.675,-5.4676 0.945,-4.5225 1.1475,-3.645 1.2825,-2.835 0.7087,-1.1137 0.7763,-0.9113 0.8437,-0.7087 0.9113,-0.5063 1.8225,-0.6075 1.6875,-0.2025 0.6694,0.1116 M 7.00163,74.3643 25.6321,74.3571 m -9.8482,-54.7213 8.4004,5.8231 m 3.6275,-10.6914 2.5774,7.1594 m -18.4568,7.202 11.0486,-0.0442" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" sodipodi:nodetypes="csssscsssssssssccsssssssccssccsccccsssssssssscccsssssssccccccccccc" inkscape:label="Auto-remplissage satin 2"/>
<path d="M 29.73849,8.4404379 29.0363,8.08855 27.8984,7.06544 27.7355,6.74018 v 0 L 27.2281,5.72767 26.9702,4.21608 27.0551,3.45291 v 0 L 27.1399,2.69055 27.703,1.26266 28.3909,0.363831 v 0 l 0.2472,-0.3230102 1.3003,-0.7681538 1.010064,-0.16120465" inkstitch:running_stitch_length_mm="2" id="autosatinrun215" inkscape:label="Points droits pour auto-remplissage satin 3" sodipodi:nodetypes="cccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin314" d="m 31.3923,-2.96685 -1.5204,0.16479 -1.2604,0.46928 -1.0853,0.77287 -0.995,1.075535 -0.5653,0.799699 -0.4345,0.871046 -0.4843,1.8843 0.016,1.95419 0.5014,1.88041 0.4466,0.84185 0.583,0.77463 1.4891,1.29299 1.7775,0.86026 0.9435,0.2338 0.9514,0.0847 0.2495,-0.0172 M 31.4768,1.013 30.6881,1.08968 30.1192,1.3142 l -0.4174,0.36911 -0.3341,0.51043 -0.3593,0.87047 -0.1573,0.91713 0.0732,0.91125 0.3324,0.85283 0.4773,0.53798 0.6439,0.38074 1.3951,0.30461 0.1076,-0.01063 m -5.3566,-7.44936 2.851,2.69185 m -3.8201,4.70766 3.7113,-1.16584 m 2.4894,5.26107 0.0174,-4.04475" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 4"/>
<path d="M 31.187101,8.8843296 31.9428,8.96719 33.4564,8.72882 33.7919,8.55907 v 0 l 1.0248,-0.5185 1.0868,-1.08138 0.3738,-0.65271 v 0 l 0.374,-0.65301 0.3948,-1.45416 -0.0717,-1.17229 v 0 L 36.9542,2.69649 36.3247,1.30605 35.3179,0.162626 35.2725,0.135579 v 0 l -1.2613,-0.750995 -1.4886,-0.309481" inkstitch:running_stitch_length_mm="2" id="autosatinrun216" inkscape:label="Points droits pour auto-remplissage satin 5" sodipodi:nodetypes="cccccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin315" d="m 32.0403,1.013 0.8651,0.11064 0.6727,0.31269 0.5272,0.48062 0.4286,0.61443 0.2744,0.83871 -0.0188,0.94196 -0.2686,0.89925 -0.475,0.71057 -1.0207,0.778 -0.5788,0.20237 -0.5658,0.05588 m 0.2409,-9.93602 2.0458,0.26835 0.9699,0.34524 0.9161,0.48451 0.8485,0.62269 0.767,0.759813 0.6717,0.895836 0.5626,1.030781 0.3186,0.93253 0.1365,0.97603 -0.0319,0.9975 -0.1864,0.99694 -0.7817,1.90412 -1.2352,1.63758 -1.1359,0.98954 -1.2717,0.65854 -1.4098,0.3644 -1.3005,0.0898 m 5.1252,-2.09535 -3.0916,-2.966 m 4.874,-4.48807 -4.3885,1.10695 M 32.1111,11.1704 31.9739,6.74724" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 6"/>
<path id="autosatin316" d="m 32.3803,15.9299 h 11.6165 l 1.35,0.135 0.81,0.405 0.405,0.675 0.135,0.945 -0.27,2.97 -0.2025,1.62 -0.0675,2.16 v 6.48 10.4409 m -14.9906,-20.8593 0.9506,0.1584 0.945,0.405 0.675,0.675 1.08,1.89 0.405,1.35 0.135,1.89 v 2.97 l -0.27,2.43 -0.27,2.16 v 2.7 l -0.3306,4.2977 M 33.4439,23.4542 47.1901,16.0084 M 34.2947,29.0847 46.9784,28.9522 m -14.4373,-13.2717 -1.337,5.4868" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" sodipodi:nodetypes="csssscsssssssssccsssssssccssccsccccsssssssssscccsssssssccccccccccc" inkscape:label="Auto-remplissage satin 7"/>
<path d="m 33.6841,39.199 -0.9247,1.2398 -0.2961,0.2823 v 0 l -0.755,0.7196 -1.5345,0.2895 -1.1143,0.3051 v 0 l -0.3906,0.107 -1.483,0.5031 -1.3806,0.6801 -0.2128,0.131 v 0 l -1.076,0.662 -1.2348,0.8851 -0.7083,0.6735 v 0 l -0.391,0.3718 -0.8144,1.2529 -0.2625,1.5028 -0.0216,0.1993 v 0 l -0.1432,1.3195 -0.0593,1.5429 0.0217,0.8884 v 0 l 0.0159,0.6523 0.1044,1.5502" inkstitch:running_stitch_length_mm="2" id="autosatinrun217" inkscape:label="Points droits pour auto-remplissage satin 8" sodipodi:nodetypes="cccccccccccccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin317" d="M 20.9387,55.5048 C 20.1584,51.8814 19.652,48.2369 19.6968,44.55 c 1.44,-1.44 2.88,-2.61 4.32,-3.51 1.44,-0.9001 2.79,-1.6201 4.05,-2.1601 1.26,-0.54 2.43,-0.9 3.51,-1.08 1.08,-0.18 2.16,-0.27 3.24,-0.27 m -13.5,19.9801 c 0,-4.68 1.08,-8.01 3.24,-9.99 2.16,-1.98 5.4,-2.97 9.72,-2.97 l 0.4797,-6.5381 m -9.9039,1.3841 2.7683,6.7776" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" sodipodi:nodetypes="ccsssccscccc" inkscape:label="Auto-remplissage satin 9"/>
<path id="autosatin318" d="m 46.1568,41.7607 v 1.7092 2.7 l 0.135,6.2101 0.405,5.67 1.08,9.45 1.08,6.75 0.2398,1.3591 M 34.4862,41.8276 34.2768,44.5499 V 47.79 l -0.135,6.1425 -0.405,5.4675 -1.08,8.91 -0.81,6.21 -0.1,1.2998 M 30.9637,74.2705 50.038,74.175" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" sodipodi:nodetypes="csssscsssssssssccsssssssccssccsccccsssssssssscccsssssssccccccccccc" inkscape:label="Auto-remplissage satin 10"/>
<path id="autosatin319" d="m 40.0465,80.6858 -5.2297,0.0442 -1.755,-0.1304 -0.945,-0.4096 -0.405,-0.81 -0.135,-1.35 0.17,-2.2102 m 10.2884,4.8218 4.1216,0.0884 1.7549,-0.1234 0.9451,-0.4166 0.405,-0.81 0.135,-1.35 -0.135,-1.485 -0.1651,-0.9359 m 0.8861,0.0879 -19.1124,0.2331" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="2" inkstitch:force_lock_stitches="True" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" sodipodi:nodetypes="csssscsssssssssccsssssssccssccsccccsssssssssscccsssssssccccccccccc" inkscape:label="Auto-remplissage satin 12"/>
</g>
<g inkscape:groupmode="layer" inkscape:label="GlyphLayer-Ä" style="display:none;fill:none;stroke:#00673e;stroke-width:0.945;stroke-opacity:1;stroke-miterlimit:4;" id="g157994">
<path d="m 16.1635,73.6856 0.2739,1.3375 0.3888,1.5033 0.2851,0.7657 v 0 l 0.2581,0.6934 0.7251,1.3741 0.303769,0.795876" inkstitch:running_stitch_length_mm="2" id="autosatinrun210" inkscape:label="Points droits pour auto-remplissage satin 1" sodipodi:nodetypes="cccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin305" d="M 17.7574,80.7521 13.7568,80.73 12.4743,80.6246 11.3268,80.3213 10.3143,79.8174 9.43677,79.11 8.72802,78.0975 8.22177,76.68 7.91802,74.8575 7.81677,72.63 l 0.135,-8.91 0.405,-8.37 0.675,-7.56 0.945,-6.4801 1.62003,-6.9525 1.62,-5.7375 0.8437,-2.4131 0.9113,-2.1094 0.9787,-1.8056 1.0463,-1.5019 1.1137,-1.2487 1.1813,-1.0463 1.2487,-0.8437 1.3163,-0.6413 2.835,-0.81 1.2837,-0.1116 m -6.6492,64.6196 5.2305,0.0221 0.945,-0.2014 0.675,-0.6086 0.1687,-0.4894 -0.0337,-0.6581 -0.675,-1.8225 -2.7,-7.56 -0.8775,-3.1725 -0.4725,-3.0375 -0.27,-5.67 -1.1808,-6.4337 -0.3632,-3.2452 -0.076,-3.2811 v -2.16 -1.08 l 0.675,-5.4676 0.945,-4.5225 1.1475,-3.645 1.2825,-2.835 0.7087,-1.1137 0.7763,-0.9113 0.8437,-0.7087 0.9113,-0.5063 1.5759,-0.5253 M 7.00163,73.9665 25.9415,73.871 m -10.1576,-54.2351 8.4004,5.823 m -12.517,3.5375 11.2253,0.0441" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" sodipodi:nodetypes="csssscsssssssssccsssssssccssccsccccsssssssssscccsssssssccccccccccc" inkscape:label="Auto-remplissage satin 2"/>
<path d="M 25.1283,10.6273 25.0332,9.11752 24.9657,7.6002 24.9589,7.23059 v 0 l -0.0215,-1.1739 0.0074,-1.55702 0.0266,-0.93349 v 0 l 0.0172,-0.60637 0.0697,-1.53829" inkstitch:running_stitch_length_mm="2" id="autosatinrun211" inkscape:label="Points droits pour auto-remplissage satin 3" sodipodi:nodetypes="ccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin306" d="m 24.9684,-0.0942942 c -1.4636,0 -2.5225,0.5854422 -3.547,1.7563342 -1.0245,1.17088 -1.5368,2.48813 -1.5368,3.95174 0,1.46361 0.5123,2.70768 1.5368,3.7322 1.0245,1.02452 2.1085,1.54162 3.5721,1.54162 M 25.38,-0.0908652 c 1.4636,0 2.4081,0.5820132 3.2863,1.7529052 0.8781,1.17088 1.3172,2.48813 1.3172,3.95174 0,1.46361 -0.4391,2.70768 -1.3172,3.7322 -0.8782,1.02452 -1.855,1.54162 -3.3186,1.54162" inkstitch:satin_column="True" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkscape:label="Auto-remplissage satin 4"/>
<path id="autosatin307" d="m 28.5627,21.0746 0.2466,-0.0822 1.6875,-0.2025 1.62,0.27 0.945,0.405 0.7923,0.9329 m -7.8786,-6.3095 1.8213,-0.1584 16.3054,-0.0313 m -16.2904,-1.1311 2.5774,7.1594" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" sodipodi:nodetypes="csssscsssss" inkscape:label="Auto-remplissage satin 5"/>
<path d="M 39.237675,10.22105 39.1582,9.11752 39.0907,7.6002 39.0839,7.23059 v 0 l -0.0215,-1.1739 0.0074,-1.55702 0.0266,-0.93349 v 0 l 0.0172,-0.60637 0.0697,-1.53829" inkstitch:running_stitch_length_mm="2" id="autosatinrun212" inkscape:label="Points droits pour auto-remplissage satin 6" sodipodi:nodetypes="ccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin308" d="m 39.0934,-0.0942942 c -1.4636,0 -2.5225,0.5854422 -3.547,1.7563342 -1.0245,1.17088 -1.5368,2.48813 -1.5368,3.95174 0,1.46361 0.5123,2.70768 1.5368,3.7322 1.0245,1.02452 2.1085,1.54162 3.5721,1.54162 M 39.505,-0.0908652 c 1.4636,0 2.4081,0.5820132 3.2863,1.7529052 0.8781,1.17088 1.3172,2.48813 1.3172,3.95174 0,1.46361 -0.4391,2.70768 -1.3172,3.7322 -0.8782,1.02452 -1.855,1.54162 -3.3186,1.54162" inkstitch:satin_column="True" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkscape:label="Auto-remplissage satin 7"/>
<path id="autosatin309" d="m 44.7764,16.0079 0.5704,0.057 0.81,0.405 0.405,0.675 0.135,0.945 -0.27,2.97 -0.2025,1.62 -0.0675,2.16 v 6.48 10.4886 m -12.1361,-19.1717 0.7961,1.3931 0.405,1.35 0.135,1.89 v 2.97 l -0.27,2.43 -0.27,2.16 v 2.7 l -0.3321,4.317 M 33.4439,23.4542 47.1901,16.0084 M 34.2505,29.0405 47.0668,28.9522 M 45.4162,15.6826 33.53,23.0589" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" sodipodi:nodetypes="csssscsssssssssccsssssssccssccsccccsssssssssscccsssssssccccccccccc" inkscape:label="Auto-remplissage satin 8"/>
<path d="m 33.6841,39.199 -0.9247,1.2398 -0.2961,0.2823 v 0 l -0.755,0.7196 -1.5345,0.2895 -1.1143,0.3051 v 0 l -0.3906,0.107 -1.483,0.5031 -1.3806,0.6801 -0.2128,0.131 v 0 l -1.076,0.662 -1.2348,0.8851 -0.7083,0.6735 v 0 l -0.391,0.3718 -0.8144,1.2529 -0.2625,1.5028 -0.0216,0.1993 v 0 l -0.1432,1.3195 -0.0593,1.5429 0.0217,0.8884 v 0 l 0.0159,0.6523 0.1044,1.5502" inkstitch:running_stitch_length_mm="2" id="autosatinrun213" inkscape:label="Points droits pour auto-remplissage satin 9" sodipodi:nodetypes="cccccccccccccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin310" d="M 20.9387,55.5048 C 20.1584,51.8814 19.652,48.2369 19.6968,44.55 c 1.44,-1.44 2.88,-2.61 4.32,-3.51 1.44,-0.9001 2.79,-1.6201 4.05,-2.1601 1.26,-0.54 2.43,-0.9 3.51,-1.08 1.08,-0.18 2.16,-0.27 3.24,-0.27 m -13.5,19.9801 c 0,-4.68 1.08,-8.01 3.24,-9.99 2.16,-1.98 5.4,-2.97 9.72,-2.97 l 0.4797,-6.5381 m -9.9039,1.3841 2.7683,6.7776" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" sodipodi:nodetypes="ccsssccscccc" inkscape:label="Auto-remplissage satin 10"/>
<path id="autosatin311" d="m 46.1568,41.8084 v 1.6615 2.7 l 0.135,6.2101 0.405,5.67 1.08,9.45 1.08,6.75 0.2505,1.4194 M 34.4847,41.8469 34.2768,44.55 v 3.24 l -0.135,6.1425 -0.405,5.4675 -1.08,8.91 -0.81,6.21 -0.1006,1.3083 m -1.3128,-1.6462 19.7813,-0.0955" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" sodipodi:nodetypes="csssscsssssssssccsssssssccssccsccccsssssssssscccsssssssccccccccccc" inkscape:label="Auto-remplissage satin 11"/>
<path id="autosatin312" d="m 40.0023,80.7521 -5.1855,-0.0221 -1.755,-0.1373 -0.945,-0.4027 -0.405,-0.81 -0.135,-1.35 0.1694,-2.2017 m 9.8471,4.9238 4.5635,-0.0221 1.755,-0.1376 0.945,-0.4024 0.405,-0.81 0.135,-1.35 -0.135,-1.485 -0.1545,-0.8756 m 0.8867,0.0904 -19.1248,0.1762" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="2" inkstitch:force_lock_stitches="True" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" sodipodi:nodetypes="csssscsssssssssccsssssssccssccsccccsssssssssscccsssssssccccccccccc" inkscape:label="Auto-remplissage satin 13"/>
</g>
<g inkscape:groupmode="layer" inkscape:label="GlyphLayer-Ã" style="display:none;fill:none;stroke:#00673e;stroke-width:0.945;stroke-opacity:1;stroke-miterlimit:4;" id="g157990">
<path d="m 16.1754,73.7409 0.3119,1.4701 0.397,1.478 0.257,0.657 v 0 l 0.3009,0.7694 0.7251,1.3371 0.275086,0.636684" inkstitch:running_stitch_length_mm="2" id="autosatinrun207" inkscape:label="Points droits pour auto-remplissage satin 1" sodipodi:nodetypes="cccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin299" d="M 18.0889,80.73 H 13.7568 L 12.4743,80.6287 11.3268,80.325 10.3143,79.8188 9.43677,79.11 8.72802,78.0975 8.22177,76.68 7.91802,74.8575 7.81677,72.63 l 0.135,-8.91 0.405,-8.37 0.675,-7.56 0.945,-6.4801 1.62003,-6.9525 1.62,-5.7375 0.8437,-2.4131 0.9113,-2.1094 0.9787,-1.8056 1.0463,-1.5019 1.1137,-1.2487 1.1813,-1.0463 1.2487,-0.8437 1.3163,-0.6413 2.835,-0.81 1.0844,-0.0943 M 19.3484,80.73 h 5.2084 l 0.945,-0.2025 0.675,-0.6075 0.1687,-0.4894 -0.0337,-0.6581 -0.675,-1.8225 -2.7,-7.56 -0.8775,-3.1725 -0.4725,-3.0375 -0.27,-5.67 -1.1808,-6.4337 -0.3632,-3.2452 -0.076,-3.2812 v -2.16 -1.0799 l 0.675,-5.4676 0.945,-4.5225 1.1475,-3.645 1.2825,-2.835 0.7087,-1.1137 0.7763,-0.9113 0.8437,-0.7087 0.9113,-0.5063 1.4534,-0.4845 M 7.00163,74.4968 25.5438,74.4013 m -9.7599,-54.7655 8.4004,5.8231 M 11.0625,32 l 11,-0.0625" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" sodipodi:nodetypes="csssscsssssssssccsssssssccssccsccccsssssssssscccsssssssccccccccccccccc" inkscape:label="Auto-remplissage satin 2"/>
<path d="m 23.8914,9.65971 0.8988,-1.21255 0.4135,-0.30074 v 0 L 26.0304,7.54517 27.3997,6.8196 28.3435,6.5778 v 0 l 0.5364,-0.13742 1.5005,-0.18709 1.4758,-0.1145 v 0 L 31.93,6.13306 33.4669,6.05051 34.9862,5.9481 35.3915,5.88427 v 0 L 36.5183,5.70679 37.912,5.11132 38.568,4.51008 v 0 l 0.4535,-0.41566 0.5437,-1.41936" inkstitch:running_stitch_length_mm="2" id="autosatinrun208" inkscape:label="Points droits pour auto-remplissage satin 3" sodipodi:nodetypes="ccccccccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin300" d="m 39.6678,1.34996 0.7941,1.02827 0.519,1.1428 0.3092,1.23255 0.1648,1.29755 -0.0525,1.01336 -0.2582,0.98064 -0.4851,0.88257 -0.7335,0.71913 -0.9974,0.60847 -1.0722,0.4637 -1.1228,0.31 -1.1494,0.1471 -1.2773,-0.0162 -1.2671,-0.1544 -2.5054,-0.5222 -2.8271,-0.52399 -1.4044,-0.05837 -1.3457,0.27716 -0.9138,0.537 -0.4924,0.377 M 39.4568,1.17808 38.2474,2.38756 37.3985,2.96559 36.3318,3.17613 34.9652,3.00618 33.5921,2.62621 30.8014,1.66253 29.3717,1.29199 27.9108,1.13777 l -1.4982,0.16869 -1.5417,0.59818 -1.1184,0.88694 -0.4214,0.59279 -0.2639,0.66871 -0.4994,1.77068 -0.0899,1.83195 0.3022,1.81188 0.6767,1.71051 m -2.0312,-3.75002 5.6875,3.18752 m 9.4062,-8.43752 6.125,2.28125" sodipodi:nodetypes="ccsssccscsscccccc" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 4"/>
<path id="autosatin301" d="m 25.7762,16.1056 2.0206,-0.1757 h 16.2 l 1.35,0.135 0.81,0.405 0.405,0.675 0.135,0.945 -0.27,2.97 -0.2025,1.62 -0.0675,2.16 v 6.48 8.7051 m -17.7166,-18.9096 0.3691,-0.123 1.6875,-0.2025 1.62,0.27 0.945,0.405 0.675,0.675 1.08,1.89 0.405,1.35 0.135,1.89 v 2.97 l -0.27,2.43 -0.27,2.16 v 2.7 l -0.1911,2.4848 M 33.4439,23.4542 47.1901,16.0084 m -19.3783,-1.2409 2.5774,7.1594 m 3.6733,10.1981 h 12.875" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" sodipodi:nodetypes="csssscsssssssssccsssssssccssccsc" inkscape:label="Auto-remplissage satin 5"/>
<path d="m 33.6841,39.199 -0.9247,1.2398 -0.2961,0.2823 v 0 l -0.755,0.7196 -1.5345,0.2895 -1.1143,0.3051 v 0 l -0.3906,0.107 -1.483,0.5031 -1.3806,0.6801 -0.2128,0.131 v 0 l -1.076,0.662 -1.2348,0.8851 -0.7083,0.6735 v 0 l -0.391,0.3718 -0.8144,1.2529 -0.2625,1.5028 -0.0216,0.1993 v 0 l -0.1432,1.3195 -0.0593,1.5429 0.0217,0.8884 v 0 l 0.0159,0.6523 0.1044,1.5502" inkstitch:running_stitch_length_mm="2" id="autosatinrun209" inkscape:label="Points droits pour auto-remplissage satin 6" sodipodi:nodetypes="cccccccccccccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin302" d="M 20.9387,55.5048 C 20.1584,51.8814 19.652,48.2369 19.6968,44.55 c 1.44,-1.44 2.88,-2.61 4.32,-3.51 1.44,-0.9001 2.79,-1.6201 4.05,-2.1601 1.26,-0.54 2.43,-0.9 3.51,-1.08 1.08,-0.18 2.16,-0.27 3.24,-0.27 m -13.5,19.9801 c 0,-4.68 1.08,-8.01 3.24,-9.99 2.16,-1.98 5.4,-2.97 9.72,-2.97 l 0.4797,-6.5381 m -9.9039,1.3841 2.7683,6.7776" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" sodipodi:nodetypes="ccsssccscccc" inkscape:label="Auto-remplissage satin 7"/>
<path id="autosatin303" d="m 46.1568,40.025 v 3.4449 2.7 l 0.135,6.2101 0.405,5.67 1.08,9.45 1.08,6.75 0.2114,1.1979 M 34.616985,40.060898 34.2768,44.5499 V 47.79 l -0.135,6.1425 -0.405,5.4675 -1.08,8.91 -0.81,6.21 -0.0857,1.1145 m -1.6104,-1.2284 19.711,-0.0955" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" sodipodi:nodetypes="csssscsssssssssccs" inkscape:label="Auto-remplissage satin 8"/>
<path id="autosatin304" d="m 40.5237,80.7144 -5.7069,0.0156 -1.755,-0.1335 -0.945,-0.4065 -0.405,-0.81 -0.135,-1.35 0.1843,-2.3955 m 9.8563,5.0955 h 4.5394 l 1.755,-0.135 0.945,-0.405 0.405,-0.81 0.135,-1.35 -0.135,-1.485 -0.1936,-1.0971 m 0.884,0.0891 -19.0654,0.2066" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="2" inkstitch:force_lock_stitches="True" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" sodipodi:nodetypes="csssscsssssssssccsssssssccssccsccccsssssssssscccsssssssccccccccccccccc" inkscape:label="Auto-remplissage satin 10"/>
</g>
<g inkscape:groupmode="layer" inkscape:label="GlyphLayer-Â" style="display:none;fill:none;stroke:#00673e;stroke-width:0.945;stroke-opacity:1;stroke-miterlimit:4;" id="g157986">
<path d="m 16.1615,73.7471 0.2789,1.3279 0.4028,1.499 0.3002,0.7734 v 0 l 0.262,0.6751 0.7517,1.3556 0.373717,0.909961" inkstitch:running_stitch_length_mm="2" id="autosatinrun203" inkscape:label="Points droits pour auto-remplissage satin 1" sodipodi:nodetypes="cccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin292" d="M 18.0226,80.7521 13.7568,80.73 12.4743,80.6248 11.3268,80.3215 10.3143,79.8174 9.43677,79.11 8.72802,78.0975 8.22177,76.68 7.91802,74.8575 7.81677,72.63 l 0.135,-8.91 0.405,-8.37 0.675,-7.56 0.945,-6.4801 1.62003,-6.9525 1.62,-5.7375 0.8437,-2.4131 0.9113,-2.1094 0.9787,-1.8056 1.0463,-1.5019 1.1137,-1.2487 1.1813,-1.0463 1.2487,-0.8437 1.3163,-0.6413 2.835,-0.81 3.105,-0.27 h 16.2 l 0.6801,0.068 m -25.3727,64.7542 5.2526,-0.0221 0.945,-0.2036 0.675,-0.6064 0.1687,-0.4894 -0.0337,-0.6581 -0.675,-1.8225 -2.7,-7.56 -0.8775,-3.1725 -0.4725,-3.0375 -0.27,-5.67 -1.1808,-6.4337 -0.3632,-3.2452 -0.076,-3.2812 v -2.16 -1.0799 l 0.675,-5.4676 0.945,-4.5225 1.1475,-3.645 1.2825,-2.835 0.7087,-1.1137 0.7763,-0.9113 0.8437,-0.7087 0.9113,-0.5063 1.8225,-0.6075 1.6875,-0.2025 1.62,0.27 0.945,0.405 0.675,0.675 0.2698,0.4722 M 6.02936,72.022 24.7041,71.9265 m -8.9202,-52.2906 8.4004,5.823 m 3.6275,-10.6914 2.5774,7.1594 m -19.2523,9.9863 10.8718,0.0884" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" sodipodi:nodetypes="csssscsssssssssccsssssssccssccsccccsssssssssscccsssssssccccccccccc" inkscape:label="Auto-remplissage satin 2"/>
<path d="M 41.181735,9.6747462 40.0227,9.35614 39.0833,9.03488 v 0 L 38.5525,8.85333 37.1654,8.16644 36.2878,7.53429 v 0 L 35.9341,7.27953 34.8222,6.20339 34.0575,5.26921 v 0 L 33.8594,5.0272 33.0096,3.83418 32.5725,2.4905 v 0 L 32.5328,2.36845 31.8815,0.974891 31.451636,0.22102783" inkstitch:running_stitch_length_mm="2" id="autosatinrun204" inkscape:label="Points droits pour auto-remplissage satin 3" sodipodi:nodetypes="ccccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path d="m 30.6714,0.109226 -0.9339,1.222754 -0.582,1.0162 v 0 L 28.9762,2.66131 28.485,4.13773 27.6283,5.05037 v 0 l -0.1751,0.1866 -0.9622,1.20657 -0.9844,0.95195 v 0 L 25.4001,7.49848 24.1483,8.4146 22.8135,9.0284 v 0 l -0.0716,0.03293 -1.4921,0.40784" inkstitch:running_stitch_length_mm="2" id="autosatinrun205" inkscape:label="Points droits pour auto-remplissage satin 4" sodipodi:nodetypes="cccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin293" d="m 19.9016,10.1141 c -0.1147,-1.3029 1.1726,-1.87532 2.2461,-2.29501 1.102,-0.5362 1.8707,-1.54277 2.3902,-2.63907 0.6212,-1.31105 0.8359,-2.56023 1.5226,-3.72657 1.0238,-1.739235 3.0923,-2.06947 4.9091,-2.059568 M 19.9458,10.4013 c 0.4308,-0.0012 0.8617,5e-4 1.2925,6e-4 3.2651,0.1666 6.4541,-1.23023 8.8359,-3.33131 0.3314,-0.29232 0.6303,-0.41398 0.9031,-0.40258 L 30.9614,0.120095 m -8.2031,5.468745 3.0625,5.21876" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 5"/>
<path id="autosatin294" d="m 30.9696,-0.606118 c 1.4712,0.008 2.4564,0.325159 3.0616,1.074378 1.0858,1.20427 2.0458,2.50303 2.8833,3.89656 0.7799,1.29776 1.4402,2.14266 2.457,3.02316 1.2991,1.09535 2.3693,1.42353 2.7576,2.62252 M 30.9614,0.120095 30.9773,6.66801 c 0.3647,0.01524 0.6827,0.26832 0.9693,0.66936 1.4049,1.96567 4.0594,3.06243 6.537,3.00083 1.1869,-0.0294 2.3764,0.2603 3.535,-0.0626 m -2.5103,-4.718 -3.8438,5.875" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 6"/>
<path id="autosatin295" d="m 44.6769,15.9979 0.6699,0.067 0.81,0.405 0.405,0.675 0.135,0.945 -0.27,2.97 -0.2025,1.62 -0.0675,2.16 v 6.48 10.4844 m -12.1502,-19.1922 0.8102,1.4178 0.405,1.35 0.135,1.89 v 2.97 l -0.27,2.43 -0.27,2.16 v 2.7 l -0.326,4.2374 M 33.4439,23.4542 47.1901,16.0084 M 34.1179,31.9132 47.0668,31.9574 M 45.3124,15.6733 33.5202,23.0335" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" sodipodi:nodetypes="csssscsssssssssccsssssssccssccsccccsssssssssscccsssssssccccccccccc" inkscape:label="Auto-remplissage satin 7"/>
<path d="m 33.6841,39.199 -0.9247,1.2398 -0.2961,0.2823 v 0 l -0.755,0.7196 -1.5345,0.2895 -1.1143,0.3051 v 0 l -0.3906,0.107 -1.483,0.5031 -1.3806,0.6801 -0.2128,0.131 v 0 l -1.076,0.662 -1.2348,0.8851 -0.7083,0.6735 v 0 l -0.391,0.3718 -0.8144,1.2529 -0.2625,1.5028 -0.0216,0.1993 v 0 l -0.1432,1.3195 -0.0593,1.5429 0.0217,0.8884 v 0 l 0.0159,0.6523 0.1044,1.5502" inkstitch:running_stitch_length_mm="2" id="autosatinrun206" inkscape:label="Points droits pour auto-remplissage satin 8" sodipodi:nodetypes="cccccccccccccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin296" d="M 20.9387,55.5048 C 20.1584,51.8814 19.652,48.2369 19.6968,44.55 c 1.44,-1.44 2.88,-2.61 4.32,-3.51 1.44,-0.9001 2.79,-1.6201 4.05,-2.1601 1.26,-0.54 2.43,-0.9 3.51,-1.08 1.08,-0.18 2.16,-0.27 3.24,-0.27 m -13.5,19.9801 c 0,-4.68 1.08,-8.01 3.24,-9.99 2.16,-1.98 5.4,-2.97 9.72,-2.97 l 0.4797,-6.5381 m -9.9039,1.3841 2.7683,6.7776" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" sodipodi:nodetypes="ccsssccscccc" inkscape:label="Auto-remplissage satin 9"/>
<path id="autosatin297" d="m 46.1568,41.8043 v 1.6656 2.7 l 0.135,6.2101 0.405,5.67 1.08,9.45 1.08,6.75 0.2373,1.3446 M 34.4909,41.7673 34.2768,44.5499 V 47.79 l -0.135,6.1425 -0.405,5.4675 -1.08,8.91 -0.81,6.21 -0.1078,1.4018 m -0.952,-3.64 18.7648,-0.0955" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" sodipodi:nodetypes="csssscsssssssssccsssssssccssccsccccsssssssssscccsssssssccccccccccc" inkscape:label="Auto-remplissage satin 10"/>
<path id="autosatin298" d="m 40.4222,80.7521 -5.6054,-0.0221 -1.755,-0.1371 -0.945,-0.4029 -0.405,-0.81 -0.135,-1.35 0.1622,-2.1082 m 9.9206,4.8082 h 4.4972 l 1.755,-0.135 0.945,-0.405 0.405,-0.81 0.135,-1.35 -0.135,-1.485 -0.1677,-0.9505 m 0.8864,0.0821 -19.1182,0.3613" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="2" inkstitch:force_lock_stitches="True" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" sodipodi:nodetypes="csssscsssssssssccsssssssccssccsccccsssssssssscccsssssssccccccccccc" inkscape:label="Auto-remplissage satin 12"/>
</g>
<g inkscape:groupmode="layer" inkscape:label="GlyphLayer-Á" style="display:none;fill:none;stroke:#00673e;stroke-width:0.945;stroke-opacity:1;stroke-miterlimit:4;" id="g157982">
<path d="m 16.1661,73.7955 0.3023,1.4022 0.4125,1.4819 0.2887,0.7121 v 0 l 0.2889,0.7127 0.7638,1.326" inkstitch:running_stitch_length_mm="2" id="autosatinrun200" inkscape:label="Points droits pour auto-remplissage satin 1" sodipodi:nodetypes="ccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin268" d="M 18.4393,80.73 H 13.7568 L 12.4743,80.6287 11.3268,80.325 10.3143,79.8188 9.43677,79.11 8.72802,78.0975 8.22177,76.68 7.91802,74.8575 7.81677,72.63 l 0.135,-8.91 0.405,-8.37 0.675,-7.56 0.945,-6.4801 1.62003,-6.9525 1.62,-5.7375 0.8437,-2.4131 0.9113,-2.1094 0.9787,-1.8056 1.0463,-1.5019 1.1137,-1.2487 1.1813,-1.0463 1.2487,-0.8437 1.3163,-0.6413 2.835,-0.81 0.9848,-0.0856 m -6.4561,64.6313 5.3363,-0.0156 0.945,-0.2033 0.675,-0.6067 0.1687,-0.4894 -0.0337,-0.6581 -0.675,-1.8225 -2.7,-7.56 -0.8775,-3.1725 -0.4725,-3.0375 -0.27,-5.67 -1.1808,-6.4337 -0.3632,-3.2452 -0.076,-3.2812 v -2.16 -1.0799 l 0.675,-5.4676 0.945,-4.5225 1.1475,-3.645 1.2825,-2.835 0.7087,-1.1137 0.7763,-0.9113 0.8437,-0.7087 0.9113,-0.5063 1.3922,-0.464 M 6.18913,72.3473 25.0979,72.1893 m -9.314,-52.5534 8.4004,5.823 M 10.0625,36.75 l 11,0.0625" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" sodipodi:nodetypes="csssscsssssssssccsssssssccssccsccccsssssssssscccsssssssccccccccccccccc" inkscape:label="Auto-remplissage satin 2"/>
<path d="m 27.7356,9.62257 1.2206,-0.43344 v 0 l 0.2133,-0.07574 1.4064,-0.59002 1.1923,-0.58252 v 0 l 0.1876,-0.09169 1.3307,-0.7882 1.0028,-0.863 v 0 l 0.1502,-0.12925 0.9146,-1.23563 0.4376,-1.26969 v 0 l 0.056,-0.16252 0.0551,-1.51693" inkstitch:running_stitch_length_mm="2" id="autosatinrun201" inkscape:label="Points droits pour auto-remplissage satin 3" sodipodi:nodetypes="ccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin287" d="m 36.3905,0.498827 c 1.5126,-3.79e-4 2.2908,0.0024 3.8033,0.0024 3.4386,8.417293 -7.7806,9.948373 -14,9.999973 M 35.2186,0.498791 c -1.4948,3.7e-4 -2.5521,0.0039 -4.0469,0.0163 0,4.602049 -2.5816,6.393319 -5.306,9.267389" sodipodi:nodetypes="cccccc" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 4"/>
<path id="autosatin288" d="m 25.6766,16.1143 2.1202,-0.1844 h 16.2 l 1.35,0.135 0.81,0.405 0.405,0.675 0.135,0.945 -0.27,2.97 -0.2025,1.62 -0.0675,2.16 v 6.48 8.64 m -17.7778,-18.824 0.4303,-0.1435 1.6875,-0.2025 1.62,0.27 0.945,0.405 0.675,0.675 1.08,1.89 0.405,1.35 0.135,1.89 v 2.97 l -0.27,2.43 -0.27,2.16 v 2.7 l -0.1877,2.4399 M 33.4439,23.4542 47.1901,16.0084 m -19.3783,-1.2409 2.5774,7.1594 m 3.7983,6.9481 13,-0.125" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" sodipodi:nodetypes="csssscsssssssssccsssssssccssccsc" inkscape:label="Auto-remplissage satin 5"/>
<path d="m 33.6841,39.199 -0.9247,1.2398 -0.2961,0.2823 v 0 l -0.755,0.7196 -1.5345,0.2895 -1.1143,0.3051 v 0 l -0.3906,0.107 -1.483,0.5031 -1.3806,0.6801 -0.2128,0.131 v 0 l -1.076,0.662 -1.2348,0.8851 -0.7083,0.6735 v 0 l -0.391,0.3718 -0.8144,1.2529 -0.2625,1.5028 -0.0216,0.1993 v 0 l -0.1432,1.3195 -0.0593,1.5429 0.0217,0.8884 v 0 l 0.0159,0.6523 0.1044,1.5502" inkstitch:running_stitch_length_mm="2" id="autosatinrun202" inkscape:label="Points droits pour auto-remplissage satin 6" sodipodi:nodetypes="cccccccccccccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin289" d="M 20.9387,55.5048 C 20.1584,51.8814 19.652,48.2369 19.6968,44.55 c 1.44,-1.44 2.88,-2.61 4.32,-3.51 1.44,-0.9001 2.79,-1.6201 4.05,-2.1601 1.26,-0.54 2.43,-0.9 3.51,-1.08 1.08,-0.18 2.16,-0.27 3.24,-0.27 m -13.5,19.9801 c 0,-4.68 1.08,-8.01 3.24,-9.99 2.16,-1.98 5.4,-2.97 9.72,-2.97 l 0.4797,-6.5381 m -9.9039,1.3841 2.7683,6.7776" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" sodipodi:nodetypes="ccsssccscccc" inkscape:label="Auto-remplissage satin 7"/>
<path id="autosatin290" d="m 46.1568,39.9599 v 3.51 2.7 l 0.135,6.2101 0.405,5.67 1.08,9.45 1.08,6.75 0.1871,1.0604 M 34.66705,40.0076 34.2768,44.5499 V 47.79 l -0.135,6.1425 -0.405,5.4675 -1.08,8.91 -0.81,6.21 -0.073,0.9486 m -0.3731,-3.3125 18.211,0.1545" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" sodipodi:nodetypes="csssscsssssssssccs" inkscape:label="Auto-remplissage satin 8"/>
<path id="autosatin291" d="m 40.7112,80.73 h -5.8944 l -1.755,-0.135 -0.945,-0.405 -0.405,-0.81 -0.135,-1.35 0.197,-2.5614 m 9.7968,5.2614 h 4.5862 l 1.755,-0.135 0.945,-0.405 0.405,-0.81 0.135,-1.35 -0.135,-1.485 -0.2179,-1.2346 m 0.8822,0.0905 -19.0247,0.1754" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="2" inkstitch:force_lock_stitches="True" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" sodipodi:nodetypes="csssscsssssssssccsssssssccssccsccccsssssssssscccsssssssccccccccccccccc" inkscape:label="Auto-remplissage satin 10"/>
</g>
<g inkscape:groupmode="layer" inkscape:label="GlyphLayer-À" style="display:none;fill:none;stroke:#00673e;stroke-width:0.945;stroke-opacity:1;stroke-miterlimit:4;" id="g157978">
<path d="m 16.1317,73.822 0.3325,1.4452 0.4308,1.4517 0.2917,0.6833 v 0 l 0.3013,0.7057 0.7917,1.2861" inkstitch:running_stitch_length_mm="2" id="autosatinrun195" inkscape:label="Points droits pour auto-remplissage satin 1" sodipodi:nodetypes="ccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin281" d="M 18.3982,80.73 H 13.7568 L 12.4743,80.6287 11.3268,80.325 10.3143,79.8188 9.43677,79.11 8.72802,78.0975 8.22177,76.68 7.91802,74.8575 7.81677,72.63 l 0.135,-8.91 0.405,-8.37 0.675,-7.56 0.945,-6.4801 1.62003,-6.9525 1.62,-5.7375 0.8437,-2.4131 0.9113,-2.1094 0.9787,-1.8056 1.0463,-1.5019 1.1137,-1.2487 1.1813,-1.0463 1.2487,-0.8437 1.3163,-0.6413 2.835,-0.81 3.105,-0.27 h 9.2835 m -17.754,64.8111 5.2305,-0.011 0.945,-0.2031 0.675,-0.6069 0.1687,-0.4894 -0.0337,-0.6581 -0.675,-1.8225 -2.7,-7.56 -0.8775,-3.1725 -0.4725,-3.0375 -0.27,-5.67 -1.1808,-6.4337 -0.3632,-3.2452 -0.076,-3.2812 v -2.16 -1.0799 l 0.675,-5.4676 0.945,-4.5225 1.1475,-3.645 1.2825,-2.835 0.7087,-1.1137 0.7763,-0.9113 0.8437,-0.7087 0.9113,-0.5063 1.8225,-0.6075 1.6875,-0.2025 1.62,0.27 0.34,0.1458 M 7.00163,64.5973 22.8479,64.5018 m -7.064,-44.8659 8.4004,5.823 m 3.6275,-10.6914 2.5774,7.1594 M 8.5,40.375 20.6875,40.3125 M 11.25,29 22.375,30.75" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" sodipodi:nodetypes="csssscsssssssssccsssssssccssccsccccsssssssssscccsssssssccccccccccc" inkscape:label="Auto-remplissage satin 2"/>
<path d="M 33.1301,9.84008 31.9095,9.40664 v 0 L 31.6961,9.33089 30.2898,8.74087 29.0975,8.15836 v 0 L 28.9098,8.06667 27.5792,7.27846 26.5764,6.41547 v 0 L 26.4262,6.28621 25.5116,5.05058 25.074,3.78089 v 0 L 25.018,3.61837 24.9629,2.10145" inkstitch:running_stitch_length_mm="2" id="autosatinrun197" inkscape:label="Points droits pour auto-remplissage satin 3" sodipodi:nodetypes="ccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin282" d="m 24.4752,0.71631 c -1.5126,-3.79e-4 -2.2908,0.0024 -3.8033,0.0024 -3.4386,8.41729 7.7805,9.94829 14,9.99999 M 25.647,0.716314 c 1.4949,3.7e-4 2.5522,0.0039 4.047,0.0163 C 29.694,5.33466 32.2756,7.12594 35,10" sodipodi:nodetypes="cccccc" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 4"/>
<path id="autosatin283" d="m 37.0803,15.9299 h 6.9165 l 1.35,0.135 0.81,0.405 0.405,0.675 0.135,0.945 -0.27,2.97 -0.2025,1.62 -0.0675,2.16 v 6.48 8.67969 m -13.7,-18.79389 0.605,0.2592 0.675,0.675 1.08,1.89 0.405,1.35 0.135,1.89 v 2.97 l -0.27,2.43 -0.27,2.16 v 2.7 l -0.219311,2.586187 M 33.4439,23.4542 47.1901,16.0084 m -9.7782,-0.3442 -5.0947,5.8466 m 5.0947,-5.8467 -5.0948,5.8467 m 3.0397,5.7591 11.842578,-0.129703 M 33.09375,38.53125 47,38.5" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" sodipodi:nodetypes="csssscsssssssssccsssssssccsscccc" inkscape:label="Auto-remplissage satin 5"/>
<path d="m 33.6841,39.199 -0.9247,1.2398 -0.2961,0.2823 v 0 l -0.755,0.7196 -1.5345,0.2895 -1.1143,0.3051 v 0 l -0.3906,0.107 -1.483,0.5031 -1.3806,0.6801 -0.2128,0.131 v 0 l -1.076,0.662 -1.2348,0.8851 -0.7083,0.6735 v 0 l -0.391,0.3718 -0.8144,1.2529 -0.2625,1.5028 -0.0216,0.1993 v 0 l -0.1432,1.3195 -0.0593,1.5429 0.0217,0.8884 v 0 l 0.0159,0.6523 0.1044,1.5502" inkstitch:running_stitch_length_mm="2" id="autosatinrun199" inkscape:label="Points droits pour auto-remplissage satin 6" sodipodi:nodetypes="cccccccccccccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin284" d="M 20.9387,55.5048 C 20.1584,51.8814 19.652,48.2369 19.6968,44.55 c 1.44,-1.44 2.88,-2.61 4.32,-3.51 1.44,-0.9001 2.79,-1.6201 4.05,-2.1601 1.26,-0.54 2.43,-0.9 3.51,-1.08 1.08,-0.18 2.16,-0.27 3.24,-0.27 m -13.5,19.9801 c 0,-4.68 1.08,-8.01 3.24,-9.99 2.16,-1.98 5.4,-2.97 9.72,-2.97 l 0.4797,-6.5381 m -9.9039,1.3841 2.7683,6.7776" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" sodipodi:nodetypes="ccsssccscccc" inkscape:label="Auto-remplissage satin 7"/>
<path id="autosatin285" d="m 46.1568,40.0086 v 3.4613 2.7 l 0.135,6.2101 0.405,5.67 1.08,9.45 1.08,6.75 0.0569,0.3226 M 34.625371,40.107067 34.2768,44.5499 V 47.79 l -0.135,6.1425 -0.405,5.4675 -1.08,8.91 c 0,0 -0.687872,5.031327 -0.81,6.21 m 0.9289,-15.3639 15.2735,-0.0955" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" sodipodi:nodetypes="csssscssssssssccs" inkscape:label="Auto-remplissage satin 8"/>
<path id="autosatin286" d="m 40.7868,80.7189 -5.97,0.0111 -1.755,-0.134 -0.945,-0.406 -0.405,-0.81 -0.135,-1.35 0.271291,-3.549183 M 41.5823,80.73 h 4.5745 l 1.755,-0.135 0.945,-0.405 0.405,-0.81 0.135,-1.35 -0.135,-1.485 -0.348,-1.9724 m 0.8752,0.0588 -18.574389,-0.05538" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="2" inkstitch:force_lock_stitches="True" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" sodipodi:nodetypes="csssscssssssssscc" inkscape:label="Auto-remplissage satin 10"/>
</g>
<g inkscape:groupmode="layer" inkscape:label="GlyphLayer-»" style="display:none;fill:none;stroke:#00673e;stroke-width:0.945;stroke-opacity:1;stroke-miterlimit:4;" id="g157974">
<path id="autosatin276" d="M 7.48919,56.8353 C 7.08869,56.1451 7.33913,55.2582 7.76753,54.4803 8.97162,52.2937 11.1699,49.9322 13.2734,48.0157 L 22.25,48.0312 M 7.48919,56.8353 v 0 c 3.24091,0.0462 6.99691,0.1003 10.44831,0.1334 1.0467,-3.2275 3.0845,-6.5216 5.5,-9 m -10.4064,-0.3666 5.1929,9.8995" sodipodi:nodetypes="cscccscccc" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 1"/>
<path d="M 22.8438,48 21.852,47.4913 20.4962,46.7684 19.7164,46.2656 v 0 l -0.5009,-0.323 -1.2254,-0.8935 -1.1359,-0.9273 v 0 L 16.7923,44.0712 15.6816,43.0216 14.2838,42.384 13.8886,42.2036 v 0 L 12.8849,41.7455 11.5168,41.0777 10.705,40.578 v 0 L 10.229,40.2851 9.0611,39.2897 8.28125,38.0254" inkstitch:running_stitch_length_mm="2" id="autosatinrun193" inkscape:label="Points droits pour auto-remplissage satin 2" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin277" d="m 8.4375,37.9688 c 3.2047,0 6.4874,-0.0412 9.6283,0.0378 0.5256,3.3483 2.498,7.3418 5.3717,9.9622 M 8.125,38.082 c -0.67299,0.5462 -0.82496,1.237 -0.68164,2.1368 0.53397,3.7976 3.75044,5.6437 5.83004,7.7969 l 8.9766,0.0155 m -3.8438,-10.6875 -5.375,11.25" sodipodi:nodetypes="ccccccccc" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="2" inkstitch:force_lock_stitches="True" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 3"/>
<path id="autosatin278" d="M 23.0517,56.8666 33.5,57 l 0.9613,-2.4193 0.6439,-1.1924 m -12.1551,3.3572 -0.1698,-0.5308 0.0489,-0.5533 0.5008,-1.1499 1.0725,-1.663 1.3432,-1.6705 3.0902,-3.131 3.3144,0.0057 m -3.7441,-0.7402 5.4844,10.5156" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 5"/>
<path d="m 38.375,48.0312 -0.9647,-0.493 -1.3636,-0.7207 -0.7942,-0.5101 v 0 l -0.4917,-0.3157 -1.2336,-0.892 -1.1387,-0.9186 v 0 l -0.0422,-0.034 -1.105,-1.0495 -1.3354,-0.6733 -0.4517,-0.205 v 0 L 28.5137,41.7925 27.15,41.1335 26.2764,40.6027 v 0 l -0.4558,-0.277 -1.1672,-0.9843 -0.8018,-1.2789" inkstitch:running_stitch_length_mm="2" id="autosatinrun198" inkscape:label="Points droits pour auto-remplissage satin 7" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin279" d="m 24,38 c 3.2047,0 6.4874,-0.0412 9.6283,0.0378 C 34.1539,41.3861 36.1263,45.3797 39,48 M 23.7031,38.125 c -0.673,0.5461 -0.8406,1.2253 -0.6972,2.125 0.5339,3.7976 3.7504,5.6438 5.83,7.797 L 37.75,48.0625 M 34.1562,37 28.3125,48.9062" sodipodi:nodetypes="ccccccccc" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 8"/>
<path id="autosatin280" d="M 37.75,48.0625 32.1503,48.0527 M 39,48 l -1.7312,1.9979 -1.5321,2.2212 -0.6315,1.1692 m 0.1926,0.1744 -3.1927,-5.7722" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="2" inkstitch:force_lock_stitches="True" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 9"/>
</g>
<g inkscape:groupmode="layer" inkscape:label="GlyphLayer-«" style="display:none;fill:none;stroke:#00673e;stroke-width:0.945;stroke-opacity:1;stroke-miterlimit:4;" id="g157958">
<path d="m 7.625,48.0312 0.96466,-0.493 1.36367,-0.7207 0.79417,-0.5101 v 0 l 0.4917,-0.3157 1.2336,-0.892 1.1387,-0.9186 v 0 l 0.0422,-0.034 1.105,-1.0495 1.3354,-0.6733 0.4517,-0.205 v 0 l 0.9405,-0.4268 1.3637,-0.659 0.8736,-0.5308 v 0 l 0.4558,-0.277 1.1672,-0.9843 0.8018,-1.2789" inkstitch:running_stitch_length_mm="2" id="autosatinrun194" inkscape:label="Points droits pour auto-remplissage satin 2" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin271" d="M 22,38 C 18.7953,38 15.5126,37.9588 12.3717,38.0378 11.8461,41.3861 9.87369,45.3797 7,48 m 15.2969,-9.875 c 0.673,0.5461 0.8406,1.2253 0.6972,2.125 -0.5339,3.7976 -3.7504,5.6438 -5.83,7.797 L 8.25,48.0625 M 11.8438,37 17.6875,48.9062" sodipodi:nodetypes="ccccccccc" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 3"/>
<path id="autosatin272" d="m 8.25,48.0625 8.9141,-0.0155 3.0902,3.131 1.3432,1.6705 0.2092,0.3244 M 7,48 8.73124,49.9979 10.2633,52.2191 11.5387,54.5807 12.5,57 19.1486,56.9151 m -1.5548,-9.6026 -5.4844,10.5156" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 4"/>
<path id="autosatin273" d="m 22.9483,56.8666 -3.7997,0.0485 m 3.9013,-0.1696 0.1698,-0.5308 -0.0489,-0.5533 -0.5008,-1.1499 -0.8633,-1.3386 m 1.03,3.7058 0.2552,-0.2393" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="2" inkstitch:force_lock_stitches="True" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 6"/>
<path d="m 23.1562,48 0.9918,-0.5087 1.3558,-0.7229 0.7798,-0.5028 v 0 l 0.5009,-0.323 1.2254,-0.8935 1.1359,-0.9273 v 0 l 0.0619,-0.0506 1.1107,-1.0496 1.3978,-0.6376 0.3952,-0.1804 v 0 l 1.0037,-0.4581 1.3681,-0.6678 0.8118,-0.4997 v 0 l 0.476,-0.2929 1.1679,-0.9954 0.7799,-1.2643" inkstitch:running_stitch_length_mm="2" id="autosatinrun196" inkscape:label="Points droits pour auto-remplissage satin 7" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin274" d="m 37.5625,37.9688 c -3.2047,0 -6.4874,-0.0412 -9.6283,0.0378 -0.5256,3.3483 -2.498,7.3418 -5.3717,9.9622 M 37.875,38.082 c 0.673,0.5462 0.825,1.237 0.6816,2.1368 -0.5339,3.7976 -3.7504,5.6437 -5.83,7.7969 L 23.75,48.0312 m 3.8438,-10.6874 5.375,11.25" sodipodi:nodetypes="ccccccccc" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 8"/>
<path id="autosatin275" d="m 22.5625,47.9688 1.7312,1.9979 1.5321,2.2211 1.2754,2.3616 0.9613,2.4194 10.4483,-0.1335 v 0 M 23.75,48.0312 l 8.9766,-0.0155 3.0902,3.131 1.3432,1.6706 1.0725,1.663 0.45,1.2104 0.014,0.5949 -0.1857,0.5497 m -5.5419,-9.2332 -5.1929,9.8995" sodipodi:nodetypes="cscccscccc" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="2" inkstitch:force_lock_stitches="True" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 9"/>
</g>
<g inkscape:groupmode="layer" inkscape:label="GlyphLayer-z" style="display:none;fill:none;stroke:#00673e;stroke-width:0.945;stroke-opacity:1;stroke-miterlimit:4;" id="g157854">
<path d="m 9.09006,73.9902 0.91854,-1.2306 0.6186,-0.7427 v 0 l 0.3499,-0.42 0.9887,-1.178 0.9797,-1.0945 v 0 l 0.0531,-0.0593 1.0409,-1.1494 1.0408,-1.1494 0.2504,-0.2759 v 0 l 0.7919,-0.8726 0.7468,-1.3011 0.3926,-0.782 v 0 l 0.2897,-0.5772 0.6951,-1.3544 0.681,-1.2064 v 0 l 0.069,-0.1222 0.8018,-1.2976 0.8496,-1.2684 0.2047,-0.2975 v 0 l 0.6612,-0.9613 0.8904,-1.242 0.5086,-0.6917 v 0 l 0.4034,-0.5487 0.9337,-1.2483 0.7954,-1.0454 v 0 l 0.1485,-0.1952 0.9396,-1.2438 0.9216,-1.2567 0.1127,-0.1542 v 0 l 0.8071,-1.104 0.8719,-1.2912 0.3506,-0.521 v 0 l 0.5191,-0.7716 0.8129,-1.3246 0.5446,-0.9204 v 0 l 0.2456,-0.415 0.625,-1.3993 1.1526,-0.9414 0.0412,-0.0293 v 0 l 1.2251,-0.8706 1.2127,-0.9231 0.4168,-0.3216 v 0 l 0.7927,-0.6114 1.1662,-0.9879 0.7716,-0.6733 v 0 l 0.3806,-0.3321 1.0173,-1.1474" inkstitch:running_stitch_length_mm="2" id="autosatinrun180" inkscape:label="Points droits pour auto-remplissage satin 1" sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path d="m 38.7734,33.233 -1.5163,0.2768 -0.0949,0.0209 v 0 l -1.4131,0.3111 -1.508,0.332 -0.5913,0.1141 v 0 l -0.9331,0.1802 -1.5278,0.2864 -1.0757,0.1675 v 0 l -0.4178,0.065 -1.5115,0.1687 -1.5222,0.1175 -0.1226,0.0076 v 0 l -1.4031,0.0861 -1.5258,0.0937 -0.6564,0.0585 v 0 l -0.8623,0.0768 -1.5323,0.1731 -1.1787,0.1267 v 0 l -0.3831,0.0412 -1.5347,0.3417 -1.4412,0.6291 -0.0503,0.0383 v 0 l -1.1993,0.9139 -0.8018,1.3411 -0.1142,0.5104 v 0 l -0.2162,0.9667 0.0404,1.512 0.4134,1.0088 v 0 l 0.1693,0.4133 1.0035,1.2422" inkstitch:running_stitch_length_mm="2" id="autosatinrun181" inkscape:label="Points droits pour auto-remplissage satin 2" sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin244" d="M 16.6719,45.8438 C 17.0365,45.625 16.8383,45.6468 17,45 c 0.5865,-5.5853 5.0597,-5.8955 10.5,-6.5 4.7282,-0.5254 8.6259,-3.2701 12.9377,-4.9075 M 16.0625,46.0469 15,46 C 13.668,45.9412 12.3333,45.5 11,44.5 9.66667,43.5 9,41.6667 9,39 9,37 9.83333,35.3333 11.5,34 13.1667,32.6667 16,32 20,32 h 18 c 1.3333,0 2.3333,0.1667 3,0.5 m -22.0625,10 -8.3125,3.25 M 20.1875,31 l 1.625,9.625" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 3"/>
<path id="autosatin245" d="M 40.4377,33.5925 C 36.2052,35.5488 31.9634,37.4675 27.5,38.5 27.3838,42.7319 16.9574,54.9241 15,58 l -3.5,5.5 -3,5 c -1,1.6667 -1.66667,3.3333 -2,5 C 6.16667,75.1667 6,76.6667 6,78 M 41,32.5 c 0.6667,0.3333 1,0.8333 1,1.5 0,0.6667 -0.1667,1.3333 -0.5,2 -0.3333,0.6667 -0.8333,1.5 -1.5,2.5 l -2,3 -2.221,3.3232 C 31.0322,52.0449 24.1084,58.6748 21.5,66.5 L 21,68 c -4.4964,3.6428 -9.1085,6.8805 -13.84054,9.6983 M 17.1875,51.5 28.5,56.75" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 4"/>
<path id="autosatin246" d="M 7.15946,77.6983 21,68 l 0.8805,0.8729 1.1498,0.9061 0.8234,0.4721 1.0365,0.3884 1.3489,0.2635 L 28,71 31.5,70.875 34,70.5 34.4086,70.3833 M 6,78 6.25,79 7,80 7.6875,80.4375 8.75,80.75 10.1875,80.9375 12,81 H 33 L 34.4687,80.875 35.875,80.5 37.2187,79.875 38.5,79 39.5938,77.875 40.375,76.5 40.3801,76.4822 m -12.582,-6.4737 0.0884,11.9325" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 5"/>
<path id="autosatin247" d="M 38.8281,67.9062 38.2283,68.134 38,68.5 37.6855,69.0352 37,69.5 35.75,70 34.4086,70.3833 M 39.4062,68 39.8115,68.0938 40.0781,68.375 40.5,69.5 40.875,71.125 41,73 l -0.1562,1.875 -0.4637,1.6072 m -3.0668,-7.9745 3.7957,0.4343" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="2" inkstitch:force_lock_stitches="True" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 7" sodipodi:nodetypes="ccccccccccccccccc"/>
</g>
<g inkscape:groupmode="layer" inkscape:label="GlyphLayer-y" style="display:none;fill:none;stroke:#00673e;stroke-width:0.945;stroke-opacity:1;stroke-miterlimit:4;" id="g157850">
<path d="m 19.6938,75.2244 0.0248,-0.6713 0.0079,-1.5165 0.066,-1.5307 10e-5,-0.0163 v 0 l 0.0157,-1.537 -0.5403,-1.3513 -0.4006,-0.6273 v 0 l -0.4182,-0.6548 -0.7435,-1.3351 -0.656,-1.2726 v 0 l -0.0385,-0.0747 -0.6428,-1.3937 -0.5496,-1.4372 -0.1942,-0.5456 v 0 l -0.3212,-0.9021 -0.4578,-1.467 -0.3324,-1.1971 v 0 L 14.434,57.4088 14.0353,55.9233 13.6677,54.4292 13.585,54.0748 v 0 l -0.2673,-1.1445 -0.3346,-1.502 -0.1864,-1.0055 v 0 L 12.7026,49.9151 12.468,48.3959 12.2922,46.87 12.2796,46.7234 v 0 l -0.119,-1.385 -0.1074,-1.5328 -0.0566,-0.8081 v 0 L 11.9459,42.2728 11.8131,40.7411 11.655,39.2768 v 0 l -0.007,-0.0653 -0.171,-1.5271 -0.1612,-1.547 -0.08,-0.5735 v 0 l -0.13,-0.9329 -0.3395,-1.4812" inkstitch:running_stitch_length_mm="2" id="autosatinrun177" inkscape:label="Points droits pour auto-remplissage satin 1" sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin241" d="M 10.5291,31.8991 C 9.74459,31.973 9.36646,32 8.66363,32 c -1.42708,0 -3.08735,0.3815 -2.63238,1.9375 0.41046,1.4038 0.61969,2.8585 0.91437,4.2906 0.62446,3.0348 0.51462,5.8296 0.55438,8.8446 0.0304,2.3049 0.18704,4.3364 0.71875,6.4273 1.06483,4.1873 1.71658,8.6573 3.40625,12.7051 1.2118,2.9031 2.5522,5.5131 3.9742,8.2434 0.6044,1.1603 2.8709,3.9564 3.6337,4.9719 M 11.5141,67.3655 23.2123,62.4361 M 11.1072,31.8522 C 12.6803,31.7039 14.0821,31.5551 15,32 c 1.3522,0.6554 0.7577,3.6664 0.9688,5.625 1.0432,9.6802 3.1572,23.3557 9.6897,29.8643 C 24.2465,71.5546 22.0966,75.0051 20,78.5 M 5.74524,37.7468 16.9706,35.6255" sodipodi:nodetypes="csssssssccccsscccc" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 2"/>
<path d="m 24.1094,80.99 -0.0181,0.0318 -0.8343,1.301 -0.9457,1.2179 -0.4288,0.4447 v 0 l -0.6341,0.6578 -1.1545,0.9768 -1.0958,0.7286 v 0 l -0.1661,0.1104 -1.4167,0.6081 -1.48,0.3226 -0.4852,0.0268 v 0 L 14.41,87.4741 12.869,87.3419 11.7425,87.0933 v 0 l -0.3769,-0.0832 -1.43809,-0.489" inkstitch:running_stitch_length_mm="2" id="autosatinrun178" inkscape:label="Points droits pour auto-remplissage satin 3" sodipodi:nodetypes="ccccccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin242" d="m 8.34863,85.4623 0.49512,-0.8061 0.76211,-0.5151 0.97334,-0.2571 2.3372,-0.1694 1.2425,-0.1269 1.2108,-0.2982 1.1183,-0.5768 0.9651,-0.9627 2.4056,-3.3924 2.08,-3.2174 1.762,-3.1854 1.1635,-2.6428 M 8.19238,86.0404 7.93711,86.9707 7.95338,87.6825 8.16605,88.235 8.5,88.6875 l 0.89019,0.8701 0.96961,0.6937 2.1182,0.9487 2.2581,0.5146 2.2795,0.262 1.4439,0.0409 1.3951,-0.2148 1.3326,-0.4423 1.2563,-0.6419 1.1663,-0.8132 1.0623,-0.9564 0.9445,-1.0716 0.8131,-1.1585 2.4273,-4.5265 2.0281,-4.7238 c 0.753778,-1.824411 1.237545,-3.378812 1.6612,-4.8731 m -19.9213,9.5296 -3,9.375" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 4" sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccc"/>
<path d="m 29.1296,69.7546 0.4298,-1.4857 0.2842,-1.0497 v 0 l 0.1199,-0.4429 0.3546,-1.5053 0.3093,-1.5158 0.0326,-0.1867 v 0 l 0.2337,-1.3362 0.2005,-1.5341 0.0933,-0.833 v 0 l 0.0788,-0.7044 0.1693,-1.5376 0.1398,-1.4796 v 0 l 0.0057,-0.0603 0.1242,-1.5453 0.1038,-1.5101 0.0406,-0.616 v 0 l 0.059,-0.8946 0.0519,-1.511 -0.0193,-1.3333 v 0 l -0.0026,-0.1799 -0.022,-1.5132 -0.0893,-1.5527 -0.045,-0.4913 v 0 L 31.6857,43.88 31.4543,42.3431 31.225,41.2393 v 0 L 31.1389,40.825 30.6674,39.3452 30.1222,37.895 30.0227,37.7029 v 0 l -0.6153,-1.1873 -0.8691,-1.2859 -0.5749,-0.6295 v 0 l -0.4653,-0.5095 -1.0083,-1.1671" inkstitch:running_stitch_length_mm="2" id="autosatinrun179" inkscape:label="Points droits pour auto-remplissage satin 5" sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin243" d="m 25.0548,32.0623 -0.9344,0.8582 -0.8473,1.431 -0.208,0.7832 -0.0355,0.8 0.1586,0.7955 0.3743,0.7698 1.223,1.4562 0.9908,1.5902 0.779,1.6991 0.5881,1.7834 0.4176,1.8425 0.2679,1.877 0.1691,3.7575 -0.2825,5.1692 -0.5635,4.4865 -0.8521,3.9469 -1.148,3.55 -0.2877,0.6535 m 1.1126,-37.8123 0.5283,-0.2972 0.7508,-0.2123 1.7114,-0.1685 1.7852,0.1903 0.8387,0.2785 0.7592,0.4267 0.6472,0.5946 0.5024,0.782 0.7237,1.3683 0.5738,1.4239 0.7628,2.9719 0.3576,3.0665 L 36,45 l -0.0422,4.5357 -0.3377,4.5235 -0.7451,7.472 -0.4164,3.1031 -0.5856,2.9868 -1.3267,4.9743 M 23.03125,38 l 10.25,-6.59375 M 26.25,55.625 h 10.375" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="2" inkstitch:force_lock_stitches="True" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 6" sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccc"/>
</g>
<g inkscape:groupmode="layer" inkscape:label="GlyphLayer-x" style="display:none;fill:none;stroke:#00673e;stroke-width:0.945;stroke-opacity:1;stroke-miterlimit:4;" id="g157846">
<path d="m 13.5282,74.0153 -0.0523,0.9375 -0.0743,1.5237 -0.0689,1.2185 v 0 l -0.0179,0.3162 -0.1388,1.517 -0.126329,0.79543" inkstitch:running_stitch_length_mm="2" id="autosatinrun174" inkscape:label="Points droits pour auto-remplissage satin 1" sodipodi:nodetypes="cccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin235" d="M 12.7279,81.0373 16.9967,81 l 1.684,0.0935 0.7657,-0.1507 0.2904,-0.1978 0.2007,-0.3075 0.3325,-1.0528 0.1822,-1.0852 0.0294,-2.2395 -0.4738,-4.56 0.0043,-1.678 0.2567,-1.7197 0.4714,-1.742 0.6485,-1.7448 L 23.0663,61.196 25,58 l 2.4469,-3.5211 0.2598,-0.354 M 12.1534,81.0152 10.0151,80.9977 7.89062,80.8047 7.10201,80.5534 6.5739,80.0875 6.26388,79.4553 6.1295,78.7055 6.21801,77.047 6.5,75.5 7.09345,72.9122 7.83597,70.3281 9.03815,66.949 l 1.48575,-3.2687 1.6844,-3.1799 1.7983,-3.1123 1.7165,-2.6752 0.5318,-0.7014 M 5.6875,74.46875 21.28125,74.5" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 2" sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccc"/>
<path d="m 18.227,50.079 0.1315,-1.5113 0.0534,-0.5299 v 0 l 0.1008,-0.998 0.1548,-1.5282 -0.5651,-0.8475 v 0 l -0.256,-0.3838 -0.8323,-1.3159 -0.7918,-1.3202 v 0 l -0.0077,-0.0128 -0.7729,-1.3478 -0.6769,-1.4006 -0.176,-0.3962 v 0 l -0.456,-1.0266 -0.5851,-1.428 -0.3397,-0.8241 v 0 l -0.2385,-0.5789 -0.6129,-1.4138" inkstitch:running_stitch_length_mm="2" id="autosatinrun175" inkscape:label="Points droits pour auto-remplissage satin 3" sodipodi:nodetypes="ccccccccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin236" d="m 12.0647,31.8137 c -1.5169,0.0409 -2.93778,0.2791 -3.60066,0.7829 -1.13011,0.859 0.01696,2.2806 0.48164,3.6589 1.16922,3.4682 2.67262,6.8394 4.56992,10.0023 1.1711,1.9523 3.2898,4.5016 4.211,5.8125 M 12.6171,31.8358 c 1.2352,-0.0332 1.9817,0.0422 2.9871,0.2337 1.4053,0.2676 1.6689,1.518 2.1146,2.6805 0.7285,1.9002 1.4082,3.3575 2.5022,5.0511 0.8901,1.3781 1.7405,2.4878 2.7478,3.8864 0.5085,0.7062 0.6544,0.9856 0.951,0.9805 l -5.4466,6.4254 M 7.5,38.5 19.875,35.75" sodipodi:nodetypes="csssccsssscccc" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 4"/>
<path id="autosatin237" d="M 27.7067,54.1249 30,51 32.0039,47.9926 m -15.749,6.0189 1.4717,-1.9412 2.9634,-3.6632 0.3937,-0.4557 m -0.6119,0.0732 12.0232,0.0537" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 5"/>
<path d="m 27.4657,46.7622 0.9219,-1.2098 0.3007,-0.4149 v 0 l 0.5902,-0.8144 0.8882,-1.2309 0.6443,-0.9661 v 0 l 0.2,-0.2999 0.8015,-1.2945 0.7259,-1.3383 0.1143,-0.255 v 0 l 0.5088,-1.1347 0.5071,-1.4674 0.2158,-0.8622 v 0 l 0.1607,-0.6419 0.1838,-1.5399" inkstitch:running_stitch_length_mm="2" id="autosatinrun176" inkscape:label="Points droits pour auto-remplissage satin 6" sodipodi:nodetypes="ccccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin238" d="m 34.3388,31.8731 -4.1761,0.2327 -0.6319,0.3139 -0.2973,0.6629 -0.1792,1.7544 -0.35,1.7681 -0.5983,1.732 -0.7704,1.64 -0.8669,1.4917 -1.2571,1.7058 -1.2918,1.4934 -2.8361,3.2834 m 13.896,-16.0562 1.8774,0.073 1.6429,0.2818 0.3307,0.1513 0.2222,0.256 0.1824,0.7269 -0.0601,0.8473 L 39,35 l -0.7301,2.2596 -0.9926,2.1427 -3.5357,5.9823 -1.7377,2.608 M 26.625,36.5 39.75,36.25" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 7"/>
<path id="autosatin239" d="m 30,51 5.9774,8.7328 1.3868,2.2475 1.2613,2.3142 1.0948,2.4014 0.8871,2.5092 0.9087,3.8542 0.4163,3.3901 M 29.1875,52.25 25,58 l 2.0761,4.6115 1.7833,4.8182 0.6258,2.4 0.446,2.4295 0.2235,3.1072 -0.0442,0.895 M 29.1875,74.25 42.75,74.375" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 8"/>
<path id="autosatin240" d="M 34.8052,81.142 32.3984,81.1711 30.5625,80.9688 30.0288,80.6037 29.8674,79.9584 30,78.4967 30.1105,76.2614 m 5.5786,4.8585 2.9353,-0.1199 1.0852,-0.0878 0.8363,-0.2407 0.6171,-0.3761 0.4275,-0.4939 0.2677,-0.5941 0.1377,-0.6766 L 42,77 41.9324,76.4494 m 0.6041,0.1087 -13.0229,-0.2062" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="2" inkstitch:force_lock_stitches="True" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 10"/>
</g>
<g inkscape:groupmode="layer" inkscape:label="GlyphLayer-w" style="display:none;fill:none;stroke:#00673e;stroke-width:0.945;stroke-opacity:1;stroke-miterlimit:4;" id="g157842">
<path d="m 18.4551,72.3859 -0.1295,-0.1746 -0.688,-1.3741 -0.5797,-1.4271 -0.1503,-0.4384 v 0 L 16.5583,67.952 16.08,66.4874 15.7732,65.3902 v 0 l -0.1083,-0.3873 -0.3942,-1.491 -0.3961,-1.507 -0.0561,-0.249 v 0 L 14.54,60.5189 14.2236,59.0287 14.0228,58.0833 v 0 l -0.1157,-0.5448 -0.2632,-1.4999 -0.2421,-1.504 -0.0246,-0.1528 v 0 l -0.2175,-1.3512 -0.2054,-1.5087 -0.1129,-0.8593 v 0 l -0.0854,-0.6504 -0.1984,-1.5097 -0.1984,-1.5098 -0.0067,-0.056 v 0 l -0.1742,-1.4562 -0.1664,-1.5144 -0.0628,-0.7652 v 0 l -0.0619,-0.7528 -0.0978,-1.5203 -0.0743,-1.4772 v 0 l -0.0021,-0.0433 -0.0267,-1.5214 0.0031,-1.5156 -0.0085,-0.6772 v 0 l -0.0107,-0.8529 -0.1664,-1.5343" inkstitch:running_stitch_length_mm="2" id="autosatinrun172" inkscape:label="Points droits pour auto-remplissage satin 1" sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin232" d="m 11.7102,31.9341 c 1.4752,-0.0834 2.8759,-0.171 3.5086,0.3471 1.9866,1.6273 1.3131,4.9478 1.3417,7.5313 0.0482,4.3445 0.8286,7.795 1.4727,11.7793 0.5013,3.1009 0.968,5.4962 1.6653,8.2649 0.778,3.0888 1.2726,6.6891 3.3015,9.1433 2.179,2.6357 3.9229,-3.1582 4.3203,-5.3047 0.9247,-4.9945 0.7749,-6.9724 0.7735,-11.4141 C 28.0916,45.7797 27.6849,41.9557 27.25,35.5106 27.1578,34.1448 27.0417,32.0153 28.874,32 c 0.8653,-0.0072 1.9224,-0.084 2.9227,-0.1169 m -20.9771,0.1135 c -1.20026,0.0794 -3.49083,-0.6594 -3.7571,0.5659 -0.66058,3.7711 -0.20219,7.6888 0.13281,11.5078 0.58261,6.6418 1.11756,12.7139 2.5625,18.9219 0.96669,4.1532 2.18009,8.0547 3.74219,11.914 1.1675,2.8845 3.4267,6.3324 7.0039,6.0938 2.4452,-0.1631 5.5195,0.6321 7.1523,-1.6875 C 29.813,76.2486 30.5312,72.0759 32,69 L 31.7188,32.9688 M 5.5625,36.625 H 17.875 m 6,30.5 0.25,15.125 m 2,-45.8125 7.125,-0.0625 M 8.3125,64.1875 20.875,60.9375 M 26.75,59.25 32.8125,59.1875" sodipodi:nodetypes="cssssssssccccssssscccccccccc" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 2"/>
<path id="autosatin233" d="m 31.7967,31.8831 1.8227,0.0042 1.2556,0.2377 0.7347,0.5329 0.4797,0.7198 0.274,0.8647 0.1179,0.9675 -0.0342,2.0749 -0.0643,1.9808 0.2434,4.3744 0.4709,4.2228 0.6983,4.1381 0.9253,4.1202 1.0292,3.6551 1.3751,3.4035 1.2859,2.5081 0.7363,1.1924 L 44,68 l 0.5573,0.48 0.484,0.1048 0.4176,-0.1917 0.3584,-0.4098 0.5665,-1.1596 0.2471,-0.6516 M 31.7188,32.9688 32,69 l 0.8152,1.7958 0.5221,1.5064 0.4471,1.3721 0.5906,1.3931 0.9616,1.9108 1.1699,1.894 0.7043,0.8149 0.806,0.6598 0.9242,0.4544 L 40,81 43.0709,81.1545 44.5786,81.0063 46,80.5 l 1.3161,-0.8517 1.1656,-1.0245 1.0279,-1.1683 c 0.818929,-1.351802 1.789238,-2.653143 2.3848,-4.0794 M 44.625,66.25 44.75,82.875 M 31.0625,36.46875 37.5,36.4375 M 31.9056,31.8241 31.7107,33.128 M 30.875,59.1875 40.625,59" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 3" sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccc"/>
<path d="m 49.6902,68.6418 0.5684,-1.4762 0.3241,-0.9983 v 0 l 0.164,-0.5054 0.462,-1.5128 0.4351,-1.462 v 0 l 0.016,-0.0534 0.3816,-1.5338 0.3554,-1.5411 0.087,-0.4115 v 0 l 0.2398,-1.134 0.2698,-1.5565 0.1244,-0.891 v 0 l 0.0895,-0.6414 0.163,-1.5496 0.1407,-1.4258 v 0 l 0.0123,-0.1241 0.0444,-1.5569 0.0281,-1.5569 -0.0148,-0.3988 v 0 l -0.0428,-1.156 -0.0812,-1.554 -0.0971,-0.9204 v 0 l -0.0661,-0.6254 -0.2108,-1.543 -0.2805,-1.4249 v 0 l -0.0196,-0.0994 -0.3705,-1.5099 -0.4983,-1.4745 -0.189,-0.3818 v 0 L 51.2227,36.6081 50.3904,35.3307 49.7501,34.587 v 0 l -0.3716,-0.4317 -0.9988,-1.1289" inkstitch:running_stitch_length_mm="2" id="autosatinrun173" inkscape:label="Points droits pour auto-remplissage satin 4" sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin234" d="m 47.8002,31.6524 -0.7579,0.3264 -1.343,0.7294 -1.2069,0.9662 -0.4037,0.5666 -0.1911,0.6195 0.0808,0.6704 0.4122,0.7191 1.317,1.8361 1.0996,1.9556 0.8855,2.0637 0.6745,2.1602 0.5882,2.7094 0.3649,2.7117 0.141,2.7091 -0.0831,2.7017 -0.3077,2.6896 -0.5325,2.6725 -0.7578,2.6507 -0.9833,2.6241 -0.166,0.4377 m 1.8725,-34.7854 c 0.4877,-0.2344 0.9178,-0.2381 1.3676,-0.3206 l 1.6863,-0.1034 1.598,0.3109 0.7314,0.338 0.668,0.4743 0.9715,1.024 0.7556,1.1682 0.5696,1.2826 0.4132,1.3672 0.4769,2.869 0.2097,2.8496 L 58,45 l -0.1192,3.2592 -0.2922,3.2436 -1.0444,6.4282 -1.5592,6.3293 -1.9557,6.2065 -1.1349,2.9093 M 47.75,55.375 l 11,0.25 M 45.125,39.5 57.5,32.75 m -11.0025,32.7977 6.1205,7.6652" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="2" inkstitch:force_lock_stitches="True" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 5" sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccc"/>
</g>
<g inkscape:groupmode="layer" inkscape:label="GlyphLayer-v" style="display:none;fill:none;stroke:#00673e;stroke-width:0.945;stroke-opacity:1;stroke-miterlimit:4;" id="g157838">
<path d="m 18.468,70.9369 -0.2701,-0.4974 -0.684,-1.3789 -0.5726,-1.4326 -0.0038,-0.0099 v 0 l -0.5473,-1.4306 -0.4763,-1.4674 -0.1776,-0.5564 v 0 l -0.2915,-0.9136 -0.469,-1.47 -0.3299,-1.1086 v 0 l -0.1101,-0.3699 -0.4282,-1.482 -0.4282,-1.482 -0.049,-0.1808 v 0 l -0.3545,-1.3084 -0.3671,-1.4982 -0.1739,-0.7403 v 0 l -0.1788,-0.7614 -0.3528,-1.5016 -0.2809,-1.3041 v 0 l -0.044,-0.2042 -0.2852,-1.516 -0.2715,-1.5187 -0.0499,-0.3609 v 0 L 11.1105,45.2762 10.9317,43.744 10.8386,42.8106 v 0 L 10.7787,42.21 10.6789,40.671 10.5863,39.1611 v 0 L 10.5847,39.1343 10.5348,37.6167 10.5162,36.0973 10.506,35.5036 v 0 L 10.4901,34.58 10.4831,33.0676" inkstitch:running_stitch_length_mm="2" id="autosatinrun170" inkscape:label="Points droits pour auto-remplissage satin 1" sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin230" d="m 10.1588,32 2.3467,-0.1796 1.1545,0.0189 1.09,0.2857 0.3553,0.4093 0.0513,0.6341 -0.1566,1.3969 0.0987,3.483 0.3068,3.4644 0.503,3.4372 0.6874,3.4017 1.23,4.5857 2.038,6.3506 1.1909,3.1705 1.2359,2.8116 1.2283,2.1861 0.595,0.7752 0.5735,0.5187 0.5417,0.1794 0.4837,-0.181 0.4297,-0.4582 0.3799,-0.6523 0.1655,-0.4104 M 9.67438,31.9688 7.84557,31.7986 7.01995,31.8511 6.25,32.25 5.87558,32.8815 5.83396,33.6777 6,35.3693 l -0.02336,4.0918 0.17383,4.0875 0.40377,4.0701 0.66646,4.0395 1.63223,7.579 2.02207,7.4835 2.0943,6.5859 1.3189,3.1845 L 16,79.5 l 0.5315,0.6124 0.6149,0.4294 1.4095,0.4327 1.5311,0.0705 1.5113,-0.045 3.2461,0.0642 1.5452,-0.3002 0.6993,-0.3537 0.6299,-0.5353 c 1.607414,-1.738347 2.8772,-3.603304 3.81795,-5.59165 M 4.625,40.4375 16.1875,40.5 m 8.875,26.9375 1.5625,14.625 M 9.1875,64.8125 21.0625,60.125" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 2" sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccccc"/>
<path d="m 30.4565,67.1132 0.1303,-0.4209 v 0 l 0.3253,-1.051 0.3485,-1.4988 0.2286,-0.9936 v 0 l 0.1165,-0.5063 0.3188,-1.5018 0.2578,-1.5125 0.0107,-0.0687 v 0 l 0.2267,-1.4494 0.2253,-1.5182 0.0865,-0.651 v 0 l 0.1156,-0.8712 0.147,-1.5325 0.0966,-1.2364 v 0 l 0.0231,-0.2955 0.1192,-1.5319 -0.0068,-1.5331 -0.0047,-0.2924 v 0 l -0.0202,-1.2421 -0.1074,-1.5276 -0.085,-0.8809 v 0 l -0.0623,-0.6459 -0.2475,-1.5152 -0.3326,-1.4364 v 0 l -0.0149,-0.0643 -0.4657,-1.4702 -0.5315,-1.449 -0.1797,-0.474 v 0 l -0.3671,-0.9689 -0.6777,-1.3891 -0.6363,-0.8688 v 0 l -0.2803,-0.3827 -0.8233,-1.27" inkstitch:running_stitch_length_mm="2" id="autosatinrun171" inkscape:label="Points droits pour auto-remplissage satin 3" sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin231" d="m 28.2157,31.5541 -1.781,0.7286 -1.2323,0.7516 -0.9243,1.0513 -0.2522,0.5921 -0.0619,0.612 0.1663,0.6135 0.4322,0.5968 0.9665,1.2849 0.6491,1.4363 0.9469,3.0288 0.7513,2.4023 0.5987,2.4394 0.3902,2.4761 0.126,2.5123 -0.0021,3.2124 -0.0864,3.2285 -0.3837,3.1756 -0.3699,1.5463 -0.5241,1.5071 -0.476,1.3335 -0.461,1.144 m 1.9652,-35.8609 1.148,-0.3478 1.0699,-0.1285 1.0476,0.143 L 33,31.5 l 0.7209,0.5258 0.5947,0.6437 0.9102,1.5391 1.3992,3.3715 0.6832,1.7758 0.4234,1.8492 0.2139,1.8917 L 38,45 l -0.1052,3.1515 -0.2762,3.1344 -0.9971,6.2107 -1.4764,6.1221 -1.8189,6.02 -1.0104,2.7539 -0.7791,1.8907 M 24.8125,39 l 11.25,-5.75 m -8.375,26 9.875,-0.125" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="2" inkstitch:force_lock_stitches="True" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 4" sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccc"/>
</g>
<g inkscape:groupmode="layer" inkscape:label="GlyphLayer-u" style="display:none;fill:none;stroke:#00673e;stroke-width:0.945;stroke-opacity:1;stroke-miterlimit:4;" id="g157834">
<path d="M 15.4727,71.7147 15.2024,71.2889 14.6457,69.8227 14.225,68.2979 14.224,68.292 v 0 L 13.9438,66.7472 13.7298,65.18 13.6809,64.6737 v 0 l -0.1037,-1.072 -0.0953,-1.5097 -0.0156,-1.0706 v 0 l -0.0064,-0.4435 -0.0232,-1.5142 0.0088,-1.5138 0.0053,-0.1885 v 0 l 0.0373,-1.3249 0.0358,-1.5781 0.0211,-0.7562 v 0 l 0.0214,-0.7655 0.0458,-1.5215 0.0413,-1.3718 v 0 l 0.0045,-0.1498 0.0488,-1.5213 0.0724,-1.5193 0.0223,-0.4669 v 0 l 0.0502,-1.0525 0.0724,-1.5193 0.0617,-1.0839 v 0 l 0.0248,-0.4353 0.1424,-1.5121 0.15,-1.511 0.0274,-0.1852 v 0 l 0.1948,-1.3163 0.3249,-1.4809 0.2027,-0.788 v 0 l 0.1762,-0.6845 0.3816,-1.4888" inkstitch:running_stitch_length_mm="2" id="autosatinrun168" inkscape:label="Points droits pour auto-remplissage satin 1" sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin228" d="m 15.7418,31.8808 1.6678,-0.1857 0.8082,0.0562 L 19,32 l 0.4792,0.3045 0.3627,0.4167 0.1507,0.5117 -0.1571,0.5895 -0.4599,2.3314 -0.2695,2.3558 -0.1061,4.7462 0.0434,16.2215 -0.022,4.7065 0.2911,2.0346 0.7243,1.9129 0.4292,0.6535 0.5023,0.5138 1.1689,0.6695 1.2969,0.2935 1.3153,0.0393 1.3949,-0.3595 1.2937,-0.6352 1.012,-0.9631 0.344,-0.6208 L 29,67 29.353,65.1133 M 15.0543,31.9746 14.0783,32 l -1.1324,0.1681 -0.8699,0.566 -0.6539,0.8474 -0.4846,1.0123 -1.23101,3.8303 -0.69087,3.8337 -0.6319,6.3108 -0.35247,5.4939 -0.21954,5.0666 0.10926,5.0812 0.24393,2.5227 0.40533,2.4983 0.59314,2.4645 0.80733,2.4214 0.5838,1.381 0.7779,1.2825 0.951,1.1581 1.1035,1.0081 1.2352,0.8323 1.3462,0.6309 1.4362,0.4038 1.5057,0.1509 17.8502,0.0352 0.8485,0.0682 0.7,-0.1746 0.5623,-0.3773 0.4355,-0.5396 0.5346,-1.4052 0.1193,-1.1811 M 6.125,55.375 l 14,0.25 M 24.7494,69.3947 24.875,82.25 M 9.8332037,34.277556 20.594485,34.100779" sodipodi:nodetypes="csccssccssssccsssscccsscccccccccccccccccccccccccccccccccccccc" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 2"/>
<path d="m 34.6568,71.2518 0.107,-1.5544 0.0769,-1.3692 v 0 l 0.0105,-0.1863 0.0369,-1.562 0.034,-1.5623 0.0076,-0.3486 v 0 l 0.0263,-1.2138 0.034,-1.5623 0.0029,-0.8837 v 0 l 0.0022,-0.6797 6e-4,-1.5636 7e-4,-1.4171 v 0 -0.1465 l 7e-4,-1.5635 0.0011,-1.5348 3e-4,-0.4156 v 0 l 8e-4,-1.1389 0.0047,-1.5545 0.0061,-0.9669 v 0 l 0.0037,-0.5876 0.0097,-1.5544 0.0096,-1.5184 v 0 l 2e-4,-0.0361 -0.0161,-1.5543 -0.0183,-1.5543 -0.0061,-0.5154 v 0 l -0.0122,-1.0389 -0.0431,-1.5529 -0.0519,-1.0667 v 0 l -0.0235,-0.4842 -0.1087,-1.5461 -0.1566,-1.539 -0.0069,-0.0785 v 0 l -0.1273,-1.4629 0.5703,-1.3899" inkstitch:running_stitch_length_mm="2" id="autosatinrun169" inkscape:label="Points droits pour auto-remplissage satin 3" sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin229" d="M 35.1562,31.9968 31.318,32 l -0.9936,0.0827 -0.838,0.312 -0.5017,0.6146 -0.0683,0.4438 L 29,34 l 0.6349,3.1802 0.3055,3.2237 0.1278,5.5774 -0.0682,5.5855 -0.011,7.7636 -0.2767,3.8623 -0.3593,1.9206 m 6.3736,-33.1243 3.7109,0.0422 0.318,0.0755 0.2016,0.1888 0.1454,0.614 L 40,34.3595 V 77 l -0.0394,0.3904 M 28.4375,58.5 l 13,-0.125 M 27.6875,36.6875 H 41.625" sodipodi:nodetypes="csccssccssssccsssscccssccc" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="2" inkstitch:force_lock_stitches="True" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 4"/>
</g>
<g inkscape:groupmode="layer" inkscape:label="GlyphLayer-t" style="display:none;fill:none;stroke:#00673e;stroke-width:0.945;stroke-opacity:1;stroke-miterlimit:4;" id="g157830">
<path d="M 16.5475,73.0168 16.1658,71.512 15.9644,70.6856 v 0 l -0.1565,-0.6425 -0.2062,-1.5399 -0.1501,-1.4195 v 0 L 15.4413,66.986 15.328,65.4587 15.2477,63.9263 15.2311,63.4484 v 0 L 15.1944,62.391 15.1413,60.8556 15.1151,59.8079 v 0 l -0.0123,-0.4886 -0.0017,-1.5377 0.0247,-1.5365 0.0024,-0.0792 v 0 l 0.0448,-1.4681 0.0526,-1.53 0.0222,-0.6423 v 0 l 0.0305,-0.8878 0.0527,-1.53 0.0421,-1.2225 v 0 l 0.0106,-0.3076 0.0527,-1.5301 0.0192,-1.5316 0.0032,-0.2719 v 0 l 0.0152,-1.2598 0.0185,-1.5317 0.0042,-0.8506 v 0 L 15.5,40.9207 v -1.5319" inkstitch:running_stitch_length_mm="2" id="autosatinrun163" inkscape:label="Points droits pour auto-remplissage satin 1" sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path d="M 13.681867,34.977903 13.1308,35 h -1.5421 -1.0066 v 0 H 10.0466 L 8.50719,34.9615 7,34.6836" inkstitch:running_stitch_length_mm="2" id="autosatinrun165" inkscape:label="Points droits pour auto-remplissage satin 2" sodipodi:nodetypes="cccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin222" d="M 7.00781,34.8828 7,36 7.12107,36.875 7.49651,37.5 8.12369,37.875 9,38 h 2 3.6544 M 6.99219,34.4844 7,33 7.10583,32.2813 7.44362,32 H 9 h 2 3.6913 m -2.72255,-0.875 -0.03125,7.71875" sodipodi:nodetypes="cssccssccssccss" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 3"/>
<path d="m 14.6729,35 h 1.5179 1.5529 0.0543 v 0 h 1.4985 1.5529 0.5566 v 0 h 0.9962 l 1.5417,-0.0284" inkstitch:running_stitch_length_mm="2" id="autosatinrun166" inkscape:label="Points droits pour auto-remplissage satin 4" sodipodi:nodetypes="ccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin223" d="M 25.0078,34.7266 25,33 24.8737,32.5625 24.4989,32.25 23.8746,32.0625 23,32 H 21 19.315 M 25.0156,35.0859 25,36 24.8654,36.8749 24.4915,37.4999 23.8718,37.875 23,38 h -3 -0.722 m 0.0982,0.3 0.0406,-6.6" sodipodi:nodetypes="cssccssccssccssccc" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 5"/>
<path d="m 16.0248,30.9994 0.0312,-1.5374 0.0632,-1.0523 v 0 l 0.0288,-0.4809 0.0997,-1.5464 0.1469,-1.5245 v 0 l 7e-4,-0.0066 0.1064,-1.5097 0.0918,-1.5306 0.0273,-0.5088 v 0 l 0.055,-1.0255 0.6771,-1.3431" inkstitch:running_stitch_length_mm="2" id="autosatinrun167" inkscape:label="Points droits pour auto-remplissage satin 6" sodipodi:nodetypes="ccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin224" d="M 17.1876,18.0004 C 21.2572,16.6107 23.8338,16.3374 24.25,16.875 25.1404,18.0253 23.6783,19.6401 23,21 22.3346,22.334 21.8333,24 21.5,26 21.1667,28 21,30 21,32 L 16.7188,31.9375 M 16.1251,18.3442 C 14.1491,19.019 12.5518,19.6706 11,20 c -3.11028,0.6602 -1.05655,1.29 -0.5,3 0.3138,0.964 0.4163,1.6543 0.5,2.5 0.115,1.161 0,2.3333 0,3.5 v 3 l 4.9375,-0.0938 M 10.125,27 22.4688,26.8125" sodipodi:nodetypes="cssscccsssscccc" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 7"/>
<path id="autosatin225" d="m 17.7592,32 h -3.0679 m 3.0367,6 H 14.6544 M 15.9062,31.0625 15.875,38.75" sodipodi:nodetypes="cssccssccssccssccc" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 8"/>
<path id="autosatin226" d="M 15.6875,37.9688 20,38 v 18 l 0.125,4.125 0.375,4.375 0.2737,2.2629 0.4146,2.2298 0.6954,2.1085 L 23,73 23.740076,74.339411 M 14.7812,38 H 11 v 4 L 10.875,47.125 10.5,52.5 10.125,57.875 10,63 9.875,67.75 9.5,71.712738 9.2258138,74.426943 M 8.7866117,40.739146 21.890165,40.650758 M 8.4852814,70.538875 H 23.422912" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 9" sodipodi:nodetypes="cccccccccccccccccccccc"/>
<path id="autosatin227" d="M 15.4688,81.0312 12,81 11.0269,80.822 10.155,80.2752 9.45567,79.3409 9,78 C 8.8780184,77.008665 9.1127423,75.300751 9.2258138,74.426943 M 16.2812,81 l 5.3296,0.1764 2.1926,0.022 L 25,81 25.3685,80.5082 c 0.264417,-1.776367 -0.597144,-4.392422 -1.628424,-6.168789 m 0.602969,0.287673 -15.7467204,0.0049" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="2" inkstitch:force_lock_stitches="True" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 11" sodipodi:nodetypes="ccccccccccccccc"/>
</g>
<g inkscape:groupmode="layer" inkscape:label="GlyphLayer-s" style="display:none;fill:none;stroke:#00673e;stroke-width:0.945;stroke-opacity:1;stroke-miterlimit:4;" id="g157826">
<path id="autosatin220" d="m 8.11256,66.592 0.69252,-0.0547 0.90479,0.3305 2.23803,1.3863 2.462,1.6348 1.1847,0.6413 1.0845,0.3803 1.9978,0.3204 2.1051,0.0615 2.014,-0.362 0.9109,-0.3911 0.8136,-0.5588 0.4048,-0.4887 M 7.55006,66.967 l -0.79617,0.7368 -0.37782,0.8578 -0.28712,2.3919 -0.06069,2.2418 0.31915,2.2559 0.34929,1.065 0.50097,0.9867 0.67156,0.8811 0.86105,0.7482 1.08046,0.6399 1.14456,0.4762 2.4255,0.5573 2.5139,0.1908 2.4902,0.0164 3.8006,0.127 3.8604,0.0793 1.8941,-0.1293 1.8387,-0.3223 1.7599,-0.5759 1.6576,-0.8898 1.3134,-1.0142 1.1077,-1.1348 0.4153,-0.5599 M 18.75,69.625 19,82.625 M 4.625,71.8125 13.5,68 m 23.0286,9.0284 -12.2227,-7.8148" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" sodipodi:nodetypes="cscccssscscccsssssssssssccccccccccccc" inkscape:label="Auto-remplissage satin 2"/>
<path d="m 31.334,71.7796 0.6319,-1.4021 0.3258,-1.1696 v 0 l 0.0859,-0.3082 0.2476,-1.5137 0.0076,-1.5292 -0.05,-0.2898 v 0 l -0.2096,-1.2148 -0.5104,-1.4375 -0.4536,-0.7992 v 0 L 31.1117,61.5915 30.1948,60.378 29.1764,59.2482 29.1526,59.226 v 0 L 28.0642,58.2099 26.8837,57.2382 26.362,56.8353 v 0 L 25.6715,56.302 24.4409,55.3837 23.4031,54.653 v 0 L 23.1843,54.499 21.9341,53.6188 20.657,52.6966 20.4124,52.5139 v 0 L 19.395,51.7538 18.16,50.7773 17.5374,50.2243 v 0 l -0.5536,-0.4915 -1.1105,-1.1089 -0.9072,-1.0232 v 0 l -0.1318,-0.1488 -0.9744,-1.2216 -0.8081,-1.3075 -0.1285,-0.3562 v 0 l -0.3978,-1.1034 -0.2345,-1.5517 0.055,-0.9333 v 0 l 0.0359,-0.6089 0.3661,-1.4902 0.6969,-1.365 v 0 l 0.0181,-0.0356 1.0524,-1.1292 1.2681,-0.906 0.4951,-0.203 v 0 l 0.9513,-0.39 1.5158,-0.4089 1.0651,-0.1728 v 0 l 0.4853,-0.0787 1.5684,-0.1155 1.577,0.0244 0.0355,0.0027 v 0 l 1.4842,0.1112 1.5082,0.2167 0.6518,0.1325 v 0 l 0.8373,0.1703 1.4123,0.5689 1.0934,0.7033 v 0 l 0.1909,0.1228 1.0346,1.1199 0.6516,1.3685 0.0705,0.4037 v 0 l 0.1896,1.085 -0.0389,1.5837 -0.2667,0.9549 v 0 l -0.1464,0.5246 -0.7646,1.4038" inkstitch:running_stitch_length_mm="2" id="autosatinrun164" inkscape:label="Points droits pour auto-remplissage satin 3" sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin221" d="m 30.7717,45.8585 1.0307,0.2341 0.9831,-0.0476 0.9215,-0.3202 0.8462,-0.5837 0.7754,-0.8043 0.6163,-0.8827 0.4668,-0.9467 0.3269,-0.9966 0.2722,-2.0855 L 36.838,37.3116 36.4724,36.0459 35.8733,34.925 35.0772,33.9504 34.1203,33.1237 33.039,32.4464 31.8697,31.92 l -1.2209,-0.374 -1.2363,-0.2202 -3.7159,-0.3059 -3.741,-0.0114 -3.7207,0.3611 -3.6551,0.8112 -1.3652,0.5043 -1.2562,0.6676 -1.1452,0.8164 -1.03262,0.951 -0.91809,1.0711 -0.80177,1.177 -1.24733,2.614 -0.45731,1.7689 -0.10767,1.8528 0.28936,1.8246 0.7338,1.6847 1.28104,1.9439 1.40807,1.8397 1.55402,1.7074 1.7187,1.5467 3.4538,2.6567 3.5055,2.4677 2.9335,1.7984 1.2393,0.9347 1.0403,1.2196 0.5117,0.9758 0.2879,0.975 0.0871,0.9559 -0.0907,0.9183 -0.2456,0.8622 -0.3774,0.7876 -0.6535,0.789 m 4.7839,-24.1646 -0.6808,-1.7976 -0.4214,-1.7301 -0.6082,-1.6099 -0.5135,-0.7435 -0.7274,-0.6938 -1.0934,-0.7116 -1.2146,-0.5325 -1.2863,-0.3338 -1.3084,-0.1151 -1.281,0.1236 -1.2039,0.382 -1.0772,0.6605 -0.9011,0.9589 -0.3159,0.7266 -0.0932,0.7219 0.0969,0.7067 0.2544,0.6811 0.8506,1.2442 1.0887,1.0174 2.3647,2.0553 2.4676,1.9273 5.1215,3.6062 2.3275,1.8333 2.1781,2.0207 1.9555,2.2276 1.6593,2.454 0.9497,2.0057 0.5835,2.059 0.2273,2.0742 -0.1189,2.0513 -0.6244,3.0908 -0.4716,1.477 -0.6027,1.4126 -0.7525,1.334 -0.5055,0.6817 m -8.4884,-34.2621 8.404,3.4053 M 22.625,29.125 l 0.25,9 M 9.3910196,52.716845 19.76602,42.591845 M 24,67.875 l 14.875,6.5 M 23.378718,62.451342 32.792077,52.684429" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="2" inkstitch:force_lock_stitches="True" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" sodipodi:nodetypes="cscccssscscccssssssssssscccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" inkscape:label="Auto-remplissage satin 4"/>
</g>
<g inkscape:groupmode="layer" inkscape:label="GlyphLayer-r" style="display:none;fill:none;stroke:#00673e;stroke-width:0.945;stroke-opacity:1;stroke-miterlimit:4;" id="g157822">
<path d="m 15.0328,73.4266 0.011,-0.2874 0.085,-1.5221 0.1135,-1.5334 0.0326,-0.4282 v 0 l 0.0848,-1.1152 0.1122,-1.5528 0.0843,-1.1006 v 0 l 0.0311,-0.407 0.0754,-1.5164 0.0414,-1.5262 0.0114,-0.3257 v 0 l 0.0421,-1.2042 -0.0063,-1.5369 -0.0043,-1.0372 v 0 l -0.0021,-0.4996 0.0231,-1.5392 0.0053,-1.5406 7e-4,-0.1995 v 0 l 0.0047,-1.341 0.0013,-1.5405 -0.0083,-0.8976 v 0 l -0.0059,-0.6428 -0.0142,-1.5404 -0.0513,-1.5376 -0.003,-0.0572 v 0 l -0.0772,-1.4637 -0.0793,-1.5361 -0.0444,-0.774 v 0 l -0.0437,-0.761 -0.1172,-1.534 -0.1025,-1.4748 v 0 l -0.0043,-0.0618 -0.0915,-1.5382 -0.0654,-1.5391 -0.0196,-0.6354 v 0 l -0.028,-0.9042 -0.1099,-1.5156" inkstitch:running_stitch_length_mm="2" id="autosatinrun161" inkscape:label="Points droits pour auto-remplissage satin 1" sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin216" d="m 14.1589,31.9883 -2.1325,-0.084 -0.9277,0.1407 -0.3387,0.1855 -0.2209,0.289 -0.2377,0.8349 -0.1332,1.1265 -0.0061,2.8556 0.2527,3.2049 0.4055,3.0094 0.0599,0.5147 m 3.8408,-12.0733 2.0651,-0.114 0.9265,0.0209 1.0374,0.2259 0.4433,0.2433 0.3139,0.3791 0.3344,1.0563 0.1584,2.5392 0.2218,5.3875 -0.0203,2.199 M 9,36.59375 h 12.03125" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" sodipodi:nodetypes="csssssccssssscccccccc" inkscape:label="Auto-remplissage satin 2"/>
<path d="m 20.4622,40.7192 0.1664,-0.6745 v 0 l 0.1977,-0.8016 0.9822,-1.1723 1.1297,-0.8042 v 0 l 0.1268,-0.0903 1.3787,-0.6279 1.4585,-0.4156 0.5492,-0.0776 v 0 l 0.9566,-0.1351 1.5171,0.0773 1.1933,0.3938 v 0 l 0.2434,0.0803 1.2517,0.8884 0.941,1.2115 0.1611,0.3842 v 0 l 0.4327,1.032 0.3465,1.5023 0.0766,1.0782 v 0 l 0.0328,0.4621 0.0186,1.5426 -0.1174,1.539 -0.0277,0.1904 v 0 l -0.1941,1.3378 -0.3154,1.5126 -0.1732,0.8269 v 0 l -0.14,0.6683 -0.2867,1.5149" inkstitch:running_stitch_length_mm="2" id="autosatinrun162" inkscape:label="Points droits pour auto-remplissage satin 3" sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin217" d="m 31.7839,53.6555 -0.8335,-0.1319 -0.7946,-0.2748 -0.7156,-0.445 -0.5964,-0.6421 -0.3448,-0.7002 -0.1369,-0.7576 0.1418,-1.6393 0.3494,-1.7239 0.1408,-1.7118 -0.1723,-1.936 -0.4539,-1.7224 -0.4144,-0.695 -0.5831,-0.5382 -0.7845,-0.3471 -1.0187,-0.1215 -1.3142,0.102 -1.0757,0.2896 -0.8653,0.4629 -0.6827,0.6222 -0.5281,0.7672 -0.4013,0.8981 -0.5342,2.1324 m 12.723,8.1566 1.3357,-0.0343 1.0196,-0.2974 0.7588,-0.5365 0.5534,-0.7515 0.4033,-0.9426 0.3086,-1.1096 0.5544,-2.6241 0.4144,-2.8789 0.0756,-2.6186 L 38.196,39.3475 37.988,38.0926 37.6357,36.9062 36.847,35.2894 35.8053,33.9093 34.5199,32.8012 33,32 l -1.6571,-0.4063 -1.847,-0.0525 -1.9362,0.2664 -1.9248,0.5502 -1.8126,0.799 -1.5999,1.0127 -1.2864,1.1915 -0.8724,1.3351 0.1397,7.0591 m 7.1971,5.6147 10.6066,1.7235 M 21.2132,33.1948 22.4506,42.122 m 4.5962,-0.5303 8.7505,-9.4576" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 4" sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccccc"/>
<path id="autosatin218" d="m 10.8802,44.0655 0.4527,3.8927 0.1566,4.4273 -0.1157,4.4314 -0.304,4.4199 -0.5797,3.5603 -0.96632,3.4992 -1.10089,3.4718 -0.98344,3.478 -0.18906,0.8605 M 20.2015,43.9294 20.171,47.218 l -0.0922,5.3633 0.0975,5.0149 0.4003,5.1367 0.6118,5.1188 0.8117,5.0919 0.6555,3.315 M 10.4135,46.2618 H 21.1969 M 7.90625,70.7188 22.5,70.6562 M 10.4263,44.1716 20.666,44.0227" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" sodipodi:nodetypes="csssssccsssssccc" inkscape:label="Auto-remplissage satin 5"/>
<path id="autosatin219" d="M 14.342,80.9741 11.5222,81.0369 8.71094,80.9297 7.88053,80.6956 7.3382,80.1985 7.03581,79.5018 6.92528,78.6689 7.08732,76.8488 7.2504,76.1065 m 7.9423,4.8566 2.1055,-0.0426 2.0997,0.0795 1.5044,-0.0627 1.2628,-0.4794 0.4654,-0.4155 0.3144,-0.5429 0.1332,-0.6782 L 23,78 22.6556,76.2586 M 6.45664,76.1966 23.4473,76.3643" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="2" inkstitch:force_lock_stitches="True" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" sodipodi:nodetypes="csssssccsssssccc" inkscape:label="Auto-remplissage satin 7"/>
</g>
<g inkscape:groupmode="layer" inkscape:label="GlyphLayer-q" style="display:none;fill:none;stroke:#00673e;stroke-width:0.945;stroke-opacity:1;stroke-miterlimit:4;" id="g157818">
<path d="M 15.748314,74.222931 C 14.343772,71.992585 13.629596,69.611642 13.1923,67.1703 l -0.1149,-0.6504 v 0 L 12.927,65.668 12.7328,64.154 12.6248,62.8584 v 0 l -0.0187,-0.2251 -0.0617,-1.5249 -0.0335,-1.526 -0.0068,-0.4131 v 0 l -0.0184,-1.1131 0.005,-1.5263 0.0025,-1.052 v 0 l 0.0011,-0.4872 0.0116,-1.5224 0.0374,-1.5219 0.01,-0.1593 v 0 l 0.0857,-1.3596 0.1356,-1.5139 0.0901,-0.8043 v 0 l 0.0789,-0.7045 0.2731,-1.4938 0.3286,-1.4267 v 0 l 0.0116,-0.0502 0.3976,-1.5002 0.4803,-1.4692 0.2159,-0.4975 v 0 l 0.3988,-0.9189 0.6926,-1.3721 0.5944,-0.9878 v 0 l 0.1973,-0.3279 0.9701,-1.1712 1.1816,-0.948 0.2422,-0.1264 v 0 l 1.1117,-0.5804 1.4593,-0.4709 0.8924,-0.1453 v 0 l 0.6175,-0.1006 1.5008,-0.2165" inkstitch:running_stitch_length_mm="2" id="autosatinrun158" inkscape:label="Points droits pour auto-remplissage satin 1" sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin213" d="M 25.877,32.8255 C 25.784,32.0994 25.5015,31.5771 24.7344,31.3828 21.0003,30.4371 16.4587,31.0396 13.6953,33.9062 8.56313,39.2302 7.09135,47.0066 7.02441,54.1616 6.96268,60.7612 6.45336,67.5622 8.6875,73.9062 10.0783,77.8554 13.7752,80.9356 18.1515,81 22.1424,81.0587 27.8092,79.7199 28,76 l 0.375,-7.3125 M 26.127,33.5443 C 26.5804,35.0587 25.3905,35.9734 24,36.5 c -1.8203,0.6894 -3.6566,1.72 -4.375,3.6875 -2.0398,5.5868 -1.7378,11.6453 -1.5884,17.4907 0.101,3.9503 0.3943,8.1453 2.5474,11.6675 1.4615,2.3908 6.574,1.7686 7.8457,-3.0332 M 22.625,29.375 24.5,38.125 M 5.375,55.625 19.5,55.5" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 2"/>
<path d="m 33.7819,65.6416 0.0329,-1.521 0.0329,-1.5209 0.0093,-0.4281 v 0 l 0.0236,-1.0929 0.033,-1.5209 0.0251,-1.1613 v 0 L 33.9465,58.0368 33.9262,56.5148 33.9116,54.96 33.91,54.6208 v 0 l -0.0057,-1.2073 -0.0077,-1.5464 -0.0115,-1.0222 v 0 L 33.8793,50.3208 33.862,48.7746 33.8447,47.2284 33.8431,47.0692 v 0 l -0.0141,-1.3871 0.0012,-1.5465 7e-4,-0.8424 v 0 l 5e-4,-0.7042 0.0012,-1.5465 0.0077,-1.5252 v 0 l 1e-4,-0.0212 0.0483,-1.5453 0.0482,-1.5454 0.0281,-0.662 v 0 l 0.0375,-0.883 0.136,-1.5363" inkstitch:running_stitch_length_mm="2" id="autosatinrun159" inkscape:label="Points droits pour auto-remplissage satin 3" sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin214" d="m 34.125,32 -1.5533,-0.0713 -1.6124,0.0087 -0.7132,0.1388 -0.5898,0.284 -0.4203,0.4711 -0.2048,0.6999 -0.3394,6.1 0.0316,6.1191 0.1777,6.1269 L 29,58 28.0174,75.6869 M 34.6774,32 l 2.1235,-0.0839 0.9723,-0.0123 0.9456,0.1587 0.2739,0.1997 0.146,0.3648 0.0276,1.0722 -0.1258,1.2736 -0.0405,1.1686 -0.1329,19.7839 0.1567,9.8839 0.2459,4.9341 0.4002,4.9266 m -11.985079,-40.338318 12.625,0.125" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 4" sodipodi:nodetypes="ccccccccccccccccccccccccccc"/>
<path d="m 33.769,74.7597 0.0163,1.5187 0.0326,0.9955 v 0 l 0.017,0.5196 0.0109,1.5555 -0.0023,1.5493 -3e-4,0.1512 v 0 l -0.0036,1.3898 -0.0345,1.536 -0.0414,0.8488 v 0 l -0.0331,0.6798 -0.1937,1.5022 -0.2629,1.4995 -0.0075,0.0579 v 0 l -0.1937,1.4822" inkstitch:running_stitch_length_mm="2" id="autosatinrun160" inkscape:label="Points droits pour auto-remplissage satin 5" sodipodi:nodetypes="ccccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin215" d="M 33.875,92 28.5565,92.1239 26.2236,92.1662 25,92 l -0.2419,-0.3336 -0.0389,-0.4666 0.3502,-1.2077 1.1461,-2.6387 0.5887,-2.1945 0.477,-2.2214 0.537,-3.4556 L 28,76 28.0174,75.6869 m 6.5426,16.3352 1.8503,-0.0821 1.5129,-0.2425 1.204,-0.3953 0.9237,-0.5408 0.672,-0.6786 0.4487,-0.809 0.2542,-0.9318 0.0881,-1.0471 -0.2076,-2.41 -0.5289,-2.7809 -0.6216,-3.0917 -0.4859,-3.3424 m -12.2339,0.2095 12.8829,0.053" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="2" inkstitch:force_lock_stitches="True" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 6" sodipodi:nodetypes="cccccccccccccccccccccccccccc"/>
</g>
<g inkscape:groupmode="layer" inkscape:label="GlyphLayer-p" style="display:none;fill:none;stroke:#00673e;stroke-width:0.945;stroke-opacity:1;stroke-miterlimit:4;" id="g157814">
<path d="m 14.5017,73.4066 0.0551,1.2002 0.1165,1.5368 0.0821,1.0289 v 0 l 0.0406,0.5072 0.147,1.532 0.1612,1.5298 0.0249,0.187 v 0 l 0.1773,1.3321 0.2896,1.4928 0.1862,0.8912 v 0 l 0.1295,0.6203 0.1271,1.5417 -0.0332,1.5254 -0.0035,0.0684 v 0 l -0.075,1.4549 -0.412,1.4491" inkstitch:running_stitch_length_mm="2" id="autosatinrun155" inkscape:label="Points droits pour auto-remplissage satin 1" sodipodi:nodetypes="ccccccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin209" d="M 14.696,92 11.4916,92.0508 9.94152,91.8498 9.22423,91.5806 8.5625,91.1562 7.94716,90.4248 7.70364,89.5974 7.74143,88.6938 7.97003,87.7337 8.63765,85.7234 8.89564,84.7127 8.98242,83.7246 8.81894,73.7259 8.84505,63.7241 8.95833,46.9306 M 15.4804,91.989 19.3793,92.0137 21.3266,91.973 23.25,91.7515 23.9129,91.2872 24.146,90.5668 24,88.9214 23.5317,87.2108 22.7976,85.5955 22.0306,83.9821 21.4639,82.2773 20.798,78.766 20.3067,75.244 19.703,68.1762 19,54 18.5426,47.139 m -11.4895925,2.620261 12.8750005,-0.25 m -12.2306456,34.700897 15.7962606,0.0657" sodipodi:nodetypes="ccccsssccccccsscccccccccccccccccc" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 2"/>
<path d="m 13.7493,46.9941 -0.0435,-1.48 -0.0447,-1.5207 -0.0504,-0.7712 v 0 L 13.5619,42.4745 13.458,40.9556 13.3554,39.456 v 0 l -0.0013,-0.0192 -0.0929,-1.5183 -0.0851,-1.5174 -0.0555,-0.7125 v 0 l -0.0624,-0.7997 0.0035,-1.5078" inkstitch:running_stitch_length_mm="2" id="autosatinrun156" inkscape:label="Points droits pour auto-remplissage satin 3" sodipodi:nodetypes="cccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin210" d="m 13.8125,32 2.0019,-0.021 0.9903,0.0384 0.9453,0.2326 0.2347,1.0611 0.0371,1.1067 L 18,36.6522 V 39 l 0.5426,8.139 m -5.277,-15.1468 -1.7204,0.0041 -1.2007,-0.016 -1.1963,0.204 -0.50033,0.243 -0.3838,0.368 L 8.03528,33.3117 8,34 l 0.39596,2.412 0.24222,2.4303 0.3418,4.8775 -0.02165,3.2108 M 7.1660714,34.644705 18.705357,34.346402" sodipodi:nodetypes="ccccsssccccccsscccccc" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 4"/>
<path id="autosatin211" d="M 18.4732,46.895 18,39 l 1.5792,-2.1586 1.6963,-2.1035 1.9263,-1.8529 1.0846,-0.7713 1.1843,-0.6352 1.6969,-0.4028 1.7316,-0.0539 1.7144,0.2705 1.6452,0.5705 1.5241,0.8461 1.3511,1.0972 1.1261,1.3239 0.8493,1.5262 0.9649,2.3917 0.7166,2.4554 0.5062,2.5058 0.3338,2.5428 0.3019,5.1432 0.0672,5.131 -0.1129,5.4328 -0.4808,5.4388 -0.4672,2.6772 -0.6659,2.6252 -0.9001,2.5555 -0.9752,2.0569 M 18.644,47.9117 l 0.6159,-2.428 0.9674,-2.738 0.6663,-1.2474 0.8152,-1.0397 0.9844,-0.7369 1.174,-0.3389 1.0744,-0.0103 0.8995,0.1554 0.7428,0.3032 0.6046,0.4329 0.8675,1.1837 0.5338,1.4878 0.5681,2.5667 0.3911,2.5883 0.3812,5.2225 0.0659,10.4956 -0.1006,1.2317 -0.3771,1.0969 -0.6054,0.9831 -0.7856,0.8903 -0.4945,0.4089 m 0.855926,-20.095565 12.1976,-0.0884 M 19.4454,35.0068 22.539,41.1939 m -4.0819,5.5503 0.2215,1.1216 m 10.254694,15.074843 12.053645,0.0657" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 5" sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccccc"/>
<path d="m 32.0154,73.016 -0.9576,1.206 -0.4917,0.4637 v 0 l -0.611,0.5761 -1.2638,0.8401 -1.2603,0.6233 v 0 l -0.1163,0.0575 -1.4028,0.6499" inkstitch:running_stitch_length_mm="2" id="autosatinrun157" inkscape:label="Points droits pour auto-remplissage satin 6" sodipodi:nodetypes="cccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin212" d="m 23.7812,77.5938 -0.6018,-1.6658 -0.4234,-1.7174 -0.0119,-0.8432 0.1922,-0.8143 0.4496,-0.7717 0.76,-0.715 2.0623,-1.4689 1.4247,-1.178 m -3.5079,9.8617 0.7288,1.3241 0.8434,1.1426 1.0652,0.9171 1.3938,0.6475 1.3069,0.0661 1.228,-0.12 1.1456,-0.2993 1.0596,-0.4712 0.97,-0.6363 0.8769,-0.7943 0.7801,-0.9451 0.6798,-1.089 0.1948,-0.4109 M 23.6881,69.655 32.4385,83.1784" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="2" inkstitch:force_lock_stitches="True" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 7"/>
</g>
<g inkscape:groupmode="layer" inkscape:label="GlyphLayer-o" style="display:none;fill:none;stroke:#00673e;stroke-width:0.945;stroke-opacity:1;stroke-miterlimit:4;" id="g157810">
<path d="m 15.9509,72.83 -0.7416,-1.143 -0.6835,-1.3569 -0.3001,-0.7822 v 0 L 13.9748,68.894 13.5305,67.4121 13.1954,65.9785 v 0 L 13.1775,65.9016 12.9433,64.3683 12.7756,62.825 12.743,62.2887 v 0 l -0.0616,-1.0135 -0.0942,-1.5498 -0.0273,-1.1513 v 0 l -0.0095,-0.401 0.0105,-1.5524 0.0314,-1.5555 0.0037,-0.2103 v 0 l 0.0237,-1.3405 0.0847,-1.5456 0.0723,-0.8279 v 0 l 0.0623,-0.7144 0.1346,-1.5422 0.1955,-1.4413 v 0 l 0.0117,-0.0869 0.225,-1.5249 0.2533,-1.5164 0.115,-0.5411 v 0 l 0.2033,-0.9559 0.3618,-1.4887 0.4024,-1.1415 v 0 l 0.1032,-0.2926 0.679,-1.4059 0.8981,-1.2763 0.2009,-0.2056 v 0 l 0.8876,-0.9082 1.229,-0.938 0.8115,-0.3978 v 0 l 0.5875,-0.2879 1.4767,-0.36" inkstitch:running_stitch_length_mm="2" id="autosatinrun153" inkscape:label="Points droits pour auto-remplissage satin 1" sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin207" d="M 23,37 22,37.125 21,37.5 20,38.375 19,40 18.5625,41.0625 18.25,42.25 18,45 v 8 l 0.125,5.375 0.375,4.125 1,5.5 0.3125,0.9062 0.4375,0.7188 0.5625,0.5313 L 21.5,70.5 22.875,70.875 24,71 25,70.875 26,70.5 27,69.75 28,68.5 28.4688,67.625 28.717,66.9377 M 23.3125,31 H 22 L 20.0625,31.125 18.25,31.5 16.5625,32.125 15,33 13.5938,34.0937 12.375,35.375 11.3438,36.8438 10.5,38.5 9.125,42.375 8,47 7.25,52.25 7,58 v 2 L 7.25,65.5 7.5625,67.875 8,70 8.5625,71.9063 9.25,73.625 10.0625,75.1562 11,76.5 12.0312,77.6563 13.125,78.625 14.2812,79.4062 15.5,80 16.8438,80.4375 18.375,80.75 22,81 h 5 L 29.875,80.75 32.5,80 33.7188,79.4062 34.875,78.625 35.9688,77.6563 36.258,77.3319 M 5.5,55.375 19.5,55.5 m 4.5,14 v 12.625 m -1.1148,-44.812 0.3429,-6.6136" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 2"/>
<path d="m 33.273,70.8092 0.6151,-1.4271 0.1427,-0.4347 v 0 l 0.3458,-1.0533 0.3507,-1.5275 0.1668,-1.0304 v 0 l 0.084,-0.519 0.1919,-1.5594 0.1414,-1.5651 0.0021,-0.0513 v 0 l 0.0619,-1.5191 0.0533,-1.5712 0.0126,-0.6271 v 0 l 0.0191,-0.944 -0.0232,-1.5713 -0.0145,-1.2039 v 0 L 35.4189,53.8852 35.3783,52.3225 35.2969,50.762 35.2777,50.4885 v 0 L 35.1876,49.2033 35.035,47.6499 34.9125,46.7881 v 0 L 34.8153,46.1042 34.5425,44.5678 34.197,43.1406 v 0 l -0.02,-0.0827 -0.4868,-1.4701 -0.6142,-1.4109 -0.2608,-0.4811 v 0 l -0.4627,-0.8533 -0.9056,-1.222 -0.8204,-0.9137 v 0 L 30.408,36.4634 29.179,35.5126 27.8195,34.8003 27.5339,34.6962 v 0 l -1.139,-0.4152 -1.5326,-0.219" inkstitch:running_stitch_length_mm="2" id="autosatinrun154" inkscape:label="Points droits pour auto-remplissage satin 3" sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin208" d="M 23.8125,36.9688 25.1562,37.1094 26,37.5 27,38.375 28,40 28.875,42.375 29.5,45.5 29.875,49.375 30,54 29.875,59.375 29.5,63.5 l -0.625,3 -0.158,0.4377 M 24,31 27.75,31.25 31,32 32.4687,32.625 33.875,33.5 35.2187,34.625 36.5,36 37.6563,37.6562 38.625,39.625 39.4062,41.9062 40,44.5 40.4375,47.4063 40.75,50.625 41,58 40.75,64.375 40.4375,67.0938 40,69.5 39.4375,71.625 38.75,73.5 37.9375,75.125 37,76.5 36.258,77.3319 M 28.875,55.5 l 14,-0.25" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="2" inkstitch:force_lock_stitches="True" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 4"/>
</g>
<g inkscape:groupmode="layer" inkscape:label="GlyphLayer-n" style="display:none;fill:none;stroke:#00673e;stroke-width:0.945;stroke-opacity:1;stroke-miterlimit:4;" id="g157806">
<path d="m 15.0052,74.2407 -8e-4,0.9842 0.0226,1.5155 0.0155,1.0272 v 0 l 0.0076,0.5106 0.0124,1.5282" inkstitch:running_stitch_length_mm="2" id="autosatinrun151" inkscape:label="Points droits pour auto-remplissage satin 1" sodipodi:nodetypes="ccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin203" d="M 14.7641,81.125 11.5456,81.2435 10.1737,81.1757 8.375,80.875 7.61097,80.5374 7.14033,79.9559 6.91106,79.1911 6.87113,78.3037 l 0.28011,-1.8992 0.41321,-1.6604 1.82949,-7.1372 0.75586,-3.6002 0.4674,-3.6551 0.2498,-4.2959 0.0624,-4.3026 -0.189,-4.2978 -0.187,-1.5883 m 5.1169,35.1955 3.6164,0.2136 1.877,-0.1241 0.7632,-0.2425 L 22.5,80.5 22.9754,79.7763 23.2008,78.974 23.2278,78.1128 23.1077,77.212 22.1875,73.6035 21.204,67.4533 20.4587,61.2645 20.0486,55.0494 20.0703,48.8203 20.049,45.8398 M 9.625,55.5 l 11.5,-0.125" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" sodipodi:nodetypes="csccssccsssssccc" inkscape:label="Auto-remplissage satin 2"/>
<path d="m 15.3127,46.0374 -0.0115,-0.184 -0.097,-1.5517 -0.1068,-1.5503 -0.0203,-0.2333 v 0 l -0.1137,-1.3132 -0.1177,-1.5488 -0.0254,-0.6553 v 0 l -0.0346,-0.894 0.0441,-1.5527 0.0488,-1.0782 v 0 L 14.9,35.0004 14.9722,33.4616" inkstitch:running_stitch_length_mm="2" id="autosatinrun152" inkscape:label="Points droits pour auto-remplissage satin 3" sodipodi:nodetypes="cccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin204" d="m 15.3746,31.9375 2.1926,0.0343 1.6516,0.2391 0.598,0.3606 0.3535,0.6388 0.1597,0.8477 0.0167,0.9871 L 20,39 20.049,45.8398 M 14.4058,31.9688 11.691,31.8809 10.5917,32.0246 10.2166,32.2112 10,32.5 l -0.36446,1.2735 -0.19433,1.3087 0.00661,2.6872 0.34179,2.7209 0.44669,2.6835 0.3171,2.6932 M 8.2875,36.503325 21.270536,36.67815" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" sodipodi:nodetypes="csccssccsssssccccccc" inkscape:label="Auto-remplissage satin 4"/>
<path id="autosatin205" d="M 20.0625,44.75 20,39 l 0.8153,-1.5837 0.9922,-1.4792 1.1516,-1.3428 1.2931,-1.175 1.4169,-0.9755 1.5228,-0.7442 1.611,-0.4814 1.6815,-0.187 1.7479,0.106 1.7364,0.3696 1.6655,0.6226 1.535,0.8646 1.3449,1.0958 1.0952,1.3162 0.786,1.5257 0.4172,1.7245 0.1945,2.5172 0.0462,2.5268 -0.0532,5.059 0.2032,8.949 0.3068,4.464 0.49,4.4528 1.0841,7.3866 0.2793,1.5211 m -23.2931,-26.7124 0.3025,-2.5827 0.6979,-2.4959 1.1177,-2.3471 1.5616,-2.1368 0.7208,-0.6094 0.8419,-0.3914 0.9066,-0.1775 0.915,0.0321 0.867,0.2374 0.7625,0.4384 0.6017,0.6351 0.3845,0.8275 0.7854,3.6044 0.2085,1.8213 0.0608,1.8243 0.0063,6.5639 -0.0894,3.2733 -0.2841,3.2566 -1.136,7.1717 -1.516009,7.700941 M 25.7187,40 23.9687,31.4375 M 29.125,55.5 42.5,55.25 m -22.4396,-10.8035 0.0226,4.478" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" sodipodi:nodetypes="ccsssssccsssssscccccccccccccccccccccccccccccccccccccc" inkscape:label="Auto-remplissage satin 5"/>
<path id="autosatin206" d="m 35.5761,81.0625 -2.8964,0.0535 -4.1485,-0.1472 -0.8715,-0.2337 -0.4932,-0.5253 -0.1902,-0.746 0.0377,-0.896 0.4576,-1.9587 0.313891,-1.142659 m 8.884409,5.596059 2.0949,0.0951 2.681,0.0145 1.2035,-0.1761 0.922,-0.3799 0.4978,-0.6449 0.0452,-0.441 L 44,79 43.3634,75.5327 m 0.81,0.0624 -17.3103,-0.03654" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="2" inkstitch:force_lock_stitches="True" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" sodipodi:nodetypes="ccsssssccssssssccccc" inkscape:label="Auto-remplissage satin 7"/>
</g>
<g inkscape:groupmode="layer" inkscape:label="GlyphLayer-m" style="display:none;fill:none;stroke:#00673e;stroke-width:0.945;stroke-opacity:1;stroke-miterlimit:4;" id="g157802">
<path d="m 15.0188,74.0659 -0.0317,0.7941 -0.0206,1.5411 0.0151,1.1767 v 0 l 0.0048,0.3771 -0.04989,2.093224" inkstitch:running_stitch_length_mm="2" id="autosatinrun148" inkscape:label="Points droits pour auto-remplissage satin 1" sodipodi:nodetypes="ccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin197" d="M 14.0148,81 H 10 L 8.375,80.875 7.5,80.5 7.125,79.625 7,78 7.125,76.75 7.5,75 9,69.5 9.875,65.75 10.5,61.5 10.875,56.625 11,51 10.875,48 10.6068,45.8545 M 15.0312,81 H 21 L 21.875,80.875 22.5,80.5 22.875,79.875 23,79 22.875,77.75 22.5,76 l -1,-5.5 -1,-8 L 20.125,57.875 20,53 19.4325,45.6226 M 9.36916,57.811 21.0364,57.7226" sodipodi:nodetypes="cssssccsssssccssscsssssssssccc" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 2"/>
<path d="m 15.0449,45.9893 -0.0252,-0.2507 -0.1561,-1.5314 -0.1584,-1.531 -0.0147,-0.1817 v 0 l -0.1098,-1.3524 -0.0556,-1.5368 0.0255,-0.6175 v 0 l 0.0379,-0.9176 0.1765,-1.5194 0.1294,-1.0568 v 0 l 0.0563,-0.4591 0.0274,-1.532" inkstitch:running_stitch_length_mm="2" id="autosatinrun149" inkscape:label="Points droits pour auto-remplissage satin 3" sodipodi:nodetypes="cccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin198" d="M 14.9687,32 H 18 L 18.875,32.125 19.5,32.5 19.875,33.125 20,34 19.875,35.125 19.5,36.5 19.125,38.125 19,40 19.4325,45.6226 M 14.6483,31.989 12,32 11.125,32.1261 10.5,32.5 10.125,33.125 10,34 v 1.5 4 L 10.125,42.125 10.5,45 10.6068,45.8545 M 8.875,36.5 h 11.34375" sodipodi:nodetypes="cssssccsssssccssscssss" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 4"/>
<path id="autosatin199" d="M 19.5625,46.9688 19,40 l 1.1878,-1.8341 1.3323,-1.624 1.4685,-1.4026 1.5965,-1.17 1.7164,-0.9263 1.8282,-0.6711 1.9317,-0.4049 2.027,-0.1273 1.5305,0.0986 1.3512,0.2641 1.1815,0.4174 1.0217,0.5587 0.8714,0.6878 0.731,0.805 0.6002,0.9099 0.4792,1.0028 0.6344,2.236 0.267,2.4625 -0.0029,0.3322 m -21.1911,5.3541 1.2597,-3.3223 0.855,-1.5548 1.0661,-1.4182 0.5626,-0.5817 0.6723,-0.4546 0.7491,-0.3179 0.7933,-0.1716 0.8047,-0.0158 0.7835,0.1495 0.7295,0.3245 0.6428,0.5091 0.8341,1.5314 0.4114,1.6898 0.2252,3.5033 0.0161,0.7827 m -10.4156,-0.7534 0.0478,0.0068" sodipodi:nodetypes="ccssssssssccccsscccc" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 5"/>
<path d="m 35.3635,46.1402 -0.0629,1.5186 -0.0414,0.6859 v 0 l -0.0502,0.8304 -0.1008,1.5152 -0.0403,1.2805 v 0 l -0.0075,0.2395 0.0073,1.521 0.0146,1.5213 -0.0025,0.3495 v 0 l -0.0082,1.1744 0.0278,1.5558 0.0173,0.9009 v 0 l 0.0125,0.6548 0.0297,1.5556 0.0574,1.4196 v 0 l 0.0052,0.1295 0.037,1.547 0.049,1.5446 0.0199,0.4086 v 0 l 0.0547,1.1233 0.0687,1.5312 0.044,0.9732 v 0 l 0.0251,0.5548 0.0469,1.5229 0.0469,1.5229 5e-4,0.0289 v 0 l 0.0241,1.4895 -0.0445,1.5266 -0.0268,0.614 v 0 l -0.0399,0.917 0.1669,1.5083" inkstitch:running_stitch_length_mm="2" id="autosatinrun150" inkscape:label="Points droits pour auto-remplissage satin 6" sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin200" d="m 35.5321,80.9889 -3.1436,0.013 -3.1385,-0.0722 -0.8657,-0.2292 -0.7452,-0.5016 -0.4585,-0.7497 -0.0058,-0.9735 0.9315,-4.0347 0.7349,-4.0172 0.5531,-3.997 0.386,-3.9741 0.3306,-7.8687 -0.143,-6.9618 M 36.2724,80.9779 42,81 42.875,80.8772 43.5,80.5019 43.875,79.8757 44,79 43.5,75.5 42,69.5 41.125,65.75 40.5,61.5 40.125,56.875 40,52 40.1739,49.1328 40.5,46.5 l 0.2341,-2.6253 0.0195,-2.26 m -11.939,13.8098 12.1976,0.0884" sodipodi:nodetypes="ccssssssssccccsscccc" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 7"/>
<path id="autosatin201" d="m 40.75,42.7188 0.0467,-2.1407 -0.2029,-2.1406 2.3196,-2.9231 1.2482,-1.2181 1.3352,-1.0331 1.4435,-0.8307 1.5731,-0.6113 1.7236,-0.3746 1.8956,-0.1208 2.3281,0.2087 1.9144,0.5795 1.5332,0.9256 1.1847,1.2473 0.8689,1.5442 0.5857,1.8166 0.3351,2.0645 L 61,42 v 6 5 l 0.125,4.875 0.375,4.625 1,8 0.61705,3.8898 M 40.625,44.3438 l 1.1297,-1.5881 1.5379,-1.8025 0.8701,-0.8093 0.9098,-0.656 0.9287,-0.4337 0.9269,-0.1426 0.8896,0.1552 0.8027,0.4142 0.705,0.6749 0.5963,0.9372 0.4765,1.2013 0.3459,1.4671 0.2042,1.7347 L 51,47.5 V 52 l -0.125,4.875 -0.375,4.625 -1,8 -0.71875,4.9375 M 49.5859,55.5129 62.137,55.4245" sodipodi:nodetypes="ccsccssssssccssssssssccccccccccccccccccccccccc" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 8"/>
<path id="autosatin202" d="M 56.1266,81.0442 49,81 48.2593,80.8925 47.9415,80.5528 47.9029,79.9368 48,79 48.7811,74.37575 M 56.6569,81 H 63 L 63.4375,80.9375 63.75,80.75 63.9375,80.4375 64,80 63.5,76.5 63.11705,74.3898 m 0.91445,0.8196 -16.0063,-0.1119" sodipodi:nodetypes="ccsccssssssccssss" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="2" inkstitch:force_lock_stitches="True" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 10"/>
</g>
<g inkscape:groupmode="layer" inkscape:label="GlyphLayer-l" style="display:none;fill:none;stroke:#00673e;stroke-width:0.945;stroke-opacity:1;stroke-miterlimit:4;" id="g157798">
<path d="m 15.0299,72.9192 0.0377,-1.5302 0.0412,-1.2296 v 0 l 0.0101,-0.3027 0.0653,-1.5344 0.0652,-1.5343 0.0085,-0.2391 v 0 l 0.0459,-1.2975 0.0616,-1.5374 0.0315,-0.776 v 0 l 0.0312,-0.7674 0.0306,-1.5486 0.0257,-1.2965 v 0 l 0.005,-0.252 -0.012,-1.5527 0.0086,-1.5559 0.0014,-0.2529 v 0 l 0.0072,-1.3029 0.0086,-1.5559 -3e-4,-0.7547 v 0 l -3e-4,-0.8015 0.0022,-1.5577 0.007,-1.2544 v 0 l 0.0017,-0.3034 0.0087,-1.5579 0.0086,-1.5579 -0.0017,-0.1944 v 0 l -0.0122,-1.3216 -0.0055,-1.5394 -0.0016,-0.7525 v 0 l -0.0016,-0.787 -0.0032,-1.5395 -0.0027,-1.2871 v 0 l -6e-4,-0.2523 -0.0032,-1.5395 -0.0027,-1.5394 -5e-4,-0.2825 v 0 l -0.0022,-1.257 -0.0026,-1.5395 -0.0109,-0.817 v 0 L 15.47,29.6949 15.4448,28.1559 15.4227,26.8038 v 0 l -0.0031,-0.1869 -0.0303,-1.5386 -0.074,-1.5357 -0.0205,-0.3497 v 0 L 15.2255,22.009 15.1053,20.4824 15.1034,19.5861 v 0 L 15.1021,18.9628 15.27,17.4476" inkstitch:running_stitch_length_mm="2" id="autosatinrun147" inkscape:label="Points droits pour auto-remplissage satin 1" sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin195" d="m 15.5436,15.9935 2.3578,-0.0544 1.0177,0.0845 0.9559,0.2576 0.3711,0.2682 0.1847,0.4063 -0.0201,1.0987 -0.2568,1.2666 -0.1539,1.1784 -0.0297,15.1892 -0.0093,7.5943 0.1215,7.5921 0.3281,6.5752 0.5945,6.5588 0.845,6.5328 0.8898,5.3552 m -7.8371,-59.9256 -2.334,0.0077 -1.1356,0.282 -0.5004,0.2996 L 10.5,17 l -0.3285,0.5069 -0.21674,0.5925 -0.06134,0.7459 0.13778,0.9672 0.4941,2.7601 0.2779,2.7978 L 11,31 l 0.0761,13.9269 -0.1875,6.9614 -0.4203,6.954 -0.52286,4.0348 -0.79723,3.9835 -1.70876,7.946 -0.25741,1.2585 M 8.83883,44.1108 H 21.39" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 2"/>
<path id="autosatin196" d="M 14.7166,81.0007 11.5249,81.1006 9.97471,81.0701 8.375,80.875 7.61247,80.559 7.1407,79.9951 6.90654,79.2441 6.85683,78.3666 7.09815,76.4752 7.18204,76.0651 m 8.13116,4.9246 4.0053,0.0103 1.5306,-0.128 1.2911,-0.4582 0.4773,-0.3925 0.3233,-0.5226 0.138,-0.6685 L 23,78 22.9297,77.0391 22.7399,75.897 m 0.7961,0.0903 -17.15372,0.1842" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="2" inkstitch:force_lock_stitches="True" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 4"/>
</g>
<g inkscape:groupmode="layer" inkscape:label="GlyphLayer-k" style="display:none;fill:none;stroke:#00673e;stroke-width:0.945;stroke-opacity:1;stroke-miterlimit:4;" id="g157794">
<path d="m 15.0479,73.7835 -0.0229,0.8533 -0.0682,1.5409 -0.0591,1.2181 v 0 l -0.0157,0.3244 0.0669,1.5534" inkstitch:running_stitch_length_mm="2" id="autosatinrun144" inkscape:label="Points droits pour auto-remplissage satin 1" sodipodi:nodetypes="ccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin189" d="M 14.816,80.9998 11.5914,81.0088 8.375,80.875 7.47439,80.5758 6.97801,79.9082 6.80179,78.9615 l 0.0599,-1.137 0.4919,-2.4881 0.42766,-2.1802 0.9907,-4.1454 0.86421,-4.1726 0.65894,-4.2065 0.2492,-2.8237 m 4.8462,23.1918 3.3816,2e-4 1.5024,-0.009 1.4677,-0.25 0.5973,-0.2967 0.4404,-0.4546 0.234,-0.6451 -0.0217,-0.868 L 22.6483,74.897 22.1391,71.3414 20.8251,64.2101 20.511,61.8003 20.389,59.288 20.3419,57.61 m 0.4933,0.09 -10.7901,0.2175" sodipodi:nodetypes="cccssscsccsscccsc" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 2"/>
<path d="m 15.4659,53.0353 -5e-4,-0.9388 v 0 l -3e-4,-0.6199 0.0122,-1.5598 0.0126,-1.4358 v 0 l 0.0011,-0.1246 0.0135,-1.5461 0.0136,-1.5491 0.0023,-0.3957 v 0 l 0.0069,-1.1533 0.0051,-1.5491 0.0031,-0.9132 v 0 l 0.0021,-0.6359 0.0052,-1.5491 0.0048,-1.4306 v 0 l 4e-4,-0.1185 0.0051,-1.5491 -9e-4,-1.5491 -4e-4,-0.3989 v 0 l -10e-4,-1.1502 -0.0102,-1.549 -0.0068,-0.9164 v 0 l -0.0047,-0.6327 -0.0116,-1.549 -0.0525,-1.4329 v 0 l -0.0042,-0.1142 -0.0864,-1.5441 -0.1231,-1.5398 -0.0514,-0.4069 v 0 L 15.0588,22.065 14.9095,20.5441 14.8678,19.5849 v 0 l -0.025,-0.576 0.0615,-1.5114" inkstitch:running_stitch_length_mm="2" id="autosatinrun145" inkscape:label="Points droits pour auto-remplissage satin 3" sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin190" d="m 14.6252,15.9824 -2.7931,0.24 -1.0037,0.2831 -0.6063,0.4259 -0.45461,0.7926 -0.22802,0.8008 -0.04541,0.809 0.0932,0.817 0.87954,3.344 0.3572,2.2877 0.1763,2.3037 0.0467,4.6316 -0.0363,11.8374 -0.0822,5.9174 -0.2586,5.9122 -0.1256,1.4232 m 4.5781,-41.8477 2.5025,0.0399 1.1035,0.1894 0.7524,0.4222 0.4616,0.6062 0.2312,0.7417 0.0122,1.6948 L 20,21.307 l 0.0697,14.528 -0.0525,14.5267 0.0609,2.0876 0.1862,2.3952 0.0776,2.7655 M 9.45755,47.9999 21.0364,47.9115" sodipodi:nodetypes="cccssscsccsscccsc" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 4"/>
<path id="autosatin191" d="m 20.2643,54.8445 1.7392,0.2637 0.7643,-0.0345 0.647,-0.1796 0.006,-0.0031 M 20.25,53.7188 20.0482,50.8089 m -0.1565,-0.1008 3.5968,4.4115" sodipodi:nodetypes="cssscccssssccc" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 5"/>
<path d="m 24.2807,51.2248 1.233,-0.8853 0.2692,-0.2818 v 0 l 0.774,-0.8101 0.9324,-1.2429 0.4632,-0.6789 v 0 l 0.4113,-0.603 0.8576,-1.285 0.6365,-1.042 v 0 l 0.1806,-0.2956 0.7515,-1.3678 0.7059,-1.3779 0.0148,-0.0379 v 0 l 0.5557,-1.4243 0.5511,-1.4615 0.1288,-0.3841 v 0 l 0.3683,-1.0993 0.5127,-1.4327 0.27,-0.7689 v 0 l -0.07766,-1.676666" inkstitch:running_stitch_length_mm="2" id="autosatinrun146" inkscape:label="Points droits pour auto-remplissage satin 6" sodipodi:nodetypes="cccccccccccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin192" d="m 32.9615,31.8702 -5.0038,0.075 -0.778,0.2436 -0.4448,0.6106 -0.1848,0.8915 0.0019,1.0866 0.2705,2.4141 0.1374,2.1623 -0.2841,1.981 -0.5382,1.8947 -0.7412,1.8369 -0.8932,1.8076 -0.5777,0.9215 -0.7804,0.7733 -1.2229,0.7978 -1.905,0.995 0.031,0.4472 m 14.0695,-18.9075 4.6891,0.0654 0.9459,0.1279 0.7632,0.3093 0.5759,0.4627 0.3841,0.588 0.1875,0.6855 -0.0137,0.7547 -0.2196,0.7959 L 41,36.5 l -2.4374,3.4885 -2.5495,3.3251 -2.6528,3.1679 -2.747,3.0165 -1.4026,1.4538 -1.5055,1.3629 -1.8512,1.3036 -2.4332,1.2727 m 1.3917,-11.5785 7.625,6.1875" sodipodi:nodetypes="cssscccssssccc" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 7"/>
<path id="autosatin193" d="m 24.1963,54.4522 1.4286,-0.6959 1.3188,-0.8538 2.41,-2.0565 1.7165,0.9555 1.471,1.11 2.6551,2.3272 1.6287,1.6264 1.2918,1.7941 2.1332,3.8584 0.9478,1.931 0.8121,1.9836 1.2862,4.0221 0.9104,3.7582 m -20.7917,-19.3184 0.8734,0.6519 0.7891,0.7757 0.649,0.8286 0.4534,0.8106 0.8171,2.1497 0.6318,2.2011 0.8126,4.5136 0.387,4.5912 L 29,76 29.0017,76.9811 M 27.3125,66.875 41.5625,62" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 8"/>
<path id="autosatin194" d="m 37.0238,81 -3.0731,-0.0031 -3.0601,-0.1922 -0.7313,-0.208 -0.5143,-0.4078 -0.3349,-0.5638 -0.1935,-0.6759 -0.114,-1.5131 -9e-4,-0.455 m 8.9752,4.0033 3.6417,0.0156 1.5878,-0.1488 1.1549,-0.5314 0.386,-0.4177 0.2429,-0.5236 0.0881,-0.6329 L 45,78 44.2468,74.3786 44.2065,74.2125 m 0.7849,-0.0414 -16.7509,3.0486" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="2" inkstitch:force_lock_stitches="True" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 10"/>
</g>
<g inkscape:groupmode="layer" inkscape:label="GlyphLayer-j" style="display:none;fill:none;stroke:#00673e;stroke-width:0.945;stroke-opacity:1;stroke-miterlimit:4;" id="g157790">
<path d="m 15.5114,73.3572 0.06,-1.2051 0.1089,-1.532 0.052,-1.0263 v 0 l 0.0259,-0.5092 0.0645,-1.5371 0.0453,-1.5382 0.0021,-0.1829 v 0 l 0.0162,-1.3569 0.0214,-1.5397 0.0164,-0.873 v 0 l 0.0124,-0.6668 0.0288,-1.5397 0.0288,-1.5415 -10e-5,-0.0214 v 0 l -0.0062,-1.5405 -0.0154,-1.562 -0.0066,-0.6674 v 0 L 15.957,53.623 15.9415,52.061 15.9024,50.7481 v 0 l -0.0074,-0.2476 -0.0574,-1.56 -0.0574,-1.56 -0.0152,-0.3999 v 0 l -0.0441,-1.16 -0.0614,-1.5597 -0.0412,-1.0475 v 0 l -0.0201,-0.5122 -0.05,-1.5605 -0.0509,-1.5603 -0.0138,-0.1344 v 0 l -0.1451,-1.4115 -0.096,-1.5353 -0.0025,-0.8128 v 0 l -0.0023,-0.7226 0.0674,-1.5472" inkstitch:running_stitch_length_mm="2" id="autosatinrun141" inkscape:label="Points droits pour auto-remplissage satin 1" sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path d="m 14.7586,25.1329 0.1656,-1.5181 0.0564,-1.037 v 0 l 0.0266,-0.4888 0.0143,-1.5185 0.0094,-1.2889 v 0 l 0.0019,-0.2604 0.1212,-1.52" inkstitch:running_stitch_length_mm="2" id="autosatinrun142" inkscape:label="Points droits pour auto-remplissage satin 2" sodipodi:nodetypes="cccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin186" d="m 14.6629,16.0207 c -1.414,-0.0267 -2.4125,0.6292 -3.3445,1.6688 -1.2477,1.2874 -1.6576,3.2874 -1.0313,4.9648 0.7307,1.8976 1.6774,3.2898 3.7545,3.2506 m 1.913,-9.9308 c 2.0771,-0.0393 3.0276,1.474 3.7583,3.3716 0.6263,1.6774 0.2164,3.6774 -1.0313,4.9648 -0.932,1.0396 -2.0365,1.5191 -3.4505,1.4924 M 8.92091,21.5317 20.895,21.5248" sodipodi:nodetypes="cccccccccc" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 3"/>
<path id="autosatin187" d="m 16.1559,31.9582 3.2712,-0.0415 1.6373,0.1248 0.4075,0.289 0.1853,0.5308 -0.0891,1.564 L 21.211,36.287 21,38 v 5 6.5 8.5 0 L 20.954,63.2506 21,72 21.2224,74.7914 M 15.2468,31.9842 11.5582,32.1815 9.5,32.5 9.07533,32.9493 8.90636,33.6498 9.10251,35.5456 9.6224,37.6685 10,39.5 10.1871,42.4969 10.5,46.5 10.875,51.625 11,58 v 0 l -0.25,8.875 -0.3125,3.5937 -0.424556,3.938391 M 9.20249,59.0147 23.1729,58.9386" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 4" sodipodi:nodetypes="ccccccccccccccccccccccccccccccccc"/>
<path d="M 15.525571,75.66344 15.2827,77.1203 v 0 l -0.0619,1.1235 -0.1113,1.5122 -0.0828,1.1255 v 0 l -0.0285,0.3867 -0.1063,1.5533 -0.1125,1.5473 -0.0173,0.2734 v 0 l -0.0806,1.2711 -0.0701,1.5355 -0.0537,0.9578 v 0 l -0.0321,0.5742 0.0831,1.5157 0.5785,1.369 0.1722,0.0822" inkstitch:running_stitch_length_mm="2" id="autosatinrun143" inkscape:label="Points droits pour auto-remplissage satin 5" sodipodi:nodetypes="cccccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin188" d="m 14.6605,91.9667 -5.93332,0.1195 -1.94326,-0.1143 -0.5953,-0.1237 -0.2985,-0.1767 -0.28096,-1.012775 0.14588,-1.0957 0.71371,-2.1724 1.5,-5 1,-4 1.044194,-3.983534 M 16.0583,91.9287 l 6.6615,-0.2451 0.3362,-0.076 0.2382,-0.1936 0.2217,-0.7056 -0.052,-1.0726 -0.247,-1.3708 -0.7625,-3.3609 -0.5945,-3.7274 -0.4941,-4.5849 -0.1434,-1.8004 m 0.5915,0.0587 -12.574385,0.06131" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="2" inkstitch:force_lock_stitches="True" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 6" sodipodi:nodetypes="cccccccccccccccccccccccc"/>
</g>
<g inkscape:groupmode="layer" inkscape:label="GlyphLayer-i" style="display:none;fill:none;stroke:#00673e;stroke-width:0.945;stroke-opacity:1;stroke-miterlimit:4;" id="g157786">
<path d="m 15.1622,71.9441 0.0435,-1.526 0.0186,-0.6701 v 0 l 0.0236,-0.8556 0.0562,-1.5279 0.0628,-1.3918 v 0 l 0.0068,-0.1501 0.0684,-1.5451 0.0481,-1.5483 0.0023,-0.5322 v 0 l 0.0043,-1.0226 0.0291,-1.5568 -0.0042,-1.1984 v 0 L 15.5204,58.056 15.5095,56.4939 15.4976,54.9587 15.4945,54.6412 v 0 l -0.0117,-1.2201 -0.0147,-1.5377 -0.0276,-1.0198 v 0 l -0.014,-0.5172 -0.0347,-1.537 -0.034,-1.537 -0.0102,-0.1857 v 0 l -0.0746,-1.3471 -0.0576,-1.5315 -0.0236,-0.896 v 0 l -0.0167,-0.6346 0.0064,-1.5257 0.0145,-1.527 0.0025,-0.0905 v 0 l 0.0403,-1.4398 0.0454,-1.5304 0.043,-0.8055 v 0 l 0.0389,-0.7277 0.0158,-1.5349" inkstitch:running_stitch_length_mm="2" id="autosatinrun138" inkscape:label="Points droits pour auto-remplissage satin 1" sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path d="m 15.0826,25.1678 0.0474,-1.5112 0.0261,-1.0808 v 0 l 0.0111,-0.4608 0.0208,-1.5417 0.0184,-1.2854 v 0 l 0.0033,-0.228 0.0329,-1.5308" inkstitch:running_stitch_length_mm="2" id="autosatinrun139" inkscape:label="Points droits pour auto-remplissage satin 2" sodipodi:nodetypes="cccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin183" d="m 15.641,16.0234 c 2.5126,0.1316 4.7005,2.0636 4.6431,4.8288 0.0995,2.6797 -2.2995,5.0208 -4.8351,5.0032 m -0.6452,-9.8787 c -1.2066,-0.0516 -1.9055,0.3837 -2.921,1.1717 -2.60089,2.0185 -2.35628,6.2486 0.3984,8.0078 0.922,0.5889 1.3881,0.6971 2.4007,0.7139 M 9.20565,21.4684 21.0945,21.4926" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 3"/>
<path id="autosatin184" d="m 15.857,31.9711 3.22,-0.0076 1.4704,0.1826 0.3828,0.5802 0.1752,0.7502 -0.0113,1.7295 -0.6185,5.0174 -0.3152,2.4205 L 20,45.1363 19.9776,50.2988 20.1109,55.459 20.4388,60.6112 21,65.75 l 0.2346,1.9405 0.7219,3.6324 0.9952,5.1301 M 14.7206,31.9978 11.5845,32.1539 10.5521,32.2979 10,32.5 l -0.2272,0.4931 -0.12989,0.9424 -0.01576,2.8146 0.22975,3.358 0.3794,3.0657 0.4853,4.0586 0.1996,4.0732 -0.0282,4.0787 -0.1982,4.0752 -0.4413,3.814 -0.74118,3.7599 -1.87951,7.4432 -0.45525,1.7677 -0.05744,0.3534 M 9.44745,55.3843 21.6829,55.4881" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 4"/>
<path d="m 15.063938,75.46617 -0.02804,1.05913 0.0049,0.7762 v 0 l 0.0048,0.7652 -0.0115,1.5448 m 0.1049,1.4589 0.0048,-0.0026" inkstitch:running_stitch_length_mm="2" id="autosatinrun140" inkscape:label="Points droits pour auto-remplissage satin 5" sodipodi:nodetypes="cccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin185" d="M 14.6977,81.0981 11.523,81.066 8.375,80.875 7.5742,80.6076 7.09028,80.0391 6.86595,79.2441 6.84392,78.297 7.12012,76.5977 m 8.46968,4.4399 3.9597,0.0808 1.4425,-0.0979 1.2419,-0.4485 0.476,-0.4158 0.3422,-0.5758 0.1804,-0.7597 -0.0092,-0.9679 -0.2716,-1.3998 m 0.8124,0.0909 -17.45336,0.1598" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="2" inkstitch:force_lock_stitches="True" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 6"/>
</g>
<g inkscape:groupmode="layer" inkscape:label="GlyphLayer-h" style="display:none;fill:none;stroke:#00673e;stroke-width:0.945;stroke-opacity:1;stroke-miterlimit:4;" id="g157782">
<path d="M 14.8416,77.4986 15.083425,74.322699 14.8667,79.2234 14.841655,80.334613" inkstitch:running_stitch_length_mm="2" id="autosatinrun136" inkscape:label="Points droits pour auto-remplissage satin 1" sodipodi:nodetypes="cccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin179" d="M 14.1193,81.1857 11.2383,81.2101 9.87907,81.1394 8.375,80.875 7.49009,80.4363 6.98508,79.7043 6.78878,78.753 l 0.04118,-1.097 0.50998,-2.3353 0.60537,-2.0316 1.119,-4.3551 0.91912,-4.3938 0.64307,-4.4347 0.291,-4.4781 0.0818,-5.6244 M 15.7747,81.0508 20,81 l 0.8962,-0.1348 0.7189,-0.2666 0.5522,-0.3847 0.3962,-0.4891 0.2507,-0.5797 0.1159,-0.6567 -0.1303,-1.4892 -1.3396,-6.9605 -0.9268,-7.0372 -0.476,-7.0831 0.0108,-5.9142 M 9.58214,51.5788 20.9125,51.569" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 2" sodipodi:nodetypes="cccccccccccccccccccccccccccccc"/>
<path d="m 15.5444,48.5172 4e-4,-0.0681 0.0058,-1.5544 0.0058,-1.5545 0.0017,-0.4472 v 0 l 0.0041,-1.1073 0.0046,-1.5545 -0.0075,-0.9624 v 0 l -0.0045,-0.5921 -0.0121,-1.5545 0.0121,-1.4775 v 0 l 7e-4,-0.0768 0.0155,-1.5542 0.0155,-1.5543 0.0044,-0.4388 v 0 l 0.0112,-1.1154 0.0155,-1.5542 0.0096,-0.9544 v 0 l 0.006,-0.5999 -0.0113,-1.5531 -0.0332,-1.4708 v 0 L 15.5868,26.6914 15.5432,25.14 15.4857,23.5898 15.4775,23.1504 v 0 l -0.0208,-1.1128 0.0166,-1.5523 0.0218,-0.9586 v 0 l 0.0135,-0.5928 -0.005,-1.5223" inkstitch:running_stitch_length_mm="2" id="autosatinrun137" inkscape:label="Points droits pour auto-remplissage satin 3" sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin180" d="m 14.826,15.9322 -2.5138,0.0298 -0.8451,0.2217 -0.6002,0.4758 -0.3779,0.817 -0.1778,1.2455 0.1547,4.1251 0.2888,2.8157 L 11,29 11.1112,42.3133 10.9993,50.003 m 5.2359,-34.1296 1.1602,-0.0529 0.9466,0.0713 0.8316,0.3011 0.815,0.6364 0.3654,0.4687 0.223,0.5109 0.1315,1.1246 L 20.5,21.4306 20,39 l 0.0703,9.8203 -0.0021,1.1839 M 10.4659,22.8471 21.9203,22.544" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 4" sodipodi:nodetypes="ccccccccccccccccccccccccc"/>
<path id="autosatin181" d="M 20.0393,47.0305 20,39 l 1.5283,-1.6417 2.2943,-2.1987 2.6017,-2.1535 1.2729,-0.8716 1.1778,-0.6345 1.4996,-0.4589 1.5634,-0.1155 1.5766,0.1974 1.5394,0.4794 1.4516,0.7308 1.3132,0.9514 1.1244,1.1414 0.8849,1.3006 0.5873,1.3141 0.3818,1.3608 0.3062,2.8199 -0.1034,5.7411 0.2265,10.5301 0.3428,5.2517 0.6182,5.2342 0.9847,5.5024 0.3201,1.847 m -23.422,-26.5076 0.8429,-2.773 1.0162,-2.3602 0.6636,-1.0403 0.8156,-0.955 1.0036,-0.8758 1.228,-0.8025 0.9382,-0.399 0.8822,-0.1208 0.817,0.1312 0.7424,0.3569 0.6584,0.5564 0.5652,0.7296 0.4627,0.8765 0.3508,0.9971 0.3759,2.2703 -0.0461,2.1225 -0.2292,2.1311 -0.1733,2.2956 -0.3766,5.4871 -0.7115,5.4399 -1.7088,10.8406 -0.5332,1.9485 M 30.193996,27.201099 28.8679,41.5318 M 28.4875,63.1685 43.0161,63.012 m -22.9803,-16.1712 0.0666,1.9735 m 8.77281,-1.141418 13.743126,-0.01383" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 5" sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccc"/>
<path id="autosatin182" d="m 34.9391,81.2033 -3.2188,0.0624 -3.1891,-0.2969 -0.9772,-0.3733 -0.5158,-0.6727 -0.1516,-0.8983 0.1154,-1.0503 0.6425,-2.2614 0.0098,-0.0358 M 36.5036,81.1514 40.3183,81 41.5835,80.9693 42.8226,80.7891 43.3369,80.5664 43.73,80.2143 43.9638,79.7024 44,79 43.6491,76.2323 43.4923,75.3279 m 0.8112,0.0812 -17.4702,0.3816" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="2" inkstitch:force_lock_stitches="True" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 7" sodipodi:nodetypes="ccccccccccccccccccccc"/>
</g>
<g inkscape:groupmode="layer" inkscape:label="GlyphLayer-g" style="display:none;fill:none;stroke:#00673e;stroke-width:0.945;stroke-opacity:1;stroke-miterlimit:4;" id="g157778">
<path d="m 13.738,70.1681 -0.2768,-0.9288 -0.3025,-1.4865 -0.1199,-1.1505 v 0 L 13.0014,66.244 12.8731,64.7325 12.8234,63.2159 12.8153,62.9677 v 0 L 12.7741,61.6992 12.7248,60.1825 12.701,59.3266 v 0 l -0.0184,-0.6608 -0.0094,-1.517 -0.0039,-1.4648 v 0 l -2e-4,-0.0521 0.0252,-1.5403 0.0377,-1.519 0.0377,-0.5295 v 0 l 0.0701,-0.9858 0.1694,-1.5061 0.1855,-1.1238 v 0 l 0.0669,-0.405 0.2966,-1.523 0.3754,-1.5001 0.0369,-0.1293 v 0 l 0.3868,-1.3535 0.4549,-1.4673 0.2649,-0.6468 v 0 l 0.3193,-0.7796 0.6556,-1.3631 0.7155,-1.0709 v 0 l 0.1242,-0.186 1.0472,-1.1427 1.2156,-0.9636 0.2676,-0.1719 v 0 l 1.0241,-0.6578 1.4153,-0.6023 0.8499,-0.2561 v 0 l 0.633,-0.1908 1.4977,-0.3028" inkstitch:running_stitch_length_mm="2" id="autosatinrun133" inkscape:label="Points droits pour auto-remplissage satin 1" sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin176" d="m 26.2918,33.351 c -0.0219,-0.9117 -0.3016,-1.8023 -1.1356,-2.0697 -4.4688,-1.4332 -9.829,1.0245 -12.371,4.9765 -3.042,4.7293 -5.16321,10.1951 -5.57426,15.8438 -0.3731,5.1271 -0.27198,10.2889 -0.01563,15.4218 0.22646,4.5344 1.33667,9.9167 5.55669,12.3457 2.7318,1.5725 6.1246,1.542 9.123,1.0059 2.5914,-0.4634 4.8925,-2.6948 6.7159,-4.6865 L 28.3701,69.8583 M 26.288,34.34 c -0.1007,1.2353 -1.1078,2.2216 -2.1083,2.8006 -3.0431,1.7611 -5.1413,4.245 -5.5469,7.5156 -0.7276,5.8667 -0.315,11.9325 -0.0703,17.7149 0.1159,2.7376 0.5394,5.7589 2.7334,7.6817 2.0931,1.8344 6.3947,0.5539 7.0555,-2.0582 m -5.7175,-38.5253 2.159,8.8097 M 5.38929,55.5854 19.8375,55.5194 m 2.8286,13.9009 -10.259,11.4944" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 2"/>
<path d="m 33.7095,68.8704 2e-4,-0.0516 m 0.0355,-1.5602 0.0355,-1.5602 0.0119,-0.525 v 0 l 0.0236,-1.0352 0.0354,-1.5602 0.0251,-1.1017 v 0 l 0.0104,-0.4585 0.0324,-1.5602 0.0197,-1.5605 0.0014,-0.1183 v 0 l 0.0161,-1.4423 0.0186,-1.5495 0.0092,-0.7059 v 0 l 0.0106,-0.821 0.0199,-1.5268 0.0176,-1.3499 v 0 l 0.0023,-0.177 0.0016,-1.5271 -0.0021,-1.5272 -6e-4,-0.4668 v 0 l -0.0015,-1.0603 -0.002,-1.5272 -0.0015,-1.1105 v 0 l -6e-4,-0.4167 -0.002,-1.5271 -0.0021,-1.5272 -3e-4,-0.227 v 0 l -0.0017,-1.3002 -0.0018,-1.5271 0.0276,-0.8703 v 0 l 0.0208,-0.6553 0.0666,-1.5236" inkstitch:running_stitch_length_mm="2" id="autosatinrun134" inkscape:label="Points droits pour auto-remplissage satin 3" sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin177" d="M 34.0944,31.9626 31.9288,32 l -0.9501,0.0292 -0.9474,0.1424 -0.7317,0.4332 -0.2184,0.3812 -0.0845,0.5204 0.0033,16.4009 -0.2496,8.8822 -0.399,9.2051 0.0922,4.2543 0.083,2.2191 m 6.6625,-42.4656 2.6284,0.0206 0.8208,0.0742 0.3693,0.1466 0.2112,0.831 -0.0139,1.1364 -0.1621,2.5056 0.351982,19.517331 -0.1095,18.2187 M 27.5036,55.4899 40.7839,55.397" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 4" sodipodi:nodetypes="ccccccccccccccccccccccc"/>
<path d="m 33.7811,78.182 -0.0246,1.5602 -0.0107,0.2214 v 0 l -0.0646,1.335 -0.2299,1.5369 -0.2581,0.7651 v 0 l -0.2389,0.7081 -0.7719,1.3492 -0.9342,1.0379 v 0 l -0.104,0.1156 -1.3234,0.8065 -1.471,0.4705 -0.4361,0.1038 v 0 l -1.0703,0.2547 -1.5361,0.225 -1.043,0.0696 v 0 l -0.5123,0.0342 -1.5559,0.0881 -1.5587,0.0636 -0.0662,0.0014 v 0 l -1.4968,0.0311 -1.5629,0.0352 -0.6376,0.0069 v 0 l -0.9258,0.0101 -1.563,-0.033 -1.2076,-0.0554 v 0 L 12.8229,88.9074 11.2798,88.7008 9.92982,88.0062 9.77116,87.7903 v 0 L 9.02859,86.7796 8.21476,85.4738" inkstitch:running_stitch_length_mm="2" id="autosatinrun135" inkscape:label="Points droits pour auto-remplissage satin 5" sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin178" d="m 7.96309,84.4746 0.56699,-0.1302 0.64229,0.0464 1.39013,0.578 1.4253,0.6496 1.5463,0.3205 1.6266,0.0932 1.6659,-0.0321 2.9116,-0.1726 2.8966,-0.5134 1.351,-0.4787 1.2372,-0.677 1.0866,-0.913 0.8994,-1.1867 0.6719,-1.3411 0.4129,-1.3401 0.216,-1.467 0.0811,-1.7219 -0.0643,-1.7205 m -21.22263,10.617 -0.23529,0.6262 -0.15105,0.669 -0.04619,0.8054 0.25895,1.7171 0.66574,1.4244 0.50995,0.5642 0.64111,0.4452 0.78207,0.3108 0.93284,0.1613 5.29,0.2121 5.2973,-0.0207 6.4752,0.0224 3.2241,-0.2075 3.1841,-0.5961 1.1018,-0.4186 0.9644,-0.606 0.8246,-0.7653 0.6822,-0.8962 0.5373,-0.999 0.39,-1.0734 0.2401,-1.1196 0.0877,-1.1376 0.3244,-9.7503 m -13.6978,7.9786 12.4286,7.5383 M 5.49286,88.3045 11.7875,84.1185 m 15.9204,-9.2351 12.6757,-0.0495" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="2" inkstitch:force_lock_stitches="True" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 6" sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccc"/>
</g>
<g inkscape:groupmode="layer" inkscape:label="GlyphLayer-f" style="display:none;fill:none;stroke:#00673e;stroke-width:0.945;stroke-opacity:1;stroke-miterlimit:4;" id="g157774">
<path d="m 15.0693,73.5046 0.0354,-0.7981 0.0674,-1.518 0.0639,-1.4382 v 0 l 0.0035,-0.0797 0.0808,-1.53 0.0818,-1.5316 0.0219,-0.612 v 0 l 0.033,-0.9247 0.0178,-1.5437 0.0149,-1.2888 v 0 l 0.0029,-0.2549 0.0068,-1.5504 6e-4,-1.5534 2e-4,-0.3992 v 0 l 4e-4,-1.1543 -2e-4,-1.5557 0.0036,-1.048 v 0 l 0.0017,-0.4806 0.0067,-1.5505 -0.0013,-1.5506 -0.0013,-0.1763 v 0 L 15.5,49.5915 v -1.5509 -0.8327 0 -0.7182 -1.5509 -1.4889 0 -0.062 -1.5509 l 0.4499,-1.2838 0.6526,-0.4359 v 0 l 0.6066,-0.4052 1.2592,-0.841" inkstitch:running_stitch_length_mm="2" id="autosatinrun128" inkscape:label="Points droits pour auto-remplissage satin 1" sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path d="m 17.48,31.4231 -1.4903,-0.3009 -0.7275,-0.1415 v 0 l -0.7767,-0.151 -0.7683,-0.9979 -0.1411,-1.513 v 0 l -0.0013,-0.0144 -0.0686,-1.5131 0.0163,-1.5262 0.0298,-0.5139 v 0 l 0.0586,-1.0077 0.4734,-1.4421 0.7087,-0.7651 v 0 l 0.3029,-0.327 1.4583,-0.465 1.5225,-0.0574 0.0697,0.0083 v 0 l 1.4605,0.1735 1.5368,0.1872 0.5512,-0.0068 v 0 l 0.9686,-0.0121 1.4662,-0.3931" inkstitch:running_stitch_length_mm="2" id="autosatinrun129" inkscape:label="Points droits pour auto-remplissage satin 2" sodipodi:nodetypes="cccccccccccccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin171" d="M 25.0591,20.795 C 25.027,19.7813 25,19.0109 25,18 25,17.3333 24.8333,16.8333 24.5,16.5 24.1667,16.1667 23.3333,16 22,16 c -2,0 -4.0022,-0.0945 -6,0 -2.1951,0.1038 -4.675,1.0054 -5.5,3.5 C 10.169,20.5008 10,21.6667 10,23 v 2.5 2.5 4 l 8.4549,-0.0821 M 25.1046,21.5272 C 25.1466,22.8534 25.1386,23.6899 25,25 24.9558,25.4177 24.6,25.8973 24.2708,26.0277 23.2962,26.4139 22.1254,26.0001 21,25.5 20.3189,25.1973 19.6667,25 19,25 c -0.6667,0 -1.1667,0.1667 -1.5,0.5 -0.3333,0.3333 -0.6334,1.1734 -0.5,2.5 0.1251,1.2442 1.8453,2.5191 2.0569,3.51 m -8.3291,-14.6945 7.58,9.3934" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 3"/>
<path d="m 18.2723,34.9503 -1.5581,0.0094 -1.2184,0.0074 v 0 l -0.3398,0.002 -1.5189,0.0091 -1.3148,0.0079 v 0 l -0.2243,0.0013 -1.5391,0.0092 -1.41018,0.0031 v 0 L 9.01977,35 7.48425,34.9826 6.6967229,34.798028" inkstitch:running_stitch_length_mm="2" id="autosatinrun130" inkscape:label="Points droits pour auto-remplissage satin 4" sodipodi:nodetypes="ccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin172" d="M 5.97917,35.0757 6,36 6.13768,36.8749 6.51127,37.4999 7.12923,37.875 8,38 h 3 8.8381 M 6,34.474 V 33 L 6.12463,32.4242 6.49902,32.1271 8,32 h 2 l 8.9939,-0.1084 0.829,0.0035 m -4.7615,-1.0801 0.0871,8.1571" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 5"/>
<path d="m 19.8305,34.9475 1.5582,0.0033 0.4543,10e-4 v 0 l 1.1039,0.0023 1.5358,-0.064" inkstitch:running_stitch_length_mm="2" id="autosatinrun131" inkscape:label="Points droits pour auto-remplissage satin 6" sodipodi:nodetypes="cccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin173" d="M 25,34.5993 V 33 l -0.1259,-0.4518 -0.3769,-0.344 -0.627,-0.219 -0.8759,-0.0768 -3.1714,-0.0133 m 5.2074,3.3068 0.0095,0.8223 -0.1323,0.8668 -0.3885,0.6172 -0.6381,0.3691 L 23,38 h -3 -0.1619 m 0.1008,0.3052 -0.0167,-6.7149" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 7"/>
<path id="autosatin174" d="m 20,38 v 13 l 0.125,5.625 0.375,4.875 1,8 1,5.5 0.1616,0.7539 M 19.4549,38.06 11,38 V 51 L 10.875,56.625 10.5,61.5 9.875,65.75 9,69.5 7.5,75 7.34231,75.7359 m 2.40061,-20.2877 11.65588,0.045" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 8"/>
<path d="m 15.0693,73.5046 -0.032,0.7198 -0.0354,1.5205 -0.0018,1.5165 v 0 0.0161 l 4e-4,1.552 0.0055,1.5404" inkstitch:running_stitch_length_mm="2" id="autosatinrun132" inkscape:label="Points droits pour auto-remplissage satin 9" sodipodi:nodetypes="cccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin175" d="M 14.6579,81.0156 10,81 8.375,80.8733 7.5,80.5 7.125,79.625 7,78 7.125,76.75 7.34231,75.7359 M 15.4478,81.0199 20,81 21.625,80.8728 22.5,80.5 22.875,79.625 23,78 22.875,76.75 22.6616,75.7539 m 0.789,0.0987 -16.8973,-0.0198" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="2" inkstitch:force_lock_stitches="True" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 10"/>
</g>
<g inkscape:groupmode="layer" inkscape:label="GlyphLayer-e" style="display:none;fill:none;stroke:#00673e;stroke-width:0.945;stroke-opacity:1;stroke-miterlimit:4;" id="g157770">
<path d="m 15.2277,71.1202 -0.4229,-0.6536 -0.668,-1.3773 -0.4761,-1.3076 v 0 l -0.0482,-0.1323 -0.3982,-1.4822 -0.2581,-1.5141 -0.0729,-0.4838 v 0 l -0.1565,-1.0382 -0.1909,-1.5163 -0.1188,-1.1164 v 0 l -0.0456,-0.428 -0.1334,-1.5485 -0.0809,-1.5511 -0.0085,-0.1627 v 0 L 12.0763,55.4197 12.027,53.8661 12.0344,53.11 v 0 l 0.0077,-0.7986 0.0342,-1.5546 0.054,-1.3461 v 0 l 0.0084,-0.2089 0.0985,-1.5516 0.1885,-1.5312 0.0654,-0.3888 v 0 l 0.1873,-1.1122 0.3387,-1.4824 0.2997,-1.0088 v 0 l 0.1336,-0.4498 0.4976,-1.4358 0.6466,-1.4061 0.0869,-0.1395 v 0 l 0.7255,-1.1647 0.9631,-1.181 0.5761,-0.5617 v 0 l 0.5277,-0.5145 1.2473,-0.8582 1.3321,-0.5724 v 0 l 0.0754,-0.0324 1.4893,-0.2643 1.5108,0.0175 0.5879,0.0936 v 0 l 0.9197,0.1464 1.473,0.441 1.117,0.5194 v 0 l 0.2678,0.1245 1.2298,0.9071 1.1181,1.0426 0.2315,0.2607 v 0 l 0.7914,0.8911 0.9312,1.232 0.4654,0.845 v 0 l 0.2677,0.486 0.5438,1.4294 0.353,1.4908 0.0151,0.0832 v 0 l 0.2591,1.4239 0.1652,1.5237 0.0226,0.7205 v 0 l 0.0255,0.8116 -0.0654,1.5312 -0.2396,1.3349 v 0 l -0.0279,0.1557 -0.9109,1.2093 -1.3068,0.8219 -0.4467,0.1886 v 0 l -0.9783,0.4128 -1.4337,0.4895 -1.0718,0.3388 v 0 l -0.3792,0.1199 -1.4593,0.4382 -1.4781,0.3919 -0.242,0.0637 v 0 l -1.2369,0.3254 -1.4875,0.3617 -0.8457,0.2803 v 0 l -0.5875,0.1946 -1.0899,1.0893" inkstitch:running_stitch_length_mm="2" id="autosatinrun127" inkscape:label="Points droits pour auto-remplissage satin 1" sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin169" d="m 17.5728,59.1531 17.7478,-3.7995 1.4244,-0.3888 1.3524,-0.6196 1.085,-0.9265 0.3812,-0.602 0.2411,-0.7073 L 39.9893,49.334 39.8828,46.5464 39.5038,43.78 38.8711,41.0684 38.4066,39.6767 37.7661,38.3833 36.9722,37.1849 36.0477,36.0781 33.8983,34.126 31.5,32.5 l -1.1441,-0.616 -1.1952,-0.427 -2.4995,-0.4163 -2.5713,-0.0485 -2.5547,0.0605 -1.802,0.1963 -1.7498,0.4421 -1.6712,0.6722 -1.5661,0.8865 -1.4345,1.0851 -1.2764,1.2681 -1.0919,1.4353 -0.8808,1.5867 -0.97977,2.3946 -0.74013,2.4615 -0.53495,2.5143 -0.36425,2.553 -0.35431,5.1657 -0.08518,5.1511 0.16859,4.3771 0.45788,4.3873 0.42349,2.1514 0.59909,2.0984 0.80911,2.0271 1.05353,1.9373 0.9372,1.2256 1.1012,1.0349 1.2375,0.8554 1.3464,0.6871 1.4278,0.5301 1.4817,0.3843 3.0151,0.3763 5.0417,0.0771 5.0335,-0.2124 1.4008,-0.223 1.3788,-0.3954 1.3206,-0.5648 1.2264,-0.7314 1.0961,-0.8952 0.9299,-1.056 0.7276,-1.2139 0.4891,-1.369 0.3856,-1.7755 0.0725,-0.4583 M 17.5,58.5938 17.1406,54.9844 19.502,54.3106 22.1502,53.4094 24.7585,52.1746 25.9455,51.3989 27,50.5 27.526,49.7435 27.7868,48.8521 27.875,46.75 27.7595,45.0805 27.452,43.4332 26.9689,41.8247 26.3262,40.2715 25.5829,38.8408 24.6288,37.4682 23.4418,36.4293 22.7541,36.1212 22,36 l -0.8562,0.1213 -0.7234,0.3692 -0.6061,0.5673 -0.5044,0.7156 -0.7654,1.6775 L 18,41.125 l -0.7565,3.2656 -0.3369,3.2938 -0.0401,3.3572 0.1335,3.4556 0.5625,4.659 0.3108,1.9251 0.514,2.3964 0.4002,1.2329 0.5315,1.1805 0.6895,1.0711 0.8743,0.905 1.764,1.3833 1.9947,0.9883 2.1525,0.5818 2.2372,0.1638 1.627,0.026 1.625,-0.1127 1.5702,-0.3549 1.4624,-0.7007 0.9081,-0.8099 m -9.7958,-20.2369 14.1422,4.773 M 22.3623,28.466 22.1855,37.4816 M 5.22563,46.5994 18.1303,46.0691 M 28.6378,69.7434 28.2843,82.5597 M 4.64286,63.2857 19.3429,62.8749" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" sodipodi:nodetypes="cscccccccccccccsssssssccsccccccccccc" inkscape:label="Auto-remplissage satin 2"/>
<path id="autosatin170" d="m 38.3125,67.7969 -0.7514,0.1567 -0.7663,0.5694 -0.5709,0.5092 m 2.6199,-1.0791 0.8146,0.3678 0.4906,0.6044 0.2278,0.7845 0.0258,0.908 -0.2375,1.5019 m -4.9865,-4.4093 6.5407,4.0659" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="2" inkstitch:force_lock_stitches="True" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" sodipodi:nodetypes="cscccccccccccccsssssssccsccccccccccc" inkscape:label="Auto-remplissage satin 4"/>
</g>
<g inkscape:groupmode="layer" inkscape:label="GlyphLayer-d" style="display:none;fill:none;stroke:#00673e;stroke-width:0.945;stroke-opacity:1;stroke-miterlimit:4;" id="g157766">
<path d="m 14.6387,71.3787 -0.1074,-0.1839 -0.5491,-1.4108 -0.396,-1.4707 -0.0964,-0.4858 v 0 l -0.2,-1.0084 -0.2357,-1.5062 -0.1243,-1.1861 v 0 L 12.8951,63.7961 12.7362,62.2793 12.625,60.7599 12.6133,60.396 v 0 l -0.0373,-1.1595 -0.0236,-1.5249 0.0105,-1.0599 v 0 l 0.0046,-0.4649 0.0138,-1.531 0.0579,-1.5782 0.0134,-0.1694 v 0 l 0.1057,-1.338 0.132,-1.5749 0.0983,-0.8167 v 0 l 0.0903,-0.7506 0.2469,-1.5557 0.3178,-1.3779 v 0 l 0.0363,-0.1572 0.4306,-1.5094 0.5504,-1.4674 0.1847,-0.407 v 0 l 0.4592,-1.0117 0.789,-1.3366 0.5929,-0.9051 v 0 l 0.2528,-0.3859 1.0014,-1.1556 1.1594,-1.043 0.1667,-0.1017 v 0 l 1.172,-0.7141 1.4821,-0.438 0.8096,-0.1702 v 0 l 0.713,-0.1498 1.4939,-0.3548" inkstitch:running_stitch_length_mm="2" id="autosatinrun125" inkscape:label="Points droits pour auto-remplissage satin 1" sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin167" d="m 25.9779,32.8785 -0.1076,-0.5608 -0.268,-0.4367 -0.883,-0.5626 -1.1217,-0.2507 -1.0917,-0.0618 -1.3662,0.0662 -1.3399,0.2186 -1.3003,0.3658 -1.2472,0.5077 -1.1808,0.6442 -1.1008,0.7756 -1.0075,0.9015 -0.9007,1.0223 -1.5378,1.9117 -1.236,2.069 -0.97129,2.1971 -0.74339,2.2961 -0.55244,2.3657 -0.39843,2.4062 -0.48253,4.8167 -0.13062,5.1163 0.0819,5.1287 0.4837,5.0921 0.45168,2.5171 0.62311,2.4896 0.46125,1.286 0.61928,1.2237 0.76738,1.133 0.9056,1.0143 1.034,0.8675 1.1523,0.6923 1.2608,0.4892 1.3594,0.2578 6.7602,0.1346 6.7669,-0.0125 4.2028,0.0204 2.0956,-0.0508 2.0735,-0.2626 0.611,-0.2382 0.4697,-0.3611 0.584,-0.996 C 39.907586,78.274106 40.01641,77.448518 40,76.6839 M 25.9779,33.3867 26,36 l -0.1826,0.7341 -0.5026,0.5418 -0.7332,0.4127 -0.8745,0.3468 -1.8153,0.7491 -0.762,0.5288 -0.5458,0.716 -0.9194,2.1781 -0.6785,2.2446 -0.4706,2.2966 -0.2957,2.334 -0.199,4.7217 0.1042,4.6957 0.6498,5.2003 0.5603,2.5591 0.7899,2.4906 0.6217,0.9966 0.8899,0.7103 1.0678,0.4235 1.1555,0.1367 1.153,-0.1505 1.0602,-0.4379 0.8774,-0.7257 0.6042,-1.0136 0.5391,-1.7486 0.3805,-1.7803 0.0911,-0.8322 m -4.7889,5.5035 V 82.2061 M 6.4524257,47.305851 19.8312,47.50635 M 22.3623,29.2615 22.539,39.6913 M 5.2607143,63.099075 19.591071,63.09174" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 2" sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc"/>
<path d="m 34.3425,69.9291 0.0567,-1.5753 -0.0021,-0.1277 v 0 l -0.023,-1.4467 -0.0654,-1.5757 -0.0299,-0.7206 v 0 l -0.0355,-0.8552 -0.0654,-1.5757 -0.0351,-1.3117 v 0 L 34.1357,60.4751 34.0984,58.8977 34.061,57.3203 34.0518,56.9964 v 0 l -0.0355,-1.2536 -0.0155,-1.5783 -0.0053,-0.9127 v 0 L 33.9916,52.586 33.9823,51.0075 33.9735,49.5067 v 0 L 33.973,49.429 33.9642,47.9088 33.97,46.35 33.975,45.7616 v 0 l 0.0083,-0.9703 0.0132,-1.5586 0.0104,-1.2162 v 0 l 0.0029,-0.3425 0.0105,-1.5587 0.0082,-1.5587 0.0015,-0.2852 v 0 l 0.0067,-1.2734 0.038,-1.5574 0.0279,-0.9135 v 0 l 0.0197,-0.6435 0.0477,-1.557 0.0472,-1.5429 v 0 l 4e-4,-0.0141 0.0477,-1.557 0.0396,-1.5564 -0.0081,-0.6164 v 0 l -0.0123,-0.937 -0.1133,-1.539 -0.1675,-1.2538 v 0 L 33.9674,23.0387 33.7068,21.5312 33.3817,20.0499 33.3095,19.631 v 0 L 33.1208,18.5356 32.8629,17.006" inkstitch:running_stitch_length_mm="2" id="autosatinrun126" inkscape:label="Points droits pour auto-remplissage satin 3" sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin168" d="m 33.0881,16 -2.9631,-0.017 -3.1875,-0.2955 -0.5425,0.007 -0.3093,0.2156 -0.1236,0.3755 0.0144,0.4867 0.4873,2.083 0.9528,1.998 0.7778,2.0725 0.529,2.1438 0.2063,2.2116 0.078,13.464 L 29,54.2107 l -0.1284,7.3226 -0.3062,2.795 m 4.8431,-48.3393 2.5782,-0.0184 2.4821,0.0919 0.6326,0.4678 0.4385,0.5851 0.2785,0.6765 0.1523,0.7422 0.0626,1.5773 -0.0333,1.5288 -0.1032,3.8306 -0.2724,3.8257 -0.5287,7.6547 -0.1763,10.4233 0.0971,10.4233 0.3757,8.213 0.6,8.2001 L 40,76.6839 M 26.9508,22.081 40.8872,22.2229 m -12.7096,33.4723 12.0687,0.019" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="2" inkstitch:force_lock_stitches="True" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 4" sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccc"/>
</g>
<g inkscape:groupmode="layer" inkscape:label="GlyphLayer-c" style="display:none;fill:none;stroke:#00673e;stroke-width:0.945;stroke-opacity:1;stroke-miterlimit:4;" id="g157762">
<path d="M 16.5176,72.8896 15.5634,71.7295 14.8073,70.3928 14.5397,69.792 v 0 l -0.3596,-0.8075 -0.4869,-1.4649 -0.3203,-1.2267 v 0 l -0.0701,-0.2685 -0.2654,-1.5226 -0.209,-1.5321 -0.0303,-0.3247 v 0 l -0.1132,-1.2146 -0.0991,-1.5432 -0.0266,-0.9288 v 0 L 12.5416,58.3418 12.534,56.7953 12.5276,55.2655 v -0.0023 0 l 0.0285,-1.5092 0.0386,-1.5117 0.0343,-0.673 v 0 l 0.0446,-0.8763 0.1261,-1.5451 0.103,-1.2636 v 0 l 0.023,-0.2815 0.2062,-1.5304 0.2618,-1.5159 0.0722,-0.3225 v 0 l 0.2616,-1.1678 0.4321,-1.4481 0.3945,-0.9053 v 0 l 0.2245,-0.5152 0.723,-1.3396 0.9004,-1.2399 0.0541,-0.0575 v 0 l 0.9991,-1.0631 1.1779,-0.9885 0.6057,-0.3486 v 0 l 0.7097,-0.4085 1.4318,-0.54 1.337,-0.1585 v 0 l 0.1693,-0.0201 1.5267,0.0434 1.5201,0.23 0.4421,0.128 v 0 l 1.0181,0.2947 1.362,0.7162 0.8354,0.7106 v 0 l 0.3151,0.268 0.9679,1.1928 0.6331,1.4064 0.0494,0.1973 v 0 l 0.3171,1.2675 0.1119,1.5253 -0.0431,0.8585 v 0 l -0.0336,0.6673 0.2321,1.4908" inkstitch:running_stitch_length_mm="2" id="autosatinrun124" inkscape:label="Points droits pour auto-remplissage satin 1" sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin165" d="M 33.0082,46.3232 34.6075,45.7224 35.3088,45.3335 36,44.75 l 1.0655,-1.3331 0.6566,-1.5203 0.2716,-1.6324 -0.0893,-1.6691 -0.426,-1.6309 -0.7388,-1.5174 -1.0275,-1.3287 -1.2922,-1.0649 -1.2229,-0.7552 -1.2921,-0.547 -1.3468,-0.3717 -1.3872,-0.229 -2.8386,-0.1611 -2.8284,0.0167 -2.3223,0.1705 -2.2426,0.5508 -2.1271,0.895 -1.9758,1.2035 -1.7887,1.4762 -1.5657,1.713 -1.3071,1.9139 -1.01249,2.079 -0.73734,2.3067 -0.54747,2.3468 -0.63753,4.7802 -0.21469,4.8394 -0.01629,4.8309 0.21139,4.0655 0.50802,4.0649 0.43411,1.9911 0.59091,1.9416 0.77526,1.8757 0.98712,1.7932 0.8647,1.1579 1.005,1.0182 1.1257,0.8745 1.2266,0.7273 1.3078,0.5763 1.3691,0.4217 1.4107,0.2633 1.4326,0.1014 6.0959,0.017 3.0233,-0.2463 1.4872,-0.2904 1.4639,-0.4413 1.1557,-0.4884 1.0489,-0.6615 0.9305,-0.8126 0.8002,-0.9417 0.6583,-1.0487 0.3164,-0.7111 M 32.2569,46.6105 30.817,46.9762 29.3571,47.0685 27.9235,46.8338 26.5625,46.2188 26.0968,45.3607 25.978,44.3912 26,42.3796 26.002,40.9071 25.777,39.4448 25.1635,38.1675 24.6606,37.6529 24,37.25 l -0.7473,-0.2149 -0.7473,-0.0177 -0.7276,0.1564 -0.6882,0.3072 -1.1793,0.9745 -0.7853,1.3004 -0.5133,1.137 -0.3349,1.1746 -0.2788,2.4288 0.002,4.9408 -0.0035,4.4551 0.0952,4.4724 0.1956,2.2145 0.3536,2.1849 0.5561,2.144 L 20,67 l 0.6954,1.1368 0.8919,0.9255 1.0509,0.7283 1.1726,0.5453 1.2568,0.3763 1.3035,0.2215 2.5977,0.0351 1.7625,-0.1939 1.2849,-0.5672 M 7.2764801,43.844375 18.979706,44.01727 M 22.7158,29.3499 22.6274,38.6307 m 2.2097,5.8336 14.5841,-4.1542 M 26.3397,69.7434 26.2513,82.8249 M 6.3052459,63.070133 19.457432,63.065811" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 2" sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc"/>
<path id="autosatin166" d="M 36.0884,67 35.2578,67.0778 34.5,67.5 l -0.9396,1.4771 -1.2774,1.1128 -0.2668,0.1178 m 4.702,-3.0641 0.753,0.2821 0.4711,0.4803 0.2443,0.6348 0.0722,0.7456 -0.1516,1.6485 -0.1804,1.5666 -0.1617,1.2381 -0.3389,1.197 -0.1881,0.4228 m -4.7112,-7.1186 6.9827,2.2981" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="2" inkstitch:force_lock_stitches="True" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 4"/>
</g>
<g inkscape:groupmode="layer" inkscape:label="GlyphLayer-b" style="display:none;fill:none;stroke:#00673e;stroke-width:0.945;stroke-opacity:1;stroke-miterlimit:4;" id="g157758">
<path d="m 14.0485,71.9228 -0.1626,-0.431 -0.1341,-1.5259 -0.0609,-1.5329 -0.008,-0.2057 v 0 L 13.6308,66.9 13.5706,65.367 13.5574,64.4972 v 0 l -0.01,-0.666 -0.0175,-1.5362 -0.0066,-1.5301 v 0 -0.006 l 4e-4,-1.5362 0.0239,-1.5362 0.0125,-0.6537 v 0 l 0.017,-0.8823 0.0309,-1.536 0.0282,-1.3134 v 0 l 0.0048,-0.2226 0.0246,-1.536 -0.0025,-1.5365 -7e-4,-0.437 v 0 l -0.0018,-1.0995 -0.0188,-1.5336 -0.013,-1.0992 v 0 L 13.6235,45.3876 13.6053,43.8392 13.587,42.2908 13.5848,42.1046 v 0 L 13.5687,40.7425 13.5559,39.194 13.5506,38.3723 v 0 L 13.5459,37.6455 13.536,36.097 13.5266,34.64 v 0 l -6e-4,-0.0916 -0.01,-1.5485 -0.01,-1.5485 -0.0021,-0.5438 v 0 L 13.5,29.9029 v -1.5486 -1.1791 0 -0.3695 -1.5486 -1.5486 -0.2657 0 -1.2829 -1.5485 -0.9011 0 -0.6475 l 5e-4,-1.5442" inkstitch:running_stitch_length_mm="2" id="autosatinrun122" inkscape:label="Points droits pour auto-remplissage satin 1" sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin163" d="M 13.9654,15.9779 17,16 17.875,16.125 18.5,16.5 18.875,17.375 19,19 v 3 5 6 7 6 5 5 L 19.125,59.75 19.5,63 20,65.625 20.5,67.5 21.125,68.875 22,70 23,70.75 24,71 25.75,70.75 26.4375,70.4375 27,70 27.875,68.75 28.5,67 28.7707,65.6464 M 13.0373,15.9779 10,16 9.125,16.125 8.5,16.5 8.125,17.375 8,19 v 4 7.5 l 0.125,9.6875 0.19581,8.2871 0.01156,4.6447 L 8.1875,57.5625 8.05592,62.0783 8,66.5 V 74 78 L 8.125,79.625 8.5,80.5 9.375,80.875 11,81 h 18 l 1.4531,-0.0781 1.3594,-0.2344 1.2656,-0.3906 L 34.25,79.75 35.3281,79.0469 36.3125,78.1875 37.2031,77.1719 38,76 38.0582,75.8887 M 6.8059,47.9115 19.9758,47.9998 m 4.331,21.5668 -0.0884,12.5511" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 2" sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc"/>
<path d="m 33.9789,69.2873 0.407,-1.4607 0.0578,-0.2416 v 0 l 0.2957,-1.2365 0.2477,-1.498 0.1137,-0.9359 v 0 l 0.0697,-0.5733 0.131,-1.5135 0.0906,-1.5168 0.0043,-0.1161 v 0 l 0.0524,-1.4029 0.0118,-1.5202 -0.0077,-0.8083 v 0 l -0.0067,-0.7114 -0.0319,-1.5419 -0.0832,-1.4764 v 0 l -0.0052,-0.0924 -0.1511,-1.5626 -0.1842,-1.5573 -0.091,-0.4935 v 0 l -0.1935,-1.0486 -0.3513,-1.5227 -0.279,-1.0676 v 0 L 33.9593,44.9432 33.5223,43.44 32.9869,41.9745 32.9332,41.8388 v 0 l -0.5235,-1.3204 -0.6855,-1.4006 -0.3979,-0.6389 v 0 L 30.8998,37.7941 29.9167,36.5948 28.903,35.666 v 0 L 28.7796,35.5529 27.4705,34.7172 26.0469,34.1036 25.6049,33.97 v 0 l -1.0247,-0.3096 -1.4533,-0.4268 -1.0385,-0.4877" inkstitch:running_stitch_length_mm="2" id="autosatinrun123" inkscape:label="Points droits pour auto-remplissage satin 3" sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin164" d="m 22,33 -0.2709,1.3506 0.0901,1.0566 0.2521,0.4464 0.4284,0.4067 L 24,37 l 1.3883,0.7678 1.2207,1.1508 1.0413,1.5665 L 28.5,42.5 29.1562,44.9062 29.625,47.625 29.9062,50.6562 30,54 29.875,58.5 29.5,62 28.7707,65.6464 m -6.5939,-33.1546 0.4302,-0.8695 0.6439,-0.5649 0.8347,-0.3146 1.0028,-0.1185 1.8723,0.1103 1.6882,0.4103 1.5108,0.6189 1.3403,0.7362 1.2162,0.8791 1.1566,1.1246 1.0951,1.3727 L 36,37.5 37.875,41.375 39.5,46 40.1562,48.625 40.625,51.5 40.9062,54.625 41,58 v 2 l -0.1875,5.125 -0.5625,4.375 -0.9375,3.625 -0.6094,1.5313 -0.6449,1.2324 M 28.2843,55.5129 41.9845,55.4245 M 24.0416,38.4539 28.0191,29.0847 m 0.3055,35.9511 10.2457,11.2769" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="2" inkstitch:force_lock_stitches="True" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 4"/>
</g>
<g inkscape:groupmode="layer" inkscape:label="GlyphLayer-a" style="display:none;fill:none;stroke:#00673e;stroke-width:0.945;stroke-opacity:1;stroke-miterlimit:4;" id="g157754">
<path d="m 13.7639,71.9996 -0.3443,-0.656 -0.4657,-1.5199 -0.2276,-1.3178 v 0 L 12.6968,68.3352 12.5684,66.8267 12.52,65.3126 12.5372,64.8471 v 0 l 0.0385,-1.0474 0.0973,-1.5122 0.203,-1.0856 v 0 l 0.075,-0.4014 0.352,-1.4695 0.4945,-1.5141 0.0617,-0.1429 v 0 l 0.5693,-1.3179 0.719,-1.4086 0.3404,-0.5546 v 0 l 0.4877,-0.7947 0.8418,-1.2881 0.7139,-0.9604 v 0 l 0.1982,-0.2666 0.9838,-1.1717 1.0728,-1.0993 0.1956,-0.1856 v 0 l 0.9177,-0.8708 1.1872,-0.9748 0.6985,-0.513 v 0 l 0.5409,-0.3972 1.2974,-0.8235 1.2396,-0.7714 v 0 l 0.0652,-0.0406 0.7334,-1.2755 0.3838,-1.4753" inkstitch:running_stitch_length_mm="2" id="autosatinrun120" inkscape:label="Points droits pour auto-remplissage satin 1" sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin161" d="M 27.1875,40.9062 23,43 20.5644,44.3897 18.4462,45.9019 16.6048,47.4632 15,49 12.375,51.875 10.5,54.5 9.125,57.125 8,60 7.25,63.25 7,67 7.125,70.625 7.5,73.5 8.25,75.875 9.5,78 11,79.625 11.75,80.1563 12.5,80.5 14.375,80.875 17,81 H 38 L 38.5663,80.869 38.307768,70.404819 M 27.1875,40.9062 l 1.2505,2.0954 0.5577,1.1103 0.3137,1.0649 -3.0297,2.0366 -1.4501,1.0955 L 23.5,49.5 21.375,51.875 20,54 19.125,56.125 18.5,58.5 18.125,60.875 18,63 18.0938,64.875 18.375,66.5 18.8438,67.875 19.5,69 20.2813,69.875 21.125,70.5 22.0313,70.875 23,71 23.9687,70.9062 24.875,70.625 25.7187,70.1562 26.5,69.5 27.2684,68.501 m -4.2874,1.2424 0.0884,12.8163 m -11.9325,-32.5269 9.2808,5.922 m 6.2073,12.0234 12.567875,13.539821" sodipodi:nodetypes="cscssssscssssssssscccsssssssssscccsssssssssccccccccccccc" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 2"/>
<path d="m 33.5063,71.484 0.0459,-1.6027 -0.0018,-0.0433 v 0 L 33.483,68.2769 33.3915,66.758 33.3946,66.1743 v 0 l 0.005,-0.9446 0.0344,-1.5314 0.0454,-1.1905 v 0 l 0.0145,-0.3796 0.0778,-1.5493 0.0784,-1.5493 0.0073,-0.1853 v 0 l 0.0539,-1.3652 0.033,-1.5525 0.0159,-0.7486 v 0 l 0.0171,-0.804 0.0329,-1.5525 0.019,-1.3107 v 0 l 0.0035,-0.242 -0.0226,-1.5529 -0.0632,-1.5516 -0.0222,-0.3191 v 0 l -0.0831,-1.1944 -0.1629,-1.5566 -0.1616,-0.8909 v 0 L 33.1996,43.556 32.7301,42.0656 32.1288,40.7491 v 0 l -0.0482,-0.1056 -0.7786,-1.358 -0.8948,-1.2808 -0.2656,-0.3305 v 0 L 29.439,36.8001 28.3383,35.7476 27.4864,35.1803 v 0 L 27.0293,34.876 25.6031,34.3313 24.0617,34.119 24.0257,34.1168 v 0 L 22.499,34.022 20.9652,34.0121 20.3619,34.0482 v 0 l -0.933,0.0557 -1.5092,0.2873 -1.1269,0.4031 v 0 l -0.3173,0.1135 -1.3191,0.7816 -1.126,1.0419 -0.1447,0.2202 v 0 l -0.6942,1.0568 -0.4835,1.4277 -0.0354,0.8954 v 0 l -0.0245,0.6196 0.1381,1.5088" inkstitch:running_stitch_length_mm="2" id="autosatinrun121" inkscape:label="Points droits pour auto-remplissage satin 3" sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin162" d="M 13,44 13.875,43.875 14.5,43.5 15,43 16.125,40.375 16.7813,39.3438 17.5,38.5 18.3438,37.8438 19.375,37.375 20.5938,37.0938 22,37 23.9522,37.1617 24.8056,37.4632 25.5,38 l 0.8835,1.2803 0.804,1.6259 1.3233,2.2582 0.5044,0.9634 0.2942,1.049 0.3044,3.2276 0.0578,3.2524 -0.2739,6.4316 L 29,62 28.8165,63.9966 28.5,66 27.75,67.875 27.2684,68.501 M 12.5156,43.9844 12.0601,43.8931 11.6328,43.6172 10.5,42.5 9.84375,41.7187 9.375,40.875 9.09375,39.9687 9,39 9.1875,37.5313 9.75,36.125 10.6875,34.7813 12,33.5 13.625,32.4062 15.5,31.625 17.625,31.1562 20,31 h 3 l 3.625,0.25 1.5312,0.3125 L 29.5,32 30.7188,32.5938 31.875,33.375 32.9688,34.3437 34,35.5 34.9375,36.8125 35.75,38.25 36.4375,39.8125 37,41.5 37.4375,43.3437 37.75,45.375 38,50 v 16 l 0.125,2.875 0.162868,1.703471 M 7.86656,40.4868 h 9.45754 m 5.1265,-10.9601 0.0884,8.2201 m 5.1893,25.4407 H 39.2188 M 28.4375,47.875 39.375,47.75" sodipodi:nodetypes="cscssssscssssssssscccsssssssssscccssssssssscccccccccccccccccccccccccc" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="2" inkstitch:force_lock_stitches="True" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 4"/>
</g>
<g inkscape:groupmode="layer" inkscape:label="GlyphLayer-Z" style="display:none;fill:none;stroke:#00673e;stroke-width:0.945;stroke-opacity:1;stroke-miterlimit:4;" id="g157726">
<path d="m 9.32629,76.3287 0.62214,-1.0349 0.83337,-1.3026 0.5152,-0.7655 v 0 l 0.331,-0.4918 0.9051,-1.2428 0.9052,-1.2427 0.0052,-0.0073 v 0 l 0.9012,-1.2351 0.9416,-1.1831 0.3958,-0.4974 v 0 l 0.5458,-0.6857 0.3591,-1.3771 0.1283,-1.3711 v 0 l 0.0146,-0.1554 0.4289,-1.4479 0.5752,-1.4142 0.196,-0.4423 v 0 l 0.4239,-0.9562 0.6489,-1.3841 0.5084,-0.9778 v 0 l 0.1975,-0.3798 0.709,-1.3562 0.7321,-1.3434 0.0931,-0.1636 v 0 l 0.6638,-1.1664 0.7568,-1.33 0.4058,-0.6945 v 0 l 0.3661,-0.6264 0.7824,-1.3144 0.7277,-1.2211 v 0 l 0.0554,-0.093 0.797,-1.305 0.797,-1.3049 0.2663,-0.4352 v 0 l 0.5337,-0.8724 0.794,-1.2969 0.5917,-0.9665 v 0 l 0.2023,-0.3304 0.794,-1.2969 0.794,-1.2969 0.1295,-0.2115 v 0 l 0.6645,-1.0854 0.794,-1.2969 0.4612,-0.7534 v 0 l 0.3328,-0.5435 0.794,-1.2969 0.7844,-1.3004 v 0 l 0.0011,-0.0019 0.7678,-1.3136 0.7227,-1.338 0.2721,-0.5707 v 0 l 0.3805,-0.798 0.4985,-1.4305 0.9288,-0.8774 v 0 l 0.1985,-0.1876 1.1274,-1.0651 1.1273,-1.065 0.2194,-0.2072 v 0 l 0.908,-0.8579 1.1116,-1.0735 0.6106,-0.6366 v 0 l 0.4446,-0.4636 0.924,-1.2202" inkstitch:running_stitch_length_mm="2" id="autosatinrun117" inkscape:label="Points droits pour auto-remplissage satin 1" sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path d="m 43.12,17.5228 -1.2615,0.245 v 0 l -0.2669,0.0519 -1.4853,0.3563 -1.4853,0.3563 -0.1731,0.0416 v 0 l -1.3121,0.3147 -1.4853,0.3564 -0.6107,0.1465 v 0 l -0.8746,0.2098 -1.4852,0.3563 -1.0626,-0.1813 v 0 l -0.426,-0.0727 -1.5046,-0.1403 -1.5178,-0.0474 -0.0429,-2e-4 v 0 l -1.4767,-0.0063 -1.5373,0.0277 -0.4903,0.0148 v 0 l -1.0411,0.0314 -1.529,0.0686 -0.9278,0.0949 v 0 l -0.5931,0.0606 -1.4946,0.3341 -1.2626,0.5498 v 0 l -0.1386,0.0603 -1.2337,0.8933 -1.0686,1.0864 -0.1815,0.2472 v 0 l -0.713,0.9711 -0.5398,1.4906 -0.057,0.7124 v 0 l -0.069,0.8619 0.2563,1.5311 0.5677,0.9278 v 0 l 0.2474,0.4043 1.1192,1.0141" inkstitch:running_stitch_length_mm="2" id="autosatinrun118" inkscape:label="Points droits pour auto-remplissage satin 2" sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin157" d="M 17.5,31.5 C 17.8333,31.1667 18,30.3333 18,29 c 0,-2 0.8333,-3.5 2.5,-4.5 1.6667,-1 3.8333,-1.5 6.5,-1.5 3.3333,0 4.5729,0.3021 5.5,1 L 44.9375,17.8125 M 17.0691,31.7873 C 16.6584,32.0322 16.3333,32 15,32 13.6667,32 12.3333,31.5 11,30.5 9.66667,29.5 9,27.6667 9,25 c 0,-1.3333 0.33333,-2.5 1,-3.5 0.6667,-1 1.5,-2 2.5,-3 1,-1 2.1667,-1.6667 3.5,-2 1.3333,-0.3333 2.6667,-0.5 4,-0.5 h 22 c 1.7277,0 2.9657,0.2799 3.714,0.8396 M 11.625,32.625 19.125,29 m 7,-14.625 L 26,24.5" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 3"/>
<path id="autosatin158" d="m 45.714,16.8396 c 0.4066,0.3041 0.6686,0.6909 0.786,1.1604 0.3333,1.3333 -0.3274,2.9017 -1.5,5 L 26,57 c -1.3331,2.3855 -2.6535,5.0409 -3.5,7.5 -0.5837,1.6956 -0.6472,3.3305 0.5,4.5 L 8.34375,79.2188 M 44.9375,17.8125 32.5,24 c 0.3333,0.6667 -0.3437,2.7656 -2.5,6 L 20,45 C 15.0637,52.4044 5.00275,70.6544 7,80 m 12,-39.375 14.375,7" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 4"/>
<path id="autosatin159" d="M 8.34375,79.2188 23,69 23.625,69.4375 24.5,69.75 27,70 29.375,69.875 31.5,69.5 33.375,68.875 35,68 36.3125,66.8125 36.912,65.8133 M 7,80 7.625,80.4375 8.5,80.75 11,81 H 40 L 41.8125,80.9375 43.25,80.75 44.3125,80.4375 45,80 45.4375,79.3125 45.75,78.25 45.9375,76.8125 45.997,75.0859 M 29.25,68.75 29.125,83.25" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 5"/>
<path d="m 41.4545,70.4496 0.2114,-1.5319 0.1324,-1.5658 0.0114,-0.1554 v 0 l 0.1036,-1.4136 0.0384,-1.583 0.0161,-0.664 v 0 l 0.0223,-0.9191 0.0024,-1.584 -0.0826,-1.1588 v 0 L 41.8801,59.4562 41.6058,57.9114 41.17,56.4631 41.1083,56.3103 v 0 l -0.5157,-1.2794 -0.6692,-1.389" inkstitch:running_stitch_length_mm="2" id="autosatinrun119" inkscape:label="Points droits pour auto-remplissage satin 6" sodipodi:nodetypes="cccccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin160" d="M 39,53.2812 38.5706,53.5753 38.2572,53.9966 38,55 v 6 L 37.8125,63.3125 37.25,65.25 36.912,65.8133 m 2.8835,-12.8635 0.7146,-0.1795 0.6609,0.0723 0.6071,0.2693 0.553,0.4117 0.9435,1.0318 L 44,55.5 44.875,56.8438 45.5,58.375 45.875,60.0937 46,62 v 13 l -0.003,0.0859 M 36.125,59.125 47.375,59" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="2" inkstitch:force_lock_stitches="True" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 7"/>
</g>
<g inkscape:groupmode="layer" inkscape:label="GlyphLayer-Y" style="display:none;fill:none;stroke:#00673e;stroke-width:0.945;stroke-opacity:1;stroke-miterlimit:4;" id="g157722">
<path d="m 22.6457,73.93 0.032,0.7874 0.1342,1.521 0.2524,1.4316 v 0 l 0.0137,0.0774 0.4347,1.4583 0.7144,1.3493" inkstitch:running_stitch_length_mm="2" id="autosatinrun114" inkscape:label="Points droits pour auto-remplissage satin 1" sodipodi:nodetypes="cccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin153" d="m 24.3591,81.0233 -6.7341,-0.0858 -1.1341,-0.1342 -0.8774,-0.4308 -0.6496,-0.6704 -0.4506,-0.853 -0.2804,-0.9787 -0.139,-1.0474 0.0311,-2.073 0.3429,-2.8015 m 10.4693,9.1061 4.3004,0.2153 1.8406,0.0131 0.6233,-0.0935 0.3416,-0.1895 0.1446,-0.3976 0.0371,-0.5986 -0.164,-1.5925 -0.6858,-3.3097 -0.58655,-3.3317 m 1.0614,0.2194 -18.20605,0.0851" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 2" sodipodi:nodetypes="cccccccccccccccccccccc"/>
<path d="m 22.6214,70.1633 v -1e-4 l 0.0613,-1.5169 0.132,-1.5117 0.0818,-0.7283 v 0 l 0.0878,-0.7812 0.2106,-1.5008 0.2647,-1.4429 v 0 l 0.0096,-0.0525 0.2898,-1.49 0.354,-1.4799 0.1629,-0.6558 v 0 l 0.2044,-0.823 0.3881,-1.4756 0.3897,-1.3392 v 0 l 0.0378,-0.13 0.4276,-1.4693 0.4978,-1.45 0.1888,-0.5377 v 0 l 0.3191,-0.909 0.5382,-1.4365 0.472,-1.1803 v 0 l 0.0981,-0.2454 0.6192,-1.4034 0.6279,-1.4 0.1785,-0.3978 v 0 l 0.4495,-1.0022 0.6104,-1.4062 0.4468,-1.0458 v 0 l 0.1549,-0.3627 0.5993,-1.4093 0.5778,-1.4162 0.1125,-0.2923 v 0 l 0.4378,-1.1374 0.5401,-1.4341 0.3367,-0.9601 v 0 L 33.7,33.8519 34.1889,32.3974 34.695,30.9488 34.7483,30.774 v 0 l 0.3934,-1.2889 0.4122,-1.4794 0.1874,-0.8652 v 0 l 0.1341,-0.6194 0.2787,-1.5343 0.1611,-1.5511 9e-4,-0.0159 v 0 l 0.0841,-1.5424 0.0078,-1.5246 0.0679,-0.696 v 0 l 0.0797,-0.8161 0.23,-1.4949" inkstitch:running_stitch_length_mm="2" id="autosatinrun115" inkscape:label="Points droits pour auto-remplissage satin 3" sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin154" d="m 37.4054,15.9428 2.2267,-0.0617 0.9341,0.0918 0.59,0.3084 0.5376,0.8366 0.3596,0.9263 0.1996,1.0015 0.0577,1.0627 -0.2378,2.2518 -0.5883,2.3253 -1.6498,4.4158 -1.3165,3.3437 -2.1776,7.1066 -1.2062,3.5113 -1.3806,3.4391 -1.3218,3.411 -1.0157,3.5028 -0.6144,3.0639 M 36.9366,15.9819 35.0363,15.9231 33.1523,16 l -0.6161,0.2157 -0.55,0.4058 -0.8731,1.1524 -0.4653,1.2417 -0.1014,1.255 0.3286,2.6044 0.1863,2.6496 -0.1975,2.6173 -0.5208,2.582 -0.7838,2.5437 -0.9866,2.5025 -1.129,2.4582 L 25,43 l -2.5545,5.1602 -2.241,5.4421 -1.2697,3.3273 M 29.75,28.75 h 11.5" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 4"/>
<path d="m 20.3739,50.8963 -0.0893,-1.5004 v 0 l -0.0028,-0.0462 -0.0712,-1.537 -0.0305,-1.5317 -0.0062,-0.3882 v 0 l -0.0182,-1.1472 -0.5092,-1.4121 -0.4528,-0.7273 v 0 l -0.3576,-0.5741 -0.7807,-1.3183 -0.6187,-1.1396 v 0 L 17.3235,39.3656 16.5916,38.0174 15.9479,36.626 15.8677,36.4421 v 0 l -0.5328,-1.2226 -0.5857,-1.4163 -0.2093,-0.6037 v 0 L 14.2474,32.356 13.7546,30.905 13.4741,29.8621 v 0 L 13.36,29.4377 12.9852,27.9516 12.7222,26.4593 12.7194,26.4417 v 0 l -0.2406,-1.5184 -0.1947,-1.5314 -0.0486,-0.4213 v 0 l -0.1287,-1.1157 -0.1017,-1.5142 0.0184,-0.8643 v 0 l 0.0143,-0.6745 0.0163,-1.5552" inkstitch:running_stitch_length_mm="2" id="autosatinrun116" inkscape:label="Points droits pour auto-remplissage satin 5" sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin155" d="M 11.9112,15.958 C 10.2843,15.9534 9.08678,15.7179 7.5,16.0625 c -3.10847,0.6751 -2.87489,4.8276 -1.9375,7.2187 1.47105,3.7525 2.81624,7.5391 4.39258,11.2637 1.26342,2.9852 2.44452,5.7269 4.02312,8.4116 2.2275,3.788 3.8323,6.9956 6.2263,10.6458 M 12.3752,15.9912 C 14.2503,15.9966 16.1279,15.9265 18,16 c 1.533,0.0602 1.1257,2.0918 0.9701,3.1494 -0.4955,3.3676 -1.2955,6.7299 -0.5873,10.1299 C 19.4324,34.3177 22.004,38.8858 25,43 c -1.5852,2.9283 -2.9665,6.0095 -4.2188,9.1875 M 7.625,32.1875 19.25,28.75" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 6"/>
<path id="autosatin156" d="M 18.9348,56.9296 17,62 l -1.0641,3.2266 -0.8163,3.1222 -0.5948,3.1353 -0.0565,0.4619 M 30.802,56.4797 30.7,56.9879 l -0.4237,3.6189 -0.1376,3.6433 0.1416,3.6452 0.5082,3.8746 m 0.588,-15.2144 -13.0715,0.4898" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="2" inkstitch:force_lock_stitches="True" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 7" sodipodi:nodetypes="cccccccccccccc"/>
</g>
<g inkscape:groupmode="layer" inkscape:label="GlyphLayer-X" style="display:none;fill:none;stroke:#00673e;stroke-width:0.945;stroke-opacity:1;stroke-miterlimit:4;" id="g157718">
<path d="m 14.4069,73.808 0.0813,1.5376 0.1169,1.5109 0.0246,0.7109 v 0 l 0.0277,0.8034 -0.0758,1.5536" inkstitch:running_stitch_length_mm="2" id="autosatinrun111" inkscape:label="Points droits pour auto-remplissage satin 1" sodipodi:nodetypes="ccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin147" d="M 13.4578,81.0797 11.0526,81.0278 8.69531,80.6094 7.70562,80.1725 6.96941,79.5144 6.45697,78.6831 6.13857,77.7267 5.965,75.6303 6.21094,73.6094 7.38696,69.2183 8.98493,64.9571 12.75,56.6582 15.7904,50.425 17.5141,47.4144 19.4534,44.5466 20.884,42.7505 M 14.0986,81.0797 17.1146,81 l 3.2149,0.1699 0.7727,-0.077 0.6936,-0.2123 0.5812,-0.3914 0.4355,-0.6142 0.2808,-0.7881 0.1294,-0.8173 L 23.1443,76.5775 22.4534,73.1737 21.9905,68.9668 22,64.7442 22.4274,61.6146 23.3692,58.066 24.722,54.4713 26.3828,51.2031 28.6147,47.452 M 5,70.875 23.25,70.5" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 2"/>
<path d="m 21.0312,42.4111 0.0466,-1.1856 0.1011,-1.5091 0.0869,-0.8744 v 0 l 0.0667,-0.6716 0.1638,-1.5129 -0.7856,-1.1358 v 0 L 20.6406,35.4203 19.8184,34.112 19.0788,32.7536 18.9183,32.4285 v 0 l -0.5244,-1.062 -0.637,-1.4072 -0.3291,-0.7822 v 0 L 17.1659,28.5546 16.5632,27.128 16.0398,25.8797 v 0 l -0.0752,-0.1793 -0.5942,-1.429 -0.5988,-1.4323 -0.1096,-0.2612 v 0 l -0.4914,-1.1722 -0.6591,-1.4103 -0.3147,-0.6807 v 0 l -0.3376,-0.7301 -0.5565,-1.428" inkstitch:running_stitch_length_mm="2" id="autosatinrun112" inkscape:label="Points droits pour auto-remplissage satin 3" sodipodi:nodetypes="ccccccccccccccccccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin148" d="M 12.3813,15.9844 C 8.04629,15.969 5.51978,15.2693 7.375,19.5 c 1.5274,3.4832 3.3373,6.8275 5.169,10.1532 2.2432,4.0728 4.9669,9.7892 8.1748,13.1691 M 13.0376,15.9844 c 1.6712,0.0059 3.8965,-0.2994 4.4624,0.5156 1.9207,2.7664 2.9003,5.7987 3.7344,8.9922 C 21.91,28.0789 22.5505,30.2783 24,33 c 0.5665,1.0638 1.6178,2.2761 2.2827,2.9329 L 21.3438,42 M 11.875,30.9375 23,28.375" sodipodi:nodetypes="cssccssscccc" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 4"/>
<path id="autosatin149" d="m 20.884,42.7505 2.646,-3.3218 1.9425,-2.4355 M 28.6147,47.452 29.3783,46.1686 32,42 32.9059,40.7318 M 21.625,38.875 l 9.5,7 m -10.5646,-3.4374 8.4914,5.1631 m -8.4915,-5.1631 8.4915,5.1632" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 5"/>
<path d="m 28.6299,39.6144 0.5948,-0.7993 0.9009,-1.2498 0.718,-0.9982 v 0 l 0.1816,-0.2525 0.8791,-1.2648 0.8581,-1.2792 0.2,-0.317 v 0 l 0.6219,-0.9856 0.7752,-1.3314 0.502,-0.9342 v 0 l 0.2267,-0.4219 0.7109,-1.3656 0.646,-1.3909 0.088,-0.1955 v 0 l 0.5416,-1.2022 0.567,-1.4213 0.2823,-0.8733 v 0 l 0.1894,-0.5858 0.4378,-1.4714 0.2916,-1.5057 0.0074,-0.0817 v 0 l 0.1295,-1.4268 0.1532,-1.5086" inkstitch:running_stitch_length_mm="2" id="autosatinrun113" inkscape:label="Points droits pour auto-remplissage satin 6" sodipodi:nodetypes="cccccccccccccccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin150" d="m 39.9183,16 2.2668,0.0114 0.9047,0.237 0.6312,0.6052 0.5061,1.2132 0.219,1.2212 -0.0255,1.2185 -0.2272,1.2055 -0.8883,2.3292 -1.1821,2.1502 -2.6636,4.7393 -1.3513,2.3343 -1.4808,2.2568 -3.6816,5.1542 M 38.9902,16 l -1.4763,-0.0751 -1.5848,0.0157 -0.7302,0.1424 -0.634,0.2858 -0.4967,0.4693 -0.3182,0.6931 -1.9922,7.961 -0.7584,2.3991 -1.0657,2.287 -1.2805,2.2096 -1.4032,2.1668 -1.7014,2.3431 -0.045,0.0563 M 30,25.25 43.625,25.125" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 7"/>
<path id="autosatin151" d="m 32,42 1.36,2.4835 1.5969,2.3409 1.6648,2.3037 1.5638,2.3719 2.8218,4.8423 2.6275,4.9629 2.2628,5.1227 0.9413,2.6337 0.7861,2.6884 0.2912,1.6115 L 48,75 47.9967,75.1996 M 31.1875,43.125 l -4.8047,8.0781 1.1939,1.3463 0.9865,1.5377 0.8149,1.6985 0.6787,1.8285 1.0916,3.9241 0.9744,4.0756 0.4527,2.7711 0.2567,2.7817 c 0.002,1.547405 0.08369,1.99005 0.03022,3.536588 M 30,62.625 44.375,58.875" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 8" sodipodi:nodetypes="cccccccccccccccccccccccccc"/>
<path id="autosatin152" d="m 39.8272,81.0793 -5.296,-0.1105 -0.6629,-0.1615 -0.4525,-0.3484 -0.2799,-0.4941 -0.1452,-0.5985 -0.0376,-1.3445 -0.09068,-3.318612 M 40.7022,80.9856 44.8397,81 l 1.0862,-0.1186 0.8035,-0.4323 0.5634,-0.6794 0.3659,-0.8597 0.3099,-1.9941 0.0281,-1.7163 m 0.7486,0.0154 -16.548394,-0.128438" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="2" inkstitch:force_lock_stitches="True" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 10" sodipodi:nodetypes="cccccccccccccccccc"/>
</g>
<g inkscape:groupmode="layer" inkscape:label="GlyphLayer-W" style="display:none;fill:none;stroke:#00673e;stroke-width:0.945;stroke-opacity:1;stroke-miterlimit:4;" id="g157714">
<path d="m 17.1439,71.0103 -0.1008,-0.1496 -0.6856,-1.4183 -0.5432,-1.4109 -0.1205,-0.4106 v 0 L 15.3877,66.5778 15.0274,65.103 14.8301,64.0308 v 0 l -0.0774,-0.421 -0.2542,-1.4976 -0.2355,-1.5006 -0.0307,-0.2274 v 0 l -0.1726,-1.2776 -0.1989,-1.5057 -0.1092,-0.8807 v 0 l -0.0777,-0.6269 -0.1613,-1.509 -0.16,-1.5091 -0.0025,-0.0285 v 0 L 13.2168,51.5632 13.1292,50.048 13.0929,49.3607 v 0 L 13.0493,48.5328 12.9694,47.0176 12.922,45.6694 v 0 l -0.006,-0.169 -0.0425,-1.5181 -0.0307,-1.5382 0.0012,-0.4692 v 0 l 0.0029,-1.0881 0.0226,-1.5573 0.0227,-1.0496 v 0 l 0.0111,-0.5081 0.0338,-1.5578 0.0373,-1.5575 0.002,-0.0711 v 0 l 0.0421,-1.4858 0.0714,-1.557 0.0367,-0.6494 v 0 l 0.0513,-0.9076 0.088,-1.5571 0.1298,-1.22 v 0 l 0.0348,-0.3266 0.2752,-1.5222 0.3026,-1.5132 0.0495,-0.2725 v 0 l 0.227,-1.2487 0.1677,-1.5457 -0.0015,-0.8715 v 0 l -0.0012,-0.6695 -0.2586,-1.4987" inkstitch:running_stitch_length_mm="2" id="autosatinrun109" inkscape:label="Points droits pour auto-remplissage satin 1" sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin143" d="m 14.136,16.1726 c 2.4994,-0.6535 5.0881,-1.0336 6.5276,0.6118 2.4489,2.7992 -0.9005,6.7923 -1.1814,10.2963 -0.7513,9.3712 -1.9021,18.7614 -0.8814,28.1444 0.4144,3.81 0.9414,7.739 2.8804,11.108 1.5231,2.6465 4.5683,-5.1738 5.1025,-7.9679 1.452,-7.594 2.1746,-15.0819 2.3319,-23.1024 0.0632,-3.2212 1.184,-7.3496 4.7658,-7.6031 M 13.386,16.4226 c -1.2142,0.3175 -1.6574,0.4495 -2.6875,0.6951 -3.15113,0.7514 -3.31555,3.1387 -3.36858,6.1414 -0.06597,3.7344 -0.45222,6.9223 -0.37683,10.391 0.21246,9.7766 0.71868,19.5977 2.43953,29.2308 1.01368,5.6745 1.49338,11.7931 4.99078,16.5997 2.0193,2.7753 6.1108,1.748 9.1079,1.6752 3.5554,-0.0865 5.5367,-4.0432 6.6711,-7.1497 1.8233,-4.9927 3.4205,-10.9938 3.4306,-15.6914 L 33.6562,28.9688 M 6.25,26.0625 20.875,25.875 M 22.25,64.625 22,83.75 M 26.125,45.5 35,45.25 m -27.6875,10.3125 12.25,-0.125" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 2" sodipodi:nodetypes="csccccccccscsccccccccccc"/>
<path id="autosatin144" d="m 33.6492,32.2473 0.007,-3.2785 m 3.2069,0.5239 -0.6529,-0.8814 -1.0724,-0.6851 -1.4564,-0.2665 m 0,0 -0.0316,1.4786" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 3" sodipodi:nodetypes="cccccccc"/>
<path id="autosatin145" d="m 36.8631,29.4927 0.0981,0.1324 0.4922,1.253 0.2959,1.4024 0.1623,1.4623 0.1736,2.7454 0.3966,5.4912 0.7108,5.2534 1.0648,5.0906 1.4587,5.0025 1.3362,3.6557 0.8426,1.7347 1.0586,1.6654 1.0016,1.0256 0.4546,0.2207 0.4238,0.0519 0.7558,-0.3256 0.6337,-0.7691 0.5121,-1.0577 0.3911,-1.1916 0.0332,-0.1708 M 33.6492,32.2473 33.593,58.3147 l 0.8324,3.1605 1.8564,7.3104 1.1223,3.5729 1.4102,3.5313 0.6781,1.2676 0.7923,1.0726 0.9045,0.8854 1.0147,0.7056 1.1229,0.5334 1.229,0.369 1.3333,0.2119 1.4353,0.0626 1.3537,-0.0809 1.2258,-0.2293 1.098,-0.3849 0.9705,-0.5478 0.843,-0.7182 c 2.844304,-3.204242 3.009039,-4.63576 3.896082,-10.392712 M 32.375,48 40.5,47.625 m 6.25,15.875 0.5,19.25 M 37.0863,29.4343 33.4853,32.486" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 4" sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccc"/>
<path d="m 53.1946,62.2846 0.2335,-1.5543 0.1452,-1.0694 v 0 l 0.0661,-0.4863 0.1696,-1.5631 0.1657,-1.5639 0.0021,-0.0237 v 0 l 0.1417,-1.5401 0.1019,-1.5687 0.0337,-0.5399 v 0 l 0.0642,-1.0293 0.0979,-1.5692 0.0448,-1.055 v 0 l 0.0219,-0.5174 0.063,-1.5727 0.0627,-1.5664 v 0 l 3e-4,-0.0063 0.0328,-1.5742 0.0215,-1.5742 0.0062,-0.5043 v 0 l 0.013,-1.0546 -0.0213,-1.5342 -0.0185,-1.0703 v 0 L 54.6346,37.283 54.6004,35.7492 54.5438,34.217 54.539,34.0892 v 0 l -0.0525,-1.4043 -0.1271,-1.5225 -0.0604,-0.724 v 0 L 54.2324,29.64 54.0476,28.1313 53.8488,26.8078 v 0 l -0.0272,-0.1811 -0.2293,-1.5045 -0.231,-1.5045 -0.0667,-0.4272 v 0 l -0.1682,-1.0772 -0.2349,-1.5044 -0.1319,-1.0383 v 0 l -0.0605,-0.4765 -0.0857,-1.5235" inkstitch:running_stitch_length_mm="2" id="autosatinrun110" inkscape:label="Points droits pour auto-remplissage satin 5" sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin146" d="m 52.1857,15.905 -2.1788,0.0422 -1.158,0.1461 -1.0916,0.2923 -0.9415,0.4856 -0.7073,0.726 -0.3891,1.0136 0.0131,1.3482 2.698,9.2554 0.635,3.4206 0.3194,3.4715 0.3679,6.9716 0.2716,8.5587 -0.0677,4.2773 -0.4091,4.2559 -0.3882,1.995 m 4.0263,-46.2288 2.4827,0.0869 1.0941,0.1549 0.9652,0.298 0.8136,0.4928 0.6389,0.7391 0.4414,1.0372 0.2209,1.3869 0.0933,3.9383 L 60,28 l -0.2279,12.0403 -0.312,6.0186 -0.4887,6.0058 -0.6989,5.9845 -1.561,10.5949 M 46.2656,24.3438 60.6875,24.1523 M 49.0997,55.4687 h 10.4299" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="2" inkstitch:force_lock_stitches="True" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False"/>
</g>
<g inkscape:groupmode="layer" inkscape:label="GlyphLayer-V" style="display:none;fill:none;stroke:#00673e;stroke-width:0.945;stroke-opacity:1;stroke-miterlimit:4;" id="g157710">
<path d="m 20.8867,74.4636 -0.27,-1.0487 -0.277,-1.5067 -0.1925,-1.0953 v 0 l -0.0736,-0.4188 -0.805,-1.3227 -0.6526,-1.3796 -0.0836,-0.2112 v 0 l -0.4812,-1.2151 -0.5255,-1.4431 -0.288,-0.8361 v 0 l -0.2132,-0.6187 -0.4581,-1.4712 -0.3988,-1.4788 v 0 l -0.002,-0.0077 -0.3472,-1.5021 -0.333,-1.5053 -0.1249,-0.6232 v 0 l -0.178,-0.8888 -0.2352,-1.5238 -0.1815,-1.2657 v 0 l -0.0374,-0.2608 -0.2189,-1.5265 -0.2145,-1.527 -0.0424,-0.377 v 0 l -0.13,-1.1549 -0.1724,-1.5318 -0.1145,-1.0169 v 0 l -0.058,-0.515 -0.1723,-1.5319 -0.1714,-1.5204 -0.0154,-0.1362 v 0 L 13.2592,40.5969 13.0916,39.054 13.0138,38.2977 v 0 L 12.9329,37.51 12.7786,35.9656 12.6484,34.5887 v 0 l -0.0159,-0.1682 -0.11,-1.5483 -0.0612,-1.5507 -0.0165,-0.4536 v 0 l -0.0398,-1.0972 -0.0508,-1.551 -0.0172,-1.077 v 0 l -0.0077,-0.4752 -0.0248,-1.5521 -0.0248,-1.5521 -0.0032,-0.1471 v 0 l -0.0307,-1.4046 -0.0266,-1.5505 -0.0193,-0.771 v 0 l -0.0194,-0.7761 0.0762,-1.5219" inkstitch:running_stitch_length_mm="2" id="autosatinrun107" inkscape:label="Points droits pour auto-remplissage satin 1" sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin140" d="M 12.0947,15.9712 C 10.6908,15.921 9.54904,15.8778 8.35056,16.6494 7.44801,17.2305 7.1581,18.2139 7.07294,19.2083 6.7787,22.6439 7.1092,26.1367 7,29.5942 6.83434,34.8397 7.68049,40.0164 7.99219,45.2344 8.49889,53.7169 9.9048,62.1892 12.4575,70.3374 13.6255,73.9564 15.2368,79.7883 19,81 c 1.8867,0.6075 3.9589,0.0185 5.9375,0.0165 M 12.8135,15.9868 C 14.5336,16.0034 16.7491,15.5072 17,16.5 c 0.7322,3.7017 0.546,7.478 0.7188,11.2812 0.1797,3.9588 0.4369,7.2797 1,10.9376 0.7427,4.8249 1.2809,9.6789 2.0624,14.5 0.5317,3.2795 1.4458,6.5547 2.8735,9.5391 0.7187,1.5022 1.4892,3.0996 2.8453,4.1171 l -1.3438,13 M 6.36396,44.1108 20.0642,41.3707" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 2"/>
<path id="autosatin141" d="m 24.9375,81.0164 2.0511,0.064 1.0171,-0.0314 0.9943,-0.174 1.3062,-0.5232 1.1372,-0.7674 0.9889,-0.9666 0.8613,-1.1208 1.4221,-2.5249 0.2432,-0.546 m -9.8027,5.4489 1.1627,-11.2482 m -1.2879,12.455 0.142,-1.3685" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 3"/>
<path d="m 30.7786,71.0275 0.2689,-0.9604 0.9364,-1.17 0.7032,-1.0642 v 0 l 0.1426,-0.2157 0.6347,-1.3873 0.4824,-1.455 0.1348,-0.4339 v 0 l 0.3204,-1.0313 0.3817,-1.4861 0.273,-1.1246 v 0 l 0.0888,-0.3661 0.2829,-1.5075 0.26,-1.5122 0.0524,-0.3223 v 0 l 0.194,-1.1917 0.1981,-1.5209 0.1238,-1.0228 v 0 l 0.0605,-0.5003 0.1844,-1.5231 0.1843,-1.5231 0.0187,-0.1982 v 0 l 0.1255,-1.3289 0.1268,-1.5287 0.0746,-0.8996 v 0 l 0.0522,-0.6292 0.1086,-1.5303 0.0868,-1.5317 0.0018,-0.0718 v 0 l 0.0377,-1.4607 0.0344,-1.5194 -0.0236,-0.7901 v 0 l -0.0217,-0.7283 -0.0607,-1.5188 -0.122,-1.5096 -7e-4,-0.0083 v 0 l -0.131,-1.4999 -0.1384,-1.5082 -0.0744,-0.7476 v 0 l -0.0757,-0.7607 -0.1477,-1.5089 -0.1437,-1.484 v 0 L 36.411,26.921 36.2649,25.4118 36.1188,23.9027 36.0347,23.1939 v 0 l -0.0941,-0.7922 -0.2991,-1.4822 -0.4541,-1.3893 v 0 l -0.016,-0.0488 -0.5249,-1.4242 -0.5652,-1.4101" inkstitch:running_stitch_length_mm="2" id="autosatinrun108" inkscape:label="Points droits pour auto-remplissage satin 4" sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin142" d="M 33.8602,15.9526 30.8153,15.7795 29.4413,15.7703 28.5,16 l -0.3745,0.4658 -0.0594,0.6769 0.5211,1.7907 0.8662,2.0467 0.6013,1.9105 1.2399,6.4429 1.2747,6.4375 0.3306,3.2139 0.0671,3.2224 -0.3706,6.4429 -0.7514,5.3698 -0.97,5.3394 -0.5861,2.2056 -0.7117,2.4166 -0.5027,1.0865 -0.6539,0.898 -0.8448,0.6291 -1.0758,0.2798 -0.1811,1.7518 m 8.1351,-52.6429 1.9623,-0.0173 1.9431,0.174 0.9282,0.3011 0.7748,0.5186 0.6303,0.6918 0.4951,0.8203 0.6214,1.8487 L 42,22.1504 V 32 l -0.1561,6.3625 -0.4188,6.3522 -1.3279,12.6637 -0.6297,3.8492 -0.9387,3.7838 -1.2101,3.7149 -1.4437,3.6428 -0.9161,2.057 M 32.085,40.3101 43.3103,40.1333" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="2" inkstitch:force_lock_stitches="True" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 5"/>
</g>
<g inkscape:groupmode="layer" inkscape:label="GlyphLayer-U" style="display:none;fill:none;stroke:#00673e;stroke-width:0.945;stroke-opacity:1;stroke-miterlimit:4;" id="g157706">
<path d="m 17.0673,70.9279 -0.1416,-0.1672 -0.8859,-1.2893 -0.7095,-1.4027 -0.1287,-0.3285 v 0 l -0.4273,-1.0907 -0.3922,-1.4819 -0.1545,-0.9918 v 0 L 14.1448,63.6446 14.0423,62.1029 13.9997,60.557 13.9976,60.4781 v 0 L 13.9572,59.011 13.9146,57.4651 13.8955,56.7713 v 0 l -0.0235,-0.8521 -0.0354,-1.546 -0.01,-1.3092 v 0 l -0.0018,-0.2371 -3e-4,-1.5466 0.0174,-1.5462 0.0069,-0.3781 v 0 l 0.0214,-1.1679 0.0282,-1.5461 0.0229,-0.9934 v 0 l 0.0127,-0.5524 0.0321,-1.5464 0.0259,-1.5375 0.0012,-0.0712 v 0 l 0.0247,-1.4662 0.0377,-1.5373 0.0219,-0.7036 v 0 l 0.026,-0.8337 0.048,-1.5372 0.0417,-1.3354 v 0 l 0.0063,-0.2018 0.0479,-1.5372 0.048,-1.5372 0.0134,-0.4301 v 0 l 0.0346,-1.1072 0.0524,-1.537 0.0538,-1.0612 v 0 l 0.0241,-0.4747 0.0778,-1.5359 0.0779,-1.5359 0.0122,-0.1566 v 0 l 0.1075,-1.3755 0.1201,-1.5321 0.0506,-0.79 v 0 l 0.0477,-0.7441 -0.0225,-1.527" inkstitch:running_stitch_length_mm="2" id="autosatinrun105" inkscape:label="Points droits pour auto-remplissage satin 1" sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin138" d="m 15.2187,16.0357 5.5313,0.0893 0.5055,0.2175 0.4301,0.636 0.2276,1.0868 -0.1024,1.5697 -0.4471,3.7715 -0.3093,4.8897 -0.281,11.4447 0.0428,10.8503 0.215,6.8776 0.2255,2.5483 0.3872,2.4349 0.6355,2.3261 L 23.25,67 l 0.629,0.9144 0.8257,0.8071 0.9678,0.656 1.0554,0.4608 1.0884,0.2217 1.0669,-0.0612 0.9909,-0.3882 0.8603,-0.759 0.7652,-1.1 0.606,-1.1817 0.7416,-2.2588 M 14.3125,16.0045 12.4534,15.9075 10.4444,15.9014 9.55144,16.0517 8.82247,16.3676 8.3246,16.897 8.125,17.6875 7,47.3245 l -0.16046,5.2547 -0.00968,5.2591 0.2678,10.5152 0.2518,2.0562 0.58496,1.9855 0.88597,1.8753 1.15486,1.7256 1.39155,1.5362 1.5962,1.3073 1.7687,1.0389 1.9089,0.7309 2.4035,0.4372 2.4522,0.0829 4.9342,-0.1295 3.2791,0.0586 3.3061,-0.1436 1.6075,-0.262 1.5474,-0.4495 1.4651,-0.6829 1.3604,-0.962 1.2364,-1.2234 0.4487,-0.5838 M 6.79442,21.5893 22.4828,21.78845 M 27.4004,68.3292 V 82.6481 M 5.3125,59.25 22.25,59" sodipodi:nodetypes="csssssssssccsssssssccccccccccccccccccccccccccccccccccccccccccc" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 2"/>
<path d="m 36.7642,70.5313 0.6877,-1.415 0.4947,-1.3316 v 0 l 0.0349,-0.0939 0.4122,-1.4723 0.2949,-1.5046 0.0697,-0.5414 v 0 l 0.1262,-0.9812 0.0798,-1.5322 0.029,-1.1842 v 0 l 0.0086,-0.3481 0.0254,-1.5332 -10e-5,-1.535 v -0.2915 0 -1.2434 l -0.0239,-1.5349 -0.0259,-0.9293 v 0 l -0.0169,-0.6056 -0.0429,-1.535 -0.0428,-1.5349 -8e-4,-0.0312 v 0 l -0.042,-1.5037 -0.0436,-1.5348 -0.0327,-0.6676 v 0 l -0.0423,-0.8652 -0.0851,-1.5473 -0.0754,-1.2901 v 0 l -0.0139,-0.2389 -0.0894,-1.5289 -0.0893,-1.529 -0.0237,-0.405 v 0 l -0.0657,-1.124 -0.0893,-1.529 -0.0613,-1.0488 v 0 l -0.0281,-0.4801 -0.0893,-1.529 -0.1072,-1.5271 -0.0118,-0.1644 v 0 l -0.0977,-1.3624 -0.1095,-1.5268 -0.0526,-0.8098 v 0 l -0.0467,-0.7169 -0.059,-1.5262 -0.0448,-1.4617 v 0 l -0.002,-0.0637 -0.0291,-1.5243 -0.0473,-1.5256 -0.053,-0.5911 v 0 l -0.0836,-0.9319 -0.3115,-1.5081" inkstitch:running_stitch_length_mm="2" id="autosatinrun106" inkscape:label="Points droits pour auto-remplissage satin 3" sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin139" d="m 37.374,16.0747 2.6545,0.1146 1.7908,0.4123 0.6202,0.3254 0.4627,0.409 0.3245,0.4957 0.206,0.5855 0.134,1.4524 -0.107,1.8484 -0.1922,2.2687 -0.1218,2.7136 L 44,66 l -0.0408,1.7426 -0.2004,1.7429 -0.3636,1.7183 -0.5307,1.6689 -0.7015,1.5948 -0.8761,1.4958 -0.6057,0.7881 m -4.2134,-60.7079 -2.292,0.0408 -2.2892,0.194 -0.5006,0.161 -0.3147,0.286 -0.2106,0.8268 0.2799,1.8307 L 32.7183,32.432 34,46 l 0.2428,6.3576 -0.1153,3.1785 -0.3228,3.1592 -0.3652,2.6632 -0.4993,2.6693 -0.093,0.2833 M 30.4126,21.24555 44.045982,21.062791 M 33.0625,51.6875 44.5,51.625" sodipodi:nodetypes="csssssssssccsssssssccccccccccccccccccc" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="2" inkstitch:force_lock_stitches="True" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 4"/>
</g>
<g inkscape:groupmode="layer" inkscape:label="GlyphLayer-T" style="display:none;fill:none;stroke:#00673e;stroke-width:0.945;stroke-opacity:1;stroke-miterlimit:4;" id="g157702">
<path d="m 25.0387,73.8502 -0.0426,-0.9526 -0.0629,-1.5391 -0.0333,-1.1424 v 0 l -0.0117,-0.4001 -0.0316,-1.5444 0.005,-1.5495 5e-4,-0.1423 v 0 l 0.0046,-1.4072 0.0051,-1.5495 0.0021,-0.6801 v 0 l 0.0026,-0.8695 -0.0097,-1.551 -0.0077,-1.2163 v 0 l -0.0021,-0.3347 -0.0097,-1.5511 0.0069,-1.5526 0.0027,-0.1983 v 0 l 0.0179,-1.3415 0.0237,-1.5218 0.0121,-0.7731 v 0 l 0.0116,-0.7488 0.0237,-1.5219 0.0145,-1.3658 v 0 l 0.0017,-0.1566 6e-4,-1.5237 6e-4,-1.5237 0.0024,-0.4327 v 0 l 0.0061,-1.0916 0.0232,-1.5252 0.0156,-1.0197 v 0 l 0.0077,-0.5055 0.0232,-1.5252 0.0233,-1.5251 9e-4,-0.0806 v 0 l 0.0171,-1.4449 -5e-4,-1.5264 -2e-4,-0.6654 v 0 l -3e-4,-0.8611 -5e-4,-1.5264 0.0016,-1.2493 v 0 l 3e-4,-0.2777 -10e-5,-1.5276 -1e-4,-1.5277 v -0.3038 0 l -10e-5,-1.2238 0.8296,-1.1524 0.7762,-0.6195 v 0 l 0.4301,-0.3432 1.2062,-0.9626" inkstitch:running_stitch_length_mm="2" id="autosatinrun101" inkscape:label="Points droits pour auto-remplissage satin 1" sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path d="m 28.8812,18.6332 -1.5504,-0.0038 -0.6733,-0.0016 v 0 l -0.8771,-0.0022 -1.517,-0.0037 -1.2612,-0.0031 v 0 l -0.2814,-7e-4 -1.5425,-0.0037 -1.5426,-0.0038 -0.2889,-7e-4 v 0 l -1.2537,-0.003 -1.5426,-0.0038 -0.8585,0.03 v 0 l -0.6793,0.0238 -1.5263,0.2454 -1.3674,0.4176 v 0 l -0.0957,0.0293 -1.3636,0.7047 -0.96295,1.1695 -0.10652,0.4941 v 0 l -0.21467,0.9959 -0.24302,1.5052 -0.12363,1.105 v 0 l -0.04656,0.4161 -0.14056,1.526 -0.09096,1.5336 -0.00691,0.1678 v 0 L 8.66751,30.3359 8.63709,31.8767 8.6224,32.6208 v 0 l -0.01573,0.7967 -0.05136,1.5408 -0.02956,1.3165 v 0 L 8.52069,36.5 8.5024,38.0161 l 0.01475,1.5458 0.01169,0.3679 v 0 l 0.03738,1.1761 0.12582,1.54 0.11472,0.9265 v 0 l 0.07372,0.5954 0.33589,1.4777" inkstitch:running_stitch_length_mm="2" id="autosatinrun102" inkscape:label="Points droits pour auto-remplissage satin 2" sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin134" d="M 9.38647,47.134875 C 9.0967225,47.139252 8.85385,47.095583 8.58754,47.0677 L 7.77699,46.8198 7.10078,46.4338 6.54864,45.9365 5.7754,44.7163 5.375,43.375 5.05254,40.7351 4.96057,38.0759 5,32.7455 4.88866,25.4143 4.90414,21.7504 5.0625,18.0938 5.25752,17.2916 5.68037,16.7205 6.28164,16.342 7.01191,16.1179 8.66183,15.9797 10.2348,16 29.2875,16.0055 M 9.8005325,47.103625 C 10.136732,47.080865 10.372795,47.024725 10.6536,46.9835 L 11.4,46.5356 11.8494,45.8534 12.0692,44.9831 12.0894,42.8642 12,40.5501 l 0.0792,-4.639 0.3526,-4.6452 0.3993,-2.2776 0.6123,-2.2224 0.8736,-2.1482 1.183,-2.0552 0.5746,-0.6274 0.6894,-0.4232 0.7455,-0.2385 0.7426,-0.0729 11.011,0.0524 M 2.625,36.5 H 13.5 M 25.1875,15.03125 25.21875,22.25 m -6.375,-7.21875 v 7" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 3" sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccc"/>
<path d="m 30.908062,18.637 1.073838,0.0038 1.5496,0.0181 0.4354,0.0328 v 0 l 1.1005,0.0829 1.5196,0.2775 0.9599,0.3044 v 0 l 0.5067,0.1607 1.285,0.7782 0.5968,1.3998 0.015,0.0986 v 0 l 0.2154,1.4143 0.1941,1.5201 0.0686,0.6889 v 0 l 0.084,0.844 0.1412,1.536 0.0835,1.262 v 0 l 0.0185,0.2811 0.094,1.5446 0.0482,1.5486 0.0069,0.2768 v 0 l 0.0315,1.2725 0.0361,1.5493 0.0075,0.8327 v 0 l 0.0062,0.6867 -0.002,1.5584 -0.0025,1.4102 v 0 l -3e-4,0.1484 0.0082,1.5587 -0.0081,1.5581 0.0072,0.3901 v 0 l 0.0214,1.161 5e-4,1.5343" inkstitch:running_stitch_length_mm="2" id="autosatinrun103" inkscape:label="Points droits pour auto-remplissage satin 4" sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin135" d="m 40.899296,47.307103 c -0.415782,3.86e-4 -0.723887,-0.07998 -1.085,-0.1206 L 39.1862,46.8608 38.6467,46.3199 38.308,45.6199 38.0406,43.8796 38,41.913 37.9012,37.1533 37.6179,32.3905 37.29,30.0388 36.7756,27.7232 36.0279,25.4562 35,23.25 l -0.7518,-0.961 -0.9253,-0.6093 -0.9966,-0.321 -0.9658,-0.0958 -2.0974,-0.01 m 12.050516,26.032106 c 0.32408,-0.01599 0.596007,-0.08103 0.893284,-0.123006 l 0.7986,-0.4642 0.5129,-0.7197 0.2899,-0.9337 0.1635,-2.3433 L 44,40 44.1278,35.1003 44.1136,30.1972 44,20.3892 44.0256,18.9917 43.8938,17.5686 43.671,16.9557 43.2916,16.4663 42.7164,16.1437 41.9062,16.0312 29.2875,16.0055 M 35.375,36.75 h 10.25 m -14.3125,-21.46875 -0.09375,6.75" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 5" sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccc"/>
<path id="autosatin136" d="m 30.0312,21.3438 -0.0384,6.0821 0.1069,6.052 0.5836,11.9696 0.9672,11.7179 1.2191,11.3789 0.5261,3.0262 0.601,2.9169 0.0733,0.855225 M 29.0312,21.2812 20.1562,21.375 20.0695,27.6464 19.8196,34.2225 18.9097,48.0195 17.584,62.226 16.16755,75.412738 M 16.617,55.6012 33.9411,55.4245 M 18.875,31.875 30.9375,31.78125" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 6" sodipodi:nodetypes="cccccccccccccccccc"/>
<path d="m 25.0387,73.8502 0.0261,0.5854 0.0071,1.5475 0.0255,1.503 v 0 l 9e-4,0.0501 -0.0714,1.5481 0.1083,1.5187 0.0989,0.5048" inkstitch:running_stitch_length_mm="2" id="autosatinrun104" inkscape:label="Points droits pour auto-remplissage satin 7" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin137" d="M 24.8279,81.1313 21.0893,81.1553 17.375,80.875 16.7326,80.6672 16.301,80.2701 16.0419,79.7264 15.9173,79.0787 15.9188,77.6423 16,76.3021 c 0.05697,-0.295892 0.147915,-0.5748 0.16755,-0.889362 M 25.6404,81.0844 29.3021,81 l 1.2713,0.0418 1.3218,-0.0259 0.6161,-0.1271 0.5523,-0.2505 0.4631,-0.4094 0.3483,-0.6039 0.3169,-1.1685 0.0312,-1.675375 -0.1531,-1.4385 M 34.961586,75.685481 15.24925,75.54175" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="2" inkstitch:force_lock_stitches="True" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 8" sodipodi:nodetypes="ccccccccccccccccccccccc"/>
</g>
<g inkscape:groupmode="layer" inkscape:label="GlyphLayer-S" style="display:none;fill:none;stroke:#00673e;stroke-width:0.945;stroke-opacity:1;stroke-miterlimit:4;" id="g157698">
<path d="m 11.743,70.4192 -0.3325,-1.4129 -0.2258,-1.5055 -0.0751,-0.7184 v 0 l -0.0839,-0.8035 -0.1094,-1.5383 -0.0968,-1.3425 v 0 l -0.0141,-0.1958 -0.0851,-1.5431 -0.0542,-1.5485 -0.0023,-0.4049 v 0 l -0.0065,-1.15 0.0828,-1.5388 0.0952,-1.0005 v 0 l 0.0495,-0.5206 0.1513,-1.5244" inkstitch:running_stitch_length_mm="2" id="autosatinrun99" inkscape:label="Points droits pour auto-remplissage satin 1" sodipodi:nodetypes="cccccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin132" d="m 10.5625,52.0625 -0.61898,0.0729 -0.52424,0.2172 -0.4602,0.4081 -0.42685,0.6455 -0.67247,1.5984 -0.44662,1.6493 -0.265,1.689 L 7.02056,60.06 7,66.9803 l -0.02389,4.9851 0.13453,2.4767 0.52217,2.4251 0.44812,0.9991 0.63032,0.8323 0.78005,0.6786 0.8973,0.5383 2.0162,0.7085 2.0952,0.3057 9.7487,0.0784 L 34,81 l 1.5624,-0.0382 1.5409,-0.2536 1.4887,-0.4612 1.4054,-0.6607 1.2913,-0.8523 0.9997,-0.9035 M 11.4062,52 l 1.0623,0.2425 0.7299,0.5255 0.4612,0.7462 0.256,0.9045 0.1505,2.0351 0.0921,1.9212 0.3227,2.5984 0.6326,2.5562 0.4914,1.2024 0.6396,1.1202 0.8113,1.0139 1.0067,0.8839 1.1247,0.9542 1.2787,0.6901 1.3858,0.4306 1.4459,0.1756 1.4589,-0.075 1.4251,-0.321 1.3442,-0.5626 1.2164,-0.7997 0.8128,-0.9321 0.6247,-1.0542 0.383,-0.9852 M 23.375,68 23.625,82.5 M 4.5,59.25 H 16 m 13.9421,5.4872 12.8565,13.787" sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 2"/>
<path d="m 37.7196,68.7896 0.3832,-1.4923 0.1036,-0.7666 v 0 l 0.1032,-0.7643 0.0281,-1.5375 -0.052,-1.3861 v 0 l -0.006,-0.1581 -0.2348,-1.5104 -0.3991,-1.4802 -0.1579,-0.4494 v 0 l -0.35,-0.9961 -0.5865,-1.4212 -0.4951,-0.9854 v 0 L 35.8621,55.4554 35.0738,54.1271 34.2239,52.8323 34.1222,52.696 v 0 l -0.8266,-1.1078 -1.0222,-1.1704 -0.5282,-0.5463 v 0 l -0.5535,-0.5725 -1.13,-1.0704 -1.0219,-0.8719 v 0 l -0.1605,-0.137 -1.1841,-1.007 -1.2027,-0.9823 -0.2957,-0.2352 v 0 l -0.9192,-0.7307 -1.1844,-0.9617 -0.7631,-0.6404 v 0 l -0.4096,-0.3438 -1.2232,-0.9251 -1.1818,-0.9752 -0.0699,-0.0651 v 0 l -1.0515,-0.979 -1.0313,-1.1309 -0.4537,-0.5704 v 0 L 17.4086,37.0436 16.596,35.7553 15.9321,34.5582 v 0 l -0.0692,-0.1247 -0.6667,-1.3896 -0.4544,-1.4653 -0.1121,-0.4648 v 0 l -0.2424,-1.0052 -0.2551,-1.5075 -0.0284,-1.1327 v 0 l -0.0098,-0.3876 0.1558,-1.5085 0.4904,-1.4268 0.15,-0.2402 v 0 l 0.6522,-1.044 1.0355,-1.1156 0.7509,-0.5705 v 0 l 0.4609,-0.3501 1.346,-0.7147 1.4353,-0.5211 0.0645,-0.0152 v 0 l 1.4258,-0.334 1.5229,-0.1749 0.6987,-0.0131 v 0 l 0.8467,-0.0159 1.5121,0.0361 1.3309,0.1246 v 0 l 0.2057,0.0192 1.5079,0.2674 1.4789,0.4002 0.3929,0.1646 v 0 l 1.029,0.4312 1.3015,0.8287 0.7709,0.6943 v 0 l 0.3521,0.317 0.95,1.1984 0.5686,1.4017 0.0143,0.1799 v 0 l 0.1056,1.3274 -0.2909,1.4967 -0.4327,0.7197 v 0 l -0.3436,0.5713 -0.7669,1.2843" inkstitch:running_stitch_length_mm="2" id="autosatinrun100" inkscape:label="Points droits pour auto-remplissage satin 3" sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin133" d="m 35.111,32.1671 0.9846,-0.0262 0.7422,-0.1779 1.5216,-0.7442 1.3889,-0.9354 1.0669,-1.247 0.7324,-1.4696 0.3852,-1.603 0.0255,-1.6473 L 41.6114,22.714 40.8795,21.2455 39.75,20 38.5645,18.8734 37.2449,17.9837 35.8167,17.3024 34.3053,16.8013 31.135,16.2261 l -3.1975,-0.1949 -4.0612,-0.0114 -2.049,0.1661 -2.0161,0.3311 -1.9493,0.5343 -1.8486,0.7752 -1.7139,1.0543 -1.5455,1.3712 -0.9629,1.1051 -0.8144,1.1895 -0.6693,1.2617 -0.52753,1.3216 -0.64315,2.7749 -0.11637,2.8691 0.38355,2.8663 0.8566,2.7663 1.3027,2.5689 1.7221,2.2746 1.7464,1.7433 1.938,1.5204 1.9514,1.5031 1.787,1.6912 5.323,5.3049 2.4592,2.8188 1.0758,1.5293 0.934,1.639 0.4843,2.4011 0.0344,1.2509 -0.1164,1.2456 -0.2766,1.211 -0.063,0.1621 M 34.111,31.8703 33.1611,31.2105 32.4677,30.3026 32.0681,29.2295 32,28.0739 31.8958,27.0934 31.5569,26.1888 31.0263,25.3604 30.347,24.6085 28.7135,23.3362 27,22.375 l -1.3119,-0.3004 -1.3847,-0.0592 -1.3938,0.178 -1.3393,0.4114 -1.2212,0.6411 -1.0393,0.8667 -0.7939,1.0886 -0.4847,1.3066 0.0556,0.8565 0.216,0.8044 0.7726,1.4951 L 21,32.5 l 3.3436,3.8624 1.857,1.7437 2.0602,1.5088 4.072,2.8994 3.934,3.1003 1.8284,1.6908 1.6897,1.8194 1.5163,1.9741 1.3082,2.155 1.2268,2.5401 0.9759,2.6687 0.7029,2.7604 0.4081,2.8151 0.0914,2.8329 -0.2473,2.8136 -0.6079,2.7575 -0.9904,2.6642 -0.7635,1.3797 -0.9704,1.2118 -0.1466,0.1326 m -11.6009,-50.3504 9.75,4.7387 M 24.75,14.25 25,23.5 M 13.5625,43.25 23.457646,33.844131 M 29.1875,59.1875 43.75,52.25" sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="2" inkstitch:force_lock_stitches="True" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 4"/>
</g>
<g inkscape:groupmode="layer" inkscape:label="GlyphLayer-R" style="display:none;fill:none;stroke:#00673e;stroke-width:0.945;stroke-opacity:1;stroke-miterlimit:4;" id="g157694">
<path d="m 15.8596,73.6678 0.0376,0.7991 0.0152,1.5354 -0.0201,1.3443 v 0 l -0.0028,0.1867 -0.0556,1.524 -0.139406,1.313726" inkstitch:running_stitch_length_mm="2" id="autosatinrun96" inkscape:label="Points droits pour auto-remplissage satin 1" sodipodi:nodetypes="cccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin128" d="M 15.8112,80.9504 21.5821,81 l 0.7522,-0.0301 0.6415,-0.1732 0.5367,-0.3084 0.4374,-0.4359 0.5998,-1.2225 L 24.8209,77.192 24.8088,75.2016 24.5591,72.9213 23.5286,67.7428 20.6175,56.6722 19.4651,51.7851 19.1238,49.7234 19,48 v -8.1709 l 0.0171,-6.416 0.213,-3.1996 0.5199,-3.1823 0.4914,-1.5691 0.6836,-1.3039 0.8443,-1.0454 0.9733,-0.7934 1.0709,-0.5484 1.1368,-0.3098 1.1712,-0.0782 1.174,0.1469 1.1453,0.3651 1.0848,0.5768 0.993,0.7816 0.8695,0.9798 0.7145,1.1713 0.5279,1.356 0.3096,1.5341 L 33,30 l -0.1565,1.5607 -0.3294,1.504 -0.493,1.4377 -0.6473,1.3618 -0.7921,1.2763 -0.9276,1.181 -1.0538,1.0762 -1.1706,0.9617 -2.0042,1.329 -1.9562,1.0927 M 15.03,80.9504 10.0625,80.9375 9.24249,80.7912 8.56716,80.4495 8.02663,79.9466 7.61101,79.3168 7.11498,77.8132 7,76.2123 7.20426,64.9712 7.37804,59.3526 7.76367,53.7363 8.09294,48.2138 8.13852,42.6773 8,31.5954 7.92011,28.5216 7.70083,25.4521 7.03009,19.331 7.02568,18.4869 7.21478,17.7814 7.57117,17.2063 8.06866,16.7534 9.38205,16.1814 10.9453,16 l 10.1099,-0.1791 5.0556,-0.0034 5.043,0.2167 2.0302,0.2908 2.1128,0.5704 2.1178,0.827 2.0455,1.0605 1.8954,1.2709 1.6681,1.4583 1.363,1.6226 0.9806,1.7637 0.6165,1.9315 0.2312,1.844 -0.0886,1.796 -0.3427,1.7875 -0.5181,1.5324 -0.7712,1.51 -1.0028,1.4805 -1.2126,1.444 -1.4009,1.4006 -1.5676,1.3501 -3.549,2.5207 -3.9564,2.2346 -4.1912,1.8924 -0.7343,0.2579 M 25.25,39.5 l 5,8.625 m 0,-16.25 17.5,-0.125 M 24.875,13.125 25,22.25 M 7.1048543,31.863068 19.977252,31.849204 M 6.098796,70.58307 24.969708,70.62726" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 2" sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc"/>
<path d="m 24.8721,45.4604 -1.1153,0.478 -1.4194,0.6039 -0.8567,0.346 v 0 l -0.5709,0.2306 -0.8957,1.2186 -0.391916,0.564793" inkstitch:running_stitch_length_mm="2" id="autosatinrun98" inkscape:label="Points droits pour auto-remplissage satin 3" sodipodi:nodetypes="cccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin129" d="m 19.2188,50.1562 4.142,-1.0395 3.5187,-1.2361 M 19.0312,49.0625 19,45 23.3284,42.8598 23.4693,42.7811 M 19.33,50.1904 19.0162,48.904" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 4"/>
<path id="autosatin130" d="m 25.8978,48.2871 6.4779,-2.8231 4.2014,4.6007 3.6724,4.6895 3.2042,4.8569 2.797,5.1029 1.2327,3.3963 0.7013,3.1837 0.678612,5.62359 M 25.0125,48.4678 l 2.545,3.4332 1.1804,1.8994 0.9886,1.8543 0.7389,1.8662 0.4766,1.9046 0.2627,1.9361 0.0971,1.9605 -0.1096,3.9659 -0.1922,3.979 0.0463,3.389 0.254,2.5085 M 29.75,60.25 43.25,55.875" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 5" sodipodi:nodetypes="ccccccccccccccccccccccc"/>
<path id="autosatin131" d="m 40.2822,81.0078 -4.7828,-0.0137 -1.6377,-0.287 -1.2089,-0.6472 -0.4609,-0.4993 c -0.546729,-0.59228 -0.68243,-1.521946 -0.8916,-2.3961 m 9.7111,3.8433 3.5707,-0.0078 1.5895,-0.0563 1.5005,-0.4232 0.607,-0.394 L 48.732,79.587 48.987,78.8842 49,78 48.863312,76.91759 m 0.965585,0.367554 -19.365492,0.01984" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="2" inkstitch:force_lock_stitches="True" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 7" sodipodi:nodetypes="ccccscccccccccccc"/>
</g>
<g inkscape:groupmode="layer" inkscape:label="GlyphLayer-Q" style="display:none;fill:none;stroke:#00673e;stroke-width:0.945;stroke-opacity:1;stroke-miterlimit:4;" id="g157690">
<path d="m 18.1056,71.1975 -0.094,-0.1029 m -0.931,-1.2734 -0.7643,-1.3206 -0.1975,-0.4761 v 0 l -0.3881,-0.9354 -0.4645,-1.4636 -0.2959,-1.173 v 0 l -0.0805,-0.3191 -0.3021,-1.5097 -0.2073,-1.5261 -0.0321,-0.3477 v 0 l -0.1094,-1.1862 -0.1415,-1.5339 -0.0918,-1.0223 v 0 l -0.046,-0.5119 -0.046,-1.5398 -0.0416,-1.54 -0.0044,-0.1629 v 0 l -0.0371,-1.3771 -0.0292,-1.5399 0.0225,-0.84 v 0 l 0.0184,-0.6843 0.0465,-1.5323 0.0465,-1.5323 3e-4,-0.0074 v 0 l 0.052,-1.5245 0.13,-1.5275 0.0626,-0.6968 v 0 l 0.0746,-0.8298 0.1772,-1.5218 0.1948,-1.3792 v 0 l 0.0193,-0.1367 0.2765,-1.5062 0.2765,-1.5062 0.1071,-0.5468 v 0 l 0.1869,-0.9549 0.3634,-1.4858 0.3421,-1.2079 v 0 l 0.0743,-0.2623 0.4517,-1.4565 0.504,-1.436 0.1713,-0.4037 v 0 l 0.4227,-0.9958 0.6925,-1.4085 0.5586,-0.9554 v 0 l 0.226,-0.3865 0.9259,-1.229 1.0481,-1.1594 0.1602,-0.1337 v 0 l 1.0199,-0.851 1.3084,-0.8189 0.7993,-0.3826 v 0 l 0.5921,-0.2833 1.4656,-0.4759" inkstitch:running_stitch_length_mm="2" id="autosatinrun95" inkscape:label="Points droits pour auto-remplissage satin 1" sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin124" d="m 28.2707,20.2771 -0.7103,0.1381 -0.6939,0.4127 -0.6743,0.6689 -0.6518,0.907 -1.2236,2.4549 -1.0966,3.1873 -0.9453,3.7735 -0.7695,4.2132 -0.5692,4.5066 -0.3446,4.6536 -0.0953,4.6543 0.1782,4.5086 0.4762,4.2165 0.7987,3.7781 1.1455,3.1933 0.7105,1.3316 0.8065,1.1306 0.9053,0.9111 1.0074,0.6735 1.1124,0.4175 1.2205,0.1432 1.1286,-0.1428 1.0296,-0.4164 0.9335,-0.6717 0.8398,-0.9088 0.4856,-0.7312 m -5.2128,-51.4143 -3.2901,-0.0379 -3.1312,0.2432 -1.5289,0.3617 -1.5165,0.5936 -1.5133,0.8793 -1.5193,1.2191 -1.3022,1.4437 -1.1885,1.6979 -1.078,1.9341 -0.9708,2.1529 -0.8667,2.3537 -0.7658,2.537 -1.24206,5.5526 -0.45844,3.1425 -0.32521,3.5072 -0.28259,7.6027 0.15482,7.5448 0.5286,6.4762 0.41878,2.6611 0.56986,2.3877 0.73261,2.1287 0.90703,1.8836 1.0932,1.6529 1.2909,1.4363 1.5004,1.2338 L 16,79.5 l 1.8722,0.8095 1.9187,0.5474 1.9261,0.3321 1.8945,0.1637 3.5383,0.0099 2.944,-0.1009 2.2647,0.0585 1.8238,0.1388 1.4792,0.0707 1.231,-0.1455 1.6709,-0.5497 0.9387,-0.4502 M 5.3033,49.7676 21.7435,49.5908 M 28.461,68.3292 28.9914,83.532 M 28.183,20.5177 27.9513,15.6432" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 2"/>
<path id="autosatin125" d="M 46.3701,89.4778 C 42.1364,92.4269 37.2988,90.4813 38,86.8895 c 0.6169,-3.1599 0.006,-3.618 -1.1075,-5.5053 1.0849,-0.2021 2.1116,-0.4974 2.9044,-1.1668 m 7.3024,8.6859 C 51.5315,85.816 50.7165,80.4424 47.25,80.75 43.8795,81.0491 43.526,80.0059 42.0149,78.7175 l -1.7761,1.2789 m -3.4692,5.3033 9.7227,-6.0104" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 4"/>
<path id="autosatin126" d="m 33.2746,67.2803 0.2633,-0.3965 0.6606,-1.3283 0.0764,-0.2281 m 5.2272,15.0569 0.3893,-0.1868 2.1235,-1.48 0.7405,-0.73 m -9.7386,-11.4477 6.8886,14.4584" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 5"/>
<path d="m 39.2585,70.2992 0.6034,-1.4403 0.0476,-0.1471 v 0 l 0.4338,-1.3401 0.3933,-1.5132 0.1594,-0.7697 v 0 l 0.1579,-0.7622 0.3018,-1.5356 0.1987,-1.4006 v 0 l 0.021,-0.148 0.1886,-1.5535 0.16,-1.5565 0.0427,-0.477 v 0 l 0.0969,-1.0817 0.0934,-1.5617 0.0432,-1.1067 v 0 l 0.0178,-0.4572 0.0523,-1.564 0.0228,-1.5646 -0.0011,-0.1708 v 0 l -0.0085,-1.3956 -0.046,-1.5592 -0.0237,-0.8022 v 0 l -0.0223,-0.757 -0.0497,-1.559 -0.1038,-1.4372 v 0 L 42.0294,42.5201 41.8998,40.9656 41.7702,39.4111 41.718,38.8942 v 0 l -0.1045,-1.0346 -0.2189,-1.5443 -0.1835,-1.1437 v 0 l -0.0634,-0.3953 -0.2728,-1.5342 -0.3714,-1.5124 -0.0653,-0.2332 v 0 L 40.085,30.234 39.607,28.7618 39.2642,27.9306 v 0 l -0.2456,-0.5957 -0.5985,-1.4248 -0.6715,-1.3779 -0.0182,-0.0304 v 0 l -0.7655,-1.2806 -0.9132,-1.2728 -0.4744,-0.5142 v 0 L 35.0148,20.8243 33.7954,19.853 32.6209,19.1489 v 0 L 32.5,19.0765 31.083,18.434 29.5649,18.0951" inkstitch:running_stitch_length_mm="2" id="autosatinrun97" inkscape:label="Points droits pour auto-remplissage satin 6" sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin127" d="m 29.1103,20.2992 0.7003,0.1479 0.6812,0.4212 0.6594,0.6761 0.6351,0.9129 1.1863,2.4633 1.0567,3.1916 0.906,3.7742 0.7338,4.2109 0.5404,4.5019 0.3258,4.647 0.0897,4.6464 -0.1675,4.4999 -0.446,4.2077 -0.7459,3.7696 -0.9907,2.9576 m -5.2629,-49.5277 2.7679,0.018 3.0463,0.3776 1.4299,0.3996 1.3413,0.6152 1.2635,0.8339 1.1962,1.0558 1.1399,1.2809 1.0941,1.5091 2.0937,3.7157 0.9337,2.2504 0.7604,2.5334 0.6046,2.7703 0.4661,2.961 0.586,6.3094 0.24,6.5182 -0.0092,3.9952 -0.1736,4.3432 -0.3609,4.4781 -0.5712,4.3998 -0.8043,4.1084 -1.0605,3.6037 -0.6334,1.546 -0.7061,1.34 -0.7815,1.1071 -0.1195,0.1178 M 35.0018,49.5908 49.4975,49.2373" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="2" inkstitch:force_lock_stitches="True" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 7"/>
</g>
<g inkscape:groupmode="layer" inkscape:label="GlyphLayer-P" style="display:none;fill:none;stroke:#00673e;stroke-width:0.945;stroke-opacity:1;stroke-miterlimit:4;" id="g157686">
<path d="m 15.1854,73.059 -0.2648,-1.5053 -0.1954,-1.2573 v 0 l -0.04,-0.2576 -0.208,-1.5238 -0.2079,-1.5238 -0.048,-0.3513 v 0 l -0.16,-1.1724 -0.1498,-1.5349 -0.0923,-0.9611 v 0 l -0.0551,-0.5741 -0.1474,-1.5352 -0.1297,-1.537 -0.0015,-0.0296 v 0 l -0.0783,-1.5118 -0.0797,-1.5415 -0.0299,-0.6329 v 0 L 13.2547,54.7 13.2302,53.1504 13.2094,51.9197 v 0 L 13.204,51.6004 13.2014,50.0486 13.1989,48.4968 13.1895,48.2289 v 0 l -0.0447,-1.2842 -0.057,-1.5521 -0.0305,-0.8524 v 0 l -0.0249,-0.6938 -0.043,-1.5393 -0.0395,-1.4564 v 0 L 12.9476,40.7673 12.9058,39.2274 12.864,37.6876 12.852,37.161 v 0 l -0.0232,-1.0134 -2e-4,-1.5405 -0.0024,-1.1369 v 0 l -8e-4,-0.4036 0.0313,-1.5388 0.0026,-1.5373 0.0027,-0.211 v 0 l 0.0173,-1.3224 10e-5,-1.5279 0.0047,-0.8406 v 0 l 0.0039,-0.6857 0.0517,-1.5177 0.1269,-1.4814 v 0 l 0.0033,-0.039 0.497,-1.4389 1.1524,-0.9444 0.6218,-0.15 v 0 l 0.8697,-0.2098 1.4849,-0.2884 1.2595,-0.2487 v 0 l 0.2338,-0.0462 1.507,-0.2413 1.5117,-0.1779 0.4035,-0.0272 v 0 l 1.1195,-0.0756 1.5345,0.0427 1.0263,0.1245 v 0 l 0.4794,0.0582 1.5088,0.3273 1.4301,0.5565 0.1121,0.0652 v 0 l 1.2098,0.7042 1.2059,0.949 0.5248,0.5451 v 0 l 0.5457,0.5667 0.8935,1.2634 0.6242,1.2048 v 0 l 0.0758,0.1463 0.5084,1.445 0.2952,1.5061 0.053,0.4567 v 0 l 0.1246,1.0724 0.0953,1.5366 -0.0567,1.0703 v 0 l -0.0245,0.4617 -0.216,1.5215 -0.3467,1.4902 -0.0539,0.1528 v 0 l -0.4546,1.2887 -0.6259,1.3884 -0.3821,0.7046 v 0 l -0.3413,0.6297 -0.8587,1.2592 -0.897,1.1401 v 0 l -0.0438,0.0557 -1.0425,1.1175 -1.1285,1.0316 -0.4214,0.3732 v 0 l -0.7266,0.6434 -1.2182,0.9329 -0.9521,0.7075 v 0 l -0.2693,0.2002 -1.243,0.882 -1.265,0.8471 -0.2606,0.166 v 0 l -1.0243,0.6525 -1.2849,0.8185 -0.4244,0.8534 v 0 l -0.2675,0.5376 -0.6866,1.3844" inkstitch:running_stitch_length_mm="2" id="autosatinrun93" inkscape:label="Points droits pour auto-remplissage satin 1" sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin122" d="m 18.8125,55.1562 4.0008,-2.0314 3.9418,-2.233 3.7977,-2.4679 3.5683,-2.7364 1.5954,-1.4387 1.4979,-1.5663 1.3619,-1.6867 1.1875,-1.8003 0.9746,-1.9068 0.7232,-2.0062 L 41.8949,33.184 42,31 41.7318,27.8355 41.4363,26.2772 41,24.75 40.1846,22.9024 39.0851,21.2385 37.7405,19.7753 36.1898,18.5297 34.4717,17.5186 32.6253,16.7591 30.6895,16.2681 28.7031,16.0625 24.1022,16.0361 19.4981,16.1186 14.896,16.1575 10.3007,16 9.47454,16.0336 8.76483,16.2377 8.17379,16.5904 7.70356,17.0699 7.35633,17.6543 7.13427,18.3216 7.07432,19.8175 7.74994,26.0113 7.94592,29.1201 8,32.2338 l 0.11591,10.7626 -0.03341,5.377 -0.31883,5.3629 -0.3978,5.55 -0.19002,5.552 -0.16739,10.5747 m 11.72984,-21.005 -0.4258,-5.9705 3.0228,-2.1178 3.0809,-2.3512 1.4155,-1.3072 1.2541,-1.4188 1.034,-1.5478 L 28.875,38 29.365,36.2837 29.7039,34.5401 30,31 29.7996,28.0598 29.4782,26.5874 28.9873,25.1785 28.3106,23.8821 27.4314,22.747 26.3334,21.8221 25,21.1562 l -1.0262,-0.2058 -0.9721,0.0998 -0.9031,0.3585 -0.8189,0.5705 -0.7195,0.7357 -0.6052,0.8541 -0.8066,1.8763 -0.7712,3.2178 -0.476,3.0836 -0.233,2.9673 -0.0425,2.8691 0.2769,5.5156 0.4099,5.3388 0.2042,3.4839 0.2958,3.2348 0.8422,5.0097 1.2776,5.7998 1.5621,5.4987 0.8406,2.2954 0.8552,1.8108 m 0.4929,1.0341 0.0029,0.0108 M 6.375,44.125 19.25,43.875 M 4.5,14.625 20.75,25.375 m 2.625,-12.25 -0.125,9.75 m 5.375,9 h 15.5 M 23.75,41.5 l 7.125,9.375" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 2" sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc"/>
<path d="m 15.5146,74.5374 0.3326,1.4768 0.1556,1.5353 -4e-4,0.0097 v 0 l -0.0631,1.4996 -0.3645,1.467" inkstitch:running_stitch_length_mm="2" id="autosatinrun94" inkscape:label="Points droits pour auto-remplissage satin 3" sodipodi:nodetypes="ccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin123" d="M 14.7386,81.107 12.1826,81.0646 9.64062,80.8594 8.85502,80.6525 8.23683,80.2571 7.76741,79.7093 7.42815,79.0451 7.06555,77.5123 7,75.9475 7.00846,75.413 M 15.7108,81.107 20.2935,81 22.5872,81.054 23.6528,80.7875 24.1114,80.4741 24.5,80 l 0.4518,-1.1484 0.0231,-1.1425 -0.7847,-2.1385 m -17.9748,0.4449 19.1938,0.0379" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="2" inkstitch:force_lock_stitches="True" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 4" sodipodi:nodetypes="ccccccccccccccccccccc"/>
</g>
<g inkscape:groupmode="layer" inkscape:label="GlyphLayer-O" style="display:none;fill:none;stroke:#00673e;stroke-width:0.945;stroke-opacity:1;stroke-miterlimit:4;" id="g157682">
<path d="m 17.0711,70.3381 -0.7654,-1.3323 -0.2695,-0.6144 v 0 l -0.3502,-0.7982 -0.5003,-1.4648 -0.3094,-1.284 v 0 l -0.0535,-0.2217 -0.2896,-1.5229 -0.2436,-1.5303 -0.0557,-0.4087 v 0 l -0.1532,-1.1256 -0.1691,-1.5384 -0.1155,-1.0502 v 0 l -0.0537,-0.4882 -0.0969,-1.5455 -0.0744,-1.525 -0.0087,-0.1736 v 0 l -0.0676,-1.3502 -0.0742,-1.5237 -0.0178,-0.8626 v 0 l -0.0137,-0.6613 5e-4,-1.5264 5e-4,-1.5264 6e-4,-0.026 v 0 l 0.0333,-1.4979 0.0681,-1.5215 0.0424,-0.7177 v 0 l 0.0474,-0.8042 0.1129,-1.52 0.155,-1.4019 v 0 l 0.0122,-0.1099 0.1671,-1.5117 0.1719,-1.5117 0.0948,-0.5797 v 0 l 0.1502,-0.9176 0.265,-1.4916 0.2721,-1.2666 v 0 l 0.0456,-0.2123 0.3842,-1.52 0.41,-1.5098 0.1298,-0.3686 v 0 l 0.3898,-1.1062 0.5918,-1.4366 0.4726,-0.8967 v 0 l 0.2396,-0.4546 0.8648,-1.2456 1.0147,-1.1754 0.1172,-0.1049 v 0 l 1.0347,-0.9261 1.338,-0.7453 0.7871,-0.2299 v 0 l 0.6641,-0.1941 1.5089,-0.2" inkstitch:running_stitch_length_mm="2" id="autosatinrun91" inkscape:label="Points droits pour auto-remplissage satin 1" sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin120" d="m 26.4993,22.2851 -1.8434,0.1515 -1.4429,0.3914 -1.055,0.6829 -0.6798,1.0263 -0.626,1.7427 -0.4778,1.7639 -0.5975,3.578 -0.2642,3.623 -0.1037,3.6413 -0.0134,5.7505 0.2632,5.8586 0.6196,5.7234 1.0558,5.345 0.7459,2.5871 0.5278,1.2597 0.7007,1.1574 0.9259,0.9956 1.2035,0.7741 1.5333,0.493 1.9154,0.1522 1.4907,-0.1909 1.2222,-0.4799 0.9796,-0.718 0.7629,-0.9049 0.572,-1.0409 0.1731,-0.4792 m -7.5847,-49.4634 -1.293,-0.0068 -1.7753,0.1113 -1.7488,0.3089 -1.6966,0.5022 -1.6188,0.6915 -1.5154,0.8764 -1.3864,1.0571 -1.2318,1.2336 -1.0516,1.4059 -1.3409,2.5605 -1.1291,2.6501 -0.93714,2.7243 -0.76486,2.7832 -1.09199,5.6816 -0.64002,5.7333 -0.21178,6.2585 0.04548,6.2706 0.44912,6.2492 0.42165,3.106 0.57745,3.088 0.56057,2.0266 0.79361,1.9508 1.01631,1.8314 1.2287,1.6685 1.4308,1.4622 1.6225,1.2123 1.804,0.9189 1.9751,0.582 3.3626,0.4174 3.3982,0.0773 6.8145,-0.1455 1.9091,-0.1143 1.8323,-0.3452 1.7346,-0.5668 1.6162,-0.7793 1.477,-0.9825 1.3171,-1.1767 0.8734,-1.0466 M 4.3687184,61.879126 H 23.368718 M 28.25,66.75 v 16.5 M 26.3995,22.6227 26.4027,15.3756 M 7.1594561,31.913168 21.478368,32.001556" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" sodipodi:nodetypes="cssssccscccccsscsscscccccccccccccccccccccccccccccccccccccccccccccccccccccc" inkscape:label="Auto-remplissage satin 2"/>
<path d="m 38.7083,70.5752 0.7417,-1.3997 0.4785,-1.346 v 0 l 0.0545,-0.1534 0.4334,-1.452 0.313,-1.4791 0.0901,-0.5428 v 0 l 0.1581,-0.9529 0.1736,-1.5093 0.1,-1.2511 v 0 l 0.0211,-0.2637 0.0939,-1.5177 0.0918,-1.5177 0.0079,-0.4346 v 0 l 0.0195,-1.0857 0.0241,-1.5431 0.0171,-1.1109 v 0 l 0.0068,-0.4398 0.0022,-1.5508 -0.0073,-1.5508 -0.0016,-0.1988 v 0 l -0.0103,-1.352 -0.041,-1.5497 -0.0357,-0.8372 v 0 l -0.0304,-0.7116 -0.066,-1.5488 -0.0629,-1.4764 v 0 l -0.0031,-0.0724 -0.1205,-1.5434 -0.1289,-1.5422 -0.0616,-0.5688 v 0 l -0.1048,-0.9673 -0.1809,-1.5329 -0.172,-1.2116 v 0 l -0.0445,-0.3137 -0.2412,-1.5187 -0.308,-1.5087 -0.0865,-0.3349 v 0 l -0.2953,-1.1437 -0.4504,-1.4505 -0.3745,-0.9704 v 0 l -0.1728,-0.4477 -0.6455,-1.3685 -0.7751,-1.2995 -0.1385,-0.1889 v 0 L 36.1929,22.7474 35.1488,21.6116 34.4727,21.06 v 0 l -0.5079,-0.4145 -1.3142,-0.8188 -1.4604,-0.4769 v 0 L 31.1723,19.344 29.6547,19.1253 28.1108,19.034" inkstitch:running_stitch_length_mm="2" id="autosatinrun92" inkscape:label="Points droits pour auto-remplissage satin 3" sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin121" d="m 27.4056,22.3163 1.3632,0.0985 1.2384,0.2825 1.0076,0.4558 0.6714,0.6184 1.2087,2.057 0.8698,2.0322 0.587,2.0336 0.3599,2.0612 0.2627,4.3099 L 35,41 l 0.0891,10.3966 -0.0669,5.3163 -0.2794,5.5069 -0.4219,2.3024 -0.2337,0.6467 m -6.5534,-49.4634 3.9449,0.0395 2.0046,0.1953 1.8429,0.3993 1.6389,0.657 1.4923,0.9004 1.3519,1.1059 1.2176,1.2733 1.0895,1.4027 0.9676,1.4942 1.594,3.1103 1.0239,3.2792 0.7987,3.2822 0.5991,3.2744 0.4252,3.256 0.4314,6.4136 L 48,52 l -0.0992,5.6507 -0.3794,5.6696 -0.4038,2.796 -0.6046,2.7457 -0.849,2.6771 -1.137,2.59 -0.9348,1.5373 -0.2629,0.315 m -9.946717,-18.492662 17,-0.25 M 32.855445,32.088083 47.552931,31.824779" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="2" inkstitch:force_lock_stitches="True" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" sodipodi:nodetypes="cssssccscccccsscsscsccccccccccccccccccccccccc" inkscape:label="Auto-remplissage satin 4"/>
</g>
<g inkscape:groupmode="layer" inkscape:label="GlyphLayer-N" style="display:none;fill:none;stroke:#00673e;stroke-width:0.945;stroke-opacity:1;stroke-miterlimit:4;" id="g157678">
<path d="m 14.8452,73.9593 0.1993,1.132 0.2789,1.4886 0.1965,0.9144 v 0 l 0.1298,0.604 0.23,1.5377" inkstitch:running_stitch_length_mm="2" id="autosatinrun89" inkscape:label="Points droits pour auto-remplissage satin 1" sodipodi:nodetypes="ccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin116" d="m 16.0427,81.0745 c 2.798,-0.0168 6.3325,0.2161 7.4253,-0.538 C 25.6791,79.0109 22.8792,75.1447 21.8576,72.72 18.3855,64.4792 18.5499,46.4529 18.4466,37.2236 L 9.52344,17.7109 M 15.2251,81.0082 C 12.7425,81.0231 11.0093,81.2935 8.61346,80.5195 5.76044,78.2197 7.24747,74.2393 7.50281,71.1714 8.51274,62.4439 7.69556,53.6485 7.84791,44.8907 7.80748,35.5154 8.07925,26.1361 8.15643,16.7617 8.15902,16.4466 8.31006,16.2024 8.57298,16.0147 M 5.65685,55.3361 20.3293,55.2477" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 2"/>
<path id="autosatin117" d="m 8.57298,16.0147 c 1.32226,-0.944 5.47442,-0.4581 7.80732,-0.3545 3.3214,0.1473 5.1631,3.3715 6.4638,6.4032 4.8871,11.3914 10.5411,24.3859 13.4871,33.2214 L 42.839,78.9466 M 9.52344,17.7109 18.4466,37.2236 c 1.4612,2.3398 2.5251,5.3619 3.7197,8.0712 1.7531,3.9763 3.3728,7.9337 4.8291,12.011 2.2869,6.4031 4.1312,12.8267 6.2443,19.2882 0.9058,2.77 0.7343,4.4951 5.126,4.4809 2.2692,-0.0073 4.5286,0.2728 5.7363,-0.7124 M 22.1855,48.0882 33.4992,43.1385" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 3"/>
<path id="autosatin118" d="M 42.839,78.9466 41.9904,75.8612 M 44.102,80.3625 44.48,79.9637 44.7623,79.4469 45,78 v -0.6752 m -2.2554,1.4534 1.4941,1.5837" sodipodi:nodetypes="ccccssccscsssccc" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 4"/>
<path d="m 43.0775,73.5099 -0.1847,-1.3564 v 0 l -0.0252,-0.1852 -0.21,-1.5415 -0.21,-1.5416 -0.0647,-0.4748 v 0 l -0.1453,-1.0667 -0.21,-1.5416 -0.1539,-1.1349 v 0 L 41.8185,64.2605 41.6134,62.719 41.4083,61.1774 41.3744,60.9226 v 0 L 41.2031,59.6358 40.998,58.0942 40.8761,57.1779 v 0 l -0.0832,-0.6252 -0.1453,-1.5476 0.0509,-1.517 0.0019,-0.0746 v 0 l 0.0365,-1.4423 0.032,-1.517 -0.0039,-0.8176 v 0 l -0.0033,-0.7009 -0.0073,-1.5186 -0.0072,-1.5185 -2e-4,-0.0396 v 0 l -0.007,-1.4789 -0.0068,-1.5348 -0.0035,-0.764 v 0 L 40.726,41.2975 40.6792,39.7503 40.6374,38.305 v 0 l -0.0029,-0.1019 -0.0539,-1.5463 -0.1017,-1.5427 -0.0383,-0.5812 v 0 l -0.0634,-0.9614 -0.142,-1.5347 -0.1873,-1.2591 v 0 l -0.0386,-0.2592 -0.2258,-1.5183 -0.2,-1.5181 -0.0595,-0.4455 v 0 l -0.1431,-1.0708 -0.2867,-1.4872 -0.2308,-1.16 v 0 l -0.0708,-0.3554 -0.267,-1.5204 -0.1978,-1.4986 0.0031,-0.36 v 0 l 0.0101,-1.1805 0.2957,-1.4955" inkstitch:running_stitch_length_mm="2" id="autosatinrun90" inkscape:label="Points droits pour auto-remplissage satin 5" sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin119" d="m 38.4866,15.8917 -2.1349,-0.0285 -2.1419,0.082 -0.9424,0.1822 -0.7869,0.3296 -0.5787,0.5168 -0.3182,0.744 -0.0728,0.9991 0.1416,0.9902 0.7253,1.9682 0.9794,1.9765 0.8313,2.014 1.8395,6.5702 0.5238,4.5472 0.1859,4.5356 -0.0884,9.2637 -0.318,4.7023 5.6592,20.5764 m -2.399,-59.9253 2.1239,-0.0622 1,0.0368 0.8924,0.1679 0.7349,0.3632 0.5277,0.623 0.2706,0.9471 -0.0363,1.3356 -0.4423,4.9115 -0.1224,4.9402 0.1343,9.8857 0.2663,14.2364 -0.0057,11.592 L 45,76.4999 v 0.8249 M 35.1786,43.7572 46.1387,43.5804" sodipodi:nodetypes="ccccssccscsssccc" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="2" inkstitch:force_lock_stitches="True" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 6"/>
</g>
<g inkscape:groupmode="layer" inkscape:label="GlyphLayer-M" style="display:none;fill:none;stroke:#00673e;stroke-width:0.945;stroke-opacity:1;stroke-miterlimit:4;" id="g157674">
<path d="m 14.9618,74.0845 0.2006,1.2047 0.2129,1.5188 0.0937,0.8695 v 0 l 0.069,0.6396 -0.0407,1.5364" inkstitch:running_stitch_length_mm="2" id="autosatinrun88" inkscape:label="Points droits pour auto-remplissage satin 1" sodipodi:nodetypes="ccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin110" d="M 15.4374,81.0999 C 16.9549,81.0827 17.1961,81.0382 18.7069,81 20.4868,80.9549 23.5065,81.986 24,80 24.5493,77.7895 23.0982,75.5299 22.1562,73.4686 19.0764,66.7292 18.0331,59.3762 17,52.125 16.3311,47.4297 16.297,42.7118 16,37.9819 15.9262,36.8068 16.3147,35.6631 16.9402,35.1658 L 9.46875,16.9062 M 14.1558,81.1441 C 12.6397,81.1612 11.1289,81.1068 9.64062,80.8594 6.283,80.3011 6.73631,75.8284 7.19531,73.3047 8.2263,67.6361 8,61.9049 8,56.1949 V 19 C 8,17.8904 8.14838,16.6112 8.89021,16.1016 M 6.01041,51.7122 18.0312,51.5354" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 2"/>
<path id="autosatin111" d="M 8.89021,16.1016 C 9.11378,15.9481 9.39126,15.8644 9.73484,15.8763 11.0496,15.922 12.1061,15.9859 13.4698,16 c 2.2823,0.0237 5.0415,-0.5854 6.6474,1.5312 C 25.3228,25.8716 27.1869,33.5297 30,42 l 0.5,19.3125 M 9.46875,16.9062 c 2.46755,6.0957 4.95665,12.3837 7.47145,18.2596 4.5554,8.2924 7.5306,16.0972 10.9348,23.9592 0.8459,1.9381 1.8641,4.0289 2.7504,3.9753 M 18.208,38.6307 29.3449,33.5042" sodipodi:nodetypes="cssccccccccc" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 3"/>
<path id="autosatin112" d="M 30.5,61.3125 30,42 c 1.2194,-2.9412 2.1888,-5.9483 3.125,-9 1.6221,-5.2873 3.5899,-10.6603 7,-15.1016 1.9135,-2.4921 5.1757,-2.0373 7.8736,-2.039 1.7548,-0.0011 3.6064,-0.1993 5.2202,0.4218 M 30.6254,63.1003 C 31.0262,63.076 31.4,62.6134 31.7188,61.5 c 0.861,-3.0074 1.8214,-5.9408 3.0624,-8.7812 0.3725,-0.8597 7.6167,-14.4561 8.5682,-16.3915 L 52.6353,17.4396 M 31.1569,33.239 42.5148,40.0007" sodipodi:nodetypes="ccsssccscsccc" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 4"/>
<path id="autosatin113" d="m 51.148,20.4647 1.4873,-3.0251 m 1.5698,1.7943 0.0516,-0.8689 -0.2443,-1.2054 -0.3141,-0.4925 -0.4795,-0.3859 m 0.1131,0.0035 -0.776,1.3039" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 5"/>
<path id="autosatin114" d="M 54.2051,19.2339 54.1774,19.6992 54,20.9638 l -1,9.1707 -0.4695,9.813 -0.0194,9.7527 0.5122,19.4628 0.5946,4.4444 0.2083,1.651 m -2.6782,-54.7937 -7.7986,15.8626 -0.5646,8.0062 -0.7478,7.7328 -0.9191,7.1291 -1.0788,6.1952 -1.1421,4.9062 -1.2798,4.8204 -0.4729,1.1546 m 3.5143,-24.648 13.4351,-0.1768" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 6"/>
<path id="autosatin115" d="M 45.0611,81.0187 41.5165,81.0984 38,80.875 l -1.1078,-0.3103 -0.6019,-0.5106 -0.1976,-0.6693 0.1053,-0.7863 0.7129,-1.7569 0.2334,-0.5698 m 8.9774,4.7469 2.8904,-0.0187 1.6703,-0.0181 1.6155,-0.3492 0.6806,-0.3723 0.539,-0.5433 0.3547,-0.7436 L 54,78 53.8859,75.7321 53.8261,75.2584 m 0.8491,0.0489 -18.4054,1.1074" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="2" inkstitch:force_lock_stitches="True" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 8"/>
</g>
<g inkscape:groupmode="layer" inkscape:label="GlyphLayer-L" style="display:none;fill:none;stroke:#00673e;stroke-width:0.945;stroke-opacity:1;stroke-miterlimit:4;" id="g157670">
<path d="M 13.457,70.6855 13.1528,69.1798 13.0826,68.334 v 0 l -0.0573,-0.6894 -0.0388,-1.5364 -0.026,-1.5296 v 0 l -2e-4,-0.0079 -0.0193,-1.5383 -0.0193,-1.5382 -0.0084,-0.6738 v 0 l -0.0109,-0.8645 0.0063,-1.5379 0.0162,-1.3559 v 0 l 0.0021,-0.1827 0.0184,-1.5386 0.0183,-1.5386 0.0059,-0.4983 v 0 l 0.0124,-1.0403 0.0043,-1.54 0.0114,-1.1781 v 0 l 0.0035,-0.3629 0.0134,-1.5274 0.0051,-1.5431 8e-4,-0.325 v 0 l 0.0032,-1.2181 -0.0183,-1.5431 -0.0206,-0.997 v 0 l -0.0113,-0.546 -0.0318,-1.5431 -0.0319,-1.5431 -0.0026,-0.1255 v 0 l -0.0293,-1.4176 -0.0134,-1.5432 -0.0188,-0.7971 v 0 L 12.8282,33.7685 12.772,32.2287 12.717,30.7571 v 0 L 12.7147,30.6954 12.6464,29.1638 12.5977,27.6355 12.5884,27.001 v 0 l -0.013,-0.8911 0.0417,-1.5251 0.1367,-1.3346 v 0 l 0.018,-0.1751 0.2712,-1.4885 0.405,-1.4716 0.1525,-0.5213 v 0 l 0.2797,-0.9554 0.3851,-1.4737" inkstitch:running_stitch_length_mm="2" id="autosatinrun86" inkscape:label="Points droits pour auto-remplissage satin 1" sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin108" d="m 13.9221,15.9446 -1.9094,-0.0939 -1.9616,-0.0316 -0.8989,0.1143 -0.79013,0.258 -0.64079,0.4446 -0.45088,0.6738 -0.63466,2.0397 -0.25498,2.1054 0.0366,2.1559 0.24012,2.1909 0.73849,4.4252 0.32221,2.2035 0.17341,2.1771 0.18113,9.3329 -0.21113,9.331 -0.55668,10.4254 -0.32845,10.4377 0.13585,2.2854 0.22663,1.1503 0.37126,1.0744 0.54503,0.9378 0.74794,0.7404 0.97996,0.4824 1.24117,0.1636 11.3678,-0.1767 5.684,-0.001 5.6794,0.1648 1.2003,-0.0824 1.0331,-0.3464 0.8681,-0.5731 0.7053,-0.7623 0.5448,-0.914 0.3864,-1.0283 0.2302,-1.105 L 39,75 v -0.974 m -23.7521,-58.0372 3.4275,-0.1448 1.1489,-0.002 0.6851,0.2205 0.3748,0.4875 0.1722,0.6042 -0.1449,1.4843 -0.5995,1.7294 -0.8171,1.8269 -0.5526,1.4794 -0.3678,1.5443 -0.4382,3.1682 -0.2947,4.1174 -0.0257,4.1395 0.1819,8.2901 0.0838,5.1849 0.3671,5.2062 0.4263,4.2495 0.5159,3.9589 0.3477,2.0103 0.5311,1.8192 0.4224,0.7437 0.5741,0.5827 0.761,0.3841 0.9832,0.1475 2.0309,0.1141 1.458,0.0189 0.5551,-0.1442 0.461,-0.3097 0.3832,-0.5223 0.3218,-0.7821 0.7367,-2.4983 0.2338,-1.0153 M 4.47824,21.724 21.6329,21.6356 m 2.4087,46.5168 V 82.1177 M 6.1174175,59.456884 20.179917,59.394384" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 2" sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc"/>
<path d="m 33.9475,70.5915 0.148,-1.5376 0.1069,-1.5391 0.0118,-0.1929 v 0 l 0.0827,-1.349 0.0778,-1.5104 0.046,-0.8934 v 0 l 0.0318,-0.617 0.0469,-1.5132 0.0288,-1.5148 4e-4,-0.1117 v 0 l 0.0053,-1.4031 -0.0329,-1.5145 -0.0467,-0.8392 v 0 L 34.4168,55.3821 34.3264,53.8696 34.124,52.3693 34.1145,52.3152 v 0 l -0.2563,-1.4648 -0.3906,-1.4652 -0.2649,-0.707 v 0 l -0.2668,-0.7122 -0.6977,-1.3889 -0.821,-1.1875 v 0 l -0.0597,-0.0863 -0.9878,-1.1983 -0.856,-1.2447" inkstitch:running_stitch_length_mm="2" id="autosatinrun87" inkscape:label="Points droits pour auto-remplissage satin 3" sodipodi:nodetypes="cccccccccccccccccccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin109" d="m 28.6303,42.6371 -0.9536,0.6352 -0.6208,0.824 -0.1709,0.9898 0.3963,1.1326 1.2944,2.6832 0.816,2.7994 0.4402,2.8707 0.1673,2.897 -0.096,2.5698 -0.3663,2.5411 -0.346,1.5019 m 0.5442,-21.975 1.0203,-0.3467 0.913,-0.0032 0.8887,0.2651 0.9477,0.4582 1.2577,0.8261 1.0531,1.0157 0.8652,1.1704 0.6943,1.2905 0.5401,1.3761 0.4027,1.4268 0.4604,2.8676 0.2682,4.4208 0.0503,4.4307 L 39,70.173 v 3.853 M 26.5494,48.2236 37.1024,43.0801 m -8.693929,16.472754 12.25,-0.0625" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="2" inkstitch:force_lock_stitches="True" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 4" sodipodi:nodetypes="cccccccccccccccccccccccccccccccc"/>
</g>
<g inkscape:groupmode="layer" inkscape:label="GlyphLayer-K" style="display:none;fill:none;stroke:#00673e;stroke-width:0.945;stroke-opacity:1;stroke-miterlimit:4;" id="g157666">
<path d="m 16.8285,70.3043 0.0082,1.0719 0.0322,1.5344 -3e-4,1.0181 v 0 l -10e-5,0.5017 -0.0782,1.52 -0.1592,1.545 -0.0083,0.0473 v 0 l -0.2541,1.448 -0.4608,1.4547" inkstitch:running_stitch_length_mm="2" id="autosatinrun83" inkscape:label="Points droits pour auto-remplissage satin 1" sodipodi:nodetypes="cccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin102" d="M 16.0805,81.0186 20.5346,81 l 1.5392,0.0468 1.6171,-0.063 0.7362,-0.1695 0.6339,-0.3131 0.491,-0.4955 0.3074,-0.7166 0.158,-1.7446 -0.2386,-1.7588 -0.9495,-3.4684 -1.2769,-5.4995 -0.905,-5.5653 -0.5214,-5.6123 -0.1253,-5.6106 M 15.2187,81.0186 8.89062,80.8047 7.79337,80.4954 7.18585,79.8276 6.97241,78.888 l 0.085,-1.1243 0.6827,-2.4555 0.72864,-2.152 0.96865,-4.3047 0.6066,-4.3757 0.6748,-8.8196 0.2153,-5.7787 m -0.5574,0.0923 12.1798,0.1674" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 2"/>
<path d="m 16.4935,46.8974 -0.0013,-1.5464 -3e-4,-0.4135 v 0 l -0.001,-1.144 -0.0012,-1.5575 -0.0018,-0.9233 v 0 L 16.4867,40.6785 16.4791,39.121 16.4722,37.6879 v 0 l -6e-4,-0.1243 -0.0076,-1.5575 -0.0076,-1.5574 6e-4,-0.3856 v 0 l 0.0018,-1.1719 0.01,-1.5574 0.0057,-0.8955 v 0 l 0.0043,-0.662 0.0099,-1.5574 0.0091,-1.4054 v 0 l 9e-4,-0.152 -0.0359,-1.5565 -0.0697,-1.5534 -0.0286,-0.3598 v 0 L 16.2701,22.0039 16.18,20.4532 16.181,19.5733 v 0 l 8e-4,-0.6731 -0.0199,-1.544" inkstitch:running_stitch_length_mm="2" id="autosatinrun84" inkscape:label="Points droits pour auto-remplissage satin 3" sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin103" d="M 15.6969,15.9539 14.1398,16 12.928,15.9553 l -1.1467,0.1141 -0.9136,0.4739 -0.3168,0.4348 -0.1955,0.6002 -0.1184,2.2092 0.2745,2.1683 0.3576,2.2244 0.1309,2.3774 -0.0937,7.2748 0.0711,7.2792 0.0121,7.2768 -0.0554,1.4891 m 5.4478,-33.9236 2.2801,-0.1223 1.0728,0.0597 1.1402,0.2337 0.5681,0.2848 0.3714,0.4417 0.212,0.5629 0.0899,0.6482 L 22,20.7911 V 43 50 l 7e-4,0.0296 M 9.72272,45.8785 H 23.1577" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 4"/>
<path id="autosatin104" d="M 22,50 24.401,47.924 27,46 32.3957,42.0753 M 22,48.7188 V 43 l 3.5488,-3.8354 1.9428,-2.416 m -0.3069,-0.1874 5.3744,5.8383" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 5"/>
<path d="m 32.1035,37.2473 1.0118,-1.1644 0.4143,-0.4964 v 0 l 0.5585,-0.6693 0.9657,-1.1708 0.7122,-1.0292 v 0 l 0.1523,-0.2202 0.8577,-1.2528 0.7497,-1.3188 0.1614,-0.2969 v 0 l 0.564,-1.0376 0.6159,-1.4395 0.2517,-0.8582 v 0 l 0.1817,-0.6191 0.2901,-1.4881 0.2201,-1.4632 v 0 l 0.0082,-0.0545 0.2202,-1.5212 0.249,-1.5423 0.1141,-0.473 v 0 l 0.2442,-1.0115 0.6105,-1.4116" inkstitch:running_stitch_length_mm="2" id="autosatinrun85" inkscape:label="Points droits pour auto-remplissage satin 6" sodipodi:nodetypes="cccccccccccccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin105" d="M 40.3125,15.9069 38.7681,16 l -3.2879,-0.0079 -1.4509,0.1903 -0.5056,0.2315 -0.2934,0.3558 -0.2401,0.9859 -0.0084,1.05 0.377,2.2422 0.3997,2.3482 0.02,1.1825 -0.2004,1.1715 -0.8681,2.4985 -1.1014,2.3788 -1.3006,2.27 -1.4661,2.1723 -1.3503,1.679 m 13.3522,-20.873 3.683,-0.1457 1.4462,0.097 0.902,0.2981 0.7006,0.7276 0.3851,0.843 0.1271,0.9261 -0.0732,0.9772 -0.5168,1.9789 -0.6267,1.7972 -1.4758,3.6869 -1.9217,3.4795 -2.3044,3.2424 -2.6243,2.976 -3.9989,3.7514 -2.1503,1.5641 m -4.1114,-9.9854 7.4246,8.4853" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 7"/>
<path id="autosatin106" d="m 34.546,40.5112 0.954,2.1138 4.0862,6.1552 3.2176,4.919 2.9766,4.9348 1.864,3.5375 1.6955,3.629 1.5409,3.6997 1.4004,3.7498 0.3456,1.3827 0.0102,0.2061 M 33.875,41.125 27,46 l 2.3364,5.005 2.5308,4.9638 0.8782,2.5128 0.6879,3.2259 1.1148,6.9031 0.4919,4.5528 -0.04,4.5685 -0.0224,0.3583 M 31.2895,59.1368 44.0174,52.0657" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 8"/>
<path id="autosatin107" d="M 43.0254,80.968 35.5,80.875 35.2094,80.7758 35.021,80.5231 34.877,79.6965 34.9776,78.0902 m 8.8212,2.922 3.7127,-0.0122 1.5093,-0.18 1.2567,-0.5124 0.9998,-0.7913 0.7389,-1.0167 0.474,-1.1885 0.2049,-1.3068 -0.0581,-1.1655 m 0.8885,-0.0627 -19.4377,3.5764" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="2" inkstitch:force_lock_stitches="True" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 10"/>
</g>
<g inkscape:groupmode="layer" inkscape:label="GlyphLayer-J" style="display:none;fill:none;stroke:#00673e;stroke-width:0.945;stroke-opacity:1;stroke-miterlimit:4;" id="g157662">
<path d="M 11.6892,68.8486 11.3383,67.36 11.3266,67.275 v 0 l -0.196,-1.4276 -0.0836,-1.5247 -0.0355,-0.6892 v 0 l -0.043,-0.8353 -0.0323,-1.5278 -0.0194,-1.2933 v 0 l -0.0036,-0.2377 -0.0423,-1.5309 0.0055,-1.5292 0.0116,-0.3594 v 0 l 0.0379,-1.1688 0.0727,-1.5283 0.0938,-0.954 v 0 l 0.056,-0.5692 0.1856,-1.5334 0.2267,-1.5076 0.0028,-0.0167 v 0 l 0.2549,-1.4821 0.3112,-1.5275 0.1535,-0.5751 v 0 l 0.2449,-0.9174 0.4014,-1.483" inkstitch:running_stitch_length_mm="2" id="autosatinrun81" inkscape:label="Points droits pour auto-remplissage satin 1" sodipodi:nodetypes="cccccccccccccccccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin100" d="M 12.6655,41.8041 11.9151,41.8006 11.3219,41.985 10.2656,42.7656 9.51092,43.5401 8.90276,44.416 8.04493,46.3892 7.52987,48.5193 7.19531,50.6406 6.9043,53.781 6.85562,56.9404 7,63.2702 l -0.0668,3.5009 -0.00501,3.5334 0.14441,1.7398 0.30836,1.7011 0.5218,1.6467 0.78474,1.5767 0.93711,1.2205 1.13419,0.9602 1.2926,0.7275 1.4122,0.5227 1.4933,0.3458 1.5355,0.1967 3.0432,0.0578 6.9903,-0.0218 3.453,-0.3498 1.686,-0.4102 1.6476,-0.6244 1.2493,-0.7415 0.7352,-0.6771 m -21.8719,-36.1985 1.0068,0.2597 0.8359,0.5148 0.5583,0.7803 0.1739,1.0562 -0.2831,4.1421 -0.5919,4.1452 -0.3268,2.9829 0.1115,3.0294 0.4932,3.0057 0.8178,2.9117 0.7669,1.8245 1.1525,1.797 0.7129,0.7319 0.7997,0.5375 0.8834,0.2806 0.9639,-0.0387 0.8913,-0.3235 0.7688,-0.5263 0.6567,-0.6899 0.5548,-0.8143 0.8454,-1.8448 0.422,-1.4045 m -4.7406,3.6346 0.3907,14.2578 M 5.27344,50.0977 16.6992,51.2695 m 8.4304,12.4698 10.5745,15.1943 M 5.8125,65.5625 17.3125,65.25" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" sodipodi:nodetypes="csssssssssccsssssssssssccccccc" inkscape:label="Auto-remplissage satin 2"/>
<path d="m 31.7414,68.4284 0.3159,-1.4144 v 0 l 0.0275,-0.1229 0.1496,-1.5698 0.1076,-1.5714 0.014,-0.3799 v 0 l 0.044,-1.1956 0.0473,-1.5766 0.0266,-0.8839 v 0 l 0.0208,-0.6927 0.035,-1.5766 0.0255,-1.3878 v 0 l 0.0035,-0.1888 -0.048,-1.5761 -0.073,-1.5752 -0.0168,-0.315 v 0 l -0.067,-1.2593 -0.0896,-1.5739 -0.0474,-0.8191 v 0 l -0.0436,-0.7548 -0.0516,-1.5778 -0.0336,-1.3229 v 0 L 32.083,44.8907 32.0442,43.3646 31.9943,41.8389 31.9894,41.4373 v 0 L 31.9757,40.3131 31.9603,38.7873 31.9286,37.78 v 0 L 31.9123,37.2638 31.8557,35.741 31.8348,34.22 31.831,34.1235 v 0 l -0.0562,-1.4196 -0.0678,-1.515 -0.0318,-0.7201 v 0 l -0.0351,-0.7949 -0.1133,-1.5542 -0.0984,-1.3003 v 0 l -0.0191,-0.2531 -0.1278,-1.551 -0.2614,-1.5314 -0.0529,-0.2896 v 0 l -0.2259,-1.2355 -0.2322,-1.5387 -0.0482,-0.8445 v 0 L 30.423,18.911 30.5922,17.4005" inkstitch:running_stitch_length_mm="2" id="autosatinrun82" inkscape:label="Points droits pour auto-remplissage satin 3" sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin101" d="M 30.5917,15.9388 26.1753,16 24.284,16.1159 23.4972,16.4038 23,17 l -0.2443,0.9685 -0.019,0.9809 0.4429,1.9852 0.7594,1.9925 0.686,1.9713 1.0053,4.4009 0.7097,4.4657 0.436,4.5036 0.1844,4.5146 0.1021,5.2957 -0.0055,5.3077 -0.349,5.277 -0.3771,2.6137 -0.5516,2.5899 -0.1403,0.467 m 5.6778,-48.3264 2.6884,-0.0461 2.6823,0.0852 0.763,0.1754 0.4731,0.3651 0.2425,0.5139 0.0713,0.6218 -0.1329,1.4031 -0.1045,1.343 -0.0097,4.8611 -0.3807,4.8548 -0.4174,5.8085 -0.1254,5.8211 0.1845,5.8229 0.5124,5.8136 0.2958,4.1224 0.0297,4.1394 L 38,70 l -0.1948,2.812 -0.3016,1.3954 -0.4592,1.3388 -0.6326,1.2452 -0.8222,1.1144 -0.2926,0.2694 m -13.7892,-57.3236 18.125,0.125 m -14.226333,34.25309 14.125,-0.1875" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="2" inkstitch:force_lock_stitches="True" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" sodipodi:nodetypes="csssssssssccsssssssssssccccccccccccccccccccccccc" inkscape:label="Auto-remplissage satin 4"/>
</g>
<g inkscape:groupmode="layer" inkscape:label="GlyphLayer-I" style="display:none;fill:none;stroke:#00673e;stroke-width:0.945;stroke-opacity:1;stroke-miterlimit:4;" id="g157658">
<path d="m 15.9912,73.7208 0.0178,-1.3766 0.0195,-1.5143 0.0208,-0.7272 v 0 l 0.0225,-0.7906 0.0467,-1.5183 0.0334,-1.3082 v 0 l 0.0054,-0.2116 0.0281,-1.5216 0.0444,-1.5234 0.0063,-0.361 v 0 l 0.0207,-1.168 0.0183,-1.5302 0.0084,-0.9201 v 0 l 0.0055,-0.6105 -0.0148,-1.5343 0.0082,-1.4737 v 0 l 4e-4,-0.0622 0.0085,-1.5359 0.0086,-1.5359 -0.0015,-0.4846 v 0 l -0.0032,-1.0519 0.0075,-1.5378 0.0062,-1.0289 v 0 l 0.0031,-0.509 0.0093,-1.5378 0.0095,-1.5389 -3e-4,-0.0329 v 0 L 16.316,43.2818 16.3118,41.7552 16.3105,41.1569 v 0 l -0.0019,-0.9282 -0.0031,-1.5266 -0.0024,-1.1638 v 0 l -7e-4,-0.3628 -0.0031,-1.5266 -0.0038,-1.5266 -5e-4,-0.2026 v 0 l -0.0034,-1.324 -0.004,-1.5266 -0.0127,-0.768 v 0 l -0.0126,-0.758 -0.0322,-1.5259 -0.0393,-1.3337 v 0 L 16.1852,26.4921 16.1213,24.9682 16.0575,23.4443 16.0419,23.068 v 0 l -0.0475,-1.1477 -0.0631,-1.524 0.0284,-0.9442 v 0 l 0.0174,-0.5795 0.3365,-1.4854" inkstitch:running_stitch_length_mm="2" id="autosatinrun79" inkscape:label="Points droits pour auto-remplissage satin 1" sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin98" d="M 16.6009,15.9442 14.7941,16 l -1.8156,0.059 -1.3305,0.2642 -0.912,0.4856 -0.56,0.7232 -0.27449,0.9769 -0.05565,1.247 0.27914,3.3691 0.3046,3.6345 0.1561,3.6524 0.0879,14.2342 -0.1928,7.1001 -0.4269,7.0961 -0.46509,4.11 -0.6687,4.0572 -1.5373,8.0921 -0.07454,0.3953 m 9.68333,-59.5405 1.9701,-0.0557 0.9291,0.0374 0.9842,0.1869 0.5334,0.2585 0.3536,0.401 0.3029,1.1005 L 22,20.38 l -0.0177,15.2488 -0.0169,7.6242 0.1171,7.622 0.3278,6.5752 0.5945,6.5588 0.8452,6.5328 0.7822,4.7071 M 9.11505,45.7294 22.9257,45.8675" sodipodi:nodetypes="ccsssssccsssscsc" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 2"/>
<path d="m 15.954575,75.84165 0.01093,1.04765 0.0013,0.45 v 0 l 0.0033,1.0815 0.0606,1.5268" inkstitch:running_stitch_length_mm="2" id="autosatinrun80" inkscape:label="Points droits pour auto-remplissage satin 3" sodipodi:nodetypes="cccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin99" d="M 15.8931,80.9619 12.2972,81.0444 8.71094,80.9297 7.86418,80.693 7.31682,80.185 7.01642,79.4712 6.91051,78.6168 7.07239,76.7481 7.30827,75.4969 M 16.4058,80.9375 21.31,81 l 1.5239,-0.0622 1.2953,-0.4641 0.4811,-0.4093 0.327,-0.5416 L 25.078,78.8382 25,78 24.9297,77.0391 24.6322,75.2489 M 6.4218,75.6076 25.5165,75.3351" sodipodi:nodetypes="ccsssssccsssscsc" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="2" inkstitch:force_lock_stitches="True" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 4"/>
</g>
<g inkscape:groupmode="layer" inkscape:label="GlyphLayer-H" style="display:none;fill:none;stroke:#00673e;stroke-width:0.945;stroke-opacity:1;stroke-miterlimit:4;" id="g157654">
<path d="m 15.9834,70.205 -0.0649,1.3773 -0.0592,1.5142 -0.0102,0.7219 v 0 l -0.0116,0.8276 -0.0423,1.5512 -0.0466,1.2359 v 0 l -0.011,0.2918 -0.1067,1.546 -0.1565,1.5072" inkstitch:running_stitch_length_mm="2" id="autosatinrun76" inkscape:label="Points droits pour auto-remplissage satin 1" sodipodi:nodetypes="cccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin93" d="m 15.7438,81.0219 2.7888,-0.0401 2.2317,-0.0137 1.9745,-0.1044 0.8209,-0.1704 0.6728,-0.2942 0.4966,-0.4516 0.2927,-0.6428 0.13,-0.9286 -0.0309,-0.9351 -0.3866,-1.8849 -0.5555,-1.8965 -0.4077,-1.8989 -0.986,-8.5712 -0.6033,-8.6533 -0.0412,-1.7111 M 15.0878,81.0392 11.1375,80.9844 7.87838,80.6981 7.27358,80.5207 6.82083,80.2299 6.50546,79.8376 6.31281,79.3559 6.23708,78.1724 6.47639,76.7757 7.4311,73.7277 8.23893,70.9819 9.96368,60.8667 10.593,55.7826 10.7649,53.1365 m -0.5757,0.1154 12.523,-0.3423" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 2"/>
<path d="m 16.484,51.4205 0.0182,-1.561 0.0024,-1.344 v 0 l 4e-4,-0.2179 0.0119,-1.5122 0.0123,-1.5431 0.0028,-0.3429 v 0 l 0.0095,-1.2002 0.0158,-1.543 0.01,-0.8728 v 0 l 0.0076,-0.6703 0.0176,-1.5431 -0.0023,-1.4026 v 0 l -3e-4,-0.1406 -0.0066,-1.5433 -0.0066,-1.5432 -0.0018,-0.3891 v 0 L 16.5695,32.897 16.5329,31.3546 16.5111,30.4358 v 0 l -0.0148,-0.6236 -0.0365,-1.5424 -0.0415,-1.449 v 0 L 16.4157,26.728 16.3206,25.1906 16.2261,23.6532 16.2146,23.2106 v 0 l -0.0284,-1.0941 6e-4,-1.5337 -0.0159,-0.9879 v 0 l -0.0089,-0.5513 0.0237,-1.5513" inkstitch:running_stitch_length_mm="2" id="autosatinrun77" inkscape:label="Points droits pour auto-remplissage satin 3" sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin94" d="m 16.0264,15.9707 -1.3475,0.0113 -2.0497,0.1325 -0.8237,0.2109 -0.6801,0.3343 -0.5291,0.4778 -0.371,0.6416 -0.2056,0.8255 -0.03298,1.0297 0.41638,3.7407 0.4527,3.6635 0.2848,6.0279 0.0502,5.9051 -0.2651,11.689 -0.1608,2.476 m 5.6413,-37.1486 1.7828,-0.0386 1.6866,0.0839 1.3512,0.3688 0.4751,0.342 0.3016,0.4742 0.3225,1.562 -0.0424,1.5849 L 22.1004,21.962 22,23.5601 V 43 l 0.0383,5.579 0.1023,4.2461 M 9.47266,48.0469 23.0469,47.5586" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 4"/>
<path id="autosatin95" d="m 22.1818,54.5362 c 0.4478,-4.3282 3.4669,-8.0424 7.6017,-9.6089 1.5735,-0.5961 4.1483,-1.1215 5.6281,-1.0381 l 0.5747,-6.438 M 22.0459,51.6113 22,43 c 3.4924,-2.9251 7.9393,-4.1234 12.3055,-5.5147 0.7933,-0.2528 1.3346,-0.6711 1.6885,-1.2011 m -9.2362,1.7041 2.5391,8.3984" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 5"/>
<path d="M 41.3991,35.892 41.3689,34.3521 41.364,34.0067 v 0 l -0.0172,-1.1941 0.0071,-1.5369 -0.0013,-0.8832 v 0 l -0.001,-0.653 -0.0019,-1.536 -0.0192,-1.4252 v 0 L 41.3291,26.6714 41.3084,25.1392 41.2712,23.6083 41.2538,23.165 v 0 l -0.0427,-1.0893 -0.0162,-1.5371 0.0243,-0.9867 v 0 l 0.0136,-0.5524 0.0055,-1.5394" inkstitch:running_stitch_length_mm="2" id="autosatinrun78" inkscape:label="Points droits pour auto-remplissage satin 6" sodipodi:nodetypes="ccccccccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin96" d="m 41.504,15.9463 2.0855,0.0356 1.9126,0.092 0.7456,0.1563 0.6055,0.2647 0.4656,0.3991 0.326,0.5597 0.1866,0.7464 0.0475,0.9591 -0.2544,4.5157 -0.4229,4.6158 -0.3536,4.6573 -0.0467,4.6405 0.1775,7.7444 0.124,7.3616 0.4267,7.1738 0.4382,3.5773 0.6475,3.6034 0.8812,5.4525 0.2674,2.9193 m -9.1142,-59.4745 -3.236,0.1451 -1.2518,0.263 -0.758,0.4557 -0.5323,1.0065 -0.2619,1.2432 -0.0491,1.4247 0.106,1.5514 0.4461,3.2632 0.3736,3.1105 0.3104,3.8915 0.1974,3.9831 -0.2138,3.7955 -0.3686,3.8095 -0.9198,12.9407 -0.6995,8.0353 -0.7656,6.1418 -0.7545,3.0697 -0.5331,2.1287 m 1.9523,-28.3538 h 14.4531" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 7"/>
<path id="autosatin97" d="m 40.7471,80.9047 -7.8695,-0.2066 -0.5432,-0.0814 -0.4138,-0.206 -0.4873,-0.7388 -0.1129,-1.0965 0.1659,-1.3605 0.2528,-1.0095 m 9.8625,4.6993 3.1101,0.0595 2.1059,-0.0165 1.7774,-0.3126 0.6746,-0.3549 0.4832,-0.5342 0.2556,-0.7483 L 50,78 49.7638,75.4208 m 0.912,0.0605 -19.8639,0.8602" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="2" inkstitch:force_lock_stitches="True" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 9"/>
</g>
<g inkscape:groupmode="layer" inkscape:label="GlyphLayer-G" style="display:none;fill:none;stroke:#00673e;stroke-width:0.945;stroke-opacity:1;stroke-miterlimit:4;" id="g157650">
<path d="m 16.9276,68.2712 -0.6828,-1.4028 -0.1496,-0.3703 v 0 l -0.4376,-1.0828 -0.4895,-1.4921 -0.2889,-0.9941 v 0 l -0.1496,-0.5147 -0.3728,-1.5252 -0.309,-1.5412 -0.018,-0.0938 v 0 l -0.279,-1.4492 -0.1964,-1.5588 -0.0825,-0.7218 v 0 L 13.3758,54.6845 13.273,53.1177 13.1938,51.7621 v 0 l -0.0124,-0.212 -0.0382,-1.5694 -0.0064,-1.5705 -0.0045,-0.4207 v 0 l -0.0121,-1.1307 0.0049,-1.5346 0.043,-1.1072 v 0 l 0.0165,-0.4266 0.0595,-1.5337 0.0672,-1.5338 0.0239,-0.2754 v 0 l 0.1087,-1.253 0.1505,-1.5262 0.1289,-0.9737 v 0 l 0.0719,-0.5429 0.212,-1.5142 0.2714,-1.4986 0.0342,-0.1705 v 0 l 0.2647,-1.3208 0.3658,-1.4722 0.2425,-0.8765 v 0 l 0.1756,-0.6346 0.5123,-1.4774 0.6101,-1.4263 v 0 l 0.0029,-0.007 0.7294,-1.3681 0.8515,-1.2968 0.4218,-0.5129 v 0 l 0.5661,-0.6882 1.1212,-1.0822 1.0663,-0.7849 v 0 l 0.1917,-0.1411 1.3828,-0.7273 1.4486,-0.4465 0.452,-0.0688 v 0 l 1.0595,-0.161 1.5232,-0.0513 1.1751,0.0787 v 0 l 0.3678,0.0247 1.5225,0.2132 1.4867,0.32 0.3253,0.12 v 0 l 1.1354,0.4188 1.3442,0.7962 0.7833,0.6232 v 0 l 0.4324,0.344 1.0749,1.1219 0.9012,1.243 0.0605,0.1172 v 0 l 0.6332,1.2268 0.5674,1.4358 0.3525,0.7724 v 0 l 0.2954,0.6474 0.8879,1.2491" inkstitch:running_stitch_length_mm="2" id="autosatinrun74" inkscape:label="Points droits pour auto-remplissage satin 1" sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin91" d="M 41.5,30.4688 40.6436,31.1821 39.6073,31.685 38.4706,31.9635 37.313,32.0036 36.2139,31.7913 35.2528,31.3126 34.5092,30.5535 34.0625,29.5 33.644,27.4892 33.1189,25.4435 32.2843,23.5823 31.6876,22.7894 30.9375,22.125 29.1843,21.2452 27.21,20.8665 l -1.002,0.0167 -0.9757,0.1636 -0.9221,0.3178 -0.8414,0.4792 -1.3217,1.1713 -1.0116,1.3696 -0.7453,1.5274 -0.5229,1.6448 -0.3442,1.7217 -0.2092,1.758 -0.1889,3.4634 -0.1637,7.6907 0.0809,3.8608 0.2557,3.8455 0.4801,3.811 0.7544,3.7573 1.0782,3.6845 1.4519,3.5924 1.0562,1.9279 1.4002,1.7255 0.8431,0.6876 0.946,0.5178 1.0545,0.3084 1.1687,0.0594 1.0784,-0.1752 0.9417,-0.364 0.8081,-0.5312 0.6775,-0.6764 0.5498,-0.7999 0.4251,-0.9015 0.1254,-0.5188 M 41.9834,30.0199 43.1646,28.5623 43.903,27.0104 44.2248,25.414 44.1562,23.8225 43.7232,22.2858 42.9521,20.8533 41.869,19.5749 40.5,18.5 38.7189,17.5426 36.8604,16.8534 34.941,16.3909 l -1.9638,-0.2771 -3.9949,-0.1637 -3.9745,0.0811 -2.3151,0.2734 -2.1836,0.6743 -2.0366,1.0261 -1.8742,1.3289 -1.6962,1.5825 -1.5029,1.7872 -1.2942,1.9426 -1.0698,2.0491 -1.20989,3.0146 -0.93589,3.0842 -0.69813,3.1406 -0.49658,3.184 L 7.16143,45.5648 7,52.0278 7.13156,56.8773 7.65517,61.6846 8.60119,66.4066 10,71 l 0.7596,1.8495 0.9273,1.7851 1.0931,1.6678 1.257,1.4977 1.419,1.2747 1.5793,0.999 1.7376,0.6703 1.8942,0.2889 5.2909,0.0687 5.297,-0.104 5.2977,-0.0946 5.2928,0.0969 1.0302,-0.0675 0.8704,-0.2884 0.7176,-0.4785 0.5715,-0.6378 0.4325,-0.7663 0.3003,-0.864 L 46,76 V 73.4019 M 33.4218,31.1591 45.6443,22.1131 m -19.1968,-8.1483 0.069,8.2864 M 6.26772,31.5641 H 20.9761 m 10.7885,36.1933 14.294,12.7058 M 6.375,63 23.6875,62.9375" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 2" sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc"/>
<path d="m 40.186,68.1619 0.0694,-1.1745 v 0 l 0.0219,-0.3702 0.06,-1.5503 0.0599,-1.5503 0.0116,-0.2995 v 0 l 0.0484,-1.2509 0.0479,-1.5514 0.0179,-0.9693 v 0 l 0.0115,-0.62 0.0275,-1.5289 0.0275,-1.5288 0.0012,-0.0951 v 0 L 40.6089,54.2389 40.5828,52.71 40.568,51.8997 v 0 l -0.0132,-0.7184 -0.0893,-1.5227 -0.222,-1.5115 -10e-4,-0.0016 v 0 L 39.3838,46.8701 37.994,46.2664 37.3037,46.0593 v 0 L 36.5086,45.8208 34.994,45.3952 33.658,45.0913 v 0 l -0.1462,-0.0333 -1.5069,-0.1567 -1.524,-0.0433 -0.5824,0.0416 v 0 l -0.9333,0.0666 -1.5196,0.1401" inkstitch:running_stitch_length_mm="2" id="autosatinrun75" inkscape:label="Points droits pour auto-remplissage satin 3" sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin92" d="m 26.052,45.1062 0.2459,1.6156 0.2566,0.4962 0.3326,0.3272 0.8536,0.2633 1.0394,-0.0649 1.1462,-0.1609 1.1744,-0.0249 1.1238,0.343 0.5182,0.382 0.4761,0.561 0.9475,1.7248 0.6142,1.8464 0.3351,1.9402 0.1101,2.0066 -0.238,4.1019 L 34.5,64.5 34.1372,66.0018 m -7.809,-21.6552 0.6098,-1.0879 0.8636,-0.6975 1.1327,-0.3562 1.4173,-0.0644 6.3431,0.0839 6.3424,-0.1893 1.0284,0.0981 0.7585,0.3641 0.5297,0.5774 0.3417,0.7377 0.283,1.7449 L 46,47.309 V 73.4019 M 33.5731,51.7704 47.0385,51.5632 m -16.8622,-11.0819 0.0691,8.0793 m 3.3233,16.9741 13.0233,8.137 M 33.75,63 46.875,62.875" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="2" inkstitch:force_lock_stitches="True" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 4" sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccc"/>
</g>
<g inkscape:groupmode="layer" inkscape:label="GlyphLayer-F" style="display:none;fill:none;stroke:#00673e;stroke-width:0.945;stroke-opacity:1;stroke-miterlimit:4;" id="g157646">
<path d="m 14.9538,72.3687 -0.267,-1.5172 -0.0478,-0.2917 v 0 l -0.2004,-1.2247 -0.2333,-1.5185 -0.1349,-0.8781 v 0 L 13.9719,66.298 13.752,64.7798 13.5685,63.3076 v 0 L 13.5622,63.2574 13.3999,61.7265 13.24,60.1959 13.2028,59.6604 v 0 L 13.1337,58.666 13.0733,57.1254 13.0292,55.9992 v 0 l -0.0162,-0.4144 -0.0895,-1.5426 -0.0529,-1.5517 -0.005,-0.1531 v 0 l -0.0459,-1.399 -0.0368,-1.5543 -0.0212,-0.711 v 0 l -0.0252,-0.8444 -0.047,-1.5553 -0.0387,-1.2643 v 0 l -0.0089,-0.291 -0.055,-1.5553 -0.055,-1.5554 -0.0047,-0.2619 v 0 L 12.504,40.0511 12.5029,38.4938 12.5023,37.68 v 0 l -5e-4,-0.7435 -0.0012,-1.5573 -0.0012,-1.3649 v 0 l -2e-4,-0.1924 -0.0018,-1.5573 -0.0457,-1.5556 -0.0146,-0.3595 v 0 l -0.0485,-1.1954 -0.0623,-1.5487 -0.0118,-0.9193 v 0 l -0.008,-0.627 0.0228,-1.5379 0.1043,-1.4969 v 0 l 9e-4,-0.0122 0.4292,-1.4889 0.95,-1.1716 0.567,-0.1826 v 0 l 0.8479,-0.2731 1.5178,-0.2606 1.2256,-0.1514 v 0 l 0.3029,-0.0375 1.5038,-0.1598 1.519,-0.1189 0.3241,-0.0171 v 0 l 1.2031,-0.0633 1.5308,-0.0595 0.929,-0.0093 v 0 l 0.5835,-0.0058 1.5277,0.0211 1.5272,0.0498 0.0263,10e-4 v 0 l 1.4998,0.0604 1.5011,0.1726 0.6305,0.1728 v 0 l 0.8535,0.2338 1.3739,0.6995 1.0171,0.7076 v 0 l 0.2278,0.1585 1.1172,1.0633 1.0192,1.1595 0.1941,0.2315 v 0 l 0.7854,0.9373 0.9289,1.2173 0.5527,0.725 v 0 l 0.3712,0.4869 0.9539,1.2011" inkstitch:running_stitch_length_mm="2" id="autosatinrun72" inkscape:label="Points droits pour auto-remplissage satin 1" sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin87" d="m 43.1068,29.381 0.7109,-0.6478 0.4708,-0.7961 0.2617,-0.9073 0.0838,-0.9814 -0.2416,-2.0364 -0.5799,-1.887 -0.6681,-1.3666 -0.8536,-1.188 -1.0116,-1.0116 -1.1425,-0.8373 -1.246,-0.6654 L 37.5685,16.5606 36.1974,16.2327 34.8047,16.0703 22.7857,15.9918 10.7645,16 9.75886,15.892 8.88451,16.0715 8.15347,16.4932 7.57781,17.1115 7.16961,17.8809 6.94091,18.7559 6.90379,19.691 7.07031,20.6406 7.7759,26.2865 7.9936,29.1199 8,31.9668 8.01493,42.8552 7.97158,48.2981 7.76367,53.7363 7.70384,55.62665 M 42.3817,29.8643 l -1.2303,0.5874 -1.2775,0.2084 -1.2761,-0.1185 -1.2264,-0.3934 -1.1283,-0.6166 -0.9817,-0.7876 -0.7866,-0.9068 -0.5432,-0.974 -0.7819,-1.5914 -0.97,-1.4962 -0.5954,-0.6244 -0.6904,-0.4949 -0.8014,-0.3304 -0.9284,-0.1306 -2.9209,-0.2045 -1.4969,0.0641 -1.4709,0.2154 -1.4072,0.3969 -1.3058,0.6088 -1.1665,0.8508 -0.9897,1.1232 -0.6396,1.4383 -0.4177,1.4866 -0.3486,3.0748 L 17,37.5042 V 43 l 0.4448,6.0296 0.2257,3.112 0.3628,3.2037 M 3.03835,16 19.8874,25.9801 m 2.30555,-10.9195 -0.1382,8.58985 M 34.5267,32 46.1277,20.8701 M 6.9384853,31.780585 18.031223,31.736391 M 6.6581552,54.383796 19.036966,54.071296 M 30.1875,15.15625 l 0.03125,8.0625" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 2" sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc"/>
<path d="m 18.0676,49.4887 0.2127,-1.5307 0.1974,-1.1175 v 0 l 0.0691,-0.3912 0.5602,-1.3759 1.0328,-1.1347 0.1536,-0.1474 v 0 l 0.9581,-0.9197 1.2156,-0.9456 0.6428,-0.4091 v 0 l 0.6414,-0.4082 1.353,-0.6951 1.2594,-0.4825 v 0 l 0.1541,-0.059 1.4553,-0.444 1.4952,-0.2857 0.42,-0.0323 v 0 l 1.1055,-0.0849 1.531,-0.0071 0.9837,0.1143 v 0 l 0.5335,0.062 1.4984,0.3518" inkstitch:running_stitch_length_mm="2" id="autosatinrun73" inkscape:label="Points droits pour auto-remplissage satin 3" sodipodi:nodetypes="cccccccccccccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin88" d="m 37.1036,40.1739 0.0628,1.0402 -0.0173,0.9123 -0.359,0.6895 -0.3893,0.2315 -0.5727,0.1401 -0.95,0.0212 L 33.9267,43.1011 32.9689,42.9898 32,43 l -2.8292,0.0319 -2.7934,0.462 -1.3256,0.4453 -1.2474,0.6164 -1.146,0.8088 -1.0217,1.0223 -1.4349,1.9617 -1.1417,2.2603 -0.7543,2.389 -0.2725,2.3476 M 37,39 36.8928,37.8046 36.4885,36.8588 35.844,36.1372 35.0159,35.6142 34.0607,35.2644 33.0352,35.0624 31,35 l -2.063,0.2577 -1.9614,0.566 -1.866,0.826 -1.7765,1.0382 L 21.64,38.89 20.0242,40.2082 17,43 l 0.6086,9.7728 m 3.1074,-14.8465 3.5908,7.8031 m 9.7365,-12.0153 -0.2071,10.9104" sodipodi:nodetypes="cccccccscccccccccccccccccccccccccccccccc" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 4"/>
<path id="autosatin89" d="m 18.0333,55.3453 0.8824,4.6082 1.2271,4.49 2.994,8.83 1.2473,2.6631 1.1446,2.4744 0.3051,1.0264 0.005,0.811 -0.0433,0.0604 M 7.70384,55.62665 7.025,64.9704 7,76.2355 7.02878,77.8207 7.5377,79.3132 7.54839,79.3284 M 4.83374,70.0362 24.7211,70.3124" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 5" sodipodi:nodetypes="ccccccccccccccccc"/>
<path id="autosatin90" d="M 15.5508,81 10.0625,80.9375 9.23773,80.7861 8.54339,80.4423 7.9774,79.9401 7.54839,79.3284 M 16.1378,81.0216 24.5826,81 25.4523,80.7879 25.7955,80.3088 M 6.69924,79.3613 26.6438,80.4391" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="2" inkstitch:force_lock_stitches="True" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 7" sodipodi:nodetypes="cccccccccccc"/>
</g>
<g inkscape:groupmode="layer" inkscape:label="GlyphLayer-E" style="display:none;fill:none;stroke:#00673e;stroke-width:0.945;stroke-opacity:1;stroke-miterlimit:4;" id="g157642">
<path d="M 13.7425,71.5318 13.3841,70.063 13.1453,68.5571 13.0977,68.2567 v 0 l -0.1912,-1.2056 -0.1829,-1.5255 -0.0947,-0.9302 v 0 l -0.0615,-0.6046 -0.1552,-1.535 -0.0464,-1.5408 v 0 l -3e-4,-0.0108 -0.0421,-1.5514 -0.0099,-1.5522 0.0201,-0.5767 v 0 l 0.034,-0.9752 0.0541,-1.552 0.0433,-1.1625" inkstitch:running_stitch_length_mm="2" id="autosatinrun68" inkscape:label="Points droits pour auto-remplissage satin 1" sodipodi:nodetypes="ccccccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path d="m 17.558,50.5465 0.0762,-0.5242 m 0,0 c 0.04913,-0.3379 0.09827,-0.6758 0.1474,-1.0137 l 0.34,-1.4979 0.2758,-0.9818 v 0 l 0.1336,-0.4754 0.7837,-1.28 1.0858,-1.0813 0.0402,-0.0347 v 0 l 1.1201,-0.968 1.2226,-0.9132 0.4844,-0.3074 v 0 l 0.8274,-0.525 1.3824,-0.6479 1.0008,-0.3884 v 0 l 0.4225,-0.164 1.4743,-0.3892 1.5107,-0.2599 0.0692,-0.0042 v 0 l 1.4684,-0.0892 1.5398,0.0823 0.5636,0.0622 v 0 l 0.9586,0.1059 1.527,0.2407" inkstitch:running_stitch_length_mm="2" id="autosatinrun69" inkscape:label="Points droits pour auto-remplissage satin 2" sodipodi:nodetypes="ccccccccccccccccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin84" d="M 36.9827,38.8446 36.8917,37.9314 36.6164,37.1723 36.1536,36.5382 35.5,36 34.6562,35.5625 33.625,35.25 31,35 29.4687,35.125 27.875,35.5 26.2187,36.125 24.5,37 22.7188,38.125 20.875,39.5 17,43 l 0.0682,4.5565 0.2642,4.4913 M 37,39.2762 V 41 l -0.1723,1.1562 -0.221,0.3555 L 36.2906,42.75 35.3581,42.9688 34,43 H 32 30 L 27.625,43.1875 25.5,43.75 23.625,44.6875 22,46 l -1.5391,1.7091 -1.436,2.11 -0.5943,1.1972 -0.4666,1.2877 -0.3049,1.375 -0.1092,1.4591 m 2.9091,-17.5404 4.3945,7.6171 m 9.7168,-11.1328 -0.0488,9.8145" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 3"/>
<path d="m 12.465,53.5342 0.0145,-0.3891 0.0585,-1.5516 0.0303,-1.5532 7e-4,-0.1965 v 0 l 0.0051,-1.3581 -0.0051,-1.5548 -0.0119,-0.7791 v 0 l -0.0122,-0.7932 -0.024,-1.516 -0.0191,-1.3824 v 0 L 12.5,42.3264 v -1.5165 -1.5166 -0.5252 0 -0.9913 -1.5165 -1.1843 0 -0.3323 -1.5165 L 12.47,31.712 12.4525,31.3847 v 0 l -0.0632,-1.1855 -0.069,-1.5126 -0.0296,-0.9902 v 0 l -0.0156,-0.5216 -0.0316,-1.5703 0.0487,-1.5598 0.004,-0.0389 v 0 l 0.1537,-1.5029 0.5775,-1.452 0.5164,-0.3407 v 0 l 0.757,-0.4994 1.5003,-0.4131 1.2053,-0.2403 v 0 l 0.2943,-0.0587 1.5375,-0.2268 1.5652,-0.1374 0.2662,-0.0151 v 0 l 1.3075,-0.0741 1.5148,-0.0376 0.8672,0.008 v 0 l 0.6481,0.006 1.5154,0.0274 1.51,0.0709 0.0166,0.0012 v 0 l 1.5537,0.1165 1.5109,0.2715 0.5732,0.1733 v 0 l 0.8875,0.2684 1.4067,0.6139 1.0621,0.6206 v 0 l 0.2718,0.1589 1.2438,0.9092 1.1332,1.0304 0.2082,0.2227 v 0 l 0.8623,0.9226 0.9824,1.2307 0.5159,0.6813 v 0 l 0.4025,0.5316 0.8666,1.2661" inkstitch:running_stitch_length_mm="2" id="autosatinrun70" inkscape:label="Points droits pour auto-remplissage satin 4" sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin85" d="M 41.7188,30.0254 41.0596,30.7402 40.4844,31.0127 39,31 37.25,30.75 36.5625,30.4375 36,30 35,28.75 34,27 33,25 32.4687,24.0938 31.875,23.375 31.2187,22.8437 30.5,22.5 28.625,22.125 26,22 24.0937,22.125 22.375,22.5 20.8438,23.125 19.5,24 18.4062,25.25 17.625,27 17.1562,29.25 17,32 v 11 l 0.4808,12.4834 0.3452,3.0889 0.833,3.088 1.2487,2.8786 L 21.5,67 22.8438,68.3125 24.375,69.25 26.0937,69.8125 28,70 30.3437,69.8125 32.375,69.25 34.0937,68.3125 35.5,67 l 1.0938,-1.6875 0.1,-0.2643 M 42.5,29 43.1562,27.9375 43.625,26.75 43.9062,25.4375 44,24 43.8125,22.5313 43.25,21.125 42.3125,19.7813 41,18.5 39.375,17.4062 37.5,16.625 35.375,16.1562 33,16 H 10 L 9.09375,16.0625 8.375,16.25 7.84375,16.5625 7.5,17 7.125,18 7,19 8,30 v 9 9 L 7.875,52.125 7.5,56.5 7.125,61.125 7,66 V 77 L 7.25,78.75 7.5625,79.4375 8,80 8.5625,80.4375 9.25,80.75 11,81 H 39 L 40.4062,80.9062 41.625,80.625 42.6562,80.1562 43.5,79.5 44.1562,78.6562 44.625,77.625 44.9062,76.4062 45,75 V 72.3404 M 35.0586,32 44.7266,19.7266 M 5.27344,13.8672 19.4336,25.5859 M 5.70312,61.1641 20.0391,61.0234 M 4.88281,83.0078 22.4609,65.1367 m 5.4688,3.2227 -0.3906,14.0625 M 7.1875,31.984375 h 10.421875" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 5" sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc"/>
<path d="m 40.6018,70.2347 0.2451,-1.5404 0.126,-1.1201 v 0 l 0.0511,-0.4547 0.1708,-1.5765 0.0897,-1.5183 0.0071,-0.1276 v 0 l 0.0776,-1.3906 0.0246,-1.5214 -0.0422,-0.7766 v 0 L 41.3112,59.4652 41.18,57.9535 40.9646,56.5395 v 0 l -0.0149,-0.098 -0.3518,-1.493 -0.402,-1.46" inkstitch:running_stitch_length_mm="2" id="autosatinrun71" inkscape:label="Points droits pour auto-remplissage satin 6" sodipodi:nodetypes="cccccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin86" d="m 39.8352,52.9695 -0.443,0.0673 -0.3496,0.1979 L 38.5,54 38.125,55.5 38,58 37.8438,60.8125 37.375,63.25 36.6938,65.0482 m 3.5137,-12.0726 0.9363,0.1601 0.835,0.4771 0.7724,0.7896 L 43.5,55.5 44.1562,56.9688 44.625,58.875 44.9062,61.2188 45,64 v 8.3404 M 35.8398,59.2773 46.0938,59.082" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="2" inkstitch:force_lock_stitches="True" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 7"/>
</g>
<g inkscape:groupmode="layer" inkscape:label="GlyphLayer-D" style="display:none;fill:none;stroke:#00673e;stroke-width:0.945;stroke-opacity:1;stroke-miterlimit:4;" id="g157638">
<path d="m 14.1062,69.2507 -0.1136,-1.5106 -0.0609,-1.0058 v 0 l -0.031,-0.5129 -0.0913,-1.5189 -0.0447,-1.5308 -0.0103,-0.1858 v 0 l -0.075,-1.3462 -0.0845,-1.5329 -0.0281,-0.8691 v 0 l -0.0216,-0.6695 -0.0498,-1.5386 m -0.0498,-1.5385 -1e-4,-0.0045" inkstitch:running_stitch_length_mm="2" id="autosatinrun66" inkscape:label="Points droits pour auto-remplissage satin 1" sodipodi:nodetypes="ccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin82" d="M 7.84453,55.4286 7.74958,65.6569 7.27,74.79 l 0.05347,1.5006 0.30906,1.2658 0.5328,1.03 0.72468,0.7936 0.97875,0.5906 1.31624,0.4219 1.6538,0.2531 1.9912,0.0844 h 17.8201 l 1.5863,-0.0844 1.5187,-0.2531 1.4513,-0.4219 1.3837,-0.5906 1.2994,-0.7931 1.1981,-1.0294 1.0969,-1.2656 0.13,-0.1961 m -23.268,-20.5512 0.3726,3.1119 0.5728,2.8263 0.766,2.4972 0.9516,2.1244 1.0301,1.5952 1.0463,1.0092 1.1232,0.5284 1.261,0.1527 1.5525,-0.2868 1.4175,-0.8607 1.2825,-1.4343 0.1832,-0.3206 m -4.1583,1.8914 -0.0691,13.3273 M 6.00765,81 22.4424,65.962 m 7.4577,0.2072 13.0511,10.8414" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 2"/>
<path d="m 37.9128,68.6391 0.5155,-1.4254 0.042,-0.1438 v 0 l 0.3827,-1.309 0.3091,-1.483 0.1578,-0.86 v 0 l 0.1158,-0.6308 0.1647,-1.506 0.1315,-1.5095 0.0053,-0.0813 v 0 l 0.0938,-1.4312 0.0194,-1.5147 -0.0068,-0.804 v 0 l -0.006,-0.7117 -0.04,-1.5147 -0.0918,-1.5128 -7e-4,-0.0104 v 0 L 39.6039,50.689 39.4727,49.1795 39.4092,48.4496 v 0 L 39.3415,47.67 39.2091,46.1607 39.0798,44.711 v 0 L 39.0745,44.6515 38.9374,43.123 38.7965,41.5582 38.7407,40.9733 v 0 L 38.6472,39.994 38.4524,38.4353 38.2961,37.2471 v 0 L 38.2476,36.8786 37.9917,35.3315 37.6869,33.7947 37.6295,33.555 v 0 l -0.3076,-1.2848 -0.4166,-1.507 -0.2516,-0.8312 v 0 l -0.2003,-0.6615 -0.551,-1.4628 -0.5958,-1.3752 v 0 L 35.2837,26.3794 34.5893,24.9987 33.7435,23.7013 33.379,23.2235 v 0 L 32.8155,22.485 31.7454,21.4047 30.7323,20.5844 v 0 l -0.2046,-0.1656 -1.3378,-0.8177 -1.4191,-0.6372 -0.3552,-0.0897 v 0 L 26.2943,18.5907 24.7618,18.3908 23.7109,18.379 v 0 l -0.521,-0.0059 -1.5835,0.0407 -1.5693,0.1089 -0.0744,0.0085 v 0 l -1.4691,0.1682 -1.4867,0.2811 -0.7356,0.1962 v 0 l -0.7417,0.1979 -1.4111,0.6396 -0.6466,1.2823 v 0 l -0.0477,0.0947 -0.2187,1.5034 -0.1163,1.5202 -0.0228,0.6027 v 0 l -0.0351,0.925 -0.0499,1.5287 -0.0168,1.2977 v 0 l -0.0031,0.2325 -0.0144,1.5305 -0.0071,1.5306 v 0.4594 0 1.0712 1.5307 1.1511 0 0.3795 1.5307 1.5306 0.3123 0 1.2183 1.5307 l 0.0064,1.004 v 0 l 0.0034,0.5386 0.0483,1.5314 0.0484,1.5315 0.0051,0.1499 v 0 l 0.0473,1.3813 0.0571,1.5309 0.0312,0.8384 v 0 l 0.0258,0.6926 0.0982,1.5268" inkstitch:running_stitch_length_mm="2" id="autosatinrun67" inkscape:label="Points droits pour auto-remplissage satin 3" sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin83" d="m 18.9947,55.1303 -0.3847,-3.0204 -0.27,-3.78 -0.27,-4.3201 v -7.02 -1.62 -2.16 l 0.0675,-3.0375 0.2025,-2.6325 0.405,-2.2275 0.6751,-1.8225 0.8775,-1.3501 1.0125,-0.81 1.215,-0.405 1.485,-0.135 0.7973,0.076 0.7721,0.2278 1.4681,0.9112 1.3669,1.5188 1.2656,2.1263 1.0942,2.8014 0.8562,3.544 0.6235,4.2863 0.3961,5.0283 0.54,10.2601 0.0774,4.0682 -0.2336,3.5605 -0.5605,3.0537 -0.9033,2.5476 -0.9643,1.6876 M 7.82727,54.928 7.81,47.7899 v -9.1801 -9.18 -10.8001 L 8.04266,17.2966 8.33482,16.8262 8.74541,16.4697 9.92547,16.0478 11.59,15.9297 h 15.6601 l 1.62,0.1013 1.62,0.3037 1.62,0.5063 1.62,0.7087 1.5694,0.945 1.4681,1.215 1.3669,1.485 1.2656,1.7551 1.1644,2.025 1.0631,2.295 0.9619,2.565 0.8607,2.835 0.7035,3.1421 0.5425,3.4819 0.914,7.9561 0.54,4.86 0.3026,4.1073 0.0039,3.7137 -0.2169,3.3131 -0.3596,2.9059 -0.4725,2.565 -0.6075,2.2951 -0.7425,2.025 -0.8776,1.755 -0.8656,1.3058 M 24.583,14.5863 24.4449,21.8369 M 6.14575,44.0721 H 18.9897 M 31.6955,44.003 46.1277,44.2102 M 6.04217,14.6535 19.9564,24.0466" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="2" inkstitch:force_lock_stitches="True" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 4"/>
</g>
<g inkscape:groupmode="layer" inkscape:label="GlyphLayer-C" style="display:none;fill:none;stroke:#00673e;stroke-width:0.945;stroke-opacity:1;stroke-miterlimit:4;" id="g157634">
<path d="m 18.2796,70.8014 -0.893,-1.2495 -0.6933,-1.2976 v 0 L 16.6621,68.1958 16.0608,66.8093 15.5493,65.381 15.3848,64.7761 v 0 l -0.2336,-0.859 -0.3092,-1.4872 -0.2312,-1.2917 v 0 L 14.5743,60.9346 14.3371,59.4337 14.182,57.9222 14.1424,57.4481 v 0 l -0.087,-1.0397 -0.0859,-1.5165 -0.0656,-1.1574 v 0 L 13.8836,53.3755 13.7977,51.859 13.721,50.3157 13.7113,50.018 v 0 L 13.6701,48.7634 13.6224,47.211 13.6029,46.2981 v 0 l -0.0137,-0.6387 -0.0119,-1.549 -0.0183,-1.5335 v 0 l -2e-4,-0.0147 0.0354,-1.5424 0.0639,-1.5445 0.0661,-0.6146 v 0 l 0.0992,-0.9228 0.1723,-1.5363 0.1887,-1.2331 v 0 l 0.044,-0.2877 0.2971,-1.5155 0.3496,-1.5005 0.0857,-0.3347 v 0 l 0.2954,-1.1528 0.4785,-1.4665 0.3559,-0.9226 v 0 l 0.197,-0.5108 0.6146,-1.4057 0.7331,-1.359 0.0506,-0.0813 v 0 l 0.7706,-1.2389 0.9889,-1.1951 0.4935,-0.5122 v 0 l 0.5733,-0.595 1.2469,-0.9148 1.1773,-0.6582 v 0 l 0.1594,-0.0891 1.4654,-0.4717 1.5326,-0.219 0.4513,-0.0081 v 0 l 1.0742,-0.0193 1.5134,0.0423 1.1301,0.0831 v 0 l 0.4067,0.0299 1.5092,0.2287 1.467,0.3696 0.2556,0.0999 v 0 l 1.1794,0.4613 1.3012,0.7728 0.6434,0.6877 v 0 l 0.3887,0.4154 0.8184,1.2858 0.6681,1.373 0.0213,0.0993 v 0 l 0.298,1.3903 0.099,1.5372 -0.073,0.7557 v 0 l -0.0757,0.7834 -0.2715,1.5036" inkstitch:running_stitch_length_mm="2" id="autosatinrun64" inkscape:label="Points droits pour auto-remplissage satin 1" sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin80" d="M 38.3638,31.66 39.7675,31.525 40.8444,31.12 41.7525,30.445 42.65,29.5 43.4769,28.3863 44.0675,27.205 44.4219,25.9563 44.54,24.64 44.3375,23.02 43.73,21.4 42.785,19.8475 41.57,18.43 40.8275,17.8056 39.95,17.2825 37.79,16.54 35.2925,16.135 32.66,16 H 25.1 l -1.6031,0.1181 -1.5694,0.3544 -1.5356,0.5906 L 18.89,17.89 17.4219,18.9869 15.9875,20.3875 14.5869,22.0919 13.22,24.1 11.9375,26.3781 10.79,28.8925 9.77751,31.6431 8.90001,34.63 8.19126,37.9206 7.68501,41.5825 7.38126,45.6156 7.28001,50.02 v 1.08 l 0.27,7.8975 0.3375,3.3919 0.4725,3.0206 0.6075,2.6831 0.7425,2.3794 0.87749,2.0756 L 11.6,74.32 12.7475,75.8388 14.03,77.155 15.4475,78.2687 17,79.18 18.6875,79.8888 20.51,80.395 22.4675,80.6987 24.56,80.8 h 7.56 l 2.7506,-0.1519 2.3119,-0.4556 1.8731,-0.7594 1.4344,-1.0631 1.1306,-1.4344 0.9619,-1.8731 0.6993,-2.0382 M 37.52,31.66 36.17,31.525 35.36,31.12 34.8875,30.5125 34.55,29.77 34.01,28.15 33.74,26.8 32.525,24.4375 31.8163,23.5094 31.04,22.75 30.1963,22.1594 29.285,21.7375 28.3063,21.4844 27.26,21.4 l -0.9239,0.076 -0.8817,0.2278 -0.8396,0.3797 -0.7973,0.5315 -1.4681,1.5188 -1.2994,2.1262 -1.0294,2.7675 -0.6581,3.4425 -0.2869,4.1175 0.0844,4.7925 0.54,4.32 1.08,10.8 0.675,3.9825 0.945,3.3075 0.5906,1.3838 0.6919,1.1812 0.7931,0.9788 0.8944,0.7762 0.9956,0.5906 1.0969,0.4219 1.1981,0.2531 L 29.96,69.46 31.2425,69.3756 32.39,69.1225 33.4025,68.7006 34.28,68.11 35.1267,67.223 M 29.69,68.245 29.96,82.69 M 6.6177769,62.232097 23.627767,62.097097 M 27.53,13.165 l -0.135,9.18 m 6.345,9.315 9.45,-1.755 M 31.04,25.45 44.135,17.89 m -30.915,1.89 9.585,9.045 M 7.5793008,34.85208 H 20.395611" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 2" sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc"/>
<path d="m 39.2042,70.1236 0.5506,-1.4117 0.2748,-0.8502 v 0 l 0.2002,-0.6193 0.3651,-1.4885 0.2114,-1.5212 3e-4,-0.0022 v 0 l 0.1638,-1.5287 0.0677,-1.5476 -0.0051,-0.635 v 0 L 41.0256,59.6069 40.8843,58.0664 40.659,56.8245 v 0 L 40.6115,56.563 40.1208,55.1295" inkstitch:running_stitch_length_mm="2" id="autosatinrun65" inkscape:label="Points droits pour auto-remplissage satin 3" sodipodi:nodetypes="ccccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin81" d="m 38.465,54.0025 -0.3375,0.5738 -0.0675,0.8437 -0.27,5.13 -0.405,2.295 -0.675,2.025 -1.0125,1.755 -0.5708,0.598 m 3.9458,-13.693 0.7405,-0.286 0.407,0.016 1.0606,0.1722 0.8722,0.5059 0.7157,0.8418 0.5915,1.1801 0.4725,1.5188 0.3375,1.8562 0.2025,2.1938 0.0675,2.5312 v 3.78 L 44,70 43.3756,72.7506 43.2818,73.0243 M 37.115,56.23 l 5.4,-3.24 m -8.37,12.15 12.69,3.105 m -3.1149,4.9736 -8.9302,-6.3569" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="2" inkstitch:force_lock_stitches="True" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 4"/>
</g>
<g inkscape:groupmode="layer" inkscape:label="GlyphLayer-B" style="display:none;fill:none;stroke:#00673e;stroke-width:0.945;stroke-opacity:1;stroke-miterlimit:4;" id="g157630">
<path d="m 15.3427,70.3432 -0.1012,-1.5777 -0.0347,-0.7673 v 0 L 15.1701,67.1876 15.0986,65.6097 15.078,64.2769 v 0 l -0.004,-0.2583 -0.088,-1.5421 -0.1422,-1.5251 -0.0196,-0.3888 v 0 l -0.0575,-1.1455 -0.0599,-1.5367 -0.0405,-1.0383 v 0 L 14.6469,56.3437 14.587,54.807 14.5344,53.2698 14.5315,53.1207 v 0 L 14.5049,51.7312 14.4753,50.1926 14.46,49.3974 v 0 L 14.4458,48.654 14.4162,47.1154 14.328,45.6766 v 0 l -0.0058,-0.0936 -0.1085,-1.5311 -0.1085,-1.531 -0.0369,-0.5591 v 0 l -0.0642,-0.9725 v -1.5392 -1.2101 0 -0.3291 -1.5392 -1.5392 -0.3164 0 -1.2228 -1.5392 -0.9619 0 -0.5773 -1.5392 l 0.0299,-1.5385 0.0038,-0.0686 v 0 l 0.0816,-1.4645 0.0846,-1.5323 0.0615,-0.7199 v 0 l 0.0697,-0.8159 0.2353,-1.513 0.7445,-1.1546 v 0 l 0.0839,-0.1301 1.4894,-0.3966 1.5513,-0.2554 0.4515,-0.0611 v 0 l 1.1341,-0.1536 1.5279,-0.1143 1.0454,-0.0627 v 0 l 0.4871,-0.0291 1.5275,-0.0344 1.5564,-0.0066 0.1516,0.0041 v 0 l 1.4047,0.0378 1.539,0.1698 0.7572,0.1417 v 0 l 0.7573,0.1417 1.4779,0.453 1.2566,0.6347 v 0 l 0.1251,0.0632 1.2628,0.8943 1.1084,1.0855 0.266,0.4054 v 0 l 0.5837,0.8899 0.6037,1.4258 0.2614,1.0802 v 0 l 0.1039,0.429 0.1396,1.5171 -0.0711,1.5541 -0.0321,0.2007 v 0 l -0.2133,1.3341 -0.4601,1.4817 -0.3361,0.7495 v 0 l -0.2985,0.6656 -0.8757,1.2815 -0.9678,1.0694 v 0 l -0.0672,0.0743 -1.2221,0.946 -1.3027,0.8122 -0.4722,0.2684 v 0 l -0.8732,0.4964 -1.3614,0.7382 -1.0593,0.4987 v 0 l -0.3444,0.1622 -1.4088,0.6479 -1.4358,0.5986 -0.2168,0.0958 v 0 l -1.1772,0.52 -1.4091,0.6219 -0.8244,0.3528 v 0 l -0.5923,0.2536" inkstitch:running_stitch_length_mm="2" id="autosatinrun61" inkscape:label="Points droits pour auto-remplissage satin 1" sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin78" d="m 19.9039,45.9915 -0.7698,-4.7042 3.0263,-1.3632 2.6079,-1.3924 2.2029,-1.4262 1.8113,-1.4644 1.4175,-1.5693 1.0125,-1.7381 0.6075,-1.9069 0.2025,-2.0756 -0.135,-1.5357 -0.405,-1.3668 -0.675,-1.1981 -0.945,-1.0294 -1.1026,-0.8306 -1.1566,-0.5989 -1.2241,-0.3625 -1.3051,-0.1219 -1.5019,0.135 -1.2656,0.405 -1.0294,0.675 -0.7931,0.945 -0.5906,1.1813 -0.4219,1.3837 -0.2531,1.5863 -0.0844,1.7887 v 11.88 l 0.8134,5.3744 0.2615,6.4114 0.5451,6.5741 0.675,3.375 0.945,2.565 1.1475,1.8225 1.2825,1.1475 1.4175,0.6075 1.5525,0.2025 1.2994,-0.135 1.1981,-0.405 1.0969,-0.675 0.9956,-0.945 0.8268,-1.2825 0.5644,-1.6125 m -13.8078,-17.6505 6.2066,-2.4382 3.3463,-1.1814 3.0324,-1.1473 4.9613,-2.2275 1.9575,-1.215 1.5525,-1.485 1.215,-1.755 0.945,-2.025 0.6074,-2.295 0.2025,-2.565 -0.2362,-2.8012 -0.7087,-2.4638 -1.1813,-2.1262 -1.6537,-1.7888 -2.0588,-1.4175 -2.3962,-1.0125 -2.7338,-0.6075 -3.0712,-0.2025 h -17.28 l -1.6537,-0.0337 -0.6497,0.1603 -0.53157,0.2784 -0.41344,0.3966 -0.29531,0.5147 -0.23625,1.3837 v 10.8 9.18 9.18 8.6399 8.64 l -0.54,9.72 0.10125,1.5019 0.30375,1.2656 0.50625,1.0294 0.70875,0.7931 0.97877,0.5906 1.3162,0.4219 1.6538,0.2531 1.9912,0.0844 h 16.74 l 3.1725,-0.27 3.0375,-0.81 1.4175,-0.6075 1.2825,-0.7425 1.1475,-0.8775 1.0124,-1.0125 1.6875,-2.3625 0.726,-1.5665 m -21.8534,-56.5509 0.135,6.48 m 6.345,4.59 14.3099,-0.135 m -22.478,12.0218 2.8731,6.5672 m 1.785,22.8559 0.135,12.96 M 7.04964,64.6167 21.9064,61.8377 M 21.2941,24.2773 7.38913,15.5023 m 0.24989,8.745 12.28968,2.5732 M 8.06413,80.7072 23.7241,65.9922" sodipodi:nodetypes="ccsssssscccssssssccscsssssscsccccccsssssssscccccccccccccccccccccc" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 2"/>
<path d="m 39.9364,68.3852 0.4883,-1.4709 0.0225,-0.1064 v 0 l 0.304,-1.4364 0.1371,-1.571 0.0387,-0.6776 v 0 l 0.0514,-0.8981 -0.0488,-1.576 -0.1973,-1.2319 v 0 l -0.0517,-0.323 -0.3988,-1.5124 -0.5926,-1.4484 -0.1179,-0.2405 v 0 l -0.5677,-1.1578 -0.827,-1.326 -0.4895,-0.7212 v 0 L 37.3026,52.1211 36.3571,50.8744 35.4435,49.717 v 0 l -0.0546,-0.0692 -0.9972,-1.1875 -1.0219,-1.1649 -0.3742,-0.3831 v 0 L 32.2875,46.1871 31.1888,45.091 30.1212,44.6416 v 0 l -0.2863,-0.1205 -1.5384,-0.2064" inkstitch:running_stitch_length_mm="2" id="autosatinrun63" inkscape:label="Points droits pour auto-remplissage satin 3" sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin79" d="m 26.0866,44.1898 1.9512,2.0946 1.5925,1.9891 1.3226,1.9216 1.1412,1.8921 0.945,1.89 0.675,1.89 0.405,1.89 0.135,1.89 -0.1182,2.4975 -0.3543,2.0925 -0.0263,0.075 M 26.8126,43.98 l 5.7202,-2.0852 3.8312,3.0752 3.339,3.161 2.7653,3.0598 2.1099,2.7715 1.4834,2.4998 0.982,2.4351 0.5433,2.4689 0.1671,2.6011 -0.27,3.9825 -0.3375,1.7381 -0.4725,1.5694 -0.5565,1.201 m -12.8084,-9.166 14.4449,8.1 m -16.0649,-17.82 8.775,-6.2099 m -7.2978,16.4472 13.612,8.9655" sodipodi:nodetypes="ccsssssscccssssssccscsssssscsccccccsssssssscccccccccccccccccccccc" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="2" inkstitch:force_lock_stitches="True" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 4"/>
</g>
<g inkscape:groupmode="layer" inkscape:label="GlyphLayer-A" style="display:none;fill:none;stroke:#00673e;stroke-width:0.945;stroke-opacity:1;stroke-miterlimit:4;" id="g157626">
<path id="autosatin75" d="M 17.78305,80.76125 13.7568,80.73 12.4743,80.6287 11.3268,80.325 10.3143,79.8188 9.43677,79.11 8.72802,78.0975 8.22177,76.68 7.91802,74.8575 7.81677,72.63 l 0.135,-8.91 0.405,-8.37 0.675,-7.56 0.945,-6.4801 1.62003,-6.9525 1.62,-5.7375 0.8437,-2.4131 0.9113,-2.1094 0.9787,-1.8056 1.0463,-1.5019 1.1137,-1.2487 1.1813,-1.0463 1.2487,-0.8437 1.3163,-0.6413 2.835,-0.81 3.105,-0.27 h 16.2 l 1.35,0.135 0.81,0.405 0.405,0.675 0.135,0.945 -0.27,2.97 -0.2025,1.62 -0.0675,2.16 v 6.48 8.8387 m -26.905,40.60265 5.305,-0.03125 0.945,-0.2025 0.675,-0.6075 0.1687,-0.4894 -0.0337,-0.6581 -0.675,-1.8225 -2.7,-7.56 -0.8775,-3.1725 -0.4725,-3.0375 -0.27,-5.67 -1.1808,-6.4337 -0.3632,-3.2452 -0.076,-3.2812 v -2.16 -1.0799 l 0.675,-5.4676 0.945,-4.5225 1.1475,-3.645 1.2825,-2.835 0.7087,-1.1137 0.7763,-0.9113 0.8437,-0.7087 0.9113,-0.5063 1.8225,-0.6075 1.6875,-0.2025 1.62,0.27 0.945,0.405 0.675,0.675 1.08,1.89 0.405,1.35 0.135,1.89 v 2.97 l -0.27,2.43 -0.27,2.16 v 2.7 l -0.4222,5.4889 M 7.00163,64.5973 22.8479,64.5018 m -7.064,-44.8659 8.4004,5.823 m 9.2596,-2.0047 13.7462,-7.4458 m -19.3783,-1.2409 2.5774,7.1594" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" sodipodi:nodetypes="csssscsssssssssccsssssssccssccsccccsssssssssscccssssssscccccccccccccccccccccccccc" inkscape:label="Auto-remplissage satin 2"/>
<path d="m 33.6841,39.199 -0.9247,1.2398 -0.2961,0.2823 v 0 l -0.755,0.7196 -1.5345,0.2895 -1.1143,0.3051 v 0 l -0.3906,0.107 -1.483,0.5031 -1.3806,0.6801 -0.2128,0.131 v 0 l -1.076,0.662 -1.2348,0.8851 -0.7083,0.6735 v 0 l -0.391,0.3718 -0.8144,1.2529 -0.2625,1.5028 -0.0216,0.1993 v 0 l -0.1432,1.3195 -0.0593,1.5429 0.0217,0.8884 v 0 l 0.0159,0.6523" inkstitch:running_stitch_length_mm="2" id="autosatinrun62" inkscape:label="Points droits pour auto-remplissage satin 3" sodipodi:nodetypes="ccccccccccccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin76" d="M 20.9387,55.5048 C 20.1584,51.8814 19.652,48.2369 19.6968,44.55 c 1.44,-1.44 2.88,-2.61 4.32,-3.51 1.44,-0.9001 2.79,-1.6201 4.05,-2.1601 1.26,-0.54 2.43,-0.9 3.51,-1.08 1.08,-0.18 2.16,-0.27 3.24,-0.27 m -13.5,19.9801 c 0,-4.68 1.08,-8.01 3.24,-9.99 2.16,-1.98 5.4,-2.97 9.72,-2.97 l 0.4797,-6.5381 m -9.9039,1.3841 2.7683,6.7776" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" sodipodi:nodetypes="ccsssccscccc" inkscape:label="Auto-remplissage satin 4"/>
<path id="autosatin77" d="m 34.3946,43.0188 -0.1178,1.5311 V 47.79 l -0.135,6.1425 -0.405,5.4675 -1.08,8.91 -0.81,6.21 -0.0772,1.0035 M 46.1568,40.1586 v 3.3113 2.7 l 0.135,6.2101 0.405,5.67 1.08,9.45 1.08,6.75 0.083,0.4703 M 32.7757,59.1561 48.0492,59.0606" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" sodipodi:nodetypes="csssscsssssssssccsssssssccssccsccccsssssssssscccsssssssccccccccccc" inkscape:label="Auto-remplissage satin 5"/>
<path id="path280007" d="m 40.3831,80.7613 -5.5663,-0.0313 -1.755,-0.135 -0.945,-0.405 -0.405,-0.81 -0.135,-1.35 0.1928,-2.5065 M 49.817,74.7786 30.9022,75.6634 m 11.0746,5.1604 4.18,-0.0938 1.755,-0.135 0.945,-0.405 0.405,-0.81 0.135,-1.35 -0.135,-1.485 -0.322,-1.8247" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="2" inkstitch:force_lock_stitches="True" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" sodipodi:nodetypes="ccccccccccccccccc"/>
</g>
<g inkscape:groupmode="layer" inkscape:label="GlyphLayer-?" style="display:none;fill:none;stroke:#00673e;stroke-width:0.945;stroke-opacity:1;stroke-miterlimit:4;" id="g157618">
<path d="m 20.0521,73.2669 0.0317,-1.5387 0.0769,-1.1778 v 0 l 0.0216,-0.3311 0.1263,-1.5362" inkstitch:running_stitch_length_mm="2" id="autosatinrun29" inkscape:label="Points droits pour auto-remplissage satin 1" sodipodi:nodetypes="cccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path d="m 20.4659,58.2376 0.134,-1.5239 0.0061,-0.0348 v 0 l 0.2596,-1.4865 0.3851,-1.5006 0.2,-0.5344 v 0 l 0.3433,-0.9169 0.676,-1.399 0.5852,-0.9267 v 0 l 0.2422,-0.3835 0.8617,-1.2865 0.919,-1.2385 0.0512,-0.0673 v 0 l 0.8823,-1.157 0.9493,-1.2093 0.3929,-0.5006 v 0 l 0.5563,-0.7087 0.9497,-1.2117 0.7234,-0.9428 v 0 l 0.2156,-0.281 0.9671,-1.2063 0.9197,-1.2495 0.0971,-0.1481 v 0 l 0.754,-1.1495 0.7887,-1.3363 0.3228,-0.6238 v 0 l 0.3894,-0.7528 0.6281,-1.412 0.3831,-1.175 v 0 l 0.0944,-0.2892 0.2671,-1.5115 0.0522,-1.5413 -0.0209,-0.2466 v 0 L 35.3323,26.9978 34.9789,25.4911 34.692,24.7567 v 0 l -0.274,-0.7016 -0.762,-1.328 -0.8671,-1.0276 v 0 l -0.1136,-0.1346 -1.1397,-1.0123 -1.2677,-0.8484 -0.3597,-0.1815 v 0 l -1.0036,-0.5064 -1.4404,-0.5294 -0.9441,-0.223 v 0 l -0.5636,-0.1331 -1.5501,-0.1604 -1.4912,0.0167 v 0 l -0.0643,8e-4 -1.5612,0.0932 -1.5287,0.2497 -0.4386,0.1076 v 0 l -1.0525,0.258 -1.4383,0.5368 -0.8742,0.5058 v 0 l -0.4498,0.2603 -1.1524,1.0164 -0.9178,1.2495 -0.006,0.0213 v 0 l -0.4264,1.5141 -0.0532,1.5224 0.1015,0.5228 v 0 l 0.2061,1.0611 0.7219,1.4145 0.6733,0.684 v 0 l 0.3973,0.4035 1.4054,0.6055" inkstitch:running_stitch_length_mm="2" id="autosatinrun37" inkscape:label="Points droits pour auto-remplissage satin 2" sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin72" d="m 18.0199,30.4025 c 0.4117,-0.86 0.2215,-0.4474 0.2538,-1.6583 -0.93,-3.0362 0.3194,-6.9345 3.5957,-7.8935 3.7943,-1.1873 7.1504,2.6492 7.4378,6.1718 0.6259,3.8668 -2.1586,6.9626 -3.9034,10.1132 -2.087,2.8105 -3.5102,6.0137 -5.2816,9.017 -2.5018,3.8617 -4.1911,8.6831 -2.9314,13.1843 0.4053,1.4481 1.9802,0.7623 3.242,0.7953 M 17.8042,30.5886 C 15.5355,31.8355 12.8197,31.8942 10.6425,30.2333 7.73607,28.0166 6.9465,23.5607 8.44065,20.324 10.8579,16.3553 15.946,15.5277 20.2143,15.2605 c 6.0471,-0.237 12.7836,0.0437 17.548,4.2482 2.6899,2.4667 4.0303,6.1774 4.0652,9.777 0.1902,5.8435 -3.5449,10.7639 -7.5665,14.6056 -2.6019,2.6455 -5.4651,5.1003 -7.5269,8.2036 -1.2851,1.9344 -2.1284,4.2029 -2.6396,6.5484 -0.1867,1.7476 -1.9082,1.5409 -3.1964,1.5059 m 1.4104,-46.3944 -0.0957,8.1361 M 7.08926,20.3594 19.1498,24.571 m 0,3.5416 -3.733,3.9245 m 12.2519,-1.127 16.0807,-0.2131 m -26.6097,18.0908 10.0504,4.5945" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="2" inkstitch:force_lock_stitches="True" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 3"/>
<path id="autosatin73" d="m 20.3003,67.1782 -1.5007,0.3367 -1.3322,0.5591 -1.1506,0.7569 -0.9554,0.9301 -0.747,1.0789 -0.5253,1.203 -0.29,1.3025 -0.0416,1.3777 0.0611,0.4458 m 6.8526,-8.0027 1.4845,0.1894 1.2309,0.4755 0.9935,0.713 0.7724,0.9016 0.5676,1.0413 0.3791,1.1325 0.207,1.1746 0.051,1.1681 -0.0448,0.4775 m -12.5649,0.284 12.6197,-0.7621" sodipodi:nodetypes="ccccsc" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 4"/>
<path d="m 20.0655,74.8043 0.023,1.5164 0.0143,1.0155 v 0 l 0.0071,0.5032 -0.0036,1.5433" inkstitch:running_stitch_length_mm="2" id="autosatinrun60" inkscape:label="Points droits pour auto-remplissage satin 5" sodipodi:nodetypes="cccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin74" d="M 19.7741,80.7289 18.3653,80.6035 17.1602,80.2227 16.1509,79.6249 15.3292,78.8485 14.6871,77.9317 14.2165,76.913 13.9093,75.8307 13.8186,75.1689 m 6.482,5.56 1.3797,-0.1713 1.2065,-0.4391 1.031,-0.6692 0.853,-0.862 0.6728,-1.0172 0.4903,-1.135 0.3053,-1.2151 0.0732,-0.7803 m -13.1038,0.8647 13.718,-0.8016" sodipodi:nodetypes="ccccsc" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="2" inkstitch:force_lock_stitches="True" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 6"/>
</g>
<g inkscape:groupmode="layer" inkscape:label="GlyphLayer-;" style="display:none;fill:none;stroke:#00673e;stroke-width:0.945;stroke-opacity:1;stroke-miterlimit:4;" id="g157602">
<path d="m 13.1618,43.7641 -0.153,-1.5242 0.0025,-0.7932 v 0 l 0.0025,-0.7483 0.1135,-1.5188 0.1532,-0.999 v 0 l 0.079,-0.5154 0.279,-1.4881 0.127,-1.2401 v 0 l 0.0299,-0.2925 0.059,-1.5161" inkstitch:running_stitch_length_mm="2" id="autosatinrun18" inkscape:label="Points droits pour auto-remplissage satin 1" sodipodi:nodetypes="cccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin69" d="m 13.2625,31.7009 c -2.6666,0.0406 -4.96825,1.8204 -5.8876,4.3593 -1.45129,4.0079 1.65385,8.6149 5.8985,8.5906 M 13.7876,31.689 c 3.5982,-0.0012 5.8397,3.3934 5.6963,6.8018 -0.1326,3.1531 -2.3456,6.0376 -5.6855,6.1481" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="2" inkstitch:force_lock_stitches="True" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 2"/>
<path id="autosatin70" d="m 7.84824,70.9402 0.88285,-1.5515 1.30771,-1.2361 1.1802,-0.5807 1.2539,-0.244 1.276,0.0623 1.2462,0.3384 1.1648,0.5843 1.0318,0.7999 0.8469,0.9852 0.6105,1.1404 0.435,1.2713 0.2373,1.3231 0.1545,2.6903 -0.0197,0.4339 m -11.75983,-5.6793 -0.45042,1.5152 -0.17534,1.5775 0.07576,1.5858 0.30286,1.5407 0.42916,0.9153 0.6563,0.6178 0.82691,0.398 0.941,0.2561 1.9978,0.3971 0.9438,0.2965 0.6602,0.3695 M 7.00437,78.9666 20.057573,69.095264" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 3" sodipodi:nodetypes="ccccccccccccccccccccccccccccc"/>
<path d="m 16.6803,78.8521 0.281,1.5056 -0.1159,1.2688 v 0 l -0.023,0.2529 -0.4266,1.4781 -0.6076,1.4133 -0.1973,0.3623 v 0 l -0.539,0.9898 -0.8666,1.2745 -0.7275,0.7913 v 0 l -0.3138,0.3413 -1.1706,0.997 -1.2996,0.829 -0.1771,0.0941 v 0 L 9.30287,91.085 7.93643,91.7925" inkstitch:running_stitch_length_mm="2" id="autosatinrun25" inkscape:label="Points droits pour auto-remplissage satin 4" sodipodi:nodetypes="cccccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin71" d="m 7.08754,92.1005 -0.20981,-0.3698 0.13259,-0.5063 0.51945,-0.6842 0.62764,-0.5764 1.45013,-0.9662 1.49366,-0.9463 1.2778,-1.2007 1.0515,-1.4771 0.918,-1.6841 0.2755,-0.8304 0.082,-0.775 -0.1649,-0.6838 -0.4652,-0.5571 -0.1715,-0.0959 m -6.61436,11.5559 0.46149,0.3156 0.6207,0.11 1.51849,-0.2429 1.55378,-0.6042 1.1881,-0.6583 1.6545,-1.3176 1.4153,-1.5431 1.1815,-1.7302 0.9531,-1.8787 0.7303,-1.9888 0.5129,-2.0604 0.3011,-2.0934 0.0749,-1.6541 m -9.87441,10.5056 3.53201,4.6776 m 0.0955,-10.5007 7.5413,-4.773 m -1.0259,0.0034 -6.006,4.113" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="2" inkstitch:force_lock_stitches="True" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 5"/>
</g>
<g inkscape:groupmode="layer" inkscape:label="GlyphLayer-:" style="display:none;fill:none;stroke:#00673e;stroke-width:0.945;stroke-opacity:1;stroke-miterlimit:4;" id="g157598">
<path d="m 13.4738,73.3802 0.0816,-1.5321 0.0769,-1.2101 v 0 l 0.0206,-0.3233 0.1025,-1.5177 -0.01035,-0.8354" inkstitch:running_stitch_length_mm="2" id="autosatinrun1" inkscape:label="Points droits pour auto-remplissage satin 1" sodipodi:nodetypes="ccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path d="M 13.6238,43.7749 13.5866,42.2621 13.5628,41.354 v 0 L 13.5465,40.7341 13.504,39.2075 13.4932,38.0873 v 0 l -0.0039,-0.4055 0.0343,-1.5351 0.0736,-1.3244 v 0 l 0.0115,-0.2069 0.1071,-1.5209" inkstitch:running_stitch_length_mm="2" id="autosatinrun6" inkscape:label="Points droits pour auto-remplissage satin 2" sodipodi:nodetypes="cccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin66" d="m 13.4388,31.56 c -3.2027,-0.0089 -6.09984,2.5982 -6.14662,5.8821 -0.05097,3.5776 2.31299,7.2909 6.01152,7.1893 M 14.1138,31.56 c 3.7433,0.0104 5.576,3.7923 5.5687,6.5444 -0.0102,3.8661 -1.9797,6.3956 -5.535,6.4933" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="2" inkstitch:force_lock_stitches="True" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 3"/>
<path id="autosatin67" d="m 13.4557,67.291 -1.3539,0.1617 -1.2106,0.4224 -1.05615,0.6484 -0.89023,0.8399 -0.71297,0.997 -0.52436,1.1196 -0.3244,1.2076 -0.11306,1.2611 0.0721,0.847 m 6.75477,-7.5385 1.5075,0.1774 1.2316,0.4856 0.978,0.7397 0.7469,0.94 0.5379,1.0864 0.3514,1.1787 0.2323,2.4191 -0.0719,0.7921 M 7.26003,73.9484 19.6925,74.2844" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 4"/>
<path d="m 13.4764,74.9359 0.0253,1.5137 0.0396,0.919 v 0 l 0.0269,0.6224 0.051,1.5194 0.03883,0.679638" inkstitch:running_stitch_length_mm="2" id="autosatinrun10" inkscape:label="Points droits pour auto-remplissage satin 5" sodipodi:nodetypes="ccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin68" d="m 14.0799,80.7291 1.1504,-0.131 1.0567,-0.3437 0.9456,-0.5464 0.817,-0.7392 0.6709,-0.9219 0.5074,-1.0948 0.3265,-1.2576 0.0562,-0.6183 M 13.4049,80.7291 12.1136,80.6052 10.9354,80.208 9.88874,79.5706 8.99188,78.7264 8.26321,77.7088 7.72111,76.5511 7.38393,75.2866 7.34213,74.7957 m -0.60407,0.0856 13.47604,0.3086" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="2" inkstitch:force_lock_stitches="True" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 6"/>
</g>
<g inkscape:groupmode="layer" inkscape:label="GlyphLayer-9" style="display:none;fill:none;stroke:#00673e;stroke-width:0.945;stroke-opacity:1;stroke-miterlimit:4;" id="g157594">
<path d="m 11.5823,70.8269 -0.3847,-0.682 -0.4827,-1.4515 -0.0975,-1.36 v 0 l -0.0105,-0.1474 0.5,-1.4144" inkstitch:running_stitch_length_mm="2" id="autosatinrun58" inkscape:label="Points droits pour auto-remplissage satin 1" sodipodi:nodetypes="ccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin64" d="m 12.5574,64.3965 0.3503,1.1359 0.5043,1.0099 0.7127,0.8305 0.9753,0.5979 1.6875,0.405 2.3625,0.1349 2.9025,-0.2024 2.2274,-0.6075 0.9113,-0.4894 0.8437,-0.6581 0.7763,-0.8269 0.7087,-0.9956 0.0217,-0.0411 m -15.02,-0.3766 -0.9993,-0.0846 -1.0054,0.2915 -0.97841,0.5624 -0.9185,0.7284 -0.59062,0.8437 -0.42187,0.9113 -0.25313,0.9787 -0.08437,1.0462 0.135,2.0925 0.405,1.9575 0.3375,0.9113 0.4725,0.8437 1.34999,1.485 1.82251,1.215 2.2275,0.945 2.7675,0.6075 3.4425,0.2025 h 5.9399 l 1.8394,-0.0844 1.7381,-0.2531 1.6369,-0.4218 1.5356,-0.5907 0.5912,-0.3307 M 19.6909,67.8227 19.5,80.9961 M 9.69158,63.9328 13.7963,65.9135 M 33.7205,78.8909 27.1922,64.1021" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 2"/>
<path d="m 32.4985,69.1262 0.7355,-1.3508 0.2128,-0.5053 v 0 l 0.3886,-0.9224 0.5034,-1.4299 0.3164,-1.1153 v 0 l 0.0974,-0.3433 0.3229,-1.4816 0.2796,-1.4932 0.0431,-0.2805 v 0 l 0.188,-1.2222 0.1985,-1.5071 0.0701,-0.9168 v 0 l 0.0458,-0.5989 0.0822,-1.5181 0.0527,-1.5202 0.0011,-0.0341 v 0 l 0.0515,-1.4861 0.0526,-1.5202 0.0084,-0.668 v 0 l 0.0108,-0.8528 v -1.5211 l -0.0223,-1.302 v 0 l -0.0038,-0.2186 -0.0341,-1.5205 -0.0403,-1.5203 -0.0156,-0.4155 v 0 L 36.0023,40.757 35.8889,39.241 35.7953,38.1944 v 0 l -0.0417,-0.4669 -0.2037,-1.5215 -0.2505,-1.5003 -0.029,-0.1485 v 0 l -0.2621,-1.3427 -0.372,-1.4741 -0.2248,-0.755 v 0 l -0.2082,-0.6992 -0.5208,-1.42 -0.594,-1.3053 v 0 L 33.0417,27.4581 32.3032,26.1152 31.4024,24.8804 31.0632,24.51 v 0 l -0.7033,-0.7682 -1.1976,-0.9243 -0.9886,-0.5304 v 0 l -0.3734,-0.2003 -1.4864,-0.4142 -1.5119,-0.141 -0.1905,0.0119 v 0 l -1.3472,0.0843 -1.5209,0.2415 -0.7425,0.2591 v 0 l -0.6977,0.2435 -1.3015,0.8134 -1.019,0.9636 v 0 l -0.097,0.0918 -0.9472,1.213 -0.7603,1.3105 -0.1865,0.4515 v 0 l -0.3942,0.9545 -0.4996,1.4415 -0.2354,1.0928 v 0 l -0.0873,0.4055 -0.2983,1.5062 -0.1835,1.5315 -0.0207,0.1823 v 0 l -0.1531,1.3502 -0.0344,1.5246 -0.0101,0.7922 v 0 l -0.0094,0.7443 0.0999,1.5344 0.2136,1.3777 v 0 l 0.0217,0.1397 0.3529,1.493 0.5266,1.4429 0.2038,0.4176 v 0 l 0.4667,0.9562 0.9317,1.2081 0.808,0.7264 v 0 l 0.3179,0.2858 1.372,0.6572 1.5067,0.2639 0.1972,-0.016 v 0 l 1.3029,-0.1053 1.3752,-0.6682 0.6196,-0.5672 v 0 l 0.4943,-0.4525 0.8804,-1.2276" inkstitch:running_stitch_length_mm="2" id="autosatinrun59" inkscape:label="Points droits pour auto-remplissage satin 3" sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin65" d="m 26.6762,45.1388 0.3529,0.8075 -0.0829,1.5382 -0.3104,1.464 -0.4659,1.2022 -1.35,2.16 -0.9449,1.0125 -1.215,0.8775 -1.5525,0.6075 -1.9575,0.2025 -1.2994,-0.0844 -1.1981,-0.2531 -1.0969,-0.4219 -0.9956,-0.5906 -1.6875,-1.485 -1.2825,-1.755 -1.0125,-2.0925 -0.87751,-2.4975 -0.6075,-2.97 -0.2025,-3.51 0.2025,-4.185 0.6075,-3.9149 1.01251,-3.51 1.4175,-2.97 0.8606,-1.2825 0.9619,-1.1475 1.0631,-1.0125 1.1644,-0.8775 1.2318,-0.7088 1.2657,-0.5062 1.2993,-0.3038 1.3332,-0.1012 h 3.7799 l 2.0883,0.1181 1.9449,0.3544 1.8014,0.5906 1.6579,0.8269 1.5146,1.0631 1.371,1.2994 1.2277,1.5356 1.0842,1.7719 0.9492,1.9997 0.8227,2.219 0.6961,2.4384 0.5695,2.6578 0.443,2.8772 0.3164,3.0966 0.2531,6.8512 v 3.24 l -0.27,7.425 -0.3375,3.2062 -0.4725,2.8688 -0.5906,2.565 -0.6919,2.295 -0.7931,2.0249 -0.8944,1.755 -1.0125,1.5019 -1.1475,1.2656 -1.2825,1.0294 -0.8263,0.4624 M 26.4399,44.7507 25.7132,44.2833 24.8199,44.2107 H 23.47 L 22.6768,44.0926 21.9175,43.7382 21.1918,43.1476 20.5,42.3207 19.9093,41.2239 19.4875,39.8232 19.2343,38.1189 19.15,36.1107 l 0.27,-4.8599 0.3375,-1.9575 0.4725,-1.5525 0.675,-1.2825 0.945,-1.1475 1.215,-0.81 1.4849,-0.27 0.7694,0.0735 0.6922,0.2196 0.6207,0.364 0.5551,0.5069 0.9372,1.4365 0.7454,1.9895 0.6394,2.5367 0.514,2.9507 0.3423,3.3794 0.1243,3.8231 v 5.4 l -0.2025,6.345 -0.6075,4.995 -0.945,3.78 -0.5737,1.485 -0.6196,1.1739 M 23.9866,16.943 v 8.2095 M 7.66308,36.7985 H 19.9773 m 9.1641,0 12.696,-0.0955 m -17.2065,6.8492 2.6729,3.9616 M 28.25,57.375 42.875,57.25" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="2" inkstitch:force_lock_stitches="True" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 4"/>
</g>
<g inkscape:groupmode="layer" inkscape:label="GlyphLayer-8" style="display:none;fill:none;stroke:#00673e;stroke-width:0.945;stroke-opacity:1;stroke-miterlimit:4;" id="g157590">
<path d="m 16.8001,71.3558 -0.5488,-0.5725 -0.8234,-1.3816 -0.4567,-1.2229 v 0 l -0.1048,-0.2804 -0.4018,-1.5555 -0.2061,-1.5901 -0.0223,-0.1962 v 0 l -0.16,-1.4018 -0.117,-1.547 -0.0107,-0.7444 v 0 l -0.0117,-0.8118 0.0817,-1.5531 0.1873,-1.3265 v 0 l 0.0305,-0.2163 0.4003,-1.5081 0.5375,-1.4629 0.1555,-0.3353 v 0 l 0.5013,-1.0808 0.7879,-1.3466 0.5457,-0.784 v 0 l 0.3455,-0.4963 1.0392,-1.1607 1.1207,-1.0623 v 0 l 0.0024,-0.0023 1.2072,-0.9247 1.1854,-1 0.483,-0.4075 v 0 l 0.7023,-0.5925 1.2253,-0.9538 1.0262,-0.6873 v 0 l 0.2696,-0.1806 1.3198,-0.825 1.3282,-0.8028 0.2353,-0.1403 v 0 l 1.0958,-0.6534 1.2984,-0.8331 0.7259,-0.5119 v 0 l 0.5337,-0.3764 1.1664,-1.0222 0.9931,-1.128 v 0 l 0.0345,-0.0392 0.8715,-1.2903 0.6509,-1.4131 0.1161,-0.5291 v 0 l 0.217,-0.989 0.1023,-1.5563 -0.0567,-1.1332 v 0 l -0.0203,-0.4039 -0.3129,-1.4784 -0.5566,-1.4013 -0.1496,-0.2407 v 0 l -0.6623,-1.0664 -1.0173,-1.1508 -0.7603,-0.51 v 0 l -0.5094,-0.3417 -1.4011,-0.6191 -1.4868,-0.4003 -0.0217,-0.0025 v 0 l -1.5119,-0.172 -1.5128,-0.0694 -0.6706,0.0139 v 0 l -0.8677,0.018 -1.5115,0.0804 -1.3145,0.1685 v 0 l -0.1851,0.0238 -1.4798,0.3931 -1.4064,0.5903 -0.3916,0.2486 v 0 l -0.9032,0.5733 -1.0279,1.1039 -0.5915,0.9612 v 0 l -0.2013,0.3272 -0.5586,1.4081 -0.3287,1.4818 -0.023,0.2891 v 0 l -0.0976,1.2265 0.0957,1.5396 0.1912,0.914 v 0 l 0.1235,0.5903 0.5459,1.4372 0.8132,1.2937 0.0253,0.0288 v 0 l 0.9797,1.1173 1.1051,1.0656 0.0266,0.6851 v 0 l 0.0254,0.6543 -0.408,1.4582 -0.3611,1.4948" inkstitch:running_stitch_length_mm="2" id="autosatinrun56" inkscape:label="Points droits pour auto-remplissage satin 1" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin62" d="M 17.8688,43.196 14.1563,40.091 12.7557,38.6398 11.6588,37.256 10.8319,35.8385 10.2413,34.286 9.88694,32.5985 9.76882,30.776 l 0.18562,-2.565 0.55686,-2.295 0.9281,-2.025 1.2994,-1.755 0.8058,-0.7594 0.9323,-0.6581 2.2444,-1.0125 2.7507,-0.6075 3.2568,-0.2025 h 5.4 l 3.2738,0.2025 2.8012,0.6075 2.3288,1.0125 0.9872,0.6581 0.869,0.7594 1.4175,1.7212 1.0125,1.9238 0.6075,2.1262 0.2025,2.3288 -0.27,2.97 -0.4725,1.4175 -0.8775,1.5525 -1.215,1.62 -1.485,1.62 -1.7669,1.5872 -2.0369,1.5872 -3.7973,2.8334 -3.9983,2.6322 h -0.2806 l -1.2825,0.9113 -1.1475,1.1137 -1.0125,1.3163 -0.8775,1.5187 -0.7087,1.5863 -0.5063,1.5187 -0.3037,1.4513 -0.1013,1.3837 0.135,2.4975 0.405,2.0925 0.6075,1.6875 0.7425,1.2825 0.945,0.945 1.215,0.675 1.2825,0.405 1.1475,0.135 1.2994,-0.1181 1.1981,-0.3544 1.0969,-0.5906 0.9956,-0.8269 0.4907,-0.6709 m -12.7504,-23.0975 3.4379,-1.8735 3.6834,-1.6534 -2.6958,-2.0799 -0.9421,-0.9869 -0.6737,-0.9579 -0.81,-1.9575 -0.27,-2.0925 0.1013,-1.2994 0.3037,-1.1981 0.5063,-1.0969 0.7087,-0.9956 0.8775,-0.8269 1.0125,-0.5906 1.1475,-0.3544 1.2825,-0.1181 1.2657,0.1181 1.0968,0.3544 0.9282,0.5906 0.7593,0.8269 0.5907,0.9956 0.4218,1.0969 0.2532,1.1981 0.0843,1.2994 -0.1012,1.3162 -0.3038,1.2488 -0.5062,1.1812 -0.7088,1.1138 -0.8775,1.0125 -1.0125,0.8775 -1.1475,0.7425 -1.2825,0.6075 -3.7966,1.6742 -1.8875,0.9768 -1.8759,1.129 -4.05,4.32 -1.755,2.2275 -1.485,2.3625 -1.14748,2.4975 -0.7425,2.6325 -0.405,2.97 -0.135,3.51 0.23625,4.0163 0.70875,3.4087 0.53156,1.4766 0.64972,1.3247 0.7678,1.1728 0.8859,1.0209 0.9956,0.886 1.0969,0.7678 1.1981,0.6497 1.2994,0.5315 2.9025,0.7088 3.3075,0.2362 h 7.02 l 3.105,-0.2025 2.835,-0.6075 1.2994,-0.4725 1.1981,-0.6075 1.0969,-0.7425 0.9956,-0.8775 0.8775,-1.0293 0.7425,-1.1982 0.6075,-1.3668 0.2283,-0.7417 M 25.5638,17.276 25.4963,26.456 M 8.41882,30.776 21.5138,30.7085 m 8.91,0.0675 12.2175,-0.135 m -17.2125,36.585 0.2025,13.77 M 7.00132,63.581 20.8388,63.6485" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 2"/>
<path d="m 36.5999,69.6557 0.2921,-0.6132 0.4563,-1.4791 0.301,-1.4488 v 0 l 0.0167,-0.0804 0.1909,-1.5443 0.0913,-1.5442 0.005,-0.5217 v 0 l 0.0098,-1.016 -0.1262,-1.5369 -0.165,-1.1368 v 0 l -0.0554,-0.382 -0.3328,-1.5023 -0.4308,-1.4782 -0.0875,-0.226 v 0 l -0.4682,-1.2093 -0.687,-1.3772 -0.4372,-0.7534 v 0 l -0.3371,-0.5808 -0.8885,-1.2574 -0.9224,-1.1773 v 0 l -0.0297,-0.0379 -1.0318,-1.1487 -1.2425,-0.6309 -0.7112,0.1184 v 0 l -0.7888,0.1313 -1.5029,0.2301 -1.3642,0.2489" inkstitch:running_stitch_length_mm="2" id="autosatinrun57" inkscape:label="Points droits pour auto-remplissage satin 3" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin63" d="m 25.8444,48.056 h 0.1244 l 1.5188,1.3669 1.3162,1.4006 1.1138,1.4344 0.9112,1.4681 0.7088,1.5019 0.5062,1.5356 0.3038,1.5694 0.1012,1.6031 -0.1181,2.2444 -0.3544,1.8731 -0.5906,1.5019 -0.3362,0.4597 m -4.1863,-18.6678 3.5096,-2.3627 3.1729,-2.3623 2.7338,2.7 2.2612,2.7 1.7888,2.7 1.3162,2.7 0.9424,2.6715 0.6692,2.6103 0.3992,2.5429 0.1323,2.469 -0.2025,4.05 -0.6075,3.51 -0.2442,0.794 m -11.5683,-8.489 14.2425,0.135" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="2" inkstitch:force_lock_stitches="True" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 4"/>
</g>
<g inkscape:groupmode="layer" inkscape:label="GlyphLayer-7" style="display:none;fill:none;stroke:#00673e;stroke-width:0.945;stroke-opacity:1;stroke-miterlimit:4;" id="g157586">
<path d="m 20.3616,73.7166 -0.0314,-0.6744 0.0228,-1.5375 0.0884,-1.3734 v 0 l 0.0105,-0.163 0.2047,-1.5284 0.2475,-1.5223 0.0768,-0.3326 v 0 l 0.2711,-1.1729 0.3754,-1.4989 0.2489,-0.8023 v 0 l 0.2089,-0.6733 0.4833,-1.4686 0.4361,-1.265 v 0 l 0.0685,-0.1986 0.5279,-1.4568 0.5676,-1.441 0.1028,-0.2612 v 0 l 0.4647,-1.1799 0.5693,-1.4404 0.3084,-0.7079 v 0 l 0.3106,-0.7128 0.6516,-1.3864 0.5452,-1.1577 v 0 l 0.1052,-0.2234 0.6799,-1.3631 0.6799,-1.3632 0.1328,-0.264 v 0 l 0.5512,-1.0965 0.684,-1.3605 0.3644,-0.7558 v 0 l 0.298,-0.6182 0.6631,-1.3751 0.5859,-1.2452 v 0 l 0.0649,-0.1378 0.6399,-1.3891 0.6052,-1.4062 0.1441,-0.3477 v 0 l 0.4426,-1.0678 0.5845,-1.4163 0.3431,-0.8331 v 0 l 0.2405,-0.5837 0.6192,-1.3996 0.6034,-1.2935 v 0 l 0.0436,-0.0935 0.7535,-1.3273 0.8899,-1.242 0.2424,-0.3573 v 0 l 0.6101,-0.899 0.7977,-1.3172 0.4799,-0.8345 v 0 l 0.2808,-0.4884 0.7236,-1.3289 0.5201,-1.4203" inkstitch:running_stitch_length_mm="2" id="autosatinrun53" inkscape:label="Points droits pour auto-remplissage satin 1" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path d="m 41.4946,20.913 -0.6029,0.0732 -1.4373,0.466 -1.4326,0.51 v 0 l -0.0113,0.0041 -1.444,0.514 -1.444,0.5141 -0.5264,0.1956 v 0 l -0.9183,0.3412 -1.5198,0.2625 -1.095,0.2209 v 0 l -0.3902,0.0787 -1.4845,0.3009 -1.4958,0.2715 -0.2027,0.0368 v 0 l -1.2932,0.2347 -1.5178,0.2036 -0.7865,0.1043 v 0 l -0.732,0.0971 -1.505,0.1393 -1.3856,0.0988 v 0 l -0.1473,0.0105 -1.5344,0.0958 -1.541,-0.0083 -0.4129,-0.0095 v 0 L 15.5076,25.643 13.9677,25.5743 12.9975,25.5391 v 0 l -0.5637,-0.0205 -1.532,0.0254 -1.54244,-0.0288" inkstitch:running_stitch_length_mm="2" id="autosatinrun54" inkscape:label="Points droits pour auto-remplissage satin 2" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin59" d="m 9.33404,25.8189 c -0.06326,1.1068 -0.06643,2.2163 -0.06319,3.2126 0.0093,2.8619 3.36085,3.0565 5.40425,2.9767 5.1534,0.079 10.2158,-1.1987 14.9093,-3.1726 1.0457,-0.4398 3.5448,-1.6485 3.7709,-1.3447 l 7.7759,-6.3462 M 9.38467,25.2114 c 0.13399,-2.3445 0.48702,-4.0695 1.67083,-5.2889 1.3722,-1.4135 4.8004,-0.5011 7.0664,-0.402 4.0725,0.1782 8.1408,0.228 11.4667,0.2742 3.7385,0.052 7.4155,0.1333 11.1376,0.405 0.5462,0.0399 0.9036,0.2182 1.1318,0.4817 M 23.1922,17.9908 22.4285,32.119" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 3"/>
<path id="autosatin60" d="m 41.1312,21.1447 -7.7168,6.4095 -0.6532,0.965 -1.4039,2.6673 -1.2222,2.765 -1.235,2.7615 -1.442,2.657 -1.7384,2.9172 -1.8593,2.8445 -1.8398,2.8535 -1.6796,2.9443 -2.6605,5.618 -2.4513,5.7382 -1.0241,2.9331 -0.824,2.9858 -0.5749,3.0462 -0.2763,3.1141 0.0082,1.0318 m 29.3199,-54.7153 0.323,0.728 0.0303,0.8829 -0.2754,2.4824 -0.5058,2.4513 -0.7714,2.3768 -1.0723,2.2592 -4.5061,11.8037 -4.3347,11.8673 -1.5391,4.9912 -0.6533,2.5515 -0.5126,2.5763 -0.3247,2.5916 -0.0894,2.5975 0.1933,2.5942 0.5232,2.5813 0.3852,0.737 m -9.1635,-28.2154 14.1282,4.964" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 4"/>
<path d="m 20.3616,73.7166 0.0402,0.8605 0.2314,1.498 0.2048,1.1945 v 0 l 0.0553,0.3226 0.2254,1.5301 0.1278,1.4543 0.2526,0.0364" inkstitch:running_stitch_length_mm="2" id="autosatinrun55" inkscape:label="Points droits pour auto-remplissage satin 5" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin61" d="m 21.0941,80.613 -4.9719,-0.0844 -1.0488,-0.2107 -0.8483,-0.4706 -0.6623,-0.6807 -0.4909,-0.8405 -0.3341,-0.9505 -0.192,-1.0104 -0.0077,-0.9685 m 9.366,5.2163 h 4.5065 l 1.0781,0.1115 0.7911,-0.2112 0.5281,-0.4705 0.2892,-0.6666 0.0741,-0.7993 -0.117,-0.8686 -0.2841,-0.8745 -0.0419,-0.0802 m -17.001,-1.3242 17.8576,1.4807" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="2" inkstitch:force_lock_stitches="True" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 6"/>
</g>
<g inkscape:groupmode="layer" inkscape:label="GlyphLayer-6" style="display:none;fill:none;stroke:#00673e;stroke-width:0.945;stroke-opacity:1;stroke-miterlimit:4;" id="g157582">
<path d="m 16.7172,70.4787 -0.4078,-0.6232 -0.6469,-1.373 -0.5086,-1.3437 v 0 l -0.0297,-0.0785 -0.368,-1.4732 -0.2926,-1.4928 -0.1065,-0.5658 v 0 l -0.1749,-0.9283 -0.1394,-1.5147 -0.1131,-1.2284 v 0 l -0.0263,-0.2864 -0.1069,-1.5169 -0.0407,-1.5209 -0.0099,-0.3695 v 0 l -0.0308,-1.1513 -0.0262,-1.5211 0.011,-1.0262 v 0 l 0.0055,-0.5153 0.0346,-1.538 0.0346,-1.538 0.0024,-0.1072 v 0 l 0.0322,-1.4308 0.0798,-1.5346 0.0485,-0.7299 v 0 l 0.0534,-0.8036 0.1096,-1.5334 0.0968,-1.3532 v 0 l 0.0128,-0.1801 0.1447,-1.5283 0.1776,-1.5235 0.0688,-0.4445 v 0 l 0.1655,-1.0695 0.2965,-1.503 0.2473,-1.0566 v 0 l 0.1004,-0.4288 0.3974,-1.4682 0.5125,-1.4255 0.0836,-0.2068 v 0 l 0.4836,-1.1962 0.6645,-1.386 0.4713,-0.7337 v 0 l 0.3554,-0.5535 0.9406,-1.2205 1.0832,-1.0386 v 0 l 0.0074,-0.007 1.2361,-0.9189 1.3962,-0.6368 0.5977,-0.1422 v 0 l 0.8821,-0.2099 1.5101,-0.1068 1.2784,-0.027 v 0 l 0.2485,-0.0053 1.527,0.1018 1.4995,0.3014 0.3667,0.1353 v 0 l 1.0658,0.3931 1.3074,0.7855 0.7614,0.7058 v 0 l 0.3576,0.3315 0.8137,1.2702 0.3834,1.4742 -0.0155,0.1793 v 0 l -0.1146,1.3261 -0.6463,1.3803 -0.6481,0.5409 v 0 l -0.5235,0.437 -1.4062,0.5368 -1.5111,0.0579" inkstitch:running_stitch_length_mm="2" id="autosatinrun51" inkscape:label="Points droits pour auto-remplissage satin 1" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin57" d="m 30.8602,32.5474 0.768,0.8059 0.9401,0.4785 1.0583,0.191 1.1221,-0.0566 1.1319,-0.2642 1.0875,-0.432 0.9889,-0.5597 0.8361,-0.6476 0.7088,-0.9957 0.5062,-1.0968 0.3038,-1.1982 0.1012,-1.2993 -0.2025,-1.5694 -0.6075,-1.4681 -1.0125,-1.3669 -1.4175,-1.2656 -1.7887,-1.0631 -2.1263,-0.7594 -2.4637,-0.4556 -2.8012,-0.1519 h -2.7 l -1.8394,0.1012 -1.7381,0.3038 -1.6369,0.5062 -1.5356,0.7088 -1.4175,0.8775 -1.2825,1.0125 -1.1475,1.1475 -1.0125,1.2825 -1.6875,2.835 -1.2825,3.105 -0.945,3.375 -0.675,3.6449 -0.81,7.56 -0.27,7.02 v 1.62 l 0.18563,6.075 0.55687,5.265 0.92812,4.455 0.60328,1.9237 0.6961,1.7213 0.8058,1.5187 0.9323,1.3163 1.0589,1.1137 1.1855,0.9113 1.312,0.7087 1.4386,0.5063 1.5652,0.3037 1.6917,0.1012 h 9.18 l 2.6324,-0.27 2.4975,-0.81 1.1644,-0.6074 1.0631,-0.7425 0.9619,-0.8775 0.8606,-1.0125 0.7594,-1.1982 0.6581,-1.4343 0.2872,-0.8615 M 30.6931,32.094 l 0.3175,-1.2654 0.2225,-1.1959 -0.0843,-0.7932 -0.2532,-0.7593 -0.4218,-0.7257 -0.5906,-0.6918 -0.7257,-0.5907 -0.8268,-0.4218 -0.9282,-0.2531 -1.0293,-0.0844 -1.5525,0.2025 -1.4175,0.6075 -0.6413,0.4893 -0.5737,0.6582 -0.945,1.8225 -0.7425,2.6325 -0.6075,3.5775 -0.405,4.7924 -0.135,6.2775 v 6.48 l 0.0675,3.5775 0.2025,3.1725 0.4725,2.7675 0.8775,2.3625 1.08,1.89 1.08,1.35 1.215,0.81 1.485,0.27 2.16,-0.27 1.0125,-0.4725 0.8775,-0.8775 0.675,-1.2825 0.4049,-1.6875 0.0018,-0.0196 m -6.456,-48.8503 0.3819,11.9155 m 5.718,2.4113 2.7168,4.59 M 29.7482,27.4052 39.9406,23.1527 M 7.0007,53.3251 19.9269,53.3588 M 26.1707,68.31 V 81" sodipodi:nodetypes="ccsssssssssssssssssssssssscccssssssssssssssssscccccccccccccc" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 2"/>
<path d="m 35.5129,69.8849 0.4885,-1.3741 0.3314,-1.5002 0.1007,-0.6974 v 0 l 0.1194,-0.8272 0.1762,-1.531 0.0734,-1.3204 v 0 l 0.0121,-0.2182 0.0543,-1.5413 0.0084,-1.5411 -0.0183,-0.397 v 0 l -0.0518,-1.1207 -0.0695,-1.515 -0.0958,-1.0565 v 0 l -0.041,-0.452 -0.2505,-1.4939 -0.3328,-1.4756 -0.0611,-0.2094 v 0 L 35.5843,50.3387 35.0036,48.905 34.6358,48.1676 v 0 l -0.3176,-0.6366 -0.8996,-1.2398 -1.014,-1.045 v 0 l -0.0421,-0.0434 -1.2592,-0.8631 -1.4281,-0.5262 -0.5769,-0.1251 v 0 l -0.9047,-0.1962 -1.5161,-0.0703 -1.2246,0.2784 v 0 l -0.2501,0.0568 -1.0304,1.0916 -1.025,1.0899 -0.3407,0.2873" inkstitch:running_stitch_length_mm="2" id="autosatinrun52" inkscape:label="Points droits pour auto-remplissage satin 3" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin58" d="m 22.8869,46.285 1.9336,0.2256 2.0927,0.402 1.4175,0.7425 1.0125,1.1475 0.7425,1.6875 0.6074,2.3625 0.405,2.97 0.135,3.51 -0.0675,2.9025 -0.2007,2.2079 m -8.2383,-18.2761 0.4066,-1.9543 0.4598,-1.8651 0.3454,-0.758 0.5448,-0.6169 0.7256,-0.4725 0.8269,-0.3375 1.9575,-0.27 3.1049,0.27 2.835,0.81 1.2994,0.6244 1.1981,0.7931 1.0969,0.9619 0.9956,1.1306 0.8944,1.2994 0.7931,1.4681 0.6919,1.6369 0.5906,1.8056 0.4725,2.025 0.3375,2.295 0.27,5.4 -0.2025,5.0625 -0.6075,4.3875 -0.4556,1.9068 -0.2697,0.8092 M 29.8832,58.8601 43.8556,58.7925 M 22.61,43.1663 l 2.4638,3.9319 m 2.2444,1.0969 6.0749,-8.5725" sodipodi:nodetypes="ccsssssssssssssssssssssssscccssssssssssssssssscccccccccccccc" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="2" inkstitch:force_lock_stitches="True" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 4"/>
</g>
<g inkscape:label="GlyphLayer-5" style="display:none;fill:none;stroke:#00673e;stroke-width:0.945;stroke-opacity:1;stroke-miterlimit:4;" id="g157578" inkscape:groupmode="layer">
<path d="M 10.5306,71.175 9.93404,70.1536 9.48423,68.7099 9.43623,67.7565 v 0 L 9.40434,67.1232 9.84715,65.6676 10.4507,64.301" inkstitch:running_stitch_length_mm="2" id="autosatinrun47" inkscape:label="Points droits pour auto-remplissage satin 1" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin53" d="M 10.2103,64.2841 9.47648,64.392 8.84763,64.7102 7.61998,65.9463 7.02936,66.8238 6.60749,67.8363 6.35437,68.9838 6.27,70.2662 l 0.26999,2.4975 0.3375,1.0969 0.4725,0.9956 1.21498,1.6875 1.48503,1.2825 1.8224,0.945 2.2275,0.675 2.4975,0.405 2.6325,0.1349 h 6.4799 l 3.1725,-0.27 3.0374,-0.8099 1.4344,-0.6413 1.3331,-0.8437 1.2319,-1.0463 1.1306,-1.2487 1.0125,-1.4175 0.1476,-0.2613 m -27.5186,-9.1295 0.4219,0.2067 0.2868,0.6117 0.81,1.62 0.675,0.7425 0.945,0.6075 1.35,0.405 1.89,0.135 h 2.43 l 2.9699,-0.27 1.8576,-0.5481 1.4013,-0.6419 1.1218,-0.7893 1.0193,-0.9907 0.1987,-0.2484 m -9.3111,2.4759 -0.0675,13.3648 M 6.135,65.6088 l 6.4124,0.27 m 14.9509,-1.0577 11.1701,9.1283" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 2"/>
<path d="m 33.3343,68.9761 0.6003,-1.005 0.5925,-1.4371 0.2452,-0.8914 v 0 l 0.1676,-0.6097 0.3134,-1.5248 0.1952,-1.4474 v 0 l 0.0126,-0.0938 0.1563,-1.5464 0.095,-1.5538 0.0041,-0.444 v 0 l 0.0098,-1.0699 -0.0893,-1.544 -0.1337,-1.0243 v 0 l -0.0665,-0.5094 -0.3001,-1.5121 -0.4601,-1.476 -0.017,-0.0451 v 0 l -0.5277,-1.3952 -0.7285,-1.3634 -0.3606,-0.4946 v 0 L 32.4932,47.2351 31.3699,46.1684 30.4423,45.459 v 0 l -0.3007,-0.23 -1.3208,-0.7977 -1.4218,-0.6111 -0.1733,-0.0503 v 0 L 25.911,43.3882 24.4138,43.1554 23.6502,43.1029 v 0 l -0.7542,-0.0519 -1.5168,0.1085 -1.3626,0.1677 v 0 l -0.1512,0.0186 -1.502,0.278 -1.3913,0.6872 -0.3394,0.2439 v 0 l -0.9322,0.67 -1.1325,1.0012 -0.6791,0.7204 v 0 l -0.3955,0.4195 -1.0838,1.0857 -1.2168,0.9422" inkstitch:running_stitch_length_mm="2" id="autosatinrun48" inkscape:label="Points droits pour auto-remplissage satin 3" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path d="m 11.1928,49.3939 0.1035,-1.4502 0.4236,-1.4586 0.1515,-0.4093 v 0 l 0.3803,-1.0267 0.6099,-1.4359 0.3108,-0.6872 v 0 l 0.328,-0.7253 0.7511,-1.3636 0.3917,-0.9811 v 0 l 0.1718,-0.4304 0.1848,-1.5091 0.1733,-1.4148 v 0 l 0.0115,-0.0942 0.1848,-1.5091 0.1859,-1.5174 0.0322,-0.2632 v 0 l 0.1573,-1.285 0.1895,-1.5483 0.0674,-0.5506 v 0 l 0.1221,-0.9976 0.1895,-1.5483 -0.1026,-0.838 v 0 l -0.0837,-0.6838 -0.3198,-1.494 -0.1908,-1.1771 v 0 L 15.5596,22.6448 15.361,21.132 15.362,19.6035" inkstitch:running_stitch_length_mm="2" id="autosatinrun49" inkscape:label="Points droits pour auto-remplissage satin 4" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path d="m 15.362,19.6035 0.032,0.016 1.305,0.7716 1.1972,0.9356 0.4439,0.3524 v 0 l 0.7512,0.5962 1.1946,0.9523 1.0801,0.3986 v 0 l 0.3418,0.1262 1.4901,0.4294 1.5043,0.3534 0.1748,0.0319 v 0 l 1.355,0.247 1.5447,0.2505 0.6911,0.0814 v 0 l 0.8134,0.0958 1.5102,0.1296 1.3022,0.0534 v 0 l 0.216,0.0089 1.5095,-0.0846 1.4835,-0.4507 0.2929,-0.2085 v 0 l 0.9459,-0.6732 0.9141,-1.2483 0.4478,-0.8149 v 0 l 0.2844,-0.5177 0.7349,-1.3212 0.9997,-1.1655" inkstitch:running_stitch_length_mm="2" id="autosatinrun50" inkscape:label="Points droits pour auto-remplissage satin 5" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin54" d="m 39.7366,18.8225 c -0.9172,-0.277 -1.5257,0.3955 -2.6869,0.6843 -0.9279,0.2307 -1.7867,0.4495 -2.7,0.54 -1.0747,0.1064 -3.24,0 -3.24,0 h -5.1299 c -1.62,0 -3.06,-0.09 -4.32,-0.27 -1.26,-0.18 -2.3399,-0.36 -3.2399,-0.54 -0.9,-0.18 -1.53,-0.27 -1.89,-0.27 -0.5956,0 -1.0817,0.1095 -1.4584,0.3285 m 25.0364,-0.2197 c 0.5758,0.1739 0.2834,0.9651 0.1817,2.5912 -0.2245,3.5929 -0.54,6.0299 -1.6199,7.2899 -1.08,1.26 -2.52,1.89 -4.32,1.89 -2.16,0 -4.4099,-0.27 -6.7499,-0.81 -2.34,-0.54 -4.95,-1.53 -7.8299,-2.97 l -4.1175,-7.1549 m 20.2498,-1.1475 5.7374,3.105 m -13.9723,-3.105 0.2025,12.9598" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 6"/>
<path id="autosatin55" d="m 15.0715,19.2953 c -0.3062,0.178 -0.5401,0.4285 -0.7016,0.7515 -0.36,0.72 -0.72,1.9799 -1.08,3.7799 L 10.59,45.4265 c -0.1511,1.2081 -0.3354,2.0857 -0.2025,3.1725 0.0649,0.5309 0.2659,0.9196 0.5982,1.1173 m 4.6667,-29.8045 4.1175,7.1549 -1.62,13.4999 c -3.4006,2.3747 -5.1134,5.4245 -6.75,8.5049 m -0.27,-16.4024 8.7075,1.4175" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 7"/>
<path id="autosatin56" d="m 10.9857,49.7163 0.5325,0.1465 0.6917,-0.1163 1.3831,-0.6948 1.3169,-0.9252 1.2061,-0.6806 1.3128,-0.5153 1.4033,-0.3224 1.4778,-0.1017 1.4931,0.0832 2.5732,0.4881 1.2338,0.4406 0.8372,0.4841 1.1188,0.934 1.1448,1.1402 0.5132,0.8576 0.4683,1.1746 0.4578,2.3109 0.0709,2.5196 -0.2441,2.5512 -0.4871,2.4057 -0.4565,1.765 -0.4081,0.801 -0.5567,0.6956 m -16.6686,-16.0864 1.4479,-2.5576 1.5904,-2.301 1.7587,-1.998 1.953,-1.6483 3.094,-0.6179 2.8459,-0.4621 1.8526,-0.0039 1.7891,0.2629 1.7233,0.4709 1.6549,0.6201 1.5525,0.7424 1.4175,0.8775 1.2825,1.0125 1.1475,1.1475 1.0293,1.2994 0.9282,1.4681 0.8268,1.6368 0.7257,1.8056 0.5906,1.9575 0.4218,2.0925 0.2532,2.2275 0.0843,2.3625 -0.27,4.9949 -0.3375,2.1937 -0.4725,1.9913 -0.6075,1.8224 -0.7424,1.6875 -0.7299,1.2912 m -14.525,-25.3209 4.32,-9.8549 m 0.54,19.9123 13.9723,0.27 m -31.4534,-8.6732 0.4039,-0.8342" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="2" inkstitch:force_lock_stitches="True" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 8"/>
</g>
<g inkscape:groupmode="layer" inkscape:label="GlyphLayer-4" style="display:none;fill:none;stroke:#00673e;stroke-width:0.945;stroke-opacity:1;stroke-miterlimit:4;" id="g157574">
<path d="m 31.3385,77.3989 0.0127,0.3341 0.1825,1.5116 0.5528,1.3951 0.1986,0.0903" inkstitch:running_stitch_length_mm="2" id="autosatinrun41" inkscape:label="Points droits pour auto-remplissage satin 1" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin48" d="M 32.0703,80.73 H 24.6301 L 23.7526,80.6625 23.2801,80.46 23.0776,80.1225 23.0101,79.65 l 0.27,-1.62 0.4781,-1.5939 m 8.7417,4.2939 h 6.1702 l 0.7088,-0.0675 0.5062,-0.2025 0.3038,-0.3375 0.1012,-0.4725 -0.27,-0.945 -0.81,-1.755 -0.3842,-1.0155 m 0.7919,0.0683 -16.6449,0.5543" sodipodi:nodetypes="ccccccsssscccccsccsccccssssssccc" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 2"/>
<path d="m 31.4241,73.8286 0.0665,-0.7241 0.1827,-1.5023 0.1205,-1.3297 v 0 l 0.0175,-0.1927 0.079,-1.5338 0.0075,-1.5364 4e-4,-0.31 v 0 l 0.0019,-1.2265 0.0023,-1.5365 0.0014,-0.8127" inkstitch:running_stitch_length_mm="2" id="autosatinrun42" inkscape:label="Points droits pour auto-remplissage satin 3" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path d="m 25.9463,63.5343 0.004,-0.0331 -1.2544,-0.3213 h -1.5273 -0.4198 v 0 h -1.1075 -1.5272 -0.6405 v 0 h -0.9035 -1.5245 -0.8473 v 0 H 15.521 l -1.4913,0.2938 -0.9756,0.4587 v 0 l -0.4091,0.1923 -1.3846,0.6509 -1.1828,0.5228 v 0 l -0.20017,0.0884 -1.44171,0.526 -1.4967,0.2753" inkstitch:running_stitch_length_mm="2" id="autosatinrun43" inkscape:label="Points droits pour auto-remplissage satin 4" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path d="m 6.93902,66.1881 0.2513,-0.9771 0.57632,-1.4197 0.4433,-0.9175 v 0 l 0.2188,-0.4529 0.72848,-1.3589 0.77477,-1.3022 v 0 l 0.02302,-0.0387 0.82579,-1.2796 0.7686,-1.3169 0.188,-0.4279 v 0 l 0.4345,-0.9891 0.6226,-1.417 0.3748,-0.8533 v 0 l 0.2477,-0.5637 0.6186,-1.393 0.5776,-1.2974 v 0 l 0.0436,-0.098 0.6213,-1.3954 0.6213,-1.3954 0.1618,-0.3635 v 0 l 0.4594,-1.032 0.596,-1.4038 0.3463,-0.8365 v 0 l 0.2367,-0.5717 0.5829,-1.4083 0.5579,-1.3027 v 0 l 0.0414,-0.0967 0.609,-1.3941 0.6091,-1.3942 0.1528,-0.3828 v 0 l 0.4123,-1.0326 0.4806,-1.443 0.2682,-0.8876 v 0 l 0.1727,-0.5716 0.4101,-1.4674 0.2932,-1.4092 v 0 l 0.016,-0.0773 0.2996,-1.4899 0.2774,-1.4906 0.0696,-0.4397 v 0 l 0.1708,-1.0788 0.1512,-1.5052 0.0654,-0.9528 v 0 l 0.0383,-0.5579 0.0458,-1.543 0.1267,-1.4517" inkstitch:running_stitch_length_mm="2" id="autosatinrun44" inkscape:label="Points droits pour auto-remplissage satin 5" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin49" d="m 23.8847,19.7098 h 4.5254 c 0.36,0 0.63,0.09 0.81,0.27 0.18,0.18 0.45,0.63 0.81,1.35 0.36,1.08 0.27,2.52 -0.27,4.32 -0.54,1.8 -1.17,3.78 -1.89,5.94 -0.72,2.16 -1.53,4.14 -2.43,5.9401 -0.9,1.8 -1.71,3.24 -2.43,4.32 L 14.37,58.5899 7.24875,66.0487 M 23.2165,19.7098 H 20.31 c -0.9618,-0.0394 -1.3275,-0.0338 -2.0925,-0.0338 -0.649,0 -0.8283,-0.0892 -1.2656,0.9619 -0.2027,0.4871 -0.3435,0.9948 -0.4219,1.7719 v 2.7 2.7 c 0,2.52 -0.36,5.13 -1.08,7.83 -0.72,2.7001 -1.62,5.6701 -2.7,8.9101 L 8.23909,56.8506 C 7.68614,58.1692 7.17,59.3099 6.81,60.7499 c -0.36,1.44 -0.54,2.7 -0.54,3.78 0,0.7429 0.11976,1.3421 0.35929,1.7975 M 15.585,26.6623 30.1651,26.7298 M 9.37501,51.0299 17.61,54.1349" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 6"/>
<path id="autosatin50" d="M 7.24875,66.0487 14.37,58.5899 h 11.8801 l -0.3038,4.725 M 6.62929,66.3274 c 0.22477,0.4274 0.55501,0.7283 0.99072,0.9025 0.9,0.3601 1.89,0.54 2.96999,0.54 h 15.1201 l 0.2362,-4.0162 m -6.48,-5.805 -0.2363,10.665" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 7"/>
<path d="m 37.8601,63.2981 1.3179,0.4218 h 1.5263 l 0.2515,-0.0021 v 0 l 1.3114,-0.011 1.535,-0.1424 0.256,-0.1723" inkstitch:running_stitch_length_mm="2" id="autosatinrun45" inkscape:label="Points droits pour auto-remplissage satin 8" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin51" d="m 44.0701,63.6427 v 3.0472 l -0.135,0.8776 -0.405,0.4725 -0.675,0.2025 -0.945,0.0675 h -3.78 l -0.27,-4.5901 m 6.1862,-0.5784 0.0238,-2.9316 -0.0653,-0.7425 -0.0857,-0.1181 -0.119,0.0506 -0.4725,-0.2025 -0.8775,-0.0675 h -4.86 l 0.27,3.7463 m 3.0038,-4.86 -0.0675,11.205" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 9"/>
<path d="m 31.9038,63.1239 0.0012,-0.711 0.0041,-1.5165 0.0036,-1.3481 v 0 l 4e-4,-0.1685 0.0189,-1.5181 0.0165,-1.519 0.004,-0.3699 v 0 l 0.0124,-1.1491 0.0165,-1.519 0.0099,-0.9074 v 0 l 0.0066,-0.6116 0.0767,-1.5163 0.0842,-1.4434 v 0 l 0.0042,-0.0723 0.1446,-1.5077 0.3102,-1.5148 0.0973,-0.4316 v 0 l 0.2423,-1.0738 0.3485,-1.5014 0.2197,-0.9073 v 0 l 0.1424,-0.5881 0.4055,-1.4734 0.396,-1.387 v 0 l 0.0227,-0.0794 0.4397,-1.4543 0.4398,-1.4543 0.1286,-0.4359 v 0 l 0.3005,-1.0185 0.4161,-1.4584 0.2542,-0.9643 v 0 l 0.1328,-0.5037 0.4287,-1.4897 0.4532,-1.4347" inkstitch:running_stitch_length_mm="2" id="autosatinrun46" inkscape:label="Points droits pour auto-remplissage satin 10" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin52" d="m 37.3187,27.9441 -0.2898,-0.059 -0.3368,0.2663 -1.262,1.8184 -1.35,2.43 -1.62,2.7 -1.62,2.7001 -1.35,2.43 -1.096,2.3682 -1.064,2.4918 -0.3931,0.8655 -0.2353,0.8513 -0.1816,1.2532 -0.27,2.97 v 3.78 3.78 l -0.54,9.18 -0.135,2.0926 -0.405,1.9575 -1.08,3.51 -0.3319,1.1061 m 13.8946,-48.2295 0.2587,0.5491 0.1375,1.027 0.0811,2.3471 v 2.16 1.08 l -0.54,23.7601 0.54,9.1801 v 1.62 l 0.0675,2.2612 0.2025,1.9238 0.3375,1.5862 0.0883,0.2333 M 24.9001,62.7074 h 13.77" sodipodi:nodetypes="ccccccsssscccccsccsccccssssssccc" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="2" inkstitch:force_lock_stitches="True" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 11"/>
</g>
<g inkscape:groupmode="layer" inkscape:label="GlyphLayer-3" style="display:none;fill:none;stroke:#00673e;stroke-width:0.945;stroke-opacity:1;stroke-miterlimit:4;" id="g157570">
<path d="M 10.7791,71.9635 9.96708,70.8857 9.35623,69.5004 9.12791,68.7381 v 0 L 8.92151,68.0489 8.84088,66.4916 8.89544,65.1122" inkstitch:running_stitch_length_mm="2" id="autosatinrun38" inkscape:label="Points droits pour auto-remplissage satin 1" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin45" d="M 8.64784,65.1152 8.1757,65.2194 7.79699,65.4703 7.08001,66.4652 6.4725,68.0177 6.27,69.9752 l 0.27,2.9701 0.3375,1.2825 0.47251,1.1475 0.96541,1.1969 0.84824,0.8585 1.15634,0.9146 1.2319,0.6919 1.0526,0.3522 1.4956,0.3059 3.51,0.54 h 2.7 5.94 l 3.105,-0.2025 2.8351,-0.6075 1.3162,-0.4894 1.2488,-0.6581 1.1812,-0.8269 1.1138,-0.9956 1.0125,-1.1813 0.5529,-0.8718 m -29.47256,-9.2929 0.6891,0.069 0.48786,0.4769 1.35,1.62 1.35,0.945 1.8901,0.675 2.16,0.405 2.16,0.135 2.5312,-0.135 2.1938,-0.405 1.8563,-0.675 1.5187,-0.945 1.1813,-1.2825 0.1108,-0.2216 M 11.4183,65.7254 6.21573,66.0595 M 22.2053,68.3028 22.1575,80.999 m 5.9208,-15.5698 10.983,9.4887" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 2"/>
<path d="m 33.8765,69.5797 0.4441,-0.874 0.5394,-1.4499 0.2564,-1.1025 v 0 l 0.0947,-0.4075 0.2597,-1.5266 0.111,-1.5454 0.0077,-0.1428 v 0 l 0.0753,-1.4052 -0.0208,-1.5556 -0.0663,-0.6931 v 0 l -0.0819,-0.855 -0.234,-1.5335 -0.324,-1.2063 v 0 l -0.0791,-0.2943 -0.5161,-1.4612 -0.7002,-1.3813 -0.1453,-0.211 v 0 l -0.7305,-1.0612 -1.0132,-1.1719 -0.6252,-0.5333 v 0 L 30.5718,48.6935 29.279,47.829 28.0569,47.2038 v 0 l -0.1596,-0.0816 -1.4795,-0.2101 -1.5368,0.1477 -0.4363,0.0687 v 0 l -1.1,0.1731 -1.5431,0.1249 -0.9928,-0.0976 v 0 l -0.5703,-0.0561 -1.5027,-0.4202 -1.3892,-0.6312" inkstitch:running_stitch_length_mm="2" id="autosatinrun39" inkscape:label="Points droits pour auto-remplissage satin 3" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path d="m 17.3466,46.2214 0.5506,-0.3744 1.3285,-0.7289 1.4346,-0.5162 0.0638,-0.0162 v 0 l 1.4083,-0.3575 1.4781,-0.3785 0.7677,-0.1977 v 0 l 0.7133,-0.1838 1.4558,-0.4521 1.3928,-0.5849 v 0 l 0.0172,-0.0072 1.3415,-0.7456 1.2919,-0.8378 0.5261,-0.4283 v 0 l 0.6632,-0.54 1.1024,-1.0724 0.8487,-1.086 v 0 l 0.0969,-0.1241 0.7219,-1.3557 0.4905,-1.4574 0.0994,-0.5313 v 0 l 0.1837,-0.9828 0.098,-1.5396 -0.0976,-1.2251 v 0 l -0.0258,-0.324 -0.343,-1.5266 -0.594,-1.444 -0.1773,-0.267 v 0 l -0.6875,-1.0355 -1.0889,-1.123 -0.7712,-0.579 v 0 l -0.4826,-0.3623 -1.4032,-0.6948 -1.481,-0.4996 -0.0385,-0.0079 v 0 l -1.4973,-0.3066 -1.5675,-0.1226 -0.6709,8e-4 v 0 l -0.9008,9e-4 -1.5734,0.0481 -1.2912,0.1186 v 0 l -0.2829,0.0259 -1.5428,0.3017 -1.479,0.491 -0.3181,0.1624 v 0 l -1.0707,0.5467 -1.1528,1.0198 -0.5792,0.852 v 0 l -0.2717,0.3997 -0.551,1.4553 -0.169,1.5579 0.0265,0.1629 v 0 l 0.2237,1.3732 0.6403,1.3838 0.5356,0.6672 v 0 l 0.4531,0.5643 1.3197,0.7967 1.3271,0.7125" inkstitch:running_stitch_length_mm="2" id="autosatinrun40" inkscape:label="Points droits pour auto-remplissage satin 4" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin46" d="m 17.9061,34.7874 c 0.1626,-0.1305 0.244,-0.2813 0.244,-0.4524 v -1.89 -1.89 c 0,-2.16 0.45,-3.51 1.35,-4.05 0.9,-0.9 2.43,-1.35 4.59,-1.35 1.44,0 2.79,0.54 4.05,1.62 1.26,1.08 1.89,2.7 1.89,4.86 0,2.16 -0.54,3.96 -1.62,5.4 -1.08,1.4401 -2.34,2.6101 -3.78,3.5101 -1.44,0.9 -2.88,1.62 -4.32,2.16 -1.44,0.54 -2.34,1.17 -2.7,1.89 -0.36,0.72 -0.54,1.26 -0.54,1.62 m 0.701,-11.3096 c -0.1796,0.144 -0.3232,0.1451 -0.701,0.2395 -0.72,0.18 -1.44,0.27 -2.16,0.27 -1.0801,0 -1.9801,-0.27 -2.7001,-0.81 -0.72,-0.54 -1.35,-1.08 -1.89,-1.62 -0.53998,-0.54 -0.98998,-1.26 -1.34998,-2.16 -0.36,-0.9 -0.54001,-1.71 -0.54001,-2.43 0,-2.88 1.08001,-5.13 3.23999,-6.7501 2.16,-1.62 5.5801,-2.43 10.2601,-2.43 h 3.78 c 4.6801,0 8.3701,1.17 11.0701,3.5101 2.7,2.34 4.05,5.31 4.05,8.91 0,3.24 -0.81,5.85 -2.43,7.8301 -1.62,1.98 -4.23,3.69 -7.83,5.13 -4.1324,0.865 -8.5749,1.1872 -12.947,1.6326 m 1.2887,-13.7701 -3.2934,3.6752 m 7.2073,-18.3283 0.0477,8.83 m -13.3644,-4.4389 9.546,6.3958 m 10.3097,2.5036 12.1234,0.0261" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 5"/>
<path id="autosatin47" d="m 17.0701,46.2151 0.135,0.675 0.405,0.945 0.6987,0.7858 0.8652,0.4678 0.8933,0.1785 0.7828,-0.0821 0.6847,-0.178 0.9353,-0.092 1.5525,0.1688 1.4175,0.5062 1.2825,0.8438 1.1475,1.1812 0.945,1.5188 0.675,1.8563 0.405,2.1937 0.135,2.5313 -0.1687,2.4975 -0.5063,2.0925 -0.7329,1.4659 m -10.999,-19.5434 6.589,-0.5853 3.2246,-0.4325 3.1334,-0.6148 2.97,1.6875 2.43,1.8225 1.89,1.9575 1.35,2.0925 0.945,2.16 0.675,2.1601 0.405,2.43 0.135,2.97 -0.27,4.59 -0.3375,2.0925 -0.4725,1.9576 -0.6075,1.7887 -0.7425,1.5863 -0.3246,0.5119 m -9.394,-14.4044 12.8394,0.1909" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="2" inkstitch:force_lock_stitches="True" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 6"/>
</g>
<g inkscape:groupmode="layer" inkscape:label="GlyphLayer-2" style="display:none;fill:none;stroke:#00673e;stroke-width:0.945;stroke-opacity:1;stroke-miterlimit:4;" id="g157566">
<path d="m 9.17345,72.7827 0.81632,-1.295 0.51773,-0.745 v 0 l 0.3661,-0.5267 0.8837,-1.2716 0.8941,-1.267 0.0057,-0.0075 v 0 l 0.9321,-1.2395 0.9369,-1.1906 0.3168,-0.6065 v 0 l 0.3835,-0.7346 0.7741,-1.3198 0.7657,-1.1617 v 0 l 0.0787,-0.1192 0.916,-1.2334 0.9165,-1.233 0.3279,-0.4222 v 0 l 0.6142,-0.7907 0.9566,-1.2015 0.7691,-0.9381 v 0 l 0.2049,-0.2498 1.0791,-1.0798 1.0664,-1.1001 0.255,-0.2657 v 0 l 0.8065,-0.8403 1.0615,-1.106 0.7287,-0.7594 v 0 l 0.3327,-0.3466 1.0832,-1.112 1.0149,-1.1406 0.1248,-0.144 v 0 l 0.8759,-1.0111 1.0007,-1.155 0.5674,-0.678 v 0 l 0.4116,-0.4919 0.898,-1.2329 0.882,-1.2457 0.0311,-0.0479 v 0 l 0.8019,-1.2311 0.7136,-1.3482 0.2916,-0.6969 v 0 l 0.2963,-0.708 0.4581,-1.4542 0.2953,-1.4278 v 0 l 0.0143,-0.0691 0.11,-1.5255 -0.0518,-1.5256 -0.0676,-0.6199 v 0 l -0.0968,-0.8891 -0.3909,-1.488 -0.5297,-1.2061 v 0 l -0.0855,-0.1947 -0.834,-1.2794 -1.0473,-1.1074 -0.3906,-0.2891 v 0 l -0.8261,-0.6112 -1.3448,-0.7001 -1.1482,-0.37 v 0 L 29.6413,22.6355 28.1601,22.2858 26.6416,22.0979 26.255,22.0792 v 0 l -1.1565,-0.0558 -1.5395,-3e-4 -1.0481,0.098 v 0 l -0.4823,0.0451 -1.4895,0.3259 -1.4368,0.5125 -0.1937,0.0946 v 0 l -1.1843,0.5783 -1.2346,0.9 -0.5923,0.6833 v 0 l -0.4059,0.4682 -0.6192,1.3875 -0.1071,1.5064 0.0206,0.0987 v 0 l 0.29,1.3958 0.8156,1.3017 0.587,0.5263 v 0 l 0.5364,0.481 1.345,0.6969" inkstitch:running_stitch_length_mm="2" id="autosatinrun36" inkscape:label="Points droits pour auto-remplissage satin 1" sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin42" d="m 19.3303,34.2741 c -0.133,0.114 -0.1327,0.0671 -0.3702,0.1463 -0.54,0.18 -1.17,0.27 -1.89,0.27 -0.72,0 -1.53,-0.18 -2.43,-0.54 -0.9,-0.36 -1.71,-0.81 -2.43,-1.35 -0.7201,-0.54 -1.3501,-1.26 -1.8901,-2.16 -0.53997,-0.9 -0.80997,-2.07 -0.80997,-3.51 0,-1.0801 0.27,-2.0701 0.80997,-2.9701 0.54,-0.9 1.3501,-1.71 2.4301,-2.43 1.08,-0.72 2.43,-1.35 4.05,-1.89 1.62,-0.54 3.69,-0.81 6.21,-0.81 h 3.2401 c 5.76,0 9.9901,1.26 12.6901,3.78 2.7,2.52 4.05,5.9401 4.05,10.2601 0,2.88 -0.9,5.6701 -2.7,8.3701 -1.8,2.7 -4.5,5.85 -8.1001,9.4501 l -5.94,5.4 c -0.72,0.36 -1.44,1.08 -2.16,2.16 -0.72,1.08 -1.5301,2.16 -2.4301,3.2401 -0.9,1.08 -1.62,2.16 -2.16,3.24 -0.54,1.08 -0.81,1.8 -0.81,2.16 L 7.58626,77.1483 M 19.6594,33.9788 c 0.0766,-0.0946 0.1107,-0.1667 0.1107,-0.3684 v -1.62 -1.62 c 0,-1.8 0.54,-3.15 1.62,-4.0501 1.08,-0.9 2.1601,-1.35 3.2401,-1.35 1.8,0 3.24,0.63 4.32,1.89 1.08,1.2601 1.62,2.9701 1.62,5.1301 0,2.52 -0.54,4.86 -1.62,7.0201 -1.08,2.16 -2.7,4.5 -4.86,7.02 l -8.6401,10.2601 c -1.44,1.8 -2.7,3.51 -3.7801,5.1301 -1.08,1.62 -1.97997,3.24 -2.69997,4.86 -0.72001,1.62 -1.35002,3.15 -1.89002,4.59 -0.54,1.44 -0.81001,2.8801 -0.81001,4.3201 0,0.9739 0.13174,1.7897 0.3952,2.4474 m 13.7114,-46.7278 -3.8184,4.465 m 8.496,-18.6147 0.0954,9.6415 m 3.8184,4.5082 14.9873,-0.1171 M 21.0448,28.5023 8.73045,24.6839 m 12.60075,20.2375 10.5961,7.6369" sodipodi:nodetypes="cssssssssssssssccssscccscssssssccssssccccccccccc" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 2"/>
<path id="autosatin43" d="m 7.58626,77.1483 11.10384,-10.0576 0.3881,0.4894 0.6244,0.3881 0.8607,0.2869 1.0968,0.1856 2.7676,0.2025 3.4425,0.0675 h 3.24 l 2.835,-0.135 2.0251,-0.405 0.0688,-0.0275 m -29.3739,9.495 0.40632,0.7516 0.54849,0.581 0.75939,0.4725 0.92813,0.3375 1.09687,0.2025 1.2656,0.0675 h 21.0602 l 2.2782,-0.135 1.9744,-0.405 1.6706,-0.675 1.3669,-0.945 1.0631,-1.215 0.7594,-1.485 0.3222,-1.2412 M 27.6002,67.9007 27.3977,80.9958" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 3"/>
<path id="autosatin44" d="m 39.5478,65.4369 -0.3713,0.1519 -0.2362,0.4219 -0.81,1.08 -0.81,0.54 -1.2812,0.5125 m 3.9221,-2.6725 0.4902,0.0844 0.4169,0.2531 0.772,1.0125 0.3544,0.7931 0.2531,1.0294 0.2025,2.7675 -0.1519,2.0251 -0.1334,0.5138 m -6.336,-6.1309 6.6641,6.3215" inkstitch:satin_column="True" inkstitch:e_stitch="False" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="2" inkstitch:force_lock_stitches="True" inkstitch:zigzag_underlay="True" inkstitch:center_walk_underlay="False" inkstitch:contour_underlay="False" inkscape:label="Auto-remplissage satin 5"/>
</g>
<g inkscape:groupmode="layer" inkscape:label="GlyphLayer-1" style="display:none;fill:none;stroke:#00673e;stroke-width:0.945;stroke-opacity:1;stroke-miterlimit:4;" id="g157584">
<path d="m 25.0606,73.5728 0.038,-0.8135 0.0688,-1.5585 0.0343,-1.2396 v 0 l 0.0077,-0.2747 0.0465,-1.5148 0.0466,-1.5148 0.0095,-0.3085 v 0 l 0.0371,-1.2063 0.0387,-1.5159 0.0193,-0.891 v 0 l 0.0136,-0.6259 0.0389,-1.5173 0.0465,-1.4699 v 0 l 0.0015,-0.0482 0.0123,-1.5219 -0.0026,-1.5235 0.0122,-0.5206 v 0 l 0.0236,-1.0042 0.057,-1.5238 0.0406,-1.0844 v 0 l 0.0165,-0.4394 0.057,-1.5237 0.1003,-1.5232 0.0108,-0.123 v 0 l 0.1248,-1.4319 0.1358,-1.5555 0.0536,-0.6134 v 0 l 0.0823,-0.942 0.1275,-1.5565 0.086,-1.1038 v 0 l 0.0353,-0.4535 0.1213,-1.5572 0.1047,-1.508 0.0033,-0.086 v 0 l 0.0545,-1.4257 0.038,-1.512 0.0129,-0.6752 v 0 l 0.016,-0.837 0.0364,-1.5119 0.0331,-1.2645 v 0 l 0.0065,-0.2472 0.0397,-1.5117 0.0396,-1.5117 0.009,-0.3426 v 0 l 0.0306,-1.1691 0.0397,-1.5118 0.0244,-0.9324 v 0 l 0.0152,-0.5793 0.0076,-1.5597" inkstitch:running_stitch_length_mm="2" id="autosatinrun33" inkscape:label="Points droits pour auto-remplissage satin 1" sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path d="m 22.2235,21.1871 -0.3727,1.4926 -0.164,0.6568 v 0 l -0.2087,0.8358 -0.3728,1.4925 -0.3046,1.2198 v 0 l -0.0681,0.2728 -0.3727,1.4925 -0.9151,1.1851 -0.2568,0.2231 v 0 l -0.8884,0.7716 -1.1793,0.9581 -0.7686,0.5767 v 0 L 15.8779,32.72 14.59,33.5843" inkstitch:running_stitch_length_mm="2" id="autosatinrun34" inkscape:label="Points droits pour auto-remplissage satin 2" sodipodi:nodetypes="ccccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin39" d="m 13.2803,34.0639 -0.006,-1.6294 c -0.004,-1.0852 0.1809,-1.8088 0.5426,-2.1705 l 1.0853,-1.0853 c 1.447,-1.0852 2.7132,-2.2609 3.7984,-3.5271 0.7235,-1.2661 1.8088,-2.9844 3.2558,-5.155 0.1955,-0.391 0.4174,-0.6763 0.6658,-0.856 m -9.3509,14.9659 0.003,1.6264 c 7e-4,0.3618 0.0905,0.6331 0.2713,0.814 0.1809,0.1809 0.4522,0.2713 0.814,0.2713 0.7235,0 1.6279,-0.3618 2.7131,-1.0853 1.0853,-0.7235 2.7132,-1.9896 4.8837,-3.7984 l 0.6625,-12.4726 m -7.0678,7.9843 1.6068,9.0409" inkstitch:satin_column="True" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" sodipodi:nodetypes="csscccccsssscccc" inkscape:label="Auto-remplissage satin 3"/>
<path id="autosatin40" d="m 27.3812,19.4114 h 2.1721 l 0.9496,0.1356 0.6782,0.407 0.407,0.6783 0.1357,0.9496 v 2.7131 3.7985 7.5968 l -0.2713,7.0542 -0.2714,7.0542 0.1357,6.1724 0.407,5.4942 0.8139,8.6821 0.5427,5.4263 0.0937,0.8435 M 26.8536,19.4114 h -2.184 -1.3566 l -0.6908,0.2292 -0.6658,12.7939 -0.2035,5.3585 -0.6104,5.2228 -0.7461,5.4942 -0.6105,6.1724 -0.2713,3.7306 -0.814,5.7654 -1.0852,6.7829 -0.814,4.0698 -0.0338,0.3047 m 2.5726,-27.2215 12.5661,0.096" sodipodi:nodetypes="csssccssssssssscccsccscscssssccc" inkstitch:satin_column="True" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkscape:label="Auto-remplissage satin 4"/>
<path d="m 25.0606,73.5728 -0.0348,0.7444 -0.055,1.5593 0.0021,1.309 v 0 l 4e-4,0.2093 -0.0758,1.5103" inkstitch:running_stitch_length_mm="2" id="autosatinrun35" inkscape:label="Points droits pour auto-remplissage satin 5" sodipodi:nodetypes="ccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin41" d="m 24.0536,80.7287 h -3.7251 l -1.8314,-0.2035 -0.6613,-0.2544 -0.4917,-0.3561 -0.6105,-1.0174 -0.2035,-1.4244 0.2375,-2.1371 m 7.9814,5.3929 h 4.8043 l 1.4922,-0.0678 1.2209,-0.2035 0.4748,-0.2544 0.3392,-0.4917 0.2034,-0.7292 0.0679,-0.9666 -0.1776,-1.5983 m 0.8325,0.1535 -18.0715,-1.1895" sodipodi:nodetypes="csssccssssssssscccsccscscssssccc" inkstitch:satin_column="True" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="2" inkstitch:force_lock_stitches="True" inkstitch:zigzag_underlay="True" inkscape:label="Auto-remplissage satin 6"/>
</g>
<g inkscape:groupmode="layer" inkscape:label="GlyphLayer-0" style="display:none;fill:none;stroke:#00673e;stroke-width:0.945;stroke-opacity:1;stroke-miterlimit:4;" id="g157558">
<path d="m 16.9659,69.9413 -0.7278,-1.3349 -0.2746,-0.6397 v 0 l -0.3309,-0.7709 -0.4627,-1.4664 -0.3226,-1.2708 v 0 l -0.0568,-0.2234 -0.3154,-1.5104 -0.2116,-1.5276 -0.0426,-0.3695 v 0 L 14.0868,59.664 13.9121,58.1307 13.8564,57.1593 v 0 l -0.0327,-0.5687 -0.0498,-1.5426 -0.0499,-1.5426 -3e-4,-0.0312 v 0 l -0.0165,-1.512 -0.0073,-1.5431 0.0037,-0.6325 v 0 l 0.0057,-0.9481 0.0245,-1.5378 0.0467,-1.2006 v 0 l 0.013,-0.3357 0.0609,-1.5362 0.1213,-1.5317 0.0227,-0.2769 v 0 l 0.1026,-1.2543 0.1773,-1.5234 0.1124,-0.8884 v 0 l 0.0799,-0.6318 0.2475,-1.51 0.3125,-1.4882 v 0 l 0.0019,-0.0092 0.3454,-1.488 0.4161,-1.4611 0.2102,-0.5955 v 0 l 0.2942,-0.8334 0.5927,-1.3917 0.5653,-1.1609 v 0 l 0.1179,-0.2421 0.8157,-1.3311 0.9234,-1.2482 0.2086,-0.222 v 0 l 0.8481,-0.9026 1.1805,-0.9804 0.7936,-0.4545 v 0 l 0.5429,-0.311 1.4538,-0.5172" inkstitch:running_stitch_length_mm="2" id="autosatinrun31" inkscape:label="Points droits pour auto-remplissage satin 1" sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin37" d="m 25.8277,18.8051 -1.3446,0.0084 -1.6032,0.1238 -1.5694,0.3538 -1.5356,0.5874 -1.5019,0.825 -1.4513,1.0631 -1.3838,1.2994 -1.3162,1.5357 -1.2488,1.7719 -1.1475,2.0419 -1.0125,2.3456 -0.87752,2.6494 -0.74251,2.9532 -0.59063,3.2569 -0.42188,3.5607 -0.25313,3.8644 -0.08437,4.1681 v 3.2401 l 0.21938,6.2944 0.65813,5.3832 0.4936,2.3499 0.60329,2.1221 0.71294,1.8942 0.8227,1.6664 0.9492,1.4555 1.0927,1.2614 1.2361,1.0674 1.3796,0.8733 1.5229,0.6792 1.6665,0.4852 1.8098,0.2911 1.9533,0.097 h 6.4801 l 1.9533,-0.097 1.8099,-0.2911 1.6664,-0.4852 1.523,-0.6792 1.3795,-0.8733 0.5001,-0.4318 m -12.3085,-52.763 -0.9619,0.2025 -0.9619,0.6075 -1.08,1.1475 -1.08,1.8225 -0.945,2.6326 -0.675,3.5775 -0.405,4.6576 -0.135,5.8725 v 4.3201 l 0.135,4.9275 0.405,3.9826 0.6075,3.24 0.7425,2.7 0.8775,2.0926 1.0125,1.4175 1.2151,0.81 1.485,0.27 1.485,-0.27 1.215,-0.81 1.0125,-1.4175 0.6993,-1.6676 M 7.00035,50.1338 20.0786,50.1169 m 6.0413,18.4109 0.0675,12.4707 M 25.771,25.0726 25.7256,18.5073" sodipodi:nodetypes="csssssssssssssssssccssssssssssssssssccccccc" inkstitch:satin_column="True" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkscape:label="Auto-remplissage satin 2"/>
<path d="m 35.2619,69.9113 0.7124,-1.3443 0.162,-0.3897 v 0 l 0.4277,-1.0296 0.4278,-1.4761 0.2313,-1.0098 v 0 l 0.1131,-0.4935 0.2804,-1.5191 0.1781,-1.534 0.009,-0.0918 v 0 l 0.1416,-1.4462 0.1424,-1.5387 0.0274,-0.6888 v 0 l 0.0339,-0.8563 0.0428,-1.5456 0.0352,-1.284 v 0 l 0.0072,-0.2616 0.0072,-1.5462 -0.0015,-1.5462 -0.0031,-0.3335 v 0 l -0.0114,-1.2274 -0.0281,-1.5447 -0.0356,-0.9146 v 0 L 38.1372,45.661 38.071,44.1183 37.9508,42.6087 v 0 l -0.0023,-0.029 -0.1325,-1.5372 -0.1785,-1.5303 -0.0753,-0.5701 v 0 l -0.126,-0.9552 -0.2504,-1.5166 -0.2515,-1.1601 v 0 l -0.074,-0.3414 -0.359,-1.4902 -0.4188,-1.4675 -0.0951,-0.2627 v 0 L 35.5652,30.582 34.9665,29.1909 34.5554,28.3537 v 0 l -0.277,-0.5641 -0.8042,-1.3327 -0.8778,-1.2197 v 0 l -0.0219,-0.0303 -1.0384,-1.1253 -1.1545,-0.9831 -0.5277,-0.2912 v 0 l -0.8217,-0.4537 -1.4821,-0.4661" inkstitch:running_stitch_length_mm="2" id="autosatinrun32" inkscape:label="Points droits pour auto-remplissage satin 3" sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin38" d="m 26.3646,24.7536 0.9493,0.2025 0.9492,0.6075 1.0125,1.1475 0.8775,1.8225 0.7425,2.6326 0.6075,3.5775 0.405,4.6576 0.135,5.8725 v 4.3201 l -0.0675,4.9275 -0.2025,3.9826 -0.405,3.24 -0.675,2.7 -0.1782,0.425 m -4.161,-46.0555 h 1.3692 l 1.6031,0.1181 1.5694,0.3544 1.5357,0.5906 1.5019,0.8269 1.4512,1.0631 1.3838,1.2994 1.3163,1.5357 1.2487,1.7719 1.1475,2.0419 1.0126,2.3456 0.8775,2.6494 0.7425,2.9532 0.5906,3.2569 0.4219,3.5607 0.2531,3.8644 0.0844,4.1681 v 3.2401 l -0.2194,6.2944 -0.6581,5.3832 -0.4936,2.3499 -0.6033,2.1221 -0.713,1.8942 -0.8227,1.6664 -0.9492,1.4555 -1.0927,1.2614 -0.736,0.6356 M 31.5369,50.1338 44.902,50.0832" sodipodi:nodetypes="csssssssssssssssssccssssssssssssssssccccccc" inkstitch:satin_column="True" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="2" inkstitch:force_lock_stitches="True" inkstitch:zigzag_underlay="True" inkscape:label="Auto-remplissage satin 4"/>
</g>
<g inkscape:groupmode="layer" inkscape:label="GlyphLayer-/" style="display:none;fill:none;stroke:#00673e;stroke-width:0.945;stroke-opacity:1;stroke-miterlimit:4;" id="g157554">
<path id="autosatin35" d="m 11.1107,80.7282 h 2.1404 l 0.7474,-0.0679 0.6115,-0.2039 0.4756,-0.3397 0.3397,-0.4756 1.9625,-3.9587 m -6.8236,5.0458 H 8.35893 L 7.8833,80.6603 7.54357,80.4564 7.33973,80.1167 7.27179,79.6411 9.51666,75.1513 m -0.43829,0.0629 8.65853,0.5843" inkstitch:satin_column="True" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkscape:label="Auto-remplissage satin 2"/>
<path d="m 14.8,72.7096 0.6739,-1.3536 0.2141,-0.43 v 0 l 0.4597,-0.9236 0.6739,-1.3536 0.4912,-0.9865 v 0 l 0.1827,-0.3671 0.6739,-1.3536 0.6739,-1.3536 0.0943,-0.1894 v 0 l 0.5796,-1.1642 0.6738,-1.3536 0.3714,-0.7459 v 0 l 0.3025,-0.6077 0.6739,-1.3536 0.6484,-1.3024 v 0 l 0.0255,-0.0512 0.6739,-1.3536 0.6739,-1.3536 0.2516,-0.5053 v 0 l 0.4222,-0.8483 0.6739,-1.3536 0.5287,-1.0619 v 0 l 0.1452,-0.2917 0.6739,-1.3536 0.6739,-1.3536 0.1318,-0.2648 v 0 l 0.5421,-1.0888 0.6738,-1.3536 0.4089,-0.8213 v 0 l 0.2664,-0.535 0.6854,-1.3766 0.6731,-1.352 v 0 l 0.0123,-0.0246 0.6853,-1.3766 0.6854,-1.3766 0.2419,-0.4859 v 0 l 0.4435,-0.8907 0.6854,-1.3766 0.4961,-0.9964 v 0 l 0.1893,-0.3802 0.6854,-1.3766 0.6854,-1.3767 0.0648,-0.1301 v 0 l 0.6205,-1.2465 0.6854,-1.3766 0.319,-0.6406 v 0 l 0.3664,-0.736 0.6854,-1.3766 0.5731,-1.1511 v 0 l 0.1123,-0.2255 0.6854,-1.3766 0.6853,-1.3766 0.1419,-0.2849 v 0 l 0.5435,-1.0917 0.6854,-1.3767 0.396,-0.7953 v 0 l 0.2894,-0.5813 0.6934,-1.3699" inkstitch:running_stitch_length_mm="2" id="autosatinrun30" inkscape:label="Points droits pour auto-remplissage satin 3" sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin36" d="M 43.1389,15.4998 H 40.9731 L 39.886,15.7716 38.7989,16.5869 9.51666,75.1513 M 43.691,15.4998 h 2.1743 l 0.8153,0.1359 0.2039,0.1698 0.0679,0.2379 -29.5646,59.639 m 4.9184,-30.3155 h 11.9152" inkstitch:satin_column="True" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="2" inkstitch:force_lock_stitches="True" inkstitch:zigzag_underlay="True" inkscape:label="Auto-remplissage satin 4"/>
</g>
<g inkscape:groupmode="layer" inkscape:label="GlyphLayer-." style="display:none;fill:none;stroke:#00673e;stroke-width:0.945;stroke-opacity:1;stroke-miterlimit:4;" id="g157550">
<path d="m 13.4859,73.9784 4e-4,-0.5992 0.0296,-1.5433 0.0477,-1.2366 v 0 l 0.0124,-0.3199 0.0764,-1.5173" inkstitch:running_stitch_length_mm="2" id="autosatinrun27" inkscape:label="Points droits pour auto-remplissage satin 1" sodipodi:nodetypes="ccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin33" d="M 13.5222,67.224 12.2584,67.359 11.1386,67.764 10.12,68.439 9.16,69.384 8.33313,70.4978 7.7425,71.679 7.38813,72.9278 7.27,74.244 7.33338,74.9411 m 6.69512,-7.7129 1.2389,0.1344 1.0518,0.4035 0.9168,0.6736 0.834,0.9443 0.7088,1.1138 0.5062,1.1812 0.3038,1.2488 0.1012,1.3162 -0.053,0.6808 M 8.30625,69.41525 H 18.83 m -12.2575,4.7975 13.94,0.0625" inkstitch:satin_column="True" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkscape:label="Auto-remplissage satin 2" sodipodi:nodetypes="cccccccccccccccccccccccc"/>
<path d="m 13.4859,73.9784 -7e-4,0.9546 0.0288,1.5434 0.0359,0.8813 v 0 l 0.0269,0.6598 0.0847,1.5402" inkstitch:running_stitch_length_mm="2" id="autosatinrun28" inkscape:label="Points droits pour auto-remplissage satin 3" sodipodi:nodetypes="ccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin34" d="M 13.5531,80.73 12.2845,80.6109 11.1541,80.2545 10.1249,79.6618 9.16,78.834 8.33313,77.8384 7.7425,76.7415 7.38813,75.5434 7.33338,74.9411 m 6.65532,5.7889 1.2452,-0.1191 1.0654,-0.3564 0.9305,-0.5927 0.8402,-0.8278 0.7088,-0.9956 0.5062,-1.0969 0.3038,-1.1981 0.0482,-0.6186 M 8.18125,78.959 19.0175,78.834" inkstitch:satin_column="True" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="2" inkstitch:force_lock_stitches="True" inkstitch:zigzag_underlay="True" inkscape:label="Auto-remplissage satin 4" sodipodi:nodetypes="cccccccccccccccccccc"/>
</g>
<g inkscape:groupmode="layer" inkscape:label="GlyphLayer--" style="display:none;fill:none;stroke:#00673e;stroke-width:0.945;stroke-opacity:1;stroke-miterlimit:4;" id="g157546">
<path id="autosatin32" d="m 7.12363,55.1047 v -2.6832 c 0,-0.36 0.36001,-0.54 1.08003,-0.54 H 29.2642 c 0.5173,0 0.5545,0.2504 0.54,0.54 v 2.6832 M 7.14051,55.6953 7.12363,57.8216 c 0.10187,1.0105 0.63839,1.0801 1.08003,1.0801 H 29.2642 c 0.5787,-0.1778 0.54,-0.7023 0.54,-1.0801 v -2.1431 m -10.8678,-4.742 -0.0675,8.8427" inkstitch:satin_column="True" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="2" inkstitch:force_lock_stitches="True" inkstitch:zigzag_underlay="True" inkscape:label="Auto-remplissage satin 1"/>
</g>
<g inkscape:groupmode="layer" inkscape:label="GlyphLayer-," style="display:none;fill:none;stroke:#00673e;stroke-width:0.945;stroke-opacity:1;stroke-miterlimit:4;" id="g157542">
<path id="autosatin30" d="m 8.74618,69.7367 -0.68824,1.1121 -0.46112,1.2045 -0.25863,1.3396 -0.08074,1.517 0.135,1.8225 0.40499,1.1475 0.6075,1.1475 0.74249,0.7425 0.94497,0.4725 1.215,0.3375 1.0542,0.0958 M 9.09222,69.3071 9.9024,68.3938 l 0.8374,-0.6052 0.9049,-0.3353 1.0127,-0.1033 1.5356,0.135 1.3669,0.405 1.1981,0.675 1.0294,0.945 0.8268,1.2487 0.5907,1.5863 0.3543,1.9237 0.0063,0.1199 M 7,79.3125 18.4375,68.1875" sodipodi:nodetypes="cscsscsssssccsssssssccccc" inkstitch:satin_column="True" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkscape:label="Auto-remplissage satin 2"/>
<path d="m 16.9774,78.7066 -0.0641,1.2615 v 0 l -0.0136,0.2686 -0.1535,1.5234 -0.3324,1.4919 -0.0173,0.0481 v 0 l -0.4993,1.392 -0.6693,1.3761 -0.1993,0.3125 v 0 l -0.6235,0.9778 -0.9997,1.1591 -0.5271,0.4442 v 0 l -0.6336,0.5341 -1.2532,0.8434 -0.9202,0.4855 v 0 l -0.45789,0.2416 -1.38323,0.6243" inkstitch:running_stitch_length_mm="2" id="autosatinrun26" inkscape:label="Points droits pour auto-remplissage satin 3" sodipodi:nodetypes="cccccccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin31" d="m 6.90989,92.0466 -0.00187,-0.4527 0.34943,-0.4841 1.14749,-1.0125 1.28249,-0.8775 1.28247,-0.8775 1.1475,-1.0124 0.945,-1.1475 0.675,-1.2825 0.405,-1.4175 0.135,-1.5525 v -1.08 l -1.9158,-0.1742 m -5.29062,11.6991 0.43073,0.3125 0.83573,0.0425 1.75496,-0.27 2.025,-0.81 2.025,-1.35 1.755,-1.89 1.485,-2.3624 1.215,-2.7675 0.4725,-1.5356 0.3375,-1.6369 0.27,-3.5775 -0.1119,-2.1413 m -6.1318,7.1363 7.0199,-5.7375 m -9.2474,11.4075 2.835,4.0499 m -1.9354,-10.2502 7.8204,-6.816" sodipodi:nodetypes="cscsscsssssccsssssssccc" inkstitch:satin_column="True" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="2" inkstitch:force_lock_stitches="True" inkstitch:zigzag_underlay="True" inkscape:label="Auto-remplissage satin 4"/>
</g>
<g inkscape:groupmode="layer" inkscape:label="GlyphLayer-*" style="display:none;fill:none;stroke:#00673e;stroke-width:0.945;stroke-opacity:1;stroke-miterlimit:4;" id="g157534">
<path id="autosatin24" d="m 8.43273,39.875 c 0.67945,1.016 1.05102,1.5465 1.95107,1.9065 0.9,0.36 1.89,0.18 2.97,-0.5401 0.72,-0.36 1.44,-0.9 2.1601,-1.62 0.72,-0.72 1.35,-1.53 1.89,-2.43 0.54,-0.9 1.7353,-2.9813 2.4553,-3.8813 0.7201,-0.9001 1.4654,-1.4119 2.1601,-1.8901 M 8.16272,39.47 c -0.72156,-1.079 -1.10901,-2.4586 -0.749,-3.3586 0.36,-0.9001 1.08001,-1.7101 2.16003,-2.4301 0.36001,-0.36 1.08005,-0.54 2.16005,-0.54 1.08,0 2.16,-0.09 3.24,-0.27 l 3.2401,-0.54 3.6704,-1.2488 m -9.2055,1.3838 4.1176,6.6826" inkstitch:satin_column="True" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkscape:label="Auto-remplissage satin 1"/>
<path d="m 22.4096,29.1349 -0.1041,-1.5355 -0.0017,-0.047 v 0 l -0.0552,-1.4868 -0.0492,-1.5314 6e-4,-0.0403 v 0 l 0.0203,-1.4949 0.0424,-1.5478 9e-4,-0.0168 v 0 l 0.0826,-1.5168 -0.1137,-1.5282 2e-4,-0.0089 v 0 l 0.0335,-1.5399" inkstitch:running_stitch_length_mm="2" id="autosatinrun21" inkscape:label="Points droits pour auto-remplissage satin 2" sodipodi:nodetypes="ccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin25" d="m 22.0686,15.321 c -2.2715,0 -3.8547,0.72 -3.8547,3.2401 l 0.54,2.7 1.08,3.2401 1.2572,3.1725 c 0.4194,1.0584 0.9885,2.2163 1.2585,2.9701 M 22.534,15.321 c 1.44,0 2.43,0.27 2.97,0.81 0.54,0.54 0.81,1.53 0.81,2.9701 0,0.72 -0.18,1.44 -0.54,2.16 -0.36,0.72 -0.72,1.62 -1.08,2.7001 l -1.08,3.24 -0.945,3.3666 m -4.3876,-8.0917 7.8976,-0.0675" inkstitch:satin_column="True" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkscape:label="Auto-remplissage satin 3"/>
<path d="m 20.4087,29.8586 -1.1499,-0.5301 v 0 L 19.032,29.224 17.6282,28.5613 16.4089,28.026 v 0 l -0.1861,-0.0817 -1.3993,-0.6817 -1.2316,-0.6092 v 0 l -0.1561,-0.0772 -1.3335,-0.7294 -1.2062,-0.786 v 0 l -0.0591,-0.0385 -1.32484,-0.8" inkstitch:running_stitch_length_mm="2" id="autosatinrun22" inkscape:label="Points droits pour auto-remplissage satin 4" sodipodi:nodetypes="ccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin26" d="m 8.05223,23.7164 c -0.79877,1.3979 -0.63851,1.7748 -0.63851,2.6748 0,0.9 0.54,1.71 1.62002,2.43 0.72001,0.36 1.62006,0.63 2.70006,0.81 1.08,0.1801 2.16,0.2701 3.24,0.2701 1.0801,0 3.2317,-0.045 4.3117,0.135 1.08,0.18 1.98,0.45 2.7,0.81 M 8.33861,23.2272 c 0.644,-1.127 1.68519,-2.0561 2.58519,-2.2361 0.9,-0.18 1.71,0.09 2.43,0.81 l 1.62,1.62 2.1601,2.4301 c 1.44,1.62 2.2363,2.5348 2.43,2.7 l 2.5229,2.1516 m -5.9654,-7.7542 -4.2526,8.0327" inkstitch:satin_column="True" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkscape:label="Auto-remplissage satin 5"/>
<path d="m 22.1996,33.9395 0.0145,0.8799 v 0 l 0.0106,0.6393 0.0442,1.5572 0.0263,1.0299 v 0 l 0.0124,0.4817 -0.0033,1.5125 -0.0098,1.233 v 0 l -0.0022,0.2814 -0.0387,1.5544 0.0165,1.391 v 0 l 0.0018,0.1503 -0.0523,1.5347" inkstitch:running_stitch_length_mm="2" id="autosatinrun23" inkscape:label="Points droits pour auto-remplissage satin 6" sodipodi:nodetypes="ccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin27" d="m 22.5255,47.73 c 1.4401,0 1.9885,-0.3684 2.7085,-1.0885 0.72,-0.72 1.08,-1.62 1.08,-2.7 0,-0.72 -0.18,-1.62 -0.54,-2.7001 -0.36,-1.08 -0.72,-2.07 -1.08,-2.97 -0.36,-0.9 -1.2263,-2.8604 -1.5863,-3.9404 -0.36,-1.08 -0.4472,-1.9969 -0.54,-2.7 M 21.994,47.7216 c -1.4401,0 -2.4301,-0.36 -2.9701,-1.0801 -0.54,-0.72 -0.81,-1.8 -0.81,-3.24 0,-0.36 0.18,-0.99 0.54,-1.89 0.36,-0.9001 0.72,-1.8901 1.08,-2.9701 l 1.08,-3.2401 1.2151,-3.7378 m -3.8476,8.9354 8.1001,-0.0675" inkstitch:satin_column="True" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkscape:label="Auto-remplissage satin 7"/>
<path d="m 24.1214,30.352 1.272,-0.8373 0.8545,-0.5577 v 0 l 0.4398,-0.287 1.3212,-0.7661 1.3429,-0.7082 0.1642,-0.0839 v 0 l 1.2224,-0.6247 1.3411,-0.7554 0.6162,-0.5754 v 0 l 0.4982,-0.4652 1.1752,-1.0191" inkstitch:running_stitch_length_mm="2" id="autosatinrun24" inkscape:label="Points droits pour auto-remplissage satin 8" sodipodi:nodetypes="ccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin28" d="m 35.2123,22.3391 c -0.5424,-0.6439 -0.9772,-0.9695 -1.6081,-1.348 -0.9001,-0.54 -1.8901,-0.45 -2.9701,0.27 l -1.62,1.89 -2.1601,2.7001 c -0.72,0.9 -1.4344,2.5791 -1.9744,3.2991 -0.54,0.72 -1.1531,1.0322 -1.89,1.62 m 12.5433,-8.043 c 0.2314,0.2746 0.286,0.3709 0.5013,0.6938 0.72,1.0801 0.99,2.0701 0.81,2.9701 -0.18,0.9 -0.81,1.71 -1.89,2.43 -0.36,0.36 -1.08,0.54 -2.1601,0.54 -1.08,0 -2.16,0.09 -3.24,0.27 -1.08,0.1801 -2.641,0.0366 -3.721,0.3966 -1.08,0.36 -1.9041,0.7453 -2.7001,1.08 m 4.8686,-8.1592 5.1301,7.0202" inkstitch:satin_column="True" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkscape:label="Auto-remplissage satin 9"/>
<path id="autosatin29" d="m 22.8377,31.5128 2.3963,2.9785 2.1601,2.7001 1.89,2.16 1.35,1.35 1.755,0.7426 0.7763,0.1181 0.7088,-0.0506 0.6412,-0.2194 0.5738,-0.3882 0.5062,-0.5568 0.4388,-0.7257 0.2012,-0.423 m -13.1783,-7.9218 1.2179,0.4569 1.4822,0.3531 3.7969,0.7847 5.4001,0.81 1.2352,0.8567 0.4074,0.5148 0.2635,0.5813 0.117,0.6547 -0.0324,0.7346 -0.5239,1.7363 m -9.0944,-0.1508 3.78,-6.2776" inkstitch:satin_column="True" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="2" inkstitch:force_lock_stitches="True" inkstitch:zigzag_underlay="True" inkscape:label="Auto-remplissage satin 10"/>
</g>
<g inkscape:groupmode="layer" inkscape:label="GlyphLayer-)" style="display:none;fill:none;stroke:#00673e;stroke-width:0.945;stroke-opacity:1;stroke-miterlimit:4;" id="g157530">
<path d="m 14.8521,77.2094 -0.9333,1.2199 -0.9511,1.1997 -0.1869,0.2007 v 0 l -0.8753,0.9405 -0.9855,1.1553 -0.6025,0.7502 v 0 l -0.36918,0.4598 -0.98571,1.183 m -1.05169,1.0958 -0.0997,0.0616" inkstitch:running_stitch_length_mm="2" id="autosatinrun19" inkscape:label="Points droits pour auto-remplissage satin 1" sodipodi:nodetypes="ccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin22" d="m 7.97678,85.6042 0.37792,0.1792 0.48773,0.0248 1.68747,-0.27 1.8225,-0.81 4.0499,-2.7 1.5693,-1.7043 1.4681,-1.8731 0.4285,-0.64 M 7.64566,85.3476 7.25819,84.7067 7.22246,83.6482 7.35458,82.26 l 0.26075,-1.2486 0.84465,-2.1816 1.17088,-1.9324 1.37154,-1.889 0.5939,-0.9168 m -0.4679,-0.102 9.0977,4.0902" inkstitch:satin_column="True" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkscape:label="Auto-remplissage satin 2"/>
<path d="m 17.8218,71.8651 0.5697,-1.4146 0.1057,-0.2803 v 0 l 0.4313,-1.1433 0.4739,-1.4488 0.2752,-0.9813 v 0 l 0.1364,-0.4866 0.4117,-1.4679 0.322,-1.492 0.0407,-0.2053 v 0 l 0.2567,-1.294 0.2975,-1.4992 0.1288,-0.9088 v 0 l 0.0865,-0.6103 0.21,-1.5203 0.1654,-1.5244 0.0051,-0.0809 v 0 l 0.0911,-1.4518 0.0962,-1.5328 0.0307,-0.7744 v 0 l 0.0302,-0.7605 0.0442,-1.536 0.0376,-1.4673 v 0 l 0.0014,-0.0539 -0.0444,-1.5355 -0.0444,-1.5355 -0.0293,-0.6387 v 0 l -0.0412,-0.8952 -0.0963,-1.5323 -0.0836,-1.3314 v 0 L 21.7179,40.2609 21.5355,38.739 21.3239,37.2193 21.2485,36.728 v 0 L 21.0913,35.7046 20.7924,34.206 20.5572,33.0272 v 0 L 20.4934,32.7073 20.1709,31.2174 19.8163,29.7399 19.724,29.3554 v 0 L 19.4616,28.2623 19.0119,26.8041 18.6651,25.744 v 0 l -0.1269,-0.3882 -0.5243,-1.4362 -0.6216,-1.3989 -0.139,-0.263 v 0 L 16.6758,21.166 15.8374,19.8817 15.2269,19.0938 v 0 l -0.3294,-0.4249 -0.9723,-1.184 -1.013,-1.1449 -0.1119,-0.1241 v 0 l -0.9208,-1.0206 -1.0297,-1.1352 -0.5313,-0.674 v 0 L 9.89627,12.8504 8.89543,11.6814" inkstitch:running_stitch_length_mm="2" id="autosatinrun20" inkscape:label="Points droits pour auto-remplissage satin 3" sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin23" d="m 7.58107,10.7919 -0.28427,0.3778 -0.07434,0.6599 0.14873,1.9816 0.6212,2.2095 1.18122,2.4089 1.82879,2.5798 0.9085,1.2689 0.7389,1.3653 0.5868,1.4491 0.4526,1.5206 0.5735,3.2053 0.2496,3.3406 0.6075,7.0873 0.2025,7.7624 -0.2025,7.8298 -0.6075,7.2899 -0.4666,3.4113 -0.6651,3.1656 -0.9767,2.847 -0.6406,1.2814 -0.167,0.2577 m -3.65242,-63.6203 0.40046,-0.2294 0.49809,-0.0323 1.68747,0.27 1.8225,0.81 4.0499,2.7 1.7887,1.6874 1.5862,1.8225 1.3837,1.9574 1.1813,2.0925 2.0249,4.3874 1.755,4.5224 1.35,4.5224 0.81,4.3875 0.4049,4.3199 0.135,4.3199 -0.135,4.3199 -0.4049,4.3199 -0.81,4.3874 -1.35,4.5224 -1.8225,4.455 -2.2274,4.1849 -1.2656,2.2106 -0.9384,1.4018 M 13.7576,48.6836 h 16.6096" inkstitch:satin_column="True" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="2" inkstitch:force_lock_stitches="True" inkstitch:zigzag_underlay="True" inkscape:label="Auto-remplissage satin 4"/>
</g>
<g inkscape:groupmode="layer" inkscape:label="GlyphLayer-(" style="display:none;fill:none;stroke:#00673e;stroke-width:0.945;stroke-opacity:1;stroke-miterlimit:4;" id="g157526">
<path d="m 18.8578,72.7572 -0.62,-1.4103 -0.4862,-1.2671 v 0 l -0.064,-0.167 -0.5494,-1.4343 -0.4513,-1.4694 -0.1353,-0.4677 v 0 L 16.2599,65.5332 15.8497,64.0546 15.625,62.9217 v 0 l -0.0745,-0.3761 -0.2993,-1.5091 -0.279,-1.5138 -0.0373,-0.2752 v 0 L 14.765,57.992 14.5651,56.461 14.4854,55.5365 v 0 l -0.0529,-0.613 -0.0963,-1.5423 -0.0963,-1.5423 -0.0011,-0.033 v 0 l -0.0514,-1.512 -0.0469,-1.5454 0.002,-0.6799 v 0 l 0.0025,-0.8583 0.045,-1.5568 0.0382,-1.3225 v 0 l 0.0068,-0.2343 0.0972,-1.5535 0.0978,-1.5535 0.034,-0.3899 v 0 l 0.1008,-1.1588 0.2148,-1.5407 0.1408,-1.0104 v 0 l 0.0739,-0.5303 0.2869,-1.5234 0.3035,-1.5193 0.0208,-0.1018 v 0 l 0.2894,-1.4161 0.4329,-1.4854 0.2088,-0.7166 v 0 l 0.2241,-0.7688 0.4892,-1.4698 0.5093,-1.2923 v 0 l 0.0573,-0.1454 0.593,-1.4301 0.6513,-1.4054 0.2206,-0.4324 v 0 l 0.4825,-0.9456 0.7934,-1.329 0.6075,-0.9521 v 0 l 0.2222,-0.3483 0.8968,-1.2586 0.9393,-1.2348 0.1508,-0.1723 v 0 l 0.8581,-0.9802 1.0611,-1.131 0.5565,-0.6885 v 0 l 0.4192,-0.5186 0.9091,-1.2501" inkstitch:running_stitch_length_mm="2" id="autosatinrun17" inkscape:label="Points droits pour auto-remplissage satin 1" sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin20" d="M 28.0583,10.5416 27.6766,10.3154 27.08,10.28 25.7975,10.55 24.11,11.36 20.06,14.06 16.6175,17.9075 15.1494,19.8819 13.85,21.89 11.6225,26.075 9.8,30.53 8.45,35.0525 7.64,39.44 7.235,43.76 7.1,48.08 7.235,52.0625 7.64,56.45 l 0.81,4.59 1.35,4.59 1.8225,4.5225 2.2275,4.3875 1.2994,2.0925 1.4681,1.9575 1.4928,1.6621 M 28.2945,10.8369 28.5355,11.2688 28.7,11.9 28.9496,13.4755 28.7,15.14 28.054,16.6478 27.2656,17.957 26,20 25.46,21.08 24.2281,23.8644 23.2325,26.8175 22.4731,29.9394 21.95,33.23 21.3425,40.3175 21.14,48.08 l 0.2025,7.7625 0.6075,7.0875 0.5231,3.2906 0.7594,3.1219 0.9956,2.9531 1.2319,2.7844 0.3675,0.7349 M 4.94,48.89 22.49,48.62" inkstitch:satin_column="True" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" sodipodi:nodetypes="csscsssssssccsccsscsssssccccc" inkscape:label="Auto-remplissage satin 2"/>
<path id="autosatin21" d="M 28.4162,85.1073 28.648,84.5335 28.7,83.72 28.5017,81.512 27.9461,79.8319 26,76.16 25.8275,75.8149 m 2.3862,9.6215 -0.4536,0.3728 L 27.08,85.88 25.3925,85.61 23.57,84.8 22.6419,84.4287 21.7475,83.855 20.8869,83.0787 20.06,82.1 18.2544,80.4125 18.1103,80.2521 m -0.3179,0.2955 8.4645,-4.8643" inkstitch:satin_column="True" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="2" inkstitch:force_lock_stitches="True" inkstitch:zigzag_underlay="True" sodipodi:nodetypes="csscsssssssccsccsscsssssccccc" inkscape:label="Auto-remplissage satin 4"/>
</g>
<g inkscape:groupmode="layer" inkscape:label="GlyphLayer-'" style="display:none;fill:none;stroke:#00673e;stroke-width:0.945;stroke-opacity:1;stroke-miterlimit:4;" id="g157522">
<path d="m 11.8286,41.5093 0.0191,-1.5296 0.0052,-0.4229 v 0 l 0.0138,-1.1066 0.0191,-1.5296 0.0064,-0.807 v 0 l 0.0058,-0.7238 5e-4,-1.533 4e-4,-1.1866 v 0 l 10e-5,-0.3465 5e-4,-1.533 -0.0112,-1.5348 -6e-4,-0.0291 v 0 l -0.0331,-1.5092 -0.0337,-1.5382 -0.0093,-0.3951 v 0 l -0.0271,-1.1579 -0.049,-1.5336 -0.0345,-0.7501 v 0 l -0.0361,-0.7863 -0.0956,-1.5354 0.0013,-1.1179 v 0 l 5e-4,-0.4126 -0.019,-1.5168" inkstitch:running_stitch_length_mm="2" id="autosatinrun16" inkscape:label="Points droits pour auto-remplissage satin 1" sodipodi:nodetypes="ccccccccccccccccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin19" d="m 11.27,15.4598 c -1.08,0 -1.71001,0.27 -2.43001,0.81 -0.72001,0.54 -1.17001,1.35 -1.35001,2.4301 -0.18,1.08 -0.08185,2.1481 0,3.24 0.08454,1.1277 0.14487,1.9909 0.27,2.7 L 11,43 m 0.8606,-27.5402 c 1.08,0 1.6594,0.27 2.3794,0.81 0.72,0.54 1.17,1.26 1.35,2.1601 0.18,0.9 0.27,1.89 0.27,2.97 0,0 0.0763,1.8032 0,2.7 C 15.3181,30.4688 12.62,43 12.62,43 M 6.40483,26.1795 16.81,25.9885" inkstitch:satin_column="True" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="2" inkstitch:force_lock_stitches="True" inkstitch:zigzag_underlay="True" inkscape:label="Auto-remplissage satin 2"/>
</g>
<g inkscape:groupmode="layer" inkscape:label="GlyphLayer-&" style="display:none;fill:none;stroke:#00673e;stroke-width:0.945;stroke-opacity:1;stroke-miterlimit:4;" id="g157518">
<path d="m 35.8509,47.3626 0.6733,-1.3962 0.7038,-1.3756 0.0056,-0.0097 v 0 l 0.7714,-1.3302 0.9321,-1.2382 0.4232,-0.4421 v 0 l 0.6334,-0.6617 1.2848,-0.8321 0.9651,-0.7991 v 0 l 0.2047,-0.1695 0.9949,-1.1695" inkstitch:running_stitch_length_mm="2" id="autosatinrun14" inkscape:label="Points droits pour auto-remplissage satin 6" sodipodi:nodetypes="ccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path d="m 16.026,66.087 -1.2899,-0.8173 -1.0389,-1.0692 v 0 L 13.6666,64.169 12.8691,62.8621 12.2355,61.4695 12.0417,60.9072 v 0 l -0.3047,-0.8843 -0.3072,-1.5051 -0.111,-1.2231 v 0 l -0.0281,-0.3105 -0.0128,-1.5363 0.1295,-1.5311 0.055,-0.3101 v 0 l 0.2133,-1.2023 0.4093,-1.4802 0.3502,-0.8753 v 0 l 0.2204,-0.5508 0.6969,-1.3711 0.8206,-1.3032 0.016,-0.0233 v 0 l 0.8538,-1.2471 0.9372,-1.2149 0.467,-0.4576 v 0 l 0.632,-0.6194 1.1199,-1.0535 0.9122,-0.8938 v 0 l 0.179,-0.1753 1.17,-1.0069 1.1845,-0.992 0.2764,-0.2314 v 0 l 0.9081,-0.7605 1.1845,-0.9919 0.7412,-0.6259 v 0 l 0.4391,-0.3708 1.1528,-1.0279 1.1526,-1.0282 0.0265,-0.024 v 0 l 1.1172,-1.0139 1.0977,-1.0808 0.3774,-0.5298 v 0 l 0.5166,-0.7253 0.7364,-1.3485 0.4803,-1.1785 v 0 l 0.1015,-0.2488 0.2529,-1.4898 0.0134,-1.5698 -0.0628,-0.3443 v 0 l -0.2186,-1.1997 -0.6167,-1.4401 -0.5617,-0.7204 v 0 l -0.4014,-0.5149 -1.2409,-0.9614 -1.3384,-0.6247 v 0 L 27.6904,19.0474 26.184,18.621 24.6168,18.4597 24.1559,18.4551 v 0 l -1.115,-0.011 -1.5037,0.2069 -1.0143,0.3301 v 0 l -0.4828,0.1571 -1.3684,0.7749 -1.1802,1.0475 -0.0244,0.0333 v 0 l -0.9085,1.2362 -0.6157,1.4357 -0.0942,0.5959 v 0 l -0.1511,0.9552 0.1045,1.5648 0.2721,1.132 v 0 l 0.0977,0.4067 0.6612,1.4345 0.8352,1.3449 0.0729,0.0936 v 0 l 0.8627,1.1064 0.451,1.2966 -0.2856,0.8786 v 0 l -0.1908,0.5871 -0.4765,1.4656" inkstitch:running_stitch_length_mm="2" id="autosatinrun12" inkscape:label="Points droits pour auto-remplissage satin 1" sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin13" d="M 17.9125,37.7993 23.92,32.7199 21.9345,30.6054 20.4891,28.7609 19.7745,27.2304 19.6,25.6998 l 0.0844,-0.7931 0.2531,-0.7594 0.4219,-0.7256 0.5906,-0.6919 0.6919,-0.5906 0.7256,-0.4219 0.7594,-0.2531 0.7931,-0.0844 1.5525,0.27 1.4175,0.81 0.5906,0.6075 0.4219,0.7425 0.2531,0.8775 0.0844,1.0125 -0.27,2.025 -0.3375,0.9113 -0.4725,0.8437 -1.35,1.6201 -1.89,1.62 -6.5427,5.5163 -2.5871,2.1865 -2.4802,2.2872 -1.755,2.43 -1.48505,2.43 -1.1475,2.43 -0.7425,2.43 -0.40501,2.6325 -0.135,3.0375 0.27,3.5101 0.33751,1.5525 0.4725,1.4175 1.215,2.4975 1.48505,2.0925 1.755,1.62 0.9787,0.6075 L 14.2,71.87 16.495,72.4775 19.06,72.68 21.49,72.545 23.38,72.14 25,71.3975 26.62,70.25 28.1725,68.6975 29.59,66.74 l 2.97,-5.4 3.4307,-6.2376 M 17.3387,38.1874 13.12,31.0999 12.4112,29.7161 11.905,28.2648 11.6012,26.7461 11.5,25.1598 l 0.2025,-2.025 0.6075,-1.755 0.945,-1.5525 1.215,-1.4175 1.485,-1.215 1.755,-0.945 2.2275,-0.6075 2.9025,-0.2025 h 1.62 l 2.565,0.1688 2.295,0.5062 2.025,0.8438 1.755,1.1812 1.4175,1.485 1.0125,1.755 0.6075,2.025 0.2025,2.295 -0.135,1.5525 -0.405,1.4175 -1.35,2.9701 -1.0125,1.5525 -1.4175,1.4175 -3.78,3.51 -6.48,5.4 -2.5988,2.9025 -1.8562,2.7675 -0.6497,1.3331 -0.4641,1.2994 -0.2784,1.2657 -0.0928,1.2318 0.27,2.43 0.3375,1.2825 0.4725,1.1475 0.7425,0.945 1.1475,0.675 1.4175,0.405 1.5525,0.135 1.1475,-0.2025 1.2825,-0.6075 1.2825,-0.8775 1.1475,-1.0125 0.945,-1.1475 0.675,-1.2825 0.8741,-2.2391 0.9102,-2.6028 0.2683,-0.6541 M 24.175,14.758 24.0073,22.2989 M 19.7619,60.1103 16.3254,73.761 m -0.9546,-35.6064 5.7276,7.2549 m 1.7598,-15.2252 -10.4487,1.4556 m 15.1801,-5.1314 9.8264,0.0955" sodipodi:nodetypes="ccssssssscscssssssssssccssssccssssssssssssccssssssssssssssccccccccccccc" inkstitch:satin_column="True" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkscape:label="Auto-remplissage satin 2"/>
<path d="m 29.1488,52.5716 -0.1406,-1.5227 -0.0633,-0.6862 v 0 l -0.0773,-0.8365 -0.1159,-1.5125 -0.0676,-0.8943 v 0 l -0.0467,-0.6176 -0.3311,-1.435 -0.7023,-0.9254 v 0 L 27.376,43.841 26.4615,42.6094 26.8993,41.34 v 0 l 0.0601,-0.1741 0.5348,-1.4386" inkstitch:running_stitch_length_mm="2" id="autosatinrun13" inkscape:label="Points droits pour auto-remplissage satin 3" sodipodi:nodetypes="cccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin14" d="M 27.8181,38.4574 21.76,43.5199 29.1344,54.0331 M 28.24,38.1199 l 4.86,5.94 c -1.2919,2.9655 -2.5858,5.9277 -3.7462,9.1125 M 22.3749,45.544 32.5674,42.4198" inkstitch:satin_column="True" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" sodipodi:nodetypes="cccccccc" inkscape:label="Auto-remplissage satin 4"/>
<path id="autosatin15" d="M 35.9907,55.1024 38.5,50.5399 39.9298,47.9185 m -9.6372,2.7954 0.7567,-1.8451 2.0507,-4.8089 0.0186,-0.0456 m -3.047,4.5454 8.305,4.2957" sodipodi:nodetypes="ccssssssscscssssssssssccssssccssssssssssssccssssssssssssssccccccccccccc" inkstitch:satin_column="True" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkscape:label="Auto-remplissage satin 5"/>
<path id="autosatin16" d="m 44.4147,36.2636 -0.7554,-0.5115 -0.7169,-0.2479 -1.7423,-0.0843 -1.4851,0.2025 -1.215,0.6075 -1.08,0.945 -1.08,1.215 -1.89,2.7 -0.7202,1.4256 -0.6112,1.4988 m 11.8615,-7.2444 0.7087,0.7594 0.5063,0.9281 0.3037,1.0969 0.1013,1.2656 -0.135,0.945 -0.405,0.675 -0.54,0.405 -0.54,0.135 -0.81,0.135 -0.81,0.405 -0.81,0.675 -0.81,0.945 -1.6201,2.43 -0.1901,0.3487 m 0.3889,0.1076 -7.5035,-4.2999" sodipodi:nodetypes="ccssssssscscssssssssssccssssccssssssssssssccssssssssssssssccccccccccccc" inkstitch:satin_column="True" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkscape:label="Auto-remplissage satin 7"/>
<path id="autosatin17" d="m 38.5,50.5399 1.485,2.6494 1.2151,2.5481 0.945,2.4469 0.675,2.3456 0.81,4.2526 0.27,3.5775 -0.27,3.51 -0.3375,1.5525 -0.4725,1.4175 -0.1995,0.4101 M 38.0425,51.328 32.56,61.34 33.1,65.12 v 2.16 l -0.1103,2.0412 m 5.587,-18.7335 -0.61,0.8674" inkstitch:satin_column="True" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" sodipodi:nodetypes="csssssssccccssssccc" inkscape:label="Auto-remplissage satin 8"/>
<path d="m 37.8051,72.2856 -0.4764,1.4354 -0.617,1.4184 -0.072,0.1154 v 0 l -0.731,1.1709 -1.0285,1.1235 -0.5062,0.3537 v 0 l -0.7592,0.5304 -1.4008,0.5692 -1.0475,0.2743 v 0 l -0.4305,0.1128 -1.5054,0.1025 -1.487,-0.2417 -0.056,-0.0232 v 0 l -1.3518,-0.5609" inkstitch:running_stitch_length_mm="2" id="autosatinrun15" inkscape:label="Points droits pour auto-remplissage satin 9" sodipodi:nodetypes="ccccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin18" d="m 25,77 1.5525,-0.135 1.4175,-0.405 1.35,-0.675 1.35,-0.945 1.1475,-1.2825 0.7425,-1.6875 0.405,-2.0925 0.0247,-0.4563 m -8.0076,7.9413 0.1378,1.2415 0.4112,1.0573 0.6811,0.9222 0.9478,0.8365 1.1138,0.7088 1.1812,0.5062 1.2488,0.3038 1.3162,0.1012 2.16,-0.2025 2.16,-0.6075 1.0463,-0.4725 0.9787,-0.6075 1.755,-1.62 1.4851,-2.0925 1.0155,-2.0874 m -11.8808,-1.8709 8.8777,8.0186" inkstitch:satin_column="True" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="2" inkstitch:force_lock_stitches="True" inkstitch:zigzag_underlay="True" sodipodi:nodetypes="csssssssccccssssccc" inkscape:label="Auto-remplissage satin 10"/>
</g>
<g inkscape:groupmode="layer" inkscape:label="GlyphLayer-%" style="display:none;fill:none;stroke:#00673e;stroke-width:0.945;stroke-opacity:1;stroke-miterlimit:4;" id="g157514">
<path id="autosatin7" d="M 8.01266,80.3923 8.14133,80.5337 8.54,80.54 h 4.32 L 13.805,80.27 14.48,79.46 28.7695,54.9638 M 7.9958,80.1181 8,80 22.9799,54.3201 m -0.3398,0.0542 6.3685,0.7081" sodipodi:nodetypes="cssccccccssccc" inkstitch:satin_column="True" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkscape:label="Auto-remplissage satin 2"/>
<path d="m 26.4098,53.7246 0.2348,-0.4025 0.7699,-1.3199 0.7887,-1.3519 0.0469,-0.0805 v 0 l 0.7319,-1.2547 0.7789,-1.3352 0.3295,-0.5648 v 0 l 0.4493,-0.7703 0.7789,-1.3352 0.612,-1.0492 v 0 l 0.1668,-0.286 0.7789,-1.3352 0.7788,-1.3351 0.1158,-0.1985 v 0 l 0.6631,-1.1367 0.7788,-1.3352 0.3984,-0.6828 v 0 l 0.3805,-0.6523 0.7788,-1.3352 0.6809,-1.1673 v 0 l 0.098,-0.1679 0.7789,-1.3352 0.7788,-1.3351 0.1846,-0.3165 v 0 l 0.5943,-1.0187 0.8828,-1.2434 0.815,-0.4841 v 0 l 0.5106,-0.3033 1.3772,-0.6893" inkstitch:running_stitch_length_mm="2" id="autosatinrun7" inkscape:label="Points droits pour auto-remplissage satin 3" sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin8" d="m 44.8851,27.3502 -0.1649,0.2696 -15.9507,27.344 m 16.0321,-27.8105 -0.1763,-0.0776 -0.4451,0.0041 h -4.32 l -0.9451,0.27 -0.675,0.81 -15.2602,26.1603 m 0.9986,-3.4571 8.5043,0.0164" sodipodi:nodetypes="cssccccccssccc" inkstitch:satin_column="True" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="2" inkstitch:force_lock_stitches="True" inkstitch:zigzag_underlay="True" inkscape:label="Auto-remplissage satin 4"/>
<path d="m 17.9336,48.9655 -0.7301,0.7077 -1.4062,0.5174 -1.2454,0.0854 v 0 l -0.2968,0.0203 -1.4884,-0.2827 -1.2622,-0.9231 -0.216,-0.3213 v 0 L 10.6619,47.8365 10.1752,46.3768 9.95483,45.298 v 0 L 9.86537,44.8601 9.7131,43.3191 9.65955,41.7696 9.65813,41.552 v 0 L 9.64957,40.245 9.66905,38.7157 9.71998,37.7901 v 0 l 0.03299,-0.5997 0.14551,-1.5208 0.26232,-1.4959 0.0318,-0.1119 v 0 l 0.3814,-1.3414 0.6038,-1.4331 0.4211,-0.6963 v 0 l 0.3704,-0.6126 1.0746,-1.1171" inkstitch:running_stitch_length_mm="2" id="autosatinrun8" inkscape:label="Points droits pour auto-remplissage satin 5" sodipodi:nodetypes="cccccccccccccccccccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin9" d="m 14.48,29.7798 -0.4725,0.0675 -0.3375,0.2025 -0.54,1.08 -0.54,2.43 -0.2025,1.89 -0.0675,2.43 v 1.62 l 0.135,3.7125 0.405,2.4975 0.3038,0.8269 0.3712,0.5906 0.4388,0.3544 0.5062,0.1181 0.7425,-0.1181 0.6075,-0.3544 0.4725,-0.5906 0.2313,-0.5665 M 14.4758,27.0797 H 13.94 L 12.6238,27.2822 11.375,27.8898 10.1938,28.9023 9.08001,30.3198 8.135,32.176 7.46,34.5048 7.055,37.306 6.92,40.5798 v 1.62 l 0.10125,2.5313 0.30375,2.1937 0.50625,1.8563 0.70875,1.5188 0.91126,1.1812 1.11374,0.8438 1.3163,0.5062 1.5187,0.1688 h 2.7 l 1.5019,-0.1688 1.2657,-0.5062 1.0293,-0.8438 0.1282,-0.1909 M 14.75,46.7898 v 7.2901 M 5.56999,41.5248 H 13.265 M 14.3813,29.9296 14.3756,26.944" inkstitch:satin_column="True" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkscape:label="Auto-remplissage satin 6"/>
<path d="m 17.9336,48.9655 0.3459,-0.3353 0.6135,-1.404 0.3619,-1.5054 0.0284,-0.1992 v 0 l 0.1909,-1.3367 0.0722,-1.5503 0.0183,-0.861 v 0 L 19.579,41.0997 19.5735,39.5368 19.544,38.0106 v 0 l -7e-4,-0.0369 -0.137,-1.5546 -0.2024,-1.5427 -0.1253,-0.597 v 0 l -0.1935,-0.9218 -0.4916,-1.4595 -0.5882,-1.1385 v 0 l -0.1125,-0.2179 -0.9205,-1.234 -1.3126,-0.8016" inkstitch:running_stitch_length_mm="2" id="autosatinrun9" inkscape:label="Points droits pour auto-remplissage satin 7" sodipodi:nodetypes="cccccccccccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin10" d="m 15.0285,29.7966 0.4176,0.0665 0.2152,0.1445 0.3856,0.4727 0.3231,0.6495 0.54,2.43 0.2025,1.89 0.0675,2.43 v 1.62 l -0.135,3.7125 -0.405,2.4975 -0.1062,0.2604 M 15.02,27.0797 l 1.3163,0.2025 1.2487,0.6076 1.1813,1.0125 1.1138,1.4175 0.945,1.8562 0.675,2.3288 0.405,2.8012 0.135,3.2738 v 1.62 l -0.0844,2.5313 -0.2531,2.1937 -0.4219,1.8563 -0.5906,1.5188 -0.665,0.9903 M 16.1,41.5248 l 7.2901,-0.135" inkstitch:satin_column="True" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="2" inkstitch:force_lock_stitches="True" inkstitch:zigzag_underlay="True" inkscape:label="Auto-remplissage satin 8"/>
<path id="autosatin11" d="m 37.485,57.3241 -0.4324,0.0654 -0.4325,0.2004 -0.4725,0.405 -0.3375,0.675 -0.54,2.43 -0.2025,2.025 -0.0675,2.835 v 1.62 l 0.2025,3.6451 0.2532,1.3162 0.3543,0.9788 0.8775,1.215 0.4894,0.3037 0.5231,0.1013 0.5063,-0.1181 0.4387,-0.3544 0.3713,-0.5907 0.3037,-0.8268 0.4051,-2.3625 0.0443,-1.0857 M 37.4303,55.1599 h -0.2702 l -1.5356,0.1856 -1.3669,0.5569 -1.1981,0.9281 -1.0294,1.2994 -0.8269,1.7381 -0.5906,2.2444 -0.3544,2.7507 -0.1181,3.2568 v 1.62 l 0.0844,2.5313 0.2531,2.1938 0.4219,1.8562 0.5906,1.5188 0.7931,1.1812 1.0294,0.8438 1.2657,0.5062 1.5018,0.1688 h 2.7 l 1.5188,-0.1688 1.3163,-0.5062 1.1137,-0.8438 0.9113,-1.1812 0.7087,-1.5188 0.5063,-1.8562 0.2794,-2.0181 m -7.4385,1.7485 v 6.75 m -8.771,-13.77 6.885,0.135 m 1.5788,-9.8624 -0.0614,-2.3971" sodipodi:nodetypes="cssssssssscscccssssssssssssssccc" inkstitch:satin_column="True" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkscape:label="Auto-remplissage satin 10"/>
<path d="m 42.2915,72.6345 0.1605,-1.5101 0.0698,-1.5183 0.0093,-0.4195 v 0 l 0.0245,-1.1 -0.0327,-1.5285 -0.0437,-1.1202 v 0 l -0.0159,-0.4061 -0.1279,-1.52 -0.2015,-1.5045 -0.0573,-0.2949 v 0 L 41.835,60.4695 41.3548,58.9963 40.9159,58.1712 v 0 l -0.2726,-0.5125 -1.0908,-1.0588" inkstitch:running_stitch_length_mm="2" id="autosatinrun11" inkscape:label="Points droits pour auto-remplissage satin 11" sodipodi:nodetypes="cccccccccccccccccccc" inkstitch:ties="3" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin12" d="m 37.9492,55.1519 0.2909,0.008 1.4844,0.1467 1.2157,0.3933 1.08,0.81 1.08,1.35 0.945,1.89 0.675,2.43 0.405,2.835 0.135,3.105 v 1.62 l -0.1013,2.5313 -0.0243,0.1757 m -7.194,-15.1228 0.6229,0.0545 0.4285,0.211 0.3073,0.4208 0.2595,0.6834 0.2041,1.2184 0.0973,1.4577 v 4.59 1.62 l -0.0907,2.2219 m -0.7194,-2.6264 7.0201,-0.135" sodipodi:nodetypes="cssssssssscscccssssssssssssssccc" inkstitch:satin_column="True" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="2" inkstitch:force_lock_stitches="True" inkstitch:zigzag_underlay="True" inkscape:label="Auto-remplissage satin 12"/>
</g>
<g inkscape:groupmode="layer" inkscape:label="GlyphLayer-"" style="display:none;fill:none;stroke:#00673e;stroke-width:0.945;stroke-opacity:1;stroke-miterlimit:4;" id="g157502">
<path id="autosatin4" d="m 12.6601,43 1.4167,-7.0616 0.3637,-2.0713 M 11.0401,43 9.46846,34.0941 m -0.22949,0.1098 5.43113,-0.2496" inkstitch:satin_column="True" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" sodipodi:nodetypes="cssssccsscsc" inkscape:label="Auto-remplissage satin 1"/>
<path d="m 11.9572,32.6695 5e-4,-0.2375 0.0032,-1.5486 -0.0097,-1.5506 -0.0022,-0.107 v 0 l -0.0295,-1.447 -0.0316,-1.5539 -0.009,-0.4421 v 0 l -0.0227,-1.1119 -0.069,-1.5579 -0.0397,-0.7711 v 0 l -0.0393,-0.7634 -0.1103,-1.5306 -0.0137,-1.1447 v 0 l -0.0044,-0.3686 -0.0159,-1.5513" inkstitch:running_stitch_length_mm="2" id="autosatinrun4" inkscape:label="Points droits pour auto-remplissage satin 2" inkstitch:ties="3" sodipodi:nodetypes="cccccccccccccccccccc" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin5" d="m 11.3653,15.4602 -1.37759,0.2025 -1.1076,0.6075 -0.87749,1.0125 -0.4725,1.4175 -0.09735,1.6155 0.09735,1.6245 0.27,2.6999 1.66834,9.454 m 2.38014,-18.6339 1.3507,0.2025 1.0808,0.6075 0.8775,0.945 0.4725,1.215 0.27,2.97 v 2.6999 l -0.7349,5.64 -0.7247,4.127 M 8.87012,16.2702 H 14.2901 M 7.52013,18.7005 15.6401,18.4299 M 7.52015,21.9408 15.91,21.3995 M 7.79015,24.6408 15.91,24.0995" inkstitch:satin_column="True" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="2" inkstitch:force_lock_stitches="True" inkstitch:zigzag_underlay="True" sodipodi:nodetypes="cssssccsscsc" inkscape:label="Auto-remplissage satin 3"/>
<path d="m 24.81,32.6678 v -0.2536 -1.5488 -1.5489 -0.0928 0 -1.4561 -1.5488 -0.4391 0 -1.1098 l 0.0561,-1.5524 -0.0044,-0.7809 v 0 l -0.0043,-0.7578 -0.0667,-1.5395 -0.0881,-1.1419 v 0 l -0.0313,-0.406 -0.0423,-1.5248" inkstitch:running_stitch_length_mm="2" id="autosatinrun5" inkscape:label="Points droits pour auto-remplissage satin 4" inkstitch:ties="3" sodipodi:nodetypes="cccccccccccccccccccc" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin6" d="m 24.2605,15.4602 c -1.1647,0.0624 -1.7965,0.342 -2.4205,0.81 -0.72,0.54 -1.17,1.35 -1.35,2.43 -0.18,1.08 -0.0598,2.1467 0,3.24 0.0619,1.1306 0.1449,1.9909 0.27,2.6999 L 24,43 m 0.7497,-27.5398 c 1.0295,-0.042 2.09,0.1648 2.7603,0.81 0.54,0.54 0.99,1.26 1.35,2.16 0.36,0.9 0.3729,1.89 0.3729,2.97 0,1.08 -0.2369,1.9065 -0.3729,2.6999 L 25.62,43" inkstitch:satin_column="True" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="2" inkstitch:force_lock_stitches="True" inkstitch:zigzag_underlay="True" sodipodi:nodetypes="csssscccsssc" inkscape:label="Auto-remplissage satin 5"/>
</g>
<g inkscape:groupmode="layer" inkscape:label="GlyphLayer-!" style="display:none;fill:none;stroke:#00673e;stroke-width:0.945;stroke-opacity:1;stroke-miterlimit:4;" id="g157498">
<path d="m 13.9894,58.9234 0.0011,-1.5407 -9e-4,-1.5475 5e-4,-0.0839 v 0 l 0.0097,-1.4688 0.0211,-1.554 0.0283,-0.6246 v 0 l 0.042,-0.9263 0.0273,-1.5503 0.003,-1.1704 v 0 l 0.001,-0.3802 0.0038,-1.5506 0.0035,-1.551 3e-4,-0.1664 v 0 l 0.0032,-1.3846 0.0271,-1.5466 0.016,-0.7167 v 0 l 0.0185,-0.8246 0.0344,-1.5414 0.0279,-1.2813 v 0 l 0.0057,-0.2602 -0.023,-1.526 -0.0237,-1.5496 -0.0047,-0.312 v 0 l -0.019,-1.2375 -0.0237,-1.5496 0.0099,-0.8607 v 0 l 0.0079,-0.6879 0.0296,-1.5486 0.0269,-1.4112 v 0 l 0.0026,-0.1375 0.0273,-1.5484 -0.0011,-1.5455 -3e-4,-0.4165 v 0 l -7e-4,-1.129 0.0016,-1.5459 -0.0141,-0.9733 v 0 L 14.25,18.7001 14.1872,17.1676" inkstitch:running_stitch_length_mm="2" id="autosatinrun2" inkscape:label="Points droits pour auto-remplissage satin 2" inkstitch:ties="3" sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccc" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin1" d="M 13.7325,15.6403 H 10.748 c -1.44042,0 -2.43072,0.18 -2.97088,0.5401 -0.54016,0.3601 -0.81025,1.2604 -0.81025,2.7009 0,0.3601 0.09003,1.0803 0.27009,2.1606 0.18005,1.0803 0.36011,2.4307 0.54016,4.0512 0.18005,1.6205 0.36011,3.5111 0.54016,5.6717 0.18006,2.1607 0.45014,4.3213 0.81025,6.482 0.36011,3.241 0.54016,4.9515 0.54016,5.1315 0,0.1801 0.09003,1.6205 0.27008,4.3213 l 0.27013,4.0513 v 4.3213 c 0,1.8005 0.18,2.9709 0.5401,3.511 0.3601,0.5402 1.2657,0.7816 2.7008,0.8103 l 0.299,0.006 m 0.5101,-43.7613 2.9721,0.0021 c 1.4404,10e-4 2.5207,0.1801 3.241,0.5402 0.7202,0.3601 1.0803,1.2604 1.0803,2.7008 0,0.7202 -0.2701,2.7908 -0.8103,6.2119 -0.5401,3.421 -0.9903,7.4722 -1.3504,12.1536 -0.3601,2.1607 -0.6302,3.9612 -0.8102,5.4017 -0.1801,1.4404 -0.2701,2.7908 -0.2701,4.0512 0,1.2604 -0.09,2.5208 -0.2701,3.7811 -0.18,1.2604 -0.2701,2.7909 -0.2701,4.5914 0,1.8006 -0.18,2.9709 -0.5401,3.5111 -0.3601,0.5401 -1.2607,0.7828 -2.7008,0.8102 l -0.3129,0.006 M 7.6793,37.1532 20.3792,37.0577" inkstitch:satin_column="True" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="2" inkstitch:force_lock_stitches="True" inkstitch:zigzag_underlay="True" inkscape:label="Auto-remplissage satin 3"/>
<path id="autosatin2" d="m 13.989,67.4959 -1.2829,0.1351 -1.1478,0.4051 -1.0128,0.6752 -0.87781,0.9453 -0.56372,0.8858 m 5.42523,-3.0465 1.2153,0.1351 1.0128,0.4051 0.9116,0.6752 0.9115,0.9453 0.6399,0.8619 M 9.65769,69.6566 h 8.93271" inkstitch:satin_column="True" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="3" inkstitch:zigzag_underlay="True" inkscape:label="Auto-remplissage satin 4"/>
<path d="m 14.2224,72.0717 0.03,1.5271 0.0028,0.6457 v 0 l 0.0039,0.8717 v 1.5219 0.9842 0 0.5331 l 0.0067,1.5128" inkstitch:running_stitch_length_mm="2" id="autosatinrun3" inkscape:label="Points droits pour auto-remplissage satin 5" inkstitch:ties="3" sodipodi:nodetypes="cccccccccc" style="stroke-dasharray:0.5, 0.5;"/>
<path id="autosatin3" d="M 13.989,81 12.7061,80.8818 11.5583,80.5274 10.5455,79.9366 9.66769,79.1094 8.95873,78.1135 8.45232,77.0163 8.14848,75.8178 8.0472,74.518 8.14848,73.2014 8.45232,71.9523 8.95873,70.7707 9.10397,70.5424 M 14.5292,81 l 1.4348,-0.1182 1.1309,-0.3544 0.9284,-0.5908 0.8272,-0.8272 0.7089,-0.9959 0.5064,-1.0972 0.3039,-1.1985 0.1013,-1.2998 -0.1182,-1.3166 -0.3545,-1.2491 -0.5908,-1.1816 -0.1872,-0.2522 M 8.0372,74.518 H 20.481 M 9.65769,79.1094 H 18.8605 M 8.5388,70.6282 19.7914,70.5974" inkstitch:satin_column="True" inkstitch:pull_compensation_mm="0.3" inkstitch:ties="2" inkstitch:force_lock_stitches="True" inkstitch:zigzag_underlay="True" inkscape:label="Auto-remplissage satin 6"/>
</g>
</svg>
|