This repository has been archived by the owner on Apr 9, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
co_PhotoSans.sfd
6095 lines (5781 loc) · 153 KB
/
co_PhotoSans.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.0
FontName: PhotoSans-Regular
FullName: Photo Sans
FamilyName: Photo Sans
Weight: Regular
Copyright: Copyright (c) 2019, Collectif Design Ltd. (collectif.co.nz), Wayne Shih ([email protected]), \nwith Reserved Font Name 'Photo Sans'. \n-- \n'Photo Sans' is a Font Software modified from 'Karla' and 'Karmilla' under the SIL Open Font License. \nKarla v1.000 (c) 2011-2012, Jonathan Pinhor ([email protected]). \nKarmilla v1.000 (c) 2012, Manuel Schmalstieg (greyscalepress.com) and Raphael Bastide (raphaelbastide.com). \n--\nThis Font Software is licensed under the SIL Open Font License, Version 1.1.
Version: 1.000
ItalicAngle: 0
UnderlinePosition: -100
UnderlineWidth: 50
Ascent: 800
Descent: 200
InvalidEm: 0
sfntRevision: 0x00010000
LayerCount: 2
Layer: 0 1 "Back" 1
Layer: 1 1 "Fore" 0
XUID: [1021 95 -562094785 6866650]
StyleMap: 0x0040
FSType: 8
OS2Version: 0
OS2_WeightWidthSlopeOnly: 0
OS2_UseTypoMetrics: 0
CreationTime: 1307536560
ModificationTime: 1551503091
PfmFamily: 33
TTFWeight: 400
TTFWidth: 5
LineGap: 0
VLineGap: 0
Panose: 0 0 0 0 0 0 0 0 0 0
OS2TypoAscent: 917
OS2TypoAOffset: 0
OS2TypoDescent: -252
OS2TypoDOffset: 0
OS2TypoLinegap: 0
OS2WinAscent: 917
OS2WinAOffset: 0
OS2WinDescent: 252
OS2WinDOffset: 0
HheadAscent: 917
HheadAOffset: 0
HheadDescent: -252
HheadDOffset: 0
OS2SubXSize: 700
OS2SubYSize: 650
OS2SubXOff: 0
OS2SubYOff: 140
OS2SupXSize: 700
OS2SupYSize: 650
OS2SupXOff: 0
OS2SupYOff: 477
OS2StrikeYSize: 50
OS2StrikeYPos: 250
OS2CapHeight: 629
OS2XHeight: 478
OS2Vendor: 'pyrs'
OS2CodePages: 00000001.00000000
OS2UnicodeRanges: 80000027.08000042.14000000.00000000
Lookup: 1 0 0 "'onum' Oldstyle Figures in Latin lookup 0" { "'onum' Oldstyle Figures in Latin lookup 0 subtable" ("oldstyle") } ['onum' ('latn' <'dflt' > ) ]
Lookup: 258 0 0 "'kern' Horizontal Kerning in Latin lookup 0" { "'kern' Horizontal Kerning in Latin lookup 0 subtable" } ['kern' ('latn' <'dflt' > ) ]
MarkAttachClasses: 1
DEI: 91125
TtTable: prep
PUSHW_1
511
SCANCTRL
PUSHB_1
4
SCANTYPE
EndTTInstrs
ShortTable: maxp 16
1
0
167
63
5
0
0
2
0
1
1
0
64
0
0
0
EndShort
LangName: 1033 "" "" "" "co. Photo Sans Regular : March 2019" "PhotoSans-Regular" "1.000" "" "" "" "Collectif Design Ltd., Wayne Shih" "This Font Software is modifed from Karla (J. Pinhorn, 2011-2) and Karmilla (M. Schmalstieg & R. Bastide, 2012) with metric and kerning modifications, and additional glyphs including macron subsets. " "" "http://collectif.co.nz" "This Font Software is licensed under the SIL Open Font License, Version 1.1.+AAoA-This license is available at: http://scripts.sil.org/OFL" "http://scripts.sil.org/OFL"
GaspTable: 1 65535 15 1
Encoding: UnicodeFull
Compacted: 1
UnicodeInterp: none
NameList: AGL For New Fonts
DisplaySize: -48
AntiAlias: 1
FitToEm: 0
WinInfo: 0 13 9
BeginPrivate: 0
EndPrivate
Grid
-1000 -11 m 0
2000 -11 l 1024
-1000 629 m 0
2000 629 l 1024
-1000 561 m 0
2000 561 l 1024
-1000 716 m 0
2000 716 l 1024
-1000 778 m 0
2000 778 l 1024
EndSplineSet
TeXData: 1 0 0 249561 124779 83187 501219 1048576 83187 783286 444596 497025 792723 393216 433062 380633 303038 157286 324010 404750 52429 2506097 1059062 262144
BeginChars: 1114125 314
StartChar: .notdef
Encoding: 1114112 -1 0
Width: 553
Flags: W
LayerCount: 2
Fore
Validated: 1
EndChar
StartChar: .null
Encoding: 1114113 -1 1
Width: 0
GlyphClass: 2
Flags: W
LayerCount: 2
Fore
Validated: 1
EndChar
StartChar: nonmarkingreturn
Encoding: 1114114 -1 2
Width: 553
GlyphClass: 2
Flags: W
LayerCount: 2
Fore
Validated: 1
EndChar
StartChar: space
Encoding: 32 32 3
AltUni2: 0000a0.ffffffff.0
Width: 238
GlyphClass: 2
Flags: W
LayerCount: 2
Fore
Validated: 1
EndChar
StartChar: exclam
Encoding: 33 33 4
Width: 278
GlyphClass: 2
Flags: W
LayerCount: 2
Fore
SplineSet
99 627 m 1,0,-1
182 627 l 1,1,-1
173 176 l 1,2,-1
109 176 l 1,3,-1
99 627 l 1,0,-1
98.5 7.5 m 128,-1,5
82 24 82 24 82 47.5 c 128,-1,6
82 71 82 71 98.5 87.5 c 128,-1,7
115 104 115 104 140.5 104 c 128,-1,8
166 104 166 104 183.5 87.5 c 128,-1,9
201 71 201 71 201 47.5 c 128,-1,10
201 24 201 24 183.5 7.5 c 128,-1,11
166 -9 166 -9 140.5 -9 c 128,-1,4
115 -9 115 -9 98.5 7.5 c 128,-1,5
EndSplineSet
Validated: 1
EndChar
StartChar: quotedbl
Encoding: 34 34 5
Width: 306
GlyphClass: 2
Flags: W
LayerCount: 2
Fore
SplineSet
110 681 m 1,0,-1
99 461 l 1,1,-1
39 461 l 1,2,-1
28 681 l 1,3,-1
110 681 l 1,0,-1
278 681 m 1,4,-1
267 461 l 1,5,-1
207 461 l 1,6,-1
196 681 l 1,7,-1
278 681 l 1,4,-1
EndSplineSet
Validated: 1
EndChar
StartChar: numbersign
Encoding: 35 35 6
Width: 627
GlyphClass: 2
Flags: W
LayerCount: 2
Fore
SplineSet
380 170 m 1,0,-1
226 170 l 1,1,-1
212 31 l 1,2,-1
138 31 l 1,3,-1
152 170 l 1,4,-1
53 170 l 1,5,-1
58 224 l 1,6,-1
158 224 l 1,7,-1
177 402 l 1,8,-1
76 402 l 1,9,-1
82 455 l 1,10,-1
182 455 l 1,11,-1
197 593 l 1,12,-1
271 593 l 1,13,-1
256 455 l 1,14,-1
410 455 l 1,15,-1
425 593 l 1,16,-1
498 593 l 1,17,-1
483 455 l 1,18,-1
586 455 l 1,19,-1
580 402 l 1,20,-1
478 402 l 1,21,-1
459 224 l 1,22,-1
562 224 l 1,23,-1
556 170 l 1,24,-1
453 170 l 1,25,-1
439 31 l 1,26,-1
365 31 l 1,27,-1
380 170 l 1,0,-1
232 224 m 1,28,-1
385 224 l 1,29,-1
404 402 l 1,30,-1
251 402 l 1,31,-1
232 224 l 1,28,-1
EndSplineSet
Validated: 1
EndChar
StartChar: dollar
Encoding: 36 36 7
Width: 632
GlyphClass: 2
Flags: W
LayerCount: 2
Fore
SplineSet
417 330 m 2,0,1
486 307 486 307 524.5 268.5 c 128,-1,2
563 230 563 230 563 163.5 c 128,-1,3
563 97 563 97 506 46.5 c 128,-1,4
449 -4 449 -4 347 -10 c 1,5,-1
347 -91 l 1,6,-1
285 -91 l 1,7,-1
285 -9 l 1,8,9
190 -1 190 -1 129.5 50.5 c 128,-1,10
69 102 69 102 69 189 c 1,11,-1
146 189 l 1,12,13
146 76 146 76 285 63 c 1,14,-1
285 298 l 1,15,-1
253 310 l 1,16,17
170 336 170 336 127.5 372 c 128,-1,18
85 408 85 408 85 475 c 128,-1,19
85 542 85 542 135.5 586.5 c 128,-1,20
186 631 186 631 285 638 c 1,21,-1
285 713 l 1,22,-1
347 713 l 1,23,-1
347 637 l 1,24,25
434 630 434 630 481 587 c 128,-1,26
528 544 528 544 539 476 c 1,27,-1
461 476 l 1,28,29
444 556 444 556 347 568 c 1,30,-1
347 353 l 1,31,-1
417 330 l 2,0,1
475 167 m 0,32,33
475 241 475 241 383 270 c 2,34,-1
347 282 l 1,35,-1
347 62 l 1,36,37
410 67 410 67 442.5 98 c 128,-1,38
475 129 475 129 475 167 c 0,32,33
199 536 m 128,-1,40
170 509 170 509 170 472.5 c 128,-1,41
170 436 170 436 190 415.5 c 128,-1,42
210 395 210 395 255 381 c 2,43,-1
285 370 l 1,44,-1
285 569 l 1,45,39
228 563 228 563 199 536 c 128,-1,40
EndSplineSet
Validated: 1
EndChar
StartChar: percent
Encoding: 37 37 8
Width: 726
GlyphClass: 2
Flags: W
LayerCount: 2
Fore
SplineSet
279 602 m 128,-1,1
317 564 317 564 317 496 c 256,2,3
317 428 317 428 279.5 390.5 c 128,-1,4
242 353 242 353 188 353 c 128,-1,5
134 353 134 353 97.5 391 c 128,-1,6
61 429 61 429 61 496 c 256,7,8
61 563 61 563 98 601.5 c 128,-1,9
135 640 135 640 188 640 c 128,-1,0
241 640 241 640 279 602 c 128,-1,1
235 565 m 128,-1,11
217 587 217 587 188 587 c 128,-1,12
159 587 159 587 141 565 c 128,-1,13
123 543 123 543 123 496 c 256,14,15
123 449 123 449 141 428 c 128,-1,16
159 407 159 407 188 407 c 128,-1,17
217 407 217 407 235 428 c 128,-1,18
253 449 253 449 253 496 c 256,19,10
253 543 253 543 235 565 c 128,-1,11
534 629 m 1,20,-1
616 629 l 1,21,-1
193 0 l 1,22,-1
112 0 l 1,23,-1
534 629 l 1,20,-1
538 276 m 256,24,25
592 276 592 276 629.5 238.5 c 128,-1,26
667 201 667 201 667 132.5 c 128,-1,27
667 64 667 64 629.5 26.5 c 128,-1,28
592 -11 592 -11 538 -11 c 256,29,30
484 -11 484 -11 447.5 27 c 128,-1,31
411 65 411 65 411 132.5 c 128,-1,32
411 200 411 200 447.5 238 c 128,-1,33
484 276 484 276 538 276 c 256,24,25
538 223 m 256,34,35
509 223 509 223 491 201 c 128,-1,36
473 179 473 179 473 132 c 256,37,38
473 85 473 85 491 64 c 128,-1,39
509 43 509 43 538 43 c 256,40,41
567 43 567 43 585 64 c 128,-1,42
603 85 603 85 603 132 c 256,43,44
603 179 603 179 585 201 c 128,-1,45
567 223 567 223 538 223 c 256,34,35
EndSplineSet
Validated: 1
EndChar
StartChar: ampersand
Encoding: 38 38 9
Width: 916
GlyphClass: 2
Flags: W
LayerCount: 2
Fore
SplineSet
725 350 m 1,0,1
680 213 680 213 610 128 c 1,2,-1
653 91 l 2,3,4
673 74 673 74 688.5 66 c 128,-1,5
704 58 704 58 728.5 58 c 128,-1,6
753 58 753 58 772.5 76.5 c 128,-1,7
792 95 792 95 795 140 c 1,8,-1
869 140 l 1,9,10
865 68 865 68 831.5 28.5 c 128,-1,11
798 -11 798 -11 734 -11 c 0,12,13
695 -11 695 -11 662 5 c 128,-1,14
629 21 629 21 590 56 c 2,15,-1
564 78 l 1,16,17
464 -11 464 -11 336 -11 c 0,18,19
231 -11 231 -11 160 41.5 c 128,-1,20
89 94 89 94 89 168 c 128,-1,21
89 242 89 242 136.5 279.5 c 128,-1,22
184 317 184 317 276 332 c 1,23,-1
262 345 l 2,24,25
185 412 185 412 185 492 c 0,26,27
185 555 185 555 237.5 597 c 128,-1,28
290 639 290 639 376.5 639 c 128,-1,29
463 639 463 639 514.5 597 c 128,-1,30
566 555 566 555 566 495.5 c 128,-1,31
566 436 566 436 527 393 c 128,-1,32
488 350 488 350 400 312 c 1,33,-1
558 173 l 1,34,35
626 255 626 255 670 380 c 1,36,-1
725 350 l 1,0,1
211.5 251 m 128,-1,38
175 224 175 224 175 176 c 128,-1,39
175 128 175 128 216.5 93.5 c 128,-1,40
258 59 258 59 344 59 c 128,-1,41
430 59 430 59 511 125 c 1,42,-1
325 288 l 1,43,37
248 278 248 278 211.5 251 c 128,-1,38
480 488 m 0,44,45
480 524 480 524 452.5 548 c 128,-1,46
425 572 425 572 375.5 572 c 128,-1,47
326 572 326 572 298.5 544.5 c 128,-1,48
271 517 271 517 271 485 c 128,-1,49
271 453 271 453 284 428 c 128,-1,50
297 403 297 403 327 377 c 2,51,-1
354 352 l 1,52,53
458 400 458 400 474 452 c 0,54,55
480 469 480 469 480 488 c 0,44,45
EndSplineSet
Validated: 1
EndChar
StartChar: quotesingle
Encoding: 39 39 10
Width: 136
GlyphClass: 2
Flags: W
LayerCount: 2
Fore
SplineSet
109 677 m 1,0,-1
98 457 l 1,1,-1
38 457 l 1,2,-1
27 677 l 1,3,-1
109 677 l 1,0,-1
EndSplineSet
Validated: 1
EndChar
StartChar: parenleft
Encoding: 40 40 11
Width: 356
GlyphClass: 2
Flags: W
LayerCount: 2
Fore
SplineSet
155 307 m 128,-1,1
155 102 155 102 328 -73 c 1,2,-1
271 -113 l 1,3,4
173 -24 173 -24 123 84 c 128,-1,5
73 192 73 192 73 307.5 c 128,-1,6
73 423 73 423 123 530.5 c 128,-1,7
173 638 173 638 271 728 c 1,8,-1
328 687 l 1,9,0
155 512 155 512 155 307 c 128,-1,1
EndSplineSet
Validated: 1
EndChar
StartChar: parenright
Encoding: 41 41 12
Width: 356
GlyphClass: 2
Flags: W
LayerCount: 2
Fore
SplineSet
201 307 m 128,-1,1
201 512 201 512 28 687 c 1,2,-1
85 728 l 1,3,4
183 638 183 638 233 530.5 c 128,-1,5
283 423 283 423 283 307.5 c 128,-1,6
283 192 283 192 233 84 c 128,-1,7
183 -24 183 -24 85 -113 c 1,8,-1
28 -73 l 1,9,0
201 102 201 102 201 307 c 128,-1,1
EndSplineSet
Validated: 1
EndChar
StartChar: asterisk
Encoding: 42 42 13
Width: 412
GlyphClass: 2
Flags: W
LayerCount: 2
Fore
SplineSet
173 516 m 1,0,-1
56 556 l 1,1,-1
80 610 l 1,2,-1
186 556 l 1,3,-1
176 684 l 1,4,-1
238 684 l 1,5,-1
228 556 l 1,6,-1
334 610 l 1,7,-1
358 556 l 1,8,-1
242 516 l 1,9,-1
332 427 l 1,10,-1
288 388 l 1,11,-1
208 492 l 1,12,-1
128 388 l 1,13,-1
83 427 l 1,14,-1
173 516 l 1,0,-1
EndSplineSet
Validated: 1
EndChar
StartChar: plus
Encoding: 43 43 14
Width: 527
GlyphClass: 2
Flags: W
LayerCount: 2
Fore
SplineSet
303 491 m 1,0,-1
303 279 l 1,1,-1
509 279 l 1,2,-1
509 212 l 1,3,-1
303 212 l 1,4,-1
303 0 l 1,5,-1
224 0 l 1,6,-1
224 212 l 1,7,-1
18 212 l 1,8,-1
18 279 l 1,9,-1
224 279 l 1,10,-1
224 491 l 1,11,-1
303 491 l 1,0,-1
EndSplineSet
Validated: 1
EndChar
StartChar: comma
Encoding: 44 44 15
Width: 210
GlyphClass: 2
Flags: W
LayerCount: 2
Fore
SplineSet
67 10 m 128,-1,1
52 23 52 23 52 45 c 128,-1,2
52 67 52 67 67.5 82 c 128,-1,3
83 97 83 97 111.5 97 c 128,-1,4
140 97 140 97 159 74.5 c 128,-1,5
178 52 178 52 178 18 c 128,-1,6
178 -16 178 -16 156 -51.5 c 128,-1,7
134 -87 134 -87 89 -109 c 1,8,-1
30 -80 l 1,9,10
92 -50 92 -50 105 -5 c 1,11,0
82 -3 82 -3 67 10 c 128,-1,1
EndSplineSet
Validated: 1
EndChar
StartChar: hyphen
Encoding: 45 45 16
Width: 349
GlyphClass: 2
Flags: W
LayerCount: 2
Fore
SplineSet
38 325 m 5,0,-1
310 325 l 5,1,-1
310 257 l 5,2,-1
38 257 l 5,3,-1
38 325 l 5,0,-1
EndSplineSet
Validated: 1
EndChar
StartChar: period
Encoding: 46 46 17
Width: 179
GlyphClass: 2
Flags: W
LayerCount: 2
Fore
SplineSet
46.5 7.5 m 128,-1,1
30 24 30 24 30 47.5 c 128,-1,2
30 71 30 71 46.5 87.5 c 128,-1,3
63 104 63 104 88.5 104 c 128,-1,4
114 104 114 104 131 87.5 c 128,-1,5
148 71 148 71 148 47.5 c 128,-1,6
148 24 148 24 131 7.5 c 128,-1,7
114 -9 114 -9 88.5 -9 c 128,-1,0
63 -9 63 -9 46.5 7.5 c 128,-1,1
EndSplineSet
Validated: 1
EndChar
StartChar: slash
Encoding: 47 47 18
Width: 432
GlyphClass: 2
Flags: W
LayerCount: 2
Fore
SplineSet
308 731 m 1,0,-1
388 731 l 1,1,-1
136 -73 l 1,2,-1
57 -73 l 1,3,-1
308 731 l 1,0,-1
EndSplineSet
Validated: 1
EndChar
StartChar: zero
Encoding: 48 48 19
Width: 575
GlyphClass: 2
Flags: W
LayerCount: 2
Fore
SplineSet
459.012695312 556 m 128,-1,1
525.012695312 472 525.012695312 472 525.012695312 314.5 c 128,-1,2
525.012695312 157 525.012695312 157 459.012695312 73 c 128,-1,3
393.012695312 -11 393.012695312 -11 279.012695312 -11 c 128,-1,4
165.012695312 -11 165.012695312 -11 98.5126953125 72 c 128,-1,5
32.0126953125 155 32.0126953125 155 32.0126953125 314.5 c 128,-1,6
32.0126953125 474 32.0126953125 474 98.5126953125 557 c 128,-1,7
165.012695312 640 165.012695312 640 279.012695312 640 c 128,-1,0
393.012695312 640 393.012695312 640 459.012695312 556 c 128,-1,1
401.012695312 502.5 m 128,-1,9
359.012695312 568 359.012695312 568 278.512695312 568 c 128,-1,10
198.012695312 568 198.012695312 568 156.012695312 502.5 c 128,-1,11
114.012695312 437 114.012695312 437 114.012695312 314.5 c 128,-1,12
114.012695312 192 114.012695312 192 156.012695312 126.5 c 128,-1,13
198.012695312 61 198.012695312 61 278.512695312 61 c 128,-1,14
359.012695312 61 359.012695312 61 401.012695312 126.5 c 128,-1,15
443.012695312 192 443.012695312 192 443.012695312 314.5 c 128,-1,8
443.012695312 437 443.012695312 437 401.012695312 502.5 c 128,-1,9
EndSplineSet
Validated: 1
Substitution2: "'onum' Oldstyle Figures in Latin lookup 0 subtable" .notdef
EndChar
StartChar: one
Encoding: 49 49 20
Width: 292
GlyphClass: 2
Flags: W
LayerCount: 2
Fore
SplineSet
11.025390625 580 m 1,0,1
78.025390625 589 78.025390625 589 128.025390625 631 c 1,2,-1
192.025390625 631 l 1,3,-1
192.025390625 0 l 1,4,-1
114.025390625 0 l 1,5,-1
114.025390625 537 l 1,6,7
64.025390625 505 64.025390625 505 11.025390625 502 c 1,8,-1
11.025390625 580 l 1,0,1
EndSplineSet
Validated: 1
Substitution2: "'onum' Oldstyle Figures in Latin lookup 0 subtable" .notdef
EndChar
StartChar: two
Encoding: 50 50 21
Width: 580
GlyphClass: 2
Flags: W
LayerCount: 2
Fore
SplineSet
143 73 m 1,0,-1
508 73 l 1,1,-1
508 0 l 1,2,-1
64 0 l 1,3,-1
64 93 l 2,4,5
64 204 64 204 148 256 c 0,6,7
175 273 175 273 208 286 c 2,8,-1
332 336 l 2,9,10
428 374 428 374 428 461 c 0,11,12
428 509 428 509 395 539.5 c 128,-1,13
362 570 362 570 302.5 570 c 128,-1,14
243 570 243 570 205.5 545 c 128,-1,15
168 520 168 520 162 470 c 1,16,-1
75 470 l 1,17,18
80 552 80 552 141 596 c 128,-1,19
202 640 202 640 297.5 640 c 128,-1,20
393 640 393 640 453 588 c 128,-1,21
513 536 513 536 513 459.5 c 128,-1,22
513 383 513 383 473.5 338 c 128,-1,23
434 293 434 293 365 266 c 2,24,-1
238 215 l 2,25,26
190 195 190 195 166.5 169.5 c 128,-1,27
143 144 143 144 143 103 c 2,28,-1
143 73 l 1,0,-1
EndSplineSet
Validated: 1
Substitution2: "'onum' Oldstyle Figures in Latin lookup 0 subtable" .notdef
EndChar
StartChar: three
Encoding: 51 51 22
Width: 591
GlyphClass: 2
Flags: W
LayerCount: 2
Fore
SplineSet
505 468 m 0,0,1
505 368 505 368 395 329 c 1,2,3
455 312 455 312 492 273 c 128,-1,4
529 234 529 234 529 173 c 0,5,6
529 90 529 90 466 39.5 c 128,-1,7
403 -11 403 -11 300 -11 c 128,-1,8
197 -11 197 -11 124.5 42.5 c 128,-1,9
52 96 52 96 52 193 c 1,10,-1
134 193 l 1,11,12
136 129 136 129 181.5 95 c 128,-1,13
227 61 227 61 297 61 c 128,-1,14
367 61 367 61 405.5 94.5 c 128,-1,15
444 128 444 128 444 177.5 c 128,-1,16
444 227 444 227 407 258.5 c 128,-1,17
370 290 370 290 287 290 c 2,18,-1
215 290 l 1,19,-1
215 353 l 1,20,-1
264 353 l 2,21,22
336 353 336 353 378 381.5 c 128,-1,23
420 410 420 410 420 458 c 128,-1,24
420 506 420 506 386 537 c 128,-1,25
352 568 352 568 296 568 c 128,-1,26
240 568 240 568 202.5 548.5 c 128,-1,27
165 529 165 529 152 476 c 1,28,-1
70 476 l 1,29,30
81 559 81 559 139 599.5 c 128,-1,31
197 640 197 640 288.5 640 c 128,-1,32
380 640 380 640 442.5 591.5 c 128,-1,33
505 543 505 543 505 468 c 0,0,1
EndSplineSet
Validated: 1
Substitution2: "'onum' Oldstyle Figures in Latin lookup 0 subtable" .notdef
EndChar
StartChar: four
Encoding: 52 52 23
Width: 533
GlyphClass: 2
Flags: W
LayerCount: 2
Fore
SplineSet
402.68359375 638 m 1,0,-1
402.68359375 220 l 1,1,-1
511.68359375 220 l 1,2,-1
511.68359375 152 l 1,3,-1
402.68359375 152 l 1,4,-1
402.68359375 0 l 1,5,-1
325.68359375 0 l 1,6,-1
325.68359375 152 l 1,7,-1
0.68359375 152 l 1,8,-1
0.68359375 213 l 1,9,-1
329.68359375 638 l 1,10,-1
402.68359375 638 l 1,0,-1
94.68359375 213 m 1,11,-1
327.68359375 213 l 1,12,-1
327.68359375 513 l 1,13,-1
94.68359375 213 l 1,11,-1
EndSplineSet
Validated: 1
Substitution2: "'onum' Oldstyle Figures in Latin lookup 0 subtable" .notdef
EndChar
StartChar: five
Encoding: 53 53 24
Width: 546
GlyphClass: 2
Flags: W
LayerCount: 2
Fore
SplineSet
408.012695312 204 m 0,0,1
408.012695312 323 408.012695312 323 253.012695312 323 c 2,2,-1
84.0126953125 323 l 1,3,-1
111.012695312 629 l 1,4,-1
460.012695312 629 l 1,5,-1
460.012695312 557 l 1,6,-1
187.012695312 557 l 1,7,-1
170.012695312 376 l 1,8,9
222.012695312 385 222.012695312 385 269.012695312 385 c 0,10,11
372.012695312 385 372.012695312 385 431.012695312 339.5 c 128,-1,12
490.012695312 294 490.012695312 294 490.012695312 202 c 128,-1,13
490.012695312 110 490.012695312 110 428.012695312 49.5 c 128,-1,14
366.012695312 -11 366.012695312 -11 268.012695312 -11 c 128,-1,15
170.012695312 -11 170.012695312 -11 108.012695312 38.5 c 128,-1,16
46.0126953125 88 46.0126953125 88 46.0126953125 175 c 1,17,-1
125.012695312 175 l 1,18,19
125.012695312 93 125.012695312 93 209.012695312 68 c 0,20,21
235.012695312 61 235.012695312 61 266.012695312 61 c 0,22,23
330.012695312 61 330.012695312 61 369.012695312 101.5 c 128,-1,24
408.012695312 142 408.012695312 142 408.012695312 204 c 0,0,1
EndSplineSet
Validated: 1
Substitution2: "'onum' Oldstyle Figures in Latin lookup 0 subtable" .notdef
EndChar
StartChar: six
Encoding: 54 54 25
Width: 554
GlyphClass: 2
Flags: W
LayerCount: 2
Fore
SplineSet
406.012695312 470 m 1,0,1
389.012695312 568 389.012695312 568 299.012695312 568 c 128,-1,2
209.012695312 568 209.012695312 568 160.512695312 494 c 128,-1,3
112.012695312 420 112.012695312 420 112.012695312 292 c 0,4,5
112.012695312 239 112.012695312 239 117.012695312 204 c 1,6,7
123.012695312 296 123.012695312 296 173.512695312 337.5 c 128,-1,8
224.012695312 379 224.012695312 379 303.012695312 379 c 128,-1,9
382.012695312 379 382.012695312 379 439.012695312 323.5 c 128,-1,10
496.012695312 268 496.012695312 268 496.012695312 181.5 c 128,-1,11
496.012695312 95 496.012695312 95 437.012695312 41.5 c 128,-1,12
378.012695312 -12 378.012695312 -12 282.012695312 -12 c 0,13,14
170.012695312 -12 170.012695312 -12 101.012695312 78 c 128,-1,15
32.0126953125 168 32.0126953125 168 32.0126953125 314.5 c 128,-1,16
32.0126953125 461 32.0126953125 461 102.012695312 550.5 c 128,-1,17
172.012695312 640 172.012695312 640 293.012695312 640 c 0,18,19
377.012695312 640 377.012695312 640 430.012695312 593 c 128,-1,20
483.012695312 546 483.012695312 546 491.012695312 470 c 1,21,-1
406.012695312 470 l 1,0,1
188.512695312 273.5 m 128,-1,23
151.012695312 238 151.012695312 238 151.012695312 183 c 128,-1,24
151.012695312 128 151.012695312 128 188.012695312 94.5 c 128,-1,25
225.012695312 61 225.012695312 61 282.012695312 61 c 128,-1,26
339.012695312 61 339.012695312 61 376.512695312 94 c 128,-1,27
414.012695312 127 414.012695312 127 414.012695312 185 c 256,28,29
414.012695312 243 414.012695312 243 376.512695312 276 c 128,-1,30
339.012695312 309 339.012695312 309 282.512695312 309 c 128,-1,22
226.012695312 309 226.012695312 309 188.512695312 273.5 c 128,-1,23
EndSplineSet
Validated: 1
Substitution2: "'onum' Oldstyle Figures in Latin lookup 0 subtable" .notdef
EndChar
StartChar: seven
Encoding: 55 55 26
Width: 463
GlyphClass: 2
Flags: W
LayerCount: 2
Fore
SplineSet
445.670898438 629 m 1,0,-1
445.670898438 556 l 1,1,-1
157.670898438 0 l 1,2,-1
51.6708984375 0 l 1,3,-1
353.670898438 553 l 1,4,-1
17.6708984375 553 l 1,5,-1
17.6708984375 629 l 1,6,-1
445.670898438 629 l 1,0,-1
EndSplineSet
Validated: 1
Substitution2: "'onum' Oldstyle Figures in Latin lookup 0 subtable" .notdef
EndChar
StartChar: eight
Encoding: 56 56 27
Width: 602
GlyphClass: 2
Flags: W
LayerCount: 2
Fore
SplineSet
188.341796875 318 m 1,0,1
63.341796875 375 63.341796875 375 63.341796875 473 c 0,2,3
63.341796875 548 63.341796875 548 125.341796875 594 c 128,-1,4
187.341796875 640 187.341796875 640 289.841796875 640 c 128,-1,5
392.341796875 640 392.341796875 640 458.341796875 591 c 128,-1,6
524.341796875 542 524.341796875 542 524.341796875 465 c 0,7,8
524.341796875 413 524.341796875 413 489.841796875 372 c 128,-1,9
455.341796875 331 455.341796875 331 388.341796875 321 c 1,10,-1
405.341796875 315 l 2,11,12
474.341796875 289 474.341796875 289 511.341796875 253.5 c 128,-1,13
548.341796875 218 548.341796875 218 548.341796875 157 c 0,14,15
548.341796875 81 548.341796875 81 480.841796875 35 c 128,-1,16
413.341796875 -11 413.341796875 -11 298.841796875 -11 c 128,-1,17
184.341796875 -11 184.341796875 -11 113.341796875 40 c 128,-1,18
42.341796875 91 42.341796875 91 42.341796875 168 c 0,19,20
42.341796875 230 42.341796875 230 82.841796875 269 c 128,-1,21
123.341796875 308 123.341796875 308 188.341796875 318 c 1,0,1
263.341796875 289 m 1,22,23
200.341796875 282 200.341796875 282 162.341796875 249.5 c 128,-1,24
124.341796875 217 124.341796875 217 124.341796875 169 c 128,-1,25
124.341796875 121 124.341796875 121 172.341796875 91 c 128,-1,26
220.341796875 61 220.341796875 61 297.841796875 61 c 128,-1,27
375.341796875 61 375.341796875 61 420.841796875 87 c 128,-1,28
466.341796875 113 466.341796875 113 466.341796875 150 c 128,-1,29
466.341796875 187 466.341796875 187 442.341796875 209.5 c 128,-1,30
418.341796875 232 418.341796875 232 376.341796875 247 c 2,31,-1
263.341796875 289 l 1,22,23
146.341796875 463 m 0,32,33
146.341796875 436 146.341796875 436 168.341796875 416.5 c 128,-1,34
190.341796875 397 190.341796875 397 231.341796875 381 c 2,35,-1
304.341796875 353 l 1,36,37
364.341796875 355 364.341796875 355 403.341796875 384.5 c 128,-1,38
442.341796875 414 442.341796875 414 442.341796875 461.5 c 128,-1,39
442.341796875 509 442.341796875 509 401.341796875 538.5 c 128,-1,40
360.341796875 568 360.341796875 568 295.341796875 568 c 128,-1,41
230.341796875 568 230.341796875 568 188.341796875 539.5 c 128,-1,42
146.341796875 511 146.341796875 511 146.341796875 463 c 0,32,33
EndSplineSet
Validated: 1
Substitution2: "'onum' Oldstyle Figures in Latin lookup 0 subtable" .notdef
EndChar
StartChar: nine
Encoding: 57 57 28
Width: 568
GlyphClass: 2
Flags: W
LayerCount: 2
Fore
SplineSet
269.341796875 640 m 0,0,1
320.341796875 640 320.341796875 640 366.341796875 618 c 128,-1,2
412.341796875 596 412.341796875 596 445.341796875 555 c 0,3,4
517.341796875 467 517.341796875 467 517.341796875 326 c 0,5,6
517.341796875 81 517.341796875 81 381.341796875 12 c 0,7,8
334.341796875 -11 334.341796875 -11 279.341796875 -11 c 0,9,10
176.341796875 -11 176.341796875 -11 116.341796875 45 c 128,-1,11
56.341796875 101 56.341796875 101 56.341796875 186 c 1,12,-1
139.341796875 186 l 1,13,14
141.341796875 129 141.341796875 129 175.341796875 95 c 128,-1,15
209.341796875 61 209.341796875 61 261.341796875 61 c 128,-1,16
313.341796875 61 313.341796875 61 345.341796875 80 c 0,17,18
436.341796875 137 436.341796875 137 436.341796875 337 c 0,19,20
436.341796875 378 436.341796875 378 431.341796875 411 c 1,21,22
421.341796875 330 421.341796875 330 372.841796875 290 c 128,-1,23
324.341796875 250 324.341796875 250 245.841796875 250 c 128,-1,24
167.341796875 250 167.341796875 250 110.341796875 305.5 c 128,-1,25
53.341796875 361 53.341796875 361 53.341796875 447 c 0,26,27
53.341796875 534 53.341796875 534 112.341796875 587 c 128,-1,28
171.341796875 640 171.341796875 640 269.341796875 640 c 0,0,1
266.341796875 567 m 128,-1,30
209.341796875 567 209.341796875 567 172.341796875 534 c 128,-1,31
135.341796875 501 135.341796875 501 135.341796875 443 c 256,32,33
135.341796875 385 135.341796875 385 172.841796875 352 c 128,-1,34
210.341796875 319 210.341796875 319 266.841796875 319 c 128,-1,35
323.341796875 319 323.341796875 319 360.841796875 354.5 c 128,-1,36
398.341796875 390 398.341796875 390 398.341796875 445 c 128,-1,37
398.341796875 500 398.341796875 500 360.841796875 533.5 c 128,-1,29
323.341796875 567 323.341796875 567 266.341796875 567 c 128,-1,30
EndSplineSet
Validated: 1
Substitution2: "'onum' Oldstyle Figures in Latin lookup 0 subtable" .notdef
EndChar
StartChar: colon
Encoding: 58 58 29
Width: 231
GlyphClass: 2
Flags: W
LayerCount: 2
Fore
SplineSet
72.5 39.5 m 128,-1,1
56 56 56 56 56 79.5 c 128,-1,2
56 103 56 103 72.5 119.5 c 128,-1,3
89 136 89 136 114.5 136 c 128,-1,4
140 136 140 136 157 119.5 c 128,-1,5
174 103 174 103 174 79.5 c 128,-1,6
174 56 174 56 157 39.5 c 128,-1,7
140 23 140 23 114.5 23 c 128,-1,0
89 23 89 23 72.5 39.5 c 128,-1,1
72.5 345.5 m 128,-1,9
56 362 56 362 56 385.5 c 128,-1,10
56 409 56 409 72.5 425.5 c 128,-1,11
89 442 89 442 114.5 442 c 128,-1,12
140 442 140 442 157 425.5 c 128,-1,13
174 409 174 409 174 385.5 c 128,-1,14
174 362 174 362 157 345.5 c 128,-1,15
140 329 140 329 114.5 329 c 128,-1,8
89 329 89 329 72.5 345.5 c 128,-1,9
EndSplineSet
Validated: 1
EndChar
StartChar: semicolon
Encoding: 59 59 30
Width: 262
GlyphClass: 2
Flags: W
LayerCount: 2
Fore
SplineSet
94 10 m 128,-1,1
79 23 79 23 79 45 c 128,-1,2
79 67 79 67 94.5 82 c 128,-1,3
110 97 110 97 138.5 97 c 128,-1,4
167 97 167 97 186 74.5 c 128,-1,5
205 52 205 52 205 18 c 128,-1,6
205 -16 205 -16 183 -51.5 c 128,-1,7
161 -87 161 -87 116 -109 c 1,8,-1
57 -80 l 1,9,10
119 -50 119 -50 132 -5 c 1,11,0
109 -3 109 -3 94 10 c 128,-1,1
98.5 345.5 m 128,-1,13
82 362 82 362 82 385.5 c 128,-1,14