-
Notifications
You must be signed in to change notification settings - Fork 0
/
linjaKita.sfd
17593 lines (17147 loc) · 487 KB
/
linjaKita.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: linjaKita
FullName: linja Kita
FamilyName: linja Kita
Weight: Regular
Copyright: Copyright (c) 2024, jan Kita. jan Ke Tami li pana e ijo namako.
UComments: "2024-6-2: Created with FontForge (http://fontforge.org)"
Version: 001.100
ItalicAngle: 0
UnderlinePosition: -10000
UnderlineWidth: 5000
Ascent: 800
Descent: 400
InvalidEm: 0
LayerCount: 2
Layer: 0 0 "Hinten" 1
Layer: 1 0 "Vorne" 0
XUID: [1021 572 -2013945090 869]
StyleMap: 0x0000
FSType: 0
OS2Version: 0
OS2_WeightWidthSlopeOnly: 0
OS2_UseTypoMetrics: 1
CreationTime: 1717356242
ModificationTime: 1730041286
OS2TypoAscent: 0
OS2TypoAOffset: 1
OS2TypoDescent: 0
OS2TypoDOffset: 1
OS2TypoLinegap: 108
OS2WinAscent: 0
OS2WinAOffset: 1
OS2WinDescent: 0
OS2WinDOffset: 1
HheadAscent: 0
HheadAOffset: 1
HheadDescent: 0
HheadDOffset: 1
Lookup: 4 0 1 "'liga' Standard-Ligaturen in Lateinisch Nachschlagetabelle 0" { "'liga' Standard-Ligaturen in Lateinisch Nachschlagetabelle 0-1" } ['liga' ('DFLT' <'dflt' > 'latn' <'dflt' > ) ]
Lookup: 4 0 1 "'liga' Standard-Ligaturen in Lateinisch Nachschlagetabelle 1" { "'liga' Standard-Ligaturen in Lateinisch Nachschlagetabelle 1-1" } ['liga' ('DFLT' <'dflt' > 'latn' <'dflt' > ) ]
Lookup: 6 0 0 "'calt' Kontextuelle Alternativen in Lateinisch Nachschlagetabelle 3" { "'calt' Kontextuelle Alternativen in Lateinisch Nachschlagetabelle 3-1" } ['calt' ('DFLT' <'dflt' > 'latn' <'dflt' > ) ]
Lookup: 1 0 0 "'aalt' Zugriff auf alle Alternativen in Lateinisch Nachschlagetabelle 2" { "'aalt' Zugriff auf alle Alternativen in Lateinisch Nachschlagetabelle 2-1" ("cart") } ['aalt' ('DFLT' <'dflt' > 'latn' <'dflt' > ) ]
MarkAttachClasses: 1
DEI: 91125
ChainSub2: class "'calt' Kontextuelle Alternativen in Lateinisch Nachschlagetabelle 3-1" 3 3 3 1
Class: 2295 tok.a.cart tok.akesi.cart tok.ala.cart tok.alasa.cart tok.ale.cart tok.anpa.cart tok.ante.cart tok.anu.cart tok.awen.cart tok.e.cart tok.en.cart tok.esun.cart tok.ijo.cart tok.ike.cart tok.ilo.cart tok.insa.cart tok.jaki.cart tok.jan.cart tok.jelo.cart tok.jo.cart tok.kala.cart tok.kalama.cart tok.kama.cart tok.kasi.cart tok.ken.cart tok.kepeken.cart tok.kili.cart tok.kiwen.cart tok.ko.cart tok.kon.cart tok.kule.cart tok.kulupu.cart tok.kute.cart tok.la.cart tok.lape.cart tok.laso.cart tok.lawa.cart tok.len.cart tok.lete.cart tok.li.cart tok.lili.cart tok.linja.cart tok.lipu.cart tok.loje.cart tok.lon.cart tok.luka.cart tok.lukin.cart tok.lupa.cart tok.ma.cart tok.mama.cart tok.mani.cart tok.meli.cart tok.mi.cart tok.mije.cart tok.moku.cart tok.moli.cart tok.monsi.cart tok.mu.cart tok.mun.cart tok.musi.cart tok.mute.cart tok.nanpa.cart tok.nasa.cart tok.nasin.cart tok.nena.cart tok.ni.cart tok.nimi.cart tok.noka.cart tok.o.cart tok.olin.cart tok.ona.cart tok.open.cart tok.pakala.cart tok.pali.cart tok.palisa.cart tok.pan.cart tok.pana.cart tok.pi.cart tok.pilin.cart tok.pimeja.cart tok.pini.cart tok.pipi.cart tok.poka.cart tok.poki.cart tok.pona.cart tok.pu.cart tok.sama.cart tok.seli.cart tok.selo.cart tok.seme.cart tok.sewi.cart tok.sijelo.cart tok.sike.cart tok.sin.cart tok.sina.cart tok.sinpin.cart tok.sitelen.cart tok.sona.cart tok.soweli.cart tok.suli.cart tok.suno.cart tok.supa.cart tok.suwi.cart tok.tan.cart tok.taso.cart tok.tawa.cart tok.telo.cart tok.tenpo.cart tok.toki.cart tok.tomo.cart tok.tu.cart tok.unpa.cart tok.uta.cart tok.utala.cart tok.walo.cart tok.wan.cart tok.waso.cart tok.wawa.cart tok.weka.cart tok.wile.cart tok.namako.cart tok.kin.cart tok.oko.cart tok.kipisi.cart tok.leko.cart tok.monsuta.cart tok.tonsi.cart tok.jasima.cart tok.kijetesantakalu.cart tok.soko.cart tok.meso.cart tok.epiku.cart tok.kokosila.cart tok.lanpan.cart tok.n.cart tok.misikeke.cart tok.ku.cart tok.dot.cart tok.colon.cart tok.pake.cart tok.apeja.cart tok.majuna.cart tok.powe.cart akesi1.cart ante1.cart esun1.cart esun2.cart esun3.cart esun4.cart jaki1.cart kute1.cart lukin1.cart moku1.cart musi1.cart musi2.cart sewi1.cart namako1.cart jasima1.cart misikeke1.cart puwa.cart poni.cart Kita.cart puwa1.cart ojuta.cart SonaPona.cart cart.space cart.start cart.insa
Class: 1451 tok.a tok.akesi tok.ala tok.alasa tok.ale tok.anpa tok.ante tok.anu tok.awen tok.e tok.en tok.esun tok.ijo tok.ike tok.ilo tok.insa tok.jaki tok.jan tok.jelo tok.jo tok.kala tok.kalama tok.kama tok.kasi tok.ken tok.kepeken tok.kili tok.kiwen tok.ko tok.kon tok.kule tok.kulupu tok.kute tok.la tok.lape tok.laso tok.lawa tok.len tok.lete tok.li tok.lili tok.linja tok.lipu tok.loje tok.lon tok.luka tok.lukin tok.lupa tok.ma tok.mama tok.mani tok.meli tok.mi tok.mije tok.moku tok.moli tok.monsi tok.mu tok.mun tok.musi tok.mute tok.nanpa tok.nasa tok.nasin tok.nena tok.ni tok.nimi tok.noka tok.o tok.olin tok.ona tok.open tok.pakala tok.pali tok.palisa tok.pan tok.pana tok.pi tok.pilin tok.pimeja tok.pini tok.pipi tok.poka tok.poki tok.pona tok.pu tok.sama tok.seli tok.selo tok.seme tok.sewi tok.sijelo tok.sike tok.sin tok.sina tok.sinpin tok.sitelen tok.sona tok.soweli tok.suli tok.suno tok.supa tok.suwi tok.tan tok.taso tok.tawa tok.telo tok.tenpo tok.toki tok.tomo tok.tu tok.unpa tok.uta tok.utala tok.walo tok.wan tok.waso tok.wawa tok.weka tok.wile tok.namako tok.kin tok.oko tok.kipisi tok.leko tok.monsuta tok.tonsi tok.jasima tok.kijetesantakalu tok.soko tok.meso tok.epiku tok.kokosila tok.lanpan tok.n tok.misikeke tok.ku tok.dot tok.colon tok.pake tok.apeja tok.majuna tok.powe akesi1 ante1 esun1 esun2 esun3 esun4 jaki1 kute1 lukin1 moku1 musi1 musi2 sewi1 namako1 jasima1 misikeke1 puwa poni Kita puwa1 ojuta SonaPona space tok.sp
BClass: 2295 tok.a.cart tok.akesi.cart tok.ala.cart tok.alasa.cart tok.ale.cart tok.anpa.cart tok.ante.cart tok.anu.cart tok.awen.cart tok.e.cart tok.en.cart tok.esun.cart tok.ijo.cart tok.ike.cart tok.ilo.cart tok.insa.cart tok.jaki.cart tok.jan.cart tok.jelo.cart tok.jo.cart tok.kala.cart tok.kalama.cart tok.kama.cart tok.kasi.cart tok.ken.cart tok.kepeken.cart tok.kili.cart tok.kiwen.cart tok.ko.cart tok.kon.cart tok.kule.cart tok.kulupu.cart tok.kute.cart tok.la.cart tok.lape.cart tok.laso.cart tok.lawa.cart tok.len.cart tok.lete.cart tok.li.cart tok.lili.cart tok.linja.cart tok.lipu.cart tok.loje.cart tok.lon.cart tok.luka.cart tok.lukin.cart tok.lupa.cart tok.ma.cart tok.mama.cart tok.mani.cart tok.meli.cart tok.mi.cart tok.mije.cart tok.moku.cart tok.moli.cart tok.monsi.cart tok.mu.cart tok.mun.cart tok.musi.cart tok.mute.cart tok.nanpa.cart tok.nasa.cart tok.nasin.cart tok.nena.cart tok.ni.cart tok.nimi.cart tok.noka.cart tok.o.cart tok.olin.cart tok.ona.cart tok.open.cart tok.pakala.cart tok.pali.cart tok.palisa.cart tok.pan.cart tok.pana.cart tok.pi.cart tok.pilin.cart tok.pimeja.cart tok.pini.cart tok.pipi.cart tok.poka.cart tok.poki.cart tok.pona.cart tok.pu.cart tok.sama.cart tok.seli.cart tok.selo.cart tok.seme.cart tok.sewi.cart tok.sijelo.cart tok.sike.cart tok.sin.cart tok.sina.cart tok.sinpin.cart tok.sitelen.cart tok.sona.cart tok.soweli.cart tok.suli.cart tok.suno.cart tok.supa.cart tok.suwi.cart tok.tan.cart tok.taso.cart tok.tawa.cart tok.telo.cart tok.tenpo.cart tok.toki.cart tok.tomo.cart tok.tu.cart tok.unpa.cart tok.uta.cart tok.utala.cart tok.walo.cart tok.wan.cart tok.waso.cart tok.wawa.cart tok.weka.cart tok.wile.cart tok.namako.cart tok.kin.cart tok.oko.cart tok.kipisi.cart tok.leko.cart tok.monsuta.cart tok.tonsi.cart tok.jasima.cart tok.kijetesantakalu.cart tok.soko.cart tok.meso.cart tok.epiku.cart tok.kokosila.cart tok.lanpan.cart tok.n.cart tok.misikeke.cart tok.ku.cart tok.dot.cart tok.colon.cart tok.pake.cart tok.apeja.cart tok.majuna.cart tok.powe.cart akesi1.cart ante1.cart esun1.cart esun2.cart esun3.cart esun4.cart jaki1.cart kute1.cart lukin1.cart moku1.cart musi1.cart musi2.cart sewi1.cart namako1.cart jasima1.cart misikeke1.cart puwa.cart poni.cart Kita.cart puwa1.cart ojuta.cart SonaPona.cart cart.space cart.start cart.insa
BClass: 1451 tok.a tok.akesi tok.ala tok.alasa tok.ale tok.anpa tok.ante tok.anu tok.awen tok.e tok.en tok.esun tok.ijo tok.ike tok.ilo tok.insa tok.jaki tok.jan tok.jelo tok.jo tok.kala tok.kalama tok.kama tok.kasi tok.ken tok.kepeken tok.kili tok.kiwen tok.ko tok.kon tok.kule tok.kulupu tok.kute tok.la tok.lape tok.laso tok.lawa tok.len tok.lete tok.li tok.lili tok.linja tok.lipu tok.loje tok.lon tok.luka tok.lukin tok.lupa tok.ma tok.mama tok.mani tok.meli tok.mi tok.mije tok.moku tok.moli tok.monsi tok.mu tok.mun tok.musi tok.mute tok.nanpa tok.nasa tok.nasin tok.nena tok.ni tok.nimi tok.noka tok.o tok.olin tok.ona tok.open tok.pakala tok.pali tok.palisa tok.pan tok.pana tok.pi tok.pilin tok.pimeja tok.pini tok.pipi tok.poka tok.poki tok.pona tok.pu tok.sama tok.seli tok.selo tok.seme tok.sewi tok.sijelo tok.sike tok.sin tok.sina tok.sinpin tok.sitelen tok.sona tok.soweli tok.suli tok.suno tok.supa tok.suwi tok.tan tok.taso tok.tawa tok.telo tok.tenpo tok.toki tok.tomo tok.tu tok.unpa tok.uta tok.utala tok.walo tok.wan tok.waso tok.wawa tok.weka tok.wile tok.namako tok.kin tok.oko tok.kipisi tok.leko tok.monsuta tok.tonsi tok.jasima tok.kijetesantakalu tok.soko tok.meso tok.epiku tok.kokosila tok.lanpan tok.n tok.misikeke tok.ku tok.dot tok.colon tok.pake tok.apeja tok.majuna tok.powe akesi1 ante1 esun1 esun2 esun3 esun4 jaki1 kute1 lukin1 moku1 musi1 musi2 sewi1 namako1 jasima1 misikeke1 puwa poni Kita puwa1 ojuta SonaPona space tok.sp
FClass: 2295 tok.a.cart tok.akesi.cart tok.ala.cart tok.alasa.cart tok.ale.cart tok.anpa.cart tok.ante.cart tok.anu.cart tok.awen.cart tok.e.cart tok.en.cart tok.esun.cart tok.ijo.cart tok.ike.cart tok.ilo.cart tok.insa.cart tok.jaki.cart tok.jan.cart tok.jelo.cart tok.jo.cart tok.kala.cart tok.kalama.cart tok.kama.cart tok.kasi.cart tok.ken.cart tok.kepeken.cart tok.kili.cart tok.kiwen.cart tok.ko.cart tok.kon.cart tok.kule.cart tok.kulupu.cart tok.kute.cart tok.la.cart tok.lape.cart tok.laso.cart tok.lawa.cart tok.len.cart tok.lete.cart tok.li.cart tok.lili.cart tok.linja.cart tok.lipu.cart tok.loje.cart tok.lon.cart tok.luka.cart tok.lukin.cart tok.lupa.cart tok.ma.cart tok.mama.cart tok.mani.cart tok.meli.cart tok.mi.cart tok.mije.cart tok.moku.cart tok.moli.cart tok.monsi.cart tok.mu.cart tok.mun.cart tok.musi.cart tok.mute.cart tok.nanpa.cart tok.nasa.cart tok.nasin.cart tok.nena.cart tok.ni.cart tok.nimi.cart tok.noka.cart tok.o.cart tok.olin.cart tok.ona.cart tok.open.cart tok.pakala.cart tok.pali.cart tok.palisa.cart tok.pan.cart tok.pana.cart tok.pi.cart tok.pilin.cart tok.pimeja.cart tok.pini.cart tok.pipi.cart tok.poka.cart tok.poki.cart tok.pona.cart tok.pu.cart tok.sama.cart tok.seli.cart tok.selo.cart tok.seme.cart tok.sewi.cart tok.sijelo.cart tok.sike.cart tok.sin.cart tok.sina.cart tok.sinpin.cart tok.sitelen.cart tok.sona.cart tok.soweli.cart tok.suli.cart tok.suno.cart tok.supa.cart tok.suwi.cart tok.tan.cart tok.taso.cart tok.tawa.cart tok.telo.cart tok.tenpo.cart tok.toki.cart tok.tomo.cart tok.tu.cart tok.unpa.cart tok.uta.cart tok.utala.cart tok.walo.cart tok.wan.cart tok.waso.cart tok.wawa.cart tok.weka.cart tok.wile.cart tok.namako.cart tok.kin.cart tok.oko.cart tok.kipisi.cart tok.leko.cart tok.monsuta.cart tok.tonsi.cart tok.jasima.cart tok.kijetesantakalu.cart tok.soko.cart tok.meso.cart tok.epiku.cart tok.kokosila.cart tok.lanpan.cart tok.n.cart tok.misikeke.cart tok.ku.cart tok.dot.cart tok.colon.cart tok.pake.cart tok.apeja.cart tok.majuna.cart tok.powe.cart akesi1.cart ante1.cart esun1.cart esun2.cart esun3.cart esun4.cart jaki1.cart kute1.cart lukin1.cart moku1.cart musi1.cart musi2.cart sewi1.cart namako1.cart jasima1.cart misikeke1.cart puwa.cart poni.cart Kita.cart puwa1.cart ojuta.cart SonaPona.cart cart.space cart.start cart.insa
FClass: 1451 tok.a tok.akesi tok.ala tok.alasa tok.ale tok.anpa tok.ante tok.anu tok.awen tok.e tok.en tok.esun tok.ijo tok.ike tok.ilo tok.insa tok.jaki tok.jan tok.jelo tok.jo tok.kala tok.kalama tok.kama tok.kasi tok.ken tok.kepeken tok.kili tok.kiwen tok.ko tok.kon tok.kule tok.kulupu tok.kute tok.la tok.lape tok.laso tok.lawa tok.len tok.lete tok.li tok.lili tok.linja tok.lipu tok.loje tok.lon tok.luka tok.lukin tok.lupa tok.ma tok.mama tok.mani tok.meli tok.mi tok.mije tok.moku tok.moli tok.monsi tok.mu tok.mun tok.musi tok.mute tok.nanpa tok.nasa tok.nasin tok.nena tok.ni tok.nimi tok.noka tok.o tok.olin tok.ona tok.open tok.pakala tok.pali tok.palisa tok.pan tok.pana tok.pi tok.pilin tok.pimeja tok.pini tok.pipi tok.poka tok.poki tok.pona tok.pu tok.sama tok.seli tok.selo tok.seme tok.sewi tok.sijelo tok.sike tok.sin tok.sina tok.sinpin tok.sitelen tok.sona tok.soweli tok.suli tok.suno tok.supa tok.suwi tok.tan tok.taso tok.tawa tok.telo tok.tenpo tok.toki tok.tomo tok.tu tok.unpa tok.uta tok.utala tok.walo tok.wan tok.waso tok.wawa tok.weka tok.wile tok.namako tok.kin tok.oko tok.kipisi tok.leko tok.monsuta tok.tonsi tok.jasima tok.kijetesantakalu tok.soko tok.meso tok.epiku tok.kokosila tok.lanpan tok.n tok.misikeke tok.ku tok.dot tok.colon tok.pake tok.apeja tok.majuna tok.powe akesi1 ante1 esun1 esun2 esun3 esun4 jaki1 kute1 lukin1 moku1 musi1 musi2 sewi1 namako1 jasima1 misikeke1 puwa poni Kita puwa1 ojuta SonaPona space tok.sp
1 1 0
ClsList: 2
BClsList: 1
FClsList:
1
SeqLookup: 0 "'aalt' Zugriff auf alle Alternativen in Lateinisch Nachschlagetabelle 2"
ClassNames: "Alle _Andere" "1" "2"
BClassNames: "Alle _Andere" "1" "2"
FClassNames: "Alle _Andere" "1" "2"
EndFPST
LangName: 1033 "" "" "" "" "" "" "" "" "" "" "" "" "" "CC0" "https://creativecommons.org/publicdomain/zero/1.0/"
Encoding: Custom
UnicodeInterp: none
NameList: AGL For New Fonts
DisplaySize: -48
AntiAlias: 1
FitToEm: 0
WinInfo: 288 16 10
BeginPrivate: 0
EndPrivate
BeginChars: 448 446
StartChar: tok.a
Encoding: 0 989440 0
Width: 1200
VWidth: 20600
Flags: W
HStem: -300 200<368.493 535.107 834.241 1067.15> 0 700<932.853 1067.15> 200 200<368.493 531.507>
VStem: 100 200<-31.5065 131.507> 600 200<-34.737 131.507> 900 200<32.8529 667.147>
LayerCount: 2
Fore
SplineSet
1000 700 m 0xdc
1055 700 1100 655 1100 600 c 2
1100 100 l 2
1100 45 1055 0 1000 0 c 0
945 0 900 45 900 100 c 2
900 600 l 2
900 655 945 700 1000 700 c 0xdc
450 400 m 0xbc
642 400 800 242 800 50 c 0
800 39 799 27 798 16 c 0
799 11 800 5 800 0 c 0xdc
800 -27 810 -52 829 -71 c 0
848 -90 873 -100 900 -100 c 2
1000 -100 l 2
1055 -100 1100 -145 1100 -200 c 0
1100 -255 1055 -300 1000 -300 c 2
900 -300 l 2
821 -300 744 -268 688 -212 c 0
687 -211 686 -210 685 -209 c 0
623 -266 540 -300 450 -300 c 0
258 -300 100 -142 100 50 c 0
100 242 258 400 450 400 c 0xbc
450 200 m 0xbc
366 200 300 134 300 50 c 0
300 -34 366 -100 450 -100 c 0
534 -100 600 -34 600 50 c 0
600 134 534 200 450 200 c 0xbc
EndSplineSet
Validated: 1
Substitution2: "'aalt' Zugriff auf alle Alternativen in Lateinisch Nachschlagetabelle 2-1" tok.a.cart
Ligature2: "'liga' Standard-Ligaturen in Lateinisch Nachschlagetabelle 0-1" a
EndChar
StartChar: tok.akesi
Encoding: 1 989441 1
Width: 1200
VWidth: 20600
Flags: W
HStem: -297.75 189.5<531.375 668.625> -3 200<132.853 305 495 705 895 1067.15> 303 189<531.409 668.591> 497 200<332.853 467.147 732.853 867.147>
VStem: 300 200<-75.0463 -3 197 269.185 529.853 664.147> 700 200<-75.0463 -3 197 269.185 529.853 664.147>
LayerCount: 2
Fore
SplineSet
400 697 m 0
455 697 500 652 500 597 c 0
500 542 455 497 400 497 c 0
345 497 300 542 300 597 c 0
300 652 345 697 400 697 c 0
800 697 m 0
855 697 900 652 900 597 c 0
900 542 855 497 800 497 c 0
745 497 700 542 700 597 c 0
700 652 745 697 800 697 c 0
600 492 m 0
651 492 701 479 747 453 c 0
838 400 895 302 895 197 c 1
1000 197 l 2
1055 197 1100 152 1100 97 c 0
1100 42 1055 -3 1000 -3 c 2
895 -3 l 1
895 -108 838 -205 747 -258 c 0
701.5 -284.5 650.75 -297.75 600 -297.75 c 0
549.25 -297.75 498.5 -284.5 453 -258 c 0
362 -205 305 -108 305 -3 c 1
200 -3 l 2
145 -3 100 42 100 97 c 0
100 152 145 197 200 197 c 2
305 197 l 1
305 302 362 400 453 453 c 0
499 479 549 492 600 492 c 0
600 303 m 0
582 303 563 297 547 288 c 0
514 269 495 235 495 197 c 1
705 197 l 1
705 235 686 269 653 288 c 0
637 297 618 303 600 303 c 0
495 -3 m 1
495 -41 514 -75 547 -94 c 0
563.5 -103.5 581.75 -108.25 600 -108.25 c 0
618.25 -108.25 636.5 -103.5 653 -94 c 0
686 -75 705 -41 705 -3 c 1
495 -3 l 1
EndSplineSet
Validated: 524289
Substitution2: "'aalt' Zugriff auf alle Alternativen in Lateinisch Nachschlagetabelle 2-1" tok.akesi.cart
LCarets2: 4 23408 23408 23408 23408
Ligature2: "'liga' Standard-Ligaturen in Lateinisch Nachschlagetabelle 0-1" a k e s i
EndChar
StartChar: tok.ala
Encoding: 2 989442 2
Width: 1200
VWidth: 20400
Flags: W
LayerCount: 2
Fore
SplineSet
200 700 m 0
227 700 252 690 271 671 c 2
600 341 l 1
929 671 l 2
948 690 973 700 1000 700 c 0
1027 700 1052 690 1071 671 c 0
1090.5 651.5 1100.25 625.75 1100.25 600 c 0
1100.25 574.25 1090.5 548.5 1071 529 c 2
741 200 l 1
1071 -129 l 2
1090.5 -148.5 1100.25 -174.25 1100.25 -200 c 0
1100.25 -225.75 1090.5 -251.5 1071 -271 c 0
1051.5 -290.5 1025.75 -300.25 1000 -300.25 c 0
974.25 -300.25 948.5 -290.5 929 -271 c 2
600 59 l 1
271 -271 l 2
251.5 -290.5 225.75 -300.25 200 -300.25 c 0
174.25 -300.25 148.5 -290.5 129 -271 c 0
109.5 -251.5 99.75 -225.75 99.75 -200 c 0
99.75 -174.25 109.5 -148.5 129 -129 c 2
459 200 l 1
129 529 l 2
109.5 548.5 99.75 574.25 99.75 600 c 0
99.75 625.75 109.5 651.5 129 671 c 0
148 690 173 700 200 700 c 0
EndSplineSet
Validated: 524289
Substitution2: "'aalt' Zugriff auf alle Alternativen in Lateinisch Nachschlagetabelle 2-1" tok.ala.cart
Ligature2: "'liga' Standard-Ligaturen in Lateinisch Nachschlagetabelle 0-1" a l a
EndChar
StartChar: tok.alasa
Encoding: 3 989443 3
Width: 1200
VWidth: 20800
Flags: W
HStem: -300 200<400 620.22> 100 200<132.853 200 400 783 985.143 1067.15> 500 200<400 620.22>
VStem: 200 200<-100 100 300 500>
CounterMasks: 1 e0
LayerCount: 2
Fore
SplineSet
300 700 m 2
500 700 l 2
741 700 943 527 990 300 c 1
1000 300 l 2
1055 300 1100 255 1100 200 c 0
1100 145 1055 100 1000 100 c 2
990 100 l 1
943 -127 741 -300 500 -300 c 2
300 -300 l 2
245 -300 200 -255 200 -200 c 2
200 100 l 1
145 100 100 145 100 200 c 0
100 255 145 300 200 300 c 1
200 600 l 2
200 655 245 700 300 700 c 2
400 500 m 1
400 300 l 1
783 300 l 1
742 417 632 500 500 500 c 2
400 500 l 1
400 100 m 1
400 -100 l 1
500 -100 l 2
632 -100 742 -17 783 100 c 1
400 100 l 1
EndSplineSet
Validated: 1
Substitution2: "'aalt' Zugriff auf alle Alternativen in Lateinisch Nachschlagetabelle 2-1" tok.alasa.cart
LCarets2: 4 0 0 0 0
Ligature2: "'liga' Standard-Ligaturen in Lateinisch Nachschlagetabelle 0-1" a l a s a
EndChar
StartChar: tok.ale
Encoding: 4 989444 4
Width: 1200
VWidth: 20700
Flags: W
HStem: -299.704 199.59<333.847 466.833> 100 200<333.447 500 700 866.553> 500.068 200.023<733.482 865.155>
VStem: 100.296 199.59<-66.1526 66.8331> 500 200<-66.553 100 300 466.553> 900.115 199.59<333.167 466.153>
LayerCount: 2
Fore
SplineSet
793 700 m 0
795.429833419 700.060745835 797.859666838 700.091048705 800.288911849 700.091048705 c 0
877.840294041 700.091048705 954.792002146 669.207997854 1012 612 c 0
1069.47453131 554.52546869 1099.704251 477.845578372 1099.704251 399.86977752 c 0
1099.704251 361.169222421 1092.25780883 322.149447596 1077 285 c 0
1031 173 921 100 800 100 c 2
700 100 l 1
700 0 l 2
700 -121 627 -231 515 -277 c 0
477.850552404 -292.257808834 438.830777579 -299.704251005 400.13022248 -299.704251005 c 0
322.154421628 -299.704251005 245.47453131 -269.47453131 188 -212 c 0
130.52546869 -154.52546869 100.295748995 -77.8455783719 100.295748995 0.130222479812 c 0
100.295748995 38.8307775787 107.742191166 77.850552404 123 115 c 0
169 227 279 300 400 300 c 2
500 300 l 1
500 400 l 2
500 521 573 631 685 677 c 0
720 691 756 699 793 700 c 0
798 500 m 0
786 500 774 497 762 492 c 0
724 476 700 441 700 400 c 2
700 300 l 1
800 300 l 2
841 300 876 324 892 362 c 0
897.449330207 374.942159242 900.114735442 388.34830598 900.114735442 401.546828365 c 0
900.114735442 427.101024228 890.123088999 451.876911001 871 471 c 0
851.910976998 490.089023002 827.356092008 500.068276025 801.682760248 500.068276025 c 0
800.457563197 500.068276025 799.229818947 500.04554885 798 500 c 0
400 100 m 2
359 100 324 76 308 38 c 0
302.550669793 25.0578407579 299.885264558 11.6516940204 299.885264558 -1.54682836455 c 0
299.885264558 -27.1010242276 309.876911001 -51.8769110005 329 -71 c 0
348.123088999 -90.1230889995 372.898975772 -100.114735442 398.453171635 -100.114735442 c 0
411.65169402 -100.114735442 425.057840758 -97.4493302072 438 -92 c 0
476 -76 500 -41 500 0 c 2
500 100 l 1
400 100 l 2
EndSplineSet
Validated: 524289
Substitution2: "'aalt' Zugriff auf alle Alternativen in Lateinisch Nachschlagetabelle 2-1" tok.ale.cart
LCarets2: 2 0 0
Ligature2: "'liga' Standard-Ligaturen in Lateinisch Nachschlagetabelle 0-1" a l e
EndChar
StartChar: tok.anpa
Encoding: 5 989445 5
Width: 1200
VWidth: 20800
Flags: W
HStem: -300 200<432.853 767.147> 0 200<300 900>
VStem: 100 200<200 667.147> 400 400<-267.147 -132.853> 900 200<200 667.147>
CounterMasks: 1 38
LayerCount: 2
Fore
SplineSet
200 700 m 0
255 700 300 655 300 600 c 2
300 200 l 1
900 200 l 1
900 600 l 2
900 655 945 700 1000 700 c 0
1055 700 1100 655 1100 600 c 2
1100 100 l 2
1100 45 1055 0 1000 0 c 2
200 0 l 2
145 0 100 45 100 100 c 2
100 600 l 2
100 655 145 700 200 700 c 0
500 -100 m 2
700 -100 l 2
755 -100 800 -145 800 -200 c 0
800 -255 755 -300 700 -300 c 2
500 -300 l 2
445 -300 400 -255 400 -200 c 0
400 -145 445 -100 500 -100 c 2
EndSplineSet
Validated: 1
Substitution2: "'aalt' Zugriff auf alle Alternativen in Lateinisch Nachschlagetabelle 2-1" tok.anpa.cart
LCarets2: 3 0 0 0
Ligature2: "'liga' Standard-Ligaturen in Lateinisch Nachschlagetabelle 0-1" a n p a
EndChar
StartChar: tok.ante
Encoding: 6 989446 6
Width: 1200
VWidth: 20400
Flags: W
HStem: -299.788 599.38<942.5 1066.92> 100.396 599.604<133.834 257.5>
VStem: 100 200<362 667.147> 900 200<-267.147 38>
LayerCount: 2
Fore
SplineSet
200 700 m 0x70
255 700 300 655 300 600 c 2
300 362 l 1
955 689 l 2
969.359178229 696.326111341 984.662982028 699.787845351 999.753811846 699.787845351 c 0
1036.15970763 699.787845351 1071.32611134 679.640821771 1089 645 c 0
1096.32611134 630.640821771 1099.78784535 615.337017972 1099.78784535 600.246188154 c 0
1099.78784535 563.840292375 1079.64082177 528.673888659 1045 511 c 2
245 111 l 2
230.249302656 103.734731159 214.965432269 100.395554731 200.098125614 100.395554731 c 0
147.435774335 100.395554731 100 142.291814976 100 200 c 2
100 600 l 2
100 655 145 700 200 700 c 0x70
1012 299 m 0
1062 293 1100 251 1100 200 c 2
1100 -200 l 2
1100 -255 1055 -300 1000 -300 c 0
945 -300 900 -255 900 -200 c 2
900 38 l 1
245 -289 l 2
230.640821771 -296.326111341 215.337017972 -299.787845351 200.246188154 -299.787845351 c 0
163.840292375 -299.787845351 128.673888659 -279.640821771 111 -245 c 0
103.673888659 -230.640821771 100.212154649 -215.337017972 100.212154649 -200.246188154 c 0
100.212154649 -163.840292375 120.359178229 -128.673888659 155 -111 c 2
955 289 l 2
968.665408814 296.234628196 984.915501338 299.592230826 1000.63373996 299.592230826 c 0xb0
1004.46925639 299.592230826 1008.27310397 299.392304845 1012 299 c 0
EndSplineSet
Validated: 524289
Substitution2: "'aalt' Zugriff auf alle Alternativen in Lateinisch Nachschlagetabelle 2-1" tok.ante.cart
LCarets2: 3 0 0 0
Ligature2: "'liga' Standard-Ligaturen in Lateinisch Nachschlagetabelle 0-1" a n t e
EndChar
StartChar: tok.anu
Encoding: 7 989447 7
Width: 1200
VWidth: 20400
Flags: W
VStem: 500 200<-267.147 159>
LayerCount: 2
Fore
SplineSet
189 699 m 0
192.492819978 699.349281998 195.99919528 699.522344787 199.501765593 699.522344787 c 0
226.082941383 699.522344787 252.444973985 689.555026015 271 671 c 2
600 341 l 1
929 671 l 2
948.5 690.5 974.25 700.25 1000 700.25 c 0
1025.75 700.25 1051.5 690.5 1071 671 c 0
1090.5 651.5 1100.25 625.75 1100.25 600 c 0
1100.25 574.25 1090.5 548.5 1071 529 c 2
700 159 l 1
700 -200 l 2
700 -255 655 -300 600 -300 c 0
545 -300 500 -255 500 -200 c 2
500 159 l 1
129 529 l 2
109.5 548.5 99.75 574.25 99.75 600 c 0
99.75 625.75 109.5 651.5 129 671 c 0
145 687 166 696 189 699 c 0
EndSplineSet
Validated: 524289
Substitution2: "'aalt' Zugriff auf alle Alternativen in Lateinisch Nachschlagetabelle 2-1" tok.anu.cart
Ligature2: "'liga' Standard-Ligaturen in Lateinisch Nachschlagetabelle 0-1" a n u
EndChar
StartChar: tok.awen
Encoding: 8 989448 8
Width: 1200
VWidth: 20600
Flags: W
HStem: -300 200<132.853 322 878 1067.15>
LayerCount: 2
Fore
SplineSet
600 700 m 0
646 700 686 669 697 624 c 2
878 -100 l 1
1000 -100 l 2
1055 -100 1100 -145 1100 -200 c 0
1100 -255 1055 -300 1000 -300 c 2
800 -300 l 2
754 -300 714 -269 703 -224 c 2
600 188 l 1
497 -224 l 2
486 -269 446 -300 400 -300 c 2
200 -300 l 2
145 -300 100 -255 100 -200 c 0
100 -145 145 -100 200 -100 c 2
322 -100 l 1
503 624 l 2
514 669 554 700 600 700 c 0
EndSplineSet
Validated: 1
Substitution2: "'aalt' Zugriff auf alle Alternativen in Lateinisch Nachschlagetabelle 2-1" tok.awen.cart
Ligature2: "'liga' Standard-Ligaturen in Lateinisch Nachschlagetabelle 0-1" a w e n
EndChar
StartChar: tok.e
Encoding: 9 989449 9
Width: 1200
VWidth: 20800
Flags: W
LayerCount: 2
Fore
SplineSet
200 700 m 0
227 700 252 690 271 671 c 2
671 271 l 2
690.5 251.5 700.25 225.75 700.25 200 c 0
700.25 174.25 690.5 148.5 671 129 c 2
271 -271 l 2
251.5 -290.5 225.75 -300.25 200 -300.25 c 0
174.25 -300.25 148.5 -290.5 129 -271 c 0
109.5 -251.5 99.75 -225.75 99.75 -200 c 0
99.75 -174.25 109.5 -148.5 129 -129 c 2
459 200 l 1
129 529 l 2
109.5 548.5 99.75 574.25 99.75 600 c 0
99.75 625.75 109.5 651.5 129 671 c 0
148 690 173 700 200 700 c 0
600 700 m 0
627 700 652 690 671 671 c 2
1071 271 l 2
1090.5 251.5 1100.25 225.75 1100.25 200 c 0
1100.25 174.25 1090.5 148.5 1071 129 c 2
671 -271 l 2
651.5 -290.5 625.75 -300.25 600 -300.25 c 0
574.25 -300.25 548.5 -290.5 529 -271 c 0
509.5 -251.5 499.75 -225.75 499.75 -200 c 0
499.75 -174.25 509.5 -148.5 529 -129 c 2
859 200 l 1
529 529 l 2
509.5 548.5 499.75 574.25 499.75 600 c 0
499.75 625.75 509.5 651.5 529 671 c 0
548 690 573 700 600 700 c 0
EndSplineSet
Validated: 524289
Substitution2: "'aalt' Zugriff auf alle Alternativen in Lateinisch Nachschlagetabelle 2-1" tok.e.cart
Ligature2: "'liga' Standard-Ligaturen in Lateinisch Nachschlagetabelle 0-1" e
EndChar
StartChar: tok.en
Encoding: 10 989450 10
Width: 1200
VWidth: 20800
Flags: W
HStem: 100 200<132.853 500 700 1067.15>
VStem: 500 200<-267.147 100 300 667.147>
LayerCount: 2
Fore
SplineSet
600 700 m 0
655 700 700 655 700 600 c 2
700 300 l 1
1000 300 l 2
1055 300 1100 255 1100 200 c 0
1100 145 1055 100 1000 100 c 2
700 100 l 1
700 -200 l 2
700 -255 655 -300 600 -300 c 0
545 -300 500 -255 500 -200 c 2
500 100 l 1
200 100 l 2
145 100 100 145 100 200 c 0
100 255 145 300 200 300 c 2
500 300 l 1
500 600 l 2
500 655 545 700 600 700 c 0
EndSplineSet
Validated: 1
Substitution2: "'aalt' Zugriff auf alle Alternativen in Lateinisch Nachschlagetabelle 2-1" tok.en.cart
Ligature2: "'liga' Standard-Ligaturen in Lateinisch Nachschlagetabelle 0-1" e n
EndChar
StartChar: tok.esun
Encoding: 11 989451 11
Width: 1200
VWidth: 20800
Flags: W
HStem: -300 200<306.025 492.365> -100 200<700 867.226> 0 200<306.025 500> 200 200<700 893.975> 300 200<332.774 500> 500 200<707.635 893.975>
VStem: 100 200<-94.1099 -5.89013 532.774 667.147> 900 200<-267.147 -132.774 405.89 494.11>
LayerCount: 2
Fore
SplineSet
200 700 m 0x07
255 700 300 655 300 600 c 0
300 544 344 500 400 500 c 2x0b
521 500 l 1
547 610 633 700 750 700 c 2
850 700 l 2
987 700 1100 587 1100 450 c 0
1100 313 987 200 850 200 c 2
700 200 l 1
700 100 l 1
800 100 l 2x57
964 100 1100 -36 1100 -200 c 0
1100 -255 1055 -300 1000 -300 c 0x83
945 -300 900 -255 900 -200 c 0
900 -144 856 -100 800 -100 c 2
679 -100 l 1x43
653 -210 567 -300 450 -300 c 2
350 -300 l 2
213 -300 100 -187 100 -50 c 0
100 87 213 200 350 200 c 2
500 200 l 1
500 300 l 1
400 300 l 2xab
236 300 100 436 100 600 c 0
100 655 145 700 200 700 c 0x07
750 500 m 2x17
721 500 700 479 700 450 c 2
700 400 l 1
850 400 l 2
879 400 900 421 900 450 c 0
900 479 879 500 850 500 c 2
750 500 l 2x17
350 0 m 2xa3
321 0 300 -21 300 -50 c 0
300 -79 321 -100 350 -100 c 2
450 -100 l 2
479 -100 500 -79 500 -50 c 2
500 0 l 1
350 0 l 2xa3
EndSplineSet
Validated: 1
Substitution2: "'aalt' Zugriff auf alle Alternativen in Lateinisch Nachschlagetabelle 2-1" tok.esun.cart
Ligature2: "'liga' Standard-Ligaturen in Lateinisch Nachschlagetabelle 0-1" e s u n
EndChar
StartChar: tok.ijo
Encoding: 12 989452 12
Width: 1200
VWidth: 20800
Flags: W
HStem: -300 200<481.706 718.294> 500 200<481.706 718.294>
VStem: 100 200<81.7057 318.294> 900 200<81.7057 318.294>
LayerCount: 2
Fore
SplineSet
600 700 m 0
875 700 1100 475 1100 200 c 0
1100 -75 875 -300 600 -300 c 0
325 -300 100 -75 100 200 c 0
100 475 325 700 600 700 c 0
600 500 m 0
433 500 300 367 300 200 c 0
300 33 433 -100 600 -100 c 0
767 -100 900 33 900 200 c 0
900 367 767 500 600 500 c 0
EndSplineSet
Validated: 1
Substitution2: "'aalt' Zugriff auf alle Alternativen in Lateinisch Nachschlagetabelle 2-1" tok.ijo.cart
Ligature2: "'liga' Standard-Ligaturen in Lateinisch Nachschlagetabelle 0-1" i j o
EndChar
StartChar: tok.ike
Encoding: 13 989453 13
Width: 1200
VWidth: 20600
Flags: W
HStem: 300.5 199.5<479.239 720.761>
VStem: 100 200<-67.1471 119.523> 900 200<-67.1471 119.523>
LayerCount: 2
Fore
SplineSet
600 500 m 0
686 500 773 478 850 433 c 0
1005 344 1100 179 1100 0 c 0
1100 -55 1055 -100 1000 -100 c 0
945 -100 900 -55 900 0 c 0
900 107 843 206 750 260 c 0
703.5 287 651.75 300.5 600 300.5 c 0
548.25 300.5 496.5 287 450 260 c 0
357 206 300 107 300 0 c 0
300 -55 255 -100 200 -100 c 0
145 -100 100 -55 100 0 c 0
100 179 195 344 350 433 c 0
427 478 514 500 600 500 c 0
EndSplineSet
Validated: 524289
Substitution2: "'aalt' Zugriff auf alle Alternativen in Lateinisch Nachschlagetabelle 2-1" tok.ike.cart
Ligature2: "'liga' Standard-Ligaturen in Lateinisch Nachschlagetabelle 0-1" i k e
EndChar
StartChar: tok.ilo
Encoding: 14 989454 14
Width: 1200
VWidth: 20500
Flags: W
HStem: 100 200<300 500 700 900> 500 200<300 500 700 900>
VStem: 100 200<300 500> 500 200<-267.147 100 300 500> 900 200<300 500>
CounterMasks: 1 38
LayerCount: 2
Fore
SplineSet
200 700 m 2
1000 700 l 2
1055 700 1100 655 1100 600 c 2
1100 200 l 2
1100 145 1055 100 1000 100 c 2
700 100 l 1
700 -200 l 2
700 -255 655 -300 600 -300 c 0
545 -300 500 -255 500 -200 c 2
500 100 l 1
200 100 l 2
145 100 100 145 100 200 c 2
100 600 l 2
100 655 145 700 200 700 c 2
300 500 m 1
300 300 l 1
500 300 l 1
500 500 l 1
300 500 l 1
700 500 m 1
700 300 l 1
900 300 l 1
900 500 l 1
700 500 l 1
EndSplineSet
Validated: 1
Substitution2: "'aalt' Zugriff auf alle Alternativen in Lateinisch Nachschlagetabelle 2-1" tok.ilo.cart
Ligature2: "'liga' Standard-Ligaturen in Lateinisch Nachschlagetabelle 0-1" i l o
EndChar
StartChar: tok.insa
Encoding: 15 989455 15
Width: 1200
VWidth: 20800
Flags: W
HStem: -300 200<300 900> 0 200<432.853 767.147>
VStem: 100 200<-100 667.147> 400 400<32.8529 167.147> 900 200<-100 667.147>
CounterMasks: 1 38
LayerCount: 2
Fore
SplineSet
200 700 m 0
255 700 300 655 300 600 c 2
300 -100 l 1
900 -100 l 1
900 600 l 2
900 655 945 700 1000 700 c 0
1055 700 1100 655 1100 600 c 2
1100 -200 l 2
1100 -255 1055 -300 1000 -300 c 2
200 -300 l 2
145 -300 100 -255 100 -200 c 2
100 600 l 2
100 655 145 700 200 700 c 0
500 200 m 2
700 200 l 2
755 200 800 155 800 100 c 0
800 45 755 0 700 0 c 2
500 0 l 2
445 0 400 45 400 100 c 0
400 155 445 200 500 200 c 2
EndSplineSet
Validated: 1
Substitution2: "'aalt' Zugriff auf alle Alternativen in Lateinisch Nachschlagetabelle 2-1" tok.insa.cart
Ligature2: "'liga' Standard-Ligaturen in Lateinisch Nachschlagetabelle 0-1" i n s a
EndChar
StartChar: tok.jaki
Encoding: 16 989456 16
Width: 1200
VWidth: 21600
Flags: W
HStem: 0.554788 21G<582.942 607.627>
LayerCount: 2
Fore
SplineSet
296 700 m 0
296.929671836 700 297.857449685 700.037625947 298.783143191 700.037625947 c 0
334.699116139 700.037625947 367.477399051 681.221085759 386 651 c 2
638 231 l 1
666 245 l 1
511 555 l 2
503.734731159 569.750697344 500.395554731 585.034567731 500.395554731 599.901874386 c 0
500.395554731 652.564225665 542.291814976 700 600 700 c 2
900 700 l 2
943 700 981 673 995 632 c 2
1095 332 l 2
1098.6019076 321.419396424 1100.32870458 310.585399521 1100.32870458 299.897315257 c 0
1100.32870458 263.107960563 1079.86963487 228.04737705 1045 211 c 2
969 173 l 1
1071 71 l 2
1090.98252743 51.0174725704 1100.37228409 25.6618005477 1100.37228409 0.58715024354 c 0
1100.37228409 -38.3344666922 1077.74844436 -76.5789851098 1037 -93 c 2
537 -293 l 2
525.309793265 -297.782357301 512.772514628 -300.023498896 500.288386422 -300.023498896 c 0
489.278420232 -300.023498896 478.309793265 -298.280388766 468 -295 c 2
168 -195 l 2
125.605418114 -181.112119727 100.307631218 -141.579046969 100.307631218 -100.222710599 c 0
100.307631218 -84.9994699865 103.735408809 -69.529182382 111 -55 c 2
211 145 l 2
228.673888659 179.640821771 263.840292375 199.787845351 300.246188154 199.787845351 c 0
315.337017972 199.787845351 330.640821771 196.326111341 345 189 c 0
379.640821771 171.326111341 399.787845351 136.159707625 399.787845351 99.753811846 c 0
399.787845351 84.6629820284 396.326111341 69.3591782292 389 55 c 2
341 -42 l 1
497 -94 l 1
822 37 l 1
780 78 l 1
645 11 l 2
630.573295698 3.94012342682 615.204401279 0.554788312832 600.050142122 0.554788312832 c 0
565.834138643 0.554788312832 532.712318805 17.812801991 514 49 c 2
308 392 l 1
289 355 l 2
271.326111341 320.359178229 236.159707625 300.212154649 199.753811846 300.212154649 c 0
184.662982028 300.212154649 169.359178229 303.673888659 155 311 c 0
120.359178229 328.673888659 100.212154649 363.840292375 100.212154649 400.246188154 c 0
100.212154649 415.337017972 103.673888659 430.640821771 111 445 c 2
211 645 l 2
227 678 260 699 296 700 c 0
762 500 m 1
845 334 l 1
878 351 l 1
828 500 l 1
762 500 l 1
EndSplineSet
Validated: 524289
Substitution2: "'aalt' Zugriff auf alle Alternativen in Lateinisch Nachschlagetabelle 2-1" tok.jaki.cart
Ligature2: "'liga' Standard-Ligaturen in Lateinisch Nachschlagetabelle 0-1" j a k i
EndChar
StartChar: tok.jan
Encoding: 17 989457 17
Width: 1200
VWidth: 21800
Flags: W
HStem: -100 200<500.541 699.459> 500 200<500.051 699.949>
VStem: 200 200<200.38 399.949> 800 200<200.38 399.949>
LayerCount: 2
Fore
SplineSet
600 700 m 0
820 700 1000 520 1000 300 c 0
1000 201 963 109 902 39 c 1
1071 -129 l 2
1090.5 -148.5 1100.25 -174.25 1100.25 -200 c 0
1100.25 -225.75 1090.5 -251.5 1071 -271 c 0
1051.5 -290.5 1025.75 -300.25 1000 -300.25 c 0
974.25 -300.25 948.5 -290.5 929 -271 c 2
735 -76 l 1
693 -91 647 -100 600 -100 c 0
553 -100 507 -91 465 -76 c 1
271 -271 l 2
251.5 -290.5 225.75 -300.25 200 -300.25 c 0
174.25 -300.25 148.5 -290.5 129 -271 c 0
109.5 -251.5 99.75 -225.75 99.75 -200 c 0
99.75 -174.25 109.5 -148.5 129 -129 c 2
298 39 l 1
237 109 200 201 200 300 c 0
200 520 380 700 600 700 c 0
600 500 m 0
488 500 400 412 400 300 c 0
400 188 488 100 600 100 c 0
712 100 800 188 800 300 c 0
800 412 712 500 600 500 c 0
EndSplineSet
Validated: 524289
Substitution2: "'aalt' Zugriff auf alle Alternativen in Lateinisch Nachschlagetabelle 2-1" tok.jan.cart
Ligature2: "'liga' Standard-Ligaturen in Lateinisch Nachschlagetabelle 0-1" j a n
EndChar
StartChar: tok.jelo
Encoding: 18 989458 18
Width: 1200
VWidth: 22000
Flags: W
HStem: -300 200<441 759> 300 200<132.853 325.682 874.318 1067.15> 500 200<533.858 666.142>
VStem: 100 400<333.548 466.452> 700 400<333.548 466.452>
LayerCount: 2
Fore
SplineSet
600 700 m 0xb8
729 700 841 616 883 500 c 1
1000 500 l 2
1055 500 1100 455 1100 400 c 0
1100 345 1055 300 1000 300 c 2
883 300 l 1
863 244 826 196 780 161 c 1
1071 -129 l 2
1091.31620193 -149.316201933 1100.40116411 -174.312087097 1100.40116411 -198.856710661 c 0
1100.40116411 -250.42430973 1060.29933378 -300 1000 -300 c 2
200 -300 l 2
139.700666223 -300 99.5988358887 -250.42430973 99.5988358887 -198.856710661 c 0
99.5988358887 -174.312087097 108.683798067 -149.316201933 129 -129 c 2
420 161 l 1
374 196 337 244 317 300 c 1
200 300 l 2
145 300 100 345 100 400 c 0
100 455 145 500 200 500 c 2
317 500 l 1xd8
359 616 471 700 600 700 c 0xb8
600 500 m 0xb8
544 500 500 456 500 400 c 0
500 344 544 300 600 300 c 0xd8
656 300 700 344 700 400 c 0
700 456 656 500 600 500 c 0xb8
600 59 m 1
441 -100 l 1
759 -100 l 1
600 59 l 1
EndSplineSet
Validated: 524289
Substitution2: "'aalt' Zugriff auf alle Alternativen in Lateinisch Nachschlagetabelle 2-1" tok.jelo.cart
Ligature2: "'liga' Standard-Ligaturen in Lateinisch Nachschlagetabelle 0-1" j e l o
EndChar
StartChar: tok.kalama
Encoding: 21 989461 19
Width: 1200
VWidth: 21600
Flags: W
HStem: -299.75 199.25<479.277 720.723> 100 200<327 873> 400 200<232.853 367.147 832.853 967.147> 500 200<532.853 667.147>
VStem: 100 1000<101.198 267.147> 200 200<432.853 567.147> 500 200<532.853 667.147> 800 200<432.853 567.147>
LayerCount: 2
Fore
SplineSet
600 700 m 0xd2
655 700 700 655 700 600 c 0xe2
700 545 655 500 600 500 c 0xd2
545 500 500 545 500 600 c 0xe2
500 655 545 700 600 700 c 0xd2
300 600 m 0
355 600 400 555 400 500 c 0xd4
400 445 355 400 300 400 c 0xe4
245 400 200 445 200 500 c 0xd4
200 555 245 600 300 600 c 0
900 600 m 0xe1
955 600 1000 555 1000 500 c 0xd1
1000 445 955 400 900 400 c 0xe1
845 400 800 445 800 500 c 0xd1
800 555 845 600 900 600 c 0xe1
200 300 m 2xc4
1000 300 l 2xc5
1055 300 1100 255 1100 200 c 0
1100 21 1005 -144 850 -233 c 0
772.5 -277.5 686.25 -299.75 600 -299.75 c 0
513.75 -299.75 427.5 -277.5 350 -233 c 0
195 -144 100 21 100 200 c 0xc8
100 255 145 300 200 300 c 2xc4
327 100 m 1
351 35 388 -24 450 -60 c 0
496.5 -87 548.25 -100.5 600 -100.5 c 0
651.75 -100.5 703.5 -87 750 -60 c 0
812 -24 849 35 873 100 c 1
327 100 l 1
EndSplineSet
Validated: 524289
Substitution2: "'aalt' Zugriff auf alle Alternativen in Lateinisch Nachschlagetabelle 2-1" tok.kalama.cart
Ligature2: "'liga' Standard-Ligaturen in Lateinisch Nachschlagetabelle 0-1" k a l a m a
EndChar
StartChar: tok.jo
Encoding: 19 989459 20
Width: 1200
VWidth: 22000
Flags: W
HStem: -300 200<334.241 867.226> 100 200<332.704 467.385> 500 200<332.615 467.385>
VStem: 100 200<-65.7589 117 332.456 467.226> 500 200<332.615 467.385> 699.75 400.25<159.898 267.272> 900 200<-67.226 159>
CounterMasks: 1 e0
LayerCount: 2
Fore
SplineSet
400 700 m 0xf2
564 700 700 564 700 400 c 0
700 236 564 100 400 100 c 0
365 100 331 106 300 117 c 1
300 0 l 2
300 -27 310 -52 329 -71 c 0
348 -90 373 -100 400 -100 c 2
800 -100 l 2
856 -100 900 -56 900 0 c 2
900 159 l 1xfa
871 129 l 2
851.5 109.5 825.75 99.75 800 99.75 c 0
774.25 99.75 748.5 109.5 729 129 c 0
709.5 148.5 699.75 174.25 699.75 200 c 0xf4
699.75 225.75 709.5 251.5 729 271 c 0
761 303 848 390 929 471 c 0
931 473 933 474 935 475 c 0
937 477 938 479 940 480 c 0
944 483 949 486 953 488 c 0
955 489 957 490 959 491 c 0
964 493 968 495 973 496 c 0
975 497 977 497 979 498 c 0
986 499.5 993 500.25 1000 500.25 c 2
1021 498 l 2
1023 497 1025 497 1027 496 c 0
1032 495 1036 493 1041 491 c 0
1043 490 1045 489 1047 488 c 0
1051 486 1056 483 1060 480 c 0
1062 479 1063 477 1065 475 c 0
1067 474 1069 473 1071 471 c 0
1074 468 1076 465 1078 462 c 0
1087 451 1094 438 1097 424 c 2
1097 423 l 2
1099 414 1100 406 1100 397 c 2
1100 0 l 2
1100 -164 964 -300 800 -300 c 2
400 -300 l 2
321 -300 244 -268 188 -212 c 0
132 -156 100 -79 100 0 c 2
100 400 l 2
100 564 236 700 400 700 c 0xf2
400 500 m 0
344 500 300 456 300 400 c 0
300 344 344 300 400 300 c 0
456 300 500 344 500 400 c 0
500 456 456 500 400 500 c 0
EndSplineSet
Validated: 524289
Substitution2: "'aalt' Zugriff auf alle Alternativen in Lateinisch Nachschlagetabelle 2-1" tok.jo.cart
Ligature2: "'liga' Standard-Ligaturen in Lateinisch Nachschlagetabelle 0-1" j o
EndChar
StartChar: tok.kala
Encoding: 20 989460 21
Width: 1200
VWidth: 21600
Flags: W
HStem: -100 200<539.099 827.197> 300 200<539.099 827.197>
VStem: 102 200<-67.1471 23.4762 376.524 467.147> 906.25 191.75<160.206 239.794>
LayerCount: 2
Fore
SplineSet
202 500 m 0
257 500 302 455 302 400 c 0
302 392 303 383 304 375 c 1
412 454 552 500 702 500 c 0
833 500 958 458 1038 365 c 0
1078 318.5 1098 259.25 1098 200 c 0
1098 140.75 1078 81.5 1038 35 c 0
958 -58 833 -100 702 -100 c 0
552 -100 412 -54 304 25 c 1
303 17 302 8 302 0 c 0
302 -55 257 -100 202 -100 c 0
147 -100 102 -55 102 0 c 0
102 72 120 140 151 200 c 1
120 260 102 328 102 400 c 0