From dda1f124cd7e9afd1be7dacbbec9c86495bce45c Mon Sep 17 00:00:00 2001 From: Karl Berry Date: Mon, 13 Feb 2012 01:15:06 +0000 Subject: xits 1.104 (12feb12) git-svn-id: svn://tug.org/texlive/trunk@25378 c570f23f-e606-0410-a88d-b1316a301751 --- Master/texmf-dist/doc/fonts/xits/FONTLOG.txt | 5 + Master/texmf-dist/doc/fonts/xits/Makefile | 9 +- Master/texmf-dist/doc/fonts/xits/postprocess.py | 27 + .../fonts/opentype/public/xits/xits-bold.otf | Bin 154004 -> 151604 bytes .../fonts/opentype/public/xits/xits-bolditalic.otf | Bin 112628 -> 111196 bytes .../fonts/opentype/public/xits/xits-italic.otf | Bin 116920 -> 115452 bytes .../fonts/opentype/public/xits/xits-math.otf | Bin 513692 -> 506168 bytes .../fonts/opentype/public/xits/xits-regular.otf | Bin 253452 -> 249268 bytes Master/texmf-dist/source/fonts/xits/xits-bold.sfd | 1 - .../source/fonts/xits/xits-bolditalic.sfd | 3 +- .../texmf-dist/source/fonts/xits/xits-italic.sfd | 1 - Master/texmf-dist/source/fonts/xits/xits-math.sfd | 1946 ++++++++++---------- .../texmf-dist/source/fonts/xits/xits-regular.sfd | 3 +- 13 files changed, 1050 insertions(+), 945 deletions(-) create mode 100755 Master/texmf-dist/doc/fonts/xits/postprocess.py (limited to 'Master') diff --git a/Master/texmf-dist/doc/fonts/xits/FONTLOG.txt b/Master/texmf-dist/doc/fonts/xits/FONTLOG.txt index ce4f085feb0..f56135383a1 100644 --- a/Master/texmf-dist/doc/fonts/xits/FONTLOG.txt +++ b/Master/texmf-dist/doc/fonts/xits/FONTLOG.txt @@ -192,6 +192,11 @@ http://github.com/khaledhosny/xits-math ChangeLog ---------- +12 Feb 2012 (Khaled Hosny) Version 1.104 +- Fix various warnings reported vy `compareFamily` tool of AFDKO +- Fix primes size so that base and superscripted primes are identical in size + and a bit smaller than before. + 29 Nov 2011 (Khaled Hosny) Version 1.103 - Remove erroneous dots from U+2A2B and add U+2A2C to XITS Bold diff --git a/Master/texmf-dist/doc/fonts/xits/Makefile b/Master/texmf-dist/doc/fonts/xits/Makefile index 21b935540d0..520900f6ef5 100644 --- a/Master/texmf-dist/doc/fonts/xits/Makefile +++ b/Master/texmf-dist/doc/fonts/xits/Makefile @@ -1,5 +1,5 @@ NAME=xits -VERSION=1.103 +VERSION=1.104 SRC=sources DOC=documentation @@ -7,6 +7,7 @@ DOCSRC=$(DOC)/$(DOC)-$(SRC) DIST=$(NAME)-$(VERSION) FF=fontforge -lang=ff +POSTPROCESS=./postprocess.py FFLAGES=0x200000 SCRIPT='Open($$1); MergeFeature("$(SRC)/$(FEA)");\ SetFontNames("","","","","","$(VERSION)");\ @@ -25,9 +26,11 @@ all: otf otf: $(OTF) -%.otf: $(SRC)/%.sfd +%.otf: $(SRC)/%.sfd Makefile $(POSTPROCESS) @echo "Building $@" @$(FF) -c $(SCRIPT) $< $@ 2>/dev/stdout 1>/dev/stderr | tail -n +4 + @$(POSTPROCESS) $@ + @mv $@.post $@ doc: $(PDF) @@ -49,7 +52,7 @@ dist: $(OTF) $(PDF) FONTLOG.txt @cp $(OTF) $(DIST) @cp -r $(PDF) $(DIST)/$(DOC) @cp -r $(TEX) $(DIST)/$(DOCSRC) - @cp -r Makefile OFL-FAQ.txt OFL.txt FONTLOG.txt tex $(DIST) + @cp -r $(POSTPROCESS) Makefile OFL-FAQ.txt OFL.txt FONTLOG.txt tex $(DIST) @cp README.md $(DIST)/README.txt @zip -r $(DIST).zip $(DIST) diff --git a/Master/texmf-dist/doc/fonts/xits/postprocess.py b/Master/texmf-dist/doc/fonts/xits/postprocess.py new file mode 100755 index 00000000000..af04a5fd7c2 --- /dev/null +++ b/Master/texmf-dist/doc/fonts/xits/postprocess.py @@ -0,0 +1,27 @@ +#!/usr/bin/env python +import sys +import warnings +from fontTools import ttLib + +# suppress noisy DeprecationWarnings in fontTools +warnings.filterwarnings("ignore",category=DeprecationWarning) + +font = ttLib.TTFont(sys.argv[1]) + +MS_Platform_ID = 3 +MS_Enc_ID = 1 +MS_Lang_US_ID = 0x409 + +FullName_ID = 4 + +name = font["name"] +cff = font["CFF "] + +psname = cff.cff.fontNames[0] + +# set MS full name to psname +# per name table spec +fullname = name.getName(FullName_ID, MS_Platform_ID, MS_Enc_ID, MS_Lang_US_ID) +fullname.string = psname.encode("utf_16_be") + +font.save(sys.argv[1] + ".post") diff --git a/Master/texmf-dist/fonts/opentype/public/xits/xits-bold.otf b/Master/texmf-dist/fonts/opentype/public/xits/xits-bold.otf index 71f7141eea4..baaa4ad08b6 100644 Binary files a/Master/texmf-dist/fonts/opentype/public/xits/xits-bold.otf and b/Master/texmf-dist/fonts/opentype/public/xits/xits-bold.otf differ diff --git a/Master/texmf-dist/fonts/opentype/public/xits/xits-bolditalic.otf b/Master/texmf-dist/fonts/opentype/public/xits/xits-bolditalic.otf index 12d1a22ddda..708862f9879 100644 Binary files a/Master/texmf-dist/fonts/opentype/public/xits/xits-bolditalic.otf and b/Master/texmf-dist/fonts/opentype/public/xits/xits-bolditalic.otf differ diff --git a/Master/texmf-dist/fonts/opentype/public/xits/xits-italic.otf b/Master/texmf-dist/fonts/opentype/public/xits/xits-italic.otf index 94878490b8d..51de3f0c2e6 100644 Binary files a/Master/texmf-dist/fonts/opentype/public/xits/xits-italic.otf and b/Master/texmf-dist/fonts/opentype/public/xits/xits-italic.otf differ diff --git a/Master/texmf-dist/fonts/opentype/public/xits/xits-math.otf b/Master/texmf-dist/fonts/opentype/public/xits/xits-math.otf index 24da0bbd687..c1502ed17e4 100644 Binary files a/Master/texmf-dist/fonts/opentype/public/xits/xits-math.otf and b/Master/texmf-dist/fonts/opentype/public/xits/xits-math.otf differ diff --git a/Master/texmf-dist/fonts/opentype/public/xits/xits-regular.otf b/Master/texmf-dist/fonts/opentype/public/xits/xits-regular.otf index 3c50cad6e23..6148215c16b 100644 Binary files a/Master/texmf-dist/fonts/opentype/public/xits/xits-regular.otf and b/Master/texmf-dist/fonts/opentype/public/xits/xits-regular.otf differ diff --git a/Master/texmf-dist/source/fonts/xits/xits-bold.sfd b/Master/texmf-dist/source/fonts/xits/xits-bold.sfd index 75152bb3ea6..52852e18bd8 100644 --- a/Master/texmf-dist/source/fonts/xits/xits-bold.sfd +++ b/Master/texmf-dist/source/fonts/xits/xits-bold.sfd @@ -26,7 +26,6 @@ TTFWeight: 700 TTFWidth: 5 LineGap: 0 VLineGap: 0 -Panose: 0 0 8 0 0 0 0 0 0 0 OS2TypoAscent: 750 OS2TypoAOffset: 0 OS2TypoDescent: -250 diff --git a/Master/texmf-dist/source/fonts/xits/xits-bolditalic.sfd b/Master/texmf-dist/source/fonts/xits/xits-bolditalic.sfd index 06b266187f3..740fdf1a07d 100644 --- a/Master/texmf-dist/source/fonts/xits/xits-bolditalic.sfd +++ b/Master/texmf-dist/source/fonts/xits/xits-bolditalic.sfd @@ -26,7 +26,6 @@ TTFWeight: 700 TTFWidth: 5 LineGap: 0 VLineGap: 0 -Panose: 0 0 0 0 0 0 0 0 0 0 OS2TypoAscent: 750 OS2TypoAOffset: 0 OS2TypoDescent: -250 @@ -54,7 +53,7 @@ OS2Vendor: 'STIX' Lookup: 258 0 0 "'kern' Horizontal Kerning in Latin lookup 0" {"'kern' Horizontal Kerning in Latin lookup 0 subtable" } ['kern' ('DFLT' <'dflt' > 'latn' <'dflt' > ) ] MarkAttachClasses: 1 DEI: 91125 -LangName: 1033 "" "" "" "" "" "" "" "STIX Fonts(TM) is a trademark of The Institute of Electrical and Electronics Engineers, Inc." "" "MicroPress Inc., with final additions and corrections provided by Coen Hoffman, Elsevier (retired)" "Arie de Ruiter, who in 1995 was Head of Information Technology Development at Elsevier Science, made a proposal to the STI Pub group, an informal group of publishers consisting of representatives from the American Chemical Society (ACS), American Institute of Physics (AIP), American Mathematical Society (AMS), American Physical Society (APS), Elsevier, and Institute of Electrical and Electronics Engineers (IEEE). De Ruiter encouraged the members to consider development of a series of Web fonts, which he proposed should be called the Scientific and Technical Information eXchange, or STIX, Fonts. All STI Pub member organizations enthusiastically endorsed this proposal, and the STI Pub group agreed to embark on what has become a twelve-year project. The goal of the project was to identify all alphabetic, symbolic, and other special characters used in any facet of scientific publishing and to create a set of Unicode-based fonts that would be distributed free to every scientist, student, and other interested party worldwide. The fonts would be consistent with the emerging Unicode standard, and would permit universal representation of every character. With the release of the STIX fonts, de Ruiter's vision has been realized." "http://www.stixfonts.org" "http://www.micropress-inc.com" "As a condition for receiving these fonts at no charge, each person downloading the fonts must agree to some simple license terms. The license is based on the SIL Open Font License . The SIL License is a free and open source license specifically designed for fonts and related software. The basic terms are that the recipient will not remove the copyright and trademark statements from the fonts and that, if the person decides to create a derivative work based on the STIX Fonts but incorporating some changes or enhancements, the derivative work (+ACIA-Modified Version+ACIA) will carry a different name. The copyright and trademark restrictions are part of the agreement between the STI Pub companies and the typeface designer. The +ACIA-renaming+ACIA restriction results from the desire of the STI Pub companies to assure that the STIX Fonts will continue to function in a predictable fashion for all that use them. No copy of one or more of the individual Font typefaces that form the STIX Fonts(TM) set may be sold by itself, but other than this one restriction, licensees are free to sell the fonts either separately or as part of a package that combines other software or fonts with this font set." "http://www.stixfonts.org/user_license.html" +LangName: 1033 "" "" "Bold Italic" "" "" "" "" "STIX Fonts(TM) is a trademark of The Institute of Electrical and Electronics Engineers, Inc." "" "MicroPress Inc., with final additions and corrections provided by Coen Hoffman, Elsevier (retired)" "Arie de Ruiter, who in 1995 was Head of Information Technology Development at Elsevier Science, made a proposal to the STI Pub group, an informal group of publishers consisting of representatives from the American Chemical Society (ACS), American Institute of Physics (AIP), American Mathematical Society (AMS), American Physical Society (APS), Elsevier, and Institute of Electrical and Electronics Engineers (IEEE). De Ruiter encouraged the members to consider development of a series of Web fonts, which he proposed should be called the Scientific and Technical Information eXchange, or STIX, Fonts. All STI Pub member organizations enthusiastically endorsed this proposal, and the STI Pub group agreed to embark on what has become a twelve-year project. The goal of the project was to identify all alphabetic, symbolic, and other special characters used in any facet of scientific publishing and to create a set of Unicode-based fonts that would be distributed free to every scientist, student, and other interested party worldwide. The fonts would be consistent with the emerging Unicode standard, and would permit universal representation of every character. With the release of the STIX fonts, de Ruiter's vision has been realized." "http://www.stixfonts.org" "http://www.micropress-inc.com" "As a condition for receiving these fonts at no charge, each person downloading the fonts must agree to some simple license terms. The license is based on the SIL Open Font License . The SIL License is a free and open source license specifically designed for fonts and related software. The basic terms are that the recipient will not remove the copyright and trademark statements from the fonts and that, if the person decides to create a derivative work based on the STIX Fonts but incorporating some changes or enhancements, the derivative work (+ACIA-Modified Version+ACIA) will carry a different name. The copyright and trademark restrictions are part of the agreement between the STI Pub companies and the typeface designer. The +ACIA-renaming+ACIA restriction results from the desire of the STI Pub companies to assure that the STIX Fonts will continue to function in a predictable fashion for all that use them. No copy of one or more of the individual Font typefaces that form the STIX Fonts(TM) set may be sold by itself, but other than this one restriction, licensees are free to sell the fonts either separately or as part of a package that combines other software or fonts with this font set." "http://www.stixfonts.org/user_license.html" Encoding: UnicodeFull UnicodeInterp: none NameList: AGL without afii diff --git a/Master/texmf-dist/source/fonts/xits/xits-italic.sfd b/Master/texmf-dist/source/fonts/xits/xits-italic.sfd index 2bbebc6294d..be7cd9204b0 100644 --- a/Master/texmf-dist/source/fonts/xits/xits-italic.sfd +++ b/Master/texmf-dist/source/fonts/xits/xits-italic.sfd @@ -26,7 +26,6 @@ TTFWeight: 400 TTFWidth: 5 LineGap: 0 VLineGap: 0 -Panose: 0 0 0 0 0 0 0 0 0 0 OS2TypoAscent: 750 OS2TypoAOffset: 0 OS2TypoDescent: -250 diff --git a/Master/texmf-dist/source/fonts/xits/xits-math.sfd b/Master/texmf-dist/source/fonts/xits/xits-math.sfd index 88c0eecf939..8550a7115fc 100644 --- a/Master/texmf-dist/source/fonts/xits/xits-math.sfd +++ b/Master/texmf-dist/source/fonts/xits/xits-math.sfd @@ -26,7 +26,6 @@ TTFWeight: 400 TTFWidth: 5 LineGap: 0 VLineGap: 0 -Panose: 0 0 0 0 0 0 0 0 0 0 OS2TypoAscent: 750 OS2TypoAOffset: 0 OS2TypoDescent: -250 @@ -146,7 +145,7 @@ StdVW 4 [66] StemSnapH 31 [23 28 31 34 38 43 50 54 63 66] StemSnapV 31 [39 43 48 52 56 59 66 73 79 83] EndPrivate -BeginChars: 1115046 4390 +BeginChars: 1115053 4395 StartChar: .notdef Encoding: 1114112 -1 0 @@ -28915,11 +28914,12 @@ EndChar StartChar: uni2032 Encoding: 8242 8242 832 -Width: 289 -Flags: MW -HStem: 658 20<171.5 195.5> +Width: 310 +VWidth: 1021 +Flags: W +VStem: 75 21.675<408.675 420.972> LayerCount: 2 -Fore +Back SplineSet 75 411 m 1 142 632 l 2 @@ -28929,16 +28929,19 @@ SplineSet 94 402 l 1 75 411 l 1 EndSplineSet -AlternateSubs2: "'ssty' Script Style 4-1" uni2032.ssty uni2032.ssty +Fore +Refer: 4388 -1 N 0.75 0 0 0.75 0 381 2 +AlternateSubs2: "'ssty' Script Style 4-1" uni2032.ssty1 uni2032.ssty2 EndChar StartChar: uni2033 Encoding: 8243 8243 833 -Width: 426 -Flags: MW -HStem: 658 20<171.5 195.5 308.5 332.5> +Width: 480 +VWidth: 1021 +Flags: W +VStem: 75 21.0375<408.627 420.972> 244.575 21.675<408.675 420.972> LayerCount: 2 -Fore +Back SplineSet 212 411 m 1 278 633 l 2 @@ -28955,16 +28958,20 @@ SplineSet 93 401 l 1 75 410 l 1 EndSplineSet -AlternateSubs2: "'ssty' Script Style 4-1" uni2033.ssty uni2033.ssty +Fore +Refer: 4389 -1 N 0.75 0 0 0.75 0 381 2 +AlternateSubs2: "'ssty' Script Style 4-1" uni2033.ssty1 uni2033.ssty2 EndChar StartChar: uni2034 Encoding: 8244 8244 834 -Width: 563 -Flags: MW -HStem: 658 20<171.5 195.5 308.5 332.5 445.5 469.5> +Width: 651 +VWidth: 1021 +Flags: W +VStem: 75 21.0375<408.627 420.972> 245.212 21.0375<408.627 420.972> 415.425 21.0375<408.627 420.972> +CounterMasks: 1 e0 LayerCount: 2 -Fore +Back SplineSet 349 411 m 1 415 633 l 2 @@ -28988,16 +28995,19 @@ SplineSet 93 401 l 1 75 410 l 1 EndSplineSet -AlternateSubs2: "'ssty' Script Style 4-1" uni2034.ssty uni2034.ssty +Fore +Refer: 4390 -1 N 0.75 0 0 0.75 0 381 2 +AlternateSubs2: "'ssty' Script Style 4-1" uni2034.ssty1 uni2034.ssty2 EndChar StartChar: uni2035 Encoding: 8245 8245 835 -Width: 289 -Flags: MW -HStem: 658 20<93.5 117.5> +Width: 310 +VWidth: 1021 +Flags: W +VStem: 213.337 21.675<408.675 420.972> LayerCount: 2 -Fore +Back SplineSet 214 411 m 1 195 402 l 1 @@ -29007,16 +29017,19 @@ SplineSet 132 678 140 656 147 632 c 2 214 411 l 1 EndSplineSet -AlternateSubs2: "'ssty' Script Style 4-1" uni2035.ssty uni2035.ssty +Fore +Refer: 4391 -1 N 0.75 0 0 0.75 0 381 2 +AlternateSubs2: "'ssty' Script Style 4-1" uni2035.ssty1 uni2035.ssty2 EndChar StartChar: uni2036 Encoding: 8246 8246 836 -Width: 426 -Flags: MW -HStem: 658 20<93.5 117.5 230.5 254.5> +Width: 479 +VWidth: 1021 +Flags: W +VStem: 213.337 21.675<408.675 420.972> 383.55 21.0375<408.627 420.972> LayerCount: 2 -Fore +Back SplineSet 351 410 m 1 333 401 l 1 @@ -29033,16 +29046,19 @@ SplineSet 132 678 141 657 148 633 c 2 214 411 l 1 EndSplineSet -AlternateSubs2: "'ssty' Script Style 4-1" uni2036.ssty uni2036.ssty +Fore +Refer: 4392 -1 N 0.75 0 0 0.75 0 381 2 +AlternateSubs2: "'ssty' Script Style 4-1" uni2036.ssty1 uni2036.ssty2 EndChar StartChar: uni2037 Encoding: 8247 8247 837 -Width: 563 -Flags: MW -HStem: 658 20<93.5 117.5 230.5 254.5 367.5 391.5> +Width: 651 +VWidth: 1021 +Flags: W +VStem: 214.612 21.0375<408.627 420.972> 384.825 21.0375<408.627 420.972> 555.037 21.0375<408.627 420.972> LayerCount: 2 -Fore +Back SplineSet 488 410 m 1 470 401 l 1 @@ -29066,7 +29082,9 @@ SplineSet 132 678 141 657 148 633 c 2 214 411 l 1 EndSplineSet -AlternateSubs2: "'ssty' Script Style 4-1" uni2037.ssty uni2037.ssty +Fore +Refer: 4393 -1 N 0.75 0 0 0.75 0 381 2 +AlternateSubs2: "'ssty' Script Style 4-1" uni2037.ssty1 uni2037.ssty2 EndChar StartChar: uni2038 @@ -29492,11 +29510,12 @@ EndChar StartChar: uni2057 Encoding: 8279 8279 850 -Width: 710 -Flags: MW -HStem: 658 20<171.5 195.5 308.5 332.5 445.5 469.5 592.5 616.5> +Width: 821 +VWidth: 1021 +Flags: W +VStem: 75 21.0375<408.627 420.972> 245.212 21.0375<408.627 420.972> 415.425 21.0375<408.627 420.972> 585.638 21.0375<408.627 420.972> LayerCount: 2 -Fore +Back SplineSet 496 411 m 1 562 633 l 2 @@ -29527,7 +29546,9 @@ SplineSet 93 401 l 1 75 410 l 1 EndSplineSet -AlternateSubs2: "'ssty' Script Style 4-1" uni2057.ssty uni2057.ssty +Fore +Refer: 4394 -1 N 0.75 0 0 0.75 0 381 2 +AlternateSubs2: "'ssty' Script Style 4-1" uni2057.ssty1 uni2057.ssty2 EndChar StartChar: uni205F @@ -123118,42 +123139,8 @@ SplineSet EndSplineSet EndChar -StartChar: NameMe.1114478 -Encoding: 1114450 -1 3659 -Width: 511 -Flags: W -HStem: 107 107<223 289 223 289> -VStem: 223 66<107 214> -LayerCount: 2 -Fore -SplineSet -289 107 m 1 - 223 107 l 1 - 223 214 l 1 - 289 214 l 1 - 289 107 l 1 -EndSplineSet -EndChar - -StartChar: NameMe.1114479 -Encoding: 1114451 -1 3660 -Width: 229 -Flags: W -HStem: 220 66<61 168 61 168> -VStem: 61 107<220 286 220 286> -LayerCount: 2 -Fore -SplineSet -168 220 m 1 - 61 220 l 1 - 61 286 l 1 - 168 286 l 1 - 168 220 l 1 -EndSplineSet -EndChar - StartChar: uni2190.ex -Encoding: 1114452 -1 3661 +Encoding: 1114452 -1 3659 Width: 315 Flags: W HStem: 220 66<0 315 0 315> @@ -123169,7 +123156,7 @@ EndSplineSet EndChar StartChar: zero.onum -Encoding: 1114453 -1 3662 +Encoding: 1114453 -1 3660 Width: 523 Flags: W HStem: -10 21<209.5 311 209.5 335> 402 20<217.5 313> @@ -123191,7 +123178,7 @@ EndSplineSet EndChar StartChar: one.onum -Encoding: 1114454 -1 3663 +Encoding: 1114454 -1 3661 Width: 523 Flags: W HStem: 0 20 @@ -123216,7 +123203,7 @@ EndSplineSet EndChar StartChar: two.onum -Encoding: 1114455 -1 3664 +Encoding: 1114455 -1 3662 Width: 523 Flags: W HStem: 0 61<184 336 336 373.5 184 455> 380 41<218 272.5> @@ -123242,7 +123229,7 @@ EndSplineSet EndChar StartChar: three.onum -Encoding: 1114456 -1 3665 +Encoding: 1114456 -1 3663 Width: 523 Flags: W HStem: -198 36<203.5 254.5> 385 39<231 283.5> @@ -123271,7 +123258,7 @@ EndSplineSet EndChar StartChar: four.onum -Encoding: 1114457 -1 3666 +Encoding: 1114457 -1 3664 Width: 523 Flags: W HStem: -33 61<101 307 101 307 58 307 403 480> @@ -123299,7 +123286,7 @@ EndSplineSet EndChar StartChar: five.onum -Encoding: 1114458 -1 3667 +Encoding: 1114458 -1 3665 Width: 523 Flags: W HStem: -198 40<241 293.5> 348 73<174 174 174 414> @@ -123327,7 +123314,7 @@ EndSplineSet EndChar StartChar: six.onum -Encoding: 1114459 -1 3668 +Encoding: 1114459 -1 3666 Width: 523 Flags: W HStem: -8 27<229.5 324 229.5 361> 348 36<247.5 276.5> @@ -123353,7 +123340,7 @@ EndSplineSet EndChar StartChar: seven.onum -Encoding: 1114460 -1 3669 +Encoding: 1114460 -1 3667 Width: 523 Flags: W HStem: 347 74<140.5 177 177 399> @@ -123373,7 +123360,7 @@ EndSplineSet EndChar StartChar: eight.onum -Encoding: 1114461 -1 3670 +Encoding: 1114461 -1 3668 Width: 523 Flags: W HStem: -12 27<233 325.5 233 353> 580 26<213.5 287.5> @@ -123405,7 +123392,7 @@ EndSplineSet EndChar StartChar: nine.onum -Encoding: 1114462 -1 3671 +Encoding: 1114462 -1 3669 Width: 523 Flags: W HStem: 28 36<237.5 285.5> 393 28<204.5 302.5> @@ -123430,190 +123417,199 @@ SplineSet EndSplineSet EndChar -StartChar: uni2032.ssty -Encoding: 1114463 -1 3672 -Width: 340 +StartChar: uni2032.ssty2 +Encoding: 1114463 -1 3670 +Width: 501 Flags: W +VStem: 125 34<37.5294 56.8182> LayerCount: 2 Fore SplineSet -78 28 m 1 - 44 40 l 1 - 70 163 133 438 151 496 c 0 - 167 547 197 565 227 565 c 0 - 263 565 295 543 295 494 c 0 - 295 483 290 459 285 447 c 0 - 264 390 139 141 78 28 c 1 +159 28 m 1 + 125 40 l 1 + 151 163 214 438 232 496 c 0 + 248 547 278 565 308 565 c 0 + 344 565 376 543 376 494 c 0 + 376 483 371 459 366 447 c 0 + 345 390 220 141 159 28 c 1 EndSplineSet EndChar -StartChar: uni2033.ssty -Encoding: 1114464 -1 3673 -Width: 605 +StartChar: uni2033.ssty2 +Encoding: 1114464 -1 3671 +Width: 768 Flags: W +VStem: 125 33<37.4545 56.8182> 391 34<37.5294 56.8182> LayerCount: 2 Fore SplineSet -343 28 m 1 - 309 40 l 1 - 335 163 396 438 414 496 c 0 - 430 547 463 565 493 565 c 0 - 529 565 561 543 561 494 c 0 - 561 483 555 459 550 447 c 0 - 529 390 404 141 343 28 c 1 -76 28 m 1 - 43 40 l 1 - 69 163 133 438 150 496 c 0 - 165 547 197 565 227 565 c 0 - 263 565 295 543 295 494 c 0 - 295 483 289 459 284 447 c 0 - 262 390 138 141 76 28 c 1 +425 28 m 1 + 391 40 l 1 + 417 163 478 438 496 496 c 0 + 512 547 545 565 575 565 c 0 + 611 565 643 543 643 494 c 0 + 643 483 637 459 632 447 c 0 + 611 390 486 141 425 28 c 1 +158 28 m 1 + 125 40 l 1 + 151 163 215 438 232 496 c 0 + 247 547 279 565 309 565 c 0 + 345 565 377 543 377 494 c 0 + 377 483 371 459 366 447 c 0 + 344 390 220 141 158 28 c 1 EndSplineSet EndChar -StartChar: uni2034.ssty -Encoding: 1114465 -1 3674 -Width: 873 +StartChar: uni2034.ssty2 +Encoding: 1114465 -1 3672 +Width: 1036 Flags: W +VStem: 125 33<37.4545 56.8182> 392 33<37.4545 56.8182> 659 33<37.4545 56.8182> +CounterMasks: 1 e0 LayerCount: 2 Fore SplineSet -610 28 m 1 - 577 40 l 1 - 603 163 667 438 684 496 c 0 - 699 547 731 565 761 565 c 0 - 797 565 829 543 829 494 c 0 - 829 483 823 459 818 447 c 0 - 796 390 672 141 610 28 c 1 -343 28 m 1 - 310 40 l 1 - 336 163 400 438 417 496 c 0 - 432 547 464 565 494 565 c 0 - 530 565 562 543 562 494 c 0 - 562 483 556 459 551 447 c 0 - 529 390 405 141 343 28 c 1 -76 28 m 1 - 43 40 l 1 - 69 163 133 438 150 496 c 0 - 165 547 197 565 227 565 c 0 - 263 565 295 543 295 494 c 0 - 295 483 289 459 284 447 c 0 - 262 390 138 141 76 28 c 1 -EndSplineSet -EndChar - -StartChar: uni2035.ssty -Encoding: 1114466 -1 3675 -Width: 340 +692 28 m 1 + 659 40 l 1 + 685 163 749 438 766 496 c 0 + 781 547 813 565 843 565 c 0 + 879 565 911 543 911 494 c 0 + 911 483 905 459 900 447 c 0 + 878 390 754 141 692 28 c 1 +425 28 m 1 + 392 40 l 1 + 418 163 482 438 499 496 c 0 + 514 547 546 565 576 565 c 0 + 612 565 644 543 644 494 c 0 + 644 483 638 459 633 447 c 0 + 611 390 487 141 425 28 c 1 +158 28 m 1 + 125 40 l 1 + 151 163 215 438 232 496 c 0 + 247 547 279 565 309 565 c 0 + 345 565 377 543 377 494 c 0 + 377 483 371 459 366 447 c 0 + 344 390 220 141 158 28 c 1 +EndSplineSet +EndChar + +StartChar: uni2035.ssty2 +Encoding: 1114466 -1 3673 +Width: 501 Flags: W +VStem: 342 34<37.5294 56.8182> LayerCount: 2 Fore SplineSet -296 40 m 1 - 262 28 l 1 - 201 141 76 390 55 447 c 0 - 50 459 45 483 45 494 c 0 - 45 543 77 565 113 565 c 0 - 143 565 173 547 189 496 c 0 - 207 438 270 163 296 40 c 1 +376 40 m 1 + 342 28 l 1 + 281 141 156 390 135 447 c 0 + 130 459 125 483 125 494 c 0 + 125 543 157 565 193 565 c 0 + 223 565 253 547 269 496 c 0 + 287 438 350 163 376 40 c 1 EndSplineSet EndChar -StartChar: uni2036.ssty -Encoding: 1114467 -1 3676 -Width: 605 +StartChar: uni2036.ssty2 +Encoding: 1114467 -1 3674 +Width: 767 Flags: W +VStem: 342 34<37.5294 56.8182> 609 33<37.4545 56.8182> LayerCount: 2 Fore SplineSet -561 40 m 1 - 528 28 l 1 - 466 141 342 390 320 447 c 0 - 315 459 310 483 310 494 c 0 - 310 543 342 565 378 565 c 0 - 408 565 439 547 454 496 c 0 - 471 438 535 163 561 40 c 1 -295 40 m 1 - 261 28 l 1 - 200 141 75 390 54 447 c 0 - 49 459 44 483 44 494 c 0 - 44 543 76 565 112 565 c 0 - 142 565 175 547 191 496 c 0 - 209 438 269 163 295 40 c 1 +642 40 m 1 + 609 28 l 1 + 547 141 423 390 401 447 c 0 + 396 459 391 483 391 494 c 0 + 391 543 423 565 459 565 c 0 + 489 565 520 547 535 496 c 0 + 552 438 616 163 642 40 c 1 +376 40 m 1 + 342 28 l 1 + 281 141 156 390 135 447 c 0 + 130 459 125 483 125 494 c 0 + 125 543 157 565 193 565 c 0 + 223 565 256 547 272 496 c 0 + 290 438 350 163 376 40 c 1 EndSplineSet EndChar -StartChar: uni2037.ssty -Encoding: 1114468 -1 3677 -Width: 873 +StartChar: uni2037.ssty2 +Encoding: 1114468 -1 3675 +Width: 1036 Flags: W +VStem: 344 33<37.4545 56.8182> 611 33<37.4545 56.8182> 878 33<37.4545 56.8182> +CounterMasks: 1 e0 LayerCount: 2 Fore SplineSet -829 40 m 1 - 796 28 l 1 - 734 141 610 390 588 447 c 0 - 583 459 577 483 577 494 c 0 - 577 543 609 565 645 565 c 0 - 675 565 707 547 722 496 c 0 - 739 438 803 163 829 40 c 1 -562 40 m 1 - 529 28 l 1 - 467 141 343 390 321 447 c 0 - 316 459 310 483 310 494 c 0 - 310 543 342 565 378 565 c 0 - 408 565 440 547 455 496 c 0 - 472 438 536 163 562 40 c 1 -295 40 m 1 - 262 28 l 1 - 200 141 76 390 54 447 c 0 - 49 459 43 483 43 494 c 0 - 43 543 75 565 111 565 c 0 - 141 565 173 547 188 496 c 0 - 205 438 269 163 295 40 c 1 -EndSplineSet -EndChar - -StartChar: uni2057.ssty -Encoding: 1114469 -1 3678 -Width: 1139 -Flags: W -LayerCount: 2 -Fore -SplineSet -877 28 m 1 - 844 40 l 1 - 870 163 934 438 951 496 c 0 - 966 547 998 565 1028 565 c 0 - 1064 565 1096 543 1096 494 c 0 - 1096 483 1090 459 1085 447 c 0 - 1063 390 939 141 877 28 c 1 -610 28 m 1 - 577 40 l 1 - 603 163 667 438 684 496 c 0 - 699 547 731 565 761 565 c 0 - 797 565 829 543 829 494 c 0 - 829 483 823 459 818 447 c 0 - 796 390 672 141 610 28 c 1 -343 28 m 1 - 310 40 l 1 - 336 163 400 438 417 496 c 0 - 432 547 464 565 494 565 c 0 - 530 565 562 543 562 494 c 0 - 562 483 556 459 551 447 c 0 - 529 390 405 141 343 28 c 1 -76 28 m 1 - 43 40 l 1 - 69 163 133 438 150 496 c 0 - 165 547 197 565 227 565 c 0 - 263 565 295 543 295 494 c 0 - 295 483 289 459 284 447 c 0 - 262 390 138 141 76 28 c 1 +911 40 m 1 + 878 28 l 1 + 816 141 692 390 670 447 c 0 + 665 459 659 483 659 494 c 0 + 659 543 691 565 727 565 c 0 + 757 565 789 547 804 496 c 0 + 821 438 885 163 911 40 c 1 +644 40 m 1 + 611 28 l 1 + 549 141 425 390 403 447 c 0 + 398 459 392 483 392 494 c 0 + 392 543 424 565 460 565 c 0 + 490 565 522 547 537 496 c 0 + 554 438 618 163 644 40 c 1 +377 40 m 1 + 344 28 l 1 + 282 141 158 390 136 447 c 0 + 131 459 125 483 125 494 c 0 + 125 543 157 565 193 565 c 0 + 223 565 255 547 270 496 c 0 + 287 438 351 163 377 40 c 1 +EndSplineSet +EndChar + +StartChar: uni2057.ssty2 +Encoding: 1114469 -1 3676 +Width: 1303 +Flags: W +VStem: 125 33<37.4545 56.8182> 392 33<37.4545 56.8182> 659 33<37.4545 56.8182> 926 33<37.4545 56.8182> +LayerCount: 2 +Fore +SplineSet +959 28 m 1 + 926 40 l 1 + 952 163 1016 438 1033 496 c 0 + 1048 547 1080 565 1110 565 c 0 + 1146 565 1178 543 1178 494 c 0 + 1178 483 1172 459 1167 447 c 0 + 1145 390 1021 141 959 28 c 1 +692 28 m 1 + 659 40 l 1 + 685 163 749 438 766 496 c 0 + 781 547 813 565 843 565 c 0 + 879 565 911 543 911 494 c 0 + 911 483 905 459 900 447 c 0 + 878 390 754 141 692 28 c 1 +425 28 m 1 + 392 40 l 1 + 418 163 482 438 499 496 c 0 + 514 547 546 565 576 565 c 0 + 612 565 644 543 644 494 c 0 + 644 483 638 459 633 447 c 0 + 611 390 487 141 425 28 c 1 +158 28 m 1 + 125 40 l 1 + 151 163 215 438 232 496 c 0 + 247 547 279 565 309 565 c 0 + 345 565 377 543 377 494 c 0 + 377 483 371 459 366 447 c 0 + 344 390 220 141 158 28 c 1 EndSplineSet EndChar StartChar: u1D49C.cal -Encoding: 1114470 -1 3679 +Encoding: 1114470 -1 3677 Width: 852 Flags: W HStem: -45 90<149 166> -31 62<645 741> 160 40<364 364 391 578 341 364> 657 20<629 657 657 657> @@ -123646,7 +123642,7 @@ EndSplineSet EndChar StartChar: uni212C.cal -Encoding: 1114471 -1 3680 +Encoding: 1114471 -1 3678 Width: 724 Flags: W HStem: -3 34<338.5 417 338.5 425> 0 20 623 47<542 568> @@ -123689,7 +123685,7 @@ EndSplineSet EndChar StartChar: u1D49E.cal -Encoding: 1114472 -1 3681 +Encoding: 1114472 -1 3679 Width: 569 Flags: W HStem: -11 43<268 359.5> 636 35<456.5 467.5> @@ -123716,7 +123712,7 @@ EndSplineSet EndChar StartChar: u1D49F.cal -Encoding: 1114473 -1 3682 +Encoding: 1114473 -1 3680 Width: 801 Flags: W HStem: 0 40<271 309> 622 40<419 523.5> @@ -123748,7 +123744,7 @@ EndSplineSet EndChar StartChar: uni2130.cal -Encoding: 1114474 -1 3683 +Encoding: 1114474 -1 3681 Width: 553 Flags: W HStem: -4 54<166.5 313.5> 0 20 637 33<405.5 472> @@ -123780,7 +123776,7 @@ EndSplineSet EndChar StartChar: uni2131.cal -Encoding: 1114475 -1 3684 +Encoding: 1114475 -1 3682 Width: 652 Flags: W HStem: 0 20 337 40<328 533 317 546> 445 20<627 664> 606 56<186.5 443> @@ -123813,7 +123809,7 @@ EndSplineSet EndChar StartChar: u1D4A2.cal -Encoding: 1114476 -1 3685 +Encoding: 1114476 -1 3683 Width: 580 Flags: W HStem: -131 35<182.5 250.5 182.5 250.5> 38 43<241.5 284> 636 35<399 463> @@ -123847,7 +123843,7 @@ EndSplineSet EndChar StartChar: uni210B.cal -Encoding: 1114477 -1 3686 +Encoding: 1114477 -1 3684 Width: 831 Flags: W HStem: -21 47<612 706> 0 20 337 40<354 573 315 611> 608 56<193 335> @@ -123890,7 +123886,7 @@ EndSplineSet EndChar StartChar: uni2110.cal -Encoding: 1114478 -1 3687 +Encoding: 1114478 -1 3685 Width: 575 Flags: W HStem: 0 20 @@ -123920,7 +123916,7 @@ EndSplineSet EndChar StartChar: u1D4A5.cal -Encoding: 1114479 -1 3688 +Encoding: 1114479 -1 3686 Width: 632 Flags: W HStem: -120 40<205.5 297> @@ -123950,7 +123946,7 @@ EndSplineSet EndChar StartChar: u1D4A6.cal -Encoding: 1114480 -1 3689 +Encoding: 1114480 -1 3687 Width: 809 Flags: W HStem: -13 65<550.5 603.5> 0 20 443 20<686 726> 630 40<614 676> @@ -123987,7 +123983,7 @@ EndSplineSet EndChar StartChar: uni2112.cal -Encoding: 1114481 -1 3690 +Encoding: 1114481 -1 3688 Width: 693 Flags: W HStem: -7 67<419 439> 0 20 630 40<437.5 471.5> @@ -124019,7 +124015,7 @@ EndSplineSet EndChar StartChar: uni2133.cal -Encoding: 1114482 -1 3691 +Encoding: 1114482 -1 3689 Width: 1166 Flags: W HStem: -45 87<150 152.5> -32 59<974.5 1065> 651 20<385 415 415 415 1041 1068 1068 1068> @@ -124056,7 +124052,7 @@ EndSplineSet EndChar StartChar: u1D4A9.cal -Encoding: 1114483 -1 3692 +Encoding: 1114483 -1 3690 Width: 957 Flags: W HStem: -37 87<150 204> 708 87<953.5 954> @@ -124086,7 +124082,7 @@ EndSplineSet EndChar StartChar: u1D4AA.cal -Encoding: 1114484 -1 3693 +Encoding: 1114484 -1 3691 Width: 737 Flags: W HStem: -10 40<262 338> 368 100<408.5 425> 613 56<495 532.5> @@ -124117,7 +124113,7 @@ EndSplineSet EndChar StartChar: u1D4AB.cal -Encoding: 1114485 -1 3694 +Encoding: 1114485 -1 3692 Width: 667 Flags: W HStem: 0 20 @@ -124147,7 +124143,7 @@ EndSplineSet EndChar StartChar: u1D4AC.cal -Encoding: 1114486 -1 3695 +Encoding: 1114486 -1 3693 Width: 744 Flags: W HStem: -131 53<513 515> 0 20 90 50<251.5 267.5> 630 41<351.5 508> @@ -124182,7 +124178,7 @@ EndSplineSet EndChar StartChar: uni211B.cal -Encoding: 1114487 -1 3696 +Encoding: 1114487 -1 3694 Width: 854 Flags: W HStem: -3 62<601.5 659.5> 0 20 620 42<414.5 497> @@ -124218,7 +124214,7 @@ EndSplineSet EndChar StartChar: u1D4AE.cal -Encoding: 1114488 -1 3697 +Encoding: 1114488 -1 3695 Width: 634 Flags: W HStem: 0 41<259 327 259 367> 634 37<455 497> @@ -124246,7 +124242,7 @@ EndSplineSet EndChar StartChar: u1D4AF.cal -Encoding: 1114489 -1 3698 +Encoding: 1114489 -1 3696 Width: 509 Flags: W HStem: 0 20 600 63<258 447> @@ -124272,7 +124268,7 @@ EndSplineSet EndChar StartChar: u1D4B0.cal -Encoding: 1114490 -1 3699 +Encoding: 1114490 -1 3697 Width: 817 Flags: W HStem: -13 50<303.5 461> 606 56<188 331.5> 616 56<830 835> @@ -124307,7 +124303,7 @@ EndSplineSet EndChar StartChar: u1D4B1.cal -Encoding: 1114491 -1 3700 +Encoding: 1114491 -1 3698 Width: 638 Flags: W HStem: 599 78<562.5 564 517.5 597> 622 40<122.5 170> @@ -124339,7 +124335,7 @@ EndSplineSet EndChar StartChar: u1D4B2.cal -Encoding: 1114492 -1 3701 +Encoding: 1114492 -1 3699 Width: 956 Flags: W HStem: 615 70<885.5 913.5 851 917> 626 36<124.5 145> @@ -124379,7 +124375,7 @@ EndSplineSet EndChar StartChar: u1D4B3.cal -Encoding: 1114493 -1 3702 +Encoding: 1114493 -1 3700 Width: 692 Flags: W HStem: -13 92<103 109 103 125.5> 0 62<532 536> 579 93<656 668.5> 600 62<295 300> @@ -124420,7 +124416,7 @@ EndSplineSet EndChar StartChar: u1D4B4.cal -Encoding: 1114494 -1 3703 +Encoding: 1114494 -1 3701 Width: 719 Flags: W HStem: -131 81<148.5 202.5 148.5 280.5> 603 72<647.5 664 605.5 679.5> 618 44<209 247.5> @@ -124452,7 +124448,7 @@ EndSplineSet EndChar StartChar: u1D4B5.cal -Encoding: 1114495 -1 3704 +Encoding: 1114495 -1 3702 Width: 752 Flags: W HStem: -94 53<453 480> 0 20 337 38<276 373 261 406 459 552 276 426> 561 81<479 603> 609 55<383 390> @@ -124494,7 +124490,7 @@ EndSplineSet EndChar StartChar: u1D4D0.cal -Encoding: 1114496 -1 3705 +Encoding: 1114496 -1 3703 Width: 871 Flags: W HStem: -47 105<172.5 184> -32 73<644 756.5> 165 56<385 566 385 566 356 566> @@ -124523,7 +124519,7 @@ EndSplineSet EndChar StartChar: u1D4D1.cal -Encoding: 1114497 -1 3706 +Encoding: 1114497 -1 3704 Width: 755 Flags: W HStem: -10 53<365 421 353.5 466.5> 0 20 644 59<565.5 577.5> @@ -124564,7 +124560,7 @@ EndSplineSet EndChar StartChar: u1D4D2.cal -Encoding: 1114498 -1 3707 +Encoding: 1114498 -1 3705 Width: 667 Flags: W HStem: -12 55<307.5 401 307.5 410> 652 52<505.5 516> @@ -124591,7 +124587,7 @@ EndSplineSet EndChar StartChar: u1D4D3.cal -Encoding: 1114499 -1 3708 +Encoding: 1114499 -1 3706 Width: 802 Flags: W HStem: 0 55<286 317> 641 55<430 521> @@ -124622,7 +124618,7 @@ EndSplineSet EndChar StartChar: u1D4D4.cal -Encoding: 1114500 -1 3709 +Encoding: 1114500 -1 3707 Width: 609 Flags: W HStem: -8 66<182.5 321.5> 651 53<425.5 479.5> @@ -124654,7 +124650,7 @@ EndSplineSet EndChar StartChar: u1D4D5.cal -Encoding: 1114501 -1 3710 +Encoding: 1114501 -1 3708 Width: 645 Flags: W HStem: 0 20 363 55<357 552 344 572> @@ -124688,7 +124684,7 @@ EndSplineSet EndChar StartChar: u1D4D6.cal -Encoding: 1114502 -1 3711 +Encoding: 1114502 -1 3709 Width: 615 Flags: W HStem: -144 52<226.5 272> 37 54<286 295.5> 652 52<396.5 476.5> @@ -124721,7 +124717,7 @@ EndSplineSet EndChar StartChar: u1D4D7.cal -Encoding: 1114503 -1 3712 +Encoding: 1114503 -1 3710 Width: 849 Flags: W HStem: -24 56 0 20 348 55<374 537 331 587> 629 67<183 339.5> @@ -124765,7 +124761,7 @@ EndSplineSet EndChar StartChar: u1D4D8.cal -Encoding: 1114504 -1 3713 +Encoding: 1114504 -1 3711 Width: 621 Flags: W HStem: 0 20 @@ -124795,7 +124791,7 @@ EndSplineSet EndChar StartChar: u1D4D9.cal -Encoding: 1114505 -1 3714 +Encoding: 1114505 -1 3712 Width: 645 Flags: W HStem: -116 51<220 311 220 313.5> @@ -124825,7 +124821,7 @@ EndSplineSet EndChar StartChar: u1D4DA.cal -Encoding: 1114506 -1 3715 +Encoding: 1114506 -1 3713 Width: 856 Flags: W HStem: -14 78<583.5 630> 0 20 641 62<633 684> @@ -124863,7 +124859,7 @@ EndSplineSet EndChar StartChar: u1D4DB.cal -Encoding: 1114507 -1 3716 +Encoding: 1114507 -1 3714 Width: 726 Flags: W HStem: -8 81<452 467.5> 0 20 651 53<441.5 484.5> @@ -124893,7 +124889,7 @@ EndSplineSet EndChar StartChar: u1D4DC.cal -Encoding: 1114508 -1 3717 +Encoding: 1114508 -1 3715 Width: 1186 Flags: W HStem: -45 105<113 244> -36 73<974.5 1068> @@ -124928,7 +124924,7 @@ EndSplineSet EndChar StartChar: u1D4DD.cal -Encoding: 1114509 -1 3718 +Encoding: 1114509 -1 3716 Width: 997 Flags: W HStem: -39 86<164.5 227> 744 91<940.5 960> @@ -124956,7 +124952,7 @@ EndSplineSet EndChar StartChar: u1D4DE.cal -Encoding: 1114510 -1 3719 +Encoding: 1114510 -1 3717 Width: 772 Flags: W HStem: -10 53<289.5 418 289.5 423> 388 130<437.5 449.5 437.5 472> 639 68<529.5 571> @@ -124985,7 +124981,7 @@ EndSplineSet EndChar StartChar: u1D4DF.cal -Encoding: 1114511 -1 3720 +Encoding: 1114511 -1 3718 Width: 645 Flags: W HStem: 0 20 @@ -125015,7 +125011,7 @@ EndSplineSet EndChar StartChar: u1D4E0.cal -Encoding: 1114512 -1 3721 +Encoding: 1114512 -1 3719 Width: 778 Flags: W HStem: -145 69<413.5 595.5> 91 63<178 330> 652 52<371.5 509.5> @@ -125049,7 +125045,7 @@ EndSplineSet EndChar StartChar: u1D4E1.cal -Encoding: 1114513 -1 3722 +Encoding: 1114513 -1 3720 Width: 869 Flags: W HStem: -13 77<629.5 672> 0 20 643 54<425.5 495.5> @@ -125084,7 +125080,7 @@ EndSplineSet EndChar StartChar: u1D4E2.cal -Encoding: 1114514 -1 3723 +Encoding: 1114514 -1 3721 Width: 667 Flags: W HStem: -7 54<234 340.5 234 398> 652 53<454.5 511> @@ -125112,7 +125108,7 @@ EndSplineSet EndChar StartChar: u1D4E3.cal -Encoding: 1114515 -1 3724 +Encoding: 1114515 -1 3722 Width: 547 Flags: W HStem: 0 20 624 74<231 451.5> 671 20<518.5 570> @@ -125138,7 +125134,7 @@ EndSplineSet EndChar StartChar: u1D4E4.cal -Encoding: 1114516 -1 3725 +Encoding: 1114516 -1 3723 Width: 787 Flags: W HStem: -14 55<321.5 374 321.5 404.5> 598 102<775 811> 631 65<192.5 342> @@ -125172,7 +125168,7 @@ EndSplineSet EndChar StartChar: u1D4E5.cal -Encoding: 1114517 -1 3726 +Encoding: 1114517 -1 3724 Width: 652 Flags: W HStem: 578 133<613.5 631> 644 52<134 174> @@ -125200,7 +125196,7 @@ EndSplineSet EndChar StartChar: u1D4E6.cal -Encoding: 1114518 -1 3727 +Encoding: 1114518 -1 3725 Width: 956 Flags: W HStem: 573 138<918 935> 637 59<138 159> @@ -125236,7 +125232,7 @@ EndSplineSet EndChar StartChar: u1D4E7.cal -Encoding: 1114519 -1 3728 +Encoding: 1114519 -1 3726 Width: 720 Flags: W HStem: -14 20 0 70<481.5 579.5> 623 73<269.5 371.5> @@ -125273,7 +125269,7 @@ EndSplineSet EndChar StartChar: u1D4E8.cal -Encoding: 1114520 -1 3729 +Encoding: 1114520 -1 3727 Width: 720 Flags: W HStem: -144 86<161 208.5 161 243> 575 136<680.5 698> 635 61<220 252.5> @@ -125305,7 +125301,7 @@ EndSplineSet EndChar StartChar: u1D4E9.cal -Encoding: 1114521 -1 3730 +Encoding: 1114521 -1 3728 Width: 778 Flags: W HStem: -98 72<484.5 493> 0 20 363 55<280 390 256 432 499 591 280 463> 626 76<330 466.5> 655 20<565 609> @@ -125346,7 +125342,7 @@ EndSplineSet EndChar StartChar: u1D48A.dtls -Encoding: 1114522 -1 3731 +Encoding: 1114522 -1 3729 Width: 357 Flags: W HStem: -9 20 442 20<266 266> @@ -125372,7 +125368,7 @@ EndSplineSet EndChar StartChar: u1D48B.dtls -Encoding: 1114523 -1 3732 +Encoding: 1114523 -1 3730 Width: 514 Flags: W HStem: -207 31<148 168 148 202> 442 20<475 475> @@ -125399,7 +125395,7 @@ EndSplineSet EndChar StartChar: u1D422.dtls -Encoding: 1114524 -1 3733 +Encoding: 1114524 -1 3731 Width: 278 Flags: W HStem: 0 20 441 20<15 208 208 208> @@ -125421,7 +125417,7 @@ EndSplineSet EndChar StartChar: u1D423.dtls -Encoding: 1114525 -1 3734 +Encoding: 1114525 -1 3732 Width: 333 Flags: W HStem: -203 31<63.5 90 63.5 117.5> 441 20<58 260 260 260> @@ -125447,7 +125443,7 @@ EndSplineSet EndChar StartChar: uni0391.ss -Encoding: 1114526 -1 3735 +Encoding: 1114526 -1 3733 Width: 666 Flags: W HStem: 0 20 200 74<239 427 239 457 208 427> 654 20<320 346 346 346> @@ -125471,7 +125467,7 @@ EndSplineSet EndChar StartChar: uni0392.ss -Encoding: 1114527 -1 3736 +Encoding: 1114527 -1 3734 Width: 604 Flags: W HStem: 0 74<161 287 287 314> 317 77<161 240 161 251> 588 74<161 279 279 291 161 161> @@ -125505,7 +125501,7 @@ EndSplineSet EndChar StartChar: uni0393.ss -Encoding: 1114528 -1 3737 +Encoding: 1114528 -1 3735 Width: 535 Flags: W HStem: 0 20 588 74<161 514 74 523 161 161> @@ -125524,7 +125520,7 @@ EndSplineSet EndChar StartChar: uni0394.ss -Encoding: 1114529 -1 3738 +Encoding: 1114529 -1 3736 Width: 666 Flags: W HStem: 0 74<157 509 157 635> 654 20<320 346 346 346> @@ -125544,7 +125540,7 @@ EndSplineSet EndChar StartChar: uni0395.ss -Encoding: 1114530 -1 3739 +Encoding: 1114530 -1 3737 Width: 583 Flags: W HStem: 0 74<161 523> 311 75<161 466 161 466> 588 74<161 513 161 161> @@ -125569,7 +125565,7 @@ EndSplineSet EndChar StartChar: uni0396.ss -Encoding: 1114531 -1 3740 +Encoding: 1114531 -1 3738 Width: 637 Flags: W HStem: 0 74<170 595> 588 74<70 454 62 598> @@ -125591,7 +125587,7 @@ EndSplineSet EndChar StartChar: uni0397.ss -Encoding: 1114532 -1 3741 +Encoding: 1114532 -1 3739 Width: 658 Flags: W HStem: 0 20 301 74<161 497 161 497> @@ -125616,7 +125612,7 @@ EndSplineSet EndChar StartChar: uni0398.ss -Encoding: 1114533 -1 3742 +Encoding: 1114533 -1 3740 Width: 714 Flags: W HStem: -14 76<283.5 430.5 283.5 450.5> 295 74<188 526 188 533 181 526> 600 76<283.5 430.5> @@ -125643,7 +125639,7 @@ EndSplineSet EndChar StartChar: uni0399.ss -Encoding: 1114534 -1 3743 +Encoding: 1114534 -1 3741 Width: 401 Flags: W HStem: 0 74<59 156 245 347 59 59> 588 74<59 156 45 347 245 245 245 347 59 356> @@ -125668,7 +125664,7 @@ EndSplineSet EndChar StartChar: uni039A.ss -Encoding: 1114535 -1 3744 +Encoding: 1114535 -1 3742 Width: 634 Flags: W HStem: 0 20 @@ -125694,7 +125690,7 @@ EndSplineSet EndChar StartChar: uni039B.ss -Encoding: 1114536 -1 3745 +Encoding: 1114536 -1 3743 Width: 666 Flags: W HStem: 0 20 654 20<320 346 346 346> @@ -125713,7 +125709,7 @@ EndSplineSet EndChar StartChar: uni039C.ss -Encoding: 1114537 -1 3746 +Encoding: 1114537 -1 3744 Width: 843 Flags: W HStem: 0 20 @@ -125739,7 +125735,7 @@ EndSplineSet EndChar StartChar: uni039D.ss -Encoding: 1114538 -1 3747 +Encoding: 1114538 -1 3745 Width: 675 Flags: W HStem: -14 20 0 20 @@ -125762,7 +125758,7 @@ EndSplineSet EndChar StartChar: uni039E.ss -Encoding: 1114539 -1 3748 +Encoding: 1114539 -1 3746 Width: 643 Flags: W HStem: 0 87<38 605 38 38> 311 74<138 505 138 505> 588 74<63 580 63 588 55 580> @@ -125788,7 +125784,7 @@ EndSplineSet EndChar StartChar: uni039F.ss -Encoding: 1114540 -1 3749 +Encoding: 1114540 -1 3747 Width: 714 Flags: W HStem: -14 76<283.5 430.5 283.5 450.5> 600 76<283.5 430.5> @@ -125810,7 +125806,7 @@ EndSplineSet EndChar StartChar: uni03A0.ss -Encoding: 1114541 -1 3750 +Encoding: 1114541 -1 3748 Width: 658 Flags: W HStem: 0 20 588 74<161 497 161 161> @@ -125831,7 +125827,7 @@ EndSplineSet EndChar StartChar: uni03A1.ss -Encoding: 1114542 -1 3751 +Encoding: 1114542 -1 3749 Width: 525 Flags: W HStem: 0 20 285 74<161 249 249 281 161 249> 588 74<161 244 161 161> @@ -125857,7 +125853,7 @@ EndSplineSet EndChar StartChar: uni03F4.ss -Encoding: 1114543 -1 3752 +Encoding: 1114543 -1 3750 Width: 714 Flags: W HStem: -14 76<289 425 289 450.5> 295 74<119 595 119 595 118 595> 600 76<289 424.5> @@ -125881,7 +125877,7 @@ EndSplineSet EndChar StartChar: uni03A3.ss -Encoding: 1114544 -1 3753 +Encoding: 1114544 -1 3751 Width: 624 Flags: W HStem: 0 74<173 583> 588 74<179 547 179 179> @@ -125905,7 +125901,7 @@ EndSplineSet EndChar StartChar: uni03A4.ss -Encoding: 1114545 -1 3754 +Encoding: 1114545 -1 3752 Width: 608 Flags: W HStem: 0 20 588 74<25 260 15 583 348 583 25 593 348 348> @@ -125926,7 +125922,7 @@ EndSplineSet EndChar StartChar: uni03A5.ss -Encoding: 1114546 -1 3755 +Encoding: 1114546 -1 3753 Width: 690 Flags: W HStem: 0 20 600 76<79 96.5 593.5 611.5> @@ -125952,7 +125948,7 @@ EndSplineSet EndChar StartChar: uni03A6.ss -Encoding: 1114547 -1 3756 +Encoding: 1114547 -1 3754 Width: 716 Flags: W HStem: 0 20 @@ -125987,7 +125983,7 @@ EndSplineSet EndChar StartChar: uni03A7.ss -Encoding: 1114548 -1 3757 +Encoding: 1114548 -1 3755 Width: 700 Flags: W HStem: 0 20 @@ -126011,7 +126007,7 @@ EndSplineSet EndChar StartChar: uni03A8.ss -Encoding: 1114549 -1 3758 +Encoding: 1114549 -1 3756 Width: 724 Flags: W HStem: 0 20 661 20<12 25 25 64.5 699 712 712 712> @@ -126042,7 +126038,7 @@ EndSplineSet EndChar StartChar: uni03A9.ss -Encoding: 1114550 -1 3759 +Encoding: 1114550 -1 3757 Width: 744 Flags: W HStem: 0 87<39 237 29 321 39 39 508 705> 600 76<306 436> @@ -126073,7 +126069,7 @@ EndSplineSet EndChar StartChar: uni03B1.ss -Encoding: 1114551 -1 3760 +Encoding: 1114551 -1 3758 Width: 537 Flags: W HStem: -10 71<190 245 190 248> 392 71<186 243> @@ -126103,7 +126099,7 @@ EndSplineSet EndChar StartChar: uni03B2.ss -Encoding: 1114552 -1 3761 +Encoding: 1114552 -1 3759 Width: 498 Flags: W HStem: -14 71<237 301.5 237 320> 612 71<216 280> @@ -126138,7 +126134,7 @@ EndSplineSet EndChar StartChar: uni03B3.ss -Encoding: 1114553 -1 3762 +Encoding: 1114553 -1 3760 Width: 474 Flags: W HStem: 443 20<67 125> @@ -126162,7 +126158,7 @@ EndSplineSet EndChar StartChar: uni03B4.ss -Encoding: 1114554 -1 3763 +Encoding: 1114554 -1 3761 Width: 499 Flags: W HStem: -10 71<207 298 207 324.5> 612 71<220.5 272> @@ -126192,7 +126188,7 @@ EndSplineSet EndChar StartChar: uni03B5.ss -Encoding: 1114555 -1 3764 +Encoding: 1114555 -1 3762 Width: 438 Flags: W HStem: -10 71<178 237 178 256> 199 71<205.5 287 227 287> 392 71<195 255> @@ -126223,7 +126219,7 @@ EndSplineSet EndChar StartChar: uni03B6.ss -Encoding: 1114556 -1 3765 +Encoding: 1114556 -1 3763 Width: 416 Flags: W HStem: -213 72<252.5 278.5 252.5 297> -10 79<152.5 265 203 263> 663 20<83 94 94 94> @@ -126259,7 +126255,7 @@ EndSplineSet EndChar StartChar: uni03B7.ss -Encoding: 1114557 -1 3766 +Encoding: 1114557 -1 3764 Width: 494 Flags: W HStem: 0 20 392 71<263 288.5> @@ -126289,7 +126285,7 @@ EndSplineSet EndChar StartChar: uni03B8.ss -Encoding: 1114558 -1 3767 +Encoding: 1114558 -1 3765 Width: 446 Flags: W HStem: -10 71<187 266 187 297.5> 302 71<100 346 100 346> 612 71<187.5 266> @@ -126313,7 +126309,7 @@ EndSplineSet EndChar StartChar: uni03B9.ss -Encoding: 1114559 -1 3768 +Encoding: 1114559 -1 3766 Width: 270 Flags: W HStem: -10 71<175 184.5> @@ -126336,7 +126332,7 @@ EndSplineSet EndChar StartChar: uni03BA.ss -Encoding: 1114560 -1 3769 +Encoding: 1114560 -1 3767 Width: 472 Flags: W HStem: 0 20 @@ -126362,7 +126358,7 @@ EndSplineSet EndChar StartChar: uni03BB.ss -Encoding: 1114561 -1 3770 +Encoding: 1114561 -1 3768 Width: 489 Flags: W HStem: -11 20 0 20 663 20<94 123.5> @@ -126388,7 +126384,7 @@ EndSplineSet EndChar StartChar: uni03BC.ss -Encoding: 1114562 -1 3771 +Encoding: 1114562 -1 3769 Width: 487 Flags: W HStem: 433 20<63 142 142 142 345 424 424 424> @@ -126419,7 +126415,7 @@ EndSplineSet EndChar StartChar: uni03BD.ss -Encoding: 1114563 -1 3772 +Encoding: 1114563 -1 3770 Width: 460 Flags: W HStem: -14 20 @@ -126442,7 +126438,7 @@ EndSplineSet EndChar StartChar: uni03BE.ss -Encoding: 1114564 -1 3773 +Encoding: 1114564 -1 3771 Width: 418 Flags: W HStem: -215 72<254.5 280.5 254.5 299> -10 79<145 258 200 255> 663 20<94 106 106 106> @@ -126485,7 +126481,7 @@ EndSplineSet EndChar StartChar: uni03BF.ss -Encoding: 1114565 -1 3774 +Encoding: 1114565 -1 3772 Width: 499 Flags: W HStem: -10 71<207 298 207 324.5> 392 71<202.5 289> @@ -126507,7 +126503,7 @@ EndSplineSet EndChar StartChar: uni03C0.ss -Encoding: 1114566 -1 3775 +Encoding: 1114566 -1 3773 Width: 507 Flags: W HStem: -10 20 382 71<221 307 221 221 385 487 385 385> @@ -126535,7 +126531,7 @@ EndSplineSet EndChar StartChar: uni03C1.ss -Encoding: 1114567 -1 3776 +Encoding: 1114567 -1 3774 Width: 498 Flags: W HStem: -11 71<235.5 293.5 229 313> 391 71<247.5 295> @@ -126564,7 +126560,7 @@ EndSplineSet EndChar StartChar: uni03C2.ss -Encoding: 1114568 -1 3777 +Encoding: 1114568 -1 3775 Width: 416 Flags: W HStem: -212 72<247.5 273 245.5 298.5> -9 79<140 267 200 264> 392 71<225 287.5> @@ -126595,7 +126591,7 @@ EndSplineSet EndChar StartChar: uni03C3.ss -Encoding: 1114569 -1 3778 +Encoding: 1114569 -1 3776 Width: 526 Flags: W HStem: -10 71<207 298 207 325> 382 71<369 542 369 369> @@ -126620,7 +126616,7 @@ EndSplineSet EndChar StartChar: uni03C4.ss -Encoding: 1114570 -1 3779 +Encoding: 1114570 -1 3777 Width: 426 Flags: W HStem: -10 20 382 71<141.5 410 155 410 259 410 259 259> @@ -126646,7 +126642,7 @@ EndSplineSet EndChar StartChar: uni03C5.ss -Encoding: 1114571 -1 3780 +Encoding: 1114571 -1 3778 Width: 503 Flags: W HStem: -10 71<214.5 289 214.5 307> 443 20<103 114 114 114 245 302> @@ -126672,7 +126668,7 @@ EndSplineSet EndChar StartChar: uni03C6.ss -Encoding: 1114572 -1 3781 +Encoding: 1114572 -1 3779 Width: 632 Flags: W HStem: 384 79<399 442> @@ -126705,7 +126701,7 @@ EndSplineSet EndChar StartChar: uni03C7.ss -Encoding: 1114573 -1 3782 +Encoding: 1114573 -1 3780 Width: 399 Flags: W HStem: 443 20<63 114.5> @@ -126733,7 +126729,7 @@ EndSplineSet EndChar StartChar: uni03C8.ss -Encoding: 1114574 -1 3783 +Encoding: 1114574 -1 3781 Width: 654 Flags: W HStem: 441 20<12 72.5 581.5 642> @@ -126764,7 +126760,7 @@ EndSplineSet EndChar StartChar: uni03C9.ss -Encoding: 1114575 -1 3784 +Encoding: 1114575 -1 3782 Width: 624 Flags: W HStem: -10 71<175.5 211 175.5 218.5 413 448.5> 434 20<172 172 452 452> @@ -126799,7 +126795,7 @@ EndSplineSet EndChar StartChar: uni03F5.ss -Encoding: 1114576 -1 3785 +Encoding: 1114576 -1 3783 Width: 456 Flags: W HStem: -10 71<207.5 252> 210 71<109 297 109 297 102 297> 392 71<214 266.5 180 268> @@ -126828,7 +126824,7 @@ EndSplineSet EndChar StartChar: uni03D1.ss -Encoding: 1114577 -1 3786 +Encoding: 1114577 -1 3784 Width: 489 Flags: W HStem: -12 71<224 280.5> 613 70<195.5 238.5> @@ -126865,7 +126861,7 @@ EndSplineSet EndChar StartChar: uni03D5.ss -Encoding: 1114578 -1 3787 +Encoding: 1114578 -1 3785 Width: 622 Flags: W HStem: 664 20<344 344> @@ -126898,7 +126894,7 @@ EndSplineSet EndChar StartChar: uni03F1.ss -Encoding: 1114579 -1 3788 +Encoding: 1114579 -1 3786 Width: 491 Flags: W HStem: -10 71<225 299 208 325.5> 392 71<203.5 289.5> @@ -126930,7 +126926,7 @@ EndSplineSet EndChar StartChar: uni03D6.ss -Encoding: 1114580 -1 3789 +Encoding: 1114580 -1 3787 Width: 762 Flags: W HStem: -10 71<275 311 275 318 512.5 548> 382 71<144.5 739 158 739 294 294 294 529 643 739 643 643> @@ -126969,7 +126965,7 @@ EndSplineSet EndChar StartChar: u1D6E2.ss -Encoding: 1114581 -1 3790 +Encoding: 1114581 -1 3788 Width: 660 Flags: W HStem: 0 20 200 74<304 492 304 503 254 492> 654 20<485 511 511 511> @@ -126993,7 +126989,7 @@ EndSplineSet EndChar StartChar: u1D6E3.ss -Encoding: 1114582 -1 3791 +Encoding: 1114582 -1 3789 Width: 662 Flags: W HStem: 0 74<165 291 291 300> 317 77<245 305 226 335> 588 74<293 423 293 293> @@ -127025,7 +127021,7 @@ EndSplineSet EndChar StartChar: u1D6E4.ss -Encoding: 1114583 -1 3792 +Encoding: 1114583 -1 3790 Width: 562 Flags: W HStem: 0 20 588 74<293 655 293 293> @@ -127043,7 +127039,7 @@ EndSplineSet EndChar StartChar: u1D6E5.ss -Encoding: 1114584 -1 3793 +Encoding: 1114584 -1 3791 Width: 660 Flags: W HStem: 0 74<172 524 172 632> 654 20<485 511 511 511> @@ -127063,7 +127059,7 @@ EndSplineSet EndChar StartChar: u1D6E6.ss -Encoding: 1114585 -1 3794 +Encoding: 1114585 -1 3792 Width: 639 Flags: W HStem: 0 74<165 509> 311 75<243 529 224 548> 588 74<293 645 293 293> @@ -127087,7 +127083,7 @@ EndSplineSet EndChar StartChar: u1D6E7.ss -Encoding: 1114586 -1 3795 +Encoding: 1114586 -1 3793 Width: 698 Flags: W HStem: 0 74<185 592> 588 74<232 597 205 760> @@ -127109,7 +127105,7 @@ EndSplineSet EndChar StartChar: u1D6E8.ss -Encoding: 1114587 -1 3796 +Encoding: 1114587 -1 3794 Width: 700 Flags: W HStem: 0 20 301 74<240 558 222 576> @@ -127133,7 +127129,7 @@ EndSplineSet EndChar StartChar: u1D6E9.ss -Encoding: 1114588 -1 3797 +Encoding: 1114588 -1 3795 Width: 780 Flags: W HStem: -14 76<289 421.5 289 433> 295 74<256 582 230 594> 600 76<408.5 541> @@ -127162,7 +127158,7 @@ EndSplineSet EndChar StartChar: u1D6EA.ss -Encoding: 1114589 -1 3798 +Encoding: 1114589 -1 3796 Width: 433 Flags: W HStem: 0 74<54 165 254 338 50 165> 588 74<215 293 182 503 382 493 382 382> @@ -127186,7 +127182,7 @@ EndSplineSet EndChar StartChar: u1D6EB.ss -Encoding: 1114590 -1 3799 +Encoding: 1114590 -1 3797 Width: 631 Flags: W HStem: 0 20 @@ -127211,7 +127207,7 @@ EndSplineSet EndChar StartChar: u1D6EC.ss -Encoding: 1114591 -1 3800 +Encoding: 1114591 -1 3798 Width: 664 Flags: W HStem: 0 20 654 20<477 503 503 503> @@ -127230,7 +127226,7 @@ EndSplineSet EndChar StartChar: u1D6ED.ss -Encoding: 1114592 -1 3801 +Encoding: 1114592 -1 3799 Width: 890 Flags: W HStem: 0 20 @@ -127255,7 +127251,7 @@ EndSplineSet EndChar StartChar: u1D6EE.ss -Encoding: 1114593 -1 3802 +Encoding: 1114593 -1 3800 Width: 724 Flags: W HStem: -14 20 0 20 @@ -127277,7 +127273,7 @@ EndSplineSet EndChar StartChar: u1D6EF.ss -Encoding: 1114594 -1 3803 +Encoding: 1114594 -1 3801 Width: 722 Flags: W HStem: 0 87<58 614 47 645> 311 74<242 591 224 609> 588 74<237 743 210 754> @@ -127303,7 +127299,7 @@ EndSplineSet EndChar StartChar: u1D6F0.ss -Encoding: 1114595 -1 3804 +Encoding: 1114595 -1 3802 Width: 780 Flags: W HStem: -14 76<289 421.5 289 433> 600 76<408.5 541> @@ -127327,7 +127323,7 @@ EndSplineSet EndChar StartChar: u1D6F1.ss -Encoding: 1114596 -1 3805 +Encoding: 1114596 -1 3803 Width: 700 Flags: W HStem: 0 20 588 74<293 629 293 293> @@ -127347,7 +127343,7 @@ EndSplineSet EndChar StartChar: u1D6F2.ss -Encoding: 1114597 -1 3806 +Encoding: 1114597 -1 3804 Width: 538 Flags: W HStem: 0 20 285 74<236 324 324 338 218 324> 588 74<293 376 293 293> @@ -127373,7 +127369,7 @@ EndSplineSet EndChar StartChar: u1D6F3.ss -Encoding: 1114598 -1 3807 +Encoding: 1114598 -1 3805 Width: 780 Flags: W HStem: -14 76<289 416 289 433> 295 74<186 644 167 663> 600 76<414 541> @@ -127400,7 +127396,7 @@ EndSplineSet EndChar StartChar: u1D6F4.ss -Encoding: 1114599 -1 3808 +Encoding: 1114599 -1 3806 Width: 654 Flags: W HStem: 0 74<185 577> 588 74<319 687 319 319> @@ -127424,7 +127420,7 @@ EndSplineSet EndChar StartChar: u1D6F5.ss -Encoding: 1114600 -1 3809 +Encoding: 1114600 -1 3807 Width: 585 Flags: W HStem: 0 20 588 74<101 317 72 659 405 650 405 405> @@ -127444,7 +127440,7 @@ EndSplineSet EndChar StartChar: u1D6F6.ss -Encoding: 1114601 -1 3810 +Encoding: 1114601 -1 3808 Width: 593 Flags: W HStem: 0 20 600 76<121 173.5 638.5 653.5> @@ -127469,7 +127465,7 @@ EndSplineSet EndChar StartChar: u1D6F7.ss -Encoding: 1114602 -1 3811 +Encoding: 1114602 -1 3809 Width: 736 Flags: W HStem: 0 20 @@ -127504,7 +127500,7 @@ EndSplineSet EndChar StartChar: u1D6F8.ss -Encoding: 1114603 -1 3812 +Encoding: 1114603 -1 3810 Width: 722 Flags: W HStem: 0 20 @@ -127528,7 +127524,7 @@ EndSplineSet EndChar StartChar: u1D6F9.ss -Encoding: 1114604 -1 3813 +Encoding: 1114604 -1 3811 Width: 712 Flags: W HStem: 0 20 661 20<105 118 118 149 792 805 805 805> @@ -127561,7 +127557,7 @@ EndSplineSet EndChar StartChar: u1D6FA.ss -Encoding: 1114605 -1 3814 +Encoding: 1114605 -1 3812 Width: 795 Flags: W HStem: 0 87<50 258 50 321 39 258 529 705> 600 76<443.5 575.5> @@ -127592,7 +127588,7 @@ EndSplineSet EndChar StartChar: u1D6FC.ss -Encoding: 1114606 -1 3815 +Encoding: 1114606 -1 3813 Width: 586 Flags: W HStem: -10 71<183.5 217> 392 71<254 308> @@ -127623,7 +127619,7 @@ EndSplineSet EndChar StartChar: u1D6FD.ss -Encoding: 1114607 -1 3816 +Encoding: 1114607 -1 3814 Width: 535 Flags: W HStem: -14 71<251 316> 612 71<386 427.5> @@ -127658,7 +127654,7 @@ EndSplineSet EndChar StartChar: u1D6FE.ss -Encoding: 1114608 -1 3817 +Encoding: 1114608 -1 3815 Width: 503 Flags: W HStem: 443 20<142 188> @@ -127684,7 +127680,7 @@ EndSplineSet EndChar StartChar: u1D6FF.ss -Encoding: 1114609 -1 3818 +Encoding: 1114609 -1 3816 Width: 497 Flags: W HStem: -10 71<186 284 186 297.5> 612 71<331 381> @@ -127713,7 +127709,7 @@ EndSplineSet EndChar StartChar: u1D700.ss -Encoding: 1114610 -1 3819 +Encoding: 1114610 -1 3817 Width: 494 Flags: W HStem: -10 71<182 238 182 239> 199 71<240 340 280 322> 392 71<272.5 338> @@ -127744,7 +127740,7 @@ EndSplineSet EndChar StartChar: u1D701.ss -Encoding: 1114611 -1 3820 +Encoding: 1114611 -1 3818 Width: 429 Flags: W HStem: -213 72<179.5 204.5 179.5 208> -10 79<118.5 245 183 223> 663 20<216 227 227 227> @@ -127781,7 +127777,7 @@ EndSplineSet EndChar StartChar: u1D702.ss -Encoding: 1114612 -1 3821 +Encoding: 1114612 -1 3819 Width: 493 Flags: W HStem: 0 20 392 71<353 355> @@ -127816,7 +127812,7 @@ EndSplineSet EndChar StartChar: u1D703.ss -Encoding: 1114613 -1 3822 +Encoding: 1114613 -1 3820 Width: 518 Flags: W HStem: -10 71<195 262 195 292> 302 71<173 402 156 419> 612 71<320.5 386> @@ -127843,7 +127839,7 @@ EndSplineSet EndChar StartChar: u1D704.ss -Encoding: 1114614 -1 3823 +Encoding: 1114614 -1 3821 Width: 296 Flags: W HStem: -10 71<115 193.5> @@ -127868,7 +127864,7 @@ EndSplineSet EndChar StartChar: u1D705.ss -Encoding: 1114615 -1 3824 +Encoding: 1114615 -1 3822 Width: 472 Flags: W HStem: 0 20 @@ -127893,7 +127889,7 @@ EndSplineSet EndChar StartChar: u1D706.ss -Encoding: 1114616 -1 3825 +Encoding: 1114616 -1 3823 Width: 536 Flags: W HStem: -11 20 0 20 663 20<274 289> @@ -127920,7 +127916,7 @@ EndSplineSet EndChar StartChar: u1D707.ss -Encoding: 1114617 -1 3826 +Encoding: 1114617 -1 3824 Width: 561 Flags: W HStem: 433 20<175 254 254 254 457 536 536 536> @@ -127953,7 +127949,7 @@ EndSplineSet EndChar StartChar: u1D708.ss -Encoding: 1114618 -1 3827 +Encoding: 1114618 -1 3825 Width: 376 Flags: W HStem: -14 20 @@ -127978,7 +127974,7 @@ EndSplineSet EndChar StartChar: u1D709.ss -Encoding: 1114619 -1 3828 +Encoding: 1114619 -1 3826 Width: 434 Flags: W HStem: -215 72<194.5 219.5 194.5 223.5> -10 79<126 251 193 228> 663 20<240 252 252 252> @@ -128023,7 +128019,7 @@ EndSplineSet EndChar StartChar: u1D70A.ss -Encoding: 1114620 -1 3829 +Encoding: 1114620 -1 3827 Width: 533 Flags: W HStem: -10 71<199 301.5 199 304.5> 392 71<260.5 347> @@ -128045,7 +128041,7 @@ EndSplineSet EndChar StartChar: u1D70B.ss -Encoding: 1114621 -1 3830 +Encoding: 1114621 -1 3828 Width: 565 Flags: W HStem: -10 20 382 71<306 392 306 306 470 572 470 470> @@ -128076,7 +128072,7 @@ EndSplineSet EndChar StartChar: u1D70C.ss -Encoding: 1114622 -1 3831 +Encoding: 1114622 -1 3829 Width: 534 Flags: W HStem: -11 71<215 287 215 288.5> 391 71<334.5 357> @@ -128105,7 +128101,7 @@ EndSplineSet EndChar StartChar: u1D70D.ss -Encoding: 1114623 -1 3832 +Encoding: 1114623 -1 3830 Width: 436 Flags: W HStem: -212 72<196.5 222.5 196.5 233.5> -9 79<132 270 203 247> 392 71<339.5 370.5> @@ -128137,7 +128133,7 @@ EndSplineSet EndChar StartChar: u1D70E.ss -Encoding: 1114624 -1 3833 +Encoding: 1114624 -1 3831 Width: 607 Flags: W HStem: -10 71<201 291 201 305.5> 382 71<254 625 435 608 435 435> @@ -128163,7 +128159,7 @@ EndSplineSet EndChar StartChar: u1D70F.ss -Encoding: 1114625 -1 3834 +Encoding: 1114625 -1 3832 Width: 468 Flags: W HStem: -10 20 382 71<200.5 486 214 486 318 469 318 318> @@ -128191,7 +128187,7 @@ EndSplineSet EndChar StartChar: u1D710.ss -Encoding: 1114626 -1 3835 +Encoding: 1114626 -1 3833 Width: 514 Flags: W HStem: -10 71<197 276.5 197 277> 443 20<179 190 190 190 321 368.5> @@ -128221,7 +128217,7 @@ EndSplineSet EndChar StartChar: u1D711.ss -Encoding: 1114627 -1 3836 +Encoding: 1114627 -1 3834 Width: 665 Flags: W HStem: 384 79<487 504> @@ -128254,7 +128250,7 @@ EndSplineSet EndChar StartChar: u1D712.ss -Encoding: 1114628 -1 3837 +Encoding: 1114628 -1 3835 Width: 514 Flags: W HStem: 443 20<178 220.5> @@ -128285,7 +128281,7 @@ EndSplineSet EndChar StartChar: u1D713.ss -Encoding: 1114629 -1 3838 +Encoding: 1114629 -1 3836 Width: 654 Flags: W HStem: 441 20<75 121 644.5 705> @@ -128320,7 +128316,7 @@ EndSplineSet EndChar StartChar: u1D714.ss -Encoding: 1114630 -1 3839 +Encoding: 1114630 -1 3837 Width: 630 Flags: W HStem: -10 71<174 194.5 411.5 442.5> 434 20<264 264 544 544> @@ -128356,7 +128352,7 @@ EndSplineSet EndChar StartChar: u1D715.ss -Encoding: 1114631 -1 3840 +Encoding: 1114631 -1 3838 Width: 536 Flags: W HStem: -10 71<200 285.5> 392 71<261.5 348> 663 20<285 285> @@ -128383,7 +128379,7 @@ EndSplineSet EndChar StartChar: u1D716.ss -Encoding: 1114632 -1 3841 +Encoding: 1114632 -1 3839 Width: 462 Flags: W HStem: -10 71<201 245> 210 71<157 327 132 345> 392 71<289 343> @@ -128411,7 +128407,7 @@ EndSplineSet EndChar StartChar: u1D717.ss -Encoding: 1114633 -1 3842 +Encoding: 1114633 -1 3840 Width: 534 Flags: W HStem: -12 71<188 262.5> 612 71<288.5 334.5> @@ -128451,7 +128447,7 @@ EndSplineSet EndChar StartChar: u1D719.ss -Encoding: 1114634 -1 3843 +Encoding: 1114634 -1 3841 Width: 648 Flags: W HStem: 664 20<487 487> @@ -128484,7 +128480,7 @@ EndSplineSet EndChar StartChar: u1D71A.ss -Encoding: 1114635 -1 3844 +Encoding: 1114635 -1 3842 Width: 536 Flags: W HStem: -10 71<219 321.5 219 338> 392 71<285 365.5> @@ -128514,7 +128510,7 @@ EndSplineSet EndChar StartChar: u1D71B.ss -Encoding: 1114636 -1 3845 +Encoding: 1114636 -1 3843 Width: 795 Flags: W HStem: -10 71<254.5 275 492 522.5> 382 71<199.5 811 213 811 349 349 349 584 698 794 698 698> @@ -128555,7 +128551,7 @@ EndSplineSet EndChar StartChar: uni2202.ss -Encoding: 1114637 -1 3846 +Encoding: 1114637 -1 3844 Width: 499 Flags: W HStem: -10 71<207 298 207 318.5> 392 71<202.5 265 175 289> 663 20<145 145> @@ -128582,7 +128578,7 @@ EndSplineSet EndChar StartChar: u1D7EC.ss -Encoding: 1114638 -1 3847 +Encoding: 1114638 -1 3845 Width: 500 Flags: W HStem: -13 95<248 308 248 311> 593 95<358 419.5> @@ -128608,7 +128604,7 @@ EndSplineSet EndChar StartChar: u1D7ED.ss -Encoding: 1114639 -1 3848 +Encoding: 1114639 -1 3846 Width: 500 Flags: W HStem: 0 20 @@ -128627,7 +128623,7 @@ EndSplineSet EndChar StartChar: u1D7EE.ss -Encoding: 1114640 -1 3849 +Encoding: 1114640 -1 3847 Width: 500 Flags: W HStem: 0 95<223 441> 593 95<365.5 408.5> @@ -128653,7 +128649,7 @@ EndSplineSet EndChar StartChar: u1D7EF.ss -Encoding: 1114641 -1 3850 +Encoding: 1114641 -1 3848 Width: 500 Flags: W HStem: -13 95<210.5 257.5> 593 95<380 413> @@ -128684,7 +128680,7 @@ EndSplineSet EndChar StartChar: u1D7F0.ss -Encoding: 1114642 -1 3851 +Encoding: 1114642 -1 3849 Width: 500 Flags: W HStem: 0 20 145 95<181 328 471 498> @@ -128711,7 +128707,7 @@ EndSplineSet EndChar StartChar: u1D7F1.ss -Encoding: 1114643 -1 3852 +Encoding: 1114643 -1 3850 Width: 500 Flags: W HStem: -13 95<202.5 270.5 202.5 271> 571 105<362 587 362 362> @@ -128738,7 +128734,7 @@ EndSplineSet EndChar StartChar: u1D7F2.ss -Encoding: 1114644 -1 3853 +Encoding: 1114644 -1 3851 Width: 500 Flags: W HStem: -13 95<251 325.5 251 326.5> 329 95<363.5 367> @@ -128767,7 +128763,7 @@ EndSplineSet EndChar StartChar: u1D7F3.ss -Encoding: 1114645 -1 3854 +Encoding: 1114645 -1 3852 Width: 500 Flags: W HStem: 0 20 561 115<226 469 174 639> @@ -128785,7 +128781,7 @@ EndSplineSet EndChar StartChar: u1D7F4.ss -Encoding: 1114646 -1 3855 +Encoding: 1114646 -1 3853 Width: 500 Flags: W HStem: -13 95<239 301 239 332> 593 95<360 419> @@ -128816,7 +128812,7 @@ EndSplineSet EndChar StartChar: u1D7F5.ss -Encoding: 1114647 -1 3856 +Encoding: 1114647 -1 3854 Width: 500 Flags: W HStem: -13 20 251 95<302 304.5> 593 95<342.5 416.5> @@ -128845,7 +128841,7 @@ EndSplineSet EndChar StartChar: u1D7E2.ss -Encoding: 1114648 -1 3857 +Encoding: 1114648 -1 3855 Width: 500 Flags: W HStem: -14 71<227.5 333.5 227.5 348> 605 71<334.5 433> @@ -128867,7 +128863,7 @@ EndSplineSet EndChar StartChar: u1D7E3.ss -Encoding: 1114649 -1 3858 +Encoding: 1114649 -1 3856 Width: 500 Flags: W HStem: 0 20 657 20<456 456> @@ -128886,7 +128882,7 @@ EndSplineSet EndChar StartChar: u1D7E4.ss -Encoding: 1114650 -1 3859 +Encoding: 1114650 -1 3857 Width: 500 Flags: W HStem: 0 71<194 440> 605 71<365 423> @@ -128914,7 +128910,7 @@ EndSplineSet EndChar StartChar: u1D7E5.ss -Encoding: 1114651 -1 3860 +Encoding: 1114651 -1 3858 Width: 500 Flags: W HStem: -14 71<192.5 263 192.5 268> 605 71<365.5 410.5> @@ -128944,7 +128940,7 @@ EndSplineSet EndChar StartChar: u1D7E6.ss -Encoding: 1114652 -1 3861 +Encoding: 1114652 -1 3859 Width: 500 Flags: W HStem: 0 20 165 71<158 335 431 497 158 414> 656 20<491 541 541 541> @@ -128971,7 +128967,7 @@ EndSplineSet EndChar StartChar: u1D7E7.ss -Encoding: 1114653 -1 3862 +Encoding: 1114653 -1 3860 Width: 500 Flags: W HStem: -14 71<197.5 276.5 197.5 284> 605 71<399 576 399 399> @@ -128997,7 +128993,7 @@ EndSplineSet EndChar StartChar: u1D7E8.ss -Encoding: 1114654 -1 3863 +Encoding: 1114654 -1 3861 Width: 500 Flags: W HStem: -14 71<237.5 315.5 237.5 323> 360 71<341 369> 664 20<617 617> @@ -129025,7 +129021,7 @@ EndSplineSet EndChar StartChar: u1D7E9.ss -Encoding: 1114655 -1 3864 +Encoding: 1114655 -1 3862 Width: 500 Flags: W HStem: -8 20 591 71<234 501 185 616> @@ -129044,7 +129040,7 @@ EndSplineSet EndChar StartChar: u1D7EA.ss -Encoding: 1114656 -1 3865 +Encoding: 1114656 -1 3863 Width: 500 Flags: W HStem: -14 71<231 299.5 231 317.5> 605 71<361 422> @@ -129076,7 +129072,7 @@ EndSplineSet EndChar StartChar: u1D7EB.ss -Encoding: 1114657 -1 3866 +Encoding: 1114657 -1 3864 Width: 500 Flags: W HStem: 231 71<293 320.5> 605 71<347.5 425> @@ -129104,7 +129100,7 @@ EndSplineSet EndChar StartChar: u1D7F6.bf -Encoding: 1114658 -1 3867 +Encoding: 1114658 -1 3865 Width: 525 Flags: W HStem: -11 64<227.5 294.5 227.5 322> 617 64<227.5 294.5> @@ -129126,7 +129122,7 @@ EndSplineSet EndChar StartChar: u1D7F7.bf -Encoding: 1114659 -1 3868 +Encoding: 1114659 -1 3866 Width: 525 Flags: W HStem: 0 64<117.5 226 126 226 325 419> 661 20<285 295 295 303.5> @@ -129158,7 +129154,7 @@ EndSplineSet EndChar StartChar: u1D7F8.bf -Encoding: 1114660 -1 3869 +Encoding: 1114660 -1 3867 Width: 525 Flags: W HStem: 0 64<168 371 168 439> 0 111<401 439 401 439> 427 20<101 130.5> 617 64<223.5 281.5> @@ -129193,7 +129189,7 @@ EndSplineSet EndChar StartChar: u1D7F9.bf -Encoding: 1114661 -1 3870 +Encoding: 1114661 -1 3868 Width: 525 Flags: W HStem: -11 64<235 290 235 317.5> 617 64<242.5 284> @@ -129231,7 +129227,7 @@ EndSplineSet EndChar StartChar: u1D7FA.bf -Encoding: 1114662 -1 3871 +Encoding: 1114662 -1 3869 Width: 525 Flags: W HStem: 0 64<228 307 236 307 389 460> 179 64<51.5 307 111 307 111 307 389 463> 662 20<297 358 358 366.5> @@ -129274,7 +129270,7 @@ EndSplineSet EndChar StartChar: u1D7FB.bf -Encoding: 1114663 -1 3872 +Encoding: 1114663 -1 3870 Width: 525 Flags: W HStem: -11 64<222 273.5 222 302> 361 64<256.5 296> 606 64<178 178 178 404> @@ -129309,7 +129305,7 @@ EndSplineSet EndChar StartChar: u1D7FC.bf -Encoding: 1114664 -1 3873 +Encoding: 1114664 -1 3871 Width: 525 Flags: W HStem: -11 64<237 291 237 321.5> 369 64<248.5 294.5> 617 64<280.5 324.5> @@ -129340,7 +129336,7 @@ EndSplineSet EndChar StartChar: u1D7FD.bf -Encoding: 1114665 -1 3874 +Encoding: 1114665 -1 3872 Width: 525 Flags: W HStem: -11 20 558 128<65.5 112 74 112> 606 64<143 353 143 143> @@ -129369,7 +129365,7 @@ EndSplineSet EndChar StartChar: u1D7FE.bf -Encoding: 1114666 -1 3875 +Encoding: 1114666 -1 3873 Width: 525 Flags: W HStem: -11 64<228.5 294 228.5 321.5> 330 64<232.5 289.5 232.5 294> 617 64<232.5 289.5> @@ -129400,7 +129396,7 @@ EndSplineSet EndChar StartChar: u1D7FF.bf -Encoding: 1114667 -1 3876 +Encoding: 1114667 -1 3874 Width: 525 Flags: W HStem: -11 64<209.5 252.5 209.5 294> 237 64<227.5 274.5> 617 64<235 289.5> @@ -129431,7 +129427,7 @@ EndSplineSet EndChar StartChar: u1D538.bf -Encoding: 1114668 -1 3877 +Encoding: 1114668 -1 3875 Width: 787 Flags: W HStem: 0 70<555 639 555 737 506 639> 196 70<213 415 213 439 189 415> 606 70<373 457 373 373> @@ -129461,7 +129457,7 @@ EndSplineSet EndChar StartChar: u1D539.bf -Encoding: 1114669 -1 3878 +Encoding: 1114669 -1 3876 Width: 729 Flags: W HStem: 0 70<145 225 295 402> 314 70<295 402 295 402> 606 70<145 225 145 145 295 402 295 295> @@ -129508,7 +129504,7 @@ EndSplineSet EndChar StartChar: u1D53C.bf -Encoding: 1114670 -1 3879 +Encoding: 1114670 -1 3877 Width: 650 Flags: W HStem: 0 70<145 225 295 595> 314 70<295 565 295 565> 606 70<145 225 145 145 295 595 295 295> @@ -129538,7 +129534,7 @@ EndSplineSet EndChar StartChar: u1D53D.bf -Encoding: 1114671 -1 3880 +Encoding: 1114671 -1 3878 Width: 474 Flags: W HStem: 0 70<145 225 145 295> 304 70<295 555 295 555> 606 70<145 225 145 145 295 595 295 295> @@ -129566,7 +129562,7 @@ EndSplineSet EndChar StartChar: u1D53E.bf -Encoding: 1114672 -1 3881 +Encoding: 1114672 -1 3879 Width: 751 Flags: W HStem: -19 70<370.5 395 370.5 449> 281 70<363 470 363 686 540 540 540 616> 621 70<371.5 445.5> @@ -129603,7 +129599,7 @@ EndSplineSet EndChar StartChar: u1D540.bf -Encoding: 1114673 -1 3882 +Encoding: 1114673 -1 3880 Width: 380 Flags: W HStem: 0 70<150 230 150 300> 606 70<150 230 150 150> @@ -129625,7 +129621,7 @@ EndSplineSet EndChar StartChar: u1D541.bf -Encoding: 1114674 -1 3883 +Encoding: 1114674 -1 3881 Width: 618 Flags: W HStem: -19 71<244 307 244 364> 606 70<398 478 398 398> @@ -129651,7 +129647,7 @@ EndSplineSet EndChar StartChar: u1D542.bf -Encoding: 1114675 -1 3884 +Encoding: 1114675 -1 3882 Width: 792 Flags: W HStem: 0 70<145 225 145 295 554 644> 606 70<145 225 145 145> @@ -129687,7 +129683,7 @@ EndSplineSet EndChar StartChar: u1D543.bf -Encoding: 1114676 -1 3885 +Encoding: 1114676 -1 3883 Width: 662 Flags: W HStem: 0 70<140 220 290 607> 606 70<140 220 140 140> @@ -129711,7 +129707,7 @@ EndSplineSet EndChar StartChar: u1D544.bf -Encoding: 1114677 -1 3886 +Encoding: 1114677 -1 3884 Width: 914 Flags: W HStem: 0 70<322 404 322 488 270 404 689 769> 606 70<145 220 145 145 689 769 689 689> @@ -129751,7 +129747,7 @@ EndSplineSet EndChar StartChar: u1D546.bf -Encoding: 1114678 -1 3887 +Encoding: 1114678 -1 3885 Width: 787 Flags: W HStem: -19 70<375 417 375 493> 621 70<369.5 412.5> @@ -129783,7 +129779,7 @@ EndSplineSet EndChar StartChar: u1D54A.bf -Encoding: 1114679 -1 3888 +Encoding: 1114679 -1 3886 Width: 702 Flags: W HStem: -19 70<281 379 281 416.5> 622 70<346 430.5> @@ -129818,7 +129814,7 @@ EndSplineSet EndChar StartChar: u1D54B.bf -Encoding: 1114680 -1 3889 +Encoding: 1114680 -1 3887 Width: 556 Flags: W HStem: 0 70<295 375 295 445> 606 70<25 225 25 645 295 295 295 375 445 645 445 445> @@ -129844,7 +129840,7 @@ EndSplineSet EndChar StartChar: u1D54C.bf -Encoding: 1114681 -1 3890 +Encoding: 1114681 -1 3888 Width: 738 Flags: W HStem: -19 70<353 414 353 436> 606 70<140 220 140 140> @@ -129872,7 +129868,7 @@ EndSplineSet EndChar StartChar: u1D54D.bf -Encoding: 1114682 -1 3891 +Encoding: 1114682 -1 3889 Width: 627 Flags: W HStem: 0 70<297 381 297 474 247 381> 606 70<114 199 114 114> @@ -129897,7 +129893,7 @@ EndSplineSet EndChar StartChar: u1D54E.bf -Encoding: 1114683 -1 3892 +Encoding: 1114683 -1 3890 Width: 996 Flags: W HStem: 0 70<225 306 225 409 170 306 677 756> 606 70<104 185 104 104 555 636 555 555> @@ -129935,7 +129931,7 @@ EndSplineSet EndChar StartChar: u1D54F.bf -Encoding: 1114684 -1 3893 +Encoding: 1114684 -1 3891 Width: 794 Flags: W HStem: 0 70<540 635 540 769 504 635> 606 70<155 251 155 155> @@ -129964,7 +129960,7 @@ EndSplineSet EndChar StartChar: u1D550.bf -Encoding: 1114685 -1 3894 +Encoding: 1114685 -1 3892 Width: 652 Flags: W HStem: 0 70<353 433 353 503> 606 70<150 243 150 150> @@ -129994,7 +129990,7 @@ EndSplineSet EndChar StartChar: u1D552.bf -Encoding: 1114686 -1 3895 +Encoding: 1114686 -1 3893 Width: 623 Flags: W HStem: -14 70<177 300.5> 0 70<433 493 433 563 364 493> 403 70<276 321.5> @@ -130036,7 +130032,7 @@ EndSplineSet EndChar StartChar: u1D553.bf -Encoding: 1114687 -1 3896 +Encoding: 1114687 -1 3894 Width: 643 Flags: W HStem: -14 70<360 362.5 328 452> 0 70<130 190 130 258> 403 70<357.5 367.5> 606 70<130 190 130 130> @@ -130074,7 +130070,7 @@ EndSplineSet EndChar StartChar: u1D554.bf -Encoding: 1114688 -1 3897 +Encoding: 1114688 -1 3895 Width: 574 Flags: W HStem: -14 70<290 345.5> 403 70<295.5 343.5 231 356.5> @@ -130104,7 +130100,7 @@ EndSplineSet EndChar StartChar: u1D557.bf -Encoding: 1114689 -1 3898 +Encoding: 1114689 -1 3896 Width: 474 Flags: W HStem: 0 70<199 259 199 329> 381 70<25 129 25 129 329 455> 606 70<365 391 299 399> @@ -130138,7 +130134,7 @@ EndSplineSet EndChar StartChar: u1D558.bf -Encoding: 1114690 -1 3899 +Encoding: 1114690 -1 3897 Width: 643 Flags: W HStem: -205 70<278.5 313 278.5 373.5> -14 70<280 282.5> 391 70<453 513 453 453> 403 70<275 285.5 197.5 307.5> @@ -130181,7 +130177,7 @@ EndSplineSet EndChar StartChar: u1D559.bf -Encoding: 1114691 -1 3900 +Encoding: 1114691 -1 3898 Width: 624 Flags: W HStem: 0 70<130 190 130 260 434 494> 606 70<130 190 130 130> @@ -130216,7 +130212,7 @@ EndSplineSet EndChar StartChar: u1D55C.bf -Encoding: 1114692 -1 3901 +Encoding: 1114692 -1 3899 Width: 646 Flags: W HStem: 0 70<130 190 130 260 429 493> 606 70<130 190 130 130> @@ -130251,7 +130247,7 @@ EndSplineSet EndChar StartChar: u1D55D.bf -Encoding: 1114693 -1 3902 +Encoding: 1114693 -1 3900 Width: 325 Flags: W HStem: 0 70<130 195 130 265> 656 20<221 265 265 265> @@ -130274,7 +130270,7 @@ EndSplineSet EndChar StartChar: u1D55E.bf -Encoding: 1114694 -1 3903 +Encoding: 1114694 -1 3901 Width: 908 Flags: W HStem: 0 70<130 190 130 260 424 484 718 778> 391 70<130 190 130 130> @@ -130321,7 +130317,7 @@ EndSplineSet EndChar StartChar: u1D55F.bf -Encoding: 1114695 -1 3904 +Encoding: 1114695 -1 3902 Width: 624 Flags: W HStem: 0 70<130 190 130 260 434 494> 391 70<130 190 130 130> @@ -130356,7 +130352,7 @@ EndSplineSet EndChar StartChar: u1D560.bf -Encoding: 1114696 -1 3905 +Encoding: 1114696 -1 3903 Width: 598 Flags: W HStem: -14 70<292 308.5 292 372> 403 70<291 308.5> @@ -130388,7 +130384,7 @@ EndSplineSet EndChar StartChar: u1D561.bf -Encoding: 1114697 -1 3906 +Encoding: 1114697 -1 3904 Width: 643 Flags: W HStem: -205 70<130 190 130 260> -14 70<359 362 328 452> 391 70<130 190 130 130> 403 70<357.5 367.5> @@ -130428,7 +130424,7 @@ EndSplineSet EndChar StartChar: u1D562.bf -Encoding: 1114698 -1 3907 +Encoding: 1114698 -1 3905 Width: 643 Flags: W HStem: -205 70<453 513 453 583> -14 70<281 284> 391 70<453 513 453 453> 403 70<275.5 285.5 191.5 307.5> @@ -130468,7 +130464,7 @@ EndSplineSet EndChar StartChar: u1D563.bf -Encoding: 1114699 -1 3908 +Encoding: 1114699 -1 3906 Width: 339 Flags: W HStem: 0 70<130 190 130 260> 391 70<130 190 130 130> @@ -130498,7 +130494,7 @@ EndSplineSet EndChar StartChar: u1D564.bf -Encoding: 1114700 -1 3909 +Encoding: 1114700 -1 3907 Width: 549 Flags: W HStem: -14 70<243 280 224 316.5> 0 20 403 70<289.5 333.5 236 340.5> @@ -130534,7 +130530,7 @@ EndSplineSet EndChar StartChar: u1D565.bf -Encoding: 1114701 -1 3910 +Encoding: 1114701 -1 3908 Width: 446 Flags: W HStem: -14 20 381 70<25 115 25 115 320 406> 656 20<276 320 320 320> @@ -130568,7 +130564,7 @@ EndSplineSet EndChar StartChar: u1D566.bf -Encoding: 1114702 -1 3911 +Encoding: 1114702 -1 3909 Width: 619 Flags: W HStem: -16 20 0 70<429 489 429 559> 391 70<125 185 125 125 429 489 429 429> @@ -130603,7 +130599,7 @@ EndSplineSet EndChar StartChar: u1D567.bf -Encoding: 1114703 -1 3912 +Encoding: 1114703 -1 3910 Width: 494 Flags: W HStem: 0 70<217 226 169 280 226 280 217 320 217 384> 391 70<104 167 104 104> @@ -130630,7 +130626,7 @@ EndSplineSet EndChar StartChar: u1D568.bf -Encoding: 1114704 -1 3913 +Encoding: 1114704 -1 3911 Width: 786 Flags: W HStem: 0 70<179 236 179 351 122 236 515 572> 391 70<109 166 109 109 446 502 446 446> @@ -130668,7 +130664,7 @@ EndSplineSet EndChar StartChar: u1D569.bf -Encoding: 1114705 -1 3914 +Encoding: 1114705 -1 3912 Width: 660 Flags: W HStem: 0 70<420 492 420 635 383 492> 391 70<167 244 167 167> @@ -130697,7 +130693,7 @@ EndSplineSet EndChar StartChar: u1D56A.bf -Encoding: 1114706 -1 3915 +Encoding: 1114706 -1 3913 Width: 471 Flags: W HStem: -205 70<143.5 199.5 143.5 204.5> 391 70<113 181 113 113> @@ -130726,7 +130722,7 @@ EndSplineSet EndChar StartChar: u1D56B.bf -Encoding: 1114707 -1 3916 +Encoding: 1114707 -1 3914 Width: 513 Flags: W HStem: 0 70<122 193 273 473 40 40> 391 70<58 240 58 473 321 321 321 391 58 473> @@ -130753,7 +130749,7 @@ EndSplineSet EndChar StartChar: u1D538.bi -Encoding: 1114708 -1 3917 +Encoding: 1114708 -1 3915 Width: 733 Flags: W HStem: 0 63<521 596 521 667 465 596> 199 63<233 436 233 443 196 436> 607 62<464 540 464 464> @@ -130783,7 +130779,7 @@ EndSplineSet EndChar StartChar: u1D539.bi -Encoding: 1114709 -1 3918 +Encoding: 1114709 -1 3916 Width: 729 Flags: W HStem: 0 63<101 178 244 351 351 356.5> 315 63<329 408 312 436> 606 63<247 324 247 247 390 485 390 390> @@ -130831,7 +130827,7 @@ EndSplineSet EndChar StartChar: u1D53C.bi -Encoding: 1114710 -1 3919 +Encoding: 1114710 -1 3917 Width: 680 Flags: W HStem: 0 63<101 178 244 545> 313 63<328 590 311 606> 606 63<247 324 247 247 390 687 390 390> @@ -130860,7 +130856,7 @@ EndSplineSet EndChar StartChar: u1D53D.bi -Encoding: 1114711 -1 3920 +Encoding: 1114711 -1 3918 Width: 474 Flags: W HStem: 0 63<101 178 101 227> 308 63<327 590 310 606> 606 63<247 324 247 247 390 687 390 390> @@ -130887,7 +130883,7 @@ EndSplineSet EndChar StartChar: u1D53E.bi -Encoding: 1114712 -1 3921 +Encoding: 1114712 -1 3919 Width: 718 Flags: W HStem: -14 63<297 328 297 358> 280 63<371 461 355 685 526 526 526 602> 622 63<434.5 511> @@ -130924,7 +130920,7 @@ EndSplineSet EndChar StartChar: u1D540.bi -Encoding: 1114713 -1 3922 +Encoding: 1114713 -1 3920 Width: 382 Flags: W HStem: 0 63<105 182 105 231> 606 63<251 328 251 251> @@ -130945,7 +130941,7 @@ EndSplineSet EndChar StartChar: u1D541.bi -Encoding: 1114714 -1 3923 +Encoding: 1114714 -1 3921 Width: 603 Flags: W HStem: -14 63<224 245 224 291.5> 605 64<481 562 481 481> @@ -130971,7 +130967,7 @@ EndSplineSet EndChar StartChar: u1D542.bi -Encoding: 1114715 -1 3924 +Encoding: 1114715 -1 3922 Width: 766 Flags: W HStem: 0 63<101 178 101 227 511 591> 606 63<247 324 247 247> @@ -131006,7 +131002,7 @@ EndSplineSet EndChar StartChar: u1D543.bi -Encoding: 1114716 -1 3925 +Encoding: 1114716 -1 3923 Width: 613 Flags: W HStem: 0 63<101 178 244 552> 606 63<247 324 247 247> @@ -131029,7 +131025,7 @@ EndSplineSet EndChar StartChar: u1D544.bi -Encoding: 1114717 -1 3926 +Encoding: 1114717 -1 3924 Width: 912 Flags: W HStem: 0 63<289 365 289 422 232 365 639 717> 606 63<254 323 254 254 784 861 784 784> @@ -131070,7 +131066,7 @@ EndSplineSet EndChar StartChar: u1D54A.bi -Encoding: 1114718 -1 3927 +Encoding: 1114718 -1 3925 Width: 686 Flags: W HStem: -14 63<230.5 315.5 227.5 364.5> 622 63<422 505> @@ -131105,7 +131101,7 @@ EndSplineSet EndChar StartChar: u1D54B.bi -Encoding: 1114719 -1 3928 +Encoding: 1114719 -1 3926 Width: 445 Flags: W HStem: 0 63<154 231 154 280> 606 63<46 234 30 653 300 300 300 377 443 637 443 443> @@ -131130,7 +131126,7 @@ EndSplineSet EndChar StartChar: u1D54C.bi -Encoding: 1114720 -1 3929 +Encoding: 1114720 -1 3927 Width: 709 Flags: W HStem: -14 63<281 347.5 281 355> 606 63<211 290 211 211> @@ -131160,7 +131156,7 @@ EndSplineSet EndChar StartChar: u1D54D.bi -Encoding: 1114721 -1 3930 +Encoding: 1114721 -1 3928 Width: 504 Flags: W HStem: 0 63<164 242 164 307 108 242> 606 63<111 188 111 111> @@ -131185,7 +131181,7 @@ EndSplineSet EndChar StartChar: u1D54E.bi -Encoding: 1114722 -1 3931 +Encoding: 1114722 -1 3929 Width: 891 Flags: W HStem: 0 63<144 221 144 299 552 629> 606 63<144 221 144 144 552 629 552 552> @@ -131224,7 +131220,7 @@ EndSplineSet EndChar StartChar: u1D54F.bi -Encoding: 1114723 -1 3932 +Encoding: 1114723 -1 3930 Width: 759 Flags: W HStem: 0 63<505 589 505 688 465 589> 606 63<258 342 258 258> @@ -131253,7 +131249,7 @@ EndSplineSet EndChar StartChar: u1D546.bi -Encoding: 1114724 -1 3933 +Encoding: 1114724 -1 3931 Width: 749 Flags: W HStem: -14 63<296.5 336 296.5 427> 622 63<434.5 474> @@ -131285,7 +131281,7 @@ EndSplineSet EndChar StartChar: u1D550.bi -Encoding: 1114725 -1 3934 +Encoding: 1114725 -1 3932 Width: 462 Flags: W HStem: 0 63<181 260 181 308> 606 63<103 185 103 103> @@ -131314,7 +131310,7 @@ EndSplineSet EndChar StartChar: u1D552.bi -Encoding: 1114726 -1 3935 +Encoding: 1114726 -1 3933 Width: 634 Flags: W HStem: -13 63<139.5 268> 0 63<406 467 406 517> 399 63<334 382> @@ -131361,7 +131357,7 @@ EndSplineSet EndChar StartChar: u1D553.bi -Encoding: 1114727 -1 3936 +Encoding: 1114727 -1 3934 Width: 661 Flags: W HStem: -13 63<332 341.5 312 435> 0 63<115 179 115 227> 399 63<438.5 440> 636 63<269 333 269 269> @@ -131400,7 +131396,7 @@ EndSplineSet EndChar StartChar: u1D554.bi -Encoding: 1114728 -1 3937 +Encoding: 1114728 -1 3935 Width: 571 Flags: W HStem: -13 63<246 291> 399 63<336 391.5> @@ -131428,7 +131424,7 @@ EndSplineSet EndChar StartChar: u1D556.bi -Encoding: 1114729 -1 3938 +Encoding: 1114729 -1 3936 Width: 575 Flags: W HStem: -13 63<245.5 295> 193 63<251 342 406 466 234 342> 399 63<334 347.5> @@ -131466,7 +131462,7 @@ EndSplineSet EndChar StartChar: u1D557.bi -Encoding: 1114730 -1 3939 +Encoding: 1114730 -1 3937 Width: 438 Flags: W HStem: 0 63<125 192 125 238> 386 63<62 149 45 166 359 468> 635 64<446 478.5> @@ -131499,7 +131495,7 @@ EndSplineSet EndChar StartChar: u1D558.bi -Encoding: 1114731 -1 3940 +Encoding: 1114731 -1 3938 Width: 666 Flags: W HStem: -205 63<178.5 221.5 178.5 278.5> -13 63<168.5 279> 386 63<497 560 497 497> 399 63<331 346 239 361> @@ -131544,7 +131540,7 @@ EndSplineSet EndChar StartChar: u1D559.bi -Encoding: 1114732 -1 3941 +Encoding: 1114732 -1 3939 Width: 661 Flags: W HStem: 0 63<115 179 115 227 422 484> 442 20<450 515> 636 63<269 333 269 269> @@ -131582,7 +131578,7 @@ EndSplineSet EndChar StartChar: u1D55C.bi -Encoding: 1114733 -1 3942 +Encoding: 1114733 -1 3940 Width: 641 Flags: W HStem: 0 63<115 179 115 227 427 492> 636 63<269 333 269 269> @@ -131617,7 +131613,7 @@ EndSplineSet EndChar StartChar: u1D55D.bi -Encoding: 1114734 -1 3943 +Encoding: 1114734 -1 3941 Width: 372 Flags: W HStem: 0 63<115 179 115 227> @@ -131639,7 +131635,7 @@ EndSplineSet EndChar StartChar: u1D55E.bi -Encoding: 1114735 -1 3944 +Encoding: 1114735 -1 3942 Width: 942 Flags: W HStem: 0 63<116 180 116 227 409 472 704 765> 386 63<202 266 202 202> 442 20<438.5 491 727.5 796> @@ -131691,7 +131687,7 @@ EndSplineSet EndChar StartChar: u1D55F.bi -Encoding: 1114736 -1 3945 +Encoding: 1114736 -1 3943 Width: 661 Flags: W HStem: 0 63<115 179 115 227 422 484> 386 63<201 265 201 201> 442 20<450 515> @@ -131729,7 +131725,7 @@ EndSplineSet EndChar StartChar: u1D560.bi -Encoding: 1114737 -1 3946 +Encoding: 1114737 -1 3944 Width: 586 Flags: W HStem: -13 63<249 258.5 249 325.5> 399 63<336.5 348> @@ -131761,7 +131757,7 @@ EndSplineSet EndChar StartChar: u1D561.bi -Encoding: 1114738 -1 3947 +Encoding: 1114738 -1 3945 Width: 680 Flags: W HStem: -205 63<83 147 83 194> -13 63<357 366.5 339 469> 386 63<226 290 226 226> 399 63<465.5 467> @@ -131801,7 +131797,7 @@ EndSplineSet EndChar StartChar: u1D562.bi -Encoding: 1114739 -1 3948 +Encoding: 1114739 -1 3946 Width: 662 Flags: W HStem: -205 63<344 408 344 455> -13 63<224.5 225> 399 63<322.5 335.5 229 352> @@ -131842,7 +131838,7 @@ EndSplineSet EndChar StartChar: u1D563.bi -Encoding: 1114740 -1 3949 +Encoding: 1114740 -1 3947 Width: 403 Flags: W HStem: 0 63<114 178 114 226> 386 63<202 266 202 202> 442 20<469.5 505> @@ -131870,7 +131866,7 @@ EndSplineSet EndChar StartChar: u1D564.bi -Encoding: 1114741 -1 3950 +Encoding: 1114741 -1 3948 Width: 533 Flags: W HStem: -13 63<188 242 188 281.5> 399 63<327.5 369.5> @@ -131905,7 +131901,7 @@ EndSplineSet EndChar StartChar: u1D565.bi -Encoding: 1114742 -1 3951 +Encoding: 1114742 -1 3949 Width: 403 Flags: W HStem: -14 20 384 64<41 112 22 131> 385 63<322 403> 656 20<338 382 382 382> @@ -131941,7 +131937,7 @@ EndSplineSet EndChar StartChar: u1D566.bi -Encoding: 1114743 -1 3952 +Encoding: 1114743 -1 3950 Width: 661 Flags: W HStem: -13 20 0 63<396 460 396 507> 386 63<177 239 177 177 482 546 482 482> @@ -131979,7 +131975,7 @@ EndSplineSet EndChar StartChar: u1D567.bi -Encoding: 1114744 -1 3953 +Encoding: 1114744 -1 3951 Width: 477 Flags: W HStem: 0 63<144 205 144 285 88 205> 386 63<103 162 103 103> @@ -132004,7 +132000,7 @@ EndSplineSet EndChar StartChar: u1D568.bi -Encoding: 1114745 -1 3954 +Encoding: 1114745 -1 3952 Width: 733 Flags: W HStem: 0 63<134 195 134 266 73 195 442 503> 386 63<119 180 119 119 427 489 427 427> @@ -132042,7 +132038,7 @@ EndSplineSet EndChar StartChar: u1D569.bi -Encoding: 1114746 -1 3955 +Encoding: 1114746 -1 3953 Width: 562 Flags: W HStem: 0 63<342 410 342 516 307 410> 386 63<177 246 177 177> @@ -132071,7 +132067,7 @@ EndSplineSet EndChar StartChar: u1D56A.bi -Encoding: 1114747 -1 3956 +Encoding: 1114747 -1 3954 Width: 584 Flags: W HStem: -205 63<109.5 171.5 109.5 176> 386 63<205 266 205 205> @@ -132101,7 +132097,7 @@ EndSplineSet EndChar StartChar: u1D56B.bi -Encoding: 1114748 -1 3957 +Encoding: 1114748 -1 3955 Width: 619 Flags: W HStem: 0 63<154 195 195 200 296 467 467 469> 386 63<155.5 546 168 331 427 435 435 472> @@ -132140,7 +132136,7 @@ EndSplineSet EndChar StartChar: u1D538.it -Encoding: 1114749 -1 3958 +Encoding: 1114749 -1 3956 Width: 671 Flags: W HStem: 0 37<488 564 488 606 454 564> 212 37<192 426 192 430 171 426> 616 37<425 501 425 425> @@ -132170,7 +132166,7 @@ EndSplineSet EndChar StartChar: u1D539.it -Encoding: 1114750 -1 3959 +Encoding: 1114750 -1 3957 Width: 686 Flags: W HStem: 0 37<66 145 183 341 341 348> 315 37<266 427 427 434 266 486 257 427> 616 37<221 299 221 221 336 487 487 502 336 336> @@ -132217,7 +132213,7 @@ EndSplineSet EndChar StartChar: u1D53C.it -Encoding: 1114751 -1 3960 +Encoding: 1114751 -1 3958 Width: 639 Flags: W HStem: 0 37<65 145 182 530> 317 37<267 538 257 549> 616 37<221 299 221 221 336 655 336 336> @@ -132246,7 +132242,7 @@ EndSplineSet EndChar StartChar: u1D53D.it -Encoding: 1114752 -1 3961 +Encoding: 1114752 -1 3959 Width: 469 Flags: W HStem: 0 37<65 145 65 172> 303 37<263 535 253 546> 616 37<221 299 221 221 336 655 336 336> @@ -132273,7 +132269,7 @@ EndSplineSet EndChar StartChar: u1D53E.it -Encoding: 1114753 -1 3962 +Encoding: 1114753 -1 3960 Width: 702 Flags: W HStem: -18 37<263 315 263 350.5> 266 37<366 494 356 662 531 531 531 615> 629 37<420.5 505.5 326 513.5> @@ -132310,7 +132306,7 @@ EndSplineSet EndChar StartChar: u1D540.it -Encoding: 1114754 -1 3963 +Encoding: 1114754 -1 3961 Width: 320 Flags: W HStem: 0 37<69 147 69 175> 616 37<224 302 224 224> @@ -132331,7 +132327,7 @@ EndSplineSet EndChar StartChar: u1D541.it -Encoding: 1114755 -1 3964 +Encoding: 1114755 -1 3962 Width: 562 Flags: W HStem: -18 37<169.5 202 169.5 260.5> 616 37<470 548 470 470> @@ -132358,7 +132354,7 @@ EndSplineSet EndChar StartChar: u1D542.it -Encoding: 1114756 -1 3965 +Encoding: 1114756 -1 3963 Width: 700 Flags: W HStem: 0 37<65 143 65 171 498 584> 616 37<220 298 220 220> @@ -132393,7 +132389,7 @@ EndSplineSet EndChar StartChar: u1D543.it -Encoding: 1114757 -1 3966 +Encoding: 1114757 -1 3964 Width: 608 Flags: W HStem: 0 37<64 143 180 515> 616 37<220 298 220 220> @@ -132416,7 +132412,7 @@ EndSplineSet EndChar StartChar: u1D544.it -Encoding: 1114758 -1 3967 +Encoding: 1114758 -1 3965 Width: 858 Flags: W HStem: 0 37<271 347 271 385 238 347 611 691> 616 37<224 301 224 224 768 845 768 768> @@ -132454,7 +132450,7 @@ EndSplineSet EndChar StartChar: u1D546.it -Encoding: 1114759 -1 3968 +Encoding: 1114759 -1 3966 Width: 723 Flags: W HStem: -18 37<269 325 269 421.5> 629 37<423 480.5> @@ -132486,7 +132482,7 @@ EndSplineSet EndChar StartChar: u1D54A.it -Encoding: 1114760 -1 3969 +Encoding: 1114760 -1 3967 Width: 624 Flags: W HStem: -18 37<235 315 223 336.5> 629 37<393 477.5> @@ -132522,7 +132518,7 @@ EndSplineSet EndChar StartChar: u1D54B.it -Encoding: 1114761 -1 3970 +Encoding: 1114761 -1 3968 Width: 463 Flags: W HStem: 0 37<163 241 163 269> 605 48<315 393 315 315> 616 37<40 280 30 682 432 672 432 432> @@ -132547,7 +132543,7 @@ EndSplineSet EndChar StartChar: u1D54C.it -Encoding: 1114762 -1 3971 +Encoding: 1114762 -1 3969 Width: 648 Flags: W HStem: -14 37<261 345 261 353> 616 37<189 267 189 189> @@ -132577,7 +132573,7 @@ EndSplineSet EndChar StartChar: u1D54D.it -Encoding: 1114763 -1 3972 +Encoding: 1114763 -1 3970 Width: 492 Flags: W HStem: 0 37<180 256 180 294 146 256> 616 37<117 193 117 117> @@ -132602,7 +132598,7 @@ EndSplineSet EndChar StartChar: u1D54E.it -Encoding: 1114764 -1 3973 +Encoding: 1114764 -1 3971 Width: 810 Flags: W HStem: 0 37<137 212 137 235 540 615> 616 37<137 212 137 137 540 615 540 540> @@ -132641,7 +132637,7 @@ EndSplineSet EndChar StartChar: u1D54F.it -Encoding: 1114765 -1 3974 +Encoding: 1114765 -1 3972 Width: 650 Flags: W HStem: 0 37<460 545 460 601 440 545> 617 36<214 296 214 214> @@ -132670,7 +132666,7 @@ EndSplineSet EndChar StartChar: u1D550.it -Encoding: 1114766 -1 3975 +Encoding: 1114766 -1 3973 Width: 458 Flags: W HStem: 0 37<194 273 194 301> 617 36<98 183 98 98> @@ -132699,7 +132695,7 @@ EndSplineSet EndChar StartChar: u1D552.it -Encoding: 1114767 -1 3976 +Encoding: 1114767 -1 3974 Width: 566 Flags: W HStem: -11 37<175 191> 0 37<347 416 347 442> 404 37<318 344.5 395 395> @@ -132749,7 +132745,7 @@ EndSplineSet EndChar StartChar: u1D553.it -Encoding: 1114768 -1 3977 +Encoding: 1114768 -1 3975 Width: 598 Flags: W HStem: -11 37<273.5 306 267 377> 0 37<74 141 74 164> 404 37<385 406> 646 37<242 309 242 242> @@ -132790,7 +132786,7 @@ EndSplineSet EndChar StartChar: u1D554.it -Encoding: 1114769 -1 3978 +Encoding: 1114769 -1 3976 Width: 504 Flags: W HStem: -11 37<208.5 237.5 208.5 272.5> 404 37<299.5 356> @@ -132819,7 +132815,7 @@ EndSplineSet EndChar StartChar: u1D557.it -Encoding: 1114770 -1 3979 +Encoding: 1114770 -1 3977 Width: 331 Flags: W HStem: 0 37<75 142 75 167> 391 37<60 135 51 145 286 367> 646 37<385.5 411> @@ -132851,7 +132847,7 @@ EndSplineSet EndChar StartChar: u1D558.it -Encoding: 1114771 -1 3980 +Encoding: 1114771 -1 3978 Width: 599 Flags: W HStem: -220 39<146 195.5 146 241> -11 37<192.5 213.5> 391 37<458 525 458 458> 404 37<297.5 315.5 215.5 335> @@ -132896,7 +132892,7 @@ EndSplineSet EndChar StartChar: u1D559.it -Encoding: 1114772 -1 3981 +Encoding: 1114772 -1 3979 Width: 588 Flags: W HStem: 0 37<74 140 74 167 365 431> 646 37<241 308 241 241> @@ -132933,7 +132929,7 @@ EndSplineSet EndChar StartChar: u1D55C.it -Encoding: 1114773 -1 3982 +Encoding: 1114773 -1 3980 Width: 545 Flags: W HStem: 0 37<72 138 72 165 376 444> 646 37<239 306 239 239> @@ -132968,7 +132964,7 @@ EndSplineSet EndChar StartChar: u1D55D.it -Encoding: 1114774 -1 3983 +Encoding: 1114774 -1 3981 Width: 306 Flags: W HStem: 0 37<74 140 74 168> 663 20<309 356 356 356> @@ -132990,7 +132986,7 @@ EndSplineSet EndChar StartChar: u1D55E.it -Encoding: 1114775 -1 3984 +Encoding: 1114775 -1 3982 Width: 857 Flags: W HStem: 0 37<74 140 74 167 354 420 634 700> 391 37<172 239 172 172> @@ -133043,7 +133039,7 @@ EndSplineSet EndChar StartChar: u1D55F.it -Encoding: 1114776 -1 3985 +Encoding: 1114776 -1 3983 Width: 588 Flags: W HStem: 0 37<74 140 74 167 365 431> 391 37<171 238 171 171> @@ -133080,7 +133076,7 @@ EndSplineSet EndChar StartChar: u1D560.it -Encoding: 1114777 -1 3986 +Encoding: 1114777 -1 3984 Width: 534 Flags: W HStem: -11 37<209.5 230.5 209.5 294> 404 37<302 323> @@ -133112,7 +133108,7 @@ EndSplineSet EndChar StartChar: u1D561.it -Encoding: 1114778 -1 3987 +Encoding: 1114778 -1 3985 Width: 628 Flags: W HStem: -218 37<52 118 52 145> -11 37<319.5 336.5 300.5 420> 391 37<208 275 208 208> 404 37<421 442> @@ -133152,7 +133148,7 @@ EndSplineSet EndChar StartChar: u1D562.it -Encoding: 1114779 -1 3988 +Encoding: 1114779 -1 3986 Width: 604 Flags: W HStem: -218 37<300 366 300 393> -11 37<192.5 213> 404 37<293 328.5 225 331 528 528> @@ -133194,7 +133190,7 @@ EndSplineSet EndChar StartChar: u1D563.it -Encoding: 1114780 -1 3989 +Encoding: 1114780 -1 3987 Width: 332 Flags: W HStem: 0 37<74 140 74 167> 391 37<172 240 172 172> @@ -133221,7 +133217,7 @@ EndSplineSet EndChar StartChar: u1D564.it -Encoding: 1114781 -1 3990 +Encoding: 1114781 -1 3988 Width: 502 Flags: W HStem: -11 37<169.5 231.5 169.5 249> 404 37<280 331> @@ -133255,7 +133251,7 @@ EndSplineSet EndChar StartChar: u1D565.it -Encoding: 1114782 -1 3991 +Encoding: 1114782 -1 3989 Width: 323 Flags: W HStem: -10 20 391 37<58 108 49 119 259 319> @@ -133292,7 +133288,7 @@ EndSplineSet EndChar StartChar: u1D566.it -Encoding: 1114783 -1 3992 +Encoding: 1114783 -1 3990 Width: 588 Flags: W HStem: -13 20 0 37<345 412 345 439> 391 37<152 218 152 152 443 509 443 443> @@ -133329,7 +133325,7 @@ EndSplineSet EndChar StartChar: u1D567.it -Encoding: 1114784 -1 3993 +Encoding: 1114784 -1 3991 Width: 395 Flags: W HStem: 0 37<115 179 115 203 83 179> 391 37<86 150 86 86> @@ -133354,7 +133350,7 @@ EndSplineSet EndChar StartChar: u1D568.it -Encoding: 1114785 -1 3994 +Encoding: 1114785 -1 3992 Width: 639 Flags: W HStem: 0 37<105 168 105 189 69 168 393 456> 391 37<93 156 93 93 381 444 381 381> @@ -133393,7 +133389,7 @@ EndSplineSet EndChar StartChar: u1D569.it -Encoding: 1114786 -1 3995 +Encoding: 1114786 -1 3993 Width: 557 Flags: W HStem: 0 37<336 406 336 466 314 406> 391 37<168 239 168 168> @@ -133422,7 +133418,7 @@ EndSplineSet EndChar StartChar: u1D56A.it -Encoding: 1114787 -1 3996 +Encoding: 1114787 -1 3994 Width: 471 Flags: W HStem: -218 37<85 134.5 85 139.5> 391 37<162 230 162 162> @@ -133452,7 +133448,7 @@ EndSplineSet EndChar StartChar: u1D56B.it -Encoding: 1114788 -1 3997 +Encoding: 1114788 -1 3995 Width: 540 Flags: W HStem: 0 37<72 157 209 478 21 21> 391 37<134 346 134 530 398 398 398 485 134 530> @@ -133482,7 +133478,7 @@ EndSplineSet EndChar StartChar: u1D7CA -Encoding: 120778 120778 3998 +Encoding: 120778 120778 3996 Width: 620 Flags: W HStem: 0 20 326 47<266 494 266 494> 642 34<310.5 380> @@ -133513,7 +133509,7 @@ EndSplineSet EndChar StartChar: u1D7CB -Encoding: 120779 120779 3999 +Encoding: 120779 120779 3997 Width: 491 Flags: W HStem: 97 44<205 408 205 408> 441 20<66 458 458 458> @@ -133537,7 +133533,7 @@ EndSplineSet EndChar StartChar: u1D4BE.dtls -Encoding: 1114789 -1 4000 +Encoding: 1114789 -1 3998 Width: 496 Flags: W HStem: -11 30<203 237.5 203 238.5> 315 30<144 172.5> @@ -133565,7 +133561,7 @@ EndSplineSet EndChar StartChar: u1D4BF.dtls -Encoding: 1114790 -1 4001 +Encoding: 1114790 -1 3999 Width: 730 Flags: W HStem: -219 34<82.5 118 82.5 147> -127 30<401.5 430.5> -72 30<160 181> 296 30<357.5 384.5> @@ -133602,7 +133598,7 @@ EndSplineSet EndChar StartChar: u1D4F2.dtls -Encoding: 1114791 -1 4002 +Encoding: 1114791 -1 4000 Width: 558 Flags: MW HStem: -14 50<255.5 278.5 255.5 283> 319 50<120 162.5> 430 20<306 424 424 424> @@ -133629,7 +133625,7 @@ EndSplineSet EndChar StartChar: u1D4F3.dtls -Encoding: 1114792 -1 4003 +Encoding: 1114792 -1 4001 Width: 840 Flags: MW HStem: -223 50<171.5 195.5 171.5 212> -130 50<496.5 516> -81 50<247.5 255.5> 319 50<402 445> 430 20<598 710 710 710> @@ -133664,7 +133660,7 @@ EndSplineSet EndChar StartChar: u1D526.dtls -Encoding: 1114793 -1 4004 +Encoding: 1114793 -1 4002 Width: 384 Flags: W HStem: -18 20 @@ -133693,7 +133689,7 @@ EndSplineSet EndChar StartChar: u1D527.dtls -Encoding: 1114794 -1 4005 +Encoding: 1114794 -1 4003 Width: 345 Flags: W LayerCount: 2 @@ -133721,7 +133717,7 @@ EndSplineSet EndChar StartChar: u1D55A.dtls -Encoding: 1114795 -1 4006 +Encoding: 1114795 -1 4004 Width: 258 Flags: MW HStem: 0 44<99 159 99 203> 406 44<99 159 99 99> @@ -133743,7 +133739,7 @@ EndSplineSet EndChar StartChar: u1D55B.dtls -Encoding: 1114796 -1 4007 +Encoding: 1114796 -1 4005 Width: 305 Flags: MW HStem: -217 45<54.5 66.5 48 122.5> 406 44<151 206 151 151> @@ -133769,7 +133765,7 @@ EndSplineSet EndChar StartChar: u1D58E.dtls -Encoding: 1114797 -1 4008 +Encoding: 1114797 -1 4006 Width: 429 Flags: MW LayerCount: 2 @@ -133796,7 +133792,7 @@ EndSplineSet EndChar StartChar: u1D58F.dtls -Encoding: 1114798 -1 4009 +Encoding: 1114798 -1 4007 Width: 389 Flags: MW LayerCount: 2 @@ -133824,7 +133820,7 @@ EndSplineSet EndChar StartChar: u1D5C2.dtls -Encoding: 1114799 -1 4010 +Encoding: 1114799 -1 4008 Width: 220 Flags: MW HStem: 0 20 @@ -133842,7 +133838,7 @@ EndSplineSet EndChar StartChar: u1D5C3.dtls -Encoding: 1114800 -1 4011 +Encoding: 1114800 -1 4009 Width: 254 Flags: MW HStem: -216 72<23 52.5> @@ -133866,7 +133862,7 @@ EndSplineSet EndChar StartChar: u1D5F6.dtls -Encoding: 1114801 -1 4012 +Encoding: 1114801 -1 4010 Width: 245 Flags: W HStem: 0 20 @@ -133882,7 +133878,7 @@ EndSplineSet EndChar StartChar: u1D5F7.dtls -Encoding: 1114802 -1 4013 +Encoding: 1114802 -1 4011 Width: 324 Flags: W LayerCount: 2 @@ -133903,7 +133899,7 @@ EndSplineSet EndChar StartChar: u1D62A.dtls -Encoding: 1114803 -1 4014 +Encoding: 1114803 -1 4012 Width: 220 Flags: MW HStem: 0 20 @@ -133920,7 +133916,7 @@ EndSplineSet EndChar StartChar: u1D62B.dtls -Encoding: 1114804 -1 4015 +Encoding: 1114804 -1 4013 Width: 254 Flags: MW HStem: -216 72<-12 17.5 -12 26> @@ -133942,7 +133938,7 @@ EndSplineSet EndChar StartChar: u1D65E.dtls -Encoding: 1114805 -1 4016 +Encoding: 1114805 -1 4014 Width: 245 Flags: W HStem: 0 20 @@ -133958,7 +133954,7 @@ EndSplineSet EndChar StartChar: u1D65F.dtls -Encoding: 1114806 -1 4017 +Encoding: 1114806 -1 4015 Width: 324 Flags: W LayerCount: 2 @@ -133978,7 +133974,7 @@ EndSplineSet EndChar StartChar: u1D692.dtls -Encoding: 1114807 -1 4018 +Encoding: 1114807 -1 4016 Width: 525 Flags: MW HStem: 0 64<101.5 245 108 245 303 424> 386 64<109.5 279 116 245> @@ -134008,7 +134004,7 @@ EndSplineSet EndChar StartChar: u1D693.dtls -Encoding: 1114808 -1 4019 +Encoding: 1114808 -1 4017 Width: 525 Flags: MW HStem: 386 64<151.5 337 158 303> @@ -134038,7 +134034,7 @@ EndSplineSet EndChar StartChar: uni2148.dtls -Encoding: 1114809 -1 4020 +Encoding: 1114809 -1 4018 Width: 293 Flags: MW HStem: 0 37<74 141 74 167> 391 37<171 238 171 171> @@ -134059,7 +134055,7 @@ EndSplineSet EndChar StartChar: uni2149.dtls -Encoding: 1114810 -1 4021 +Encoding: 1114810 -1 4019 Width: 341 Flags: MW HStem: -217 36<-24 -3 -24 29.5> 391 37<220 280 220 220> @@ -134084,7 +134080,7 @@ EndSplineSet EndChar StartChar: uni02F7 -Encoding: 759 759 4022 +Encoding: 759 759 4020 Width: 333 Flags: W TopAccentHorizontal: 166 @@ -134107,7 +134103,7 @@ EndSplineSet EndChar StartChar: uni02F3 -Encoding: 755 755 4023 +Encoding: 755 755 4021 Width: 333 Flags: W TopAccentHorizontal: 166 @@ -134130,7 +134126,7 @@ EndSplineSet EndChar StartChar: uni200B -Encoding: 8203 8203 4024 +Encoding: 8203 8203 4022 Width: 0 VWidth: 0 Flags: W @@ -134138,7 +134134,7 @@ LayerCount: 2 EndChar StartChar: uni200C -Encoding: 8204 8204 4025 +Encoding: 8204 8204 4023 Width: 0 VWidth: 0 Flags: W @@ -134146,7 +134142,7 @@ LayerCount: 2 EndChar StartChar: uni200D -Encoding: 8205 8205 4026 +Encoding: 8205 8205 4024 Width: 0 VWidth: 0 Flags: W @@ -134154,7 +134150,7 @@ LayerCount: 2 EndChar StartChar: uni200E -Encoding: 8206 8206 4027 +Encoding: 8206 8206 4025 Width: 0 VWidth: 0 Flags: W @@ -134162,7 +134158,7 @@ LayerCount: 2 EndChar StartChar: uni200F -Encoding: 8207 8207 4028 +Encoding: 8207 8207 4026 Width: 0 VWidth: 0 Flags: W @@ -134170,7 +134166,7 @@ LayerCount: 2 EndChar StartChar: uni2000 -Encoding: 8192 8192 4029 +Encoding: 8192 8192 4027 Width: 500 VWidth: 0 Flags: W @@ -134178,7 +134174,7 @@ LayerCount: 2 EndChar StartChar: uni2002 -Encoding: 8194 8194 4030 +Encoding: 8194 8194 4028 Width: 500 VWidth: 0 Flags: W @@ -134186,7 +134182,7 @@ LayerCount: 2 EndChar StartChar: uni2001 -Encoding: 8193 8193 4031 +Encoding: 8193 8193 4029 Width: 1000 VWidth: 0 Flags: W @@ -134194,7 +134190,7 @@ LayerCount: 2 EndChar StartChar: uni2003 -Encoding: 8195 8195 4032 +Encoding: 8195 8195 4030 Width: 1000 VWidth: 0 Flags: W @@ -134202,7 +134198,7 @@ LayerCount: 2 EndChar StartChar: uni2004 -Encoding: 8196 8196 4033 +Encoding: 8196 8196 4031 Width: 333 VWidth: 0 Flags: W @@ -134210,7 +134206,7 @@ LayerCount: 2 EndChar StartChar: uni2005 -Encoding: 8197 8197 4034 +Encoding: 8197 8197 4032 Width: 250 VWidth: 0 Flags: W @@ -134218,7 +134214,7 @@ LayerCount: 2 EndChar StartChar: uni2006 -Encoding: 8198 8198 4035 +Encoding: 8198 8198 4033 Width: 167 VWidth: 0 Flags: W @@ -134226,7 +134222,7 @@ LayerCount: 2 EndChar StartChar: uni2007 -Encoding: 8199 8199 4036 +Encoding: 8199 8199 4034 Width: 500 VWidth: 0 Flags: W @@ -134234,7 +134230,7 @@ LayerCount: 2 EndChar StartChar: uni2008 -Encoding: 8200 8200 4037 +Encoding: 8200 8200 4035 Width: 250 VWidth: 0 Flags: W @@ -134242,7 +134238,7 @@ LayerCount: 2 EndChar StartChar: uni2009 -Encoding: 8201 8201 4038 +Encoding: 8201 8201 4036 Width: 200 VWidth: 0 Flags: W @@ -134250,7 +134246,7 @@ LayerCount: 2 EndChar StartChar: uni200A -Encoding: 8202 8202 4039 +Encoding: 8202 8202 4037 Width: 100 VWidth: 0 Flags: W @@ -134258,7 +134254,7 @@ LayerCount: 2 EndChar StartChar: uni2028 -Encoding: 8232 8232 4040 +Encoding: 8232 8232 4038 Width: 0 VWidth: 0 Flags: W @@ -134266,7 +134262,7 @@ LayerCount: 2 EndChar StartChar: uni2029 -Encoding: 8233 8233 4041 +Encoding: 8233 8233 4039 Width: 0 VWidth: 0 Flags: W @@ -134274,7 +134270,7 @@ LayerCount: 2 EndChar StartChar: uni202A -Encoding: 8234 8234 4042 +Encoding: 8234 8234 4040 Width: 0 VWidth: 0 Flags: W @@ -134282,7 +134278,7 @@ LayerCount: 2 EndChar StartChar: uni202B -Encoding: 8235 8235 4043 +Encoding: 8235 8235 4041 Width: 0 VWidth: 0 Flags: W @@ -134290,7 +134286,7 @@ LayerCount: 2 EndChar StartChar: uni202C -Encoding: 8236 8236 4044 +Encoding: 8236 8236 4042 Width: 0 VWidth: 0 Flags: W @@ -134298,7 +134294,7 @@ LayerCount: 2 EndChar StartChar: uni202D -Encoding: 8237 8237 4045 +Encoding: 8237 8237 4043 Width: 0 VWidth: 0 Flags: W @@ -134306,7 +134302,7 @@ LayerCount: 2 EndChar StartChar: uni202E -Encoding: 8238 8238 4046 +Encoding: 8238 8238 4044 Width: 0 VWidth: 0 Flags: W @@ -134314,7 +134310,7 @@ LayerCount: 2 EndChar StartChar: uni202F -Encoding: 8239 8239 4047 +Encoding: 8239 8239 4045 Width: 200 VWidth: 0 Flags: W @@ -134322,7 +134318,7 @@ LayerCount: 2 EndChar StartChar: uni0000 -Encoding: 0 0 4048 +Encoding: 0 0 4046 Width: 0 VWidth: 0 Flags: W @@ -134330,7 +134326,7 @@ LayerCount: 2 EndChar StartChar: uni0001 -Encoding: 1 1 4049 +Encoding: 1 1 4047 Width: 0 VWidth: 0 Flags: W @@ -134338,7 +134334,7 @@ LayerCount: 2 EndChar StartChar: uni0002 -Encoding: 2 2 4050 +Encoding: 2 2 4048 Width: 0 VWidth: 0 Flags: W @@ -134346,7 +134342,7 @@ LayerCount: 2 EndChar StartChar: uni0003 -Encoding: 3 3 4051 +Encoding: 3 3 4049 Width: 0 VWidth: 0 Flags: W @@ -134354,7 +134350,7 @@ LayerCount: 2 EndChar StartChar: uni0004 -Encoding: 4 4 4052 +Encoding: 4 4 4050 Width: 0 VWidth: 0 Flags: W @@ -134362,7 +134358,7 @@ LayerCount: 2 EndChar StartChar: uni0005 -Encoding: 5 5 4053 +Encoding: 5 5 4051 Width: 0 VWidth: 0 Flags: W @@ -134370,7 +134366,7 @@ LayerCount: 2 EndChar StartChar: uni0006 -Encoding: 6 6 4054 +Encoding: 6 6 4052 Width: 0 VWidth: 0 Flags: W @@ -134378,7 +134374,7 @@ LayerCount: 2 EndChar StartChar: uni0007 -Encoding: 7 7 4055 +Encoding: 7 7 4053 Width: 0 VWidth: 0 Flags: W @@ -134386,7 +134382,7 @@ LayerCount: 2 EndChar StartChar: uni0008 -Encoding: 8 8 4056 +Encoding: 8 8 4054 Width: 0 VWidth: 0 Flags: W @@ -134394,7 +134390,7 @@ LayerCount: 2 EndChar StartChar: uni0009 -Encoding: 9 9 4057 +Encoding: 9 9 4055 Width: 0 VWidth: 0 Flags: W @@ -134402,7 +134398,7 @@ LayerCount: 2 EndChar StartChar: uni000A -Encoding: 10 10 4058 +Encoding: 10 10 4056 Width: 0 VWidth: 0 Flags: W @@ -134410,7 +134406,7 @@ LayerCount: 2 EndChar StartChar: uni000B -Encoding: 11 11 4059 +Encoding: 11 11 4057 Width: 0 VWidth: 0 Flags: W @@ -134418,7 +134414,7 @@ LayerCount: 2 EndChar StartChar: uni000C -Encoding: 12 12 4060 +Encoding: 12 12 4058 Width: 0 VWidth: 0 Flags: W @@ -134426,7 +134422,7 @@ LayerCount: 2 EndChar StartChar: uni000D -Encoding: 13 13 4061 +Encoding: 13 13 4059 Width: 0 VWidth: 0 Flags: W @@ -134434,7 +134430,7 @@ LayerCount: 2 EndChar StartChar: uni000E -Encoding: 14 14 4062 +Encoding: 14 14 4060 Width: 0 VWidth: 0 Flags: W @@ -134442,7 +134438,7 @@ LayerCount: 2 EndChar StartChar: uni000F -Encoding: 15 15 4063 +Encoding: 15 15 4061 Width: 0 VWidth: 0 Flags: W @@ -134450,7 +134446,7 @@ LayerCount: 2 EndChar StartChar: uni0010 -Encoding: 16 16 4064 +Encoding: 16 16 4062 Width: 0 VWidth: 0 Flags: W @@ -134458,7 +134454,7 @@ LayerCount: 2 EndChar StartChar: uni0011 -Encoding: 17 17 4065 +Encoding: 17 17 4063 Width: 0 VWidth: 0 Flags: W @@ -134466,7 +134462,7 @@ LayerCount: 2 EndChar StartChar: uni0012 -Encoding: 18 18 4066 +Encoding: 18 18 4064 Width: 0 VWidth: 0 Flags: W @@ -134474,7 +134470,7 @@ LayerCount: 2 EndChar StartChar: uni0013 -Encoding: 19 19 4067 +Encoding: 19 19 4065 Width: 0 VWidth: 0 Flags: W @@ -134482,7 +134478,7 @@ LayerCount: 2 EndChar StartChar: uni0014 -Encoding: 20 20 4068 +Encoding: 20 20 4066 Width: 0 VWidth: 0 Flags: W @@ -134490,7 +134486,7 @@ LayerCount: 2 EndChar StartChar: uni0015 -Encoding: 21 21 4069 +Encoding: 21 21 4067 Width: 0 VWidth: 0 Flags: W @@ -134498,7 +134494,7 @@ LayerCount: 2 EndChar StartChar: uni0016 -Encoding: 22 22 4070 +Encoding: 22 22 4068 Width: 0 VWidth: 0 Flags: W @@ -134506,7 +134502,7 @@ LayerCount: 2 EndChar StartChar: uni0017 -Encoding: 23 23 4071 +Encoding: 23 23 4069 Width: 0 VWidth: 0 Flags: W @@ -134514,7 +134510,7 @@ LayerCount: 2 EndChar StartChar: uni0018 -Encoding: 24 24 4072 +Encoding: 24 24 4070 Width: 0 VWidth: 0 Flags: W @@ -134522,7 +134518,7 @@ LayerCount: 2 EndChar StartChar: uni0019 -Encoding: 25 25 4073 +Encoding: 25 25 4071 Width: 0 VWidth: 0 Flags: W @@ -134530,7 +134526,7 @@ LayerCount: 2 EndChar StartChar: uni001A -Encoding: 26 26 4074 +Encoding: 26 26 4072 Width: 0 VWidth: 0 Flags: W @@ -134538,7 +134534,7 @@ LayerCount: 2 EndChar StartChar: uni001B -Encoding: 27 27 4075 +Encoding: 27 27 4073 Width: 0 VWidth: 0 Flags: W @@ -134546,7 +134542,7 @@ LayerCount: 2 EndChar StartChar: uni001C -Encoding: 28 28 4076 +Encoding: 28 28 4074 Width: 0 VWidth: 0 Flags: W @@ -134554,7 +134550,7 @@ LayerCount: 2 EndChar StartChar: uni001D -Encoding: 29 29 4077 +Encoding: 29 29 4075 Width: 0 VWidth: 0 Flags: W @@ -134562,7 +134558,7 @@ LayerCount: 2 EndChar StartChar: uni001E -Encoding: 30 30 4078 +Encoding: 30 30 4076 Width: 0 VWidth: 0 Flags: W @@ -134570,7 +134566,7 @@ LayerCount: 2 EndChar StartChar: uni001F -Encoding: 31 31 4079 +Encoding: 31 31 4077 Width: 0 VWidth: 0 Flags: W @@ -134578,7 +134574,7 @@ LayerCount: 2 EndChar StartChar: uni23DC.ex -Encoding: 1114811 -1 4080 +Encoding: 1114811 -1 4078 Width: 633 VWidth: 1308 Flags: W @@ -134595,7 +134591,7 @@ EndSplineSet EndChar StartChar: uni23DD.ex -Encoding: 1114812 -1 4081 +Encoding: 1114812 -1 4079 Width: 633 VWidth: 448 Flags: W @@ -134612,7 +134608,7 @@ EndSplineSet EndChar StartChar: uni222B.up -Encoding: 1114813 -1 4082 +Encoding: 1114813 -1 4080 Width: 508 Flags: MW ItalicCorrection: 142 @@ -134645,7 +134641,7 @@ EndSplineSet EndChar StartChar: uni222C.up -Encoding: 1114814 -1 4083 +Encoding: 1114814 -1 4081 Width: 738 Flags: MW ItalicCorrection: 142 @@ -134697,7 +134693,7 @@ EndSplineSet EndChar StartChar: uni222D.up -Encoding: 1114815 -1 4084 +Encoding: 1114815 -1 4082 Width: 968 Flags: MW ItalicCorrection: 142 @@ -134768,7 +134764,7 @@ EndSplineSet EndChar StartChar: uni222E.up -Encoding: 1114816 -1 4085 +Encoding: 1114816 -1 4083 Width: 539 Flags: MW ItalicCorrection: 142 @@ -134813,7 +134809,7 @@ EndSplineSet EndChar StartChar: uni222F.up -Encoding: 1114817 -1 4086 +Encoding: 1114817 -1 4084 Width: 728 Flags: MW ItalicCorrection: 142 @@ -134887,7 +134883,7 @@ EndSplineSet EndChar StartChar: uni2230.up -Encoding: 1114818 -1 4087 +Encoding: 1114818 -1 4085 Width: 1018 Flags: MW ItalicCorrection: 142 @@ -134982,7 +134978,7 @@ EndSplineSet EndChar StartChar: uni2231.up -Encoding: 1114819 -1 4088 +Encoding: 1114819 -1 4086 Width: 552 Flags: MW ItalicCorrection: 142 @@ -135034,7 +135030,7 @@ EndSplineSet EndChar StartChar: uni2232.up -Encoding: 1114820 -1 4089 +Encoding: 1114820 -1 4087 Width: 539 Flags: MW ItalicCorrection: 142 @@ -135093,7 +135089,7 @@ EndSplineSet EndChar StartChar: uni2233.up -Encoding: 1114821 -1 4090 +Encoding: 1114821 -1 4088 Width: 539 Flags: MW ItalicCorrection: 142 @@ -135151,7 +135147,7 @@ EndSplineSet EndChar StartChar: uni2A0B.up -Encoding: 1114822 -1 4091 +Encoding: 1114822 -1 4089 Width: 622 Flags: MW ItalicCorrection: 142 @@ -135213,7 +135209,7 @@ EndSplineSet EndChar StartChar: uni2A0C.up -Encoding: 1114823 -1 4092 +Encoding: 1114823 -1 4090 Width: 1235 Flags: MW ItalicCorrection: 142 @@ -135295,7 +135291,7 @@ EndSplineSet EndChar StartChar: uni2A0D.up -Encoding: 1114824 -1 4093 +Encoding: 1114824 -1 4091 Width: 559 Flags: MW ItalicCorrection: 142 @@ -135334,7 +135330,7 @@ EndSplineSet EndChar StartChar: uni2A0E.up -Encoding: 1114825 -1 4094 +Encoding: 1114825 -1 4092 Width: 559 Flags: MW ItalicCorrection: 142 @@ -135381,7 +135377,7 @@ EndSplineSet EndChar StartChar: uni2A0F.up -Encoding: 1114826 -1 4095 +Encoding: 1114826 -1 4093 Width: 591 Flags: MW ItalicCorrection: 142 @@ -135422,7 +135418,7 @@ EndSplineSet EndChar StartChar: uni2A10.up -Encoding: 1114827 -1 4096 +Encoding: 1114827 -1 4094 Width: 553 Flags: MW ItalicCorrection: 142 @@ -135468,7 +135464,7 @@ EndSplineSet EndChar StartChar: uni2A11.up -Encoding: 1114828 -1 4097 +Encoding: 1114828 -1 4095 Width: 545 Flags: MW ItalicCorrection: 142 @@ -135519,7 +135515,7 @@ EndSplineSet EndChar StartChar: uni2A12.up -Encoding: 1114829 -1 4098 +Encoding: 1114829 -1 4096 Width: 484 Flags: MW ItalicCorrection: 142 @@ -135563,7 +135559,7 @@ EndSplineSet EndChar StartChar: uni2A13.up -Encoding: 1114830 -1 4099 +Encoding: 1114830 -1 4097 Width: 503 Flags: MW ItalicCorrection: 142 @@ -135607,7 +135603,7 @@ EndSplineSet EndChar StartChar: uni2A14.up -Encoding: 1114831 -1 4100 +Encoding: 1114831 -1 4098 Width: 503 Flags: MW ItalicCorrection: 142 @@ -135653,7 +135649,7 @@ EndSplineSet EndChar StartChar: uni2A15.up -Encoding: 1114832 -1 4101 +Encoding: 1114832 -1 4099 Width: 535 Flags: MW ItalicCorrection: 142 @@ -135700,7 +135696,7 @@ EndSplineSet EndChar StartChar: uni2A16.up -Encoding: 1114833 -1 4102 +Encoding: 1114833 -1 4100 Width: 531 Flags: MW ItalicCorrection: 142 @@ -135749,7 +135745,7 @@ EndSplineSet EndChar StartChar: uni2A17.up -Encoding: 1114834 -1 4103 +Encoding: 1114834 -1 4101 Width: 719 Flags: MW ItalicCorrection: 142 @@ -135804,7 +135800,7 @@ EndSplineSet EndChar StartChar: uni2A18.up -Encoding: 1114835 -1 4104 +Encoding: 1114835 -1 4102 Width: 555 Flags: MW ItalicCorrection: 142 @@ -135849,7 +135845,7 @@ EndSplineSet EndChar StartChar: uni2A19.up -Encoding: 1114836 -1 4105 +Encoding: 1114836 -1 4103 Width: 583 Flags: MW ItalicCorrection: 142 @@ -135892,7 +135888,7 @@ EndSplineSet EndChar StartChar: uni2A1A.up -Encoding: 1114837 -1 4106 +Encoding: 1114837 -1 4104 Width: 583 Flags: MW ItalicCorrection: 142 @@ -135935,7 +135931,7 @@ EndSplineSet EndChar StartChar: uni2A1B.up -Encoding: 1114838 -1 4107 +Encoding: 1114838 -1 4105 Width: 585 Flags: MW ItalicCorrection: 142 @@ -135971,7 +135967,7 @@ EndSplineSet EndChar StartChar: uni2A1C.up -Encoding: 1114839 -1 4108 +Encoding: 1114839 -1 4106 Width: 518 Flags: MW ItalicCorrection: 50 @@ -136007,7 +136003,7 @@ EndSplineSet EndChar StartChar: uni222B.up.display -Encoding: 1114840 -1 4109 +Encoding: 1114840 -1 4107 Width: 612 Flags: MW ItalicCorrection: 145 @@ -136037,7 +136033,7 @@ EndSplineSet EndChar StartChar: uni222C.up.display -Encoding: 1114841 -1 4110 +Encoding: 1114841 -1 4108 Width: 932 Flags: MW ItalicCorrection: 145 @@ -136084,7 +136080,7 @@ EndSplineSet EndChar StartChar: uni222D.up.display -Encoding: 1114842 -1 4111 +Encoding: 1114842 -1 4109 Width: 1252 Flags: MW ItalicCorrection: 145 @@ -136148,7 +136144,7 @@ EndSplineSet EndChar StartChar: uni222E.up.display -Encoding: 1114843 -1 4112 +Encoding: 1114843 -1 4110 Width: 700 Flags: MW ItalicCorrection: 145 @@ -136192,7 +136188,7 @@ EndSplineSet EndChar StartChar: uni222F.up.display -Encoding: 1114844 -1 4113 +Encoding: 1114844 -1 4111 Width: 933 Flags: MW ItalicCorrection: 145 @@ -136269,7 +136265,7 @@ EndSplineSet EndChar StartChar: uni2230.up.display -Encoding: 1114845 -1 4114 +Encoding: 1114845 -1 4112 Width: 1245 Flags: MW ItalicCorrection: 145 @@ -136363,7 +136359,7 @@ EndSplineSet EndChar StartChar: uni2231.up.display -Encoding: 1114846 -1 4115 +Encoding: 1114846 -1 4113 Width: 692 Flags: MW ItalicCorrection: 145 @@ -136414,7 +136410,7 @@ EndSplineSet EndChar StartChar: uni2232.up.display -Encoding: 1114847 -1 4116 +Encoding: 1114847 -1 4114 Width: 700 Flags: MW ItalicCorrection: 145 @@ -136471,7 +136467,7 @@ EndSplineSet EndChar StartChar: uni2233.up.display -Encoding: 1114848 -1 4117 +Encoding: 1114848 -1 4115 Width: 689 Flags: MW ItalicCorrection: 145 @@ -136531,7 +136527,7 @@ EndSplineSet EndChar StartChar: uni2A0B.up.display -Encoding: 1114849 -1 4118 +Encoding: 1114849 -1 4116 Width: 795 Flags: MW ItalicCorrection: 145 @@ -136590,7 +136586,7 @@ EndSplineSet EndChar StartChar: uni2A0C.up.display -Encoding: 1114850 -1 4119 +Encoding: 1114850 -1 4117 Width: 1542 Flags: MW ItalicCorrection: 145 @@ -136671,7 +136667,7 @@ EndSplineSet EndChar StartChar: uni2A0D.up.display -Encoding: 1114851 -1 4120 +Encoding: 1114851 -1 4118 Width: 649 Flags: MW ItalicCorrection: 145 @@ -136709,7 +136705,7 @@ EndSplineSet EndChar StartChar: uni2A0E.up.display -Encoding: 1114852 -1 4121 +Encoding: 1114852 -1 4119 Width: 649 Flags: MW ItalicCorrection: 145 @@ -136755,7 +136751,7 @@ EndSplineSet EndChar StartChar: uni2A0F.up.display -Encoding: 1114853 -1 4122 +Encoding: 1114853 -1 4120 Width: 708 Flags: MW ItalicCorrection: 145 @@ -136795,7 +136791,7 @@ EndSplineSet EndChar StartChar: uni2A10.up.display -Encoding: 1114854 -1 4123 +Encoding: 1114854 -1 4121 Width: 697 Flags: MW ItalicCorrection: 145 @@ -136840,7 +136836,7 @@ EndSplineSet EndChar StartChar: uni2A11.up.display -Encoding: 1114855 -1 4124 +Encoding: 1114855 -1 4122 Width: 688 Flags: MW ItalicCorrection: 145 @@ -136889,7 +136885,7 @@ EndSplineSet EndChar StartChar: uni2A12.up.display -Encoding: 1114856 -1 4125 +Encoding: 1114856 -1 4123 Width: 612 Flags: MW ItalicCorrection: 145 @@ -136932,7 +136928,7 @@ EndSplineSet EndChar StartChar: uni2A13.up.display -Encoding: 1114857 -1 4126 +Encoding: 1114857 -1 4124 Width: 612 Flags: MW ItalicCorrection: 145 @@ -136975,7 +136971,7 @@ EndSplineSet EndChar StartChar: uni2A14.up.display -Encoding: 1114858 -1 4127 +Encoding: 1114858 -1 4125 Width: 612 Flags: MW ItalicCorrection: 145 @@ -137020,7 +137016,7 @@ EndSplineSet EndChar StartChar: uni2A15.up.display -Encoding: 1114859 -1 4128 +Encoding: 1114859 -1 4126 Width: 697 Flags: MW ItalicCorrection: 145 @@ -137066,7 +137062,7 @@ EndSplineSet EndChar StartChar: uni2A16.up.display -Encoding: 1114860 -1 4129 +Encoding: 1114860 -1 4127 Width: 697 Flags: MW ItalicCorrection: 145 @@ -137114,7 +137110,7 @@ EndSplineSet EndChar StartChar: uni2A17.up.display -Encoding: 1114861 -1 4130 +Encoding: 1114861 -1 4128 Width: 881 Flags: MW ItalicCorrection: 145 @@ -137168,7 +137164,7 @@ EndSplineSet EndChar StartChar: uni2A18.up.display -Encoding: 1114862 -1 4131 +Encoding: 1114862 -1 4129 Width: 662 Flags: MW ItalicCorrection: 145 @@ -137212,7 +137208,7 @@ EndSplineSet EndChar StartChar: uni2A19.up.display -Encoding: 1114863 -1 4132 +Encoding: 1114863 -1 4130 Width: 763 Flags: MW ItalicCorrection: 145 @@ -137254,7 +137250,7 @@ EndSplineSet EndChar StartChar: uni2A1A.up.display -Encoding: 1114864 -1 4133 +Encoding: 1114864 -1 4131 Width: 763 Flags: MW ItalicCorrection: 145 @@ -137296,7 +137292,7 @@ EndSplineSet EndChar StartChar: uni2A1B.up.display -Encoding: 1114865 -1 4134 +Encoding: 1114865 -1 4132 Width: 841 Flags: MW ItalicCorrection: 140 @@ -137331,7 +137327,7 @@ EndSplineSet EndChar StartChar: uni2A1C.up.display -Encoding: 1114866 -1 4135 +Encoding: 1114866 -1 4133 Width: 612 Flags: MW ItalicCorrection: -200 @@ -137366,7 +137362,7 @@ EndSplineSet EndChar StartChar: uni222B.rtlm -Encoding: 1114867 -1 4136 +Encoding: 1114867 -1 4134 Width: 692 Flags: W ItalicCorrection: 180 @@ -137398,7 +137394,7 @@ EndSplineSet EndChar StartChar: uni222C.rtlm -Encoding: 1114868 -1 4137 +Encoding: 1114868 -1 4135 Width: 931 Flags: W ItalicCorrection: 180 @@ -137447,7 +137443,7 @@ EndSplineSet EndChar StartChar: uni222D.rtlm -Encoding: 1114869 -1 4138 +Encoding: 1114869 -1 4136 Width: 1173 Flags: W ItalicCorrection: 180 @@ -137513,7 +137509,7 @@ EndSplineSet EndChar StartChar: uni222E.rtlm -Encoding: 1114870 -1 4139 +Encoding: 1114870 -1 4137 Width: 692 Flags: W ItalicCorrection: 180 @@ -137563,7 +137559,7 @@ EndSplineSet EndChar StartChar: uni222F.rtlm -Encoding: 1114871 -1 4140 +Encoding: 1114871 -1 4138 Width: 931 Flags: W ItalicCorrection: 180 @@ -137638,7 +137634,7 @@ EndSplineSet EndChar StartChar: uni2230.rtlm -Encoding: 1114872 -1 4141 +Encoding: 1114872 -1 4139 Width: 1172 Flags: W ItalicCorrection: 180 @@ -137738,7 +137734,7 @@ EndSplineSet EndChar StartChar: uni2231.rtlm -Encoding: 1114873 -1 4142 +Encoding: 1114873 -1 4140 Width: 692 Flags: W ItalicCorrection: 180 @@ -137794,7 +137790,7 @@ EndSplineSet EndChar StartChar: uni2232.rtlm -Encoding: 1114874 -1 4143 +Encoding: 1114874 -1 4141 Width: 692 Flags: W ItalicCorrection: 180 @@ -137853,7 +137849,7 @@ EndSplineSet EndChar StartChar: uni2233.rtlm -Encoding: 1114875 -1 4144 +Encoding: 1114875 -1 4142 Width: 692 Flags: W ItalicCorrection: 180 @@ -137910,7 +137906,7 @@ EndSplineSet EndChar StartChar: uni2A0B.rtlm -Encoding: 1114876 -1 4145 +Encoding: 1114876 -1 4143 Width: 692 Flags: W ItalicCorrection: 180 @@ -137971,7 +137967,7 @@ EndSplineSet EndChar StartChar: uni2A0C.rtlm -Encoding: 1114877 -1 4146 +Encoding: 1114877 -1 4144 Width: 1414 Flags: W ItalicCorrection: 180 @@ -138054,7 +138050,7 @@ EndSplineSet EndChar StartChar: uni2A0D.rtlm -Encoding: 1114878 -1 4147 +Encoding: 1114878 -1 4145 Width: 692 Flags: W ItalicCorrection: 180 @@ -138094,7 +138090,7 @@ EndSplineSet EndChar StartChar: uni2A0E.rtlm -Encoding: 1114879 -1 4148 +Encoding: 1114879 -1 4146 Width: 692 Flags: W ItalicCorrection: 180 @@ -138142,7 +138138,7 @@ EndSplineSet EndChar StartChar: uni2A0F.rtlm -Encoding: 1114880 -1 4149 +Encoding: 1114880 -1 4147 Width: 692 Flags: W ItalicCorrection: 180 @@ -138182,7 +138178,7 @@ EndSplineSet EndChar StartChar: uni2A10.rtlm -Encoding: 1114881 -1 4150 +Encoding: 1114881 -1 4148 Width: 692 Flags: W ItalicCorrection: 180 @@ -138233,7 +138229,7 @@ EndSplineSet EndChar StartChar: uni2A11.rtlm -Encoding: 1114882 -1 4151 +Encoding: 1114882 -1 4149 Width: 692 Flags: W ItalicCorrection: 180 @@ -138286,7 +138282,7 @@ EndSplineSet EndChar StartChar: uni2A12.rtlm -Encoding: 1114883 -1 4152 +Encoding: 1114883 -1 4150 Width: 692 Flags: W ItalicCorrection: 180 @@ -138331,7 +138327,7 @@ EndSplineSet EndChar StartChar: uni2A13.rtlm -Encoding: 1114884 -1 4153 +Encoding: 1114884 -1 4151 Width: 692 Flags: W ItalicCorrection: 180 @@ -138376,7 +138372,7 @@ EndSplineSet EndChar StartChar: uni2A14.rtlm -Encoding: 1114885 -1 4154 +Encoding: 1114885 -1 4152 Width: 692 Flags: W ItalicCorrection: 180 @@ -138423,7 +138419,7 @@ EndSplineSet EndChar StartChar: uni2A15.rtlm -Encoding: 1114886 -1 4155 +Encoding: 1114886 -1 4153 Width: 692 Flags: W ItalicCorrection: 180 @@ -138473,7 +138469,7 @@ EndSplineSet EndChar StartChar: uni2A16.rtlm -Encoding: 1114887 -1 4156 +Encoding: 1114887 -1 4154 Width: 692 Flags: W ItalicCorrection: 180 @@ -138523,7 +138519,7 @@ EndSplineSet EndChar StartChar: uni2A17.rtlm -Encoding: 1114888 -1 4157 +Encoding: 1114888 -1 4155 Width: 871 Flags: W ItalicCorrection: 180 @@ -138579,7 +138575,7 @@ EndSplineSet EndChar StartChar: uni2A18.rtlm -Encoding: 1114889 -1 4158 +Encoding: 1114889 -1 4156 Width: 692 Flags: W ItalicCorrection: 180 @@ -138625,7 +138621,7 @@ EndSplineSet EndChar StartChar: uni2A19.rtlm -Encoding: 1114890 -1 4159 +Encoding: 1114890 -1 4157 Width: 692 Flags: W ItalicCorrection: 180 @@ -138671,7 +138667,7 @@ EndSplineSet EndChar StartChar: uni2A1A.rtlm -Encoding: 1114891 -1 4160 +Encoding: 1114891 -1 4158 Width: 692 Flags: W ItalicCorrection: 180 @@ -138717,7 +138713,7 @@ EndSplineSet EndChar StartChar: uni2A1B.rtlm -Encoding: 1114892 -1 4161 +Encoding: 1114892 -1 4159 Width: 692 Flags: W ItalicCorrection: 180 @@ -138754,7 +138750,7 @@ EndSplineSet EndChar StartChar: uni2A1C.rtlm -Encoding: 1114893 -1 4162 +Encoding: 1114893 -1 4160 Width: 692 Flags: W ItalicCorrection: 180 @@ -138791,7 +138787,7 @@ EndSplineSet EndChar StartChar: uni222B.rtlm.display -Encoding: 1114894 -1 4163 +Encoding: 1114894 -1 4161 Width: 1135 Flags: W ItalicCorrection: 550 @@ -138822,7 +138818,7 @@ EndSplineSet EndChar StartChar: uni222C.rtlm.display -Encoding: 1114895 -1 4164 +Encoding: 1114895 -1 4162 Width: 1445 Flags: W ItalicCorrection: 550 @@ -138870,7 +138866,7 @@ EndSplineSet EndChar StartChar: uni222D.rtlm.display -Encoding: 1114896 -1 4165 +Encoding: 1114896 -1 4163 Width: 1755 Flags: W ItalicCorrection: 550 @@ -138935,7 +138931,7 @@ EndSplineSet EndChar StartChar: uni222E.rtlm.display -Encoding: 1114897 -1 4166 +Encoding: 1114897 -1 4164 Width: 1135 Flags: W ItalicCorrection: 550 @@ -138984,7 +138980,7 @@ EndSplineSet EndChar StartChar: uni222F.rtlm.display -Encoding: 1114898 -1 4167 +Encoding: 1114898 -1 4165 Width: 1445 Flags: W ItalicCorrection: 550 @@ -139058,7 +139054,7 @@ EndSplineSet EndChar StartChar: uni2230.rtlm.display -Encoding: 1114899 -1 4168 +Encoding: 1114899 -1 4166 Width: 1755 Flags: W ItalicCorrection: 550 @@ -139156,7 +139152,7 @@ EndSplineSet EndChar StartChar: uni2231.rtlm.display -Encoding: 1114900 -1 4169 +Encoding: 1114900 -1 4167 Width: 1135 Flags: W ItalicCorrection: 550 @@ -139206,7 +139202,7 @@ EndSplineSet EndChar StartChar: uni2232.rtlm.display -Encoding: 1114901 -1 4170 +Encoding: 1114901 -1 4168 Width: 1135 Flags: W ItalicCorrection: 550 @@ -139267,7 +139263,7 @@ EndSplineSet EndChar StartChar: uni2233.rtlm.display -Encoding: 1114902 -1 4171 +Encoding: 1114902 -1 4169 Width: 1135 Flags: W ItalicCorrection: 550 @@ -139335,7 +139331,7 @@ EndSplineSet EndChar StartChar: uni2A0B.rtlm.display -Encoding: 1114903 -1 4172 +Encoding: 1114903 -1 4170 Width: 1135 Flags: W ItalicCorrection: 550 @@ -139394,7 +139390,7 @@ EndSplineSet EndChar StartChar: uni2A0C.rtlm.display -Encoding: 1114904 -1 4173 +Encoding: 1114904 -1 4171 Width: 2065 Flags: W ItalicCorrection: 550 @@ -139476,7 +139472,7 @@ EndSplineSet EndChar StartChar: uni2A0D.rtlm.display -Encoding: 1114905 -1 4174 +Encoding: 1114905 -1 4172 Width: 1135 Flags: W ItalicCorrection: 550 @@ -139515,7 +139511,7 @@ EndSplineSet EndChar StartChar: uni2A0E.rtlm.display -Encoding: 1114906 -1 4175 +Encoding: 1114906 -1 4173 Width: 1135 Flags: W ItalicCorrection: 550 @@ -139562,7 +139558,7 @@ EndSplineSet EndChar StartChar: uni2A0F.rtlm.display -Encoding: 1114907 -1 4176 +Encoding: 1114907 -1 4174 Width: 1135 Flags: W ItalicCorrection: 550 @@ -139601,7 +139597,7 @@ EndSplineSet EndChar StartChar: uni2A10.rtlm.display -Encoding: 1114908 -1 4177 +Encoding: 1114908 -1 4175 Width: 1135 Flags: W ItalicCorrection: 550 @@ -139651,7 +139647,7 @@ EndSplineSet EndChar StartChar: uni2A11.rtlm.display -Encoding: 1114909 -1 4178 +Encoding: 1114909 -1 4176 Width: 1135 Flags: W ItalicCorrection: 550 @@ -139704,7 +139700,7 @@ EndSplineSet EndChar StartChar: uni2A12.rtlm.display -Encoding: 1114910 -1 4179 +Encoding: 1114910 -1 4177 Width: 1135 Flags: W ItalicCorrection: 550 @@ -139748,7 +139744,7 @@ EndSplineSet EndChar StartChar: uni2A13.rtlm.display -Encoding: 1114911 -1 4180 +Encoding: 1114911 -1 4178 Width: 1135 Flags: W ItalicCorrection: 550 @@ -139792,7 +139788,7 @@ EndSplineSet EndChar StartChar: uni2A14.rtlm.display -Encoding: 1114912 -1 4181 +Encoding: 1114912 -1 4179 Width: 1135 Flags: W ItalicCorrection: 550 @@ -139838,7 +139834,7 @@ EndSplineSet EndChar StartChar: uni2A15.rtlm.display -Encoding: 1114913 -1 4182 +Encoding: 1114913 -1 4180 Width: 1135 Flags: W ItalicCorrection: 550 @@ -139887,7 +139883,7 @@ EndSplineSet EndChar StartChar: uni2A16.rtlm.display -Encoding: 1114914 -1 4183 +Encoding: 1114914 -1 4181 Width: 1135 Flags: W ItalicCorrection: 550 @@ -139936,7 +139932,7 @@ EndSplineSet EndChar StartChar: uni2A17.rtlm.display -Encoding: 1114915 -1 4184 +Encoding: 1114915 -1 4182 Width: 1135 Flags: W ItalicCorrection: 550 @@ -139991,7 +139987,7 @@ EndSplineSet EndChar StartChar: uni2A18.rtlm.display -Encoding: 1114916 -1 4185 +Encoding: 1114916 -1 4183 Width: 1135 Flags: W ItalicCorrection: 550 @@ -140036,7 +140032,7 @@ EndSplineSet EndChar StartChar: uni2A19.rtlm.display -Encoding: 1114917 -1 4186 +Encoding: 1114917 -1 4184 Width: 1135 Flags: W ItalicCorrection: 550 @@ -140081,7 +140077,7 @@ EndSplineSet EndChar StartChar: uni2A1A.rtlm.display -Encoding: 1114918 -1 4187 +Encoding: 1114918 -1 4185 Width: 1135 Flags: W ItalicCorrection: 550 @@ -140126,7 +140122,7 @@ EndSplineSet EndChar StartChar: uni2A1B.rtlm.display -Encoding: 1114919 -1 4188 +Encoding: 1114919 -1 4186 Width: 1135 Flags: W ItalicCorrection: 550 @@ -140162,7 +140158,7 @@ EndSplineSet EndChar StartChar: uni2A1C.rtlm.display -Encoding: 1114920 -1 4189 +Encoding: 1114920 -1 4187 Width: 1135 Flags: W ItalicCorrection: 300 @@ -140198,7 +140194,7 @@ EndSplineSet EndChar StartChar: uni221A.rtlm -Encoding: 1114921 -1 4190 +Encoding: 1114921 -1 4188 Width: 928 Flags: W GlyphVariantsVertical: uni221A.rtlm.size1 uni221A.rtlm.size2 uni221A.rtlm.size3 @@ -140223,7 +140219,7 @@ EndSplineSet EndChar StartChar: uni221B.rtlm -Encoding: 1114922 -1 4191 +Encoding: 1114922 -1 4189 Width: 928 Flags: W GlyphVariantsVertical: uni221B.rtlm.size1 uni221B.rtlm.size2 uni221B.rtlm.size3 @@ -140267,7 +140263,7 @@ EndSplineSet EndChar StartChar: uni221C.rtlm -Encoding: 1114923 -1 4192 +Encoding: 1114923 -1 4190 Width: 928 Flags: W GlyphVariantsVertical: uni221C.rtlm.size1 uni221C.rtlm.size2 uni221C.rtlm.size3 @@ -140309,7 +140305,7 @@ EndSplineSet EndChar StartChar: uni221A.rtlm.size1 -Encoding: 1114924 -1 4193 +Encoding: 1114924 -1 4191 Width: 1057 Flags: W LayerCount: 2 @@ -140332,7 +140328,7 @@ EndSplineSet EndChar StartChar: uni221B.rtlm.size1 -Encoding: 1114925 -1 4194 +Encoding: 1114925 -1 4192 Width: 1057 Flags: W HStem: 695 25<583.5 672.727> 874 11<602 614.809> 1023 31<593.95 674.274> @@ -140376,7 +140372,7 @@ EndSplineSet EndChar StartChar: uni221C.rtlm.size1 -Encoding: 1114926 -1 4195 +Encoding: 1114926 -1 4193 Width: 1057 Flags: W HStem: 786 41<548 671 720 773> @@ -140417,7 +140413,7 @@ EndSplineSet EndChar StartChar: uni221A.rtlm.size2 -Encoding: 1114927 -1 4196 +Encoding: 1114927 -1 4194 Width: 1124 Flags: W LayerCount: 2 @@ -140440,7 +140436,7 @@ EndSplineSet EndChar StartChar: uni221B.rtlm.size2 -Encoding: 1114928 -1 4197 +Encoding: 1114928 -1 4195 Width: 1124 Flags: W HStem: 888 26<614.5 707.452> 1074 12<634 650.016> 1228 33<624.445 710.79> @@ -140484,7 +140480,7 @@ EndSplineSet EndChar StartChar: uni221C.rtlm.size2 -Encoding: 1114929 -1 4198 +Encoding: 1114929 -1 4196 Width: 1124 Flags: W HStem: 982 43<585 713 763 819> @@ -140525,7 +140521,7 @@ EndSplineSet EndChar StartChar: uni221A.rtlm.size3 -Encoding: 1114930 -1 4199 +Encoding: 1114930 -1 4197 Width: 1076 Flags: W LayerCount: 2 @@ -140548,7 +140544,7 @@ EndSplineSet EndChar StartChar: uni221B.rtlm.size3 -Encoding: 1114931 -1 4200 +Encoding: 1114931 -1 4198 Width: 1076 Flags: W HStem: 1071 28<525 624.641> 1271 13<546 562.106> 1437 35<536.279 627.317> @@ -140592,7 +140588,7 @@ EndSplineSet EndChar StartChar: uni221C.rtlm.size3 -Encoding: 1114932 -1 4201 +Encoding: 1114932 -1 4199 Width: 1076 Flags: W HStem: 1171 47<483 620 675 734> @@ -140633,7 +140629,7 @@ EndSplineSet EndChar StartChar: uni221A.rtlm.ex -Encoding: 1114933 -1 4202 +Encoding: 1114933 -1 4200 Width: 1184 Flags: W VStem: 289 66<0 635> @@ -140649,7 +140645,7 @@ EndSplineSet EndChar StartChar: uni221A.rtlm.top -Encoding: 1114934 -1 4203 +Encoding: 1114934 -1 4201 Width: 1184 Flags: W HStem: 560 66<-27 289 289 289> @@ -140668,7 +140664,7 @@ EndSplineSet EndChar StartChar: uni221A.rtlm.bot -Encoding: 1114935 -1 4204 +Encoding: 1114935 -1 4202 Width: 1184 Flags: W VStem: 289 66<404 1855> @@ -140692,7 +140688,7 @@ EndSplineSet EndChar StartChar: uni2140.rtlm -Encoding: 1114936 -1 4205 +Encoding: 1114936 -1 4203 Width: 923 Flags: W GlyphVariantsVertical: uni2140.rtlm.size1 @@ -140724,7 +140720,7 @@ EndSplineSet EndChar StartChar: uni2211.rtlm -Encoding: 1114937 -1 4206 +Encoding: 1114937 -1 4204 Width: 914 Flags: W GlyphVariantsVertical: uni2211.rtlm.size1 @@ -140751,7 +140747,7 @@ EndSplineSet EndChar StartChar: uni2A0A.rtlm -Encoding: 1114938 -1 4207 +Encoding: 1114938 -1 4205 Width: 914 Flags: W GlyphVariantsVertical: uni2A0A.rtlm.size1 @@ -140797,7 +140793,7 @@ EndSplineSet EndChar StartChar: uni2140.rtlm.size1 -Encoding: 1114939 -1 4208 +Encoding: 1114939 -1 4206 Width: 1259 Flags: W HStem: 50 86<919 1106 55 820 1204 1204> 1414 86<214 1201 1101 1101 908 1101 810 810 214 810> @@ -140828,7 +140824,7 @@ EndSplineSet EndChar StartChar: uni2211.rtlm.size1 -Encoding: 1114940 -1 4209 +Encoding: 1114940 -1 4207 Width: 1292 Flags: W HStem: 49 183<373 941 303.5 373 164 941> 1409 90<505 882 882 882> @@ -140856,7 +140852,7 @@ EndSplineSet EndChar StartChar: uni2A0A.rtlm.size1 -Encoding: 1114941 -1 4210 +Encoding: 1114941 -1 4208 Width: 1292 Flags: W HStem: 50 183<373 941 303.5 373 164 941> 531 66<545.5 618.5 527.5 618.5> 1063 66<545.5 613> 1410 90<356 882 882 882> @@ -140903,7 +140899,7 @@ EndSplineSet EndChar StartChar: uni0660 -Encoding: 1632 1632 4211 +Encoding: 1632 1632 4209 Width: 488 Flags: W VStem: 164 161 @@ -140923,7 +140919,7 @@ EndSplineSet EndChar StartChar: uni0661 -Encoding: 1633 1633 4212 +Encoding: 1633 1633 4210 Width: 488 Flags: W VStem: 275 32<-91.9033 -9.61475> @@ -140943,7 +140939,7 @@ EndSplineSet EndChar StartChar: uni0662 -Encoding: 1634 1634 4213 +Encoding: 1634 1634 4211 Width: 488 Flags: W HStem: 308 110<210.66 343.316> @@ -140971,7 +140967,7 @@ EndSplineSet EndChar StartChar: uni0663 -Encoding: 1635 1635 4214 +Encoding: 1635 1635 4212 Width: 488 Flags: W VStem: 170 32<-88.8572 63.3036> 300 27<473.827 540.951> 438 31<451.78 548.93> @@ -141005,7 +141001,7 @@ EndSplineSet EndChar StartChar: uni0664 -Encoding: 1636 1636 4215 +Encoding: 1636 1636 4213 Width: 488 Flags: W HStem: -97 112<277.625 357.625> @@ -141042,7 +141038,7 @@ EndSplineSet EndChar StartChar: uni0665 -Encoding: 1637 1637 4216 +Encoding: 1637 1637 4214 Width: 488 Flags: W HStem: 1 21G<193 243> @@ -141070,7 +141066,7 @@ EndSplineSet EndChar StartChar: uni0666 -Encoding: 1638 1638 4217 +Encoding: 1638 1638 4215 Width: 488 Flags: W LayerCount: 2 @@ -141093,7 +141089,7 @@ EndSplineSet EndChar StartChar: uni0667 -Encoding: 1639 1639 4218 +Encoding: 1639 1639 4216 Width: 488 Flags: W VStem: 233 29<-89.8586 -21.7543> @@ -141122,7 +141118,7 @@ EndSplineSet EndChar StartChar: uni0668 -Encoding: 1640 1640 4219 +Encoding: 1640 1640 4217 Width: 488 Flags: W LayerCount: 2 @@ -141150,7 +141146,7 @@ EndSplineSet EndChar StartChar: uni0669 -Encoding: 1641 1641 4220 +Encoding: 1641 1641 4218 Width: 488 Flags: W HStem: 194 112<148.145 277.578> @@ -141177,7 +141173,7 @@ EndSplineSet EndChar StartChar: uni066A -Encoding: 1642 1642 4221 +Encoding: 1642 1642 4219 Width: 661 Flags: W LayerCount: 2 @@ -141210,7 +141206,7 @@ EndSplineSet EndChar StartChar: uni066B -Encoding: 1643 1643 4222 +Encoding: 1643 1643 4220 Width: 299 Flags: W HStem: 63 94<143.08 183.9> @@ -141233,7 +141229,7 @@ EndSplineSet EndChar StartChar: uni066C -Encoding: 1644 1644 4223 +Encoding: 1644 1644 4221 Width: 299 Flags: W HStem: 203 94<115.8 157.062> @@ -141256,7 +141252,7 @@ EndSplineSet EndChar StartChar: uni066D -Encoding: 1645 1645 4224 +Encoding: 1645 1645 4222 Width: 544 Flags: W LayerCount: 2 @@ -141277,7 +141273,7 @@ EndSplineSet EndChar StartChar: uni0609 -Encoding: 1545 1545 4225 +Encoding: 1545 1545 4223 Width: 866 Flags: W LayerCount: 2 @@ -141319,7 +141315,7 @@ EndSplineSet EndChar StartChar: uni060A -Encoding: 1546 1546 4226 +Encoding: 1546 1546 4224 Width: 1071 Flags: W LayerCount: 2 @@ -141370,7 +141366,7 @@ EndSplineSet EndChar StartChar: uni06F0 -Encoding: 1776 1776 4227 +Encoding: 1776 1776 4225 Width: 488 Flags: W VStem: 164 161 @@ -141390,7 +141386,7 @@ EndSplineSet EndChar StartChar: uni06F1 -Encoding: 1777 1777 4228 +Encoding: 1777 1777 4226 Width: 488 Flags: W VStem: 275 32<-91.9033 -9.61475> @@ -141410,7 +141406,7 @@ EndSplineSet EndChar StartChar: uni06F2 -Encoding: 1778 1778 4229 +Encoding: 1778 1778 4227 Width: 488 Flags: W HStem: 308 110<210.66 343.316> @@ -141438,7 +141434,7 @@ EndSplineSet EndChar StartChar: uni06F3 -Encoding: 1779 1779 4230 +Encoding: 1779 1779 4228 Width: 488 Flags: W VStem: 170 32<-88.8572 63.3036> 300 27<473.827 540.951> 438 31<451.78 548.93> @@ -141472,7 +141468,7 @@ EndSplineSet EndChar StartChar: uni06F4 -Encoding: 1780 1780 4231 +Encoding: 1780 1780 4229 Width: 488 Flags: W HStem: 430 20G<410 418> @@ -141506,7 +141502,7 @@ EndSplineSet EndChar StartChar: uni06F5 -Encoding: 1781 1781 4232 +Encoding: 1781 1781 4230 Width: 488 Flags: W VStem: 253 30<89.457 143.949> @@ -141542,7 +141538,7 @@ EndSplineSet EndChar StartChar: uni06F6 -Encoding: 1782 1782 4233 +Encoding: 1782 1782 4231 Width: 488 Flags: W VStem: 47 33<-92.9187 -47.0762> @@ -141572,7 +141568,7 @@ EndSplineSet EndChar StartChar: uni06F7 -Encoding: 1783 1783 4234 +Encoding: 1783 1783 4232 Width: 488 Flags: W VStem: 233 29<-89.8586 -21.7543> @@ -141601,7 +141597,7 @@ EndSplineSet EndChar StartChar: uni06F8 -Encoding: 1784 1784 4235 +Encoding: 1784 1784 4233 Width: 488 Flags: W LayerCount: 2 @@ -141629,7 +141625,7 @@ EndSplineSet EndChar StartChar: uni06F9 -Encoding: 1785 1785 4236 +Encoding: 1785 1785 4234 Width: 488 Flags: W HStem: 194 112<148.145 277.578> @@ -141656,7 +141652,7 @@ EndSplineSet EndChar StartChar: uni0621 -Encoding: 1569 1569 4237 +Encoding: 1569 1569 4235 Width: 381 Flags: W HStem: 4 294 @@ -141686,7 +141682,7 @@ EndSplineSet EndChar StartChar: uni0622 -Encoding: 1570 1570 4238 +Encoding: 1570 1570 4236 Width: 217 Flags: W HStem: 808 99<150.472 192.824> @@ -141718,7 +141714,7 @@ EndSplineSet EndChar StartChar: uni0623 -Encoding: 1571 1571 4239 +Encoding: 1571 1571 4237 Width: 217 Flags: W VStem: -28 216 @@ -141760,7 +141756,7 @@ EndSplineSet EndChar StartChar: uni0624 -Encoding: 1572 1572 4240 +Encoding: 1572 1572 4238 Width: 547 Flags: W HStem: -190 18<64.0491 95.6914> @@ -141811,7 +141807,7 @@ EndSplineSet EndChar StartChar: uni0625 -Encoding: 1573 1573 4241 +Encoding: 1573 1573 4239 Width: 217 Flags: W VStem: 52 216 @@ -141853,7 +141849,7 @@ EndSplineSet EndChar StartChar: uni0626 -Encoding: 1574 1574 4242 +Encoding: 1574 1574 4240 Width: 764 Flags: W HStem: -201 95<197.824 437.766> @@ -141908,7 +141904,7 @@ EndSplineSet EndChar StartChar: uni0627 -Encoding: 1575 1575 4243 +Encoding: 1575 1575 4241 Width: 217 Flags: W LayerCount: 2 @@ -141929,7 +141925,7 @@ EndSplineSet EndChar StartChar: uni0628 -Encoding: 1576 1576 4244 +Encoding: 1576 1576 4242 Width: 926 Flags: W HStem: -6 97<226.834 591.426> @@ -141969,7 +141965,7 @@ EndSplineSet EndChar StartChar: uni0629 -Encoding: 1577 1577 4245 +Encoding: 1577 1577 4243 Width: 369 Flags: W HStem: -24 110<119.132 234.969> @@ -142013,7 +142009,7 @@ EndSplineSet EndChar StartChar: uni062A -Encoding: 1578 1578 4246 +Encoding: 1578 1578 4244 Width: 926 Flags: W HStem: -6 97<226.834 591.426> @@ -142059,7 +142055,7 @@ EndSplineSet EndChar StartChar: uni062B -Encoding: 1579 1579 4247 +Encoding: 1579 1579 4245 Width: 926 Flags: W HStem: -6 97<226.834 591.426> @@ -142114,7 +142110,7 @@ EndSplineSet EndChar StartChar: uni062C -Encoding: 1580 1580 4248 +Encoding: 1580 1580 4246 Width: 661 Flags: W HStem: -509 96<323.544 632.011> -439 26<703.182 754.857> 163 81<471.835 614.625> @@ -142159,7 +142155,7 @@ EndSplineSet EndChar StartChar: uni062D -Encoding: 1581 1581 4249 +Encoding: 1581 1581 4247 Width: 661 Flags: W HStem: -509 96<323.544 632.011> -439 26<703.182 754.857> 163 81<471.835 614.625> @@ -142195,7 +142191,7 @@ EndSplineSet EndChar StartChar: uni062E -Encoding: 1582 1582 4250 +Encoding: 1582 1582 4248 Width: 661 Flags: W HStem: -509 96<323.544 632.011> -439 26<703.182 754.857> 163 81<471.835 614.625> @@ -142240,7 +142236,7 @@ EndSplineSet EndChar StartChar: uni062F -Encoding: 1583 1583 4251 +Encoding: 1583 1583 4249 Width: 450 Flags: W HStem: -6 99<97.1882 282.449> @@ -142266,7 +142262,7 @@ EndSplineSet EndChar StartChar: uni0630 -Encoding: 1584 1584 4252 +Encoding: 1584 1584 4250 Width: 450 Flags: W HStem: -6 99<97.1882 282.449> @@ -142301,7 +142297,7 @@ EndSplineSet EndChar StartChar: uni0631 -Encoding: 1585 1585 4253 +Encoding: 1585 1585 4251 Width: 546 Flags: W HStem: -167 14<66.0952 79.204> @@ -142330,7 +142326,7 @@ EndSplineSet EndChar StartChar: uni0632 -Encoding: 1586 1586 4254 +Encoding: 1586 1586 4252 Width: 546 Flags: W HStem: -167 14<66.0952 79.204> @@ -142368,7 +142364,7 @@ EndSplineSet EndChar StartChar: uni0633 -Encoding: 1587 1587 4255 +Encoding: 1587 1587 4253 Width: 992 Flags: W HStem: -230 106<193.232 412.656> @@ -142415,7 +142411,7 @@ EndSplineSet EndChar StartChar: uni0634 -Encoding: 1588 1588 4256 +Encoding: 1588 1588 4254 Width: 992 Flags: W HStem: -230 106<193.232 412.656> @@ -142486,7 +142482,7 @@ EndSplineSet EndChar StartChar: uni0635 -Encoding: 1589 1589 4257 +Encoding: 1589 1589 4255 Width: 1212 Flags: W HStem: 81 98<628.864 747.752> @@ -142531,7 +142527,7 @@ EndSplineSet EndChar StartChar: uni0636 -Encoding: 1590 1590 4258 +Encoding: 1590 1590 4256 Width: 1212 Flags: W HStem: 81 98<628.864 747.752> @@ -142585,7 +142581,7 @@ EndSplineSet EndChar StartChar: uni0637 -Encoding: 1591 1591 4259 +Encoding: 1591 1591 4257 Width: 792 Flags: W HStem: -28 106<144.697 263> @@ -142628,7 +142624,7 @@ EndSplineSet EndChar StartChar: uni0638 -Encoding: 1592 1592 4260 +Encoding: 1592 1592 4258 Width: 792 Flags: W HStem: -28 106<144.697 263> @@ -142680,7 +142676,7 @@ EndSplineSet EndChar StartChar: uni0639 -Encoding: 1593 1593 4261 +Encoding: 1593 1593 4259 Width: 540 Flags: W LayerCount: 2 @@ -142716,7 +142712,7 @@ EndSplineSet EndChar StartChar: uni063A -Encoding: 1594 1594 4262 +Encoding: 1594 1594 4260 Width: 540 Flags: W LayerCount: 2 @@ -142761,7 +142757,7 @@ EndSplineSet EndChar StartChar: uni0641 -Encoding: 1601 1601 4263 +Encoding: 1601 1601 4261 Width: 983 Flags: W LayerCount: 2 @@ -142808,7 +142804,7 @@ EndSplineSet EndChar StartChar: uni0642 -Encoding: 1602 1602 4264 +Encoding: 1602 1602 4262 Width: 687 Flags: W HStem: -164 105<189.826 407.125> 280 113<460.354 511.055> @@ -142860,7 +142856,7 @@ EndSplineSet EndChar StartChar: uni0643 -Encoding: 1603 1603 4265 +Encoding: 1603 1603 4263 Width: 657 Flags: W HStem: 0 95<75.0222 463.53> 319 22<86.1855 134.652> @@ -142915,7 +142911,7 @@ EndSplineSet EndChar StartChar: uni0644 -Encoding: 1604 1604 4266 +Encoding: 1604 1604 4264 Width: 603 Flags: W HStem: -64 106<168.939 372.795> @@ -142951,7 +142947,7 @@ EndSplineSet EndChar StartChar: uni0645 -Encoding: 1605 1605 4267 +Encoding: 1605 1605 4265 Width: 452 Flags: W VStem: 65 324 @@ -142982,7 +142978,7 @@ EndSplineSet EndChar StartChar: uni0646 -Encoding: 1606 1606 4268 +Encoding: 1606 1606 4266 Width: 572 Flags: W LayerCount: 2 @@ -143020,7 +143016,7 @@ EndSplineSet EndChar StartChar: uni0647 -Encoding: 1607 1607 4269 +Encoding: 1607 1607 4267 Width: 369 Flags: W HStem: -24 110<119.132 234.969> @@ -143049,7 +143045,7 @@ EndSplineSet EndChar StartChar: uni0648 -Encoding: 1608 1608 4270 +Encoding: 1608 1608 4268 Width: 547 Flags: W HStem: -190 18<64.0491 95.6914> @@ -143080,7 +143076,7 @@ EndSplineSet EndChar StartChar: uni0649 -Encoding: 1609 1609 4271 +Encoding: 1609 1609 4269 Width: 764 Flags: W HStem: -201 95<197.824 437.766> @@ -143115,7 +143111,7 @@ EndSplineSet EndChar StartChar: uni064A -Encoding: 1610 1610 4272 +Encoding: 1610 1610 4270 Width: 764 Flags: W HStem: -201 95<197.824 437.766> @@ -143165,7 +143161,7 @@ EndSplineSet EndChar StartChar: uni066E -Encoding: 1646 1646 4273 +Encoding: 1646 1646 4271 Width: 926 Flags: W HStem: -6 97<226.834 591.426> @@ -143196,7 +143192,7 @@ EndSplineSet EndChar StartChar: uni066F -Encoding: 1647 1647 4274 +Encoding: 1647 1647 4272 Width: 687 Flags: W HStem: -164 105<189.826 407.125> 280 113<460.354 511.055> @@ -143233,7 +143229,7 @@ EndSplineSet EndChar StartChar: uni0606 -Encoding: 1542 1542 4275 +Encoding: 1542 1542 4273 Width: 928 Flags: W GlyphVariantsVertical: uni0606 uni0606.size1 uni0606.size2 uni0606.size3 @@ -143281,7 +143277,7 @@ EndSplineSet EndChar StartChar: uni0607 -Encoding: 1543 1543 4276 +Encoding: 1543 1543 4274 Width: 928 Flags: W GlyphVariantsVertical: uni0607 uni0607.size1 uni0607.size2 uni0607.size3 @@ -143332,7 +143328,7 @@ EndSplineSet EndChar StartChar: uni0606.size1 -Encoding: 1114942 -1 4277 +Encoding: 1114942 -1 4275 Width: 1057 Flags: W VStem: 591 19<697.094 783.859> 669 16<1035.83 1074.95> 751 19<1020.86 1079.87> @@ -143379,7 +143375,7 @@ EndSplineSet EndChar StartChar: uni0607.size1 -Encoding: 1114943 -1 4278 +Encoding: 1114943 -1 4276 Width: 1057 Flags: W HStem: 685 67<676.393 746.906> @@ -143429,7 +143425,7 @@ EndSplineSet EndChar StartChar: uni0606.size2 -Encoding: 1114944 -1 4279 +Encoding: 1114944 -1 4277 Width: 1124 Flags: W VStem: 631 19<867.094 953.859> 709 16<1205.83 1244.95> 791 19<1190.86 1249.87> @@ -143476,7 +143472,7 @@ EndSplineSet EndChar StartChar: uni0607.size2 -Encoding: 1114945 -1 4280 +Encoding: 1114945 -1 4278 Width: 1124 Flags: W HStem: 885 67<716.393 786.906> @@ -143526,7 +143522,7 @@ EndSplineSet EndChar StartChar: uni0606.size3 -Encoding: 1114946 -1 4281 +Encoding: 1114946 -1 4279 Width: 1076 Flags: W VStem: 541 19<1077.09 1163.86> 619 16<1415.83 1454.95> 701 19<1400.86 1459.87> @@ -143573,7 +143569,7 @@ EndSplineSet EndChar StartChar: uni0607.size3 -Encoding: 1114947 -1 4282 +Encoding: 1114947 -1 4280 Width: 1076 Flags: W HStem: 1075 67<616.393 686.906> @@ -143623,7 +143619,7 @@ EndSplineSet EndChar StartChar: uni221D.rtlm -Encoding: 1114948 -1 4283 +Encoding: 1114948 -1 4281 Width: 685 Flags: W HStem: 0 84<419 488 41 71> 371 59<449 481> @@ -143653,7 +143649,7 @@ EndSplineSet EndChar StartChar: uni221F.rtlm -Encoding: 1114949 -1 4284 +Encoding: 1114949 -1 4282 Width: 685 Flags: W HStem: 0 66<50 568 50 568> @@ -143672,7 +143668,7 @@ EndSplineSet EndChar StartChar: uni2220.rtlm -Encoding: 1114950 -1 4285 +Encoding: 1114950 -1 4283 Width: 685 Flags: W HStem: 0 66<23 484 23 484> @@ -143690,7 +143686,7 @@ EndSplineSet EndChar StartChar: uni2221.rtlm -Encoding: 1114951 -1 4286 +Encoding: 1114951 -1 4284 Width: 685 Flags: W HStem: 0 66<190 483 185 483 22 119 119 119> @@ -143721,7 +143717,7 @@ EndSplineSet EndChar StartChar: uni2222.rtlm -Encoding: 1114952 -1 4287 +Encoding: 1114952 -1 4285 Width: 685 Flags: W HStem: -11 20 @@ -143755,7 +143751,7 @@ EndSplineSet EndChar StartChar: uni22F5.rtlm -Encoding: 1114953 -1 4288 +Encoding: 1114953 -1 4286 Width: 685 Flags: W HStem: -27 66<60 431 60 351> 219 66<60 556 60 556 60 557> 465 66<350 354 60 350> 589 127<306 338 303 338> @@ -143786,7 +143782,7 @@ EndSplineSet EndChar StartChar: uni22F8.rtlm -Encoding: 1114954 -1 4289 +Encoding: 1114954 -1 4287 Width: 685 Flags: W HStem: -180 66<60 615 60 615> -26 66<60 433.5 60 350 60 350> 220 66<60 556 556 556> 466 66<60 402.5 60 351> @@ -143816,7 +143812,7 @@ EndSplineSet EndChar StartChar: uni22F9.rtlm -Encoding: 1114955 -1 4290 +Encoding: 1114955 -1 4288 Width: 685 Flags: W HStem: -27 66<61 437.5 61 354 61 354> 156 66<61 535 535 535> 282 66<61 536 61 536 61 557> 465 66<61 394.5 61 355> @@ -143847,7 +143843,7 @@ EndSplineSet EndChar StartChar: uni22FF.rtlm -Encoding: 1114956 -1 4291 +Encoding: 1114956 -1 4289 Width: 560 Flags: W HStem: 0 50<73 421 73 421> 306 50<85 421 85 421> 612 50<73 421 421 421> @@ -143872,7 +143868,7 @@ EndSplineSet EndChar StartChar: uni0338.size6 -Encoding: 1114957 -1 4292 +Encoding: 1114957 -1 4290 Width: 0 Flags: W TopAccentHorizontal: -486 @@ -143888,7 +143884,7 @@ EndSplineSet EndChar StartChar: uni20D2.size6 -Encoding: 1114958 -1 4293 +Encoding: 1114958 -1 4291 Width: 0 Flags: W TopAccentHorizontal: -217 @@ -143905,7 +143901,7 @@ EndSplineSet EndChar StartChar: uni20D2.size1 -Encoding: 1114959 -1 4294 +Encoding: 1114959 -1 4292 Width: 0 Flags: W TopAccentHorizontal: -217 @@ -143922,7 +143918,7 @@ EndSplineSet EndChar StartChar: uni20D2.size2 -Encoding: 1114960 -1 4295 +Encoding: 1114960 -1 4293 Width: 0 Flags: W TopAccentHorizontal: -217 @@ -143939,7 +143935,7 @@ EndSplineSet EndChar StartChar: uni20D2.size3 -Encoding: 1114961 -1 4296 +Encoding: 1114961 -1 4294 Width: 0 Flags: W TopAccentHorizontal: -217 @@ -143956,7 +143952,7 @@ EndSplineSet EndChar StartChar: uni20D2.size4 -Encoding: 1114962 -1 4297 +Encoding: 1114962 -1 4295 Width: 0 Flags: W TopAccentHorizontal: -217 @@ -143973,7 +143969,7 @@ EndSplineSet EndChar StartChar: uni20D2.size5 -Encoding: 1114963 -1 4298 +Encoding: 1114963 -1 4296 Width: 0 Flags: W TopAccentHorizontal: -217 @@ -143990,7 +143986,7 @@ EndSplineSet EndChar StartChar: uniFE00 -Encoding: 65024 65024 4299 +Encoding: 65024 65024 4297 Width: 1030 Flags: W HStem: 0 116<0 66 964 1030> 0 66<66 116 914 964> 317 17<536.646 609.397> 325 11<730 766.434 891.728 936> 651 12<93 115.657 212.75 240 332 355.584 417.088 436 537.124 606.227> 662 20G<818.588 865> 914 116<0 66 964 1030> 964 66<66 116 914 964> @@ -144189,7 +144185,7 @@ EndSplineSet EndChar StartChar: uni2229.vs1 -Encoding: 1114964 -1 4300 +Encoding: 1114964 -1 4298 AltUni2: 002229.00fe00.0 Width: 620 Flags: MW @@ -144221,7 +144217,7 @@ EndSplineSet EndChar StartChar: uni222A.vs1 -Encoding: 1114965 -1 4301 +Encoding: 1114965 -1 4299 AltUni2: 00222a.00fe00.0 Width: 620 Flags: MW @@ -144253,7 +144249,7 @@ EndSplineSet EndChar StartChar: uni2268.vs1 -Encoding: 1114966 -1 4302 +Encoding: 1114966 -1 4300 AltUni2: 002268.00fe00.0 Width: 685 Flags: MW @@ -144295,7 +144291,7 @@ EndSplineSet EndChar StartChar: uni2269.vs1 -Encoding: 1114967 -1 4303 +Encoding: 1114967 -1 4301 AltUni2: 002269.00fe00.0 Width: 685 Flags: MW @@ -144337,7 +144333,7 @@ EndSplineSet EndChar StartChar: uni2272.vs1 -Encoding: 1114968 -1 4304 +Encoding: 1114968 -1 4302 AltUni2: 002272.00fe00.0 Width: 685 Flags: MW @@ -144366,7 +144362,7 @@ EndSplineSet EndChar StartChar: uni2273.vs1 -Encoding: 1114969 -1 4305 +Encoding: 1114969 -1 4303 AltUni2: 002273.00fe00.0 Width: 685 Flags: MW @@ -144400,7 +144396,7 @@ EndSplineSet EndChar StartChar: uni228A.vs1 -Encoding: 1114970 -1 4306 +Encoding: 1114970 -1 4304 AltUni2: 00228a.00fe00.0 Width: 685 Flags: MW @@ -144440,7 +144436,7 @@ EndSplineSet EndChar StartChar: uni228B.vs1 -Encoding: 1114971 -1 4307 +Encoding: 1114971 -1 4305 AltUni2: 00228b.00fe00.0 Width: 685 Flags: MW @@ -144479,7 +144475,7 @@ EndSplineSet EndChar StartChar: uni2293.vs1 -Encoding: 1114972 -1 4308 +Encoding: 1114972 -1 4306 AltUni2: 002293.00fe00.0 Width: 620 Flags: MW @@ -144509,7 +144505,7 @@ EndSplineSet EndChar StartChar: uni2294.vs1 -Encoding: 1114973 -1 4309 +Encoding: 1114973 -1 4307 AltUni2: 002294.00fe00.0 Width: 620 Flags: MW @@ -144539,7 +144535,7 @@ EndSplineSet EndChar StartChar: uni2295.vs1 -Encoding: 1114974 -1 4310 +Encoding: 1114974 -1 4308 AltUni2: 002295.00fe00.0 Width: 842 Flags: MW @@ -144576,7 +144572,7 @@ EndSplineSet EndChar StartChar: uni2297.vs1 -Encoding: 1114975 -1 4311 +Encoding: 1114975 -1 4309 AltUni2: 002297.00fe00.0 Width: 842 Flags: MW @@ -144612,7 +144608,7 @@ EndSplineSet EndChar StartChar: uni229C.vs1 -Encoding: 1114976 -1 4312 +Encoding: 1114976 -1 4310 AltUni2: 00229c.00fe00.0 Width: 842 Flags: MW @@ -144645,7 +144641,7 @@ EndSplineSet EndChar StartChar: uni22DA.vs1 -Encoding: 1114977 -1 4313 +Encoding: 1114977 -1 4311 AltUni2: 0022da.00fe00.0 Width: 685 Flags: W @@ -144677,7 +144673,7 @@ EndSplineSet EndChar StartChar: uni22DB.vs1 -Encoding: 1114978 -1 4314 +Encoding: 1114978 -1 4312 AltUni2: 0022db.00fe00.0 Width: 685 Flags: W @@ -144709,7 +144705,7 @@ EndSplineSet EndChar StartChar: uni2A3C.vs1 -Encoding: 1114979 -1 4315 +Encoding: 1114979 -1 4313 AltUni2: 002a3c.00fe00.0 Width: 463 Flags: MW @@ -144729,7 +144725,7 @@ EndSplineSet EndChar StartChar: uni2A3D.vs1 -Encoding: 1114980 -1 4316 +Encoding: 1114980 -1 4314 AltUni2: 002a3d.00fe00.0 Width: 463 Flags: MW @@ -144749,7 +144745,7 @@ EndSplineSet EndChar StartChar: uni2A9D.vs1 -Encoding: 1114981 -1 4317 +Encoding: 1114981 -1 4315 AltUni2: 002a9d.00fe00.0 Width: 685 Flags: MW @@ -144783,7 +144779,7 @@ EndSplineSet EndChar StartChar: uni2A9E.vs1 -Encoding: 1114982 -1 4318 +Encoding: 1114982 -1 4316 AltUni2: 002a9e.00fe00.0 Width: 685 Flags: MW @@ -144812,7 +144808,7 @@ EndSplineSet EndChar StartChar: uni2AAC.vs1 -Encoding: 1114983 -1 4319 +Encoding: 1114983 -1 4317 AltUni2: 002aac.00fe00.0 Width: 685 Flags: MW @@ -144840,7 +144836,7 @@ EndSplineSet EndChar StartChar: uni2AAD.vs1 -Encoding: 1114984 -1 4320 +Encoding: 1114984 -1 4318 AltUni2: 002aad.00fe00.0 Width: 685 Flags: MW @@ -144868,7 +144864,7 @@ EndSplineSet EndChar StartChar: uni2ACB.vs1 -Encoding: 1114985 -1 4321 +Encoding: 1114985 -1 4319 AltUni2: 002acb.00fe00.0 Width: 685 Flags: MW @@ -144916,7 +144912,7 @@ EndSplineSet EndChar StartChar: uni2ACC.vs1 -Encoding: 1114986 -1 4322 +Encoding: 1114986 -1 4320 AltUni2: 002acc.00fe00.0 Width: 685 Flags: MW @@ -144964,7 +144960,7 @@ EndSplineSet EndChar StartChar: uni2209.ss09 -Encoding: 1114987 -1 4323 +Encoding: 1114987 -1 4321 Width: 685 Flags: MW HStem: -26 66<251.5 359 335 359 335 359 409 625 335 409> 220 66<129 359 129 129 409 625 128 409> 466 66<282.5 359 334 359 409 625 334 409> @@ -145009,7 +145005,7 @@ EndSplineSet EndChar StartChar: uni220C.ss09 -Encoding: 1114988 -1 4324 +Encoding: 1114988 -1 4322 Width: 685 Flags: MW HStem: -26 66<60 276 60 276 326 351 60 326> 220 66<60 276 60 276 60 326 326 556> 466 66<60 276 60 276 60 326 326 350> @@ -145054,7 +145050,7 @@ EndSplineSet EndChar StartChar: uni2241.ss09 -Encoding: 1114989 -1 4325 +Encoding: 1114989 -1 4323 Width: 685 Flags: MW HStem: 158 66<470 521.5 470 528> 286 66<169 220> 442 20<317 367 367 367> @@ -145083,7 +145079,7 @@ EndSplineSet EndChar StartChar: uni2244.ss09 -Encoding: 1114990 -1 4326 +Encoding: 1114990 -1 4324 Width: 685 Flags: MW HStem: 55 66<48 315 48 315 370 637 48 370> 251 66<470 521.5 470 528> 379 66<169 220> @@ -145120,7 +145116,7 @@ EndSplineSet EndChar StartChar: uni2247.ss09 -Encoding: 1114991 -1 4327 +Encoding: 1114991 -1 4325 Width: 685 Flags: MW HStem: -27 66<48 317 48 317 367 637 48 367> 173 66<48 317 48 317 48 367 367 637> 318 66<479 528> 466 66<162 210.5> @@ -145165,7 +145161,7 @@ EndSplineSet EndChar StartChar: uni2260.ss09 -Encoding: 1114992 -1 4328 +Encoding: 1114992 -1 4326 Width: 685 Flags: MW HStem: 120 66<48 317 48 317 367 637 48 367> 320 66<48 317 48 317 48 367 367 637> @@ -145198,7 +145194,7 @@ EndSplineSet EndChar StartChar: uni2262.ss09 -Encoding: 1114993 -1 4329 +Encoding: 1114993 -1 4327 Width: 685 Flags: MW HStem: 28 66<48 317 48 317 367 637 48 367> 220 66<48 317 48 317 48 367 367 637> 412 66<48 317 48 317 48 367 367 637> @@ -145240,7 +145236,7 @@ EndSplineSet EndChar StartChar: uni2268.ss09 -Encoding: 1114994 -1 4330 +Encoding: 1114994 -1 4328 Width: 685 Flags: MW HStem: -212 66<56 305 56 305 360 621 56 360> -12 66<56 305 56 305 56 360 360 621> @@ -145281,7 +145277,7 @@ EndSplineSet EndChar StartChar: uni2269.ss09 -Encoding: 1114995 -1 4331 +Encoding: 1114995 -1 4329 Width: 685 Flags: MW HStem: -212 66<56 305 56 305 360 621 56 360> -12 66<56 305 56 305 56 360 360 621> @@ -145322,7 +145318,7 @@ EndSplineSet EndChar StartChar: uni226D.ss09 -Encoding: 1114996 -1 4332 +Encoding: 1114996 -1 4330 Width: 685 Flags: MW VStem: 321 50<-66 133 -66 134 -66 134 199 307 373 572> @@ -145354,7 +145350,7 @@ EndSplineSet EndChar StartChar: uni226E.ss09 -Encoding: 1114997 -1 4333 +Encoding: 1114997 -1 4331 Width: 685 Flags: MW VStem: 336 50<-156 83 -156 108 -156 108 175 330 330 330 422 662> @@ -145386,7 +145382,7 @@ EndSplineSet EndChar StartChar: uni226F.ss09 -Encoding: 1114998 -1 4334 +Encoding: 1114998 -1 4332 Width: 685 Flags: MW VStem: 299 50<-156 83 83 83 176 330 422 662> @@ -145418,7 +145414,7 @@ EndSplineSet EndChar StartChar: uni2270.ss09 -Encoding: 1114999 -1 4335 +Encoding: 1114999 -1 4333 Width: 685 Flags: MW HStem: -103 66<62 331 62 331 381 621 62 381> @@ -145459,7 +145455,7 @@ EndSplineSet EndChar StartChar: uni2271.ss09 -Encoding: 1115000 -1 4336 +Encoding: 1115000 -1 4334 Width: 685 Flags: MW HStem: -103 66<64 304 64 304 354 622 64 354> @@ -145500,7 +145496,7 @@ EndSplineSet EndChar StartChar: uni2274.ss09 -Encoding: 1115001 -1 4337 +Encoding: 1115001 -1 4335 Width: 685 Flags: MW HStem: -154 66<466 516> -26 66<163.5 216> @@ -145545,7 +145541,7 @@ EndSplineSet EndChar StartChar: uni2275.ss09 -Encoding: 1115002 -1 4338 +Encoding: 1115002 -1 4336 Width: 685 Flags: MW HStem: -154 66<466 516> -26 66<163.5 216> @@ -145590,7 +145586,7 @@ EndSplineSet EndChar StartChar: uni2278.ss09 -Encoding: 1115003 -1 4339 +Encoding: 1115003 -1 4337 Width: 685 Flags: MW VStem: 313 55<-311 -93 -93 -93 -7 95 182 317 403 509 509 509 596 818> @@ -145638,7 +145634,7 @@ EndSplineSet EndChar StartChar: uni2279.ss09 -Encoding: 1115004 -1 4340 +Encoding: 1115004 -1 4338 Width: 685 Flags: MW VStem: 313 55<-311 -95 -311 -72 -311 -72 -9 97 97 97 184 319 319 319 405 507 594 818> @@ -145686,7 +145682,7 @@ EndSplineSet EndChar StartChar: uni2280.ss09 -Encoding: 1115005 -1 4341 +Encoding: 1115005 -1 4339 Width: 685 Flags: MW VStem: 324 50<-156 151 -156 169 -156 169 241 264 264 264 354 662> @@ -145718,7 +145714,7 @@ EndSplineSet EndChar StartChar: uni2281.ss09 -Encoding: 1115006 -1 4342 +Encoding: 1115006 -1 4340 Width: 685 Flags: MW VStem: 325 50<-156 156 156 156 246 260 349 662> @@ -145750,7 +145746,7 @@ EndSplineSet EndChar StartChar: uni2284.ss09 -Encoding: 1115007 -1 4343 +Encoding: 1115007 -1 4341 Width: 685 Flags: MW HStem: -26 66<246.5 354 330 354 330 354 404 620 330 404> 466 66<272 354 329 354 404 620 329 404> @@ -145786,7 +145782,7 @@ EndSplineSet EndChar StartChar: uni2285.ss09 -Encoding: 1115008 -1 4344 +Encoding: 1115008 -1 4342 Width: 685 Flags: MW HStem: -26 66<65 281 65 281 331 356 65 331> 466 66<65 281 65 281 65 331 331 355> @@ -145822,7 +145818,7 @@ EndSplineSet EndChar StartChar: uni2288.ss09 -Encoding: 1115009 -1 4345 +Encoding: 1115009 -1 4343 Width: 695 Flags: MW HStem: -103 66<74 334 74 334 384 630 74 384> 51 66<334 334 334 384 384 630> 541 66<334 334 384 630 334 384> @@ -145862,7 +145858,7 @@ EndSplineSet EndChar StartChar: uni2289.ss09 -Encoding: 1115010 -1 4346 +Encoding: 1115010 -1 4344 Width: 695 Flags: MW HStem: -103 66<65 311 65 311 361 621 65 361> 51 66<65 311 65 311 65 361> 541 66<65 311 65 311 65 361> @@ -145902,7 +145898,7 @@ EndSplineSet EndChar StartChar: uni22E0.ss09 -Encoding: 1115011 -1 4347 +Encoding: 1115011 -1 4345 Width: 685 Flags: MW VStem: 311 50<-212 100 -212 117 -212 117 186 297 385 402 402 402 491 803> @@ -145942,7 +145938,7 @@ EndSplineSet EndChar StartChar: uni22E1.ss09 -Encoding: 1115012 -1 4348 +Encoding: 1115012 -1 4346 Width: 685 Flags: MW VStem: 314 50<-212 120 120 120 207 293 293 293 382 405 494 803> @@ -145982,7 +145978,7 @@ EndSplineSet EndChar StartChar: uni22EC.ss09 -Encoding: 1115013 -1 4349 +Encoding: 1115013 -1 4347 Width: 685 Flags: MW HStem: -103 66<64 331 64 331 381 611 64 381> @@ -146024,7 +146020,7 @@ EndSplineSet EndChar StartChar: uni22ED.ss09 -Encoding: 1115014 -1 4350 +Encoding: 1115014 -1 4348 Width: 685 Flags: MW HStem: -103 66<74 304 74 304 354 621 74 354> @@ -146066,7 +146062,7 @@ EndSplineSet EndChar StartChar: uni20E9.lt -Encoding: 1115015 -1 4351 +Encoding: 1115015 -1 4349 Width: 154 Flags: W HStem: 627 54<54 154> @@ -146085,7 +146081,7 @@ EndSplineSet EndChar StartChar: uni20E9.ex -Encoding: 1115016 -1 4352 +Encoding: 1115016 -1 4350 Width: 200 Flags: W HStem: 627 54 @@ -146102,7 +146098,7 @@ EndSplineSet EndChar StartChar: uni20E9.rt -Encoding: 1115017 -1 4353 +Encoding: 1115017 -1 4351 Width: 154 Flags: W HStem: 627 54<0 100> @@ -146121,7 +146117,7 @@ EndSplineSet EndChar StartChar: uni2201.rtlm -Encoding: 1115018 -1 4354 +Encoding: 1115018 -1 4352 Width: 463 Flags: W HStem: -15 66<154.461 307.142> 694 66<152.082 309.156> @@ -146150,7 +146146,7 @@ EndSplineSet EndChar StartChar: uni2202.rtlm -Encoding: 1115019 -1 4355 +Encoding: 1115019 -1 4353 Width: 471 Flags: W HStem: -11 30<234.423 324.99> 405 30<128.712 216.456> 638 30<142.745 269.832> @@ -146199,7 +146195,7 @@ EndSplineSet EndChar StartChar: uni2203.rtlm -Encoding: 1115020 -1 4356 +Encoding: 1115020 -1 4354 Width: 560 Flags: W HStem: 0 66<139 487> 298 66<139 475> 596 66<139 487> @@ -146225,7 +146221,7 @@ EndSplineSet EndChar StartChar: uni2204.rtlm -Encoding: 1115021 -1 4357 +Encoding: 1115021 -1 4355 Width: 560 Flags: W HStem: 0 66<133 165 246 481> 298 66<133 267 348 469> 596 66<133 370 450 481> @@ -146269,7 +146265,7 @@ EndSplineSet EndChar StartChar: uni225F.rtlm -Encoding: 1115022 -1 4358 +Encoding: 1115022 -1 4356 Width: 685 Flags: W HStem: 120 66<48 637> 320 66<48 637> 454 85<308.041 381.861> 824 39<319.293 396.824> @@ -146309,7 +146305,7 @@ EndSplineSet EndChar StartChar: uni228C.rtlm -Encoding: 1115023 -1 4359 +Encoding: 1115023 -1 4357 Width: 620 Flags: W HStem: -31 66<225.349 395.499> 257 66<172 301.912> 435 20G<240 292.5> @@ -146347,7 +146343,7 @@ EndSplineSet EndChar StartChar: uni2239.rtlm -Encoding: 1115024 -1 4360 +Encoding: 1115024 -1 4358 Width: 685 Flags: W HStem: -5 127<64.7473 158.006> 220 66<237 637> 384 127<64.3039 159.303> @@ -146375,7 +146371,7 @@ EndSplineSet EndChar StartChar: uni22A7.rtlm -Encoding: 1115025 -1 4361 +Encoding: 1115025 -1 4359 Width: 498 Flags: W HStem: 0 21G<368 434> 198 66<64 368> 398 66<64 368> 642 20G<368 434> @@ -146400,7 +146396,7 @@ EndSplineSet EndChar StartChar: uni22AA.rtlm -Encoding: 1115026 -1 4362 +Encoding: 1115026 -1 4360 Width: 860 Flags: W HStem: 0 21G<348 414 548 614 749 815> 298 66<45 348> 642 20G<348 414 548 614 749 815> @@ -146431,7 +146427,7 @@ EndSplineSet EndChar StartChar: uni22AC.rtlm -Encoding: 1115027 -1 4363 +Encoding: 1115027 -1 4361 Width: 786 Flags: W HStem: 0 21G<63 151.463 555 621> 298 66<64 353 487 555> 642 20G<555 621 688.449 777> @@ -146465,7 +146461,7 @@ EndSplineSet EndChar StartChar: uni22AD.rtlm -Encoding: 1115028 -1 4364 +Encoding: 1115028 -1 4362 Width: 786 Flags: W HStem: 0 21G<63 151.495 555 621> 198 66<64 256 389 555> 398 66<64 451> 642 20G<555 621 688.449 777> @@ -146504,7 +146500,7 @@ EndSplineSet EndChar StartChar: uni22AE.rtlm -Encoding: 1115029 -1 4365 +Encoding: 1115029 -1 4363 Width: 968 Flags: W HStem: 0 21G<46 149.235 537 603 737 803> 298 66<46 422 500 505> 642 20G<537 603 737 803 855.839 959> @@ -146542,7 +146538,7 @@ EndSplineSet EndChar StartChar: uni22AF.rtlm -Encoding: 1115030 -1 4366 +Encoding: 1115030 -1 4364 Width: 968 Flags: W HStem: 0 21G<46 151.152 537 603 737 803> 198 66<46 295 375 378 458 537> 398 66<46 537> 642 20G<537 603 737 803 853.667 959> @@ -146588,7 +146584,7 @@ EndSplineSet EndChar StartChar: uni22B8.rtlm -Encoding: 1115031 -1 4367 +Encoding: 1115031 -1 4365 Width: 849 Flags: W HStem: 103 50<138.28 260.759> 353 50<138.28 260.759> @@ -146613,7 +146609,7 @@ EndSplineSet EndChar StartChar: uni27C0.rtlm -Encoding: 1115032 -1 4368 +Encoding: 1115032 -1 4366 Width: 685 Flags: W LayerCount: 2 @@ -146633,7 +146629,7 @@ EndSplineSet EndChar StartChar: uni27DC.rtlm -Encoding: 1115033 -1 4369 +Encoding: 1115033 -1 4367 Width: 849 Flags: W HStem: 103 50<588.241 710.72> 353 50<588.241 710.72> @@ -146658,7 +146654,7 @@ EndSplineSet EndChar StartChar: uni29DC.rtlm -Encoding: 1115034 -1 4370 +Encoding: 1115034 -1 4368 Width: 926 Flags: W HStem: 0 84<168.302 329.613 610.852 752.589> 346 84<589.928 750.545> @@ -146686,7 +146682,7 @@ EndSplineSet EndChar StartChar: uni29F4.rtlm -Encoding: 1115035 -1 4371 +Encoding: 1115035 -1 4369 Width: 926 Flags: W HStem: -13 127<760.747 854.006> 220 66<217.088 243> 394 127<760.304 855.303> @@ -146723,7 +146719,7 @@ EndSplineSet EndChar StartChar: uni2A20.rtlm -Encoding: 1115036 -1 4372 +Encoding: 1115036 -1 4370 Width: 1177 Flags: W LayerCount: 2 @@ -146747,7 +146743,7 @@ EndSplineSet EndChar StartChar: uni2A74.rtlm -Encoding: 1115037 -1 4373 +Encoding: 1115037 -1 4371 Width: 1015 Flags: W HStem: 89 127<655.747 749.006 856.747 950.006> 290 127<655.304 750.303 856.304 951.303> @@ -146789,7 +146785,7 @@ EndSplineSet EndChar StartChar: uni2A7B.rtlm -Encoding: 1115038 -1 4374 +Encoding: 1115038 -1 4372 Width: 685 Flags: W HStem: 397 85<388.041 461.861> 767 39<399.293 476.824> @@ -146827,7 +146823,7 @@ EndSplineSet EndChar StartChar: uni2A7C.rtlm -Encoding: 1115039 -1 4375 +Encoding: 1115039 -1 4373 Width: 685 Flags: W HStem: 397 85<233.041 306.861> 767 39<244.293 321.824> @@ -146865,7 +146861,7 @@ EndSplineSet EndChar StartChar: uni2AA3.rtlm -Encoding: 1115040 -1 4376 +Encoding: 1115040 -1 4374 Width: 933 Flags: W LayerCount: 2 @@ -146896,7 +146892,7 @@ EndSplineSet EndChar StartChar: uni2AE2.rtlm -Encoding: 1115041 -1 4377 +Encoding: 1115041 -1 4375 Width: 685 Flags: W LayerCount: 2 @@ -146923,7 +146919,7 @@ EndSplineSet EndChar StartChar: uni2AE6.rtlm -Encoding: 1115042 -1 4378 +Encoding: 1115042 -1 4376 Width: 685 Flags: W LayerCount: 2 @@ -146950,7 +146946,7 @@ EndSplineSet EndChar StartChar: uni2320.rtlm -Encoding: 1115043 -1 4379 +Encoding: 1115043 -1 4377 Width: 688 Flags: W HStem: 1028 38<172 260.054> @@ -146973,7 +146969,7 @@ EndSplineSet EndChar StartChar: uni2321.rtlm -Encoding: 1115044 -1 4380 +Encoding: 1115044 -1 4378 Width: 688 Flags: W HStem: -59 38<427.06 515> @@ -146996,7 +146992,7 @@ EndSplineSet EndChar StartChar: uni060C -Encoding: 1548 1548 4381 +Encoding: 1548 1548 4379 Width: 491 Flags: W HStem: -59 38<185.704 308.637> @@ -147025,7 +147021,7 @@ EndSplineSet EndChar StartChar: uni0347 -Encoding: 839 839 4382 +Encoding: 839 839 4380 Width: 1 GlyphClass: 2 Flags: MW @@ -147047,7 +147043,7 @@ EndSplineSet EndChar StartChar: uni1D98 -Encoding: 7576 7576 4383 +Encoding: 7576 7576 4381 Width: 441 GlyphClass: 2 Flags: MW @@ -147080,7 +147076,7 @@ EndSplineSet EndChar StartChar: uni1DA3 -Encoding: 7587 7587 4384 +Encoding: 7587 7587 4382 Width: 480 GlyphClass: 2 Flags: MW @@ -147119,7 +147115,7 @@ EndSplineSet EndChar StartChar: uni26E2 -Encoding: 9954 9954 4385 +Encoding: 9954 9954 4383 Width: 700 GlyphClass: 2 Flags: MW @@ -147156,7 +147152,7 @@ EndSplineSet EndChar StartChar: uni27CB -Encoding: 10187 10187 4386 +Encoding: 10187 10187 4384 Width: 838 GlyphClass: 2 Flags: MW @@ -147173,7 +147169,7 @@ EndSplineSet EndChar StartChar: uni27CD -Encoding: 10189 10189 4387 +Encoding: 10189 10189 4385 Width: 838 GlyphClass: 2 Flags: MW @@ -147190,7 +147186,7 @@ EndSplineSet EndChar StartChar: uniA792 -Encoding: 42898 42898 4388 +Encoding: 42898 42898 4386 Width: 734 GlyphClass: 2 Flags: MW @@ -147224,7 +147220,7 @@ EndSplineSet EndChar StartChar: uni2AFF.size1 -Encoding: 1115045 -1 4389 +Encoding: 1115045 -1 4387 Width: 636 GlyphClass: 2 Flags: MW @@ -147245,5 +147241,83 @@ SplineSet 403 -189 l 1 EndSplineSet EndChar + +StartChar: uni2032.ssty1 +Encoding: 1115046 -1 4388 +Width: 413 +VWidth: 854 +Flags: W +VStem: 100 28.9<36.9 53.2955> +LayerCount: 2 +Fore +Refer: 3670 -1 N 0.85 0 0 0.85 -6.25 5 2 +EndChar + +StartChar: uni2033.ssty1 +Encoding: 1115047 -1 4389 +Width: 640 +VWidth: 854 +Flags: W +VStem: 100 28.05<36.8364 53.2955> 326.1 28.9<36.9 53.2955> +LayerCount: 2 +Fore +Refer: 3671 -1 N 0.85 0 0 0.85 -6.25 5 2 +EndChar + +StartChar: uni2034.ssty1 +Encoding: 1115048 -1 4390 +Width: 868 +VWidth: 854 +Flags: W +VStem: 100 28.05<36.8364 53.2955> 326.95 28.05<36.8364 53.2955> 553.9 28.05<36.8364 53.2955> +CounterMasks: 1 e0 +LayerCount: 2 +Fore +Refer: 3672 -1 N 0.85 0 0 0.85 -6.25 5 2 +EndChar + +StartChar: uni2035.ssty1 +Encoding: 1115049 -1 4391 +Width: 413 +VWidth: 854 +Flags: W +VStem: 284.45 28.9<36.9 53.2955> +LayerCount: 2 +Fore +Refer: 3673 -1 N 0.85 0 0 0.85 -6.25 5 2 +EndChar + +StartChar: uni2036.ssty1 +Encoding: 1115050 -1 4392 +Width: 639 +VWidth: 854 +Flags: W +VStem: 284.45 28.9<36.9 53.2955> 511.4 28.05<36.8364 53.2955> +LayerCount: 2 +Fore +Refer: 3674 -1 N 0.85 0 0 0.85 -6.25 5 2 +EndChar + +StartChar: uni2037.ssty1 +Encoding: 1115051 -1 4393 +Width: 868 +VWidth: 854 +Flags: W +VStem: 286.15 28.05<36.8364 53.2955> 513.1 28.05<36.8364 53.2955> 740.05 28.05<36.8364 53.2955> +LayerCount: 2 +Fore +Refer: 3675 -1 N 0.85 0 0 0.85 -6.25 5 2 +EndChar + +StartChar: uni2057.ssty1 +Encoding: 1115052 -1 4394 +Width: 1095 +VWidth: 854 +Flags: W +VStem: 100 28.05<36.8364 53.2955> 326.95 28.05<36.8364 53.2955> 553.9 28.05<36.8364 53.2955> 780.85 28.05<36.8364 53.2955> +LayerCount: 2 +Fore +Refer: 3676 -1 N 0.85 0 0 0.85 -6.25 5 2 +EndChar EndChars EndSplineFont diff --git a/Master/texmf-dist/source/fonts/xits/xits-regular.sfd b/Master/texmf-dist/source/fonts/xits/xits-regular.sfd index 00c6d804a23..9319aa1c949 100644 --- a/Master/texmf-dist/source/fonts/xits/xits-regular.sfd +++ b/Master/texmf-dist/source/fonts/xits/xits-regular.sfd @@ -26,7 +26,6 @@ TTFWeight: 400 TTFWidth: 5 LineGap: 0 VLineGap: 0 -Panose: 0 0 0 0 0 0 0 0 0 0 OS2TypoAscent: 750 OS2TypoAOffset: 0 OS2TypoDescent: -250 @@ -19187,7 +19186,7 @@ EndChar StartChar: uni0347 Encoding: 839 839 573 -Width: 1 +Width: 0 GlyphClass: 2 Flags: MW HStem: -292 54<11 323 11 323> -194 54<11 323 11 323> -- cgit v1.2.3