-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
2122 lines (1882 loc) · 158 KB
/
index.html
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
<!doctype html>
<html>
<head>
<title>Finger</title>
<meta name="Description" content="Recreation of the OP-1's Finger sequencer using the Web MIDI API" />
<script type="module" src="src/finger.js"></script>
<script type="module" src="src/settings.js"></script>
<link rel="stylesheet" href="src/style.css" />
<script type="module" src="src/sw-register.js"></script>
<meta name="viewport" content="user-scalable=no, width=device-width, initial-scale=1, maximum-scale=1" />
<link rel="manifest" href="src/manifest.webmanifest"></link>
<link rel="apple-touch-icon" sizes="180x180" href="images/apple-touch-icon.png" />
<link rel="icon" type="image/png" sizes="32x32" href="images/favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="images/favicon-16x16.png" />
<link rel="mask-icon" href="images/safari-pinned-tab.svg" color="#000000" />
<link rel="shortcut icon" href="favicon.ico" />
<meta name="apple-mobile-web-app-title" content="Finger" />
<meta name="application-name" content="Finger" />
<meta name="msapplication-TileColor" content="#000000" />
<meta name="msapplication-config" content="images/browserconfig.xml" />
<meta name="theme-color" content="#000000" />
</head>
<body>
<finger-sequencer
control-channel="14"
drum-channel="1"
synth-channel="8"
bpm="125"
></finger-sequencer>
<template id="finger-svg">
<?xml version="1.0" encoding="utf-8"?>
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="320px" height="160px" viewBox="0 0 320 160" enable-background="new 0 0 320 160" xml:space="preserve">
<g id="keys">
<g id="p0">
<path fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" d="M132.567,132.405
c0,1.809-1.493,3.271-3.333,3.271l0,0c-1.842,0-3.333-1.465-3.333-3.271v-9.812c0-1.805,1.491-3.271,3.333-3.271l0,0
c1.841,0,3.333,1.466,3.333,3.271V132.405z"/>
</g>
<g id="p1">
<path fill="none" stroke="#5E5F8F" stroke-width="1.5" d="M142.567,132.671c0,1.808-1.493,3.271-3.333,3.271l0,0
c-1.842,0-3.333-1.463-3.333-3.271v-9.812c0-1.812,1.492-3.271,3.333-3.271l0,0c1.84,0,3.333,1.465,3.333,3.271V132.671z"/>
</g>
<g id="p2">
<path fill="none" stroke="#5E5F8F" stroke-width="1.5" d="M152.567,132.671c0,1.808-1.492,3.271-3.333,3.271l0,0
c-1.841,0-3.333-1.463-3.333-3.271v-9.812c0-1.812,1.493-3.271,3.333-3.271l0,0c1.841,0,3.333,1.465,3.333,3.271V132.671z"/>
</g>
<g id="p3">
<path fill="none" stroke="#5E5F8F" stroke-width="1.5" d="M162.566,132.671c0,1.808-1.491,3.271-3.333,3.271l0,0
c-1.841,0-3.333-1.463-3.333-3.271v-9.812c0-1.812,1.493-3.271,3.333-3.271l0,0c1.841,0,3.333,1.465,3.333,3.271V132.671z"/>
</g>
<g id="p4">
<path fill="none" stroke="#5E5F8F" stroke-width="1.5" d="M172.566,132.671c0,1.808-1.492,3.271-3.332,3.271l0,0
c-1.84,0-3.334-1.463-3.334-3.271v-9.812c0-1.812,1.494-3.271,3.334-3.271l0,0c1.84,0,3.332,1.465,3.332,3.271V132.671z"/>
</g>
<g id="p5">
<path fill="none" stroke="#5E5F8F" stroke-width="1.5" d="M182.566,132.671c0,1.808-1.492,3.271-3.332,3.271l0,0
c-1.852,0-3.334-1.463-3.334-3.271v-9.812c0-1.812,1.494-3.271,3.334-3.271l0,0c1.84,0,3.332,1.465,3.332,3.271V132.671z"/>
</g>
<g id="p6">
<path fill="none" stroke="#5E5F8F" stroke-width="1.5" d="M192.568,132.405c0,1.809-1.492,3.271-3.332,3.271l0,0
c-1.842,0-3.334-1.465-3.334-3.271v-9.812c0-1.805,1.494-3.271,3.334-3.271l0,0c1.841,0,3.332,1.466,3.332,3.271V132.405z"/>
</g>
<rect x="124.233" y="117.952" fill="none" stroke="#28293D" stroke-width="1.5" width="10" height="19.625"/>
<polyline fill="none" stroke="#28293D" stroke-width="1.5" points="134.233,117.952 144.234,117.952 144.234,137.577
134.233,137.577 "/>
<polyline fill="none" stroke="#28293D" stroke-width="1.5" points="144.233,117.952 154.233,117.952 154.233,137.577
144.233,137.577 "/>
<polyline fill="none" stroke="#28293D" stroke-width="1.5" points="154.233,117.952 164.234,117.952 164.234,137.577
154.233,137.577 "/>
<polyline fill="none" stroke="#28293D" stroke-width="1.5" points="164.234,117.952 174.232,117.952 174.232,137.577
164.234,137.577 "/>
<polyline fill="none" stroke="#28293D" stroke-width="1.5" points="174.232,117.952 184.234,117.952 184.234,137.577
174.232,137.577 "/>
<polyline fill="none" stroke="#28293D" stroke-width="1.5" points="184.234,117.952 194.234,117.952 194.234,137.577
184.234,137.577 "/>
<g>
<rect x="124.233" y="108.141" fill="none" stroke="#28293D" stroke-width="1.5" width="15.037" height="9.812"/>
<ellipse fill="none" stroke="#5E5F8F" stroke-width="1.5" cx="134.233" cy="113.045" rx="3.333" ry="3.271"/>
</g>
<g>
<polyline fill="none" stroke="#28293D" stroke-width="1.5" points="149.269,117.952 139.27,117.952 139.27,108.141
149.269,108.141 "/>
<ellipse fill="none" stroke="#5E5F8F" stroke-width="1.5" cx="144.233" cy="113.045" rx="3.333" ry="3.271"/>
</g>
<g>
<rect x="149.233" y="108.141" fill="none" stroke="#28293D" stroke-width="1.5" width="15.039" height="9.812"/>
<ellipse fill="none" stroke="#5E5F8F" stroke-width="1.5" cx="154.233" cy="113.045" rx="3.333" ry="3.271"/>
</g>
<g>
<polyline fill="none" stroke="#28293D" stroke-width="1.5" points="164.197,117.952 179.234,117.952 179.234,108.141
164.197,108.141 "/>
<ellipse fill="none" stroke="#5E5F8F" stroke-width="1.5" cx="174.234" cy="113.045" rx="3.334" ry="3.271"/>
</g>
<g>
<polyline fill="none" stroke="#28293D" stroke-width="1.5" points="179.197,117.952 194.234,117.952 194.234,108.141
179.197,108.141 "/>
<ellipse fill="none" stroke="#5E5F8F" stroke-width="1.5" cx="184.234" cy="113.045" rx="3.332" ry="3.271"/>
</g>
</g>
<g>
<rect id="g0bg" x="122.308" y="12.617" fill="none" stroke="#383572" stroke-width="1.5" stroke-linecap="square" width="9.764" height="9.583"/>
<rect id="g1bg" x="132.071" y="12.617" fill="none" stroke="#383572" stroke-width="1.5" stroke-linecap="square" width="9.767" height="9.583"/>
<rect id="g2bg" x="141.838" y="12.617" fill="none" stroke="#383572" stroke-width="1.5" stroke-linecap="square" width="9.768" height="9.583"/>
<rect id="g3bg" x="151.604" y="12.617" fill="none" stroke="#383572" stroke-width="1.5" stroke-linecap="square" width="9.764" height="9.583"/>
<rect id="g4bg" x="161.368" y="12.617" fill="none" stroke="#383572" stroke-width="1.5" stroke-linecap="square" width="9.767" height="9.583"/>
<rect id="g5bg" x="171.135" y="12.617" fill="none" stroke="#383572" stroke-width="1.5" stroke-linecap="square" width="9.77" height="9.583"/>
<rect id="g6bg" x="180.898" y="12.617" fill="none" stroke="#383572" stroke-width="1.5" stroke-linecap="square" width="9.768" height="9.583"/>
<rect id="g7bg" x="190.666" y="12.617" fill="none" stroke="#383572" stroke-width="1.5" stroke-linecap="square" width="9.77" height="9.583"/>
<rect id="g8bg" x="122.308" y="22.201" fill="none" stroke="#383572" stroke-width="1.5" stroke-linecap="square" width="9.764" height="9.583"/>
<rect id="g9bg" x="132.071" y="22.201" fill="none" stroke="#383572" stroke-width="1.5" stroke-linecap="square" width="9.767" height="9.583"/>
<rect id="g10bg" x="141.838" y="22.201" fill="none" stroke="#383572" stroke-width="1.5" stroke-linecap="square" width="9.768" height="9.583"/>
<rect id="g11bg" x="151.604" y="22.201" fill="none" stroke="#383572" stroke-width="1.5" stroke-linecap="square" width="9.764" height="9.583"/>
<rect id="g12bg" x="161.368" y="22.201" fill="none" stroke="#383572" stroke-width="1.5" stroke-linecap="square" width="9.767" height="9.583"/>
<rect id="g13bg" x="171.135" y="22.201" fill="none" stroke="#383572" stroke-width="1.5" stroke-linecap="square" width="9.77" height="9.583"/>
<rect id="g14bg" x="180.898" y="22.201" fill="none" stroke="#383572" stroke-width="1.5" stroke-linecap="square" width="9.768" height="9.583"/>
<rect id="g15bg" x="190.666" y="22.201" fill="none" stroke="#383572" stroke-width="1.5" stroke-linecap="square" width="9.77" height="9.583"/>
<rect id="g16bg" x="122.308" y="31.783" fill="none" stroke="#383572" stroke-width="1.5" stroke-linecap="square" width="9.764" height="9.583"/>
<rect id="g17bg" x="132.071" y="31.783" fill="none" stroke="#383572" stroke-width="1.5" stroke-linecap="square" width="9.767" height="9.583"/>
<rect id="g18bg" x="141.838" y="31.783" fill="none" stroke="#383572" stroke-width="1.5" stroke-linecap="square" width="9.768" height="9.583"/>
<rect id="g19bg" x="151.604" y="31.783" fill="none" stroke="#383572" stroke-width="1.5" stroke-linecap="square" width="9.764" height="9.583"/>
<rect id="g20bg" x="161.368" y="31.783" fill="none" stroke="#383572" stroke-width="1.5" stroke-linecap="square" width="9.767" height="9.583"/>
<rect id="g21bg" x="171.135" y="31.783" fill="none" stroke="#383572" stroke-width="1.5" stroke-linecap="square" width="9.77" height="9.583"/>
<rect id="g22bg" x="180.898" y="31.783" fill="none" stroke="#383572" stroke-width="1.5" stroke-linecap="square" width="9.768" height="9.583"/>
<rect id="g23bg" x="190.666" y="31.783" fill="none" stroke="#383572" stroke-width="1.5" stroke-linecap="square" width="9.77" height="9.583"/>
<rect id="g24bg" x="122.308" y="41.366" fill="none" stroke="#383572" stroke-width="1.5" stroke-linecap="square" width="9.764" height="9.583"/>
<rect id="g25bg" x="132.071" y="41.366" fill="none" stroke="#383572" stroke-width="1.5" stroke-linecap="square" width="9.767" height="9.583"/>
<rect id="g26bg" x="141.838" y="41.366" fill="none" stroke="#383572" stroke-width="1.5" stroke-linecap="square" width="9.768" height="9.583"/>
<rect id="g27bg" x="151.604" y="41.366" fill="none" stroke="#383572" stroke-width="1.5" stroke-linecap="square" width="9.764" height="9.583"/>
<rect id="g28bg" x="161.368" y="41.366" fill="none" stroke="#383572" stroke-width="1.5" stroke-linecap="square" width="9.767" height="9.583"/>
<rect id="g29bg" x="171.135" y="41.366" fill="none" stroke="#383572" stroke-width="1.5" stroke-linecap="square" width="9.77" height="9.583"/>
<rect id="g30bg" x="180.898" y="41.366" fill="none" stroke="#383572" stroke-width="1.5" stroke-linecap="square" width="9.768" height="9.583"/>
<rect id="g31bg" x="190.666" y="41.366" fill="none" stroke="#383572" stroke-width="1.5" stroke-linecap="square" width="9.77" height="9.583"/>
</g>
<g id="grid">
<rect id="g0" x="122.308" y="12.617" fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" width="9.764" height="9.583"/>
<rect id="g1" x="132.071" y="12.617" fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" width="9.767" height="9.583"/>
<rect id="g2" x="141.838" y="12.617" fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" width="9.768" height="9.583"/>
<rect id="g3" x="151.604" y="12.617" fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" width="9.764" height="9.583"/>
<rect id="g4" x="161.368" y="12.617" fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" width="9.767" height="9.583"/>
<rect id="g5" x="171.135" y="12.617" fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" width="9.77" height="9.583"/>
<rect id="g6" x="180.898" y="12.617" fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" width="9.768" height="9.583"/>
<rect id="g7" x="190.666" y="12.617" fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" width="9.77" height="9.583"/>
<rect id="g8" x="122.308" y="22.201" fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" width="9.764" height="9.583"/>
<rect id="g9" x="132.071" y="22.201" fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" width="9.767" height="9.583"/>
<rect id="g10" x="141.838" y="22.201" fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" width="9.768" height="9.583"/>
<rect id="g11" x="151.604" y="22.201" fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" width="9.764" height="9.583"/>
<rect id="g12" x="161.368" y="22.201" fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" width="9.767" height="9.583"/>
<rect id="g13" x="171.135" y="22.201" fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" width="9.77" height="9.583"/>
<rect id="g14" x="180.898" y="22.201" fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" width="9.768" height="9.583"/>
<rect id="g15" x="190.666" y="22.201" fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" width="9.77" height="9.583"/>
<rect id="g16" x="122.308" y="31.783" fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" width="9.764" height="9.583"/>
<rect id="g17" x="132.071" y="31.783" fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" width="9.767" height="9.583"/>
<rect id="g18" x="141.838" y="31.783" fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" width="9.768" height="9.583"/>
<rect id="g19" x="151.604" y="31.783" fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" width="9.764" height="9.583"/>
<rect id="g20" x="161.368" y="31.783" fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" width="9.767" height="9.583"/>
<rect id="g21" x="171.135" y="31.783" fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" width="9.77" height="9.583"/>
<rect id="g22_1_" x="180.898" y="31.783" fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" width="9.768" height="9.583"/>
<rect id="g23_1_" x="190.666" y="31.783" fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" width="9.77" height="9.583"/>
<rect id="g24_1_" x="122.308" y="41.366" fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" width="9.764" height="9.583"/>
<rect id="g25_1_" x="132.071" y="41.366" fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" width="9.767" height="9.583"/>
<rect id="g26_1_" x="141.838" y="41.366" fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" width="9.768" height="9.583"/>
<rect id="g27_1_" x="151.604" y="41.366" fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" width="9.764" height="9.583"/>
<rect id="g28_1_" x="161.368" y="41.366" fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" width="9.767" height="9.583"/>
<rect id="g29_1_" x="171.135" y="41.366" fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" width="9.77" height="9.583"/>
<rect id="g30" x="180.898" y="41.366" fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" width="9.768" height="9.583"/>
<rect id="g31" x="190.666" y="41.366" fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" width="9.77" height="9.583"/>
<g id="x0">
<line fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" x1="125.026" y1="15.329" x2="129.606" y2="19.822"/>
<line fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" x1="129.606" y1="15.328" x2="125.026" y2="19.822"/>
</g>
<g id="x1">
<line fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" x1="134.729" y1="15.265" x2="139.308" y2="19.758"/>
<line fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" x1="139.308" y1="15.264" x2="134.729" y2="19.758"/>
</g>
<g id="x2">
<line fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" x1="144.468" y1="15.266" x2="149.047" y2="19.759"/>
<line fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" x1="149.047" y1="15.265" x2="144.468" y2="19.759"/>
</g>
<g id="x3">
<line fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" x1="154.159" y1="15.265" x2="158.737" y2="19.758"/>
<line fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" x1="158.737" y1="15.264" x2="154.159" y2="19.758"/>
</g>
<g id="x4">
<line fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" x1="164.023" y1="15.265" x2="168.604" y2="19.758"/>
<line fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" x1="168.604" y1="15.264" x2="164.023" y2="19.758"/>
</g>
<g id="x5">
<line fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" x1="173.792" y1="15.265" x2="178.37" y2="19.758"/>
<line fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" x1="178.37" y1="15.264" x2="173.792" y2="19.758"/>
</g>
<g id="x6">
<line fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" x1="183.557" y1="15.266" x2="188.135" y2="19.759"/>
<line fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" x1="188.135" y1="15.265" x2="183.557" y2="19.759"/>
</g>
<g id="x7">
<line fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" x1="193.322" y1="15.266" x2="197.902" y2="19.759"/>
<line fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" x1="197.902" y1="15.265" x2="193.322" y2="19.759"/>
</g>
<g id="x8">
<line fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" x1="125.026" y1="24.837" x2="129.606" y2="29.33"/>
<line fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" x1="129.606" y1="24.836" x2="125.026" y2="29.33"/>
</g>
<g id="x9">
<line fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" x1="134.729" y1="24.772" x2="139.308" y2="29.266"/>
<line fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" x1="139.308" y1="24.771" x2="134.729" y2="29.266"/>
</g>
<g id="x10">
<line fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" x1="144.468" y1="24.773" x2="149.047" y2="29.267"/>
<line fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" x1="149.047" y1="24.772" x2="144.468" y2="29.267"/>
</g>
<g id="x11">
<line fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" x1="154.159" y1="24.772" x2="158.737" y2="29.266"/>
<line fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" x1="158.737" y1="24.771" x2="154.159" y2="29.266"/>
</g>
<g id="x12">
<line fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" x1="164.023" y1="24.772" x2="168.604" y2="29.266"/>
<line fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" x1="168.604" y1="24.771" x2="164.023" y2="29.266"/>
</g>
<g id="x13">
<line fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" x1="173.792" y1="24.772" x2="178.37" y2="29.266"/>
<line fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" x1="178.37" y1="24.771" x2="173.792" y2="29.266"/>
</g>
<g id="x14">
<line fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" x1="183.557" y1="24.773" x2="188.135" y2="29.267"/>
<line fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" x1="188.135" y1="24.772" x2="183.557" y2="29.267"/>
</g>
<g id="x15">
<line fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" x1="193.322" y1="24.773" x2="197.902" y2="29.267"/>
<line fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" x1="197.902" y1="24.772" x2="193.322" y2="29.267"/>
</g>
<g id="x16">
<line fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" x1="124.9" y1="34.366" x2="129.479" y2="38.859"/>
<line fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" x1="129.479" y1="34.365" x2="124.9" y2="38.859"/>
</g>
<g id="x17">
<line fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" x1="134.602" y1="34.302" x2="139.181" y2="38.795"/>
<line fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" x1="139.181" y1="34.301" x2="134.602" y2="38.795"/>
</g>
<g id="x18">
<line fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" x1="144.341" y1="34.303" x2="148.92" y2="38.796"/>
<line fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" x1="148.92" y1="34.302" x2="144.341" y2="38.796"/>
</g>
<g id="x19">
<line fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" x1="154.031" y1="34.302" x2="158.611" y2="38.795"/>
<line fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" x1="158.611" y1="34.301" x2="154.031" y2="38.795"/>
</g>
<g id="x20">
<line fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" x1="163.898" y1="34.302" x2="168.479" y2="38.795"/>
<line fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" x1="168.479" y1="34.301" x2="163.898" y2="38.795"/>
</g>
<g id="x21">
<line fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" x1="173.664" y1="34.302" x2="178.244" y2="38.795"/>
<line fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" x1="178.244" y1="34.301" x2="173.664" y2="38.795"/>
</g>
<g id="x22">
<line fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" x1="183.43" y1="34.303" x2="188.01" y2="38.796"/>
<line fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" x1="188.01" y1="34.302" x2="183.43" y2="38.796"/>
</g>
<g id="x23">
<line fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" x1="193.195" y1="34.303" x2="197.773" y2="38.796"/>
<line fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" x1="197.773" y1="34.302" x2="193.195" y2="38.796"/>
</g>
<g id="x24">
<line fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" x1="124.9" y1="43.874" x2="129.479" y2="48.367"/>
<line fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" x1="129.479" y1="43.873" x2="124.9" y2="48.367"/>
</g>
<g id="x25">
<line fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" x1="134.602" y1="43.81" x2="139.181" y2="48.303"/>
<line fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" x1="139.181" y1="43.809" x2="134.602" y2="48.303"/>
</g>
<g id="x26">
<line fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" x1="144.341" y1="43.811" x2="148.92" y2="48.304"/>
<line fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" x1="148.92" y1="43.81" x2="144.341" y2="48.304"/>
</g>
<g id="x27">
<line fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" x1="154.031" y1="43.81" x2="158.611" y2="48.303"/>
<line fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" x1="158.611" y1="43.809" x2="154.031" y2="48.303"/>
</g>
<g id="x28">
<line fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" x1="163.898" y1="43.81" x2="168.479" y2="48.303"/>
<line fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" x1="168.479" y1="43.809" x2="163.898" y2="48.303"/>
</g>
<g id="x29">
<line fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" x1="173.664" y1="43.81" x2="178.244" y2="48.303"/>
<line fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" x1="178.244" y1="43.809" x2="173.664" y2="48.303"/>
</g>
<g id="x30">
<line fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" x1="183.43" y1="43.811" x2="188.01" y2="48.304"/>
<line fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" x1="188.01" y1="43.81" x2="183.43" y2="48.304"/>
</g>
<g id="x31">
<line fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" x1="193.195" y1="43.811" x2="197.773" y2="48.304"/>
<line fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" x1="197.773" y1="43.81" x2="193.195" y2="48.304"/>
</g>
</g>
<g id="synth">
<polygon fill="none" stroke="#698EFF" stroke-width="1.5" points="107.216,133.189 15.798,133.189 13.363,117.227 109.649,117.227
"/>
<polygon fill="none" stroke="#698EFF" stroke-width="1.5" points="302.587,133.189 211.17,133.189 208.736,117.227
305.021,117.227 "/>
<line id="ak0" fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" x1="13.667" y1="111.878" x2="19.406" y2="111.878"/>
<line id="ak1" fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" x1="21.866" y1="111.878" x2="27.605" y2="111.878"/>
<line id="ak2" fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" x1="30.065" y1="111.878" x2="35.805" y2="111.878"/>
<line id="ak3" fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" x1="38.265" y1="111.878" x2="44.005" y2="111.878"/>
<line id="ak4" fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" x1="46.465" y1="111.878" x2="52.205" y2="111.878"/>
<line id="ak5" fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" x1="54.665" y1="111.878" x2="60.404" y2="111.878"/>
<line id="ak6" fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" x1="62.866" y1="111.878" x2="68.604" y2="111.878"/>
<line id="ak7" fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" x1="71.064" y1="111.878" x2="76.804" y2="111.878"/>
<line id="ak8" fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" x1="79.264" y1="111.878" x2="85.004" y2="111.878"/>
<line id="ak9" fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" x1="87.464" y1="111.878" x2="93.205" y2="111.878"/>
<line id="ak10" fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" x1="95.665" y1="111.878" x2="101.403" y2="111.878"/>
<line id="ak11" fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" x1="103.863" y1="111.878" x2="109.604" y2="111.878"/>
<line id="bk0" fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" x1="208.729" y1="111.878" x2="214.467" y2="111.878"/>
<line id="bkguide" fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" x1="216.927" y1="114.812" x2="222.667" y2="114.812"/>
<line id="bk1" fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" x1="216.927" y1="111.878" x2="222.667" y2="111.878"/>
<line id="bk2" fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" x1="225.127" y1="111.878" x2="230.868" y2="111.878"/>
<line id="bk3" fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" x1="233.328" y1="111.878" x2="239.066" y2="111.878"/>
<line id="bk4" fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" x1="241.525" y1="111.878" x2="247.268" y2="111.878"/>
<line id="bk5" fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" x1="249.729" y1="111.878" x2="255.466" y2="111.878"/>
<line id="bk6" fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" x1="257.927" y1="111.932" x2="263.666" y2="111.932"/>
<line id="bk7" fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" x1="266.127" y1="111.878" x2="271.867" y2="111.878"/>
<line id="bk8" fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" x1="274.327" y1="111.878" x2="280.064" y2="111.878"/>
<line id="bk9" fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" x1="282.525" y1="111.878" x2="288.268" y2="111.878"/>
<line id="bk10" fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" x1="290.727" y1="111.878" x2="296.466" y2="111.878"/>
<line id="bk11" fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" x1="298.925" y1="111.878" x2="304.666" y2="111.878"/>
<polyline fill="none" stroke="#285AA8" stroke-width="1.5" points="63.905,73.999 65.338,75.092 62.949,81.493 "/>
<polyline fill="none" stroke="#285AA8" stroke-width="1.5" points="67.565,73.53 65.814,75.092 68.421,81.495 "/>
<path fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" d="M60.981,77.783c0,0,3.861-6.128,4.517-6.128
c0.651,0,2.968,2.546,4.401,5.743"/>
<path fill="none" stroke="#FF3A5D" stroke-width="1.5" d="M57.753,61.025c0,0-0.556,4.861,0.488,8.314
c1.042,3.454,6.9,18.295,6.9,18.295s0.649,0.64,1.303,0c0.651-0.639,3.521-11.07,4.5-13.433c2.601-6.279,1.901-9.083,1.64-10.617"
/>
<path fill="none" stroke="#FF90A7" stroke-width="1.5" d="M54.171,49.336c0.12,0.735,0.312,1.469,0.605,2.121
c1.807,3.969,2.938,7.033,2.809,6.604"/>
<path fill="none" stroke="#FF90A7" stroke-width="1.5" d="M77.099,49.337c-0.118,0.735-0.312,1.468-0.607,2.12
c-1.185,2.604-2.971,5.995-3.308,7.103"/>
<polyline fill="none" stroke="#FF3A5D" stroke-width="1.5" points="57.453,61.749 51.633,66.207 50.315,72.279 56.25,70.999
62.839,82.297 65.472,89.754 65.277,106.033 "/>
<path fill="none" stroke="#FF3A5D" stroke-width="1.5" d="M46.322,80.236c0,0,0.955,7.45,1.227,8.385s0.952,1.736,3.68,1.336
c2.721-0.4,3.31-0.521,4.629-1.203c0.76-0.395,1.088-0.4,1.088-1.736c0-1.338-0.679-7.849-0.679-7.849s-3.524,2.569-4.613,2.835
C50.561,82.271,47.964,81.061,46.322,80.236z"/>
<polyline fill="none" stroke="#FF3A5D" stroke-width="1.5" points="65.924,89.691 75.038,70.999 79.821,72.068 77.927,66.207
72.67,60.562 "/>
<path fill="none" stroke="#FF3A5D" stroke-width="1.5" d="M83.402,81.72c0,0-1.117,6.532-1.39,7.468
c-0.272,0.938-0.954,1.736-3.679,1.336c-2.723-0.396-2.464-0.418-3.283-0.688c-0.814-0.266-1.282-0.917-1.282-2.253
s0.494-6.965,0.494-6.965s1.764,2.046,4.169,2.989C79.475,84.018,81.156,82.979,83.402,81.72z"/>
<path fill="none" stroke="#FF3A5D" stroke-width="1.5" d="M45.88,79.486c0,0,5.097-1.372,10.743-0.944"/>
<path fill="none" stroke="#FF3A5D" stroke-width="1.5" d="M73.941,79.517c0,0,5.612-0.157,10.102,1.417"/>
<path fill="none" stroke="#FF3A5D" stroke-width="1.5" d="M77.927,66.207c0,0,4.633,0.934,5.989,1.469
c1.363,0.533,3.815,1.737,4.496,3.474c0.681,1.736-3.29,15.858-3.708,17.77c0,0-1.395,4.411-1.801,6.549
c-0.441,2.307-4.481,7.561-4.312,8.717c0.138,0.938,0.138,0.938,0.138,0.938c-17.808,1.644-27.936-0.209-27.936-0.209
s0,0,0.139-0.938c0.136-0.937-3.865-6.369-4.274-8.508c-0.406-2.138-2.377-6.549-2.377-6.549c-0.425-1.911-3.812-16.033-3.13-17.77
c0.679-1.736,3.13-2.94,4.494-3.474c1.357-0.535,5.988-1.469,5.988-1.469"/>
<path fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" d="M72.757,60.668c0,0-0.044-0.255-0.087,0.607
c-0.043,0.881-0.085,1.878-0.085,2.309c0,0.851-0.348,2.727-0.87,3.239c-0.52,0.512-2.083,2.9-3.999,3.926
c-1.915,1.021-3.304,0.852-4.171,0.339c-0.87-0.512-1.912-1.193-3.822-2.901c-1.915-1.704-1.97-7.163-1.97-7.163"/>
<path fill="none" stroke="#FF90A7" stroke-width="1.5" d="M56.907,53.236c0,0,0.807,5.868,0.918,6.865
c0.114,0.997,1.236,5.059,4.625,5.059c3.388,0,5.536,0.109,7.004-0.111c1.469-0.221,2.544-2.996,3.393-4.658
c0.546-1.073,0.849-6.821,0.849-6.821"/>
<path fill="none" stroke="#FF90A7" stroke-width="1.5" d="M62.353,51.98c0,0,1.764,0.788,3.046,0.788
c1.284,0,3.047-0.944,3.047-0.944"/>
<g>
<path fill="none" stroke="#FF3A5D" stroke-width="1.5" d="M52.409,42.84c0,0,8.994-0.984,11.026,0.244
c0.74,0.447,0.213,2.578-0.321,3.438c-0.537,0.863-1.073,2.948-3.959,2.948c-2.89,0-5.675,0.737-6.53-1.966
C51.768,44.803,51.342,43.576,52.409,42.84z"/>
<path fill="none" stroke="#FF3A5D" stroke-width="1.5" d="M67.883,42.84c0,0,8.992-0.984,11.026,0.244
c0.739,0.447,0.214,2.578-0.319,3.438c-0.535,0.863-1.068,2.948-3.961,2.948c-2.889,0-5.672,0.737-6.526-1.966
C67.245,44.803,66.815,43.576,67.883,42.84z"/>
<path fill="none" stroke="#FF3A5D" stroke-width="1.5" d="M63.489,45.173c0,0,2.594-0.859,4.237,0.244"/>
</g>
<g>
<path fill="none" stroke="#698EFF" stroke-width="1.5" d="M61.076,36.139c0,0-3.827,7.11-10.798,8.183"/>
<g>
<path fill="none" stroke="#698EFF" stroke-width="1.5" d="M69.46,25.254c0,0-1.71-2.037-5.983-2.037
c-4.271,0-7.688,3.114-8.667,4.191c-0.979,1.078-5.372,4.553-6.593,5.392c-1.222,0.839-3.418,2.995-2.075,5.151"/>
<path fill="none" stroke="#698EFF" stroke-width="1.5" d="M48.093,35.916c0,0-1.709,2.636-1.709,4.792
c0,2.157-1.952,3.594-3.175,2.396"/>
<path fill="none" stroke="#285AA8" stroke-width="1.5" d="M45.529,44.302c0,0-0.489,1.677,1.466,3.595"/>
<path fill="none" stroke="#698EFF" stroke-width="1.5" d="M51.756,40.468c0,0-3.904,2.949-3.904,6.709
c0,2.756,1.585,3.834,3.295,4.911"/>
<path fill="none" stroke="#285AA8" stroke-width="1.5" d="M51.633,50.771c0,0-3.171-2.516-1.832-4.313"/>
<path fill="none" stroke="#698EFF" stroke-width="1.5" d="M67.872,26.931c0,0,1.833,1.797,2.443,5.031
c0.292,1.55,1.342,2.757,3.053,3.594"/>
<path fill="none" stroke="#698EFF" stroke-width="1.5" d="M71.78,31.724c0,0,2.074,0.358,2.806,1.917
c0.736,1.557,0.312,7.111,0.979,8.985c0.854,2.396,1.465,3.593,3.295,4.552"/>
<path fill="none" stroke="#698EFF" stroke-width="1.5" d="M70.069,25.971c0,0,4.271-0.956,7.448,2.157
c3.175,3.115,3.907,5.629,4.15,7.428c0.244,1.797,1.832,4.313,3.056,4.672"/>
<path fill="none" stroke="#285AA8" stroke-width="1.5" d="M81.426,39.869c0,0,1.1,1.077,2.807,1.318"/>
<path fill="none" stroke="#698EFF" stroke-width="1.5" d="M76.784,38.671c0,0,0.368,2.275,0.733,3.235
c0.366,0.958,2.441,2.994,4.884,3.354c2.44,0.36,5.373-0.719,5.858-1.677"/>
<path fill="none" stroke="#698EFF" stroke-width="1.5" d="M82.458,43.564c0,0,0.843-0.059,2.917-0.178"/>
<path fill="none" stroke="#698EFF" stroke-width="1.5" d="M83.621,46.579c0,0,2.198,0.478,3.666,0"/>
<path fill="none" stroke="#698EFF" stroke-width="1.5" d="M66.896,27.409c0,0-1.71,1.918-2.687,5.152
c-0.979,3.234-0.854,5.033-2.317,7.069c-1.367,1.898-3.301,2.514-4.153,2.753"/>
</g>
</g>
<line fill="none" stroke="#698EFF" stroke-width="1.5" x1="56.303" y1="46.002" x2="59.028" y2="46.002"/>
<line fill="none" stroke="#698EFF" stroke-width="1.5" x1="71.056" y1="46.002" x2="73.78" y2="46.002"/>
<path fill="none" stroke="#FF3A5D" stroke-width="1.5" d="M258.396,59.149c0,0,2.789-0.111,6.26-1.111c0,0,0.113,0.354,0.48,1.527"
/>
<polyline fill="none" stroke="#285AA8" stroke-width="1.5" points="259.393,73.999 260.826,75.092 258.438,81.493 "/>
<polyline fill="none" stroke="#285AA8" stroke-width="1.5" points="263.055,73.53 261.302,75.092 263.909,81.495 "/>
<path fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" d="M256.469,77.783c0,0,3.863-6.128,4.521-6.128
c0.648,0,2.974,2.546,4.402,5.743"/>
<path fill="none" stroke="#FF3A5D" stroke-width="1.5" d="M253.24,61.025c0,0-0.555,4.861,0.488,8.314
c1.041,3.454,6.896,18.295,6.896,18.295s0.649,0.64,1.312,0c0.646-0.639,3.521-11.07,4.498-13.433
c2.604-6.279,1.896-9.083,1.635-10.617"/>
<path fill="none" stroke="#FF90A7" stroke-width="1.5" d="M249.659,49.336c0.12,0.735,0.315,1.469,0.612,2.121
c1.805,3.969,2.938,7.033,2.809,6.604"/>
<path fill="none" stroke="#FF90A7" stroke-width="1.5" d="M272.588,49.337c-0.12,0.735-0.312,1.468-0.604,2.12
c-1.188,2.604-2.978,5.995-3.312,7.103"/>
<polyline fill="none" stroke="#FF3A5D" stroke-width="1.5" points="252.941,61.749 247.12,66.207 245.802,72.279 251.739,70.999
258.326,82.297 260.959,89.754 260.766,106.033 "/>
<path fill="none" stroke="#FF3A5D" stroke-width="1.5" d="M241.811,80.236c0,0,0.953,7.45,1.229,8.385s0.954,1.736,3.673,1.336
c2.727-0.4,3.312-0.521,4.629-1.203c0.768-0.395,1.083-0.4,1.083-1.736c0-1.338-0.679-7.849-0.679-7.849s-3.521,2.569-4.604,2.835
C246.049,82.271,243.451,81.061,241.811,80.236z"/>
<polyline fill="none" stroke="#FF3A5D" stroke-width="1.5" points="261.411,89.691 270.525,70.999 275.309,72.068 273.415,66.207
268.157,60.562 "/>
<path fill="none" stroke="#FF3A5D" stroke-width="1.5" d="M278.891,81.72c0,0-1.117,6.532-1.394,7.468
c-0.271,0.938-0.954,1.736-3.681,1.336c-2.723-0.396-2.463-0.418-3.279-0.688c-0.812-0.266-1.283-0.917-1.283-2.253
s0.493-6.965,0.493-6.965s1.765,2.046,4.17,2.989C274.964,84.018,276.645,82.979,278.891,81.72z"/>
<path fill="none" stroke="#FF3A5D" stroke-width="1.5" d="M241.367,79.486c0,0,5.096-1.372,10.742-0.944"/>
<path fill="none" stroke="#FF3A5D" stroke-width="1.5" d="M269.43,79.517c0,0,5.609-0.157,10.104,1.417"/>
<path fill="none" stroke="#FF3A5D" stroke-width="1.5" d="M273.415,66.207c0,0,4.63,0.934,5.989,1.469
c1.363,0.533,3.812,1.737,4.494,3.474c0.682,1.737-3.289,15.858-3.707,17.77c0,0-1.396,4.411-1.812,6.549
c-0.438,2.307-4.479,7.561-4.312,8.717c0.145,0.938,0.145,0.938,0.145,0.938c-17.812,1.644-27.938-0.209-27.938-0.209
s0,0,0.144-0.938c0.146-0.937-3.864-6.369-4.271-8.508c-0.401-2.138-2.375-6.549-2.375-6.549
c-0.437-1.911-3.812-16.033-3.125-17.77c0.68-1.736,3.125-2.94,4.479-3.474c1.354-0.535,5.988-1.469,5.988-1.469"/>
<path fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" d="M268.244,60.668c0,0-0.044-0.255-0.087,0.607
c-0.044,0.881-0.087,1.878-0.087,2.309c0,0.851-0.348,2.727-0.869,3.239c-0.52,0.512-2.084,2.9-3.999,3.926
c-1.914,1.021-3.302,0.852-4.177,0.339c-0.871-0.512-1.912-1.193-3.823-2.901c-1.916-1.704-1.974-7.163-1.974-7.163"/>
<path fill="none" stroke="#FF90A7" stroke-width="1.5" d="M252.395,53.236c0,0,0.812,5.868,0.918,6.865
c0.106,0.997,1.235,5.059,4.625,5.059c3.381,0,5.537,0.109,7.006-0.111c1.475-0.221,2.543-2.996,3.393-4.658
c0.547-1.073,0.854-6.821,0.854-6.821"/>
<path fill="none" stroke="#FF90A7" stroke-width="1.5" d="M257.841,51.98c0,0,1.767,0.788,3.052,0.788
c1.277,0,3.045-0.944,3.045-0.944"/>
<g>
<path fill="none" stroke="#FF3A5D" stroke-width="1.5" d="M247.898,42.84c0,0,8.992-0.984,11.021,0.244
c0.742,0.447,0.213,2.578-0.313,3.438c-0.535,0.863-1.067,2.948-3.959,2.948c-2.896,0-5.684,0.737-6.529-1.966
C247.255,44.803,246.829,43.576,247.898,42.84z"/>
<path fill="none" stroke="#FF3A5D" stroke-width="1.5" d="M263.372,42.84c0,0,8.989-0.984,11.024,0.244
c0.729,0.447,0.215,2.578-0.318,3.438c-0.53,0.863-1.07,2.948-3.962,2.948c-2.89,0-5.673,0.737-6.527-1.966
C262.732,44.803,262.303,43.576,263.372,42.84z"/>
<path fill="none" stroke="#FF3A5D" stroke-width="1.5" d="M258.977,45.173c0,0,2.604-0.859,4.234,0.244"/>
</g>
<g>
<path fill="none" stroke="#698EFF" stroke-width="1.5" d="M256.564,36.139c0,0-3.828,7.11-10.799,8.183"/>
<g>
<path fill="none" stroke="#698EFF" stroke-width="1.5" d="M264.948,25.254c0,0-1.718-2.037-5.985-2.037
c-4.271,0-7.688,3.114-8.668,4.191c-0.977,1.078-5.373,4.553-6.598,5.392c-1.215,0.839-3.42,2.995-2.069,5.151"/>
<path fill="none" stroke="#698EFF" stroke-width="1.5" d="M243.581,35.916c0,0-1.709,2.636-1.709,4.792
c0,2.157-1.954,3.594-3.174,2.396"/>
<path fill="none" stroke="#285AA8" stroke-width="1.5" d="M241.018,44.302c0,0-0.49,1.677,1.465,3.595"/>
<path fill="none" stroke="#698EFF" stroke-width="1.5" d="M247.243,40.468c0,0-3.905,2.949-3.905,6.709
c0,2.756,1.587,3.834,3.29,4.911"/>
<path fill="none" stroke="#285AA8" stroke-width="1.5" d="M247.12,50.771c0,0-3.171-2.516-1.831-4.313"/>
<path fill="none" stroke="#698EFF" stroke-width="1.5" d="M263.357,26.931c0,0,1.836,1.797,2.438,5.031
c0.291,1.55,1.348,2.757,3.062,3.594"/>
<path fill="none" stroke="#698EFF" stroke-width="1.5" d="M267.268,31.724c0,0,2.071,0.358,2.812,1.917
c0.73,1.557,0.312,7.111,0.979,8.985c0.854,2.396,1.467,3.593,3.297,4.552"/>
<path fill="none" stroke="#698EFF" stroke-width="1.5" d="M265.557,25.971c0,0,4.271-0.956,7.445,2.157
c3.178,3.115,3.911,5.629,4.148,7.428c0.246,1.797,1.834,4.313,3.058,4.672"/>
<path fill="none" stroke="#285AA8" stroke-width="1.5" d="M276.915,39.869c0,0,1.101,1.077,2.81,1.318"/>
<path fill="none" stroke="#698EFF" stroke-width="1.5" d="M272.271,38.671c0,0,0.367,2.275,0.729,3.235
c0.368,0.958,2.441,2.994,4.884,3.354c2.442,0.36,5.374-0.719,5.862-1.677"/>
<path fill="none" stroke="#698EFF" stroke-width="1.5" d="M277.945,43.564c0,0,0.843-0.059,2.916-0.178"/>
<path fill="none" stroke="#698EFF" stroke-width="1.5" d="M279.107,46.579c0,0,2.199,0.478,3.666,0"/>
<path fill="none" stroke="#698EFF" stroke-width="1.5" d="M262.383,27.409c0,0-1.71,1.918-2.684,5.152
c-0.981,3.234-0.855,5.033-2.32,7.069c-1.368,1.898-3.299,2.514-4.148,2.753"/>
</g>
</g>
<line fill="none" stroke="#698EFF" stroke-width="1.5" x1="251.789" y1="46.002" x2="254.518" y2="46.002"/>
<line fill="none" stroke="#698EFF" stroke-width="1.5" x1="266.543" y1="46.002" x2="269.268" y2="46.002"/>
<g id="halu">
<path fill="none" stroke="#FF3A5D" stroke-width="1.5" d="M18.749,92.309c0,0,1.078,1.938,1.956,2.529
c1.83,1.25,9.586,0.576,9.843-3.339c0.043-0.644,0.267-1.646-1.05-3.788"/>
<path fill="none" stroke="#FF90A7" stroke-width="1.5" stroke-linecap="round" d="M26.299,84.324c0,0-0.307-3.445-0.753-5.16
c-0.229-0.888-0.039-6.543,0.095-7.817c0.197-1.906-3.218-3.046-3.206,0.189c0.008,3.045-0.26,6.062-0.26,6.062"/>
<path fill="none" stroke="#FF90A7" stroke-width="1.5" stroke-linecap="round" d="M20.92,77.562
c0.295-0.014,1.655,0.057,1.783,1.578c0.126,1.521,0.104,3.497-0.062,4.125c-0.165,0.627-1.744,1.146-2.269,0.188
c-0.521-0.969-0.835-4.015-0.906-4.658C19.395,78.155,19.908,77.608,20.92,77.562z"/>
<path fill="none" stroke="#FF90A7" stroke-width="1.5" stroke-linecap="round" d="M17.042,78.329
c0.311-0.066,1.755-0.237,2.186,1.306c0.428,1.543,1.046,4.111,0.995,4.789c-0.05,0.676-1.611,1.503-2.351,0.6
c-0.738-0.896-2.078-4.578-2.12-5.162C15.706,79.184,15.988,78.557,17.042,78.329z"/>
<path fill="none" stroke="#FF90A7" stroke-width="1.5" stroke-linecap="round" d="M25.67,84.807
c0.564-0.428,2.19-0.934,2.464-1.283c0.784-0.979,1.37-1.764,2.137-2.521c0.768-0.763,2.078-0.781,2.562-0.106
c0.484,0.674,0.374,1.498-0.468,2.354c-0.96,0.979-3.022,4.907-3.47,6.157c-0.445,1.247-2.334,2.576-3.631,2.669
c-0.418,0.026-2.51,0.256-3.474,0.456c-1.624,0.337-3.625,0.152-4.709-0.445c-1.083-0.602-2.991-4.525-3.364-5.947
c-0.368-1.424-0.325-2.744-0.263-3.162c0.063-0.418,0.305-1.311,1.051-1.604c0.22-0.087,1.47-0.35,1.945,0.811
c0.475,1.152,1.009,2.674,1.044,3.2c0.034,0.533-0.979,1.271-1.613,0.649c0,0-0.482-0.688-0.652-1.344"/>
</g>
<g id="haru">
<path fill="none" stroke="#FF3A5D" stroke-width="1.5" d="M108.938,93.354c0,0-1.079,1.938-1.956,2.527
c-1.83,1.25-9.585,0.577-9.844-3.34c-0.042-0.645-0.266-1.645,1.051-3.786"/>
<path fill="none" stroke="#FF90A7" stroke-width="1.5" stroke-linecap="round" d="M101.389,85.368c0,0,0.306-3.447,0.752-5.161
c0.23-0.888,0.039-6.543-0.093-7.817c-0.197-1.906,3.217-3.046,3.206,0.189c-0.01,3.045,0.26,6.062,0.26,6.062"/>
<path fill="none" stroke="#FF90A7" stroke-width="1.5" stroke-linecap="round" d="M106.768,78.606
c-0.294-0.015-1.656,0.056-1.783,1.577c-0.126,1.521-0.104,3.499,0.062,4.125c0.165,0.629,1.744,1.146,2.271,0.188
c0.521-0.967,0.834-4.014,0.906-4.658C108.292,79.197,107.779,78.651,106.768,78.606z"/>
<path fill="none" stroke="#FF90A7" stroke-width="1.5" stroke-linecap="round" d="M110.645,79.372
c-0.311-0.066-1.756-0.237-2.186,1.306c-0.429,1.543-1.046,4.111-0.995,4.789c0.05,0.676,1.609,1.503,2.351,0.6
c0.736-0.896,2.076-4.562,2.119-5.146C111.982,80.227,111.699,79.6,110.645,79.372z"/>
<path fill="none" stroke="#FF90A7" stroke-width="1.5" stroke-linecap="round" d="M102.017,85.85
c-0.564-0.428-2.189-0.934-2.464-1.283c-0.783-0.979-1.37-1.764-2.137-2.521c-0.768-0.763-2.077-0.78-2.562-0.108
c-0.484,0.674-0.372,1.5,0.468,2.354c0.961,0.979,3.023,4.907,3.471,6.156c0.445,1.247,2.334,2.577,3.63,2.669
c0.418,0.027,2.511,0.256,3.473,0.457c1.625,0.336,3.627,0.152,4.71-0.446c1.083-0.601,2.991-4.524,3.362-5.946
c0.37-1.425,0.327-2.746,0.266-3.164c-0.063-0.418-0.308-1.31-1.051-1.604c-0.22-0.087-1.469-0.348-1.945,0.811
c-0.475,1.152-1.009,2.672-1.043,3.201c-0.035,0.532,0.979,1.271,1.613,0.649c0,0,0.481-0.688,0.652-1.343"/>
</g>
<g id="hard">
<path fill="#010101" stroke="#FF3A5D" stroke-width="1.536" d="M10.236,100.184"/>
<path fill="#010101" stroke="#FF3A5D" stroke-width="1.536" d="M23.95,97.109c0,0-0.157-3.742-4.833-4.344
c-2.158-0.273-10.346,0.396-8.294,5.463"/>
<path fill="#010101" stroke="#FF90A7" stroke-width="1.536" stroke-linecap="round" d="M14.191,99.584
c0,0,0.408,5.154,0.573,7.062c0.186,2.131,0.176,2.377,0.229,4.146c0.062,2.069,2.834,2.541,3.117,0.017
c0.382-3.438,0.772-11.006,0.772-11.006"/>
<path fill="#010101" stroke="#FF90A7" stroke-width="1.536" stroke-linecap="round" d="M23.035,101c0,0-0.034,5.592-1.722,5.832
c-2.831,0.398-2.806-2.014-2.407-6.809"/>
<path fill="#010101" stroke="#FF90A7" stroke-width="1.536" stroke-linecap="round" d="M23.035,101
c-0.026,0.844-0.087,3.699,0.205,4.229c0.587,1.069,2.389,1.037,2.8-0.213c0.769-2.312,2.399-5.641-0.307-7.502
c-1.041-0.716-1.375,0.113-2.215-0.271c-0.969-0.44-0.488-1.136-2.484-1.511c-1.157-0.219-2.016,0.722-3.153,0.095
c-2.362-1.304-6.072,1.715-7.062,2.401c0,0-4.055,0.84-4.789,0.959c-0.735,0.119-1.178,0.617-0.434,2.338
c0.676,1.556,2.769,1.367,5.007,1.304c3.392-0.101,3.78-0.492,3.78-0.492"/>
<path fill="#010101" stroke="#FF90A7" stroke-width="1.536" stroke-linecap="round" d="M15.073,108.562"/>
</g>
<g id="hald">
<path fill="#010101" stroke="#FF3A5D" stroke-width="1.536" d="M22.832,100.971"/>
<path fill="#010101" stroke="#FF3A5D" stroke-width="1.536" d="M9.118,97.898c0,0,0.157-3.742,4.833-4.344
c2.16-0.277,10.345,0.396,8.294,5.463"/>
<path fill="#010101" stroke="#FF90A7" stroke-width="1.536" stroke-linecap="round" d="M10.034,101.787
c0,0,0.034,5.592,1.721,5.832c2.834,0.4,2.808-2.012,2.41-6.807"/>
<path fill="#010101" stroke="#FF90A7" stroke-width="1.536" stroke-linecap="round" d="M10.034,101.787
c0.029,0.846,0.088,3.701-0.205,4.23c-0.587,1.062-2.389,1.021-2.8-0.213c-0.767-2.314-2.399-5.646,0.307-7.519
c1.041-0.72,1.374,0.112,2.22-0.271c0.964-0.438,0.486-1.145,2.482-1.52c1.159-0.221,2.017,0.729,3.153,0.1
c2.364-1.309,6.075,1.721,7.06,2.396c0,0,4.057,0.843,4.791,0.962c0.737,0.117,1.18,0.613,0.434,2.337
c-0.678,1.562-2.769,1.365-5.01,1.31c-3.392-0.104-3.779-0.485-3.779-0.485"/>
<path fill="#010101" stroke="#FF90A7" stroke-width="1.536" stroke-linecap="round" d="M18.877,100.371
c0,0-0.408,5.154-0.571,7.064c-0.188,2.129-0.178,2.377-0.229,4.146c-0.062,2.067-2.835,2.541-3.121,0.015
c-0.382-3.443-0.771-11.007-0.771-11.007"/>
</g>
<g id="hbru">
<path fill="none" stroke="#FF3A5D" stroke-width="1.5" d="M305.856,94.542c0,0-1.079,1.933-1.956,2.526
c-1.829,1.25-9.584,0.578-9.844-3.34c-0.041-0.646-0.271-1.646,1.051-3.785"/>
<path fill="none" stroke="#FF90A7" stroke-width="1.5" stroke-linecap="round" d="M298.307,86.557c0,0,0.312-3.447,0.753-5.16
c0.229-0.89,0.037-6.542-0.095-7.812c-0.196-1.906,3.217-3.047,3.206,0.188c-0.009,3.045,0.26,6.062,0.26,6.062"/>
<path fill="none" stroke="#FF90A7" stroke-width="1.5" stroke-linecap="round" d="M303.686,79.794
c-0.295-0.015-1.646,0.057-1.771,1.578c-0.128,1.521-0.104,3.498,0.062,4.125c0.164,0.629,1.741,1.155,2.271,0.188
c0.521-0.979,0.831-4.021,0.896-4.658C305.21,80.386,304.696,79.839,303.686,79.794z"/>
<path fill="none" stroke="#FF90A7" stroke-width="1.5" stroke-linecap="round" d="M307.562,80.561
c-0.312-0.062-1.769-0.229-2.188,1.312c-0.43,1.543-1.046,4.105-0.998,4.789c0.049,0.676,1.609,1.503,2.354,0.6
c0.729-0.896,2.062-4.568,2.104-5.152C308.9,81.415,308.617,80.788,307.562,80.561z"/>
<path fill="none" stroke="#FF90A7" stroke-width="1.5" stroke-linecap="round" d="M298.935,87.038
c-0.562-0.429-2.188-0.935-2.464-1.283c-0.783-0.989-1.371-1.764-2.138-2.521c-0.771-0.764-2.078-0.78-2.563-0.108
c-0.479,0.674-0.369,1.5,0.467,2.354c0.971,0.979,3.027,4.896,3.479,6.146c0.445,1.247,2.334,2.577,3.631,2.679
c0.418,0.021,2.512,0.256,3.477,0.447c1.625,0.346,3.635,0.152,4.711-0.438c1.084-0.604,2.991-4.523,3.356-5.945
c0.368-1.426,0.324-2.746,0.271-3.164c-0.062-0.418-0.312-1.311-1.062-1.604c-0.219-0.086-1.469-0.354-1.938,0.812
c-0.479,1.149-1.011,2.672-1.04,3.201c-0.035,0.53,0.979,1.271,1.604,0.646c0,0,0.482-0.688,0.653-1.351"/>
</g>
<g id="hblu">
<path fill="none" stroke="#FF3A5D" stroke-width="1.5" d="M215.666,93.497c0,0,1.08,1.935,1.956,2.528
c1.829,1.25,9.586,0.576,9.843-3.338c0.042-0.646,0.27-1.646-1.051-3.789"/>
<path fill="none" stroke="#FF90A7" stroke-width="1.5" stroke-linecap="round" d="M223.218,85.514c0,0-0.308-3.445-0.755-5.161
c-0.229-0.889-0.037-6.543,0.098-7.816c0.195-1.906-3.22-3.047-3.205,0.188c0.008,3.045-0.263,6.062-0.263,6.062"/>
<path fill="none" stroke="#FF90A7" stroke-width="1.5" stroke-linecap="round" d="M217.837,78.751
c0.295-0.015,1.656,0.057,1.784,1.578c0.125,1.521,0.104,3.496-0.062,4.125c-0.168,0.629-1.744,1.155-2.271,0.188
c-0.521-0.979-0.831-4.021-0.905-4.667C216.312,79.344,216.827,78.796,217.837,78.751z"/>
<path fill="none" stroke="#FF90A7" stroke-width="1.5" stroke-linecap="round" d="M213.96,79.518
c0.312-0.065,1.756-0.237,2.188,1.306c0.435,1.543,1.047,4.111,0.996,4.789c-0.055,0.676-1.611,1.503-2.354,0.6
c-0.731-0.896-2.078-4.578-2.12-5.162C212.623,80.372,212.904,79.745,213.96,79.518z"/>
<path fill="none" stroke="#FF90A7" stroke-width="1.5" stroke-linecap="round" d="M222.589,85.995
c0.563-0.429,2.188-0.935,2.468-1.283c0.779-0.989,1.365-1.764,2.135-2.521c0.771-0.771,2.078-0.78,2.562-0.106
c0.487,0.674,0.374,1.498-0.468,2.354c-0.956,0.979-3.021,4.906-3.468,6.156c-0.445,1.231-2.336,2.562-3.631,2.67
c-0.418,0.021-2.518,0.256-3.479,0.455c-1.624,0.338-3.628,0.146-4.708-0.445c-1.082-0.604-2.982-4.525-3.355-5.947
c-0.367-1.423-0.326-2.744-0.271-3.162c0.061-0.418,0.312-1.311,1.049-1.604c0.227-0.088,1.475-0.354,1.945,0.809
c0.479,1.154,1.007,2.674,1.041,3.202c0.023,0.532-0.979,1.271-1.612,0.649c0,0-0.479-0.688-0.647-1.354"/>
</g>
<g id="hbrd">
<path fill="#010101" stroke="#FF3A5D" stroke-width="1.536" d="M205.479,99.749"/>
<path fill="#010101" stroke="#FF3A5D" stroke-width="1.536" d="M219.193,96.677c0,0-0.156-3.743-4.834-4.344
c-2.158-0.274-10.346,0.41-8.295,5.463"/>
<path fill="#010101" stroke="#FF90A7" stroke-width="1.536" stroke-linecap="round" d="M209.434,99.15c0,0,0.406,5.154,0.57,7.062
c0.188,2.131,0.182,2.378,0.232,4.146c0.062,2.07,2.834,2.541,3.119,0.021c0.385-3.438,0.771-11.005,0.771-11.005"/>
<path fill="#010101" stroke="#FF90A7" stroke-width="1.536" stroke-linecap="round" d="M218.277,100.566
c0,0-0.033,5.592-1.719,5.832c-2.83,0.396-2.812-2.021-2.406-6.812"/>
<path fill="#010101" stroke="#FF90A7" stroke-width="1.536" stroke-linecap="round" d="M218.277,100.566
c-0.023,0.844-0.088,3.699,0.205,4.229c0.586,1.069,2.39,1.037,2.801-0.213c0.767-2.314,2.398-5.641-0.307-7.502
c-1.041-0.716-1.375,0.113-2.229-0.271c-0.967-0.438-0.479-1.136-2.479-1.511c-1.156-0.219-2.021,0.722-3.151,0.095
c-2.364-1.303-6.074,1.715-7.062,2.401c0,0-4.06,0.841-4.789,0.96s-1.182,0.617-0.438,2.337c0.677,1.556,2.771,1.367,5.008,1.304
c3.395-0.1,3.782-0.492,3.782-0.492"/>
<path fill="#010101" stroke="#FF90A7" stroke-width="1.536" stroke-linecap="round" d="M210.314,108.129"/>
</g>
<g id="hbld">
<path fill="#010101" stroke="#FF3A5D" stroke-width="1.536" d="M218.075,100.537"/>
<path fill="#010101" stroke="#FF3A5D" stroke-width="1.536" d="M204.361,97.465c0,0,0.156-3.742,4.832-4.344
c2.16-0.276,10.342,0.41,8.295,5.463"/>
<path fill="#010101" stroke="#FF90A7" stroke-width="1.536" stroke-linecap="round" d="M205.275,101.354
c0,0,0.035,5.592,1.723,5.832c2.835,0.401,2.811-2.011,2.411-6.806"/>
<path fill="#010101" stroke="#FF90A7" stroke-width="1.536" stroke-linecap="round" d="M205.275,101.354
c0.031,0.854,0.088,3.701-0.205,4.23c-0.586,1.068-2.387,1.036-2.799-0.212c-0.771-2.315-2.398-5.642,0.306-7.503
c1.041-0.717,1.379,0.115,2.223-0.271c0.966-0.438,0.489-1.136,2.485-1.512c1.16-0.218,2.017,0.721,3.152,0.094
c2.354-1.302,6.076,1.715,7.062,2.403c0,0,4.06,0.84,4.791,0.96c0.735,0.119,1.177,0.617,0.437,2.337
c-0.681,1.554-2.771,1.367-5.013,1.302c-3.392-0.099-3.774-0.492-3.774-0.492"/>
<path fill="#010101" stroke="#FF90A7" stroke-width="1.536" stroke-linecap="round" d="M214.12,99.938
c0,0-0.408,5.155-0.573,7.064c-0.186,2.13-0.176,2.377-0.229,4.146c-0.064,2.062-2.836,2.541-3.121,0.014
c-0.383-3.443-0.773-11.006-0.773-11.006"/>
</g>
<line fill="none" stroke="#FF3A5D" stroke-width="1.5" x1="61.052" y1="58.938" x2="69.066" y2="58.938"/>
<g id="syntha">
<polyline fill="none" stroke="#FF3A5D" stroke-width="1.5" stroke-linecap="square" points="60.006,129.361 60.006,128.961
63.751,121.375 65.746,121.375 69.449,128.961 69.449,129.361 "/>
<line fill="none" stroke="#FF3A5D" stroke-width="1.5" stroke-linecap="square" x1="61.228" y1="126.564" x2="68.229" y2="126.564"/>
</g>
<g id="synthb">
<path fill="none" stroke="#FF3A5D" stroke-width="1.5" stroke-linecap="square" d="M256.77,129.361v-7.986h5.252
c1.123,0,2.033,0.895,2.033,1.996l0,0c0,1.104-0.914,1.997-2.033,1.997h-5.252"/>
<path fill="none" stroke="#FF3A5D" stroke-width="1.5" stroke-linecap="square" d="M256.77,125.368h5.252
c1.123,0,2.033,0.894,2.033,1.996l0,0c0,1.103-0.914,1.997-2.033,1.997h-5.252"/>
</g>
</g>
<g id="octup">
<line id="ou" fill="none" stroke="#00ED95" stroke-width="1.5" stroke-linecap="square" stroke-linejoin="bevel" x1="193.934" y1="96.018" x2="193.934" y2="104.004"/>
<g id="_x2B__4_">
<line fill="none" stroke="#00ED95" stroke-width="1.5" stroke-linecap="square" stroke-linejoin="bevel" x1="186.09" y1="97.148" x2="186.09" y2="103.137"/>
<line fill="none" stroke="#00ED95" stroke-width="1.5" stroke-linecap="square" stroke-linejoin="bevel" x1="183.036" y1="100.143" x2="189.141" y2="100.143"/>
</g>
</g>
<g id="octdown">
<line id="od" fill="none" stroke="#FF3A5D" stroke-width="1.5" stroke-linecap="square" x1="134.909" y1="96.018" x2="134.909" y2="104.004"/>
<line fill="none" stroke="#FF3A5D" stroke-width="1.5" stroke-linecap="square" x1="124.438" y1="100.143" x2="129.55" y2="100.143"/>
</g>
<g id="swing">
<line fill="none" stroke="#514959" stroke-width="1.5" x1="201.113" y1="7.281" x2="121.623" y2="7.288"/>
<line id="greenc" fill="none" stroke="#514959" stroke-width="1.5" x1="161.368" y1="2.277" x2="161.368" y2="12.277"/>
<ellipse id="green" fill="#00ED95" cx="161.368" cy="7.28" rx="2.897" ry="2.842"/>
</g>
<g id="drum">
<g id="drumb">
<g id="snaredrum_1_">
<path fill="none" stroke="#FF3A5D" stroke-width="1.5" d="M241.625,111.46l-0.215,19.17c-1.854,1.481-5.725,1.996-9.667,1.996
c-6.509,0-11.476-1.183-11.476-2.64c0,0-0.152-1.538-0.152-2.209c0-1.778,0-1.729,0-2.065c0-0.346-0.016-2.187-0.016-2.187
s0-11.487,0-12.12c0-0.634,3.678-1.347,5.516-1.438c2.299-0.115,5.607-0.425,11.246,0.131
C236.859,110.1,241.625,110.609,241.625,111.46c0,0.853-3.802,1.17-3.802,1.17c-6.554,1.433-15.222-0.065-16.161-0.256
c-1.754-0.351-1.562-0.969-1.562-0.969"/>
<line fill="none" stroke="#FF3A5D" stroke-width="1.5" x1="228.76" y1="113.223" x2="228.76" y2="116.792"/>
<line fill="none" stroke="#FF3A5D" stroke-width="1.5" x1="228.76" y1="128.03" x2="228.76" y2="132.682"/>
<line fill="none" stroke="#FF3A5D" stroke-width="1.5" x1="238.141" y1="112.991" x2="238.141" y2="116.167"/>
<line fill="none" stroke="#FF3A5D" stroke-width="1.5" x1="238.141" y1="127.405" x2="238.141" y2="132.052"/>
</g>
<g id="face15">
<path fill="none" stroke="#FF3A5D" stroke-width="1.5" d="M242.355,54.875c-0.926,1.653-1.688,3.78-1.688,6.317
c-0.021,6.563,5.541,13.688,18.729,11.1c11.397-2.235,14.062-7.238,14.08-11.159c0,0,0.479-6.469-6.345-10.506"/>
<path fill="none" stroke="#FF3A5D" stroke-width="1.5" d="M264.309,45.46c0,0,0.26-6.847,6.295-6.902
c4.088-0.036,4.896,4.861,4.5,7.175c-0.354,2.089-2.076,7.418-7.644,4.958"/>
<path fill="none" stroke="#FF3A5D" stroke-width="1.5" d="M269.869,48.268c0,0-4.52-2.57-0.206-6.733"/>
<path fill="none" stroke="#FF3A5D" stroke-width="1.5" d="M266.718,43.742c0,0,0.976,0.363,3.115-0.333"/>
<path fill="none" stroke="#FF3A5D" stroke-width="1.5" d="M264.951,41.854c0,0-3.229-1.359-4.33-4.379
c-1.893-5.18-6.53-1.901-7.812-0.469c-2.31,2.57-4.229,3.25-4.783,4.25c-0.549,1.001-1.469,2.912-0.654,5.284"/>
<path fill="none" stroke="#FF3A5D" stroke-width="1.5" d="M246.984,51.644c0,0-3.002-1.651-1.26-4.106
c1.729-2.455,3.646-0.168,4.56,0.107c0.909,0.278,3.006-0.079,3.922-0.714c0.915-0.634,3.104-1.173,4.104,0.198
c0.996,1.371-0.285,3.372-2.848,3.636"/>
<path fill="none" stroke="#FF3A5D" stroke-width="1.5" d="M252.574,44.008c0,0,0.197-3.918,3.203-3.907
c3.011,0.01,2.078,5.295,1.345,6.294"/>
<path fill="none" stroke="#FF3A5D" stroke-width="1.5" d="M252.574,43.825c0.002,0.116,0,0.183,0,0.183"/>
<path fill="none" stroke="#FF3A5D" stroke-width="1.5" d="M247.199,43.35c0,0,1.104-2.731,3.292-2.631
c1.868,0.084,2.063,2.427,2.083,3.106"/>
<line fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" x1="250.184" y1="43.881" x2="249.882" y2="45.408"/>
<line fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" x1="255.062" y1="43.256" x2="254.764" y2="44.784"/>
<line fill="none" stroke="#FF3A5D" stroke-width="1.5" x1="248.152" y1="49.35" x2="249.316" y2="50.688"/>
<line fill="none" stroke="#FF3A5D" stroke-width="1.5" x1="254.105" y1="49.332" x2="252.979" y2="50.22"/>
<path fill="none" stroke="#FF3A5D" stroke-width="1.5" d="M245.458,43.408c0,0-4.799-3.043-6.263,2.933
c-1.463,5.976,3.599,7.66,3.599,7.66"/>
<path fill="none" stroke="#FF3A5D" stroke-width="1.5" d="M258.835,61.016c0,0,2.513-0.426,5.53-1.749
c0,0,0.146,0.313,0.609,1.354"/>
</g>
<g id="face14">
<path fill="none" stroke="#FF3A5D" stroke-width="1.5" d="M271.357,51.794c1.226,1.447,2.373,3.391,2.863,5.881
c1.271,6.438-2.851,14.49-16.287,14.455c-11.621-0.03-15.188-4.438-15.942-8.283c0,0-1.699-6.26,4.231-11.519"/>
<path fill="none" stroke="#FF3A5D" stroke-width="1.5" d="M248.02,46.721c0,0-1.56-6.674-7.49-5.582
c-4.021,0.741-3.883,5.702-3.057,7.899c0.741,1.982,3.444,6.888,8.438,3.418"/>
<path fill="none" stroke="#FF3A5D" stroke-width="1.5" d="M243.091,50.533c0,0,3.945-3.381-1.073-6.65"/>
<path fill="none" stroke="#FF3A5D" stroke-width="1.5" d="M244.466,46.713c0,0-0.819,0.635-3.073,0.604"/>
<path fill="none" stroke="#FF3A5D" stroke-width="1.5" d="M246.701,43.302c0,0,2.908-1.948,3.42-5.121
c0.875-5.445,6.05-3.105,7.582-1.944c2.747,2.086,4.771,2.387,5.501,3.265c0.729,0.877,1.994,2.579,1.647,5.062"/>
<path fill="none" stroke="#FF3A5D" stroke-width="1.5" d="M266.199,49.504c0,0,2.632-2.193,0.458-4.272
c-2.175-2.078-3.613,0.528-4.455,0.973c-0.841,0.444-2.97,0.493-3.986,0.043c-1.016-0.45-3.271-0.562-3.985,0.974
c-0.722,1.535,0.92,3.256,3.479,3.029"/>
<path fill="none" stroke="#FF3A5D" stroke-width="1.5" d="M274.337,61.09c-4.321,6.8-16.155,6.626-19.729,5.938
c-4.358-0.841-6.896-2.914-7.045-6.508c-0.146-3.593,2.312-5.471,5.09-4.812c3.225,0.758,4.322,1.189,9.543,0.346
c6.979-1.129,9.111-4.214,9.111-4.214s2.778-2.754-1.377-2.242"/>
<path fill="none" stroke="#FF3A5D" stroke-width="1.5" d="M259.26,43.067c0,0-0.938-3.811-3.889-3.229s-1.033,5.594-0.123,6.436"
/>
<path fill="none" stroke="#FF3A5D" stroke-width="1.5" d="M264.415,41.399c0,0-1.604-2.47-3.729-1.958
c-2.129,0.514-1.424,3.626-1.424,3.626"/>
<path fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" d="M272.236,57.51c0,0-1.291,0.998-2.311,1.478"
/>
<line fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" x1="267.902" y1="60.038" x2="265.348" y2="60.728"/>
<path fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" d="M263.29,61.133c0,0-1.896,0.281-2.914,0.297"
/>
<path fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" d="M258.175,61.584c0,0-1.731,0.156-2.771,0.082"
/>
<path fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" d="M253.389,61.322c0,0-1.97-0.075-2.472-0.256"
/>
<path fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" d="M270.809,57.328c0,0,0.565,1.467,0.584,2.486"
/>
<path fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" d="M266.173,59.264c0,0,0.445,0.841,0.459,2.325"
/>
<line fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" x1="261.646" y1="60.342" x2="261.52" y2="62.506"/>
<path fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" d="M256.943,60.526c0,0-0.219,1.715-0.237,2.556"
/>
<path fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" d="M252.495,60.104c0,0-0.354,0.534-0.597,2.16"
/>
<line fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" x1="261.585" y1="42.487" x2="262.173" y2="43.929"/>
<line fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" x1="256.673" y1="42.8" x2="257.26" y2="44.243"/>
<line fill="none" stroke="#FF3A5D" stroke-width="1.5" x1="264.615" y1="47.471" x2="263.729" y2="49.007"/>
<line fill="none" stroke="#FF3A5D" stroke-width="1.5" x1="258.771" y1="48.583" x2="260.046" y2="49.242"/>
<path fill="none" stroke="#FF3A5D" stroke-width="1.5" d="M264.671,40.09c0,0,3.685-4.33,6.853,0.943
c3.166,5.275-1.166,8.382-1.166,8.382"/>
</g>
<g id="face13">
<path fill="none" stroke="#FF3A5D" stroke-width="1.5" d="M271.691,53.875c0.927,1.653,1.687,3.78,1.688,6.317
c0.021,6.563-5.529,13.688-18.729,11.1c-11.401-2.236-14.063-7.239-14.08-11.159c0,0-0.479-6.47,6.342-10.506"/>
<path fill="none" stroke="#FF3A5D" stroke-width="1.5" d="M249.736,44.46c0,0-0.258-6.847-6.293-6.902
c-4.09-0.036-4.896,4.862-4.5,7.175c0.354,2.088,2.078,7.418,7.642,4.959"/>
<path fill="none" stroke="#FF3A5D" stroke-width="1.5" d="M244.177,47.268c0,0,4.521-2.57,0.205-6.733"/>
<path fill="none" stroke="#FF3A5D" stroke-width="1.5" d="M247.329,42.742c0,0-0.974,0.363-3.117-0.333"/>
<path fill="none" stroke="#FF3A5D" stroke-width="1.5" d="M249.093,40.854c0,0,3.229-1.36,4.33-4.379
c1.896-5.18,6.531-1.901,7.813-0.469c2.302,2.569,4.229,3.249,4.779,4.25c0.551,1,1.469,2.911,0.649,5.283"/>
<path fill="none" stroke="#FF3A5D" stroke-width="1.5" d="M267.062,50.644c0,0,3.002-1.651,1.269-4.105
c-1.742-2.455-3.646-0.169-4.562,0.107c-0.908,0.277-3.014-0.08-3.922-0.715c-0.914-0.634-3.104-1.173-4.104,0.198
c-0.996,1.371,0.284,3.373,2.841,3.636"/>
<path fill="none" stroke="#FF3A5D" stroke-width="1.5" d="M261.479,42.707c-0.013,0.187-0.006,0.302-0.006,0.302
s-0.195-3.918-3.205-3.907c-3.013,0.011-2.076,5.295-1.347,6.294"/>
<path fill="none" stroke="#FF3A5D" stroke-width="1.5" d="M266.85,42.35c0,0-1.104-2.731-3.293-2.631
c-1.771,0.081-2.041,2.19-2.078,2.988"/>
<line fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" x1="263.864" y1="42.881" x2="264.165" y2="44.408"/>
<line fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" x1="258.982" y1="42.256" x2="259.283" y2="43.784"/>
<line fill="none" stroke="#FF3A5D" stroke-width="1.5" x1="265.895" y1="48.35" x2="264.729" y2="49.688"/>
<line fill="none" stroke="#FF3A5D" stroke-width="1.5" x1="259.939" y1="48.332" x2="261.066" y2="49.22"/>
<path fill="none" stroke="#FF3A5D" stroke-width="1.5" d="M268.589,42.408c0,0,4.804-3.043,6.263,2.931
c1.463,5.978-3.599,7.661-3.599,7.661"/>
<path fill="none" stroke="#FF3A5D" stroke-width="1.5" d="M255.21,60.016c0,0-2.508-0.425-5.526-1.748
c0,0-0.146,0.312-0.604,1.353"/>
</g>
<g id="face12">
<path fill="none" stroke="#FF3A5D" stroke-width="1.5" d="M243.979,51.943c-1.229,1.447-2.371,3.391-2.858,5.881
c-1.271,6.438,2.841,14.491,16.284,14.456c11.619-0.03,15.188-4.438,15.941-8.283c0,0,1.693-6.26-4.229-11.519"/>
<path fill="none" stroke="#FF3A5D" stroke-width="1.5" d="M267.32,46.871c0,0,1.556-6.675,7.49-5.583
c4.021,0.741,3.881,5.702,3.057,7.899c-0.747,1.982-3.448,6.888-8.444,3.418"/>
<path fill="none" stroke="#FF3A5D" stroke-width="1.5" d="M272.249,50.682c0,0-3.949-3.381,1.075-6.65"/>
<path fill="none" stroke="#FF3A5D" stroke-width="1.5" d="M270.874,46.861c0,0,0.817,0.635,3.071,0.607"/>
<path fill="none" stroke="#FF3A5D" stroke-width="1.5" d="M268.639,43.452c0,0-2.91-1.948-3.423-5.121
c-0.875-5.445-6.051-3.106-7.582-1.944c-2.745,2.086-4.771,2.388-5.502,3.265c-0.729,0.877-1.991,2.579-1.646,5.063"/>
<path fill="none" stroke="#FF3A5D" stroke-width="1.5" d="M249.141,49.651c0,0-2.638-2.193-0.457-4.271
c2.174-2.079,3.608,0.527,4.45,0.972c0.845,0.445,2.972,0.493,3.986,0.043c1.021-0.45,3.271-0.562,3.987,0.974
c0.722,1.535-0.92,3.255-3.479,3.029"/>
<path fill="none" stroke="#FF3A5D" stroke-width="1.5" d="M241.001,61.24c4.326,6.799,16.159,6.627,19.731,5.938
c4.365-0.841,6.896-2.914,7.043-6.508c0.15-3.593-2.303-5.47-5.088-4.812c-3.219,0.757-4.321,1.19-9.545,0.346
c-6.979-1.129-9.109-4.214-9.109-4.214s-2.782-2.754,1.377-2.242"/>
<path fill="none" stroke="#FF3A5D" stroke-width="1.5" d="M256.075,43.217c0,0,0.938-3.811,3.889-3.229
c2.951,0.582,1.035,5.593,0.125,6.435"/>
<path fill="none" stroke="#FF3A5D" stroke-width="1.5" d="M256.188,41.986c0.017,0.678-0.109,1.231-0.109,1.231"/>
<path fill="none" stroke="#FF3A5D" stroke-width="1.5" d="M256.18,41.759c0.004,0.077,0.008,0.153,0.01,0.228"/>
<path fill="none" stroke="#FF3A5D" stroke-width="1.5" d="M250.923,41.548c0,0,1.604-2.471,3.729-1.957
c1.135,0.274,1.465,1.283,1.521,2.167"/>
<path fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" d="M243.102,57.659c0,0,1.287,0.998,2.312,1.478"
/>
<line fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" x1="247.434" y1="60.187" x2="249.991" y2="60.876"/>
<path fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" d="M252.048,61.282c0,0,1.896,0.282,2.916,0.297"
/>
<path fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" d="M257.161,61.733c0,0,1.733,0.157,2.771,0.083"
/>
<path fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" d="M261.952,61.47c0,0,1.965-0.075,2.467-0.256"
/>
<path fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" d="M244.527,57.477c0,0-0.565,1.467-0.582,2.487"
/>
<path fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" d="M249.165,59.413c0,0-0.44,0.841-0.459,2.325"
/>
<line fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" x1="253.689" y1="60.491" x2="253.818" y2="62.654"/>
<path fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" d="M258.395,60.676c0,0,0.219,1.715,0.235,2.557"
/>
<path fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" d="M262.843,60.254c0,0,0.358,0.534,0.599,2.161"
/>
<line fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" x1="253.751" y1="42.636" x2="253.167" y2="44.079"/>
<line fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" x1="258.662" y1="42.949" x2="258.077" y2="44.392"/>
<line fill="none" stroke="#FF3A5D" stroke-width="1.5" x1="250.723" y1="47.62" x2="251.609" y2="49.156"/>
<line fill="none" stroke="#FF3A5D" stroke-width="1.5" x1="256.568" y1="48.733" x2="255.294" y2="49.392"/>
<path fill="none" stroke="#FF3A5D" stroke-width="1.5" d="M250.669,40.239c0,0-3.685-4.329-6.851,0.944
c-3.168,5.273,1.164,8.381,1.164,8.381"/>
</g>
<g id="face11">
<path fill="none" stroke="#FF3A5D" stroke-width="1.5" d="M248.712,50.226c0,0-6.039,2.347-7.362,8.774
c-1.563,7.594,6.021,14.491,19.231,13.612c11.596-0.771,14.971-4.047,16.43-9.194c0,0,2.007-8.356-6.487-12.005"/>
<path fill="none" stroke="#FF3A5D" stroke-width="1.5" d="M268.141,43.041c0,0-4.244-5.156-4.896-6.153
c-1.254-1.925-5.36-2.094-6.585-0.611c-2.24,2.715-3.555,3.492-4.396,4.262c-1.521,1.393-1.99,2.786-1.367,5.652"/>
<path fill="none" stroke="#FF3A5D" stroke-width="1.5" d="M254.771,51.391c0,0-3.226-2.021-1.676-4.233
c1.545-2.214,3.7,0.295,4.655,0.685c0.955,0.391,3.062,0.303,3.938-0.21c0.873-0.514,3.062-0.771,4.203,0.717
c1.146,1.486,0.021,3.307-2.559,3.245"/>
<path fill="none" stroke="#FF3A5D" stroke-width="1.5" d="M246.15,51.538"/>
<path fill="none" stroke="#FF3A5D" stroke-width="1.5" d="M247.557,65.613c5.229,3.299,14.68,3.235,18.604,2.156
c4.573-1.258,7.192-3.49,7.278-6.915c0.086-3.424-2.535-4.945-5.45-4.028c-3.368,1.059-4.587,1.906-10.036,1.335
c-4.896-0.513-11.129-4.223-13.128-0.162C243.251,61.201,245.503,64.315,247.557,65.613z"/>
<path fill="none" stroke="#FF3A5D" stroke-width="1.5" d="M259.751,44.526c0,0-0.194-3.151-2.438-3.528
c-2.238-0.375-3.107,2.192-3.107,2.192s-0.796,1.503-0.005,3.173"/>
<path fill="none" stroke="#FF3A5D" stroke-width="1.5" d="M264.615,47.471c0.654-0.898,1.104-6.021-1.967-6.414
c-3.067-0.393-2.897,3.469-2.897,3.469"/>
<path fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" d="M247.891,60.041c0,0,1.354,0.912,2.396,1.328"
/>
<line fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" x1="252.376" y1="62.287" x2="254.973" y2="62.811"/>
<path fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" d="M257.05,63.086c0,0,1.91,0.159,2.933,0.11"/>
<path fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" d="M262.184,63.21c0,0,1.737,0.045,2.771-0.094"
/>
<path fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" d="M266.945,62.644c0,0,1.957-0.201,2.445-0.413"
/>
<path fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" d="M249.305,59.767c0,0-0.476,1.5-0.425,2.518"/>
<path fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" d="M254.055,61.404c0,0-0.394,0.867-0.312,2.351"
/>
<line fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" x1="258.639" y1="62.191" x2="258.906" y2="64.342"/>
<path fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" d="M263.343,62.076c0,0,0.328,1.698,0.401,2.537"
/>
<path fill="none" stroke="#DFD9FF" stroke-width="1.5" stroke-linecap="square" d="M267.757,61.372c0,0,0.396,0.511,0.731,2.119"
/>