-
Notifications
You must be signed in to change notification settings - Fork 6
/
icons.glyphs
1343 lines (1343 loc) · 17.9 KB
/
icons.glyphs
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
{
DisplayStrings = (
H,
I
);
date = "2012-10-21 19:33:59 +0000";
familyName = "new Font";
featurePrefixes = (
{
automatic = 1;
code = "languagesystem DFLT dflt;\012languagesystem latn dflt;\012";
name = Languagesystems;
}
);
fontMaster = (
{
alignmentZones = (
"{1100, 0}",
"{-250, 0}"
);
ascender = 800;
capHeight = 700;
customParameters = (
{
name = TypoAscender;
value = 800;
},
{
name = TypoDescender;
value = "-200";
}
);
descender = "-200";
id = "6F51AFF3-660D-446B-BE68-BF10110782A5";
weightValue = 400;
widthValue = 5;
xHeight = 500;
}
);
glyphs = (
{
glyphname = A;
lastChange = "2012-10-21 19:47:30 +0000";
layers = (
{
anchors = (
{
name = ogonek;
position = "{540, 10}";
},
{
name = top;
position = "{300, 700}";
}
);
layerId = "6F51AFF3-660D-446B-BE68-BF10110782A5";
name = Regular;
paths = (
{
closed = 1;
nodes = (
"366 500 LINE",
"232 500 LINE",
"232 316 LINE",
"48 316 LINE",
"48 182 LINE",
"232 182 LINE",
"232 -2 LINE",
"366 -2 LINE",
"366 182 LINE",
"550 182 LINE",
"550 316 LINE",
"366 316 LINE"
);
}
);
width = 600;
}
);
unicode = 0041;
},
{
glyphname = B;
lastChange = "2012-10-21 19:47:29 +0000";
layers = (
{
layerId = "6F51AFF3-660D-446B-BE68-BF10110782A5";
name = Regular;
paths = (
{
closed = 1;
nodes = (
"476 315 LINE",
"470 321 OFFCURVE",
"470 321 OFFCURVE",
"470 328 CURVE",
"516 396 LINE",
"516 406 OFFCURVE",
"516 422 OFFCURVE",
"509 422 CURVE",
"470 461 LINE",
"470 468 OFFCURVE",
"454 468 OFFCURVE",
"444 468 CURVE",
"376 422 LINE",
"369 422 OFFCURVE",
"369 422 OFFCURVE",
"363 428 CURVE",
"352 508 LINE",
"352 509 OFFCURVE",
"347 517 OFFCURVE",
"310 517 CURVE SMOOTH",
"302 517 LINE SMOOTH",
"265 517 OFFCURVE",
"260 509 OFFCURVE",
"260 508 CURVE",
"249 428 LINE",
"243 422 OFFCURVE",
"236 422 OFFCURVE",
"236 422 CURVE",
"158 468 LINE",
"158 468 OFFCURVE",
"142 468 OFFCURVE",
"136 461 CURVE SMOOTH",
"103 422 LINE",
"96 422 OFFCURVE",
"96 406 OFFCURVE",
"96 396 CURVE",
"136 328 LINE",
"142 321 OFFCURVE",
"142 321 OFFCURVE",
"136 315 CURVE",
"56 304 LINE",
"55 304 OFFCURVE",
"47 299 OFFCURVE",
"47 262 CURVE SMOOTH",
"47 254 LINE SMOOTH",
"47 217 OFFCURVE",
"55 212 OFFCURVE",
"56 212 CURVE",
"136 201 LINE",
"142 195 OFFCURVE",
"142 188 OFFCURVE",
"136 188 CURVE",
"96 110 LINE",
"96 110 OFFCURVE",
"96 94 OFFCURVE",
"103 88 CURVE",
"136 55 LINE",
"142 48 OFFCURVE",
"158 48 OFFCURVE",
"158 48 CURVE",
"236 88 LINE",
"236 94 OFFCURVE",
"243 94 OFFCURVE",
"249 88 CURVE",
"260 8 LINE",
"260 7 OFFCURVE",
"265 -1 OFFCURVE",
"302 -1 CURVE SMOOTH",
"310 -1 LINE SMOOTH",
"347 -1 OFFCURVE",
"352 7 OFFCURVE",
"352 8 CURVE",
"363 88 LINE",
"369 94 OFFCURVE",
"369 94 OFFCURVE",
"376 88 CURVE",
"444 48 LINE",
"454 48 OFFCURVE",
"470 48 OFFCURVE",
"470 55 CURVE",
"509 88 LINE SMOOTH",
"516 94 OFFCURVE",
"516 110 OFFCURVE",
"516 110 CURVE",
"470 188 LINE",
"470 188 OFFCURVE",
"470 195 OFFCURVE",
"476 201 CURVE",
"556 212 LINE",
"557 212 OFFCURVE",
"565 217 OFFCURVE",
"565 254 CURVE SMOOTH",
"565 262 LINE SMOOTH",
"565 299 OFFCURVE",
"557 304 OFFCURVE",
"556 304 CURVE"
);
},
{
closed = 1;
nodes = (
"255 161 OFFCURVE",
"209 207 OFFCURVE",
"209 258 CURVE SMOOTH",
"209 309 OFFCURVE",
"255 355 OFFCURVE",
"306 355 CURVE SMOOTH",
"357 355 OFFCURVE",
"403 309 OFFCURVE",
"403 258 CURVE SMOOTH",
"403 207 OFFCURVE",
"357 161 OFFCURVE",
"306 161 CURVE SMOOTH"
);
}
);
width = 600;
}
);
unicode = 0042;
},
{
glyphname = C;
lastChange = "2012-10-21 19:47:30 +0000";
layers = (
{
anchors = (
{
name = bottom;
position = "{300, 0}";
},
{
name = top;
position = "{300, 700}";
}
);
layerId = "6F51AFF3-660D-446B-BE68-BF10110782A5";
name = Regular;
paths = (
{
closed = 1;
nodes = (
"561 443 OFFCURVE",
"425 523 OFFCURVE",
"295 498 CURVE",
"121 491 OFFCURVE",
"10 378 OFFCURVE",
"28 253 CURVE SMOOTH",
"37 200 OFFCURVE",
"65 145 OFFCURVE",
"128 108 CURVE",
"128 79 OFFCURVE",
"127 41 OFFCURVE",
"80 12 CURVE",
"63 -8 OFFCURVE",
"155 -11 OFFCURVE",
"246 74 CURVE",
"295 64 OFFCURVE",
"299 64 OFFCURVE",
"304 74 CURVE",
"477 80 OFFCURVE",
"589 200 OFFCURVE",
"570 318 CURVE"
);
}
);
width = 600;
}
);
unicode = 0043;
},
{
glyphname = D;
lastChange = "2012-10-21 19:47:30 +0000";
layers = (
{
anchors = (
{
name = center;
position = "{300, 350}";
},
{
name = top;
position = "{300, 700}";
}
);
layerId = "6F51AFF3-660D-446B-BE68-BF10110782A5";
name = Regular;
paths = (
{
closed = 1;
nodes = (
"73 500 LINE",
"306 34 LINE",
"539 500 LINE"
);
}
);
width = 600;
}
);
unicode = 0044;
},
{
glyphname = E;
lastChange = "2012-10-21 19:47:30 +0000";
layers = (
{
anchors = (
{
name = bottom;
position = "{300, 0}";
},
{
name = ogonek;
position = "{540, 10}";
},
{
name = top;
position = "{300, 700}";
}
);
layerId = "6F51AFF3-660D-446B-BE68-BF10110782A5";
name = Regular;
paths = (
{
closed = 1;
nodes = (
"484 143 OFFCURVE",
"435 188 OFFCURVE",
"353 200 CURVE",
"372 247 OFFCURVE",
"380 251 OFFCURVE",
"399 256 CURVE",
"410 309 OFFCURVE",
"410 322 OFFCURVE",
"410 360 CURVE SMOOTH",
"410 376 OFFCURVE",
"422 405 OFFCURVE",
"410 434 CURVE SMOOTH",
"389 485 OFFCURVE",
"353 502 OFFCURVE",
"301 502 CURVE SMOOTH",
"245 502 OFFCURVE",
"205 485 OFFCURVE",
"182 434 CURVE",
"178 405 OFFCURVE",
"182 376 OFFCURVE",
"182 360 CURVE SMOOTH",
"182 322 OFFCURVE",
"178 309 OFFCURVE",
"194 256 CURVE",
"205 251 OFFCURVE",
"224 247 OFFCURVE",
"245 200 CURVE",
"164 188 OFFCURVE",
"113 143 OFFCURVE",
"78 127 CURVE SMOOTH",
"15 98 OFFCURVE",
"15 62 OFFCURVE",
"15 62 CURVE",
"15 1 LINE",
"589 1 LINE",
"589 62 LINE",
"589 62 OFFCURVE",
"581 98 OFFCURVE",
"526 127 CURVE"
);
}
);
width = 600;
}
);
unicode = 0045;
},
{
glyphname = F;
lastChange = "2012-10-21 19:47:29 +0000";
layers = (
{
layerId = "6F51AFF3-660D-446B-BE68-BF10110782A5";
name = Regular;
paths = (
{
closed = 1;
nodes = (
"410 213 LINE",
"426 257 OFFCURVE",
"440 263 OFFCURVE",
"440 316 CURVE SMOOTH",
"440 429 OFFCURVE",
"348 518 OFFCURVE",
"245 518 CURVE SMOOTH",
"132 518 OFFCURVE",
"43 429 OFFCURVE",
"43 316 CURVE SMOOTH",
"43 213 OFFCURVE",
"132 121 OFFCURVE",
"245 121 CURVE SMOOTH",
"298 121 OFFCURVE",
"304 135 OFFCURVE",
"348 151 CURVE",
"485 9 LINE",
"504 8 OFFCURVE",
"505 0 OFFCURVE",
"526 0 CURVE",
"526 0 OFFCURVE",
"526 0 OFFCURVE",
"526 0 CURVE",
"528 0 OFFCURVE",
"551 8 OFFCURVE",
"552 9 CURVE SMOOTH",
"553 10 OFFCURVE",
"561 33 OFFCURVE",
"561 35 CURVE SMOOTH",
"561 56 OFFCURVE",
"553 57 OFFCURVE",
"552 76 CURVE"
);
},
{
closed = 1;
nodes = (
"348 259 OFFCURVE",
"302 208 OFFCURVE",
"245 208 CURVE SMOOTH",
"178 208 OFFCURVE",
"132 259 OFFCURVE",
"132 316 CURVE SMOOTH",
"132 383 OFFCURVE",
"178 429 OFFCURVE",
"245 429 CURVE SMOOTH",
"302 429 OFFCURVE",
"348 383 OFFCURVE",
"348 316 CURVE SMOOTH"
);
}
);
width = 600;
}
);
unicode = 0046;
},
{
glyphname = G;
lastChange = "2012-10-21 19:47:30 +0000";
layers = (
{
anchors = (
{
name = bottom;
position = "{300, 0}";
},
{
name = top;
position = "{300, 700}";
}
);
layerId = "6F51AFF3-660D-446B-BE68-BF10110782A5";
name = Regular;
paths = (
{
closed = 1;
nodes = (
"593 0 LINE",
"306 277 LINE",
"19 0 LINE"
);
}
);
width = 600;
}
);
unicode = 0047;
},
{
glyphname = H;
lastChange = "2012-10-21 19:47:30 +0000";
layers = (
{
anchors = (
{
name = center;
position = "{300, 350}";
},
{
name = top;
position = "{300, 700}";
}
);
layerId = "6F51AFF3-660D-446B-BE68-BF10110782A5";
name = Regular;
paths = (
{
closed = 1;
nodes = (
"429 572 LINE",
"152 286 LINE",
"429 -2 LINE"
);
}
);
width = 600;
}
);
unicode = 0048;
},
{
glyphname = I;
lastChange = "2012-10-21 19:47:30 +0000";
layers = (
{
anchors = (
{
name = ogonek;
position = "{540, 10}";
},
{
name = top;
position = "{300, 700}";
}
);
layerId = "6F51AFF3-660D-446B-BE68-BF10110782A5";
name = Regular;
paths = (
{
closed = 1;
nodes = (
"173 -2 LINE SMOOTH",
"450 284 LINE SMOOTH",
"173 572 LINE SMOOTH"
);
}
);
width = 600;
}
);
unicode = 0049;
},
{
glyphname = J;
lastChange = "2012-10-21 19:47:30 +0000";
layers = (
{
anchors = (
{
name = top;
position = "{300, 700}";
}
);
layerId = "6F51AFF3-660D-446B-BE68-BF10110782A5";
name = Regular;
width = 600;
}
);
unicode = 004A;
},
{
glyphname = K;
lastChange = "2012-10-21 19:47:30 +0000";
layers = (
{
anchors = (
{
name = bottom;
position = "{300, 0}";
},
{
name = top;
position = "{300, 700}";
}
);
layerId = "6F51AFF3-660D-446B-BE68-BF10110782A5";
name = Regular;
width = 600;
}
);
unicode = 004B;
},
{
glyphname = L;
lastChange = "2012-10-21 19:47:30 +0000";
layers = (
{
anchors = (
{
name = bottom;
position = "{300, 0}";
},
{
name = top;
position = "{300, 700}";
}
);
layerId = "6F51AFF3-660D-446B-BE68-BF10110782A5";
name = Regular;
width = 600;
}
);
unicode = 004C;
},
{
glyphname = M;
lastChange = "2012-10-21 19:47:29 +0000";
layers = (
{
layerId = "6F51AFF3-660D-446B-BE68-BF10110782A5";
name = Regular;
width = 600;
}
);
unicode = 004D;
},
{
glyphname = N;
lastChange = "2012-10-21 19:47:30 +0000";
layers = (
{
anchors = (
{
name = bottom;
position = "{300, 0}";
},
{
name = top;
position = "{300, 700}";
}
);
layerId = "6F51AFF3-660D-446B-BE68-BF10110782A5";
name = Regular;
width = 600;
}
);
unicode = 004E;
},
{
glyphname = O;
lastChange = "2012-10-21 19:47:30 +0000";
layers = (
{
anchors = (
{
name = top;
position = "{300, 700}";
}
);
layerId = "6F51AFF3-660D-446B-BE68-BF10110782A5";
name = Regular;
width = 600;
}
);
unicode = 004F;
},
{
glyphname = P;
lastChange = "2012-10-21 19:47:29 +0000";
layers = (
{
layerId = "6F51AFF3-660D-446B-BE68-BF10110782A5";
name = Regular;
width = 600;
}
);
unicode = 0050;
},
{
glyphname = Q;
lastChange = "2012-10-21 19:47:29 +0000";
layers = (
{
layerId = "6F51AFF3-660D-446B-BE68-BF10110782A5";
name = Regular;
width = 600;
}
);
unicode = 0051;
},
{
glyphname = R;
lastChange = "2012-10-21 19:47:30 +0000";
layers = (
{
anchors = (
{
name = bottom;
position = "{300, 0}";
},
{
name = top;
position = "{300, 700}";
}
);
layerId = "6F51AFF3-660D-446B-BE68-BF10110782A5";
name = Regular;
width = 600;
}
);
unicode = 0052;
},
{
glyphname = S;
lastChange = "2012-10-21 19:47:30 +0000";
layers = (
{
anchors = (
{
name = bottom;
position = "{300, 0}";
},
{
name = top;
position = "{300, 700}";
}
);
layerId = "6F51AFF3-660D-446B-BE68-BF10110782A5";
name = Regular;
width = 600;
}
);
unicode = 0053;
},
{
glyphname = T;
lastChange = "2012-10-21 19:47:30 +0000";
layers = (
{
anchors = (
{
name = bottom;
position = "{300, 0}";
},
{
name = center;
position = "{300, 350}";
},
{
name = top;
position = "{300, 700}";
}
);
layerId = "6F51AFF3-660D-446B-BE68-BF10110782A5";
name = Regular;
width = 600;
}
);
unicode = 0054;
},
{
glyphname = U;
lastChange = "2012-10-21 19:47:30 +0000";
layers = (
{
anchors = (
{
name = ogonek;
position = "{540, 10}";
},
{
name = top;
position = "{300, 700}";
}
);
layerId = "6F51AFF3-660D-446B-BE68-BF10110782A5";
name = Regular;
width = 600;
}
);
unicode = 0055;
},
{
glyphname = V;
lastChange = "2012-10-21 19:47:29 +0000";
layers = (
{
layerId = "6F51AFF3-660D-446B-BE68-BF10110782A5";
name = Regular;
width = 600;
}
);
unicode = 0056;
},
{
glyphname = W;
lastChange = "2012-10-21 19:47:30 +0000";
layers = (
{
anchors = (
{
name = top;
position = "{300, 700}";
}
);
layerId = "6F51AFF3-660D-446B-BE68-BF10110782A5";
name = Regular;
width = 600;
}
);
unicode = 0057;
},
{
glyphname = X;
lastChange = "2012-10-21 19:47:29 +0000";
layers = (
{
layerId = "6F51AFF3-660D-446B-BE68-BF10110782A5";
name = Regular;
width = 600;
}
);
unicode = 0058;
},
{
glyphname = Y;
lastChange = "2012-10-21 19:47:30 +0000";
layers = (
{
anchors = (
{
name = top;
position = "{300, 700}";
}
);
layerId = "6F51AFF3-660D-446B-BE68-BF10110782A5";
name = Regular;
width = 600;
}
);
unicode = 0059;
},
{
glyphname = Z;
lastChange = "2012-10-21 19:47:30 +0000";
layers = (
{
anchors = (
{
name = top;
position = "{300, 700}";
}
);
layerId = "6F51AFF3-660D-446B-BE68-BF10110782A5";
name = Regular;
width = 600;
}
);
unicode = 005A;
},
{
glyphname = a;
lastChange = "2012-10-21 19:47:30 +0000";
layers = (
{
anchors = (
{
name = ogonek;
position = "{540, 10}";
},
{
name = top;
position = "{300, 500}";
}
);
layerId = "6F51AFF3-660D-446B-BE68-BF10110782A5";
name = Regular;
width = 600;
}
);
unicode = 0061;
},
{
glyphname = b;
lastChange = "2012-10-21 19:47:29 +0000";
layers = (
{
layerId = "6F51AFF3-660D-446B-BE68-BF10110782A5";
name = Regular;
width = 600;
}
);
unicode = 0062;
},
{
glyphname = c;
lastChange = "2012-10-21 19:47:30 +0000";
layers = (
{
anchors = (
{
name = bottom;
position = "{300, 0}";
},
{
name = top;
position = "{300, 500}";
}
);
layerId = "6F51AFF3-660D-446B-BE68-BF10110782A5";
name = Regular;
width = 600;
}
);
unicode = 0063;
},
{
glyphname = d;
lastChange = "2012-10-21 19:47:30 +0000";
layers = (
{
anchors = (
{
name = center;
position = "{300, 250}";
}
);
layerId = "6F51AFF3-660D-446B-BE68-BF10110782A5";
name = Regular;
width = 600;
}
);
unicode = 0064;
},
{
glyphname = e;
lastChange = "2012-10-21 19:47:30 +0000";
layers = (
{
anchors = (
{
name = bottom;
position = "{300, 0}";
},
{
name = ogonek;
position = "{540, 10}";
},
{
name = top;
position = "{300, 500}";
}
);
layerId = "6F51AFF3-660D-446B-BE68-BF10110782A5";
name = Regular;
width = 600;
}
);
unicode = 0065;
},
{
glyphname = f;
lastChange = "2012-10-21 19:47:29 +0000";
layers = (
{
layerId = "6F51AFF3-660D-446B-BE68-BF10110782A5";
name = Regular;
width = 600;
}
);
unicode = 0066;
},
{
glyphname = g;
lastChange = "2012-10-21 19:47:30 +0000";
layers = (
{
anchors = (
{
name = top;
position = "{300, 500}";
}
);
layerId = "6F51AFF3-660D-446B-BE68-BF10110782A5";
name = Regular;
width = 600;
}
);
unicode = 0067;
},
{
glyphname = h;
lastChange = "2012-10-21 19:47:30 +0000";
layers = (
{
anchors = (
{
name = center;
position = "{300, 250}";
},
{
name = top;
position = "{300, 500}";
}
);
layerId = "6F51AFF3-660D-446B-BE68-BF10110782A5";
name = Regular;
width = 600;
}
);
unicode = 0068;
},
{
glyphname = i;
lastChange = "2012-10-21 19:47:29 +0000";
layers = (
{
layerId = "6F51AFF3-660D-446B-BE68-BF10110782A5";
name = Regular;
width = 600;
}