-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSol-Regular.sfd
2672 lines (2565 loc) · 77.5 KB
/
Sol-Regular.sfd
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
SplineFontDB: 3.2
FontName: Sol-Regular
FullName: Sol Regular
FamilyName: Sol
Weight: Regular
Copyright: Copyright (c) 2023, Andrew Meyer, with Reserved Font Name 'Sol'.
UComments: "2023-4-29: Created with FontForge (http://fontforge.org)"
Version: 0.0.2
ItalicAngle: 0
UnderlinePosition: -100
UnderlineWidth: 50
Ascent: 800
Descent: 200
InvalidEm: 0
LayerCount: 2
Layer: 0 0 "Back" 1
Layer: 1 0 "Fore" 0
XUID: [1021 296 -332274537 6671418]
StyleMap: 0x0000
FSType: 0
OS2Version: 0
OS2_WeightWidthSlopeOnly: 0
OS2_UseTypoMetrics: 1
CreationTime: 1682754474
ModificationTime: 1691816753
PfmFamily: 49
TTFWeight: 400
TTFWidth: 5
LineGap: 90
VLineGap: 90
OS2TypoAscent: 0
OS2TypoAOffset: 1
OS2TypoDescent: 0
OS2TypoDOffset: 1
OS2TypoLinegap: 90
OS2WinAscent: 0
OS2WinAOffset: 1
OS2WinDescent: 0
OS2WinDOffset: 1
HheadAscent: 0
HheadAOffset: 1
HheadDescent: 0
HheadDOffset: 1
OS2Vendor: ' '
Lookup: 4 0 1 "'liga' Standard Ligatures in Latin lookup 0" { "liga" } ['liga' ('DFLT' <'dflt' > 'latn' <'dflt' > ) ]
MarkAttachClasses: 1
DEI: 91125
LangName: 1033 "" "" "" "" "" "" "" "" "" "" "" "" "" "This Font Software is licensed under the SIL Open Font License, Version 1.1.+AAoA-This license is copied below, and is also available with a FAQ at:+AAoA-http://scripts.sil.org/OFL+AAoACgAK------------------------------------------------------------+AAoA-SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007+AAoA------------------------------------------------------------+AAoACgAA-PREAMBLE+AAoA-The goals of the Open Font License (OFL) are to stimulate worldwide+AAoA-development of collaborative font projects, to support the font creation+AAoA-efforts of academic and linguistic communities, and to provide a free and+AAoA-open framework in which fonts may be shared and improved in partnership+AAoA-with others.+AAoACgAA-The OFL allows the licensed fonts to be used, studied, modified and+AAoA-redistributed freely as long as they are not sold by themselves. The+AAoA-fonts, including any derivative works, can be bundled, embedded, +AAoA-redistributed and/or sold with any software provided that any reserved+AAoA-names are not used by derivative works. The fonts and derivatives,+AAoA-however, cannot be released under any other type of license. The+AAoA-requirement for fonts to remain under this license does not apply+AAoA-to any document created using the fonts or their derivatives.+AAoACgAA-DEFINITIONS+AAoAIgAA-Font Software+ACIA refers to the set of files released by the Copyright+AAoA-Holder(s) under this license and clearly marked as such. This may+AAoA-include source files, build scripts and documentation.+AAoACgAi-Reserved Font Name+ACIA refers to any names specified as such after the+AAoA-copyright statement(s).+AAoACgAi-Original Version+ACIA refers to the collection of Font Software components as+AAoA-distributed by the Copyright Holder(s).+AAoACgAi-Modified Version+ACIA refers to any derivative made by adding to, deleting,+AAoA-or substituting -- in part or in whole -- any of the components of the+AAoA-Original Version, by changing formats or by porting the Font Software to a+AAoA-new environment.+AAoACgAi-Author+ACIA refers to any designer, engineer, programmer, technical+AAoA-writer or other person who contributed to the Font Software.+AAoACgAA-PERMISSION & CONDITIONS+AAoA-Permission is hereby granted, free of charge, to any person obtaining+AAoA-a copy of the Font Software, to use, study, copy, merge, embed, modify,+AAoA-redistribute, and sell modified and unmodified copies of the Font+AAoA-Software, subject to the following conditions:+AAoACgAA-1) Neither the Font Software nor any of its individual components,+AAoA-in Original or Modified Versions, may be sold by itself.+AAoACgAA-2) Original or Modified Versions of the Font Software may be bundled,+AAoA-redistributed and/or sold with any software, provided that each copy+AAoA-contains the above copyright notice and this license. These can be+AAoA-included either as stand-alone text files, human-readable headers or+AAoA-in the appropriate machine-readable metadata fields within text or+AAoA-binary files as long as those fields can be easily viewed by the user.+AAoACgAA-3) No Modified Version of the Font Software may use the Reserved Font+AAoA-Name(s) unless explicit written permission is granted by the corresponding+AAoA-Copyright Holder. This restriction only applies to the primary font name as+AAoA-presented to the users.+AAoACgAA-4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font+AAoA-Software shall not be used to promote, endorse or advertise any+AAoA-Modified Version, except to acknowledge the contribution(s) of the+AAoA-Copyright Holder(s) and the Author(s) or with their explicit written+AAoA-permission.+AAoACgAA-5) The Font Software, modified or unmodified, in part or in whole,+AAoA-must be distributed entirely under this license, and must not be+AAoA-distributed under any other license. The requirement for fonts to+AAoA-remain under this license does not apply to any document created+AAoA-using the Font Software.+AAoACgAA-TERMINATION+AAoA-This license becomes null and void if any of the above conditions are+AAoA-not met.+AAoACgAA-DISCLAIMER+AAoA-THE FONT SOFTWARE IS PROVIDED +ACIA-AS IS+ACIA, WITHOUT WARRANTY OF ANY KIND,+AAoA-EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF+AAoA-MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT+AAoA-OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE+AAoA-COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,+AAoA-INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL+AAoA-DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING+AAoA-FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM+AAoA-OTHER DEALINGS IN THE FONT SOFTWARE." "http://scripts.sil.org/OFL"
Encoding: Custom
UnicodeInterp: none
NameList: AGL For New Fonts
DisplaySize: -48
AntiAlias: 1
FitToEm: 0
WinInfo: 0 28 12
BeginPrivate: 0
EndPrivate
Grid
450 1300 m 1
450 -700 l 1025
Named: "center"
-1000 325 m 1
2000 325 l 1025
Named: "mid"
-1000 650 m 1
2000 650 l 1025
Named: "top"
125 1300 m 1
125 -700 l 1025
Named: "left"
775 1300 m 1
775 -700 l 1025
Named: "right"
EndSplineSet
TeXData: 1 0 0 838860 419430 279620 509608 1048576 279620 783286 444596 497025 792723 393216 433062 380633 303038 157286 324010 404750 52429 2506097 1059062 262144
BeginChars: 269 107
StartChar: exclam
Encoding: 33 33 0
Width: 900
Flags: W
HStem: 6.4 123.2<407.353 492.647> 232 21G<421.419 478.581> 650 20G<410 490>
VStem: 388.4 123.2<25.3531 110.647> 412 76<404 670> 422 56<232 472.8>
LayerCount: 2
Fore
SplineSet
422 232 m 1xe4
412 576 l 1
410 670 l 1
490 670 l 1
488 576 l 1xe8
478 232 l 1
422 232 l 1xe4
EndSplineSet
Refer: 13 46 S 0.8 0 0 0.8 90 13.6 2
Validated: 524289
EndChar
StartChar: quotedbl
Encoding: 34 34 1
Width: 900
Flags: W
HStem: 352 21G<404.778 465.222 634.778 695.222> 667 20G<380 490 610 720>
VStem: 382 106<532 687> 612 106<532 687>
LayerCount: 2
Fore
Refer: 6 39 S 1 0 0 1 -15 0 2
Refer: 6 39 S 1 0 0 1 215 0 2
Validated: 1
EndChar
StartChar: numbersign
Encoding: 35 35 2
Width: 900
Flags: W
HStem: 0 21G<292 348.431 478 534.431> 0 21G<292 348.431 478 534.431> 204 57<237 317.107 377.722 503.107 563.722 649> 409 58<257 342.339 402.759 528.339 588.759 669> 630 20G<369.538 425 555.538 611> 630 20G<369.538 425 555.538 611>
LayerCount: 2
Fore
SplineSet
237 204 m 5xb8
237 261 l 1
324.123046875 261 l 1
342.338867188 409 l 1
257 409 l 1
257 467 l 1
349.4765625 467 l 1
372 650 l 1
425 650 l 1
402.758789062 467 l 1
535.4765625 467 l 1
558 650 l 1
611 650 l 1
588.758789062 467 l 1
669 467 l 1
669 409 l 1
581.708984375 409 l 1
563.721679688 261 l 1
649 261 l 1
649 204 l 1
556.793945312 204 l 1
532 0 l 1
478 0 l 1
503.107421875 204 l 1
370.793945312 204 l 1
346 0 l 1
292 0 l 1
317.107421875 204 l 1
237 204 l 5xb8
395.708984375 409 m 5
377.721679688 261 l 1
510.123046875 261 l 1
528.338867188 409 l 1
395.708984375 409 l 5
EndSplineSet
Validated: 524289
EndChar
StartChar: dollar
Encoding: 36 36 3
Width: 900
Flags: W
HStem: 34.9902 67.0098<355.193 426 486 546.016> 150 20G<260.316 286.333> 493 21G<589.667 619.333> 550 66.2373<374.427 426 486 548.304>
VStem: 264 80<422.101 520.477> 426 60<-110 37.4852 614.849 748> 581 81<135.506 239.589>
LayerCount: 2
Fore
SplineSet
235 113 m 5
274 170 l 1
298.666992188 152 326.5 136.166992188 357.5 122.5 c 0
388.5 108.833007812 422.666992188 102 460 102 c 0
499.333007812 102 529.333007812 110.166992188 550 126.5 c 0
570.666992188 142.833007812 581 163.666015625 581 189 c 0
581 209.666992188 573.333007812 227 558 241 c 0
542.666992188 255 523 267.166992188 499 277.5 c 0
475 287.833007812 449.5 298 422.5 308 c 0
395.5 318 370 329.666992188 346 343 c 0
322 356.333007812 302.333007812 372.833007812 287 392.5 c 0
271.666992188 412.166992188 264 436.333984375 264 465 c 0
264 496.333007812 272.333007812 523.5 289 546.5 c 0
305.666992188 569.5 328.833984375 587.166992188 358.5 599.5 c 0
379.008789062 608.026367188 401.508789062 613.60546875 426 616.237304688 c 1
426 748 l 1
486 748 l 1
486 617.081054688 l 1
518.458007812 614.6953125 545.958007812 607.66796875 568.5 596 c 0
596.833007812 581.333007812 622.333007812 563 645 541 c 1
601 493 l 1
578.333007812 511 556.5 525 535.5 535 c 0
514.5 545 487.333007812 550 454 550 c 0
420 550 393.166992188 542.5 373.5 527.5 c 0
353.833007812 512.5 344 492.333007812 344 467 c 0
344 449 351.666992188 433.666992188 367 421 c 0
382.333007812 408.333007812 402 397.333007812 426 388 c 0
450.10546875 378.625976562 475.60546875 368.79296875 502.5 358.5 c 0
529.5 348.166992188 555.166992188 336.166992188 579.5 322.5 c 0
603.833007812 308.833007812 623.666015625 291.833007812 639 271.5 c 0
654.333007812 251.166992188 662 225.666992188 662 195 c 0
662 163 653 134.833007812 635 110.5 c 0
617 86.1669921875 592.166992188 67.333984375 560.5 54 c 0
538.223632812 44.6201171875 513.390625 38.5400390625 486 35.7587890625 c 1
486 -110 l 1
426 -110 l 1
426 34.990234375 l 1
407.330078125 36.5302734375 388.6640625 39.8671875 370 45 c 0
343.333007812 52.3330078125 318.5 62 295.5 74 c 0
272.5 86 252.333007812 99 235 113 c 5
EndSplineSet
Validated: 524289
EndChar
StartChar: percent
Encoding: 37 37 4
Width: 900
Flags: W
HStem: -12 50<535.026 633.275> 265 339G<341.532 383 656.547 694.778> 268 49<533.986 634.608> 321 50<267.026 365.275> 391 21G<517 558.468> 601 49<265.986 366.608>
VStem: 177 61<401.451 572.324> 394 61<400.393 572.758> 445 61<68.451 239.324> 662 61<67.3929 239.758>
LayerCount: 2
Fore
SplineSet
316 321 m 260x9740
289.333007812 321 265.5 327.5 244.5 340.5 c 0
223.5 353.5 207 372.666992188 195 398 c 0
183 423.333007812 177 453 177 487 c 0
177 539 190.166992188 579.166992188 216.5 607.5 c 0
242.833007812 635.833007812 276 650 316 650 c 0
356.666992188 650 390 635.833007812 416 607.5 c 0
442 579.166992188 455 539 455 487 c 0
455 453 449 423.333007812 437 398 c 0
425 372.666992188 408.5 353.5 387.5 340.5 c 0
366.5 327.5 342.666992188 321 316 321 c 260x9740
316 371 m 4
338 371 356.5 380.5 371.5 399.5 c 0
386.5 418.5 394 447.666992188 394 487 c 0
394 527 386.5 556 371.5 574 c 0
356.5 592 338 601 316 601 c 0
294.666992188 601 276.333007812 592 261 574 c 0
245.666992188 556 238 527 238 487 c 0
238 447.666992188 245.666992188 418.5 261 399.5 c 0
276.333007812 380.5 294.666992188 371 316 371 c 4
584 -12 m 260
557.333007812 -12 533.5 -5.5 512.5 7.5 c 0
491.5 20.5 475 39.6669921875 463 65 c 0
451 90.3330078125 445 120 445 154 c 0
445 206 458.166992188 246.166992188 484.5 274.5 c 0
510.833007812 302.833007812 544 317 584 317 c 0xa2c0
624.666992188 317 658 302.833007812 684 274.5 c 0
710 246.166992188 723 206 723 154 c 0
723 120 717 90.3330078125 705 65 c 0
693 39.6669921875 676.5 20.5 655.5 7.5 c 0
634.5 -5.5 610.666992188 -12 584 -12 c 260
584 38 m 4
606 38 624.5 47.5 639.5 66.5 c 0
654.5 85.5 662 114.666992188 662 154 c 0
662 194 654.5 223 639.5 241 c 0
624.5 259 606 268 584 268 c 0
562.666992188 268 544.333007812 259 529 241 c 0
513.666992188 223 506 194 506 154 c 0
506 114.666992188 513.666992188 85.5 529 66.5 c 0
544.333007812 47.5 562.666992188 38 584 38 c 4
539 391 m 1x8ac0
506 421 l 1
673 624 l 1
722 579 l 1
539 391 l 1x8ac0
227 32 m 1
178 77 l 1
361 265 l 1
394 235 l 1xc340
227 32 l 1
EndSplineSet
Validated: 524289
EndChar
StartChar: ampersand
Encoding: 38 38 5
Width: 900
Flags: W
HStem: -12 66<323.64 471.802> 334 20G<638.333 720> 609 59<365.885 461.279>
VStem: 192 80<104.318 245.945> 271 71<416.557 582.965> 475 67<472.278 591.558> 644 76<285.776 354>
LayerCount: 2
Fore
SplineSet
388 -12 m 4xee
349.333007812 -12 315.166992188 -4.1669921875 285.5 11.5 c 4
255.833007812 27.1669921875 232.833007812 48.6669921875 216.5 76 c 4
200.166992188 103.333007812 192 134.666992188 192 170 c 4xf6
192 201.333007812 198.833007812 229 212.5 253 c 4
226.166992188 277 243.666992188 298.666992188 265 318 c 4
280.510742188 332.056640625 296.814453125 345.408203125 313.911132812 358.055664062 c 5
306.224609375 373.422851562 299.420898438 388.737304688 293.5 404 c 4
278.5 442.666992188 271 479 271 513 c 4
271 541.666992188 277 567.833007812 289 591.5 c 4
301 615.166992188 317.666992188 633.833007812 339 647.5 c 4
360.333007812 661.166992188 385.666992188 668 415 668 c 4
455.666992188 668 487 656 509 632 c 4
531 608 542 576.666992188 542 538 c 4
542 511.333007812 535.666992188 487 523 465 c 4
510.333007812 443 493.666992188 422.833007812 473 404.5 c 4
452.333007812 386.166992188 430.333007812 368.333007812 407 351 c 4
404.895507812 349.436523438 402.802734375 347.872070312 400.719726562 346.306640625 c 4
407.489257812 335.37109375 414.75 324.435546875 422.5 313.5 c 4
446.833007812 279.166992188 474 246.5 504 215.5 c 4
522.822265625 196.05078125 541.775390625 178.109375 560.860351562 161.677734375 c 5
575.603515625 182.651367188 588.817382812 205.591796875 600.5 230.5 c 4
618.166992188 268.166992188 632.666992188 309.333007812 644 354 c 5
720 354 l 5
706.666992188 305.333007812 689.666992188 258.666992188 669 214 c 4
653.34375 180.162109375 635.200195312 148.428710938 614.5703125 118.798828125 c 5
631.65234375 106.032226562 648.294921875 94.9326171875 664.5 85.5 c 4
686.833007812 72.5 707.666992188 62.6669921875 727 56 c 5
704 -12 l 5
680 -4 654.666992188 7.5 628 22.5 c 4
607.961914062 33.771484375 587.546875 47.2080078125 566.755859375 62.80859375 c 5
547.708984375 45.166015625 526.95703125 29.896484375 504.5 17 c 4
470.833007812 -2.3330078125 432 -12 388 -12 c 4xee
345.509765625 302.334960938 m 5
344 301.057617188 342.49609375 299.779296875 341 298.5 c 4
320.333007812 280.833007812 303.666992188 262 291 242 c 4
278.333007812 222 272 199.666992188 272 175 c 4
272 150.333007812 277.666992188 129 289 111 c 4
300.333007812 93 315.5 79 334.5 69 c 4
353.5 59 374.666992188 54 398 54 c 4
423.333007812 54 447.833007812 61.1669921875 471.5 75.5 c 4
486.026367188 84.2978515625 499.861328125 94.6650390625 513.005859375 106.6015625 c 5
489.37890625 127.435546875 466.376953125 150.068359375 444 174.5 c 4
411.333007812 210.166992188 381.833007812 247.666992188 355.5 287 c 4
352.07421875 292.1171875 348.744140625 297.228515625 345.509765625 302.334960938 c 5
371.872070312 399.045898438 m 5
382.2265625 406.565429688 392.26953125 414.049804688 402 421.5 c 4
423.333007812 437.833007812 440.833007812 455.333007812 454.5 474 c 4
468.166992188 492.666992188 475 513.666992188 475 537 c 4
475 556.333007812 470.5 573.166992188 461.5 587.5 c 4
452.5 601.833007812 437 609 415 609 c 4
392.333007812 609 374.5 600 361.5 582 c 4
348.5 564 342 541.333007812 342 514 c 4xee
342 483.333007812 349.333007812 450.833007812 364 416.5 c 4
366.485351562 410.681640625 369.109375 404.864257812 371.872070312 399.045898438 c 5
EndSplineSet
Validated: 524289
EndChar
StartChar: quotesingle
Encoding: 39 39 6
Width: 900
Flags: W
HStem: 352 21G<419.778 480.222> 667 20G<395 505>
VStem: 397 106<532 687>
LayerCount: 2
Fore
SplineSet
422 352 m 5
397 577 l 5
395 687 l 5
505 687 l 5
503 577 l 5
478 352 l 5
422 352 l 5
EndSplineSet
Validated: 1
EndChar
StartChar: parenleft
Encoding: 40 40 7
Width: 900
Flags: W
VStem: 358 74<120.535 435.661>
LayerCount: 2
Fore
SplineSet
583 -176 m 5
513.666992188 -121.333007812 458.833007812 -56.1669921875 418.5 19.5 c 4
378.166992188 95.1669921875 358 181.333007812 358 278 c 4
358 374.666992188 378.166992188 461 418.5 537 c 4
458.833007812 613 513.666992188 678 583 732 c 5
628 690 l 5
561.333007812 634 512 572.333007812 480 505 c 4
448 437.666992188 432 362 432 278 c 4
432 194 448 118.5 480 51.5 c 4
512 -15.5 561.333007812 -77.3330078125 628 -134 c 5
583 -176 l 5
EndSplineSet
Validated: 524289
EndChar
StartChar: parenright
Encoding: 41 41 8
Width: 900
Flags: W
VStem: 468 74<120.535 435.661>
LayerCount: 2
Fore
SplineSet
317 -176 m 5
272 -134 l 5
338.666992188 -77.3330078125 388 -15.5 420 51.5 c 4
452 118.5 468 194 468 278 c 4
468 362 452 437.666992188 420 505 c 4
388 572.333007812 338.666992188 634 272 690 c 5
317 732 l 5
387 678 442 613 482 537 c 4
522 461 542 374.666992188 542 278 c 4
542 181.333007812 522 95.1669921875 482 19.5 c 4
442 -56.1669921875 387 -121.333007812 317 -176 c 5
EndSplineSet
Validated: 524289
EndChar
StartChar: asterisk
Encoding: 42 42 9
Width: 900
Flags: W
HStem: 402 154G<243.043 310.727 425.048 474.952 589.273 656.957>
VStem: 417 66<367 514> 426 48<409 556>
LayerCount: 2
Fore
SplineSet
330 111 m 1xc0
288 141 l 1
396 306 l 1
234 376 l 1
250 422 l 1
417 367 l 1xc0
426 556 l 1
474 556 l 1xa0
483 367 l 1
650 422 l 1
666 376 l 1
504 306 l 1
612 141 l 1
570 111 l 1
450 270 l 1
330 111 l 1xc0
EndSplineSet
Validated: 1
EndChar
StartChar: plus
Encoding: 43 43 10
Width: 900
Flags: W
HStem: 299 62<235 417 483 665> 536 20G<417 483>
VStem: 417 66<104 299 361 556>
LayerCount: 2
Fore
SplineSet
417 104 m 1
417 299 l 1
235 299 l 1
235 361 l 1
417 361 l 1
417 556 l 1
483 556 l 1
483 361 l 1
665 361 l 1
665 299 l 1
483 299 l 1
483 104 l 1
417 104 l 1
EndSplineSet
Validated: 1
EndChar
StartChar: comma
Encoding: 44 44 11
Width: 900
Flags: W
HStem: 4 151<400.752 471.762>
VStem: 472.862 73.1377<-76.3633 5.81738>
LayerCount: 2
Fore
SplineSet
370 -213 m 1
347 -161 l 1
389.666992188 -142.333007812 421.333007812 -118.833007812 442 -90.5 c 0
461.288085938 -64.056640625 471.576171875 -31.9501953125 472.862304688 5.8173828125 c 1
466.641601562 4.60546875 460.354492188 4 454 4 c 0
440 4 427 6.8330078125 415 12.5 c 0
403 18.1669921875 393.5 26.5 386.5 37.5 c 0
379.5 48.5 376 62.3330078125 376 79 c 0
376 103.666992188 384 122.5 400 135.5 c 0
416 148.5 434.666992188 155 456 155 c 0
485.333007812 155 507.666992188 143.5 523 120.5 c 0
538.333007812 97.5 546 66.3330078125 546 27 c 0
546 -31.6669921875 530.333007812 -81.1669921875 499 -121.5 c 0
467.666992188 -161.833007812 424.666992188 -192.333007812 370 -213 c 1
EndSplineSet
Validated: 524289
EndChar
StartChar: hyphen
Encoding: 45 45 12
Width: 900
Flags: W
HStem: 299 62<235 665>
LayerCount: 2
Fore
SplineSet
235 299 m 5
235 361 l 5
665 361 l 5
665 299 l 5
235 299 l 5
EndSplineSet
Validated: 1
EndChar
StartChar: period
Encoding: 46 46 13
Width: 900
Flags: W
HStem: -9 154<396.691 503.309>
VStem: 373 154<14.6914 121.309>
LayerCount: 2
Fore
SplineSet
373 68 m 0
373 111 407 145 450 145 c 4
493 145 527 111 527 68 c 4
527 25 493 -9 450 -9 c 0
407 -9 373 25 373 68 c 0
EndSplineSet
Validated: 1
EndChar
StartChar: slash
Encoding: 47 47 14
Width: 900
Flags: W
LayerCount: 2
Fore
SplineSet
249 -160 m 5
577 710 l 5
651 710 l 5
323 -160 l 5
249 -160 l 5
EndSplineSet
Validated: 1
EndChar
StartChar: zero
Encoding: 48 48 15
Width: 900
Flags: W
HStem: -12 66<380.24 520.131> 584 66<379.36 521.198>
VStem: 221 77<164.045 477.946> 602 77<164.045 477.946>
LayerCount: 2
Fore
SplineSet
450 54 m 0
480 54 506.333007812 63.5 529 82.5 c 0
551.666992188 101.5 569.5 130.833007812 582.5 170.5 c 0
595.5 210.166992188 602 260.333007812 602 321 c 0
602 382.333007812 595.5 432.333007812 582.5 471 c 0
569.5 509.666992188 551.666992188 538.166992188 529 556.5 c 0
506.333007812 574.833007812 480 584 450 584 c 0
420.666992188 584 394.5 574.833007812 371.5 556.5 c 0
348.5 538.166992188 330.5 509.666992188 317.5 471 c 0
304.5 432.333007812 298 382.333007812 298 321 c 0
298 260.333007812 304.5 210.166992188 317.5 170.5 c 0
330.5 130.833007812 348.5 101.5 371.5 82.5 c 0
394.5 63.5 420.666992188 54 450 54 c 0
450 -12 m 0
402.666992188 -12 362 1.1669921875 328 27.5 c 0
294 53.8330078125 267.666992188 91.6669921875 249 141 c 0
230.333007812 190.333007812 221 250.333007812 221 321 c 0
221 428.333007812 241.5 510 282.5 566 c 0
323.5 622 379.333007812 650 450 650 c 0
521.333007812 650 577.333007812 622 618 566 c 0
658.666992188 510 679 428.333007812 679 321 c 0
679 250.333007812 669.833007812 190.333007812 651.5 141 c 0
633.166992188 91.6669921875 606.833007812 53.8330078125 572.5 27.5 c 0
538.166992188 1.1669921875 497.333007812 -12 450 -12 c 0
EndSplineSet
Validated: 524289
EndChar
StartChar: one
Encoding: 49 49 16
Width: 900
Flags: W
HStem: 0 68<247 431 513 680> 538 53<288 390.909> 618 20G<445.333 513> 618 20G<445.333 513>
VStem: 431 82<68 538>
LayerCount: 2
Fore
SplineSet
247 0 m 1xe8
247 68 l 1
431 68 l 1
431 538 l 1
288 538 l 1
288 591 l 1
313.333007812 594.333007812 335.666992188 598.333007812 355 603 c 0
374.333007812 607.666992188 392 612.833007812 408 618.5 c 0
424 624.166992188 438.666992188 630.666992188 452 638 c 1
513 638 l 1
513 68 l 1
680 68 l 1
680 0 l 1
247 0 l 1xe8
EndSplineSet
Validated: 524289
EndChar
StartChar: two
Encoding: 50 50 17
Width: 900
Flags: W
HStem: 0 71<343.938 672> 506 21G<246 276.333> 583 67<335.614 507.227>
VStem: 558 79<376.409 533.121>
LayerCount: 2
Fore
SplineSet
223 0 m 1
223 49 l 1
295 112.333007812 355.833007812 168.166992188 405.5 216.5 c 0
455.166992188 264.833007812 493 308.333007812 519 347 c 0
545 385.666992188 558 422.666992188 558 458 c 0
558 494.666992188 546.666992188 524.666992188 524 548 c 0
501.333007812 571.333007812 466.333007812 583 419 583 c 0
389 583 361.166992188 575.666992188 335.5 561 c 0
309.833007812 546.333007812 286.666992188 528 266 506 c 1
219 553 l 1
247.666992188 582.333007812 278.5 605.833007812 311.5 623.5 c 0
344.5 641.166992188 383.666992188 650 429 650 c 0
471.666992188 650 508.5 642.166992188 539.5 626.5 c 0
570.5 610.833007812 594.5 589 611.5 561 c 0
628.5 533 637 500 637 462 c 0
637 422 624.666992188 381.666992188 600 341 c 0
575.333007812 300.333007812 540.833007812 257.5 496.5 212.5 c 0
452.166992188 167.5 401 118.333007812 343 65 c 1
363 67 383 68.5 403 69.5 c 0
423 70.5 442.666992188 71 462 71 c 2
672 71 l 1
672 0 l 1
223 0 l 1
EndSplineSet
Validated: 524289
EndChar
StartChar: three
Encoding: 51 51 18
Width: 900
Flags: W
HStem: -12 68<328.621 525.202> 300 63<353 489.587> 518 21G<258.077 285.333> 583 67<338.908 518.211>
VStem: 562 84<420.386 543.004> 585 83<109.325 237.605>
LayerCount: 2
Fore
SplineSet
437 -12 m 0xf4
400.333007812 -12 367.666992188 -7.6669921875 339 1 c 0
310.333007812 9.6669921875 285.166992188 20.6669921875 263.5 34 c 0
241.833007812 47.3330078125 223 62 207 78 c 1
249 132 l 1
270.333007812 112 296 94.3330078125 326 79 c 0
356 63.6669921875 391.333007812 56 432 56 c 0
461.333007812 56 487.5 60.8330078125 510.5 70.5 c 0
533.5 80.1669921875 551.666992188 93.8330078125 565 111.5 c 0
578.333007812 129.166992188 585 149.666992188 585 173 c 0xf4
585 198.333007812 577.333007812 220.5 562 239.5 c 0
546.666992188 258.5 522 273.333007812 488 284 c 0
454 294.666992188 409 300 353 300 c 1
353 363 l 1
403.666992188 363 444.333007812 368.333007812 475 379 c 0
505.666992188 389.666992188 527.833007812 403.833007812 541.5 421.5 c 0
555.166992188 439.166992188 562 459.333007812 562 482 c 0
562 513.333007812 550.166992188 538 526.5 556 c 0
502.833007812 574 471.333007812 583 432 583 c 0
402 583 373.5 577 346.5 565 c 0
319.5 553 295.666992188 537.333007812 275 518 c 1
231 570 l 1
257.666992188 593.333007812 288.166992188 612.5 322.5 627.5 c 0
356.833007812 642.5 394.333007812 650 435 650 c 0
475 650 510.833007812 643.666992188 542.5 631 c 0
574.166992188 618.333007812 599.333007812 600 618 576 c 0
636.666992188 552 646 522.666992188 646 488 c 0xf8
646 449.333007812 633.166992188 417.666992188 607.5 393 c 0
581.833007812 368.333007812 549.333007812 349.333007812 510 336 c 1
510 332 l 1
538 326 564.166992188 315.833007812 588.5 301.5 c 0
612.833007812 287.166992188 632.166992188 269 646.5 247 c 0
660.833007812 225 668 199.333007812 668 170 c 0
668 132 657.5 99.5 636.5 72.5 c 0
615.5 45.5 587.666992188 24.6669921875 553 10 c 0
518.333007812 -4.6669921875 479.666992188 -12 437 -12 c 0xf4
EndSplineSet
Validated: 524289
EndChar
StartChar: four
Encoding: 52 52 19
Width: 900
Flags: W
HStem: 0 21G<518 596> 0 21G<518 596> 176 66<280 518 596 695> 618 20G<492.324 596> 618 20G<492.324 596>
VStem: 518 78<0 176 242 553>
LayerCount: 2
Fore
SplineSet
596 176 m 1xb4
596 0 l 1
518 0 l 1
518 176 l 1
189 176 l 1
189 231 l 1
508 638 l 1
596 638 l 1
596 242 l 1
695 242 l 1
695 176 l 1
596 176 l 1xb4
518 242 m 1
518 440 l 2
518.666992188 457.333007812 519.5 476.166992188 520.5 496.5 c 0
521.5 516.833007812 522.333007812 535.666992188 523 553 c 1
518 553 l 1
508 537.666992188 497.333007812 522.166992188 486 506.5 c 0
474.666992188 490.833007812 463.666992188 475.333007812 453 460 c 2
280 242 l 1
518 242 l 1
EndSplineSet
Validated: 524289
EndChar
StartChar: five
Encoding: 53 53 20
Width: 900
Flags: W
HStem: -12 68<322.777 516.184> 303 21G<270.571 313.333> 342 62<345.061 523.782> 567 71<352 640>
VStem: 589 83<124.257 280.577>
LayerCount: 2
Fore
SplineSet
436 -12 m 0
398 -12 364.666992188 -7.8330078125 336 0.5 c 0
307.333007812 8.8330078125 282.5 19.6669921875 261.5 33 c 0
240.5 46.3330078125 222 60.3330078125 206 75 c 1
247 129 l 1
261 116.333007812 276.5 104.5 293.5 93.5 c 0
310.5 82.5 330 73.5 352 66.5 c 0
374 59.5 399 56 427 56 c 0
457 56 484.333007812 62 509 74 c 0
533.666992188 86 553.166992188 102.833007812 567.5 124.5 c 0
581.833007812 146.166992188 589 172 589 202 c 0
589 246 574.666992188 280.333007812 546 305 c 0
517.333007812 329.666992188 479.333007812 342 432 342 c 0
405.333007812 342 382.666992188 338.666992188 364 332 c 0
345.333007812 325.333007812 324.666992188 315.666992188 302 303 c 1
258 331 l 1
279 638 l 1
640 638 l 1
640 567 l 1
352 567 l 1
335 378 l 1
353 386 371.166992188 392.333007812 389.5 397 c 0
407.833007812 401.666992188 429 404 453 404 c 0
493.666992188 404 530.666992188 397 564 383 c 0
597.333007812 369 623.666992188 347.166992188 643 317.5 c 0
662.333007812 287.833007812 672 250 672 204 c 0
672 158 660.833007812 118.833007812 638.5 86.5 c 0
616.166992188 54.1669921875 587 29.6669921875 551 13 c 0
515 -3.6669921875 476.666992188 -12 436 -12 c 0
EndSplineSet
Validated: 524289
EndChar
StartChar: six
Encoding: 54 54 21
Width: 900
Flags: W
HStem: -12 65<389.454 545.69> 328 62<391.351 555.175> 531 21G<618 644.039> 581 69<412.431 586.4>
VStem: 227 77.0889<307.026 449.145> 606 78<113.389 277.021>
LayerCount: 2
Fore
SplineSet
471 -12 m 0
436.333007812 -12 404.166992188 -5.6669921875 374.5 7 c 0
344.833007812 19.6669921875 319 38.8330078125 297 64.5 c 0
275 90.1669921875 257.833007812 122.166992188 245.5 160.5 c 0
233.166992188 198.833007812 227 243.666992188 227 295 c 0
227 359 234.333007812 413.5 249 458.5 c 0
263.666992188 503.5 283.5 540 308.5 568 c 0
333.5 596 362 616.666992188 394 630 c 0
426 643.333007812 459.333007812 650 494 650 c 0
532.666992188 650 566.666992188 643.5 596 630.5 c 0
625.333007812 617.5 650.666992188 601.333007812 672 582 c 1
626 531 l 1
610 546.333007812 590.833007812 558.5 568.5 567.5 c 0
546.166992188 576.5 523 581 499 581 c 0
464.333007812 581 432.333007812 572 403 554 c 0
373.666992188 536 349.833007812 506.166992188 331.5 464.5 c 0
314.208984375 425.203125 305.072265625 372.711914062 304.088867188 307.026367188 c 1
329.640625 331.805664062 357.444335938 351.629882812 387.5 366.5 c 0
419.166992188 382.166992188 451.666992188 390 485 390 c 0
524.333007812 390 559 382.666992188 589 368 c 0
619 353.333007812 642.333007812 331.333007812 659 302 c 0
675.666992188 272.666992188 684 236.333007812 684 193 c 0
684 152.333007812 674.166992188 116.666992188 654.5 86 c 0
634.833007812 55.3330078125 608.833007812 31.3330078125 576.5 14 c 0
544.166992188 -3.3330078125 509 -12 471 -12 c 0
306.456054688 242.07421875 m 1
309.432617188 211.915039062 315.114257812 185.223632812 323.5 162 c 0
336.5 126 355.5 98.8330078125 380.5 80.5 c 0
405.5 62.1669921875 435.666992188 53 471 53 c 0
496.333007812 53 519.166992188 58.8330078125 539.5 70.5 c 0
559.833007812 82.1669921875 576 98.5 588 119.5 c 0
600 140.5 606 165 606 193 c 0
606 237 594.333007812 270.5 571 293.5 c 0
547.666992188 316.5 514 328 470 328 c 0
444.666992188 328 417.333007812 321.166992188 388 307.5 c 0
359.901367188 294.408203125 332.719726562 272.599609375 306.456054688 242.07421875 c 1
EndSplineSet
Validated: 524289
EndChar
StartChar: seven
Encoding: 55 55 22
Width: 900
Flags: W
HStem: 0 21G<376 463> 0 21G<376 463> 567 71<220 588>
VStem: 376 86<0 191.53>
LayerCount: 2
Fore
SplineSet
376 0 m 1xb0
378.666992188 60.6669921875 384.333007812 116 393 166 c 0
401.666992188 216 414.333007812 263.166992188 431 307.5 c 0
447.666992188 351.833007812 469 395 495 437 c 0
521 479 552 522.333007812 588 567 c 1
220 567 l 1
220 638 l 1
682 638 l 1
682 587 l 1
639.333007812 539 604.333007812 493 577 449 c 0
549.666992188 405 528 360.333007812 512 315 c 0
496 269.666992188 484.166992188 221.5 476.5 170.5 c 0
468.833007812 119.5 464 62.6669921875 462 0 c 1
376 0 l 1xb0
EndSplineSet
Validated: 524289
EndChar
StartChar: eight
Encoding: 56 56 23
Width: 900
Flags: W
HStem: -12 61<356.611 549.684> 589 61<376.156 533.501>
VStem: 218 75<105.862 240.35> 258 75<423.708 547.951> 582 71<406.86 542.385> 602 79<97.0402 224.463>
LayerCount: 2
Fore
SplineSet
454 49 m 0xe4
501.333007812 49 537.833007812 59.3330078125 563.5 80 c 0
589.166992188 100.666992188 602 127.666992188 602 161 c 0
602 183 596.833007812 201.5 586.5 216.5 c 0
576.166992188 231.5 562 244.166992188 544 254.5 c 0
526 264.833007812 504.833007812 274.333007812 480.5 283 c 0
456.166992188 291.666992188 430 300.666992188 402 310 c 1
381.333007812 298.666992188 362.666992188 286.333007812 346 273 c 0
329.333007812 259.666992188 316.333007812 244.666992188 307 228 c 0
297.666992188 211.333007812 293 192.333007812 293 171 c 0
293 147.666992188 299.5 126.833007812 312.5 108.5 c 0
325.5 90.1669921875 344.166992188 75.6669921875 368.5 65 c 0
392.833007812 54.3330078125 421.333007812 49 454 49 c 0xe4
502 348 m 1
555.333007812 386.666992188 582 429.333007812 582 476 c 0
582 496.666992188 577 515.5 567 532.5 c 0
557 549.5 542.5 563.166992188 523.5 573.5 c 0
504.5 583.833007812 481 589 453 589 c 0
418.333007812 589 389.666992188 579.5 367 560.5 c 0
344.333007812 541.5 333 516.666992188 333 486 c 0xd8
333 460.666992188 340.5 439.666992188 355.5 423 c 0
370.5 406.333007812 390.833007812 392.166992188 416.5 380.5 c 0
442.166992188 368.833007812 470.666992188 358 502 348 c 1
452 -12 m 0
404 -12 362.5 -4.5 327.5 10.5 c 0
292.5 25.5 265.5 46.3330078125 246.5 73 c 0
227.5 99.6669921875 218 129.666992188 218 163 c 0xe4
218 192.333007812 224.666992188 217.833007812 238 239.5 c 0
251.333007812 261.166992188 268.5 279.5 289.5 294.5 c 0
310.5 309.5 332.333007812 322.333007812 355 333 c 1
355 337 l 1
328.333007812 354.333007812 305.5 375.166992188 286.5 399.5 c 0
267.5 423.833007812 258 452.666992188 258 486 c 0
258 518.666992188 266.5 547.333007812 283.5 572 c 0
300.5 596.666992188 323.833007812 615.833007812 353.5 629.5 c 0
383.166992188 643.166992188 417 650 455 650 c 0
517 650 565.5 634.166992188 600.5 602.5 c 0
635.5 570.833007812 653 530 653 480 c 0xd8
653 450 643.5 421.833007812 624.5 395.5 c 0
605.5 369.166992188 582.666992188 346.666992188 556 328 c 1
556 324 l 1
579.333007812 312 600.5 299 619.5 285 c 0
638.5 271 653.5 254 664.5 234 c 0
675.5 214 681 188.666992188 681 158 c 0xc4
681 126.666992188 672.166992188 98.1669921875 654.5 72.5 c 0
636.833007812 46.8330078125 611 26.3330078125 577 11 c 0
543 -4.3330078125 501.333007812 -12 452 -12 c 0
EndSplineSet
Validated: 524289
EndChar
StartChar: nine
Encoding: 57 57 24
Width: 900
Flags: W
HStem: -12 68<316.508 488.252> 248 62<346.855 509.603> 585 65<355.261 510.555>
VStem: 217 78<361.302 523.948> 595.896 78.1045<187.609 329.876>
LayerCount: 2
Fore
SplineSet
407 -12 m 0
367.666992188 -12 333.333007812 -5.5 304 7.5 c 0
274.666992188 20.5 249.666992188 36.3330078125 229 55 c 1
275 107 l 1
291 91.6669921875 310.166992188 79.3330078125 332.5 70 c 0
354.833007812 60.6669921875 378 56 402 56 c 0
436.666992188 56 468.666992188 65.1669921875 498 83.5 c 0
527.333007812 101.833007812 551 131.833007812 569 173.5 c 0
585.881835938 212.578125 594.846679688 264.703125 595.895507812 329.875976562 c 1
571.19921875 305.608398438 543.734375 286.149414062 513.5 271.5 c 0
481.166992188 255.833007812 448.333007812 248 415 248 c 0
375.666992188 248 341.166992188 255.333007812 311.5 270 c 0
281.833007812 284.666992188 258.666992188 306.666992188 242 336 c 0
225.333007812 365.333007812 217 401.666992188 217 445 c 0
217 485.666992188 226.833007812 521.5 246.5 552.5 c 0
266.166992188 583.5 292.166992188 607.5 324.5 624.5 c 0
356.833007812 641.5 391.666992188 650 429 650 c 0
464.333007812 650 496.666992188 643.666992188 526 631 c 0
555.333007812 618.333007812 581.166992188 599.166992188 603.5 573.5 c 0
625.833007812 547.833007812 643.166992188 515.833007812 655.5 477.5 c 0
667.833007812 439.166992188 674 394.333007812 674 343 c 0
674 279 666.666992188 224.333007812 652 179 c 0
637.333007812 133.666992188 617.5 97 592.5 69 c 0
567.5 41 538.833007812 20.5 506.5 7.5 c 0
474.166992188 -5.5 441 -12 407 -12 c 0
593.639648438 394.879882812 m 1
590.690429688 425.368164062 584.977539062 452.241210938 576.5 475.5 c 0
563.5 511.166992188 544.666992188 538.333007812 520 557 c 0
495.333007812 575.666992188 465.333007812 585 430 585 c 0
404.666992188 585 381.833007812 579.166992188 361.5 567.5 c 0
341.166992188 555.833007812 325 539.5 313 518.5 c 0
301 497.5 295 473 295 445 c 0
295 401.666992188 306.666992188 368.333007812 330 345 c 0
353.333007812 321.666992188 387 310 431 310 c 0
456.333007812 310 483.666992188 316.833007812 513 330.5 c 0
540.776367188 343.44140625 567.65625 364.901367188 593.639648438 394.879882812 c 1
EndSplineSet
Validated: 524289
EndChar
StartChar: colon
Encoding: 58 58 25
Width: 900
Flags: W
HStem: -9 154<396.691 503.309> 349 154<396.691 503.309>
VStem: 373 154<14.6914 121.309 372.691 479.309>
LayerCount: 2
Fore
Refer: 13 46 N 1 0 0 1 0 358 3
Refer: 13 46 S 1 0 0 1 0 0 2
Validated: 1
EndChar
StartChar: semicolon
Encoding: 59 59 26
Width: 900
Flags: W
HStem: 4 151<400.752 471.762> 349 154<396.691 503.309>
VStem: 373 154<372.691 479.309> 472.862 73.1377<-76.3633 5.81738>
LayerCount: 2
Fore
Refer: 13 46 S 1 0 0 1 0 358 3
Refer: 11 44 S 1 0 0 1 0 0 2
Validated: 1
EndChar
StartChar: less
Encoding: 60 60 27
Width: 900
Flags: W
HStem: 596 20G<613.514 643>
LayerCount: 2
Fore
SplineSet
643 48 m 1
270 301 l 1
270 363 l 1
643 616 l 1
643 537 l 1
342 334 l 1
342 330 l 1
643 127 l 1
643 48 l 1
EndSplineSet
Validated: 1
EndChar
StartChar: equal
Encoding: 61 61 28
Width: 900