1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
|
|%
++ bac
"<g transform='@TR'><path d='M0 0C0 70.6925 57.3075 128 128 128V0H0Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><line x1='-0.0029152' x2='127.983' y2='127.986' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/><circle cx='64' cy='64' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='64' cy='64' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/><circle cx='16' cy='112' r='11.5' fill='@BG' stroke='@BG' stroke-width='@SW'/><circle cx='16' cy='112' r='9' fill='@FG' stroke='@FG' stroke-width='@SW'/></g>",
++ bal
"<g transform='@TR'><path d='M0.0541 0C70.7217 0.0292317 128 57.3256 128 128C57.3177 128 0.0164917 70.7089 7.62806e-06 0.0305091C7.62851e-06 0.0203397 -4.44317e-10 0.01017 0 0H0.0541Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><circle cx='32' cy='32' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='32' cy='32' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/><line x1='0.5' y1='-0.5' x2='181.5' y2='-0.5' transform='matrix(-0.707107 0.707107 0.707107 0.707107 128.71 0)' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/><line x1='128' y1='32.0072' x2='32.7071' y2='127.3' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/><line x1='128' y1='64.0072' x2='64.7071' y2='127.3' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/><line x1='128' y1='96.0072' x2='96.7071' y2='127.3' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/></g>",
++ ban
"<g transform='@TR'><path d='M0 0C0 70.6925 57.3075 128 128 128V0H0Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M128 0C128 70.6924 70.6924 128 -1.52588e-05 128' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ bar
"<g transform='@TR'><circle cx='64' cy='64' r='64' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M-0.00292969 0L127.997 128' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/><circle cx='64' cy='64' r='16' stroke='@BG' fill='none' stroke-width='@SW'/><circle cx='32' cy='32' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='32' cy='32' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/></g>",
++ bat
"<g transform='@TR'><path d='M0 0C0 70.6925 57.3075 128 128 128V0H0Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M128 0C128 35.3462 99.3462 64 64 64C28.6538 64 0 35.3462 0 0' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ bec
"<g transform='@TR'><path d='M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M-0.00280762 0L127.997 128' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/><path fill-rule='evenodd' clip-rule='evenodd' d='M80 64C80 72.8366 72.8366 80 64 80C55.1634 80 48 72.8366 48 64C48 55.1634 55.1634 48 64 48C72.8366 48 80 55.1634 80 64ZM64 72C68.4183 72 72 68.4183 72 64C72 59.5817 68.4183 56 64 56C59.5817 56 56 59.5817 56 64C56 68.4183 59.5817 72 64 72Z' fill='@BG'/></g>",
++ bel
"<g transform='@TR'><path d='M0 127.946C0.0292286 57.2783 57.3256 3.08928e-06 128 0C128 70.6823 70.7089 127.984 0.0305092 128C0.0203397 128 0.01017 128 2.36469e-09 128L0 127.946Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><circle cx='64' cy='64' r='32' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ ben
"<g transform='@TR'><rect width='128' height='128' fill='@FG' stroke='@BG' stroke-width='@SW'/><circle cx='64' cy='64' r='8' stroke='@BG' fill='none' stroke-width='@SW'/><circle cx='32' cy='64' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='32' cy='64' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/></g>",
++ bep
"<g transform='@TR'><path d='M128 0C57.3075 8.42999e-07 -8.42999e-07 57.3075 0 128H128V0Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M128 64C92.6538 64 64 92.6538 64 128' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ ber
"<g transform='@TR'><path d='M64 128H0L5.59506e-06 0L64 5.59506e-06C99.3462 8.68512e-06 128 28.6538 128 64C128 99.3462 99.3462 128 64 128Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M96 0L96 128' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ bes
"<g transform='@TR'><path d='M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M64 128C64 92.6538 35.3462 64 0 64' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M-0.00280762 0L127.997 128' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/></g>",
++ bet
"<g transform='@TR'><circle cx='64' cy='64' r='64' fill='@FG' stroke='@BG' stroke-width='@SW'/><line x1='16.0036' y1='15.9965' x2='48.0036' y2='47.9965' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ bex
"<g transform='@TR'><path d='M64 128H0L5.59506e-06 0L64 5.59506e-06C99.3462 8.68512e-06 128 28.6538 128 64C128 99.3462 99.3462 128 64 128Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><line x1='16.0036' y1='15.9965' x2='48.0036' y2='47.9965' stroke='@BG' fill='none' stroke-width='@SW'/><path fill-rule='evenodd' clip-rule='evenodd' d='M80 64C80 72.8366 72.8366 80 64 80C55.1634 80 48 72.8366 48 64C48 55.1634 55.1634 48 64 48C72.8366 48 80 55.1634 80 64ZM64 72C68.4183 72 72 68.4183 72 64C72 59.5817 68.4183 56 64 56C59.5817 56 56 59.5817 56 64C56 68.4183 59.5817 72 64 72Z' fill='@BG'/></g>",
++ bic
"<g transform='@TR'><path d='M0 0C0 70.6925 57.3075 128 128 128V0H0Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M128 96C74.9807 96 32 53.0193 32 -4.19629e-06' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ bid
"<g transform='@TR'><path d='M0 0C0 70.6925 57.3075 128 128 128V0H0Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M32 0C32 70.6925 74.9807 128 128 128' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M128 64L0 64' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ bil
"<g transform='@TR'><path d='M64 0H128V128H64C28.6538 128 0 99.3462 0 64C0 28.6538 28.6538 0 64 0Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><line x1='80.0035' y1='79.9965' x2='112.004' y2='111.997' stroke='@BG' fill='none' stroke-width='@SW'/><path fill-rule='evenodd' clip-rule='evenodd' d='M80 64C80 72.8366 72.8366 80 64 80C55.1634 80 48 72.8366 48 64C48 55.1634 55.1634 48 64 48C72.8366 48 80 55.1634 80 64ZM64 72C68.4183 72 72 68.4183 72 64C72 59.5817 68.4183 56 64 56C59.5817 56 56 59.5817 56 64C56 68.4183 59.5817 72 64 72Z' fill='@BG'/></g>",
++ bin
"<g transform='@TR'><rect width='128' height='128' fill='@FG' stroke='@BG' stroke-width='@SW'/></g>",
++ bis
"<g transform='@TR'><path d='M0 0C0 70.6925 57.3075 128 128 128V0H0Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><line x1='128' y1='64' x2='-8.87604e-09' y2='64' stroke='@BG' fill='none' stroke-width='@SW'/><line x1='128' y1='96' x2='-8.87604e-09' y2='96' stroke='@BG' fill='none' stroke-width='@SW'/><line x1='128' y1='32' x2='-8.87604e-09' y2='32' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ bit
"<g transform='@TR'><path d='M0.0541 0C70.7217 0.0292317 128 57.3256 128 128C57.3177 128 0.0164917 70.7089 7.62806e-06 0.0305091C7.62851e-06 0.0203397 -4.44317e-10 0.01017 0 0H0.0541Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M128 0L0 128' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/><circle cx='64' cy='64' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='64' cy='64' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/></g>",
++ bol
"<g transform='@TR'><circle cx='64' cy='64' r='64' fill='@FG' stroke='@BG' stroke-width='@SW'/><circle cx='64' cy='64' r='48' stroke='@BG' fill='none' stroke-width='@SW'/><line x1='128' y1='64' x2='-4.37114e-08' y2='64' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ bon
"<g transform='@TR'><path d='M128 0C57.3075 8.42999e-07 -8.42999e-07 57.3075 0 128H128V0Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M128 128C92.6538 128 64 99.3462 64 64C64 28.6538 92.6538 4.215e-07 128 0' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ bor
"<g transform='@TR'><path d='M64 0H128V128H64C28.6538 128 0 99.3462 0 64C0 28.6538 28.6538 0 64 0Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><line x1='-0.0029152' x2='127.983' y2='127.986' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/><path d='M0 128C4.63574e-06 92.6489 14.3309 60.6449 37.5 37.4807' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M32 128C32 101.492 42.7436 77.4939 60.1138 60.1217' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M64 128C64 110.328 71.1626 94.3287 82.7432 82.7471' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M95.6284 128C95.6284 119.164 99.2097 111.164 105 105.374' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ bos
"<g transform='@TR'><path d='M0 0C0 70.6925 57.3075 128 128 128V0H0Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><line x1='-0.0029152' x2='127.983' y2='127.986' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/><circle cx='32' cy='32' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='32' cy='32' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/></g>",
++ bot
"<g transform='@TR'><path d='M64 0H128V128H64C28.6538 128 0 99.3462 0 64C0 28.6538 28.6538 0 64 0Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><line x1='32' y1='2.18557e-08' x2='32' y2='128' stroke='@BG' fill='none' stroke-width='@SW'/><circle cx='32' cy='96' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='32' cy='96' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/><circle cx='32' cy='32' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='32' cy='32' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/></g>",
++ bud
"<g transform='@TR'><path d='M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M16 64C16 90.5097 37.4903 112 64 112' stroke='@BG' fill='none' stroke-width='@SW'/><circle cx='16' cy='64' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='16' cy='64' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/></g>",
++ bur
"<g transform='@TR'><path d='M5.59506e-06 128C70.6925 128 128 70.6925 128 0L0 5.59506e-06L5.59506e-06 128Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M7.37542e-06 -3.56072e-06C1.19529e-06 70.6924 57.3075 128 128 128' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M128 0L0 128' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/></g>",
++ bus
"<g transform='@TR'><path d='M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M32 128C32 110.327 17.6731 96 0 96' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M-0.00292969 0L127.997 128' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/></g>",
++ byl
"<g transform='@TR'><path d='M5.59506e-06 128C70.6925 128 128 70.6925 128 0L0 5.59506e-06L5.59506e-06 128Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><circle cx='16' cy='112' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='16' cy='112' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/><path d='M-0.00280762 0L127.997 128' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/><path d='M22.1288 22.6299C16.0075 28.7511 8.0234 31.874 0.00134547 31.9986M44.7562 45.2573C32.3866 57.6269 16.2133 63.8747 0.00134277 64.0005M67.3836 67.8847C48.7656 86.5027 24.403 95.8749 0.00134412 96.0012' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ byn
"<g transform='@TR'><path d='M5.59506e-06 128C70.6925 128 128 70.6925 128 0L0 5.59506e-06L5.59506e-06 128Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M128 0C128 35.3511 113.669 67.3551 90.5 90.5193' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M96 0C96 26.5077 85.2564 50.5061 67.8862 67.8783' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M64 0C64 17.6721 56.8374 33.6713 45.2568 45.2529' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M32.3716 0C32.3716 8.83603 28.7903 16.8356 23 22.6264' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ byr
"<g transform='@TR'><path d='M0 127.946C0.0292286 57.2783 57.3256 3.08928e-06 128 0C128 70.6823 70.7089 127.984 0.0305092 128C0.0203397 128 0.01017 128 2.36469e-09 128L0 127.946Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M-0.00280762 0L127.997 128' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/><circle cx='48' cy='80' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='48' cy='80' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/></g>",
++ byt
"<g transform='@TR'><path d='M64 128H0L5.59506e-06 0L64 5.59506e-06C99.3462 8.68512e-06 128 28.6538 128 64C128 99.3462 99.3462 128 64 128Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><circle cx='64' cy='64' r='48' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M128 64L0 64' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M32 0L32 128' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ dab
"<g transform='@TR'><path d='M0 0C0 70.6925 57.3075 128 128 128V0H0Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><line y1='-0.5' x2='45.2548' y2='-0.5' transform='matrix(0.707107 -0.707107 -0.707107 -0.707107 79.65 47.6499)' stroke='@BG' fill='none' stroke-width='@SW'/><circle cx='16' cy='112' r='11.5' fill='@BG' stroke='@BG' stroke-width='@SW'/><circle cx='16' cy='112' r='9' fill='@FG' stroke='@FG' stroke-width='@SW'/></g>",
++ dac
"<g transform='@TR'><path d='M0 0C0 70.6925 57.3075 128 128 128V0H0Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M128 0L0 128' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/><path d='M64 0L64 128' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M128 64L-5.96046e-08 64' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ dal
"<g transform='@TR'><path d='M0.0541 0C70.7217 0.0292317 128 57.3256 128 128C57.3177 128 0.0164917 70.7089 7.62806e-06 0.0305091C7.62851e-06 0.0203397 -4.44317e-10 0.01017 0 0H0.0541Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><line x1='-0.0029152' x2='63.29' y2='63.2929' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/><line x1='0.5' y1='-0.5' x2='181.5' y2='-0.5' transform='matrix(-0.707107 0.707107 0.707107 0.707107 128.71 0)' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/><line x1='128' y1='32.0072' x2='32.7071' y2='127.3' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/><line x1='128' y1='64.0072' x2='64.7071' y2='127.3' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/><line x1='128' y1='96.0072' x2='96.7071' y2='127.3' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/></g>",
++ dan
"<g transform='@TR'><path d='M64 0H128V128H64C28.6538 128 0 99.3462 0 64C0 28.6538 28.6538 0 64 0Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><line x1='64' y1='2.18557e-08' x2='64' y2='128' stroke='@BG' fill='none' stroke-width='@SW'/><line x1='96' y1='2.18557e-08' x2='96' y2='128' stroke='@BG' fill='none' stroke-width='@SW'/><circle cx='64' cy='64' r='16' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ dap
"<g transform='@TR'><path d='M0 0C0 70.6925 57.3075 128 128 128V0H0Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><line x1='80.0035' y1='79.9964' x2='112.004' y2='111.996' stroke='@BG' fill='none' stroke-width='@SW'/><circle cx='64' cy='64' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='64' cy='64' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/></g>",
++ dar
"<g transform='@TR'><circle cx='64' cy='64' r='64' fill='@FG' stroke='@BG' stroke-width='@SW'/><circle cx='32' cy='96' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='32' cy='96' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/><path d='M86.6274 86.6274C99.1242 74.1307 99.1242 53.8694 86.6274 41.3726C74.1306 28.8758 53.8694 28.8758 41.3726 41.3726' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M75.3137 75.3137C81.5621 69.0653 81.5621 58.9347 75.3137 52.6863C69.0653 46.4379 58.9347 46.4379 52.6863 52.6863' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M97.9411 97.9411C116.686 79.1959 116.686 48.804 97.9411 30.0589C79.196 11.3137 48.804 11.3137 30.0589 30.0589' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M-0.00292969 0L127.997 128' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/></g>",
++ das
"<g transform='@TR'><rect width='128' height='128' fill='@FG' stroke='@BG' stroke-width='@SW'/><line x1='64' y1='2.18557e-08' x2='64' y2='128' stroke='@BG' fill='none' stroke-width='@SW'/><path fill-rule='evenodd' clip-rule='evenodd' d='M80 64C80 72.8366 72.8366 80 64 80C55.1634 80 48 72.8366 48 64C48 55.1634 55.1634 48 64 48C72.8366 48 80 55.1634 80 64ZM64 72C68.4183 72 72 68.4183 72 64C72 59.5817 68.4183 56 64 56C59.5817 56 56 59.5817 56 64C56 68.4183 59.5817 72 64 72Z' fill='@BG'/></g>",
++ dat
"<g transform='@TR'><path d='M0 0C0 70.6925 57.3075 128 128 128V0H0Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M128 128C92.6538 128 64 99.3462 64 64C64 28.6538 92.6538 -1.54503e-06 128 0' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ dav
"<g transform='@TR'><path d='M64 0H128V128H64C28.6538 128 0 99.3462 0 64C0 28.6538 28.6538 0 64 0Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M128 64L0 64' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M96 64C96 46.3269 81.6731 32 64 32' stroke='@BG' fill='none' stroke-width='@SW'/><circle cx='96' cy='64' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='96' cy='64' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/></g>",
++ deb
"<g transform='@TR'><rect width='128' height='128' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M64 -6.35781e-07C64 35.3462 35.3462 64 0 64' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ dec
"<g transform='@TR'><path d='M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><circle cx='64' cy='64' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='64' cy='64' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/><circle cx='112' cy='16' r='11.5' fill='@BG' stroke='@BG' stroke-width='@SW'/><circle cx='112' cy='16' r='9' fill='@FG' stroke='@FG' stroke-width='@SW'/></g>",
++ def
"<g transform='@TR'><path d='M0.0541 0C70.7217 0.0292317 128 57.3256 128 128C57.3177 128 0.0164917 70.7089 7.62806e-06 0.0305091C7.62851e-06 0.0203397 -4.44317e-10 0.01017 0 0H0.0541Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M0 128L128 0' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/><path d='M0 94L94 0' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/><path d='M0 64L64 0' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/><path d='M0 32L32 0' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/><circle cx='16' cy='112' r='11.5' fill='@BG' stroke='@BG' stroke-width='@SW'/><circle cx='16' cy='112' r='9' fill='@FG' stroke='@FG' stroke-width='@SW'/></g>",
++ deg
"<g transform='@TR'><rect width='128' height='128' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M64 128C64 92.6538 35.3462 64 0 64' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ del
"<g transform='@TR'><path d='M0 127.946C0.0292286 57.2783 57.3256 3.08928e-06 128 0C128 70.6823 70.7089 127.984 0.0305092 128C0.0203397 128 0.01017 128 2.36469e-09 128L0 127.946Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><circle cx='32' cy='96' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='32' cy='96' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/></g>",
++ dem
"<g transform='@TR'><circle cx='64' cy='64' r='64' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M-0.00292969 0L127.997 128' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/><path d='M64 -6.35781e-07C64 35.3462 35.3462 64 0 64' stroke='@BG' fill='none' stroke-width='@SW'/><circle cx='32' cy='32' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='32' cy='32' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/></g>",
++ den
"<g transform='@TR'><rect width='128' height='128' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M1.52575e-06 96C53.0193 96 96 53.0193 96 0' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M-0.00280762 0L127.997 128' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/></g>",
++ dep
"<g transform='@TR'><path d='M128 0C57.3075 8.42999e-07 -8.42999e-07 57.3075 0 128H128V0Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M32 128C32 101.492 42.7436 77.4939 60.1138 60.1216' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M64 128C64 110.328 71.1626 94.3287 82.7432 82.7471' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M95.6284 128C95.6284 119.164 99.2097 111.164 105 105.374' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ der
"<g transform='@TR'><path d='M0 64L5.59506e-06 0L128 1.11901e-05V64C128 99.3462 99.3462 128 64 128C28.6538 128 -4.6351e-06 99.3462 0 64Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M96 128L96 0' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ des
"<g transform='@TR'><path d='M128 0C57.3075 8.42999e-07 -8.42999e-07 57.3075 0 128H128V0Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M96 0L96 128' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ det
"<g transform='@TR'><circle cx='64' cy='64' r='64' fill='@FG' stroke='@BG' stroke-width='@SW'/><line x1='15.9964' y1='111.996' x2='47.9964' y2='79.9964' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ dev
"<g transform='@TR'><path d='M64 128H0L5.59506e-06 0L64 5.59506e-06C99.3462 8.68512e-06 128 28.6538 128 64C128 99.3462 99.3462 128 64 128Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><line x1='96.5' y1='3.07317e-08' x2='96.5' y2='128' stroke='@BG' fill='none' stroke-width='@SW'/><line x1='32.5' y1='3.07317e-08' x2='32.5' y2='128' stroke='@BG' fill='none' stroke-width='@SW'/><circle cx='64' cy='64' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='64' cy='64' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/></g>",
++ dex
"<g transform='@TR'><path d='M64 128H0L5.59506e-06 0L64 5.59506e-06C99.3462 8.68512e-06 128 28.6538 128 64C128 99.3462 99.3462 128 64 128Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><line x1='64' y1='2.18557e-08' x2='64' y2='128' stroke='@BG' fill='none' stroke-width='@SW'/><path fill-rule='evenodd' clip-rule='evenodd' d='M80 64C80 72.8366 72.8366 80 64 80C55.1634 80 48 72.8366 48 64C48 55.1634 55.1634 48 64 48C72.8366 48 80 55.1634 80 64ZM64 72C68.4183 72 72 68.4183 72 64C72 59.5817 68.4183 56 64 56C59.5817 56 56 59.5817 56 64C56 68.4183 59.5817 72 64 72Z' fill='@BG'/></g>",
++ dib
"<g transform='@TR'><circle cx='64' cy='64' r='64' fill='@FG' stroke='@BG' stroke-width='@SW'/><line x1='8.74228e-08' y1='64' x2='128' y2='64' stroke='@BG' fill='none' stroke-width='@SW'/><line x1='5.25874e-08' y1='32' x2='128' y2='32' stroke='@BG' fill='none' stroke-width='@SW'/><circle cx='64' cy='32' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='64' cy='32' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/></g>",
++ dif
"<g transform='@TR'><path d='M0 0C0 70.6925 57.3075 128 128 128V0H0Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M60.1244 67.3837C41.5063 48.7657 32.1342 24.4031 32.0079 0.00145601M82.7518 44.7563C70.3822 32.3867 64.1344 16.2134 64.0086 0.00145196M105.379 22.1289C99.258 16.0077 96.1351 8.02351 96.0105 0.00145196' stroke='@BG' fill='none' stroke-width='@SW'/><line x1='0.5' y1='-0.5' x2='181.5' y2='-0.5' transform='matrix(-0.707107 0.707107 0.707107 0.707107 128.71 0)' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/><circle cx='16' cy='16' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='16' cy='16' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/><circle cx='16' cy='112' r='11.5' fill='@BG' stroke='@BG' stroke-width='@SW'/><circle cx='16' cy='112' r='9' fill='@FG' stroke='@FG' stroke-width='@SW'/></g>",
++ dig
"<g transform='@TR'><path d='M64 0H128V128H64C28.6538 128 0 99.3462 0 64C0 28.6538 28.6538 0 64 0Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><line x1='64.5' y1='-0.5' x2='64.5' y2='127.5' stroke='@BG' fill='none' stroke-width='@SW'/><line x1='16.0035' y1='15.9965' x2='48.0035' y2='47.9965' stroke='@BG' fill='none' stroke-width='@SW'/><circle cx='64' cy='64' r='16' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ dil
"<g transform='@TR'><path d='M64 0H128V128H64C28.6538 128 0 99.3462 0 64C0 28.6538 28.6538 0 64 0Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><line x1='80.0036' y1='79.9964' x2='112.004' y2='111.996' stroke='@BG' fill='none' stroke-width='@SW'/><line x1='0.5' y1='-0.5' x2='181.5' y2='-0.5' transform='matrix(-0.707107 0.707107 0.707107 0.707107 128.71 0)' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/></g>",
++ din
"<g transform='@TR'><rect width='128' height='128' fill='@FG' stroke='@BG' stroke-width='@SW'/><line x1='96' y1='2.18557e-08' x2='96' y2='128' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ dir
"<g transform='@TR'><path d='M0 0C0 70.6925 57.3075 128 128 128V0H0Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M96 64C96 81.6731 81.6731 96 64 96' stroke='@BG' fill='none' stroke-width='@SW'/><line x1='16.0035' y1='15.9965' x2='48.0035' y2='47.9965' stroke='@BG' fill='none' stroke-width='@SW'/><circle cx='64' cy='64' r='16' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ dis
"<g transform='@TR'><path d='M128 0C57.3075 8.42999e-07 -8.42999e-07 57.3075 0 128H128V0Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M-0.0029152 0L127.997 128' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/><circle cx='96' cy='32' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='96' cy='32' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/><circle cx='32' cy='96' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='32' cy='96' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/></g>",
++ div
"<g transform='@TR'><rect width='128' height='128' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M64 0L64 128' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M-4.19629e-06 96C70.6924 96 128 53.0193 128 5.59506e-06' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M-2.79753e-06 64C70.6924 64 128 35.3462 128 5.59506e-06' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ doc
"<g transform='@TR'><path d='M0 127.946C0.0292286 57.2783 57.3256 3.08928e-06 128 0C128 70.6823 70.7089 127.984 0.0305092 128C0.0203397 128 0.01017 128 2.36469e-09 128L0 127.946Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M127.997 0L-0.00291443 128' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/><circle cx='64' cy='64' r='16' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M86.6274 41.3726C74.1306 28.8758 53.8694 28.8758 41.3726 41.3726C28.8758 53.8694 28.8758 74.1306 41.3726 86.6274' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ dol
"<g transform='@TR'><circle cx='64' cy='64' r='64' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M128 64L0 64' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M-4.19629e-06 16C26.5097 16 48 37.4903 48 64C48 90.5097 26.5097 112 0 112' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ don
"<g transform='@TR'><path d='M128 0C57.3075 8.42999e-07 -8.42999e-07 57.3075 0 128H128V0Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M-3.8147e-06 128C-7.24632e-07 92.6538 28.6538 64 64 64C99.3462 64 128 92.6538 128 128' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ dop
"<g transform='@TR'><circle cx='64' cy='64' r='64' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M64 112C90.5097 112 112 90.5097 112 64C112 37.4903 90.5097 16 64 16' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M128 64L0 64' stroke='@BG' fill='none' stroke-width='@SW'/><circle cx='64' cy='64' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='64' cy='64' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/></g>",
++ dor
"<g transform='@TR'><path d='M64 0H128V128H64C28.6538 128 0 99.3462 0 64C0 28.6538 28.6538 0 64 0Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><line y1='63.5' x2='128' y2='63.5' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ dos
"<g transform='@TR'><path d='M0 0C0 70.6925 57.3075 128 128 128V0H0Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><line x1='-0.0029152' x2='127.983' y2='127.986' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/><path d='M86.6274 86.6274C99.1242 74.1306 99.1242 53.8693 86.6274 41.3725C74.1306 28.8758 53.8694 28.8758 41.3726 41.3725' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ dot
"<g transform='@TR'><path d='M64 0H128V128H64C28.6538 128 0 99.3462 0 64C0 28.6538 28.6538 0 64 0Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><circle cx='64' cy='64' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='64' cy='64' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/></g>",
++ dov
"<g transform='@TR'><rect width='128' height='128' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M128 0L0 128' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/><path d='M-0.701724 31.9914C25.6281 31.9914 49.4822 42.5913 66.8261 59.7565M-0.701723 63.9914C16.7916 63.9914 32.6456 71.0098 44.1982 82.3844M-0.701722 95.9914C7.955 95.9914 15.8089 99.4288 21.5694 105.013' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M0 0C35.3511 0 67.3551 14.3309 90.5193 37.5' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ doz
"<g transform='@TR'><circle cx='64' cy='64' r='64' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M128 128L0 0' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/><path d='M30.0589 30.0589C48.804 11.3137 79.196 11.3137 97.9411 30.0589C116.686 48.804 116.686 79.196 97.9411 97.9411' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M52.6863 52.6863C58.9347 46.4379 69.0653 46.4379 75.3137 52.6863C81.5621 58.9347 81.5621 69.0653 75.3137 75.3137' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M41.3726 41.3726C53.8694 28.8758 74.1306 28.8758 86.6274 41.3726C99.1242 53.8694 99.1242 74.1306 86.6274 86.6274' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ duc
"<g transform='@TR'><path d='M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M128 64L0 64' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M128 32L0 32' stroke='@BG' fill='none' stroke-width='@SW'/><circle cx='32' cy='32' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='32' cy='32' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/></g>",
++ dul
"<g transform='@TR'><circle cx='64' cy='64' r='64' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M64 16C90.5097 16 112 37.4903 112 64' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M64 64L64 128' stroke='@BG' fill='none' stroke-width='@SW'/><circle cx='64' cy='64' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='64' cy='64' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/></g>",
++ dun
"<g transform='@TR'><path d='M64 128H0L5.59506e-06 0L64 5.59506e-06C99.3462 8.68512e-06 128 28.6538 128 64C128 99.3462 99.3462 128 64 128Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M112 64C112 37.4903 90.5097 16 64 16' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ dur
"<g transform='@TR'><path d='M0 64L5.59506e-06 0L128 1.11901e-05V64C128 99.3462 99.3462 128 64 128C28.6538 128 -4.6351e-06 99.3462 0 64Z' fill='@FG' stroke='@BG' stroke-width='@SW'/></g>",
++ dus
"<g transform='@TR'><path d='M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M32 -3.05151e-06C32 53.0193 74.9807 96 128 96' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M128 0L0 128' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/></g>",
++ dut
"<g transform='@TR'><rect width='128' height='128' fill='@FG' stroke='@BG' stroke-width='@SW'/><circle cx='96' cy='96' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='96' cy='96' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/></g>",
++ dux
"<g transform='@TR'><path d='M5.59506e-06 128C70.6925 128 128 70.6925 128 0L0 5.59506e-06L5.59506e-06 128Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M-2.79795e-06 -3.55988e-06C70.6924 -4.40288e-06 128 57.3075 128 128' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ dyl
"<g transform='@TR'><path d='M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M2.03434e-06 128C70.6924 128 128 70.6925 128 0' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ dyn
"<g transform='@TR'><path d='M5.59506e-06 128C70.6925 128 128 70.6925 128 0L0 5.59506e-06L5.59506e-06 128Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M128 32L0 32' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ dyr
"<g transform='@TR'><path d='M0 127.946C0.0292286 57.2783 57.3256 3.08928e-06 128 0C128 70.6823 70.7089 127.984 0.0305092 128C0.0203397 128 0.01017 128 2.36469e-09 128L0 127.946Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M-0.00292969 0L127.997 128' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/><circle cx='96' cy='32' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='96' cy='32' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/><circle cx='32' cy='96' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='32' cy='96' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/></g>",
++ dys
"<g transform='@TR'><path d='M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M-3.8147e-06 1.11901e-05C-7.24633e-07 35.3462 28.6538 64 64 64C99.3462 64 128 35.3462 128 0' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ dyt
"<g transform='@TR'><path d='M64 128H0L5.59506e-06 0L64 5.59506e-06C99.3462 8.68512e-06 128 28.6538 128 64C128 99.3462 99.3462 128 64 128Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><circle cx='64' cy='64' r='32' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M128 64L0 64' stroke='@BG' fill='none' stroke-width='@SW'/><circle cx='32' cy='64' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='32' cy='64' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/></g>",
++ fab
"<g transform='@TR'><path d='M0 0C0 70.6925 57.3075 128 128 128V0H0Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M128 0L0 128' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/><circle cx='64' cy='64' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='64' cy='64' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/><circle cx='16' cy='112' r='11.5' fill='@BG' stroke='@BG' stroke-width='@SW'/><circle cx='16' cy='112' r='9' fill='@FG' stroke='@FG' stroke-width='@SW'/></g>",
++ fad
"<g transform='@TR'><path d='M5.59506e-06 128C70.6925 128 128 70.6925 128 0L0 5.59506e-06L5.59506e-06 128Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><circle cx='96' cy='32' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='96' cy='32' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/><circle cx='32' cy='96' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='32' cy='96' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/></g>",
++ fal
"<g transform='@TR'><path d='M0 127.946C0.0292286 57.2783 57.3256 3.08928e-06 128 0C128 70.6823 70.7089 127.984 0.0305092 128C0.0203397 128 0.01017 128 2.36469e-09 128L0 127.946Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M0 128L128 0' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/><path d='M0 0C35.3511 0 67.3551 14.3309 90.5193 37.5' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M0 32C26.5077 32 50.5061 42.7436 67.8783 60.1138' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M0 64C17.6721 64 33.6713 71.1626 45.2529 82.7432' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M0 95.6284C8.83603 95.6284 16.8356 99.2097 22.6264 105' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ fam
"<g transform='@TR'><path d='M64 0H128V128H64C28.6538 128 0 99.3462 0 64C0 28.6538 28.6538 0 64 0Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><line x1='128' y1='64' x2='-4.37114e-08' y2='64' stroke='@BG' fill='none' stroke-width='@SW'/><line x1='64' y1='2.18557e-08' x2='64' y2='128' stroke='@BG' fill='none' stroke-width='@SW'/><circle cx='64' cy='64' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='64' cy='64' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/></g>",
++ fan
"<g transform='@TR'><path d='M64 0H128V128H64C28.6538 128 0 99.3462 0 64C0 28.6538 28.6538 0 64 0Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M128 0L0 128' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/><path d='M64 0L64 128' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M-0.00292969 0L127.997 128' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/></g>",
++ fas
"<g transform='@TR'><rect width='128' height='128' fill='@FG' stroke='@BG' stroke-width='@SW'/><circle cx='64' cy='64' r='32' stroke='@BG' fill='none' stroke-width='@SW'/><circle cx='96' cy='64' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='96' cy='64' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/></g>",
++ feb
"<g transform='@TR'><rect width='128' height='128' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M7.37542e-06 -3.56072e-06C1.19529e-06 70.6924 57.3075 128 128 128' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ fed
"<g transform='@TR'><circle cx='64' cy='64' r='64' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M128 32L0 32' stroke='@BG' fill='none' stroke-width='@SW'/><circle cx='64' cy='64' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='64' cy='64' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/></g>",
++ fel
"<g transform='@TR'><path d='M0 127.946C0.0292286 57.2783 57.3256 3.08928e-06 128 0C128 70.6823 70.7089 127.984 0.0305092 128C0.0203397 128 0.01017 128 2.36469e-09 128L0 127.946Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><line y1='-0.5' x2='45.2548' y2='-0.5' transform='matrix(0.707107 -0.707107 -0.707107 -0.707107 79.65 47.6499)' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ fen
"<g transform='@TR'><rect width='128' height='128' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M-0.00280762 0L127.997 128' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/><path d='M0 128C4.63574e-06 92.6489 14.3309 60.6449 37.5 37.4807' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M32 128C32 101.492 42.7436 77.4939 60.1138 60.1217' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M64 128C64 110.328 71.1626 94.3287 82.7432 82.7471' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M95.6284 128C95.6284 119.164 99.2097 111.164 105 105.374' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ fep
"<g transform='@TR'><path d='M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M128 0L0 128' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/></g>",
++ fer
"<g transform='@TR'><path d='M64 128H0L5.59506e-06 0L64 5.59506e-06C99.3462 8.68512e-06 128 28.6538 128 64C128 99.3462 99.3462 128 64 128Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M64 0L64 128' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ fes
"<g transform='@TR'><path d='M128 0C57.3075 8.42999e-07 -8.42999e-07 57.3075 0 128H128V0Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M32 0L32 128' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ fet
"<g transform='@TR'><circle cx='64' cy='64' r='64' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M128 0L0 128' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/></g>",
++ fex
"<g transform='@TR'><path d='M64 128H0L5.59506e-06 0L64 5.59506e-06C99.3462 8.68512e-06 128 28.6538 128 64C128 99.3462 99.3462 128 64 128Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><line y1='-0.5' x2='45.2548' y2='-0.5' transform='matrix(0.707107 -0.707107 -0.707107 -0.707107 79.6499 47.6499)' stroke='@BG' fill='none' stroke-width='@SW'/><path fill-rule='evenodd' clip-rule='evenodd' d='M80 64C80 72.8366 72.8366 80 64 80C55.1634 80 48 72.8366 48 64C48 55.1634 55.1634 48 64 48C72.8366 48 80 55.1634 80 64ZM64 72C68.4183 72 72 68.4183 72 64C72 59.5817 68.4183 56 64 56C59.5817 56 56 59.5817 56 64C56 68.4183 59.5817 72 64 72Z' fill='@BG'/></g>",
++ fid
"<g transform='@TR'><path d='M0 0C0 70.6925 57.3075 128 128 128V0H0Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M-0.00291443 0L127.997 128' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/><circle cx='96' cy='96' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='96' cy='96' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/><circle cx='32' cy='32' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='32' cy='32' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/></g>",
++ fig
"<g transform='@TR'><path d='M64 0H128V128H64C28.6538 128 0 99.3462 0 64C0 28.6538 28.6538 0 64 0Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M64 0L64 128' stroke='@BG' fill='none' stroke-width='@SW'/><circle cx='64' cy='64' r='32' stroke='@BG' fill='none' stroke-width='@SW'/><circle cx='64' cy='64' r='16' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ fil
"<g transform='@TR'><path d='M64 0H128V128H64C28.6538 128 0 99.3462 0 64C0 28.6538 28.6538 0 64 0Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><line x1='128' y1='64' x2='-4.37114e-08' y2='64' stroke='@BG' fill='none' stroke-width='@SW'/><line x1='64' y1='2.18557e-08' x2='64' y2='128' stroke='@BG' fill='none' stroke-width='@SW'/><line x1='32' y1='2.18557e-08' x2='32' y2='128' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ fin
"<g transform='@TR'><rect width='128' height='128' fill='@FG' stroke='@BG' stroke-width='@SW'/><line x1='98' y1='2.18557e-08' x2='98' y2='128' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ fip
"<g transform='@TR'><path d='M64 0H128V128H64C28.6538 128 0 99.3462 0 64C0 28.6538 28.6538 0 64 0Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><circle cx='64' cy='64' r='32' stroke='@BG' fill='none' stroke-width='@SW'/><line x1='-0.0029152' x2='127.983' y2='127.986' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/><circle cx='64' cy='96' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='64' cy='96' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/></g>",
++ fir
"<g transform='@TR'><path d='M0 0C0 70.6925 57.3075 128 128 128V0H0Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><line y1='-0.5' x2='45.2548' y2='-0.5' transform='matrix(0.707107 -0.707107 -0.707107 -0.707107 79.65 47.6499)' stroke='@BG' fill='none' stroke-width='@SW'/><line x1='80.0036' y1='79.9965' x2='112.004' y2='111.997' stroke='@BG' fill='none' stroke-width='@SW'/><line x1='16.0035' y1='15.9965' x2='48.0035' y2='47.9965' stroke='@BG' fill='none' stroke-width='@SW'/><circle cx='64' cy='64' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='64' cy='64' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/></g>",
++ fit
"<g transform='@TR'><path d='M0.0541 0C70.7217 0.0292317 128 57.3256 128 128C57.3177 128 0.0164917 70.7089 7.62806e-06 0.0305091C7.62851e-06 0.0203397 -4.44317e-10 0.01017 0 0H0.0541Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><line x1='0.5' y1='-0.5' x2='181.5' y2='-0.5' transform='matrix(-0.707107 0.707107 0.707107 0.707107 128.71 0)' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/></g>",
++ fod
"<g transform='@TR'><path d='M64 0H128V128H64C28.6538 128 0 99.3462 0 64C0 28.6538 28.6538 0 64 0Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path fill-rule='evenodd' clip-rule='evenodd' d='M80 64C80 72.8366 72.8366 80 64 80C55.1634 80 48 72.8366 48 64C48 55.1634 55.1634 48 64 48C72.8366 48 80 55.1634 80 64ZM64 72C68.4183 72 72 68.4183 72 64C72 59.5817 68.4183 56 64 56C59.5817 56 56 59.5817 56 64C56 68.4183 59.5817 72 64 72Z' fill='@BG'/></g>",
++ fog
"<g transform='@TR'><path d='M128 0C57.3075 8.42999e-07 -8.42999e-07 57.3075 0 128H128V0Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M-0.00292969 0L127.997 128' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/><path d='M86.6274 86.6274C99.1242 74.1306 99.1242 53.8694 86.6274 41.3726C74.1306 28.8758 53.8694 28.8758 41.3726 41.3726' stroke='@BG' fill='none' stroke-width='@SW'/><circle cx='64' cy='64' r='16' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ fol
"<g transform='@TR'><circle cx='64' cy='64' r='64' fill='@FG' stroke='@BG' stroke-width='@SW'/><circle cx='64' cy='64' r='16' stroke='@BG' fill='none' stroke-width='@SW'/><line x1='128' y1='64' x2='-4.37114e-08' y2='64' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ fon
"<g transform='@TR'><path d='M128 0C57.3075 8.42999e-07 -8.42999e-07 57.3075 0 128H128V0Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><line x1='-0.0029152' x2='127.983' y2='127.986' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/></g>",
++ fop
"<g transform='@TR'><circle cx='64' cy='64' r='64' fill='@FG' stroke='@BG' stroke-width='@SW'/><line x1='-0.0029152' x2='127.983' y2='127.986' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/><path d='M16 64C16 90.5097 37.4903 112 64 112' stroke='@BG' fill='none' stroke-width='@SW'/><circle cx='16' cy='64' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='16' cy='64' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/></g>",
++ for
"<g transform='@TR'><path d='M64 0H128V128H64C28.6538 128 0 99.3462 0 64C0 28.6538 28.6538 0 64 0Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><line x1='96' y1='2.18557e-08' x2='96' y2='128' stroke='@BG' fill='none' stroke-width='@SW'/><circle cx='64' cy='64' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='64' cy='64' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/></g>",
++ fos
"<g transform='@TR'><path d='M5.59506e-06 128C70.6925 128 128 70.6925 128 0L0 5.59506e-06L5.59506e-06 128Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><line x1='-0.0029152' x2='127.983' y2='127.986' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/><path d='M96 0C96 53.0193 53.0193 96 0 96' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M64 0C64 35.3462 35.3462 64 0 64' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M32 0C32 17.6731 17.6731 32 0 32' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ fot
"<g transform='@TR'><path d='M64 0H128V128H64C28.6538 128 0 99.3462 0 64C0 28.6538 28.6538 0 64 0Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><line x1='15.9964' y1='111.997' x2='47.9964' y2='79.9965' stroke='@BG' fill='none' stroke-width='@SW'/><circle cx='64' cy='64' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='64' cy='64' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/></g>",
++ ful
"<g transform='@TR'><circle cx='64' cy='64' r='64' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M64 96C81.6731 96 96 81.6731 96 64C96 46.3269 81.6731 32 64 32' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ fun
"<g transform='@TR'><path d='M128 64V128H0L2.79753e-06 64C4.34256e-06 28.6538 28.6538 -1.54503e-06 64 0C99.3462 1.54503e-06 128 28.6538 128 64Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><line x1='15.9964' y1='111.997' x2='47.9964' y2='79.9965' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M-0.00280762 0L127.997 128' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/><circle cx='16' cy='112' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='16' cy='112' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/></g>",
++ fur
"<g transform='@TR'><path d='M5.59506e-06 128C70.6925 128 128 70.6925 128 0L0 5.59506e-06L5.59506e-06 128Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M128 0L0 128' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/><path d='M86.8823 41.6275C74.3855 29.1307 54.1242 29.1307 41.6274 41.6275C29.1307 54.1243 29.1307 74.3855 41.6274 86.8823' stroke='@BG' fill='none' stroke-width='@SW'/><circle cx='64' cy='64' r='16' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ fus
"<g transform='@TR'><path d='M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M128 0L0 128' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/><path d='M32 128C32 110.327 17.6731 96 0 96' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ fyl
"<g transform='@TR'><path d='M5.59506e-06 128C70.6925 128 128 70.6925 128 0L0 5.59506e-06L5.59506e-06 128Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M22.1288 22.6299C16.0075 28.7511 8.0234 31.874 0.00134547 31.9986M44.7562 45.2573C32.3866 57.6269 16.2133 63.8747 0.00134277 64.0005M67.3836 67.8847C48.7656 86.5027 24.403 95.8749 0.00134412 96.0012' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M-0.00280762 0L127.997 128' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/></g>",
++ fyn
"<g transform='@TR'><path d='M5.59506e-06 128C70.6925 128 128 70.6925 128 0L0 5.59506e-06L5.59506e-06 128Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M128 0L0 128' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/></g>",
++ fyr
"<g transform='@TR'><path d='M0 127.946C0.0292286 57.2783 57.3256 3.08928e-06 128 0C128 70.6823 70.7089 127.984 0.0305092 128C0.0203397 128 0.01017 128 2.36469e-09 128L0 127.946Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M-0.00268555 0L127.997 128' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/><line y1='-0.5' x2='45.2548' y2='-0.5' transform='matrix(0.707107 -0.707107 -0.707107 -0.707107 79.6499 47.6499)' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ hab
"<g transform='@TR'><path d='M0 0C0 70.6925 57.3075 128 128 128V0H0Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><line x1='0.5' y1='-0.5' x2='181.5' y2='-0.5' transform='matrix(-0.707107 0.707107 0.707107 0.707107 128.71 0)' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/><path d='M60.1244 67.3837C41.5063 48.7657 32.1342 24.4031 32.0079 0.00145601M82.7518 44.7563C70.3822 32.3867 64.1344 16.2134 64.0086 0.00145196M105.379 22.1289C99.258 16.0077 96.1351 8.02351 96.0105 0.00145196' stroke='@BG' fill='none' stroke-width='@SW'/><circle cx='16' cy='112' r='11.5' fill='@BG' stroke='@BG' stroke-width='@SW'/><circle cx='16' cy='112' r='9' fill='@FG' stroke='@FG' stroke-width='@SW'/></g>",
++ hac
"<g transform='@TR'><path d='M0 0C0 70.6925 57.3075 128 128 128V0H0Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><line x1='0.5' y1='-0.5' x2='181.5' y2='-0.5' transform='matrix(-0.707107 0.707107 0.707107 0.707107 128.71 0)' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/><circle cx='64' cy='64' r='32' stroke='@BG' fill='none' stroke-width='@SW'/><circle cx='64' cy='64' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='64' cy='64' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/></g>",
++ had
"<g transform='@TR'><path d='M5.59506e-06 128C70.6925 128 128 70.6925 128 0L0 5.59506e-06L5.59506e-06 128Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><circle cx='32' cy='32' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='32' cy='32' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/></g>",
++ hal
"<g transform='@TR'><path d='M0 127.946C0.0292286 57.2783 57.3256 3.08928e-06 128 0C128 70.6823 70.7089 127.984 0.0305092 128C0.0203397 128 0.01017 128 2.36469e-09 128L0 127.946Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><line x1='64.5' y1='-0.5' x2='64.5' y2='127.5' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M16 64C16 90.5097 37.4903 112 64 112' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M112 64C112 37.4903 90.5097 16 64 16' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ han
"<g transform='@TR'><path d='M5.59506e-06 128C70.6925 128 128 70.6925 128 0L0 5.59506e-06L5.59506e-06 128Z' fill='@FG' stroke='@BG' stroke-width='@SW'/></g>",
++ hap
"<g transform='@TR'><circle cx='64' cy='64' r='64' fill='@FG' stroke='@BG' stroke-width='@SW'/><circle cx='64' cy='64' r='32' stroke='@BG' fill='none' stroke-width='@SW'/><circle cx='64' cy='64' r='48' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M-0.00292969 0L127.997 128' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/><circle cx='64' cy='64' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='64' cy='64' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/></g>",
++ har
"<g transform='@TR'><circle cx='64' cy='64' r='64' fill='@FG' stroke='@BG' stroke-width='@SW'/><line x1='64' y1='2.18557e-08' x2='64' y2='128' stroke='@BG' fill='none' stroke-width='@SW'/><circle cx='64' cy='64' r='16' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ has
"<g transform='@TR'><rect width='128' height='128' fill='@FG' stroke='@BG' stroke-width='@SW'/><circle cx='64' cy='64' r='32' stroke='@BG' fill='none' stroke-width='@SW'/><circle cx='64' cy='32' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='64' cy='32' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/><circle cx='32' cy='64' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='32' cy='64' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/></g>",
++ hat
"<g transform='@TR'><path d='M0 0C0 70.6925 57.3075 128 128 128V0H0Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><circle cx='16' cy='16' r='8' fill='@FG' stroke='@FG' stroke-width='@SW'/><line x1='0.5' y1='-0.5' x2='181.5' y2='-0.5' transform='matrix(-0.707107 0.707107 0.707107 0.707107 128.71 0)' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/><path fill-rule='evenodd' clip-rule='evenodd' d='M48 32C48 40.8366 40.8366 48 32 48C23.1634 48 16 40.8366 16 32C16 23.1634 23.1634 16 32 16C40.8366 16 48 23.1634 48 32ZM32 40C36.4183 40 40 36.4183 40 32C40 27.5817 36.4183 24 32 24C27.5817 24 24 27.5817 24 32C24 36.4183 27.5817 40 32 40Z' fill='@BG'/></g>",
++ hav
"<g transform='@TR'><path d='M0 0C0 70.6925 57.3075 128 128 128V0H0Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><line x1='96' y1='2.18557e-08' x2='96' y2='128' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ heb
"<g transform='@TR'><rect width='128' height='128' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M2.03434e-06 128C70.6924 128 128 70.6925 128 0' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ hec
"<g transform='@TR'><path d='M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><circle cx='32' cy='32' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='32' cy='32' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/><circle cx='32' cy='96' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='32' cy='96' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/><circle cx='96' cy='96' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='96' cy='96' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/></g>",
++ hep
"<g transform='@TR'><path d='M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><line x1='-0.00285417' x2='127.983' y2='127.986' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/><path d='M-0.00292969 0L127.997 128' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/></g>",
++ hes
"<g transform='@TR'><path d='M128 0C57.3075 8.42999e-07 -8.42999e-07 57.3075 0 128H128V0Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M32 0L32 128' stroke='@BG' fill='none' stroke-width='@SW'/><path fill-rule='evenodd' clip-rule='evenodd' d='M48 96C48 104.837 40.8366 112 32 112C23.1634 112 16 104.837 16 96C16 87.1634 23.1634 80 32 80C40.8366 80 48 87.1634 48 96ZM32 104C36.4183 104 40 100.418 40 96C40 91.5817 36.4183 88 32 88C27.5817 88 24 91.5817 24 96C24 100.418 27.5817 104 32 104Z' fill='@BG'/></g>",
++ het
"<g transform='@TR'><circle cx='64' cy='64' r='64' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M96 128L96 0' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ hex
"<g transform='@TR'><path d='M64 128H0L5.59506e-06 0L64 5.59506e-06C99.3462 8.68512e-06 128 28.6538 128 64C128 99.3462 99.3462 128 64 128Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M128 0L0 128' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/><path fill-rule='evenodd' clip-rule='evenodd' d='M80 64C80 72.8366 72.8366 80 64 80C55.1634 80 48 72.8366 48 64C48 55.1634 55.1634 48 64 48C72.8366 48 80 55.1634 80 64ZM64 72C68.4183 72 72 68.4183 72 64C72 59.5817 68.4183 56 64 56C59.5817 56 56 59.5817 56 64C56 68.4183 59.5817 72 64 72Z' fill='@BG'/></g>",
++ hid
"<g transform='@TR'><path d='M0 0C0 70.6925 57.3075 128 128 128V0H0Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M-0.00292969 0L127.997 128' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/><path d='M2.03434e-06 128C70.6924 128 128 70.6925 128 0' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M1.52575e-06 96C53.0193 96 96 53.0193 96 0' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M1.01717e-06 64C35.3462 64 64 35.3462 64 0' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M5.08584e-07 32C17.6731 32 32 17.6731 32 0' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ hil
"<g transform='@TR'><path d='M64 0H128V128H64C28.6538 128 0 99.3462 0 64C0 28.6538 28.6538 0 64 0Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><line x1='8.74228e-08' y1='64' x2='128' y2='64' stroke='@BG' fill='none' stroke-width='@SW'/><line x1='64' y1='2.18557e-08' x2='64' y2='128' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ hin
"<g transform='@TR'><rect width='128' height='128' fill='@FG' stroke='@BG' stroke-width='@SW'/><line x1='32' y1='2.18557e-08' x2='32' y2='128' stroke='@BG' fill='none' stroke-width='@SW'/><path fill-rule='evenodd' clip-rule='evenodd' d='M48 64C48 72.8366 40.8366 80 32 80C23.1634 80 16 72.8366 16 64C16 55.1634 23.1634 48 32 48C40.8366 48 48 55.1634 48 64ZM32 72C36.4183 72 40 68.4183 40 64C40 59.5817 36.4183 56 32 56C27.5817 56 24 59.5817 24 64C24 68.4183 27.5817 72 32 72Z' fill='@BG'/></g>",
++ hob
"<g transform='@TR'><path d='M128 64V128H0L2.79753e-06 64C4.34256e-06 28.6538 28.6538 -1.54503e-06 64 0C99.3462 1.54503e-06 128 28.6538 128 64Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><line x1='128' y1='64' x2='-4.37114e-08' y2='64' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ hoc
"<g transform='@TR'><path d='M64 0H128V128H64C28.6538 128 0 99.3462 0 64C0 28.6538 28.6538 0 64 0Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><line y1='-0.5' x2='45.2548' y2='-0.5' transform='matrix(0.707107 -0.707107 -0.707107 -0.707107 79.65 47.6499)' stroke='@BG' fill='none' stroke-width='@SW'/><circle cx='64' cy='64' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='64' cy='64' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/></g>",
++ hod
"<g transform='@TR'><path d='M64 0H128V128H64C28.6538 128 0 99.3462 0 64C0 28.6538 28.6538 0 64 0Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M32 0L32 128' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ hol
"<g transform='@TR'><circle cx='64' cy='64' r='64' fill='@FG' stroke='@BG' stroke-width='@SW'/><line x1='128' y1='64' x2='-4.37114e-08' y2='64' stroke='@BG' fill='none' stroke-width='@SW'/><circle cx='64' cy='64' r='16' stroke='@BG' fill='none' stroke-width='@SW'/><circle cx='64' cy='96' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='64' cy='96' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/></g>",
++ hop
"<g transform='@TR'><circle cx='64' cy='64' r='64' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M128 64L0 64' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M64 96C81.6731 96 96 81.6731 96 64C96 46.3269 81.6731 32 64 32' stroke='@BG' fill='none' stroke-width='@SW'/><circle cx='64' cy='64' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='64' cy='64' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/></g>",
++ hos
"<g transform='@TR'><path d='M0 0C0 70.6925 57.3075 128 128 128V0H0Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><line x1='80.0036' y1='79.9965' x2='112.004' y2='111.997' stroke='@BG' fill='none' stroke-width='@SW'/><line x1='16.0036' y1='15.9965' x2='48.0036' y2='47.9965' stroke='@BG' fill='none' stroke-width='@SW'/><circle cx='48' cy='48' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='48' cy='48' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/><circle cx='80' cy='47' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='80' cy='47' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/><circle cx='80' cy='81' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='80' cy='81' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/><circle cx='48' cy='80' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='48' cy='80' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/></g>",
++ hul
"<g transform='@TR'><circle cx='64' cy='64' r='64' fill='@FG' stroke='@BG' stroke-width='@SW'/><circle cx='64' cy='64' r='32' stroke='@BG' fill='none' stroke-width='@SW'/><circle cx='48' cy='64' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='48' cy='64' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/></g>",
++ hus
"<g transform='@TR'><path d='M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M-0.00292969 0L127.997 128' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/><path d='M64 96C46.3269 96 32 81.6731 32 64' stroke='@BG' fill='none' stroke-width='@SW'/><circle cx='64' cy='64' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='64' cy='64' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/></g>",
++ hut
"<g transform='@TR'><rect width='128' height='128' fill='@FG' stroke='@BG' stroke-width='@SW'/><circle cx='64' cy='64' r='48' stroke='@BG' fill='none' stroke-width='@SW'/><circle cx='32' cy='32' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='32' cy='32' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/><circle cx='96' cy='96' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='96' cy='96' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/></g>",
++ lab
"<g transform='@TR'><path d='M128 0C57.3075 8.42999e-07 -8.42999e-07 57.3075 0 128H128V0Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><line x1='-0.0029152' x2='127.983' y2='127.986' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/><line y1='-0.5' x2='45.2548' y2='-0.5' transform='matrix(0.707107 -0.707107 -0.707107 -0.707107 79.65 47.6499)' stroke='@BG' fill='none' stroke-width='@SW'/><line x1='15.9964' y1='111.997' x2='47.9964' y2='79.9965' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ lac
"<g transform='@TR'><path d='M0 0C0 70.6925 57.3075 128 128 128V0H0Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M64 -9.40976e-06C64 70.6924 92.6538 128 128 128' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M32 -7.63193e-07C32 70.6924 74.9807 128 128 128' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M128 64L0 64' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ lad
"<g transform='@TR'><path d='M128 0C57.3075 8.42999e-07 -8.42999e-07 57.3075 0 128H128V0Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><line x1='95.35' y1='32.7071' x2='32.0571' y2='96' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/><circle cx='96' cy='32' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='96' cy='32' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/><circle cx='32' cy='96' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='32' cy='96' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/></g>",
++ lag
"<g transform='@TR'><path d='M64 0H128V128H64C28.6538 128 0 99.3462 0 64C0 28.6538 28.6538 0 64 0Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M64 112C90.5097 112 112 90.5097 112 64' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ lan
"<g transform='@TR'><path d='M64 0H128V128H64C28.6538 128 0 99.3462 0 64C0 28.6538 28.6538 0 64 0Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><line x1='64' y1='2.18557e-08' x2='64' y2='128' stroke='@BG' fill='none' stroke-width='@SW'/><line x1='32' y1='2.18557e-08' x2='32' y2='128' stroke='@BG' fill='none' stroke-width='@SW'/><circle cx='64' cy='64' r='16' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ lap
"<g transform='@TR'><path d='M0 0C0 70.6925 57.3075 128 128 128V0H0Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M112 64C112 37.4903 90.5097 16 64 16' stroke='@BG' fill='none' stroke-width='@SW'/><circle cx='112' cy='64' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='112' cy='64' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/></g>",
++ lar
"<g transform='@TR'><circle cx='64' cy='64' r='64' fill='@FG' stroke='@BG' stroke-width='@SW'/><line x1='2.78181e-08' y1='64' x2='128' y2='64' stroke='@BG' fill='none' stroke-width='@SW'/><circle cx='64' cy='64' r='16' stroke='@BG' fill='none' stroke-width='@SW'/><circle cx='64' cy='96' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='64' cy='96' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/><circle cx='64' cy='32' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='64' cy='32' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/></g>",
++ las
"<g transform='@TR'><rect width='128' height='128' fill='@FG' stroke='@BG' stroke-width='@SW'/><circle cx='64' cy='64' r='48' stroke='@BG' fill='none' stroke-width='@SW'/><circle cx='16' cy='64' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='16' cy='64' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/></g>",
++ lat
"<g transform='@TR'><path d='M0 0C0 70.6925 57.3075 128 128 128V0H0Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M2.03434e-06 128C70.6924 128 128 70.6925 128 0' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M1.52575e-06 96C53.0193 96 96 53.0193 96 0' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M1.01717e-06 64C35.3462 64 64 35.3462 64 0' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M5.08584e-07 32C17.6731 32 32 17.6731 32 0' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ lav
"<g transform='@TR'><path d='M128 0C57.3075 8.42999e-07 -8.42999e-07 57.3075 0 128H128V0Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M128 128C92.6489 128 60.6449 113.669 37.4807 90.5' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M128 96C101.492 96 77.4939 85.2564 60.1217 67.8862' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M128 64C110.328 64 94.3287 56.8374 82.7471 45.2568' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M128 32.3716C119.164 32.3716 111.164 28.7903 105.374 23' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ leb
"<g transform='@TR'><rect width='128' height='128' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M-1.64036e-05 32C53.0193 32 96 74.9807 96 128' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ lec
"<g transform='@TR'><path d='M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M-0.00292969 0L127.997 128' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/><circle cx='64' cy='64' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='64' cy='64' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/></g>",
++ led
"<g transform='@TR'><circle cx='64' cy='64' r='64' fill='@FG' stroke='@BG' stroke-width='@SW'/><circle cx='64' cy='32' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='64' cy='32' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/></g>",
++ leg
"<g transform='@TR'><rect width='128' height='128' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M7.63192e-07 32C17.6731 32 32 46.3269 32 64C32 81.6731 17.6731 96 0 96' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ len
"<g transform='@TR'><rect width='128' height='128' fill='@FG' stroke='@BG' stroke-width='@SW'/><circle cx='64' cy='64' r='48' stroke='@BG' fill='none' stroke-width='@SW'/><circle cx='64' cy='96' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='64' cy='96' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/></g>",
++ lep
"<g transform='@TR'><path d='M128 0C57.3075 8.42999e-07 -8.42999e-07 57.3075 0 128H128V0Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M128 96C110.327 96 96 110.327 96 128' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ ler
"<g transform='@TR'><path d='M64 128H0L5.59506e-06 0L64 5.59506e-06C99.3462 8.68512e-06 128 28.6538 128 64C128 99.3462 99.3462 128 64 128Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M32 0L32 128' stroke='@BG' fill='none' stroke-width='@SW'/><circle cx='32' cy='32' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='32' cy='32' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/></g>",
++ let
"<g transform='@TR'><circle cx='64' cy='64' r='64' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M64 0L64 128' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ lev
"<g transform='@TR'><path d='M64 128H0L5.59506e-06 0L64 5.59506e-06C99.3462 8.68512e-06 128 28.6538 128 64C128 99.3462 99.3462 128 64 128Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><circle cx='32' cy='32' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='32' cy='32' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/></g>",
++ lex
"<g transform='@TR'><path d='M64 128H0L5.59506e-06 0L64 5.59506e-06C99.3462 8.68512e-06 128 28.6538 128 64C128 99.3462 99.3462 128 64 128Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M-0.00292969 0L127.997 128' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/><line x1='15.9965' y1='111.997' x2='47.9965' y2='79.9965' stroke='@BG' fill='none' stroke-width='@SW'/><path fill-rule='evenodd' clip-rule='evenodd' d='M80 64C80 72.8366 72.8366 80 64 80C55.1634 80 48 72.8366 48 64C48 55.1634 55.1634 48 64 48C72.8366 48 80 55.1634 80 64ZM64 72C68.4183 72 72 68.4183 72 64C72 59.5817 68.4183 56 64 56C59.5817 56 56 59.5817 56 64C56 68.4183 59.5817 72 64 72Z' fill='@BG'/></g>",
++ lib
"<g transform='@TR'><circle cx='64' cy='64' r='64' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M128 64C92.6538 64 64 92.6538 64 128' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M128 64L0 64' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ lid
"<g transform='@TR'><path d='M0 0C0 70.6925 57.3075 128 128 128V0H0Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><line x1='16.0036' y1='15.9965' x2='48.0036' y2='47.9965' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M128 0L0 128' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/></g>",
++ lig
"<g transform='@TR'><circle cx='64' cy='64' r='64' fill='@FG' stroke='@BG' stroke-width='@SW'/><circle cx='64' cy='64' r='48' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ lin
"<g transform='@TR'><rect width='128' height='128' fill='@FG' stroke='@BG' stroke-width='@SW'/><line x1='64' y1='128' x2='64' y2='-6.55671e-08' stroke='@BG' fill='none' stroke-width='@SW'/><circle cx='80' cy='64' r='8' fill='@BG'/></g>",
++ lis
"<g transform='@TR'><path d='M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M128 64L0 64' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M-4.70488e-06 64C35.3462 64 64 35.3462 64 0' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ lit
"<g transform='@TR'><path d='M0.0541 0C70.7217 0.0292317 128 57.3256 128 128C57.3177 128 0.0164917 70.7089 7.62806e-06 0.0305091C7.62851e-06 0.0203397 -4.44317e-10 0.01017 0 0H0.0541Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M-0.00286865 0L127.997 128' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/><path d='M128 0C128 35.3511 113.669 67.3551 90.5 90.5193' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M96 0C96 26.5077 85.2564 50.5061 67.8862 67.8783' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M64 0C64 17.6721 56.8374 33.6713 45.2568 45.2529' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M32.3716 0C32.3716 8.83603 28.7903 16.8356 23 22.6264' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ liv
"<g transform='@TR'><rect width='128' height='128' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M-5.21346e-06 32C70.6924 32 128 17.6731 128 0' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M3.4331e-06 96C70.6924 96 128 53.0193 128 0' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M64 0L64 128' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ loc
"<g transform='@TR'><path d='M0.0541 0C70.7217 0.0292317 128 57.3256 128 128C57.3177 128 0.0164917 70.7089 7.62806e-06 0.0305091C7.62851e-06 0.0203397 -4.44317e-10 0.01017 0 0H0.0541Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M128 96C74.9807 96 32 53.0193 32 -4.19629e-06' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ lod
"<g transform='@TR'><path d='M64 0H128V128H64C28.6538 128 0 99.3462 0 64C0 28.6538 28.6538 0 64 0Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M16 64C16 90.5097 37.4903 112 64 112' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ lom
"<g transform='@TR'><rect width='128' height='128' fill='@FG' stroke='@BG' stroke-width='@SW'/><circle cx='32' cy='32' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='32' cy='32' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/><circle cx='96' cy='32' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='96' cy='32' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/><circle cx='96' cy='96' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='96' cy='96' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/></g>",
++ lon
"<g transform='@TR'><path d='M128 0C57.3075 8.42999e-07 -8.42999e-07 57.3075 0 128H128V0Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M2.03434e-06 128C70.6924 128 128 70.6925 128 0' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M1.52575e-06 96C53.0193 96 96 53.0193 96 0' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M1.01717e-06 64C35.3462 64 64 35.3462 64 0' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M5.08584e-07 32C17.6731 32 32 17.6731 32 0' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ lop
"<g transform='@TR'><circle cx='64' cy='64' r='64' fill='@FG' stroke='@BG' stroke-width='@SW'/><line x1='128' y1='64' x2='-8.87604e-09' y2='64' stroke='@BG' fill='none' stroke-width='@SW'/><line x1='128' y1='32' x2='-8.87604e-09' y2='32' stroke='@BG' fill='none' stroke-width='@SW'/><circle cx='64' cy='64' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='64' cy='64' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/></g>",
++ lor
"<g transform='@TR'><path d='M64 0H128V128H64C28.6538 128 0 99.3462 0 64C0 28.6538 28.6538 0 64 0Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><line x1='64' y1='2.18557e-08' x2='64' y2='128' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ los
"<g transform='@TR'><path d='M0 0C0 70.6925 57.3075 128 128 128V0H0Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><line x1='-0.0029152' x2='127.983' y2='127.986' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/><circle cx='96' cy='96' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='96' cy='96' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/></g>",
++ luc
"<g transform='@TR'><path d='M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><line x1='128' y1='64' x2='-8.87604e-09' y2='64' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M128 64L0 64' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M128 96L0 96' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ lud
"<g transform='@TR'><path d='M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M128 64L0 64' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M32 0L32 128' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M64 0L64 128' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M96 0L96 128' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ lug
"<g transform='@TR'><path d='M64 128H0L5.59506e-06 -7.62939e-06L64 -2.03434e-06C99.3462 1.05573e-06 128 28.6538 128 64C128 99.3462 99.3462 128 64 128Z' fill='@FG' stroke='@BG' stroke-width='@SW'/></g>",
++ lun
"<g transform='@TR'><circle cx='64' cy='64' r='64' fill='@FG' stroke='@BG' stroke-width='@SW'/><circle cx='64' cy='64' r='32' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ lup
"<g transform='@TR'><path d='M64 128H0L5.59506e-06 -7.62939e-06L64 -2.03434e-06C99.3462 1.05573e-06 128 28.6538 128 64C128 99.3462 99.3462 128 64 128Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M64 16C90.5097 16 112 37.4903 112 64C112 90.5097 90.5097 112 64 112' stroke='@BG' fill='none' stroke-width='@SW'/><line x1='128' y1='64' x2='-8.87604e-09' y2='64' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ lur
"<g transform='@TR'><path d='M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M64 0L64 128' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M96 0L96 128' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M32 0L32 128' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ lus
"<g transform='@TR'><path d='M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M128 0L0 128' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/><circle cx='96' cy='96' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='96' cy='96' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/></g>",
++ lut
"<g transform='@TR'><rect width='128' height='128' fill='@FG' stroke='@BG' stroke-width='@SW'/><circle cx='32' cy='64' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='32' cy='64' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/></g>",
++ lux
"<g transform='@TR'><path d='M5.59506e-06 128C70.6925 128 128 70.6925 128 0L0 5.59506e-06L5.59506e-06 128Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path fill-rule='evenodd' clip-rule='evenodd' d='M80 64C80 72.8366 72.8366 80 64 80C55.1634 80 48 72.8366 48 64C48 55.1634 55.1634 48 64 48C72.8366 48 80 55.1634 80 64ZM64 72C68.4183 72 72 68.4183 72 64C72 59.5817 68.4183 56 64 56C59.5817 56 56 59.5817 56 64C56 68.4183 59.5817 72 64 72Z' fill='@BG'/></g>",
++ lyd
"<g transform='@TR'><path d='M0.0541 0C70.7217 0.0292317 128 57.3256 128 128C57.3177 128 0.0164917 70.7089 7.62806e-06 0.0305091C7.62851e-06 0.0203397 -4.44317e-10 0.01017 0 0H0.0541Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M-0.00280762 0L127.997 128' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/><circle cx='64' cy='64' r='32' stroke='@BG' fill='none' stroke-width='@SW'/><circle cx='64' cy='32' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='64' cy='32' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/></g>",
++ lyn
"<g transform='@TR'><path d='M5.59506e-06 128C70.6925 128 128 70.6925 128 0L0 5.59506e-06L5.59506e-06 128Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M32 0L32 128' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ lyr
"<g transform='@TR'><path d='M0 127.946C0.0292286 57.2783 57.3256 3.08928e-06 128 0C128 70.6823 70.7089 127.984 0.0305092 128C0.0203397 128 0.01017 128 2.36469e-09 128L0 127.946Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M-0.00268555 0L127.997 128' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/><circle cx='80' cy='48' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='80' cy='48' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/></g>",
++ lys
"<g transform='@TR'><path d='M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><circle cx='64' cy='64' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='64' cy='64' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/><circle cx='16' cy='112' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='16' cy='112' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/></g>",
++ lyt
"<g transform='@TR'><path d='M64 128H0L5.59506e-06 0L64 5.59506e-06C99.3462 8.68512e-06 128 28.6538 128 64C128 99.3462 99.3462 128 64 128Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M128 0L0 128' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/><line x1='80.0035' y1='79.9965' x2='112.003' y2='111.997' stroke='@BG' fill='none' stroke-width='@SW'/><circle cx='64' cy='64' r='16' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ lyx
"<g transform='@TR'><path d='M5.59506e-06 128C70.6925 128 128 70.6925 128 0L0 5.59506e-06L5.59506e-06 128Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M-0.00292969 0L127.997 128' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/><circle cx='32' cy='32' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='32' cy='32' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/></g>",
++ mac
"<g transform='@TR'><path d='M0 0C0 70.6925 57.3075 128 128 128V0H0Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><circle cx='16' cy='112' r='11.5' fill='@BG' stroke='@BG' stroke-width='@SW'/><circle cx='16' cy='112' r='9' fill='@FG' stroke='@FG' stroke-width='@SW'/></g>",
++ mag
"<g transform='@TR'><path d='M64 0H128V128H64C28.6538 128 0 99.3462 0 64C0 28.6538 28.6538 0 64 0Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><circle cx='64' cy='64' r='32' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M128 64L0 64' stroke='@BG' fill='none' stroke-width='@SW'/><circle cx='64' cy='96' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='64' cy='96' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/></g>",
++ mal
"<g transform='@TR'><path d='M0.0541 0C70.7217 0.0292317 128 57.3256 128 128C57.3177 128 0.0164917 70.7089 7.62806e-06 0.0305091C7.62851e-06 0.0203397 -4.44317e-10 0.01017 0 0H0.0541Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><line x1='80.0035' y1='79.9964' x2='112.004' y2='111.996' stroke='@BG' fill='none' stroke-width='@SW'/><circle cx='16' cy='112' r='11.5' fill='@BG' stroke='@BG' stroke-width='@SW'/><circle cx='16' cy='112' r='9' fill='@FG' stroke='@FG' stroke-width='@SW'/></g>",
++ map
"<g transform='@TR'><path d='M128 0C57.3075 8.42999e-07 -8.42999e-07 57.3075 0 128H128V0Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><line x1='80.0036' y1='79.9965' x2='112.004' y2='111.997' stroke='@BG' fill='none' stroke-width='@SW'/><circle cx='64' cy='64' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='64' cy='64' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/></g>",
++ mar
"<g transform='@TR'><circle cx='64' cy='64' r='64' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M-0.0029152 0L127.997 128' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/><path d='M64 64L64 128' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M86.6274 86.6274C99.1242 74.1307 99.1242 53.8694 86.6274 41.3726C74.1306 28.8758 53.8694 28.8758 41.3726 41.3726' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M75.3137 75.3137C81.5621 69.0653 81.5621 58.9347 75.3137 52.6863C69.0653 46.4379 58.9347 46.4379 52.6863 52.6863' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M97.9411 97.9411C116.686 79.1959 116.686 48.804 97.9411 30.0589C79.196 11.3137 48.804 11.3137 30.0589 30.0589' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ mas
"<g transform='@TR'><rect width='128' height='128' fill='@FG' stroke='@BG' stroke-width='@SW'/><circle cx='64' cy='64' r='32' stroke='@BG' fill='none' stroke-width='@SW'/><path fill-rule='evenodd' clip-rule='evenodd' d='M80 64C80 72.8366 72.8366 80 64 80C55.1634 80 48 72.8366 48 64C48 55.1634 55.1634 48 64 48C72.8366 48 80 55.1634 80 64ZM64 72C68.4183 72 72 68.4183 72 64C72 59.5817 68.4183 56 64 56C59.5817 56 56 59.5817 56 64C56 68.4183 59.5817 72 64 72Z' fill='@BG'/></g>",
++ mat
"<g transform='@TR'><path d='M0 0C0 70.6925 57.3075 128 128 128V0H0Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M128 32C110.327 32 96 17.6731 96 0' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ meb
"<g transform='@TR'><rect width='128' height='128' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M32 -3.05151e-06C32 53.0193 74.9807 96 128 96' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ mec
"<g transform='@TR'><path d='M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><line x1='80.0035' y1='79.9965' x2='112.003' y2='111.997' stroke='@BG' fill='none' stroke-width='@SW'/><circle cx='64' cy='64' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='64' cy='64' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/></g>",
++ med
"<g transform='@TR'><circle cx='64' cy='64' r='64' fill='@FG' stroke='@BG' stroke-width='@SW'/><circle cx='96' cy='64' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='96' cy='64' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/></g>",
++ meg
"<g transform='@TR'><rect width='128' height='128' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M128 64C92.6538 64 64 92.6538 64 128' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ mel
"<g transform='@TR'><path d='M0 127.946C0.0292286 57.2783 57.3256 3.08928e-06 128 0C128 70.6823 70.7089 127.984 0.0305092 128C0.0203397 128 0.01017 128 2.36469e-09 128L0 127.946Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><line x1='15.9964' y1='111.997' x2='47.9964' y2='79.9965' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ mep
"<g transform='@TR'><path d='M128 0C57.3075 8.42999e-07 -8.42999e-07 57.3075 0 128H128V0Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M128 64L0 64' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M128 96L0 96' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M128 32L0 32' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ mer
"<g transform='@TR'><path d='M64 128H0L5.59506e-06 0L64 5.59506e-06C99.3462 8.68512e-06 128 28.6538 128 64C128 99.3462 99.3462 128 64 128Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M32 0L32 128' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ mes
"<g transform='@TR'><path d='M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M-0.00280762 0L127.997 128' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/><line x1='15.9964' y1='111.996' x2='47.9964' y2='79.9964' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ met
"<g transform='@TR'><circle cx='64' cy='64' r='64' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M32 128L32 0' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ mev
"<g transform='@TR'><path d='M64 128H0L5.59506e-06 0L64 5.59506e-06C99.3462 8.68512e-06 128 28.6538 128 64C128 99.3462 99.3462 128 64 128Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><circle cx='64' cy='64' r='16' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ mex
"<g transform='@TR'><path d='M64 128H0L5.59506e-06 0L64 5.59506e-06C99.3462 8.68512e-06 128 28.6538 128 64C128 99.3462 99.3462 128 64 128Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M-0.00292969 0L127.997 128' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/><path fill-rule='evenodd' clip-rule='evenodd' d='M80 64C80 72.8366 72.8366 80 64 80C55.1634 80 48 72.8366 48 64C48 55.1634 55.1634 48 64 48C72.8366 48 80 55.1634 80 64ZM64 72C68.4183 72 72 68.4183 72 64C72 59.5817 68.4183 56 64 56C59.5817 56 56 59.5817 56 64C56 68.4183 59.5817 72 64 72Z' fill='@BG'/></g>",
++ mic
"<g transform='@TR'><path d='M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M-2.09815e-06 80C26.5097 80 48 101.49 48 128' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ mid
"<g transform='@TR'><path d='M0 0C0 70.6925 57.3075 128 128 128V0H0Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><line x1='128' y1='64' x2='-4.37114e-08' y2='64' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M128 64C92.6538 64 64 92.6538 64 128' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ mig
"<g transform='@TR'><path d='M64 0H128V128H64C28.6538 128 0 99.3462 0 64C0 28.6538 28.6538 0 64 0Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><line x1='64' y1='2.18557e-08' x2='64' y2='128' stroke='@BG' fill='none' stroke-width='@SW'/><line x1='80.0036' y1='79.9965' x2='112.004' y2='111.997' stroke='@BG' fill='none' stroke-width='@SW'/><circle cx='64' cy='64' r='16' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ mil
"<g transform='@TR'><path d='M64 0H128V128H64C28.6538 128 0 99.3462 0 64C0 28.6538 28.6538 0 64 0Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><line x1='128' y1='64' x2='-4.37114e-08' y2='64' stroke='@BG' fill='none' stroke-width='@SW'/><line x1='128' y1='32' x2='-4.37114e-08' y2='32' stroke='@BG' fill='none' stroke-width='@SW'/><line x1='128' y1='96' x2='-4.37114e-08' y2='96' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ min
"<g transform='@TR'><rect width='128' height='128' fill='@FG' stroke='@BG' stroke-width='@SW'/><line x1='-0.0029152' x2='127.983' y2='127.986' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/></g>",
++ mip
"<g transform='@TR'><path d='M128 0C57.3075 8.42999e-07 -8.42999e-07 57.3075 0 128H128V0Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><line x1='64' y1='2.18557e-08' x2='64' y2='128' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M128 128C92.6538 128 64 99.3462 64 64C64 28.6538 92.6538 4.215e-07 128 0' stroke='@BG' fill='none' stroke-width='@SW'/><circle cx='64' cy='64' r='16' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ mir
"<g transform='@TR'><path d='M0 0C0 70.6925 57.3075 128 128 128V0H0Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><line x1='16.0036' y1='15.9964' x2='48.0036' y2='47.9964' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M96 64C96 46.3269 81.6731 32 64 32' stroke='@BG' fill='none' stroke-width='@SW'/><circle cx='64' cy='64' r='16' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ mis
"<g transform='@TR'><path d='M128 0C57.3075 8.42999e-07 -8.42999e-07 57.3075 0 128H128V0Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M128 64C92.6538 64 64 92.6538 64 128' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M-0.00286865 0L127.997 128' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/></g>",
++ mit
"<g transform='@TR'><path d='M0.0541 0C70.7217 0.0292317 128 57.3256 128 128C57.3177 128 0.0164917 70.7089 7.62806e-06 0.0305091C7.62851e-06 0.0203397 -4.44317e-10 0.01017 0 0H0.0541Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><line x1='0.5' y1='-0.5' x2='181.5' y2='-0.5' transform='matrix(-0.707107 0.707107 0.707107 0.707107 128.71 0)' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/><circle cx='32' cy='32' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='32' cy='32' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/></g>",
++ moc
"<g transform='@TR'><path d='M0.0541 0C70.7217 0.0292317 128 57.3256 128 128C57.3177 128 0.0164917 70.7089 7.62806e-06 0.0305091C7.62851e-06 0.0203397 -4.44317e-10 0.01017 0 0H0.0541Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M128 64L0 64' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M128 96L0 96' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M128 32L0 32' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ mod
"<g transform='@TR'><path d='M64 0H128V128H64C28.6538 128 0 99.3462 0 64C0 28.6538 28.6538 0 64 0Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M0 96L128 96' stroke='@BG' fill='none' stroke-width='@SW'/><line x1='16.0035' y1='15.9965' x2='48.0035' y2='47.9965' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ mog
"<g transform='@TR'><path d='M128 0C57.3075 8.42999e-07 -8.42999e-07 57.3075 0 128H128V0Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><line x1='-0.0029152' x2='127.983' y2='127.986' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/><circle cx='64' cy='64' r='32' stroke='@BG' fill='none' stroke-width='@SW'/><circle cx='64' cy='64' r='16' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ mol
"<g transform='@TR'><circle cx='64' cy='64' r='64' fill='@FG' stroke='@BG' stroke-width='@SW'/><line x1='128' y1='64' x2='-4.37114e-08' y2='64' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M112 64C112 90.5097 90.5097 112 64 112C37.4903 112 16 90.5097 16 64' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M112 0C112 26.5097 90.5097 48 64 48C37.4903 48 16 26.5097 16 0' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ mon
"<g transform='@TR'><path d='M128 0C57.3075 8.42999e-07 -8.42999e-07 57.3075 0 128H128V0Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path fill-rule='evenodd' clip-rule='evenodd' d='M80 64C80 72.8366 72.8366 80 64 80C55.1634 80 48 72.8366 48 64C48 55.1634 55.1634 48 64 48C72.8366 48 80 55.1634 80 64ZM64 72C68.4183 72 72 68.4183 72 64C72 59.5817 68.4183 56 64 56C59.5817 56 56 59.5817 56 64C56 68.4183 59.5817 72 64 72Z' fill='@BG'/></g>",
++ mop
"<g transform='@TR'><circle cx='64' cy='64' r='64' fill='@FG' stroke='@BG' stroke-width='@SW'/><line x1='-0.0029152' x2='127.983' y2='127.986' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/><circle cx='64' cy='64' r='32' stroke='@BG' fill='none' stroke-width='@SW'/><circle cx='32' cy='64' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='32' cy='64' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/></g>",
++ mor
"<g transform='@TR'><path d='M64 0H128V128H64C28.6538 128 0 99.3462 0 64C0 28.6538 28.6538 0 64 0Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><line x1='16.0035' y1='15.9964' x2='48.0035' y2='47.9964' stroke='@BG' fill='none' stroke-width='@SW'/><line x1='15.9964' y1='111.996' x2='47.9964' y2='79.9964' stroke='@BG' fill='none' stroke-width='@SW'/><circle cx='64' cy='64' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='64' cy='64' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/></g>",
++ mos
"<g transform='@TR'><path d='M0 0C0 70.6925 57.3075 128 128 128V0H0Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><line x1='0.5' y1='-0.5' x2='181.5' y2='-0.5' transform='matrix(-0.707107 0.707107 0.707107 0.707107 128.71 0)' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/><circle cx='96' cy='32' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='96' cy='32' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/></g>",
++ mot
"<g transform='@TR'><path d='M64 0H128V128H64C28.6538 128 0 99.3462 0 64C0 28.6538 28.6538 0 64 0Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M128 96C110.327 96 96 81.6731 96 64C96 46.3269 110.327 32 128 32' stroke='@BG' fill='none' stroke-width='@SW'/><circle cx='64' cy='64' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='64' cy='64' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/></g>",
++ mud
"<g transform='@TR'><path d='M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M-0.00292969 0L127.997 128' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/><circle cx='80' cy='80' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='80' cy='80' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/></g>",
++ mug
"<g transform='@TR'><path d='M64 128H0L5.59506e-06 0L64 5.59506e-06C99.3462 8.68512e-06 128 28.6538 128 64C128 99.3462 99.3462 128 64 128Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M64 96C81.6731 96 96 81.6731 96 64C96 46.3269 81.6731 32 64 32' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ mul
"<g transform='@TR'><circle cx='64' cy='64' r='64' fill='@FG' stroke='@BG' stroke-width='@SW'/><line x1='80.0035' y1='79.9964' x2='112.003' y2='111.996' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M112 64C112 37.4903 90.5097 16 64 16' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ mun
"<g transform='@TR'><circle cx='64' cy='64' r='64' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M128 64C92.6538 64 64 35.3462 64 0' stroke='@BG' fill='none' stroke-width='@SW'/><circle cx='64' cy='64' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='64' cy='64' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/></g>",
++ mur
"<g transform='@TR'><path d='M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M128 64L0 64' stroke='@BG' fill='none' stroke-width='@SW'/><circle cx='64' cy='64' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='64' cy='64' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/><circle cx='32' cy='64' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='32' cy='64' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/></g>",
++ mus
"<g transform='@TR'><path d='M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><line x1='0.5' y1='-0.5' x2='181.5' y2='-0.5' transform='matrix(-0.707107 0.707107 0.707107 0.707107 128.71 0)' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/><path d='M96 128C96 74.9807 53.0193 32 0 32' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ mut
"<g transform='@TR'><rect width='128' height='128' fill='@FG' stroke='@BG' stroke-width='@SW'/><circle cx='96' cy='32' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='96' cy='32' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/></g>",
++ myl
"<g transform='@TR'><path d='M5.59506e-06 128C70.6925 128 128 70.6925 128 0L0 5.59506e-06L5.59506e-06 128Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><line x1='16.0035' y1='15.9965' x2='48.0035' y2='47.9965' stroke='@BG' fill='none' stroke-width='@SW'/><circle cx='16' cy='16' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='16' cy='16' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/></g>",
++ myn
"<g transform='@TR'><path d='M5.59506e-06 128C70.6925 128 128 70.6925 128 0L0 5.59506e-06L5.59506e-06 128Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M128 1.52638e-06C57.3076 -7.74381e-06 9.2702e-06 57.3075 0 128' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M128 32C74.9807 32 32 74.9807 32 128' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M128 64C92.6538 64 64 92.6538 64 128' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M128 96C110.327 96 96 110.327 96 128' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ myr
"<g transform='@TR'><path d='M0 127.946C0.0292286 57.2783 57.3256 3.08928e-06 128 0C128 70.6823 70.7089 127.984 0.0305092 128C0.0203397 128 0.01017 128 2.36469e-09 128L0 127.946Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M-0.00292969 0L127.997 128' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/><circle cx='32' cy='96' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='32' cy='96' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/></g>",
++ nac
"<g transform='@TR'><path d='M0 0C0 70.6925 57.3075 128 128 128V0H0Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><circle cx='64' cy='64' r='16' stroke='@BG' fill='none' stroke-width='@SW'/><circle cx='16' cy='112' r='11.5' fill='@BG' stroke='@BG' stroke-width='@SW'/><circle cx='16' cy='112' r='9' fill='@FG' stroke='@FG' stroke-width='@SW'/></g>",
++ nal
"<g transform='@TR'><path d='M0.0541 0C70.7217 0.0292317 128 57.3256 128 128C57.3177 128 0.0164917 70.7089 7.62806e-06 0.0305091C7.62851e-06 0.0203397 -4.44317e-10 0.01017 0 0H0.0541Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><line x1='-0.0029152' x2='127.983' y2='127.986' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/><path d='M2.82114e-06 110C60.7513 110 110 60.7513 110 0' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M-5.09828e-06 73C40.3168 73 73 40.3168 73 0' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M-6.63647e-07 37C20.4345 37 37 20.4345 37 0' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ nam
"<g transform='@TR'><path d='M64 0H128V128H64C28.6538 128 0 99.3462 0 64C0 28.6538 28.6538 0 64 0Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><line x1='8.74228e-08' y1='64' x2='128' y2='64' stroke='@BG' fill='none' stroke-width='@SW'/><circle cx='64' cy='64' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='64' cy='64' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/><circle cx='112' cy='64' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='112' cy='64' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/></g>",
++ nap
"<g transform='@TR'><path d='M128 0C57.3075 8.42999e-07 -8.42999e-07 57.3075 0 128H128V0Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><line x1='64' y1='2.18557e-08' x2='64' y2='128' stroke='@BG' fill='none' stroke-width='@SW'/><circle cx='96' cy='32' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='96' cy='32' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/><circle cx='96' cy='96' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='96' cy='96' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/></g>",
++ nar
"<g transform='@TR'><circle cx='64' cy='64' r='64' fill='@FG' stroke='@BG' stroke-width='@SW'/><circle cx='64' cy='64' r='32' stroke='@BG' fill='none' stroke-width='@SW'/><circle cx='64' cy='64' r='8' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ nat
"<g transform='@TR'><path d='M0 0C0 70.6925 57.3075 128 128 128V0H0Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M-1.52588e-05 128C-9.07866e-06 57.3075 57.3076 1.44926e-06 128 7.62939e-06' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ nav
"<g transform='@TR'><path d='M0 0C0 70.6925 57.3075 128 128 128V0H0Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M128 96C101.492 96 77.4939 85.2564 60.1217 67.8862' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M128 64C110.328 64 94.3287 56.8374 82.7471 45.2568' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M128 32.3716C119.164 32.3716 111.164 28.7903 105.374 23' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ neb
"<g transform='@TR'><rect width='128' height='128' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M128 32C74.9807 32 32 74.9807 32 128' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ nec
"<g transform='@TR'><path d='M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><circle cx='32' cy='32' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='32' cy='32' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/><circle cx='96' cy='96' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='96' cy='96' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/><path d='M64 0L64 128' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ ned
"<g transform='@TR'><circle cx='64' cy='64' r='64' fill='@FG' stroke='@BG' stroke-width='@SW'/><circle cx='64' cy='64' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='64' cy='64' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/></g>",
++ nel
"<g transform='@TR'><path d='M0 127.946C0.0292286 57.2783 57.3256 3.08928e-06 128 0C128 70.6823 70.7089 127.984 0.0305092 128C0.0203397 128 0.01017 128 2.36469e-09 128L0 127.946Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M-0.00268555 0L127.997 128' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/><path d='M96 1.90735e-06C96 53.0193 53.0193 96 0 96' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ nem
"<g transform='@TR'><circle cx='64' cy='64' r='64' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M-0.00292969 0L127.997 128' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/><path d='M128 64C92.6538 64 64 92.6538 64 128' stroke='@BG' fill='none' stroke-width='@SW'/><circle cx='32' cy='32' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='32' cy='32' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/></g>",
++ nep
"<g transform='@TR'><path d='M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M128 128C57.3076 128 3.09007e-06 70.6925 0 0' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M128 96C74.9807 96 32 53.0193 32 0' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M128 64C92.6538 64 64 35.3462 64 0' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M128 32C110.327 32 96 17.6731 96 0' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ ner
"<g transform='@TR'><path d='M64 128H0L5.59506e-06 0L64 5.59506e-06C99.3462 8.68512e-06 128 28.6538 128 64C128 99.3462 99.3462 128 64 128Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M64 0L64 128' stroke='@BG' fill='none' stroke-width='@SW'/><line x1='15.9965' y1='111.997' x2='47.9965' y2='79.9965' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ nes
"<g transform='@TR'><path d='M128 0C57.3075 8.42999e-07 -8.42999e-07 57.3075 0 128H128V0Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M64 0L64 128' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ net
"<g transform='@TR'><circle cx='64' cy='64' r='64' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M64 64L64 128' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ nev
"<g transform='@TR'><path d='M64 128H0L5.59506e-06 0L64 5.59506e-06C99.3462 8.68512e-06 128 28.6538 128 64C128 99.3462 99.3462 128 64 128Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><circle cx='64' cy='64' r='16' stroke='@BG' fill='none' stroke-width='@SW'/><circle cx='32' cy='32' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='32' cy='32' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/></g>",
++ nex
"<g transform='@TR'><path d='M64 128H0L5.59506e-06 -7.62939e-06L64 -2.03434e-06C99.3462 1.05573e-06 128 28.6538 128 64C128 99.3462 99.3462 128 64 128Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><line x1='80.0035' y1='79.9964' x2='112.003' y2='111.996' stroke='@BG' fill='none' stroke-width='@SW'/><path fill-rule='evenodd' clip-rule='evenodd' d='M80 64C80 72.8366 72.8366 80 64 80C55.1634 80 48 72.8366 48 64C48 55.1634 55.1634 48 64 48C72.8366 48 80 55.1634 80 64ZM64 72C68.4183 72 72 68.4183 72 64C72 59.5817 68.4183 56 64 56C59.5817 56 56 59.5817 56 64C56 68.4183 59.5817 72 64 72Z' fill='@BG'/></g>",
++ nib
"<g transform='@TR'><circle cx='64' cy='64' r='64' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M128 64L0 64' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M128 96L0 96' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ nid
"<g transform='@TR'><path d='M0 0C0 70.6925 57.3075 128 128 128V0H0Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M128 64L0 64' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M128 128C92.6538 128 64 70.6925 64 7.63192e-07' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ nil
"<g transform='@TR'><path d='M64 0H128V128H64C28.6538 128 0 99.3462 0 64C0 28.6538 28.6538 0 64 0Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><line x1='128' y1='64' x2='-8.87604e-09' y2='64' stroke='@BG' fill='none' stroke-width='@SW'/><line x1='128' y1='32' x2='-8.87604e-09' y2='32' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ nim
"<g transform='@TR'><path d='M128 64V128H0L2.79753e-06 64C4.34256e-06 28.6538 28.6538 -1.54503e-06 64 0C99.3462 1.54503e-06 128 28.6538 128 64Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><line x1='64' y1='2.18557e-08' x2='64' y2='128' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ nis
"<g transform='@TR'><path d='M128 0C57.3075 8.42999e-07 -8.42999e-07 57.3075 0 128H128V0Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M128 32C74.9807 32 32 74.9807 32 128' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M-0.00285435 0L127.997 128' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/></g>",
++ noc
"<g transform='@TR'><path d='M64 0H128V128H64C28.6538 128 0 99.3462 0 64C0 28.6538 28.6538 0 64 0Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><line x1='64' y1='2.18557e-08' x2='64' y2='128' stroke='@BG' fill='none' stroke-width='@SW'/><circle cx='64' cy='64' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='64' cy='64' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/></g>",
++ nod
"<g transform='@TR'><path d='M64 0H128V128H64C28.6538 128 0 99.3462 0 64C0 28.6538 28.6538 0 64 0Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><circle cx='32' cy='64' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='32' cy='64' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/><circle cx='96' cy='64' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='96' cy='64' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/></g>",
++ nol
"<g transform='@TR'><circle cx='64' cy='64' r='64' fill='@FG' stroke='@BG' stroke-width='@SW'/><line x1='128' y1='64' x2='1.51277e-05' y2='64' stroke='@BG' fill='none' stroke-width='@SW'/><circle cx='64' cy='96' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='64' cy='96' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/></g>",
++ nom
"<g transform='@TR'><rect width='128' height='128' fill='@FG' stroke='@BG' stroke-width='@SW'/><circle cx='32' cy='96' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='32' cy='96' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/><circle cx='96' cy='96' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='96' cy='96' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/><circle cx='96' cy='32' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='96' cy='32' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/></g>",
++ nop
"<g transform='@TR'><circle cx='64' cy='64' r='64' fill='@FG' stroke='@BG' stroke-width='@SW'/><line x1='-0.0029152' x2='127.983' y2='127.986' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/><line y1='-0.5' x2='45.2548' y2='-0.5' transform='matrix(0.707107 -0.707107 -0.707107 -0.707107 79.65 47.65)' stroke='@BG' fill='none' stroke-width='@SW'/><circle cx='64' cy='64' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='64' cy='64' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/></g>",
++ nor
"<g transform='@TR'><path d='M64 0H128V128H64C28.6538 128 0 99.3462 0 64C0 28.6538 28.6538 0 64 0Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M64 96C46.3269 96 32 81.6731 32 64' stroke='@BG' fill='none' stroke-width='@SW'/><circle cx='64' cy='64' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='64' cy='64' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/></g>",
++ nos
"<g transform='@TR'><path d='M0 0C0 70.6925 57.3075 128 128 128V0H0Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><line x1='0.5' y1='-0.5' x2='181.5' y2='-0.5' transform='matrix(-0.707107 0.707107 0.707107 0.707107 128.71 0)' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/><circle cx='32' cy='32' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='32' cy='32' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/></g>",
++ nov
"<g transform='@TR'><rect width='128' height='128' fill='@FG' stroke='@BG' stroke-width='@SW'/><line x1='-0.0029152' x2='127.983' y2='127.986' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/><path d='M2.03434e-06 128C70.6924 128 128 70.6925 128 0' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M1.52575e-06 96C53.0193 96 96 53.0193 96 0' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M1.01717e-06 64C35.3462 64 64 35.3462 64 0' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M5.08584e-07 32C17.6731 32 32 17.6731 32 0' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ nub
"<g transform='@TR'><path d='M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M128 64L0 64' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ nul
"<g transform='@TR'><circle cx='64' cy='64' r='64' fill='@FG' stroke='@BG' stroke-width='@SW'/><circle cx='64' cy='64' r='32' stroke='@BG' fill='none' stroke-width='@SW'/><circle cx='32' cy='64' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='32' cy='64' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/></g>",
++ num
"<g transform='@TR'><path d='M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M128 0L0 128' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/><circle cx='32' cy='32' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='32' cy='32' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/><circle cx='96' cy='96' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='96' cy='96' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/></g>",
++ nup
"<g transform='@TR'><path d='M64 128H0L5.59506e-06 -7.62939e-06L64 -2.03434e-06C99.3462 1.05573e-06 128 28.6538 128 64C128 99.3462 99.3462 128 64 128Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M64 16C90.5097 16 112 37.4903 112 64C112 90.5097 90.5097 112 64 112' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ nus
"<g transform='@TR'><path d='M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M-0.00280762 0L127.997 128' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/><path d='M0.000105172 128C35.3582 128 67.3679 113.664 90.5332 90.4863' stroke='@BG' fill='none' stroke-width='@SW'/><circle cx='31' cy='32' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='31' cy='32' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/></g>",
++ nut
"<g transform='@TR'><rect width='128' height='128' fill='@FG' stroke='@BG' stroke-width='@SW'/><line x1='80.0035' y1='79.9964' x2='112.003' y2='111.996' stroke='@BG' fill='none' stroke-width='@SW'/><line y1='-0.5' x2='45.2548' y2='-0.5' transform='matrix(0.707107 -0.707107 -0.707107 -0.707107 79.6499 47.6499)' stroke='@BG' fill='none' stroke-width='@SW'/><circle cx='96' cy='96' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='96' cy='96' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/></g>",
++ nux
"<g transform='@TR'><path d='M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M128 64L0 64' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M128 96L0 96' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M128 32L0 32' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ nyd
"<g transform='@TR'><path d='M0.0541 0C70.7217 0.0292317 128 57.3256 128 128C57.3177 128 0.0164917 70.7089 7.62806e-06 0.0305091C7.62851e-06 0.0203397 -4.44317e-10 0.01017 0 0H0.0541Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M-0.00292969 0L127.997 128' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/><circle cx='64' cy='64' r='32' stroke='@BG' fill='none' stroke-width='@SW'/><circle cx='64' cy='64' r='16' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ nyl
"<g transform='@TR'><path d='M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M-0.00292969 0L127.997 128' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/><path d='M0 128C4.63574e-06 92.6489 14.3309 60.6449 37.5 37.4807' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M32 128C32 101.492 42.7436 77.4939 60.1138 60.1217' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M64 128C64 110.328 71.1626 94.3287 82.7432 82.7471' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M95.6284 128C95.6284 119.164 99.2097 111.164 105 105.374' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ nym
"<g transform='@TR'><path d='M5.59506e-06 128C70.6925 128 128 70.6925 128 0L0 5.59506e-06L5.59506e-06 128Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M64 0L64 128' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M96 0L96 128' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M32 0L32 128' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ nyr
"<g transform='@TR'><path d='M0 127.946C0.0292286 57.2783 57.3256 3.08928e-06 128 0C128 70.6823 70.7089 127.984 0.0305092 128C0.0203397 128 0.01017 128 2.36469e-09 128L0 127.946Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M-0.00268555 0L127.997 128' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/><path d='M95.9984 0C95.9984 26.3298 85.3985 50.1839 68.2332 67.5278M63.9983 0C63.9983 17.4933 56.9799 33.3473 45.6054 44.8999M31.9983 0C31.9983 8.65672 28.5609 16.5106 22.9766 22.2711' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ nys
"<g transform='@TR'><path d='M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><circle cx='16' cy='112' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='16' cy='112' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/></g>",
++ nyt
"<g transform='@TR'><path d='M64 128H0L5.59506e-06 0L64 5.59506e-06C99.3462 8.68512e-06 128 28.6538 128 64C128 99.3462 99.3462 128 64 128Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M128 64L0 64' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M64 32C81.6731 32 96 46.3269 96 64' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M64 16C90.5097 16 112 37.4903 112 64' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ nyx
"<g transform='@TR'><path d='M5.59506e-06 128C70.6925 128 128 70.6925 128 0L0 5.59506e-06L5.59506e-06 128Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M-0.00292969 0L127.997 128' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/><path fill-rule='evenodd' clip-rule='evenodd' d='M80 64C80 72.8366 72.8366 80 64 80C55.1634 80 48 72.8366 48 64C48 55.1634 55.1634 48 64 48C72.8366 48 80 55.1634 80 64ZM64 72C68.4183 72 72 68.4183 72 64C72 59.5817 68.4183 56 64 56C59.5817 56 56 59.5817 56 64C56 68.4183 59.5817 72 64 72Z' fill='@BG'/></g>",
++ pac
"<g transform='@TR'><path d='M0 0C0 70.6925 57.3075 128 128 128V0H0Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M128 0L0 128' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/><circle cx='64' cy='64' r='16' stroke='@BG' fill='none' stroke-width='@SW'/><circle cx='64' cy='32' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='64' cy='32' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/></g>",
++ pad
"<g transform='@TR'><path d='M0 0C0 70.6925 57.3075 128 128 128V0H0Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><circle cx='96' cy='32' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='96' cy='32' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/></g>",
++ pag
"<g transform='@TR'><path d='M64 0H128V128H64C28.6538 128 0 99.3462 0 64C0 28.6538 28.6538 0 64 0Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><line x1='15.9964' y1='111.997' x2='47.9964' y2='79.9965' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ pal
"<g transform='@TR'><path d='M0.0541 0C70.7217 0.0292317 128 57.3256 128 128C57.3177 128 0.0164917 70.7089 7.62806e-06 0.0305091C7.62851e-06 0.0203397 -4.44317e-10 0.01017 0 0H0.0541Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M128 0L0 128' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/><path d='M128 96C101.492 96 77.4939 85.2564 60.1217 67.8862' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M128 64C110.328 64 94.3287 56.8374 82.7471 45.2568' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M128 32.3716C119.164 32.3716 111.164 28.7903 105.374 23' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ pan
"<g transform='@TR'><path d='M0 0C0 70.6925 57.3075 128 128 128V0H0Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><line x1='0.5' y1='-0.5' x2='181.5' y2='-0.5' transform='matrix(-0.707107 0.707107 0.707107 0.707107 128.71 0)' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/><path d='M41.3726 86.6274C28.8758 74.1306 28.8758 53.8693 41.3726 41.3725C53.8694 28.8758 74.1306 28.8758 86.6274 41.3725' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ par
"<g transform='@TR'><circle cx='64' cy='64' r='64' fill='@FG' stroke='@BG' stroke-width='@SW'/><line x1='0.5' y1='-0.5' x2='181.5' y2='-0.5' transform='matrix(-0.707107 0.707107 0.707107 0.707107 128.693 0)' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/><circle cx='64' cy='64' r='16' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ pas
"<g transform='@TR'><rect width='128' height='128' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M32 0L32 128' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M64 0L64 128' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M96 0L96 128' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ pat
"<g transform='@TR'><path d='M0 0C0 70.6925 57.3075 128 128 128V0H0Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M32 -2.67054e-06C32 53.0193 74.9807 96 128 96' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M64 -1.78036e-06C64 35.3462 92.6538 64 128 64' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M96 -8.9018e-07C96 17.6731 110.327 32 128 32' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ pec
"<g transform='@TR'><path d='M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M128 0L0 128' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/><circle cx='64' cy='64' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='64' cy='64' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/></g>",
++ ped
"<g transform='@TR'><circle cx='64' cy='64' r='64' fill='@FG' stroke='@BG' stroke-width='@SW'/><circle cx='32' cy='64' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='32' cy='64' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/></g>",
++ peg
"<g transform='@TR'><rect width='128' height='128' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M96 0C96 17.6731 81.6731 32 64 32C46.3269 32 32 17.6731 32 0' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ pel
"<g transform='@TR'><path d='M0 127.946C0.0292286 57.2783 57.3256 3.08928e-06 128 0C128 70.6823 70.7089 127.984 0.0305092 128C0.0203397 128 0.01017 128 2.36469e-09 128L0 127.946Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><circle cx='64' cy='64' r='32' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M112 64C112 37.4903 90.5097 16 64 16' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ pem
"<g transform='@TR'><circle cx='64' cy='64' r='64' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M-0.00280762 0L127.997 128' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/><path d='M64 128C64 92.6538 35.3462 64 0 64' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ pen
"<g transform='@TR'><rect width='128' height='128' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M96 0C96 17.6731 81.6731 32 64 32C46.3269 32 32 17.6731 32 0' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M-0.00292969 0L127.997 128' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/></g>",
++ per
"<g transform='@TR'><path d='M0 64L5.59506e-06 0L128 1.11901e-05V64C128 99.3462 99.3462 128 64 128C28.6538 128 -4.6351e-06 99.3462 0 64Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M64 0L64 128' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ pes
"<g transform='@TR'><path d='M128 0C57.3075 8.42999e-07 -8.42999e-07 57.3075 0 128H128V0Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M64 112C90.5097 112 112 90.5097 112 64' stroke='@BG' fill='none' stroke-width='@SW'/><line x1='-0.00285417' x2='127.983' y2='127.986' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/></g>",
++ pet
"<g transform='@TR'><circle cx='64' cy='64' r='64' fill='@FG' stroke='@BG' stroke-width='@SW'/><line x1='80.0035' y1='79.9964' x2='112.003' y2='111.996' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ pex
"<g transform='@TR'><path d='M64 128H0L5.59506e-06 0L64 5.59506e-06C99.3462 8.68512e-06 128 28.6538 128 64C128 99.3462 99.3462 128 64 128Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><circle cx='64' cy='64' r='32' stroke='@BG' fill='none' stroke-width='@SW'/><path fill-rule='evenodd' clip-rule='evenodd' d='M80 64C80 72.8366 72.8366 80 64 80C55.1634 80 48 72.8366 48 64C48 55.1634 55.1634 48 64 48C72.8366 48 80 55.1634 80 64ZM64 72C68.4183 72 72 68.4183 72 64C72 59.5817 68.4183 56 64 56C59.5817 56 56 59.5817 56 64C56 68.4183 59.5817 72 64 72Z' fill='@BG'/></g>",
++ pic
"<g transform='@TR'><path d='M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M96 128C96 74.9807 53.0193 32 0 32' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M64 128C64 92.6538 35.3462 64 0 64' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M32 128C32 110.327 17.6731 96 0 96' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ pid
"<g transform='@TR'><path d='M0 0C0 70.6925 57.3075 128 128 128V0H0Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><line x1='-0.0029152' x2='127.983' y2='127.986' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/><circle cx='16' cy='112' r='11.5' fill='@BG' stroke='@BG' stroke-width='@SW'/><circle cx='16' cy='112' r='9' fill='@FG' stroke='@FG' stroke-width='@SW'/></g>",
++ pil
"<g transform='@TR'><path d='M64 0H128V128H64C28.6538 128 0 99.3462 0 64C0 28.6538 28.6538 0 64 0Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><line x1='0.5' y1='-0.5' x2='181.5' y2='-0.5' transform='matrix(-0.707107 0.707107 0.707107 0.707107 128.71 0)' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/><circle cx='96' cy='96' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='96' cy='96' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/></g>",
++ pin
"<g transform='@TR'><rect width='128' height='128' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M32 0L32 128' stroke='@BG' fill='none' stroke-width='@SW'/><circle cx='32' cy='32' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='32' cy='32' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/></g>",
++ pit
"<g transform='@TR'><path d='M0.0541 0C70.7217 0.0292317 128 57.3256 128 128C57.3177 128 0.0164917 70.7089 7.62806e-06 0.0305091C7.62851e-06 0.0203397 -4.44317e-10 0.01017 0 0H0.0541Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><line x1='0.5' y1='-0.5' x2='181.5' y2='-0.5' transform='matrix(-0.707107 0.707107 0.707107 0.707107 128.71 0)' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/><circle cx='16' cy='112' r='11.5' fill='@BG' stroke='@BG' stroke-width='@SW'/><circle cx='16' cy='112' r='9' fill='@FG' stroke='@FG' stroke-width='@SW'/></g>",
++ poc
"<g transform='@TR'><path d='M0.0541 0C70.7217 0.0292317 128 57.3256 128 128C57.3177 128 0.0164917 70.7089 7.62806e-06 0.0305091C7.62851e-06 0.0203397 -4.44317e-10 0.01017 0 0H0.0541Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><line x1='64.5' y1='-0.5' x2='64.5' y2='127.5' stroke='@BG' fill='none' stroke-width='@SW'/><line x1='96.5' y1='-0.5' x2='96.5' y2='127.5' stroke='@BG' fill='none' stroke-width='@SW'/><line x1='32.5' y1='-0.5' x2='32.5' y2='127.5' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ pod
"<g transform='@TR'><path d='M64 0H128V128H64C28.6538 128 0 99.3462 0 64C0 28.6538 28.6538 0 64 0Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><line x1='128' y1='96' x2='-8.87604e-09' y2='96' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ pol
"<g transform='@TR'><circle cx='64' cy='64' r='64' fill='@FG' stroke='@BG' stroke-width='@SW'/><circle cx='64' cy='64' r='48' stroke='@BG' fill='none' stroke-width='@SW'/><line x1='128' y1='32' x2='-8.87604e-09' y2='32' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ pon
"<g transform='@TR'><path d='M128 0C57.3075 8.42999e-07 -8.42999e-07 57.3075 0 128H128V0Z' fill='@FG' stroke='@BG' stroke-width='@SW'/></g>",
++ pos
"<g transform='@TR'><path d='M0 0C0 70.6925 57.3075 128 128 128V0H0Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><line x1='-0.0029152' x2='127.983' y2='127.986' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/><circle cx='96' cy='32' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='96' cy='32' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/></g>",
++ pub
"<g transform='@TR'><path d='M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M32 0L32 128' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ pun
"<g transform='@TR'><circle cx='64' cy='64' r='64' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M112 64C112 37.4903 90.5097 16 64 16' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M96 64C96 46.3269 81.6731 32 64 32' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M80 64C80 55.1634 72.8366 48 64 48' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ pur
"<g transform='@TR'><path d='M5.59506e-06 128C70.6925 128 128 70.6925 128 0L0 5.59506e-06L5.59506e-06 128Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M-0.00292969 0L127.997 128' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/><path d='M3.73284e-05 64C17.6633 64 33.6554 56.8445 45.2356 45.2741' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ put
"<g transform='@TR'><rect width='128' height='128' fill='@FG' stroke='@BG' stroke-width='@SW'/><circle cx='32' cy='96' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='32' cy='96' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/></g>",
++ pyl
"<g transform='@TR'><path d='M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M-5.59506e-06 128C35.3462 128 64 99.3462 64 64C64 28.6538 35.3462 1.54503e-06 0 0' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ pyx
"<g transform='@TR'><path d='M5.59506e-06 128C70.6925 128 128 70.6925 128 0L0 5.59506e-06L5.59506e-06 128Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M-0.00292969 0L127.997 128' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/><circle cx='96' cy='32' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='96' cy='32' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/></g>",
++ rab
"<g transform='@TR'><path d='M128 0C57.3075 8.42999e-07 -8.42999e-07 57.3075 0 128H128V0Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M-0.00292969 0L127.997 128' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/><line x1='15.9965' y1='111.997' x2='47.9964' y2='79.9965' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ rac
"<g transform='@TR'><path d='M0.0541 0C70.7217 0.0292317 128 57.3256 128 128C57.3177 128 0.0164917 70.7089 7.62806e-06 0.0305091C7.62851e-06 0.0203397 -4.44317e-10 0.01017 0 0H0.0541Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><circle cx='16' cy='112' r='11.5' fill='@BG' stroke='@BG' stroke-width='@SW'/><circle cx='16' cy='112' r='9' fill='@FG' stroke='@FG' stroke-width='@SW'/></g>",
++ rad
"<g transform='@TR'><path d='M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><circle cx='32' cy='96' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='32' cy='96' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/></g>",
++ rag
"<g transform='@TR'><path d='M64 0H128V128H64C28.6538 128 0 99.3462 0 64C0 28.6538 28.6538 0 64 0Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><line x1='16.0036' y1='15.9965' x2='48.0036' y2='47.9965' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ ral
"<g transform='@TR'><path d='M0.0541 0C70.7217 0.0292317 128 57.3256 128 128C57.3177 128 0.0164917 70.7089 7.62806e-06 0.0305091C7.62851e-06 0.0203397 -4.44317e-10 0.01017 0 0H0.0541Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><circle cx='64' cy='64' r='32' stroke='@BG' fill='none' stroke-width='@SW'/><circle cx='64' cy='64' r='16' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ ram
"<g transform='@TR'><path d='M64 0H128V128H64C28.6538 128 0 99.3462 0 64C0 28.6538 28.6538 0 64 0Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><line x1='64' y1='2.18557e-08' x2='64' y2='128' stroke='@BG' fill='none' stroke-width='@SW'/><path fill-rule='evenodd' clip-rule='evenodd' d='M80 64C80 72.8366 72.8366 80 64 80C55.1634 80 48 72.8366 48 64C48 55.1634 55.1634 48 64 48C72.8366 48 80 55.1634 80 64ZM64 72C68.4183 72 72 68.4183 72 64C72 59.5817 68.4183 56 64 56C59.5817 56 56 59.5817 56 64C56 68.4183 59.5817 72 64 72Z' fill='@BG'/></g>",
++ ran
"<g transform='@TR'><path d='M64 0H128V128H64C28.6538 128 0 99.3462 0 64C0 28.6538 28.6538 0 64 0Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M64 0L64 128' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M-0.00291443 0L127.997 128' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/><circle cx='64' cy='64' r='16' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ rap
"<g transform='@TR'><path d='M0 0C0 70.6925 57.3075 128 128 128V0H0Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><line x1='64' y1='-1.29797e-08' x2='64' y2='128' stroke='@BG' fill='none' stroke-width='@SW'/><circle cx='96' cy='64' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='96' cy='64' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/></g>",
++ rav
"<g transform='@TR'><path d='M0 0C0 70.6925 57.3075 128 128 128V0H0Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M128 32L0 32' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ reb
"<g transform='@TR'><rect width='128' height='128' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M128 -9.40976e-06C57.3075 -6.31969e-06 -3.09007e-06 57.3075 0 128' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ rec
"<g transform='@TR'><path d='M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><circle cx='32' cy='96' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='32' cy='96' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/><circle cx='96' cy='96' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='96' cy='96' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/></g>",
++ red
"<g transform='@TR'><circle cx='64' cy='64' r='64' fill='@FG' stroke='@BG' stroke-width='@SW'/><circle cx='64' cy='96' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='64' cy='96' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/></g>",
++ ref
"<g transform='@TR'><path d='M0.0541 0C70.7217 0.0292317 128 57.3256 128 128C57.3177 128 0.0164917 70.7089 7.62806e-06 0.0305091C7.62851e-06 0.0203397 -4.44317e-10 0.01017 0 0H0.0541Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M-0.00292969 0L127.997 128' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/><circle cx='16' cy='112' r='11.5' fill='@BG' stroke='@BG' stroke-width='@SW'/><circle cx='16' cy='112' r='9' fill='@FG' stroke='@FG' stroke-width='@SW'/></g>",
++ reg
"<g transform='@TR'><rect width='128' height='128' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M128 96C110.327 96 96 81.6731 96 64C96 46.3269 110.327 32 128 32' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ rel
"<g transform='@TR'><path d='M0 127.946C0.0292286 57.2783 57.3256 3.08928e-06 128 0C128 70.6823 70.7089 127.984 0.0305092 128C0.0203397 128 0.01017 128 2.36469e-09 128L0 127.946Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M128 64L0 64' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M128 96L0 96' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M128 32L0 32' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ rem
"<g transform='@TR'><circle cx='64' cy='64' r='64' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M-0.00292969 0L127.997 128' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/><path d='M128 64C92.6538 64 64 35.3462 64 0' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ ren
"<g transform='@TR'><rect width='128' height='128' fill='@FG' stroke='@BG' stroke-width='@SW'/><line x1='80.0035' y1='79.9965' x2='112.003' y2='111.997' stroke='@BG' fill='none' stroke-width='@SW'/><circle cx='64' cy='64' r='16' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ rep
"<g transform='@TR'><path d='M128 0C57.3075 8.42999e-07 -8.42999e-07 57.3075 0 128H128V0Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M32 128C32 74.9807 74.9807 32 128 32' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ res
"<g transform='@TR'><path d='M128 0C57.3075 8.42999e-07 -8.42999e-07 57.3075 0 128H128V0Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><line x1='80.0035' y1='79.9965' x2='112.003' y2='111.997' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ ret
"<g transform='@TR'><circle cx='64' cy='64' r='64' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M128 64L0 64' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ rev
"<g transform='@TR'><path d='M64 128H0L5.59506e-06 0L64 5.59506e-06C99.3462 8.68512e-06 128 28.6538 128 64C128 99.3462 99.3462 128 64 128Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><line x1='15.9965' y1='111.997' x2='53.9965' y2='73.9965' stroke='@BG' fill='none' stroke-width='@SW'/><circle cx='16' cy='112' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='16' cy='112' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/><path fill-rule='evenodd' clip-rule='evenodd' d='M80 64C80 72.8366 72.8366 80 64 80C55.1634 80 48 72.8366 48 64C48 55.1634 55.1634 48 64 48C72.8366 48 80 55.1634 80 64ZM64 72C68.4183 72 72 68.4183 72 64C72 59.5817 68.4183 56 64 56C59.5817 56 56 59.5817 56 64C56 68.4183 59.5817 72 64 72Z' fill='@BG'/></g>",
++ rex
"<g transform='@TR'><path d='M64 128H0L5.59506e-06 0L64 5.59506e-06C99.3462 8.68512e-06 128 28.6538 128 64C128 99.3462 99.3462 128 64 128Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M128 64L0 64' stroke='@BG' fill='none' stroke-width='@SW'/><path fill-rule='evenodd' clip-rule='evenodd' d='M80 64C80 72.8366 72.8366 80 64 80C55.1634 80 48 72.8366 48 64C48 55.1634 55.1634 48 64 48C72.8366 48 80 55.1634 80 64ZM64 72C68.4183 72 72 68.4183 72 64C72 59.5817 68.4183 56 64 56C59.5817 56 56 59.5817 56 64C56 68.4183 59.5817 72 64 72Z' fill='@BG'/></g>",
++ rib
"<g transform='@TR'><circle cx='64' cy='64' r='64' fill='@FG' stroke='@BG' stroke-width='@SW'/><line x1='8.74228e-08' y1='64' x2='128' y2='64' stroke='@BG' fill='none' stroke-width='@SW'/><line x1='64' y1='2.18557e-08' x2='64' y2='128' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ ric
"<g transform='@TR'><path d='M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M96 128C96 74.9807 53.0193 32 0 32' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ rid
"<g transform='@TR'><path d='M0 0C0 70.6925 57.3075 128 128 128V0H0Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M64 0L64 128' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M96 0L96 128' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ rig
"<g transform='@TR'><circle cx='64' cy='64' r='64' fill='@FG' stroke='@BG' stroke-width='@SW'/><circle cx='64' cy='32' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='64' cy='32' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/><circle cx='64' cy='96' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='64' cy='96' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/></g>",
++ ril
"<g transform='@TR'><path d='M64 0H128V128H64C28.6538 128 0 99.3462 0 64C0 28.6538 28.6538 0 64 0Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><line x1='0.5' y1='-0.5' x2='181.5' y2='-0.5' transform='matrix(-0.707107 0.707107 0.707107 0.707107 128.693 0)' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/><circle cx='96' cy='32' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='96' cy='32' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/></g>",
++ rin
"<g transform='@TR'><rect width='128' height='128' fill='@FG' stroke='@BG' stroke-width='@SW'/><line x1='64' y1='2.18557e-08' x2='64' y2='128' stroke='@BG' fill='none' stroke-width='@SW'/><line x1='32' y1='2.18557e-08' x2='32' y2='128' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ rip
"<g transform='@TR'><path d='M64 0H128V128H64C28.6538 128 0 99.3462 0 64C0 28.6538 28.6538 0 64 0Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M-0.00292969 0L127.997 128' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/><path d='M96 64C96 46.3269 81.6731 32 64 32' stroke='@BG' fill='none' stroke-width='@SW'/><circle cx='96' cy='64' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='96' cy='64' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/></g>",
++ ris
"<g transform='@TR'><path d='M128 0C57.3075 8.42999e-07 -8.42999e-07 57.3075 0 128H128V0Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><line x1='-0.0029152' x2='127.983' y2='127.986' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/><path d='M128 0C128 35.3511 113.669 67.3551 90.5 90.5193' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M96 0C96 26.5077 85.2564 50.5061 67.8862 67.8783' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M64 0C64 17.6721 56.8374 33.6713 45.2568 45.2529' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M32.3716 0C32.3716 8.83603 28.7903 16.8356 23 22.6264' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ rit
"<g transform='@TR'><path d='M0.0541 0C70.7217 0.0292317 128 57.3256 128 128C57.3177 128 0.0164917 70.7089 7.62806e-06 0.0305091C7.62851e-06 0.0203397 -4.44317e-10 0.01017 0 0H0.0541Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><line x1='0.5' y1='-0.5' x2='181.5' y2='-0.5' transform='matrix(-0.707107 0.707107 0.707107 0.707107 128.71 0)' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/><path fill-rule='evenodd' clip-rule='evenodd' d='M80 64C80 72.8366 72.8366 80 64 80C55.1634 80 48 72.8366 48 64C48 55.1634 55.1634 48 64 48C72.8366 48 80 55.1634 80 64ZM64 72C68.4183 72 72 68.4183 72 64C72 59.5817 68.4183 56 64 56C59.5817 56 56 59.5817 56 64C56 68.4183 59.5817 72 64 72Z' fill='@BG'/></g>",
++ riv
"<g transform='@TR'><rect width='128' height='128' fill='@FG' stroke='@BG' stroke-width='@SW'/><circle cx='64' cy='64' r='32' stroke='@BG' fill='none' stroke-width='@SW'/><line x1='64' y1='2.18557e-08' x2='64' y2='128' stroke='@BG' fill='none' stroke-width='@SW'/><circle cx='64' cy='64' r='48' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ roc
"<g transform='@TR'><path d='M0.0541 0C70.7217 0.0292317 128 57.3256 128 128C57.3177 128 0.0164917 70.7089 7.62806e-06 0.0305091C7.62851e-06 0.0203397 -4.44317e-10 0.01017 0 0H0.0541Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><circle cx='64' cy='64' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='64' cy='64' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/><circle cx='16' cy='112' r='11.5' fill='@BG' stroke='@BG' stroke-width='@SW'/><circle cx='16' cy='112' r='9' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='112' cy='16' r='11.5' fill='@BG' stroke='@BG' stroke-width='@SW'/><circle cx='112' cy='16' r='9' fill='@FG' stroke='@FG' stroke-width='@SW'/></g>",
++ rol
"<g transform='@TR'><circle cx='64' cy='64' r='64' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M128 64L0 64' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M64 16C90.5097 16 112 37.4903 112 64C112 90.5097 90.5097 112 64 112' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ ron
"<g transform='@TR'><path d='M128 0C57.3075 8.42999e-07 -8.42999e-07 57.3075 0 128H128V0Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M128 0C128 70.6924 70.6925 128 0 128' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ rop
"<g transform='@TR'><circle cx='64' cy='64' r='64' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M-0.00292969 0L127.997 128' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/><path d='M112 64C112 37.4903 90.5097 16 64 16' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ ros
"<g transform='@TR'><path d='M0 0C0 70.6925 57.3075 128 128 128V0H0Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><line x1='0.5' y1='-0.5' x2='181.5' y2='-0.5' transform='matrix(-0.707107 0.707107 0.707107 0.707107 128.71 0)' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/><circle cx='96' cy='96' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='96' cy='96' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/></g>",
++ rov
"<g transform='@TR'><rect width='128' height='128' fill='@FG' stroke='@BG' stroke-width='@SW'/><line x1='-0.0029152' x2='127.983' y2='127.986' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/><path d='M128 0C128 35.3511 113.669 67.3551 90.5 90.5193' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M96 0C96 26.5077 85.2564 50.5061 67.8862 67.8783' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M64 0C64 17.6721 56.8374 33.6713 45.2568 45.2529' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M32.3716 0C32.3716 8.83603 28.7903 16.8356 23 22.6264' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ ruc
"<g transform='@TR'><path d='M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M128 64L0 64' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M128 32L0 32' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ rud
"<g transform='@TR'><path d='M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M128 64L0 64' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M32 0L32 128' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M64 0L64 128' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ rul
"<g transform='@TR'><circle cx='64' cy='64' r='64' fill='@FG' stroke='@BG' stroke-width='@SW'/><line x1='80.0035' y1='79.9964' x2='112.003' y2='111.996' stroke='@BG' fill='none' stroke-width='@SW'/><path fill-rule='evenodd' clip-rule='evenodd' d='M80 64C80 72.8366 72.8366 80 64 80C55.1634 80 48 72.8366 48 64C48 55.1634 55.1634 48 64 48C72.8366 48 80 55.1634 80 64ZM64 72C68.4183 72 72 68.4183 72 64C72 59.5817 68.4183 56 64 56C59.5817 56 56 59.5817 56 64C56 68.4183 59.5817 72 64 72Z' fill='@BG'/></g>",
++ rum
"<g transform='@TR'><path d='M5.59506e-06 128C70.6925 128 128 70.6925 128 0L0 5.59506e-06L5.59506e-06 128Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M5.08584e-07 32C17.6731 32 32 17.6731 32 0' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ run
"<g transform='@TR'><path d='M64 128H0L5.59506e-06 0L64 5.59506e-06C99.3462 8.68512e-06 128 28.6538 128 64C128 99.3462 99.3462 128 64 128Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M64 0L64 128' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M96 0L96 128' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M32 0L32 128' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ rup
"<g transform='@TR'><path d='M64 128H0L5.59506e-06 0L64 5.59506e-06C99.3462 8.68512e-06 128 28.6538 128 64C128 99.3462 99.3462 128 64 128Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M64 0L64 128' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M64 112C90.5097 112 112 90.5097 112 64C112 37.4903 90.5097 16 64 16' stroke='@BG' fill='none' stroke-width='@SW'/><circle cx='64' cy='64' r='32' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ rus
"<g transform='@TR'><path d='M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M128 0L0 128' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/><path d='M64 128C64 92.6538 35.3462 64 0 64' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ rut
"<g transform='@TR'><rect width='128' height='128' fill='@FG' stroke='@BG' stroke-width='@SW'/><circle cx='32' cy='32' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='32' cy='32' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/></g>",
++ rux
"<g transform='@TR'><path d='M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M128 64L0 64' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M32 64C32 81.6731 46.3269 96 64 96' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ ryc
"<g transform='@TR'><path d='M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M128 96L0 96' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ ryd
"<g transform='@TR'><path d='M0.0541 0C70.7217 0.0292317 128 57.3256 128 128C57.3177 128 0.0164917 70.7089 7.62806e-06 0.0305091C7.62851e-06 0.0203397 -4.44317e-10 0.01017 0 0H0.0541Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M-0.00280762 0L127.997 128' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/><path d='M96 64C96 81.6731 81.6731 96 64 96' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ ryg
"<g transform='@TR'><path d='M5.59506e-06 128C70.6925 128 128 70.6925 128 0L0 5.59506e-06L5.59506e-06 128Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M-2.79795e-06 -3.55988e-06C70.6924 -4.40288e-06 128 57.3075 128 128' stroke='@BG' fill='none' stroke-width='@SW'/><line x1='16.0035' y1='15.9965' x2='48.0035' y2='47.9965' stroke='@BG' fill='none' stroke-width='@SW'/><circle cx='64' cy='64' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='64' cy='64' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/></g>",
++ ryl
"<g transform='@TR'><path d='M0 0C0 70.6925 57.3075 128 128 128V0H0Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M128 0L0 128' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/><path d='M128 128C92.6489 128 60.6449 113.669 37.4807 90.5' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M128 96C101.492 96 77.4939 85.2564 60.1217 67.8862' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M128 64C110.328 64 94.3287 56.8374 82.7471 45.2568' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M128 32.3716C119.164 32.3716 111.164 28.7903 105.374 23' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ rym
"<g transform='@TR'><path d='M5.59506e-06 128C70.6925 128 128 70.6925 128 0L0 5.59506e-06L5.59506e-06 128Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M128 96L0 96' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ ryn
"<g transform='@TR'><path d='M5.59506e-06 128C70.6925 128 128 70.6925 128 0L0 5.59506e-06L5.59506e-06 128Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M128 128C57.3075 128 -3.09007e-06 70.6925 0 0' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ ryp
"<g transform='@TR'><path d='M5.59506e-06 128C70.6925 128 128 70.6925 128 0L0 5.59506e-06L5.59506e-06 128Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M-0.00292969 0L127.997 128' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/></g>",
++ rys
"<g transform='@TR'><path d='M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M1.52575e-06 96C53.0193 96 96 53.0193 96 0' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ ryt
"<g transform='@TR'><path d='M64 128H0L5.59506e-06 -7.62939e-06L64 -2.03434e-06C99.3462 1.05573e-06 128 28.6538 128 64C128 99.3462 99.3462 128 64 128Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><circle cx='64' cy='64' r='16' stroke='@BG' fill='none' stroke-width='@SW'/><circle cx='64' cy='64' r='48' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M128 0L0 128' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/></g>",
++ ryx
"<g transform='@TR'><path d='M5.59506e-06 128C70.6925 128 128 70.6925 128 0L0 5.59506e-06L5.59506e-06 128Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><line x1='0.5' y1='-0.5' x2='181.5' y2='-0.5' transform='matrix(-0.707107 0.707107 0.707107 0.707107 128.71 0)' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/><path d='M128 0L0 128' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/><circle cx='64' cy='64' r='16' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ sab
"<g transform='@TR'><path d='M0 0C0 70.6925 57.3075 128 128 128V0H0Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M-0.00292969 0L127.997 128' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/><line y1='-0.5' x2='45.2548' y2='-0.5' transform='matrix(0.707107 -0.707107 -0.707107 -0.707107 79.65 47.65)' stroke='@BG' fill='none' stroke-width='@SW'/><circle cx='16' cy='112' r='11.5' fill='@BG' stroke='@BG' stroke-width='@SW'/><circle cx='16' cy='112' r='9' fill='@FG' stroke='@FG' stroke-width='@SW'/></g>",
++ sal
"<g transform='@TR'><path d='M0.0541 0C70.7217 0.0292317 128 57.3256 128 128C57.3177 128 0.0164917 70.7089 7.62806e-06 0.0305091C7.62851e-06 0.0203397 -4.44317e-10 0.01017 0 0H0.0541Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M0 128L128 0' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/><path d='M-0.701724 31.9914C25.6281 31.9914 49.4822 42.5913 66.8261 59.7565M-0.701723 63.9914C16.7916 63.9914 32.6456 71.0098 44.1982 82.3844M-0.701722 95.9914C7.955 95.9914 15.8089 99.4288 21.5694 105.013' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ sam
"<g transform='@TR'><path d='M64 0H128V128H64C28.6538 128 0 99.3462 0 64C0 28.6538 28.6538 0 64 0Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><circle cx='64' cy='64' r='48' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M64 0L64 128' stroke='@BG' fill='none' stroke-width='@SW'/><path fill-rule='evenodd' clip-rule='evenodd' d='M80 64C80 72.8366 72.8366 80 64 80C55.1634 80 48 72.8366 48 64C48 55.1634 55.1634 48 64 48C72.8366 48 80 55.1634 80 64ZM64 72C68.4183 72 72 68.4183 72 64C72 59.5817 68.4183 56 64 56C59.5817 56 56 59.5817 56 64C56 68.4183 59.5817 72 64 72Z' fill='@BG'/></g>",
++ san
"<g transform='@TR'><path d='M0 0C0 70.6925 57.3075 128 128 128V0H0Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><line x1='-0.0029152' x2='127.983' y2='127.986' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/></g>",
++ sap
"<g transform='@TR'><path d='M0 0C0 70.6925 57.3075 128 128 128V0H0Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><line x1='128' y1='64' x2='-4.37114e-08' y2='64' stroke='@BG' fill='none' stroke-width='@SW'/><circle cx='96' cy='64' r='8' fill='@BG'/></g>",
++ sar
"<g transform='@TR'><circle cx='64' cy='64' r='64' fill='@FG' stroke='@BG' stroke-width='@SW'/><circle cx='64' cy='64' r='48' stroke='@BG' fill='none' stroke-width='@SW'/><circle cx='64' cy='64' r='48' stroke='@BG' fill='none' stroke-width='@SW'/><line x1='64' y1='2.18557e-08' x2='64' y2='128' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ sat
"<g transform='@TR'><path d='M0 0C0 70.6925 57.3075 128 128 128V0H0Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M128 128C128 57.3076 70.6925 0 0 0' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ sav
"<g transform='@TR'><path d='M64 0H128V128H64C28.6538 128 0 99.3462 0 64C0 28.6538 28.6538 0 64 0Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><line x1='0.5' y1='-0.5' x2='181.5' y2='-0.5' transform='matrix(-0.707107 0.707107 0.707107 0.707107 128.71 0)' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/><path d='M96 64C96 46.3269 81.6731 32 64 32' stroke='@BG' fill='none' stroke-width='@SW'/><circle cx='64' cy='32' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='64' cy='32' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/></g>",
++ seb
"<g transform='@TR'><rect width='128' height='128' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M128 64C92.6538 64 64 35.3462 64 0' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ sec
"<g transform='@TR'><path d='M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><circle cx='32' cy='32' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='32' cy='32' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/></g>",
++ sed
"<g transform='@TR'><circle cx='64' cy='64' r='64' fill='@FG' stroke='@BG' stroke-width='@SW'/><circle cx='64' cy='64' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='64' cy='64' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/><circle cx='96' cy='64' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='96' cy='64' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/></g>",
++ sef
"<g transform='@TR'><path d='M0.0541 0C70.7217 0.0292317 128 57.3256 128 128C57.3177 128 0.0164917 70.7089 7.62806e-06 0.0305091C7.62851e-06 0.0203397 -4.44317e-10 0.01017 0 0H0.0541Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><circle cx='64' cy='64' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='64' cy='64' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/><circle cx='16' cy='112' r='11.5' fill='@BG' stroke='@BG' stroke-width='@SW'/><circle cx='16' cy='112' r='9' fill='@FG' stroke='@FG' stroke-width='@SW'/></g>",
++ seg
"<g transform='@TR'><rect width='128' height='128' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M32 128C32 110.327 46.3269 96 64 96C81.6731 96 96 110.327 96 128' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ sel
"<g transform='@TR'><path d='M0 127.946C0.0292286 57.2783 57.3256 3.08928e-06 128 0C128 70.6823 70.7089 127.984 0.0305092 128C0.0203397 128 0.01017 128 2.36469e-09 128L0 127.946Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><circle cx='64' cy='64' r='8' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ sem
"<g transform='@TR'><circle cx='64' cy='64' r='64' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M1.01717e-06 64C35.3462 64 64 35.3462 64 0' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M-0.00292969 0L127.997 128' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/></g>",
++ sen
"<g transform='@TR'><rect width='128' height='128' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M64 0L64 128' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M96 128C96 110.327 81.6731 96 64 96C46.3269 96 32 110.327 32 128' stroke='@BG' fill='none' stroke-width='@SW'/><circle cx='64' cy='64' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='64' cy='64' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/></g>",
++ sep
"<g transform='@TR'><path d='M128 0C57.3075 8.42999e-07 -8.42999e-07 57.3075 0 128H128V0Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M64 128L64 0' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M32 128L32 0' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M96 128L96 0' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ ser
"<g transform='@TR'><path d='M0 64L5.59506e-06 0L128 1.11901e-05V64C128 99.3462 99.3462 128 64 128C28.6538 128 -4.6351e-06 99.3462 0 64Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M32 0L32 128' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ set
"<g transform='@TR'><circle cx='64' cy='64' r='64' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M64 64L128 64' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ sev
"<g transform='@TR'><path d='M64 128H0L5.59506e-06 0L64 5.59506e-06C99.3462 8.68512e-06 128 28.6538 128 64C128 99.3462 99.3462 128 64 128Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><circle cx='64' cy='64' r='48' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ sib
"<g transform='@TR'><circle cx='64' cy='64' r='64' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M128 0L0 128' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/><path d='M64 9.40976e-06C64 35.3462 92.6538 64 128 64' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ sic
"<g transform='@TR'><path d='M0 0C0 70.6925 57.3075 128 128 128V0H0Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M128 0L0 128' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/></g>",
++ sid
"<g transform='@TR'><path d='M0 0C0 70.6925 57.3075 128 128 128V0H0Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M128 64L0 64' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M128 128C110.327 128 96 113.673 96 96C96 78.3269 110.327 64 128 64' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ sig
"<g transform='@TR'><circle cx='64' cy='64' r='64' fill='@FG' stroke='@BG' stroke-width='@SW'/><circle cx='32' cy='64' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='32' cy='64' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/><circle cx='96' cy='64' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='96' cy='64' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/></g>",
++ sil
"<g transform='@TR'><path d='M64 0H128V128H64C28.6538 128 0 99.3462 0 64C0 28.6538 28.6538 0 64 0Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><line x1='16.0036' y1='15.9965' x2='48.0036' y2='47.9965' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M128 0L0 128' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/></g>",
++ sim
"<g transform='@TR'><path d='M128 64V128H0L2.79753e-06 64C4.34256e-06 28.6538 28.6538 -1.54503e-06 64 0C99.3462 1.54503e-06 128 28.6538 128 64Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M64 0L64 128' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M32 0L32 128' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ sip
"<g transform='@TR'><rect width='128' height='128' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M64 0L64 128' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M16 64C16 37.4903 37.4903 16 64 16' stroke='@BG' fill='none' stroke-width='@SW'/><circle cx='16' cy='64' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='16' cy='64' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/></g>",
++ sit
"<g transform='@TR'><path d='M0.0541 0C70.7217 0.0292317 128 57.3256 128 128C57.3177 128 0.0164917 70.7089 7.62806e-06 0.0305091C7.62851e-06 0.0203397 -4.44317e-10 0.01017 0 0H0.0541Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path fill-rule='evenodd' clip-rule='evenodd' d='M80 64C80 72.8366 72.8366 80 64 80C55.1634 80 48 72.8366 48 64C48 55.1634 55.1634 48 64 48C72.8366 48 80 55.1634 80 64ZM64 72C68.4183 72 72 68.4183 72 64C72 59.5817 68.4183 56 64 56C59.5817 56 56 59.5817 56 64C56 68.4183 59.5817 72 64 72Z' fill='@BG'/></g>",
++ siv
"<g transform='@TR'><rect width='128' height='128' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M64 0L64 128' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M128 96L0 96' stroke='@BG' fill='none' stroke-width='@SW'/><circle cx='64' cy='64' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='64' cy='64' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/></g>",
++ soc
"<g transform='@TR'><path d='M0 127.946C0.0292286 57.2783 57.3256 3.08928e-06 128 0C128 70.6823 70.7089 127.984 0.0305092 128C0.0203397 128 0.01017 128 2.36469e-09 128L0 127.946Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><line x1='64' y1='2.18557e-08' x2='64' y2='128' stroke='@BG' fill='none' stroke-width='@SW'/><circle cx='64' cy='64' r='16' stroke='@BG' fill='none' stroke-width='@SW'/><circle cx='16' cy='16' r='11.5' fill='@BG' stroke='@BG' stroke-width='@SW'/><circle cx='16' cy='16' r='9' fill='@FG' stroke='@FG' stroke-width='@SW'/></g>",
++ sog
"<g transform='@TR'><path d='M128 0C57.3075 8.42999e-07 -8.42999e-07 57.3075 0 128H128V0Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M128 0L0 128' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/><path d='M64 96C81.6731 96 96 81.6731 96 64C96 46.3269 81.6731 32 64 32' stroke='@BG' fill='none' stroke-width='@SW'/><circle cx='64' cy='64' r='16' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ sol
"<g transform='@TR'><circle cx='64' cy='64' r='64' fill='@FG' stroke='@BG' stroke-width='@SW'/><circle cx='64' cy='64' r='32' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M128 64L-5.96046e-08 64' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ som
"<g transform='@TR'><rect width='128' height='128' fill='@FG' stroke='@BG' stroke-width='@SW'/><circle cx='96' cy='96' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='96' cy='96' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/><circle cx='32' cy='96' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='32' cy='96' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/><circle cx='32' cy='32' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='32' cy='32' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/></g>",
++ son
"<g transform='@TR'><path d='M128 0C57.3075 8.42999e-07 -8.42999e-07 57.3075 0 128H128V0Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><line x1='127.553' y1='128.224' x2='63.5528' y2='0.223598' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ sop
"<g transform='@TR'><circle cx='64' cy='64' r='64' fill='@FG' stroke='@BG' stroke-width='@SW'/><circle cx='64' cy='64' r='32' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M-0.00292969 0L127.997 128' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/><circle cx='64' cy='32' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='64' cy='32' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/></g>",
++ sor
"<g transform='@TR'><path d='M64 0H128V128H64C28.6538 128 0 99.3462 0 64C0 28.6538 28.6538 0 64 0Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M-0.00292969 0L127.997 128' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/><path d='M128 0C128 35.3511 113.669 67.3551 90.5 90.5193' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M96 0C96 26.5077 85.2564 50.5061 67.8862 67.8783' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M64 0C64 17.6721 56.8374 33.6713 45.2568 45.2529' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M32.3716 0C32.3716 8.83603 28.7903 16.8356 23 22.6264' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ sov
"<g transform='@TR'><rect width='128' height='128' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M0 128L128 0' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/><path d='M128 128C92.6489 128 60.6449 113.669 37.4807 90.5' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M128 96C101.492 96 77.4939 85.2564 60.1217 67.8862' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M128 64C110.328 64 94.3287 56.8374 82.7471 45.2568' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M128 32.3716C119.164 32.3716 111.164 28.7903 105.374 23' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ sub
"<g transform='@TR'><path d='M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M64 0L64 128' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ sud
"<g transform='@TR'><path d='M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><line x1='128' y1='64' x2='-8.87604e-09' y2='64' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M128 64L0 64' stroke='@BG' fill='none' stroke-width='@SW'/><path fill-rule='evenodd' clip-rule='evenodd' d='M80 64C80 72.8366 72.8366 80 64 80C55.1634 80 48 72.8366 48 64C48 55.1634 55.1634 48 64 48C72.8366 48 80 55.1634 80 64ZM64 72C68.4183 72 72 68.4183 72 64C72 59.5817 68.4183 56 64 56C59.5817 56 56 59.5817 56 64C56 68.4183 59.5817 72 64 72Z' fill='@BG'/></g>",
++ sug
"<g transform='@TR'><path d='M64 128H0L5.59506e-06 0L64 5.59506e-06C99.3462 8.68512e-06 128 28.6538 128 64C128 99.3462 99.3462 128 64 128Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><circle cx='16' cy='64' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='16' cy='64' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/><circle cx='80' cy='64' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='80' cy='64' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/></g>",
++ sul
"<g transform='@TR'><circle cx='64' cy='64' r='64' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M64 96C46.3269 96 32 81.6731 32 64C32 46.3269 46.3269 32 64 32' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ sum
"<g transform='@TR'><path d='M5.59506e-06 128C70.6925 128 128 70.6925 128 0L0 5.59506e-06L5.59506e-06 128Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M1.01717e-06 64C35.3462 64 64 35.3462 64 0' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ sun
"<g transform='@TR'><circle cx='64' cy='64' r='64' stroke='@BG' stroke-width='@SW' fill='@FG'/><circle cx='80' cy='80' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='80' cy='80' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/><circle cx='80' cy='48' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='80' cy='48' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/><circle cx='48' cy='48' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='48' cy='48' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/><circle cx='48' cy='80' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='48' cy='80' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/></g>",
++ sup
"<g transform='@TR'><path d='M64 128H0L5.59506e-06 0L64 5.59506e-06C99.3462 8.68512e-06 128 28.6538 128 64C128 99.3462 99.3462 128 64 128Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M64 112C90.5097 112 112 90.5097 112 64C112 37.4903 90.5097 16 64 16' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M128 64L0 64' stroke='@BG' fill='none' stroke-width='@SW'/><circle cx='64' cy='64' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='64' cy='64' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/></g>",
++ sur
"<g transform='@TR'><path d='M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M-0.00292969 0L127.997 128' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/><path d='M3.73284e-05 64.0001C17.6633 64.0001 33.6554 56.8446 45.2356 45.2742' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M0.000105172 128C35.3582 128 67.3679 113.664 90.5332 90.4863' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ sut
"<g transform='@TR'><rect width='128' height='128' fill='@FG' stroke='@BG' stroke-width='@SW'/><circle cx='32' cy='32' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='32' cy='32' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/><circle cx='96' cy='96' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='96' cy='96' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/></g>",
++ syd
"<g transform='@TR'><path d='M0.0541 0C70.7217 0.0292317 128 57.3256 128 128C57.3177 128 0.0164917 70.7089 7.62806e-06 0.0305091C7.62851e-06 0.0203397 -4.44317e-10 0.01017 0 0H0.0541Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M64 16C37.4903 16 16 37.4903 16 64' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M-0.00292969 0L127.997 128' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/></g>",
++ syl
"<g transform='@TR'><path d='M5.59506e-06 128C70.6925 128 128 70.6925 128 0L0 5.59506e-06L5.59506e-06 128Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M-0.00292969 0L127.997 128' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/><circle cx='32' cy='96' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='32' cy='96' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/><circle cx='96' cy='32' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='96' cy='32' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/></g>",
++ sym
"<g transform='@TR'><path d='M5.59506e-06 128C70.6925 128 128 70.6925 128 0L0 5.59506e-06L5.59506e-06 128Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><line x1='96.5' y1='3.07317e-08' x2='96.5' y2='128' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ syn
"<g transform='@TR'><path d='M5.59506e-06 128C70.6925 128 128 70.6925 128 0L0 5.59506e-06L5.59506e-06 128Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M0 0C35.3511 0 67.3551 14.3309 90.5193 37.5' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M0 32C26.5077 32 50.5061 42.7436 67.8783 60.1138' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M0 64C17.6721 64 33.6713 71.1626 45.2529 82.7432' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M0 95.6284C8.83603 95.6284 16.8356 99.2097 22.6264 105' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ syp
"<g transform='@TR'><path d='M5.59506e-06 128C70.6925 128 128 70.6925 128 0L0 5.59506e-06L5.59506e-06 128Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M-0.00280762 0L127.997 128' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/><path d='M1.01717e-06 64C35.3462 64 64 35.3462 64 0' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ syr
"<g transform='@TR'><path d='M0 127.946C0.0292286 57.2783 57.3256 3.08928e-06 128 0C128 70.6823 70.7089 127.984 0.0305092 128C0.0203397 128 0.01017 128 2.36469e-09 128L0 127.946Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M-0.00292969 0L127.997 128' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/><circle cx='96' cy='32' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='96' cy='32' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/></g>",
++ syt
"<g transform='@TR'><path d='M64 128H0L5.59506e-06 0L64 5.59506e-06C99.3462 8.68512e-06 128 28.6538 128 64C128 99.3462 99.3462 128 64 128Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><circle cx='64' cy='64' r='32' stroke='@BG' fill='none' stroke-width='@SW'/><circle cx='64' cy='64' r='48' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M128 0L0 128' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/></g>",
++ syx
"<g transform='@TR'><path d='M5.59506e-06 128C70.6925 128 128 70.6925 128 0L0 5.59506e-06L5.59506e-06 128Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M0 128C4.63574e-06 92.6488 14.3309 60.6449 37.5 37.4807' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M32 128C32 101.492 42.7436 77.4939 60.1138 60.1216' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M64 128C64 110.328 71.1626 94.3287 82.7432 82.7471' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M95.6284 128C95.6284 119.164 99.2097 111.164 105 105.374' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M-0.00280762 0L127.997 128' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/></g>",
++ tab
"<g transform='@TR'><path d='M0 0C0 70.6925 57.3075 128 128 128V0H0Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><circle cx='64' cy='64' r='8' stroke='@BG' fill='none' stroke-width='@SW'/><line x1='-0.0029152' x2='127.983' y2='127.986' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/><circle cx='16' cy='112' r='11.5' fill='@BG' stroke='@BG' stroke-width='@SW'/><circle cx='16' cy='112' r='9' fill='@FG' stroke='@FG' stroke-width='@SW'/></g>",
++ tac
"<g transform='@TR'><path d='M0 0C0 70.6925 57.3075 128 128 128V0H0Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M128 0L0 128' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/><circle cx='64' cy='32' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='64' cy='32' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/><circle cx='96' cy='64' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='96' cy='64' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/></g>",
++ tad
"<g transform='@TR'><path d='M0 0C0 70.6925 57.3075 128 128 128V0H0Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><circle cx='32' cy='32' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='32' cy='32' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/><circle cx='96' cy='96' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='96' cy='96' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/></g>",
++ tag
"<g transform='@TR'><path d='M64 0H128V128H64C28.6538 128 0 99.3462 0 64C0 28.6538 28.6538 0 64 0Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><line x1='80.0036' y1='79.9964' x2='112.004' y2='111.996' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ tal
"<g transform='@TR'><path d='M0.0541 0C70.7217 0.0292317 128 57.3256 128 128C57.3177 128 0.0164917 70.7089 7.62806e-06 0.0305091C7.62851e-06 0.0203397 -4.44317e-10 0.01017 0 0H0.0541Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><line x1='0.5' y1='-0.5' x2='181.5' y2='-0.5' transform='matrix(-0.707107 0.707107 0.707107 0.707107 128.71 0)' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/><path d='M96 128C96 74.9807 53.0193 32 0 32' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ tam
"<g transform='@TR'><path d='M64 0H128V128H64C28.6538 128 0 99.3462 0 64C0 28.6538 28.6538 0 64 0Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><line x1='128' y1='96' x2='-8.87604e-09' y2='96' stroke='@BG' fill='none' stroke-width='@SW'/><line x1='128' y1='32' x2='-8.87604e-09' y2='32' stroke='@BG' fill='none' stroke-width='@SW'/><circle cx='64' cy='64' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='64' cy='64' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/></g>",
++ tan
"<g transform='@TR'><path d='M0 0C0 70.6925 57.3075 128 128 128V0H0Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M96 128C96 74.9807 53.0193 32 0 32' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M64 128C64 92.6538 35.3462 64 0 64' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M48 128C48 101.49 26.5097 80 0 80' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M32 128C32 110.327 17.6731 96 0 96' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M16 128C16 119.163 8.83656 112 0 112' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M128 128C128 57.3075 70.6925 0 0 0' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ tap
"<g transform='@TR'><circle cx='64' cy='64' r='64' fill='@FG' stroke='@BG' stroke-width='@SW'/><circle cx='64' cy='64' r='48' stroke='@BG' fill='none' stroke-width='@SW'/><line x1='128' y1='64' x2='-8.87604e-09' y2='64' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M64 32C81.6731 32 96 46.3269 96 64C96 81.6731 81.6731 96 64 96' stroke='@BG' fill='none' stroke-width='@SW'/><circle cx='64' cy='64' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='64' cy='64' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/></g>",
++ tar
"<g transform='@TR'><circle cx='64' cy='64' r='64' fill='@FG' stroke='@BG' stroke-width='@SW'/><circle cx='64' cy='64' r='48' stroke='@BG' fill='none' stroke-width='@SW'/><circle cx='16' cy='64' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='16' cy='64' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/></g>",
++ tas
"<g transform='@TR'><rect width='128' height='128' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M64 0L64 128' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M64 32C81.6731 32 96 46.3269 96 64C96 81.6731 81.6731 96 64 96' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ teb
"<g transform='@TR'><rect width='128' height='128' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M1.52575e-06 96C53.0193 96 96 53.0193 96 0' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ tec
"<g transform='@TR'><path d='M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><line x1='80.0035' y1='79.9965' x2='112.003' y2='111.997' stroke='@BG' fill='none' stroke-width='@SW'/><path fill-rule='evenodd' clip-rule='evenodd' d='M80 64C80 72.8366 72.8366 80 64 80C55.1634 80 48 72.8366 48 64C48 55.1634 55.1634 48 64 48C72.8366 48 80 55.1634 80 64ZM64 72C68.4183 72 72 68.4183 72 64C72 59.5817 68.4183 56 64 56C59.5817 56 56 59.5817 56 64C56 68.4183 59.5817 72 64 72Z' fill='@BG'/></g>",
++ ted
"<g transform='@TR'><circle cx='64' cy='64' r='64' fill='@FG' stroke='@BG' stroke-width='@SW'/><circle cx='32' cy='96' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='32' cy='96' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/></g>",
++ teg
"<g transform='@TR'><rect width='128' height='128' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M128 80C119.163 80 112 72.8366 112 64C112 55.1634 119.163 48 128 48' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ tel
"<g transform='@TR'><path d='M0 127.946C0.0292286 57.2783 57.3256 3.08928e-06 128 0C128 70.6823 70.7089 127.984 0.0305092 128C0.0203397 128 0.01017 128 2.36469e-09 128L0 127.946Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><circle cx='15' cy='112' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='15' cy='112' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/><path d='M0 0L127.986 127.986' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/><path d='M32 0L128 96' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/><path d='M64 0L128 64' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/><path d='M96 0L128 32' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/></g>",
++ tem
"<g transform='@TR'><circle cx='64' cy='64' r='64' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M128 64C92.6538 64 64 92.6538 64 128' stroke='@BG' fill='none' stroke-width='@SW'/><line x1='-0.00285417' x2='127.983' y2='127.986' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/></g>",
++ ten
"<g transform='@TR'><rect width='128' height='128' fill='@FG' stroke='@BG' stroke-width='@SW'/><circle cx='48' cy='48' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='48' cy='48' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/><circle cx='80' cy='48' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='80' cy='48' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/><circle cx='80' cy='80' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='80' cy='80' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/><circle cx='48' cy='80' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='48' cy='80' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/></g>",
++ tep
"<g transform='@TR'><path d='M128 0C57.3075 8.42999e-07 -8.42999e-07 57.3075 0 128H128V0Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M1.14479e-06 96C53.0193 96 96 53.0193 96 0' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ ter
"<g transform='@TR'><path d='M0 64L5.59506e-06 0L128 1.11901e-05V64C128 99.3462 99.3462 128 64 128C28.6538 128 -4.6351e-06 99.3462 0 64Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><line x1='96.5' y1='3.07317e-08' x2='96.5' y2='128' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M1.01717e-06 64C35.3462 64 64 35.3462 64 0' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ tes
"<g transform='@TR'><path d='M128 0C57.3075 8.42999e-07 -8.42999e-07 57.3075 0 128H128V0Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M64 0L64 128' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M128 64L0 64' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ tev
"<g transform='@TR'><path d='M64 128H0L5.59506e-06 0L64 5.59506e-06C99.3462 8.68512e-06 128 28.6538 128 64C128 99.3462 99.3462 128 64 128Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><circle cx='64' cy='64' r='32' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ tex
"<g transform='@TR'><path d='M64 128H0L5.59506e-06 0L64 5.59506e-06C99.3462 8.68512e-06 128 28.6538 128 64C128 99.3462 99.3462 128 64 128Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><line x1='15.9965' y1='111.997' x2='47.9965' y2='79.9965' stroke='@BG' fill='none' stroke-width='@SW'/><path fill-rule='evenodd' clip-rule='evenodd' d='M80 64C80 72.8366 72.8366 80 64 80C55.1634 80 48 72.8366 48 64C48 55.1634 55.1634 48 64 48C72.8366 48 80 55.1634 80 64ZM64 72C68.4183 72 72 68.4183 72 64C72 59.5817 68.4183 56 64 56C59.5817 56 56 59.5817 56 64C56 68.4183 59.5817 72 64 72Z' fill='@BG'/></g>",
++ tic
"<g transform='@TR'><path d='M0 0C0 70.6925 57.3075 128 128 128V0H0Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M128 32C110.327 32 96 17.6731 96 -1.39876e-06' stroke='@BG' fill='none' stroke-width='@SW'/><circle cx='64' cy='64' r='32' stroke='@BG' fill='none' stroke-width='@SW'/><circle cx='64' cy='64' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='64' cy='64' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/></g>",
++ tid
"<g transform='@TR'><path d='M0 0C0 70.6925 57.3075 128 128 128V0H0Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><line x1='64' y1='2.18557e-08' x2='64' y2='128' stroke='@BG' fill='none' stroke-width='@SW'/><line x1='96' y1='2.18557e-08' x2='96' y2='128' stroke='@BG' fill='none' stroke-width='@SW'/><path fill-rule='evenodd' clip-rule='evenodd' d='M112 32C112 40.8366 104.837 48 96 48C87.1634 48 80 40.8366 80 32C80 23.1634 87.1634 16 96 16C104.837 16 112 23.1634 112 32ZM96 40C100.418 40 104 36.4183 104 32C104 27.5817 100.418 24 96 24C91.5817 24 88 27.5817 88 32C88 36.4183 91.5817 40 96 40Z' fill='@BG'/></g>",
++ til
"<g transform='@TR'><path d='M64 0H128V128H64C28.6538 128 0 99.3462 0 64C0 28.6538 28.6538 0 64 0Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><line x1='80.0036' y1='79.9965' x2='112.004' y2='111.997' stroke='@BG' fill='none' stroke-width='@SW'/><circle cx='64' cy='64' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='64' cy='64' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/></g>",
++ tim
"<g transform='@TR'><path d='M128 64V128H0L2.79753e-06 64C4.34256e-06 28.6538 28.6538 -1.54503e-06 64 0C99.3462 1.54503e-06 128 28.6538 128 64Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M-0.00291443 0L127.997 128' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/></g>",
++ tin
"<g transform='@TR'><rect width='128' height='128' fill='@FG' stroke='@BG' stroke-width='@SW'/><line x1='32' y1='2.18557e-08' x2='32' y2='128' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ tip
"<g transform='@TR'><path d='M128 0C57.3075 8.42999e-07 -8.42999e-07 57.3075 0 128H128V0Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M64 0L64 128' stroke='@BG' fill='none' stroke-width='@SW'/><path fill-rule='evenodd' clip-rule='evenodd' d='M80 64C80 72.8366 72.8366 80 64 80C55.1634 80 48 72.8366 48 64C48 55.1634 55.1634 48 64 48C72.8366 48 80 55.1634 80 64ZM64 72C68.4183 72 72 68.4183 72 64C72 59.5817 68.4183 56 64 56C59.5817 56 56 59.5817 56 64C56 68.4183 59.5817 72 64 72Z' fill='@BG'/></g>",
++ tir
"<g transform='@TR'><path d='M0 0C0 70.6925 57.3075 128 128 128V0H0Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><line x1='-0.0029152' x2='127.983' y2='127.986' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/><circle cx='64' cy='64' r='16' stroke='@BG' fill='none' stroke-width='@SW'/><circle cx='64' cy='64' r='32' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ tob
"<g transform='@TR'><path d='M128 64V128H0L2.79753e-06 64C4.34256e-06 28.6538 28.6538 -1.54503e-06 64 0C99.3462 1.54503e-06 128 28.6538 128 64Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M128 96L0 96' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ toc
"<g transform='@TR'><path d='M0.0541 0C70.7217 0.0292317 128 57.3256 128 128C57.3177 128 0.0164917 70.7089 7.62806e-06 0.0305091C7.62851e-06 0.0203397 -4.44317e-10 0.01017 0 0H0.0541Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><line x1='128' y1='96' x2='-8.87604e-09' y2='96' stroke='@BG' fill='none' stroke-width='@SW'/><circle cx='64' cy='64' r='16' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ tod
"<g transform='@TR'><path d='M64 0H128V128H64C28.6538 128 0 99.3462 0 64C0 28.6538 28.6538 0 64 0Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><circle cx='64' cy='96' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='64' cy='96' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/><circle cx='64' cy='32' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='64' cy='32' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/></g>",
++ tog
"<g transform='@TR'><path d='M128 0C57.3075 8.42999e-07 -8.42999e-07 57.3075 0 128H128V0Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M64 96C46.3269 96 32 81.6731 32 64' stroke='@BG' fill='none' stroke-width='@SW'/><circle cx='64' cy='64' r='16' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M128 0L0 128' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/></g>",
++ tol
"<g transform='@TR'><circle cx='64' cy='64' r='64' fill='@FG' stroke='@BG' stroke-width='@SW'/><line x1='128' y1='64' x2='-4.37114e-08' y2='64' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M16 128C16 101.49 37.4903 80 64 80C90.5097 80 112 101.49 112 128' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ tom
"<g transform='@TR'><rect width='128' height='128' fill='@FG' stroke='@BG' stroke-width='@SW'/><circle cx='32' cy='32' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='32' cy='32' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/><circle cx='96' cy='32' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='96' cy='32' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/><circle cx='32' cy='96' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='32' cy='96' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/></g>",
++ ton
"<g transform='@TR'><path d='M128 0C57.3075 8.42999e-07 -8.42999e-07 57.3075 0 128H128V0Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M128 32C74.9807 32 32 74.9807 32 128' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M128 64C92.6538 64 64 92.6538 64 128' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M128 96C110.327 96 96 110.327 96 128' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ top
"<g transform='@TR'><circle cx='64' cy='64' r='64' fill='@FG' stroke='@BG' stroke-width='@SW'/><line x1='-0.0029152' x2='127.983' y2='127.986' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/><circle cx='64' cy='64' r='32' stroke='@BG' fill='none' stroke-width='@SW'/><circle cx='64' cy='64' r='16' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ tor
"<g transform='@TR'><path d='M64 0H128V128H64C28.6538 128 0 99.3462 0 64C0 28.6538 28.6538 0 64 0Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><circle cx='64' cy='64' r='32' stroke='@BG' fill='none' stroke-width='@SW'/><circle cx='64' cy='64' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='64' cy='64' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/></g>",
++ tuc
"<g transform='@TR'><path d='M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M128 64L0 64' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M128 96L0 96' stroke='@BG' fill='none' stroke-width='@SW'/><circle cx='96' cy='96' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='96' cy='96' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/><circle cx='32' cy='64' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='32' cy='64' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/></g>",
++ tud
"<g transform='@TR'><path d='M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M128 64L0 64' stroke='@BG' fill='none' stroke-width='@SW'/><circle cx='32' cy='64' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='32' cy='64' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/></g>",
++ tug
"<g transform='@TR'><path d='M64 128H0L5.59506e-06 0L64 5.59506e-06C99.3462 8.68512e-06 128 28.6538 128 64C128 99.3462 99.3462 128 64 128Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M128 64L0 64' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M128 32L0 32' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ tul
"<g transform='@TR'><circle cx='64' cy='64' r='64' fill='@FG' stroke='@BG' stroke-width='@SW'/><path fill-rule='evenodd' clip-rule='evenodd' d='M80 64C80 72.8366 72.8366 80 64 80C55.1634 80 48 72.8366 48 64C48 55.1634 55.1634 48 64 48C72.8366 48 80 55.1634 80 64ZM64 72C68.4183 72 72 68.4183 72 64C72 59.5817 68.4183 56 64 56C59.5817 56 56 59.5817 56 64C56 68.4183 59.5817 72 64 72Z' fill='@BG'/></g>",
++ tun
"<g transform='@TR'><path d='M128 64V128H0L2.79753e-06 64C4.34256e-06 28.6538 28.6538 -1.54503e-06 64 0C99.3462 1.54503e-06 128 28.6538 128 64Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M-0.00292969 0L127.997 128' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/><circle cx='64' cy='64' r='48' stroke='@BG' fill='none' stroke-width='@SW'/><circle cx='64' cy='64' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='64' cy='64' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/></g>",
++ tus
"<g transform='@TR'><path d='M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M128 0L0 128' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/><circle cx='32' cy='32' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='32' cy='32' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/></g>",
++ tux
"<g transform='@TR'><path d='M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M128 64L0 64' stroke='@BG' fill='none' stroke-width='@SW'/><circle cx='64' cy='96' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='64' cy='96' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/></g>",
++ tyc
"<g transform='@TR'><path d='M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path fill-rule='evenodd' clip-rule='evenodd' d='M80 64C80 72.8366 72.8366 80 64 80C55.1634 80 48 72.8366 48 64C48 55.1634 55.1634 48 64 48C72.8366 48 80 55.1634 80 64ZM64 72C68.4183 72 72 68.4183 72 64C72 59.5817 68.4183 56 64 56C59.5817 56 56 59.5817 56 64C56 68.4183 59.5817 72 64 72Z' fill='@BG'/></g>",
++ tyd
"<g transform='@TR'><path d='M0.0541 0C70.7217 0.0292317 128 57.3256 128 128C57.3177 128 0.0164917 70.7089 7.62806e-06 0.0305091C7.62851e-06 0.0203397 -4.44317e-10 0.01017 0 0H0.0541Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M-0.00280762 0L127.997 128' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/><line y1='-0.5' x2='45.2548' y2='-0.5' transform='matrix(0.707107 -0.707107 -0.707107 -0.707107 79.65 47.6499)' stroke='@BG' fill='none' stroke-width='@SW'/><line x1='15.9964' y1='111.997' x2='47.9964' y2='79.9965' stroke='@BG' fill='none' stroke-width='@SW'/><circle cx='64' cy='64' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='64' cy='64' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/></g>",
++ tyl
"<g transform='@TR'><path d='M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M7.37542e-06 -3.56072e-06C1.19529e-06 70.6924 57.3075 128 128 128' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ tyn
"<g transform='@TR'><path d='M5.59506e-06 128C70.6925 128 128 70.6925 128 0L0 5.59506e-06L5.59506e-06 128Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M128 -2.28831e-06C57.3076 -3.13131e-06 8.42999e-07 57.3075 0 128' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ typ
"<g transform='@TR'><path d='M5.59506e-06 128C70.6925 128 128 70.6925 128 0L0 5.59506e-06L5.59506e-06 128Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M-0.00292969 0L127.997 128' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/><path d='M96 1.90735e-06C96 53.0193 53.0193 96 0 96' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ tyr
"<g transform='@TR'><path d='M0 127.946C0.0292286 57.2783 57.3256 3.08928e-06 128 0C128 70.6823 70.7089 127.984 0.0305092 128C0.0203397 128 0.01017 128 2.36469e-09 128L0 127.946Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M0 0L128 128' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/><path d='M128 64C92.6538 64 64 35.3462 64 0' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M0 64C35.3462 64 64 92.6538 64 128' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ tyv
"<g transform='@TR'><path d='M0 127.946C0.0292286 57.2783 57.3256 3.08928e-06 128 0C128 70.6823 70.7089 127.984 0.0305092 128C0.0203397 128 0.01017 128 2.36469e-09 128L0 127.946Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M256 0L128 128' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/><circle cx='64' cy='64' r='32' stroke='@BG' fill='none' stroke-width='@SW'/><circle cx='96' cy='32' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='96' cy='32' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/><circle cx='32' cy='96' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='32' cy='96' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/></g>",
++ wac
"<g transform='@TR'><path d='M0 0C0 70.6925 57.3075 128 128 128V0H0Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M128 64L0 64' stroke='@BG' fill='none' stroke-width='@SW'/><circle cx='64' cy='64' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='64' cy='64' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/><circle cx='16' cy='112' r='11.5' fill='@BG' stroke='@BG' stroke-width='@SW'/><circle cx='16' cy='112' r='9' fill='@FG' stroke='@FG' stroke-width='@SW'/></g>",
++ wal
"<g transform='@TR'><path d='M0 127.946C0.0292286 57.2783 57.3256 3.08928e-06 128 0C128 70.6823 70.7089 127.984 0.0305092 128C0.0203397 128 0.01017 128 2.36469e-09 128L0 127.946Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><line x1='64.5' y1='-0.5' x2='64.5' y2='127.5' stroke='@BG' fill='none' stroke-width='@SW'/><line x1='32' y1='2.18557e-08' x2='32' y2='128' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ wan
"<g transform='@TR'><path d='M0 0C0 70.6925 57.3075 128 128 128V0H0Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M0 0C0 70.6925 57.3075 128 128 128V0H0Z' fill='@FG' stroke='@BG' stroke-width='@SW'/></g>",
++ wat
"<g transform='@TR'><path d='M0 0C0 70.6925 57.3075 128 128 128V0H0Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path fill-rule='evenodd' clip-rule='evenodd' d='M80 64C80 72.8366 72.8366 80 64 80C55.1634 80 48 72.8366 48 64C48 55.1634 55.1634 48 64 48C72.8366 48 80 55.1634 80 64ZM64 72C68.4183 72 72 68.4183 72 64C72 59.5817 68.4183 56 64 56C59.5817 56 56 59.5817 56 64C56 68.4183 59.5817 72 64 72Z' fill='@BG'/></g>",
++ web
"<g transform='@TR'><rect width='128' height='128' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M128 128C128 57.3075 70.6925 0 0 0' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ wed
"<g transform='@TR'><circle cx='64' cy='64' r='64' fill='@FG' stroke='@BG' stroke-width='@SW'/><circle cx='32' cy='32' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='32' cy='32' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/></g>",
++ weg
"<g transform='@TR'><rect width='128' height='128' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M79.5254 0C79.5254 8.83656 72.3619 16 63.5254 16C54.6888 16 47.5254 8.83656 47.5254 0' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ wel
"<g transform='@TR'><path d='M0 127.946C0.0292286 57.2783 57.3256 3.08928e-06 128 0C128 70.6823 70.7089 127.984 0.0305092 128C0.0203397 128 0.01017 128 2.36469e-09 128L0 127.946Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M128 32C74.9807 32 32 74.9807 32 128' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M128 64C92.6538 64 64 92.6538 64 128' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M128 96C110.327 96 96 110.327 96 128' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ wen
"<g transform='@TR'><rect width='128' height='128' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M1.01717e-06 64C35.3462 64 64 35.3462 64 0' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M-0.00292969 0L127.997 128' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/></g>",
++ wep
"<g transform='@TR'><path d='M128 0C57.3075 8.42999e-07 -8.42999e-07 57.3075 0 128H128V0Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><circle cx='96' cy='96' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='96' cy='96' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/></g>",
++ wer
"<g transform='@TR'><path d='M0 64L5.59506e-06 0L128 1.11901e-05V64C128 99.3462 99.3462 128 64 128C28.6538 128 -4.6351e-06 99.3462 0 64Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M32 0L32 128' stroke='@BG' fill='none' stroke-width='@SW'/><circle cx='32' cy='32' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='32' cy='32' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/></g>",
++ wes
"<g transform='@TR'><path d='M128 0C57.3075 8.42999e-07 -8.42999e-07 57.3075 0 128H128V0Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><line x1='80.0035' y1='79.9965' x2='112.003' y2='111.997' stroke='@BG' fill='none' stroke-width='@SW'/><circle cx='112' cy='112' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='112' cy='112' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/></g>",
++ wet
"<g transform='@TR'><circle cx='64' cy='64' r='64' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M64 64H0' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ wex
"<g transform='@TR'><path d='M64 128H0L5.59506e-06 0L64 5.59506e-06C99.3462 8.68512e-06 128 28.6538 128 64C128 99.3462 99.3462 128 64 128Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path fill-rule='evenodd' clip-rule='evenodd' d='M80 64C80 72.8366 72.8366 80 64 80C55.1634 80 48 72.8366 48 64C48 55.1634 55.1634 48 64 48C72.8366 48 80 55.1634 80 64ZM64 72C68.4183 72 72 68.4183 72 64C72 59.5817 68.4183 56 64 56C59.5817 56 56 59.5817 56 64C56 68.4183 59.5817 72 64 72Z' fill='@BG'/></g>",
++ wic
"<g transform='@TR'><path d='M128 0C57.3075 8.42999e-07 -8.42999e-07 57.3075 0 128H128V0Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><circle cx='96' cy='32' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='96' cy='32' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/><circle cx='32' cy='96' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='32' cy='96' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/></g>",
++ wid
"<g transform='@TR'><path d='M0 0C0 70.6925 57.3075 128 128 128V0H0Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><line x1='48.0035' y1='80.0036' x2='16.0035' y2='112.004' stroke='@BG' fill='none' stroke-width='@SW'/><path fill-rule='evenodd' clip-rule='evenodd' d='M80 64C80 72.8366 72.8366 80 64 80C55.1634 80 48 72.8366 48 64C48 55.1634 55.1634 48 64 48C72.8366 48 80 55.1634 80 64ZM64 72C68.4183 72 72 68.4183 72 64C72 59.5817 68.4183 56 64 56C59.5817 56 56 59.5817 56 64C56 68.4183 59.5817 72 64 72Z' fill='@BG'/></g>",
++ win
"<g transform='@TR'><rect width='128' height='128' fill='@FG' stroke='@BG' stroke-width='@SW'/><line x1='64' y1='2.18557e-08' x2='64' y2='128' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ wis
"<g transform='@TR'><path d='M0 0C0 70.6925 57.3075 128 128 128V0H0Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M128 64L0 64' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M128 32L0 32' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ wit
"<g transform='@TR'><path d='M0 127.946C0.0292286 57.2783 57.3256 3.08928e-06 128 0C128 70.6823 70.7089 127.984 0.0305092 128C0.0203397 128 0.01017 128 2.36469e-09 128L0 127.946Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><line x1='64' y1='2.18557e-08' x2='64' y2='128' stroke='@BG' fill='none' stroke-width='@SW'/><line x1='32' y1='2.18557e-08' x2='32' y2='128' stroke='@BG' fill='none' stroke-width='@SW'/><line x1='96' y1='2.18557e-08' x2='96' y2='128' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ wol
"<g transform='@TR'><circle cx='64' cy='64' r='64' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M0 64L128 64' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M128 96C110.327 96 96 81.6731 96 64C96 46.3269 110.327 32 128 32' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ wor
"<g transform='@TR'><path d='M64 0H128V128H64C28.6538 128 0 99.3462 0 64C0 28.6538 28.6538 0 64 0Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><line y1='-0.5' x2='45.2548' y2='-0.5' transform='matrix(0.707107 -0.707107 -0.707107 -0.707107 79.65 47.65)' stroke='@BG' fill='none' stroke-width='@SW'/><line x1='-0.0029152' x2='127.983' y2='127.986' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/><path d='M64 96C46.3269 96 32 81.6731 32 64' stroke='@BG' fill='none' stroke-width='@SW'/><circle cx='64' cy='64' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='64' cy='64' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/></g>",
++ wyc
"<g transform='@TR'><path d='M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z' fill='@FG' stroke='@BG' stroke-width='@SW'/></g>",
++ wyd
"<g transform='@TR'><path d='M0.0541 0C70.7217 0.0292317 128 57.3256 128 128C57.3177 128 0.0164917 70.7089 7.62806e-06 0.0305091C7.62851e-06 0.0203397 -4.44317e-10 0.01017 0 0H0.0541Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M-0.00292969 0L127.997 128' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/><path d='M32 64C32 46.3269 46.3269 32 64 32' stroke='@BG' fill='none' stroke-width='@SW'/><circle cx='32' cy='64' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='32' cy='64' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/></g>",
++ wyl
"<g transform='@TR'><path d='M128 128C128 57.3076 70.6925 6.18013e-06 1.11901e-05 0L0 128L128 128Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M-3.8147e-06 128C-7.24633e-07 92.6538 28.6538 64 64 64C99.3462 64 128 92.6538 128 128' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ wyn
"<g transform='@TR'><path d='M5.59506e-06 128C70.6925 128 128 70.6925 128 0L0 5.59506e-06L5.59506e-06 128Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M1.52575e-06 96C53.0193 96 96 53.0193 96 0' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M1.01717e-06 64C35.3462 64 64 35.3462 64 0' stroke='@BG' fill='none' stroke-width='@SW'/><path d='M5.08584e-07 32C17.6731 32 32 17.6731 32 0' stroke='@BG' fill='none' stroke-width='@SW'/></g>",
++ wyt
"<g transform='@TR'><path d='M64 128H0L5.59506e-06 0L64 5.59506e-06C99.3462 8.68512e-06 128 28.6538 128 64C128 99.3462 99.3462 128 64 128Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M128 0L0 128' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/><circle cx='64' cy='64' r='48' stroke='@BG' fill='none' stroke-width='@SW'/><circle cx='16' cy='64' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='16' cy='64' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/></g>",
++ wyx
"<g transform='@TR'><path d='M5.59506e-06 128C70.6925 128 128 70.6925 128 0L0 5.59506e-06L5.59506e-06 128Z' fill='@FG' stroke='@BG' stroke-width='@SW'/><path d='M-0.00292969 0L127.997 128' stroke='@BG' stroke-linecap='square' fill='none' stroke-width='@SW'/><circle cx='32' cy='96' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='32' cy='96' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/><circle cx='32' cy='32' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='32' cy='32' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/><circle cx='96' cy='32' r='11.5' fill='@FG' stroke='@FG' stroke-width='@SW'/><circle cx='96' cy='32' r='9' fill='@BG' stroke='@BG' stroke-width='@SW'/></g>",
++ zod
"<g transform='@TR'><circle cx='64' cy='64' r='64' fill='@FG' stroke='@BG' stroke-width='@SW'/></g>",
--
|