-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTunic_Script.sfd
More file actions
3379 lines (3302 loc) · 149 KB
/
Tunic_Script.sfd
File metadata and controls
3379 lines (3302 loc) · 149 KB
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: Tunic
FullName: Tunic Script
FamilyName: Tunic
Weight: Regular
Copyright: Copyright (c) 2025, Matthieu Courtines
Version: 1.2.2
ItalicAngle: 0
UnderlinePosition: 0
UnderlineWidth: 0
Ascent: 800
Descent: 200
InvalidEm: 0
LayerCount: 2
Layer: 0 0 "Back" 1
Layer: 1 0 "Fore" 0
HasVMetrics: 1
XUID: [1021 495 1163847665 4669]
OS2Version: 0
OS2_WeightWidthSlopeOnly: 0
OS2_UseTypoMetrics: 0
CreationTime: 1723044094
ModificationTime: 1754569903
PfmFamily: 17
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: 'PfEd'
Lookup: 1 0 0 "LetterToGlyph1" { "LetterToGlyph1 subtable" } ['liga' ('latn' <'dflt' > 'DFLT' <'dflt' > ) ]
Lookup: 4 0 1 "Ligatures" { "Ligatures subtable" } ['liga' ('latn' <'dflt' > 'DFLT' <'dflt' > ) ]
Lookup: 1 0 0 "LetterToGlyph2" { "LetterToGlyph2 subtable" } ['liga' ('latn' <'dflt' > 'DFLT' <'dflt' > ) ]
Lookup: 6 0 0 "addPoint" { "addPoint contextual 0" "addPoint contextual 1" "addPoint contextual 2" "addPoint contextual 3" "addPoint contextual 4" "addPoint contextual 5" "addPoint contextual 6" "addPoint contextual 7" "addPoint contextual 8" "addPoint contextual 9" "addPoint contextual 10" "addPoint contextual 11" "addPoint contextual 12" "addPoint contextual 13" "addPoint contextual 14" "addPoint contextual 15" "addPoint contextual 16" "addPoint contextual 17" "addPoint contextual 18" "addPoint contextual 19" "addPoint contextual 20" "addPoint contextual 21" "addPoint contextual 22" "addPoint contextual 23" } ['liga' ('latn' <'dflt' > 'DFLT' <'dflt' > ) ]
Lookup: 2 0 0 "Multiple Substitution lookup 4" { "Multiple Substitution lookup 4 subtable" } []
Lookup: 2 0 0 "Multiple Substitution lookup 5" { "Multiple Substitution lookup 5 subtable" } []
Lookup: 2 0 0 "Multiple Substitution lookup 6" { "Multiple Substitution lookup 6 subtable" } []
Lookup: 2 0 0 "Multiple Substitution lookup 7" { "Multiple Substitution lookup 7 subtable" } []
Lookup: 2 0 0 "Multiple Substitution lookup 8" { "Multiple Substitution lookup 8 subtable" } []
Lookup: 2 0 0 "Multiple Substitution lookup 9" { "Multiple Substitution lookup 9 subtable" } []
Lookup: 2 0 0 "Multiple Substitution lookup 10" { "Multiple Substitution lookup 10 subtable" } []
Lookup: 2 0 0 "Multiple Substitution lookup 11" { "Multiple Substitution lookup 11 subtable" } []
Lookup: 2 0 0 "Multiple Substitution lookup 12" { "Multiple Substitution lookup 12 subtable" } []
Lookup: 2 0 0 "Multiple Substitution lookup 13" { "Multiple Substitution lookup 13 subtable" } []
Lookup: 2 0 0 "Multiple Substitution lookup 14" { "Multiple Substitution lookup 14 subtable" } []
Lookup: 2 0 0 "Multiple Substitution lookup 15" { "Multiple Substitution lookup 15 subtable" } []
Lookup: 2 0 0 "Multiple Substitution lookup 16" { "Multiple Substitution lookup 16 subtable" } []
Lookup: 2 0 0 "Multiple Substitution lookup 17" { "Multiple Substitution lookup 17 subtable" } []
Lookup: 2 0 0 "Multiple Substitution lookup 18" { "Multiple Substitution lookup 18 subtable" } []
Lookup: 2 0 0 "Multiple Substitution lookup 19" { "Multiple Substitution lookup 19 subtable" } []
Lookup: 2 0 0 "Multiple Substitution lookup 20" { "Multiple Substitution lookup 20 subtable" } []
Lookup: 2 0 0 "Multiple Substitution lookup 21" { "Multiple Substitution lookup 21 subtable" } []
Lookup: 2 0 0 "Multiple Substitution lookup 22" { "Multiple Substitution lookup 22 subtable" } []
Lookup: 2 0 0 "Multiple Substitution lookup 23" { "Multiple Substitution lookup 23 subtable" } []
Lookup: 2 0 0 "Multiple Substitution lookup 24" { "Multiple Substitution lookup 24 subtable" } []
Lookup: 2 0 0 "Multiple Substitution lookup 25" { "Multiple Substitution lookup 25 subtable" } []
Lookup: 6 0 0 "addPoint2" { "addPoint2 contextual 0" "addPoint2 contextual 1" "addPoint2 contextual 2" "addPoint2 contextual 3" "addPoint2 contextual 4" "addPoint2 contextual 5" "addPoint2 contextual 6" "addPoint2 contextual 7" "addPoint2 contextual 8" "addPoint2 contextual 9" "addPoint2 contextual 10" "addPoint2 contextual 11" "addPoint2 contextual 12" "addPoint2 contextual 13" "addPoint2 contextual 14" "addPoint2 contextual 15" "addPoint2 contextual 16" "addPoint2 contextual 17" "addPoint2 contextual 18" "addPoint2 contextual 19" "addPoint2 contextual 20" "addPoint2 contextual 21" } ['liga' ('latn' <'dflt' > 'DFLT' <'dflt' > ) ]
Lookup: 2 0 0 "Multiple Substitution lookup 27" { "Multiple Substitution lookup 27 subtable" } []
Lookup: 2 0 0 "Multiple Substitution lookup 28" { "Multiple Substitution lookup 28 subtable" } []
Lookup: 2 0 0 "Multiple Substitution lookup 29" { "Multiple Substitution lookup 29 subtable" } []
Lookup: 2 0 0 "Multiple Substitution lookup 30" { "Multiple Substitution lookup 30 subtable" } []
Lookup: 2 0 0 "Multiple Substitution lookup 31" { "Multiple Substitution lookup 31 subtable" } []
Lookup: 2 0 0 "Multiple Substitution lookup 32" { "Multiple Substitution lookup 32 subtable" } []
Lookup: 2 0 0 "Multiple Substitution lookup 33" { "Multiple Substitution lookup 33 subtable" } []
Lookup: 2 0 0 "Multiple Substitution lookup 34" { "Multiple Substitution lookup 34 subtable" } []
Lookup: 2 0 0 "Multiple Substitution lookup 35" { "Multiple Substitution lookup 35 subtable" } []
Lookup: 2 0 0 "Multiple Substitution lookup 36" { "Multiple Substitution lookup 36 subtable" } []
Lookup: 2 0 0 "Multiple Substitution lookup 37" { "Multiple Substitution lookup 37 subtable" } []
Lookup: 2 0 0 "Multiple Substitution lookup 38" { "Multiple Substitution lookup 38 subtable" } []
Lookup: 2 0 0 "Multiple Substitution lookup 39" { "Multiple Substitution lookup 39 subtable" } []
Lookup: 2 0 0 "Multiple Substitution lookup 40" { "Multiple Substitution lookup 40 subtable" } []
Lookup: 2 0 0 "Multiple Substitution lookup 41" { "Multiple Substitution lookup 41 subtable" } []
Lookup: 2 0 0 "Multiple Substitution lookup 42" { "Multiple Substitution lookup 42 subtable" } []
Lookup: 2 0 0 "Multiple Substitution lookup 43" { "Multiple Substitution lookup 43 subtable" } []
Lookup: 2 0 0 "Multiple Substitution lookup 44" { "Multiple Substitution lookup 44 subtable" } []
Lookup: 2 0 0 "Multiple Substitution lookup 45" { "Multiple Substitution lookup 45 subtable" } []
Lookup: 2 0 0 "Multiple Substitution lookup 46" { "Multiple Substitution lookup 46 subtable" } []
Lookup: 2 0 0 "Multiple Substitution lookup 47" { "Multiple Substitution lookup 47 subtable" } []
Lookup: 2 0 0 "Multiple Substitution lookup 48" { "Multiple Substitution lookup 48 subtable" } []
Lookup: 264 0 0 "pair" { "pair contextual 0" "pair contextual 1" "pair contextual 2" } ['kern' ('latn' <'dflt' > 'DFLT' <'dflt' > ) ]
Lookup: 257 0 0 "Single Positioning lookup 1" { "Single Positioning lookup 1 subtable" } []
Lookup: 257 0 0 "Single Positioning lookup 2" { "Single Positioning lookup 2 subtable" } []
Lookup: 257 0 0 "Single Positioning lookup 3" { "Single Positioning lookup 3 subtable" } []
Lookup: 257 0 0 "Single Positioning lookup 4" { "Single Positioning lookup 4 subtable" } []
Lookup: 258 0 0 "punctuation" { "punctuation per glyph data 0" "punctuation kerning class 1" } ['kern' ('latn' <'dflt' > 'DFLT' <'dflt' > ) ]
MarkAttachClasses: 1
DEI: 91125
KernClass2: 3 4 "punctuation kerning class 1"
261 a_smallI a_upsilon ae b d d_ezh degree e_smallI eng epsilon epsilon_r esh eth ezh f g h i j k l m n o_upsilon openo openo_r openo_smallI p reverseepsilon_r s schwa schwa_r scripta scripta_r smallI smallI_r t t_esh theta turnedV turnedr u upsilon upsilon_r v w z
51 colon comma exclam hyphen period question semicolon
261 a_smallI a_upsilon ae b d d_ezh degree e_smallI eng epsilon epsilon_r esh eth ezh f g h i j k l m n o_upsilon openo openo_r openo_smallI p reverseepsilon_r s schwa schwa_r scripta scripta_r smallI smallI_r t t_esh theta turnedV turnedr u upsilon upsilon_r v w z
51 colon comma exclam hyphen period question semicolon
5 space
0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 61 {} 0 {} 0 {} 92 {} 49 {} 44 {}
ChainPos2: coverage "pair contextual 2" 0 0 0 1
1 0 1
Coverage: 73 m n eng p b t d k g d_ezh t_esh f v theta eth s z esh ezh h turnedr j w l
FCoverage: 180 ae openo scripta smallI epsilon upsilon schwa turnedV schwa_r reverseepsilon_r upsilon_r i u openo_r scripta_r smallI_r e_smallI a_smallI openo_smallI a_upsilon o_upsilon epsilon_r
1
SeqLookup: 0 "Single Positioning lookup 4"
EndFPST
ChainPos2: coverage "pair contextual 1" 0 0 0 1
1 2 1
Coverage: 73 m n eng p b t d k g d_ezh t_esh f v theta eth s z esh ezh h turnedr j w l
BCoverage: 180 ae openo scripta smallI epsilon upsilon schwa turnedV schwa_r reverseepsilon_r upsilon_r i u openo_r scripta_r smallI_r e_smallI a_smallI openo_smallI a_upsilon o_upsilon epsilon_r
BCoverage: 6 degree
FCoverage: 180 ae openo scripta smallI epsilon upsilon schwa turnedV schwa_r reverseepsilon_r upsilon_r i u openo_r scripta_r smallI_r e_smallI a_smallI openo_smallI a_upsilon o_upsilon epsilon_r
1
SeqLookup: 0 "Single Positioning lookup 3"
EndFPST
ChainPos2: coverage "pair contextual 0" 0 0 0 1
2 0 1
Coverage: 6 degree
Coverage: 180 ae openo scripta smallI epsilon upsilon schwa turnedV schwa_r reverseepsilon_r upsilon_r i u openo_r scripta_r smallI_r e_smallI a_smallI openo_smallI a_upsilon o_upsilon epsilon_r
FCoverage: 73 m n eng p b t d k g d_ezh t_esh f v theta eth s z esh ezh h turnedr j w l
2
SeqLookup: 0 "Single Positioning lookup 1"
SeqLookup: 1 "Single Positioning lookup 2"
EndFPST
ChainSub2: coverage "addPoint2 contextual 21" 0 0 0 1
1 3 1
Coverage: 9 epsilon_r
BCoverage: 73 m n eng p b t d k g d_ezh t_esh f v theta eth s z esh ezh h turnedr j w l
BCoverage: 180 ae openo scripta smallI epsilon upsilon schwa turnedV schwa_r reverseepsilon_r upsilon_r i u openo_r scripta_r smallI_r e_smallI a_smallI openo_smallI a_upsilon o_upsilon epsilon_r
BCoverage: 6 degree
FCoverage: 73 m n eng p b t d k g d_ezh t_esh f v theta eth s z esh ezh h turnedr j w l
1
SeqLookup: 0 "Multiple Substitution lookup 48"
EndFPST
ChainSub2: coverage "addPoint2 contextual 20" 0 0 0 1
1 3 1
Coverage: 9 o_upsilon
BCoverage: 73 m n eng p b t d k g d_ezh t_esh f v theta eth s z esh ezh h turnedr j w l
BCoverage: 180 ae openo scripta smallI epsilon upsilon schwa turnedV schwa_r reverseepsilon_r upsilon_r i u openo_r scripta_r smallI_r e_smallI a_smallI openo_smallI a_upsilon o_upsilon epsilon_r
BCoverage: 6 degree
FCoverage: 73 m n eng p b t d k g d_ezh t_esh f v theta eth s z esh ezh h turnedr j w l
1
SeqLookup: 0 "Multiple Substitution lookup 47"
EndFPST
ChainSub2: coverage "addPoint2 contextual 19" 0 0 0 1
1 3 1
Coverage: 9 a_upsilon
BCoverage: 73 m n eng p b t d k g d_ezh t_esh f v theta eth s z esh ezh h turnedr j w l
BCoverage: 180 ae openo scripta smallI epsilon upsilon schwa turnedV schwa_r reverseepsilon_r upsilon_r i u openo_r scripta_r smallI_r e_smallI a_smallI openo_smallI a_upsilon o_upsilon epsilon_r
BCoverage: 6 degree
FCoverage: 73 m n eng p b t d k g d_ezh t_esh f v theta eth s z esh ezh h turnedr j w l
1
SeqLookup: 0 "Multiple Substitution lookup 46"
EndFPST
ChainSub2: coverage "addPoint2 contextual 18" 0 0 0 1
1 3 1
Coverage: 12 openo_smallI
BCoverage: 73 m n eng p b t d k g d_ezh t_esh f v theta eth s z esh ezh h turnedr j w l
BCoverage: 180 ae openo scripta smallI epsilon upsilon schwa turnedV schwa_r reverseepsilon_r upsilon_r i u openo_r scripta_r smallI_r e_smallI a_smallI openo_smallI a_upsilon o_upsilon epsilon_r
BCoverage: 6 degree
FCoverage: 73 m n eng p b t d k g d_ezh t_esh f v theta eth s z esh ezh h turnedr j w l
1
SeqLookup: 0 "Multiple Substitution lookup 45"
EndFPST
ChainSub2: coverage "addPoint2 contextual 17" 0 0 0 1
1 3 1
Coverage: 8 a_smallI
BCoverage: 73 m n eng p b t d k g d_ezh t_esh f v theta eth s z esh ezh h turnedr j w l
BCoverage: 180 ae openo scripta smallI epsilon upsilon schwa turnedV schwa_r reverseepsilon_r upsilon_r i u openo_r scripta_r smallI_r e_smallI a_smallI openo_smallI a_upsilon o_upsilon epsilon_r
BCoverage: 6 degree
FCoverage: 73 m n eng p b t d k g d_ezh t_esh f v theta eth s z esh ezh h turnedr j w l
1
SeqLookup: 0 "Multiple Substitution lookup 44"
EndFPST
ChainSub2: coverage "addPoint2 contextual 16" 0 0 0 1
1 3 1
Coverage: 8 e_smallI
BCoverage: 73 m n eng p b t d k g d_ezh t_esh f v theta eth s z esh ezh h turnedr j w l
BCoverage: 180 ae openo scripta smallI epsilon upsilon schwa turnedV schwa_r reverseepsilon_r upsilon_r i u openo_r scripta_r smallI_r e_smallI a_smallI openo_smallI a_upsilon o_upsilon epsilon_r
BCoverage: 6 degree
FCoverage: 73 m n eng p b t d k g d_ezh t_esh f v theta eth s z esh ezh h turnedr j w l
1
SeqLookup: 0 "Multiple Substitution lookup 43"
EndFPST
ChainSub2: coverage "addPoint2 contextual 15" 0 0 0 1
1 3 1
Coverage: 8 smallI_r
BCoverage: 73 m n eng p b t d k g d_ezh t_esh f v theta eth s z esh ezh h turnedr j w l
BCoverage: 180 ae openo scripta smallI epsilon upsilon schwa turnedV schwa_r reverseepsilon_r upsilon_r i u openo_r scripta_r smallI_r e_smallI a_smallI openo_smallI a_upsilon o_upsilon epsilon_r
BCoverage: 6 degree
FCoverage: 73 m n eng p b t d k g d_ezh t_esh f v theta eth s z esh ezh h turnedr j w l
1
SeqLookup: 0 "Multiple Substitution lookup 42"
EndFPST
ChainSub2: coverage "addPoint2 contextual 14" 0 0 0 1
1 3 1
Coverage: 9 scripta_r
BCoverage: 73 m n eng p b t d k g d_ezh t_esh f v theta eth s z esh ezh h turnedr j w l
BCoverage: 180 ae openo scripta smallI epsilon upsilon schwa turnedV schwa_r reverseepsilon_r upsilon_r i u openo_r scripta_r smallI_r e_smallI a_smallI openo_smallI a_upsilon o_upsilon epsilon_r
BCoverage: 6 degree
FCoverage: 73 m n eng p b t d k g d_ezh t_esh f v theta eth s z esh ezh h turnedr j w l
1
SeqLookup: 0 "Multiple Substitution lookup 41"
EndFPST
ChainSub2: coverage "addPoint2 contextual 13" 0 0 0 1
1 3 1
Coverage: 7 openo_r
BCoverage: 73 m n eng p b t d k g d_ezh t_esh f v theta eth s z esh ezh h turnedr j w l
BCoverage: 180 ae openo scripta smallI epsilon upsilon schwa turnedV schwa_r reverseepsilon_r upsilon_r i u openo_r scripta_r smallI_r e_smallI a_smallI openo_smallI a_upsilon o_upsilon epsilon_r
BCoverage: 6 degree
FCoverage: 73 m n eng p b t d k g d_ezh t_esh f v theta eth s z esh ezh h turnedr j w l
1
SeqLookup: 0 "Multiple Substitution lookup 40"
EndFPST
ChainSub2: coverage "addPoint2 contextual 12" 0 0 0 1
1 3 1
Coverage: 9 upsilon_r
BCoverage: 73 m n eng p b t d k g d_ezh t_esh f v theta eth s z esh ezh h turnedr j w l
BCoverage: 180 ae openo scripta smallI epsilon upsilon schwa turnedV schwa_r reverseepsilon_r upsilon_r i u openo_r scripta_r smallI_r e_smallI a_smallI openo_smallI a_upsilon o_upsilon epsilon_r
BCoverage: 6 degree
FCoverage: 73 m n eng p b t d k g d_ezh t_esh f v theta eth s z esh ezh h turnedr j w l
1
SeqLookup: 0 "Multiple Substitution lookup 39"
EndFPST
ChainSub2: coverage "addPoint2 contextual 11" 0 0 0 1
1 3 1
Coverage: 16 reverseepsilon_r
BCoverage: 73 m n eng p b t d k g d_ezh t_esh f v theta eth s z esh ezh h turnedr j w l
BCoverage: 180 ae openo scripta smallI epsilon upsilon schwa turnedV schwa_r reverseepsilon_r upsilon_r i u openo_r scripta_r smallI_r e_smallI a_smallI openo_smallI a_upsilon o_upsilon epsilon_r
BCoverage: 6 degree
FCoverage: 73 m n eng p b t d k g d_ezh t_esh f v theta eth s z esh ezh h turnedr j w l
1
SeqLookup: 0 "Multiple Substitution lookup 38"
EndFPST
ChainSub2: coverage "addPoint2 contextual 10" 0 0 0 1
1 3 1
Coverage: 7 schwa_r
BCoverage: 73 m n eng p b t d k g d_ezh t_esh f v theta eth s z esh ezh h turnedr j w l
BCoverage: 180 ae openo scripta smallI epsilon upsilon schwa turnedV schwa_r reverseepsilon_r upsilon_r i u openo_r scripta_r smallI_r e_smallI a_smallI openo_smallI a_upsilon o_upsilon epsilon_r
BCoverage: 6 degree
FCoverage: 73 m n eng p b t d k g d_ezh t_esh f v theta eth s z esh ezh h turnedr j w l
1
SeqLookup: 0 "Multiple Substitution lookup 37"
EndFPST
ChainSub2: coverage "addPoint2 contextual 9" 0 0 0 1
1 3 1
Coverage: 1 u
BCoverage: 73 m n eng p b t d k g d_ezh t_esh f v theta eth s z esh ezh h turnedr j w l
BCoverage: 180 ae openo scripta smallI epsilon upsilon schwa turnedV schwa_r reverseepsilon_r upsilon_r i u openo_r scripta_r smallI_r e_smallI a_smallI openo_smallI a_upsilon o_upsilon epsilon_r
BCoverage: 6 degree
FCoverage: 73 m n eng p b t d k g d_ezh t_esh f v theta eth s z esh ezh h turnedr j w l
1
SeqLookup: 0 "Multiple Substitution lookup 36"
EndFPST
ChainSub2: coverage "addPoint2 contextual 8" 0 0 0 1
1 3 1
Coverage: 1 i
BCoverage: 73 m n eng p b t d k g d_ezh t_esh f v theta eth s z esh ezh h turnedr j w l
BCoverage: 180 ae openo scripta smallI epsilon upsilon schwa turnedV schwa_r reverseepsilon_r upsilon_r i u openo_r scripta_r smallI_r e_smallI a_smallI openo_smallI a_upsilon o_upsilon epsilon_r
BCoverage: 6 degree
FCoverage: 73 m n eng p b t d k g d_ezh t_esh f v theta eth s z esh ezh h turnedr j w l
1
SeqLookup: 0 "Multiple Substitution lookup 35"
EndFPST
ChainSub2: coverage "addPoint2 contextual 7" 0 0 0 1
1 3 1
Coverage: 7 turnedV
BCoverage: 73 m n eng p b t d k g d_ezh t_esh f v theta eth s z esh ezh h turnedr j w l
BCoverage: 180 ae openo scripta smallI epsilon upsilon schwa turnedV schwa_r reverseepsilon_r upsilon_r i u openo_r scripta_r smallI_r e_smallI a_smallI openo_smallI a_upsilon o_upsilon epsilon_r
BCoverage: 6 degree
FCoverage: 73 m n eng p b t d k g d_ezh t_esh f v theta eth s z esh ezh h turnedr j w l
1
SeqLookup: 0 "Multiple Substitution lookup 34"
EndFPST
ChainSub2: coverage "addPoint2 contextual 6" 0 0 0 1
1 3 1
Coverage: 5 schwa
BCoverage: 73 m n eng p b t d k g d_ezh t_esh f v theta eth s z esh ezh h turnedr j w l
BCoverage: 180 ae openo scripta smallI epsilon upsilon schwa turnedV schwa_r reverseepsilon_r upsilon_r i u openo_r scripta_r smallI_r e_smallI a_smallI openo_smallI a_upsilon o_upsilon epsilon_r
BCoverage: 6 degree
FCoverage: 73 m n eng p b t d k g d_ezh t_esh f v theta eth s z esh ezh h turnedr j w l
1
SeqLookup: 0 "Multiple Substitution lookup 33"
EndFPST
ChainSub2: coverage "addPoint2 contextual 5" 0 0 0 1
1 3 1
Coverage: 7 upsilon
BCoverage: 73 m n eng p b t d k g d_ezh t_esh f v theta eth s z esh ezh h turnedr j w l
BCoverage: 180 ae openo scripta smallI epsilon upsilon schwa turnedV schwa_r reverseepsilon_r upsilon_r i u openo_r scripta_r smallI_r e_smallI a_smallI openo_smallI a_upsilon o_upsilon epsilon_r
BCoverage: 6 degree
FCoverage: 73 m n eng p b t d k g d_ezh t_esh f v theta eth s z esh ezh h turnedr j w l
1
SeqLookup: 0 "Multiple Substitution lookup 32"
EndFPST
ChainSub2: coverage "addPoint2 contextual 4" 0 0 0 1
1 3 1
Coverage: 7 epsilon
BCoverage: 73 m n eng p b t d k g d_ezh t_esh f v theta eth s z esh ezh h turnedr j w l
BCoverage: 180 ae openo scripta smallI epsilon upsilon schwa turnedV schwa_r reverseepsilon_r upsilon_r i u openo_r scripta_r smallI_r e_smallI a_smallI openo_smallI a_upsilon o_upsilon epsilon_r
BCoverage: 6 degree
FCoverage: 73 m n eng p b t d k g d_ezh t_esh f v theta eth s z esh ezh h turnedr j w l
1
SeqLookup: 0 "Multiple Substitution lookup 31"
EndFPST
ChainSub2: coverage "addPoint2 contextual 3" 0 0 0 1
1 3 1
Coverage: 6 smallI
BCoverage: 73 m n eng p b t d k g d_ezh t_esh f v theta eth s z esh ezh h turnedr j w l
BCoverage: 180 ae openo scripta smallI epsilon upsilon schwa turnedV schwa_r reverseepsilon_r upsilon_r i u openo_r scripta_r smallI_r e_smallI a_smallI openo_smallI a_upsilon o_upsilon epsilon_r
BCoverage: 6 degree
FCoverage: 73 m n eng p b t d k g d_ezh t_esh f v theta eth s z esh ezh h turnedr j w l
1
SeqLookup: 0 "Multiple Substitution lookup 30"
EndFPST
ChainSub2: coverage "addPoint2 contextual 2" 0 0 0 1
1 3 1
Coverage: 7 scripta
BCoverage: 73 m n eng p b t d k g d_ezh t_esh f v theta eth s z esh ezh h turnedr j w l
BCoverage: 180 ae openo scripta smallI epsilon upsilon schwa turnedV schwa_r reverseepsilon_r upsilon_r i u openo_r scripta_r smallI_r e_smallI a_smallI openo_smallI a_upsilon o_upsilon epsilon_r
BCoverage: 6 degree
FCoverage: 73 m n eng p b t d k g d_ezh t_esh f v theta eth s z esh ezh h turnedr j w l
1
SeqLookup: 0 "Multiple Substitution lookup 29"
EndFPST
ChainSub2: coverage "addPoint2 contextual 1" 0 0 0 1
1 3 1
Coverage: 5 openo
BCoverage: 73 m n eng p b t d k g d_ezh t_esh f v theta eth s z esh ezh h turnedr j w l
BCoverage: 180 ae openo scripta smallI epsilon upsilon schwa turnedV schwa_r reverseepsilon_r upsilon_r i u openo_r scripta_r smallI_r e_smallI a_smallI openo_smallI a_upsilon o_upsilon epsilon_r
BCoverage: 6 degree
FCoverage: 73 m n eng p b t d k g d_ezh t_esh f v theta eth s z esh ezh h turnedr j w l
1
SeqLookup: 0 "Multiple Substitution lookup 28"
EndFPST
ChainSub2: coverage "addPoint2 contextual 0" 0 0 0 1
1 3 1
Coverage: 2 ae
BCoverage: 73 m n eng p b t d k g d_ezh t_esh f v theta eth s z esh ezh h turnedr j w l
BCoverage: 180 ae openo scripta smallI epsilon upsilon schwa turnedV schwa_r reverseepsilon_r upsilon_r i u openo_r scripta_r smallI_r e_smallI a_smallI openo_smallI a_upsilon o_upsilon epsilon_r
BCoverage: 6 degree
FCoverage: 73 m n eng p b t d k g d_ezh t_esh f v theta eth s z esh ezh h turnedr j w l
1
SeqLookup: 0 "Multiple Substitution lookup 27"
EndFPST
ChainSub2: coverage "addPoint contextual 23" 0 0 0 1
1 0 1
Coverage: 9 epsilon_r
FCoverage: 73 m n eng p b t d k g d_ezh t_esh f v theta eth s z esh ezh h turnedr j w l
1
SeqLookup: 0 "Multiple Substitution lookup 25"
EndFPST
ChainSub2: coverage "addPoint contextual 22" 0 0 0 1
1 0 1
Coverage: 9 o_upsilon
FCoverage: 73 m n eng p b t d k g d_ezh t_esh f v theta eth s z esh ezh h turnedr j w l
1
SeqLookup: 0 "Multiple Substitution lookup 24"
EndFPST
ChainSub2: coverage "addPoint contextual 21" 0 0 0 1
1 0 1
Coverage: 9 a_upsilon
FCoverage: 73 m n eng p b t d k g d_ezh t_esh f v theta eth s z esh ezh h turnedr j w l
1
SeqLookup: 0 "Multiple Substitution lookup 23"
EndFPST
ChainSub2: coverage "addPoint contextual 20" 0 0 0 1
1 0 1
Coverage: 12 openo_smallI
FCoverage: 73 m n eng p b t d k g d_ezh t_esh f v theta eth s z esh ezh h turnedr j w l
1
SeqLookup: 0 "Multiple Substitution lookup 22"
EndFPST
ChainSub2: coverage "addPoint contextual 19" 0 0 0 1
1 0 1
Coverage: 8 a_smallI
FCoverage: 73 m n eng p b t d k g d_ezh t_esh f v theta eth s z esh ezh h turnedr j w l
1
SeqLookup: 0 "Multiple Substitution lookup 21"
EndFPST
ChainSub2: coverage "addPoint contextual 18" 0 0 0 1
1 0 1
Coverage: 8 e_smallI
FCoverage: 73 m n eng p b t d k g d_ezh t_esh f v theta eth s z esh ezh h turnedr j w l
1
SeqLookup: 0 "Multiple Substitution lookup 20"
EndFPST
ChainSub2: coverage "addPoint contextual 17" 0 0 0 1
1 0 1
Coverage: 8 smallI_r
FCoverage: 73 m n eng p b t d k g d_ezh t_esh f v theta eth s z esh ezh h turnedr j w l
1
SeqLookup: 0 "Multiple Substitution lookup 19"
EndFPST
ChainSub2: coverage "addPoint contextual 16" 0 0 0 1
1 0 1
Coverage: 9 scripta_r
FCoverage: 73 m n eng p b t d k g d_ezh t_esh f v theta eth s z esh ezh h turnedr j w l
1
SeqLookup: 0 "Multiple Substitution lookup 18"
EndFPST
ChainSub2: coverage "addPoint contextual 15" 0 0 0 1
1 0 1
Coverage: 7 openo_r
FCoverage: 73 m n eng p b t d k g d_ezh t_esh f v theta eth s z esh ezh h turnedr j w l
1
SeqLookup: 0 "Multiple Substitution lookup 17"
EndFPST
ChainSub2: coverage "addPoint contextual 14" 0 0 0 1
1 0 1
Coverage: 9 upsilon_r
FCoverage: 73 m n eng p b t d k g d_ezh t_esh f v theta eth s z esh ezh h turnedr j w l
1
SeqLookup: 0 "Multiple Substitution lookup 16"
EndFPST
ChainSub2: coverage "addPoint contextual 13" 0 0 0 1
1 0 1
Coverage: 16 reverseepsilon_r
FCoverage: 73 m n eng p b t d k g d_ezh t_esh f v theta eth s z esh ezh h turnedr j w l
1
SeqLookup: 0 "Multiple Substitution lookup 15"
EndFPST
ChainSub2: coverage "addPoint contextual 12" 0 0 0 1
1 0 1
Coverage: 7 schwa_r
FCoverage: 73 m n eng p b t d k g d_ezh t_esh f v theta eth s z esh ezh h turnedr j w l
1
SeqLookup: 0 "Multiple Substitution lookup 14"
EndFPST
ChainSub2: coverage "addPoint contextual 11" 0 0 0 1
1 0 1
Coverage: 1 u
FCoverage: 73 m n eng p b t d k g d_ezh t_esh f v theta eth s z esh ezh h turnedr j w l
1
SeqLookup: 0 "Multiple Substitution lookup 13"
EndFPST
ChainSub2: coverage "addPoint contextual 10" 0 0 0 1
1 0 1
Coverage: 1 i
FCoverage: 73 m n eng p b t d k g d_ezh t_esh f v theta eth s z esh ezh h turnedr j w l
1
SeqLookup: 0 "Multiple Substitution lookup 12"
EndFPST
ChainSub2: coverage "addPoint contextual 9" 0 0 0 1
1 0 1
Coverage: 7 turnedV
FCoverage: 73 m n eng p b t d k g d_ezh t_esh f v theta eth s z esh ezh h turnedr j w l
1
SeqLookup: 0 "Multiple Substitution lookup 11"
EndFPST
ChainSub2: coverage "addPoint contextual 8" 0 0 0 1
1 0 1
Coverage: 5 schwa
FCoverage: 73 m n eng p b t d k g d_ezh t_esh f v theta eth s z esh ezh h turnedr j w l
1
SeqLookup: 0 "Multiple Substitution lookup 10"
EndFPST
ChainSub2: coverage "addPoint contextual 7" 0 0 0 1
1 0 1
Coverage: 7 upsilon
FCoverage: 73 m n eng p b t d k g d_ezh t_esh f v theta eth s z esh ezh h turnedr j w l
1
SeqLookup: 0 "Multiple Substitution lookup 9"
EndFPST
ChainSub2: coverage "addPoint contextual 6" 0 0 0 1
1 0 1
Coverage: 7 epsilon
FCoverage: 73 m n eng p b t d k g d_ezh t_esh f v theta eth s z esh ezh h turnedr j w l
1
SeqLookup: 0 "Multiple Substitution lookup 8"
EndFPST
ChainSub2: coverage "addPoint contextual 5" 0 0 0 1
1 0 1
Coverage: 6 smallI
FCoverage: 73 m n eng p b t d k g d_ezh t_esh f v theta eth s z esh ezh h turnedr j w l
1
SeqLookup: 0 "Multiple Substitution lookup 7"
EndFPST
ChainSub2: coverage "addPoint contextual 4" 0 0 0 1
1 0 1
Coverage: 7 scripta
FCoverage: 73 m n eng p b t d k g d_ezh t_esh f v theta eth s z esh ezh h turnedr j w l
1
SeqLookup: 0 "Multiple Substitution lookup 6"
EndFPST
ChainSub2: coverage "addPoint contextual 3" 0 0 0 1
1 0 1
Coverage: 5 openo
FCoverage: 73 m n eng p b t d k g d_ezh t_esh f v theta eth s z esh ezh h turnedr j w l
1
SeqLookup: 0 "Multiple Substitution lookup 5"
EndFPST
ChainSub2: coverage "addPoint contextual 2" 0 0 0 1
1 0 1
Coverage: 2 ae
FCoverage: 73 m n eng p b t d k g d_ezh t_esh f v theta eth s z esh ezh h turnedr j w l
1
SeqLookup: 0 "Multiple Substitution lookup 4"
EndFPST
ChainSub2: coverage "addPoint contextual 1" 0 0 0 1
1 1 1
Coverage: 180 ae openo scripta smallI epsilon upsilon schwa turnedV schwa_r reverseepsilon_r upsilon_r i u openo_r scripta_r smallI_r e_smallI a_smallI openo_smallI a_upsilon o_upsilon epsilon_r
BCoverage: 73 m n eng p b t d k g d_ezh t_esh f v theta eth s z esh ezh h turnedr j w l
FCoverage: 73 m n eng p b t d k g d_ezh t_esh f v theta eth s z esh ezh h turnedr j w l
0
EndFPST
ChainSub2: coverage "addPoint contextual 0" 0 0 0 1
1 1 1
Coverage: 180 ae openo scripta smallI epsilon upsilon schwa turnedV schwa_r reverseepsilon_r upsilon_r i u openo_r scripta_r smallI_r e_smallI a_smallI openo_smallI a_upsilon o_upsilon epsilon_r
BCoverage: 6 degree
FCoverage: 73 m n eng p b t d k g d_ezh t_esh f v theta eth s z esh ezh h turnedr j w l
0
EndFPST
LangName: 1033 "" "" "" "" "" "" "" "" "" "" "" "" "" "Copyright (c) 2025, Matthieu Courtines+AAoACgAA-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-https://openfontlicense.org+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.+AAoA" "https://openfontlicense.org"
Encoding: ISO8859-1
UnicodeInterp: none
NameList: AGL For New Fonts
DisplaySize: -48
AntiAlias: 1
FitToEm: 0
WinInfo: 0 38 11
BeginPrivate: 0
EndPrivate
BeginChars: 282 77
StartChar: .notdef
Encoding: -1 0 0
Width: 511
VWidth: 824
Flags: W
HStem: 780 20G<0 511.111> 780 20G<0 511.111>
VStem: 0 511.111<-200 800>
LayerCount: 2
Fore
SplineSet
0 800 m 1xa0
511.111328125 800 l 5
511.111328125 -200 l 1
0 -200 l 1
0 800 l 1xa0
EndSplineSet
Validated: 1
EndChar
StartChar: ae
Encoding: 230 230 1
Width: 449
VWidth: 824
Flags: W
HStem: 349.195 61.2891<480.454 509.722> 713.963 20G<224.9 286.197>
VStem: 0 61.2969<62.6007 91.8848 221.729 251.014>
LayerCount: 2
Fore
SplineSet
255.548828125 800 m 1
255.548828125 799.99609375 l 1
252.87109375 799.99609375 250.205078125 799.645507812 247.618164062 798.953125 c 0
245.03125 798.259765625 242.546875 797.228515625 240.228515625 795.888671875 c 2
240.212890625 795.875976562 l 1
153.850585938 746.022460938 l 1
101.701171875 715.913085938 l 1
15.3427734375 666.055664062 l 1
15.3212890625 666.043945312 l 2
13.0009765625 664.705078125 10.8662109375 663.069335938 8.9716796875 661.17578125 c 0
7.0791015625 659.282226562 5.44140625 657.149414062 4.103515625 654.831054688 c 0
1.4150390625 650.173828125 0 644.889648438 0 639.51171875 c 2
0 379.836914062 l 2
0.01171875 375.850585938 0.7919921875 371.903320312 2.3115234375 368.217773438 c 0
2.328125 368.173828125 2.3369140625 368.124023438 2.3544921875 368.079101562 c 0
5.4658203125 360.598632812 11.412109375 354.653320312 18.89453125 351.544921875 c 0
18.927734375 351.533203125 18.96484375 351.529296875 18.9990234375 351.512695312 c 0
22.693359375 349.98828125 26.6513671875 349.200195312 30.6484375 349.1953125 c 2
30.6982421875 349.1953125 l 1
480.454101562 349.1953125 l 2
497.379882812 349.1953125 511.100585938 362.9140625 511.099609375 379.838867188 c 0
511.100585938 396.763671875 497.379882812 410.484375 480.454101562 410.484375 c 2
61.296875 410.484375 l 1
61.296875 586.435546875 l 1
61.296875 621.818359375 l 1
91.943359375 639.51171875 l 1
132.342773438 662.837890625 l 1
184.499023438 692.94921875 l 1
224.900390625 716.270507812 l 1
255.55078125 733.962890625 l 1
286.197265625 716.2734375 l 1
465.1328125 612.973632812 l 2
479.7890625 604.512695312 498.532226562 609.530273438 506.997070312 624.18359375 c 0
515.46484375 638.841796875 510.442382812 657.58984375 495.78125 666.052734375 c 2
270.870117188 795.89453125 l 2
266.211914062 798.583984375 260.927734375 800 255.548828125 800 c 1
30.666015625 252.392578125 m 0
13.7294921875 252.393554688 -0.0009765625 238.6640625 0 221.729492188 c 2
0 91.884765625 l 2
-0.0009765625 74.9501953125 13.7294921875 61.2216796875 30.666015625 61.2216796875 c 0
47.6015625 61.22265625 61.330078125 74.951171875 61.3291015625 91.884765625 c 2
61.3291015625 221.729492188 l 2
61.330078125 238.6640625 47.6015625 252.391601562 30.666015625 252.392578125 c 0
EndSplineSet
Validated: 41
Position2: "Single Positioning lookup 2 subtable" dx=0 dy=0 dh=-449 dv=0
MultipleSubs2: "Multiple Substitution lookup 27 subtable" degree ae
MultipleSubs2: "Multiple Substitution lookup 4 subtable" degree ae
Ligature2: "Ligatures subtable" a e
LCarets2: 1 0
EndChar
StartChar: degree
Encoding: 176 176 2
Width: 449
VWidth: 824
Flags: W
HStem: -200 76.6191<240.946 270.163> -92.7324 76.6211<240.946 270.163>
VStem: 163.611 76.6191<-122.665 -93.4482> 270.879 76.6211<-122.665 -93.4482>
LayerCount: 2
Fore
SplineSet
255.5546875 -16.111328125 m 0
205.229492188 -16.111328125 163.611328125 -57.7314453125 163.611328125 -108.056640625 c 0
163.611328125 -158.381835938 205.229492188 -200 255.5546875 -200 c 0
305.879882812 -200 347.5 -158.381835938 347.5 -108.056640625 c 0
347.5 -57.7314453125 305.879882812 -16.111328125 255.5546875 -16.111328125 c 0
255.5546875 -92.732421875 m 0
264.471679688 -92.732421875 270.87890625 -99.1396484375 270.87890625 -108.056640625 c 0
270.87890625 -116.973632812 264.471679688 -123.380859375 255.5546875 -123.380859375 c 0
246.637695312 -123.380859375 240.23046875 -116.973632812 240.23046875 -108.056640625 c 0
240.23046875 -99.1396484375 246.637695312 -92.732421875 255.5546875 -92.732421875 c 0
EndSplineSet
Validated: 521
Position2: "Single Positioning lookup 1 subtable" dx=0 dy=0 dh=-449 dv=0
EndChar
StartChar: openo
Encoding: 256 596 3
Width: 449
VWidth: 824
Flags: W
HStem: 349.154 61.2949<61.3008 509.733> 780 20G<255.551 256.892> 780 20G<255.551 256.892>
VStem: 0 61.3008<62.6024 250.99 410.449 621.807>
LayerCount: 2
Fore
Refer: 71 593 S 1 0 0 1 0 0 2
Position2: "Single Positioning lookup 2 subtable" dx=0 dy=0 dh=-449 dv=0
MultipleSubs2: "Multiple Substitution lookup 28 subtable" degree openo
MultipleSubs2: "Multiple Substitution lookup 5 subtable" degree openo
EndChar
StartChar: smallI
Encoding: 257 618 4
Width: 449
VWidth: 824
Flags: W
HStem: 349.117 61.3311<1.37765 30.6338 480.476 509.734>
LayerCount: 2
Fore
SplineSet
30.6337890625 410.448242188 m 2
13.71484375 410.447265625 -0.0009765625 396.717773438 0 379.78125 c 0
0.0009765625 362.845703125 13.7158203125 349.1171875 30.6337890625 349.1171875 c 2
480.475585938 349.1171875 l 2
497.39453125 349.116210938 511.110351562 362.845703125 511.111328125 379.78125 c 0
511.111328125 396.71875 497.395507812 410.448242188 480.475585938 410.448242188 c 2
30.6337890625 410.448242188 l 2
479.166992188 122.520507812 m 2
474.231445312 122.391601562 469.258789062 121.063476562 464.682617188 118.418945312 c 2
334.158203125 42.9873046875 l 1
285.924804688 15.1103515625 l 1
255.307617188 -2.5830078125 l 1
224.689453125 15.1103515625 l 1
176.456054688 42.9873046875 l 1
45.9306640625 118.418945312 l 2
40.4404296875 121.592773438 34.3759765625 122.87109375 28.494140625 122.455078125 c 0
18.6904296875 121.762695312 9.3955078125 116.365234375 4.1103515625 107.206054688 c 0
-4.3486328125 92.5458984375 0.66796875 73.798828125 15.314453125 65.333984375 c 2
145.83984375 -10.099609375 l 1
240.00390625 -64.5224609375 l 2
244.657226562 -67.2109375 249.935546875 -68.626953125 255.307617188 -68.6279296875 c 2
255.315429688 -68.6259765625 l 2
259.098632812 -68.625 262.8203125 -67.88671875 266.32421875 -66.5322265625 c 0
267.799804688 -65.9609375 269.24609375 -65.3115234375 270.619140625 -64.5185546875 c 2
495.299804688 65.333984375 l 2
509.946289062 73.798828125 514.963867188 92.546875 506.50390625 107.206054688 c 0
500.690429688 117.28125 490.0234375 122.803710938 479.166992188 122.520507812 c 2
EndSplineSet
Validated: 41
Position2: "Single Positioning lookup 2 subtable" dx=0 dy=0 dh=-449 dv=0
MultipleSubs2: "Multiple Substitution lookup 30 subtable" degree smallI
MultipleSubs2: "Multiple Substitution lookup 7 subtable" degree smallI
EndChar
StartChar: epsilon
Encoding: 258 603 5
Width: 449
VWidth: 824
Flags: W
HStem: 349.156 61.2959<480.454 509.725>
VStem: 0 61.2949<221.728 250.996 639.501 668.771>
LayerCount: 2
Fore
SplineSet
30.6484375 670.149414062 m 0
13.72265625 670.149414062 0 656.426757812 0 639.500976562 c 2
0 379.8046875 l 2
0 362.877929688 13.72265625 349.15625 30.6484375 349.15625 c 2
480.454101562 349.15625 l 2
497.380859375 349.15625 511.102539062 362.877929688 511.102539062 379.8046875 c 0
511.102539062 396.73046875 497.380859375 410.453125 480.454101562 410.452148438 c 2
61.294921875 410.452148438 l 1
61.294921875 639.500976562 l 2
61.294921875 656.426757812 47.5751953125 670.149414062 30.6484375 670.149414062 c 0
30.6484375 252.377929688 m 1
13.72265625 252.377929688 0 238.65625 0 221.729492188 c 2
0 176.173828125 l 1
0 169.948242188 l 1
0 91.890625 l 1
0 91.87109375 l 2
0 89.193359375 0.3486328125 86.5244140625 1.041015625 83.9375 c 0
1.734375 81.3515625 2.7646484375 78.8662109375 4.103515625 76.5478515625 c 0
6.7939453125 71.8896484375 10.6630859375 68.021484375 15.3212890625 65.33203125 c 2
101.698242188 15.4599609375 l 1
122.80859375 3.271484375 l 1
240.211914062 -64.5068359375 l 1
240.227539062 -64.5205078125 l 2
242.545898438 -65.8603515625 245.030273438 -66.8916015625 247.6171875 -67.5849609375 c 0
250.204101562 -68.27734375 252.870117188 -68.62890625 255.547851562 -68.6279296875 c 0
260.926757812 -68.6279296875 266.2109375 -67.2119140625 270.869140625 -64.5224609375 c 2
495.78125 65.326171875 l 2
510.442382812 73.7900390625 515.46484375 92.541015625 506.997070312 107.200195312 c 0
498.532226562 121.85546875 479.790039062 126.873046875 465.133789062 118.411132812 c 2
286.198242188 15.103515625 l 1
255.552734375 -2.58984375 l 1
224.904296875 15.107421875 l 1
153.45703125 56.3525390625 l 1
132.344726562 68.541015625 l 1
91.943359375 91.8681640625 l 1
61.298828125 109.561523438 l 1
61.298828125 144.952148438 l 1
61.298828125 169.943359375 l 1
61.298828125 176.170898438 l 1
61.298828125 221.727539062 l 2
61.2998046875 238.653320312 47.5771484375 252.374023438 30.650390625 252.374023438 c 1
30.6484375 252.377929688 l 1
EndSplineSet
Validated: 41
Position2: "Single Positioning lookup 2 subtable" dx=0 dy=0 dh=-449 dv=0
MultipleSubs2: "Multiple Substitution lookup 31 subtable" degree epsilon
MultipleSubs2: "Multiple Substitution lookup 8 subtable" degree epsilon
EndChar
StartChar: uni028A
Encoding: 0 0 6
Width: 449
VWidth: 824
Flags: W
LayerCount: 2
Fore
Validated: 1
EndChar
StartChar: schwa
Encoding: 259 601 7
Width: 449
VWidth: 824
Flags: W
HStem: 349.152 61.2959<1.38862 30.6582 480.453 509.722> 713.957 20G<224.908 286.202>
LayerCount: 2
Fore
SplineSet
255.555664062 800 m 6
250.177734375 799.999023438 244.89453125 798.583007812 240.237304688 795.89453125 c 6
145.98046875 741.47265625 l 5
15.3291015625 666.041992188 l 6
0.66796875 657.577148438 -4.353515625 638.829101562 4.1142578125 624.169921875 c 4
12.5791015625 609.513671875 31.3203125 604.494140625 45.9765625 612.956054688 c 6
176.627929688 688.387695312 l 5
224.908203125 716.263671875 l 5
255.555664062 733.95703125 l 5
286.202148438 716.263671875 l 5
334.483398438 688.387695312 l 5
465.134765625 612.956054688 l 6
479.791015625 604.494140625 498.532226562 609.513671875 506.99609375 624.169921875 c 4
515.463867188 638.829101562 510.442382812 657.577148438 495.78125 666.041992188 c 6
270.881835938 795.889648438 l 5
269.508789062 796.68359375 268.059570312 797.333007812 266.583984375 797.903320312 c 4
263.076171875 799.2578125 259.348632812 799.997070312 255.561523438 799.998046875 c 6
255.555664062 800 l 6
30.658203125 410.448242188 m 6
13.732421875 410.44921875 0.0107421875 396.7265625 0.0107421875 379.80078125 c 4
0.0107421875 362.874023438 13.732421875 349.15234375 30.658203125 349.15234375 c 6
480.453125 349.15234375 l 6
497.37890625 349.15234375 511.099609375 362.874023438 511.099609375 379.80078125 c 4
511.099609375 396.7265625 497.37890625 410.44921875 480.453125 410.448242188 c 6
30.658203125 410.448242188 l 6
EndSplineSet
Validated: 41
Position2: "Single Positioning lookup 2 subtable" dx=0 dy=0 dh=-449 dv=0
MultipleSubs2: "Multiple Substitution lookup 33 subtable" degree schwa
MultipleSubs2: "Multiple Substitution lookup 10 subtable" degree schwa
EndChar
StartChar: i
Encoding: 105 105 8
Width: 449
VWidth: 824
Flags: W
HStem: 349.153 61.2959<480.463 509.733>
VStem: 0 61.3008<221.72 250.989>
LayerCount: 2
Fore
SplineSet
255.552734375 800 m 2
255.55078125 799.998046875 l 2
250.170898438 799.998046875 244.883789062 798.581054688 240.224609375 795.890625 c 2
125.76171875 729.8046875 l 1
15.34375 666.052734375 l 1
15.322265625 666.041015625 l 2
13.0029296875 664.702148438 10.8671875 663.065429688 8.97265625 661.171875 c 0
7.080078125 659.278320312 5.44140625 657.146484375 4.103515625 654.828125 c 0
1.4150390625 650.169921875 0 644.883789062 0 639.505859375 c 2
0 379.799804688 l 2
0.0107421875 375.817382812 0.7919921875 371.874023438 2.30859375 368.190429688 c 0
2.330078125 368.140625 2.3359375 368.083984375 2.357421875 368.034179688 c 0
5.4677734375 360.559570312 11.4091796875 354.618164062 18.884765625 351.508789062 c 0
18.931640625 351.48828125 18.9853515625 351.484375 19.033203125 351.463867188 c 0
22.7177734375 349.946289062 26.6630859375 349.162109375 30.6484375 349.153320312 c 2
30.66015625 349.153320312 l 1
480.462890625 349.153320312 l 2
497.389648438 349.153320312 511.111328125 362.874023438 511.111328125 379.80078125 c 4
511.111328125 396.7265625 497.389648438 410.44921875 480.462890625 410.44921875 c 2
61.30078125 410.44921875 l 1
61.30078125 586.419921875 l 1
61.30078125 621.806640625 l 1
91.94921875 639.501953125 l 1
156.412109375 676.720703125 l 1
184.5078125 692.943359375 l 1
270.875 742.806640625 l 2
285.532226562 751.268554688 290.557617188 770.009765625 282.09765625 784.66796875 c 0
278.034179688 791.709960938 271.33984375 796.849609375 263.486328125 798.955078125 c 0
260.899414062 799.6484375 258.231445312 800 255.552734375 800 c 2
30.6484375 252.368164062 m 1
13.72265625 252.369140625 0 238.647460938 0 221.721679688 c 2
0 176.166992188 l 1
0 169.940429688 l 1
0 91.8857421875 l 1
0 91.8642578125 l 2
-0.0009765625 89.1865234375 0.3486328125 86.51953125 1.041015625 83.9326171875 c 0
1.734375 81.3466796875 2.7646484375 78.8603515625 4.103515625 76.5419921875 c 0
6.79296875 71.884765625 10.662109375 68.0166015625 15.3203125 65.3271484375 c 2
101.69921875 15.4560546875 l 1
122.80859375 3.2685546875 l 1
240.2109375 -64.5087890625 l 1
240.228515625 -64.5205078125 l 2
242.547851562 -65.8603515625 245.030273438 -66.892578125 247.6171875 -67.5869140625 c 0
250.204101562 -68.279296875 252.87109375 -68.62890625 255.548828125 -68.6279296875 c 0
260.927734375 -68.6279296875 266.2109375 -67.2138671875 270.869140625 -64.5244140625 c 2
495.78125 65.3212890625 l 2
510.442382812 73.78515625 515.463867188 92.5361328125 506.99609375 107.194335938 c 0
498.53125 121.849609375 479.7890625 126.8671875 465.1328125 118.405273438 c 2
286.19921875 15.0986328125 l 1
255.552734375 -2.5927734375 l 1
224.90234375 15.1025390625 l 1
153.45703125 56.3486328125 l 1
132.345703125 68.5361328125 l 1
91.94140625 91.8623046875 l 1
61.298828125 109.555664062 l 1
61.298828125 144.946289062 l 1
61.298828125 169.936523438 l 1
61.298828125 176.165039062 l 1
61.298828125 221.719726562 l 2
61.298828125 238.645507812 47.578125 252.3671875 30.65234375 252.366210938 c 1
30.6484375 252.368164062 l 1
EndSplineSet
Validated: 41
Position2: "Single Positioning lookup 2 subtable" dx=0 dy=0 dh=-449 dv=0
MultipleSubs2: "Multiple Substitution lookup 35 subtable" degree i
MultipleSubs2: "Multiple Substitution lookup 12 subtable" degree i
EndChar
StartChar: u
Encoding: 117 117 9
Width: 449
VWidth: 824
Flags: W
HStem: 349.152 61.2969<480.453 509.724> 713.957 20G<224.9 286.197>
VStem: 0 61.2969<221.724 250.991>
LayerCount: 2
Fore
SplineSet
255.548828125 800 m 1
255.548828125 799.99609375 l 1
252.87109375 799.99609375 250.204101562 799.645507812 247.6171875 798.953125 c 0
245.030273438 798.258789062 242.547851562 797.228515625 240.228515625 795.888671875 c 2
240.212890625 795.875 l 1
153.849609375 746.017578125 l 1
101.701171875 715.904296875 l 1
15.341796875 666.041015625 l 1
15.3203125 666.03125 l 2
13.0009765625 664.692382812 10.865234375 663.0546875 8.970703125 661.162109375 c 0
7.078125 659.268554688 5.4423828125 657.13671875 4.103515625 654.818359375 c 0
1.4150390625 650.161132812 0 644.874023438 0 639.49609375 c 2
0 379.796875 l 2
0.01171875 375.809570312 0.7919921875 371.861328125 2.310546875 368.17578125 c 0
2.3271484375 368.130859375 2.337890625 368.081054688 2.35546875 368.037109375 c 0
5.4658203125 360.555664062 11.412109375 354.610351562 18.89453125 351.501953125 c 0
18.927734375 351.489257812 18.96484375 351.487304688 18.998046875 351.470703125 c 0
22.6923828125 349.9453125 26.6513671875 349.157226562 30.6484375 349.15234375 c 2
30.69921875 349.15234375 l 1
480.453125 349.15234375 l 2
497.379882812 349.15234375 511.1015625 362.874023438 511.1015625 379.80078125 c 0
511.1015625 396.7265625 497.379882812 410.44921875 480.453125 410.44921875 c 2
61.296875 410.44921875 l 1
61.296875 586.416015625 l 1
61.296875 621.802734375 l 1
91.943359375 639.49609375 l 1
132.34375 662.82421875 l 1
184.5 692.939453125 l 1
224.900390625 716.263671875 l 1
255.55078125 733.95703125 l 1
286.197265625 716.265625 l 1
465.1328125 612.95703125 l 2
479.7890625 604.494140625 498.532226562 609.512695312 506.99609375 624.16796875 c 0
515.463867188 638.827148438 510.442382812 657.575195312 495.78125 666.0390625 c 2
270.869140625 795.89453125 l 2
266.2109375 798.583984375 260.927734375 800 255.548828125 800 c 1
30.64453125 252.368164062 m 0
13.7275390625 252.366210938 0.01171875 238.659179688 0 221.741210938 c 2
0 200.711914062 l 1
0 91.8701171875 l 2
0 91.8544921875 0.00390625 91.837890625 0.00390625 91.8212890625 c 0
0.0263671875 88.755859375 0.5078125 85.7109375 1.43359375 82.7880859375 c 0
1.5185546875 82.515625 1.6162109375 82.248046875 1.708984375 81.9775390625 c 0
2.66796875 79.1279296875 4.0400390625 76.435546875 5.783203125 73.9853515625 c 0
5.859375 73.880859375 5.9443359375 73.783203125 6.021484375 73.6787109375 c 0
7.765625 71.3515625 9.8330078125 69.28515625 12.16015625 67.5400390625 c 0
12.5546875 67.236328125 12.9775390625 66.9736328125 13.384765625 66.6865234375 c 0
14.0302734375 66.232421875 14.6416015625 65.728515625 15.326171875 65.3330078125 c 2
240.2265625 -64.5166015625 l 2
254.88671875 -72.9814453125 273.634765625 -67.9560546875 282.095703125 -53.2939453125 c 0
290.5546875 -38.6357421875 285.532226562 -19.896484375 270.875 -11.4345703125 c 2
140.224609375 64.0009765625 l 1
91.943359375 91.8759765625 l 1
61.294921875 109.573242188 l 1
61.29296875 144.959960938 l 1
61.29296875 200.711914062 l 1
61.29296875 221.723632812 l 2
61.291015625 238.649414062 47.5703125 252.369140625 30.64453125 252.368164062 c 0
EndSplineSet
Validated: 41
Position2: "Single Positioning lookup 2 subtable" dx=0 dy=0 dh=-449 dv=0
MultipleSubs2: "Multiple Substitution lookup 36 subtable" degree u
MultipleSubs2: "Multiple Substitution lookup 13 subtable" degree u
EndChar
StartChar: schwa_r
Encoding: 260 602 10
Width: 449
VWidth: 824
Flags: W
HStem: 349.155 61.2969<480.453 509.724>
VStem: 0 61.2939<221.728 250.996 639.5 668.771>
LayerCount: 2
Fore
SplineSet
256.553710938 799.983398438 m 4
253.546875 800.08203125 250.537109375 799.737304688 247.62109375 798.956054688 c 4
239.767578125 796.8515625 233.072265625 791.711914062 229.008789062 784.668945312 c 4
220.549804688 770.010742188 225.57421875 751.26953125 240.231445312 742.807617188 c 6
465.134765625 612.958007812 l 6
479.791015625 604.497070312 498.53125 609.516601562 506.99609375 624.170898438 c 4
515.463867188 638.829101562 510.443359375 657.578125 495.783203125 666.04296875 c 6
270.87890625 795.891601562 l 6
267.393554688 797.904296875 263.545898438 799.212890625 259.555664062 799.73828125 c 4
258.557617188 799.870117188 257.555664062 799.951171875 256.553710938 799.983398438 c 4
30.6484375 670.1484375 m 4
13.7216796875 670.1484375 0 656.426757812 0 639.5 c 6
0 379.803710938 l 6
0 362.877929688 13.7216796875 349.155273438 30.6484375 349.155273438 c 6
480.453125 349.155273438 l 6
497.379882812 349.155273438 511.1015625 362.877929688 511.1015625 379.803710938 c 4
511.1015625 396.73046875 497.379882812 410.452148438 480.453125 410.452148438 c 6
61.2939453125 410.452148438 l 5
61.2939453125 639.5 l 6
61.2939453125 656.426757812 47.57421875 670.1484375 30.6484375 670.1484375 c 4
30.6484375 252.377929688 m 5
13.72265625 252.377929688 0 238.655273438 0 221.729492188 c 6
0 176.172851562 l 5
0 169.947265625 l 5
0 91.8896484375 l 5
0 91.8701171875 l 6
-0.0009765625 89.193359375 0.3486328125 86.5234375 1.0400390625 83.9375 c 4
1.734375 81.3515625 2.7646484375 78.8662109375 4.103515625 76.5478515625 c 4
6.79296875 71.8896484375 10.6630859375 68.021484375 15.3212890625 65.33203125 c 6
101.698242188 15.4599609375 l 5
122.807617188 3.271484375 l 5
240.211914062 -64.5068359375 l 5