-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFilmScore.sfd
4789 lines (4746 loc) · 117 KB
/
FilmScore.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: FilmScore
FullName: FilmScore
FamilyName: FilmScore
Weight: Regular
Copyright: Copyright (c) 2021, Jacob Winkler
UComments: "2021-4-6: Created with FontForge (http://fontforge.org)"
Version: 001.000
ItalicAngle: 0
UnderlinePosition: -133
UnderlineWidth: 48
Ascent: 800
Descent: 200
InvalidEm: 0
LayerCount: 2
Layer: 0 0 "Back" 1
Layer: 1 0 "Fore" 0
XUID: [1021 512 563788097 30622]
FSType: 0
OS2Version: 0
OS2_WeightWidthSlopeOnly: 0
OS2_UseTypoMetrics: 1
CreationTime: 1617742370
ModificationTime: 1738977740
PfmFamily: 17
TTFWeight: 400
TTFWidth: 5
LineGap: 150
VLineGap: 0
OS2TypoAscent: 891
OS2TypoAOffset: 0
OS2TypoDescent: -200
OS2TypoDOffset: 0
OS2TypoLinegap: 150
OS2WinAscent: 1460
OS2WinAOffset: 0
OS2WinDescent: 216
OS2WinDOffset: 0
HheadAscent: 891
HheadAOffset: 0
HheadDescent: -216
HheadDOffset: 0
OS2CapHeight: 662
OS2XHeight: 447
OS2Vendor: 'PfEd'
MarkAttachClasses: 1
DEI: 91125
LangName: 1033 "" "" "" "" "" "" "" "" "" "" "" "" "" "Copyright (c) 2021, Jacob Winkler (<[email protected]>),+AAoA-with Reserved Font Name FilmScore.+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-http://scripts.sil.org/OFL+AAoACgAK------------------------------------------------------------+AAoA-SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007+AAoA------------------------------------------------------------+AAoACgAA-PREAMBLE+AAoA-The goals of the Open Font License (OFL) are to stimulate worldwide+AAoA-development of collaborative font projects, to support the font creation+AAoA-efforts of academic and linguistic communities, and to provide a free and+AAoA-open framework in which fonts may be shared and improved in partnership+AAoA-with others.+AAoACgAA-The OFL allows the licensed fonts to be used, studied, modified and+AAoA-redistributed freely as long as they are not sold by themselves. The+AAoA-fonts, including any derivative works, can be bundled, embedded, +AAoA-redistributed and/or sold with any software provided that any reserved+AAoA-names are not used by derivative works. The fonts and derivatives,+AAoA-however, cannot be released under any other type of license. The+AAoA-requirement for fonts to remain under this license does not apply+AAoA-to any document created using the fonts or their derivatives.+AAoACgAA-DEFINITIONS+AAoAIgAA-Font Software+ACIA refers to the set of files released by the Copyright+AAoA-Holder(s) under this license and clearly marked as such. This may+AAoA-include source files, build scripts and documentation.+AAoACgAi-Reserved Font Name+ACIA refers to any names specified as such after the+AAoA-copyright statement(s).+AAoACgAi-Original Version+ACIA refers to the collection of Font Software components as+AAoA-distributed by the Copyright Holder(s).+AAoACgAi-Modified Version+ACIA refers to any derivative made by adding to, deleting,+AAoA-or substituting -- in part or in whole -- any of the components of the+AAoA-Original Version, by changing formats or by porting the Font Software to a+AAoA-new environment.+AAoACgAi-Author+ACIA refers to any designer, engineer, programmer, technical+AAoA-writer or other person who contributed to the Font Software.+AAoACgAA-PERMISSION & CONDITIONS+AAoA-Permission is hereby granted, free of charge, to any person obtaining+AAoA-a copy of the Font Software, to use, study, copy, merge, embed, modify,+AAoA-redistribute, and sell modified and unmodified copies of the Font+AAoA-Software, subject to the following conditions:+AAoACgAA-1) Neither the Font Software nor any of its individual components,+AAoA-in Original or Modified Versions, may be sold by itself.+AAoACgAA-2) Original or Modified Versions of the Font Software may be bundled,+AAoA-redistributed and/or sold with any software, provided that each copy+AAoA-contains the above copyright notice and this license. These can be+AAoA-included either as stand-alone text files, human-readable headers or+AAoA-in the appropriate machine-readable metadata fields within text or+AAoA-binary files as long as those fields can be easily viewed by the user.+AAoACgAA-3) No Modified Version of the Font Software may use the Reserved Font+AAoA-Name(s) unless explicit written permission is granted by the corresponding+AAoA-Copyright Holder. This restriction only applies to the primary font name as+AAoA-presented to the users.+AAoACgAA-4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font+AAoA-Software shall not be used to promote, endorse or advertise any+AAoA-Modified Version, except to acknowledge the contribution(s) of the+AAoA-Copyright Holder(s) and the Author(s) or with their explicit written+AAoA-permission.+AAoACgAA-5) The Font Software, modified or unmodified, in part or in whole,+AAoA-must be distributed entirely under this license, and must not be+AAoA-distributed under any other license. The requirement for fonts to+AAoA-remain under this license does not apply to any document created+AAoA-using the Font Software.+AAoACgAA-TERMINATION+AAoA-This license becomes null and void if any of the above conditions are+AAoA-not met.+AAoACgAA-DISCLAIMER+AAoA-THE FONT SOFTWARE IS PROVIDED +ACIA-AS IS+ACIA, WITHOUT WARRANTY OF ANY KIND,+AAoA-EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF+AAoA-MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT+AAoA-OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE+AAoA-COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,+AAoA-INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL+AAoA-DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING+AAoA-FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM+AAoA-OTHER DEALINGS IN THE FONT SOFTWARE." "http://scripts.sil.org/OFL"
Encoding: ISO8859-1
UnicodeInterp: none
NameList: AGL For New Fonts
DisplaySize: -48
AntiAlias: 1
FitToEm: 0
WinInfo: 0 26 11
BeginPrivate: 0
EndPrivate
TeXData: 1 0 0 1048576 524288 349525 0 1048576 349525 783286 444596 497025 792723 393216 433062 380633 303038 157286 324010 404750 52429 2506097 1059062 262144
BeginChars: 256 43
StartChar: space
Encoding: 32 32 0
Width: 192
Flags: W
LayerCount: 2
Fore
Validated: 1
EndChar
StartChar: q
Encoding: 113 113 1
Width: 799
Flags: W
HStem: 1 21G<400.5 408.5 776 783.5> 333 20G<403.5 411>
VStem: 759 41<339 1413>
LayerCount: 2
Fore
SplineSet
800 1413 m 5
800 338 l 1
800 335 l 2
800 334 800 334 800 334 c 2
800 329 797 321 793 318 c 2
626 177 l 1
793 38 l 2
798 34 800 28 800 21 c 0
800 12 789 1 778 1 c 0
774 1 772 3 768 5 c 2
594 153 l 1
416 5 l 2
412 3 411 1 406 1 c 0
395 1 392 12 392 23 c 0
392 28 394 33 399 38 c 2
566 177 l 1
399 318 l 2
395 322 392 328 392 335 c 0
392 342 398 353 409 353 c 0
413 353 416 352 420 350 c 2
594 202 l 1
759 339 l 1
758 1413 l 5
800 1413 l 5
EndSplineSet
Validated: 1
EndChar
StartChar: e
Encoding: 101 101 2
Width: 905
Flags: W
HStem: 1 21G<506.5 514.5 882 889.5> 333 20G<509.5 517> 1236 176<-2 864>
VStem: 865 41<339 1236>
LayerCount: 2
Fore
SplineSet
899 38 m 2
904 34 906 28 906 21 c 0
906 12 895 1 884 1 c 0
880 1 878 3 874 5 c 2
700 153 l 1
522 5 l 2
518 3 517 1 512 1 c 0
501 1 498 12 498 23 c 0
498 28 500 33 505 38 c 2
672 177 l 1
505 318 l 2
501 322 498 328 498 335 c 0
498 342 504 353 515 353 c 0
519 353 522 352 526 350 c 2
700 202 l 1
865 339 l 1
864 1236 l 1
-2 1236 l 1
-2 1412 l 5
907 1412 l 5
906 338 l 2
906 337 906 336 906 334 c 0
905 329 903 321 899 318 c 2
732 177 l 1
899 38 l 2
EndSplineSet
Validated: 1
EndChar
StartChar: X
Encoding: 88 88 3
Width: 535
VWidth: 488
Flags: W
HStem: 0 131<102.478 209.569 321.432 428.523> 131 90<241.957 291.56> 221 130<102.48 209.662 321.341 428.523>
VStem: 95 126<14.3405 68 241.708 340.751> 240 54<155.805 196.517> 314.951 125.049<14.3383 108.976 245.307 340.88>
LayerCount: 2
Fore
SplineSet
360 131 m 1xbc
374 131 l 2
398 131 422 127 429 120 c 0
434 113 440 89 440 65 c 0
440 42 436 21 429 14 c 0
419 5 398 0 377 0 c 0xbc
353 0 330 5 321 14 c 0
315.555555556 17.8888888889 314.950617284 32.6666666667 314.950617284 51.2757201646 c 0
314.950617284 56.5925925926 315 62.2222222222 315 68 c 1
308 87 285 131 266 131 c 0x5c
249 131 231 92 224 73 c 0
222 71 221 68 221 68 c 1
221 45 217 21 210 14 c 0
201 5 179 0 158 0 c 0
134 0 112 5 102 14 c 0
99 17 95 42 95 68 c 0
95 92 99 117 102 120 c 0
111 127 138 131 162 131 c 2
175 131 l 1
196 138 240 159 240 178 c 0
240 187 189 214 175 223 c 0
170 223 167 221 162 221 c 0
138 221 112 228 102 235 c 0
99 240 95 265 95 291 c 0
95 315 99 339 102 341 c 0
111 348 136 351 160 351 c 0xbc
183 351 203 348 210 341 c 0
217 336 221 311 221 287 c 1
226 268 249 221 268 221 c 0x5c
285 221 308 271 315 287 c 1
315 292.333333333 314.950617284 297.814814815 314.950617284 303.148148148 c 0
314.950617284 321.814814815 315.555555556 338.666666667 321 341 c 0
328 348 353 351 377 351 c 0
385 351 392 352 399 352 c 0
412 352 422 350 429 341 c 1
429 341 440 309 440 285 c 0
440 262 436 242 429 235 c 0
419 228 398 221 377 221 c 0
370 221 365 223 360 223 c 0
341 216 294 195 294 176 c 0
294 166 344 138 360 131 c 1xbc
EndSplineSet
Validated: 1
EndChar
StartChar: x
Encoding: 120 120 4
Width: 540
Flags: W
HStem: 0 21G<78.5 86.5 454 461.5> 332 20G<78.5 86 454 459.5>
LayerCount: 2
Fore
SplineSet
467 37 m 2
471 32 474 26 474 19 c 0
474 10 467 0 456 0 c 0
452 0 450 2 446 4 c 2
268 151 l 1
94 4 l 2
90 2 89 0 84 0 c 0
73 0 66 10 66 21 c 0
66 26 68 32 73 37 c 2
240 176 l 1
73 316 l 2
69 320 66 327 66 334 c 0
66 341 73 352 84 352 c 0
88 352 90 350 94 348 c 2
268 200 l 1
446 348 l 2
450 350 452 352 456 352 c 0
463 352 474 343 474 332 c 0
474 327 471 320 467 316 c 2
300 176 l 1
467 37 l 2
EndSplineSet
Validated: 1
EndChar
StartChar: Q
Encoding: 81 81 5
Width: 693
Flags: W
HStem: 0 131<356.478 463.569 575.432 682.523> 131 90<495.608 544.297> 221 130<356.48 463.662 575.341 651.283>
VStem: 349 125<14.3405 68 241.708 340.751> 493 54<155.805 197.134> 568 125<14.3383 109.716 245.307 340.842> 652 41<352 1411>
LayerCount: 2
Fore
SplineSet
613 131 m 1xbc
627 131 l 2
651 131 676 127 683 120 c 0
688 113 693 89 693 65 c 0
693 42 690 21 683 14 c 0
673 5 652 0 631 0 c 0xbc
607 0 584 5 575 14 c 0
568 19 568 42 568 68 c 1
561 87 539 131 520 131 c 0x5c
503 131 485 92 478 73 c 0
476 71 474 68 474 68 c 1
474 45 471 21 464 14 c 0
455 5 433 0 412 0 c 0
388 0 366 5 356 14 c 0
353 17 349 42 349 68 c 0
349 92 353 117 356 120 c 0
365 127 391 131 415 131 c 2
429 131 l 1
450 138 493 159 493 178 c 0
493 187 443 214 429 223 c 0
424 223 420 221 415 221 c 0
391 221 366 228 356 235 c 0
353 240 349 265 349 291 c 0
349 315 353 339 356 341 c 0
365 348 390 351 414 351 c 0xbc
437 351 457 348 464 341 c 0
471 336 474 311 474 287 c 1
479 268 502 221 521 221 c 0
538 221 561 271 568 287 c 1x5c
568 311 568 338 575 341 c 0
582 348 607 351 631 351 c 0
639 351 646 352 652 352 c 1
652 1411 l 5
693 1411 l 5x3a
693 292 l 2
693 290 693 287 693 285 c 0
693 262 690 242 683 235 c 0
673 228 652 221 631 221 c 0
624 221 618 223 613 223 c 0
594 216 547 195 547 176 c 0
547 166 597 138 613 131 c 1xbc
EndSplineSet
Validated: 1
EndChar
StartChar: E
Encoding: 69 69 6
Width: 905
Flags: W
HStem: 0 131<570.477 677.568 789.431 896.523> 131 90<708.957 758.56> 221 130<570.48 677.662 789.341 864.536> 1236 176<-2 864>
VStem: 563 125<14.3405 68 241.708 340.751> 707 54<155.805 197.134> 782 125<14.3383 108.976 245.307 340.842> 865 42<352 1236>
LayerCount: 2
Fore
SplineSet
827 131 m 1xbe
841 131 l 2
865 131 890 127 897 120 c 0
902 113 907 89 907 65 c 0
907 42 904 21 897 14 c 0
887 5 865 0 844 0 c 0xbe
820 0 798 5 789 14 c 0
782 19 782 42 782 68 c 1
775 87 752 131 733 131 c 0x5e
716 131 698 92 691 73 c 0
689 71 688 68 688 68 c 1
688 45 685 21 678 14 c 0
669 5 646 0 625 0 c 0
601 0 580 5 570 14 c 0
567 17 563 42 563 68 c 0
563 92 567 117 570 120 c 0
579 127 605 131 629 131 c 2
643 131 l 1
664 138 707 159 707 178 c 0
707 187 657 214 643 223 c 0
638 223 634 221 629 221 c 0
605 221 580 228 570 235 c 0
567 240 563 265 563 291 c 0
563 315 567 339 570 341 c 0
579 348 603 351 627 351 c 0xbe
650 351 671 348 678 341 c 0
685 336 688 311 688 287 c 1
693 268 716 221 735 221 c 0
752 221 775 271 782 287 c 1x5e
782 311 782 338 789 341 c 0
796 348 820 351 844 351 c 0
852 351 859 352 865 352 c 1
864 1236 l 1
-2 1236 l 1
-2 1412 l 1
907 1412 l 1x3d
907 293 l 2
907 291 907 287 907 285 c 0
907 262 904 242 897 235 c 0
887 228 865 221 844 221 c 0
837 221 832 223 827 223 c 0
808 216 761 195 761 176 c 0
761 166 811 138 827 131 c 1xbe
EndSplineSet
Validated: 1
EndChar
StartChar: hyphen
Encoding: 45 45 7
Width: 485
Flags: W
HStem: 264 278<0 487>
LayerCount: 2
Fore
SplineSet
0 542 m 1
487 542 l 1
487 264 l 1
0 264 l 1
0 542 l 1
EndSplineSet
Validated: 1
EndChar
StartChar: bar
Encoding: 124 124 8
Width: 272
Flags: W
HStem: 0 21G<0 98> 780 20G<0 98>
VStem: -0 98<0 800>
LayerCount: 2
Fore
SplineSet
-0 800 m 1
98 800 l 1
98 0 l 1
-0 0 l 1
-0 800 l 1
EndSplineSet
Validated: 1
EndChar
StartChar: bracketright
Encoding: 93 93 9
Width: 3051
Flags: W
HStem: 0 21G<2669 2767> 265 276<-6 2669> 780 20G<2669 2767>
VStem: 2669 98<0 265 541 800>
LayerCount: 2
Fore
SplineSet
2669 800 m 1
2767 800 l 1
2767 0 l 1
2669 0 l 1
2669 265 l 1
-6 265 l 1
-6 541 l 1
2669 541 l 1
2669 800 l 1
EndSplineSet
Validated: 1
EndChar
StartChar: p
Encoding: 112 112 10
Width: 1184
Flags: W
HStem: 264 278<0 599 757 1185> 264 180<599 756.898> 491 21G<655 693> 589 31<284.679 364.762 711.688 788.165 1058 1168.36> 617 301G<903 940 1166.5 1172> 701 30<1035 1143> 712 33<38 125.385> 793 34<549.549 611.516 709.577 791.212 1051.59 1130.31> 866 33<38 127.479>
VStem: -0 38<593 712 745 866> 145 40<759.11 851.529> 237 37<628.299 822> 384 37<642.661 822> 391 30<593 624> 488 37<593 770.341 781 822> 655 38<491 622 643.708 774.386> 655 31<791 822> 809 38<642.013 774.011> 903 37<593 918> 996 38<641.661 701> 1143 38<731 777.435>
LayerCount: 2
Fore
SplineSet
748 -12 m 1024x007278
0 542 m 1x807278
599 542 l 1x807278
599 465 l 2
599 455 601 452 605 449 c 0
609 445 613 444 624 444 c 2
731 444 l 2x407278
740 444 745 449 749 452 c 0
753 456 757 460 757 468 c 2
757 542 l 1
1185 542 l 1
1185 264 l 1
0 264 l 1
0 542 l 1x807278
1092 796 m 0
1075 796 1062 790 1052 778 c 0
1043 767 1037 752 1035 731 c 1
1143 731 l 1x047278
1143 750 1138 766 1130 778 c 0
1122 790 1109 796 1092 796 c 0
1092 827 m 0x157278
1120 827 1141 817 1157 798 c 0
1173 779 1181 754 1181 723 c 2
1181 701 l 1
1034 701 l 1
1035 675 1041 655 1052 641 c 0
1064 628 1081 621 1102 621 c 0
1116 621 1127 622 1138 625 c 0
1149 628 1161 632 1172 637 c 1
1172 604 l 1
1161 599 1150 595 1139 593 c 0
1128 590 1115 589 1100 589 c 0
1069 589 1044 598 1025 618 c 0
1006 638 996 668 996 706 c 0
996 744 1005 774 1022 795 c 0
1040 816 1063 827 1092 827 c 0x157278
940 593 m 1
903 593 l 1
903 918 l 1
940 918 l 1x087278
940 593 l 1
752 795 m 0
731 795 715 788 706 775 c 0
697 762 693 743 693 716 c 2
693 708 l 2
693 680 697 658 706 643 c 0
715 628 730 620 753 620 c 0x107378
772 620 786 628 795 645 c 0
804 662 809 683 809 709 c 0
809 735 804 755 795 771 c 0
786 787 771 795 752 795 c 0
759 827 m 0x317378
786 827 807 817 823 797 c 0
839 777 847 747 847 708 c 0
847 669 839 639 823 619 c 0
807 599 786 589 759 589 c 0
742 589 728 592 717 599 c 0
706 606 699 613 693 622 c 1
690 622 l 1
690 617 690 611 691 604 c 0
692 597 693 590 693 585 c 2
693 491 l 1
655 491 l 1x317378
655 822 l 1
686 822 l 1x3172f8
691 791 l 1
693 791 l 1
699 801 707 809 717 816 c 0
728 823 742 827 759 827 c 0x317378
590 827 m 0
594 827 598 827 603 826 c 0
608 826 612 825 615 824 c 2
611 790 l 1
604 792 596 793 588 793 c 0
571 793 557 785 544 771 c 0
531 757 525 739 525 716 c 2
525 593 l 1
488 593 l 1
488 822 l 1
519 822 l 1
523 781 l 1
525 781 l 1
532 794 540 804 551 813 c 0
562 822 575 827 590 827 c 0
421 822 m 1x107a78
421 593 l 1
391 593 l 1x107678
385 624 l 1
384 624 l 1
377 612 367 603 354 597 c 0
342 592 329 589 315 589 c 0
289 589 270 596 257 609 c 0
244 622 237 643 237 672 c 2
237 822 l 1
274 822 l 1
274 675 l 2
274 638 290 620 322 620 c 0
345 620 361 628 370 642 c 0
379 656 384 676 384 703 c 2
384 822 l 1
421 822 l 1x107a78
74 866 m 2x02f278
38 866 l 1
38 745 l 1
66 745 l 2
93 745 113 750 126 759 c 0
139 768 145 784 145 807 c 0
145 827 140 841 128 851 c 0
117 861 99 866 74 866 c 2x02f278
77 899 m 2
115 899 142 891 159 875 c 0
176 859 185 837 185 809 c 0
185 796 183 784 179 772 c 0
175 760 168 750 159 741 c 0
150 732 139 725 124 720 c 0
109 715 92 712 71 712 c 2
38 712 l 1
38 593 l 1
-0 593 l 1
-0 899 l 1
77 899 l 2
EndSplineSet
Validated: 1
EndChar
StartChar: plus
Encoding: 43 43 11
Width: 801
VWidth: 488
Flags: W
HStem: 0 74<293.144 370 433 510.103> 367 64<77 370 433 726> 724 74<302.137 370 433 510.103>
VStem: 3 74<299.404 367 431 498.596> 370 63<74 367 431 724> 726 74<289.897 367 431 508.103>
CounterMasks: 1 fc
LayerCount: 2
Fore
SplineSet
77 431 m 1
370 431 l 1
370 724 l 1
231 706 98 570 77 431 c 1
77 367 m 1
98 225 231 92 370 74 c 1
370 367 l 1
77 367 l 1
433 724 m 1
433 431 l 1
726 431 l 1
708 570 575 706 433 724 c 1
433 367 m 1
433 74 l 1
575 92 708 225 726 367 c 1
433 367 l 1
3 399 m 0
3 619 183 798 401 798 c 0
621 798 800 619 800 399 c 0
800 179 621 0 401 0 c 0
183 0 3 179 3 399 c 0
EndSplineSet
Validated: 1
EndChar
StartChar: w
Encoding: 119 119 12
Width: 1084
Flags: W
HStem: 264 278<0 1086> 589 33<811.283 865.811 957.116 1072.48> 617 282G<2 46.7312 158.674 209.591 324.269 368 407 444 774.286 802 1067.5 1073> 701 30<936 1044> 794 29<461.168 542.731 802 864 953.673 1029.41> 861 48<660.188 689.812>
VStem: 407 37<594 773.293 791.469 919> 553 37<594 787.765> 657 37<594 823 867.189 902.811> 765 37<630.33 794> 780 22<851.5 876> 897 38<642.66 701> 1044 39<731 777.435>
LayerCount: 2
Fore
SplineSet
0 542 m 1x8398
1086 542 l 1
1086 264 l 1
0 264 l 1
0 542 l 1x8398
993 796 m 0
976 796 963 791 953 779 c 0
944 768 938 752 936 731 c 1
1044 731 l 1x9398
1044 750 1039 766 1031 778 c 0
1023 790 1010 796 993 796 c 0
993 827 m 0
1021 827 1042 818 1058 799 c 0
1074 780 1083 755 1083 724 c 2
1083 701 l 1
935 701 l 1
936 675 942 656 953 642 c 0
965 629 982 622 1003 622 c 0
1017 622 1028 622 1039 625 c 0
1050 628 1062 632 1073 637 c 1
1073 604 l 1
1062 599 1051 595 1040 593 c 0
1029 590 1016 589 1001 589 c 0xd398
970 589 945 599 926 619 c 0
907 639 897 669 897 707 c 0
897 745 906 774 923 795 c 0
941 816 964 827 993 827 c 0
835 620 m 0
840 620 846 621 852 622 c 0
858 623 862 624 866 625 c 1
866 596 l 1
862 594 856 593 849 592 c 0
842 591 836 589 829 589 c 0
812 589 797 594 784 604 c 0
771 614 765 632 765 660 c 2
765 794 l 1xcbd8
735 794 l 1
735 812 l 1
766 827 l 1
780 876 l 1
802 876 l 1
802 823 l 1xcbb8
864 823 l 1
864 794 l 1
802 794 l 1
802 661 l 2xcbd8
802 647 805 637 811 630 c 0
817 623 825 620 835 620 c 0
694 823 m 1
694 594 l 1
657 594 l 1
657 823 l 1
694 823 l 1
675 909 m 0x8798
681 909 686 907 690 903 c 0
694 899 697 893 697 885 c 0
697 877 694 871 690 867 c 0
686 863 681 861 675 861 c 0
669 861 664 863 660 867 c 0
656 871 654 877 654 885 c 0
654 893 656 899 660 903 c 0
664 907 669 909 675 909 c 0x8798
444 919 m 1
444 823 l 2x8b98
444 811 443 801 442 791 c 1
444 791 l 1
451 803 460 812 472 818 c 0
484 824 497 827 511 827 c 0
537 827 557 820 570 807 c 0
583 794 590 772 590 743 c 2
590 594 l 1
553 594 l 1
553 740 l 2
553 777 538 796 506 796 c 0
482 796 466 789 457 774 c 0
448 759 444 739 444 712 c 2
444 594 l 1
407 594 l 1
407 919 l 1
444 919 l 1
368 899 m 1xa398
292 594 l 1
253 594 l 1
199 794 l 2x8b98
196 806 192 818 189 830 c 0
186 842 184 850 184 854 c 1
183 850 182 842 179 830 c 0
177 818 173 806 170 793 c 2
117 594 l 1
78 594 l 1
2 899 l 1
42 899 l 1
86 713 l 2
92 686 97 662 100 640 c 1
101 651 102 663 105 676 c 0
108 689 112 702 115 715 c 2
164 899 l 1
204 899 l 1
256 713 l 2
259 700 262 687 265 674 c 0
268 661 269 650 271 640 c 1
274 662 278 686 285 713 c 2
329 899 l 1
368 899 l 1xa398
EndSplineSet
Validated: 1
EndChar
StartChar: y
Encoding: 121 121 13
Width: 1227
Flags: W
HStem: 264 278<0 1229> 593 32<310.79 428.484 745.64 835.696> 594 38<995.466 1003.59 1138.74 1146.71> 700 30<293 401> 783 40<1065.7 1075.4> 796 31<311.422 384.792 750.352 829.604> 898 0G<2 53.7333 181.133 232 493 530 598 635>
VStem: 98 38<593 710> 253 39<641.66 700 730 777.481> 401 38<730 776.435> 493 37<593 918> 598 37<593 918> 690 39<641.01 774.591> 853 38<641.6 773.423>
LayerCount: 2
Fore
SplineSet
0 542 m 1x93fc
1229 542 l 1
1229 264 l 1
0 264 l 1
0 542 l 1x93fc
1123 594 m 1xbbfc
1087 723 l 2
1084 735 1080 746 1077 757 c 0
1074 768 1073 776 1072 783 c 1
1070 783 l 1
1069 776 1067 768 1064 757 c 0
1061 746 1058 734 1055 722 c 2
1018 594 l 1
976 594 l 1
917 823 l 1
955 823 l 1
985 700 l 2
988 687 990 676 993 663 c 0
996 650 997 640 998 632 c 1
1000 632 l 1
1001 639 1003 649 1006 661 c 0
1009 674 1011 685 1014 694 c 2
1051 823 l 1
1092 823 l 1
1128 694 l 2
1131 684 1133 673 1136 662 c 0
1139 651 1141 640 1142 632 c 1
1144 632 l 1
1145 639 1146 649 1149 662 c 0
1152 675 1155 687 1158 700 c 2
1188 823 l 1
1226 823 l 1
1166 594 l 1
1123 594 l 1xbbfc
729 708 m 0
729 681 733 660 743 644 c 0
753 628 770 620 791 620 c 0
812 620 828 628 838 644 c 0
848 660 853 681 853 708 c 0
853 735 847 757 837 772 c 0
827 787 811 795 790 795 c 0
769 795 753 787 743 772 c 0
733 757 729 735 729 708 c 0
891 708 m 0
891 670 882 641 863 620 c 0
845 599 821 589 790 589 c 0
761 589 737 599 718 620 c 0
699 641 690 670 690 708 c 0
690 746 699 774 717 795 c 0
735 816 760 827 791 827 c 0x97fc
820 827 844 816 863 795 c 0
882 774 891 746 891 708 c 0
635 593 m 1xd3fc
598 593 l 1
598 918 l 1
635 918 l 1
635 593 l 1xd3fc
530 593 m 1
493 593 l 1
493 918 l 1
530 918 l 1
530 593 l 1
349 796 m 0x97fc
332 796 319 790 309 778 c 0
300 767 295 751 293 730 c 1
401 730 l 1
401 749 396 765 388 777 c 0
380 789 366 796 349 796 c 0x97fc
349 827 m 0
377 827 399 817 415 798 c 0
431 779 439 754 439 723 c 2
439 700 l 1
292 700 l 1
293 674 299 655 310 641 c 0
322 628 338 621 359 621 c 0
373 621 385 622 396 625 c 0
407 628 418 632 429 637 c 1
429 604 l 1
418 599 407 595 396 593 c 0xd7fc
385 590 373 589 358 589 c 0
327 589 301 598 282 618 c 0
263 638 253 668 253 706 c 0
253 744 263 774 280 795 c 0
298 816 320 827 349 827 c 0
117 748 m 1
191 898 l 1
232 898 l 1
136 712 l 1
136 593 l 1
98 593 l 1
98 710 l 1
2 898 l 1
44 898 l 1
117 748 l 1
EndSplineSet
Validated: 1
EndChar
StartChar: o
Encoding: 111 111 14
Width: 1387
Flags: W
HStem: 264 278<0 913 1178.21 1388> 264 177.997<942.023 1120.81> 494 32<971.845 1089.56> 593 31<78.3072 178.39 518.35 585.83 1009.04 1076.2 1262.7 1371.39> 621 20G<1369.5 1375> 704 30<525.475 611 1239 1346> 793 10G<438.5 444.857 498.143 510.5> 799 32<384.632 441.671 508.543 600.534 776.029 850.016 1009.89 1076.1 1255.91 1331.21> 873 34<73.3928 183.188>
VStem: -4 40<662.475 836.429> 221 40<662.379 836.323> 320 37<597 774.34> 320 30<784 826> 471 39<629.787 695.106> 611 37<639.52 709 735 787.622> 621 27<597 625.875> 714 37<597 776.339> 714 30<795 826> 860 37<597 790.765> 952 38<643.333 778.541> 1107 37<543.519 627 642.614 777.338 796 826> 1114 30<796 826> 1199 39<645.614 704 734 781.481> 1346 39<734 780.435>
LayerCount: 2
Fore
SplineSet
0 542 m 1x84e433
913 542 l 1x84e433
913 479 l 1
954.250809347 452.929488493 995.937235787 441.996670987 1033.92628106 441.996670987 c 0x44e433
1111.05329614 441.996670987 1172.94011655 487.060530931 1185 542 c 1
1388 542 l 1
1388 264 l 1
0 264 l 1
0 542 l 1x84e433
1295 800 m 0
1278 800 1265 794 1255 782 c 0
1246 771 1241 755 1239 734 c 1
1346 734 l 1
1346 753 1341 769 1333 781 c 0
1325 793 1312 800 1295 800 c 0
1295 831 m 0x15e433
1323 831 1344 821 1360 802 c 0
1376 783 1385 758 1385 727 c 2
1385 704 l 1
1238 704 l 1
1239 678 1244 658 1256 645 c 0
1268 632 1284 625 1305 625 c 0
1319 625 1332 626 1342 629 c 0
1353 632 1364 636 1375 641 c 1x0de433
1375 608 l 2
1375 603 1353 600 1342 597 c 0
1331 594 1319 593 1304 593 c 0
1273 593 1247 602 1228 622 c 0
1209 642 1199 672 1199 710 c 0
1199 748 1207 777 1225 798 c 0
1243 819 1266 831 1295 831 c 0x15e433
1046 799 m 0
1028 799 1014 791 1004 776 c 0
995 761 990 739 990 711 c 0
990 683 994 661 1004 646 c 0
1013 631 1028 624 1047 624 c 0
1068 624 1083 630 1093 642 c 0
1103 655 1107 674 1107 702 c 2
1107 711 l 2x15e43b
1107 742 1102 764 1092 778 c 0
1082 792 1067 799 1046 799 c 0
1040 831 m 0
1069 831 1091 796 1107 796 c 2x35e43b
1109 796 l 1
1114 826 l 1x35e437
1144 826 l 1
1144 593 l 2
1144 527 1112 494 1046 494 c 0
1015 494 968 499 968 509 c 2
968 544 l 1
978 538 990 533 1004 530 c 0
1018 527 1033 526 1048 526 c 0x35e43b
1066 526 1080 531 1091 543 c 0
1102 554 1107 570 1107 590 c 2
1107 599 l 2
1107 602 1107 608 1107 614 c 0
1107 621 1108 624 1108 627 c 1
1106 627 l 2
1091 627 1069 593 1040 593 c 0
1012 593 990 603 975 624 c 0
960 645 952 673 952 711 c 0
952 747 960 777 975 798 c 0
991 820 1012 831 1040 831 c 0
819 831 m 0
845 831 864 823 877 810 c 0
890 797 897 775 897 746 c 2
897 597 l 1
860 597 l 1
860 744 l 2
860 781 845 799 813 799 c 0
789 799 773 791 764 777 c 0
755 763 751 743 751 716 c 2
751 597 l 1
714 597 l 1x05e4b3
714 826 l 1
744 826 l 1x05e473
749 795 l 1
752 795 l 2
759 795 768 816 780 822 c 0
792 828 805 831 819 831 c 0
611 709 m 1x04e633
580 708 l 2
553 707 535 702 525 694 c 0
515 686 510 675 510 660 c 0
510 647 514 638 521 632 c 0
528 626 537 623 548 623 c 0
566 623 581 628 593 639 c 0
605 650 611 667 611 689 c 2
611 709 l 1x04e633
569 830 m 0
595 830 615 823 628 811 c 0
641 799 648 780 648 753 c 2x14e633
648 597 l 1
621 597 l 1
613 630 l 1
612 630 l 2
603 630 593 607 582 601 c 0
572 595 557 593 539 593 c 0x14e533
519 593 504 598 491 609 c 0
478 620 471 638 471 661 c 0
471 684 480 701 497 713 c 0
514 725 539 733 574 734 c 2
611 735 l 1
611 749 l 2
611 768 607 780 599 788 c 0
591 796 581 800 567 800 c 0
556 800 545 798 535 794 c 0
525 790 515 786 506 782 c 1
495 810 l 2
495 811 515 820 528 824 c 0
541 828 554 830 569 830 c 0
422 831 m 0x05ec33
426 831 429 830 434 830 c 0
439 830 447 828 447 828 c 1
442 793 l 1
435 795 427 796 419 796 c 0
402 796 389 789 376 775 c 0
363 761 357 742 357 719 c 2
357 597 l 1
320 597 l 1x06f433
320 826 l 1
350 826 l 1
354 784 l 1
356 784 l 2
363 784 371 808 382 817 c 0
393 826 407 831 422 831 c 0x05ec33
36 750 m 0
36 712 43 681 58 659 c 0
73 637 97 626 129 626 c 0
161 626 184 637 199 659 c 0
214 681 221 712 221 750 c 0
221 788 214 818 199 840 c 0
184 862 161 873 129 873 c 0
97 873 73 862 58 840 c 0
43 818 36 788 36 750 c 0
261 750 m 0
261 703 251 665 228 636 c 0
205 607 172 593 129 593 c 0x14e433
84 593 50 607 28 636 c 0
6 665 -4 704 -4 751 c 0
-4 798 6 835 28 864 c 0
50 893 84 907 129 907 c 0
172 907 205 893 228 864 c 0
251 835 261 797 261 750 c 0
EndSplineSet
Validated: 1
EndChar
StartChar: r
Encoding: 114 114 15
Width: 655
Flags: W
HStem: 264 278<0 656> 593 32<292.79 410.484 516.594 596.862> 701 30<275 382> 719 33<39 94> 796 31<293.735 367.74 522.099 594.786> 865 34<39 129.479> 898 20G<405.5 411 618 655>
VStem: 1 38<593 719 752 865> 146 40<764.47 852.845> 235 39<641.615 701 731 777.481> 382 39<731 777.435> 463 38<640.467 774.105> 618 37<640.615 771.246 793.143 918> 625 30<593 624>
LayerCount: 2
Fore
SplineSet
0 542 m 1xc9f0
656 542 l 1
656 264 l 1
0 264 l 1
0 542 l 1xc9f0
558 620 m 0
580 620 595 627 604 640 c 0
613 653 618 673 618 700 c 2
618 707 l 2xc9f8
618 735 614 756 605 772 c 0
596 787 580 796 557 796 c 0
538 796 524 787 515 771 c 0
506 755 501 734 501 707 c 0
501 680 506 658 515 643 c 0
524 628 539 620 558 620 c 0
551 589 m 0
524 589 503 598 487 618 c 0
471 638 463 668 463 707 c 0
463 746 471 776 487 796 c 0
503 816 524 827 551 827 c 0
568 827 581 824 592 817 c 0
603 810 611 793 618 793 c 2
620 793 l 1
619 796 619 802 618 809 c 0
617 816 618 823 618 827 c 2
618 918 l 1
655 918 l 1xcbf8
655 593 l 1
625 593 l 1xcbf4
619 624 l 1
618 624 l 2
611 624 603 606 592 599 c 0
581 592 568 589 551 589 c 0
331 796 m 0
314 796 301 790 291 778 c 0
282 767 277 752 275 731 c 1
382 731 l 1xe9f0
382 750 378 766 370 778 c 0
362 790 348 796 331 796 c 0
331 827 m 0
359 827 381 817 397 798 c 0