-
Notifications
You must be signed in to change notification settings - Fork 0
/
allGlyphs.html
32789 lines (32789 loc) · 613 KB
/
allGlyphs.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
<body>
<script src='https://cdn.jsdelivr.net/npm/[email protected]'></script>
<div data-zoom-on-wheel='' data-pan-on-drag=''>
<svg xmlns='http://www.w3.org/2000/svg'
viewBox='0 0 21000 23652'>
<g id='layer1'>
<g id='Dactyl Sans Extra Light0'>
<text x='0' y='200' font-size='200'>Dactyl Sans Extra Light</text>
<!-- a -->
<clipPath id='-720494824'>
<rect x='-6' y='-306' width='358' height='962'/>
</clipPath>
<path
d='
M 299,366
L 306,366
L 306,0
L 299,0
L 299,366
Z
M 306,300
L 299,300
C 282,321 259,339 234,349
C 208,360 180,363 153,360
C 111,354 72,331 46,299
C 20,266 6,224 6,183
C 5,140 19,98 46,66
C 72,33 111,10 153,5
C 180,1 208,5 234,15
C 259,26 282,43 299,66
L 306,66
C 288,42 265,23 238,11
C 211,0 181,-3 152,0
C 109,5 69,28 42,62
C 14,95 0,138 0,182
C 0,225 14,268 41,302
C 69,335 109,359 152,365
C 180,368 210,364 237,353
C 264,342 288,323 306,300
Z
'
transform='translate(0,1056) scale(1,-1)'
style='fill:#000000;fill-rule:nonzero;stroke:#000000;stroke-width:5'
clip-path='url(#-720494824)'
/>
<!-- b -->
<clipPath id='-1084734293'>
<rect x='-6' y='-306' width='358' height='962'/>
</clipPath>
<path
d='
M 0,606
L 6,606
L 6,0
L 0,0
L 0,606
Z
M 0,66
L 6,66
C 22,43 45,26 70,15
C 96,5 124,1 152,5
C 193,10 232,33 258,65
C 284,98 298,140 299,182
C 299,224 285,266 258,298
C 232,331 193,354 152,360
C 124,363 96,360 70,349
C 45,339 22,321 6,300
L 0,300
C 17,323 40,341 67,353
C 94,364 124,368 153,365
C 195,359 236,336 263,303
C 291,269 305,226 306,183
C 306,139 291,95 263,62
C 236,28 196,5 153,0
C 124,-3 94,0 67,12
C 40,23 17,42 0,66
Z
'
transform='translate(346,1056) scale(1,-1)'
style='fill:#000000;fill-rule:nonzero;stroke:#000000;stroke-width:5'
clip-path='url(#-1084734293)'
/>
<!-- c -->
<clipPath id='229198739'>
<rect x='-6' y='-306' width='358' height='962'/>
</clipPath>
<path
d='
M 306,300
L 299,300
C 282,321 259,339 234,349
C 208,360 180,363 153,360
C 111,354 72,331 46,299
C 20,266 6,224 6,183
C 5,140 19,98 46,66
C 72,33 111,10 153,5
C 180,1 208,5 234,15
C 259,26 282,43 299,66
L 306,66
C 288,42 265,23 238,11
C 211,0 181,-3 152,0
C 109,5 69,28 42,62
C 14,95 0,138 0,182
C 0,225 14,268 41,302
C 69,335 109,359 152,365
C 180,368 210,364 237,353
C 264,342 288,323 306,300
Z
'
transform='translate(692,1056) scale(1,-1)'
style='fill:#000000;fill-rule:nonzero;stroke:#000000;stroke-width:5'
clip-path='url(#229198739)'
/>
<!-- d -->
<clipPath id='1180459542'>
<rect x='-6' y='-306' width='358' height='962'/>
</clipPath>
<path
d='
M 299,606
L 306,606
L 306,0
L 299,0
L 299,606
Z
M 306,300
L 299,300
C 282,321 259,339 234,349
C 208,360 180,363 153,360
C 111,354 72,331 46,299
C 20,266 6,224 6,183
C 5,140 19,98 46,66
C 72,33 111,10 153,5
C 180,1 208,5 234,15
C 259,26 282,43 299,66
L 306,66
C 288,42 265,23 238,11
C 211,0 181,-3 152,0
C 109,5 69,28 42,62
C 14,95 0,138 0,182
C 0,225 14,268 41,302
C 69,335 109,359 152,365
C 180,368 210,364 237,353
C 264,342 288,323 306,300
Z
'
transform='translate(1038,1056) scale(1,-1)'
style='fill:#000000;fill-rule:nonzero;stroke:#000000;stroke-width:5'
clip-path='url(#1180459542)'
/>
<!-- e -->
<clipPath id='1048326966'>
<rect x='-6' y='-306' width='210' height='962'/>
</clipPath>
<path
d='
M 150,-8
C 152,-8 154,-7 155,-5
C 157,-4 158,-2 158,0
C 157,2 157,4 155,5
C 154,7 152,7 150,8
C 147,8 145,7 144,5
C 142,4 142,2 142,0
C 141,-2 142,-4 144,-5
C 145,-7 147,-8 150,-8
Z
'
transform='translate(1384,1056) scale(1,-1)'
style='fill:#000000;fill-rule:nonzero;stroke:#000000;stroke-width:5'
clip-path='url(#1048326966)'
/>
<!-- f -->
<clipPath id='661682198'>
<rect x='-6' y='-306' width='208' height='962'/>
</clipPath>
<path
d='
M 6,0
L 0,0
L 0,363
C 0,389 0,416 4,442
C 8,469 16,495 29,518
C 42,541 60,562 82,577
C 104,592 129,602 156,606
L 156,600
C 130,596 105,586 84,571
C 63,556 46,536 33,513
C 21,490 13,465 10,440
C 6,414 5,388 6,363
L 6,0
Z
M 0,360
L 0,366
L 156,366
L 156,360
L 0,360
Z
'
transform='translate(1730,1056) scale(1,-1)'
style='fill:#000000;fill-rule:nonzero;stroke:#000000;stroke-width:5'
clip-path='url(#661682198)'
/>
<!-- g -->
<clipPath id='1332135762'>
<rect x='-6' y='-306' width='358' height='962'/>
</clipPath>
<path
d='
M 299,366
L 306,366
L 306,3
C 305,-58 305,-121 282,-178
C 271,-207 254,-234 232,-255
C 210,-276 183,-292 153,-299
C 124,-304 93,-301 66,-290
C 39,-278 15,-258 0,-234
L 6,-234
C 21,-257 43,-275 69,-286
C 95,-297 124,-299 152,-294
C 181,-287 208,-271 229,-250
C 250,-229 266,-203 277,-175
C 298,-119 298,-57 299,2
L 299,366
Z
M 306,300
L 299,300
C 282,321 259,339 234,349
C 208,360 180,363 153,360
C 111,354 72,331 46,299
C 20,266 6,224 6,183
C 5,140 19,98 46,66
C 72,33 111,10 153,5
C 180,1 208,5 234,15
C 259,26 282,43 299,66
L 306,66
C 288,42 265,23 238,11
C 211,0 181,-3 152,0
C 109,5 69,28 42,62
C 14,95 0,138 0,182
C 0,225 14,268 41,302
C 69,335 109,359 152,365
C 180,368 210,364 237,353
C 264,342 288,323 306,300
Z
'
transform='translate(1926,1056) scale(1,-1)'
style='fill:#000000;fill-rule:nonzero;stroke:#000000;stroke-width:5'
clip-path='url(#1332135762)'
/>
<!-- h -->
<clipPath id='-1719307856'>
<rect x='-6' y='-306' width='358' height='962'/>
</clipPath>
<path
d='
M 0,606
L 6,606
L 6,0
L 0,0
L 0,606
Z
M 0,300
L 0,306
C 40,344 96,366 153,365
C 175,364 198,360 218,351
C 239,342 258,328 272,311
C 286,293 296,272 300,250
C 305,228 306,205 306,183
L 306,0
L 299,0
L 299,183
C 299,204 298,226 294,248
C 289,269 280,289 266,306
C 253,324 235,337 215,346
C 195,355 173,359 152,360
C 96,361 39,339 0,300
Z
'
transform='translate(2272,1056) scale(1,-1)'
style='fill:#000000;fill-rule:nonzero;stroke:#000000;stroke-width:5'
clip-path='url(#-1719307856)'
/>
<!-- i -->
<clipPath id='-74160673'>
<rect x='-6' y='-306' width='63' height='962'/>
</clipPath>
<path
d='
M 0,366
L 6,366
L 6,0
L 0,0
L 0,366
Z
M 3,595
C 5,594 7,595 8,597
C 10,598 11,600 11,603
C 10,605 10,607 8,608
C 7,610 5,610 3,611
C 0,611 -1,610 -2,608
C -4,607 -4,605 -5,603
C -5,600 -4,598 -2,597
C -1,595 0,594 3,595
Z
'
transform='translate(2618,1056) scale(1,-1)'
style='fill:#000000;fill-rule:nonzero;stroke:#000000;stroke-width:5'
clip-path='url(#-74160673)'
/>
<!-- j -->
<clipPath id='-480443600'>
<rect x='-6' y='-306' width='363' height='962'/>
</clipPath>
<path
d='
M 299,366
L 306,366
L 306,3
C 305,-58 305,-121 282,-178
C 271,-207 254,-234 232,-255
C 210,-276 183,-292 153,-299
C 124,-304 93,-301 66,-290
C 39,-278 15,-258 0,-234
L 6,-234
C 21,-257 43,-275 69,-286
C 95,-297 124,-299 152,-294
C 181,-287 208,-271 229,-250
C 250,-229 266,-203 277,-175
C 298,-119 298,-57 299,2
L 299,366
Z
M 303,595
C 305,594 307,595 308,597
C 310,598 311,600 311,603
C 310,605 310,607 308,608
C 307,610 305,610 303,611
C 300,611 298,610 297,608
C 295,607 295,605 295,603
C 294,600 295,598 297,597
C 298,595 300,594 303,595
Z
'
transform='translate(2664,1056) scale(1,-1)'
style='fill:#000000;fill-rule:nonzero;stroke:#000000;stroke-width:5'
clip-path='url(#-480443600)'
/>
<!-- k -->
<clipPath id='-1936684328'>
<rect x='-6' y='-306' width='283' height='962'/>
</clipPath>
<path
d='
M 0,606
L 6,606
L 6,0
L 0,0
L 0,606
Z
M 231,366
L 231,360
L 0,180
L 0,186
L 231,366
Z
M 0,180
L 0,186
L 231,6
L 231,0
L 0,180
Z
'
transform='translate(3010,1056) scale(1,-1)'
style='fill:#000000;fill-rule:nonzero;stroke:#000000;stroke-width:5'
clip-path='url(#-1936684328)'
/>
<!-- l -->
<clipPath id='-1282861849'>
<rect x='-6' y='-306' width='208' height='962'/>
</clipPath>
<path
d='
M 0,606
L 6,606
L 6,183
C 6,160 6,137 10,115
C 14,92 23,71 36,53
C 49,34 68,20 89,11
C 110,3 133,1 156,6
L 156,0
C 133,-5 108,-3 86,5
C 64,13 45,29 31,48
C 17,67 9,89 4,112
C 0,135 0,159 0,183
L 0,606
Z
'
transform='translate(3281,1056) scale(1,-1)'
style='fill:#000000;fill-rule:nonzero;stroke:#000000;stroke-width:5'
clip-path='url(#-1282861849)'
/>
<!-- m -->
<clipPath id='-1514947790'>
<rect x='-6' y='-306' width='508' height='962'/>
</clipPath>
<path
d='
M 0,366
L 6,366
L 6,0
L 0,0
L 0,366
Z
M 6,300
L 0,300
C 9,330 33,355 62,367
C 91,380 125,378 154,365
C 185,349 207,319 219,286
C 230,253 231,217 231,183
L 231,0
L 224,0
L 224,183
C 224,216 223,251 212,283
C 207,299 200,314 189,327
C 179,341 166,352 151,360
C 124,373 92,374 64,363
C 37,351 15,328 6,300
Z
M 231,240
L 224,240
C 220,258 221,277 227,295
C 233,313 244,329 258,341
C 272,354 289,363 307,367
C 325,371 345,370 363,365
C 380,359 396,349 409,336
C 423,324 433,308 440,291
C 454,257 456,219 456,183
L 456,0
L 449,0
L 449,183
C 448,218 448,254 434,287
C 428,303 418,319 406,331
C 394,344 378,354 362,360
C 344,365 326,366 308,362
C 291,358 274,350 261,338
C 248,326 238,310 232,293
C 227,276 226,257 231,240
Z
'
transform='translate(3477,1056) scale(1,-1)'
style='fill:#000000;fill-rule:nonzero;stroke:#000000;stroke-width:5'
clip-path='url(#-1514947790)'
/>
<!-- n -->
<clipPath id='850167767'>
<rect x='-6' y='-306' width='358' height='962'/>
</clipPath>
<path
d='
M 0,366
L 6,366
L 6,0
L 0,0
L 0,366
Z
M 0,300
L 0,306
C 40,344 96,366 153,365
C 175,364 198,360 218,351
C 239,342 258,328 272,311
C 286,293 296,272 300,250
C 305,228 306,205 306,183
L 306,0
L 299,0
L 299,183
C 299,204 298,226 294,248
C 289,269 280,289 266,306
C 253,324 235,337 215,346
C 195,355 173,359 152,360
C 96,361 39,339 0,300
Z
'
transform='translate(3973,1056) scale(1,-1)'
style='fill:#000000;fill-rule:nonzero;stroke:#000000;stroke-width:5'
clip-path='url(#850167767)'
/>
<!-- o -->
<clipPath id='-423348981'>
<rect x='-6' y='-306' width='358' height='962'/>
</clipPath>
<path
d='
M 0,183
C 0,226 12,271 39,306
C 52,323 69,338 88,348
C 108,358 130,364 152,365
C 174,365 196,359 215,349
C 235,338 252,324 266,306
C 293,271 306,226 306,182
C 305,137 293,93 266,58
C 252,41 235,26 216,16
C 196,5 175,0 153,0
C 130,0 108,5 89,16
C 69,26 52,41 39,58
C 12,93 0,138 0,183
Z
M 152,5
C 173,4 194,10 213,20
C 232,30 248,45 261,62
C 287,96 299,140 299,183
C 298,225 287,268 261,302
C 248,319 232,333 214,344
C 195,354 174,359 153,360
C 131,360 110,354 91,344
C 72,334 56,319 43,302
C 17,268 5,224 6,182
C 6,139 17,96 43,62
C 56,45 72,31 90,20
C 109,10 130,5 152,5
Z
'
transform='translate(4319,1056) scale(1,-1)'
style='fill:#000000;fill-rule:nonzero;stroke:#000000;stroke-width:5'
clip-path='url(#-423348981)'
/>
<!-- p -->
<clipPath id='-690555706'>
<rect x='-6' y='-306' width='358' height='962'/>
</clipPath>
<path
d='
M 0,366
L 6,366
L 6,-300
L 0,-300
L 0,366
Z
M 0,66
L 6,66
C 22,43 45,26 70,15
C 96,5 124,1 152,5
C 193,10 232,33 258,65
C 284,98 298,140 299,182
C 299,224 285,266 258,298
C 232,331 193,354 152,360
C 124,363 96,360 70,349
C 45,339 22,321 6,300
L 0,300
C 17,323 40,341 67,353
C 94,364 124,368 153,365
C 195,359 236,336 263,303
C 291,269 305,226 306,183
C 306,139 291,95 263,62
C 236,28 196,5 153,0
C 124,-3 94,0 67,12
C 40,23 17,42 0,66
Z
'
transform='translate(4665,1056) scale(1,-1)'
style='fill:#000000;fill-rule:nonzero;stroke:#000000;stroke-width:5'
clip-path='url(#-690555706)'
/>
<!-- q -->
<clipPath id='454564424'>
<rect x='-6' y='-306' width='358' height='962'/>
</clipPath>
<path
d='
M 299,366
L 306,366
L 306,-300
L 299,-300
L 299,366
Z
M 306,300
L 299,300
C 282,321 259,339 234,349
C 208,360 180,363 153,360
C 111,354 72,331 46,299
C 20,266 6,224 6,183
C 5,140 19,98 46,66
C 72,33 111,10 153,5
C 180,1 208,5 234,15
C 259,26 282,43 299,66
L 306,66
C 288,42 265,23 238,11
C 211,0 181,-3 152,0
C 109,5 69,28 42,62
C 14,95 0,138 0,182
C 0,225 14,268 41,302
C 69,335 109,359 152,365
C 180,368 210,364 237,353
C 264,342 288,323 306,300
Z
'
transform='translate(5011,1056) scale(1,-1)'
style='fill:#000000;fill-rule:nonzero;stroke:#000000;stroke-width:5'
clip-path='url(#454564424)'
/>
<!-- r -->
<clipPath id='1880257975'>
<rect x='-6' y='-306' width='358' height='962'/>
</clipPath>
<path
d='
M 0,366
L 6,366
L 6,0
L 0,0
L 0,366
Z
M 0,300
L 0,306
C 41,344 96,366 153,366
C 209,366 264,344 306,306
L 306,300
C 264,338 209,360 153,360
C 96,360 41,338 0,300
Z
'
transform='translate(5357,1056) scale(1,-1)'
style='fill:#000000;fill-rule:nonzero;stroke:#000000;stroke-width:5'
clip-path='url(#1880257975)'
/>
<!-- s -->
<clipPath id='-595843067'>
<rect x='-6' y='-306' width='358' height='962'/>
</clipPath>
<path
d='
M 306,306
L 306,300
C 261,333 207,354 152,360
C 133,361 114,362 96,359
C 77,356 59,350 43,340
C 28,330 14,315 7,298
C 0,281 -1,261 5,244
C 9,230 18,218 29,210
C 40,201 53,195 67,191
C 94,183 123,184 152,185
C 181,185 211,186 239,178
C 253,174 267,168 278,158
C 290,149 299,137 305,124
C 311,105 310,84 303,66
C 295,47 282,32 265,21
C 249,10 230,3 210,0
C 191,-2 171,-2 152,0
C 97,6 44,26 0,60
L 0,66
C 44,32 97,11 153,5
C 171,2 190,2 208,5
C 227,8 245,14 261,24
C 276,34 290,49 297,66
C 304,83 306,103 300,121
C 295,134 286,145 275,154
C 264,163 251,169 237,173
C 210,181 181,180 153,180
C 123,179 93,178 65,186
C 51,190 37,196 26,206
C 14,215 5,227 0,241
C -6,259 -5,280 1,298
C 9,316 22,332 39,343
C 55,354 74,360 94,364
C 113,367 133,367 153,365
C 207,359 261,338 306,306
Z
'
transform='translate(5703,1056) scale(1,-1)'
style='fill:#000000;fill-rule:nonzero;stroke:#000000;stroke-width:5'
clip-path='url(#-595843067)'
/>
<!-- t -->
<clipPath id='1808341374'>
<rect x='-6' y='-306' width='208' height='962'/>
</clipPath>
<path
d='
M 0,606
L 6,606
L 6,183
C 6,160 6,137 10,115
C 14,92 23,71 36,53
C 49,34 68,20 89,11
C 110,3 133,1 156,6
L 156,0
C 133,-5 108,-3 86,5
C 64,13 45,29 31,48
C 17,67 9,89 4,112
C 0,135 0,159 0,183
L 0,606
Z
M 0,360
L 0,366
L 156,366
L 156,360
L 0,360
Z
'
transform='translate(6049,1056) scale(1,-1)'
style='fill:#000000;fill-rule:nonzero;stroke:#000000;stroke-width:5'
clip-path='url(#1808341374)'
/>
<!-- u -->
<clipPath id='-1050136045'>
<rect x='-6' y='-306' width='358' height='962'/>
</clipPath>
<path
d='
M 0,366
L 6,366
L 6,183
C 6,161 6,139 10,117
C 15,96 24,76 37,58
C 50,41 68,27 88,19
C 108,10 130,6 152,6
C 173,5 195,9 215,18
C 235,27 253,41 267,58
C 280,75 289,96 294,117
C 298,139 299,161 299,183
L 299,366
L 306,366
L 306,183
C 306,160 305,137 300,115
C 296,93 286,71 272,53
C 258,36 240,22 219,13
C 198,4 175,0 153,0
C 130,0 107,4 86,13
C 65,22 47,36 33,53
C 19,71 9,93 5,115
C 0,137 0,160 0,183
L 0,366
Z
M 299,366
L 306,366
L 306,0
L 299,0
L 299,366
Z
'
transform='translate(6245,1056) scale(1,-1)'
style='fill:#000000;fill-rule:nonzero;stroke:#000000;stroke-width:5'
clip-path='url(#-1050136045)'
/>
<!-- v -->
<clipPath id='-891711359'>
<rect x='-6' y='-306' width='358' height='962'/>
</clipPath>
<path
d='
M 0,366
L 6,366
L 153,10
L 299,366
L 306,366
L 156,0
L 149,0
L 0,366
Z
'
transform='translate(6591,1056) scale(1,-1)'
style='fill:#000000;fill-rule:nonzero;stroke:#000000;stroke-width:5'
clip-path='url(#-891711359)'
/>
<!-- w -->
<clipPath id='-1918373706'>
<rect x='-6' y='-306' width='508' height='962'/>
</clipPath>
<path
d='
M 0,366
L 6,366
L 115,13
L 224,366
L 231,366
L 340,13
L 449,366
L 456,366
L 343,0
L 336,0
L 227,352
L 118,0
L 111,0
L 0,366
Z
'
transform='translate(6937,1056) scale(1,-1)'
style='fill:#000000;fill-rule:nonzero;stroke:#000000;stroke-width:5'
clip-path='url(#-1918373706)'
/>
<!-- x -->
<clipPath id='-2094030213'>
<rect x='-6' y='-306' width='358' height='962'/>
</clipPath>
<path
d='
M 0,366
L 6,366
L 306,0
L 299,0
L 0,366
Z
M 299,366
L 306,366
L 6,0
L 0,0
L 299,366
Z
'
transform='translate(7433,1056) scale(1,-1)'
style='fill:#000000;fill-rule:nonzero;stroke:#000000;stroke-width:5'
clip-path='url(#-2094030213)'
/>
<!-- y -->
<clipPath id='1982360225'>
<rect x='-6' y='-306' width='358' height='962'/>
</clipPath>
<path
d='
M 0,366
L 6,366
L 6,183
C 6,161 6,139 10,117
C 15,96 24,76 37,58
C 50,41 68,27 88,19
C 108,10 130,6 152,6
C 173,5 195,9 215,18
C 235,27 253,41 267,58
C 280,75 289,96 294,117
C 298,139 299,161 299,183
L 299,366
L 306,366
L 306,183
C 306,160 305,137 300,115
C 296,93 286,71 272,53
C 258,36 240,22 219,13
C 198,4 175,0 153,0
C 130,0 107,4 86,13
C 65,22 47,36 33,53
C 19,71 9,93 5,115
C 0,137 0,160 0,183
L 0,366
Z
M 299,366
L 306,366
L 306,3
C 305,-58 305,-121 282,-178
C 271,-207 254,-234 232,-255
C 210,-276 183,-292 153,-299
C 124,-304 93,-301 66,-290
C 39,-278 15,-258 0,-234
L 6,-234
C 21,-257 43,-275 69,-286
C 95,-297 124,-299 152,-294
C 181,-287 208,-271 229,-250
C 250,-229 266,-203 277,-175
C 298,-119 298,-57 299,2
L 299,366
Z
'
transform='translate(7779,1056) scale(1,-1)'
style='fill:#000000;fill-rule:nonzero;stroke:#000000;stroke-width:5'
clip-path='url(#1982360225)'
/>
<!-- z -->
<clipPath id='1152895204'>
<rect x='-6' y='-306' width='358' height='962'/>
</clipPath>
<path
d='
M 0,360
L 0,366
L 306,366
L 306,366
L 9,6
L 306,6
L 306,0
L 0,0
L 0,0
L 296,360
L 0,360
Z
'
transform='translate(8125,1056) scale(1,-1)'
style='fill:#000000;fill-rule:nonzero;stroke:#000000;stroke-width:5'
clip-path='url(#1152895204)'
/>
<!-- -->
<clipPath id='0'>
<rect x='-6' y='-306' width='202' height='962'/>
</clipPath>
<path
d='
'
transform='translate(8471,1056) scale(1,-1)'
style='fill:#000000;fill-rule:nonzero;stroke:#000000;stroke-width:5'
clip-path='url(#0)'
/>
<!-- 0 -->
<clipPath id='-1538040776'>
<rect x='-6' y='-306' width='358' height='962'/>
</clipPath>
<path
d='
M 0,302
C 0,365 -3,430 16,490
C 26,520 43,548 66,569
C 90,591 121,604 153,605
C 184,604 215,591 239,569
C 262,548 279,520 289,490
C 309,430 306,365 306,302
C 305,238 309,173 289,114
C 278,84 262,56 238,34
C 215,13 184,0 153,0
C 121,0 90,13 67,34
C 43,56 27,84 16,114
C -3,173 0,238 0,302
Z
M 152,5
C 183,4 213,18 236,39
C 259,60 274,88 284,118
C 303,177 299,240 299,303
C 298,364 303,428 284,487
C 274,516 258,544 235,565
C 213,586 182,600 152,600
C 121,599 91,586 68,565
C 45,544 30,516 20,486
C 1,428 6,364 6,303
C 5,241 1,177 20,118
C 29,89 45,61 68,40
C 90,18 121,5 152,5
Z
M 299,606
L 306,606
L 6,0
L 0,0
L 299,606
Z
'
transform='translate(8667,1056) scale(1,-1)'
style='fill:#000000;fill-rule:nonzero;stroke:#000000;stroke-width:5'
clip-path='url(#-1538040776)'
/>
<!-- 1 -->
<clipPath id='1390108190'>
<rect x='-6' y='-306' width='58' height='962'/>
</clipPath>
<path
d='
M 0,606
L 6,606
L 6,0
L 0,0
L 0,606
Z
'
transform='translate(9013,1056) scale(1,-1)'
style='fill:#000000;fill-rule:nonzero;stroke:#000000;stroke-width:5'
clip-path='url(#1390108190)'
/>
<!-- 2 -->
<clipPath id='1360014074'>
<rect x='-6' y='-306' width='358' height='962'/>
</clipPath>
<path
d='
M 6,540
L 0,540
C 17,563 41,581 67,592
C 94,604 124,608 153,605
C 191,600 227,581 254,554
C 281,527 299,491 306,453
C 315,395 298,334 268,284
C 238,233 196,191 155,150
L 10,6
L 306,6
L 306,0
L 0,0
L 0,6
L 150,155
C 190,195 232,237 261,286
C 291,336 308,395 299,452
C 293,488 275,523 249,550
C 223,577 188,595 152,600
C 124,603 96,599 71,589
C 45,578 22,561 6,540
Z
'
transform='translate(9059,1056) scale(1,-1)'
style='fill:#000000;fill-rule:nonzero;stroke:#000000;stroke-width:5'
clip-path='url(#1360014074)'
/>
<!-- 3 -->
<clipPath id='1234197994'>
<rect x='-6' y='-306' width='358' height='962'/>
</clipPath>
<path
d='
M 6,540
L 0,540
C 17,563 41,581 67,592
C 94,604 124,608 153,605